blob: 21c579e74451074007060ffe3582738e138c8498 [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##_IER(which), (ier_val)); \
Ville Syrjälä7d1bd5392014-10-30 19:42:50 +0200130 I915_WRITE(GEN8_##type##_IMR(which), (imr_val)); \
131 POSTING_READ(GEN8_##type##_IMR(which)); \
Paulo Zanoni35079892014-04-01 15:37:15 -0300132} 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##IER, (ier_val)); \
Ville Syrjälä7d1bd5392014-10-30 19:42:50 +0200137 I915_WRITE(type##IMR, (imr_val)); \
138 POSTING_READ(type##IMR); \
Paulo Zanoni35079892014-04-01 15:37:15 -0300139} while (0)
140
Imre Deakc9a9a262014-11-05 20:48:37 +0200141static void gen6_rps_irq_handler(struct drm_i915_private *dev_priv, u32 pm_iir);
142
Zhenyu Wang036a4a72009-06-08 14:40:19 +0800143/* For display hotplug interrupt */
Daniel Vetter47339cd2014-09-30 10:56:46 +0200144void
Jani Nikula2d1013d2014-03-31 14:27:17 +0300145ironlake_enable_display_irq(struct drm_i915_private *dev_priv, u32 mask)
Zhenyu Wang036a4a72009-06-08 14:40:19 +0800146{
Daniel Vetter4bc9d432013-06-27 13:44:58 +0200147 assert_spin_locked(&dev_priv->irq_lock);
148
Jesse Barnes9df7575f2014-06-20 09:29:20 -0700149 if (WARN_ON(!intel_irqs_enabled(dev_priv)))
Paulo Zanonic67a4702013-08-19 13:18:09 -0300150 return;
Paulo Zanonic67a4702013-08-19 13:18:09 -0300151
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000152 if ((dev_priv->irq_mask & mask) != 0) {
153 dev_priv->irq_mask &= ~mask;
154 I915_WRITE(DEIMR, dev_priv->irq_mask);
Chris Wilson3143a2b2010-11-16 15:55:10 +0000155 POSTING_READ(DEIMR);
Zhenyu Wang036a4a72009-06-08 14:40:19 +0800156 }
157}
158
Daniel Vetter47339cd2014-09-30 10:56:46 +0200159void
Jani Nikula2d1013d2014-03-31 14:27:17 +0300160ironlake_disable_display_irq(struct drm_i915_private *dev_priv, u32 mask)
Zhenyu Wang036a4a72009-06-08 14:40:19 +0800161{
Daniel Vetter4bc9d432013-06-27 13:44:58 +0200162 assert_spin_locked(&dev_priv->irq_lock);
163
Paulo Zanoni06ffc772014-07-17 17:43:46 -0300164 if (WARN_ON(!intel_irqs_enabled(dev_priv)))
Paulo Zanonic67a4702013-08-19 13:18:09 -0300165 return;
Paulo Zanonic67a4702013-08-19 13:18:09 -0300166
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000167 if ((dev_priv->irq_mask & mask) != mask) {
168 dev_priv->irq_mask |= mask;
169 I915_WRITE(DEIMR, dev_priv->irq_mask);
Chris Wilson3143a2b2010-11-16 15:55:10 +0000170 POSTING_READ(DEIMR);
Zhenyu Wang036a4a72009-06-08 14:40:19 +0800171 }
172}
173
Paulo Zanoni43eaea12013-08-06 18:57:12 -0300174/**
175 * ilk_update_gt_irq - update GTIMR
176 * @dev_priv: driver private
177 * @interrupt_mask: mask of interrupt bits to update
178 * @enabled_irq_mask: mask of interrupt bits to enable
179 */
180static void ilk_update_gt_irq(struct drm_i915_private *dev_priv,
181 uint32_t interrupt_mask,
182 uint32_t enabled_irq_mask)
183{
184 assert_spin_locked(&dev_priv->irq_lock);
185
Jesse Barnes9df7575f2014-06-20 09:29:20 -0700186 if (WARN_ON(!intel_irqs_enabled(dev_priv)))
Paulo Zanonic67a4702013-08-19 13:18:09 -0300187 return;
Paulo Zanonic67a4702013-08-19 13:18:09 -0300188
Paulo Zanoni43eaea12013-08-06 18:57:12 -0300189 dev_priv->gt_irq_mask &= ~interrupt_mask;
190 dev_priv->gt_irq_mask |= (~enabled_irq_mask & interrupt_mask);
191 I915_WRITE(GTIMR, dev_priv->gt_irq_mask);
192 POSTING_READ(GTIMR);
193}
194
Daniel Vetter480c8032014-07-16 09:49:40 +0200195void gen5_enable_gt_irq(struct drm_i915_private *dev_priv, uint32_t mask)
Paulo Zanoni43eaea12013-08-06 18:57:12 -0300196{
197 ilk_update_gt_irq(dev_priv, mask, mask);
198}
199
Daniel Vetter480c8032014-07-16 09:49:40 +0200200void gen5_disable_gt_irq(struct drm_i915_private *dev_priv, uint32_t mask)
Paulo Zanoni43eaea12013-08-06 18:57:12 -0300201{
202 ilk_update_gt_irq(dev_priv, mask, 0);
203}
204
Imre Deakb900b942014-11-05 20:48:48 +0200205static u32 gen6_pm_iir(struct drm_i915_private *dev_priv)
206{
207 return INTEL_INFO(dev_priv)->gen >= 8 ? GEN8_GT_IIR(2) : GEN6_PMIIR;
208}
209
Imre Deaka72fbc32014-11-05 20:48:31 +0200210static u32 gen6_pm_imr(struct drm_i915_private *dev_priv)
211{
212 return INTEL_INFO(dev_priv)->gen >= 8 ? GEN8_GT_IMR(2) : GEN6_PMIMR;
213}
214
Imre Deakb900b942014-11-05 20:48:48 +0200215static u32 gen6_pm_ier(struct drm_i915_private *dev_priv)
216{
217 return INTEL_INFO(dev_priv)->gen >= 8 ? GEN8_GT_IER(2) : GEN6_PMIER;
218}
219
Paulo Zanoniedbfdb42013-08-06 18:57:13 -0300220/**
221 * snb_update_pm_irq - update GEN6_PMIMR
222 * @dev_priv: driver private
223 * @interrupt_mask: mask of interrupt bits to update
224 * @enabled_irq_mask: mask of interrupt bits to enable
225 */
226static void snb_update_pm_irq(struct drm_i915_private *dev_priv,
227 uint32_t interrupt_mask,
228 uint32_t enabled_irq_mask)
229{
Paulo Zanoni605cd252013-08-06 18:57:15 -0300230 uint32_t new_val;
Paulo Zanoniedbfdb42013-08-06 18:57:13 -0300231
232 assert_spin_locked(&dev_priv->irq_lock);
233
Jesse Barnes9df7575f2014-06-20 09:29:20 -0700234 if (WARN_ON(!intel_irqs_enabled(dev_priv)))
Paulo Zanonic67a4702013-08-19 13:18:09 -0300235 return;
Paulo Zanonic67a4702013-08-19 13:18:09 -0300236
Paulo Zanoni605cd252013-08-06 18:57:15 -0300237 new_val = dev_priv->pm_irq_mask;
Paulo Zanonif52ecbc2013-08-06 18:57:14 -0300238 new_val &= ~interrupt_mask;
239 new_val |= (~enabled_irq_mask & interrupt_mask);
240
Paulo Zanoni605cd252013-08-06 18:57:15 -0300241 if (new_val != dev_priv->pm_irq_mask) {
242 dev_priv->pm_irq_mask = new_val;
Imre Deaka72fbc32014-11-05 20:48:31 +0200243 I915_WRITE(gen6_pm_imr(dev_priv), dev_priv->pm_irq_mask);
244 POSTING_READ(gen6_pm_imr(dev_priv));
Paulo Zanonif52ecbc2013-08-06 18:57:14 -0300245 }
Paulo Zanoniedbfdb42013-08-06 18:57:13 -0300246}
247
Daniel Vetter480c8032014-07-16 09:49:40 +0200248void gen6_enable_pm_irq(struct drm_i915_private *dev_priv, uint32_t mask)
Paulo Zanoniedbfdb42013-08-06 18:57:13 -0300249{
250 snb_update_pm_irq(dev_priv, mask, mask);
251}
252
Daniel Vetter480c8032014-07-16 09:49:40 +0200253void gen6_disable_pm_irq(struct drm_i915_private *dev_priv, uint32_t mask)
Paulo Zanoniedbfdb42013-08-06 18:57:13 -0300254{
255 snb_update_pm_irq(dev_priv, mask, 0);
256}
257
Imre Deakb900b942014-11-05 20:48:48 +0200258void gen6_enable_rps_interrupts(struct drm_device *dev)
259{
260 struct drm_i915_private *dev_priv = dev->dev_private;
261
262 spin_lock_irq(&dev_priv->irq_lock);
263 WARN_ON(dev_priv->rps.pm_iir);
264 gen6_enable_pm_irq(dev_priv, dev_priv->pm_rps_events);
265 I915_WRITE(gen6_pm_iir(dev_priv), dev_priv->pm_rps_events);
266 spin_unlock_irq(&dev_priv->irq_lock);
267}
268
269void gen6_disable_rps_interrupts(struct drm_device *dev)
270{
271 struct drm_i915_private *dev_priv = dev->dev_private;
272
273 I915_WRITE(GEN6_PMINTRMSK, INTEL_INFO(dev_priv)->gen >= 8 ?
274 ~GEN8_PMINTR_REDIRECT_TO_NON_DISP : ~0);
275 I915_WRITE(gen6_pm_ier(dev_priv), I915_READ(gen6_pm_ier(dev_priv)) &
276 ~dev_priv->pm_rps_events);
277 /* Complete PM interrupt masking here doesn't race with the rps work
278 * item again unmasking PM interrupts because that is using a different
279 * register (PMIMR) to mask PM interrupts. The only risk is in leaving
280 * stale bits in PMIIR and PMIMR which gen6_enable_rps will clean up. */
281
282 spin_lock_irq(&dev_priv->irq_lock);
283 dev_priv->rps.pm_iir = 0;
284 spin_unlock_irq(&dev_priv->irq_lock);
285
286 I915_WRITE(gen6_pm_iir(dev_priv), dev_priv->pm_rps_events);
287}
288
Ben Widawsky09610212014-05-15 20:58:08 +0300289/**
Daniel Vetterfee884e2013-07-04 23:35:21 +0200290 * ibx_display_interrupt_update - update SDEIMR
291 * @dev_priv: driver private
292 * @interrupt_mask: mask of interrupt bits to update
293 * @enabled_irq_mask: mask of interrupt bits to enable
294 */
Daniel Vetter47339cd2014-09-30 10:56:46 +0200295void ibx_display_interrupt_update(struct drm_i915_private *dev_priv,
296 uint32_t interrupt_mask,
297 uint32_t enabled_irq_mask)
Daniel Vetterfee884e2013-07-04 23:35:21 +0200298{
299 uint32_t sdeimr = I915_READ(SDEIMR);
300 sdeimr &= ~interrupt_mask;
301 sdeimr |= (~enabled_irq_mask & interrupt_mask);
302
303 assert_spin_locked(&dev_priv->irq_lock);
304
Jesse Barnes9df7575f2014-06-20 09:29:20 -0700305 if (WARN_ON(!intel_irqs_enabled(dev_priv)))
Paulo Zanonic67a4702013-08-19 13:18:09 -0300306 return;
Paulo Zanonic67a4702013-08-19 13:18:09 -0300307
Daniel Vetterfee884e2013-07-04 23:35:21 +0200308 I915_WRITE(SDEIMR, sdeimr);
309 POSTING_READ(SDEIMR);
310}
Paulo Zanoni86642812013-04-12 17:57:57 -0300311
Daniel Vetterb5ea6422014-03-02 21:18:00 +0100312static void
Imre Deak755e9012014-02-10 18:42:47 +0200313__i915_enable_pipestat(struct drm_i915_private *dev_priv, enum pipe pipe,
314 u32 enable_mask, u32 status_mask)
Keith Packard7c463582008-11-04 02:03:27 -0800315{
Ville Syrjälä46c06a32013-02-20 21:16:18 +0200316 u32 reg = PIPESTAT(pipe);
Imre Deak755e9012014-02-10 18:42:47 +0200317 u32 pipestat = I915_READ(reg) & PIPESTAT_INT_ENABLE_MASK;
Keith Packard7c463582008-11-04 02:03:27 -0800318
Daniel Vetterb79480b2013-06-27 17:52:10 +0200319 assert_spin_locked(&dev_priv->irq_lock);
Daniel Vetterd518ce52014-08-27 10:43:37 +0200320 WARN_ON(!intel_irqs_enabled(dev_priv));
Daniel Vetterb79480b2013-06-27 17:52:10 +0200321
Ville Syrjälä04feced2014-04-03 13:28:33 +0300322 if (WARN_ONCE(enable_mask & ~PIPESTAT_INT_ENABLE_MASK ||
323 status_mask & ~PIPESTAT_INT_STATUS_MASK,
324 "pipe %c: enable_mask=0x%x, status_mask=0x%x\n",
325 pipe_name(pipe), enable_mask, status_mask))
Imre Deak755e9012014-02-10 18:42:47 +0200326 return;
327
328 if ((pipestat & enable_mask) == enable_mask)
Ville Syrjälä46c06a32013-02-20 21:16:18 +0200329 return;
330
Imre Deak91d181d2014-02-10 18:42:49 +0200331 dev_priv->pipestat_irq_mask[pipe] |= status_mask;
332
Ville Syrjälä46c06a32013-02-20 21:16:18 +0200333 /* Enable the interrupt, clear any pending status */
Imre Deak755e9012014-02-10 18:42:47 +0200334 pipestat |= enable_mask | status_mask;
Ville Syrjälä46c06a32013-02-20 21:16:18 +0200335 I915_WRITE(reg, pipestat);
336 POSTING_READ(reg);
Keith Packard7c463582008-11-04 02:03:27 -0800337}
338
Daniel Vetterb5ea6422014-03-02 21:18:00 +0100339static void
Imre Deak755e9012014-02-10 18:42:47 +0200340__i915_disable_pipestat(struct drm_i915_private *dev_priv, enum pipe pipe,
341 u32 enable_mask, u32 status_mask)
Keith Packard7c463582008-11-04 02:03:27 -0800342{
Ville Syrjälä46c06a32013-02-20 21:16:18 +0200343 u32 reg = PIPESTAT(pipe);
Imre Deak755e9012014-02-10 18:42:47 +0200344 u32 pipestat = I915_READ(reg) & PIPESTAT_INT_ENABLE_MASK;
Keith Packard7c463582008-11-04 02:03:27 -0800345
Daniel Vetterb79480b2013-06-27 17:52:10 +0200346 assert_spin_locked(&dev_priv->irq_lock);
Daniel Vetterd518ce52014-08-27 10:43:37 +0200347 WARN_ON(!intel_irqs_enabled(dev_priv));
Daniel Vetterb79480b2013-06-27 17:52:10 +0200348
Ville Syrjälä04feced2014-04-03 13:28:33 +0300349 if (WARN_ONCE(enable_mask & ~PIPESTAT_INT_ENABLE_MASK ||
350 status_mask & ~PIPESTAT_INT_STATUS_MASK,
351 "pipe %c: enable_mask=0x%x, status_mask=0x%x\n",
352 pipe_name(pipe), enable_mask, status_mask))
Ville Syrjälä46c06a32013-02-20 21:16:18 +0200353 return;
354
Imre Deak755e9012014-02-10 18:42:47 +0200355 if ((pipestat & enable_mask) == 0)
356 return;
357
Imre Deak91d181d2014-02-10 18:42:49 +0200358 dev_priv->pipestat_irq_mask[pipe] &= ~status_mask;
359
Imre Deak755e9012014-02-10 18:42:47 +0200360 pipestat &= ~enable_mask;
Ville Syrjälä46c06a32013-02-20 21:16:18 +0200361 I915_WRITE(reg, pipestat);
362 POSTING_READ(reg);
Keith Packard7c463582008-11-04 02:03:27 -0800363}
364
Imre Deak10c59c52014-02-10 18:42:48 +0200365static u32 vlv_get_pipestat_enable_mask(struct drm_device *dev, u32 status_mask)
366{
367 u32 enable_mask = status_mask << 16;
368
369 /*
Ville Syrjälä724a6902014-04-09 13:28:48 +0300370 * On pipe A we don't support the PSR interrupt yet,
371 * on pipe B and C the same bit MBZ.
Imre Deak10c59c52014-02-10 18:42:48 +0200372 */
373 if (WARN_ON_ONCE(status_mask & PIPE_A_PSR_STATUS_VLV))
374 return 0;
Ville Syrjälä724a6902014-04-09 13:28:48 +0300375 /*
376 * On pipe B and C we don't support the PSR interrupt yet, on pipe
377 * A the same bit is for perf counters which we don't use either.
378 */
379 if (WARN_ON_ONCE(status_mask & PIPE_B_PSR_STATUS_VLV))
380 return 0;
Imre Deak10c59c52014-02-10 18:42:48 +0200381
382 enable_mask &= ~(PIPE_FIFO_UNDERRUN_STATUS |
383 SPRITE0_FLIP_DONE_INT_EN_VLV |
384 SPRITE1_FLIP_DONE_INT_EN_VLV);
385 if (status_mask & SPRITE0_FLIP_DONE_INT_STATUS_VLV)
386 enable_mask |= SPRITE0_FLIP_DONE_INT_EN_VLV;
387 if (status_mask & SPRITE1_FLIP_DONE_INT_STATUS_VLV)
388 enable_mask |= SPRITE1_FLIP_DONE_INT_EN_VLV;
389
390 return enable_mask;
391}
392
Imre Deak755e9012014-02-10 18:42:47 +0200393void
394i915_enable_pipestat(struct drm_i915_private *dev_priv, enum pipe pipe,
395 u32 status_mask)
396{
397 u32 enable_mask;
398
Imre Deak10c59c52014-02-10 18:42:48 +0200399 if (IS_VALLEYVIEW(dev_priv->dev))
400 enable_mask = vlv_get_pipestat_enable_mask(dev_priv->dev,
401 status_mask);
402 else
403 enable_mask = status_mask << 16;
Imre Deak755e9012014-02-10 18:42:47 +0200404 __i915_enable_pipestat(dev_priv, pipe, enable_mask, status_mask);
405}
406
407void
408i915_disable_pipestat(struct drm_i915_private *dev_priv, enum pipe pipe,
409 u32 status_mask)
410{
411 u32 enable_mask;
412
Imre Deak10c59c52014-02-10 18:42:48 +0200413 if (IS_VALLEYVIEW(dev_priv->dev))
414 enable_mask = vlv_get_pipestat_enable_mask(dev_priv->dev,
415 status_mask);
416 else
417 enable_mask = status_mask << 16;
Imre Deak755e9012014-02-10 18:42:47 +0200418 __i915_disable_pipestat(dev_priv, pipe, enable_mask, status_mask);
419}
420
=?utf-8?q?Michel_D=C3=A4nzer?=a6b54f32006-10-24 23:37:43 +1000421/**
Jani Nikulaf49e38d2013-04-29 13:02:54 +0300422 * i915_enable_asle_pipestat - enable ASLE pipestat for OpRegion
Zhao Yakui01c66882009-10-28 05:10:00 +0000423 */
Jani Nikulaf49e38d2013-04-29 13:02:54 +0300424static void i915_enable_asle_pipestat(struct drm_device *dev)
Zhao Yakui01c66882009-10-28 05:10:00 +0000425{
Jani Nikula2d1013d2014-03-31 14:27:17 +0300426 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000427
Jani Nikulaf49e38d2013-04-29 13:02:54 +0300428 if (!dev_priv->opregion.asle || !IS_MOBILE(dev))
429 return;
430
Daniel Vetter13321782014-09-15 14:55:29 +0200431 spin_lock_irq(&dev_priv->irq_lock);
Zhao Yakui01c66882009-10-28 05:10:00 +0000432
Imre Deak755e9012014-02-10 18:42:47 +0200433 i915_enable_pipestat(dev_priv, PIPE_B, PIPE_LEGACY_BLC_EVENT_STATUS);
Jani Nikulaf8987802013-04-29 13:02:53 +0300434 if (INTEL_INFO(dev)->gen >= 4)
Daniel Vetter3b6c42e2013-10-21 18:04:35 +0200435 i915_enable_pipestat(dev_priv, PIPE_A,
Imre Deak755e9012014-02-10 18:42:47 +0200436 PIPE_LEGACY_BLC_EVENT_STATUS);
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000437
Daniel Vetter13321782014-09-15 14:55:29 +0200438 spin_unlock_irq(&dev_priv->irq_lock);
Zhao Yakui01c66882009-10-28 05:10:00 +0000439}
440
441/**
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700442 * i915_pipe_enabled - check if a pipe is enabled
443 * @dev: DRM device
444 * @pipe: pipe to check
445 *
446 * Reading certain registers when the pipe is disabled can hang the chip.
447 * Use this routine to make sure the PLL is running and the pipe is active
448 * before reading such registers if unsure.
449 */
450static int
451i915_pipe_enabled(struct drm_device *dev, int pipe)
452{
Jani Nikula2d1013d2014-03-31 14:27:17 +0300453 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanoni702e7a52012-10-23 18:29:59 -0200454
Daniel Vettera01025a2013-05-22 00:50:23 +0200455 if (drm_core_check_feature(dev, DRIVER_MODESET)) {
456 /* Locking is horribly broken here, but whatever. */
457 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
458 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Paulo Zanoni71f8ba62013-05-03 12:15:39 -0300459
Daniel Vettera01025a2013-05-22 00:50:23 +0200460 return intel_crtc->active;
461 } else {
462 return I915_READ(PIPECONF(pipe)) & PIPECONF_ENABLE;
463 }
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700464}
465
Ville Syrjäläf75f3742014-05-15 20:20:36 +0300466/*
467 * This timing diagram depicts the video signal in and
468 * around the vertical blanking period.
469 *
470 * Assumptions about the fictitious mode used in this example:
471 * vblank_start >= 3
472 * vsync_start = vblank_start + 1
473 * vsync_end = vblank_start + 2
474 * vtotal = vblank_start + 3
475 *
476 * start of vblank:
477 * latch double buffered registers
478 * increment frame counter (ctg+)
479 * generate start of vblank interrupt (gen4+)
480 * |
481 * | frame start:
482 * | generate frame start interrupt (aka. vblank interrupt) (gmch)
483 * | may be shifted forward 1-3 extra lines via PIPECONF
484 * | |
485 * | | start of vsync:
486 * | | generate vsync interrupt
487 * | | |
488 * ___xxxx___ ___xxxx___ ___xxxx___ ___xxxx___ ___xxxx___ ___xxxx
489 * . \hs/ . \hs/ \hs/ \hs/ . \hs/
490 * ----va---> <-----------------vb--------------------> <--------va-------------
491 * | | <----vs-----> |
492 * -vbs-----> <---vbs+1---> <---vbs+2---> <-----0-----> <-----1-----> <-----2--- (scanline counter gen2)
493 * -vbs-2---> <---vbs-1---> <---vbs-----> <---vbs+1---> <---vbs+2---> <-----0--- (scanline counter gen3+)
494 * -vbs-2---> <---vbs-2---> <---vbs-1---> <---vbs-----> <---vbs+1---> <---vbs+2- (scanline counter hsw+ hdmi)
495 * | | |
496 * last visible pixel first visible pixel
497 * | increment frame counter (gen3/4)
498 * pixel counter = vblank_start * htotal pixel counter = 0 (gen3/4)
499 *
500 * x = horizontal active
501 * _ = horizontal blanking
502 * hs = horizontal sync
503 * va = vertical active
504 * vb = vertical blanking
505 * vs = vertical sync
506 * vbs = vblank_start (number)
507 *
508 * Summary:
509 * - most events happen at the start of horizontal sync
510 * - frame start happens at the start of horizontal blank, 1-4 lines
511 * (depending on PIPECONF settings) after the start of vblank
512 * - gen3/4 pixel and frame counter are synchronized with the start
513 * of horizontal active on the first line of vertical active
514 */
515
Ville Syrjälä4cdb83e2013-10-11 21:52:44 +0300516static u32 i8xx_get_vblank_counter(struct drm_device *dev, int pipe)
517{
518 /* Gen2 doesn't have a hardware frame counter */
519 return 0;
520}
521
Keith Packard42f52ef2008-10-18 19:39:29 -0700522/* Called from drm generic code, passed a 'crtc', which
523 * we use as a pipe index
524 */
Jesse Barnesf71d4af2011-06-28 13:00:41 -0700525static u32 i915_get_vblank_counter(struct drm_device *dev, int pipe)
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700526{
Jani Nikula2d1013d2014-03-31 14:27:17 +0300527 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700528 unsigned long high_frame;
529 unsigned long low_frame;
Ville Syrjälä0b2a8e02014-04-29 13:35:50 +0300530 u32 high1, high2, low, pixel, vbl_start, hsync_start, htotal;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700531
532 if (!i915_pipe_enabled(dev, pipe)) {
Zhao Yakui44d98a62009-10-09 11:39:40 +0800533 DRM_DEBUG_DRIVER("trying to get vblank count for disabled "
Jesse Barnes9db4a9c2011-02-07 12:26:52 -0800534 "pipe %c\n", pipe_name(pipe));
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700535 return 0;
536 }
537
Ville Syrjälä391f75e2013-09-25 19:55:26 +0300538 if (drm_core_check_feature(dev, DRIVER_MODESET)) {
539 struct intel_crtc *intel_crtc =
540 to_intel_crtc(dev_priv->pipe_to_crtc_mapping[pipe]);
541 const struct drm_display_mode *mode =
542 &intel_crtc->config.adjusted_mode;
543
Ville Syrjälä0b2a8e02014-04-29 13:35:50 +0300544 htotal = mode->crtc_htotal;
545 hsync_start = mode->crtc_hsync_start;
546 vbl_start = mode->crtc_vblank_start;
547 if (mode->flags & DRM_MODE_FLAG_INTERLACE)
548 vbl_start = DIV_ROUND_UP(vbl_start, 2);
Ville Syrjälä391f75e2013-09-25 19:55:26 +0300549 } else {
Daniel Vettera2d213d2014-02-07 16:34:05 +0100550 enum transcoder cpu_transcoder = (enum transcoder) pipe;
Ville Syrjälä391f75e2013-09-25 19:55:26 +0300551
552 htotal = ((I915_READ(HTOTAL(cpu_transcoder)) >> 16) & 0x1fff) + 1;
Ville Syrjälä0b2a8e02014-04-29 13:35:50 +0300553 hsync_start = (I915_READ(HSYNC(cpu_transcoder)) & 0x1fff) + 1;
Ville Syrjälä391f75e2013-09-25 19:55:26 +0300554 vbl_start = (I915_READ(VBLANK(cpu_transcoder)) & 0x1fff) + 1;
Ville Syrjälä0b2a8e02014-04-29 13:35:50 +0300555 if ((I915_READ(PIPECONF(cpu_transcoder)) &
556 PIPECONF_INTERLACE_MASK) != PIPECONF_PROGRESSIVE)
557 vbl_start = DIV_ROUND_UP(vbl_start, 2);
Ville Syrjälä391f75e2013-09-25 19:55:26 +0300558 }
559
Ville Syrjälä0b2a8e02014-04-29 13:35:50 +0300560 /* Convert to pixel count */
561 vbl_start *= htotal;
562
563 /* Start of vblank event occurs at start of hsync */
564 vbl_start -= htotal - hsync_start;
565
Jesse Barnes9db4a9c2011-02-07 12:26:52 -0800566 high_frame = PIPEFRAME(pipe);
567 low_frame = PIPEFRAMEPIXEL(pipe);
Chris Wilson5eddb702010-09-11 13:48:45 +0100568
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700569 /*
570 * High & low register fields aren't synchronized, so make sure
571 * we get a low value that's stable across two reads of the high
572 * register.
573 */
574 do {
Chris Wilson5eddb702010-09-11 13:48:45 +0100575 high1 = I915_READ(high_frame) & PIPE_FRAME_HIGH_MASK;
Ville Syrjälä391f75e2013-09-25 19:55:26 +0300576 low = I915_READ(low_frame);
Chris Wilson5eddb702010-09-11 13:48:45 +0100577 high2 = I915_READ(high_frame) & PIPE_FRAME_HIGH_MASK;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700578 } while (high1 != high2);
579
Chris Wilson5eddb702010-09-11 13:48:45 +0100580 high1 >>= PIPE_FRAME_HIGH_SHIFT;
Ville Syrjälä391f75e2013-09-25 19:55:26 +0300581 pixel = low & PIPE_PIXEL_MASK;
Chris Wilson5eddb702010-09-11 13:48:45 +0100582 low >>= PIPE_FRAME_LOW_SHIFT;
Ville Syrjälä391f75e2013-09-25 19:55:26 +0300583
584 /*
585 * The frame counter increments at beginning of active.
586 * Cook up a vblank counter by also checking the pixel
587 * counter against vblank start.
588 */
Ville Syrjäläedc08d02013-11-06 13:56:27 -0200589 return (((high1 << 8) | low) + (pixel >= vbl_start)) & 0xffffff;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700590}
591
Jesse Barnesf71d4af2011-06-28 13:00:41 -0700592static u32 gm45_get_vblank_counter(struct drm_device *dev, int pipe)
Jesse Barnes9880b7a2009-02-06 10:22:41 -0800593{
Jani Nikula2d1013d2014-03-31 14:27:17 +0300594 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes9db4a9c2011-02-07 12:26:52 -0800595 int reg = PIPE_FRMCOUNT_GM45(pipe);
Jesse Barnes9880b7a2009-02-06 10:22:41 -0800596
597 if (!i915_pipe_enabled(dev, pipe)) {
Zhao Yakui44d98a62009-10-09 11:39:40 +0800598 DRM_DEBUG_DRIVER("trying to get vblank count for disabled "
Jesse Barnes9db4a9c2011-02-07 12:26:52 -0800599 "pipe %c\n", pipe_name(pipe));
Jesse Barnes9880b7a2009-02-06 10:22:41 -0800600 return 0;
601 }
602
603 return I915_READ(reg);
604}
605
Mario Kleinerad3543e2013-10-30 05:13:08 +0100606/* raw reads, only for fast reads of display block, no need for forcewake etc. */
607#define __raw_i915_read32(dev_priv__, reg__) readl((dev_priv__)->regs + (reg__))
Mario Kleinerad3543e2013-10-30 05:13:08 +0100608
Ville Syrjäläa225f072014-04-29 13:35:45 +0300609static int __intel_get_crtc_scanline(struct intel_crtc *crtc)
610{
611 struct drm_device *dev = crtc->base.dev;
612 struct drm_i915_private *dev_priv = dev->dev_private;
613 const struct drm_display_mode *mode = &crtc->config.adjusted_mode;
614 enum pipe pipe = crtc->pipe;
Ville Syrjälä80715b22014-05-15 20:23:23 +0300615 int position, vtotal;
Ville Syrjäläa225f072014-04-29 13:35:45 +0300616
Ville Syrjälä80715b22014-05-15 20:23:23 +0300617 vtotal = mode->crtc_vtotal;
Ville Syrjäläa225f072014-04-29 13:35:45 +0300618 if (mode->flags & DRM_MODE_FLAG_INTERLACE)
619 vtotal /= 2;
620
621 if (IS_GEN2(dev))
622 position = __raw_i915_read32(dev_priv, PIPEDSL(pipe)) & DSL_LINEMASK_GEN2;
623 else
624 position = __raw_i915_read32(dev_priv, PIPEDSL(pipe)) & DSL_LINEMASK_GEN3;
625
626 /*
Ville Syrjälä80715b22014-05-15 20:23:23 +0300627 * See update_scanline_offset() for the details on the
628 * scanline_offset adjustment.
Ville Syrjäläa225f072014-04-29 13:35:45 +0300629 */
Ville Syrjälä80715b22014-05-15 20:23:23 +0300630 return (position + crtc->scanline_offset) % vtotal;
Ville Syrjäläa225f072014-04-29 13:35:45 +0300631}
632
Jesse Barnesf71d4af2011-06-28 13:00:41 -0700633static int i915_get_crtc_scanoutpos(struct drm_device *dev, int pipe,
Ville Syrjäläabca9e42013-10-28 20:50:48 +0200634 unsigned int flags, int *vpos, int *hpos,
635 ktime_t *stime, ktime_t *etime)
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100636{
Ville Syrjäläc2baf4b2013-09-23 14:48:50 +0300637 struct drm_i915_private *dev_priv = dev->dev_private;
638 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
639 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
640 const struct drm_display_mode *mode = &intel_crtc->config.adjusted_mode;
Ville Syrjälä3aa18df2013-10-11 19:10:32 +0300641 int position;
Ville Syrjälä78e8fc62014-04-29 13:35:44 +0300642 int vbl_start, vbl_end, hsync_start, htotal, vtotal;
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100643 bool in_vbl = true;
644 int ret = 0;
Mario Kleinerad3543e2013-10-30 05:13:08 +0100645 unsigned long irqflags;
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100646
Ville Syrjäläc2baf4b2013-09-23 14:48:50 +0300647 if (!intel_crtc->active) {
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100648 DRM_DEBUG_DRIVER("trying to get scanoutpos for disabled "
Jesse Barnes9db4a9c2011-02-07 12:26:52 -0800649 "pipe %c\n", pipe_name(pipe));
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100650 return 0;
651 }
652
Ville Syrjäläc2baf4b2013-09-23 14:48:50 +0300653 htotal = mode->crtc_htotal;
Ville Syrjälä78e8fc62014-04-29 13:35:44 +0300654 hsync_start = mode->crtc_hsync_start;
Ville Syrjäläc2baf4b2013-09-23 14:48:50 +0300655 vtotal = mode->crtc_vtotal;
656 vbl_start = mode->crtc_vblank_start;
657 vbl_end = mode->crtc_vblank_end;
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100658
Ville Syrjäläd31faf62013-10-28 16:31:41 +0200659 if (mode->flags & DRM_MODE_FLAG_INTERLACE) {
660 vbl_start = DIV_ROUND_UP(vbl_start, 2);
661 vbl_end /= 2;
662 vtotal /= 2;
663 }
664
Ville Syrjäläc2baf4b2013-09-23 14:48:50 +0300665 ret |= DRM_SCANOUTPOS_VALID | DRM_SCANOUTPOS_ACCURATE;
666
Mario Kleinerad3543e2013-10-30 05:13:08 +0100667 /*
668 * Lock uncore.lock, as we will do multiple timing critical raw
669 * register reads, potentially with preemption disabled, so the
670 * following code must not block on uncore.lock.
671 */
672 spin_lock_irqsave(&dev_priv->uncore.lock, irqflags);
Ville Syrjälä78e8fc62014-04-29 13:35:44 +0300673
Mario Kleinerad3543e2013-10-30 05:13:08 +0100674 /* preempt_disable_rt() should go right here in PREEMPT_RT patchset. */
675
676 /* Get optional system timestamp before query. */
677 if (stime)
678 *stime = ktime_get();
679
Ville Syrjälä7c06b082013-10-11 21:52:43 +0300680 if (IS_GEN2(dev) || IS_G4X(dev) || INTEL_INFO(dev)->gen >= 5) {
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100681 /* No obvious pixelcount register. Only query vertical
682 * scanout position from Display scan line register.
683 */
Ville Syrjäläa225f072014-04-29 13:35:45 +0300684 position = __intel_get_crtc_scanline(intel_crtc);
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100685 } else {
686 /* Have access to pixelcount since start of frame.
687 * We can split this into vertical and horizontal
688 * scanout position.
689 */
Mario Kleinerad3543e2013-10-30 05:13:08 +0100690 position = (__raw_i915_read32(dev_priv, PIPEFRAMEPIXEL(pipe)) & PIPE_PIXEL_MASK) >> PIPE_PIXEL_SHIFT;
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100691
Ville Syrjälä3aa18df2013-10-11 19:10:32 +0300692 /* convert to pixel counts */
693 vbl_start *= htotal;
694 vbl_end *= htotal;
695 vtotal *= htotal;
Ville Syrjälä78e8fc62014-04-29 13:35:44 +0300696
697 /*
Ville Syrjälä7e78f1cb2014-04-29 13:35:49 +0300698 * In interlaced modes, the pixel counter counts all pixels,
699 * so one field will have htotal more pixels. In order to avoid
700 * the reported position from jumping backwards when the pixel
701 * counter is beyond the length of the shorter field, just
702 * clamp the position the length of the shorter field. This
703 * matches how the scanline counter based position works since
704 * the scanline counter doesn't count the two half lines.
705 */
706 if (position >= vtotal)
707 position = vtotal - 1;
708
709 /*
Ville Syrjälä78e8fc62014-04-29 13:35:44 +0300710 * Start of vblank interrupt is triggered at start of hsync,
711 * just prior to the first active line of vblank. However we
712 * consider lines to start at the leading edge of horizontal
713 * active. So, should we get here before we've crossed into
714 * the horizontal active of the first line in vblank, we would
715 * not set the DRM_SCANOUTPOS_INVBL flag. In order to fix that,
716 * always add htotal-hsync_start to the current pixel position.
717 */
718 position = (position + htotal - hsync_start) % vtotal;
Ville Syrjälä3aa18df2013-10-11 19:10:32 +0300719 }
720
Mario Kleinerad3543e2013-10-30 05:13:08 +0100721 /* Get optional system timestamp after query. */
722 if (etime)
723 *etime = ktime_get();
724
725 /* preempt_enable_rt() should go right here in PREEMPT_RT patchset. */
726
727 spin_unlock_irqrestore(&dev_priv->uncore.lock, irqflags);
728
Ville Syrjälä3aa18df2013-10-11 19:10:32 +0300729 in_vbl = position >= vbl_start && position < vbl_end;
730
731 /*
732 * While in vblank, position will be negative
733 * counting up towards 0 at vbl_end. And outside
734 * vblank, position will be positive counting
735 * up since vbl_end.
736 */
737 if (position >= vbl_start)
738 position -= vbl_end;
739 else
740 position += vtotal - vbl_end;
741
Ville Syrjälä7c06b082013-10-11 21:52:43 +0300742 if (IS_GEN2(dev) || IS_G4X(dev) || INTEL_INFO(dev)->gen >= 5) {
Ville Syrjälä3aa18df2013-10-11 19:10:32 +0300743 *vpos = position;
744 *hpos = 0;
745 } else {
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100746 *vpos = position / htotal;
747 *hpos = position - (*vpos * htotal);
748 }
749
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100750 /* In vblank? */
751 if (in_vbl)
Daniel Vetter3d3cbd82014-09-10 17:36:11 +0200752 ret |= DRM_SCANOUTPOS_IN_VBLANK;
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100753
754 return ret;
755}
756
Ville Syrjäläa225f072014-04-29 13:35:45 +0300757int intel_get_crtc_scanline(struct intel_crtc *crtc)
758{
759 struct drm_i915_private *dev_priv = crtc->base.dev->dev_private;
760 unsigned long irqflags;
761 int position;
762
763 spin_lock_irqsave(&dev_priv->uncore.lock, irqflags);
764 position = __intel_get_crtc_scanline(crtc);
765 spin_unlock_irqrestore(&dev_priv->uncore.lock, irqflags);
766
767 return position;
768}
769
Jesse Barnesf71d4af2011-06-28 13:00:41 -0700770static int i915_get_vblank_timestamp(struct drm_device *dev, int pipe,
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100771 int *max_error,
772 struct timeval *vblank_time,
773 unsigned flags)
774{
Chris Wilson4041b852011-01-22 10:07:56 +0000775 struct drm_crtc *crtc;
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100776
Ben Widawsky7eb552a2013-03-13 14:05:41 -0700777 if (pipe < 0 || pipe >= INTEL_INFO(dev)->num_pipes) {
Chris Wilson4041b852011-01-22 10:07:56 +0000778 DRM_ERROR("Invalid crtc %d\n", pipe);
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100779 return -EINVAL;
780 }
781
782 /* Get drm_crtc to timestamp: */
Chris Wilson4041b852011-01-22 10:07:56 +0000783 crtc = intel_get_crtc_for_pipe(dev, pipe);
784 if (crtc == NULL) {
785 DRM_ERROR("Invalid crtc %d\n", pipe);
786 return -EINVAL;
787 }
788
789 if (!crtc->enabled) {
790 DRM_DEBUG_KMS("crtc %d is disabled\n", pipe);
791 return -EBUSY;
792 }
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100793
794 /* Helper routine in DRM core does all the work: */
Chris Wilson4041b852011-01-22 10:07:56 +0000795 return drm_calc_vbltimestamp_from_scanoutpos(dev, pipe, max_error,
796 vblank_time, flags,
Ville Syrjälä7da903e2013-10-26 17:57:31 +0300797 crtc,
798 &to_intel_crtc(crtc)->config.adjusted_mode);
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100799}
800
Jani Nikula67c347f2013-09-17 14:26:34 +0300801static bool intel_hpd_irq_event(struct drm_device *dev,
802 struct drm_connector *connector)
Egbert Eich321a1b32013-04-11 16:00:26 +0200803{
804 enum drm_connector_status old_status;
805
806 WARN_ON(!mutex_is_locked(&dev->mode_config.mutex));
807 old_status = connector->status;
808
809 connector->status = connector->funcs->detect(connector, false);
Jani Nikula67c347f2013-09-17 14:26:34 +0300810 if (old_status == connector->status)
811 return false;
812
813 DRM_DEBUG_KMS("[CONNECTOR:%d:%s] status updated from %s to %s\n",
Egbert Eich321a1b32013-04-11 16:00:26 +0200814 connector->base.id,
Jani Nikulac23cc412014-06-03 14:56:17 +0300815 connector->name,
Jani Nikula67c347f2013-09-17 14:26:34 +0300816 drm_get_connector_status_name(old_status),
817 drm_get_connector_status_name(connector->status));
818
819 return true;
Egbert Eich321a1b32013-04-11 16:00:26 +0200820}
821
Dave Airlie13cf5502014-06-18 11:29:35 +1000822static void i915_digport_work_func(struct work_struct *work)
823{
824 struct drm_i915_private *dev_priv =
825 container_of(work, struct drm_i915_private, dig_port_work);
Dave Airlie13cf5502014-06-18 11:29:35 +1000826 u32 long_port_mask, short_port_mask;
827 struct intel_digital_port *intel_dig_port;
828 int i, ret;
829 u32 old_bits = 0;
830
Daniel Vetter4cb21832014-09-15 14:55:26 +0200831 spin_lock_irq(&dev_priv->irq_lock);
Dave Airlie13cf5502014-06-18 11:29:35 +1000832 long_port_mask = dev_priv->long_hpd_port_mask;
833 dev_priv->long_hpd_port_mask = 0;
834 short_port_mask = dev_priv->short_hpd_port_mask;
835 dev_priv->short_hpd_port_mask = 0;
Daniel Vetter4cb21832014-09-15 14:55:26 +0200836 spin_unlock_irq(&dev_priv->irq_lock);
Dave Airlie13cf5502014-06-18 11:29:35 +1000837
838 for (i = 0; i < I915_MAX_PORTS; i++) {
839 bool valid = false;
840 bool long_hpd = false;
841 intel_dig_port = dev_priv->hpd_irq_port[i];
842 if (!intel_dig_port || !intel_dig_port->hpd_pulse)
843 continue;
844
845 if (long_port_mask & (1 << i)) {
846 valid = true;
847 long_hpd = true;
848 } else if (short_port_mask & (1 << i))
849 valid = true;
850
851 if (valid) {
852 ret = intel_dig_port->hpd_pulse(intel_dig_port, long_hpd);
853 if (ret == true) {
854 /* if we get true fallback to old school hpd */
855 old_bits |= (1 << intel_dig_port->base.hpd_pin);
856 }
857 }
858 }
859
860 if (old_bits) {
Daniel Vetter4cb21832014-09-15 14:55:26 +0200861 spin_lock_irq(&dev_priv->irq_lock);
Dave Airlie13cf5502014-06-18 11:29:35 +1000862 dev_priv->hpd_event_bits |= old_bits;
Daniel Vetter4cb21832014-09-15 14:55:26 +0200863 spin_unlock_irq(&dev_priv->irq_lock);
Dave Airlie13cf5502014-06-18 11:29:35 +1000864 schedule_work(&dev_priv->hotplug_work);
865 }
866}
867
Jesse Barnes5ca58282009-03-31 14:11:15 -0700868/*
869 * Handle hotplug events outside the interrupt handler proper.
870 */
Egbert Eichac4c16c2013-04-16 13:36:58 +0200871#define I915_REENABLE_HOTPLUG_DELAY (2*60*1000)
872
Jesse Barnes5ca58282009-03-31 14:11:15 -0700873static void i915_hotplug_work_func(struct work_struct *work)
874{
Jani Nikula2d1013d2014-03-31 14:27:17 +0300875 struct drm_i915_private *dev_priv =
876 container_of(work, struct drm_i915_private, hotplug_work);
Jesse Barnes5ca58282009-03-31 14:11:15 -0700877 struct drm_device *dev = dev_priv->dev;
Keith Packardc31c4ba2009-05-06 11:48:58 -0700878 struct drm_mode_config *mode_config = &dev->mode_config;
Egbert Eichcd569ae2013-04-16 13:36:57 +0200879 struct intel_connector *intel_connector;
880 struct intel_encoder *intel_encoder;
881 struct drm_connector *connector;
Egbert Eichcd569ae2013-04-16 13:36:57 +0200882 bool hpd_disabled = false;
Egbert Eich321a1b32013-04-11 16:00:26 +0200883 bool changed = false;
Egbert Eich142e2392013-04-11 15:57:57 +0200884 u32 hpd_event_bits;
Jesse Barnes5ca58282009-03-31 14:11:15 -0700885
Keith Packarda65e34c2011-07-25 10:04:56 -0700886 mutex_lock(&mode_config->mutex);
Jesse Barnese67189ab2011-02-11 14:44:51 -0800887 DRM_DEBUG_KMS("running encoder hotplug functions\n");
888
Daniel Vetter4cb21832014-09-15 14:55:26 +0200889 spin_lock_irq(&dev_priv->irq_lock);
Egbert Eich142e2392013-04-11 15:57:57 +0200890
891 hpd_event_bits = dev_priv->hpd_event_bits;
892 dev_priv->hpd_event_bits = 0;
Egbert Eichcd569ae2013-04-16 13:36:57 +0200893 list_for_each_entry(connector, &mode_config->connector_list, head) {
894 intel_connector = to_intel_connector(connector);
Dave Airlie36cd7442014-05-02 13:44:18 +1000895 if (!intel_connector->encoder)
896 continue;
Egbert Eichcd569ae2013-04-16 13:36:57 +0200897 intel_encoder = intel_connector->encoder;
898 if (intel_encoder->hpd_pin > HPD_NONE &&
899 dev_priv->hpd_stats[intel_encoder->hpd_pin].hpd_mark == HPD_MARK_DISABLED &&
900 connector->polled == DRM_CONNECTOR_POLL_HPD) {
901 DRM_INFO("HPD interrupt storm detected on connector %s: "
902 "switching from hotplug detection to polling\n",
Jani Nikulac23cc412014-06-03 14:56:17 +0300903 connector->name);
Egbert Eichcd569ae2013-04-16 13:36:57 +0200904 dev_priv->hpd_stats[intel_encoder->hpd_pin].hpd_mark = HPD_DISABLED;
905 connector->polled = DRM_CONNECTOR_POLL_CONNECT
906 | DRM_CONNECTOR_POLL_DISCONNECT;
907 hpd_disabled = true;
908 }
Egbert Eich142e2392013-04-11 15:57:57 +0200909 if (hpd_event_bits & (1 << intel_encoder->hpd_pin)) {
910 DRM_DEBUG_KMS("Connector %s (pin %i) received hotplug event.\n",
Jani Nikulac23cc412014-06-03 14:56:17 +0300911 connector->name, intel_encoder->hpd_pin);
Egbert Eich142e2392013-04-11 15:57:57 +0200912 }
Egbert Eichcd569ae2013-04-16 13:36:57 +0200913 }
914 /* if there were no outputs to poll, poll was disabled,
915 * therefore make sure it's enabled when disabling HPD on
916 * some connectors */
Egbert Eichac4c16c2013-04-16 13:36:58 +0200917 if (hpd_disabled) {
Egbert Eichcd569ae2013-04-16 13:36:57 +0200918 drm_kms_helper_poll_enable(dev);
Imre Deak63237512014-08-18 15:37:02 +0300919 mod_delayed_work(system_wq, &dev_priv->hotplug_reenable_work,
920 msecs_to_jiffies(I915_REENABLE_HOTPLUG_DELAY));
Egbert Eichac4c16c2013-04-16 13:36:58 +0200921 }
Egbert Eichcd569ae2013-04-16 13:36:57 +0200922
Daniel Vetter4cb21832014-09-15 14:55:26 +0200923 spin_unlock_irq(&dev_priv->irq_lock);
Egbert Eichcd569ae2013-04-16 13:36:57 +0200924
Egbert Eich321a1b32013-04-11 16:00:26 +0200925 list_for_each_entry(connector, &mode_config->connector_list, head) {
926 intel_connector = to_intel_connector(connector);
Dave Airlie36cd7442014-05-02 13:44:18 +1000927 if (!intel_connector->encoder)
928 continue;
Egbert Eich321a1b32013-04-11 16:00:26 +0200929 intel_encoder = intel_connector->encoder;
930 if (hpd_event_bits & (1 << intel_encoder->hpd_pin)) {
931 if (intel_encoder->hot_plug)
932 intel_encoder->hot_plug(intel_encoder);
933 if (intel_hpd_irq_event(dev, connector))
934 changed = true;
935 }
936 }
Keith Packard40ee3382011-07-28 15:31:19 -0700937 mutex_unlock(&mode_config->mutex);
938
Egbert Eich321a1b32013-04-11 16:00:26 +0200939 if (changed)
940 drm_kms_helper_hotplug_event(dev);
Jesse Barnes5ca58282009-03-31 14:11:15 -0700941}
942
Daniel Vetterd0ecd7e2013-07-04 23:35:25 +0200943static void ironlake_rps_change_irq_handler(struct drm_device *dev)
Jesse Barnesf97108d2010-01-29 11:27:07 -0800944{
Jani Nikula2d1013d2014-03-31 14:27:17 +0300945 struct drm_i915_private *dev_priv = dev->dev_private;
Matthew Garrettb5b72e82010-02-02 18:30:47 +0000946 u32 busy_up, busy_down, max_avg, min_avg;
Daniel Vetter92703882012-08-09 16:46:01 +0200947 u8 new_delay;
Daniel Vetter92703882012-08-09 16:46:01 +0200948
Daniel Vetterd0ecd7e2013-07-04 23:35:25 +0200949 spin_lock(&mchdev_lock);
Jesse Barnesf97108d2010-01-29 11:27:07 -0800950
Daniel Vetter73edd18f2012-08-08 23:35:37 +0200951 I915_WRITE16(MEMINTRSTS, I915_READ(MEMINTRSTS));
952
Daniel Vetter20e4d402012-08-08 23:35:39 +0200953 new_delay = dev_priv->ips.cur_delay;
Daniel Vetter92703882012-08-09 16:46:01 +0200954
Jesse Barnes7648fa92010-05-20 14:28:11 -0700955 I915_WRITE16(MEMINTRSTS, MEMINT_EVAL_CHG);
Matthew Garrettb5b72e82010-02-02 18:30:47 +0000956 busy_up = I915_READ(RCPREVBSYTUPAVG);
957 busy_down = I915_READ(RCPREVBSYTDNAVG);
Jesse Barnesf97108d2010-01-29 11:27:07 -0800958 max_avg = I915_READ(RCBMAXAVG);
959 min_avg = I915_READ(RCBMINAVG);
960
961 /* Handle RCS change request from hw */
Matthew Garrettb5b72e82010-02-02 18:30:47 +0000962 if (busy_up > max_avg) {
Daniel Vetter20e4d402012-08-08 23:35:39 +0200963 if (dev_priv->ips.cur_delay != dev_priv->ips.max_delay)
964 new_delay = dev_priv->ips.cur_delay - 1;
965 if (new_delay < dev_priv->ips.max_delay)
966 new_delay = dev_priv->ips.max_delay;
Matthew Garrettb5b72e82010-02-02 18:30:47 +0000967 } else if (busy_down < min_avg) {
Daniel Vetter20e4d402012-08-08 23:35:39 +0200968 if (dev_priv->ips.cur_delay != dev_priv->ips.min_delay)
969 new_delay = dev_priv->ips.cur_delay + 1;
970 if (new_delay > dev_priv->ips.min_delay)
971 new_delay = dev_priv->ips.min_delay;
Jesse Barnesf97108d2010-01-29 11:27:07 -0800972 }
973
Jesse Barnes7648fa92010-05-20 14:28:11 -0700974 if (ironlake_set_drps(dev, new_delay))
Daniel Vetter20e4d402012-08-08 23:35:39 +0200975 dev_priv->ips.cur_delay = new_delay;
Jesse Barnesf97108d2010-01-29 11:27:07 -0800976
Daniel Vetterd0ecd7e2013-07-04 23:35:25 +0200977 spin_unlock(&mchdev_lock);
Daniel Vetter92703882012-08-09 16:46:01 +0200978
Jesse Barnesf97108d2010-01-29 11:27:07 -0800979 return;
980}
981
Chris Wilson549f7362010-10-19 11:19:32 +0100982static void notify_ring(struct drm_device *dev,
Oscar Mateoa4872ba2014-05-22 14:13:33 +0100983 struct intel_engine_cs *ring)
Chris Wilson549f7362010-10-19 11:19:32 +0100984{
Oscar Mateo93b0a4e2014-05-22 14:13:36 +0100985 if (!intel_ring_initialized(ring))
Chris Wilson475553d2011-01-20 09:52:56 +0000986 return;
987
Chris Wilson814e9b52013-09-23 17:33:19 -0300988 trace_i915_gem_request_complete(ring);
Chris Wilson9862e602011-01-04 22:22:17 +0000989
Chris Wilson549f7362010-10-19 11:19:32 +0100990 wake_up_all(&ring->irq_queue);
Chris Wilson549f7362010-10-19 11:19:32 +0100991}
992
Deepak S31685c22014-07-03 17:33:01 -0400993static u32 vlv_c0_residency(struct drm_i915_private *dev_priv,
Chris Wilsonbf225f22014-07-10 20:31:18 +0100994 struct intel_rps_ei *rps_ei)
Deepak S31685c22014-07-03 17:33:01 -0400995{
996 u32 cz_ts, cz_freq_khz;
997 u32 render_count, media_count;
998 u32 elapsed_render, elapsed_media, elapsed_time;
999 u32 residency = 0;
1000
1001 cz_ts = vlv_punit_read(dev_priv, PUNIT_REG_CZ_TIMESTAMP);
1002 cz_freq_khz = DIV_ROUND_CLOSEST(dev_priv->mem_freq * 1000, 4);
1003
1004 render_count = I915_READ(VLV_RENDER_C0_COUNT_REG);
1005 media_count = I915_READ(VLV_MEDIA_C0_COUNT_REG);
1006
Chris Wilsonbf225f22014-07-10 20:31:18 +01001007 if (rps_ei->cz_clock == 0) {
1008 rps_ei->cz_clock = cz_ts;
1009 rps_ei->render_c0 = render_count;
1010 rps_ei->media_c0 = media_count;
Deepak S31685c22014-07-03 17:33:01 -04001011
1012 return dev_priv->rps.cur_freq;
1013 }
1014
Chris Wilsonbf225f22014-07-10 20:31:18 +01001015 elapsed_time = cz_ts - rps_ei->cz_clock;
1016 rps_ei->cz_clock = cz_ts;
Deepak S31685c22014-07-03 17:33:01 -04001017
Chris Wilsonbf225f22014-07-10 20:31:18 +01001018 elapsed_render = render_count - rps_ei->render_c0;
1019 rps_ei->render_c0 = render_count;
Deepak S31685c22014-07-03 17:33:01 -04001020
Chris Wilsonbf225f22014-07-10 20:31:18 +01001021 elapsed_media = media_count - rps_ei->media_c0;
1022 rps_ei->media_c0 = media_count;
Deepak S31685c22014-07-03 17:33:01 -04001023
1024 /* Convert all the counters into common unit of milli sec */
1025 elapsed_time /= VLV_CZ_CLOCK_TO_MILLI_SEC;
1026 elapsed_render /= cz_freq_khz;
1027 elapsed_media /= cz_freq_khz;
1028
1029 /*
1030 * Calculate overall C0 residency percentage
1031 * only if elapsed time is non zero
1032 */
1033 if (elapsed_time) {
1034 residency =
1035 ((max(elapsed_render, elapsed_media) * 100)
1036 / elapsed_time);
1037 }
1038
1039 return residency;
1040}
1041
1042/**
1043 * vlv_calc_delay_from_C0_counters - Increase/Decrease freq based on GPU
1044 * busy-ness calculated from C0 counters of render & media power wells
1045 * @dev_priv: DRM device private
1046 *
1047 */
Damien Lespiau4fa79042014-08-08 19:25:57 +01001048static int vlv_calc_delay_from_C0_counters(struct drm_i915_private *dev_priv)
Deepak S31685c22014-07-03 17:33:01 -04001049{
1050 u32 residency_C0_up = 0, residency_C0_down = 0;
Damien Lespiau4fa79042014-08-08 19:25:57 +01001051 int new_delay, adj;
Deepak S31685c22014-07-03 17:33:01 -04001052
1053 dev_priv->rps.ei_interrupt_count++;
1054
1055 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
1056
1057
Chris Wilsonbf225f22014-07-10 20:31:18 +01001058 if (dev_priv->rps.up_ei.cz_clock == 0) {
1059 vlv_c0_residency(dev_priv, &dev_priv->rps.up_ei);
1060 vlv_c0_residency(dev_priv, &dev_priv->rps.down_ei);
Deepak S31685c22014-07-03 17:33:01 -04001061 return dev_priv->rps.cur_freq;
1062 }
1063
1064
1065 /*
1066 * To down throttle, C0 residency should be less than down threshold
1067 * for continous EI intervals. So calculate down EI counters
1068 * once in VLV_INT_COUNT_FOR_DOWN_EI
1069 */
1070 if (dev_priv->rps.ei_interrupt_count == VLV_INT_COUNT_FOR_DOWN_EI) {
1071
1072 dev_priv->rps.ei_interrupt_count = 0;
1073
1074 residency_C0_down = vlv_c0_residency(dev_priv,
Chris Wilsonbf225f22014-07-10 20:31:18 +01001075 &dev_priv->rps.down_ei);
Deepak S31685c22014-07-03 17:33:01 -04001076 } else {
1077 residency_C0_up = vlv_c0_residency(dev_priv,
Chris Wilsonbf225f22014-07-10 20:31:18 +01001078 &dev_priv->rps.up_ei);
Deepak S31685c22014-07-03 17:33:01 -04001079 }
1080
1081 new_delay = dev_priv->rps.cur_freq;
1082
1083 adj = dev_priv->rps.last_adj;
1084 /* C0 residency is greater than UP threshold. Increase Frequency */
1085 if (residency_C0_up >= VLV_RP_UP_EI_THRESHOLD) {
1086 if (adj > 0)
1087 adj *= 2;
1088 else
1089 adj = 1;
1090
1091 if (dev_priv->rps.cur_freq < dev_priv->rps.max_freq_softlimit)
1092 new_delay = dev_priv->rps.cur_freq + adj;
1093
1094 /*
1095 * For better performance, jump directly
1096 * to RPe if we're below it.
1097 */
1098 if (new_delay < dev_priv->rps.efficient_freq)
1099 new_delay = dev_priv->rps.efficient_freq;
1100
1101 } else if (!dev_priv->rps.ei_interrupt_count &&
1102 (residency_C0_down < VLV_RP_DOWN_EI_THRESHOLD)) {
1103 if (adj < 0)
1104 adj *= 2;
1105 else
1106 adj = -1;
1107 /*
1108 * This means, C0 residency is less than down threshold over
1109 * a period of VLV_INT_COUNT_FOR_DOWN_EI. So, reduce the freq
1110 */
1111 if (dev_priv->rps.cur_freq > dev_priv->rps.min_freq_softlimit)
1112 new_delay = dev_priv->rps.cur_freq + adj;
1113 }
1114
1115 return new_delay;
1116}
1117
Ben Widawsky4912d042011-04-25 11:25:20 -07001118static void gen6_pm_rps_work(struct work_struct *work)
Jesse Barnes3b8d8d92010-12-17 14:19:02 -08001119{
Jani Nikula2d1013d2014-03-31 14:27:17 +03001120 struct drm_i915_private *dev_priv =
1121 container_of(work, struct drm_i915_private, rps.work);
Paulo Zanoniedbfdb42013-08-06 18:57:13 -03001122 u32 pm_iir;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01001123 int new_delay, adj;
Jesse Barnes3b8d8d92010-12-17 14:19:02 -08001124
Daniel Vetter59cdb632013-07-04 23:35:28 +02001125 spin_lock_irq(&dev_priv->irq_lock);
Daniel Vetterc6a828d2012-08-08 23:35:35 +02001126 pm_iir = dev_priv->rps.pm_iir;
1127 dev_priv->rps.pm_iir = 0;
Imre Deaka72fbc32014-11-05 20:48:31 +02001128 /* Make sure not to corrupt PMIMR state used by ringbuffer on GEN6 */
1129 gen6_enable_pm_irq(dev_priv, dev_priv->pm_rps_events);
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 Widawskyabd58f02013-11-02 21:07:09 -07001331static irqreturn_t gen8_gt_irq_handler(struct drm_device *dev,
1332 struct drm_i915_private *dev_priv,
1333 u32 master_ctl)
1334{
Thomas Daniele981e7b2014-07-24 17:04:39 +01001335 struct intel_engine_cs *ring;
Ben Widawskyabd58f02013-11-02 21:07:09 -07001336 u32 rcs, bcs, vcs;
1337 uint32_t tmp = 0;
1338 irqreturn_t ret = IRQ_NONE;
1339
1340 if (master_ctl & (GEN8_GT_RCS_IRQ | GEN8_GT_BCS_IRQ)) {
1341 tmp = I915_READ(GEN8_GT_IIR(0));
1342 if (tmp) {
Oscar Mateo38cc46d2014-06-16 16:10:59 +01001343 I915_WRITE(GEN8_GT_IIR(0), tmp);
Ben Widawskyabd58f02013-11-02 21:07:09 -07001344 ret = IRQ_HANDLED;
Thomas Daniele981e7b2014-07-24 17:04:39 +01001345
Ben Widawskyabd58f02013-11-02 21:07:09 -07001346 rcs = tmp >> GEN8_RCS_IRQ_SHIFT;
Thomas Daniele981e7b2014-07-24 17:04:39 +01001347 ring = &dev_priv->ring[RCS];
Ben Widawskyabd58f02013-11-02 21:07:09 -07001348 if (rcs & GT_RENDER_USER_INTERRUPT)
Thomas Daniele981e7b2014-07-24 17:04:39 +01001349 notify_ring(dev, ring);
1350 if (rcs & GT_CONTEXT_SWITCH_INTERRUPT)
1351 intel_execlists_handle_ctx_events(ring);
1352
1353 bcs = tmp >> GEN8_BCS_IRQ_SHIFT;
1354 ring = &dev_priv->ring[BCS];
Ben Widawskyabd58f02013-11-02 21:07:09 -07001355 if (bcs & GT_RENDER_USER_INTERRUPT)
Thomas Daniele981e7b2014-07-24 17:04:39 +01001356 notify_ring(dev, ring);
1357 if (bcs & GT_CONTEXT_SWITCH_INTERRUPT)
1358 intel_execlists_handle_ctx_events(ring);
Ben Widawskyabd58f02013-11-02 21:07:09 -07001359 } else
1360 DRM_ERROR("The master control interrupt lied (GT0)!\n");
1361 }
1362
Zhao Yakui85f9b5f2014-04-17 10:37:38 +08001363 if (master_ctl & (GEN8_GT_VCS1_IRQ | GEN8_GT_VCS2_IRQ)) {
Ben Widawskyabd58f02013-11-02 21:07:09 -07001364 tmp = I915_READ(GEN8_GT_IIR(1));
1365 if (tmp) {
Oscar Mateo38cc46d2014-06-16 16:10:59 +01001366 I915_WRITE(GEN8_GT_IIR(1), tmp);
Ben Widawskyabd58f02013-11-02 21:07:09 -07001367 ret = IRQ_HANDLED;
Thomas Daniele981e7b2014-07-24 17:04:39 +01001368
Ben Widawskyabd58f02013-11-02 21:07:09 -07001369 vcs = tmp >> GEN8_VCS1_IRQ_SHIFT;
Thomas Daniele981e7b2014-07-24 17:04:39 +01001370 ring = &dev_priv->ring[VCS];
Ben Widawskyabd58f02013-11-02 21:07:09 -07001371 if (vcs & GT_RENDER_USER_INTERRUPT)
Thomas Daniele981e7b2014-07-24 17:04:39 +01001372 notify_ring(dev, ring);
Oscar Mateo73d477f2014-07-24 17:04:31 +01001373 if (vcs & GT_CONTEXT_SWITCH_INTERRUPT)
Thomas Daniele981e7b2014-07-24 17:04:39 +01001374 intel_execlists_handle_ctx_events(ring);
1375
Zhao Yakui85f9b5f2014-04-17 10:37:38 +08001376 vcs = tmp >> GEN8_VCS2_IRQ_SHIFT;
Thomas Daniele981e7b2014-07-24 17:04:39 +01001377 ring = &dev_priv->ring[VCS2];
Zhao Yakui85f9b5f2014-04-17 10:37:38 +08001378 if (vcs & GT_RENDER_USER_INTERRUPT)
Thomas Daniele981e7b2014-07-24 17:04:39 +01001379 notify_ring(dev, ring);
Oscar Mateo73d477f2014-07-24 17:04:31 +01001380 if (vcs & GT_CONTEXT_SWITCH_INTERRUPT)
Thomas Daniele981e7b2014-07-24 17:04:39 +01001381 intel_execlists_handle_ctx_events(ring);
Ben Widawskyabd58f02013-11-02 21:07:09 -07001382 } else
1383 DRM_ERROR("The master control interrupt lied (GT1)!\n");
1384 }
1385
Ben Widawsky09610212014-05-15 20:58:08 +03001386 if (master_ctl & GEN8_GT_PM_IRQ) {
1387 tmp = I915_READ(GEN8_GT_IIR(2));
1388 if (tmp & dev_priv->pm_rps_events) {
Ben Widawsky09610212014-05-15 20:58:08 +03001389 I915_WRITE(GEN8_GT_IIR(2),
1390 tmp & dev_priv->pm_rps_events);
Oscar Mateo38cc46d2014-06-16 16:10:59 +01001391 ret = IRQ_HANDLED;
Imre Deakc9a9a262014-11-05 20:48:37 +02001392 gen6_rps_irq_handler(dev_priv, tmp);
Ben Widawsky09610212014-05-15 20:58:08 +03001393 } else
1394 DRM_ERROR("The master control interrupt lied (PM)!\n");
1395 }
1396
Ben Widawskyabd58f02013-11-02 21:07:09 -07001397 if (master_ctl & GEN8_GT_VECS_IRQ) {
1398 tmp = I915_READ(GEN8_GT_IIR(3));
1399 if (tmp) {
Oscar Mateo38cc46d2014-06-16 16:10:59 +01001400 I915_WRITE(GEN8_GT_IIR(3), tmp);
Ben Widawskyabd58f02013-11-02 21:07:09 -07001401 ret = IRQ_HANDLED;
Thomas Daniele981e7b2014-07-24 17:04:39 +01001402
Ben Widawskyabd58f02013-11-02 21:07:09 -07001403 vcs = tmp >> GEN8_VECS_IRQ_SHIFT;
Thomas Daniele981e7b2014-07-24 17:04:39 +01001404 ring = &dev_priv->ring[VECS];
Ben Widawskyabd58f02013-11-02 21:07:09 -07001405 if (vcs & GT_RENDER_USER_INTERRUPT)
Thomas Daniele981e7b2014-07-24 17:04:39 +01001406 notify_ring(dev, ring);
Oscar Mateo73d477f2014-07-24 17:04:31 +01001407 if (vcs & GT_CONTEXT_SWITCH_INTERRUPT)
Thomas Daniele981e7b2014-07-24 17:04:39 +01001408 intel_execlists_handle_ctx_events(ring);
Ben Widawskyabd58f02013-11-02 21:07:09 -07001409 } else
1410 DRM_ERROR("The master control interrupt lied (GT3)!\n");
1411 }
1412
1413 return ret;
1414}
1415
Egbert Eichb543fb02013-04-16 13:36:54 +02001416#define HPD_STORM_DETECT_PERIOD 1000
1417#define HPD_STORM_THRESHOLD 5
1418
Jani Nikula07c338c2014-10-02 11:16:32 +03001419static int pch_port_to_hotplug_shift(enum port port)
Dave Airlie13cf5502014-06-18 11:29:35 +10001420{
1421 switch (port) {
1422 case PORT_A:
1423 case PORT_E:
1424 default:
1425 return -1;
1426 case PORT_B:
1427 return 0;
1428 case PORT_C:
1429 return 8;
1430 case PORT_D:
1431 return 16;
1432 }
1433}
1434
Jani Nikula07c338c2014-10-02 11:16:32 +03001435static int i915_port_to_hotplug_shift(enum port port)
Dave Airlie13cf5502014-06-18 11:29:35 +10001436{
1437 switch (port) {
1438 case PORT_A:
1439 case PORT_E:
1440 default:
1441 return -1;
1442 case PORT_B:
1443 return 17;
1444 case PORT_C:
1445 return 19;
1446 case PORT_D:
1447 return 21;
1448 }
1449}
1450
1451static inline enum port get_port_from_pin(enum hpd_pin pin)
1452{
1453 switch (pin) {
1454 case HPD_PORT_B:
1455 return PORT_B;
1456 case HPD_PORT_C:
1457 return PORT_C;
1458 case HPD_PORT_D:
1459 return PORT_D;
1460 default:
1461 return PORT_A; /* no hpd */
1462 }
1463}
1464
Daniel Vetter10a504d2013-06-27 17:52:12 +02001465static inline void intel_hpd_irq_handler(struct drm_device *dev,
Daniel Vetter22062db2013-06-27 17:52:11 +02001466 u32 hotplug_trigger,
Dave Airlie13cf5502014-06-18 11:29:35 +10001467 u32 dig_hotplug_reg,
Daniel Vetter22062db2013-06-27 17:52:11 +02001468 const u32 *hpd)
Egbert Eichb543fb02013-04-16 13:36:54 +02001469{
Jani Nikula2d1013d2014-03-31 14:27:17 +03001470 struct drm_i915_private *dev_priv = dev->dev_private;
Egbert Eichb543fb02013-04-16 13:36:54 +02001471 int i;
Dave Airlie13cf5502014-06-18 11:29:35 +10001472 enum port port;
Daniel Vetter10a504d2013-06-27 17:52:12 +02001473 bool storm_detected = false;
Dave Airlie13cf5502014-06-18 11:29:35 +10001474 bool queue_dig = false, queue_hp = false;
1475 u32 dig_shift;
1476 u32 dig_port_mask = 0;
Egbert Eichb543fb02013-04-16 13:36:54 +02001477
Daniel Vetter91d131d2013-06-27 17:52:14 +02001478 if (!hotplug_trigger)
1479 return;
1480
Dave Airlie13cf5502014-06-18 11:29:35 +10001481 DRM_DEBUG_DRIVER("hotplug event received, stat 0x%08x, dig 0x%08x\n",
1482 hotplug_trigger, dig_hotplug_reg);
Imre Deakcc9bd492014-01-16 19:56:54 +02001483
Daniel Vetterb5ea2d52013-06-27 17:52:15 +02001484 spin_lock(&dev_priv->irq_lock);
Egbert Eichb543fb02013-04-16 13:36:54 +02001485 for (i = 1; i < HPD_NUM_PINS; i++) {
Dave Airlie13cf5502014-06-18 11:29:35 +10001486 if (!(hpd[i] & hotplug_trigger))
1487 continue;
Egbert Eich821450c2013-04-16 13:36:55 +02001488
Dave Airlie13cf5502014-06-18 11:29:35 +10001489 port = get_port_from_pin(i);
1490 if (port && dev_priv->hpd_irq_port[port]) {
1491 bool long_hpd;
1492
Jani Nikula07c338c2014-10-02 11:16:32 +03001493 if (HAS_PCH_SPLIT(dev)) {
1494 dig_shift = pch_port_to_hotplug_shift(port);
Dave Airlie13cf5502014-06-18 11:29:35 +10001495 long_hpd = (dig_hotplug_reg >> dig_shift) & PORTB_HOTPLUG_LONG_DETECT;
Jani Nikula07c338c2014-10-02 11:16:32 +03001496 } else {
1497 dig_shift = i915_port_to_hotplug_shift(port);
1498 long_hpd = (hotplug_trigger >> dig_shift) & PORTB_HOTPLUG_LONG_DETECT;
Dave Airlie13cf5502014-06-18 11:29:35 +10001499 }
1500
Ville Syrjälä26fbb772014-08-11 18:37:37 +03001501 DRM_DEBUG_DRIVER("digital hpd port %c - %s\n",
1502 port_name(port),
1503 long_hpd ? "long" : "short");
Dave Airlie13cf5502014-06-18 11:29:35 +10001504 /* for long HPD pulses we want to have the digital queue happen,
1505 but we still want HPD storm detection to function. */
1506 if (long_hpd) {
1507 dev_priv->long_hpd_port_mask |= (1 << port);
1508 dig_port_mask |= hpd[i];
1509 } else {
1510 /* for short HPD just trigger the digital queue */
1511 dev_priv->short_hpd_port_mask |= (1 << port);
1512 hotplug_trigger &= ~hpd[i];
1513 }
1514 queue_dig = true;
1515 }
1516 }
1517
1518 for (i = 1; i < HPD_NUM_PINS; i++) {
Daniel Vetter3ff04a162014-04-24 12:03:17 +02001519 if (hpd[i] & hotplug_trigger &&
1520 dev_priv->hpd_stats[i].hpd_mark == HPD_DISABLED) {
1521 /*
1522 * On GMCH platforms the interrupt mask bits only
1523 * prevent irq generation, not the setting of the
1524 * hotplug bits itself. So only WARN about unexpected
1525 * interrupts on saner platforms.
1526 */
1527 WARN_ONCE(INTEL_INFO(dev)->gen >= 5 && !IS_VALLEYVIEW(dev),
1528 "Received HPD interrupt (0x%08x) on pin %d (0x%08x) although disabled\n",
1529 hotplug_trigger, i, hpd[i]);
1530
1531 continue;
1532 }
Egbert Eichb8f102e2013-07-26 14:14:24 +02001533
Egbert Eichb543fb02013-04-16 13:36:54 +02001534 if (!(hpd[i] & hotplug_trigger) ||
1535 dev_priv->hpd_stats[i].hpd_mark != HPD_ENABLED)
1536 continue;
1537
Dave Airlie13cf5502014-06-18 11:29:35 +10001538 if (!(dig_port_mask & hpd[i])) {
1539 dev_priv->hpd_event_bits |= (1 << i);
1540 queue_hp = true;
1541 }
1542
Egbert Eichb543fb02013-04-16 13:36:54 +02001543 if (!time_in_range(jiffies, dev_priv->hpd_stats[i].hpd_last_jiffies,
1544 dev_priv->hpd_stats[i].hpd_last_jiffies
1545 + msecs_to_jiffies(HPD_STORM_DETECT_PERIOD))) {
1546 dev_priv->hpd_stats[i].hpd_last_jiffies = jiffies;
1547 dev_priv->hpd_stats[i].hpd_cnt = 0;
Egbert Eichb8f102e2013-07-26 14:14:24 +02001548 DRM_DEBUG_KMS("Received HPD interrupt on PIN %d - cnt: 0\n", i);
Egbert Eichb543fb02013-04-16 13:36:54 +02001549 } else if (dev_priv->hpd_stats[i].hpd_cnt > HPD_STORM_THRESHOLD) {
1550 dev_priv->hpd_stats[i].hpd_mark = HPD_MARK_DISABLED;
Egbert Eich142e2392013-04-11 15:57:57 +02001551 dev_priv->hpd_event_bits &= ~(1 << i);
Egbert Eichb543fb02013-04-16 13:36:54 +02001552 DRM_DEBUG_KMS("HPD interrupt storm detected on PIN %d\n", i);
Daniel Vetter10a504d2013-06-27 17:52:12 +02001553 storm_detected = true;
Egbert Eichb543fb02013-04-16 13:36:54 +02001554 } else {
1555 dev_priv->hpd_stats[i].hpd_cnt++;
Egbert Eichb8f102e2013-07-26 14:14:24 +02001556 DRM_DEBUG_KMS("Received HPD interrupt on PIN %d - cnt: %d\n", i,
1557 dev_priv->hpd_stats[i].hpd_cnt);
Egbert Eichb543fb02013-04-16 13:36:54 +02001558 }
1559 }
1560
Daniel Vetter10a504d2013-06-27 17:52:12 +02001561 if (storm_detected)
1562 dev_priv->display.hpd_irq_setup(dev);
Daniel Vetterb5ea2d52013-06-27 17:52:15 +02001563 spin_unlock(&dev_priv->irq_lock);
Daniel Vetter5876fa02013-06-27 17:52:13 +02001564
Daniel Vetter645416f2013-09-02 16:22:25 +02001565 /*
1566 * Our hotplug handler can grab modeset locks (by calling down into the
1567 * fb helpers). Hence it must not be run on our own dev-priv->wq work
1568 * queue for otherwise the flush_work in the pageflip code will
1569 * deadlock.
1570 */
Dave Airlie13cf5502014-06-18 11:29:35 +10001571 if (queue_dig)
Dave Airlie0e32b392014-05-02 14:02:48 +10001572 queue_work(dev_priv->dp_wq, &dev_priv->dig_port_work);
Dave Airlie13cf5502014-06-18 11:29:35 +10001573 if (queue_hp)
1574 schedule_work(&dev_priv->hotplug_work);
Egbert Eichb543fb02013-04-16 13:36:54 +02001575}
1576
Daniel Vetter515ac2b2012-12-01 13:53:44 +01001577static void gmbus_irq_handler(struct drm_device *dev)
1578{
Jani Nikula2d1013d2014-03-31 14:27:17 +03001579 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter28c70f12012-12-01 13:53:45 +01001580
Daniel Vetter28c70f12012-12-01 13:53:45 +01001581 wake_up_all(&dev_priv->gmbus_wait_queue);
Daniel Vetter515ac2b2012-12-01 13:53:44 +01001582}
1583
Daniel Vetterce99c252012-12-01 13:53:47 +01001584static void dp_aux_irq_handler(struct drm_device *dev)
1585{
Jani Nikula2d1013d2014-03-31 14:27:17 +03001586 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter9ee32fea2012-12-01 13:53:48 +01001587
Daniel Vetter9ee32fea2012-12-01 13:53:48 +01001588 wake_up_all(&dev_priv->gmbus_wait_queue);
Daniel Vetterce99c252012-12-01 13:53:47 +01001589}
1590
Shuang He8bf1e9f2013-10-15 18:55:27 +01001591#if defined(CONFIG_DEBUG_FS)
Daniel Vetter277de952013-10-18 16:37:07 +02001592static void display_pipe_crc_irq_handler(struct drm_device *dev, enum pipe pipe,
1593 uint32_t crc0, uint32_t crc1,
1594 uint32_t crc2, uint32_t crc3,
1595 uint32_t crc4)
Shuang He8bf1e9f2013-10-15 18:55:27 +01001596{
1597 struct drm_i915_private *dev_priv = dev->dev_private;
1598 struct intel_pipe_crc *pipe_crc = &dev_priv->pipe_crc[pipe];
1599 struct intel_pipe_crc_entry *entry;
Damien Lespiauac2300d2013-10-15 18:55:30 +01001600 int head, tail;
Damien Lespiaub2c88f52013-10-15 18:55:29 +01001601
Damien Lespiaud538bbd2013-10-21 14:29:30 +01001602 spin_lock(&pipe_crc->lock);
1603
Damien Lespiau0c912c72013-10-15 18:55:37 +01001604 if (!pipe_crc->entries) {
Damien Lespiaud538bbd2013-10-21 14:29:30 +01001605 spin_unlock(&pipe_crc->lock);
Damien Lespiau0c912c72013-10-15 18:55:37 +01001606 DRM_ERROR("spurious interrupt\n");
1607 return;
1608 }
1609
Damien Lespiaud538bbd2013-10-21 14:29:30 +01001610 head = pipe_crc->head;
1611 tail = pipe_crc->tail;
Damien Lespiaub2c88f52013-10-15 18:55:29 +01001612
1613 if (CIRC_SPACE(head, tail, INTEL_PIPE_CRC_ENTRIES_NR) < 1) {
Damien Lespiaud538bbd2013-10-21 14:29:30 +01001614 spin_unlock(&pipe_crc->lock);
Damien Lespiaub2c88f52013-10-15 18:55:29 +01001615 DRM_ERROR("CRC buffer overflowing\n");
1616 return;
1617 }
1618
1619 entry = &pipe_crc->entries[head];
Shuang He8bf1e9f2013-10-15 18:55:27 +01001620
Daniel Vetter8bc5e952013-10-16 22:55:49 +02001621 entry->frame = dev->driver->get_vblank_counter(dev, pipe);
Daniel Vettereba94eb2013-10-16 22:55:46 +02001622 entry->crc[0] = crc0;
1623 entry->crc[1] = crc1;
1624 entry->crc[2] = crc2;
1625 entry->crc[3] = crc3;
1626 entry->crc[4] = crc4;
Damien Lespiaub2c88f52013-10-15 18:55:29 +01001627
1628 head = (head + 1) & (INTEL_PIPE_CRC_ENTRIES_NR - 1);
Damien Lespiaud538bbd2013-10-21 14:29:30 +01001629 pipe_crc->head = head;
1630
1631 spin_unlock(&pipe_crc->lock);
Damien Lespiau07144422013-10-15 18:55:40 +01001632
1633 wake_up_interruptible(&pipe_crc->wq);
Shuang He8bf1e9f2013-10-15 18:55:27 +01001634}
Daniel Vetter277de952013-10-18 16:37:07 +02001635#else
1636static inline void
1637display_pipe_crc_irq_handler(struct drm_device *dev, enum pipe pipe,
1638 uint32_t crc0, uint32_t crc1,
1639 uint32_t crc2, uint32_t crc3,
1640 uint32_t crc4) {}
1641#endif
Daniel Vettereba94eb2013-10-16 22:55:46 +02001642
Daniel Vetter277de952013-10-18 16:37:07 +02001643
1644static void hsw_pipe_crc_irq_handler(struct drm_device *dev, enum pipe pipe)
Daniel Vetter5a69b892013-10-16 22:55:52 +02001645{
1646 struct drm_i915_private *dev_priv = dev->dev_private;
1647
Daniel Vetter277de952013-10-18 16:37:07 +02001648 display_pipe_crc_irq_handler(dev, pipe,
1649 I915_READ(PIPE_CRC_RES_1_IVB(pipe)),
1650 0, 0, 0, 0);
Daniel Vetter5a69b892013-10-16 22:55:52 +02001651}
1652
Daniel Vetter277de952013-10-18 16:37:07 +02001653static void ivb_pipe_crc_irq_handler(struct drm_device *dev, enum pipe pipe)
Daniel Vettereba94eb2013-10-16 22:55:46 +02001654{
1655 struct drm_i915_private *dev_priv = dev->dev_private;
1656
Daniel Vetter277de952013-10-18 16:37:07 +02001657 display_pipe_crc_irq_handler(dev, pipe,
1658 I915_READ(PIPE_CRC_RES_1_IVB(pipe)),
1659 I915_READ(PIPE_CRC_RES_2_IVB(pipe)),
1660 I915_READ(PIPE_CRC_RES_3_IVB(pipe)),
1661 I915_READ(PIPE_CRC_RES_4_IVB(pipe)),
1662 I915_READ(PIPE_CRC_RES_5_IVB(pipe)));
Daniel Vettereba94eb2013-10-16 22:55:46 +02001663}
Daniel Vetter5b3a8562013-10-16 22:55:48 +02001664
Daniel Vetter277de952013-10-18 16:37:07 +02001665static void i9xx_pipe_crc_irq_handler(struct drm_device *dev, enum pipe pipe)
Daniel Vetter5b3a8562013-10-16 22:55:48 +02001666{
1667 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter0b5c5ed2013-10-16 22:55:53 +02001668 uint32_t res1, res2;
1669
1670 if (INTEL_INFO(dev)->gen >= 3)
1671 res1 = I915_READ(PIPE_CRC_RES_RES1_I915(pipe));
1672 else
1673 res1 = 0;
1674
1675 if (INTEL_INFO(dev)->gen >= 5 || IS_G4X(dev))
1676 res2 = I915_READ(PIPE_CRC_RES_RES2_G4X(pipe));
1677 else
1678 res2 = 0;
Daniel Vetter5b3a8562013-10-16 22:55:48 +02001679
Daniel Vetter277de952013-10-18 16:37:07 +02001680 display_pipe_crc_irq_handler(dev, pipe,
1681 I915_READ(PIPE_CRC_RES_RED(pipe)),
1682 I915_READ(PIPE_CRC_RES_GREEN(pipe)),
1683 I915_READ(PIPE_CRC_RES_BLUE(pipe)),
1684 res1, res2);
Daniel Vetter5b3a8562013-10-16 22:55:48 +02001685}
Shuang He8bf1e9f2013-10-15 18:55:27 +01001686
Paulo Zanoni1403c0d2013-08-15 11:51:32 -03001687/* The RPS events need forcewake, so we add them to a work queue and mask their
1688 * IMR bits until the work is done. Other interrupts can be processed without
1689 * the work queue. */
1690static void gen6_rps_irq_handler(struct drm_i915_private *dev_priv, u32 pm_iir)
Ben Widawskybaf02a12013-05-28 19:22:24 -07001691{
Imre Deak4a74de82014-11-19 15:30:01 +02001692 /* TODO: RPS on GEN9+ is not supported yet. */
1693 if (WARN_ONCE(INTEL_INFO(dev_priv)->gen >= 9,
1694 "GEN9+: unexpected RPS IRQ\n"))
Imre Deak132f3f12014-11-10 15:34:33 +02001695 return;
1696
Deepak Sa6706b42014-03-15 20:23:22 +05301697 if (pm_iir & dev_priv->pm_rps_events) {
Daniel Vetter59cdb632013-07-04 23:35:28 +02001698 spin_lock(&dev_priv->irq_lock);
Deepak Sa6706b42014-03-15 20:23:22 +05301699 dev_priv->rps.pm_iir |= pm_iir & dev_priv->pm_rps_events;
Daniel Vetter480c8032014-07-16 09:49:40 +02001700 gen6_disable_pm_irq(dev_priv, pm_iir & dev_priv->pm_rps_events);
Daniel Vetter59cdb632013-07-04 23:35:28 +02001701 spin_unlock(&dev_priv->irq_lock);
Daniel Vetter2adbee62013-07-04 23:35:27 +02001702
1703 queue_work(dev_priv->wq, &dev_priv->rps.work);
Ben Widawskybaf02a12013-05-28 19:22:24 -07001704 }
Ben Widawskybaf02a12013-05-28 19:22:24 -07001705
Imre Deakc9a9a262014-11-05 20:48:37 +02001706 if (INTEL_INFO(dev_priv)->gen >= 8)
1707 return;
1708
Paulo Zanoni1403c0d2013-08-15 11:51:32 -03001709 if (HAS_VEBOX(dev_priv->dev)) {
1710 if (pm_iir & PM_VEBOX_USER_INTERRUPT)
1711 notify_ring(dev_priv->dev, &dev_priv->ring[VECS]);
Ben Widawsky12638c52013-05-28 19:22:31 -07001712
Paulo Zanoni1403c0d2013-08-15 11:51:32 -03001713 if (pm_iir & PM_VEBOX_CS_ERROR_INTERRUPT) {
Mika Kuoppala58174462014-02-25 17:11:26 +02001714 i915_handle_error(dev_priv->dev, false,
1715 "VEBOX CS error interrupt 0x%08x",
1716 pm_iir);
Paulo Zanoni1403c0d2013-08-15 11:51:32 -03001717 }
Ben Widawsky12638c52013-05-28 19:22:31 -07001718 }
Ben Widawskybaf02a12013-05-28 19:22:24 -07001719}
1720
Ville Syrjälä8d7849d2014-04-29 13:35:46 +03001721static bool intel_pipe_handle_vblank(struct drm_device *dev, enum pipe pipe)
1722{
Ville Syrjälä8d7849d2014-04-29 13:35:46 +03001723 if (!drm_handle_vblank(dev, pipe))
1724 return false;
1725
Ville Syrjälä8d7849d2014-04-29 13:35:46 +03001726 return true;
1727}
1728
Imre Deakc1874ed2014-02-04 21:35:46 +02001729static void valleyview_pipestat_irq_handler(struct drm_device *dev, u32 iir)
1730{
1731 struct drm_i915_private *dev_priv = dev->dev_private;
Imre Deak91d181d2014-02-10 18:42:49 +02001732 u32 pipe_stats[I915_MAX_PIPES] = { };
Imre Deakc1874ed2014-02-04 21:35:46 +02001733 int pipe;
1734
Imre Deak58ead0d2014-02-04 21:35:47 +02001735 spin_lock(&dev_priv->irq_lock);
Damien Lespiau055e3932014-08-18 13:49:10 +01001736 for_each_pipe(dev_priv, pipe) {
Imre Deak91d181d2014-02-10 18:42:49 +02001737 int reg;
Daniel Vetterbbb5eeb2014-02-12 17:55:36 +01001738 u32 mask, iir_bit = 0;
Imre Deak91d181d2014-02-10 18:42:49 +02001739
Daniel Vetterbbb5eeb2014-02-12 17:55:36 +01001740 /*
1741 * PIPESTAT bits get signalled even when the interrupt is
1742 * disabled with the mask bits, and some of the status bits do
1743 * not generate interrupts at all (like the underrun bit). Hence
1744 * we need to be careful that we only handle what we want to
1745 * handle.
1746 */
Daniel Vetter0f239f42014-09-30 10:56:49 +02001747
1748 /* fifo underruns are filterered in the underrun handler. */
1749 mask = PIPE_FIFO_UNDERRUN_STATUS;
Daniel Vetterbbb5eeb2014-02-12 17:55:36 +01001750
1751 switch (pipe) {
1752 case PIPE_A:
1753 iir_bit = I915_DISPLAY_PIPE_A_EVENT_INTERRUPT;
1754 break;
1755 case PIPE_B:
1756 iir_bit = I915_DISPLAY_PIPE_B_EVENT_INTERRUPT;
1757 break;
Ville Syrjälä3278f672014-04-09 13:28:49 +03001758 case PIPE_C:
1759 iir_bit = I915_DISPLAY_PIPE_C_EVENT_INTERRUPT;
1760 break;
Daniel Vetterbbb5eeb2014-02-12 17:55:36 +01001761 }
1762 if (iir & iir_bit)
1763 mask |= dev_priv->pipestat_irq_mask[pipe];
1764
1765 if (!mask)
Imre Deak91d181d2014-02-10 18:42:49 +02001766 continue;
1767
1768 reg = PIPESTAT(pipe);
Daniel Vetterbbb5eeb2014-02-12 17:55:36 +01001769 mask |= PIPESTAT_INT_ENABLE_MASK;
1770 pipe_stats[pipe] = I915_READ(reg) & mask;
Imre Deakc1874ed2014-02-04 21:35:46 +02001771
1772 /*
1773 * Clear the PIPE*STAT regs before the IIR
1774 */
Imre Deak91d181d2014-02-10 18:42:49 +02001775 if (pipe_stats[pipe] & (PIPE_FIFO_UNDERRUN_STATUS |
1776 PIPESTAT_INT_STATUS_MASK))
Imre Deakc1874ed2014-02-04 21:35:46 +02001777 I915_WRITE(reg, pipe_stats[pipe]);
1778 }
Imre Deak58ead0d2014-02-04 21:35:47 +02001779 spin_unlock(&dev_priv->irq_lock);
Imre Deakc1874ed2014-02-04 21:35:46 +02001780
Damien Lespiau055e3932014-08-18 13:49:10 +01001781 for_each_pipe(dev_priv, pipe) {
Chris Wilsond6bbafa2014-09-05 07:13:24 +01001782 if (pipe_stats[pipe] & PIPE_START_VBLANK_INTERRUPT_STATUS &&
1783 intel_pipe_handle_vblank(dev, pipe))
1784 intel_check_page_flip(dev, pipe);
Imre Deakc1874ed2014-02-04 21:35:46 +02001785
Imre Deak579a9b02014-02-04 21:35:48 +02001786 if (pipe_stats[pipe] & PLANE_FLIP_DONE_INT_STATUS_VLV) {
Imre Deakc1874ed2014-02-04 21:35:46 +02001787 intel_prepare_page_flip(dev, pipe);
1788 intel_finish_page_flip(dev, pipe);
1789 }
1790
1791 if (pipe_stats[pipe] & PIPE_CRC_DONE_INTERRUPT_STATUS)
1792 i9xx_pipe_crc_irq_handler(dev, pipe);
1793
Daniel Vetter1f7247c2014-09-30 10:56:48 +02001794 if (pipe_stats[pipe] & PIPE_FIFO_UNDERRUN_STATUS)
1795 intel_cpu_fifo_underrun_irq_handler(dev_priv, pipe);
Imre Deakc1874ed2014-02-04 21:35:46 +02001796 }
1797
1798 if (pipe_stats[0] & PIPE_GMBUS_INTERRUPT_STATUS)
1799 gmbus_irq_handler(dev);
1800}
1801
Ville Syrjälä16c6c562014-04-01 10:54:36 +03001802static void i9xx_hpd_irq_handler(struct drm_device *dev)
1803{
1804 struct drm_i915_private *dev_priv = dev->dev_private;
1805 u32 hotplug_status = I915_READ(PORT_HOTPLUG_STAT);
1806
Oscar Mateo3ff60f82014-06-16 16:10:58 +01001807 if (hotplug_status) {
1808 I915_WRITE(PORT_HOTPLUG_STAT, hotplug_status);
1809 /*
1810 * Make sure hotplug status is cleared before we clear IIR, or else we
1811 * may miss hotplug events.
1812 */
1813 POSTING_READ(PORT_HOTPLUG_STAT);
Ville Syrjälä16c6c562014-04-01 10:54:36 +03001814
Oscar Mateo3ff60f82014-06-16 16:10:58 +01001815 if (IS_G4X(dev)) {
1816 u32 hotplug_trigger = hotplug_status & HOTPLUG_INT_STATUS_G4X;
Ville Syrjälä16c6c562014-04-01 10:54:36 +03001817
Dave Airlie13cf5502014-06-18 11:29:35 +10001818 intel_hpd_irq_handler(dev, hotplug_trigger, 0, hpd_status_g4x);
Oscar Mateo3ff60f82014-06-16 16:10:58 +01001819 } else {
1820 u32 hotplug_trigger = hotplug_status & HOTPLUG_INT_STATUS_I915;
1821
Dave Airlie13cf5502014-06-18 11:29:35 +10001822 intel_hpd_irq_handler(dev, hotplug_trigger, 0, hpd_status_i915);
Oscar Mateo3ff60f82014-06-16 16:10:58 +01001823 }
1824
1825 if ((IS_G4X(dev) || IS_VALLEYVIEW(dev)) &&
1826 hotplug_status & DP_AUX_CHANNEL_MASK_INT_STATUS_G4X)
1827 dp_aux_irq_handler(dev);
Ville Syrjälä16c6c562014-04-01 10:54:36 +03001828 }
Ville Syrjälä16c6c562014-04-01 10:54:36 +03001829}
1830
Daniel Vetterff1f5252012-10-02 15:10:55 +02001831static irqreturn_t valleyview_irq_handler(int irq, void *arg)
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07001832{
Daniel Vetter45a83f82014-05-12 19:17:55 +02001833 struct drm_device *dev = arg;
Jani Nikula2d1013d2014-03-31 14:27:17 +03001834 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07001835 u32 iir, gt_iir, pm_iir;
1836 irqreturn_t ret = IRQ_NONE;
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07001837
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07001838 while (true) {
Oscar Mateo3ff60f82014-06-16 16:10:58 +01001839 /* Find, clear, then process each source of interrupt */
1840
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07001841 gt_iir = I915_READ(GTIIR);
Oscar Mateo3ff60f82014-06-16 16:10:58 +01001842 if (gt_iir)
1843 I915_WRITE(GTIIR, gt_iir);
1844
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07001845 pm_iir = I915_READ(GEN6_PMIIR);
Oscar Mateo3ff60f82014-06-16 16:10:58 +01001846 if (pm_iir)
1847 I915_WRITE(GEN6_PMIIR, pm_iir);
1848
1849 iir = I915_READ(VLV_IIR);
1850 if (iir) {
1851 /* Consume port before clearing IIR or we'll miss events */
1852 if (iir & I915_DISPLAY_PORT_INTERRUPT)
1853 i9xx_hpd_irq_handler(dev);
1854 I915_WRITE(VLV_IIR, iir);
1855 }
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07001856
1857 if (gt_iir == 0 && pm_iir == 0 && iir == 0)
1858 goto out;
1859
1860 ret = IRQ_HANDLED;
1861
Oscar Mateo3ff60f82014-06-16 16:10:58 +01001862 if (gt_iir)
1863 snb_gt_irq_handler(dev, dev_priv, gt_iir);
Paulo Zanoni60611c12013-08-15 11:50:01 -03001864 if (pm_iir)
Daniel Vetterd0ecd7e2013-07-04 23:35:25 +02001865 gen6_rps_irq_handler(dev_priv, pm_iir);
Oscar Mateo3ff60f82014-06-16 16:10:58 +01001866 /* Call regardless, as some status bits might not be
1867 * signalled in iir */
1868 valleyview_pipestat_irq_handler(dev, iir);
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07001869 }
1870
1871out:
1872 return ret;
1873}
1874
Ville Syrjälä43f328d2014-04-09 20:40:52 +03001875static irqreturn_t cherryview_irq_handler(int irq, void *arg)
1876{
Daniel Vetter45a83f82014-05-12 19:17:55 +02001877 struct drm_device *dev = arg;
Ville Syrjälä43f328d2014-04-09 20:40:52 +03001878 struct drm_i915_private *dev_priv = dev->dev_private;
1879 u32 master_ctl, iir;
1880 irqreturn_t ret = IRQ_NONE;
Ville Syrjälä43f328d2014-04-09 20:40:52 +03001881
Ville Syrjälä8e5fd592014-04-09 13:28:50 +03001882 for (;;) {
1883 master_ctl = I915_READ(GEN8_MASTER_IRQ) & ~GEN8_MASTER_IRQ_CONTROL;
1884 iir = I915_READ(VLV_IIR);
Ville Syrjälä3278f672014-04-09 13:28:49 +03001885
Ville Syrjälä8e5fd592014-04-09 13:28:50 +03001886 if (master_ctl == 0 && iir == 0)
1887 break;
Ville Syrjälä43f328d2014-04-09 20:40:52 +03001888
Oscar Mateo27b6c122014-06-16 16:11:00 +01001889 ret = IRQ_HANDLED;
1890
Ville Syrjälä8e5fd592014-04-09 13:28:50 +03001891 I915_WRITE(GEN8_MASTER_IRQ, 0);
Ville Syrjälä43f328d2014-04-09 20:40:52 +03001892
Oscar Mateo27b6c122014-06-16 16:11:00 +01001893 /* Find, clear, then process each source of interrupt */
1894
1895 if (iir) {
1896 /* Consume port before clearing IIR or we'll miss events */
1897 if (iir & I915_DISPLAY_PORT_INTERRUPT)
1898 i9xx_hpd_irq_handler(dev);
1899 I915_WRITE(VLV_IIR, iir);
1900 }
1901
Ville Syrjälä8e5fd592014-04-09 13:28:50 +03001902 gen8_gt_irq_handler(dev, dev_priv, master_ctl);
Ville Syrjälä43f328d2014-04-09 20:40:52 +03001903
Oscar Mateo27b6c122014-06-16 16:11:00 +01001904 /* Call regardless, as some status bits might not be
1905 * signalled in iir */
Ville Syrjälä8e5fd592014-04-09 13:28:50 +03001906 valleyview_pipestat_irq_handler(dev, iir);
Ville Syrjälä43f328d2014-04-09 20:40:52 +03001907
Ville Syrjälä8e5fd592014-04-09 13:28:50 +03001908 I915_WRITE(GEN8_MASTER_IRQ, DE_MASTER_IRQ_CONTROL);
1909 POSTING_READ(GEN8_MASTER_IRQ);
Ville Syrjälä43f328d2014-04-09 20:40:52 +03001910 }
1911
Ville Syrjälä43f328d2014-04-09 20:40:52 +03001912 return ret;
1913}
1914
Adam Jackson23e81d62012-06-06 15:45:44 -04001915static void ibx_irq_handler(struct drm_device *dev, u32 pch_iir)
Jesse Barnes776ad802011-01-04 15:09:39 -08001916{
Jani Nikula2d1013d2014-03-31 14:27:17 +03001917 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001918 int pipe;
Egbert Eichb543fb02013-04-16 13:36:54 +02001919 u32 hotplug_trigger = pch_iir & SDE_HOTPLUG_MASK;
Dave Airlie13cf5502014-06-18 11:29:35 +10001920 u32 dig_hotplug_reg;
Jesse Barnes776ad802011-01-04 15:09:39 -08001921
Dave Airlie13cf5502014-06-18 11:29:35 +10001922 dig_hotplug_reg = I915_READ(PCH_PORT_HOTPLUG);
1923 I915_WRITE(PCH_PORT_HOTPLUG, dig_hotplug_reg);
1924
1925 intel_hpd_irq_handler(dev, hotplug_trigger, dig_hotplug_reg, hpd_ibx);
Daniel Vetter91d131d2013-06-27 17:52:14 +02001926
Ville Syrjäläcfc33bf2013-04-17 17:48:48 +03001927 if (pch_iir & SDE_AUDIO_POWER_MASK) {
1928 int port = ffs((pch_iir & SDE_AUDIO_POWER_MASK) >>
1929 SDE_AUDIO_POWER_SHIFT);
Jesse Barnes776ad802011-01-04 15:09:39 -08001930 DRM_DEBUG_DRIVER("PCH audio power change on port %d\n",
Ville Syrjäläcfc33bf2013-04-17 17:48:48 +03001931 port_name(port));
1932 }
Jesse Barnes776ad802011-01-04 15:09:39 -08001933
Daniel Vetterce99c252012-12-01 13:53:47 +01001934 if (pch_iir & SDE_AUX_MASK)
1935 dp_aux_irq_handler(dev);
1936
Jesse Barnes776ad802011-01-04 15:09:39 -08001937 if (pch_iir & SDE_GMBUS)
Daniel Vetter515ac2b2012-12-01 13:53:44 +01001938 gmbus_irq_handler(dev);
Jesse Barnes776ad802011-01-04 15:09:39 -08001939
1940 if (pch_iir & SDE_AUDIO_HDCP_MASK)
1941 DRM_DEBUG_DRIVER("PCH HDCP audio interrupt\n");
1942
1943 if (pch_iir & SDE_AUDIO_TRANS_MASK)
1944 DRM_DEBUG_DRIVER("PCH transcoder audio interrupt\n");
1945
1946 if (pch_iir & SDE_POISON)
1947 DRM_ERROR("PCH poison interrupt\n");
1948
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001949 if (pch_iir & SDE_FDI_MASK)
Damien Lespiau055e3932014-08-18 13:49:10 +01001950 for_each_pipe(dev_priv, pipe)
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001951 DRM_DEBUG_DRIVER(" pipe %c FDI IIR: 0x%08x\n",
1952 pipe_name(pipe),
1953 I915_READ(FDI_RX_IIR(pipe)));
Jesse Barnes776ad802011-01-04 15:09:39 -08001954
1955 if (pch_iir & (SDE_TRANSB_CRC_DONE | SDE_TRANSA_CRC_DONE))
1956 DRM_DEBUG_DRIVER("PCH transcoder CRC done interrupt\n");
1957
1958 if (pch_iir & (SDE_TRANSB_CRC_ERR | SDE_TRANSA_CRC_ERR))
1959 DRM_DEBUG_DRIVER("PCH transcoder CRC error interrupt\n");
1960
Jesse Barnes776ad802011-01-04 15:09:39 -08001961 if (pch_iir & SDE_TRANSA_FIFO_UNDER)
Daniel Vetter1f7247c2014-09-30 10:56:48 +02001962 intel_pch_fifo_underrun_irq_handler(dev_priv, TRANSCODER_A);
Paulo Zanoni86642812013-04-12 17:57:57 -03001963
1964 if (pch_iir & SDE_TRANSB_FIFO_UNDER)
Daniel Vetter1f7247c2014-09-30 10:56:48 +02001965 intel_pch_fifo_underrun_irq_handler(dev_priv, TRANSCODER_B);
Paulo Zanoni86642812013-04-12 17:57:57 -03001966}
1967
1968static void ivb_err_int_handler(struct drm_device *dev)
1969{
1970 struct drm_i915_private *dev_priv = dev->dev_private;
1971 u32 err_int = I915_READ(GEN7_ERR_INT);
Daniel Vetter5a69b892013-10-16 22:55:52 +02001972 enum pipe pipe;
Paulo Zanoni86642812013-04-12 17:57:57 -03001973
Paulo Zanonide032bf2013-04-12 17:57:58 -03001974 if (err_int & ERR_INT_POISON)
1975 DRM_ERROR("Poison interrupt\n");
1976
Damien Lespiau055e3932014-08-18 13:49:10 +01001977 for_each_pipe(dev_priv, pipe) {
Daniel Vetter1f7247c2014-09-30 10:56:48 +02001978 if (err_int & ERR_INT_FIFO_UNDERRUN(pipe))
1979 intel_cpu_fifo_underrun_irq_handler(dev_priv, pipe);
Paulo Zanoni86642812013-04-12 17:57:57 -03001980
Daniel Vetter5a69b892013-10-16 22:55:52 +02001981 if (err_int & ERR_INT_PIPE_CRC_DONE(pipe)) {
1982 if (IS_IVYBRIDGE(dev))
Daniel Vetter277de952013-10-18 16:37:07 +02001983 ivb_pipe_crc_irq_handler(dev, pipe);
Daniel Vetter5a69b892013-10-16 22:55:52 +02001984 else
Daniel Vetter277de952013-10-18 16:37:07 +02001985 hsw_pipe_crc_irq_handler(dev, pipe);
Daniel Vetter5a69b892013-10-16 22:55:52 +02001986 }
1987 }
Shuang He8bf1e9f2013-10-15 18:55:27 +01001988
Paulo Zanoni86642812013-04-12 17:57:57 -03001989 I915_WRITE(GEN7_ERR_INT, err_int);
1990}
1991
1992static void cpt_serr_int_handler(struct drm_device *dev)
1993{
1994 struct drm_i915_private *dev_priv = dev->dev_private;
1995 u32 serr_int = I915_READ(SERR_INT);
1996
Paulo Zanonide032bf2013-04-12 17:57:58 -03001997 if (serr_int & SERR_INT_POISON)
1998 DRM_ERROR("PCH poison interrupt\n");
1999
Paulo Zanoni86642812013-04-12 17:57:57 -03002000 if (serr_int & SERR_INT_TRANS_A_FIFO_UNDERRUN)
Daniel Vetter1f7247c2014-09-30 10:56:48 +02002001 intel_pch_fifo_underrun_irq_handler(dev_priv, TRANSCODER_A);
Paulo Zanoni86642812013-04-12 17:57:57 -03002002
2003 if (serr_int & SERR_INT_TRANS_B_FIFO_UNDERRUN)
Daniel Vetter1f7247c2014-09-30 10:56:48 +02002004 intel_pch_fifo_underrun_irq_handler(dev_priv, TRANSCODER_B);
Paulo Zanoni86642812013-04-12 17:57:57 -03002005
2006 if (serr_int & SERR_INT_TRANS_C_FIFO_UNDERRUN)
Daniel Vetter1f7247c2014-09-30 10:56:48 +02002007 intel_pch_fifo_underrun_irq_handler(dev_priv, TRANSCODER_C);
Paulo Zanoni86642812013-04-12 17:57:57 -03002008
2009 I915_WRITE(SERR_INT, serr_int);
Jesse Barnes776ad802011-01-04 15:09:39 -08002010}
2011
Adam Jackson23e81d62012-06-06 15:45:44 -04002012static void cpt_irq_handler(struct drm_device *dev, u32 pch_iir)
2013{
Jani Nikula2d1013d2014-03-31 14:27:17 +03002014 struct drm_i915_private *dev_priv = dev->dev_private;
Adam Jackson23e81d62012-06-06 15:45:44 -04002015 int pipe;
Egbert Eichb543fb02013-04-16 13:36:54 +02002016 u32 hotplug_trigger = pch_iir & SDE_HOTPLUG_MASK_CPT;
Dave Airlie13cf5502014-06-18 11:29:35 +10002017 u32 dig_hotplug_reg;
Adam Jackson23e81d62012-06-06 15:45:44 -04002018
Dave Airlie13cf5502014-06-18 11:29:35 +10002019 dig_hotplug_reg = I915_READ(PCH_PORT_HOTPLUG);
2020 I915_WRITE(PCH_PORT_HOTPLUG, dig_hotplug_reg);
2021
2022 intel_hpd_irq_handler(dev, hotplug_trigger, dig_hotplug_reg, hpd_cpt);
Daniel Vetter91d131d2013-06-27 17:52:14 +02002023
Ville Syrjäläcfc33bf2013-04-17 17:48:48 +03002024 if (pch_iir & SDE_AUDIO_POWER_MASK_CPT) {
2025 int port = ffs((pch_iir & SDE_AUDIO_POWER_MASK_CPT) >>
2026 SDE_AUDIO_POWER_SHIFT_CPT);
2027 DRM_DEBUG_DRIVER("PCH audio power change on port %c\n",
2028 port_name(port));
2029 }
Adam Jackson23e81d62012-06-06 15:45:44 -04002030
2031 if (pch_iir & SDE_AUX_MASK_CPT)
Daniel Vetterce99c252012-12-01 13:53:47 +01002032 dp_aux_irq_handler(dev);
Adam Jackson23e81d62012-06-06 15:45:44 -04002033
2034 if (pch_iir & SDE_GMBUS_CPT)
Daniel Vetter515ac2b2012-12-01 13:53:44 +01002035 gmbus_irq_handler(dev);
Adam Jackson23e81d62012-06-06 15:45:44 -04002036
2037 if (pch_iir & SDE_AUDIO_CP_REQ_CPT)
2038 DRM_DEBUG_DRIVER("Audio CP request interrupt\n");
2039
2040 if (pch_iir & SDE_AUDIO_CP_CHG_CPT)
2041 DRM_DEBUG_DRIVER("Audio CP change interrupt\n");
2042
2043 if (pch_iir & SDE_FDI_MASK_CPT)
Damien Lespiau055e3932014-08-18 13:49:10 +01002044 for_each_pipe(dev_priv, pipe)
Adam Jackson23e81d62012-06-06 15:45:44 -04002045 DRM_DEBUG_DRIVER(" pipe %c FDI IIR: 0x%08x\n",
2046 pipe_name(pipe),
2047 I915_READ(FDI_RX_IIR(pipe)));
Paulo Zanoni86642812013-04-12 17:57:57 -03002048
2049 if (pch_iir & SDE_ERROR_CPT)
2050 cpt_serr_int_handler(dev);
Adam Jackson23e81d62012-06-06 15:45:44 -04002051}
2052
Paulo Zanonic008bc62013-07-12 16:35:10 -03002053static void ilk_display_irq_handler(struct drm_device *dev, u32 de_iir)
2054{
2055 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter40da17c2013-10-21 18:04:36 +02002056 enum pipe pipe;
Paulo Zanonic008bc62013-07-12 16:35:10 -03002057
2058 if (de_iir & DE_AUX_CHANNEL_A)
2059 dp_aux_irq_handler(dev);
2060
2061 if (de_iir & DE_GSE)
2062 intel_opregion_asle_intr(dev);
2063
Paulo Zanonic008bc62013-07-12 16:35:10 -03002064 if (de_iir & DE_POISON)
2065 DRM_ERROR("Poison interrupt\n");
2066
Damien Lespiau055e3932014-08-18 13:49:10 +01002067 for_each_pipe(dev_priv, pipe) {
Chris Wilsond6bbafa2014-09-05 07:13:24 +01002068 if (de_iir & DE_PIPE_VBLANK(pipe) &&
2069 intel_pipe_handle_vblank(dev, pipe))
2070 intel_check_page_flip(dev, pipe);
Paulo Zanonic008bc62013-07-12 16:35:10 -03002071
Daniel Vetter40da17c2013-10-21 18:04:36 +02002072 if (de_iir & DE_PIPE_FIFO_UNDERRUN(pipe))
Daniel Vetter1f7247c2014-09-30 10:56:48 +02002073 intel_cpu_fifo_underrun_irq_handler(dev_priv, pipe);
Paulo Zanonic008bc62013-07-12 16:35:10 -03002074
Daniel Vetter40da17c2013-10-21 18:04:36 +02002075 if (de_iir & DE_PIPE_CRC_DONE(pipe))
2076 i9xx_pipe_crc_irq_handler(dev, pipe);
Daniel Vetter5b3a8562013-10-16 22:55:48 +02002077
Daniel Vetter40da17c2013-10-21 18:04:36 +02002078 /* plane/pipes map 1:1 on ilk+ */
2079 if (de_iir & DE_PLANE_FLIP_DONE(pipe)) {
2080 intel_prepare_page_flip(dev, pipe);
2081 intel_finish_page_flip_plane(dev, pipe);
2082 }
Paulo Zanonic008bc62013-07-12 16:35:10 -03002083 }
2084
2085 /* check event from PCH */
2086 if (de_iir & DE_PCH_EVENT) {
2087 u32 pch_iir = I915_READ(SDEIIR);
2088
2089 if (HAS_PCH_CPT(dev))
2090 cpt_irq_handler(dev, pch_iir);
2091 else
2092 ibx_irq_handler(dev, pch_iir);
2093
2094 /* should clear PCH hotplug event before clear CPU irq */
2095 I915_WRITE(SDEIIR, pch_iir);
2096 }
2097
2098 if (IS_GEN5(dev) && de_iir & DE_PCU_EVENT)
2099 ironlake_rps_change_irq_handler(dev);
2100}
2101
Paulo Zanoni9719fb92013-07-12 16:35:11 -03002102static void ivb_display_irq_handler(struct drm_device *dev, u32 de_iir)
2103{
2104 struct drm_i915_private *dev_priv = dev->dev_private;
Damien Lespiau07d27e22014-03-03 17:31:46 +00002105 enum pipe pipe;
Paulo Zanoni9719fb92013-07-12 16:35:11 -03002106
2107 if (de_iir & DE_ERR_INT_IVB)
2108 ivb_err_int_handler(dev);
2109
2110 if (de_iir & DE_AUX_CHANNEL_A_IVB)
2111 dp_aux_irq_handler(dev);
2112
2113 if (de_iir & DE_GSE_IVB)
2114 intel_opregion_asle_intr(dev);
2115
Damien Lespiau055e3932014-08-18 13:49:10 +01002116 for_each_pipe(dev_priv, pipe) {
Chris Wilsond6bbafa2014-09-05 07:13:24 +01002117 if (de_iir & (DE_PIPE_VBLANK_IVB(pipe)) &&
2118 intel_pipe_handle_vblank(dev, pipe))
2119 intel_check_page_flip(dev, pipe);
Daniel Vetter40da17c2013-10-21 18:04:36 +02002120
2121 /* plane/pipes map 1:1 on ilk+ */
Damien Lespiau07d27e22014-03-03 17:31:46 +00002122 if (de_iir & DE_PLANE_FLIP_DONE_IVB(pipe)) {
2123 intel_prepare_page_flip(dev, pipe);
2124 intel_finish_page_flip_plane(dev, pipe);
Paulo Zanoni9719fb92013-07-12 16:35:11 -03002125 }
2126 }
2127
2128 /* check event from PCH */
2129 if (!HAS_PCH_NOP(dev) && (de_iir & DE_PCH_EVENT_IVB)) {
2130 u32 pch_iir = I915_READ(SDEIIR);
2131
2132 cpt_irq_handler(dev, pch_iir);
2133
2134 /* clear PCH hotplug event before clear CPU irq */
2135 I915_WRITE(SDEIIR, pch_iir);
2136 }
2137}
2138
Oscar Mateo72c90f62014-06-16 16:10:57 +01002139/*
2140 * To handle irqs with the minimum potential races with fresh interrupts, we:
2141 * 1 - Disable Master Interrupt Control.
2142 * 2 - Find the source(s) of the interrupt.
2143 * 3 - Clear the Interrupt Identity bits (IIR).
2144 * 4 - Process the interrupt(s) that had bits set in the IIRs.
2145 * 5 - Re-enable Master Interrupt Control.
2146 */
Paulo Zanonif1af8fc2013-07-12 19:56:30 -03002147static irqreturn_t ironlake_irq_handler(int irq, void *arg)
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002148{
Daniel Vetter45a83f82014-05-12 19:17:55 +02002149 struct drm_device *dev = arg;
Jani Nikula2d1013d2014-03-31 14:27:17 +03002150 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanonif1af8fc2013-07-12 19:56:30 -03002151 u32 de_iir, gt_iir, de_ier, sde_ier = 0;
Chris Wilson0e434062012-05-09 21:45:44 +01002152 irqreturn_t ret = IRQ_NONE;
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002153
Paulo Zanoni86642812013-04-12 17:57:57 -03002154 /* We get interrupts on unclaimed registers, so check for this before we
2155 * do any I915_{READ,WRITE}. */
Chris Wilson907b28c2013-07-19 20:36:52 +01002156 intel_uncore_check_errors(dev);
Paulo Zanoni86642812013-04-12 17:57:57 -03002157
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002158 /* disable master interrupt before clearing iir */
2159 de_ier = I915_READ(DEIER);
2160 I915_WRITE(DEIER, de_ier & ~DE_MASTER_IRQ_CONTROL);
Paulo Zanoni23a78512013-07-12 16:35:14 -03002161 POSTING_READ(DEIER);
Chris Wilson0e434062012-05-09 21:45:44 +01002162
Paulo Zanoni44498ae2013-02-22 17:05:28 -03002163 /* Disable south interrupts. We'll only write to SDEIIR once, so further
2164 * interrupts will will be stored on its back queue, and then we'll be
2165 * able to process them after we restore SDEIER (as soon as we restore
2166 * it, we'll get an interrupt if SDEIIR still has something to process
2167 * due to its back queue). */
Ben Widawskyab5c6082013-04-05 13:12:41 -07002168 if (!HAS_PCH_NOP(dev)) {
2169 sde_ier = I915_READ(SDEIER);
2170 I915_WRITE(SDEIER, 0);
2171 POSTING_READ(SDEIER);
2172 }
Paulo Zanoni44498ae2013-02-22 17:05:28 -03002173
Oscar Mateo72c90f62014-06-16 16:10:57 +01002174 /* Find, clear, then process each source of interrupt */
2175
Chris Wilson0e434062012-05-09 21:45:44 +01002176 gt_iir = I915_READ(GTIIR);
2177 if (gt_iir) {
Oscar Mateo72c90f62014-06-16 16:10:57 +01002178 I915_WRITE(GTIIR, gt_iir);
2179 ret = IRQ_HANDLED;
Paulo Zanonid8fc8a42013-07-19 18:57:55 -03002180 if (INTEL_INFO(dev)->gen >= 6)
Paulo Zanonif1af8fc2013-07-12 19:56:30 -03002181 snb_gt_irq_handler(dev, dev_priv, gt_iir);
Paulo Zanonid8fc8a42013-07-19 18:57:55 -03002182 else
2183 ilk_gt_irq_handler(dev, dev_priv, gt_iir);
Chris Wilson0e434062012-05-09 21:45:44 +01002184 }
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002185
2186 de_iir = I915_READ(DEIIR);
Chris Wilson0e434062012-05-09 21:45:44 +01002187 if (de_iir) {
Oscar Mateo72c90f62014-06-16 16:10:57 +01002188 I915_WRITE(DEIIR, de_iir);
2189 ret = IRQ_HANDLED;
Paulo Zanonif1af8fc2013-07-12 19:56:30 -03002190 if (INTEL_INFO(dev)->gen >= 7)
2191 ivb_display_irq_handler(dev, de_iir);
2192 else
2193 ilk_display_irq_handler(dev, de_iir);
Chris Wilson0e434062012-05-09 21:45:44 +01002194 }
2195
Paulo Zanonif1af8fc2013-07-12 19:56:30 -03002196 if (INTEL_INFO(dev)->gen >= 6) {
2197 u32 pm_iir = I915_READ(GEN6_PMIIR);
2198 if (pm_iir) {
Paulo Zanonif1af8fc2013-07-12 19:56:30 -03002199 I915_WRITE(GEN6_PMIIR, pm_iir);
2200 ret = IRQ_HANDLED;
Oscar Mateo72c90f62014-06-16 16:10:57 +01002201 gen6_rps_irq_handler(dev_priv, pm_iir);
Paulo Zanonif1af8fc2013-07-12 19:56:30 -03002202 }
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002203 }
2204
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002205 I915_WRITE(DEIER, de_ier);
2206 POSTING_READ(DEIER);
Ben Widawskyab5c6082013-04-05 13:12:41 -07002207 if (!HAS_PCH_NOP(dev)) {
2208 I915_WRITE(SDEIER, sde_ier);
2209 POSTING_READ(SDEIER);
2210 }
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002211
2212 return ret;
2213}
2214
Ben Widawskyabd58f02013-11-02 21:07:09 -07002215static irqreturn_t gen8_irq_handler(int irq, void *arg)
2216{
2217 struct drm_device *dev = arg;
2218 struct drm_i915_private *dev_priv = dev->dev_private;
2219 u32 master_ctl;
2220 irqreturn_t ret = IRQ_NONE;
2221 uint32_t tmp = 0;
Daniel Vetterc42664c2013-11-07 11:05:40 +01002222 enum pipe pipe;
Jesse Barnes88e04702014-11-13 17:51:48 +00002223 u32 aux_mask = GEN8_AUX_CHANNEL_A;
2224
2225 if (IS_GEN9(dev))
2226 aux_mask |= GEN9_AUX_CHANNEL_B | GEN9_AUX_CHANNEL_C |
2227 GEN9_AUX_CHANNEL_D;
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;
Jesse Barnes88e04702014-11-13 17:51:48 +00002260
2261 if (tmp & aux_mask)
Oscar Mateo38cc46d2014-06-16 16:10:59 +01002262 dp_aux_irq_handler(dev);
2263 else
2264 DRM_ERROR("Unexpected DE Port interrupt\n");
Daniel Vetter6d766f02013-11-07 14:49:55 +01002265 }
Oscar Mateo38cc46d2014-06-16 16:10:59 +01002266 else
2267 DRM_ERROR("The master control interrupt lied (DE PORT)!\n");
Daniel Vetter6d766f02013-11-07 14:49:55 +01002268 }
2269
Damien Lespiau055e3932014-08-18 13:49:10 +01002270 for_each_pipe(dev_priv, pipe) {
Damien Lespiau770de832014-03-20 20:45:01 +00002271 uint32_t pipe_iir, flip_done = 0, fault_errors = 0;
Ben Widawskyabd58f02013-11-02 21:07:09 -07002272
Daniel Vetterc42664c2013-11-07 11:05:40 +01002273 if (!(master_ctl & GEN8_DE_PIPE_IRQ(pipe)))
2274 continue;
Ben Widawskyabd58f02013-11-02 21:07:09 -07002275
Daniel Vetterc42664c2013-11-07 11:05:40 +01002276 pipe_iir = I915_READ(GEN8_DE_PIPE_IIR(pipe));
Daniel Vetterc42664c2013-11-07 11:05:40 +01002277 if (pipe_iir) {
2278 ret = IRQ_HANDLED;
2279 I915_WRITE(GEN8_DE_PIPE_IIR(pipe), pipe_iir);
Damien Lespiau770de832014-03-20 20:45:01 +00002280
Chris Wilsond6bbafa2014-09-05 07:13:24 +01002281 if (pipe_iir & GEN8_PIPE_VBLANK &&
2282 intel_pipe_handle_vblank(dev, pipe))
2283 intel_check_page_flip(dev, pipe);
Oscar Mateo38cc46d2014-06-16 16:10:59 +01002284
Damien Lespiau770de832014-03-20 20:45:01 +00002285 if (IS_GEN9(dev))
2286 flip_done = pipe_iir & GEN9_PIPE_PLANE1_FLIP_DONE;
2287 else
2288 flip_done = pipe_iir & GEN8_PIPE_PRIMARY_FLIP_DONE;
2289
2290 if (flip_done) {
Oscar Mateo38cc46d2014-06-16 16:10:59 +01002291 intel_prepare_page_flip(dev, pipe);
2292 intel_finish_page_flip_plane(dev, pipe);
2293 }
2294
2295 if (pipe_iir & GEN8_PIPE_CDCLK_CRC_DONE)
2296 hsw_pipe_crc_irq_handler(dev, pipe);
2297
Daniel Vetter1f7247c2014-09-30 10:56:48 +02002298 if (pipe_iir & GEN8_PIPE_FIFO_UNDERRUN)
2299 intel_cpu_fifo_underrun_irq_handler(dev_priv,
2300 pipe);
Oscar Mateo38cc46d2014-06-16 16:10:59 +01002301
Damien Lespiau770de832014-03-20 20:45:01 +00002302
2303 if (IS_GEN9(dev))
2304 fault_errors = pipe_iir & GEN9_DE_PIPE_IRQ_FAULT_ERRORS;
2305 else
2306 fault_errors = pipe_iir & GEN8_DE_PIPE_IRQ_FAULT_ERRORS;
2307
2308 if (fault_errors)
Oscar Mateo38cc46d2014-06-16 16:10:59 +01002309 DRM_ERROR("Fault errors on pipe %c\n: 0x%08x",
2310 pipe_name(pipe),
2311 pipe_iir & GEN8_DE_PIPE_IRQ_FAULT_ERRORS);
Daniel Vetterc42664c2013-11-07 11:05:40 +01002312 } else
Ben Widawskyabd58f02013-11-02 21:07:09 -07002313 DRM_ERROR("The master control interrupt lied (DE PIPE)!\n");
2314 }
2315
Daniel Vetter92d03a82013-11-07 11:05:43 +01002316 if (!HAS_PCH_NOP(dev) && master_ctl & GEN8_DE_PCH_IRQ) {
2317 /*
2318 * FIXME(BDW): Assume for now that the new interrupt handling
2319 * scheme also closed the SDE interrupt handling race we've seen
2320 * on older pch-split platforms. But this needs testing.
2321 */
2322 u32 pch_iir = I915_READ(SDEIIR);
Daniel Vetter92d03a82013-11-07 11:05:43 +01002323 if (pch_iir) {
2324 I915_WRITE(SDEIIR, pch_iir);
2325 ret = IRQ_HANDLED;
Oscar Mateo38cc46d2014-06-16 16:10:59 +01002326 cpt_irq_handler(dev, pch_iir);
2327 } else
2328 DRM_ERROR("The master control interrupt lied (SDE)!\n");
2329
Daniel Vetter92d03a82013-11-07 11:05:43 +01002330 }
2331
Ben Widawskyabd58f02013-11-02 21:07:09 -07002332 I915_WRITE(GEN8_MASTER_IRQ, GEN8_MASTER_IRQ_CONTROL);
2333 POSTING_READ(GEN8_MASTER_IRQ);
2334
2335 return ret;
2336}
2337
Daniel Vetter17e1df02013-09-08 21:57:13 +02002338static void i915_error_wake_up(struct drm_i915_private *dev_priv,
2339 bool reset_completed)
2340{
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002341 struct intel_engine_cs *ring;
Daniel Vetter17e1df02013-09-08 21:57:13 +02002342 int i;
2343
2344 /*
2345 * Notify all waiters for GPU completion events that reset state has
2346 * been changed, and that they need to restart their wait after
2347 * checking for potential errors (and bail out to drop locks if there is
2348 * a gpu reset pending so that i915_error_work_func can acquire them).
2349 */
2350
2351 /* Wake up __wait_seqno, potentially holding dev->struct_mutex. */
2352 for_each_ring(ring, dev_priv, i)
2353 wake_up_all(&ring->irq_queue);
2354
2355 /* Wake up intel_crtc_wait_for_pending_flips, holding crtc->mutex. */
2356 wake_up_all(&dev_priv->pending_flip_queue);
2357
2358 /*
2359 * Signal tasks blocked in i915_gem_wait_for_error that the pending
2360 * reset state is cleared.
2361 */
2362 if (reset_completed)
2363 wake_up_all(&dev_priv->gpu_error.reset_queue);
2364}
2365
Jesse Barnes8a905232009-07-11 16:48:03 -04002366/**
2367 * i915_error_work_func - do process context error handling work
2368 * @work: work struct
2369 *
2370 * Fire an error uevent so userspace can see that a hang or error
2371 * was detected.
2372 */
2373static void i915_error_work_func(struct work_struct *work)
2374{
Daniel Vetter1f83fee2012-11-15 17:17:22 +01002375 struct i915_gpu_error *error = container_of(work, struct i915_gpu_error,
2376 work);
Jani Nikula2d1013d2014-03-31 14:27:17 +03002377 struct drm_i915_private *dev_priv =
2378 container_of(error, struct drm_i915_private, gpu_error);
Jesse Barnes8a905232009-07-11 16:48:03 -04002379 struct drm_device *dev = dev_priv->dev;
Ben Widawskycce723e2013-07-19 09:16:42 -07002380 char *error_event[] = { I915_ERROR_UEVENT "=1", NULL };
2381 char *reset_event[] = { I915_RESET_UEVENT "=1", NULL };
2382 char *reset_done_event[] = { I915_ERROR_UEVENT "=0", NULL };
Daniel Vetter17e1df02013-09-08 21:57:13 +02002383 int ret;
Jesse Barnes8a905232009-07-11 16:48:03 -04002384
Dave Airlie5bdebb12013-10-11 14:07:25 +10002385 kobject_uevent_env(&dev->primary->kdev->kobj, KOBJ_CHANGE, error_event);
Jesse Barnes8a905232009-07-11 16:48:03 -04002386
Daniel Vetter7db0ba22012-12-06 16:23:37 +01002387 /*
2388 * Note that there's only one work item which does gpu resets, so we
2389 * need not worry about concurrent gpu resets potentially incrementing
2390 * error->reset_counter twice. We only need to take care of another
2391 * racing irq/hangcheck declaring the gpu dead for a second time. A
2392 * quick check for that is good enough: schedule_work ensures the
2393 * correct ordering between hang detection and this work item, and since
2394 * the reset in-progress bit is only ever set by code outside of this
2395 * work we don't need to worry about any other races.
2396 */
2397 if (i915_reset_in_progress(error) && !i915_terminally_wedged(error)) {
Chris Wilsonf803aa52010-09-19 12:38:26 +01002398 DRM_DEBUG_DRIVER("resetting chip\n");
Dave Airlie5bdebb12013-10-11 14:07:25 +10002399 kobject_uevent_env(&dev->primary->kdev->kobj, KOBJ_CHANGE,
Daniel Vetter7db0ba22012-12-06 16:23:37 +01002400 reset_event);
Daniel Vetter1f83fee2012-11-15 17:17:22 +01002401
Daniel Vetter17e1df02013-09-08 21:57:13 +02002402 /*
Imre Deakf454c692014-04-23 01:09:04 +03002403 * In most cases it's guaranteed that we get here with an RPM
2404 * reference held, for example because there is a pending GPU
2405 * request that won't finish until the reset is done. This
2406 * isn't the case at least when we get here by doing a
2407 * simulated reset via debugs, so get an RPM reference.
2408 */
2409 intel_runtime_pm_get(dev_priv);
2410 /*
Daniel Vetter17e1df02013-09-08 21:57:13 +02002411 * All state reset _must_ be completed before we update the
2412 * reset counter, for otherwise waiters might miss the reset
2413 * pending state and not properly drop locks, resulting in
2414 * deadlocks with the reset work.
2415 */
Daniel Vetterf69061b2012-12-06 09:01:42 +01002416 ret = i915_reset(dev);
2417
Daniel Vetter17e1df02013-09-08 21:57:13 +02002418 intel_display_handle_reset(dev);
2419
Imre Deakf454c692014-04-23 01:09:04 +03002420 intel_runtime_pm_put(dev_priv);
2421
Daniel Vetterf69061b2012-12-06 09:01:42 +01002422 if (ret == 0) {
2423 /*
2424 * After all the gem state is reset, increment the reset
2425 * counter and wake up everyone waiting for the reset to
2426 * complete.
2427 *
2428 * Since unlock operations are a one-sided barrier only,
2429 * we need to insert a barrier here to order any seqno
2430 * updates before
2431 * the counter increment.
2432 */
Peter Zijlstra4e857c52014-03-17 18:06:10 +01002433 smp_mb__before_atomic();
Daniel Vetterf69061b2012-12-06 09:01:42 +01002434 atomic_inc(&dev_priv->gpu_error.reset_counter);
2435
Dave Airlie5bdebb12013-10-11 14:07:25 +10002436 kobject_uevent_env(&dev->primary->kdev->kobj,
Daniel Vetterf69061b2012-12-06 09:01:42 +01002437 KOBJ_CHANGE, reset_done_event);
Daniel Vetter1f83fee2012-11-15 17:17:22 +01002438 } else {
Mika Kuoppala2ac0f452013-11-12 14:44:19 +02002439 atomic_set_mask(I915_WEDGED, &error->reset_counter);
Ben Gamarif316a422009-09-14 17:48:46 -04002440 }
Daniel Vetter1f83fee2012-11-15 17:17:22 +01002441
Daniel Vetter17e1df02013-09-08 21:57:13 +02002442 /*
2443 * Note: The wake_up also serves as a memory barrier so that
2444 * waiters see the update value of the reset counter atomic_t.
2445 */
2446 i915_error_wake_up(dev_priv, true);
Ben Gamarif316a422009-09-14 17:48:46 -04002447 }
Jesse Barnes8a905232009-07-11 16:48:03 -04002448}
2449
Chris Wilson35aed2e2010-05-27 13:18:12 +01002450static void i915_report_and_clear_eir(struct drm_device *dev)
Jesse Barnes8a905232009-07-11 16:48:03 -04002451{
2452 struct drm_i915_private *dev_priv = dev->dev_private;
Ben Widawskybd9854f2012-08-23 15:18:09 -07002453 uint32_t instdone[I915_NUM_INSTDONE_REG];
Jesse Barnes8a905232009-07-11 16:48:03 -04002454 u32 eir = I915_READ(EIR);
Ben Widawsky050ee912012-08-22 11:32:15 -07002455 int pipe, i;
Jesse Barnes8a905232009-07-11 16:48:03 -04002456
Chris Wilson35aed2e2010-05-27 13:18:12 +01002457 if (!eir)
2458 return;
Jesse Barnes8a905232009-07-11 16:48:03 -04002459
Joe Perchesa70491c2012-03-18 13:00:11 -07002460 pr_err("render error detected, EIR: 0x%08x\n", eir);
Jesse Barnes8a905232009-07-11 16:48:03 -04002461
Ben Widawskybd9854f2012-08-23 15:18:09 -07002462 i915_get_extra_instdone(dev, instdone);
2463
Jesse Barnes8a905232009-07-11 16:48:03 -04002464 if (IS_G4X(dev)) {
2465 if (eir & (GM45_ERROR_MEM_PRIV | GM45_ERROR_CP_PRIV)) {
2466 u32 ipeir = I915_READ(IPEIR_I965);
2467
Joe Perchesa70491c2012-03-18 13:00:11 -07002468 pr_err(" IPEIR: 0x%08x\n", I915_READ(IPEIR_I965));
2469 pr_err(" IPEHR: 0x%08x\n", I915_READ(IPEHR_I965));
Ben Widawsky050ee912012-08-22 11:32:15 -07002470 for (i = 0; i < ARRAY_SIZE(instdone); i++)
2471 pr_err(" INSTDONE_%d: 0x%08x\n", i, instdone[i]);
Joe Perchesa70491c2012-03-18 13:00:11 -07002472 pr_err(" INSTPS: 0x%08x\n", I915_READ(INSTPS));
Joe Perchesa70491c2012-03-18 13:00:11 -07002473 pr_err(" ACTHD: 0x%08x\n", I915_READ(ACTHD_I965));
Jesse Barnes8a905232009-07-11 16:48:03 -04002474 I915_WRITE(IPEIR_I965, ipeir);
Chris Wilson3143a2b2010-11-16 15:55:10 +00002475 POSTING_READ(IPEIR_I965);
Jesse Barnes8a905232009-07-11 16:48:03 -04002476 }
2477 if (eir & GM45_ERROR_PAGE_TABLE) {
2478 u32 pgtbl_err = I915_READ(PGTBL_ER);
Joe Perchesa70491c2012-03-18 13:00:11 -07002479 pr_err("page table error\n");
2480 pr_err(" PGTBL_ER: 0x%08x\n", pgtbl_err);
Jesse Barnes8a905232009-07-11 16:48:03 -04002481 I915_WRITE(PGTBL_ER, pgtbl_err);
Chris Wilson3143a2b2010-11-16 15:55:10 +00002482 POSTING_READ(PGTBL_ER);
Jesse Barnes8a905232009-07-11 16:48:03 -04002483 }
2484 }
2485
Chris Wilsona6c45cf2010-09-17 00:32:17 +01002486 if (!IS_GEN2(dev)) {
Jesse Barnes8a905232009-07-11 16:48:03 -04002487 if (eir & I915_ERROR_PAGE_TABLE) {
2488 u32 pgtbl_err = I915_READ(PGTBL_ER);
Joe Perchesa70491c2012-03-18 13:00:11 -07002489 pr_err("page table error\n");
2490 pr_err(" PGTBL_ER: 0x%08x\n", pgtbl_err);
Jesse Barnes8a905232009-07-11 16:48:03 -04002491 I915_WRITE(PGTBL_ER, pgtbl_err);
Chris Wilson3143a2b2010-11-16 15:55:10 +00002492 POSTING_READ(PGTBL_ER);
Jesse Barnes8a905232009-07-11 16:48:03 -04002493 }
2494 }
2495
2496 if (eir & I915_ERROR_MEMORY_REFRESH) {
Joe Perchesa70491c2012-03-18 13:00:11 -07002497 pr_err("memory refresh error:\n");
Damien Lespiau055e3932014-08-18 13:49:10 +01002498 for_each_pipe(dev_priv, pipe)
Joe Perchesa70491c2012-03-18 13:00:11 -07002499 pr_err("pipe %c stat: 0x%08x\n",
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08002500 pipe_name(pipe), I915_READ(PIPESTAT(pipe)));
Jesse Barnes8a905232009-07-11 16:48:03 -04002501 /* pipestat has already been acked */
2502 }
2503 if (eir & I915_ERROR_INSTRUCTION) {
Joe Perchesa70491c2012-03-18 13:00:11 -07002504 pr_err("instruction error\n");
2505 pr_err(" INSTPM: 0x%08x\n", I915_READ(INSTPM));
Ben Widawsky050ee912012-08-22 11:32:15 -07002506 for (i = 0; i < ARRAY_SIZE(instdone); i++)
2507 pr_err(" INSTDONE_%d: 0x%08x\n", i, instdone[i]);
Chris Wilsona6c45cf2010-09-17 00:32:17 +01002508 if (INTEL_INFO(dev)->gen < 4) {
Jesse Barnes8a905232009-07-11 16:48:03 -04002509 u32 ipeir = I915_READ(IPEIR);
2510
Joe Perchesa70491c2012-03-18 13:00:11 -07002511 pr_err(" IPEIR: 0x%08x\n", I915_READ(IPEIR));
2512 pr_err(" IPEHR: 0x%08x\n", I915_READ(IPEHR));
Joe Perchesa70491c2012-03-18 13:00:11 -07002513 pr_err(" ACTHD: 0x%08x\n", I915_READ(ACTHD));
Jesse Barnes8a905232009-07-11 16:48:03 -04002514 I915_WRITE(IPEIR, ipeir);
Chris Wilson3143a2b2010-11-16 15:55:10 +00002515 POSTING_READ(IPEIR);
Jesse Barnes8a905232009-07-11 16:48:03 -04002516 } else {
2517 u32 ipeir = I915_READ(IPEIR_I965);
2518
Joe Perchesa70491c2012-03-18 13:00:11 -07002519 pr_err(" IPEIR: 0x%08x\n", I915_READ(IPEIR_I965));
2520 pr_err(" IPEHR: 0x%08x\n", I915_READ(IPEHR_I965));
Joe Perchesa70491c2012-03-18 13:00:11 -07002521 pr_err(" INSTPS: 0x%08x\n", I915_READ(INSTPS));
Joe Perchesa70491c2012-03-18 13:00:11 -07002522 pr_err(" ACTHD: 0x%08x\n", I915_READ(ACTHD_I965));
Jesse Barnes8a905232009-07-11 16:48:03 -04002523 I915_WRITE(IPEIR_I965, ipeir);
Chris Wilson3143a2b2010-11-16 15:55:10 +00002524 POSTING_READ(IPEIR_I965);
Jesse Barnes8a905232009-07-11 16:48:03 -04002525 }
2526 }
2527
2528 I915_WRITE(EIR, eir);
Chris Wilson3143a2b2010-11-16 15:55:10 +00002529 POSTING_READ(EIR);
Jesse Barnes8a905232009-07-11 16:48:03 -04002530 eir = I915_READ(EIR);
2531 if (eir) {
2532 /*
2533 * some errors might have become stuck,
2534 * mask them.
2535 */
2536 DRM_ERROR("EIR stuck: 0x%08x, masking\n", eir);
2537 I915_WRITE(EMR, I915_READ(EMR) | eir);
2538 I915_WRITE(IIR, I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT);
2539 }
Chris Wilson35aed2e2010-05-27 13:18:12 +01002540}
2541
2542/**
2543 * i915_handle_error - handle an error interrupt
2544 * @dev: drm device
2545 *
2546 * Do some basic checking of regsiter state at error interrupt time and
2547 * dump it to the syslog. Also call i915_capture_error_state() to make
2548 * sure we get a record and make it available in debugfs. Fire a uevent
2549 * so userspace knows something bad happened (should trigger collection
2550 * of a ring dump etc.).
2551 */
Mika Kuoppala58174462014-02-25 17:11:26 +02002552void i915_handle_error(struct drm_device *dev, bool wedged,
2553 const char *fmt, ...)
Chris Wilson35aed2e2010-05-27 13:18:12 +01002554{
2555 struct drm_i915_private *dev_priv = dev->dev_private;
Mika Kuoppala58174462014-02-25 17:11:26 +02002556 va_list args;
2557 char error_msg[80];
Chris Wilson35aed2e2010-05-27 13:18:12 +01002558
Mika Kuoppala58174462014-02-25 17:11:26 +02002559 va_start(args, fmt);
2560 vscnprintf(error_msg, sizeof(error_msg), fmt, args);
2561 va_end(args);
2562
2563 i915_capture_error_state(dev, wedged, error_msg);
Chris Wilson35aed2e2010-05-27 13:18:12 +01002564 i915_report_and_clear_eir(dev);
Jesse Barnes8a905232009-07-11 16:48:03 -04002565
Ben Gamariba1234d2009-09-14 17:48:47 -04002566 if (wedged) {
Daniel Vetterf69061b2012-12-06 09:01:42 +01002567 atomic_set_mask(I915_RESET_IN_PROGRESS_FLAG,
2568 &dev_priv->gpu_error.reset_counter);
Ben Gamariba1234d2009-09-14 17:48:47 -04002569
Ben Gamari11ed50e2009-09-14 17:48:45 -04002570 /*
Daniel Vetter17e1df02013-09-08 21:57:13 +02002571 * Wakeup waiting processes so that the reset work function
2572 * i915_error_work_func doesn't deadlock trying to grab various
2573 * locks. By bumping the reset counter first, the woken
2574 * processes will see a reset in progress and back off,
2575 * releasing their locks and then wait for the reset completion.
2576 * We must do this for _all_ gpu waiters that might hold locks
2577 * that the reset work needs to acquire.
2578 *
2579 * Note: The wake_up serves as the required memory barrier to
2580 * ensure that the waiters see the updated value of the reset
2581 * counter atomic_t.
Ben Gamari11ed50e2009-09-14 17:48:45 -04002582 */
Daniel Vetter17e1df02013-09-08 21:57:13 +02002583 i915_error_wake_up(dev_priv, false);
Ben Gamari11ed50e2009-09-14 17:48:45 -04002584 }
2585
Daniel Vetter122f46b2013-09-04 17:36:14 +02002586 /*
2587 * Our reset work can grab modeset locks (since it needs to reset the
2588 * state of outstanding pagelips). Hence it must not be run on our own
2589 * dev-priv->wq work queue for otherwise the flush_work in the pageflip
2590 * code will deadlock.
2591 */
2592 schedule_work(&dev_priv->gpu_error.work);
Jesse Barnes8a905232009-07-11 16:48:03 -04002593}
2594
Keith Packard42f52ef2008-10-18 19:39:29 -07002595/* Called from drm generic code, passed 'crtc' which
2596 * we use as a pipe index
2597 */
Jesse Barnesf71d4af2011-06-28 13:00:41 -07002598static int i915_enable_vblank(struct drm_device *dev, int pipe)
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07002599{
Jani Nikula2d1013d2014-03-31 14:27:17 +03002600 struct drm_i915_private *dev_priv = dev->dev_private;
Keith Packarde9d21d72008-10-16 11:31:38 -07002601 unsigned long irqflags;
Jesse Barnes71e0ffa2009-01-08 10:42:15 -08002602
Chris Wilson5eddb702010-09-11 13:48:45 +01002603 if (!i915_pipe_enabled(dev, pipe))
Jesse Barnes71e0ffa2009-01-08 10:42:15 -08002604 return -EINVAL;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07002605
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002606 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Jesse Barnesf796cf82011-04-07 13:58:17 -07002607 if (INTEL_INFO(dev)->gen >= 4)
Keith Packard7c463582008-11-04 02:03:27 -08002608 i915_enable_pipestat(dev_priv, pipe,
Imre Deak755e9012014-02-10 18:42:47 +02002609 PIPE_START_VBLANK_INTERRUPT_STATUS);
Keith Packarde9d21d72008-10-16 11:31:38 -07002610 else
Keith Packard7c463582008-11-04 02:03:27 -08002611 i915_enable_pipestat(dev_priv, pipe,
Imre Deak755e9012014-02-10 18:42:47 +02002612 PIPE_VBLANK_INTERRUPT_STATUS);
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002613 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
Chris Wilson8692d00e2011-02-05 10:08:21 +00002614
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07002615 return 0;
2616}
2617
Jesse Barnesf71d4af2011-06-28 13:00:41 -07002618static int ironlake_enable_vblank(struct drm_device *dev, int pipe)
Jesse Barnesf796cf82011-04-07 13:58:17 -07002619{
Jani Nikula2d1013d2014-03-31 14:27:17 +03002620 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnesf796cf82011-04-07 13:58:17 -07002621 unsigned long irqflags;
Paulo Zanonib5184212013-07-12 20:00:08 -03002622 uint32_t bit = (INTEL_INFO(dev)->gen >= 7) ? DE_PIPE_VBLANK_IVB(pipe) :
Daniel Vetter40da17c2013-10-21 18:04:36 +02002623 DE_PIPE_VBLANK(pipe);
Jesse Barnesf796cf82011-04-07 13:58:17 -07002624
2625 if (!i915_pipe_enabled(dev, pipe))
2626 return -EINVAL;
2627
2628 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Paulo Zanonib5184212013-07-12 20:00:08 -03002629 ironlake_enable_display_irq(dev_priv, bit);
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002630 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
2631
2632 return 0;
2633}
2634
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002635static int valleyview_enable_vblank(struct drm_device *dev, int pipe)
2636{
Jani Nikula2d1013d2014-03-31 14:27:17 +03002637 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002638 unsigned long irqflags;
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002639
2640 if (!i915_pipe_enabled(dev, pipe))
2641 return -EINVAL;
2642
2643 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Jesse Barnes31acc7f2012-06-20 10:53:11 -07002644 i915_enable_pipestat(dev_priv, pipe,
Imre Deak755e9012014-02-10 18:42:47 +02002645 PIPE_START_VBLANK_INTERRUPT_STATUS);
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002646 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
2647
2648 return 0;
2649}
2650
Ben Widawskyabd58f02013-11-02 21:07:09 -07002651static int gen8_enable_vblank(struct drm_device *dev, int pipe)
2652{
2653 struct drm_i915_private *dev_priv = dev->dev_private;
2654 unsigned long irqflags;
Ben Widawskyabd58f02013-11-02 21:07:09 -07002655
2656 if (!i915_pipe_enabled(dev, pipe))
2657 return -EINVAL;
2658
2659 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Daniel Vetter7167d7c2013-11-07 11:05:45 +01002660 dev_priv->de_irq_mask[pipe] &= ~GEN8_PIPE_VBLANK;
2661 I915_WRITE(GEN8_DE_PIPE_IMR(pipe), dev_priv->de_irq_mask[pipe]);
2662 POSTING_READ(GEN8_DE_PIPE_IMR(pipe));
Ben Widawskyabd58f02013-11-02 21:07:09 -07002663 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
2664 return 0;
2665}
2666
Keith Packard42f52ef2008-10-18 19:39:29 -07002667/* Called from drm generic code, passed 'crtc' which
2668 * we use as a pipe index
2669 */
Jesse Barnesf71d4af2011-06-28 13:00:41 -07002670static void i915_disable_vblank(struct drm_device *dev, int pipe)
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07002671{
Jani Nikula2d1013d2014-03-31 14:27:17 +03002672 struct drm_i915_private *dev_priv = dev->dev_private;
Keith Packarde9d21d72008-10-16 11:31:38 -07002673 unsigned long irqflags;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07002674
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002675 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Jesse Barnesf796cf82011-04-07 13:58:17 -07002676 i915_disable_pipestat(dev_priv, pipe,
Imre Deak755e9012014-02-10 18:42:47 +02002677 PIPE_VBLANK_INTERRUPT_STATUS |
2678 PIPE_START_VBLANK_INTERRUPT_STATUS);
Jesse Barnesf796cf82011-04-07 13:58:17 -07002679 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
2680}
2681
Jesse Barnesf71d4af2011-06-28 13:00:41 -07002682static void ironlake_disable_vblank(struct drm_device *dev, int pipe)
Jesse Barnesf796cf82011-04-07 13:58:17 -07002683{
Jani Nikula2d1013d2014-03-31 14:27:17 +03002684 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnesf796cf82011-04-07 13:58:17 -07002685 unsigned long irqflags;
Paulo Zanonib5184212013-07-12 20:00:08 -03002686 uint32_t bit = (INTEL_INFO(dev)->gen >= 7) ? DE_PIPE_VBLANK_IVB(pipe) :
Daniel Vetter40da17c2013-10-21 18:04:36 +02002687 DE_PIPE_VBLANK(pipe);
Jesse Barnesf796cf82011-04-07 13:58:17 -07002688
2689 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Paulo Zanonib5184212013-07-12 20:00:08 -03002690 ironlake_disable_display_irq(dev_priv, bit);
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002691 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
2692}
2693
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002694static void valleyview_disable_vblank(struct drm_device *dev, int pipe)
2695{
Jani Nikula2d1013d2014-03-31 14:27:17 +03002696 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002697 unsigned long irqflags;
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002698
2699 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Jesse Barnes31acc7f2012-06-20 10:53:11 -07002700 i915_disable_pipestat(dev_priv, pipe,
Imre Deak755e9012014-02-10 18:42:47 +02002701 PIPE_START_VBLANK_INTERRUPT_STATUS);
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002702 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
2703}
2704
Ben Widawskyabd58f02013-11-02 21:07:09 -07002705static void gen8_disable_vblank(struct drm_device *dev, int pipe)
2706{
2707 struct drm_i915_private *dev_priv = dev->dev_private;
2708 unsigned long irqflags;
Ben Widawskyabd58f02013-11-02 21:07:09 -07002709
2710 if (!i915_pipe_enabled(dev, pipe))
2711 return;
2712
2713 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Daniel Vetter7167d7c2013-11-07 11:05:45 +01002714 dev_priv->de_irq_mask[pipe] |= GEN8_PIPE_VBLANK;
2715 I915_WRITE(GEN8_DE_PIPE_IMR(pipe), dev_priv->de_irq_mask[pipe]);
2716 POSTING_READ(GEN8_DE_PIPE_IMR(pipe));
Ben Widawskyabd58f02013-11-02 21:07:09 -07002717 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
2718}
2719
Chris Wilson893eead2010-10-27 14:44:35 +01002720static u32
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002721ring_last_seqno(struct intel_engine_cs *ring)
Zou Nan hai852835f2010-05-21 09:08:56 +08002722{
Chris Wilson893eead2010-10-27 14:44:35 +01002723 return list_entry(ring->request_list.prev,
2724 struct drm_i915_gem_request, list)->seqno;
2725}
2726
Chris Wilson9107e9d2013-06-10 11:20:20 +01002727static bool
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002728ring_idle(struct intel_engine_cs *ring, u32 seqno)
Chris Wilson893eead2010-10-27 14:44:35 +01002729{
Chris Wilson9107e9d2013-06-10 11:20:20 +01002730 return (list_empty(&ring->request_list) ||
2731 i915_seqno_passed(seqno, ring_last_seqno(ring)));
Ben Gamarif65d9422009-09-14 17:48:44 -04002732}
2733
Daniel Vettera028c4b2014-03-15 00:08:56 +01002734static bool
2735ipehr_is_semaphore_wait(struct drm_device *dev, u32 ipehr)
2736{
2737 if (INTEL_INFO(dev)->gen >= 8) {
Rodrigo Vivia6cdb932014-06-30 09:53:39 -07002738 return (ipehr >> 23) == 0x1c;
Daniel Vettera028c4b2014-03-15 00:08:56 +01002739 } else {
2740 ipehr &= ~MI_SEMAPHORE_SYNC_MASK;
2741 return ipehr == (MI_SEMAPHORE_MBOX | MI_SEMAPHORE_COMPARE |
2742 MI_SEMAPHORE_REGISTER);
2743 }
2744}
2745
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002746static struct intel_engine_cs *
Rodrigo Vivia6cdb932014-06-30 09:53:39 -07002747semaphore_wait_to_signaller_ring(struct intel_engine_cs *ring, u32 ipehr, u64 offset)
Daniel Vetter921d42e2014-03-18 10:26:04 +01002748{
2749 struct drm_i915_private *dev_priv = ring->dev->dev_private;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002750 struct intel_engine_cs *signaller;
Daniel Vetter921d42e2014-03-18 10:26:04 +01002751 int i;
2752
2753 if (INTEL_INFO(dev_priv->dev)->gen >= 8) {
Rodrigo Vivia6cdb932014-06-30 09:53:39 -07002754 for_each_ring(signaller, dev_priv, i) {
2755 if (ring == signaller)
2756 continue;
2757
2758 if (offset == signaller->semaphore.signal_ggtt[ring->id])
2759 return signaller;
2760 }
Daniel Vetter921d42e2014-03-18 10:26:04 +01002761 } else {
2762 u32 sync_bits = ipehr & MI_SEMAPHORE_SYNC_MASK;
2763
2764 for_each_ring(signaller, dev_priv, i) {
2765 if(ring == signaller)
2766 continue;
2767
Ben Widawskyebc348b2014-04-29 14:52:28 -07002768 if (sync_bits == signaller->semaphore.mbox.wait[ring->id])
Daniel Vetter921d42e2014-03-18 10:26:04 +01002769 return signaller;
2770 }
2771 }
2772
Rodrigo Vivia6cdb932014-06-30 09:53:39 -07002773 DRM_ERROR("No signaller ring found for ring %i, ipehr 0x%08x, offset 0x%016llx\n",
2774 ring->id, ipehr, offset);
Daniel Vetter921d42e2014-03-18 10:26:04 +01002775
2776 return NULL;
2777}
2778
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002779static struct intel_engine_cs *
2780semaphore_waits_for(struct intel_engine_cs *ring, u32 *seqno)
Chris Wilsona24a11e2013-03-14 17:52:05 +02002781{
2782 struct drm_i915_private *dev_priv = ring->dev->dev_private;
Daniel Vetter88fe4292014-03-15 00:08:55 +01002783 u32 cmd, ipehr, head;
Rodrigo Vivia6cdb932014-06-30 09:53:39 -07002784 u64 offset = 0;
2785 int i, backwards;
Chris Wilsona24a11e2013-03-14 17:52:05 +02002786
2787 ipehr = I915_READ(RING_IPEHR(ring->mmio_base));
Daniel Vettera028c4b2014-03-15 00:08:56 +01002788 if (!ipehr_is_semaphore_wait(ring->dev, ipehr))
Chris Wilson6274f212013-06-10 11:20:21 +01002789 return NULL;
Chris Wilsona24a11e2013-03-14 17:52:05 +02002790
Daniel Vetter88fe4292014-03-15 00:08:55 +01002791 /*
2792 * HEAD is likely pointing to the dword after the actual command,
2793 * so scan backwards until we find the MBOX. But limit it to just 3
Rodrigo Vivia6cdb932014-06-30 09:53:39 -07002794 * or 4 dwords depending on the semaphore wait command size.
2795 * Note that we don't care about ACTHD here since that might
Daniel Vetter88fe4292014-03-15 00:08:55 +01002796 * point at at batch, and semaphores are always emitted into the
2797 * ringbuffer itself.
Chris Wilsona24a11e2013-03-14 17:52:05 +02002798 */
Daniel Vetter88fe4292014-03-15 00:08:55 +01002799 head = I915_READ_HEAD(ring) & HEAD_ADDR;
Rodrigo Vivia6cdb932014-06-30 09:53:39 -07002800 backwards = (INTEL_INFO(ring->dev)->gen >= 8) ? 5 : 4;
Daniel Vetter88fe4292014-03-15 00:08:55 +01002801
Rodrigo Vivia6cdb932014-06-30 09:53:39 -07002802 for (i = backwards; i; --i) {
Daniel Vetter88fe4292014-03-15 00:08:55 +01002803 /*
2804 * Be paranoid and presume the hw has gone off into the wild -
2805 * our ring is smaller than what the hardware (and hence
2806 * HEAD_ADDR) allows. Also handles wrap-around.
2807 */
Oscar Mateoee1b1e52014-05-22 14:13:35 +01002808 head &= ring->buffer->size - 1;
Daniel Vetter88fe4292014-03-15 00:08:55 +01002809
2810 /* This here seems to blow up */
Oscar Mateoee1b1e52014-05-22 14:13:35 +01002811 cmd = ioread32(ring->buffer->virtual_start + head);
Chris Wilsona24a11e2013-03-14 17:52:05 +02002812 if (cmd == ipehr)
2813 break;
2814
Daniel Vetter88fe4292014-03-15 00:08:55 +01002815 head -= 4;
2816 }
Chris Wilsona24a11e2013-03-14 17:52:05 +02002817
Daniel Vetter88fe4292014-03-15 00:08:55 +01002818 if (!i)
2819 return NULL;
2820
Oscar Mateoee1b1e52014-05-22 14:13:35 +01002821 *seqno = ioread32(ring->buffer->virtual_start + head + 4) + 1;
Rodrigo Vivia6cdb932014-06-30 09:53:39 -07002822 if (INTEL_INFO(ring->dev)->gen >= 8) {
2823 offset = ioread32(ring->buffer->virtual_start + head + 12);
2824 offset <<= 32;
2825 offset = ioread32(ring->buffer->virtual_start + head + 8);
2826 }
2827 return semaphore_wait_to_signaller_ring(ring, ipehr, offset);
Chris Wilsona24a11e2013-03-14 17:52:05 +02002828}
2829
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002830static int semaphore_passed(struct intel_engine_cs *ring)
Chris Wilson6274f212013-06-10 11:20:21 +01002831{
2832 struct drm_i915_private *dev_priv = ring->dev->dev_private;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002833 struct intel_engine_cs *signaller;
Chris Wilsona0d036b2014-07-19 12:40:42 +01002834 u32 seqno;
Chris Wilson6274f212013-06-10 11:20:21 +01002835
Chris Wilson4be17382014-06-06 10:22:29 +01002836 ring->hangcheck.deadlock++;
Chris Wilson6274f212013-06-10 11:20:21 +01002837
2838 signaller = semaphore_waits_for(ring, &seqno);
Chris Wilson4be17382014-06-06 10:22:29 +01002839 if (signaller == NULL)
2840 return -1;
2841
2842 /* Prevent pathological recursion due to driver bugs */
2843 if (signaller->hangcheck.deadlock >= I915_NUM_RINGS)
Chris Wilson6274f212013-06-10 11:20:21 +01002844 return -1;
2845
Chris Wilson4be17382014-06-06 10:22:29 +01002846 if (i915_seqno_passed(signaller->get_seqno(signaller, false), seqno))
2847 return 1;
2848
Chris Wilsona0d036b2014-07-19 12:40:42 +01002849 /* cursory check for an unkickable deadlock */
2850 if (I915_READ_CTL(signaller) & RING_WAIT_SEMAPHORE &&
2851 semaphore_passed(signaller) < 0)
Chris Wilson4be17382014-06-06 10:22:29 +01002852 return -1;
2853
2854 return 0;
Chris Wilson6274f212013-06-10 11:20:21 +01002855}
2856
2857static void semaphore_clear_deadlocks(struct drm_i915_private *dev_priv)
2858{
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002859 struct intel_engine_cs *ring;
Chris Wilson6274f212013-06-10 11:20:21 +01002860 int i;
2861
2862 for_each_ring(ring, dev_priv, i)
Chris Wilson4be17382014-06-06 10:22:29 +01002863 ring->hangcheck.deadlock = 0;
Chris Wilson6274f212013-06-10 11:20:21 +01002864}
2865
Mika Kuoppalaad8beae2013-06-12 12:35:32 +03002866static enum intel_ring_hangcheck_action
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002867ring_stuck(struct intel_engine_cs *ring, u64 acthd)
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002868{
2869 struct drm_device *dev = ring->dev;
2870 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson9107e9d2013-06-10 11:20:20 +01002871 u32 tmp;
2872
Mika Kuoppalaf260fe72014-08-05 17:16:26 +03002873 if (acthd != ring->hangcheck.acthd) {
2874 if (acthd > ring->hangcheck.max_acthd) {
2875 ring->hangcheck.max_acthd = acthd;
2876 return HANGCHECK_ACTIVE;
2877 }
2878
2879 return HANGCHECK_ACTIVE_LOOP;
2880 }
Chris Wilson6274f212013-06-10 11:20:21 +01002881
Chris Wilson9107e9d2013-06-10 11:20:20 +01002882 if (IS_GEN2(dev))
Jani Nikulaf2f4d822013-08-11 12:44:01 +03002883 return HANGCHECK_HUNG;
Chris Wilson9107e9d2013-06-10 11:20:20 +01002884
2885 /* Is the chip hanging on a WAIT_FOR_EVENT?
2886 * If so we can simply poke the RB_WAIT bit
2887 * and break the hang. This should work on
2888 * all but the second generation chipsets.
2889 */
2890 tmp = I915_READ_CTL(ring);
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002891 if (tmp & RING_WAIT) {
Mika Kuoppala58174462014-02-25 17:11:26 +02002892 i915_handle_error(dev, false,
2893 "Kicking stuck wait on %s",
2894 ring->name);
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002895 I915_WRITE_CTL(ring, tmp);
Jani Nikulaf2f4d822013-08-11 12:44:01 +03002896 return HANGCHECK_KICK;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002897 }
Chris Wilsona24a11e2013-03-14 17:52:05 +02002898
Chris Wilson6274f212013-06-10 11:20:21 +01002899 if (INTEL_INFO(dev)->gen >= 6 && tmp & RING_WAIT_SEMAPHORE) {
2900 switch (semaphore_passed(ring)) {
2901 default:
Jani Nikulaf2f4d822013-08-11 12:44:01 +03002902 return HANGCHECK_HUNG;
Chris Wilson6274f212013-06-10 11:20:21 +01002903 case 1:
Mika Kuoppala58174462014-02-25 17:11:26 +02002904 i915_handle_error(dev, false,
2905 "Kicking stuck semaphore on %s",
2906 ring->name);
Chris Wilson6274f212013-06-10 11:20:21 +01002907 I915_WRITE_CTL(ring, tmp);
Jani Nikulaf2f4d822013-08-11 12:44:01 +03002908 return HANGCHECK_KICK;
Chris Wilson6274f212013-06-10 11:20:21 +01002909 case 0:
Jani Nikulaf2f4d822013-08-11 12:44:01 +03002910 return HANGCHECK_WAIT;
Chris Wilson6274f212013-06-10 11:20:21 +01002911 }
Chris Wilson9107e9d2013-06-10 11:20:20 +01002912 }
Mika Kuoppalaed5cbb02013-05-13 16:32:11 +03002913
Jani Nikulaf2f4d822013-08-11 12:44:01 +03002914 return HANGCHECK_HUNG;
Mika Kuoppalaed5cbb02013-05-13 16:32:11 +03002915}
2916
Ben Gamarif65d9422009-09-14 17:48:44 -04002917/**
2918 * This is called when the chip hasn't reported back with completed
Mika Kuoppala05407ff2013-05-30 09:04:29 +03002919 * batchbuffers in a long time. We keep track per ring seqno progress and
2920 * if there are no progress, hangcheck score for that ring is increased.
2921 * Further, acthd is inspected to see if the ring is stuck. On stuck case
2922 * we kick the ring. If we see no progress on three subsequent calls
2923 * we assume chip is wedged and try to fix it by resetting the chip.
Ben Gamarif65d9422009-09-14 17:48:44 -04002924 */
Damien Lespiaua658b5d2013-08-08 22:28:56 +01002925static void i915_hangcheck_elapsed(unsigned long data)
Ben Gamarif65d9422009-09-14 17:48:44 -04002926{
2927 struct drm_device *dev = (struct drm_device *)data;
Jani Nikula2d1013d2014-03-31 14:27:17 +03002928 struct drm_i915_private *dev_priv = dev->dev_private;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002929 struct intel_engine_cs *ring;
Chris Wilsonb4519512012-05-11 14:29:30 +01002930 int i;
Mika Kuoppala05407ff2013-05-30 09:04:29 +03002931 int busy_count = 0, rings_hung = 0;
Chris Wilson9107e9d2013-06-10 11:20:20 +01002932 bool stuck[I915_NUM_RINGS] = { 0 };
2933#define BUSY 1
2934#define KICK 5
2935#define HUNG 20
Chris Wilson893eead2010-10-27 14:44:35 +01002936
Jani Nikulad330a952014-01-21 11:24:25 +02002937 if (!i915.enable_hangcheck)
Ben Widawsky3e0dc6b2011-06-29 10:26:42 -07002938 return;
2939
Chris Wilsonb4519512012-05-11 14:29:30 +01002940 for_each_ring(ring, dev_priv, i) {
Chris Wilson50877442014-03-21 12:41:53 +00002941 u64 acthd;
2942 u32 seqno;
Chris Wilson9107e9d2013-06-10 11:20:20 +01002943 bool busy = true;
Chris Wilsonb4519512012-05-11 14:29:30 +01002944
Chris Wilson6274f212013-06-10 11:20:21 +01002945 semaphore_clear_deadlocks(dev_priv);
2946
Mika Kuoppala05407ff2013-05-30 09:04:29 +03002947 seqno = ring->get_seqno(ring, false);
2948 acthd = intel_ring_get_active_head(ring);
Chris Wilsond1e61e72012-04-10 17:00:41 +01002949
Chris Wilson9107e9d2013-06-10 11:20:20 +01002950 if (ring->hangcheck.seqno == seqno) {
2951 if (ring_idle(ring, seqno)) {
Mika Kuoppalada661462013-09-06 16:03:28 +03002952 ring->hangcheck.action = HANGCHECK_IDLE;
2953
Chris Wilson9107e9d2013-06-10 11:20:20 +01002954 if (waitqueue_active(&ring->irq_queue)) {
2955 /* Issue a wake-up to catch stuck h/w. */
Chris Wilson094f9a52013-09-25 17:34:55 +01002956 if (!test_and_set_bit(ring->id, &dev_priv->gpu_error.missed_irq_rings)) {
Daniel Vetterf4adcd22013-10-28 09:24:13 +01002957 if (!(dev_priv->gpu_error.test_irq_rings & intel_ring_flag(ring)))
2958 DRM_ERROR("Hangcheck timer elapsed... %s idle\n",
2959 ring->name);
2960 else
2961 DRM_INFO("Fake missed irq on %s\n",
2962 ring->name);
Chris Wilson094f9a52013-09-25 17:34:55 +01002963 wake_up_all(&ring->irq_queue);
2964 }
2965 /* Safeguard against driver failure */
2966 ring->hangcheck.score += BUSY;
Chris Wilson9107e9d2013-06-10 11:20:20 +01002967 } else
2968 busy = false;
Mika Kuoppala05407ff2013-05-30 09:04:29 +03002969 } else {
Chris Wilson6274f212013-06-10 11:20:21 +01002970 /* We always increment the hangcheck score
2971 * if the ring is busy and still processing
2972 * the same request, so that no single request
2973 * can run indefinitely (such as a chain of
2974 * batches). The only time we do not increment
2975 * the hangcheck score on this ring, if this
2976 * ring is in a legitimate wait for another
2977 * ring. In that case the waiting ring is a
2978 * victim and we want to be sure we catch the
2979 * right culprit. Then every time we do kick
2980 * the ring, add a small increment to the
2981 * score so that we can catch a batch that is
2982 * being repeatedly kicked and so responsible
2983 * for stalling the machine.
2984 */
Mika Kuoppalaad8beae2013-06-12 12:35:32 +03002985 ring->hangcheck.action = ring_stuck(ring,
2986 acthd);
2987
2988 switch (ring->hangcheck.action) {
Mika Kuoppalada661462013-09-06 16:03:28 +03002989 case HANGCHECK_IDLE:
Jani Nikulaf2f4d822013-08-11 12:44:01 +03002990 case HANGCHECK_WAIT:
Jani Nikulaf2f4d822013-08-11 12:44:01 +03002991 case HANGCHECK_ACTIVE:
Mika Kuoppalaf260fe72014-08-05 17:16:26 +03002992 break;
2993 case HANGCHECK_ACTIVE_LOOP:
Jani Nikulaea04cb32013-08-11 12:44:02 +03002994 ring->hangcheck.score += BUSY;
Chris Wilson6274f212013-06-10 11:20:21 +01002995 break;
Jani Nikulaf2f4d822013-08-11 12:44:01 +03002996 case HANGCHECK_KICK:
Jani Nikulaea04cb32013-08-11 12:44:02 +03002997 ring->hangcheck.score += KICK;
Chris Wilson6274f212013-06-10 11:20:21 +01002998 break;
Jani Nikulaf2f4d822013-08-11 12:44:01 +03002999 case HANGCHECK_HUNG:
Jani Nikulaea04cb32013-08-11 12:44:02 +03003000 ring->hangcheck.score += HUNG;
Chris Wilson6274f212013-06-10 11:20:21 +01003001 stuck[i] = true;
3002 break;
3003 }
Mika Kuoppala05407ff2013-05-30 09:04:29 +03003004 }
Chris Wilson9107e9d2013-06-10 11:20:20 +01003005 } else {
Mika Kuoppalada661462013-09-06 16:03:28 +03003006 ring->hangcheck.action = HANGCHECK_ACTIVE;
3007
Chris Wilson9107e9d2013-06-10 11:20:20 +01003008 /* Gradually reduce the count so that we catch DoS
3009 * attempts across multiple batches.
3010 */
3011 if (ring->hangcheck.score > 0)
3012 ring->hangcheck.score--;
Mika Kuoppalaf260fe72014-08-05 17:16:26 +03003013
3014 ring->hangcheck.acthd = ring->hangcheck.max_acthd = 0;
Chris Wilsond1e61e72012-04-10 17:00:41 +01003015 }
3016
Mika Kuoppala05407ff2013-05-30 09:04:29 +03003017 ring->hangcheck.seqno = seqno;
3018 ring->hangcheck.acthd = acthd;
Chris Wilson9107e9d2013-06-10 11:20:20 +01003019 busy_count += busy;
Chris Wilson893eead2010-10-27 14:44:35 +01003020 }
Eric Anholtb9201c12010-01-08 14:25:16 -08003021
Mika Kuoppala92cab732013-05-24 17:16:07 +03003022 for_each_ring(ring, dev_priv, i) {
Mika Kuoppalab6b0fac2014-01-30 19:04:43 +02003023 if (ring->hangcheck.score >= HANGCHECK_SCORE_RING_HUNG) {
Daniel Vetterb8d88d12013-08-28 10:57:59 +02003024 DRM_INFO("%s on %s\n",
3025 stuck[i] ? "stuck" : "no progress",
3026 ring->name);
Chris Wilsona43adf02013-06-10 11:20:22 +01003027 rings_hung++;
Mika Kuoppala92cab732013-05-24 17:16:07 +03003028 }
3029 }
3030
Mika Kuoppala05407ff2013-05-30 09:04:29 +03003031 if (rings_hung)
Mika Kuoppala58174462014-02-25 17:11:26 +02003032 return i915_handle_error(dev, true, "Ring hung");
Ben Gamarif65d9422009-09-14 17:48:44 -04003033
Mika Kuoppala05407ff2013-05-30 09:04:29 +03003034 if (busy_count)
3035 /* Reset timer case chip hangs without another request
3036 * being added */
Mika Kuoppala10cd45b2013-07-03 17:22:08 +03003037 i915_queue_hangcheck(dev);
3038}
3039
3040void i915_queue_hangcheck(struct drm_device *dev)
3041{
3042 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson672e7b72014-11-19 09:47:19 +00003043 struct timer_list *timer = &dev_priv->gpu_error.hangcheck_timer;
3044
Jani Nikulad330a952014-01-21 11:24:25 +02003045 if (!i915.enable_hangcheck)
Mika Kuoppala10cd45b2013-07-03 17:22:08 +03003046 return;
3047
Chris Wilson672e7b72014-11-19 09:47:19 +00003048 /* Don't continually defer the hangcheck, but make sure it is active */
3049 if (!timer_pending(timer))
3050 timer->expires = round_jiffies_up(jiffies + DRM_I915_HANGCHECK_JIFFIES);
3051 mod_timer(timer, timer->expires);
Ben Gamarif65d9422009-09-14 17:48:44 -04003052}
3053
Paulo Zanoni1c69eb42014-04-01 15:37:23 -03003054static void ibx_irq_reset(struct drm_device *dev)
Paulo Zanoni91738a92013-06-05 14:21:51 -03003055{
3056 struct drm_i915_private *dev_priv = dev->dev_private;
3057
3058 if (HAS_PCH_NOP(dev))
3059 return;
3060
Paulo Zanonif86f3fb2014-04-01 15:37:14 -03003061 GEN5_IRQ_RESET(SDE);
Paulo Zanoni105b1222014-04-01 15:37:17 -03003062
3063 if (HAS_PCH_CPT(dev) || HAS_PCH_LPT(dev))
3064 I915_WRITE(SERR_INT, 0xffffffff);
Paulo Zanoni622364b2014-04-01 15:37:22 -03003065}
Paulo Zanoni105b1222014-04-01 15:37:17 -03003066
Paulo Zanoni622364b2014-04-01 15:37:22 -03003067/*
3068 * SDEIER is also touched by the interrupt handler to work around missed PCH
3069 * interrupts. Hence we can't update it after the interrupt handler is enabled -
3070 * instead we unconditionally enable all PCH interrupt sources here, but then
3071 * only unmask them as needed with SDEIMR.
3072 *
3073 * This function needs to be called before interrupts are enabled.
3074 */
3075static void ibx_irq_pre_postinstall(struct drm_device *dev)
3076{
3077 struct drm_i915_private *dev_priv = dev->dev_private;
3078
3079 if (HAS_PCH_NOP(dev))
3080 return;
3081
3082 WARN_ON(I915_READ(SDEIER) != 0);
Paulo Zanoni91738a92013-06-05 14:21:51 -03003083 I915_WRITE(SDEIER, 0xffffffff);
3084 POSTING_READ(SDEIER);
3085}
3086
Paulo Zanoni7c4d6642014-04-01 15:37:19 -03003087static void gen5_gt_irq_reset(struct drm_device *dev)
Daniel Vetterd18ea1b2013-07-12 22:43:25 +02003088{
3089 struct drm_i915_private *dev_priv = dev->dev_private;
3090
Paulo Zanonif86f3fb2014-04-01 15:37:14 -03003091 GEN5_IRQ_RESET(GT);
Paulo Zanonia9d356a2014-04-01 15:37:09 -03003092 if (INTEL_INFO(dev)->gen >= 6)
Paulo Zanonif86f3fb2014-04-01 15:37:14 -03003093 GEN5_IRQ_RESET(GEN6_PM);
Daniel Vetterd18ea1b2013-07-12 22:43:25 +02003094}
3095
Linus Torvalds1da177e2005-04-16 15:20:36 -07003096/* drm_dma.h hooks
3097*/
Paulo Zanonibe30b292014-04-01 15:37:25 -03003098static void ironlake_irq_reset(struct drm_device *dev)
Zhenyu Wang036a4a72009-06-08 14:40:19 +08003099{
Jani Nikula2d1013d2014-03-31 14:27:17 +03003100 struct drm_i915_private *dev_priv = dev->dev_private;
Zhenyu Wang036a4a72009-06-08 14:40:19 +08003101
Paulo Zanoni0c841212014-04-01 15:37:27 -03003102 I915_WRITE(HWSTAM, 0xffffffff);
Daniel Vetterbdfcdb62012-01-05 01:05:26 +01003103
Paulo Zanonif86f3fb2014-04-01 15:37:14 -03003104 GEN5_IRQ_RESET(DE);
Paulo Zanonic6d954c2014-04-01 15:37:18 -03003105 if (IS_GEN7(dev))
3106 I915_WRITE(GEN7_ERR_INT, 0xffffffff);
Zhenyu Wang036a4a72009-06-08 14:40:19 +08003107
Paulo Zanoni7c4d6642014-04-01 15:37:19 -03003108 gen5_gt_irq_reset(dev);
Zhenyu Wangc6501562009-11-03 18:57:21 +00003109
Paulo Zanoni1c69eb42014-04-01 15:37:23 -03003110 ibx_irq_reset(dev);
Ben Widawsky7d991632013-05-28 19:22:25 -07003111}
3112
Ville Syrjälä70591a42014-10-30 19:42:58 +02003113static void vlv_display_irq_reset(struct drm_i915_private *dev_priv)
3114{
3115 enum pipe pipe;
3116
3117 I915_WRITE(PORT_HOTPLUG_EN, 0);
3118 I915_WRITE(PORT_HOTPLUG_STAT, I915_READ(PORT_HOTPLUG_STAT));
3119
3120 for_each_pipe(dev_priv, pipe)
3121 I915_WRITE(PIPESTAT(pipe), 0xffff);
3122
3123 GEN5_IRQ_RESET(VLV_);
3124}
3125
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003126static void valleyview_irq_preinstall(struct drm_device *dev)
3127{
Jani Nikula2d1013d2014-03-31 14:27:17 +03003128 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003129
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003130 /* VLV magic */
3131 I915_WRITE(VLV_IMR, 0);
3132 I915_WRITE(RING_IMR(RENDER_RING_BASE), 0);
3133 I915_WRITE(RING_IMR(GEN6_BSD_RING_BASE), 0);
3134 I915_WRITE(RING_IMR(BLT_RING_BASE), 0);
3135
Paulo Zanoni7c4d6642014-04-01 15:37:19 -03003136 gen5_gt_irq_reset(dev);
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003137
Ville Syrjälä7c4cde32014-10-30 19:42:51 +02003138 I915_WRITE(DPINVGTT, DPINVGTT_STATUS_MASK);
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003139
Ville Syrjälä70591a42014-10-30 19:42:58 +02003140 vlv_display_irq_reset(dev_priv);
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003141}
3142
Daniel Vetterd6e3cca2014-05-22 22:18:22 +02003143static void gen8_gt_irq_reset(struct drm_i915_private *dev_priv)
3144{
3145 GEN8_IRQ_RESET_NDX(GT, 0);
3146 GEN8_IRQ_RESET_NDX(GT, 1);
3147 GEN8_IRQ_RESET_NDX(GT, 2);
3148 GEN8_IRQ_RESET_NDX(GT, 3);
3149}
3150
Paulo Zanoni823f6b32014-04-01 15:37:26 -03003151static void gen8_irq_reset(struct drm_device *dev)
Ben Widawskyabd58f02013-11-02 21:07:09 -07003152{
3153 struct drm_i915_private *dev_priv = dev->dev_private;
3154 int pipe;
3155
Ben Widawskyabd58f02013-11-02 21:07:09 -07003156 I915_WRITE(GEN8_MASTER_IRQ, 0);
3157 POSTING_READ(GEN8_MASTER_IRQ);
3158
Daniel Vetterd6e3cca2014-05-22 22:18:22 +02003159 gen8_gt_irq_reset(dev_priv);
Ben Widawskyabd58f02013-11-02 21:07:09 -07003160
Damien Lespiau055e3932014-08-18 13:49:10 +01003161 for_each_pipe(dev_priv, pipe)
Daniel Vetterf458ebb2014-09-30 10:56:39 +02003162 if (intel_display_power_is_enabled(dev_priv,
3163 POWER_DOMAIN_PIPE(pipe)))
Paulo Zanoni813bde42014-07-04 11:50:29 -03003164 GEN8_IRQ_RESET_NDX(DE_PIPE, pipe);
Ben Widawskyabd58f02013-11-02 21:07:09 -07003165
Paulo Zanonif86f3fb2014-04-01 15:37:14 -03003166 GEN5_IRQ_RESET(GEN8_DE_PORT_);
3167 GEN5_IRQ_RESET(GEN8_DE_MISC_);
3168 GEN5_IRQ_RESET(GEN8_PCU_);
Ben Widawskyabd58f02013-11-02 21:07:09 -07003169
Paulo Zanoni1c69eb42014-04-01 15:37:23 -03003170 ibx_irq_reset(dev);
Ben Widawskyabd58f02013-11-02 21:07:09 -07003171}
Ben Widawskyabd58f02013-11-02 21:07:09 -07003172
Paulo Zanonid49bdb02014-07-04 11:50:31 -03003173void gen8_irq_power_well_post_enable(struct drm_i915_private *dev_priv)
3174{
Paulo Zanoni1180e202014-10-07 18:02:52 -03003175 uint32_t extra_ier = GEN8_PIPE_VBLANK | GEN8_PIPE_FIFO_UNDERRUN;
Paulo Zanonid49bdb02014-07-04 11:50:31 -03003176
Daniel Vetter13321782014-09-15 14:55:29 +02003177 spin_lock_irq(&dev_priv->irq_lock);
Paulo Zanonid49bdb02014-07-04 11:50:31 -03003178 GEN8_IRQ_INIT_NDX(DE_PIPE, PIPE_B, dev_priv->de_irq_mask[PIPE_B],
Paulo Zanoni1180e202014-10-07 18:02:52 -03003179 ~dev_priv->de_irq_mask[PIPE_B] | extra_ier);
Paulo Zanonid49bdb02014-07-04 11:50:31 -03003180 GEN8_IRQ_INIT_NDX(DE_PIPE, PIPE_C, dev_priv->de_irq_mask[PIPE_C],
Paulo Zanoni1180e202014-10-07 18:02:52 -03003181 ~dev_priv->de_irq_mask[PIPE_C] | extra_ier);
Daniel Vetter13321782014-09-15 14:55:29 +02003182 spin_unlock_irq(&dev_priv->irq_lock);
Paulo Zanonid49bdb02014-07-04 11:50:31 -03003183}
3184
Ville Syrjälä43f328d2014-04-09 20:40:52 +03003185static void cherryview_irq_preinstall(struct drm_device *dev)
3186{
3187 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjälä43f328d2014-04-09 20:40:52 +03003188
3189 I915_WRITE(GEN8_MASTER_IRQ, 0);
3190 POSTING_READ(GEN8_MASTER_IRQ);
3191
Daniel Vetterd6e3cca2014-05-22 22:18:22 +02003192 gen8_gt_irq_reset(dev_priv);
Ville Syrjälä43f328d2014-04-09 20:40:52 +03003193
3194 GEN5_IRQ_RESET(GEN8_PCU_);
3195
Ville Syrjälä43f328d2014-04-09 20:40:52 +03003196 I915_WRITE(DPINVGTT, DPINVGTT_STATUS_MASK_CHV);
3197
Ville Syrjälä70591a42014-10-30 19:42:58 +02003198 vlv_display_irq_reset(dev_priv);
Ville Syrjälä43f328d2014-04-09 20:40:52 +03003199}
3200
Daniel Vetter82a28bc2013-03-27 15:55:01 +01003201static void ibx_hpd_irq_setup(struct drm_device *dev)
Keith Packard7fe0b972011-09-19 13:31:02 -07003202{
Jani Nikula2d1013d2014-03-31 14:27:17 +03003203 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter82a28bc2013-03-27 15:55:01 +01003204 struct intel_encoder *intel_encoder;
Daniel Vetterfee884e2013-07-04 23:35:21 +02003205 u32 hotplug_irqs, hotplug, enabled_irqs = 0;
Keith Packard7fe0b972011-09-19 13:31:02 -07003206
Daniel Vetter82a28bc2013-03-27 15:55:01 +01003207 if (HAS_PCH_IBX(dev)) {
Daniel Vetterfee884e2013-07-04 23:35:21 +02003208 hotplug_irqs = SDE_HOTPLUG_MASK;
Damien Lespiaub2784e12014-08-05 11:29:37 +01003209 for_each_intel_encoder(dev, intel_encoder)
Egbert Eichcd569ae2013-04-16 13:36:57 +02003210 if (dev_priv->hpd_stats[intel_encoder->hpd_pin].hpd_mark == HPD_ENABLED)
Daniel Vetterfee884e2013-07-04 23:35:21 +02003211 enabled_irqs |= hpd_ibx[intel_encoder->hpd_pin];
Daniel Vetter82a28bc2013-03-27 15:55:01 +01003212 } else {
Daniel Vetterfee884e2013-07-04 23:35:21 +02003213 hotplug_irqs = SDE_HOTPLUG_MASK_CPT;
Damien Lespiaub2784e12014-08-05 11:29:37 +01003214 for_each_intel_encoder(dev, intel_encoder)
Egbert Eichcd569ae2013-04-16 13:36:57 +02003215 if (dev_priv->hpd_stats[intel_encoder->hpd_pin].hpd_mark == HPD_ENABLED)
Daniel Vetterfee884e2013-07-04 23:35:21 +02003216 enabled_irqs |= hpd_cpt[intel_encoder->hpd_pin];
Daniel Vetter82a28bc2013-03-27 15:55:01 +01003217 }
3218
Daniel Vetterfee884e2013-07-04 23:35:21 +02003219 ibx_display_interrupt_update(dev_priv, hotplug_irqs, enabled_irqs);
Daniel Vetter82a28bc2013-03-27 15:55:01 +01003220
3221 /*
3222 * Enable digital hotplug on the PCH, and configure the DP short pulse
3223 * duration to 2ms (which is the minimum in the Display Port spec)
3224 *
3225 * This register is the same on all known PCH chips.
3226 */
Keith Packard7fe0b972011-09-19 13:31:02 -07003227 hotplug = I915_READ(PCH_PORT_HOTPLUG);
3228 hotplug &= ~(PORTD_PULSE_DURATION_MASK|PORTC_PULSE_DURATION_MASK|PORTB_PULSE_DURATION_MASK);
3229 hotplug |= PORTD_HOTPLUG_ENABLE | PORTD_PULSE_DURATION_2ms;
3230 hotplug |= PORTC_HOTPLUG_ENABLE | PORTC_PULSE_DURATION_2ms;
3231 hotplug |= PORTB_HOTPLUG_ENABLE | PORTB_PULSE_DURATION_2ms;
3232 I915_WRITE(PCH_PORT_HOTPLUG, hotplug);
3233}
3234
Paulo Zanonid46da432013-02-08 17:35:15 -02003235static void ibx_irq_postinstall(struct drm_device *dev)
3236{
Jani Nikula2d1013d2014-03-31 14:27:17 +03003237 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter82a28bc2013-03-27 15:55:01 +01003238 u32 mask;
Paulo Zanonid46da432013-02-08 17:35:15 -02003239
Daniel Vetter692a04c2013-05-29 21:43:05 +02003240 if (HAS_PCH_NOP(dev))
3241 return;
3242
Paulo Zanoni105b1222014-04-01 15:37:17 -03003243 if (HAS_PCH_IBX(dev))
Daniel Vetter5c673b62014-03-07 20:34:46 +01003244 mask = SDE_GMBUS | SDE_AUX_MASK | SDE_POISON;
Paulo Zanoni105b1222014-04-01 15:37:17 -03003245 else
Daniel Vetter5c673b62014-03-07 20:34:46 +01003246 mask = SDE_GMBUS_CPT | SDE_AUX_MASK_CPT;
Paulo Zanoni86642812013-04-12 17:57:57 -03003247
Paulo Zanoni337ba012014-04-01 15:37:16 -03003248 GEN5_ASSERT_IIR_IS_ZERO(SDEIIR);
Paulo Zanonid46da432013-02-08 17:35:15 -02003249 I915_WRITE(SDEIMR, ~mask);
Paulo Zanonid46da432013-02-08 17:35:15 -02003250}
3251
Daniel Vetter0a9a8c92013-07-12 22:43:26 +02003252static void gen5_gt_irq_postinstall(struct drm_device *dev)
3253{
3254 struct drm_i915_private *dev_priv = dev->dev_private;
3255 u32 pm_irqs, gt_irqs;
3256
3257 pm_irqs = gt_irqs = 0;
3258
3259 dev_priv->gt_irq_mask = ~0;
Ben Widawsky040d2ba2013-09-19 11:01:40 -07003260 if (HAS_L3_DPF(dev)) {
Daniel Vetter0a9a8c92013-07-12 22:43:26 +02003261 /* L3 parity interrupt is always unmasked. */
Ben Widawsky35a85ac2013-09-19 11:13:41 -07003262 dev_priv->gt_irq_mask = ~GT_PARITY_ERROR(dev);
3263 gt_irqs |= GT_PARITY_ERROR(dev);
Daniel Vetter0a9a8c92013-07-12 22:43:26 +02003264 }
3265
3266 gt_irqs |= GT_RENDER_USER_INTERRUPT;
3267 if (IS_GEN5(dev)) {
3268 gt_irqs |= GT_RENDER_PIPECTL_NOTIFY_INTERRUPT |
3269 ILK_BSD_USER_INTERRUPT;
3270 } else {
3271 gt_irqs |= GT_BLT_USER_INTERRUPT | GT_BSD_USER_INTERRUPT;
3272 }
3273
Paulo Zanoni35079892014-04-01 15:37:15 -03003274 GEN5_IRQ_INIT(GT, dev_priv->gt_irq_mask, gt_irqs);
Daniel Vetter0a9a8c92013-07-12 22:43:26 +02003275
3276 if (INTEL_INFO(dev)->gen >= 6) {
Deepak Sa6706b42014-03-15 20:23:22 +05303277 pm_irqs |= dev_priv->pm_rps_events;
Daniel Vetter0a9a8c92013-07-12 22:43:26 +02003278
3279 if (HAS_VEBOX(dev))
3280 pm_irqs |= PM_VEBOX_USER_INTERRUPT;
3281
Paulo Zanoni605cd252013-08-06 18:57:15 -03003282 dev_priv->pm_irq_mask = 0xffffffff;
Paulo Zanoni35079892014-04-01 15:37:15 -03003283 GEN5_IRQ_INIT(GEN6_PM, dev_priv->pm_irq_mask, pm_irqs);
Daniel Vetter0a9a8c92013-07-12 22:43:26 +02003284 }
3285}
3286
Jesse Barnesf71d4af2011-06-28 13:00:41 -07003287static int ironlake_irq_postinstall(struct drm_device *dev)
Zhenyu Wang036a4a72009-06-08 14:40:19 +08003288{
Jani Nikula2d1013d2014-03-31 14:27:17 +03003289 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanoni8e76f8d2013-07-12 20:01:56 -03003290 u32 display_mask, extra_mask;
3291
3292 if (INTEL_INFO(dev)->gen >= 7) {
3293 display_mask = (DE_MASTER_IRQ_CONTROL | DE_GSE_IVB |
3294 DE_PCH_EVENT_IVB | DE_PLANEC_FLIP_DONE_IVB |
3295 DE_PLANEB_FLIP_DONE_IVB |
Daniel Vetter5c673b62014-03-07 20:34:46 +01003296 DE_PLANEA_FLIP_DONE_IVB | DE_AUX_CHANNEL_A_IVB);
Paulo Zanoni8e76f8d2013-07-12 20:01:56 -03003297 extra_mask = (DE_PIPEC_VBLANK_IVB | DE_PIPEB_VBLANK_IVB |
Daniel Vetter5c673b62014-03-07 20:34:46 +01003298 DE_PIPEA_VBLANK_IVB | DE_ERR_INT_IVB);
Paulo Zanoni8e76f8d2013-07-12 20:01:56 -03003299 } else {
3300 display_mask = (DE_MASTER_IRQ_CONTROL | DE_GSE | DE_PCH_EVENT |
3301 DE_PLANEA_FLIP_DONE | DE_PLANEB_FLIP_DONE |
Daniel Vetter5b3a8562013-10-16 22:55:48 +02003302 DE_AUX_CHANNEL_A |
Daniel Vetter5b3a8562013-10-16 22:55:48 +02003303 DE_PIPEB_CRC_DONE | DE_PIPEA_CRC_DONE |
3304 DE_POISON);
Daniel Vetter5c673b62014-03-07 20:34:46 +01003305 extra_mask = DE_PIPEA_VBLANK | DE_PIPEB_VBLANK | DE_PCU_EVENT |
3306 DE_PIPEB_FIFO_UNDERRUN | DE_PIPEA_FIFO_UNDERRUN;
Paulo Zanoni8e76f8d2013-07-12 20:01:56 -03003307 }
Zhenyu Wang036a4a72009-06-08 14:40:19 +08003308
Chris Wilson1ec14ad2010-12-04 11:30:53 +00003309 dev_priv->irq_mask = ~display_mask;
Zhenyu Wang036a4a72009-06-08 14:40:19 +08003310
Paulo Zanoni0c841212014-04-01 15:37:27 -03003311 I915_WRITE(HWSTAM, 0xeffe);
3312
Paulo Zanoni622364b2014-04-01 15:37:22 -03003313 ibx_irq_pre_postinstall(dev);
3314
Paulo Zanoni35079892014-04-01 15:37:15 -03003315 GEN5_IRQ_INIT(DE, dev_priv->irq_mask, display_mask | extra_mask);
Zhenyu Wang036a4a72009-06-08 14:40:19 +08003316
Daniel Vetter0a9a8c92013-07-12 22:43:26 +02003317 gen5_gt_irq_postinstall(dev);
Zhenyu Wang036a4a72009-06-08 14:40:19 +08003318
Paulo Zanonid46da432013-02-08 17:35:15 -02003319 ibx_irq_postinstall(dev);
Keith Packard7fe0b972011-09-19 13:31:02 -07003320
Jesse Barnesf97108d2010-01-29 11:27:07 -08003321 if (IS_IRONLAKE_M(dev)) {
Daniel Vetter6005ce42013-06-27 13:44:59 +02003322 /* Enable PCU event interrupts
3323 *
3324 * spinlocking not required here for correctness since interrupt
Daniel Vetter4bc9d432013-06-27 13:44:58 +02003325 * setup is guaranteed to run in single-threaded context. But we
3326 * need it to make the assert_spin_locked happy. */
Daniel Vetterd6207432014-09-15 14:55:27 +02003327 spin_lock_irq(&dev_priv->irq_lock);
Jesse Barnesf97108d2010-01-29 11:27:07 -08003328 ironlake_enable_display_irq(dev_priv, DE_PCU_EVENT);
Daniel Vetterd6207432014-09-15 14:55:27 +02003329 spin_unlock_irq(&dev_priv->irq_lock);
Jesse Barnesf97108d2010-01-29 11:27:07 -08003330 }
3331
Zhenyu Wang036a4a72009-06-08 14:40:19 +08003332 return 0;
3333}
3334
Imre Deakf8b79e52014-03-04 19:23:07 +02003335static void valleyview_display_irqs_install(struct drm_i915_private *dev_priv)
3336{
3337 u32 pipestat_mask;
3338 u32 iir_mask;
Ville Syrjälä120dda42014-10-30 19:42:57 +02003339 enum pipe pipe;
Imre Deakf8b79e52014-03-04 19:23:07 +02003340
3341 pipestat_mask = PIPESTAT_INT_STATUS_MASK |
3342 PIPE_FIFO_UNDERRUN_STATUS;
3343
Ville Syrjälä120dda42014-10-30 19:42:57 +02003344 for_each_pipe(dev_priv, pipe)
3345 I915_WRITE(PIPESTAT(pipe), pipestat_mask);
Imre Deakf8b79e52014-03-04 19:23:07 +02003346 POSTING_READ(PIPESTAT(PIPE_A));
3347
3348 pipestat_mask = PLANE_FLIP_DONE_INT_STATUS_VLV |
3349 PIPE_CRC_DONE_INTERRUPT_STATUS;
3350
Ville Syrjälä120dda42014-10-30 19:42:57 +02003351 i915_enable_pipestat(dev_priv, PIPE_A, PIPE_GMBUS_INTERRUPT_STATUS);
3352 for_each_pipe(dev_priv, pipe)
3353 i915_enable_pipestat(dev_priv, pipe, pipestat_mask);
Imre Deakf8b79e52014-03-04 19:23:07 +02003354
3355 iir_mask = I915_DISPLAY_PORT_INTERRUPT |
3356 I915_DISPLAY_PIPE_A_EVENT_INTERRUPT |
3357 I915_DISPLAY_PIPE_B_EVENT_INTERRUPT;
Ville Syrjälä120dda42014-10-30 19:42:57 +02003358 if (IS_CHERRYVIEW(dev_priv))
3359 iir_mask |= I915_DISPLAY_PIPE_C_EVENT_INTERRUPT;
Imre Deakf8b79e52014-03-04 19:23:07 +02003360 dev_priv->irq_mask &= ~iir_mask;
3361
3362 I915_WRITE(VLV_IIR, iir_mask);
3363 I915_WRITE(VLV_IIR, iir_mask);
Imre Deakf8b79e52014-03-04 19:23:07 +02003364 I915_WRITE(VLV_IER, ~dev_priv->irq_mask);
Ville Syrjälä76e41862014-10-30 19:42:54 +02003365 I915_WRITE(VLV_IMR, dev_priv->irq_mask);
3366 POSTING_READ(VLV_IMR);
Imre Deakf8b79e52014-03-04 19:23:07 +02003367}
3368
3369static void valleyview_display_irqs_uninstall(struct drm_i915_private *dev_priv)
3370{
3371 u32 pipestat_mask;
3372 u32 iir_mask;
Ville Syrjälä120dda42014-10-30 19:42:57 +02003373 enum pipe pipe;
Imre Deakf8b79e52014-03-04 19:23:07 +02003374
3375 iir_mask = I915_DISPLAY_PORT_INTERRUPT |
3376 I915_DISPLAY_PIPE_A_EVENT_INTERRUPT |
Imre Deak6c7fba02014-03-10 19:44:48 +02003377 I915_DISPLAY_PIPE_B_EVENT_INTERRUPT;
Ville Syrjälä120dda42014-10-30 19:42:57 +02003378 if (IS_CHERRYVIEW(dev_priv))
3379 iir_mask |= I915_DISPLAY_PIPE_C_EVENT_INTERRUPT;
Imre Deakf8b79e52014-03-04 19:23:07 +02003380
3381 dev_priv->irq_mask |= iir_mask;
Imre Deakf8b79e52014-03-04 19:23:07 +02003382 I915_WRITE(VLV_IMR, dev_priv->irq_mask);
Ville Syrjälä76e41862014-10-30 19:42:54 +02003383 I915_WRITE(VLV_IER, ~dev_priv->irq_mask);
Imre Deakf8b79e52014-03-04 19:23:07 +02003384 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
Ville Syrjälä120dda42014-10-30 19:42:57 +02003391 i915_disable_pipestat(dev_priv, PIPE_A, PIPE_GMBUS_INTERRUPT_STATUS);
3392 for_each_pipe(dev_priv, pipe)
3393 i915_disable_pipestat(dev_priv, pipe, pipestat_mask);
Imre Deakf8b79e52014-03-04 19:23:07 +02003394
3395 pipestat_mask = PIPESTAT_INT_STATUS_MASK |
3396 PIPE_FIFO_UNDERRUN_STATUS;
Ville Syrjälä120dda42014-10-30 19:42:57 +02003397
3398 for_each_pipe(dev_priv, pipe)
3399 I915_WRITE(PIPESTAT(pipe), pipestat_mask);
Imre Deakf8b79e52014-03-04 19:23:07 +02003400 POSTING_READ(PIPESTAT(PIPE_A));
3401}
3402
3403void valleyview_enable_display_irqs(struct drm_i915_private *dev_priv)
3404{
3405 assert_spin_locked(&dev_priv->irq_lock);
3406
3407 if (dev_priv->display_irqs_enabled)
3408 return;
3409
3410 dev_priv->display_irqs_enabled = true;
3411
Imre Deak950eaba2014-09-08 15:21:09 +03003412 if (intel_irqs_enabled(dev_priv))
Imre Deakf8b79e52014-03-04 19:23:07 +02003413 valleyview_display_irqs_install(dev_priv);
3414}
3415
3416void valleyview_disable_display_irqs(struct drm_i915_private *dev_priv)
3417{
3418 assert_spin_locked(&dev_priv->irq_lock);
3419
3420 if (!dev_priv->display_irqs_enabled)
3421 return;
3422
3423 dev_priv->display_irqs_enabled = false;
3424
Imre Deak950eaba2014-09-08 15:21:09 +03003425 if (intel_irqs_enabled(dev_priv))
Imre Deakf8b79e52014-03-04 19:23:07 +02003426 valleyview_display_irqs_uninstall(dev_priv);
3427}
3428
Ville Syrjälä0e6c9a92014-10-30 19:43:00 +02003429static void vlv_display_irq_postinstall(struct drm_i915_private *dev_priv)
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003430{
Imre Deakf8b79e52014-03-04 19:23:07 +02003431 dev_priv->irq_mask = ~0;
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003432
Daniel Vetter20afbda2012-12-11 14:05:07 +01003433 I915_WRITE(PORT_HOTPLUG_EN, 0);
3434 POSTING_READ(PORT_HOTPLUG_EN);
3435
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003436 I915_WRITE(VLV_IIR, 0xffffffff);
Ville Syrjälä76e41862014-10-30 19:42:54 +02003437 I915_WRITE(VLV_IIR, 0xffffffff);
3438 I915_WRITE(VLV_IER, ~dev_priv->irq_mask);
3439 I915_WRITE(VLV_IMR, dev_priv->irq_mask);
3440 POSTING_READ(VLV_IMR);
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003441
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);
Ville Syrjälä0e6c9a92014-10-30 19:43:00 +02003448}
3449
3450static int valleyview_irq_postinstall(struct drm_device *dev)
3451{
3452 struct drm_i915_private *dev_priv = dev->dev_private;
3453
3454 vlv_display_irq_postinstall(dev_priv);
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003455
Daniel Vetter0a9a8c92013-07-12 22:43:26 +02003456 gen5_gt_irq_postinstall(dev);
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003457
3458 /* ack & enable invalid PTE error interrupts */
3459#if 0 /* FIXME: add support to irq handler for checking these bits */
3460 I915_WRITE(DPINVGTT, DPINVGTT_STATUS_MASK);
3461 I915_WRITE(DPINVGTT, DPINVGTT_EN_MASK);
3462#endif
3463
3464 I915_WRITE(VLV_MASTER_IER, MASTER_INTERRUPT_ENABLE);
Daniel Vetter20afbda2012-12-11 14:05:07 +01003465
3466 return 0;
3467}
3468
Ben Widawskyabd58f02013-11-02 21:07:09 -07003469static void gen8_gt_irq_postinstall(struct drm_i915_private *dev_priv)
3470{
Ben Widawskyabd58f02013-11-02 21:07:09 -07003471 /* These are interrupts we'll toggle with the ring mask register */
3472 uint32_t gt_interrupts[] = {
3473 GT_RENDER_USER_INTERRUPT << GEN8_RCS_IRQ_SHIFT |
Oscar Mateo73d477f2014-07-24 17:04:31 +01003474 GT_CONTEXT_SWITCH_INTERRUPT << GEN8_RCS_IRQ_SHIFT |
Ben Widawskyabd58f02013-11-02 21:07:09 -07003475 GT_RENDER_L3_PARITY_ERROR_INTERRUPT |
Oscar Mateo73d477f2014-07-24 17:04:31 +01003476 GT_RENDER_USER_INTERRUPT << GEN8_BCS_IRQ_SHIFT |
3477 GT_CONTEXT_SWITCH_INTERRUPT << GEN8_BCS_IRQ_SHIFT,
Ben Widawskyabd58f02013-11-02 21:07:09 -07003478 GT_RENDER_USER_INTERRUPT << GEN8_VCS1_IRQ_SHIFT |
Oscar Mateo73d477f2014-07-24 17:04:31 +01003479 GT_CONTEXT_SWITCH_INTERRUPT << GEN8_VCS1_IRQ_SHIFT |
3480 GT_RENDER_USER_INTERRUPT << GEN8_VCS2_IRQ_SHIFT |
3481 GT_CONTEXT_SWITCH_INTERRUPT << GEN8_VCS2_IRQ_SHIFT,
Ben Widawskyabd58f02013-11-02 21:07:09 -07003482 0,
Oscar Mateo73d477f2014-07-24 17:04:31 +01003483 GT_RENDER_USER_INTERRUPT << GEN8_VECS_IRQ_SHIFT |
3484 GT_CONTEXT_SWITCH_INTERRUPT << GEN8_VECS_IRQ_SHIFT
Ben Widawskyabd58f02013-11-02 21:07:09 -07003485 };
3486
Ben Widawsky09610212014-05-15 20:58:08 +03003487 dev_priv->pm_irq_mask = 0xffffffff;
Deepak S9a2d2d82014-08-22 08:32:40 +05303488 GEN8_IRQ_INIT_NDX(GT, 0, ~gt_interrupts[0], gt_interrupts[0]);
3489 GEN8_IRQ_INIT_NDX(GT, 1, ~gt_interrupts[1], gt_interrupts[1]);
3490 GEN8_IRQ_INIT_NDX(GT, 2, dev_priv->pm_irq_mask, dev_priv->pm_rps_events);
3491 GEN8_IRQ_INIT_NDX(GT, 3, ~gt_interrupts[3], gt_interrupts[3]);
Ben Widawskyabd58f02013-11-02 21:07:09 -07003492}
3493
3494static void gen8_de_irq_postinstall(struct drm_i915_private *dev_priv)
3495{
Damien Lespiau770de832014-03-20 20:45:01 +00003496 uint32_t de_pipe_masked = GEN8_PIPE_CDCLK_CRC_DONE;
3497 uint32_t de_pipe_enables;
Ben Widawskyabd58f02013-11-02 21:07:09 -07003498 int pipe;
Jesse Barnes88e04702014-11-13 17:51:48 +00003499 u32 aux_en = GEN8_AUX_CHANNEL_A;
Damien Lespiau770de832014-03-20 20:45:01 +00003500
Jesse Barnes88e04702014-11-13 17:51:48 +00003501 if (IS_GEN9(dev_priv)) {
Damien Lespiau770de832014-03-20 20:45:01 +00003502 de_pipe_masked |= GEN9_PIPE_PLANE1_FLIP_DONE |
3503 GEN9_DE_PIPE_IRQ_FAULT_ERRORS;
Jesse Barnes88e04702014-11-13 17:51:48 +00003504 aux_en |= GEN9_AUX_CHANNEL_B | GEN9_AUX_CHANNEL_C |
3505 GEN9_AUX_CHANNEL_D;
3506 } else
Damien Lespiau770de832014-03-20 20:45:01 +00003507 de_pipe_masked |= GEN8_PIPE_PRIMARY_FLIP_DONE |
3508 GEN8_DE_PIPE_IRQ_FAULT_ERRORS;
3509
3510 de_pipe_enables = de_pipe_masked | GEN8_PIPE_VBLANK |
3511 GEN8_PIPE_FIFO_UNDERRUN;
3512
Daniel Vetter13b3a0a2013-11-07 15:31:52 +01003513 dev_priv->de_irq_mask[PIPE_A] = ~de_pipe_masked;
3514 dev_priv->de_irq_mask[PIPE_B] = ~de_pipe_masked;
3515 dev_priv->de_irq_mask[PIPE_C] = ~de_pipe_masked;
Ben Widawskyabd58f02013-11-02 21:07:09 -07003516
Damien Lespiau055e3932014-08-18 13:49:10 +01003517 for_each_pipe(dev_priv, pipe)
Daniel Vetterf458ebb2014-09-30 10:56:39 +02003518 if (intel_display_power_is_enabled(dev_priv,
Paulo Zanoni813bde42014-07-04 11:50:29 -03003519 POWER_DOMAIN_PIPE(pipe)))
3520 GEN8_IRQ_INIT_NDX(DE_PIPE, pipe,
3521 dev_priv->de_irq_mask[pipe],
3522 de_pipe_enables);
Ben Widawskyabd58f02013-11-02 21:07:09 -07003523
Jesse Barnes88e04702014-11-13 17:51:48 +00003524 GEN5_IRQ_INIT(GEN8_DE_PORT_, ~aux_en, aux_en);
Ben Widawskyabd58f02013-11-02 21:07:09 -07003525}
3526
3527static int gen8_irq_postinstall(struct drm_device *dev)
3528{
3529 struct drm_i915_private *dev_priv = dev->dev_private;
3530
Paulo Zanoni622364b2014-04-01 15:37:22 -03003531 ibx_irq_pre_postinstall(dev);
3532
Ben Widawskyabd58f02013-11-02 21:07:09 -07003533 gen8_gt_irq_postinstall(dev_priv);
3534 gen8_de_irq_postinstall(dev_priv);
3535
3536 ibx_irq_postinstall(dev);
3537
3538 I915_WRITE(GEN8_MASTER_IRQ, DE_MASTER_IRQ_CONTROL);
3539 POSTING_READ(GEN8_MASTER_IRQ);
3540
3541 return 0;
3542}
3543
Ville Syrjälä43f328d2014-04-09 20:40:52 +03003544static int cherryview_irq_postinstall(struct drm_device *dev)
3545{
3546 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjälä43f328d2014-04-09 20:40:52 +03003547
Ville Syrjäläc2b66792014-10-30 19:43:02 +02003548 vlv_display_irq_postinstall(dev_priv);
Ville Syrjälä43f328d2014-04-09 20:40:52 +03003549
3550 gen8_gt_irq_postinstall(dev_priv);
3551
3552 I915_WRITE(GEN8_MASTER_IRQ, MASTER_INTERRUPT_ENABLE);
3553 POSTING_READ(GEN8_MASTER_IRQ);
3554
3555 return 0;
3556}
3557
Ben Widawskyabd58f02013-11-02 21:07:09 -07003558static void gen8_irq_uninstall(struct drm_device *dev)
3559{
3560 struct drm_i915_private *dev_priv = dev->dev_private;
Ben Widawskyabd58f02013-11-02 21:07:09 -07003561
3562 if (!dev_priv)
3563 return;
3564
Paulo Zanoni823f6b32014-04-01 15:37:26 -03003565 gen8_irq_reset(dev);
Ben Widawskyabd58f02013-11-02 21:07:09 -07003566}
3567
Ville Syrjälä8ea0be42014-10-30 19:42:59 +02003568static void vlv_display_irq_uninstall(struct drm_i915_private *dev_priv)
3569{
3570 /* Interrupt setup is already guaranteed to be single-threaded, this is
3571 * just to make the assert_spin_locked check happy. */
3572 spin_lock_irq(&dev_priv->irq_lock);
3573 if (dev_priv->display_irqs_enabled)
3574 valleyview_display_irqs_uninstall(dev_priv);
3575 spin_unlock_irq(&dev_priv->irq_lock);
3576
3577 vlv_display_irq_reset(dev_priv);
3578
3579 dev_priv->irq_mask = 0;
3580}
3581
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003582static void valleyview_irq_uninstall(struct drm_device *dev)
3583{
Jani Nikula2d1013d2014-03-31 14:27:17 +03003584 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003585
3586 if (!dev_priv)
3587 return;
3588
Imre Deak843d0e72014-04-14 20:24:23 +03003589 I915_WRITE(VLV_MASTER_IER, 0);
3590
Ville Syrjälä893fce82014-10-30 19:42:56 +02003591 gen5_gt_irq_reset(dev);
3592
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003593 I915_WRITE(HWSTAM, 0xffffffff);
Imre Deakf8b79e52014-03-04 19:23:07 +02003594
Ville Syrjälä8ea0be42014-10-30 19:42:59 +02003595 vlv_display_irq_uninstall(dev_priv);
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003596}
3597
Ville Syrjälä43f328d2014-04-09 20:40:52 +03003598static void cherryview_irq_uninstall(struct drm_device *dev)
3599{
3600 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjälä43f328d2014-04-09 20:40:52 +03003601
3602 if (!dev_priv)
3603 return;
3604
3605 I915_WRITE(GEN8_MASTER_IRQ, 0);
3606 POSTING_READ(GEN8_MASTER_IRQ);
3607
Ville Syrjäläa2c30fb2014-10-30 19:42:52 +02003608 gen8_gt_irq_reset(dev_priv);
Ville Syrjälä43f328d2014-04-09 20:40:52 +03003609
Ville Syrjäläa2c30fb2014-10-30 19:42:52 +02003610 GEN5_IRQ_RESET(GEN8_PCU_);
Ville Syrjälä43f328d2014-04-09 20:40:52 +03003611
Ville Syrjäläc2b66792014-10-30 19:43:02 +02003612 vlv_display_irq_uninstall(dev_priv);
Ville Syrjälä43f328d2014-04-09 20:40:52 +03003613}
3614
Jesse Barnesf71d4af2011-06-28 13:00:41 -07003615static void ironlake_irq_uninstall(struct drm_device *dev)
Zhenyu Wang036a4a72009-06-08 14:40:19 +08003616{
Jani Nikula2d1013d2014-03-31 14:27:17 +03003617 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes46979952011-04-07 13:53:55 -07003618
3619 if (!dev_priv)
3620 return;
3621
Paulo Zanonibe30b292014-04-01 15:37:25 -03003622 ironlake_irq_reset(dev);
Zhenyu Wang036a4a72009-06-08 14:40:19 +08003623}
3624
Chris Wilsonc2798b12012-04-22 21:13:57 +01003625static void i8xx_irq_preinstall(struct drm_device * dev)
3626{
Jani Nikula2d1013d2014-03-31 14:27:17 +03003627 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsonc2798b12012-04-22 21:13:57 +01003628 int pipe;
3629
Damien Lespiau055e3932014-08-18 13:49:10 +01003630 for_each_pipe(dev_priv, pipe)
Chris Wilsonc2798b12012-04-22 21:13:57 +01003631 I915_WRITE(PIPESTAT(pipe), 0);
3632 I915_WRITE16(IMR, 0xffff);
3633 I915_WRITE16(IER, 0x0);
3634 POSTING_READ16(IER);
3635}
3636
3637static int i8xx_irq_postinstall(struct drm_device *dev)
3638{
Jani Nikula2d1013d2014-03-31 14:27:17 +03003639 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsonc2798b12012-04-22 21:13:57 +01003640
Chris Wilsonc2798b12012-04-22 21:13:57 +01003641 I915_WRITE16(EMR,
3642 ~(I915_ERROR_PAGE_TABLE | I915_ERROR_MEMORY_REFRESH));
3643
3644 /* Unmask the interrupts that we always want on. */
3645 dev_priv->irq_mask =
3646 ~(I915_DISPLAY_PIPE_A_EVENT_INTERRUPT |
3647 I915_DISPLAY_PIPE_B_EVENT_INTERRUPT |
3648 I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT |
3649 I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT |
3650 I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT);
3651 I915_WRITE16(IMR, dev_priv->irq_mask);
3652
3653 I915_WRITE16(IER,
3654 I915_DISPLAY_PIPE_A_EVENT_INTERRUPT |
3655 I915_DISPLAY_PIPE_B_EVENT_INTERRUPT |
3656 I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT |
3657 I915_USER_INTERRUPT);
3658 POSTING_READ16(IER);
3659
Daniel Vetter379ef822013-10-16 22:55:56 +02003660 /* Interrupt setup is already guaranteed to be single-threaded, this is
3661 * just to make the assert_spin_locked check happy. */
Daniel Vetterd6207432014-09-15 14:55:27 +02003662 spin_lock_irq(&dev_priv->irq_lock);
Imre Deak755e9012014-02-10 18:42:47 +02003663 i915_enable_pipestat(dev_priv, PIPE_A, PIPE_CRC_DONE_INTERRUPT_STATUS);
3664 i915_enable_pipestat(dev_priv, PIPE_B, PIPE_CRC_DONE_INTERRUPT_STATUS);
Daniel Vetterd6207432014-09-15 14:55:27 +02003665 spin_unlock_irq(&dev_priv->irq_lock);
Daniel Vetter379ef822013-10-16 22:55:56 +02003666
Chris Wilsonc2798b12012-04-22 21:13:57 +01003667 return 0;
3668}
3669
Ville Syrjälä90a72f82013-02-19 23:16:44 +02003670/*
3671 * Returns true when a page flip has completed.
3672 */
3673static bool i8xx_handle_vblank(struct drm_device *dev,
Ville Syrjälä1f1c2e22013-11-28 17:30:01 +02003674 int plane, int pipe, u32 iir)
Ville Syrjälä90a72f82013-02-19 23:16:44 +02003675{
Jani Nikula2d1013d2014-03-31 14:27:17 +03003676 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjälä1f1c2e22013-11-28 17:30:01 +02003677 u16 flip_pending = DISPLAY_PLANE_FLIP_PENDING(plane);
Ville Syrjälä90a72f82013-02-19 23:16:44 +02003678
Ville Syrjälä8d7849d2014-04-29 13:35:46 +03003679 if (!intel_pipe_handle_vblank(dev, pipe))
Ville Syrjälä90a72f82013-02-19 23:16:44 +02003680 return false;
3681
3682 if ((iir & flip_pending) == 0)
Chris Wilsond6bbafa2014-09-05 07:13:24 +01003683 goto check_page_flip;
Ville Syrjälä90a72f82013-02-19 23:16:44 +02003684
Ville Syrjälä1f1c2e22013-11-28 17:30:01 +02003685 intel_prepare_page_flip(dev, plane);
Ville Syrjälä90a72f82013-02-19 23:16:44 +02003686
3687 /* We detect FlipDone by looking for the change in PendingFlip from '1'
3688 * to '0' on the following vblank, i.e. IIR has the Pendingflip
3689 * asserted following the MI_DISPLAY_FLIP, but ISR is deasserted, hence
3690 * the flip is completed (no longer pending). Since this doesn't raise
3691 * an interrupt per se, we watch for the change at vblank.
3692 */
3693 if (I915_READ16(ISR) & flip_pending)
Chris Wilsond6bbafa2014-09-05 07:13:24 +01003694 goto check_page_flip;
Ville Syrjälä90a72f82013-02-19 23:16:44 +02003695
3696 intel_finish_page_flip(dev, pipe);
Ville Syrjälä90a72f82013-02-19 23:16:44 +02003697 return true;
Chris Wilsond6bbafa2014-09-05 07:13:24 +01003698
3699check_page_flip:
3700 intel_check_page_flip(dev, pipe);
3701 return false;
Ville Syrjälä90a72f82013-02-19 23:16:44 +02003702}
3703
Daniel Vetterff1f5252012-10-02 15:10:55 +02003704static irqreturn_t i8xx_irq_handler(int irq, void *arg)
Chris Wilsonc2798b12012-04-22 21:13:57 +01003705{
Daniel Vetter45a83f82014-05-12 19:17:55 +02003706 struct drm_device *dev = arg;
Jani Nikula2d1013d2014-03-31 14:27:17 +03003707 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsonc2798b12012-04-22 21:13:57 +01003708 u16 iir, new_iir;
3709 u32 pipe_stats[2];
Chris Wilsonc2798b12012-04-22 21:13:57 +01003710 int pipe;
3711 u16 flip_mask =
3712 I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT |
3713 I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT;
3714
Chris Wilsonc2798b12012-04-22 21:13:57 +01003715 iir = I915_READ16(IIR);
3716 if (iir == 0)
3717 return IRQ_NONE;
3718
3719 while (iir & ~flip_mask) {
3720 /* Can't rely on pipestat interrupt bit in iir as it might
3721 * have been cleared after the pipestat interrupt was received.
3722 * It doesn't set the bit in iir again, but it still produces
3723 * interrupts (for non-MSI).
3724 */
Daniel Vetter222c7f52014-09-15 14:55:28 +02003725 spin_lock(&dev_priv->irq_lock);
Chris Wilsonc2798b12012-04-22 21:13:57 +01003726 if (iir & I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT)
Mika Kuoppala58174462014-02-25 17:11:26 +02003727 i915_handle_error(dev, false,
3728 "Command parser error, iir 0x%08x",
3729 iir);
Chris Wilsonc2798b12012-04-22 21:13:57 +01003730
Damien Lespiau055e3932014-08-18 13:49:10 +01003731 for_each_pipe(dev_priv, pipe) {
Chris Wilsonc2798b12012-04-22 21:13:57 +01003732 int reg = PIPESTAT(pipe);
3733 pipe_stats[pipe] = I915_READ(reg);
3734
3735 /*
3736 * Clear the PIPE*STAT regs before the IIR
3737 */
Ville Syrjälä2d9d2b02014-01-17 11:44:31 +02003738 if (pipe_stats[pipe] & 0x8000ffff)
Chris Wilsonc2798b12012-04-22 21:13:57 +01003739 I915_WRITE(reg, pipe_stats[pipe]);
Chris Wilsonc2798b12012-04-22 21:13:57 +01003740 }
Daniel Vetter222c7f52014-09-15 14:55:28 +02003741 spin_unlock(&dev_priv->irq_lock);
Chris Wilsonc2798b12012-04-22 21:13:57 +01003742
3743 I915_WRITE16(IIR, iir & ~flip_mask);
3744 new_iir = I915_READ16(IIR); /* Flush posted writes */
3745
Daniel Vetterd05c6172012-04-26 23:28:09 +02003746 i915_update_dri1_breadcrumb(dev);
Chris Wilsonc2798b12012-04-22 21:13:57 +01003747
3748 if (iir & I915_USER_INTERRUPT)
3749 notify_ring(dev, &dev_priv->ring[RCS]);
3750
Damien Lespiau055e3932014-08-18 13:49:10 +01003751 for_each_pipe(dev_priv, pipe) {
Ville Syrjälä1f1c2e22013-11-28 17:30:01 +02003752 int plane = pipe;
Daniel Vetter3a77c4c2014-01-10 08:50:12 +01003753 if (HAS_FBC(dev))
Ville Syrjälä1f1c2e22013-11-28 17:30:01 +02003754 plane = !plane;
3755
Daniel Vetter4356d582013-10-16 22:55:55 +02003756 if (pipe_stats[pipe] & PIPE_VBLANK_INTERRUPT_STATUS &&
Ville Syrjälä1f1c2e22013-11-28 17:30:01 +02003757 i8xx_handle_vblank(dev, plane, pipe, iir))
3758 flip_mask &= ~DISPLAY_PLANE_FLIP_PENDING(plane);
Chris Wilsonc2798b12012-04-22 21:13:57 +01003759
Daniel Vetter4356d582013-10-16 22:55:55 +02003760 if (pipe_stats[pipe] & PIPE_CRC_DONE_INTERRUPT_STATUS)
Daniel Vetter277de952013-10-18 16:37:07 +02003761 i9xx_pipe_crc_irq_handler(dev, pipe);
Ville Syrjälä2d9d2b02014-01-17 11:44:31 +02003762
Daniel Vetter1f7247c2014-09-30 10:56:48 +02003763 if (pipe_stats[pipe] & PIPE_FIFO_UNDERRUN_STATUS)
3764 intel_cpu_fifo_underrun_irq_handler(dev_priv,
3765 pipe);
Daniel Vetter4356d582013-10-16 22:55:55 +02003766 }
Chris Wilsonc2798b12012-04-22 21:13:57 +01003767
3768 iir = new_iir;
3769 }
3770
3771 return IRQ_HANDLED;
3772}
3773
3774static void i8xx_irq_uninstall(struct drm_device * dev)
3775{
Jani Nikula2d1013d2014-03-31 14:27:17 +03003776 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsonc2798b12012-04-22 21:13:57 +01003777 int pipe;
3778
Damien Lespiau055e3932014-08-18 13:49:10 +01003779 for_each_pipe(dev_priv, pipe) {
Chris Wilsonc2798b12012-04-22 21:13:57 +01003780 /* Clear enable bits; then clear status bits */
3781 I915_WRITE(PIPESTAT(pipe), 0);
3782 I915_WRITE(PIPESTAT(pipe), I915_READ(PIPESTAT(pipe)));
3783 }
3784 I915_WRITE16(IMR, 0xffff);
3785 I915_WRITE16(IER, 0x0);
3786 I915_WRITE16(IIR, I915_READ16(IIR));
3787}
3788
Chris Wilsona266c7d2012-04-24 22:59:44 +01003789static void i915_irq_preinstall(struct drm_device * dev)
3790{
Jani Nikula2d1013d2014-03-31 14:27:17 +03003791 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsona266c7d2012-04-24 22:59:44 +01003792 int pipe;
3793
Chris Wilsona266c7d2012-04-24 22:59:44 +01003794 if (I915_HAS_HOTPLUG(dev)) {
3795 I915_WRITE(PORT_HOTPLUG_EN, 0);
3796 I915_WRITE(PORT_HOTPLUG_STAT, I915_READ(PORT_HOTPLUG_STAT));
3797 }
3798
Chris Wilson00d98eb2012-04-24 22:59:48 +01003799 I915_WRITE16(HWSTAM, 0xeffe);
Damien Lespiau055e3932014-08-18 13:49:10 +01003800 for_each_pipe(dev_priv, pipe)
Chris Wilsona266c7d2012-04-24 22:59:44 +01003801 I915_WRITE(PIPESTAT(pipe), 0);
3802 I915_WRITE(IMR, 0xffffffff);
3803 I915_WRITE(IER, 0x0);
3804 POSTING_READ(IER);
3805}
3806
3807static int i915_irq_postinstall(struct drm_device *dev)
3808{
Jani Nikula2d1013d2014-03-31 14:27:17 +03003809 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson38bde182012-04-24 22:59:50 +01003810 u32 enable_mask;
Chris Wilsona266c7d2012-04-24 22:59:44 +01003811
Chris Wilson38bde182012-04-24 22:59:50 +01003812 I915_WRITE(EMR, ~(I915_ERROR_PAGE_TABLE | I915_ERROR_MEMORY_REFRESH));
3813
3814 /* Unmask the interrupts that we always want on. */
3815 dev_priv->irq_mask =
3816 ~(I915_ASLE_INTERRUPT |
3817 I915_DISPLAY_PIPE_A_EVENT_INTERRUPT |
3818 I915_DISPLAY_PIPE_B_EVENT_INTERRUPT |
3819 I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT |
3820 I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT |
3821 I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT);
3822
3823 enable_mask =
3824 I915_ASLE_INTERRUPT |
3825 I915_DISPLAY_PIPE_A_EVENT_INTERRUPT |
3826 I915_DISPLAY_PIPE_B_EVENT_INTERRUPT |
3827 I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT |
3828 I915_USER_INTERRUPT;
3829
Chris Wilsona266c7d2012-04-24 22:59:44 +01003830 if (I915_HAS_HOTPLUG(dev)) {
Daniel Vetter20afbda2012-12-11 14:05:07 +01003831 I915_WRITE(PORT_HOTPLUG_EN, 0);
3832 POSTING_READ(PORT_HOTPLUG_EN);
3833
Chris Wilsona266c7d2012-04-24 22:59:44 +01003834 /* Enable in IER... */
3835 enable_mask |= I915_DISPLAY_PORT_INTERRUPT;
3836 /* and unmask in IMR */
3837 dev_priv->irq_mask &= ~I915_DISPLAY_PORT_INTERRUPT;
3838 }
3839
Chris Wilsona266c7d2012-04-24 22:59:44 +01003840 I915_WRITE(IMR, dev_priv->irq_mask);
3841 I915_WRITE(IER, enable_mask);
3842 POSTING_READ(IER);
3843
Jani Nikulaf49e38d2013-04-29 13:02:54 +03003844 i915_enable_asle_pipestat(dev);
Daniel Vetter20afbda2012-12-11 14:05:07 +01003845
Daniel Vetter379ef822013-10-16 22:55:56 +02003846 /* Interrupt setup is already guaranteed to be single-threaded, this is
3847 * just to make the assert_spin_locked check happy. */
Daniel Vetterd6207432014-09-15 14:55:27 +02003848 spin_lock_irq(&dev_priv->irq_lock);
Imre Deak755e9012014-02-10 18:42:47 +02003849 i915_enable_pipestat(dev_priv, PIPE_A, PIPE_CRC_DONE_INTERRUPT_STATUS);
3850 i915_enable_pipestat(dev_priv, PIPE_B, PIPE_CRC_DONE_INTERRUPT_STATUS);
Daniel Vetterd6207432014-09-15 14:55:27 +02003851 spin_unlock_irq(&dev_priv->irq_lock);
Daniel Vetter379ef822013-10-16 22:55:56 +02003852
Daniel Vetter20afbda2012-12-11 14:05:07 +01003853 return 0;
3854}
3855
Ville Syrjälä90a72f82013-02-19 23:16:44 +02003856/*
3857 * Returns true when a page flip has completed.
3858 */
3859static bool i915_handle_vblank(struct drm_device *dev,
3860 int plane, int pipe, u32 iir)
3861{
Jani Nikula2d1013d2014-03-31 14:27:17 +03003862 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjälä90a72f82013-02-19 23:16:44 +02003863 u32 flip_pending = DISPLAY_PLANE_FLIP_PENDING(plane);
3864
Ville Syrjälä8d7849d2014-04-29 13:35:46 +03003865 if (!intel_pipe_handle_vblank(dev, pipe))
Ville Syrjälä90a72f82013-02-19 23:16:44 +02003866 return false;
3867
3868 if ((iir & flip_pending) == 0)
Chris Wilsond6bbafa2014-09-05 07:13:24 +01003869 goto check_page_flip;
Ville Syrjälä90a72f82013-02-19 23:16:44 +02003870
3871 intel_prepare_page_flip(dev, plane);
3872
3873 /* We detect FlipDone by looking for the change in PendingFlip from '1'
3874 * to '0' on the following vblank, i.e. IIR has the Pendingflip
3875 * asserted following the MI_DISPLAY_FLIP, but ISR is deasserted, hence
3876 * the flip is completed (no longer pending). Since this doesn't raise
3877 * an interrupt per se, we watch for the change at vblank.
3878 */
3879 if (I915_READ(ISR) & flip_pending)
Chris Wilsond6bbafa2014-09-05 07:13:24 +01003880 goto check_page_flip;
Ville Syrjälä90a72f82013-02-19 23:16:44 +02003881
3882 intel_finish_page_flip(dev, pipe);
Ville Syrjälä90a72f82013-02-19 23:16:44 +02003883 return true;
Chris Wilsond6bbafa2014-09-05 07:13:24 +01003884
3885check_page_flip:
3886 intel_check_page_flip(dev, pipe);
3887 return false;
Ville Syrjälä90a72f82013-02-19 23:16:44 +02003888}
3889
Daniel Vetterff1f5252012-10-02 15:10:55 +02003890static irqreturn_t i915_irq_handler(int irq, void *arg)
Chris Wilsona266c7d2012-04-24 22:59:44 +01003891{
Daniel Vetter45a83f82014-05-12 19:17:55 +02003892 struct drm_device *dev = arg;
Jani Nikula2d1013d2014-03-31 14:27:17 +03003893 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson8291ee92012-04-24 22:59:47 +01003894 u32 iir, new_iir, pipe_stats[I915_MAX_PIPES];
Chris Wilson38bde182012-04-24 22:59:50 +01003895 u32 flip_mask =
3896 I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT |
3897 I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT;
Chris Wilson38bde182012-04-24 22:59:50 +01003898 int pipe, ret = IRQ_NONE;
Chris Wilsona266c7d2012-04-24 22:59:44 +01003899
Chris Wilsona266c7d2012-04-24 22:59:44 +01003900 iir = I915_READ(IIR);
Chris Wilson38bde182012-04-24 22:59:50 +01003901 do {
3902 bool irq_received = (iir & ~flip_mask) != 0;
Chris Wilson8291ee92012-04-24 22:59:47 +01003903 bool blc_event = false;
Chris Wilsona266c7d2012-04-24 22:59:44 +01003904
3905 /* Can't rely on pipestat interrupt bit in iir as it might
3906 * have been cleared after the pipestat interrupt was received.
3907 * It doesn't set the bit in iir again, but it still produces
3908 * interrupts (for non-MSI).
3909 */
Daniel Vetter222c7f52014-09-15 14:55:28 +02003910 spin_lock(&dev_priv->irq_lock);
Chris Wilsona266c7d2012-04-24 22:59:44 +01003911 if (iir & I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT)
Mika Kuoppala58174462014-02-25 17:11:26 +02003912 i915_handle_error(dev, false,
3913 "Command parser error, iir 0x%08x",
3914 iir);
Chris Wilsona266c7d2012-04-24 22:59:44 +01003915
Damien Lespiau055e3932014-08-18 13:49:10 +01003916 for_each_pipe(dev_priv, pipe) {
Chris Wilsona266c7d2012-04-24 22:59:44 +01003917 int reg = PIPESTAT(pipe);
3918 pipe_stats[pipe] = I915_READ(reg);
3919
Chris Wilson38bde182012-04-24 22:59:50 +01003920 /* Clear the PIPE*STAT regs before the IIR */
Chris Wilsona266c7d2012-04-24 22:59:44 +01003921 if (pipe_stats[pipe] & 0x8000ffff) {
Chris Wilsona266c7d2012-04-24 22:59:44 +01003922 I915_WRITE(reg, pipe_stats[pipe]);
Chris Wilson38bde182012-04-24 22:59:50 +01003923 irq_received = true;
Chris Wilsona266c7d2012-04-24 22:59:44 +01003924 }
3925 }
Daniel Vetter222c7f52014-09-15 14:55:28 +02003926 spin_unlock(&dev_priv->irq_lock);
Chris Wilsona266c7d2012-04-24 22:59:44 +01003927
3928 if (!irq_received)
3929 break;
3930
Chris Wilsona266c7d2012-04-24 22:59:44 +01003931 /* Consume port. Then clear IIR or we'll miss events */
Ville Syrjälä16c6c562014-04-01 10:54:36 +03003932 if (I915_HAS_HOTPLUG(dev) &&
3933 iir & I915_DISPLAY_PORT_INTERRUPT)
3934 i9xx_hpd_irq_handler(dev);
Chris Wilsona266c7d2012-04-24 22:59:44 +01003935
Chris Wilson38bde182012-04-24 22:59:50 +01003936 I915_WRITE(IIR, iir & ~flip_mask);
Chris Wilsona266c7d2012-04-24 22:59:44 +01003937 new_iir = I915_READ(IIR); /* Flush posted writes */
3938
Chris Wilsona266c7d2012-04-24 22:59:44 +01003939 if (iir & I915_USER_INTERRUPT)
3940 notify_ring(dev, &dev_priv->ring[RCS]);
Chris Wilsona266c7d2012-04-24 22:59:44 +01003941
Damien Lespiau055e3932014-08-18 13:49:10 +01003942 for_each_pipe(dev_priv, pipe) {
Chris Wilson38bde182012-04-24 22:59:50 +01003943 int plane = pipe;
Daniel Vetter3a77c4c2014-01-10 08:50:12 +01003944 if (HAS_FBC(dev))
Chris Wilson38bde182012-04-24 22:59:50 +01003945 plane = !plane;
Ville Syrjälä5e2032d2013-02-19 15:16:38 +02003946
Ville Syrjälä90a72f82013-02-19 23:16:44 +02003947 if (pipe_stats[pipe] & PIPE_VBLANK_INTERRUPT_STATUS &&
3948 i915_handle_vblank(dev, plane, pipe, iir))
3949 flip_mask &= ~DISPLAY_PLANE_FLIP_PENDING(plane);
Chris Wilsona266c7d2012-04-24 22:59:44 +01003950
3951 if (pipe_stats[pipe] & PIPE_LEGACY_BLC_EVENT_STATUS)
3952 blc_event = true;
Daniel Vetter4356d582013-10-16 22:55:55 +02003953
3954 if (pipe_stats[pipe] & PIPE_CRC_DONE_INTERRUPT_STATUS)
Daniel Vetter277de952013-10-18 16:37:07 +02003955 i9xx_pipe_crc_irq_handler(dev, pipe);
Ville Syrjälä2d9d2b02014-01-17 11:44:31 +02003956
Daniel Vetter1f7247c2014-09-30 10:56:48 +02003957 if (pipe_stats[pipe] & PIPE_FIFO_UNDERRUN_STATUS)
3958 intel_cpu_fifo_underrun_irq_handler(dev_priv,
3959 pipe);
Chris Wilsona266c7d2012-04-24 22:59:44 +01003960 }
3961
Chris Wilsona266c7d2012-04-24 22:59:44 +01003962 if (blc_event || (iir & I915_ASLE_INTERRUPT))
3963 intel_opregion_asle_intr(dev);
3964
3965 /* With MSI, interrupts are only generated when iir
3966 * transitions from zero to nonzero. If another bit got
3967 * set while we were handling the existing iir bits, then
3968 * we would never get another interrupt.
3969 *
3970 * This is fine on non-MSI as well, as if we hit this path
3971 * we avoid exiting the interrupt handler only to generate
3972 * another one.
3973 *
3974 * Note that for MSI this could cause a stray interrupt report
3975 * if an interrupt landed in the time between writing IIR and
3976 * the posting read. This should be rare enough to never
3977 * trigger the 99% of 100,000 interrupts test for disabling
3978 * stray interrupts.
3979 */
Chris Wilson38bde182012-04-24 22:59:50 +01003980 ret = IRQ_HANDLED;
Chris Wilsona266c7d2012-04-24 22:59:44 +01003981 iir = new_iir;
Chris Wilson38bde182012-04-24 22:59:50 +01003982 } while (iir & ~flip_mask);
Chris Wilsona266c7d2012-04-24 22:59:44 +01003983
Daniel Vetterd05c6172012-04-26 23:28:09 +02003984 i915_update_dri1_breadcrumb(dev);
Chris Wilson8291ee92012-04-24 22:59:47 +01003985
Chris Wilsona266c7d2012-04-24 22:59:44 +01003986 return ret;
3987}
3988
3989static void i915_irq_uninstall(struct drm_device * dev)
3990{
Jani Nikula2d1013d2014-03-31 14:27:17 +03003991 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsona266c7d2012-04-24 22:59:44 +01003992 int pipe;
3993
Chris Wilsona266c7d2012-04-24 22:59:44 +01003994 if (I915_HAS_HOTPLUG(dev)) {
3995 I915_WRITE(PORT_HOTPLUG_EN, 0);
3996 I915_WRITE(PORT_HOTPLUG_STAT, I915_READ(PORT_HOTPLUG_STAT));
3997 }
3998
Chris Wilson00d98eb2012-04-24 22:59:48 +01003999 I915_WRITE16(HWSTAM, 0xffff);
Damien Lespiau055e3932014-08-18 13:49:10 +01004000 for_each_pipe(dev_priv, pipe) {
Chris Wilson55b39752012-04-24 22:59:49 +01004001 /* Clear enable bits; then clear status bits */
Chris Wilsona266c7d2012-04-24 22:59:44 +01004002 I915_WRITE(PIPESTAT(pipe), 0);
Chris Wilson55b39752012-04-24 22:59:49 +01004003 I915_WRITE(PIPESTAT(pipe), I915_READ(PIPESTAT(pipe)));
4004 }
Chris Wilsona266c7d2012-04-24 22:59:44 +01004005 I915_WRITE(IMR, 0xffffffff);
4006 I915_WRITE(IER, 0x0);
4007
Chris Wilsona266c7d2012-04-24 22:59:44 +01004008 I915_WRITE(IIR, I915_READ(IIR));
4009}
4010
4011static void i965_irq_preinstall(struct drm_device * dev)
4012{
Jani Nikula2d1013d2014-03-31 14:27:17 +03004013 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsona266c7d2012-04-24 22:59:44 +01004014 int pipe;
4015
Chris Wilsonadca4732012-05-11 18:01:31 +01004016 I915_WRITE(PORT_HOTPLUG_EN, 0);
4017 I915_WRITE(PORT_HOTPLUG_STAT, I915_READ(PORT_HOTPLUG_STAT));
Chris Wilsona266c7d2012-04-24 22:59:44 +01004018
4019 I915_WRITE(HWSTAM, 0xeffe);
Damien Lespiau055e3932014-08-18 13:49:10 +01004020 for_each_pipe(dev_priv, pipe)
Chris Wilsona266c7d2012-04-24 22:59:44 +01004021 I915_WRITE(PIPESTAT(pipe), 0);
4022 I915_WRITE(IMR, 0xffffffff);
4023 I915_WRITE(IER, 0x0);
4024 POSTING_READ(IER);
4025}
4026
4027static int i965_irq_postinstall(struct drm_device *dev)
4028{
Jani Nikula2d1013d2014-03-31 14:27:17 +03004029 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsonbbba0a92012-04-24 22:59:51 +01004030 u32 enable_mask;
Chris Wilsona266c7d2012-04-24 22:59:44 +01004031 u32 error_mask;
4032
Chris Wilsona266c7d2012-04-24 22:59:44 +01004033 /* Unmask the interrupts that we always want on. */
Chris Wilsonbbba0a92012-04-24 22:59:51 +01004034 dev_priv->irq_mask = ~(I915_ASLE_INTERRUPT |
Chris Wilsonadca4732012-05-11 18:01:31 +01004035 I915_DISPLAY_PORT_INTERRUPT |
Chris Wilsonbbba0a92012-04-24 22:59:51 +01004036 I915_DISPLAY_PIPE_A_EVENT_INTERRUPT |
4037 I915_DISPLAY_PIPE_B_EVENT_INTERRUPT |
4038 I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT |
4039 I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT |
4040 I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT);
4041
4042 enable_mask = ~dev_priv->irq_mask;
Ville Syrjälä21ad8332013-02-19 15:16:39 +02004043 enable_mask &= ~(I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT |
4044 I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT);
Chris Wilsonbbba0a92012-04-24 22:59:51 +01004045 enable_mask |= I915_USER_INTERRUPT;
4046
4047 if (IS_G4X(dev))
4048 enable_mask |= I915_BSD_USER_INTERRUPT;
Chris Wilsona266c7d2012-04-24 22:59:44 +01004049
Daniel Vetterb79480b2013-06-27 17:52:10 +02004050 /* Interrupt setup is already guaranteed to be single-threaded, this is
4051 * just to make the assert_spin_locked check happy. */
Daniel Vetterd6207432014-09-15 14:55:27 +02004052 spin_lock_irq(&dev_priv->irq_lock);
Imre Deak755e9012014-02-10 18:42:47 +02004053 i915_enable_pipestat(dev_priv, PIPE_A, PIPE_GMBUS_INTERRUPT_STATUS);
4054 i915_enable_pipestat(dev_priv, PIPE_A, PIPE_CRC_DONE_INTERRUPT_STATUS);
4055 i915_enable_pipestat(dev_priv, PIPE_B, PIPE_CRC_DONE_INTERRUPT_STATUS);
Daniel Vetterd6207432014-09-15 14:55:27 +02004056 spin_unlock_irq(&dev_priv->irq_lock);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004057
Chris Wilsona266c7d2012-04-24 22:59:44 +01004058 /*
4059 * Enable some error detection, note the instruction error mask
4060 * bit is reserved, so we leave it masked.
4061 */
4062 if (IS_G4X(dev)) {
4063 error_mask = ~(GM45_ERROR_PAGE_TABLE |
4064 GM45_ERROR_MEM_PRIV |
4065 GM45_ERROR_CP_PRIV |
4066 I915_ERROR_MEMORY_REFRESH);
4067 } else {
4068 error_mask = ~(I915_ERROR_PAGE_TABLE |
4069 I915_ERROR_MEMORY_REFRESH);
4070 }
4071 I915_WRITE(EMR, error_mask);
4072
4073 I915_WRITE(IMR, dev_priv->irq_mask);
4074 I915_WRITE(IER, enable_mask);
4075 POSTING_READ(IER);
4076
Daniel Vetter20afbda2012-12-11 14:05:07 +01004077 I915_WRITE(PORT_HOTPLUG_EN, 0);
4078 POSTING_READ(PORT_HOTPLUG_EN);
4079
Jani Nikulaf49e38d2013-04-29 13:02:54 +03004080 i915_enable_asle_pipestat(dev);
Daniel Vetter20afbda2012-12-11 14:05:07 +01004081
4082 return 0;
4083}
4084
Egbert Eichbac56d52013-02-25 12:06:51 -05004085static void i915_hpd_irq_setup(struct drm_device *dev)
Daniel Vetter20afbda2012-12-11 14:05:07 +01004086{
Jani Nikula2d1013d2014-03-31 14:27:17 +03004087 struct drm_i915_private *dev_priv = dev->dev_private;
Egbert Eichcd569ae2013-04-16 13:36:57 +02004088 struct intel_encoder *intel_encoder;
Daniel Vetter20afbda2012-12-11 14:05:07 +01004089 u32 hotplug_en;
4090
Daniel Vetterb5ea2d52013-06-27 17:52:15 +02004091 assert_spin_locked(&dev_priv->irq_lock);
4092
Egbert Eichbac56d52013-02-25 12:06:51 -05004093 if (I915_HAS_HOTPLUG(dev)) {
4094 hotplug_en = I915_READ(PORT_HOTPLUG_EN);
4095 hotplug_en &= ~HOTPLUG_INT_EN_MASK;
4096 /* Note HDMI and DP share hotplug bits */
Egbert Eiche5868a32013-02-28 04:17:12 -05004097 /* enable bits are the same for all generations */
Damien Lespiaub2784e12014-08-05 11:29:37 +01004098 for_each_intel_encoder(dev, intel_encoder)
Egbert Eichcd569ae2013-04-16 13:36:57 +02004099 if (dev_priv->hpd_stats[intel_encoder->hpd_pin].hpd_mark == HPD_ENABLED)
4100 hotplug_en |= hpd_mask_i915[intel_encoder->hpd_pin];
Egbert Eichbac56d52013-02-25 12:06:51 -05004101 /* Programming the CRT detection parameters tends
4102 to generate a spurious hotplug event about three
4103 seconds later. So just do it once.
4104 */
4105 if (IS_G4X(dev))
4106 hotplug_en |= CRT_HOTPLUG_ACTIVATION_PERIOD_64;
Daniel Vetter85fc95b2013-03-27 15:47:11 +01004107 hotplug_en &= ~CRT_HOTPLUG_VOLTAGE_COMPARE_MASK;
Egbert Eichbac56d52013-02-25 12:06:51 -05004108 hotplug_en |= CRT_HOTPLUG_VOLTAGE_COMPARE_50;
Chris Wilsona266c7d2012-04-24 22:59:44 +01004109
Egbert Eichbac56d52013-02-25 12:06:51 -05004110 /* Ignore TV since it's buggy */
4111 I915_WRITE(PORT_HOTPLUG_EN, hotplug_en);
4112 }
Chris Wilsona266c7d2012-04-24 22:59:44 +01004113}
4114
Daniel Vetterff1f5252012-10-02 15:10:55 +02004115static irqreturn_t i965_irq_handler(int irq, void *arg)
Chris Wilsona266c7d2012-04-24 22:59:44 +01004116{
Daniel Vetter45a83f82014-05-12 19:17:55 +02004117 struct drm_device *dev = arg;
Jani Nikula2d1013d2014-03-31 14:27:17 +03004118 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsona266c7d2012-04-24 22:59:44 +01004119 u32 iir, new_iir;
4120 u32 pipe_stats[I915_MAX_PIPES];
Chris Wilsona266c7d2012-04-24 22:59:44 +01004121 int ret = IRQ_NONE, pipe;
Ville Syrjälä21ad8332013-02-19 15:16:39 +02004122 u32 flip_mask =
4123 I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT |
4124 I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT;
Chris Wilsona266c7d2012-04-24 22:59:44 +01004125
Chris Wilsona266c7d2012-04-24 22:59:44 +01004126 iir = I915_READ(IIR);
4127
Chris Wilsona266c7d2012-04-24 22:59:44 +01004128 for (;;) {
Ville Syrjälä501e01d2014-01-17 11:35:15 +02004129 bool irq_received = (iir & ~flip_mask) != 0;
Chris Wilson2c8ba292012-04-24 22:59:46 +01004130 bool blc_event = false;
4131
Chris Wilsona266c7d2012-04-24 22:59:44 +01004132 /* Can't rely on pipestat interrupt bit in iir as it might
4133 * have been cleared after the pipestat interrupt was received.
4134 * It doesn't set the bit in iir again, but it still produces
4135 * interrupts (for non-MSI).
4136 */
Daniel Vetter222c7f52014-09-15 14:55:28 +02004137 spin_lock(&dev_priv->irq_lock);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004138 if (iir & I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT)
Mika Kuoppala58174462014-02-25 17:11:26 +02004139 i915_handle_error(dev, false,
4140 "Command parser error, iir 0x%08x",
4141 iir);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004142
Damien Lespiau055e3932014-08-18 13:49:10 +01004143 for_each_pipe(dev_priv, pipe) {
Chris Wilsona266c7d2012-04-24 22:59:44 +01004144 int reg = PIPESTAT(pipe);
4145 pipe_stats[pipe] = I915_READ(reg);
4146
4147 /*
4148 * Clear the PIPE*STAT regs before the IIR
4149 */
4150 if (pipe_stats[pipe] & 0x8000ffff) {
Chris Wilsona266c7d2012-04-24 22:59:44 +01004151 I915_WRITE(reg, pipe_stats[pipe]);
Ville Syrjälä501e01d2014-01-17 11:35:15 +02004152 irq_received = true;
Chris Wilsona266c7d2012-04-24 22:59:44 +01004153 }
4154 }
Daniel Vetter222c7f52014-09-15 14:55:28 +02004155 spin_unlock(&dev_priv->irq_lock);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004156
4157 if (!irq_received)
4158 break;
4159
4160 ret = IRQ_HANDLED;
4161
4162 /* Consume port. Then clear IIR or we'll miss events */
Ville Syrjälä16c6c562014-04-01 10:54:36 +03004163 if (iir & I915_DISPLAY_PORT_INTERRUPT)
4164 i9xx_hpd_irq_handler(dev);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004165
Ville Syrjälä21ad8332013-02-19 15:16:39 +02004166 I915_WRITE(IIR, iir & ~flip_mask);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004167 new_iir = I915_READ(IIR); /* Flush posted writes */
4168
Chris Wilsona266c7d2012-04-24 22:59:44 +01004169 if (iir & I915_USER_INTERRUPT)
4170 notify_ring(dev, &dev_priv->ring[RCS]);
4171 if (iir & I915_BSD_USER_INTERRUPT)
4172 notify_ring(dev, &dev_priv->ring[VCS]);
4173
Damien Lespiau055e3932014-08-18 13:49:10 +01004174 for_each_pipe(dev_priv, pipe) {
Chris Wilson2c8ba292012-04-24 22:59:46 +01004175 if (pipe_stats[pipe] & PIPE_START_VBLANK_INTERRUPT_STATUS &&
Ville Syrjälä90a72f82013-02-19 23:16:44 +02004176 i915_handle_vblank(dev, pipe, pipe, iir))
4177 flip_mask &= ~DISPLAY_PLANE_FLIP_PENDING(pipe);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004178
4179 if (pipe_stats[pipe] & PIPE_LEGACY_BLC_EVENT_STATUS)
4180 blc_event = true;
Daniel Vetter4356d582013-10-16 22:55:55 +02004181
4182 if (pipe_stats[pipe] & PIPE_CRC_DONE_INTERRUPT_STATUS)
Daniel Vetter277de952013-10-18 16:37:07 +02004183 i9xx_pipe_crc_irq_handler(dev, pipe);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004184
Daniel Vetter1f7247c2014-09-30 10:56:48 +02004185 if (pipe_stats[pipe] & PIPE_FIFO_UNDERRUN_STATUS)
4186 intel_cpu_fifo_underrun_irq_handler(dev_priv, pipe);
Ville Syrjälä2d9d2b02014-01-17 11:44:31 +02004187 }
Chris Wilsona266c7d2012-04-24 22:59:44 +01004188
4189 if (blc_event || (iir & I915_ASLE_INTERRUPT))
4190 intel_opregion_asle_intr(dev);
4191
Daniel Vetter515ac2b2012-12-01 13:53:44 +01004192 if (pipe_stats[0] & PIPE_GMBUS_INTERRUPT_STATUS)
4193 gmbus_irq_handler(dev);
4194
Chris Wilsona266c7d2012-04-24 22:59:44 +01004195 /* With MSI, interrupts are only generated when iir
4196 * transitions from zero to nonzero. If another bit got
4197 * set while we were handling the existing iir bits, then
4198 * we would never get another interrupt.
4199 *
4200 * This is fine on non-MSI as well, as if we hit this path
4201 * we avoid exiting the interrupt handler only to generate
4202 * another one.
4203 *
4204 * Note that for MSI this could cause a stray interrupt report
4205 * if an interrupt landed in the time between writing IIR and
4206 * the posting read. This should be rare enough to never
4207 * trigger the 99% of 100,000 interrupts test for disabling
4208 * stray interrupts.
4209 */
4210 iir = new_iir;
4211 }
4212
Daniel Vetterd05c6172012-04-26 23:28:09 +02004213 i915_update_dri1_breadcrumb(dev);
Chris Wilson2c8ba292012-04-24 22:59:46 +01004214
Chris Wilsona266c7d2012-04-24 22:59:44 +01004215 return ret;
4216}
4217
4218static void i965_irq_uninstall(struct drm_device * dev)
4219{
Jani Nikula2d1013d2014-03-31 14:27:17 +03004220 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsona266c7d2012-04-24 22:59:44 +01004221 int pipe;
4222
4223 if (!dev_priv)
4224 return;
4225
Chris Wilsonadca4732012-05-11 18:01:31 +01004226 I915_WRITE(PORT_HOTPLUG_EN, 0);
4227 I915_WRITE(PORT_HOTPLUG_STAT, I915_READ(PORT_HOTPLUG_STAT));
Chris Wilsona266c7d2012-04-24 22:59:44 +01004228
4229 I915_WRITE(HWSTAM, 0xffffffff);
Damien Lespiau055e3932014-08-18 13:49:10 +01004230 for_each_pipe(dev_priv, pipe)
Chris Wilsona266c7d2012-04-24 22:59:44 +01004231 I915_WRITE(PIPESTAT(pipe), 0);
4232 I915_WRITE(IMR, 0xffffffff);
4233 I915_WRITE(IER, 0x0);
4234
Damien Lespiau055e3932014-08-18 13:49:10 +01004235 for_each_pipe(dev_priv, pipe)
Chris Wilsona266c7d2012-04-24 22:59:44 +01004236 I915_WRITE(PIPESTAT(pipe),
4237 I915_READ(PIPESTAT(pipe)) & 0x8000ffff);
4238 I915_WRITE(IIR, I915_READ(IIR));
4239}
4240
Daniel Vetter4cb21832014-09-15 14:55:26 +02004241static void intel_hpd_irq_reenable_work(struct work_struct *work)
Egbert Eichac4c16c2013-04-16 13:36:58 +02004242{
Imre Deak63237512014-08-18 15:37:02 +03004243 struct drm_i915_private *dev_priv =
4244 container_of(work, typeof(*dev_priv),
4245 hotplug_reenable_work.work);
Egbert Eichac4c16c2013-04-16 13:36:58 +02004246 struct drm_device *dev = dev_priv->dev;
4247 struct drm_mode_config *mode_config = &dev->mode_config;
Egbert Eichac4c16c2013-04-16 13:36:58 +02004248 int i;
4249
Imre Deak63237512014-08-18 15:37:02 +03004250 intel_runtime_pm_get(dev_priv);
4251
Daniel Vetter4cb21832014-09-15 14:55:26 +02004252 spin_lock_irq(&dev_priv->irq_lock);
Egbert Eichac4c16c2013-04-16 13:36:58 +02004253 for (i = (HPD_NONE + 1); i < HPD_NUM_PINS; i++) {
4254 struct drm_connector *connector;
4255
4256 if (dev_priv->hpd_stats[i].hpd_mark != HPD_DISABLED)
4257 continue;
4258
4259 dev_priv->hpd_stats[i].hpd_mark = HPD_ENABLED;
4260
4261 list_for_each_entry(connector, &mode_config->connector_list, head) {
4262 struct intel_connector *intel_connector = to_intel_connector(connector);
4263
4264 if (intel_connector->encoder->hpd_pin == i) {
4265 if (connector->polled != intel_connector->polled)
4266 DRM_DEBUG_DRIVER("Reenabling HPD on connector %s\n",
Jani Nikulac23cc412014-06-03 14:56:17 +03004267 connector->name);
Egbert Eichac4c16c2013-04-16 13:36:58 +02004268 connector->polled = intel_connector->polled;
4269 if (!connector->polled)
4270 connector->polled = DRM_CONNECTOR_POLL_HPD;
4271 }
4272 }
4273 }
4274 if (dev_priv->display.hpd_irq_setup)
4275 dev_priv->display.hpd_irq_setup(dev);
Daniel Vetter4cb21832014-09-15 14:55:26 +02004276 spin_unlock_irq(&dev_priv->irq_lock);
Imre Deak63237512014-08-18 15:37:02 +03004277
4278 intel_runtime_pm_put(dev_priv);
Egbert Eichac4c16c2013-04-16 13:36:58 +02004279}
4280
Daniel Vetterfca52a52014-09-30 10:56:45 +02004281/**
4282 * intel_irq_init - initializes irq support
4283 * @dev_priv: i915 device instance
4284 *
4285 * This function initializes all the irq support including work items, timers
4286 * and all the vtables. It does not setup the interrupt itself though.
4287 */
Daniel Vetterb9632912014-09-30 10:56:44 +02004288void intel_irq_init(struct drm_i915_private *dev_priv)
Jesse Barnesf71d4af2011-06-28 13:00:41 -07004289{
Daniel Vetterb9632912014-09-30 10:56:44 +02004290 struct drm_device *dev = dev_priv->dev;
Chris Wilson8b2e3262012-04-24 22:59:41 +01004291
4292 INIT_WORK(&dev_priv->hotplug_work, i915_hotplug_work_func);
Dave Airlie13cf5502014-06-18 11:29:35 +10004293 INIT_WORK(&dev_priv->dig_port_work, i915_digport_work_func);
Daniel Vetter99584db2012-11-14 17:14:04 +01004294 INIT_WORK(&dev_priv->gpu_error.work, i915_error_work_func);
Daniel Vetterc6a828d2012-08-08 23:35:35 +02004295 INIT_WORK(&dev_priv->rps.work, gen6_pm_rps_work);
Daniel Vettera4da4fa2012-11-02 19:55:07 +01004296 INIT_WORK(&dev_priv->l3_parity.error_work, ivybridge_parity_work);
Chris Wilson8b2e3262012-04-24 22:59:41 +01004297
Deepak Sa6706b42014-03-15 20:23:22 +05304298 /* Let's track the enabled rps events */
Daniel Vetterb9632912014-09-30 10:56:44 +02004299 if (IS_VALLEYVIEW(dev_priv) && !IS_CHERRYVIEW(dev_priv))
Ville Syrjälä6c65a582014-08-29 14:14:07 +03004300 /* WaGsvRC0ResidencyMethod:vlv */
Deepak S31685c22014-07-03 17:33:01 -04004301 dev_priv->pm_rps_events = GEN6_PM_RP_UP_EI_EXPIRED;
4302 else
4303 dev_priv->pm_rps_events = GEN6_PM_RPS_EVENTS;
Deepak Sa6706b42014-03-15 20:23:22 +05304304
Daniel Vetter99584db2012-11-14 17:14:04 +01004305 setup_timer(&dev_priv->gpu_error.hangcheck_timer,
4306 i915_hangcheck_elapsed,
Daniel Vetter61bac782012-12-01 21:03:21 +01004307 (unsigned long) dev);
Imre Deak63237512014-08-18 15:37:02 +03004308 INIT_DELAYED_WORK(&dev_priv->hotplug_reenable_work,
Daniel Vetter4cb21832014-09-15 14:55:26 +02004309 intel_hpd_irq_reenable_work);
Daniel Vetter61bac782012-12-01 21:03:21 +01004310
Tomas Janousek97a19a22012-12-08 13:48:13 +01004311 pm_qos_add_request(&dev_priv->pm_qos, PM_QOS_CPU_DMA_LATENCY, PM_QOS_DEFAULT_VALUE);
Daniel Vetter9ee32fea2012-12-01 13:53:48 +01004312
Daniel Vetterb9632912014-09-30 10:56:44 +02004313 if (IS_GEN2(dev_priv)) {
Ville Syrjälä4cdb83e2013-10-11 21:52:44 +03004314 dev->max_vblank_count = 0;
4315 dev->driver->get_vblank_counter = i8xx_get_vblank_counter;
Daniel Vetterb9632912014-09-30 10:56:44 +02004316 } else if (IS_G4X(dev_priv) || INTEL_INFO(dev_priv)->gen >= 5) {
Jesse Barnesf71d4af2011-06-28 13:00:41 -07004317 dev->max_vblank_count = 0xffffffff; /* full 32 bit counter */
4318 dev->driver->get_vblank_counter = gm45_get_vblank_counter;
Ville Syrjälä391f75e2013-09-25 19:55:26 +03004319 } else {
4320 dev->driver->get_vblank_counter = i915_get_vblank_counter;
4321 dev->max_vblank_count = 0xffffff; /* only 24 bits of frame count */
Jesse Barnesf71d4af2011-06-28 13:00:41 -07004322 }
4323
Ville Syrjälä21da2702014-08-06 14:49:55 +03004324 /*
4325 * Opt out of the vblank disable timer on everything except gen2.
4326 * Gen2 doesn't have a hardware frame counter and so depends on
4327 * vblank interrupts to produce sane vblank seuquence numbers.
4328 */
Daniel Vetterb9632912014-09-30 10:56:44 +02004329 if (!IS_GEN2(dev_priv))
Ville Syrjälä21da2702014-08-06 14:49:55 +03004330 dev->vblank_disable_immediate = true;
4331
Ville Syrjäläc2baf4b2013-09-23 14:48:50 +03004332 if (drm_core_check_feature(dev, DRIVER_MODESET)) {
Keith Packardc3613de2011-08-12 17:05:54 -07004333 dev->driver->get_vblank_timestamp = i915_get_vblank_timestamp;
Ville Syrjäläc2baf4b2013-09-23 14:48:50 +03004334 dev->driver->get_scanout_position = i915_get_crtc_scanoutpos;
4335 }
Jesse Barnesf71d4af2011-06-28 13:00:41 -07004336
Daniel Vetterb9632912014-09-30 10:56:44 +02004337 if (IS_CHERRYVIEW(dev_priv)) {
Ville Syrjälä43f328d2014-04-09 20:40:52 +03004338 dev->driver->irq_handler = cherryview_irq_handler;
4339 dev->driver->irq_preinstall = cherryview_irq_preinstall;
4340 dev->driver->irq_postinstall = cherryview_irq_postinstall;
4341 dev->driver->irq_uninstall = cherryview_irq_uninstall;
4342 dev->driver->enable_vblank = valleyview_enable_vblank;
4343 dev->driver->disable_vblank = valleyview_disable_vblank;
4344 dev_priv->display.hpd_irq_setup = i915_hpd_irq_setup;
Daniel Vetterb9632912014-09-30 10:56:44 +02004345 } else if (IS_VALLEYVIEW(dev_priv)) {
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07004346 dev->driver->irq_handler = valleyview_irq_handler;
4347 dev->driver->irq_preinstall = valleyview_irq_preinstall;
4348 dev->driver->irq_postinstall = valleyview_irq_postinstall;
4349 dev->driver->irq_uninstall = valleyview_irq_uninstall;
4350 dev->driver->enable_vblank = valleyview_enable_vblank;
4351 dev->driver->disable_vblank = valleyview_disable_vblank;
Egbert Eichfa00abe2013-02-25 12:06:48 -05004352 dev_priv->display.hpd_irq_setup = i915_hpd_irq_setup;
Daniel Vetterb9632912014-09-30 10:56:44 +02004353 } else if (INTEL_INFO(dev_priv)->gen >= 8) {
Ben Widawskyabd58f02013-11-02 21:07:09 -07004354 dev->driver->irq_handler = gen8_irq_handler;
Daniel Vetter723761b2014-05-22 17:56:34 +02004355 dev->driver->irq_preinstall = gen8_irq_reset;
Ben Widawskyabd58f02013-11-02 21:07:09 -07004356 dev->driver->irq_postinstall = gen8_irq_postinstall;
4357 dev->driver->irq_uninstall = gen8_irq_uninstall;
4358 dev->driver->enable_vblank = gen8_enable_vblank;
4359 dev->driver->disable_vblank = gen8_disable_vblank;
4360 dev_priv->display.hpd_irq_setup = ibx_hpd_irq_setup;
Jesse Barnesf71d4af2011-06-28 13:00:41 -07004361 } else if (HAS_PCH_SPLIT(dev)) {
4362 dev->driver->irq_handler = ironlake_irq_handler;
Daniel Vetter723761b2014-05-22 17:56:34 +02004363 dev->driver->irq_preinstall = ironlake_irq_reset;
Jesse Barnesf71d4af2011-06-28 13:00:41 -07004364 dev->driver->irq_postinstall = ironlake_irq_postinstall;
4365 dev->driver->irq_uninstall = ironlake_irq_uninstall;
4366 dev->driver->enable_vblank = ironlake_enable_vblank;
4367 dev->driver->disable_vblank = ironlake_disable_vblank;
Daniel Vetter82a28bc2013-03-27 15:55:01 +01004368 dev_priv->display.hpd_irq_setup = ibx_hpd_irq_setup;
Jesse Barnesf71d4af2011-06-28 13:00:41 -07004369 } else {
Daniel Vetterb9632912014-09-30 10:56:44 +02004370 if (INTEL_INFO(dev_priv)->gen == 2) {
Chris Wilsonc2798b12012-04-22 21:13:57 +01004371 dev->driver->irq_preinstall = i8xx_irq_preinstall;
4372 dev->driver->irq_postinstall = i8xx_irq_postinstall;
4373 dev->driver->irq_handler = i8xx_irq_handler;
4374 dev->driver->irq_uninstall = i8xx_irq_uninstall;
Daniel Vetterb9632912014-09-30 10:56:44 +02004375 } else if (INTEL_INFO(dev_priv)->gen == 3) {
Chris Wilsona266c7d2012-04-24 22:59:44 +01004376 dev->driver->irq_preinstall = i915_irq_preinstall;
4377 dev->driver->irq_postinstall = i915_irq_postinstall;
4378 dev->driver->irq_uninstall = i915_irq_uninstall;
4379 dev->driver->irq_handler = i915_irq_handler;
Daniel Vetter20afbda2012-12-11 14:05:07 +01004380 dev_priv->display.hpd_irq_setup = i915_hpd_irq_setup;
Chris Wilsonc2798b12012-04-22 21:13:57 +01004381 } else {
Chris Wilsona266c7d2012-04-24 22:59:44 +01004382 dev->driver->irq_preinstall = i965_irq_preinstall;
4383 dev->driver->irq_postinstall = i965_irq_postinstall;
4384 dev->driver->irq_uninstall = i965_irq_uninstall;
4385 dev->driver->irq_handler = i965_irq_handler;
Egbert Eichbac56d52013-02-25 12:06:51 -05004386 dev_priv->display.hpd_irq_setup = i915_hpd_irq_setup;
Chris Wilsonc2798b12012-04-22 21:13:57 +01004387 }
Jesse Barnesf71d4af2011-06-28 13:00:41 -07004388 dev->driver->enable_vblank = i915_enable_vblank;
4389 dev->driver->disable_vblank = i915_disable_vblank;
4390 }
4391}
Daniel Vetter20afbda2012-12-11 14:05:07 +01004392
Daniel Vetterfca52a52014-09-30 10:56:45 +02004393/**
4394 * intel_hpd_init - initializes and enables hpd support
4395 * @dev_priv: i915 device instance
4396 *
4397 * This function enables the hotplug support. It requires that interrupts have
4398 * already been enabled with intel_irq_init_hw(). From this point on hotplug and
4399 * poll request can run concurrently to other code, so locking rules must be
4400 * obeyed.
4401 *
4402 * This is a separate step from interrupt enabling to simplify the locking rules
4403 * in the driver load and resume code.
4404 */
Daniel Vetterb9632912014-09-30 10:56:44 +02004405void intel_hpd_init(struct drm_i915_private *dev_priv)
Daniel Vetter20afbda2012-12-11 14:05:07 +01004406{
Daniel Vetterb9632912014-09-30 10:56:44 +02004407 struct drm_device *dev = dev_priv->dev;
Egbert Eich821450c2013-04-16 13:36:55 +02004408 struct drm_mode_config *mode_config = &dev->mode_config;
4409 struct drm_connector *connector;
4410 int i;
Daniel Vetter20afbda2012-12-11 14:05:07 +01004411
Egbert Eich821450c2013-04-16 13:36:55 +02004412 for (i = 1; i < HPD_NUM_PINS; i++) {
4413 dev_priv->hpd_stats[i].hpd_cnt = 0;
4414 dev_priv->hpd_stats[i].hpd_mark = HPD_ENABLED;
4415 }
4416 list_for_each_entry(connector, &mode_config->connector_list, head) {
4417 struct intel_connector *intel_connector = to_intel_connector(connector);
4418 connector->polled = intel_connector->polled;
Dave Airlie0e32b392014-05-02 14:02:48 +10004419 if (connector->encoder && !connector->polled && I915_HAS_HOTPLUG(dev) && intel_connector->encoder->hpd_pin > HPD_NONE)
4420 connector->polled = DRM_CONNECTOR_POLL_HPD;
4421 if (intel_connector->mst_port)
Egbert Eich821450c2013-04-16 13:36:55 +02004422 connector->polled = DRM_CONNECTOR_POLL_HPD;
4423 }
Daniel Vetterb5ea2d52013-06-27 17:52:15 +02004424
4425 /* Interrupt setup is already guaranteed to be single-threaded, this is
4426 * just to make the assert_spin_locked checks happy. */
Daniel Vetterd6207432014-09-15 14:55:27 +02004427 spin_lock_irq(&dev_priv->irq_lock);
Daniel Vetter20afbda2012-12-11 14:05:07 +01004428 if (dev_priv->display.hpd_irq_setup)
4429 dev_priv->display.hpd_irq_setup(dev);
Daniel Vetterd6207432014-09-15 14:55:27 +02004430 spin_unlock_irq(&dev_priv->irq_lock);
Daniel Vetter20afbda2012-12-11 14:05:07 +01004431}
Paulo Zanonic67a4702013-08-19 13:18:09 -03004432
Daniel Vetterfca52a52014-09-30 10:56:45 +02004433/**
4434 * intel_irq_install - enables the hardware interrupt
4435 * @dev_priv: i915 device instance
4436 *
4437 * This function enables the hardware interrupt handling, but leaves the hotplug
4438 * handling still disabled. It is called after intel_irq_init().
4439 *
4440 * In the driver load and resume code we need working interrupts in a few places
4441 * but don't want to deal with the hassle of concurrent probe and hotplug
4442 * workers. Hence the split into this two-stage approach.
4443 */
Daniel Vetter2aeb7d32014-09-30 10:56:43 +02004444int intel_irq_install(struct drm_i915_private *dev_priv)
4445{
4446 /*
4447 * We enable some interrupt sources in our postinstall hooks, so mark
4448 * interrupts as enabled _before_ actually enabling them to avoid
4449 * special cases in our ordering checks.
4450 */
4451 dev_priv->pm.irqs_enabled = true;
4452
4453 return drm_irq_install(dev_priv->dev, dev_priv->dev->pdev->irq);
4454}
4455
Daniel Vetterfca52a52014-09-30 10:56:45 +02004456/**
4457 * intel_irq_uninstall - finilizes all irq handling
4458 * @dev_priv: i915 device instance
4459 *
4460 * This stops interrupt and hotplug handling and unregisters and frees all
4461 * resources acquired in the init functions.
4462 */
Daniel Vetter2aeb7d32014-09-30 10:56:43 +02004463void intel_irq_uninstall(struct drm_i915_private *dev_priv)
4464{
4465 drm_irq_uninstall(dev_priv->dev);
4466 intel_hpd_cancel_work(dev_priv);
4467 dev_priv->pm.irqs_enabled = false;
4468}
4469
Daniel Vetterfca52a52014-09-30 10:56:45 +02004470/**
4471 * intel_runtime_pm_disable_interrupts - runtime interrupt disabling
4472 * @dev_priv: i915 device instance
4473 *
4474 * This function is used to disable interrupts at runtime, both in the runtime
4475 * pm and the system suspend/resume code.
4476 */
Daniel Vetterb9632912014-09-30 10:56:44 +02004477void intel_runtime_pm_disable_interrupts(struct drm_i915_private *dev_priv)
Paulo Zanonic67a4702013-08-19 13:18:09 -03004478{
Daniel Vetterb9632912014-09-30 10:56:44 +02004479 dev_priv->dev->driver->irq_uninstall(dev_priv->dev);
Daniel Vetter2aeb7d32014-09-30 10:56:43 +02004480 dev_priv->pm.irqs_enabled = false;
Paulo Zanonic67a4702013-08-19 13:18:09 -03004481}
4482
Daniel Vetterfca52a52014-09-30 10:56:45 +02004483/**
4484 * intel_runtime_pm_enable_interrupts - runtime interrupt enabling
4485 * @dev_priv: i915 device instance
4486 *
4487 * This function is used to enable interrupts at runtime, both in the runtime
4488 * pm and the system suspend/resume code.
4489 */
Daniel Vetterb9632912014-09-30 10:56:44 +02004490void intel_runtime_pm_enable_interrupts(struct drm_i915_private *dev_priv)
Paulo Zanonic67a4702013-08-19 13:18:09 -03004491{
Daniel Vetter2aeb7d32014-09-30 10:56:43 +02004492 dev_priv->pm.irqs_enabled = true;
Daniel Vetterb9632912014-09-30 10:56:44 +02004493 dev_priv->dev->driver->irq_preinstall(dev_priv->dev);
4494 dev_priv->dev->driver->irq_postinstall(dev_priv->dev);
Paulo Zanonic67a4702013-08-19 13:18:09 -03004495}