blob: 80d162acda1b26fbef5eb808d732c0b1748ea30b [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
Ville Syrjäläe4ce95a2015-08-27 23:56:03 +030048static const u32 hpd_ilk[HPD_NUM_PINS] = {
49 [HPD_PORT_A] = DE_DP_A_HOTPLUG,
50};
51
Ville Syrjälä23bb4cb2015-08-27 23:56:04 +030052static const u32 hpd_ivb[HPD_NUM_PINS] = {
53 [HPD_PORT_A] = DE_DP_A_HOTPLUG_IVB,
54};
55
Ville Syrjälä3a3b3c72015-08-27 23:56:06 +030056static const u32 hpd_bdw[HPD_NUM_PINS] = {
57 [HPD_PORT_A] = GEN8_PORT_DP_A_HOTPLUG,
58};
59
Ville Syrjälä7c7e10d2015-01-09 14:21:12 +020060static const u32 hpd_ibx[HPD_NUM_PINS] = {
Egbert Eiche5868a32013-02-28 04:17:12 -050061 [HPD_CRT] = SDE_CRT_HOTPLUG,
62 [HPD_SDVO_B] = SDE_SDVOB_HOTPLUG,
63 [HPD_PORT_B] = SDE_PORTB_HOTPLUG,
64 [HPD_PORT_C] = SDE_PORTC_HOTPLUG,
65 [HPD_PORT_D] = SDE_PORTD_HOTPLUG
66};
67
Ville Syrjälä7c7e10d2015-01-09 14:21:12 +020068static const u32 hpd_cpt[HPD_NUM_PINS] = {
Egbert Eiche5868a32013-02-28 04:17:12 -050069 [HPD_CRT] = SDE_CRT_HOTPLUG_CPT,
Daniel Vetter73c352a2013-03-26 22:38:43 +010070 [HPD_SDVO_B] = SDE_SDVOB_HOTPLUG_CPT,
Egbert Eiche5868a32013-02-28 04:17:12 -050071 [HPD_PORT_B] = SDE_PORTB_HOTPLUG_CPT,
72 [HPD_PORT_C] = SDE_PORTC_HOTPLUG_CPT,
73 [HPD_PORT_D] = SDE_PORTD_HOTPLUG_CPT
74};
75
Xiong Zhang26951ca2015-08-17 15:55:50 +080076static const u32 hpd_spt[HPD_NUM_PINS] = {
Ville Syrjälä74c0b392015-08-27 23:56:07 +030077 [HPD_PORT_A] = SDE_PORTA_HOTPLUG_SPT,
Xiong Zhang26951ca2015-08-17 15:55:50 +080078 [HPD_PORT_B] = SDE_PORTB_HOTPLUG_CPT,
79 [HPD_PORT_C] = SDE_PORTC_HOTPLUG_CPT,
80 [HPD_PORT_D] = SDE_PORTD_HOTPLUG_CPT,
81 [HPD_PORT_E] = SDE_PORTE_HOTPLUG_SPT
82};
83
Ville Syrjälä7c7e10d2015-01-09 14:21:12 +020084static const u32 hpd_mask_i915[HPD_NUM_PINS] = {
Egbert Eiche5868a32013-02-28 04:17:12 -050085 [HPD_CRT] = CRT_HOTPLUG_INT_EN,
86 [HPD_SDVO_B] = SDVOB_HOTPLUG_INT_EN,
87 [HPD_SDVO_C] = SDVOC_HOTPLUG_INT_EN,
88 [HPD_PORT_B] = PORTB_HOTPLUG_INT_EN,
89 [HPD_PORT_C] = PORTC_HOTPLUG_INT_EN,
90 [HPD_PORT_D] = PORTD_HOTPLUG_INT_EN
91};
92
Ville Syrjälä7c7e10d2015-01-09 14:21:12 +020093static const u32 hpd_status_g4x[HPD_NUM_PINS] = {
Egbert Eiche5868a32013-02-28 04:17:12 -050094 [HPD_CRT] = CRT_HOTPLUG_INT_STATUS,
95 [HPD_SDVO_B] = SDVOB_HOTPLUG_INT_STATUS_G4X,
96 [HPD_SDVO_C] = SDVOC_HOTPLUG_INT_STATUS_G4X,
97 [HPD_PORT_B] = PORTB_HOTPLUG_INT_STATUS,
98 [HPD_PORT_C] = PORTC_HOTPLUG_INT_STATUS,
99 [HPD_PORT_D] = PORTD_HOTPLUG_INT_STATUS
100};
101
Ville Syrjälä4bca26d2015-05-11 20:49:10 +0300102static const u32 hpd_status_i915[HPD_NUM_PINS] = {
Egbert Eiche5868a32013-02-28 04:17:12 -0500103 [HPD_CRT] = CRT_HOTPLUG_INT_STATUS,
104 [HPD_SDVO_B] = SDVOB_HOTPLUG_INT_STATUS_I915,
105 [HPD_SDVO_C] = SDVOC_HOTPLUG_INT_STATUS_I915,
106 [HPD_PORT_B] = PORTB_HOTPLUG_INT_STATUS,
107 [HPD_PORT_C] = PORTC_HOTPLUG_INT_STATUS,
108 [HPD_PORT_D] = PORTD_HOTPLUG_INT_STATUS
109};
110
Shashank Sharmae0a20ad2015-03-27 14:54:14 +0200111/* BXT hpd list */
112static const u32 hpd_bxt[HPD_NUM_PINS] = {
Sonika Jindal7f3561b2015-08-10 10:35:35 +0530113 [HPD_PORT_A] = BXT_DE_PORT_HP_DDIA,
Shashank Sharmae0a20ad2015-03-27 14:54:14 +0200114 [HPD_PORT_B] = BXT_DE_PORT_HP_DDIB,
115 [HPD_PORT_C] = BXT_DE_PORT_HP_DDIC
116};
117
Paulo Zanoni5c502442014-04-01 15:37:11 -0300118/* IIR can theoretically queue up two events. Be paranoid. */
Paulo Zanonif86f3fb2014-04-01 15:37:14 -0300119#define GEN8_IRQ_RESET_NDX(type, which) do { \
Paulo Zanoni5c502442014-04-01 15:37:11 -0300120 I915_WRITE(GEN8_##type##_IMR(which), 0xffffffff); \
121 POSTING_READ(GEN8_##type##_IMR(which)); \
122 I915_WRITE(GEN8_##type##_IER(which), 0); \
123 I915_WRITE(GEN8_##type##_IIR(which), 0xffffffff); \
124 POSTING_READ(GEN8_##type##_IIR(which)); \
125 I915_WRITE(GEN8_##type##_IIR(which), 0xffffffff); \
126 POSTING_READ(GEN8_##type##_IIR(which)); \
127} while (0)
128
Paulo Zanonif86f3fb2014-04-01 15:37:14 -0300129#define GEN5_IRQ_RESET(type) do { \
Paulo Zanonia9d356a2014-04-01 15:37:09 -0300130 I915_WRITE(type##IMR, 0xffffffff); \
Paulo Zanoni5c502442014-04-01 15:37:11 -0300131 POSTING_READ(type##IMR); \
Paulo Zanonia9d356a2014-04-01 15:37:09 -0300132 I915_WRITE(type##IER, 0); \
Paulo Zanoni5c502442014-04-01 15:37:11 -0300133 I915_WRITE(type##IIR, 0xffffffff); \
134 POSTING_READ(type##IIR); \
135 I915_WRITE(type##IIR, 0xffffffff); \
136 POSTING_READ(type##IIR); \
Paulo Zanonia9d356a2014-04-01 15:37:09 -0300137} while (0)
138
Paulo Zanoni337ba012014-04-01 15:37:16 -0300139/*
140 * We should clear IMR at preinstall/uninstall, and just check at postinstall.
141 */
Ville Syrjäläf0f59a02015-11-18 15:33:26 +0200142static void gen5_assert_iir_is_zero(struct drm_i915_private *dev_priv,
143 i915_reg_t reg)
Ville Syrjäläb51a2842015-09-18 20:03:41 +0300144{
145 u32 val = I915_READ(reg);
146
147 if (val == 0)
148 return;
149
150 WARN(1, "Interrupt register 0x%x is not zero: 0x%08x\n",
Ville Syrjäläf0f59a02015-11-18 15:33:26 +0200151 i915_mmio_reg_offset(reg), val);
Ville Syrjäläb51a2842015-09-18 20:03:41 +0300152 I915_WRITE(reg, 0xffffffff);
153 POSTING_READ(reg);
154 I915_WRITE(reg, 0xffffffff);
155 POSTING_READ(reg);
156}
Paulo Zanoni337ba012014-04-01 15:37:16 -0300157
Paulo Zanoni35079892014-04-01 15:37:15 -0300158#define GEN8_IRQ_INIT_NDX(type, which, imr_val, ier_val) do { \
Ville Syrjäläb51a2842015-09-18 20:03:41 +0300159 gen5_assert_iir_is_zero(dev_priv, GEN8_##type##_IIR(which)); \
Paulo Zanoni35079892014-04-01 15:37:15 -0300160 I915_WRITE(GEN8_##type##_IER(which), (ier_val)); \
Ville Syrjälä7d1bd5392014-10-30 19:42:50 +0200161 I915_WRITE(GEN8_##type##_IMR(which), (imr_val)); \
162 POSTING_READ(GEN8_##type##_IMR(which)); \
Paulo Zanoni35079892014-04-01 15:37:15 -0300163} while (0)
164
165#define GEN5_IRQ_INIT(type, imr_val, ier_val) do { \
Ville Syrjäläb51a2842015-09-18 20:03:41 +0300166 gen5_assert_iir_is_zero(dev_priv, type##IIR); \
Paulo Zanoni35079892014-04-01 15:37:15 -0300167 I915_WRITE(type##IER, (ier_val)); \
Ville Syrjälä7d1bd5392014-10-30 19:42:50 +0200168 I915_WRITE(type##IMR, (imr_val)); \
169 POSTING_READ(type##IMR); \
Paulo Zanoni35079892014-04-01 15:37:15 -0300170} while (0)
171
Imre Deakc9a9a262014-11-05 20:48:37 +0200172static void gen6_rps_irq_handler(struct drm_i915_private *dev_priv, u32 pm_iir);
173
Egbert Eich0706f172015-09-23 16:15:27 +0200174/* For display hotplug interrupt */
175static inline void
176i915_hotplug_interrupt_update_locked(struct drm_i915_private *dev_priv,
177 uint32_t mask,
178 uint32_t bits)
179{
180 uint32_t val;
181
182 assert_spin_locked(&dev_priv->irq_lock);
183 WARN_ON(bits & ~mask);
184
185 val = I915_READ(PORT_HOTPLUG_EN);
186 val &= ~mask;
187 val |= bits;
188 I915_WRITE(PORT_HOTPLUG_EN, val);
189}
190
191/**
192 * i915_hotplug_interrupt_update - update hotplug interrupt enable
193 * @dev_priv: driver private
194 * @mask: bits to update
195 * @bits: bits to enable
196 * NOTE: the HPD enable bits are modified both inside and outside
197 * of an interrupt context. To avoid that read-modify-write cycles
198 * interfer, these bits are protected by a spinlock. Since this
199 * function is usually not called from a context where the lock is
200 * held already, this function acquires the lock itself. A non-locking
201 * version is also available.
202 */
203void i915_hotplug_interrupt_update(struct drm_i915_private *dev_priv,
204 uint32_t mask,
205 uint32_t bits)
206{
207 spin_lock_irq(&dev_priv->irq_lock);
208 i915_hotplug_interrupt_update_locked(dev_priv, mask, bits);
209 spin_unlock_irq(&dev_priv->irq_lock);
210}
211
Ville Syrjäläd9dc34f12015-08-27 23:55:58 +0300212/**
213 * ilk_update_display_irq - update DEIMR
214 * @dev_priv: driver private
215 * @interrupt_mask: mask of interrupt bits to update
216 * @enabled_irq_mask: mask of interrupt bits to enable
217 */
Ville Syrjäläfbdedaea2015-11-23 18:06:16 +0200218void ilk_update_display_irq(struct drm_i915_private *dev_priv,
219 uint32_t interrupt_mask,
220 uint32_t enabled_irq_mask)
Zhenyu Wang036a4a72009-06-08 14:40:19 +0800221{
Ville Syrjäläd9dc34f12015-08-27 23:55:58 +0300222 uint32_t new_val;
223
Daniel Vetter4bc9d432013-06-27 13:44:58 +0200224 assert_spin_locked(&dev_priv->irq_lock);
225
Ville Syrjäläd9dc34f12015-08-27 23:55:58 +0300226 WARN_ON(enabled_irq_mask & ~interrupt_mask);
227
Jesse Barnes9df7575f2014-06-20 09:29:20 -0700228 if (WARN_ON(!intel_irqs_enabled(dev_priv)))
Paulo Zanonic67a4702013-08-19 13:18:09 -0300229 return;
Paulo Zanonic67a4702013-08-19 13:18:09 -0300230
Ville Syrjäläd9dc34f12015-08-27 23:55:58 +0300231 new_val = dev_priv->irq_mask;
232 new_val &= ~interrupt_mask;
233 new_val |= (~enabled_irq_mask & interrupt_mask);
234
235 if (new_val != dev_priv->irq_mask) {
236 dev_priv->irq_mask = new_val;
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000237 I915_WRITE(DEIMR, dev_priv->irq_mask);
Chris Wilson3143a2b2010-11-16 15:55:10 +0000238 POSTING_READ(DEIMR);
Zhenyu Wang036a4a72009-06-08 14:40:19 +0800239 }
240}
241
Paulo Zanoni43eaea12013-08-06 18:57:12 -0300242/**
243 * ilk_update_gt_irq - update GTIMR
244 * @dev_priv: driver private
245 * @interrupt_mask: mask of interrupt bits to update
246 * @enabled_irq_mask: mask of interrupt bits to enable
247 */
248static void ilk_update_gt_irq(struct drm_i915_private *dev_priv,
249 uint32_t interrupt_mask,
250 uint32_t enabled_irq_mask)
251{
252 assert_spin_locked(&dev_priv->irq_lock);
253
Daniel Vetter15a17aa2014-12-08 16:30:00 +0100254 WARN_ON(enabled_irq_mask & ~interrupt_mask);
255
Jesse Barnes9df7575f2014-06-20 09:29:20 -0700256 if (WARN_ON(!intel_irqs_enabled(dev_priv)))
Paulo Zanonic67a4702013-08-19 13:18:09 -0300257 return;
Paulo Zanonic67a4702013-08-19 13:18:09 -0300258
Paulo Zanoni43eaea12013-08-06 18:57:12 -0300259 dev_priv->gt_irq_mask &= ~interrupt_mask;
260 dev_priv->gt_irq_mask |= (~enabled_irq_mask & interrupt_mask);
261 I915_WRITE(GTIMR, dev_priv->gt_irq_mask);
Paulo Zanoni43eaea12013-08-06 18:57:12 -0300262}
263
Daniel Vetter480c8032014-07-16 09:49:40 +0200264void gen5_enable_gt_irq(struct drm_i915_private *dev_priv, uint32_t mask)
Paulo Zanoni43eaea12013-08-06 18:57:12 -0300265{
266 ilk_update_gt_irq(dev_priv, mask, mask);
Chris Wilson31bb59c2016-07-01 17:23:27 +0100267 POSTING_READ_FW(GTIMR);
Paulo Zanoni43eaea12013-08-06 18:57:12 -0300268}
269
Daniel Vetter480c8032014-07-16 09:49:40 +0200270void gen5_disable_gt_irq(struct drm_i915_private *dev_priv, uint32_t mask)
Paulo Zanoni43eaea12013-08-06 18:57:12 -0300271{
272 ilk_update_gt_irq(dev_priv, mask, 0);
273}
274
Ville Syrjäläf0f59a02015-11-18 15:33:26 +0200275static i915_reg_t gen6_pm_iir(struct drm_i915_private *dev_priv)
Imre Deakb900b942014-11-05 20:48:48 +0200276{
277 return INTEL_INFO(dev_priv)->gen >= 8 ? GEN8_GT_IIR(2) : GEN6_PMIIR;
278}
279
Ville Syrjäläf0f59a02015-11-18 15:33:26 +0200280static i915_reg_t gen6_pm_imr(struct drm_i915_private *dev_priv)
Imre Deaka72fbc32014-11-05 20:48:31 +0200281{
282 return INTEL_INFO(dev_priv)->gen >= 8 ? GEN8_GT_IMR(2) : GEN6_PMIMR;
283}
284
Ville Syrjäläf0f59a02015-11-18 15:33:26 +0200285static i915_reg_t gen6_pm_ier(struct drm_i915_private *dev_priv)
Imre Deakb900b942014-11-05 20:48:48 +0200286{
287 return INTEL_INFO(dev_priv)->gen >= 8 ? GEN8_GT_IER(2) : GEN6_PMIER;
288}
289
Paulo Zanoniedbfdb42013-08-06 18:57:13 -0300290/**
Ville Syrjälä81fd8742015-11-25 16:21:30 +0200291 * snb_update_pm_irq - update GEN6_PMIMR
292 * @dev_priv: driver private
293 * @interrupt_mask: mask of interrupt bits to update
294 * @enabled_irq_mask: mask of interrupt bits to enable
295 */
Paulo Zanoniedbfdb42013-08-06 18:57:13 -0300296static void snb_update_pm_irq(struct drm_i915_private *dev_priv,
297 uint32_t interrupt_mask,
298 uint32_t enabled_irq_mask)
299{
Paulo Zanoni605cd252013-08-06 18:57:15 -0300300 uint32_t new_val;
Paulo Zanoniedbfdb42013-08-06 18:57:13 -0300301
Daniel Vetter15a17aa2014-12-08 16:30:00 +0100302 WARN_ON(enabled_irq_mask & ~interrupt_mask);
303
Paulo Zanoniedbfdb42013-08-06 18:57:13 -0300304 assert_spin_locked(&dev_priv->irq_lock);
305
Paulo Zanoni605cd252013-08-06 18:57:15 -0300306 new_val = dev_priv->pm_irq_mask;
Paulo Zanonif52ecbc2013-08-06 18:57:14 -0300307 new_val &= ~interrupt_mask;
308 new_val |= (~enabled_irq_mask & interrupt_mask);
309
Paulo Zanoni605cd252013-08-06 18:57:15 -0300310 if (new_val != dev_priv->pm_irq_mask) {
311 dev_priv->pm_irq_mask = new_val;
Imre Deaka72fbc32014-11-05 20:48:31 +0200312 I915_WRITE(gen6_pm_imr(dev_priv), dev_priv->pm_irq_mask);
313 POSTING_READ(gen6_pm_imr(dev_priv));
Paulo Zanonif52ecbc2013-08-06 18:57:14 -0300314 }
Paulo Zanoniedbfdb42013-08-06 18:57:13 -0300315}
316
Daniel Vetter480c8032014-07-16 09:49:40 +0200317void gen6_enable_pm_irq(struct drm_i915_private *dev_priv, uint32_t mask)
Paulo Zanoniedbfdb42013-08-06 18:57:13 -0300318{
Imre Deak9939fba2014-11-20 23:01:47 +0200319 if (WARN_ON(!intel_irqs_enabled(dev_priv)))
320 return;
321
Paulo Zanoniedbfdb42013-08-06 18:57:13 -0300322 snb_update_pm_irq(dev_priv, mask, mask);
323}
324
Imre Deak9939fba2014-11-20 23:01:47 +0200325static void __gen6_disable_pm_irq(struct drm_i915_private *dev_priv,
326 uint32_t mask)
327{
328 snb_update_pm_irq(dev_priv, mask, 0);
329}
330
Daniel Vetter480c8032014-07-16 09:49:40 +0200331void gen6_disable_pm_irq(struct drm_i915_private *dev_priv, uint32_t mask)
Paulo Zanoniedbfdb42013-08-06 18:57:13 -0300332{
Imre Deak9939fba2014-11-20 23:01:47 +0200333 if (WARN_ON(!intel_irqs_enabled(dev_priv)))
334 return;
335
336 __gen6_disable_pm_irq(dev_priv, mask);
Paulo Zanoniedbfdb42013-08-06 18:57:13 -0300337}
338
Chris Wilsondc979972016-05-10 14:10:04 +0100339void gen6_reset_rps_interrupts(struct drm_i915_private *dev_priv)
Imre Deak3cc134e2014-11-19 15:30:03 +0200340{
Ville Syrjäläf0f59a02015-11-18 15:33:26 +0200341 i915_reg_t reg = gen6_pm_iir(dev_priv);
Imre Deak3cc134e2014-11-19 15:30:03 +0200342
343 spin_lock_irq(&dev_priv->irq_lock);
344 I915_WRITE(reg, dev_priv->pm_rps_events);
345 I915_WRITE(reg, dev_priv->pm_rps_events);
346 POSTING_READ(reg);
Imre Deak096fad92015-03-23 19:11:35 +0200347 dev_priv->rps.pm_iir = 0;
Imre Deak3cc134e2014-11-19 15:30:03 +0200348 spin_unlock_irq(&dev_priv->irq_lock);
349}
350
Tvrtko Ursulin91d14252016-05-06 14:48:28 +0100351void gen6_enable_rps_interrupts(struct drm_i915_private *dev_priv)
Imre Deakb900b942014-11-05 20:48:48 +0200352{
Imre Deakb900b942014-11-05 20:48:48 +0200353 spin_lock_irq(&dev_priv->irq_lock);
Imre Deak78e68d32014-12-15 18:59:27 +0200354
Imre Deakb900b942014-11-05 20:48:48 +0200355 WARN_ON(dev_priv->rps.pm_iir);
Imre Deak3cc134e2014-11-19 15:30:03 +0200356 WARN_ON(I915_READ(gen6_pm_iir(dev_priv)) & dev_priv->pm_rps_events);
Imre Deakd4d70aa2014-11-19 15:30:04 +0200357 dev_priv->rps.interrupts_enabled = true;
Imre Deak78e68d32014-12-15 18:59:27 +0200358 I915_WRITE(gen6_pm_ier(dev_priv), I915_READ(gen6_pm_ier(dev_priv)) |
359 dev_priv->pm_rps_events);
Imre Deakb900b942014-11-05 20:48:48 +0200360 gen6_enable_pm_irq(dev_priv, dev_priv->pm_rps_events);
Imre Deak78e68d32014-12-15 18:59:27 +0200361
Imre Deakb900b942014-11-05 20:48:48 +0200362 spin_unlock_irq(&dev_priv->irq_lock);
363}
364
Imre Deak59d02a12014-12-19 19:33:26 +0200365u32 gen6_sanitize_rps_pm_mask(struct drm_i915_private *dev_priv, u32 mask)
366{
Sagar Arun Kamble1800ad22016-05-31 13:58:27 +0530367 return (mask & ~dev_priv->rps.pm_intr_keep);
Imre Deak59d02a12014-12-19 19:33:26 +0200368}
369
Tvrtko Ursulin91d14252016-05-06 14:48:28 +0100370void gen6_disable_rps_interrupts(struct drm_i915_private *dev_priv)
Imre Deakb900b942014-11-05 20:48:48 +0200371{
Imre Deakd4d70aa2014-11-19 15:30:04 +0200372 spin_lock_irq(&dev_priv->irq_lock);
373 dev_priv->rps.interrupts_enabled = false;
374 spin_unlock_irq(&dev_priv->irq_lock);
375
376 cancel_work_sync(&dev_priv->rps.work);
377
Imre Deak9939fba2014-11-20 23:01:47 +0200378 spin_lock_irq(&dev_priv->irq_lock);
379
Imre Deak59d02a12014-12-19 19:33:26 +0200380 I915_WRITE(GEN6_PMINTRMSK, gen6_sanitize_rps_pm_mask(dev_priv, ~0));
Imre Deak9939fba2014-11-20 23:01:47 +0200381
382 __gen6_disable_pm_irq(dev_priv, dev_priv->pm_rps_events);
Imre Deakb900b942014-11-05 20:48:48 +0200383 I915_WRITE(gen6_pm_ier(dev_priv), I915_READ(gen6_pm_ier(dev_priv)) &
384 ~dev_priv->pm_rps_events);
Imre Deak58072cc2015-03-23 19:11:34 +0200385
386 spin_unlock_irq(&dev_priv->irq_lock);
387
Tvrtko Ursulin91d14252016-05-06 14:48:28 +0100388 synchronize_irq(dev_priv->dev->irq);
Imre Deakb900b942014-11-05 20:48:48 +0200389}
390
Ben Widawsky09610212014-05-15 20:58:08 +0300391/**
Ville Syrjälä81fd8742015-11-25 16:21:30 +0200392 * bdw_update_port_irq - update DE port interrupt
393 * @dev_priv: driver private
394 * @interrupt_mask: mask of interrupt bits to update
395 * @enabled_irq_mask: mask of interrupt bits to enable
396 */
Ville Syrjälä3a3b3c72015-08-27 23:56:06 +0300397static void bdw_update_port_irq(struct drm_i915_private *dev_priv,
398 uint32_t interrupt_mask,
399 uint32_t enabled_irq_mask)
400{
401 uint32_t new_val;
402 uint32_t old_val;
403
404 assert_spin_locked(&dev_priv->irq_lock);
405
406 WARN_ON(enabled_irq_mask & ~interrupt_mask);
407
408 if (WARN_ON(!intel_irqs_enabled(dev_priv)))
409 return;
410
411 old_val = I915_READ(GEN8_DE_PORT_IMR);
412
413 new_val = old_val;
414 new_val &= ~interrupt_mask;
415 new_val |= (~enabled_irq_mask & interrupt_mask);
416
417 if (new_val != old_val) {
418 I915_WRITE(GEN8_DE_PORT_IMR, new_val);
419 POSTING_READ(GEN8_DE_PORT_IMR);
420 }
421}
422
423/**
Ville Syrjälä013d3752015-11-23 18:06:17 +0200424 * bdw_update_pipe_irq - update DE pipe interrupt
425 * @dev_priv: driver private
426 * @pipe: pipe whose interrupt to update
427 * @interrupt_mask: mask of interrupt bits to update
428 * @enabled_irq_mask: mask of interrupt bits to enable
429 */
430void bdw_update_pipe_irq(struct drm_i915_private *dev_priv,
431 enum pipe pipe,
432 uint32_t interrupt_mask,
433 uint32_t enabled_irq_mask)
434{
435 uint32_t new_val;
436
437 assert_spin_locked(&dev_priv->irq_lock);
438
439 WARN_ON(enabled_irq_mask & ~interrupt_mask);
440
441 if (WARN_ON(!intel_irqs_enabled(dev_priv)))
442 return;
443
444 new_val = dev_priv->de_irq_mask[pipe];
445 new_val &= ~interrupt_mask;
446 new_val |= (~enabled_irq_mask & interrupt_mask);
447
448 if (new_val != dev_priv->de_irq_mask[pipe]) {
449 dev_priv->de_irq_mask[pipe] = new_val;
450 I915_WRITE(GEN8_DE_PIPE_IMR(pipe), dev_priv->de_irq_mask[pipe]);
451 POSTING_READ(GEN8_DE_PIPE_IMR(pipe));
452 }
453}
454
455/**
Daniel Vetterfee884e2013-07-04 23:35:21 +0200456 * ibx_display_interrupt_update - update SDEIMR
457 * @dev_priv: driver private
458 * @interrupt_mask: mask of interrupt bits to update
459 * @enabled_irq_mask: mask of interrupt bits to enable
460 */
Daniel Vetter47339cd2014-09-30 10:56:46 +0200461void ibx_display_interrupt_update(struct drm_i915_private *dev_priv,
462 uint32_t interrupt_mask,
463 uint32_t enabled_irq_mask)
Daniel Vetterfee884e2013-07-04 23:35:21 +0200464{
465 uint32_t sdeimr = I915_READ(SDEIMR);
466 sdeimr &= ~interrupt_mask;
467 sdeimr |= (~enabled_irq_mask & interrupt_mask);
468
Daniel Vetter15a17aa2014-12-08 16:30:00 +0100469 WARN_ON(enabled_irq_mask & ~interrupt_mask);
470
Daniel Vetterfee884e2013-07-04 23:35:21 +0200471 assert_spin_locked(&dev_priv->irq_lock);
472
Jesse Barnes9df7575f2014-06-20 09:29:20 -0700473 if (WARN_ON(!intel_irqs_enabled(dev_priv)))
Paulo Zanonic67a4702013-08-19 13:18:09 -0300474 return;
Paulo Zanonic67a4702013-08-19 13:18:09 -0300475
Daniel Vetterfee884e2013-07-04 23:35:21 +0200476 I915_WRITE(SDEIMR, sdeimr);
477 POSTING_READ(SDEIMR);
478}
Paulo Zanoni86642812013-04-12 17:57:57 -0300479
Daniel Vetterb5ea6422014-03-02 21:18:00 +0100480static void
Imre Deak755e9012014-02-10 18:42:47 +0200481__i915_enable_pipestat(struct drm_i915_private *dev_priv, enum pipe pipe,
482 u32 enable_mask, u32 status_mask)
Keith Packard7c463582008-11-04 02:03:27 -0800483{
Ville Syrjäläf0f59a02015-11-18 15:33:26 +0200484 i915_reg_t reg = PIPESTAT(pipe);
Imre Deak755e9012014-02-10 18:42:47 +0200485 u32 pipestat = I915_READ(reg) & PIPESTAT_INT_ENABLE_MASK;
Keith Packard7c463582008-11-04 02:03:27 -0800486
Daniel Vetterb79480b2013-06-27 17:52:10 +0200487 assert_spin_locked(&dev_priv->irq_lock);
Daniel Vetterd518ce52014-08-27 10:43:37 +0200488 WARN_ON(!intel_irqs_enabled(dev_priv));
Daniel Vetterb79480b2013-06-27 17:52:10 +0200489
Ville Syrjälä04feced2014-04-03 13:28:33 +0300490 if (WARN_ONCE(enable_mask & ~PIPESTAT_INT_ENABLE_MASK ||
491 status_mask & ~PIPESTAT_INT_STATUS_MASK,
492 "pipe %c: enable_mask=0x%x, status_mask=0x%x\n",
493 pipe_name(pipe), enable_mask, status_mask))
Imre Deak755e9012014-02-10 18:42:47 +0200494 return;
495
496 if ((pipestat & enable_mask) == enable_mask)
Ville Syrjälä46c06a32013-02-20 21:16:18 +0200497 return;
498
Imre Deak91d181d2014-02-10 18:42:49 +0200499 dev_priv->pipestat_irq_mask[pipe] |= status_mask;
500
Ville Syrjälä46c06a32013-02-20 21:16:18 +0200501 /* Enable the interrupt, clear any pending status */
Imre Deak755e9012014-02-10 18:42:47 +0200502 pipestat |= enable_mask | status_mask;
Ville Syrjälä46c06a32013-02-20 21:16:18 +0200503 I915_WRITE(reg, pipestat);
504 POSTING_READ(reg);
Keith Packard7c463582008-11-04 02:03:27 -0800505}
506
Daniel Vetterb5ea6422014-03-02 21:18:00 +0100507static void
Imre Deak755e9012014-02-10 18:42:47 +0200508__i915_disable_pipestat(struct drm_i915_private *dev_priv, enum pipe pipe,
509 u32 enable_mask, u32 status_mask)
Keith Packard7c463582008-11-04 02:03:27 -0800510{
Ville Syrjäläf0f59a02015-11-18 15:33:26 +0200511 i915_reg_t reg = PIPESTAT(pipe);
Imre Deak755e9012014-02-10 18:42:47 +0200512 u32 pipestat = I915_READ(reg) & PIPESTAT_INT_ENABLE_MASK;
Keith Packard7c463582008-11-04 02:03:27 -0800513
Daniel Vetterb79480b2013-06-27 17:52:10 +0200514 assert_spin_locked(&dev_priv->irq_lock);
Daniel Vetterd518ce52014-08-27 10:43:37 +0200515 WARN_ON(!intel_irqs_enabled(dev_priv));
Daniel Vetterb79480b2013-06-27 17:52:10 +0200516
Ville Syrjälä04feced2014-04-03 13:28:33 +0300517 if (WARN_ONCE(enable_mask & ~PIPESTAT_INT_ENABLE_MASK ||
518 status_mask & ~PIPESTAT_INT_STATUS_MASK,
519 "pipe %c: enable_mask=0x%x, status_mask=0x%x\n",
520 pipe_name(pipe), enable_mask, status_mask))
Ville Syrjälä46c06a32013-02-20 21:16:18 +0200521 return;
522
Imre Deak755e9012014-02-10 18:42:47 +0200523 if ((pipestat & enable_mask) == 0)
524 return;
525
Imre Deak91d181d2014-02-10 18:42:49 +0200526 dev_priv->pipestat_irq_mask[pipe] &= ~status_mask;
527
Imre Deak755e9012014-02-10 18:42:47 +0200528 pipestat &= ~enable_mask;
Ville Syrjälä46c06a32013-02-20 21:16:18 +0200529 I915_WRITE(reg, pipestat);
530 POSTING_READ(reg);
Keith Packard7c463582008-11-04 02:03:27 -0800531}
532
Imre Deak10c59c52014-02-10 18:42:48 +0200533static u32 vlv_get_pipestat_enable_mask(struct drm_device *dev, u32 status_mask)
534{
535 u32 enable_mask = status_mask << 16;
536
537 /*
Ville Syrjälä724a6902014-04-09 13:28:48 +0300538 * On pipe A we don't support the PSR interrupt yet,
539 * on pipe B and C the same bit MBZ.
Imre Deak10c59c52014-02-10 18:42:48 +0200540 */
541 if (WARN_ON_ONCE(status_mask & PIPE_A_PSR_STATUS_VLV))
542 return 0;
Ville Syrjälä724a6902014-04-09 13:28:48 +0300543 /*
544 * On pipe B and C we don't support the PSR interrupt yet, on pipe
545 * A the same bit is for perf counters which we don't use either.
546 */
547 if (WARN_ON_ONCE(status_mask & PIPE_B_PSR_STATUS_VLV))
548 return 0;
Imre Deak10c59c52014-02-10 18:42:48 +0200549
550 enable_mask &= ~(PIPE_FIFO_UNDERRUN_STATUS |
551 SPRITE0_FLIP_DONE_INT_EN_VLV |
552 SPRITE1_FLIP_DONE_INT_EN_VLV);
553 if (status_mask & SPRITE0_FLIP_DONE_INT_STATUS_VLV)
554 enable_mask |= SPRITE0_FLIP_DONE_INT_EN_VLV;
555 if (status_mask & SPRITE1_FLIP_DONE_INT_STATUS_VLV)
556 enable_mask |= SPRITE1_FLIP_DONE_INT_EN_VLV;
557
558 return enable_mask;
559}
560
Imre Deak755e9012014-02-10 18:42:47 +0200561void
562i915_enable_pipestat(struct drm_i915_private *dev_priv, enum pipe pipe,
563 u32 status_mask)
564{
565 u32 enable_mask;
566
Wayne Boyer666a4532015-12-09 12:29:35 -0800567 if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv))
Imre Deak10c59c52014-02-10 18:42:48 +0200568 enable_mask = vlv_get_pipestat_enable_mask(dev_priv->dev,
569 status_mask);
570 else
571 enable_mask = status_mask << 16;
Imre Deak755e9012014-02-10 18:42:47 +0200572 __i915_enable_pipestat(dev_priv, pipe, enable_mask, status_mask);
573}
574
575void
576i915_disable_pipestat(struct drm_i915_private *dev_priv, enum pipe pipe,
577 u32 status_mask)
578{
579 u32 enable_mask;
580
Wayne Boyer666a4532015-12-09 12:29:35 -0800581 if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv))
Imre Deak10c59c52014-02-10 18:42:48 +0200582 enable_mask = vlv_get_pipestat_enable_mask(dev_priv->dev,
583 status_mask);
584 else
585 enable_mask = status_mask << 16;
Imre Deak755e9012014-02-10 18:42:47 +0200586 __i915_disable_pipestat(dev_priv, pipe, enable_mask, status_mask);
587}
588
=?utf-8?q?Michel_D=C3=A4nzer?=a6b54f32006-10-24 23:37:43 +1000589/**
Jani Nikulaf49e38d2013-04-29 13:02:54 +0300590 * i915_enable_asle_pipestat - enable ASLE pipestat for OpRegion
Tvrtko Ursulin14bb2c12016-06-03 14:02:17 +0100591 * @dev_priv: i915 device private
Zhao Yakui01c66882009-10-28 05:10:00 +0000592 */
Tvrtko Ursulin91d14252016-05-06 14:48:28 +0100593static void i915_enable_asle_pipestat(struct drm_i915_private *dev_priv)
Zhao Yakui01c66882009-10-28 05:10:00 +0000594{
Tvrtko Ursulin91d14252016-05-06 14:48:28 +0100595 if (!dev_priv->opregion.asle || !IS_MOBILE(dev_priv))
Jani Nikulaf49e38d2013-04-29 13:02:54 +0300596 return;
597
Daniel Vetter13321782014-09-15 14:55:29 +0200598 spin_lock_irq(&dev_priv->irq_lock);
Zhao Yakui01c66882009-10-28 05:10:00 +0000599
Imre Deak755e9012014-02-10 18:42:47 +0200600 i915_enable_pipestat(dev_priv, PIPE_B, PIPE_LEGACY_BLC_EVENT_STATUS);
Tvrtko Ursulin91d14252016-05-06 14:48:28 +0100601 if (INTEL_GEN(dev_priv) >= 4)
Daniel Vetter3b6c42e2013-10-21 18:04:35 +0200602 i915_enable_pipestat(dev_priv, PIPE_A,
Imre Deak755e9012014-02-10 18:42:47 +0200603 PIPE_LEGACY_BLC_EVENT_STATUS);
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000604
Daniel Vetter13321782014-09-15 14:55:29 +0200605 spin_unlock_irq(&dev_priv->irq_lock);
Zhao Yakui01c66882009-10-28 05:10:00 +0000606}
607
Ville Syrjäläf75f3742014-05-15 20:20:36 +0300608/*
609 * This timing diagram depicts the video signal in and
610 * around the vertical blanking period.
611 *
612 * Assumptions about the fictitious mode used in this example:
613 * vblank_start >= 3
614 * vsync_start = vblank_start + 1
615 * vsync_end = vblank_start + 2
616 * vtotal = vblank_start + 3
617 *
618 * start of vblank:
619 * latch double buffered registers
620 * increment frame counter (ctg+)
621 * generate start of vblank interrupt (gen4+)
622 * |
623 * | frame start:
624 * | generate frame start interrupt (aka. vblank interrupt) (gmch)
625 * | may be shifted forward 1-3 extra lines via PIPECONF
626 * | |
627 * | | start of vsync:
628 * | | generate vsync interrupt
629 * | | |
630 * ___xxxx___ ___xxxx___ ___xxxx___ ___xxxx___ ___xxxx___ ___xxxx
631 * . \hs/ . \hs/ \hs/ \hs/ . \hs/
632 * ----va---> <-----------------vb--------------------> <--------va-------------
633 * | | <----vs-----> |
634 * -vbs-----> <---vbs+1---> <---vbs+2---> <-----0-----> <-----1-----> <-----2--- (scanline counter gen2)
635 * -vbs-2---> <---vbs-1---> <---vbs-----> <---vbs+1---> <---vbs+2---> <-----0--- (scanline counter gen3+)
636 * -vbs-2---> <---vbs-2---> <---vbs-1---> <---vbs-----> <---vbs+1---> <---vbs+2- (scanline counter hsw+ hdmi)
637 * | | |
638 * last visible pixel first visible pixel
639 * | increment frame counter (gen3/4)
640 * pixel counter = vblank_start * htotal pixel counter = 0 (gen3/4)
641 *
642 * x = horizontal active
643 * _ = horizontal blanking
644 * hs = horizontal sync
645 * va = vertical active
646 * vb = vertical blanking
647 * vs = vertical sync
648 * vbs = vblank_start (number)
649 *
650 * Summary:
651 * - most events happen at the start of horizontal sync
652 * - frame start happens at the start of horizontal blank, 1-4 lines
653 * (depending on PIPECONF settings) after the start of vblank
654 * - gen3/4 pixel and frame counter are synchronized with the start
655 * of horizontal active on the first line of vertical active
656 */
657
Thierry Reding88e72712015-09-24 18:35:31 +0200658static u32 i8xx_get_vblank_counter(struct drm_device *dev, unsigned int pipe)
Ville Syrjälä4cdb83e2013-10-11 21:52:44 +0300659{
660 /* Gen2 doesn't have a hardware frame counter */
661 return 0;
662}
663
Keith Packard42f52ef2008-10-18 19:39:29 -0700664/* Called from drm generic code, passed a 'crtc', which
665 * we use as a pipe index
666 */
Thierry Reding88e72712015-09-24 18:35:31 +0200667static u32 i915_get_vblank_counter(struct drm_device *dev, unsigned int pipe)
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700668{
Jani Nikula2d1013d2014-03-31 14:27:17 +0300669 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjäläf0f59a02015-11-18 15:33:26 +0200670 i915_reg_t high_frame, low_frame;
Ville Syrjälä0b2a8e02014-04-29 13:35:50 +0300671 u32 high1, high2, low, pixel, vbl_start, hsync_start, htotal;
Daniel Vetterf3a5c3f2015-02-13 21:03:44 +0100672 struct intel_crtc *intel_crtc =
673 to_intel_crtc(dev_priv->pipe_to_crtc_mapping[pipe]);
Maarten Lankhorstfc467a222015-06-01 12:50:07 +0200674 const struct drm_display_mode *mode = &intel_crtc->base.hwmode;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700675
Daniel Vetterf3a5c3f2015-02-13 21:03:44 +0100676 htotal = mode->crtc_htotal;
677 hsync_start = mode->crtc_hsync_start;
678 vbl_start = mode->crtc_vblank_start;
679 if (mode->flags & DRM_MODE_FLAG_INTERLACE)
680 vbl_start = DIV_ROUND_UP(vbl_start, 2);
Ville Syrjälä391f75e2013-09-25 19:55:26 +0300681
Ville Syrjälä0b2a8e02014-04-29 13:35:50 +0300682 /* Convert to pixel count */
683 vbl_start *= htotal;
684
685 /* Start of vblank event occurs at start of hsync */
686 vbl_start -= htotal - hsync_start;
687
Jesse Barnes9db4a9c2011-02-07 12:26:52 -0800688 high_frame = PIPEFRAME(pipe);
689 low_frame = PIPEFRAMEPIXEL(pipe);
Chris Wilson5eddb702010-09-11 13:48:45 +0100690
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700691 /*
692 * High & low register fields aren't synchronized, so make sure
693 * we get a low value that's stable across two reads of the high
694 * register.
695 */
696 do {
Chris Wilson5eddb702010-09-11 13:48:45 +0100697 high1 = I915_READ(high_frame) & PIPE_FRAME_HIGH_MASK;
Ville Syrjälä391f75e2013-09-25 19:55:26 +0300698 low = I915_READ(low_frame);
Chris Wilson5eddb702010-09-11 13:48:45 +0100699 high2 = I915_READ(high_frame) & PIPE_FRAME_HIGH_MASK;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700700 } while (high1 != high2);
701
Chris Wilson5eddb702010-09-11 13:48:45 +0100702 high1 >>= PIPE_FRAME_HIGH_SHIFT;
Ville Syrjälä391f75e2013-09-25 19:55:26 +0300703 pixel = low & PIPE_PIXEL_MASK;
Chris Wilson5eddb702010-09-11 13:48:45 +0100704 low >>= PIPE_FRAME_LOW_SHIFT;
Ville Syrjälä391f75e2013-09-25 19:55:26 +0300705
706 /*
707 * The frame counter increments at beginning of active.
708 * Cook up a vblank counter by also checking the pixel
709 * counter against vblank start.
710 */
Ville Syrjäläedc08d02013-11-06 13:56:27 -0200711 return (((high1 << 8) | low) + (pixel >= vbl_start)) & 0xffffff;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700712}
713
Dave Airlie974e59b2015-10-30 09:45:33 +1000714static u32 g4x_get_vblank_counter(struct drm_device *dev, unsigned int pipe)
Jesse Barnes9880b7a2009-02-06 10:22:41 -0800715{
Jani Nikula2d1013d2014-03-31 14:27:17 +0300716 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes9880b7a2009-02-06 10:22:41 -0800717
Ville Syrjälä649636e2015-09-22 19:50:01 +0300718 return I915_READ(PIPE_FRMCOUNT_G4X(pipe));
Jesse Barnes9880b7a2009-02-06 10:22:41 -0800719}
720
Ville Syrjälä75aa3f62015-10-22 15:34:56 +0300721/* I915_READ_FW, only for fast reads of display block, no need for forcewake etc. */
Ville Syrjäläa225f072014-04-29 13:35:45 +0300722static int __intel_get_crtc_scanline(struct intel_crtc *crtc)
723{
724 struct drm_device *dev = crtc->base.dev;
725 struct drm_i915_private *dev_priv = dev->dev_private;
Maarten Lankhorstfc467a222015-06-01 12:50:07 +0200726 const struct drm_display_mode *mode = &crtc->base.hwmode;
Ville Syrjäläa225f072014-04-29 13:35:45 +0300727 enum pipe pipe = crtc->pipe;
Ville Syrjälä80715b22014-05-15 20:23:23 +0300728 int position, vtotal;
Ville Syrjäläa225f072014-04-29 13:35:45 +0300729
Ville Syrjälä80715b22014-05-15 20:23:23 +0300730 vtotal = mode->crtc_vtotal;
Ville Syrjäläa225f072014-04-29 13:35:45 +0300731 if (mode->flags & DRM_MODE_FLAG_INTERLACE)
732 vtotal /= 2;
733
Tvrtko Ursulin91d14252016-05-06 14:48:28 +0100734 if (IS_GEN2(dev_priv))
Ville Syrjälä75aa3f62015-10-22 15:34:56 +0300735 position = I915_READ_FW(PIPEDSL(pipe)) & DSL_LINEMASK_GEN2;
Ville Syrjäläa225f072014-04-29 13:35:45 +0300736 else
Ville Syrjälä75aa3f62015-10-22 15:34:56 +0300737 position = I915_READ_FW(PIPEDSL(pipe)) & DSL_LINEMASK_GEN3;
Ville Syrjäläa225f072014-04-29 13:35:45 +0300738
739 /*
Jesse Barnes41b578f2015-09-22 12:15:54 -0700740 * On HSW, the DSL reg (0x70000) appears to return 0 if we
741 * read it just before the start of vblank. So try it again
742 * so we don't accidentally end up spanning a vblank frame
743 * increment, causing the pipe_update_end() code to squak at us.
744 *
745 * The nature of this problem means we can't simply check the ISR
746 * bit and return the vblank start value; nor can we use the scanline
747 * debug register in the transcoder as it appears to have the same
748 * problem. We may need to extend this to include other platforms,
749 * but so far testing only shows the problem on HSW.
750 */
Tvrtko Ursulin91d14252016-05-06 14:48:28 +0100751 if (HAS_DDI(dev_priv) && !position) {
Jesse Barnes41b578f2015-09-22 12:15:54 -0700752 int i, temp;
753
754 for (i = 0; i < 100; i++) {
755 udelay(1);
756 temp = __raw_i915_read32(dev_priv, PIPEDSL(pipe)) &
757 DSL_LINEMASK_GEN3;
758 if (temp != position) {
759 position = temp;
760 break;
761 }
762 }
763 }
764
765 /*
Ville Syrjälä80715b22014-05-15 20:23:23 +0300766 * See update_scanline_offset() for the details on the
767 * scanline_offset adjustment.
Ville Syrjäläa225f072014-04-29 13:35:45 +0300768 */
Ville Syrjälä80715b22014-05-15 20:23:23 +0300769 return (position + crtc->scanline_offset) % vtotal;
Ville Syrjäläa225f072014-04-29 13:35:45 +0300770}
771
Thierry Reding88e72712015-09-24 18:35:31 +0200772static int i915_get_crtc_scanoutpos(struct drm_device *dev, unsigned int pipe,
Ville Syrjäläabca9e42013-10-28 20:50:48 +0200773 unsigned int flags, int *vpos, int *hpos,
Ville Syrjälä3bb403b2015-09-14 22:43:44 +0300774 ktime_t *stime, ktime_t *etime,
775 const struct drm_display_mode *mode)
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100776{
Ville Syrjäläc2baf4b2013-09-23 14:48:50 +0300777 struct drm_i915_private *dev_priv = dev->dev_private;
778 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
779 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Ville Syrjälä3aa18df2013-10-11 19:10:32 +0300780 int position;
Ville Syrjälä78e8fc62014-04-29 13:35:44 +0300781 int vbl_start, vbl_end, hsync_start, htotal, vtotal;
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100782 bool in_vbl = true;
783 int ret = 0;
Mario Kleinerad3543e2013-10-30 05:13:08 +0100784 unsigned long irqflags;
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100785
Maarten Lankhorstfc467a222015-06-01 12:50:07 +0200786 if (WARN_ON(!mode->crtc_clock)) {
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100787 DRM_DEBUG_DRIVER("trying to get scanoutpos for disabled "
Jesse Barnes9db4a9c2011-02-07 12:26:52 -0800788 "pipe %c\n", pipe_name(pipe));
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100789 return 0;
790 }
791
Ville Syrjäläc2baf4b2013-09-23 14:48:50 +0300792 htotal = mode->crtc_htotal;
Ville Syrjälä78e8fc62014-04-29 13:35:44 +0300793 hsync_start = mode->crtc_hsync_start;
Ville Syrjäläc2baf4b2013-09-23 14:48:50 +0300794 vtotal = mode->crtc_vtotal;
795 vbl_start = mode->crtc_vblank_start;
796 vbl_end = mode->crtc_vblank_end;
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100797
Ville Syrjäläd31faf62013-10-28 16:31:41 +0200798 if (mode->flags & DRM_MODE_FLAG_INTERLACE) {
799 vbl_start = DIV_ROUND_UP(vbl_start, 2);
800 vbl_end /= 2;
801 vtotal /= 2;
802 }
803
Ville Syrjäläc2baf4b2013-09-23 14:48:50 +0300804 ret |= DRM_SCANOUTPOS_VALID | DRM_SCANOUTPOS_ACCURATE;
805
Mario Kleinerad3543e2013-10-30 05:13:08 +0100806 /*
807 * Lock uncore.lock, as we will do multiple timing critical raw
808 * register reads, potentially with preemption disabled, so the
809 * following code must not block on uncore.lock.
810 */
811 spin_lock_irqsave(&dev_priv->uncore.lock, irqflags);
Ville Syrjälä78e8fc62014-04-29 13:35:44 +0300812
Mario Kleinerad3543e2013-10-30 05:13:08 +0100813 /* preempt_disable_rt() should go right here in PREEMPT_RT patchset. */
814
815 /* Get optional system timestamp before query. */
816 if (stime)
817 *stime = ktime_get();
818
Tvrtko Ursulin91d14252016-05-06 14:48:28 +0100819 if (IS_GEN2(dev_priv) || IS_G4X(dev_priv) || INTEL_GEN(dev_priv) >= 5) {
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100820 /* No obvious pixelcount register. Only query vertical
821 * scanout position from Display scan line register.
822 */
Ville Syrjäläa225f072014-04-29 13:35:45 +0300823 position = __intel_get_crtc_scanline(intel_crtc);
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100824 } else {
825 /* Have access to pixelcount since start of frame.
826 * We can split this into vertical and horizontal
827 * scanout position.
828 */
Ville Syrjälä75aa3f62015-10-22 15:34:56 +0300829 position = (I915_READ_FW(PIPEFRAMEPIXEL(pipe)) & PIPE_PIXEL_MASK) >> PIPE_PIXEL_SHIFT;
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100830
Ville Syrjälä3aa18df2013-10-11 19:10:32 +0300831 /* convert to pixel counts */
832 vbl_start *= htotal;
833 vbl_end *= htotal;
834 vtotal *= htotal;
Ville Syrjälä78e8fc62014-04-29 13:35:44 +0300835
836 /*
Ville Syrjälä7e78f1cb2014-04-29 13:35:49 +0300837 * In interlaced modes, the pixel counter counts all pixels,
838 * so one field will have htotal more pixels. In order to avoid
839 * the reported position from jumping backwards when the pixel
840 * counter is beyond the length of the shorter field, just
841 * clamp the position the length of the shorter field. This
842 * matches how the scanline counter based position works since
843 * the scanline counter doesn't count the two half lines.
844 */
845 if (position >= vtotal)
846 position = vtotal - 1;
847
848 /*
Ville Syrjälä78e8fc62014-04-29 13:35:44 +0300849 * Start of vblank interrupt is triggered at start of hsync,
850 * just prior to the first active line of vblank. However we
851 * consider lines to start at the leading edge of horizontal
852 * active. So, should we get here before we've crossed into
853 * the horizontal active of the first line in vblank, we would
854 * not set the DRM_SCANOUTPOS_INVBL flag. In order to fix that,
855 * always add htotal-hsync_start to the current pixel position.
856 */
857 position = (position + htotal - hsync_start) % vtotal;
Ville Syrjälä3aa18df2013-10-11 19:10:32 +0300858 }
859
Mario Kleinerad3543e2013-10-30 05:13:08 +0100860 /* Get optional system timestamp after query. */
861 if (etime)
862 *etime = ktime_get();
863
864 /* preempt_enable_rt() should go right here in PREEMPT_RT patchset. */
865
866 spin_unlock_irqrestore(&dev_priv->uncore.lock, irqflags);
867
Ville Syrjälä3aa18df2013-10-11 19:10:32 +0300868 in_vbl = position >= vbl_start && position < vbl_end;
869
870 /*
871 * While in vblank, position will be negative
872 * counting up towards 0 at vbl_end. And outside
873 * vblank, position will be positive counting
874 * up since vbl_end.
875 */
876 if (position >= vbl_start)
877 position -= vbl_end;
878 else
879 position += vtotal - vbl_end;
880
Tvrtko Ursulin91d14252016-05-06 14:48:28 +0100881 if (IS_GEN2(dev_priv) || IS_G4X(dev_priv) || INTEL_GEN(dev_priv) >= 5) {
Ville Syrjälä3aa18df2013-10-11 19:10:32 +0300882 *vpos = position;
883 *hpos = 0;
884 } else {
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100885 *vpos = position / htotal;
886 *hpos = position - (*vpos * htotal);
887 }
888
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100889 /* In vblank? */
890 if (in_vbl)
Daniel Vetter3d3cbd82014-09-10 17:36:11 +0200891 ret |= DRM_SCANOUTPOS_IN_VBLANK;
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100892
893 return ret;
894}
895
Ville Syrjäläa225f072014-04-29 13:35:45 +0300896int intel_get_crtc_scanline(struct intel_crtc *crtc)
897{
898 struct drm_i915_private *dev_priv = crtc->base.dev->dev_private;
899 unsigned long irqflags;
900 int position;
901
902 spin_lock_irqsave(&dev_priv->uncore.lock, irqflags);
903 position = __intel_get_crtc_scanline(crtc);
904 spin_unlock_irqrestore(&dev_priv->uncore.lock, irqflags);
905
906 return position;
907}
908
Thierry Reding88e72712015-09-24 18:35:31 +0200909static int i915_get_vblank_timestamp(struct drm_device *dev, unsigned int pipe,
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100910 int *max_error,
911 struct timeval *vblank_time,
912 unsigned flags)
913{
Chris Wilson4041b852011-01-22 10:07:56 +0000914 struct drm_crtc *crtc;
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100915
Thierry Reding88e72712015-09-24 18:35:31 +0200916 if (pipe >= INTEL_INFO(dev)->num_pipes) {
917 DRM_ERROR("Invalid crtc %u\n", pipe);
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100918 return -EINVAL;
919 }
920
921 /* Get drm_crtc to timestamp: */
Chris Wilson4041b852011-01-22 10:07:56 +0000922 crtc = intel_get_crtc_for_pipe(dev, pipe);
923 if (crtc == NULL) {
Thierry Reding88e72712015-09-24 18:35:31 +0200924 DRM_ERROR("Invalid crtc %u\n", pipe);
Chris Wilson4041b852011-01-22 10:07:56 +0000925 return -EINVAL;
926 }
927
Maarten Lankhorstfc467a222015-06-01 12:50:07 +0200928 if (!crtc->hwmode.crtc_clock) {
Thierry Reding88e72712015-09-24 18:35:31 +0200929 DRM_DEBUG_KMS("crtc %u is disabled\n", pipe);
Chris Wilson4041b852011-01-22 10:07:56 +0000930 return -EBUSY;
931 }
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100932
933 /* Helper routine in DRM core does all the work: */
Chris Wilson4041b852011-01-22 10:07:56 +0000934 return drm_calc_vbltimestamp_from_scanoutpos(dev, pipe, max_error,
935 vblank_time, flags,
Maarten Lankhorstfc467a222015-06-01 12:50:07 +0200936 &crtc->hwmode);
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100937}
938
Tvrtko Ursulin91d14252016-05-06 14:48:28 +0100939static void ironlake_rps_change_irq_handler(struct drm_i915_private *dev_priv)
Jesse Barnesf97108d2010-01-29 11:27:07 -0800940{
Matthew Garrettb5b72e82010-02-02 18:30:47 +0000941 u32 busy_up, busy_down, max_avg, min_avg;
Daniel Vetter92703882012-08-09 16:46:01 +0200942 u8 new_delay;
Daniel Vetter92703882012-08-09 16:46:01 +0200943
Daniel Vetterd0ecd7e2013-07-04 23:35:25 +0200944 spin_lock(&mchdev_lock);
Jesse Barnesf97108d2010-01-29 11:27:07 -0800945
Daniel Vetter73edd18f2012-08-08 23:35:37 +0200946 I915_WRITE16(MEMINTRSTS, I915_READ(MEMINTRSTS));
947
Daniel Vetter20e4d402012-08-08 23:35:39 +0200948 new_delay = dev_priv->ips.cur_delay;
Daniel Vetter92703882012-08-09 16:46:01 +0200949
Jesse Barnes7648fa92010-05-20 14:28:11 -0700950 I915_WRITE16(MEMINTRSTS, MEMINT_EVAL_CHG);
Matthew Garrettb5b72e82010-02-02 18:30:47 +0000951 busy_up = I915_READ(RCPREVBSYTUPAVG);
952 busy_down = I915_READ(RCPREVBSYTDNAVG);
Jesse Barnesf97108d2010-01-29 11:27:07 -0800953 max_avg = I915_READ(RCBMAXAVG);
954 min_avg = I915_READ(RCBMINAVG);
955
956 /* Handle RCS change request from hw */
Matthew Garrettb5b72e82010-02-02 18:30:47 +0000957 if (busy_up > max_avg) {
Daniel Vetter20e4d402012-08-08 23:35:39 +0200958 if (dev_priv->ips.cur_delay != dev_priv->ips.max_delay)
959 new_delay = dev_priv->ips.cur_delay - 1;
960 if (new_delay < dev_priv->ips.max_delay)
961 new_delay = dev_priv->ips.max_delay;
Matthew Garrettb5b72e82010-02-02 18:30:47 +0000962 } else if (busy_down < min_avg) {
Daniel Vetter20e4d402012-08-08 23:35:39 +0200963 if (dev_priv->ips.cur_delay != dev_priv->ips.min_delay)
964 new_delay = dev_priv->ips.cur_delay + 1;
965 if (new_delay > dev_priv->ips.min_delay)
966 new_delay = dev_priv->ips.min_delay;
Jesse Barnesf97108d2010-01-29 11:27:07 -0800967 }
968
Tvrtko Ursulin91d14252016-05-06 14:48:28 +0100969 if (ironlake_set_drps(dev_priv, new_delay))
Daniel Vetter20e4d402012-08-08 23:35:39 +0200970 dev_priv->ips.cur_delay = new_delay;
Jesse Barnesf97108d2010-01-29 11:27:07 -0800971
Daniel Vetterd0ecd7e2013-07-04 23:35:25 +0200972 spin_unlock(&mchdev_lock);
Daniel Vetter92703882012-08-09 16:46:01 +0200973
Jesse Barnesf97108d2010-01-29 11:27:07 -0800974 return;
975}
976
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +0000977static void notify_ring(struct intel_engine_cs *engine)
Chris Wilson549f7362010-10-19 11:19:32 +0100978{
Chris Wilson3d5564e2016-07-01 17:23:23 +0100979 smp_store_mb(engine->irq_posted, true);
Chris Wilson688e6c72016-07-01 17:23:15 +0100980 if (intel_engine_wakeup(engine)) {
981 trace_i915_gem_request_notify(engine);
982 engine->user_interrupts++;
983 }
Chris Wilson549f7362010-10-19 11:19:32 +0100984}
985
Chris Wilson43cf3bf2015-03-18 09:48:22 +0000986static void vlv_c0_read(struct drm_i915_private *dev_priv,
987 struct intel_rps_ei *ei)
Deepak S31685c22014-07-03 17:33:01 -0400988{
Chris Wilson43cf3bf2015-03-18 09:48:22 +0000989 ei->cz_clock = vlv_punit_read(dev_priv, PUNIT_REG_CZ_TIMESTAMP);
990 ei->render_c0 = I915_READ(VLV_RENDER_C0_COUNT);
991 ei->media_c0 = I915_READ(VLV_MEDIA_C0_COUNT);
Deepak S31685c22014-07-03 17:33:01 -0400992}
993
Chris Wilson43cf3bf2015-03-18 09:48:22 +0000994static bool vlv_c0_above(struct drm_i915_private *dev_priv,
995 const struct intel_rps_ei *old,
996 const struct intel_rps_ei *now,
997 int threshold)
Deepak S31685c22014-07-03 17:33:01 -0400998{
Chris Wilson43cf3bf2015-03-18 09:48:22 +0000999 u64 time, c0;
Ville Syrjälä7bad74d2015-09-24 23:29:20 +03001000 unsigned int mul = 100;
Deepak S31685c22014-07-03 17:33:01 -04001001
Chris Wilson43cf3bf2015-03-18 09:48:22 +00001002 if (old->cz_clock == 0)
1003 return false;
Deepak S31685c22014-07-03 17:33:01 -04001004
Ville Syrjälä7bad74d2015-09-24 23:29:20 +03001005 if (I915_READ(VLV_COUNTER_CONTROL) & VLV_COUNT_RANGE_HIGH)
1006 mul <<= 8;
1007
Chris Wilson43cf3bf2015-03-18 09:48:22 +00001008 time = now->cz_clock - old->cz_clock;
Ville Syrjälä7bad74d2015-09-24 23:29:20 +03001009 time *= threshold * dev_priv->czclk_freq;
Deepak S31685c22014-07-03 17:33:01 -04001010
Chris Wilson43cf3bf2015-03-18 09:48:22 +00001011 /* Workload can be split between render + media, e.g. SwapBuffers
1012 * being blitted in X after being rendered in mesa. To account for
1013 * this we need to combine both engines into our activity counter.
1014 */
1015 c0 = now->render_c0 - old->render_c0;
1016 c0 += now->media_c0 - old->media_c0;
Ville Syrjälä7bad74d2015-09-24 23:29:20 +03001017 c0 *= mul * VLV_CZ_CLOCK_TO_MILLI_SEC;
Deepak S31685c22014-07-03 17:33:01 -04001018
Chris Wilson43cf3bf2015-03-18 09:48:22 +00001019 return c0 >= time;
1020}
Deepak S31685c22014-07-03 17:33:01 -04001021
Chris Wilson43cf3bf2015-03-18 09:48:22 +00001022void gen6_rps_reset_ei(struct drm_i915_private *dev_priv)
1023{
1024 vlv_c0_read(dev_priv, &dev_priv->rps.down_ei);
1025 dev_priv->rps.up_ei = dev_priv->rps.down_ei;
Chris Wilson43cf3bf2015-03-18 09:48:22 +00001026}
1027
1028static u32 vlv_wa_c0_ei(struct drm_i915_private *dev_priv, u32 pm_iir)
1029{
1030 struct intel_rps_ei now;
1031 u32 events = 0;
1032
Chris Wilson6f4b12f82015-03-18 09:48:23 +00001033 if ((pm_iir & (GEN6_PM_RP_DOWN_EI_EXPIRED | GEN6_PM_RP_UP_EI_EXPIRED)) == 0)
Chris Wilson43cf3bf2015-03-18 09:48:22 +00001034 return 0;
1035
1036 vlv_c0_read(dev_priv, &now);
1037 if (now.cz_clock == 0)
1038 return 0;
Deepak S31685c22014-07-03 17:33:01 -04001039
Chris Wilson43cf3bf2015-03-18 09:48:22 +00001040 if (pm_iir & GEN6_PM_RP_DOWN_EI_EXPIRED) {
1041 if (!vlv_c0_above(dev_priv,
1042 &dev_priv->rps.down_ei, &now,
Chris Wilson8fb55192015-04-07 16:20:28 +01001043 dev_priv->rps.down_threshold))
Chris Wilson43cf3bf2015-03-18 09:48:22 +00001044 events |= GEN6_PM_RP_DOWN_THRESHOLD;
1045 dev_priv->rps.down_ei = now;
Deepak S31685c22014-07-03 17:33:01 -04001046 }
1047
Chris Wilson43cf3bf2015-03-18 09:48:22 +00001048 if (pm_iir & GEN6_PM_RP_UP_EI_EXPIRED) {
1049 if (vlv_c0_above(dev_priv,
1050 &dev_priv->rps.up_ei, &now,
Chris Wilson8fb55192015-04-07 16:20:28 +01001051 dev_priv->rps.up_threshold))
Chris Wilson43cf3bf2015-03-18 09:48:22 +00001052 events |= GEN6_PM_RP_UP_THRESHOLD;
1053 dev_priv->rps.up_ei = now;
1054 }
1055
1056 return events;
Deepak S31685c22014-07-03 17:33:01 -04001057}
1058
Chris Wilsonf5a4c672015-04-27 13:41:23 +01001059static bool any_waiters(struct drm_i915_private *dev_priv)
1060{
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00001061 struct intel_engine_cs *engine;
Chris Wilsonf5a4c672015-04-27 13:41:23 +01001062
Dave Gordonb4ac5af2016-03-24 11:20:38 +00001063 for_each_engine(engine, dev_priv)
Chris Wilson688e6c72016-07-01 17:23:15 +01001064 if (intel_engine_has_waiter(engine))
Chris Wilsonf5a4c672015-04-27 13:41:23 +01001065 return true;
1066
1067 return false;
1068}
1069
Ben Widawsky4912d042011-04-25 11:25:20 -07001070static void gen6_pm_rps_work(struct work_struct *work)
Jesse Barnes3b8d8d92010-12-17 14:19:02 -08001071{
Jani Nikula2d1013d2014-03-31 14:27:17 +03001072 struct drm_i915_private *dev_priv =
1073 container_of(work, struct drm_i915_private, rps.work);
Chris Wilson8d3afd72015-05-21 21:01:47 +01001074 bool client_boost;
1075 int new_delay, adj, min, max;
Paulo Zanoniedbfdb42013-08-06 18:57:13 -03001076 u32 pm_iir;
Jesse Barnes3b8d8d92010-12-17 14:19:02 -08001077
Daniel Vetter59cdb632013-07-04 23:35:28 +02001078 spin_lock_irq(&dev_priv->irq_lock);
Imre Deakd4d70aa2014-11-19 15:30:04 +02001079 /* Speed up work cancelation during disabling rps interrupts. */
1080 if (!dev_priv->rps.interrupts_enabled) {
1081 spin_unlock_irq(&dev_priv->irq_lock);
1082 return;
1083 }
Imre Deak1f814da2015-12-16 02:52:19 +02001084
1085 /*
1086 * The RPS work is synced during runtime suspend, we don't require a
1087 * wakeref. TODO: instead of disabling the asserts make sure that we
1088 * always hold an RPM reference while the work is running.
1089 */
1090 DISABLE_RPM_WAKEREF_ASSERTS(dev_priv);
1091
Daniel Vetterc6a828d2012-08-08 23:35:35 +02001092 pm_iir = dev_priv->rps.pm_iir;
1093 dev_priv->rps.pm_iir = 0;
Imre Deaka72fbc32014-11-05 20:48:31 +02001094 /* Make sure not to corrupt PMIMR state used by ringbuffer on GEN6 */
1095 gen6_enable_pm_irq(dev_priv, dev_priv->pm_rps_events);
Chris Wilson8d3afd72015-05-21 21:01:47 +01001096 client_boost = dev_priv->rps.client_boost;
1097 dev_priv->rps.client_boost = false;
Daniel Vetter59cdb632013-07-04 23:35:28 +02001098 spin_unlock_irq(&dev_priv->irq_lock);
Ben Widawsky4912d042011-04-25 11:25:20 -07001099
Paulo Zanoni60611c12013-08-15 11:50:01 -03001100 /* Make sure we didn't queue anything we're not going to process. */
Deepak Sa6706b42014-03-15 20:23:22 +05301101 WARN_ON(pm_iir & ~dev_priv->pm_rps_events);
Paulo Zanoni60611c12013-08-15 11:50:01 -03001102
Chris Wilson8d3afd72015-05-21 21:01:47 +01001103 if ((pm_iir & dev_priv->pm_rps_events) == 0 && !client_boost)
Imre Deak1f814da2015-12-16 02:52:19 +02001104 goto out;
Jesse Barnes3b8d8d92010-12-17 14:19:02 -08001105
Jesse Barnes4fc688c2012-11-02 11:14:01 -07001106 mutex_lock(&dev_priv->rps.hw_lock);
Chris Wilson7b9e0ae2012-04-28 08:56:39 +01001107
Chris Wilson43cf3bf2015-03-18 09:48:22 +00001108 pm_iir |= vlv_wa_c0_ei(dev_priv, pm_iir);
1109
Chris Wilsondd75fdc2013-09-25 17:34:57 +01001110 adj = dev_priv->rps.last_adj;
Chris Wilsonedcf2842015-04-07 16:20:29 +01001111 new_delay = dev_priv->rps.cur_freq;
Chris Wilson8d3afd72015-05-21 21:01:47 +01001112 min = dev_priv->rps.min_freq_softlimit;
1113 max = dev_priv->rps.max_freq_softlimit;
1114
1115 if (client_boost) {
1116 new_delay = dev_priv->rps.max_freq_softlimit;
1117 adj = 0;
1118 } else if (pm_iir & GEN6_PM_RP_UP_THRESHOLD) {
Chris Wilsondd75fdc2013-09-25 17:34:57 +01001119 if (adj > 0)
1120 adj *= 2;
Chris Wilsonedcf2842015-04-07 16:20:29 +01001121 else /* CHV needs even encode values */
1122 adj = IS_CHERRYVIEW(dev_priv) ? 2 : 1;
Ville Syrjälä74250342013-06-25 21:38:11 +03001123 /*
1124 * For better performance, jump directly
1125 * to RPe if we're below it.
1126 */
Chris Wilsonedcf2842015-04-07 16:20:29 +01001127 if (new_delay < dev_priv->rps.efficient_freq - adj) {
Ben Widawskyb39fb292014-03-19 18:31:11 -07001128 new_delay = dev_priv->rps.efficient_freq;
Chris Wilsonedcf2842015-04-07 16:20:29 +01001129 adj = 0;
1130 }
Chris Wilsonf5a4c672015-04-27 13:41:23 +01001131 } else if (any_waiters(dev_priv)) {
1132 adj = 0;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01001133 } else if (pm_iir & GEN6_PM_RP_DOWN_TIMEOUT) {
Ben Widawskyb39fb292014-03-19 18:31:11 -07001134 if (dev_priv->rps.cur_freq > dev_priv->rps.efficient_freq)
1135 new_delay = dev_priv->rps.efficient_freq;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01001136 else
Ben Widawskyb39fb292014-03-19 18:31:11 -07001137 new_delay = dev_priv->rps.min_freq_softlimit;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01001138 adj = 0;
1139 } else if (pm_iir & GEN6_PM_RP_DOWN_THRESHOLD) {
1140 if (adj < 0)
1141 adj *= 2;
Chris Wilsonedcf2842015-04-07 16:20:29 +01001142 else /* CHV needs even encode values */
1143 adj = IS_CHERRYVIEW(dev_priv) ? -2 : -1;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01001144 } else { /* unknown event */
Chris Wilsonedcf2842015-04-07 16:20:29 +01001145 adj = 0;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01001146 }
Jesse Barnes3b8d8d92010-12-17 14:19:02 -08001147
Chris Wilsonedcf2842015-04-07 16:20:29 +01001148 dev_priv->rps.last_adj = adj;
1149
Ben Widawsky79249632012-09-07 19:43:42 -07001150 /* sysfs frequency interfaces may have snuck in while servicing the
1151 * interrupt
1152 */
Chris Wilsonedcf2842015-04-07 16:20:29 +01001153 new_delay += adj;
Chris Wilson8d3afd72015-05-21 21:01:47 +01001154 new_delay = clamp_t(int, new_delay, min, max);
Deepak S27544362014-01-27 21:35:05 +05301155
Chris Wilsondc979972016-05-10 14:10:04 +01001156 intel_set_rps(dev_priv, new_delay);
Jesse Barnes3b8d8d92010-12-17 14:19:02 -08001157
Jesse Barnes4fc688c2012-11-02 11:14:01 -07001158 mutex_unlock(&dev_priv->rps.hw_lock);
Imre Deak1f814da2015-12-16 02:52:19 +02001159out:
1160 ENABLE_RPM_WAKEREF_ASSERTS(dev_priv);
Jesse Barnes3b8d8d92010-12-17 14:19:02 -08001161}
1162
Ben Widawskye3689192012-05-25 16:56:22 -07001163
1164/**
1165 * ivybridge_parity_work - Workqueue called when a parity error interrupt
1166 * occurred.
1167 * @work: workqueue struct
1168 *
1169 * Doesn't actually do anything except notify userspace. As a consequence of
1170 * this event, userspace should try to remap the bad rows since statistically
1171 * it is likely the same row is more likely to go bad again.
1172 */
1173static void ivybridge_parity_work(struct work_struct *work)
1174{
Jani Nikula2d1013d2014-03-31 14:27:17 +03001175 struct drm_i915_private *dev_priv =
1176 container_of(work, struct drm_i915_private, l3_parity.error_work);
Ben Widawskye3689192012-05-25 16:56:22 -07001177 u32 error_status, row, bank, subbank;
Ben Widawsky35a85ac2013-09-19 11:13:41 -07001178 char *parity_event[6];
Ben Widawskye3689192012-05-25 16:56:22 -07001179 uint32_t misccpctl;
Ben Widawsky35a85ac2013-09-19 11:13:41 -07001180 uint8_t slice = 0;
Ben Widawskye3689192012-05-25 16:56:22 -07001181
1182 /* We must turn off DOP level clock gating to access the L3 registers.
1183 * In order to prevent a get/put style interface, acquire struct mutex
1184 * any time we access those registers.
1185 */
1186 mutex_lock(&dev_priv->dev->struct_mutex);
1187
Ben Widawsky35a85ac2013-09-19 11:13:41 -07001188 /* If we've screwed up tracking, just let the interrupt fire again */
1189 if (WARN_ON(!dev_priv->l3_parity.which_slice))
1190 goto out;
1191
Ben Widawskye3689192012-05-25 16:56:22 -07001192 misccpctl = I915_READ(GEN7_MISCCPCTL);
1193 I915_WRITE(GEN7_MISCCPCTL, misccpctl & ~GEN7_DOP_CLOCK_GATE_ENABLE);
1194 POSTING_READ(GEN7_MISCCPCTL);
1195
Ben Widawsky35a85ac2013-09-19 11:13:41 -07001196 while ((slice = ffs(dev_priv->l3_parity.which_slice)) != 0) {
Ville Syrjäläf0f59a02015-11-18 15:33:26 +02001197 i915_reg_t reg;
Ben Widawskye3689192012-05-25 16:56:22 -07001198
Ben Widawsky35a85ac2013-09-19 11:13:41 -07001199 slice--;
Joonas Lahtinen2d1fe072016-04-07 11:08:05 +03001200 if (WARN_ON_ONCE(slice >= NUM_L3_SLICES(dev_priv)))
Ben Widawsky35a85ac2013-09-19 11:13:41 -07001201 break;
1202
1203 dev_priv->l3_parity.which_slice &= ~(1<<slice);
1204
Ville Syrjälä6fa1c5f2015-11-04 23:20:02 +02001205 reg = GEN7_L3CDERRST1(slice);
Ben Widawsky35a85ac2013-09-19 11:13:41 -07001206
1207 error_status = I915_READ(reg);
1208 row = GEN7_PARITY_ERROR_ROW(error_status);
1209 bank = GEN7_PARITY_ERROR_BANK(error_status);
1210 subbank = GEN7_PARITY_ERROR_SUBBANK(error_status);
1211
1212 I915_WRITE(reg, GEN7_PARITY_ERROR_VALID | GEN7_L3CDERRST1_ENABLE);
1213 POSTING_READ(reg);
1214
1215 parity_event[0] = I915_L3_PARITY_UEVENT "=1";
1216 parity_event[1] = kasprintf(GFP_KERNEL, "ROW=%d", row);
1217 parity_event[2] = kasprintf(GFP_KERNEL, "BANK=%d", bank);
1218 parity_event[3] = kasprintf(GFP_KERNEL, "SUBBANK=%d", subbank);
1219 parity_event[4] = kasprintf(GFP_KERNEL, "SLICE=%d", slice);
1220 parity_event[5] = NULL;
1221
Dave Airlie5bdebb12013-10-11 14:07:25 +10001222 kobject_uevent_env(&dev_priv->dev->primary->kdev->kobj,
Ben Widawsky35a85ac2013-09-19 11:13:41 -07001223 KOBJ_CHANGE, parity_event);
1224
1225 DRM_DEBUG("Parity error: Slice = %d, Row = %d, Bank = %d, Sub bank = %d.\n",
1226 slice, row, bank, subbank);
1227
1228 kfree(parity_event[4]);
1229 kfree(parity_event[3]);
1230 kfree(parity_event[2]);
1231 kfree(parity_event[1]);
1232 }
Ben Widawskye3689192012-05-25 16:56:22 -07001233
1234 I915_WRITE(GEN7_MISCCPCTL, misccpctl);
1235
Ben Widawsky35a85ac2013-09-19 11:13:41 -07001236out:
1237 WARN_ON(dev_priv->l3_parity.which_slice);
Daniel Vetter4cb21832014-09-15 14:55:26 +02001238 spin_lock_irq(&dev_priv->irq_lock);
Joonas Lahtinen2d1fe072016-04-07 11:08:05 +03001239 gen5_enable_gt_irq(dev_priv, GT_PARITY_ERROR(dev_priv));
Daniel Vetter4cb21832014-09-15 14:55:26 +02001240 spin_unlock_irq(&dev_priv->irq_lock);
Ben Widawskye3689192012-05-25 16:56:22 -07001241
1242 mutex_unlock(&dev_priv->dev->struct_mutex);
Ben Widawskye3689192012-05-25 16:56:22 -07001243}
1244
Ville Syrjälä261e40b2016-04-13 21:19:57 +03001245static void ivybridge_parity_error_irq_handler(struct drm_i915_private *dev_priv,
1246 u32 iir)
Ben Widawskye3689192012-05-25 16:56:22 -07001247{
Ville Syrjälä261e40b2016-04-13 21:19:57 +03001248 if (!HAS_L3_DPF(dev_priv))
Ben Widawskye3689192012-05-25 16:56:22 -07001249 return;
1250
Daniel Vetterd0ecd7e2013-07-04 23:35:25 +02001251 spin_lock(&dev_priv->irq_lock);
Ville Syrjälä261e40b2016-04-13 21:19:57 +03001252 gen5_disable_gt_irq(dev_priv, GT_PARITY_ERROR(dev_priv));
Daniel Vetterd0ecd7e2013-07-04 23:35:25 +02001253 spin_unlock(&dev_priv->irq_lock);
Ben Widawskye3689192012-05-25 16:56:22 -07001254
Ville Syrjälä261e40b2016-04-13 21:19:57 +03001255 iir &= GT_PARITY_ERROR(dev_priv);
Ben Widawsky35a85ac2013-09-19 11:13:41 -07001256 if (iir & GT_RENDER_L3_PARITY_ERROR_INTERRUPT_S1)
1257 dev_priv->l3_parity.which_slice |= 1 << 1;
1258
1259 if (iir & GT_RENDER_L3_PARITY_ERROR_INTERRUPT)
1260 dev_priv->l3_parity.which_slice |= 1 << 0;
1261
Daniel Vettera4da4fa2012-11-02 19:55:07 +01001262 queue_work(dev_priv->wq, &dev_priv->l3_parity.error_work);
Ben Widawskye3689192012-05-25 16:56:22 -07001263}
1264
Ville Syrjälä261e40b2016-04-13 21:19:57 +03001265static void ilk_gt_irq_handler(struct drm_i915_private *dev_priv,
Paulo Zanonif1af8fc2013-07-12 19:56:30 -03001266 u32 gt_iir)
1267{
Chris Wilsonf8973c22016-07-01 17:23:21 +01001268 if (gt_iir & GT_RENDER_USER_INTERRUPT)
Tvrtko Ursulin4a570db2016-03-16 11:00:38 +00001269 notify_ring(&dev_priv->engine[RCS]);
Paulo Zanonif1af8fc2013-07-12 19:56:30 -03001270 if (gt_iir & ILK_BSD_USER_INTERRUPT)
Tvrtko Ursulin4a570db2016-03-16 11:00:38 +00001271 notify_ring(&dev_priv->engine[VCS]);
Paulo Zanonif1af8fc2013-07-12 19:56:30 -03001272}
1273
Ville Syrjälä261e40b2016-04-13 21:19:57 +03001274static void snb_gt_irq_handler(struct drm_i915_private *dev_priv,
Daniel Vettere7b4c6b2012-03-30 20:24:35 +02001275 u32 gt_iir)
1276{
Chris Wilsonf8973c22016-07-01 17:23:21 +01001277 if (gt_iir & GT_RENDER_USER_INTERRUPT)
Tvrtko Ursulin4a570db2016-03-16 11:00:38 +00001278 notify_ring(&dev_priv->engine[RCS]);
Ben Widawskycc609d52013-05-28 19:22:29 -07001279 if (gt_iir & GT_BSD_USER_INTERRUPT)
Tvrtko Ursulin4a570db2016-03-16 11:00:38 +00001280 notify_ring(&dev_priv->engine[VCS]);
Ben Widawskycc609d52013-05-28 19:22:29 -07001281 if (gt_iir & GT_BLT_USER_INTERRUPT)
Tvrtko Ursulin4a570db2016-03-16 11:00:38 +00001282 notify_ring(&dev_priv->engine[BCS]);
Daniel Vettere7b4c6b2012-03-30 20:24:35 +02001283
Ben Widawskycc609d52013-05-28 19:22:29 -07001284 if (gt_iir & (GT_BLT_CS_ERROR_INTERRUPT |
1285 GT_BSD_CS_ERROR_INTERRUPT |
Daniel Vetteraaecdf62014-11-04 15:52:22 +01001286 GT_RENDER_CS_MASTER_ERROR_INTERRUPT))
1287 DRM_DEBUG("Command parser error, gt_iir 0x%08x\n", gt_iir);
Ben Widawskye3689192012-05-25 16:56:22 -07001288
Ville Syrjälä261e40b2016-04-13 21:19:57 +03001289 if (gt_iir & GT_PARITY_ERROR(dev_priv))
1290 ivybridge_parity_error_irq_handler(dev_priv, gt_iir);
Daniel Vettere7b4c6b2012-03-30 20:24:35 +02001291}
1292
Nick Hoathfbcc1a02015-10-20 10:23:52 +01001293static __always_inline void
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00001294gen8_cs_irq_handler(struct intel_engine_cs *engine, u32 iir, int test_shift)
Nick Hoathfbcc1a02015-10-20 10:23:52 +01001295{
1296 if (iir & (GT_RENDER_USER_INTERRUPT << test_shift))
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00001297 notify_ring(engine);
Nick Hoathfbcc1a02015-10-20 10:23:52 +01001298 if (iir & (GT_CONTEXT_SWITCH_INTERRUPT << test_shift))
Tvrtko Ursulin27af5ee2016-04-04 12:11:56 +01001299 tasklet_schedule(&engine->irq_tasklet);
Nick Hoathfbcc1a02015-10-20 10:23:52 +01001300}
1301
Ville Syrjäläe30e2512016-04-13 21:19:58 +03001302static irqreturn_t gen8_gt_irq_ack(struct drm_i915_private *dev_priv,
1303 u32 master_ctl,
1304 u32 gt_iir[4])
Ben Widawskyabd58f02013-11-02 21:07:09 -07001305{
Ben Widawskyabd58f02013-11-02 21:07:09 -07001306 irqreturn_t ret = IRQ_NONE;
1307
1308 if (master_ctl & (GEN8_GT_RCS_IRQ | GEN8_GT_BCS_IRQ)) {
Ville Syrjäläe30e2512016-04-13 21:19:58 +03001309 gt_iir[0] = I915_READ_FW(GEN8_GT_IIR(0));
1310 if (gt_iir[0]) {
1311 I915_WRITE_FW(GEN8_GT_IIR(0), gt_iir[0]);
Ben Widawskyabd58f02013-11-02 21:07:09 -07001312 ret = IRQ_HANDLED;
Ben Widawskyabd58f02013-11-02 21:07:09 -07001313 } else
1314 DRM_ERROR("The master control interrupt lied (GT0)!\n");
1315 }
1316
Zhao Yakui85f9b5f2014-04-17 10:37:38 +08001317 if (master_ctl & (GEN8_GT_VCS1_IRQ | GEN8_GT_VCS2_IRQ)) {
Ville Syrjäläe30e2512016-04-13 21:19:58 +03001318 gt_iir[1] = I915_READ_FW(GEN8_GT_IIR(1));
1319 if (gt_iir[1]) {
1320 I915_WRITE_FW(GEN8_GT_IIR(1), gt_iir[1]);
Ben Widawskyabd58f02013-11-02 21:07:09 -07001321 ret = IRQ_HANDLED;
Ben Widawskyabd58f02013-11-02 21:07:09 -07001322 } else
1323 DRM_ERROR("The master control interrupt lied (GT1)!\n");
1324 }
1325
Chris Wilson74cdb332015-04-07 16:21:05 +01001326 if (master_ctl & GEN8_GT_VECS_IRQ) {
Ville Syrjäläe30e2512016-04-13 21:19:58 +03001327 gt_iir[3] = I915_READ_FW(GEN8_GT_IIR(3));
1328 if (gt_iir[3]) {
1329 I915_WRITE_FW(GEN8_GT_IIR(3), gt_iir[3]);
Chris Wilson74cdb332015-04-07 16:21:05 +01001330 ret = IRQ_HANDLED;
Chris Wilson74cdb332015-04-07 16:21:05 +01001331 } else
1332 DRM_ERROR("The master control interrupt lied (GT3)!\n");
1333 }
1334
Ben Widawsky09610212014-05-15 20:58:08 +03001335 if (master_ctl & GEN8_GT_PM_IRQ) {
Ville Syrjäläe30e2512016-04-13 21:19:58 +03001336 gt_iir[2] = I915_READ_FW(GEN8_GT_IIR(2));
1337 if (gt_iir[2] & dev_priv->pm_rps_events) {
Chris Wilsoncb0d2052015-04-07 16:21:04 +01001338 I915_WRITE_FW(GEN8_GT_IIR(2),
Ville Syrjäläe30e2512016-04-13 21:19:58 +03001339 gt_iir[2] & dev_priv->pm_rps_events);
Oscar Mateo38cc46d2014-06-16 16:10:59 +01001340 ret = IRQ_HANDLED;
Ben Widawsky09610212014-05-15 20:58:08 +03001341 } else
1342 DRM_ERROR("The master control interrupt lied (PM)!\n");
1343 }
1344
Ben Widawskyabd58f02013-11-02 21:07:09 -07001345 return ret;
1346}
1347
Ville Syrjäläe30e2512016-04-13 21:19:58 +03001348static void gen8_gt_irq_handler(struct drm_i915_private *dev_priv,
1349 u32 gt_iir[4])
1350{
1351 if (gt_iir[0]) {
1352 gen8_cs_irq_handler(&dev_priv->engine[RCS],
1353 gt_iir[0], GEN8_RCS_IRQ_SHIFT);
1354 gen8_cs_irq_handler(&dev_priv->engine[BCS],
1355 gt_iir[0], GEN8_BCS_IRQ_SHIFT);
1356 }
1357
1358 if (gt_iir[1]) {
1359 gen8_cs_irq_handler(&dev_priv->engine[VCS],
1360 gt_iir[1], GEN8_VCS1_IRQ_SHIFT);
1361 gen8_cs_irq_handler(&dev_priv->engine[VCS2],
1362 gt_iir[1], GEN8_VCS2_IRQ_SHIFT);
1363 }
1364
1365 if (gt_iir[3])
1366 gen8_cs_irq_handler(&dev_priv->engine[VECS],
1367 gt_iir[3], GEN8_VECS_IRQ_SHIFT);
1368
1369 if (gt_iir[2] & dev_priv->pm_rps_events)
1370 gen6_rps_irq_handler(dev_priv, gt_iir[2]);
1371}
1372
Imre Deak63c88d22015-07-20 14:43:39 -07001373static bool bxt_port_hotplug_long_detect(enum port port, u32 val)
1374{
1375 switch (port) {
1376 case PORT_A:
Ville Syrjälä195baa02015-08-27 23:56:00 +03001377 return val & PORTA_HOTPLUG_LONG_DETECT;
Imre Deak63c88d22015-07-20 14:43:39 -07001378 case PORT_B:
1379 return val & PORTB_HOTPLUG_LONG_DETECT;
1380 case PORT_C:
1381 return val & PORTC_HOTPLUG_LONG_DETECT;
Imre Deak63c88d22015-07-20 14:43:39 -07001382 default:
1383 return false;
1384 }
1385}
1386
Ville Syrjälä6dbf30c2015-08-27 23:56:02 +03001387static bool spt_port_hotplug2_long_detect(enum port port, u32 val)
1388{
1389 switch (port) {
1390 case PORT_E:
1391 return val & PORTE_HOTPLUG_LONG_DETECT;
1392 default:
1393 return false;
1394 }
1395}
1396
Ville Syrjälä74c0b392015-08-27 23:56:07 +03001397static bool spt_port_hotplug_long_detect(enum port port, u32 val)
1398{
1399 switch (port) {
1400 case PORT_A:
1401 return val & PORTA_HOTPLUG_LONG_DETECT;
1402 case PORT_B:
1403 return val & PORTB_HOTPLUG_LONG_DETECT;
1404 case PORT_C:
1405 return val & PORTC_HOTPLUG_LONG_DETECT;
1406 case PORT_D:
1407 return val & PORTD_HOTPLUG_LONG_DETECT;
1408 default:
1409 return false;
1410 }
1411}
1412
Ville Syrjäläe4ce95a2015-08-27 23:56:03 +03001413static bool ilk_port_hotplug_long_detect(enum port port, u32 val)
1414{
1415 switch (port) {
1416 case PORT_A:
1417 return val & DIGITAL_PORTA_HOTPLUG_LONG_DETECT;
1418 default:
1419 return false;
1420 }
1421}
1422
Jani Nikula676574d2015-05-28 15:43:53 +03001423static bool pch_port_hotplug_long_detect(enum port port, u32 val)
Dave Airlie13cf5502014-06-18 11:29:35 +10001424{
1425 switch (port) {
Dave Airlie13cf5502014-06-18 11:29:35 +10001426 case PORT_B:
Jani Nikula676574d2015-05-28 15:43:53 +03001427 return val & PORTB_HOTPLUG_LONG_DETECT;
Dave Airlie13cf5502014-06-18 11:29:35 +10001428 case PORT_C:
Jani Nikula676574d2015-05-28 15:43:53 +03001429 return val & PORTC_HOTPLUG_LONG_DETECT;
Dave Airlie13cf5502014-06-18 11:29:35 +10001430 case PORT_D:
Jani Nikula676574d2015-05-28 15:43:53 +03001431 return val & PORTD_HOTPLUG_LONG_DETECT;
1432 default:
1433 return false;
Dave Airlie13cf5502014-06-18 11:29:35 +10001434 }
1435}
1436
Jani Nikula676574d2015-05-28 15:43:53 +03001437static bool i9xx_port_hotplug_long_detect(enum port port, u32 val)
Dave Airlie13cf5502014-06-18 11:29:35 +10001438{
1439 switch (port) {
Dave Airlie13cf5502014-06-18 11:29:35 +10001440 case PORT_B:
Jani Nikula676574d2015-05-28 15:43:53 +03001441 return val & PORTB_HOTPLUG_INT_LONG_PULSE;
Dave Airlie13cf5502014-06-18 11:29:35 +10001442 case PORT_C:
Jani Nikula676574d2015-05-28 15:43:53 +03001443 return val & PORTC_HOTPLUG_INT_LONG_PULSE;
Dave Airlie13cf5502014-06-18 11:29:35 +10001444 case PORT_D:
Jani Nikula676574d2015-05-28 15:43:53 +03001445 return val & PORTD_HOTPLUG_INT_LONG_PULSE;
1446 default:
1447 return false;
Dave Airlie13cf5502014-06-18 11:29:35 +10001448 }
1449}
1450
Ville Syrjälä42db67d2015-08-28 21:26:27 +03001451/*
1452 * Get a bit mask of pins that have triggered, and which ones may be long.
1453 * This can be called multiple times with the same masks to accumulate
1454 * hotplug detection results from several registers.
1455 *
1456 * Note that the caller is expected to zero out the masks initially.
1457 */
Imre Deakfd63e2a2015-07-21 15:32:44 -07001458static void intel_get_hpd_pins(u32 *pin_mask, u32 *long_mask,
Jani Nikula8c841e52015-06-18 13:06:17 +03001459 u32 hotplug_trigger, u32 dig_hotplug_reg,
Imre Deakfd63e2a2015-07-21 15:32:44 -07001460 const u32 hpd[HPD_NUM_PINS],
1461 bool long_pulse_detect(enum port port, u32 val))
Jani Nikula676574d2015-05-28 15:43:53 +03001462{
Jani Nikula8c841e52015-06-18 13:06:17 +03001463 enum port port;
Jani Nikula676574d2015-05-28 15:43:53 +03001464 int i;
1465
Jani Nikula676574d2015-05-28 15:43:53 +03001466 for_each_hpd_pin(i) {
Jani Nikula8c841e52015-06-18 13:06:17 +03001467 if ((hpd[i] & hotplug_trigger) == 0)
1468 continue;
Jani Nikula676574d2015-05-28 15:43:53 +03001469
Jani Nikula8c841e52015-06-18 13:06:17 +03001470 *pin_mask |= BIT(i);
1471
Imre Deakcc24fcd2015-07-21 15:32:45 -07001472 if (!intel_hpd_pin_to_port(i, &port))
1473 continue;
1474
Imre Deakfd63e2a2015-07-21 15:32:44 -07001475 if (long_pulse_detect(port, dig_hotplug_reg))
Jani Nikula8c841e52015-06-18 13:06:17 +03001476 *long_mask |= BIT(i);
Jani Nikula676574d2015-05-28 15:43:53 +03001477 }
1478
1479 DRM_DEBUG_DRIVER("hotplug event received, stat 0x%08x, dig 0x%08x, pins 0x%08x\n",
1480 hotplug_trigger, dig_hotplug_reg, *pin_mask);
1481
1482}
1483
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01001484static void gmbus_irq_handler(struct drm_i915_private *dev_priv)
Daniel Vetter515ac2b2012-12-01 13:53:44 +01001485{
Daniel Vetter28c70f12012-12-01 13:53:45 +01001486 wake_up_all(&dev_priv->gmbus_wait_queue);
Daniel Vetter515ac2b2012-12-01 13:53:44 +01001487}
1488
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01001489static void dp_aux_irq_handler(struct drm_i915_private *dev_priv)
Daniel Vetterce99c252012-12-01 13:53:47 +01001490{
Daniel Vetter9ee32fea2012-12-01 13:53:48 +01001491 wake_up_all(&dev_priv->gmbus_wait_queue);
Daniel Vetterce99c252012-12-01 13:53:47 +01001492}
1493
Shuang He8bf1e9f2013-10-15 18:55:27 +01001494#if defined(CONFIG_DEBUG_FS)
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01001495static void display_pipe_crc_irq_handler(struct drm_i915_private *dev_priv,
1496 enum pipe pipe,
Daniel Vetter277de952013-10-18 16:37:07 +02001497 uint32_t crc0, uint32_t crc1,
1498 uint32_t crc2, uint32_t crc3,
1499 uint32_t crc4)
Shuang He8bf1e9f2013-10-15 18:55:27 +01001500{
Shuang He8bf1e9f2013-10-15 18:55:27 +01001501 struct intel_pipe_crc *pipe_crc = &dev_priv->pipe_crc[pipe];
1502 struct intel_pipe_crc_entry *entry;
Damien Lespiauac2300d2013-10-15 18:55:30 +01001503 int head, tail;
Damien Lespiaub2c88f52013-10-15 18:55:29 +01001504
Damien Lespiaud538bbd2013-10-21 14:29:30 +01001505 spin_lock(&pipe_crc->lock);
1506
Damien Lespiau0c912c72013-10-15 18:55:37 +01001507 if (!pipe_crc->entries) {
Damien Lespiaud538bbd2013-10-21 14:29:30 +01001508 spin_unlock(&pipe_crc->lock);
Daniel Vetter34273622014-11-26 16:29:04 +01001509 DRM_DEBUG_KMS("spurious interrupt\n");
Damien Lespiau0c912c72013-10-15 18:55:37 +01001510 return;
1511 }
1512
Damien Lespiaud538bbd2013-10-21 14:29:30 +01001513 head = pipe_crc->head;
1514 tail = pipe_crc->tail;
Damien Lespiaub2c88f52013-10-15 18:55:29 +01001515
1516 if (CIRC_SPACE(head, tail, INTEL_PIPE_CRC_ENTRIES_NR) < 1) {
Damien Lespiaud538bbd2013-10-21 14:29:30 +01001517 spin_unlock(&pipe_crc->lock);
Damien Lespiaub2c88f52013-10-15 18:55:29 +01001518 DRM_ERROR("CRC buffer overflowing\n");
1519 return;
1520 }
1521
1522 entry = &pipe_crc->entries[head];
Shuang He8bf1e9f2013-10-15 18:55:27 +01001523
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01001524 entry->frame = dev_priv->dev->driver->get_vblank_counter(dev_priv->dev,
1525 pipe);
Daniel Vettereba94eb2013-10-16 22:55:46 +02001526 entry->crc[0] = crc0;
1527 entry->crc[1] = crc1;
1528 entry->crc[2] = crc2;
1529 entry->crc[3] = crc3;
1530 entry->crc[4] = crc4;
Damien Lespiaub2c88f52013-10-15 18:55:29 +01001531
1532 head = (head + 1) & (INTEL_PIPE_CRC_ENTRIES_NR - 1);
Damien Lespiaud538bbd2013-10-21 14:29:30 +01001533 pipe_crc->head = head;
1534
1535 spin_unlock(&pipe_crc->lock);
Damien Lespiau07144422013-10-15 18:55:40 +01001536
1537 wake_up_interruptible(&pipe_crc->wq);
Shuang He8bf1e9f2013-10-15 18:55:27 +01001538}
Daniel Vetter277de952013-10-18 16:37:07 +02001539#else
1540static inline void
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01001541display_pipe_crc_irq_handler(struct drm_i915_private *dev_priv,
1542 enum pipe pipe,
Daniel Vetter277de952013-10-18 16:37:07 +02001543 uint32_t crc0, uint32_t crc1,
1544 uint32_t crc2, uint32_t crc3,
1545 uint32_t crc4) {}
1546#endif
Daniel Vettereba94eb2013-10-16 22:55:46 +02001547
Daniel Vetter277de952013-10-18 16:37:07 +02001548
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01001549static void hsw_pipe_crc_irq_handler(struct drm_i915_private *dev_priv,
1550 enum pipe pipe)
Daniel Vetter5a69b892013-10-16 22:55:52 +02001551{
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01001552 display_pipe_crc_irq_handler(dev_priv, pipe,
Daniel Vetter277de952013-10-18 16:37:07 +02001553 I915_READ(PIPE_CRC_RES_1_IVB(pipe)),
1554 0, 0, 0, 0);
Daniel Vetter5a69b892013-10-16 22:55:52 +02001555}
1556
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01001557static void ivb_pipe_crc_irq_handler(struct drm_i915_private *dev_priv,
1558 enum pipe pipe)
Daniel Vettereba94eb2013-10-16 22:55:46 +02001559{
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01001560 display_pipe_crc_irq_handler(dev_priv, pipe,
Daniel Vetter277de952013-10-18 16:37:07 +02001561 I915_READ(PIPE_CRC_RES_1_IVB(pipe)),
1562 I915_READ(PIPE_CRC_RES_2_IVB(pipe)),
1563 I915_READ(PIPE_CRC_RES_3_IVB(pipe)),
1564 I915_READ(PIPE_CRC_RES_4_IVB(pipe)),
1565 I915_READ(PIPE_CRC_RES_5_IVB(pipe)));
Daniel Vettereba94eb2013-10-16 22:55:46 +02001566}
Daniel Vetter5b3a8562013-10-16 22:55:48 +02001567
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01001568static void i9xx_pipe_crc_irq_handler(struct drm_i915_private *dev_priv,
1569 enum pipe pipe)
Daniel Vetter5b3a8562013-10-16 22:55:48 +02001570{
Daniel Vetter0b5c5ed2013-10-16 22:55:53 +02001571 uint32_t res1, res2;
1572
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01001573 if (INTEL_GEN(dev_priv) >= 3)
Daniel Vetter0b5c5ed2013-10-16 22:55:53 +02001574 res1 = I915_READ(PIPE_CRC_RES_RES1_I915(pipe));
1575 else
1576 res1 = 0;
1577
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01001578 if (INTEL_GEN(dev_priv) >= 5 || IS_G4X(dev_priv))
Daniel Vetter0b5c5ed2013-10-16 22:55:53 +02001579 res2 = I915_READ(PIPE_CRC_RES_RES2_G4X(pipe));
1580 else
1581 res2 = 0;
Daniel Vetter5b3a8562013-10-16 22:55:48 +02001582
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01001583 display_pipe_crc_irq_handler(dev_priv, pipe,
Daniel Vetter277de952013-10-18 16:37:07 +02001584 I915_READ(PIPE_CRC_RES_RED(pipe)),
1585 I915_READ(PIPE_CRC_RES_GREEN(pipe)),
1586 I915_READ(PIPE_CRC_RES_BLUE(pipe)),
1587 res1, res2);
Daniel Vetter5b3a8562013-10-16 22:55:48 +02001588}
Shuang He8bf1e9f2013-10-15 18:55:27 +01001589
Paulo Zanoni1403c0d2013-08-15 11:51:32 -03001590/* The RPS events need forcewake, so we add them to a work queue and mask their
1591 * IMR bits until the work is done. Other interrupts can be processed without
1592 * the work queue. */
1593static void gen6_rps_irq_handler(struct drm_i915_private *dev_priv, u32 pm_iir)
Ben Widawskybaf02a12013-05-28 19:22:24 -07001594{
Deepak Sa6706b42014-03-15 20:23:22 +05301595 if (pm_iir & dev_priv->pm_rps_events) {
Daniel Vetter59cdb632013-07-04 23:35:28 +02001596 spin_lock(&dev_priv->irq_lock);
Daniel Vetter480c8032014-07-16 09:49:40 +02001597 gen6_disable_pm_irq(dev_priv, pm_iir & dev_priv->pm_rps_events);
Imre Deakd4d70aa2014-11-19 15:30:04 +02001598 if (dev_priv->rps.interrupts_enabled) {
1599 dev_priv->rps.pm_iir |= pm_iir & dev_priv->pm_rps_events;
1600 queue_work(dev_priv->wq, &dev_priv->rps.work);
1601 }
Daniel Vetter59cdb632013-07-04 23:35:28 +02001602 spin_unlock(&dev_priv->irq_lock);
Ben Widawskybaf02a12013-05-28 19:22:24 -07001603 }
Ben Widawskybaf02a12013-05-28 19:22:24 -07001604
Imre Deakc9a9a262014-11-05 20:48:37 +02001605 if (INTEL_INFO(dev_priv)->gen >= 8)
1606 return;
1607
Joonas Lahtinen2d1fe072016-04-07 11:08:05 +03001608 if (HAS_VEBOX(dev_priv)) {
Paulo Zanoni1403c0d2013-08-15 11:51:32 -03001609 if (pm_iir & PM_VEBOX_USER_INTERRUPT)
Tvrtko Ursulin4a570db2016-03-16 11:00:38 +00001610 notify_ring(&dev_priv->engine[VECS]);
Ben Widawsky12638c52013-05-28 19:22:31 -07001611
Daniel Vetteraaecdf62014-11-04 15:52:22 +01001612 if (pm_iir & PM_VEBOX_CS_ERROR_INTERRUPT)
1613 DRM_DEBUG("Command parser error, pm_iir 0x%08x\n", pm_iir);
Ben Widawsky12638c52013-05-28 19:22:31 -07001614 }
Ben Widawskybaf02a12013-05-28 19:22:24 -07001615}
1616
Daniel Vetter5a21b662016-05-24 17:13:53 +02001617static bool intel_pipe_handle_vblank(struct drm_i915_private *dev_priv,
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01001618 enum pipe pipe)
Ville Syrjälä8d7849d2014-04-29 13:35:46 +03001619{
Daniel Vetter5a21b662016-05-24 17:13:53 +02001620 bool ret;
1621
1622 ret = drm_handle_vblank(dev_priv->dev, pipe);
1623 if (ret)
Maarten Lankhorst51cbaf02016-05-17 15:07:49 +02001624 intel_finish_page_flip_mmio(dev_priv, pipe);
Daniel Vetter5a21b662016-05-24 17:13:53 +02001625
1626 return ret;
Ville Syrjälä8d7849d2014-04-29 13:35:46 +03001627}
1628
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01001629static void valleyview_pipestat_irq_ack(struct drm_i915_private *dev_priv,
1630 u32 iir, u32 pipe_stats[I915_MAX_PIPES])
Imre Deakc1874ed2014-02-04 21:35:46 +02001631{
Imre Deakc1874ed2014-02-04 21:35:46 +02001632 int pipe;
1633
Imre Deak58ead0d2014-02-04 21:35:47 +02001634 spin_lock(&dev_priv->irq_lock);
Ville Syrjälä1ca993d2016-02-18 21:54:26 +02001635
1636 if (!dev_priv->display_irqs_enabled) {
1637 spin_unlock(&dev_priv->irq_lock);
1638 return;
1639 }
1640
Damien Lespiau055e3932014-08-18 13:49:10 +01001641 for_each_pipe(dev_priv, pipe) {
Ville Syrjäläf0f59a02015-11-18 15:33:26 +02001642 i915_reg_t reg;
Daniel Vetterbbb5eeb2014-02-12 17:55:36 +01001643 u32 mask, iir_bit = 0;
Imre Deak91d181d2014-02-10 18:42:49 +02001644
Daniel Vetterbbb5eeb2014-02-12 17:55:36 +01001645 /*
1646 * PIPESTAT bits get signalled even when the interrupt is
1647 * disabled with the mask bits, and some of the status bits do
1648 * not generate interrupts at all (like the underrun bit). Hence
1649 * we need to be careful that we only handle what we want to
1650 * handle.
1651 */
Daniel Vetter0f239f42014-09-30 10:56:49 +02001652
1653 /* fifo underruns are filterered in the underrun handler. */
1654 mask = PIPE_FIFO_UNDERRUN_STATUS;
Daniel Vetterbbb5eeb2014-02-12 17:55:36 +01001655
1656 switch (pipe) {
1657 case PIPE_A:
1658 iir_bit = I915_DISPLAY_PIPE_A_EVENT_INTERRUPT;
1659 break;
1660 case PIPE_B:
1661 iir_bit = I915_DISPLAY_PIPE_B_EVENT_INTERRUPT;
1662 break;
Ville Syrjälä3278f672014-04-09 13:28:49 +03001663 case PIPE_C:
1664 iir_bit = I915_DISPLAY_PIPE_C_EVENT_INTERRUPT;
1665 break;
Daniel Vetterbbb5eeb2014-02-12 17:55:36 +01001666 }
1667 if (iir & iir_bit)
1668 mask |= dev_priv->pipestat_irq_mask[pipe];
1669
1670 if (!mask)
Imre Deak91d181d2014-02-10 18:42:49 +02001671 continue;
1672
1673 reg = PIPESTAT(pipe);
Daniel Vetterbbb5eeb2014-02-12 17:55:36 +01001674 mask |= PIPESTAT_INT_ENABLE_MASK;
1675 pipe_stats[pipe] = I915_READ(reg) & mask;
Imre Deakc1874ed2014-02-04 21:35:46 +02001676
1677 /*
1678 * Clear the PIPE*STAT regs before the IIR
1679 */
Imre Deak91d181d2014-02-10 18:42:49 +02001680 if (pipe_stats[pipe] & (PIPE_FIFO_UNDERRUN_STATUS |
1681 PIPESTAT_INT_STATUS_MASK))
Imre Deakc1874ed2014-02-04 21:35:46 +02001682 I915_WRITE(reg, pipe_stats[pipe]);
1683 }
Imre Deak58ead0d2014-02-04 21:35:47 +02001684 spin_unlock(&dev_priv->irq_lock);
Ville Syrjälä2ecb8ca2016-04-13 21:19:55 +03001685}
1686
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01001687static void valleyview_pipestat_irq_handler(struct drm_i915_private *dev_priv,
Ville Syrjälä2ecb8ca2016-04-13 21:19:55 +03001688 u32 pipe_stats[I915_MAX_PIPES])
1689{
Ville Syrjälä2ecb8ca2016-04-13 21:19:55 +03001690 enum pipe pipe;
Imre Deakc1874ed2014-02-04 21:35:46 +02001691
Damien Lespiau055e3932014-08-18 13:49:10 +01001692 for_each_pipe(dev_priv, pipe) {
Daniel Vetter5a21b662016-05-24 17:13:53 +02001693 if (pipe_stats[pipe] & PIPE_START_VBLANK_INTERRUPT_STATUS &&
1694 intel_pipe_handle_vblank(dev_priv, pipe))
1695 intel_check_page_flip(dev_priv, pipe);
Imre Deakc1874ed2014-02-04 21:35:46 +02001696
Maarten Lankhorst5251f042016-05-17 15:07:47 +02001697 if (pipe_stats[pipe] & PLANE_FLIP_DONE_INT_STATUS_VLV)
Maarten Lankhorst51cbaf02016-05-17 15:07:49 +02001698 intel_finish_page_flip_cs(dev_priv, pipe);
Imre Deakc1874ed2014-02-04 21:35:46 +02001699
1700 if (pipe_stats[pipe] & PIPE_CRC_DONE_INTERRUPT_STATUS)
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01001701 i9xx_pipe_crc_irq_handler(dev_priv, pipe);
Imre Deakc1874ed2014-02-04 21:35:46 +02001702
Daniel Vetter1f7247c2014-09-30 10:56:48 +02001703 if (pipe_stats[pipe] & PIPE_FIFO_UNDERRUN_STATUS)
1704 intel_cpu_fifo_underrun_irq_handler(dev_priv, pipe);
Imre Deakc1874ed2014-02-04 21:35:46 +02001705 }
1706
1707 if (pipe_stats[0] & PIPE_GMBUS_INTERRUPT_STATUS)
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01001708 gmbus_irq_handler(dev_priv);
Imre Deakc1874ed2014-02-04 21:35:46 +02001709}
1710
Ville Syrjälä1ae3c342016-04-13 21:19:54 +03001711static u32 i9xx_hpd_irq_ack(struct drm_i915_private *dev_priv)
Ville Syrjälä16c6c562014-04-01 10:54:36 +03001712{
Ville Syrjälä16c6c562014-04-01 10:54:36 +03001713 u32 hotplug_status = I915_READ(PORT_HOTPLUG_STAT);
Ville Syrjälä1ae3c342016-04-13 21:19:54 +03001714
1715 if (hotplug_status)
1716 I915_WRITE(PORT_HOTPLUG_STAT, hotplug_status);
1717
1718 return hotplug_status;
1719}
1720
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01001721static void i9xx_hpd_irq_handler(struct drm_i915_private *dev_priv,
Ville Syrjälä1ae3c342016-04-13 21:19:54 +03001722 u32 hotplug_status)
1723{
Ville Syrjälä42db67d2015-08-28 21:26:27 +03001724 u32 pin_mask = 0, long_mask = 0;
Ville Syrjälä16c6c562014-04-01 10:54:36 +03001725
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01001726 if (IS_G4X(dev_priv) || IS_VALLEYVIEW(dev_priv) ||
1727 IS_CHERRYVIEW(dev_priv)) {
Jani Nikula0d2e4292015-05-27 15:03:39 +03001728 u32 hotplug_trigger = hotplug_status & HOTPLUG_INT_STATUS_G4X;
Oscar Mateo3ff60f82014-06-16 16:10:58 +01001729
Ville Syrjälä58f2cf22015-08-28 22:59:08 +03001730 if (hotplug_trigger) {
1731 intel_get_hpd_pins(&pin_mask, &long_mask, hotplug_trigger,
1732 hotplug_trigger, hpd_status_g4x,
1733 i9xx_port_hotplug_long_detect);
1734
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01001735 intel_hpd_irq_handler(dev_priv, pin_mask, long_mask);
Ville Syrjälä58f2cf22015-08-28 22:59:08 +03001736 }
Jani Nikula369712e2015-05-27 15:03:40 +03001737
1738 if (hotplug_status & DP_AUX_CHANNEL_MASK_INT_STATUS_G4X)
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01001739 dp_aux_irq_handler(dev_priv);
Jani Nikula0d2e4292015-05-27 15:03:39 +03001740 } else {
1741 u32 hotplug_trigger = hotplug_status & HOTPLUG_INT_STATUS_I915;
Oscar Mateo3ff60f82014-06-16 16:10:58 +01001742
Ville Syrjälä58f2cf22015-08-28 22:59:08 +03001743 if (hotplug_trigger) {
1744 intel_get_hpd_pins(&pin_mask, &long_mask, hotplug_trigger,
Daniel Vetter44cc6c02015-09-30 08:47:41 +02001745 hotplug_trigger, hpd_status_i915,
Ville Syrjälä58f2cf22015-08-28 22:59:08 +03001746 i9xx_port_hotplug_long_detect);
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01001747 intel_hpd_irq_handler(dev_priv, pin_mask, long_mask);
Ville Syrjälä58f2cf22015-08-28 22:59:08 +03001748 }
Ville Syrjälä16c6c562014-04-01 10:54:36 +03001749 }
Ville Syrjälä16c6c562014-04-01 10:54:36 +03001750}
1751
Daniel Vetterff1f5252012-10-02 15:10:55 +02001752static irqreturn_t valleyview_irq_handler(int irq, void *arg)
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07001753{
Daniel Vetter45a83f82014-05-12 19:17:55 +02001754 struct drm_device *dev = arg;
Jani Nikula2d1013d2014-03-31 14:27:17 +03001755 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07001756 irqreturn_t ret = IRQ_NONE;
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07001757
Imre Deak2dd2a882015-02-24 11:14:30 +02001758 if (!intel_irqs_enabled(dev_priv))
1759 return IRQ_NONE;
1760
Imre Deak1f814da2015-12-16 02:52:19 +02001761 /* IRQs are synced during runtime_suspend, we don't require a wakeref */
1762 disable_rpm_wakeref_asserts(dev_priv);
1763
Ville Syrjälä1e1cace2016-04-13 21:19:52 +03001764 do {
Ville Syrjälä6e814802016-04-13 21:19:53 +03001765 u32 iir, gt_iir, pm_iir;
Ville Syrjälä2ecb8ca2016-04-13 21:19:55 +03001766 u32 pipe_stats[I915_MAX_PIPES] = {};
Ville Syrjälä1ae3c342016-04-13 21:19:54 +03001767 u32 hotplug_status = 0;
Ville Syrjäläa5e485a2016-04-13 21:19:51 +03001768 u32 ier = 0;
Oscar Mateo3ff60f82014-06-16 16:10:58 +01001769
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07001770 gt_iir = I915_READ(GTIIR);
1771 pm_iir = I915_READ(GEN6_PMIIR);
Oscar Mateo3ff60f82014-06-16 16:10:58 +01001772 iir = I915_READ(VLV_IIR);
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07001773
1774 if (gt_iir == 0 && pm_iir == 0 && iir == 0)
Ville Syrjälä1e1cace2016-04-13 21:19:52 +03001775 break;
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07001776
1777 ret = IRQ_HANDLED;
1778
Ville Syrjäläa5e485a2016-04-13 21:19:51 +03001779 /*
1780 * Theory on interrupt generation, based on empirical evidence:
1781 *
1782 * x = ((VLV_IIR & VLV_IER) ||
1783 * (((GT_IIR & GT_IER) || (GEN6_PMIIR & GEN6_PMIER)) &&
1784 * (VLV_MASTER_IER & MASTER_INTERRUPT_ENABLE)));
1785 *
1786 * A CPU interrupt will only be raised when 'x' has a 0->1 edge.
1787 * Hence we clear MASTER_INTERRUPT_ENABLE and VLV_IER to
1788 * guarantee the CPU interrupt will be raised again even if we
1789 * don't end up clearing all the VLV_IIR, GT_IIR, GEN6_PMIIR
1790 * bits this time around.
1791 */
Ville Syrjälä4a0a0202016-04-13 21:19:50 +03001792 I915_WRITE(VLV_MASTER_IER, 0);
Ville Syrjäläa5e485a2016-04-13 21:19:51 +03001793 ier = I915_READ(VLV_IER);
1794 I915_WRITE(VLV_IER, 0);
Ville Syrjälä4a0a0202016-04-13 21:19:50 +03001795
1796 if (gt_iir)
1797 I915_WRITE(GTIIR, gt_iir);
1798 if (pm_iir)
1799 I915_WRITE(GEN6_PMIIR, pm_iir);
1800
Ville Syrjälä7ce4d1f2016-04-13 21:19:49 +03001801 if (iir & I915_DISPLAY_PORT_INTERRUPT)
Ville Syrjälä1ae3c342016-04-13 21:19:54 +03001802 hotplug_status = i9xx_hpd_irq_ack(dev_priv);
Ville Syrjälä7ce4d1f2016-04-13 21:19:49 +03001803
Oscar Mateo3ff60f82014-06-16 16:10:58 +01001804 /* Call regardless, as some status bits might not be
1805 * signalled in iir */
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01001806 valleyview_pipestat_irq_ack(dev_priv, iir, pipe_stats);
Ville Syrjälä7ce4d1f2016-04-13 21:19:49 +03001807
1808 /*
1809 * VLV_IIR is single buffered, and reflects the level
1810 * from PIPESTAT/PORT_HOTPLUG_STAT, hence clear it last.
1811 */
1812 if (iir)
1813 I915_WRITE(VLV_IIR, iir);
Ville Syrjälä4a0a0202016-04-13 21:19:50 +03001814
Ville Syrjäläa5e485a2016-04-13 21:19:51 +03001815 I915_WRITE(VLV_IER, ier);
Ville Syrjälä4a0a0202016-04-13 21:19:50 +03001816 I915_WRITE(VLV_MASTER_IER, MASTER_INTERRUPT_ENABLE);
1817 POSTING_READ(VLV_MASTER_IER);
Ville Syrjälä1ae3c342016-04-13 21:19:54 +03001818
Ville Syrjälä52894872016-04-13 21:19:56 +03001819 if (gt_iir)
Ville Syrjälä261e40b2016-04-13 21:19:57 +03001820 snb_gt_irq_handler(dev_priv, gt_iir);
Ville Syrjälä52894872016-04-13 21:19:56 +03001821 if (pm_iir)
1822 gen6_rps_irq_handler(dev_priv, pm_iir);
1823
Ville Syrjälä1ae3c342016-04-13 21:19:54 +03001824 if (hotplug_status)
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01001825 i9xx_hpd_irq_handler(dev_priv, hotplug_status);
Ville Syrjälä2ecb8ca2016-04-13 21:19:55 +03001826
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01001827 valleyview_pipestat_irq_handler(dev_priv, pipe_stats);
Ville Syrjälä1e1cace2016-04-13 21:19:52 +03001828 } while (0);
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07001829
Imre Deak1f814da2015-12-16 02:52:19 +02001830 enable_rpm_wakeref_asserts(dev_priv);
1831
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07001832 return ret;
1833}
1834
Ville Syrjälä43f328d2014-04-09 20:40:52 +03001835static irqreturn_t cherryview_irq_handler(int irq, void *arg)
1836{
Daniel Vetter45a83f82014-05-12 19:17:55 +02001837 struct drm_device *dev = arg;
Ville Syrjälä43f328d2014-04-09 20:40:52 +03001838 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjälä43f328d2014-04-09 20:40:52 +03001839 irqreturn_t ret = IRQ_NONE;
Ville Syrjälä43f328d2014-04-09 20:40:52 +03001840
Imre Deak2dd2a882015-02-24 11:14:30 +02001841 if (!intel_irqs_enabled(dev_priv))
1842 return IRQ_NONE;
1843
Imre Deak1f814da2015-12-16 02:52:19 +02001844 /* IRQs are synced during runtime_suspend, we don't require a wakeref */
1845 disable_rpm_wakeref_asserts(dev_priv);
1846
Chris Wilson579de732016-03-14 09:01:57 +00001847 do {
Ville Syrjälä6e814802016-04-13 21:19:53 +03001848 u32 master_ctl, iir;
Ville Syrjäläe30e2512016-04-13 21:19:58 +03001849 u32 gt_iir[4] = {};
Ville Syrjälä2ecb8ca2016-04-13 21:19:55 +03001850 u32 pipe_stats[I915_MAX_PIPES] = {};
Ville Syrjälä1ae3c342016-04-13 21:19:54 +03001851 u32 hotplug_status = 0;
Ville Syrjäläa5e485a2016-04-13 21:19:51 +03001852 u32 ier = 0;
1853
Ville Syrjälä8e5fd592014-04-09 13:28:50 +03001854 master_ctl = I915_READ(GEN8_MASTER_IRQ) & ~GEN8_MASTER_IRQ_CONTROL;
1855 iir = I915_READ(VLV_IIR);
Ville Syrjälä3278f672014-04-09 13:28:49 +03001856
Ville Syrjälä8e5fd592014-04-09 13:28:50 +03001857 if (master_ctl == 0 && iir == 0)
1858 break;
Ville Syrjälä43f328d2014-04-09 20:40:52 +03001859
Oscar Mateo27b6c122014-06-16 16:11:00 +01001860 ret = IRQ_HANDLED;
1861
Ville Syrjäläa5e485a2016-04-13 21:19:51 +03001862 /*
1863 * Theory on interrupt generation, based on empirical evidence:
1864 *
1865 * x = ((VLV_IIR & VLV_IER) ||
1866 * ((GEN8_MASTER_IRQ & ~GEN8_MASTER_IRQ_CONTROL) &&
1867 * (GEN8_MASTER_IRQ & GEN8_MASTER_IRQ_CONTROL)));
1868 *
1869 * A CPU interrupt will only be raised when 'x' has a 0->1 edge.
1870 * Hence we clear GEN8_MASTER_IRQ_CONTROL and VLV_IER to
1871 * guarantee the CPU interrupt will be raised again even if we
1872 * don't end up clearing all the VLV_IIR and GEN8_MASTER_IRQ_CONTROL
1873 * bits this time around.
1874 */
Ville Syrjälä8e5fd592014-04-09 13:28:50 +03001875 I915_WRITE(GEN8_MASTER_IRQ, 0);
Ville Syrjäläa5e485a2016-04-13 21:19:51 +03001876 ier = I915_READ(VLV_IER);
1877 I915_WRITE(VLV_IER, 0);
Ville Syrjälä43f328d2014-04-09 20:40:52 +03001878
Ville Syrjäläe30e2512016-04-13 21:19:58 +03001879 gen8_gt_irq_ack(dev_priv, master_ctl, gt_iir);
Ville Syrjälä43f328d2014-04-09 20:40:52 +03001880
Ville Syrjälä7ce4d1f2016-04-13 21:19:49 +03001881 if (iir & I915_DISPLAY_PORT_INTERRUPT)
Ville Syrjälä1ae3c342016-04-13 21:19:54 +03001882 hotplug_status = i9xx_hpd_irq_ack(dev_priv);
Ville Syrjälä7ce4d1f2016-04-13 21:19:49 +03001883
Oscar Mateo27b6c122014-06-16 16:11:00 +01001884 /* Call regardless, as some status bits might not be
1885 * signalled in iir */
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01001886 valleyview_pipestat_irq_ack(dev_priv, iir, pipe_stats);
Ville Syrjälä43f328d2014-04-09 20:40:52 +03001887
Ville Syrjälä7ce4d1f2016-04-13 21:19:49 +03001888 /*
1889 * VLV_IIR is single buffered, and reflects the level
1890 * from PIPESTAT/PORT_HOTPLUG_STAT, hence clear it last.
1891 */
1892 if (iir)
1893 I915_WRITE(VLV_IIR, iir);
1894
Ville Syrjäläa5e485a2016-04-13 21:19:51 +03001895 I915_WRITE(VLV_IER, ier);
Ville Syrjäläe5328c42016-04-13 21:19:47 +03001896 I915_WRITE(GEN8_MASTER_IRQ, GEN8_MASTER_IRQ_CONTROL);
Ville Syrjälä8e5fd592014-04-09 13:28:50 +03001897 POSTING_READ(GEN8_MASTER_IRQ);
Ville Syrjälä1ae3c342016-04-13 21:19:54 +03001898
Ville Syrjäläe30e2512016-04-13 21:19:58 +03001899 gen8_gt_irq_handler(dev_priv, gt_iir);
1900
Ville Syrjälä1ae3c342016-04-13 21:19:54 +03001901 if (hotplug_status)
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01001902 i9xx_hpd_irq_handler(dev_priv, hotplug_status);
Ville Syrjälä2ecb8ca2016-04-13 21:19:55 +03001903
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01001904 valleyview_pipestat_irq_handler(dev_priv, pipe_stats);
Chris Wilson579de732016-03-14 09:01:57 +00001905 } while (0);
Ville Syrjälä43f328d2014-04-09 20:40:52 +03001906
Imre Deak1f814da2015-12-16 02:52:19 +02001907 enable_rpm_wakeref_asserts(dev_priv);
1908
Ville Syrjälä43f328d2014-04-09 20:40:52 +03001909 return ret;
1910}
1911
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01001912static void ibx_hpd_irq_handler(struct drm_i915_private *dev_priv,
1913 u32 hotplug_trigger,
Ville Syrjälä40e56412015-08-27 23:56:10 +03001914 const u32 hpd[HPD_NUM_PINS])
1915{
Ville Syrjälä40e56412015-08-27 23:56:10 +03001916 u32 dig_hotplug_reg, pin_mask = 0, long_mask = 0;
1917
Jani Nikula6a39d7c2015-11-25 16:47:22 +02001918 /*
1919 * Somehow the PCH doesn't seem to really ack the interrupt to the CPU
1920 * unless we touch the hotplug register, even if hotplug_trigger is
1921 * zero. Not acking leads to "The master control interrupt lied (SDE)!"
1922 * errors.
1923 */
Ville Syrjälä40e56412015-08-27 23:56:10 +03001924 dig_hotplug_reg = I915_READ(PCH_PORT_HOTPLUG);
Jani Nikula6a39d7c2015-11-25 16:47:22 +02001925 if (!hotplug_trigger) {
1926 u32 mask = PORTA_HOTPLUG_STATUS_MASK |
1927 PORTD_HOTPLUG_STATUS_MASK |
1928 PORTC_HOTPLUG_STATUS_MASK |
1929 PORTB_HOTPLUG_STATUS_MASK;
1930 dig_hotplug_reg &= ~mask;
1931 }
1932
Ville Syrjälä40e56412015-08-27 23:56:10 +03001933 I915_WRITE(PCH_PORT_HOTPLUG, dig_hotplug_reg);
Jani Nikula6a39d7c2015-11-25 16:47:22 +02001934 if (!hotplug_trigger)
1935 return;
Ville Syrjälä40e56412015-08-27 23:56:10 +03001936
1937 intel_get_hpd_pins(&pin_mask, &long_mask, hotplug_trigger,
1938 dig_hotplug_reg, hpd,
1939 pch_port_hotplug_long_detect);
1940
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01001941 intel_hpd_irq_handler(dev_priv, pin_mask, long_mask);
Ville Syrjälä40e56412015-08-27 23:56:10 +03001942}
1943
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01001944static void ibx_irq_handler(struct drm_i915_private *dev_priv, u32 pch_iir)
Jesse Barnes776ad802011-01-04 15:09:39 -08001945{
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001946 int pipe;
Egbert Eichb543fb02013-04-16 13:36:54 +02001947 u32 hotplug_trigger = pch_iir & SDE_HOTPLUG_MASK;
Jesse Barnes776ad802011-01-04 15:09:39 -08001948
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01001949 ibx_hpd_irq_handler(dev_priv, hotplug_trigger, hpd_ibx);
Daniel Vetter91d131d2013-06-27 17:52:14 +02001950
Ville Syrjäläcfc33bf2013-04-17 17:48:48 +03001951 if (pch_iir & SDE_AUDIO_POWER_MASK) {
1952 int port = ffs((pch_iir & SDE_AUDIO_POWER_MASK) >>
1953 SDE_AUDIO_POWER_SHIFT);
Jesse Barnes776ad802011-01-04 15:09:39 -08001954 DRM_DEBUG_DRIVER("PCH audio power change on port %d\n",
Ville Syrjäläcfc33bf2013-04-17 17:48:48 +03001955 port_name(port));
1956 }
Jesse Barnes776ad802011-01-04 15:09:39 -08001957
Daniel Vetterce99c252012-12-01 13:53:47 +01001958 if (pch_iir & SDE_AUX_MASK)
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01001959 dp_aux_irq_handler(dev_priv);
Daniel Vetterce99c252012-12-01 13:53:47 +01001960
Jesse Barnes776ad802011-01-04 15:09:39 -08001961 if (pch_iir & SDE_GMBUS)
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01001962 gmbus_irq_handler(dev_priv);
Jesse Barnes776ad802011-01-04 15:09:39 -08001963
1964 if (pch_iir & SDE_AUDIO_HDCP_MASK)
1965 DRM_DEBUG_DRIVER("PCH HDCP audio interrupt\n");
1966
1967 if (pch_iir & SDE_AUDIO_TRANS_MASK)
1968 DRM_DEBUG_DRIVER("PCH transcoder audio interrupt\n");
1969
1970 if (pch_iir & SDE_POISON)
1971 DRM_ERROR("PCH poison interrupt\n");
1972
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001973 if (pch_iir & SDE_FDI_MASK)
Damien Lespiau055e3932014-08-18 13:49:10 +01001974 for_each_pipe(dev_priv, pipe)
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001975 DRM_DEBUG_DRIVER(" pipe %c FDI IIR: 0x%08x\n",
1976 pipe_name(pipe),
1977 I915_READ(FDI_RX_IIR(pipe)));
Jesse Barnes776ad802011-01-04 15:09:39 -08001978
1979 if (pch_iir & (SDE_TRANSB_CRC_DONE | SDE_TRANSA_CRC_DONE))
1980 DRM_DEBUG_DRIVER("PCH transcoder CRC done interrupt\n");
1981
1982 if (pch_iir & (SDE_TRANSB_CRC_ERR | SDE_TRANSA_CRC_ERR))
1983 DRM_DEBUG_DRIVER("PCH transcoder CRC error interrupt\n");
1984
Jesse Barnes776ad802011-01-04 15:09:39 -08001985 if (pch_iir & SDE_TRANSA_FIFO_UNDER)
Daniel Vetter1f7247c2014-09-30 10:56:48 +02001986 intel_pch_fifo_underrun_irq_handler(dev_priv, TRANSCODER_A);
Paulo Zanoni86642812013-04-12 17:57:57 -03001987
1988 if (pch_iir & SDE_TRANSB_FIFO_UNDER)
Daniel Vetter1f7247c2014-09-30 10:56:48 +02001989 intel_pch_fifo_underrun_irq_handler(dev_priv, TRANSCODER_B);
Paulo Zanoni86642812013-04-12 17:57:57 -03001990}
1991
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01001992static void ivb_err_int_handler(struct drm_i915_private *dev_priv)
Paulo Zanoni86642812013-04-12 17:57:57 -03001993{
Paulo Zanoni86642812013-04-12 17:57:57 -03001994 u32 err_int = I915_READ(GEN7_ERR_INT);
Daniel Vetter5a69b892013-10-16 22:55:52 +02001995 enum pipe pipe;
Paulo Zanoni86642812013-04-12 17:57:57 -03001996
Paulo Zanonide032bf2013-04-12 17:57:58 -03001997 if (err_int & ERR_INT_POISON)
1998 DRM_ERROR("Poison interrupt\n");
1999
Damien Lespiau055e3932014-08-18 13:49:10 +01002000 for_each_pipe(dev_priv, pipe) {
Daniel Vetter1f7247c2014-09-30 10:56:48 +02002001 if (err_int & ERR_INT_FIFO_UNDERRUN(pipe))
2002 intel_cpu_fifo_underrun_irq_handler(dev_priv, pipe);
Paulo Zanoni86642812013-04-12 17:57:57 -03002003
Daniel Vetter5a69b892013-10-16 22:55:52 +02002004 if (err_int & ERR_INT_PIPE_CRC_DONE(pipe)) {
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002005 if (IS_IVYBRIDGE(dev_priv))
2006 ivb_pipe_crc_irq_handler(dev_priv, pipe);
Daniel Vetter5a69b892013-10-16 22:55:52 +02002007 else
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002008 hsw_pipe_crc_irq_handler(dev_priv, pipe);
Daniel Vetter5a69b892013-10-16 22:55:52 +02002009 }
2010 }
Shuang He8bf1e9f2013-10-15 18:55:27 +01002011
Paulo Zanoni86642812013-04-12 17:57:57 -03002012 I915_WRITE(GEN7_ERR_INT, err_int);
2013}
2014
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002015static void cpt_serr_int_handler(struct drm_i915_private *dev_priv)
Paulo Zanoni86642812013-04-12 17:57:57 -03002016{
Paulo Zanoni86642812013-04-12 17:57:57 -03002017 u32 serr_int = I915_READ(SERR_INT);
2018
Paulo Zanonide032bf2013-04-12 17:57:58 -03002019 if (serr_int & SERR_INT_POISON)
2020 DRM_ERROR("PCH poison interrupt\n");
2021
Paulo Zanoni86642812013-04-12 17:57:57 -03002022 if (serr_int & SERR_INT_TRANS_A_FIFO_UNDERRUN)
Daniel Vetter1f7247c2014-09-30 10:56:48 +02002023 intel_pch_fifo_underrun_irq_handler(dev_priv, TRANSCODER_A);
Paulo Zanoni86642812013-04-12 17:57:57 -03002024
2025 if (serr_int & SERR_INT_TRANS_B_FIFO_UNDERRUN)
Daniel Vetter1f7247c2014-09-30 10:56:48 +02002026 intel_pch_fifo_underrun_irq_handler(dev_priv, TRANSCODER_B);
Paulo Zanoni86642812013-04-12 17:57:57 -03002027
2028 if (serr_int & SERR_INT_TRANS_C_FIFO_UNDERRUN)
Daniel Vetter1f7247c2014-09-30 10:56:48 +02002029 intel_pch_fifo_underrun_irq_handler(dev_priv, TRANSCODER_C);
Paulo Zanoni86642812013-04-12 17:57:57 -03002030
2031 I915_WRITE(SERR_INT, serr_int);
Jesse Barnes776ad802011-01-04 15:09:39 -08002032}
2033
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002034static void cpt_irq_handler(struct drm_i915_private *dev_priv, u32 pch_iir)
Adam Jackson23e81d62012-06-06 15:45:44 -04002035{
Adam Jackson23e81d62012-06-06 15:45:44 -04002036 int pipe;
Ville Syrjälä6dbf30c2015-08-27 23:56:02 +03002037 u32 hotplug_trigger = pch_iir & SDE_HOTPLUG_MASK_CPT;
Adam Jackson23e81d62012-06-06 15:45:44 -04002038
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002039 ibx_hpd_irq_handler(dev_priv, hotplug_trigger, hpd_cpt);
Daniel Vetter91d131d2013-06-27 17:52:14 +02002040
Ville Syrjäläcfc33bf2013-04-17 17:48:48 +03002041 if (pch_iir & SDE_AUDIO_POWER_MASK_CPT) {
2042 int port = ffs((pch_iir & SDE_AUDIO_POWER_MASK_CPT) >>
2043 SDE_AUDIO_POWER_SHIFT_CPT);
2044 DRM_DEBUG_DRIVER("PCH audio power change on port %c\n",
2045 port_name(port));
2046 }
Adam Jackson23e81d62012-06-06 15:45:44 -04002047
2048 if (pch_iir & SDE_AUX_MASK_CPT)
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002049 dp_aux_irq_handler(dev_priv);
Adam Jackson23e81d62012-06-06 15:45:44 -04002050
2051 if (pch_iir & SDE_GMBUS_CPT)
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002052 gmbus_irq_handler(dev_priv);
Adam Jackson23e81d62012-06-06 15:45:44 -04002053
2054 if (pch_iir & SDE_AUDIO_CP_REQ_CPT)
2055 DRM_DEBUG_DRIVER("Audio CP request interrupt\n");
2056
2057 if (pch_iir & SDE_AUDIO_CP_CHG_CPT)
2058 DRM_DEBUG_DRIVER("Audio CP change interrupt\n");
2059
2060 if (pch_iir & SDE_FDI_MASK_CPT)
Damien Lespiau055e3932014-08-18 13:49:10 +01002061 for_each_pipe(dev_priv, pipe)
Adam Jackson23e81d62012-06-06 15:45:44 -04002062 DRM_DEBUG_DRIVER(" pipe %c FDI IIR: 0x%08x\n",
2063 pipe_name(pipe),
2064 I915_READ(FDI_RX_IIR(pipe)));
Paulo Zanoni86642812013-04-12 17:57:57 -03002065
2066 if (pch_iir & SDE_ERROR_CPT)
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002067 cpt_serr_int_handler(dev_priv);
Adam Jackson23e81d62012-06-06 15:45:44 -04002068}
2069
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002070static void spt_irq_handler(struct drm_i915_private *dev_priv, u32 pch_iir)
Ville Syrjälä6dbf30c2015-08-27 23:56:02 +03002071{
Ville Syrjälä6dbf30c2015-08-27 23:56:02 +03002072 u32 hotplug_trigger = pch_iir & SDE_HOTPLUG_MASK_SPT &
2073 ~SDE_PORTE_HOTPLUG_SPT;
2074 u32 hotplug2_trigger = pch_iir & SDE_PORTE_HOTPLUG_SPT;
2075 u32 pin_mask = 0, long_mask = 0;
2076
2077 if (hotplug_trigger) {
2078 u32 dig_hotplug_reg;
2079
2080 dig_hotplug_reg = I915_READ(PCH_PORT_HOTPLUG);
2081 I915_WRITE(PCH_PORT_HOTPLUG, dig_hotplug_reg);
2082
2083 intel_get_hpd_pins(&pin_mask, &long_mask, hotplug_trigger,
2084 dig_hotplug_reg, hpd_spt,
Ville Syrjälä74c0b392015-08-27 23:56:07 +03002085 spt_port_hotplug_long_detect);
Ville Syrjälä6dbf30c2015-08-27 23:56:02 +03002086 }
2087
2088 if (hotplug2_trigger) {
2089 u32 dig_hotplug_reg;
2090
2091 dig_hotplug_reg = I915_READ(PCH_PORT_HOTPLUG2);
2092 I915_WRITE(PCH_PORT_HOTPLUG2, dig_hotplug_reg);
2093
2094 intel_get_hpd_pins(&pin_mask, &long_mask, hotplug2_trigger,
2095 dig_hotplug_reg, hpd_spt,
2096 spt_port_hotplug2_long_detect);
2097 }
2098
2099 if (pin_mask)
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002100 intel_hpd_irq_handler(dev_priv, pin_mask, long_mask);
Ville Syrjälä6dbf30c2015-08-27 23:56:02 +03002101
2102 if (pch_iir & SDE_GMBUS_CPT)
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002103 gmbus_irq_handler(dev_priv);
Ville Syrjälä6dbf30c2015-08-27 23:56:02 +03002104}
2105
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002106static void ilk_hpd_irq_handler(struct drm_i915_private *dev_priv,
2107 u32 hotplug_trigger,
Ville Syrjälä40e56412015-08-27 23:56:10 +03002108 const u32 hpd[HPD_NUM_PINS])
2109{
Ville Syrjälä40e56412015-08-27 23:56:10 +03002110 u32 dig_hotplug_reg, pin_mask = 0, long_mask = 0;
2111
2112 dig_hotplug_reg = I915_READ(DIGITAL_PORT_HOTPLUG_CNTRL);
2113 I915_WRITE(DIGITAL_PORT_HOTPLUG_CNTRL, dig_hotplug_reg);
2114
2115 intel_get_hpd_pins(&pin_mask, &long_mask, hotplug_trigger,
2116 dig_hotplug_reg, hpd,
2117 ilk_port_hotplug_long_detect);
2118
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002119 intel_hpd_irq_handler(dev_priv, pin_mask, long_mask);
Ville Syrjälä40e56412015-08-27 23:56:10 +03002120}
2121
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002122static void ilk_display_irq_handler(struct drm_i915_private *dev_priv,
2123 u32 de_iir)
Paulo Zanonic008bc62013-07-12 16:35:10 -03002124{
Daniel Vetter40da17c22013-10-21 18:04:36 +02002125 enum pipe pipe;
Ville Syrjäläe4ce95a2015-08-27 23:56:03 +03002126 u32 hotplug_trigger = de_iir & DE_DP_A_HOTPLUG;
2127
Ville Syrjälä40e56412015-08-27 23:56:10 +03002128 if (hotplug_trigger)
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002129 ilk_hpd_irq_handler(dev_priv, hotplug_trigger, hpd_ilk);
Paulo Zanonic008bc62013-07-12 16:35:10 -03002130
2131 if (de_iir & DE_AUX_CHANNEL_A)
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002132 dp_aux_irq_handler(dev_priv);
Paulo Zanonic008bc62013-07-12 16:35:10 -03002133
2134 if (de_iir & DE_GSE)
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002135 intel_opregion_asle_intr(dev_priv);
Paulo Zanonic008bc62013-07-12 16:35:10 -03002136
Paulo Zanonic008bc62013-07-12 16:35:10 -03002137 if (de_iir & DE_POISON)
2138 DRM_ERROR("Poison interrupt\n");
2139
Damien Lespiau055e3932014-08-18 13:49:10 +01002140 for_each_pipe(dev_priv, pipe) {
Daniel Vetter5a21b662016-05-24 17:13:53 +02002141 if (de_iir & DE_PIPE_VBLANK(pipe) &&
2142 intel_pipe_handle_vblank(dev_priv, pipe))
2143 intel_check_page_flip(dev_priv, pipe);
Paulo Zanonic008bc62013-07-12 16:35:10 -03002144
Daniel Vetter40da17c22013-10-21 18:04:36 +02002145 if (de_iir & DE_PIPE_FIFO_UNDERRUN(pipe))
Daniel Vetter1f7247c2014-09-30 10:56:48 +02002146 intel_cpu_fifo_underrun_irq_handler(dev_priv, pipe);
Paulo Zanonic008bc62013-07-12 16:35:10 -03002147
Daniel Vetter40da17c22013-10-21 18:04:36 +02002148 if (de_iir & DE_PIPE_CRC_DONE(pipe))
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002149 i9xx_pipe_crc_irq_handler(dev_priv, pipe);
Daniel Vetter5b3a8562013-10-16 22:55:48 +02002150
Daniel Vetter40da17c22013-10-21 18:04:36 +02002151 /* plane/pipes map 1:1 on ilk+ */
Maarten Lankhorst5251f042016-05-17 15:07:47 +02002152 if (de_iir & DE_PLANE_FLIP_DONE(pipe))
Maarten Lankhorst51cbaf02016-05-17 15:07:49 +02002153 intel_finish_page_flip_cs(dev_priv, pipe);
Paulo Zanonic008bc62013-07-12 16:35:10 -03002154 }
2155
2156 /* check event from PCH */
2157 if (de_iir & DE_PCH_EVENT) {
2158 u32 pch_iir = I915_READ(SDEIIR);
2159
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002160 if (HAS_PCH_CPT(dev_priv))
2161 cpt_irq_handler(dev_priv, pch_iir);
Paulo Zanonic008bc62013-07-12 16:35:10 -03002162 else
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002163 ibx_irq_handler(dev_priv, pch_iir);
Paulo Zanonic008bc62013-07-12 16:35:10 -03002164
2165 /* should clear PCH hotplug event before clear CPU irq */
2166 I915_WRITE(SDEIIR, pch_iir);
2167 }
2168
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002169 if (IS_GEN5(dev_priv) && de_iir & DE_PCU_EVENT)
2170 ironlake_rps_change_irq_handler(dev_priv);
Paulo Zanonic008bc62013-07-12 16:35:10 -03002171}
2172
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002173static void ivb_display_irq_handler(struct drm_i915_private *dev_priv,
2174 u32 de_iir)
Paulo Zanoni9719fb92013-07-12 16:35:11 -03002175{
Damien Lespiau07d27e22014-03-03 17:31:46 +00002176 enum pipe pipe;
Ville Syrjälä23bb4cb2015-08-27 23:56:04 +03002177 u32 hotplug_trigger = de_iir & DE_DP_A_HOTPLUG_IVB;
2178
Ville Syrjälä40e56412015-08-27 23:56:10 +03002179 if (hotplug_trigger)
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002180 ilk_hpd_irq_handler(dev_priv, hotplug_trigger, hpd_ivb);
Paulo Zanoni9719fb92013-07-12 16:35:11 -03002181
2182 if (de_iir & DE_ERR_INT_IVB)
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002183 ivb_err_int_handler(dev_priv);
Paulo Zanoni9719fb92013-07-12 16:35:11 -03002184
2185 if (de_iir & DE_AUX_CHANNEL_A_IVB)
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002186 dp_aux_irq_handler(dev_priv);
Paulo Zanoni9719fb92013-07-12 16:35:11 -03002187
2188 if (de_iir & DE_GSE_IVB)
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002189 intel_opregion_asle_intr(dev_priv);
Paulo Zanoni9719fb92013-07-12 16:35:11 -03002190
Damien Lespiau055e3932014-08-18 13:49:10 +01002191 for_each_pipe(dev_priv, pipe) {
Daniel Vetter5a21b662016-05-24 17:13:53 +02002192 if (de_iir & (DE_PIPE_VBLANK_IVB(pipe)) &&
2193 intel_pipe_handle_vblank(dev_priv, pipe))
2194 intel_check_page_flip(dev_priv, pipe);
Daniel Vetter40da17c22013-10-21 18:04:36 +02002195
2196 /* plane/pipes map 1:1 on ilk+ */
Maarten Lankhorst5251f042016-05-17 15:07:47 +02002197 if (de_iir & DE_PLANE_FLIP_DONE_IVB(pipe))
Maarten Lankhorst51cbaf02016-05-17 15:07:49 +02002198 intel_finish_page_flip_cs(dev_priv, pipe);
Paulo Zanoni9719fb92013-07-12 16:35:11 -03002199 }
2200
2201 /* check event from PCH */
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002202 if (!HAS_PCH_NOP(dev_priv) && (de_iir & DE_PCH_EVENT_IVB)) {
Paulo Zanoni9719fb92013-07-12 16:35:11 -03002203 u32 pch_iir = I915_READ(SDEIIR);
2204
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002205 cpt_irq_handler(dev_priv, pch_iir);
Paulo Zanoni9719fb92013-07-12 16:35:11 -03002206
2207 /* clear PCH hotplug event before clear CPU irq */
2208 I915_WRITE(SDEIIR, pch_iir);
2209 }
2210}
2211
Oscar Mateo72c90f62014-06-16 16:10:57 +01002212/*
2213 * To handle irqs with the minimum potential races with fresh interrupts, we:
2214 * 1 - Disable Master Interrupt Control.
2215 * 2 - Find the source(s) of the interrupt.
2216 * 3 - Clear the Interrupt Identity bits (IIR).
2217 * 4 - Process the interrupt(s) that had bits set in the IIRs.
2218 * 5 - Re-enable Master Interrupt Control.
2219 */
Paulo Zanonif1af8fc2013-07-12 19:56:30 -03002220static irqreturn_t ironlake_irq_handler(int irq, void *arg)
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002221{
Daniel Vetter45a83f82014-05-12 19:17:55 +02002222 struct drm_device *dev = arg;
Jani Nikula2d1013d2014-03-31 14:27:17 +03002223 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanonif1af8fc2013-07-12 19:56:30 -03002224 u32 de_iir, gt_iir, de_ier, sde_ier = 0;
Chris Wilson0e434062012-05-09 21:45:44 +01002225 irqreturn_t ret = IRQ_NONE;
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002226
Imre Deak2dd2a882015-02-24 11:14:30 +02002227 if (!intel_irqs_enabled(dev_priv))
2228 return IRQ_NONE;
2229
Imre Deak1f814da2015-12-16 02:52:19 +02002230 /* IRQs are synced during runtime_suspend, we don't require a wakeref */
2231 disable_rpm_wakeref_asserts(dev_priv);
2232
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002233 /* disable master interrupt before clearing iir */
2234 de_ier = I915_READ(DEIER);
2235 I915_WRITE(DEIER, de_ier & ~DE_MASTER_IRQ_CONTROL);
Paulo Zanoni23a78512013-07-12 16:35:14 -03002236 POSTING_READ(DEIER);
Chris Wilson0e434062012-05-09 21:45:44 +01002237
Paulo Zanoni44498ae2013-02-22 17:05:28 -03002238 /* Disable south interrupts. We'll only write to SDEIIR once, so further
2239 * interrupts will will be stored on its back queue, and then we'll be
2240 * able to process them after we restore SDEIER (as soon as we restore
2241 * it, we'll get an interrupt if SDEIIR still has something to process
2242 * due to its back queue). */
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002243 if (!HAS_PCH_NOP(dev_priv)) {
Ben Widawskyab5c6082013-04-05 13:12:41 -07002244 sde_ier = I915_READ(SDEIER);
2245 I915_WRITE(SDEIER, 0);
2246 POSTING_READ(SDEIER);
2247 }
Paulo Zanoni44498ae2013-02-22 17:05:28 -03002248
Oscar Mateo72c90f62014-06-16 16:10:57 +01002249 /* Find, clear, then process each source of interrupt */
2250
Chris Wilson0e434062012-05-09 21:45:44 +01002251 gt_iir = I915_READ(GTIIR);
2252 if (gt_iir) {
Oscar Mateo72c90f62014-06-16 16:10:57 +01002253 I915_WRITE(GTIIR, gt_iir);
2254 ret = IRQ_HANDLED;
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002255 if (INTEL_GEN(dev_priv) >= 6)
Ville Syrjälä261e40b2016-04-13 21:19:57 +03002256 snb_gt_irq_handler(dev_priv, gt_iir);
Paulo Zanonid8fc8a42013-07-19 18:57:55 -03002257 else
Ville Syrjälä261e40b2016-04-13 21:19:57 +03002258 ilk_gt_irq_handler(dev_priv, gt_iir);
Chris Wilson0e434062012-05-09 21:45:44 +01002259 }
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002260
2261 de_iir = I915_READ(DEIIR);
Chris Wilson0e434062012-05-09 21:45:44 +01002262 if (de_iir) {
Oscar Mateo72c90f62014-06-16 16:10:57 +01002263 I915_WRITE(DEIIR, de_iir);
2264 ret = IRQ_HANDLED;
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002265 if (INTEL_GEN(dev_priv) >= 7)
2266 ivb_display_irq_handler(dev_priv, de_iir);
Paulo Zanonif1af8fc2013-07-12 19:56:30 -03002267 else
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002268 ilk_display_irq_handler(dev_priv, de_iir);
Chris Wilson0e434062012-05-09 21:45:44 +01002269 }
2270
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002271 if (INTEL_GEN(dev_priv) >= 6) {
Paulo Zanonif1af8fc2013-07-12 19:56:30 -03002272 u32 pm_iir = I915_READ(GEN6_PMIIR);
2273 if (pm_iir) {
Paulo Zanonif1af8fc2013-07-12 19:56:30 -03002274 I915_WRITE(GEN6_PMIIR, pm_iir);
2275 ret = IRQ_HANDLED;
Oscar Mateo72c90f62014-06-16 16:10:57 +01002276 gen6_rps_irq_handler(dev_priv, pm_iir);
Paulo Zanonif1af8fc2013-07-12 19:56:30 -03002277 }
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002278 }
2279
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002280 I915_WRITE(DEIER, de_ier);
2281 POSTING_READ(DEIER);
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002282 if (!HAS_PCH_NOP(dev_priv)) {
Ben Widawskyab5c6082013-04-05 13:12:41 -07002283 I915_WRITE(SDEIER, sde_ier);
2284 POSTING_READ(SDEIER);
2285 }
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002286
Imre Deak1f814da2015-12-16 02:52:19 +02002287 /* IRQs are synced during runtime_suspend, we don't require a wakeref */
2288 enable_rpm_wakeref_asserts(dev_priv);
2289
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002290 return ret;
2291}
2292
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002293static void bxt_hpd_irq_handler(struct drm_i915_private *dev_priv,
2294 u32 hotplug_trigger,
Ville Syrjälä40e56412015-08-27 23:56:10 +03002295 const u32 hpd[HPD_NUM_PINS])
Shashank Sharmad04a4922014-08-22 17:40:41 +05302296{
Ville Syrjäläcebd87a2015-08-27 23:56:09 +03002297 u32 dig_hotplug_reg, pin_mask = 0, long_mask = 0;
Shashank Sharmad04a4922014-08-22 17:40:41 +05302298
Ville Syrjäläa52bb152015-08-27 23:56:11 +03002299 dig_hotplug_reg = I915_READ(PCH_PORT_HOTPLUG);
2300 I915_WRITE(PCH_PORT_HOTPLUG, dig_hotplug_reg);
Shashank Sharmad04a4922014-08-22 17:40:41 +05302301
Ville Syrjäläcebd87a2015-08-27 23:56:09 +03002302 intel_get_hpd_pins(&pin_mask, &long_mask, hotplug_trigger,
Ville Syrjälä40e56412015-08-27 23:56:10 +03002303 dig_hotplug_reg, hpd,
Ville Syrjäläcebd87a2015-08-27 23:56:09 +03002304 bxt_port_hotplug_long_detect);
Ville Syrjälä40e56412015-08-27 23:56:10 +03002305
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002306 intel_hpd_irq_handler(dev_priv, pin_mask, long_mask);
Shashank Sharmad04a4922014-08-22 17:40:41 +05302307}
2308
Tvrtko Ursulinf11a0f42016-01-12 16:04:07 +00002309static irqreturn_t
2310gen8_de_irq_handler(struct drm_i915_private *dev_priv, u32 master_ctl)
Ben Widawskyabd58f02013-11-02 21:07:09 -07002311{
Ben Widawskyabd58f02013-11-02 21:07:09 -07002312 irqreturn_t ret = IRQ_NONE;
Tvrtko Ursulinf11a0f42016-01-12 16:04:07 +00002313 u32 iir;
Daniel Vetterc42664c2013-11-07 11:05:40 +01002314 enum pipe pipe;
Jesse Barnes88e04702014-11-13 17:51:48 +00002315
Ben Widawskyabd58f02013-11-02 21:07:09 -07002316 if (master_ctl & GEN8_DE_MISC_IRQ) {
Tvrtko Ursuline32192e2016-01-12 16:04:06 +00002317 iir = I915_READ(GEN8_DE_MISC_IIR);
2318 if (iir) {
2319 I915_WRITE(GEN8_DE_MISC_IIR, iir);
Ben Widawskyabd58f02013-11-02 21:07:09 -07002320 ret = IRQ_HANDLED;
Tvrtko Ursuline32192e2016-01-12 16:04:06 +00002321 if (iir & GEN8_DE_MISC_GSE)
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002322 intel_opregion_asle_intr(dev_priv);
Oscar Mateo38cc46d2014-06-16 16:10:59 +01002323 else
2324 DRM_ERROR("Unexpected DE Misc interrupt\n");
Ben Widawskyabd58f02013-11-02 21:07:09 -07002325 }
Oscar Mateo38cc46d2014-06-16 16:10:59 +01002326 else
2327 DRM_ERROR("The master control interrupt lied (DE MISC)!\n");
Ben Widawskyabd58f02013-11-02 21:07:09 -07002328 }
2329
Daniel Vetter6d766f02013-11-07 14:49:55 +01002330 if (master_ctl & GEN8_DE_PORT_IRQ) {
Tvrtko Ursuline32192e2016-01-12 16:04:06 +00002331 iir = I915_READ(GEN8_DE_PORT_IIR);
2332 if (iir) {
2333 u32 tmp_mask;
Shashank Sharmad04a4922014-08-22 17:40:41 +05302334 bool found = false;
Ville Syrjäläcebd87a2015-08-27 23:56:09 +03002335
Tvrtko Ursuline32192e2016-01-12 16:04:06 +00002336 I915_WRITE(GEN8_DE_PORT_IIR, iir);
Daniel Vetter6d766f02013-11-07 14:49:55 +01002337 ret = IRQ_HANDLED;
Jesse Barnes88e04702014-11-13 17:51:48 +00002338
Tvrtko Ursuline32192e2016-01-12 16:04:06 +00002339 tmp_mask = GEN8_AUX_CHANNEL_A;
2340 if (INTEL_INFO(dev_priv)->gen >= 9)
2341 tmp_mask |= GEN9_AUX_CHANNEL_B |
2342 GEN9_AUX_CHANNEL_C |
2343 GEN9_AUX_CHANNEL_D;
2344
2345 if (iir & tmp_mask) {
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002346 dp_aux_irq_handler(dev_priv);
Shashank Sharmad04a4922014-08-22 17:40:41 +05302347 found = true;
2348 }
2349
Tvrtko Ursuline32192e2016-01-12 16:04:06 +00002350 if (IS_BROXTON(dev_priv)) {
2351 tmp_mask = iir & BXT_DE_PORT_HOTPLUG_MASK;
2352 if (tmp_mask) {
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002353 bxt_hpd_irq_handler(dev_priv, tmp_mask,
2354 hpd_bxt);
Tvrtko Ursuline32192e2016-01-12 16:04:06 +00002355 found = true;
2356 }
2357 } else if (IS_BROADWELL(dev_priv)) {
2358 tmp_mask = iir & GEN8_PORT_DP_A_HOTPLUG;
2359 if (tmp_mask) {
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002360 ilk_hpd_irq_handler(dev_priv,
2361 tmp_mask, hpd_bdw);
Tvrtko Ursuline32192e2016-01-12 16:04:06 +00002362 found = true;
2363 }
Shashank Sharmad04a4922014-08-22 17:40:41 +05302364 }
2365
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002366 if (IS_BROXTON(dev_priv) && (iir & BXT_DE_PORT_GMBUS)) {
2367 gmbus_irq_handler(dev_priv);
Shashank Sharma9e637432014-08-22 17:40:43 +05302368 found = true;
2369 }
2370
Shashank Sharmad04a4922014-08-22 17:40:41 +05302371 if (!found)
Oscar Mateo38cc46d2014-06-16 16:10:59 +01002372 DRM_ERROR("Unexpected DE Port interrupt\n");
Daniel Vetter6d766f02013-11-07 14:49:55 +01002373 }
Oscar Mateo38cc46d2014-06-16 16:10:59 +01002374 else
2375 DRM_ERROR("The master control interrupt lied (DE PORT)!\n");
Daniel Vetter6d766f02013-11-07 14:49:55 +01002376 }
2377
Damien Lespiau055e3932014-08-18 13:49:10 +01002378 for_each_pipe(dev_priv, pipe) {
Tvrtko Ursuline32192e2016-01-12 16:04:06 +00002379 u32 flip_done, fault_errors;
Ben Widawskyabd58f02013-11-02 21:07:09 -07002380
Daniel Vetterc42664c2013-11-07 11:05:40 +01002381 if (!(master_ctl & GEN8_DE_PIPE_IRQ(pipe)))
2382 continue;
Ben Widawskyabd58f02013-11-02 21:07:09 -07002383
Tvrtko Ursuline32192e2016-01-12 16:04:06 +00002384 iir = I915_READ(GEN8_DE_PIPE_IIR(pipe));
2385 if (!iir) {
Ben Widawskyabd58f02013-11-02 21:07:09 -07002386 DRM_ERROR("The master control interrupt lied (DE PIPE)!\n");
Tvrtko Ursuline32192e2016-01-12 16:04:06 +00002387 continue;
2388 }
2389
2390 ret = IRQ_HANDLED;
2391 I915_WRITE(GEN8_DE_PIPE_IIR(pipe), iir);
2392
Daniel Vetter5a21b662016-05-24 17:13:53 +02002393 if (iir & GEN8_PIPE_VBLANK &&
2394 intel_pipe_handle_vblank(dev_priv, pipe))
2395 intel_check_page_flip(dev_priv, pipe);
Tvrtko Ursuline32192e2016-01-12 16:04:06 +00002396
2397 flip_done = iir;
2398 if (INTEL_INFO(dev_priv)->gen >= 9)
2399 flip_done &= GEN9_PIPE_PLANE1_FLIP_DONE;
2400 else
2401 flip_done &= GEN8_PIPE_PRIMARY_FLIP_DONE;
2402
Maarten Lankhorst5251f042016-05-17 15:07:47 +02002403 if (flip_done)
Maarten Lankhorst51cbaf02016-05-17 15:07:49 +02002404 intel_finish_page_flip_cs(dev_priv, pipe);
Tvrtko Ursuline32192e2016-01-12 16:04:06 +00002405
2406 if (iir & GEN8_PIPE_CDCLK_CRC_DONE)
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002407 hsw_pipe_crc_irq_handler(dev_priv, pipe);
Tvrtko Ursuline32192e2016-01-12 16:04:06 +00002408
2409 if (iir & GEN8_PIPE_FIFO_UNDERRUN)
2410 intel_cpu_fifo_underrun_irq_handler(dev_priv, pipe);
2411
2412 fault_errors = iir;
2413 if (INTEL_INFO(dev_priv)->gen >= 9)
2414 fault_errors &= GEN9_DE_PIPE_IRQ_FAULT_ERRORS;
2415 else
2416 fault_errors &= GEN8_DE_PIPE_IRQ_FAULT_ERRORS;
2417
2418 if (fault_errors)
2419 DRM_ERROR("Fault errors on pipe %c\n: 0x%08x",
2420 pipe_name(pipe),
2421 fault_errors);
Ben Widawskyabd58f02013-11-02 21:07:09 -07002422 }
2423
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002424 if (HAS_PCH_SPLIT(dev_priv) && !HAS_PCH_NOP(dev_priv) &&
Shashank Sharma266ea3d2014-08-22 17:40:42 +05302425 master_ctl & GEN8_DE_PCH_IRQ) {
Daniel Vetter92d03a82013-11-07 11:05:43 +01002426 /*
2427 * FIXME(BDW): Assume for now that the new interrupt handling
2428 * scheme also closed the SDE interrupt handling race we've seen
2429 * on older pch-split platforms. But this needs testing.
2430 */
Tvrtko Ursuline32192e2016-01-12 16:04:06 +00002431 iir = I915_READ(SDEIIR);
2432 if (iir) {
2433 I915_WRITE(SDEIIR, iir);
Daniel Vetter92d03a82013-11-07 11:05:43 +01002434 ret = IRQ_HANDLED;
Ville Syrjälä6dbf30c2015-08-27 23:56:02 +03002435
2436 if (HAS_PCH_SPT(dev_priv))
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002437 spt_irq_handler(dev_priv, iir);
Ville Syrjälä6dbf30c2015-08-27 23:56:02 +03002438 else
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002439 cpt_irq_handler(dev_priv, iir);
Jani Nikula2dfb0b82016-01-07 10:29:10 +02002440 } else {
2441 /*
2442 * Like on previous PCH there seems to be something
2443 * fishy going on with forwarding PCH interrupts.
2444 */
2445 DRM_DEBUG_DRIVER("The master control interrupt lied (SDE)!\n");
2446 }
Daniel Vetter92d03a82013-11-07 11:05:43 +01002447 }
2448
Tvrtko Ursulinf11a0f42016-01-12 16:04:07 +00002449 return ret;
2450}
2451
2452static irqreturn_t gen8_irq_handler(int irq, void *arg)
2453{
2454 struct drm_device *dev = arg;
2455 struct drm_i915_private *dev_priv = dev->dev_private;
2456 u32 master_ctl;
Ville Syrjäläe30e2512016-04-13 21:19:58 +03002457 u32 gt_iir[4] = {};
Tvrtko Ursulinf11a0f42016-01-12 16:04:07 +00002458 irqreturn_t ret;
2459
2460 if (!intel_irqs_enabled(dev_priv))
2461 return IRQ_NONE;
2462
2463 master_ctl = I915_READ_FW(GEN8_MASTER_IRQ);
2464 master_ctl &= ~GEN8_MASTER_IRQ_CONTROL;
2465 if (!master_ctl)
2466 return IRQ_NONE;
2467
2468 I915_WRITE_FW(GEN8_MASTER_IRQ, 0);
2469
2470 /* IRQs are synced during runtime_suspend, we don't require a wakeref */
2471 disable_rpm_wakeref_asserts(dev_priv);
2472
2473 /* Find, clear, then process each source of interrupt */
Ville Syrjäläe30e2512016-04-13 21:19:58 +03002474 ret = gen8_gt_irq_ack(dev_priv, master_ctl, gt_iir);
2475 gen8_gt_irq_handler(dev_priv, gt_iir);
Tvrtko Ursulinf11a0f42016-01-12 16:04:07 +00002476 ret |= gen8_de_irq_handler(dev_priv, master_ctl);
2477
Chris Wilsoncb0d2052015-04-07 16:21:04 +01002478 I915_WRITE_FW(GEN8_MASTER_IRQ, GEN8_MASTER_IRQ_CONTROL);
2479 POSTING_READ_FW(GEN8_MASTER_IRQ);
Ben Widawskyabd58f02013-11-02 21:07:09 -07002480
Imre Deak1f814da2015-12-16 02:52:19 +02002481 enable_rpm_wakeref_asserts(dev_priv);
2482
Ben Widawskyabd58f02013-11-02 21:07:09 -07002483 return ret;
2484}
2485
Chris Wilson1f15b762016-07-01 17:23:14 +01002486static void i915_error_wake_up(struct drm_i915_private *dev_priv)
Daniel Vetter17e1df02013-09-08 21:57:13 +02002487{
Daniel Vetter17e1df02013-09-08 21:57:13 +02002488 /*
2489 * Notify all waiters for GPU completion events that reset state has
2490 * been changed, and that they need to restart their wait after
2491 * checking for potential errors (and bail out to drop locks if there is
2492 * a gpu reset pending so that i915_error_work_func can acquire them).
2493 */
2494
2495 /* Wake up __wait_seqno, potentially holding dev->struct_mutex. */
Chris Wilson1f15b762016-07-01 17:23:14 +01002496 wake_up_all(&dev_priv->gpu_error.wait_queue);
Daniel Vetter17e1df02013-09-08 21:57:13 +02002497
2498 /* Wake up intel_crtc_wait_for_pending_flips, holding crtc->mutex. */
2499 wake_up_all(&dev_priv->pending_flip_queue);
Daniel Vetter17e1df02013-09-08 21:57:13 +02002500}
2501
Jesse Barnes8a905232009-07-11 16:48:03 -04002502/**
Mika Kuoppalab8d24a02015-01-28 17:03:14 +02002503 * i915_reset_and_wakeup - do process context error handling work
Tvrtko Ursulin14bb2c12016-06-03 14:02:17 +01002504 * @dev_priv: i915 device private
Jesse Barnes8a905232009-07-11 16:48:03 -04002505 *
2506 * Fire an error uevent so userspace can see that a hang or error
2507 * was detected.
2508 */
Chris Wilsonc0336662016-05-06 15:40:21 +01002509static void i915_reset_and_wakeup(struct drm_i915_private *dev_priv)
Jesse Barnes8a905232009-07-11 16:48:03 -04002510{
Chris Wilsonc0336662016-05-06 15:40:21 +01002511 struct kobject *kobj = &dev_priv->dev->primary->kdev->kobj;
Ben Widawskycce723e2013-07-19 09:16:42 -07002512 char *error_event[] = { I915_ERROR_UEVENT "=1", NULL };
2513 char *reset_event[] = { I915_RESET_UEVENT "=1", NULL };
2514 char *reset_done_event[] = { I915_ERROR_UEVENT "=0", NULL };
Daniel Vetter17e1df02013-09-08 21:57:13 +02002515 int ret;
Jesse Barnes8a905232009-07-11 16:48:03 -04002516
Chris Wilsonc0336662016-05-06 15:40:21 +01002517 kobject_uevent_env(kobj, KOBJ_CHANGE, error_event);
Jesse Barnes8a905232009-07-11 16:48:03 -04002518
Daniel Vetter7db0ba22012-12-06 16:23:37 +01002519 /*
2520 * Note that there's only one work item which does gpu resets, so we
2521 * need not worry about concurrent gpu resets potentially incrementing
2522 * error->reset_counter twice. We only need to take care of another
2523 * racing irq/hangcheck declaring the gpu dead for a second time. A
2524 * quick check for that is good enough: schedule_work ensures the
2525 * correct ordering between hang detection and this work item, and since
2526 * the reset in-progress bit is only ever set by code outside of this
2527 * work we don't need to worry about any other races.
2528 */
Chris Wilsond98c52c2016-04-13 17:35:05 +01002529 if (i915_reset_in_progress(&dev_priv->gpu_error)) {
Chris Wilsonf803aa52010-09-19 12:38:26 +01002530 DRM_DEBUG_DRIVER("resetting chip\n");
Chris Wilsonc0336662016-05-06 15:40:21 +01002531 kobject_uevent_env(kobj, KOBJ_CHANGE, reset_event);
Daniel Vetter1f83fee2012-11-15 17:17:22 +01002532
Daniel Vetter17e1df02013-09-08 21:57:13 +02002533 /*
Imre Deakf454c692014-04-23 01:09:04 +03002534 * In most cases it's guaranteed that we get here with an RPM
2535 * reference held, for example because there is a pending GPU
2536 * request that won't finish until the reset is done. This
2537 * isn't the case at least when we get here by doing a
2538 * simulated reset via debugs, so get an RPM reference.
2539 */
2540 intel_runtime_pm_get(dev_priv);
Ville Syrjälä75147472014-11-24 18:28:11 +02002541
Chris Wilsonc0336662016-05-06 15:40:21 +01002542 intel_prepare_reset(dev_priv);
Ville Syrjälä75147472014-11-24 18:28:11 +02002543
Imre Deakf454c692014-04-23 01:09:04 +03002544 /*
Daniel Vetter17e1df02013-09-08 21:57:13 +02002545 * All state reset _must_ be completed before we update the
2546 * reset counter, for otherwise waiters might miss the reset
2547 * pending state and not properly drop locks, resulting in
2548 * deadlocks with the reset work.
2549 */
Chris Wilsonc0336662016-05-06 15:40:21 +01002550 ret = i915_reset(dev_priv);
Daniel Vetterf69061b2012-12-06 09:01:42 +01002551
Chris Wilsonc0336662016-05-06 15:40:21 +01002552 intel_finish_reset(dev_priv);
Daniel Vetter17e1df02013-09-08 21:57:13 +02002553
Imre Deakf454c692014-04-23 01:09:04 +03002554 intel_runtime_pm_put(dev_priv);
2555
Chris Wilsond98c52c2016-04-13 17:35:05 +01002556 if (ret == 0)
Chris Wilsonc0336662016-05-06 15:40:21 +01002557 kobject_uevent_env(kobj,
Daniel Vetterf69061b2012-12-06 09:01:42 +01002558 KOBJ_CHANGE, reset_done_event);
Daniel Vetter1f83fee2012-11-15 17:17:22 +01002559
Daniel Vetter17e1df02013-09-08 21:57:13 +02002560 /*
2561 * Note: The wake_up also serves as a memory barrier so that
2562 * waiters see the update value of the reset counter atomic_t.
2563 */
Chris Wilson1f15b762016-07-01 17:23:14 +01002564 wake_up_all(&dev_priv->gpu_error.reset_queue);
Ben Gamarif316a422009-09-14 17:48:46 -04002565 }
Jesse Barnes8a905232009-07-11 16:48:03 -04002566}
2567
Chris Wilsonc0336662016-05-06 15:40:21 +01002568static void i915_report_and_clear_eir(struct drm_i915_private *dev_priv)
Jesse Barnes8a905232009-07-11 16:48:03 -04002569{
Ben Widawskybd9854f2012-08-23 15:18:09 -07002570 uint32_t instdone[I915_NUM_INSTDONE_REG];
Jesse Barnes8a905232009-07-11 16:48:03 -04002571 u32 eir = I915_READ(EIR);
Ben Widawsky050ee912012-08-22 11:32:15 -07002572 int pipe, i;
Jesse Barnes8a905232009-07-11 16:48:03 -04002573
Chris Wilson35aed2e2010-05-27 13:18:12 +01002574 if (!eir)
2575 return;
Jesse Barnes8a905232009-07-11 16:48:03 -04002576
Joe Perchesa70491c2012-03-18 13:00:11 -07002577 pr_err("render error detected, EIR: 0x%08x\n", eir);
Jesse Barnes8a905232009-07-11 16:48:03 -04002578
Chris Wilsonc0336662016-05-06 15:40:21 +01002579 i915_get_extra_instdone(dev_priv, instdone);
Ben Widawskybd9854f2012-08-23 15:18:09 -07002580
Chris Wilsonc0336662016-05-06 15:40:21 +01002581 if (IS_G4X(dev_priv)) {
Jesse Barnes8a905232009-07-11 16:48:03 -04002582 if (eir & (GM45_ERROR_MEM_PRIV | GM45_ERROR_CP_PRIV)) {
2583 u32 ipeir = I915_READ(IPEIR_I965);
2584
Joe Perchesa70491c2012-03-18 13:00:11 -07002585 pr_err(" IPEIR: 0x%08x\n", I915_READ(IPEIR_I965));
2586 pr_err(" IPEHR: 0x%08x\n", I915_READ(IPEHR_I965));
Ben Widawsky050ee912012-08-22 11:32:15 -07002587 for (i = 0; i < ARRAY_SIZE(instdone); i++)
2588 pr_err(" INSTDONE_%d: 0x%08x\n", i, instdone[i]);
Joe Perchesa70491c2012-03-18 13:00:11 -07002589 pr_err(" INSTPS: 0x%08x\n", I915_READ(INSTPS));
Joe Perchesa70491c2012-03-18 13:00:11 -07002590 pr_err(" ACTHD: 0x%08x\n", I915_READ(ACTHD_I965));
Jesse Barnes8a905232009-07-11 16:48:03 -04002591 I915_WRITE(IPEIR_I965, ipeir);
Chris Wilson3143a2b2010-11-16 15:55:10 +00002592 POSTING_READ(IPEIR_I965);
Jesse Barnes8a905232009-07-11 16:48:03 -04002593 }
2594 if (eir & GM45_ERROR_PAGE_TABLE) {
2595 u32 pgtbl_err = I915_READ(PGTBL_ER);
Joe Perchesa70491c2012-03-18 13:00:11 -07002596 pr_err("page table error\n");
2597 pr_err(" PGTBL_ER: 0x%08x\n", pgtbl_err);
Jesse Barnes8a905232009-07-11 16:48:03 -04002598 I915_WRITE(PGTBL_ER, pgtbl_err);
Chris Wilson3143a2b2010-11-16 15:55:10 +00002599 POSTING_READ(PGTBL_ER);
Jesse Barnes8a905232009-07-11 16:48:03 -04002600 }
2601 }
2602
Chris Wilsonc0336662016-05-06 15:40:21 +01002603 if (!IS_GEN2(dev_priv)) {
Jesse Barnes8a905232009-07-11 16:48:03 -04002604 if (eir & I915_ERROR_PAGE_TABLE) {
2605 u32 pgtbl_err = I915_READ(PGTBL_ER);
Joe Perchesa70491c2012-03-18 13:00:11 -07002606 pr_err("page table error\n");
2607 pr_err(" PGTBL_ER: 0x%08x\n", pgtbl_err);
Jesse Barnes8a905232009-07-11 16:48:03 -04002608 I915_WRITE(PGTBL_ER, pgtbl_err);
Chris Wilson3143a2b2010-11-16 15:55:10 +00002609 POSTING_READ(PGTBL_ER);
Jesse Barnes8a905232009-07-11 16:48:03 -04002610 }
2611 }
2612
2613 if (eir & I915_ERROR_MEMORY_REFRESH) {
Joe Perchesa70491c2012-03-18 13:00:11 -07002614 pr_err("memory refresh error:\n");
Damien Lespiau055e3932014-08-18 13:49:10 +01002615 for_each_pipe(dev_priv, pipe)
Joe Perchesa70491c2012-03-18 13:00:11 -07002616 pr_err("pipe %c stat: 0x%08x\n",
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08002617 pipe_name(pipe), I915_READ(PIPESTAT(pipe)));
Jesse Barnes8a905232009-07-11 16:48:03 -04002618 /* pipestat has already been acked */
2619 }
2620 if (eir & I915_ERROR_INSTRUCTION) {
Joe Perchesa70491c2012-03-18 13:00:11 -07002621 pr_err("instruction error\n");
2622 pr_err(" INSTPM: 0x%08x\n", I915_READ(INSTPM));
Ben Widawsky050ee912012-08-22 11:32:15 -07002623 for (i = 0; i < ARRAY_SIZE(instdone); i++)
2624 pr_err(" INSTDONE_%d: 0x%08x\n", i, instdone[i]);
Chris Wilsonc0336662016-05-06 15:40:21 +01002625 if (INTEL_GEN(dev_priv) < 4) {
Jesse Barnes8a905232009-07-11 16:48:03 -04002626 u32 ipeir = I915_READ(IPEIR);
2627
Joe Perchesa70491c2012-03-18 13:00:11 -07002628 pr_err(" IPEIR: 0x%08x\n", I915_READ(IPEIR));
2629 pr_err(" IPEHR: 0x%08x\n", I915_READ(IPEHR));
Joe Perchesa70491c2012-03-18 13:00:11 -07002630 pr_err(" ACTHD: 0x%08x\n", I915_READ(ACTHD));
Jesse Barnes8a905232009-07-11 16:48:03 -04002631 I915_WRITE(IPEIR, ipeir);
Chris Wilson3143a2b2010-11-16 15:55:10 +00002632 POSTING_READ(IPEIR);
Jesse Barnes8a905232009-07-11 16:48:03 -04002633 } else {
2634 u32 ipeir = I915_READ(IPEIR_I965);
2635
Joe Perchesa70491c2012-03-18 13:00:11 -07002636 pr_err(" IPEIR: 0x%08x\n", I915_READ(IPEIR_I965));
2637 pr_err(" IPEHR: 0x%08x\n", I915_READ(IPEHR_I965));
Joe Perchesa70491c2012-03-18 13:00:11 -07002638 pr_err(" INSTPS: 0x%08x\n", I915_READ(INSTPS));
Joe Perchesa70491c2012-03-18 13:00:11 -07002639 pr_err(" ACTHD: 0x%08x\n", I915_READ(ACTHD_I965));
Jesse Barnes8a905232009-07-11 16:48:03 -04002640 I915_WRITE(IPEIR_I965, ipeir);
Chris Wilson3143a2b2010-11-16 15:55:10 +00002641 POSTING_READ(IPEIR_I965);
Jesse Barnes8a905232009-07-11 16:48:03 -04002642 }
2643 }
2644
2645 I915_WRITE(EIR, eir);
Chris Wilson3143a2b2010-11-16 15:55:10 +00002646 POSTING_READ(EIR);
Jesse Barnes8a905232009-07-11 16:48:03 -04002647 eir = I915_READ(EIR);
2648 if (eir) {
2649 /*
2650 * some errors might have become stuck,
2651 * mask them.
2652 */
2653 DRM_ERROR("EIR stuck: 0x%08x, masking\n", eir);
2654 I915_WRITE(EMR, I915_READ(EMR) | eir);
2655 I915_WRITE(IIR, I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT);
2656 }
Chris Wilson35aed2e2010-05-27 13:18:12 +01002657}
2658
2659/**
Mika Kuoppalab8d24a02015-01-28 17:03:14 +02002660 * i915_handle_error - handle a gpu error
Tvrtko Ursulin14bb2c12016-06-03 14:02:17 +01002661 * @dev_priv: i915 device private
arun.siluvery@linux.intel.com14b730f2016-03-18 20:07:55 +00002662 * @engine_mask: mask representing engines that are hung
Javier Martinez Canillasaafd8582015-10-08 09:57:49 +02002663 * Do some basic checking of register state at error time and
Chris Wilson35aed2e2010-05-27 13:18:12 +01002664 * dump it to the syslog. Also call i915_capture_error_state() to make
2665 * sure we get a record and make it available in debugfs. Fire a uevent
2666 * so userspace knows something bad happened (should trigger collection
2667 * of a ring dump etc.).
Tvrtko Ursulin14bb2c12016-06-03 14:02:17 +01002668 * @fmt: Error message format string
Chris Wilson35aed2e2010-05-27 13:18:12 +01002669 */
Chris Wilsonc0336662016-05-06 15:40:21 +01002670void i915_handle_error(struct drm_i915_private *dev_priv,
2671 u32 engine_mask,
Mika Kuoppala58174462014-02-25 17:11:26 +02002672 const char *fmt, ...)
Chris Wilson35aed2e2010-05-27 13:18:12 +01002673{
Mika Kuoppala58174462014-02-25 17:11:26 +02002674 va_list args;
2675 char error_msg[80];
Chris Wilson35aed2e2010-05-27 13:18:12 +01002676
Mika Kuoppala58174462014-02-25 17:11:26 +02002677 va_start(args, fmt);
2678 vscnprintf(error_msg, sizeof(error_msg), fmt, args);
2679 va_end(args);
2680
Chris Wilsonc0336662016-05-06 15:40:21 +01002681 i915_capture_error_state(dev_priv, engine_mask, error_msg);
2682 i915_report_and_clear_eir(dev_priv);
Jesse Barnes8a905232009-07-11 16:48:03 -04002683
arun.siluvery@linux.intel.com14b730f2016-03-18 20:07:55 +00002684 if (engine_mask) {
Peter Zijlstra805de8f42015-04-24 01:12:32 +02002685 atomic_or(I915_RESET_IN_PROGRESS_FLAG,
Daniel Vetterf69061b2012-12-06 09:01:42 +01002686 &dev_priv->gpu_error.reset_counter);
Ben Gamariba1234d2009-09-14 17:48:47 -04002687
Ben Gamari11ed50e2009-09-14 17:48:45 -04002688 /*
Mika Kuoppalab8d24a02015-01-28 17:03:14 +02002689 * Wakeup waiting processes so that the reset function
2690 * i915_reset_and_wakeup doesn't deadlock trying to grab
2691 * various locks. By bumping the reset counter first, the woken
Daniel Vetter17e1df02013-09-08 21:57:13 +02002692 * processes will see a reset in progress and back off,
2693 * releasing their locks and then wait for the reset completion.
2694 * We must do this for _all_ gpu waiters that might hold locks
2695 * that the reset work needs to acquire.
2696 *
2697 * Note: The wake_up serves as the required memory barrier to
2698 * ensure that the waiters see the updated value of the reset
2699 * counter atomic_t.
Ben Gamari11ed50e2009-09-14 17:48:45 -04002700 */
Chris Wilson1f15b762016-07-01 17:23:14 +01002701 i915_error_wake_up(dev_priv);
Ben Gamari11ed50e2009-09-14 17:48:45 -04002702 }
2703
Chris Wilsonc0336662016-05-06 15:40:21 +01002704 i915_reset_and_wakeup(dev_priv);
Jesse Barnes8a905232009-07-11 16:48:03 -04002705}
2706
Keith Packard42f52ef2008-10-18 19:39:29 -07002707/* Called from drm generic code, passed 'crtc' which
2708 * we use as a pipe index
2709 */
Thierry Reding88e72712015-09-24 18:35:31 +02002710static int i915_enable_vblank(struct drm_device *dev, unsigned int pipe)
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07002711{
Jani Nikula2d1013d2014-03-31 14:27:17 +03002712 struct drm_i915_private *dev_priv = dev->dev_private;
Keith Packarde9d21d72008-10-16 11:31:38 -07002713 unsigned long irqflags;
Jesse Barnes71e0ffa2009-01-08 10:42:15 -08002714
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002715 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Jesse Barnesf796cf82011-04-07 13:58:17 -07002716 if (INTEL_INFO(dev)->gen >= 4)
Keith Packard7c463582008-11-04 02:03:27 -08002717 i915_enable_pipestat(dev_priv, pipe,
Imre Deak755e9012014-02-10 18:42:47 +02002718 PIPE_START_VBLANK_INTERRUPT_STATUS);
Keith Packarde9d21d72008-10-16 11:31:38 -07002719 else
Keith Packard7c463582008-11-04 02:03:27 -08002720 i915_enable_pipestat(dev_priv, pipe,
Imre Deak755e9012014-02-10 18:42:47 +02002721 PIPE_VBLANK_INTERRUPT_STATUS);
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002722 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
Chris Wilson8692d00e2011-02-05 10:08:21 +00002723
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07002724 return 0;
2725}
2726
Thierry Reding88e72712015-09-24 18:35:31 +02002727static int ironlake_enable_vblank(struct drm_device *dev, unsigned int pipe)
Jesse Barnesf796cf82011-04-07 13:58:17 -07002728{
Jani Nikula2d1013d2014-03-31 14:27:17 +03002729 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnesf796cf82011-04-07 13:58:17 -07002730 unsigned long irqflags;
Paulo Zanonib5184212013-07-12 20:00:08 -03002731 uint32_t bit = (INTEL_INFO(dev)->gen >= 7) ? DE_PIPE_VBLANK_IVB(pipe) :
Daniel Vetter40da17c22013-10-21 18:04:36 +02002732 DE_PIPE_VBLANK(pipe);
Jesse Barnesf796cf82011-04-07 13:58:17 -07002733
Jesse Barnesf796cf82011-04-07 13:58:17 -07002734 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Ville Syrjäläfbdedaea2015-11-23 18:06:16 +02002735 ilk_enable_display_irq(dev_priv, bit);
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002736 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
2737
2738 return 0;
2739}
2740
Thierry Reding88e72712015-09-24 18:35:31 +02002741static int valleyview_enable_vblank(struct drm_device *dev, unsigned int pipe)
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002742{
Jani Nikula2d1013d2014-03-31 14:27:17 +03002743 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002744 unsigned long irqflags;
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002745
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002746 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Jesse Barnes31acc7f2012-06-20 10:53:11 -07002747 i915_enable_pipestat(dev_priv, pipe,
Imre Deak755e9012014-02-10 18:42:47 +02002748 PIPE_START_VBLANK_INTERRUPT_STATUS);
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002749 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
2750
2751 return 0;
2752}
2753
Thierry Reding88e72712015-09-24 18:35:31 +02002754static int gen8_enable_vblank(struct drm_device *dev, unsigned int pipe)
Ben Widawskyabd58f02013-11-02 21:07:09 -07002755{
2756 struct drm_i915_private *dev_priv = dev->dev_private;
2757 unsigned long irqflags;
Ben Widawskyabd58f02013-11-02 21:07:09 -07002758
Ben Widawskyabd58f02013-11-02 21:07:09 -07002759 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Ville Syrjälä013d3752015-11-23 18:06:17 +02002760 bdw_enable_pipe_irq(dev_priv, pipe, GEN8_PIPE_VBLANK);
Ben Widawskyabd58f02013-11-02 21:07:09 -07002761 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
Ville Syrjälä013d3752015-11-23 18:06:17 +02002762
Ben Widawskyabd58f02013-11-02 21:07:09 -07002763 return 0;
2764}
2765
Keith Packard42f52ef2008-10-18 19:39:29 -07002766/* Called from drm generic code, passed 'crtc' which
2767 * we use as a pipe index
2768 */
Thierry Reding88e72712015-09-24 18:35:31 +02002769static void i915_disable_vblank(struct drm_device *dev, unsigned int pipe)
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07002770{
Jani Nikula2d1013d2014-03-31 14:27:17 +03002771 struct drm_i915_private *dev_priv = dev->dev_private;
Keith Packarde9d21d72008-10-16 11:31:38 -07002772 unsigned long irqflags;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07002773
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002774 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Jesse Barnesf796cf82011-04-07 13:58:17 -07002775 i915_disable_pipestat(dev_priv, pipe,
Imre Deak755e9012014-02-10 18:42:47 +02002776 PIPE_VBLANK_INTERRUPT_STATUS |
2777 PIPE_START_VBLANK_INTERRUPT_STATUS);
Jesse Barnesf796cf82011-04-07 13:58:17 -07002778 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
2779}
2780
Thierry Reding88e72712015-09-24 18:35:31 +02002781static void ironlake_disable_vblank(struct drm_device *dev, unsigned int pipe)
Jesse Barnesf796cf82011-04-07 13:58:17 -07002782{
Jani Nikula2d1013d2014-03-31 14:27:17 +03002783 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnesf796cf82011-04-07 13:58:17 -07002784 unsigned long irqflags;
Paulo Zanonib5184212013-07-12 20:00:08 -03002785 uint32_t bit = (INTEL_INFO(dev)->gen >= 7) ? DE_PIPE_VBLANK_IVB(pipe) :
Daniel Vetter40da17c22013-10-21 18:04:36 +02002786 DE_PIPE_VBLANK(pipe);
Jesse Barnesf796cf82011-04-07 13:58:17 -07002787
2788 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Ville Syrjäläfbdedaea2015-11-23 18:06:16 +02002789 ilk_disable_display_irq(dev_priv, bit);
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002790 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
2791}
2792
Thierry Reding88e72712015-09-24 18:35:31 +02002793static void valleyview_disable_vblank(struct drm_device *dev, unsigned int pipe)
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002794{
Jani Nikula2d1013d2014-03-31 14:27:17 +03002795 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002796 unsigned long irqflags;
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002797
2798 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Jesse Barnes31acc7f2012-06-20 10:53:11 -07002799 i915_disable_pipestat(dev_priv, pipe,
Imre Deak755e9012014-02-10 18:42:47 +02002800 PIPE_START_VBLANK_INTERRUPT_STATUS);
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002801 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
2802}
2803
Thierry Reding88e72712015-09-24 18:35:31 +02002804static void gen8_disable_vblank(struct drm_device *dev, unsigned int pipe)
Ben Widawskyabd58f02013-11-02 21:07:09 -07002805{
2806 struct drm_i915_private *dev_priv = dev->dev_private;
2807 unsigned long irqflags;
Ben Widawskyabd58f02013-11-02 21:07:09 -07002808
Ben Widawskyabd58f02013-11-02 21:07:09 -07002809 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Ville Syrjälä013d3752015-11-23 18:06:17 +02002810 bdw_disable_pipe_irq(dev_priv, pipe, GEN8_PIPE_VBLANK);
Ben Widawskyabd58f02013-11-02 21:07:09 -07002811 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
2812}
2813
Chris Wilson9107e9d2013-06-10 11:20:20 +01002814static bool
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00002815ring_idle(struct intel_engine_cs *engine, u32 seqno)
Chris Wilson893eead2010-10-27 14:44:35 +01002816{
Chris Wilsoncffa7812016-04-07 07:29:18 +01002817 return i915_seqno_passed(seqno,
2818 READ_ONCE(engine->last_submitted_seqno));
Ben Gamarif65d9422009-09-14 17:48:44 -04002819}
2820
Daniel Vettera028c4b2014-03-15 00:08:56 +01002821static bool
Chris Wilson31bb59c2016-07-01 17:23:27 +01002822ipehr_is_semaphore_wait(struct intel_engine_cs *engine, u32 ipehr)
Daniel Vettera028c4b2014-03-15 00:08:56 +01002823{
Chris Wilson31bb59c2016-07-01 17:23:27 +01002824 if (INTEL_GEN(engine->i915) >= 8) {
Rodrigo Vivia6cdb932014-06-30 09:53:39 -07002825 return (ipehr >> 23) == 0x1c;
Daniel Vettera028c4b2014-03-15 00:08:56 +01002826 } else {
2827 ipehr &= ~MI_SEMAPHORE_SYNC_MASK;
2828 return ipehr == (MI_SEMAPHORE_MBOX | MI_SEMAPHORE_COMPARE |
2829 MI_SEMAPHORE_REGISTER);
2830 }
2831}
2832
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002833static struct intel_engine_cs *
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00002834semaphore_wait_to_signaller_ring(struct intel_engine_cs *engine, u32 ipehr,
2835 u64 offset)
Daniel Vetter921d42e2014-03-18 10:26:04 +01002836{
Chris Wilsonc0336662016-05-06 15:40:21 +01002837 struct drm_i915_private *dev_priv = engine->i915;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002838 struct intel_engine_cs *signaller;
Daniel Vetter921d42e2014-03-18 10:26:04 +01002839
Chris Wilsonc0336662016-05-06 15:40:21 +01002840 if (INTEL_GEN(dev_priv) >= 8) {
Dave Gordonb4ac5af2016-03-24 11:20:38 +00002841 for_each_engine(signaller, dev_priv) {
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00002842 if (engine == signaller)
Rodrigo Vivia6cdb932014-06-30 09:53:39 -07002843 continue;
2844
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00002845 if (offset == signaller->semaphore.signal_ggtt[engine->id])
Rodrigo Vivia6cdb932014-06-30 09:53:39 -07002846 return signaller;
2847 }
Daniel Vetter921d42e2014-03-18 10:26:04 +01002848 } else {
2849 u32 sync_bits = ipehr & MI_SEMAPHORE_SYNC_MASK;
2850
Dave Gordonb4ac5af2016-03-24 11:20:38 +00002851 for_each_engine(signaller, dev_priv) {
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00002852 if(engine == signaller)
Daniel Vetter921d42e2014-03-18 10:26:04 +01002853 continue;
2854
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00002855 if (sync_bits == signaller->semaphore.mbox.wait[engine->id])
Daniel Vetter921d42e2014-03-18 10:26:04 +01002856 return signaller;
2857 }
2858 }
2859
Rodrigo Vivia6cdb932014-06-30 09:53:39 -07002860 DRM_ERROR("No signaller ring found for ring %i, ipehr 0x%08x, offset 0x%016llx\n",
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00002861 engine->id, ipehr, offset);
Daniel Vetter921d42e2014-03-18 10:26:04 +01002862
2863 return NULL;
2864}
2865
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002866static struct intel_engine_cs *
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00002867semaphore_waits_for(struct intel_engine_cs *engine, u32 *seqno)
Chris Wilsona24a11e2013-03-14 17:52:05 +02002868{
Chris Wilsonc0336662016-05-06 15:40:21 +01002869 struct drm_i915_private *dev_priv = engine->i915;
Daniel Vetter88fe4292014-03-15 00:08:55 +01002870 u32 cmd, ipehr, head;
Rodrigo Vivia6cdb932014-06-30 09:53:39 -07002871 u64 offset = 0;
2872 int i, backwards;
Chris Wilsona24a11e2013-03-14 17:52:05 +02002873
Tomas Elf381e8ae2015-10-08 19:31:33 +01002874 /*
2875 * This function does not support execlist mode - any attempt to
2876 * proceed further into this function will result in a kernel panic
2877 * when dereferencing ring->buffer, which is not set up in execlist
2878 * mode.
2879 *
2880 * The correct way of doing it would be to derive the currently
2881 * executing ring buffer from the current context, which is derived
2882 * from the currently running request. Unfortunately, to get the
2883 * current request we would have to grab the struct_mutex before doing
2884 * anything else, which would be ill-advised since some other thread
2885 * might have grabbed it already and managed to hang itself, causing
2886 * the hang checker to deadlock.
2887 *
2888 * Therefore, this function does not support execlist mode in its
2889 * current form. Just return NULL and move on.
2890 */
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00002891 if (engine->buffer == NULL)
Tomas Elf381e8ae2015-10-08 19:31:33 +01002892 return NULL;
2893
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00002894 ipehr = I915_READ(RING_IPEHR(engine->mmio_base));
Chris Wilson31bb59c2016-07-01 17:23:27 +01002895 if (!ipehr_is_semaphore_wait(engine, ipehr))
Chris Wilson6274f212013-06-10 11:20:21 +01002896 return NULL;
Chris Wilsona24a11e2013-03-14 17:52:05 +02002897
Daniel Vetter88fe4292014-03-15 00:08:55 +01002898 /*
2899 * HEAD is likely pointing to the dword after the actual command,
2900 * so scan backwards until we find the MBOX. But limit it to just 3
Rodrigo Vivia6cdb932014-06-30 09:53:39 -07002901 * or 4 dwords depending on the semaphore wait command size.
2902 * Note that we don't care about ACTHD here since that might
Daniel Vetter88fe4292014-03-15 00:08:55 +01002903 * point at at batch, and semaphores are always emitted into the
2904 * ringbuffer itself.
Chris Wilsona24a11e2013-03-14 17:52:05 +02002905 */
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00002906 head = I915_READ_HEAD(engine) & HEAD_ADDR;
Chris Wilsonc0336662016-05-06 15:40:21 +01002907 backwards = (INTEL_GEN(dev_priv) >= 8) ? 5 : 4;
Daniel Vetter88fe4292014-03-15 00:08:55 +01002908
Rodrigo Vivia6cdb932014-06-30 09:53:39 -07002909 for (i = backwards; i; --i) {
Daniel Vetter88fe4292014-03-15 00:08:55 +01002910 /*
2911 * Be paranoid and presume the hw has gone off into the wild -
2912 * our ring is smaller than what the hardware (and hence
2913 * HEAD_ADDR) allows. Also handles wrap-around.
2914 */
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00002915 head &= engine->buffer->size - 1;
Daniel Vetter88fe4292014-03-15 00:08:55 +01002916
2917 /* This here seems to blow up */
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00002918 cmd = ioread32(engine->buffer->virtual_start + head);
Chris Wilsona24a11e2013-03-14 17:52:05 +02002919 if (cmd == ipehr)
2920 break;
2921
Daniel Vetter88fe4292014-03-15 00:08:55 +01002922 head -= 4;
2923 }
Chris Wilsona24a11e2013-03-14 17:52:05 +02002924
Daniel Vetter88fe4292014-03-15 00:08:55 +01002925 if (!i)
2926 return NULL;
2927
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00002928 *seqno = ioread32(engine->buffer->virtual_start + head + 4) + 1;
Chris Wilsonc0336662016-05-06 15:40:21 +01002929 if (INTEL_GEN(dev_priv) >= 8) {
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00002930 offset = ioread32(engine->buffer->virtual_start + head + 12);
Rodrigo Vivia6cdb932014-06-30 09:53:39 -07002931 offset <<= 32;
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00002932 offset = ioread32(engine->buffer->virtual_start + head + 8);
Rodrigo Vivia6cdb932014-06-30 09:53:39 -07002933 }
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00002934 return semaphore_wait_to_signaller_ring(engine, ipehr, offset);
Chris Wilsona24a11e2013-03-14 17:52:05 +02002935}
2936
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00002937static int semaphore_passed(struct intel_engine_cs *engine)
Chris Wilson6274f212013-06-10 11:20:21 +01002938{
Chris Wilsonc0336662016-05-06 15:40:21 +01002939 struct drm_i915_private *dev_priv = engine->i915;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002940 struct intel_engine_cs *signaller;
Chris Wilsona0d036b2014-07-19 12:40:42 +01002941 u32 seqno;
Chris Wilson6274f212013-06-10 11:20:21 +01002942
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00002943 engine->hangcheck.deadlock++;
Chris Wilson6274f212013-06-10 11:20:21 +01002944
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00002945 signaller = semaphore_waits_for(engine, &seqno);
Chris Wilson4be17382014-06-06 10:22:29 +01002946 if (signaller == NULL)
2947 return -1;
2948
2949 /* Prevent pathological recursion due to driver bugs */
Tvrtko Ursulin666796d2016-03-16 11:00:39 +00002950 if (signaller->hangcheck.deadlock >= I915_NUM_ENGINES)
Chris Wilson6274f212013-06-10 11:20:21 +01002951 return -1;
2952
Chris Wilson1b7744e2016-07-01 17:23:17 +01002953 if (i915_seqno_passed(intel_engine_get_seqno(signaller), seqno))
Chris Wilson4be17382014-06-06 10:22:29 +01002954 return 1;
2955
Chris Wilsona0d036b2014-07-19 12:40:42 +01002956 /* cursory check for an unkickable deadlock */
2957 if (I915_READ_CTL(signaller) & RING_WAIT_SEMAPHORE &&
2958 semaphore_passed(signaller) < 0)
Chris Wilson4be17382014-06-06 10:22:29 +01002959 return -1;
2960
2961 return 0;
Chris Wilson6274f212013-06-10 11:20:21 +01002962}
2963
2964static void semaphore_clear_deadlocks(struct drm_i915_private *dev_priv)
2965{
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00002966 struct intel_engine_cs *engine;
Chris Wilson6274f212013-06-10 11:20:21 +01002967
Dave Gordonb4ac5af2016-03-24 11:20:38 +00002968 for_each_engine(engine, dev_priv)
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00002969 engine->hangcheck.deadlock = 0;
Chris Wilson6274f212013-06-10 11:20:21 +01002970}
2971
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00002972static bool subunits_stuck(struct intel_engine_cs *engine)
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002973{
Mika Kuoppala61642ff2015-12-01 17:56:12 +02002974 u32 instdone[I915_NUM_INSTDONE_REG];
2975 bool stuck;
2976 int i;
Chris Wilson9107e9d2013-06-10 11:20:20 +01002977
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00002978 if (engine->id != RCS)
Mika Kuoppala61642ff2015-12-01 17:56:12 +02002979 return true;
2980
Chris Wilsonc0336662016-05-06 15:40:21 +01002981 i915_get_extra_instdone(engine->i915, instdone);
Mika Kuoppala61642ff2015-12-01 17:56:12 +02002982
2983 /* There might be unstable subunit states even when
2984 * actual head is not moving. Filter out the unstable ones by
2985 * accumulating the undone -> done transitions and only
2986 * consider those as progress.
2987 */
2988 stuck = true;
2989 for (i = 0; i < I915_NUM_INSTDONE_REG; i++) {
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00002990 const u32 tmp = instdone[i] | engine->hangcheck.instdone[i];
Mika Kuoppala61642ff2015-12-01 17:56:12 +02002991
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00002992 if (tmp != engine->hangcheck.instdone[i])
Mika Kuoppala61642ff2015-12-01 17:56:12 +02002993 stuck = false;
2994
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00002995 engine->hangcheck.instdone[i] |= tmp;
Mika Kuoppala61642ff2015-12-01 17:56:12 +02002996 }
2997
2998 return stuck;
2999}
3000
3001static enum intel_ring_hangcheck_action
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00003002head_stuck(struct intel_engine_cs *engine, u64 acthd)
Mika Kuoppala61642ff2015-12-01 17:56:12 +02003003{
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00003004 if (acthd != engine->hangcheck.acthd) {
Mika Kuoppala61642ff2015-12-01 17:56:12 +02003005
3006 /* Clear subunit states on head movement */
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00003007 memset(engine->hangcheck.instdone, 0,
3008 sizeof(engine->hangcheck.instdone));
Mika Kuoppala61642ff2015-12-01 17:56:12 +02003009
Mika Kuoppala24a65e62016-03-02 16:48:29 +02003010 return HANGCHECK_ACTIVE;
Mika Kuoppalaf260fe72014-08-05 17:16:26 +03003011 }
Chris Wilson6274f212013-06-10 11:20:21 +01003012
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00003013 if (!subunits_stuck(engine))
Mika Kuoppala61642ff2015-12-01 17:56:12 +02003014 return HANGCHECK_ACTIVE;
3015
3016 return HANGCHECK_HUNG;
3017}
3018
3019static enum intel_ring_hangcheck_action
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00003020ring_stuck(struct intel_engine_cs *engine, u64 acthd)
Mika Kuoppala61642ff2015-12-01 17:56:12 +02003021{
Chris Wilsonc0336662016-05-06 15:40:21 +01003022 struct drm_i915_private *dev_priv = engine->i915;
Mika Kuoppala61642ff2015-12-01 17:56:12 +02003023 enum intel_ring_hangcheck_action ha;
3024 u32 tmp;
3025
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00003026 ha = head_stuck(engine, acthd);
Mika Kuoppala61642ff2015-12-01 17:56:12 +02003027 if (ha != HANGCHECK_HUNG)
3028 return ha;
3029
Chris Wilsonc0336662016-05-06 15:40:21 +01003030 if (IS_GEN2(dev_priv))
Jani Nikulaf2f4d822013-08-11 12:44:01 +03003031 return HANGCHECK_HUNG;
Chris Wilson9107e9d2013-06-10 11:20:20 +01003032
3033 /* Is the chip hanging on a WAIT_FOR_EVENT?
3034 * If so we can simply poke the RB_WAIT bit
3035 * and break the hang. This should work on
3036 * all but the second generation chipsets.
3037 */
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00003038 tmp = I915_READ_CTL(engine);
Chris Wilson1ec14ad2010-12-04 11:30:53 +00003039 if (tmp & RING_WAIT) {
Chris Wilsonc0336662016-05-06 15:40:21 +01003040 i915_handle_error(dev_priv, 0,
Mika Kuoppala58174462014-02-25 17:11:26 +02003041 "Kicking stuck wait on %s",
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00003042 engine->name);
3043 I915_WRITE_CTL(engine, tmp);
Jani Nikulaf2f4d822013-08-11 12:44:01 +03003044 return HANGCHECK_KICK;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00003045 }
Chris Wilsona24a11e2013-03-14 17:52:05 +02003046
Chris Wilsonc0336662016-05-06 15:40:21 +01003047 if (INTEL_GEN(dev_priv) >= 6 && tmp & RING_WAIT_SEMAPHORE) {
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00003048 switch (semaphore_passed(engine)) {
Chris Wilson6274f212013-06-10 11:20:21 +01003049 default:
Jani Nikulaf2f4d822013-08-11 12:44:01 +03003050 return HANGCHECK_HUNG;
Chris Wilson6274f212013-06-10 11:20:21 +01003051 case 1:
Chris Wilsonc0336662016-05-06 15:40:21 +01003052 i915_handle_error(dev_priv, 0,
Mika Kuoppala58174462014-02-25 17:11:26 +02003053 "Kicking stuck semaphore on %s",
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00003054 engine->name);
3055 I915_WRITE_CTL(engine, tmp);
Jani Nikulaf2f4d822013-08-11 12:44:01 +03003056 return HANGCHECK_KICK;
Chris Wilson6274f212013-06-10 11:20:21 +01003057 case 0:
Jani Nikulaf2f4d822013-08-11 12:44:01 +03003058 return HANGCHECK_WAIT;
Chris Wilson6274f212013-06-10 11:20:21 +01003059 }
Chris Wilson9107e9d2013-06-10 11:20:20 +01003060 }
Mika Kuoppalaed5cbb02013-05-13 16:32:11 +03003061
Jani Nikulaf2f4d822013-08-11 12:44:01 +03003062 return HANGCHECK_HUNG;
Mika Kuoppalaed5cbb02013-05-13 16:32:11 +03003063}
3064
Chris Wilson12471ba2016-04-09 10:57:55 +01003065static unsigned kick_waiters(struct intel_engine_cs *engine)
3066{
Chris Wilsonc0336662016-05-06 15:40:21 +01003067 struct drm_i915_private *i915 = engine->i915;
Chris Wilson12471ba2016-04-09 10:57:55 +01003068 unsigned user_interrupts = READ_ONCE(engine->user_interrupts);
3069
3070 if (engine->hangcheck.user_interrupts == user_interrupts &&
3071 !test_and_set_bit(engine->id, &i915->gpu_error.missed_irq_rings)) {
Chris Wilson688e6c72016-07-01 17:23:15 +01003072 if (!test_bit(engine->id, &i915->gpu_error.test_irq_rings))
Chris Wilson12471ba2016-04-09 10:57:55 +01003073 DRM_ERROR("Hangcheck timer elapsed... %s idle\n",
3074 engine->name);
Chris Wilson688e6c72016-07-01 17:23:15 +01003075
3076 intel_engine_enable_fake_irq(engine);
Chris Wilson12471ba2016-04-09 10:57:55 +01003077 }
3078
3079 return user_interrupts;
3080}
Chris Wilson737b1502015-01-26 18:03:03 +02003081/*
Ben Gamarif65d9422009-09-14 17:48:44 -04003082 * This is called when the chip hasn't reported back with completed
Mika Kuoppala05407ff2013-05-30 09:04:29 +03003083 * batchbuffers in a long time. We keep track per ring seqno progress and
3084 * if there are no progress, hangcheck score for that ring is increased.
3085 * Further, acthd is inspected to see if the ring is stuck. On stuck case
3086 * we kick the ring. If we see no progress on three subsequent calls
3087 * we assume chip is wedged and try to fix it by resetting the chip.
Ben Gamarif65d9422009-09-14 17:48:44 -04003088 */
Chris Wilson737b1502015-01-26 18:03:03 +02003089static void i915_hangcheck_elapsed(struct work_struct *work)
Ben Gamarif65d9422009-09-14 17:48:44 -04003090{
Chris Wilson737b1502015-01-26 18:03:03 +02003091 struct drm_i915_private *dev_priv =
3092 container_of(work, typeof(*dev_priv),
3093 gpu_error.hangcheck_work.work);
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00003094 struct intel_engine_cs *engine;
Dave Gordonc3232b12016-03-23 18:19:53 +00003095 enum intel_engine_id id;
Mika Kuoppala05407ff2013-05-30 09:04:29 +03003096 int busy_count = 0, rings_hung = 0;
Tvrtko Ursulin666796d2016-03-16 11:00:39 +00003097 bool stuck[I915_NUM_ENGINES] = { 0 };
Chris Wilson9107e9d2013-06-10 11:20:20 +01003098#define BUSY 1
3099#define KICK 5
3100#define HUNG 20
Mika Kuoppala24a65e62016-03-02 16:48:29 +02003101#define ACTIVE_DECAY 15
Chris Wilson893eead2010-10-27 14:44:35 +01003102
Jani Nikulad330a952014-01-21 11:24:25 +02003103 if (!i915.enable_hangcheck)
Ben Widawsky3e0dc6b2011-06-29 10:26:42 -07003104 return;
3105
Chris Wilson67d97da2016-07-04 08:08:31 +01003106 if (!lockless_dereference(dev_priv->gt.awake))
3107 return;
Imre Deak1f814da2015-12-16 02:52:19 +02003108
Mika Kuoppala75714942015-12-16 09:26:48 +02003109 /* As enabling the GPU requires fairly extensive mmio access,
3110 * periodically arm the mmio checker to see if we are triggering
3111 * any invalid access.
3112 */
3113 intel_uncore_arm_unclaimed_mmio_detection(dev_priv);
3114
Dave Gordonc3232b12016-03-23 18:19:53 +00003115 for_each_engine_id(engine, dev_priv, id) {
Chris Wilson688e6c72016-07-01 17:23:15 +01003116 bool busy = intel_engine_has_waiter(engine);
Chris Wilson50877442014-03-21 12:41:53 +00003117 u64 acthd;
3118 u32 seqno;
Chris Wilson12471ba2016-04-09 10:57:55 +01003119 unsigned user_interrupts;
Chris Wilsonb4519512012-05-11 14:29:30 +01003120
Chris Wilson6274f212013-06-10 11:20:21 +01003121 semaphore_clear_deadlocks(dev_priv);
3122
Chris Wilsonc04e0f32016-04-09 10:57:54 +01003123 /* We don't strictly need an irq-barrier here, as we are not
3124 * serving an interrupt request, be paranoid in case the
3125 * barrier has side-effects (such as preventing a broken
3126 * cacheline snoop) and so be sure that we can see the seqno
3127 * advance. If the seqno should stick, due to a stale
3128 * cacheline, we would erroneously declare the GPU hung.
3129 */
3130 if (engine->irq_seqno_barrier)
3131 engine->irq_seqno_barrier(engine);
3132
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00003133 acthd = intel_ring_get_active_head(engine);
Chris Wilson1b7744e2016-07-01 17:23:17 +01003134 seqno = intel_engine_get_seqno(engine);
Chris Wilsond1e61e72012-04-10 17:00:41 +01003135
Chris Wilson12471ba2016-04-09 10:57:55 +01003136 /* Reset stuck interrupts between batch advances */
3137 user_interrupts = 0;
3138
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00003139 if (engine->hangcheck.seqno == seqno) {
3140 if (ring_idle(engine, seqno)) {
3141 engine->hangcheck.action = HANGCHECK_IDLE;
Chris Wilson05535722016-07-01 17:23:11 +01003142 if (busy) {
Chris Wilson094f9a52013-09-25 17:34:55 +01003143 /* Safeguard against driver failure */
Chris Wilson12471ba2016-04-09 10:57:55 +01003144 user_interrupts = kick_waiters(engine);
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00003145 engine->hangcheck.score += BUSY;
Chris Wilson05535722016-07-01 17:23:11 +01003146 }
Mika Kuoppala05407ff2013-05-30 09:04:29 +03003147 } else {
Chris Wilson6274f212013-06-10 11:20:21 +01003148 /* We always increment the hangcheck score
3149 * if the ring is busy and still processing
3150 * the same request, so that no single request
3151 * can run indefinitely (such as a chain of
3152 * batches). The only time we do not increment
3153 * the hangcheck score on this ring, if this
3154 * ring is in a legitimate wait for another
3155 * ring. In that case the waiting ring is a
3156 * victim and we want to be sure we catch the
3157 * right culprit. Then every time we do kick
3158 * the ring, add a small increment to the
3159 * score so that we can catch a batch that is
3160 * being repeatedly kicked and so responsible
3161 * for stalling the machine.
3162 */
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00003163 engine->hangcheck.action = ring_stuck(engine,
3164 acthd);
Mika Kuoppalaad8beae2013-06-12 12:35:32 +03003165
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00003166 switch (engine->hangcheck.action) {
Mika Kuoppalada661462013-09-06 16:03:28 +03003167 case HANGCHECK_IDLE:
Jani Nikulaf2f4d822013-08-11 12:44:01 +03003168 case HANGCHECK_WAIT:
Mika Kuoppalaf260fe72014-08-05 17:16:26 +03003169 break;
Mika Kuoppala24a65e62016-03-02 16:48:29 +02003170 case HANGCHECK_ACTIVE:
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00003171 engine->hangcheck.score += BUSY;
Chris Wilson6274f212013-06-10 11:20:21 +01003172 break;
Jani Nikulaf2f4d822013-08-11 12:44:01 +03003173 case HANGCHECK_KICK:
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00003174 engine->hangcheck.score += KICK;
Chris Wilson6274f212013-06-10 11:20:21 +01003175 break;
Jani Nikulaf2f4d822013-08-11 12:44:01 +03003176 case HANGCHECK_HUNG:
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00003177 engine->hangcheck.score += HUNG;
Dave Gordonc3232b12016-03-23 18:19:53 +00003178 stuck[id] = true;
Chris Wilson6274f212013-06-10 11:20:21 +01003179 break;
3180 }
Mika Kuoppala05407ff2013-05-30 09:04:29 +03003181 }
Chris Wilson9107e9d2013-06-10 11:20:20 +01003182 } else {
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00003183 engine->hangcheck.action = HANGCHECK_ACTIVE;
Mika Kuoppalada661462013-09-06 16:03:28 +03003184
Chris Wilson9107e9d2013-06-10 11:20:20 +01003185 /* Gradually reduce the count so that we catch DoS
3186 * attempts across multiple batches.
3187 */
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00003188 if (engine->hangcheck.score > 0)
3189 engine->hangcheck.score -= ACTIVE_DECAY;
3190 if (engine->hangcheck.score < 0)
3191 engine->hangcheck.score = 0;
Mika Kuoppalaf260fe72014-08-05 17:16:26 +03003192
Mika Kuoppala61642ff2015-12-01 17:56:12 +02003193 /* Clear head and subunit states on seqno movement */
Chris Wilson12471ba2016-04-09 10:57:55 +01003194 acthd = 0;
Mika Kuoppala61642ff2015-12-01 17:56:12 +02003195
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00003196 memset(engine->hangcheck.instdone, 0,
3197 sizeof(engine->hangcheck.instdone));
Chris Wilsond1e61e72012-04-10 17:00:41 +01003198 }
3199
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00003200 engine->hangcheck.seqno = seqno;
3201 engine->hangcheck.acthd = acthd;
Chris Wilson12471ba2016-04-09 10:57:55 +01003202 engine->hangcheck.user_interrupts = user_interrupts;
Chris Wilson9107e9d2013-06-10 11:20:20 +01003203 busy_count += busy;
Chris Wilson893eead2010-10-27 14:44:35 +01003204 }
Eric Anholtb9201c12010-01-08 14:25:16 -08003205
Dave Gordonc3232b12016-03-23 18:19:53 +00003206 for_each_engine_id(engine, dev_priv, id) {
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00003207 if (engine->hangcheck.score >= HANGCHECK_SCORE_RING_HUNG) {
Daniel Vetterb8d88d12013-08-28 10:57:59 +02003208 DRM_INFO("%s on %s\n",
Dave Gordonc3232b12016-03-23 18:19:53 +00003209 stuck[id] ? "stuck" : "no progress",
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00003210 engine->name);
arun.siluvery@linux.intel.com14b730f2016-03-18 20:07:55 +00003211 rings_hung |= intel_engine_flag(engine);
Mika Kuoppala92cab732013-05-24 17:16:07 +03003212 }
3213 }
3214
Chris Wilson67d97da2016-07-04 08:08:31 +01003215 if (rings_hung)
Chris Wilsonc0336662016-05-06 15:40:21 +01003216 i915_handle_error(dev_priv, rings_hung, "Engine(s) hung");
Ben Gamarif65d9422009-09-14 17:48:44 -04003217
Chris Wilson05535722016-07-01 17:23:11 +01003218 /* Reset timer in case GPU hangs without another request being added */
Mika Kuoppala05407ff2013-05-30 09:04:29 +03003219 if (busy_count)
Chris Wilsonc0336662016-05-06 15:40:21 +01003220 i915_queue_hangcheck(dev_priv);
Mika Kuoppala10cd45b2013-07-03 17:22:08 +03003221}
3222
Paulo Zanoni1c69eb42014-04-01 15:37:23 -03003223static void ibx_irq_reset(struct drm_device *dev)
Paulo Zanoni91738a92013-06-05 14:21:51 -03003224{
3225 struct drm_i915_private *dev_priv = dev->dev_private;
3226
3227 if (HAS_PCH_NOP(dev))
3228 return;
3229
Paulo Zanonif86f3fb2014-04-01 15:37:14 -03003230 GEN5_IRQ_RESET(SDE);
Paulo Zanoni105b1222014-04-01 15:37:17 -03003231
3232 if (HAS_PCH_CPT(dev) || HAS_PCH_LPT(dev))
3233 I915_WRITE(SERR_INT, 0xffffffff);
Paulo Zanoni622364b2014-04-01 15:37:22 -03003234}
Paulo Zanoni105b1222014-04-01 15:37:17 -03003235
Paulo Zanoni622364b2014-04-01 15:37:22 -03003236/*
3237 * SDEIER is also touched by the interrupt handler to work around missed PCH
3238 * interrupts. Hence we can't update it after the interrupt handler is enabled -
3239 * instead we unconditionally enable all PCH interrupt sources here, but then
3240 * only unmask them as needed with SDEIMR.
3241 *
3242 * This function needs to be called before interrupts are enabled.
3243 */
3244static void ibx_irq_pre_postinstall(struct drm_device *dev)
3245{
3246 struct drm_i915_private *dev_priv = dev->dev_private;
3247
3248 if (HAS_PCH_NOP(dev))
3249 return;
3250
3251 WARN_ON(I915_READ(SDEIER) != 0);
Paulo Zanoni91738a92013-06-05 14:21:51 -03003252 I915_WRITE(SDEIER, 0xffffffff);
3253 POSTING_READ(SDEIER);
3254}
3255
Paulo Zanoni7c4d6642014-04-01 15:37:19 -03003256static void gen5_gt_irq_reset(struct drm_device *dev)
Daniel Vetterd18ea1b2013-07-12 22:43:25 +02003257{
3258 struct drm_i915_private *dev_priv = dev->dev_private;
3259
Paulo Zanonif86f3fb2014-04-01 15:37:14 -03003260 GEN5_IRQ_RESET(GT);
Paulo Zanonia9d356a2014-04-01 15:37:09 -03003261 if (INTEL_INFO(dev)->gen >= 6)
Paulo Zanonif86f3fb2014-04-01 15:37:14 -03003262 GEN5_IRQ_RESET(GEN6_PM);
Daniel Vetterd18ea1b2013-07-12 22:43:25 +02003263}
3264
Ville Syrjälä70591a42014-10-30 19:42:58 +02003265static void vlv_display_irq_reset(struct drm_i915_private *dev_priv)
3266{
3267 enum pipe pipe;
3268
Ville Syrjälä71b8b412016-04-11 16:56:31 +03003269 if (IS_CHERRYVIEW(dev_priv))
3270 I915_WRITE(DPINVGTT, DPINVGTT_STATUS_MASK_CHV);
3271 else
3272 I915_WRITE(DPINVGTT, DPINVGTT_STATUS_MASK);
3273
Ville Syrjäläad22d102016-04-12 18:56:14 +03003274 i915_hotplug_interrupt_update_locked(dev_priv, 0xffffffff, 0);
Ville Syrjälä70591a42014-10-30 19:42:58 +02003275 I915_WRITE(PORT_HOTPLUG_STAT, I915_READ(PORT_HOTPLUG_STAT));
3276
Ville Syrjäläad22d102016-04-12 18:56:14 +03003277 for_each_pipe(dev_priv, pipe) {
3278 I915_WRITE(PIPESTAT(pipe),
3279 PIPE_FIFO_UNDERRUN_STATUS |
3280 PIPESTAT_INT_STATUS_MASK);
3281 dev_priv->pipestat_irq_mask[pipe] = 0;
3282 }
Ville Syrjälä70591a42014-10-30 19:42:58 +02003283
3284 GEN5_IRQ_RESET(VLV_);
Ville Syrjäläad22d102016-04-12 18:56:14 +03003285 dev_priv->irq_mask = ~0;
Ville Syrjälä70591a42014-10-30 19:42:58 +02003286}
3287
Ville Syrjälä8bb61302016-04-12 18:56:44 +03003288static void vlv_display_irq_postinstall(struct drm_i915_private *dev_priv)
3289{
3290 u32 pipestat_mask;
Ville Syrjälä9ab981f2016-04-11 16:56:28 +03003291 u32 enable_mask;
Ville Syrjälä8bb61302016-04-12 18:56:44 +03003292 enum pipe pipe;
3293
Ville Syrjälä8bb61302016-04-12 18:56:44 +03003294 pipestat_mask = PLANE_FLIP_DONE_INT_STATUS_VLV |
3295 PIPE_CRC_DONE_INTERRUPT_STATUS;
3296
3297 i915_enable_pipestat(dev_priv, PIPE_A, PIPE_GMBUS_INTERRUPT_STATUS);
3298 for_each_pipe(dev_priv, pipe)
3299 i915_enable_pipestat(dev_priv, pipe, pipestat_mask);
3300
Ville Syrjälä9ab981f2016-04-11 16:56:28 +03003301 enable_mask = I915_DISPLAY_PORT_INTERRUPT |
3302 I915_DISPLAY_PIPE_A_EVENT_INTERRUPT |
3303 I915_DISPLAY_PIPE_B_EVENT_INTERRUPT;
Ville Syrjälä8bb61302016-04-12 18:56:44 +03003304 if (IS_CHERRYVIEW(dev_priv))
Ville Syrjälä9ab981f2016-04-11 16:56:28 +03003305 enable_mask |= I915_DISPLAY_PIPE_C_EVENT_INTERRUPT;
Ville Syrjälä6b7eafc2016-04-11 16:56:29 +03003306
3307 WARN_ON(dev_priv->irq_mask != ~0);
3308
Ville Syrjälä9ab981f2016-04-11 16:56:28 +03003309 dev_priv->irq_mask = ~enable_mask;
Ville Syrjälä8bb61302016-04-12 18:56:44 +03003310
Ville Syrjälä9ab981f2016-04-11 16:56:28 +03003311 GEN5_IRQ_INIT(VLV_, dev_priv->irq_mask, enable_mask);
Ville Syrjälä8bb61302016-04-12 18:56:44 +03003312}
3313
3314/* drm_dma.h hooks
3315*/
3316static void ironlake_irq_reset(struct drm_device *dev)
3317{
3318 struct drm_i915_private *dev_priv = dev->dev_private;
3319
3320 I915_WRITE(HWSTAM, 0xffffffff);
3321
3322 GEN5_IRQ_RESET(DE);
3323 if (IS_GEN7(dev))
3324 I915_WRITE(GEN7_ERR_INT, 0xffffffff);
3325
3326 gen5_gt_irq_reset(dev);
3327
3328 ibx_irq_reset(dev);
3329}
3330
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003331static void valleyview_irq_preinstall(struct drm_device *dev)
3332{
Jani Nikula2d1013d2014-03-31 14:27:17 +03003333 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003334
Ville Syrjälä34c7b8a2016-04-13 21:19:48 +03003335 I915_WRITE(VLV_MASTER_IER, 0);
3336 POSTING_READ(VLV_MASTER_IER);
3337
Paulo Zanoni7c4d6642014-04-01 15:37:19 -03003338 gen5_gt_irq_reset(dev);
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003339
Ville Syrjäläad22d102016-04-12 18:56:14 +03003340 spin_lock_irq(&dev_priv->irq_lock);
Ville Syrjälä99182712016-04-11 16:56:25 +03003341 if (dev_priv->display_irqs_enabled)
3342 vlv_display_irq_reset(dev_priv);
Ville Syrjäläad22d102016-04-12 18:56:14 +03003343 spin_unlock_irq(&dev_priv->irq_lock);
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003344}
3345
Daniel Vetterd6e3cca2014-05-22 22:18:22 +02003346static void gen8_gt_irq_reset(struct drm_i915_private *dev_priv)
3347{
3348 GEN8_IRQ_RESET_NDX(GT, 0);
3349 GEN8_IRQ_RESET_NDX(GT, 1);
3350 GEN8_IRQ_RESET_NDX(GT, 2);
3351 GEN8_IRQ_RESET_NDX(GT, 3);
3352}
3353
Paulo Zanoni823f6b32014-04-01 15:37:26 -03003354static void gen8_irq_reset(struct drm_device *dev)
Ben Widawskyabd58f02013-11-02 21:07:09 -07003355{
3356 struct drm_i915_private *dev_priv = dev->dev_private;
3357 int pipe;
3358
Ben Widawskyabd58f02013-11-02 21:07:09 -07003359 I915_WRITE(GEN8_MASTER_IRQ, 0);
3360 POSTING_READ(GEN8_MASTER_IRQ);
3361
Daniel Vetterd6e3cca2014-05-22 22:18:22 +02003362 gen8_gt_irq_reset(dev_priv);
Ben Widawskyabd58f02013-11-02 21:07:09 -07003363
Damien Lespiau055e3932014-08-18 13:49:10 +01003364 for_each_pipe(dev_priv, pipe)
Daniel Vetterf458ebb2014-09-30 10:56:39 +02003365 if (intel_display_power_is_enabled(dev_priv,
3366 POWER_DOMAIN_PIPE(pipe)))
Paulo Zanoni813bde42014-07-04 11:50:29 -03003367 GEN8_IRQ_RESET_NDX(DE_PIPE, pipe);
Ben Widawskyabd58f02013-11-02 21:07:09 -07003368
Paulo Zanonif86f3fb2014-04-01 15:37:14 -03003369 GEN5_IRQ_RESET(GEN8_DE_PORT_);
3370 GEN5_IRQ_RESET(GEN8_DE_MISC_);
3371 GEN5_IRQ_RESET(GEN8_PCU_);
Ben Widawskyabd58f02013-11-02 21:07:09 -07003372
Shashank Sharma266ea3d2014-08-22 17:40:42 +05303373 if (HAS_PCH_SPLIT(dev))
3374 ibx_irq_reset(dev);
Ben Widawskyabd58f02013-11-02 21:07:09 -07003375}
Ben Widawskyabd58f02013-11-02 21:07:09 -07003376
Damien Lespiau4c6c03b2015-03-06 18:50:48 +00003377void gen8_irq_power_well_post_enable(struct drm_i915_private *dev_priv,
3378 unsigned int pipe_mask)
Paulo Zanonid49bdb02014-07-04 11:50:31 -03003379{
Paulo Zanoni1180e202014-10-07 18:02:52 -03003380 uint32_t extra_ier = GEN8_PIPE_VBLANK | GEN8_PIPE_FIFO_UNDERRUN;
Ville Syrjälä6831f3e2016-02-19 20:47:31 +02003381 enum pipe pipe;
Paulo Zanonid49bdb02014-07-04 11:50:31 -03003382
Daniel Vetter13321782014-09-15 14:55:29 +02003383 spin_lock_irq(&dev_priv->irq_lock);
Ville Syrjälä6831f3e2016-02-19 20:47:31 +02003384 for_each_pipe_masked(dev_priv, pipe, pipe_mask)
3385 GEN8_IRQ_INIT_NDX(DE_PIPE, pipe,
3386 dev_priv->de_irq_mask[pipe],
3387 ~dev_priv->de_irq_mask[pipe] | extra_ier);
Daniel Vetter13321782014-09-15 14:55:29 +02003388 spin_unlock_irq(&dev_priv->irq_lock);
Paulo Zanonid49bdb02014-07-04 11:50:31 -03003389}
3390
Ville Syrjäläaae8ba82016-02-19 20:47:30 +02003391void gen8_irq_power_well_pre_disable(struct drm_i915_private *dev_priv,
3392 unsigned int pipe_mask)
3393{
Ville Syrjälä6831f3e2016-02-19 20:47:31 +02003394 enum pipe pipe;
3395
Ville Syrjäläaae8ba82016-02-19 20:47:30 +02003396 spin_lock_irq(&dev_priv->irq_lock);
Ville Syrjälä6831f3e2016-02-19 20:47:31 +02003397 for_each_pipe_masked(dev_priv, pipe, pipe_mask)
3398 GEN8_IRQ_RESET_NDX(DE_PIPE, pipe);
Ville Syrjäläaae8ba82016-02-19 20:47:30 +02003399 spin_unlock_irq(&dev_priv->irq_lock);
3400
3401 /* make sure we're done processing display irqs */
3402 synchronize_irq(dev_priv->dev->irq);
3403}
3404
Ville Syrjälä43f328d2014-04-09 20:40:52 +03003405static void cherryview_irq_preinstall(struct drm_device *dev)
3406{
3407 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjälä43f328d2014-04-09 20:40:52 +03003408
3409 I915_WRITE(GEN8_MASTER_IRQ, 0);
3410 POSTING_READ(GEN8_MASTER_IRQ);
3411
Daniel Vetterd6e3cca2014-05-22 22:18:22 +02003412 gen8_gt_irq_reset(dev_priv);
Ville Syrjälä43f328d2014-04-09 20:40:52 +03003413
3414 GEN5_IRQ_RESET(GEN8_PCU_);
3415
Ville Syrjäläad22d102016-04-12 18:56:14 +03003416 spin_lock_irq(&dev_priv->irq_lock);
Ville Syrjälä99182712016-04-11 16:56:25 +03003417 if (dev_priv->display_irqs_enabled)
3418 vlv_display_irq_reset(dev_priv);
Ville Syrjäläad22d102016-04-12 18:56:14 +03003419 spin_unlock_irq(&dev_priv->irq_lock);
Ville Syrjälä43f328d2014-04-09 20:40:52 +03003420}
3421
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01003422static u32 intel_hpd_enabled_irqs(struct drm_i915_private *dev_priv,
Ville Syrjälä87a02102015-08-27 23:55:57 +03003423 const u32 hpd[HPD_NUM_PINS])
3424{
Ville Syrjälä87a02102015-08-27 23:55:57 +03003425 struct intel_encoder *encoder;
3426 u32 enabled_irqs = 0;
3427
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01003428 for_each_intel_encoder(dev_priv->dev, encoder)
Ville Syrjälä87a02102015-08-27 23:55:57 +03003429 if (dev_priv->hotplug.stats[encoder->hpd_pin].state == HPD_ENABLED)
3430 enabled_irqs |= hpd[encoder->hpd_pin];
3431
3432 return enabled_irqs;
3433}
3434
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01003435static void ibx_hpd_irq_setup(struct drm_i915_private *dev_priv)
Keith Packard7fe0b972011-09-19 13:31:02 -07003436{
Ville Syrjälä87a02102015-08-27 23:55:57 +03003437 u32 hotplug_irqs, hotplug, enabled_irqs;
Keith Packard7fe0b972011-09-19 13:31:02 -07003438
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01003439 if (HAS_PCH_IBX(dev_priv)) {
Daniel Vetterfee884e2013-07-04 23:35:21 +02003440 hotplug_irqs = SDE_HOTPLUG_MASK;
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01003441 enabled_irqs = intel_hpd_enabled_irqs(dev_priv, hpd_ibx);
Daniel Vetter82a28bc2013-03-27 15:55:01 +01003442 } else {
Daniel Vetterfee884e2013-07-04 23:35:21 +02003443 hotplug_irqs = SDE_HOTPLUG_MASK_CPT;
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01003444 enabled_irqs = intel_hpd_enabled_irqs(dev_priv, hpd_cpt);
Daniel Vetter82a28bc2013-03-27 15:55:01 +01003445 }
3446
Daniel Vetterfee884e2013-07-04 23:35:21 +02003447 ibx_display_interrupt_update(dev_priv, hotplug_irqs, enabled_irqs);
Daniel Vetter82a28bc2013-03-27 15:55:01 +01003448
3449 /*
3450 * Enable digital hotplug on the PCH, and configure the DP short pulse
Ville Syrjälä6dbf30c2015-08-27 23:56:02 +03003451 * duration to 2ms (which is the minimum in the Display Port spec).
3452 * The pulse duration bits are reserved on LPT+.
Daniel Vetter82a28bc2013-03-27 15:55:01 +01003453 */
Keith Packard7fe0b972011-09-19 13:31:02 -07003454 hotplug = I915_READ(PCH_PORT_HOTPLUG);
3455 hotplug &= ~(PORTD_PULSE_DURATION_MASK|PORTC_PULSE_DURATION_MASK|PORTB_PULSE_DURATION_MASK);
3456 hotplug |= PORTD_HOTPLUG_ENABLE | PORTD_PULSE_DURATION_2ms;
3457 hotplug |= PORTC_HOTPLUG_ENABLE | PORTC_PULSE_DURATION_2ms;
3458 hotplug |= PORTB_HOTPLUG_ENABLE | PORTB_PULSE_DURATION_2ms;
Ville Syrjälä0b2eb332015-08-27 23:56:05 +03003459 /*
3460 * When CPU and PCH are on the same package, port A
3461 * HPD must be enabled in both north and south.
3462 */
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01003463 if (HAS_PCH_LPT_LP(dev_priv))
Ville Syrjälä0b2eb332015-08-27 23:56:05 +03003464 hotplug |= PORTA_HOTPLUG_ENABLE;
Keith Packard7fe0b972011-09-19 13:31:02 -07003465 I915_WRITE(PCH_PORT_HOTPLUG, hotplug);
Ville Syrjälä6dbf30c2015-08-27 23:56:02 +03003466}
Xiong Zhang26951ca2015-08-17 15:55:50 +08003467
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01003468static void spt_hpd_irq_setup(struct drm_i915_private *dev_priv)
Ville Syrjälä6dbf30c2015-08-27 23:56:02 +03003469{
Ville Syrjälä6dbf30c2015-08-27 23:56:02 +03003470 u32 hotplug_irqs, hotplug, enabled_irqs;
3471
3472 hotplug_irqs = SDE_HOTPLUG_MASK_SPT;
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01003473 enabled_irqs = intel_hpd_enabled_irqs(dev_priv, hpd_spt);
Ville Syrjälä6dbf30c2015-08-27 23:56:02 +03003474
3475 ibx_display_interrupt_update(dev_priv, hotplug_irqs, enabled_irqs);
3476
3477 /* Enable digital hotplug on the PCH */
3478 hotplug = I915_READ(PCH_PORT_HOTPLUG);
3479 hotplug |= PORTD_HOTPLUG_ENABLE | PORTC_HOTPLUG_ENABLE |
Ville Syrjälä74c0b392015-08-27 23:56:07 +03003480 PORTB_HOTPLUG_ENABLE | PORTA_HOTPLUG_ENABLE;
Ville Syrjälä6dbf30c2015-08-27 23:56:02 +03003481 I915_WRITE(PCH_PORT_HOTPLUG, hotplug);
3482
3483 hotplug = I915_READ(PCH_PORT_HOTPLUG2);
3484 hotplug |= PORTE_HOTPLUG_ENABLE;
3485 I915_WRITE(PCH_PORT_HOTPLUG2, hotplug);
Keith Packard7fe0b972011-09-19 13:31:02 -07003486}
3487
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01003488static void ilk_hpd_irq_setup(struct drm_i915_private *dev_priv)
Ville Syrjäläe4ce95a2015-08-27 23:56:03 +03003489{
Ville Syrjäläe4ce95a2015-08-27 23:56:03 +03003490 u32 hotplug_irqs, hotplug, enabled_irqs;
3491
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01003492 if (INTEL_GEN(dev_priv) >= 8) {
Ville Syrjälä3a3b3c72015-08-27 23:56:06 +03003493 hotplug_irqs = GEN8_PORT_DP_A_HOTPLUG;
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01003494 enabled_irqs = intel_hpd_enabled_irqs(dev_priv, hpd_bdw);
Ville Syrjälä3a3b3c72015-08-27 23:56:06 +03003495
3496 bdw_update_port_irq(dev_priv, hotplug_irqs, enabled_irqs);
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01003497 } else if (INTEL_GEN(dev_priv) >= 7) {
Ville Syrjälä23bb4cb2015-08-27 23:56:04 +03003498 hotplug_irqs = DE_DP_A_HOTPLUG_IVB;
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01003499 enabled_irqs = intel_hpd_enabled_irqs(dev_priv, hpd_ivb);
Ville Syrjälä3a3b3c72015-08-27 23:56:06 +03003500
3501 ilk_update_display_irq(dev_priv, hotplug_irqs, enabled_irqs);
Ville Syrjälä23bb4cb2015-08-27 23:56:04 +03003502 } else {
3503 hotplug_irqs = DE_DP_A_HOTPLUG;
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01003504 enabled_irqs = intel_hpd_enabled_irqs(dev_priv, hpd_ilk);
Ville Syrjäläe4ce95a2015-08-27 23:56:03 +03003505
Ville Syrjälä3a3b3c72015-08-27 23:56:06 +03003506 ilk_update_display_irq(dev_priv, hotplug_irqs, enabled_irqs);
3507 }
Ville Syrjäläe4ce95a2015-08-27 23:56:03 +03003508
3509 /*
3510 * Enable digital hotplug on the CPU, and configure the DP short pulse
3511 * duration to 2ms (which is the minimum in the Display Port spec)
Ville Syrjälä23bb4cb2015-08-27 23:56:04 +03003512 * The pulse duration bits are reserved on HSW+.
Ville Syrjäläe4ce95a2015-08-27 23:56:03 +03003513 */
3514 hotplug = I915_READ(DIGITAL_PORT_HOTPLUG_CNTRL);
3515 hotplug &= ~DIGITAL_PORTA_PULSE_DURATION_MASK;
3516 hotplug |= DIGITAL_PORTA_HOTPLUG_ENABLE | DIGITAL_PORTA_PULSE_DURATION_2ms;
3517 I915_WRITE(DIGITAL_PORT_HOTPLUG_CNTRL, hotplug);
3518
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01003519 ibx_hpd_irq_setup(dev_priv);
Ville Syrjäläe4ce95a2015-08-27 23:56:03 +03003520}
3521
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01003522static void bxt_hpd_irq_setup(struct drm_i915_private *dev_priv)
Shashank Sharmae0a20ad2015-03-27 14:54:14 +02003523{
Ville Syrjäläa52bb152015-08-27 23:56:11 +03003524 u32 hotplug_irqs, hotplug, enabled_irqs;
Shashank Sharmae0a20ad2015-03-27 14:54:14 +02003525
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01003526 enabled_irqs = intel_hpd_enabled_irqs(dev_priv, hpd_bxt);
Ville Syrjäläa52bb152015-08-27 23:56:11 +03003527 hotplug_irqs = BXT_DE_PORT_HOTPLUG_MASK;
Shashank Sharmae0a20ad2015-03-27 14:54:14 +02003528
Ville Syrjäläa52bb152015-08-27 23:56:11 +03003529 bdw_update_port_irq(dev_priv, hotplug_irqs, enabled_irqs);
Shashank Sharmae0a20ad2015-03-27 14:54:14 +02003530
Ville Syrjäläa52bb152015-08-27 23:56:11 +03003531 hotplug = I915_READ(PCH_PORT_HOTPLUG);
3532 hotplug |= PORTC_HOTPLUG_ENABLE | PORTB_HOTPLUG_ENABLE |
3533 PORTA_HOTPLUG_ENABLE;
Shubhangi Shrivastavad252bf62016-03-31 16:11:47 +05303534
3535 DRM_DEBUG_KMS("Invert bit setting: hp_ctl:%x hp_port:%x\n",
3536 hotplug, enabled_irqs);
3537 hotplug &= ~BXT_DDI_HPD_INVERT_MASK;
3538
3539 /*
3540 * For BXT invert bit has to be set based on AOB design
3541 * for HPD detection logic, update it based on VBT fields.
3542 */
3543
3544 if ((enabled_irqs & BXT_DE_PORT_HP_DDIA) &&
3545 intel_bios_is_port_hpd_inverted(dev_priv, PORT_A))
3546 hotplug |= BXT_DDIA_HPD_INVERT;
3547 if ((enabled_irqs & BXT_DE_PORT_HP_DDIB) &&
3548 intel_bios_is_port_hpd_inverted(dev_priv, PORT_B))
3549 hotplug |= BXT_DDIB_HPD_INVERT;
3550 if ((enabled_irqs & BXT_DE_PORT_HP_DDIC) &&
3551 intel_bios_is_port_hpd_inverted(dev_priv, PORT_C))
3552 hotplug |= BXT_DDIC_HPD_INVERT;
3553
Ville Syrjäläa52bb152015-08-27 23:56:11 +03003554 I915_WRITE(PCH_PORT_HOTPLUG, hotplug);
Shashank Sharmae0a20ad2015-03-27 14:54:14 +02003555}
3556
Paulo Zanonid46da432013-02-08 17:35:15 -02003557static void ibx_irq_postinstall(struct drm_device *dev)
3558{
Jani Nikula2d1013d2014-03-31 14:27:17 +03003559 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter82a28bc2013-03-27 15:55:01 +01003560 u32 mask;
Paulo Zanonid46da432013-02-08 17:35:15 -02003561
Daniel Vetter692a04c2013-05-29 21:43:05 +02003562 if (HAS_PCH_NOP(dev))
3563 return;
3564
Paulo Zanoni105b1222014-04-01 15:37:17 -03003565 if (HAS_PCH_IBX(dev))
Daniel Vetter5c673b62014-03-07 20:34:46 +01003566 mask = SDE_GMBUS | SDE_AUX_MASK | SDE_POISON;
Paulo Zanoni105b1222014-04-01 15:37:17 -03003567 else
Daniel Vetter5c673b62014-03-07 20:34:46 +01003568 mask = SDE_GMBUS_CPT | SDE_AUX_MASK_CPT;
Paulo Zanoni86642812013-04-12 17:57:57 -03003569
Ville Syrjäläb51a2842015-09-18 20:03:41 +03003570 gen5_assert_iir_is_zero(dev_priv, SDEIIR);
Paulo Zanonid46da432013-02-08 17:35:15 -02003571 I915_WRITE(SDEIMR, ~mask);
Paulo Zanonid46da432013-02-08 17:35:15 -02003572}
3573
Daniel Vetter0a9a8c92013-07-12 22:43:26 +02003574static void gen5_gt_irq_postinstall(struct drm_device *dev)
3575{
3576 struct drm_i915_private *dev_priv = dev->dev_private;
3577 u32 pm_irqs, gt_irqs;
3578
3579 pm_irqs = gt_irqs = 0;
3580
3581 dev_priv->gt_irq_mask = ~0;
Ben Widawsky040d2ba2013-09-19 11:01:40 -07003582 if (HAS_L3_DPF(dev)) {
Daniel Vetter0a9a8c92013-07-12 22:43:26 +02003583 /* L3 parity interrupt is always unmasked. */
Ben Widawsky35a85ac2013-09-19 11:13:41 -07003584 dev_priv->gt_irq_mask = ~GT_PARITY_ERROR(dev);
3585 gt_irqs |= GT_PARITY_ERROR(dev);
Daniel Vetter0a9a8c92013-07-12 22:43:26 +02003586 }
3587
3588 gt_irqs |= GT_RENDER_USER_INTERRUPT;
3589 if (IS_GEN5(dev)) {
Chris Wilsonf8973c22016-07-01 17:23:21 +01003590 gt_irqs |= ILK_BSD_USER_INTERRUPT;
Daniel Vetter0a9a8c92013-07-12 22:43:26 +02003591 } else {
3592 gt_irqs |= GT_BLT_USER_INTERRUPT | GT_BSD_USER_INTERRUPT;
3593 }
3594
Paulo Zanoni35079892014-04-01 15:37:15 -03003595 GEN5_IRQ_INIT(GT, dev_priv->gt_irq_mask, gt_irqs);
Daniel Vetter0a9a8c92013-07-12 22:43:26 +02003596
3597 if (INTEL_INFO(dev)->gen >= 6) {
Imre Deak78e68d32014-12-15 18:59:27 +02003598 /*
3599 * RPS interrupts will get enabled/disabled on demand when RPS
3600 * itself is enabled/disabled.
3601 */
Daniel Vetter0a9a8c92013-07-12 22:43:26 +02003602 if (HAS_VEBOX(dev))
3603 pm_irqs |= PM_VEBOX_USER_INTERRUPT;
3604
Paulo Zanoni605cd252013-08-06 18:57:15 -03003605 dev_priv->pm_irq_mask = 0xffffffff;
Paulo Zanoni35079892014-04-01 15:37:15 -03003606 GEN5_IRQ_INIT(GEN6_PM, dev_priv->pm_irq_mask, pm_irqs);
Daniel Vetter0a9a8c92013-07-12 22:43:26 +02003607 }
3608}
3609
Jesse Barnesf71d4af2011-06-28 13:00:41 -07003610static int ironlake_irq_postinstall(struct drm_device *dev)
Zhenyu Wang036a4a72009-06-08 14:40:19 +08003611{
Jani Nikula2d1013d2014-03-31 14:27:17 +03003612 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanoni8e76f8d2013-07-12 20:01:56 -03003613 u32 display_mask, extra_mask;
3614
3615 if (INTEL_INFO(dev)->gen >= 7) {
3616 display_mask = (DE_MASTER_IRQ_CONTROL | DE_GSE_IVB |
3617 DE_PCH_EVENT_IVB | DE_PLANEC_FLIP_DONE_IVB |
3618 DE_PLANEB_FLIP_DONE_IVB |
Daniel Vetter5c673b62014-03-07 20:34:46 +01003619 DE_PLANEA_FLIP_DONE_IVB | DE_AUX_CHANNEL_A_IVB);
Paulo Zanoni8e76f8d2013-07-12 20:01:56 -03003620 extra_mask = (DE_PIPEC_VBLANK_IVB | DE_PIPEB_VBLANK_IVB |
Ville Syrjälä23bb4cb2015-08-27 23:56:04 +03003621 DE_PIPEA_VBLANK_IVB | DE_ERR_INT_IVB |
3622 DE_DP_A_HOTPLUG_IVB);
Paulo Zanoni8e76f8d2013-07-12 20:01:56 -03003623 } else {
3624 display_mask = (DE_MASTER_IRQ_CONTROL | DE_GSE | DE_PCH_EVENT |
3625 DE_PLANEA_FLIP_DONE | DE_PLANEB_FLIP_DONE |
Daniel Vetter5b3a8562013-10-16 22:55:48 +02003626 DE_AUX_CHANNEL_A |
Daniel Vetter5b3a8562013-10-16 22:55:48 +02003627 DE_PIPEB_CRC_DONE | DE_PIPEA_CRC_DONE |
3628 DE_POISON);
Ville Syrjäläe4ce95a2015-08-27 23:56:03 +03003629 extra_mask = (DE_PIPEA_VBLANK | DE_PIPEB_VBLANK | DE_PCU_EVENT |
3630 DE_PIPEB_FIFO_UNDERRUN | DE_PIPEA_FIFO_UNDERRUN |
3631 DE_DP_A_HOTPLUG);
Paulo Zanoni8e76f8d2013-07-12 20:01:56 -03003632 }
Zhenyu Wang036a4a72009-06-08 14:40:19 +08003633
Chris Wilson1ec14ad2010-12-04 11:30:53 +00003634 dev_priv->irq_mask = ~display_mask;
Zhenyu Wang036a4a72009-06-08 14:40:19 +08003635
Paulo Zanoni0c841212014-04-01 15:37:27 -03003636 I915_WRITE(HWSTAM, 0xeffe);
3637
Paulo Zanoni622364b2014-04-01 15:37:22 -03003638 ibx_irq_pre_postinstall(dev);
3639
Paulo Zanoni35079892014-04-01 15:37:15 -03003640 GEN5_IRQ_INIT(DE, dev_priv->irq_mask, display_mask | extra_mask);
Zhenyu Wang036a4a72009-06-08 14:40:19 +08003641
Daniel Vetter0a9a8c92013-07-12 22:43:26 +02003642 gen5_gt_irq_postinstall(dev);
Zhenyu Wang036a4a72009-06-08 14:40:19 +08003643
Paulo Zanonid46da432013-02-08 17:35:15 -02003644 ibx_irq_postinstall(dev);
Keith Packard7fe0b972011-09-19 13:31:02 -07003645
Jesse Barnesf97108d2010-01-29 11:27:07 -08003646 if (IS_IRONLAKE_M(dev)) {
Daniel Vetter6005ce42013-06-27 13:44:59 +02003647 /* Enable PCU event interrupts
3648 *
3649 * spinlocking not required here for correctness since interrupt
Daniel Vetter4bc9d432013-06-27 13:44:58 +02003650 * setup is guaranteed to run in single-threaded context. But we
3651 * need it to make the assert_spin_locked happy. */
Daniel Vetterd6207432014-09-15 14:55:27 +02003652 spin_lock_irq(&dev_priv->irq_lock);
Ville Syrjäläfbdedaea2015-11-23 18:06:16 +02003653 ilk_enable_display_irq(dev_priv, DE_PCU_EVENT);
Daniel Vetterd6207432014-09-15 14:55:27 +02003654 spin_unlock_irq(&dev_priv->irq_lock);
Jesse Barnesf97108d2010-01-29 11:27:07 -08003655 }
3656
Zhenyu Wang036a4a72009-06-08 14:40:19 +08003657 return 0;
3658}
3659
Imre Deakf8b79e52014-03-04 19:23:07 +02003660void valleyview_enable_display_irqs(struct drm_i915_private *dev_priv)
3661{
3662 assert_spin_locked(&dev_priv->irq_lock);
3663
3664 if (dev_priv->display_irqs_enabled)
3665 return;
3666
3667 dev_priv->display_irqs_enabled = true;
3668
Ville Syrjäläd6c69802016-04-11 16:56:27 +03003669 if (intel_irqs_enabled(dev_priv)) {
3670 vlv_display_irq_reset(dev_priv);
Ville Syrjäläad22d102016-04-12 18:56:14 +03003671 vlv_display_irq_postinstall(dev_priv);
Ville Syrjäläd6c69802016-04-11 16:56:27 +03003672 }
Imre Deakf8b79e52014-03-04 19:23:07 +02003673}
3674
3675void valleyview_disable_display_irqs(struct drm_i915_private *dev_priv)
3676{
3677 assert_spin_locked(&dev_priv->irq_lock);
3678
3679 if (!dev_priv->display_irqs_enabled)
3680 return;
3681
3682 dev_priv->display_irqs_enabled = false;
3683
Imre Deak950eaba2014-09-08 15:21:09 +03003684 if (intel_irqs_enabled(dev_priv))
Ville Syrjäläad22d102016-04-12 18:56:14 +03003685 vlv_display_irq_reset(dev_priv);
Imre Deakf8b79e52014-03-04 19:23:07 +02003686}
3687
Ville Syrjälä0e6c9a92014-10-30 19:43:00 +02003688
3689static int valleyview_irq_postinstall(struct drm_device *dev)
3690{
3691 struct drm_i915_private *dev_priv = dev->dev_private;
3692
Daniel Vetter0a9a8c92013-07-12 22:43:26 +02003693 gen5_gt_irq_postinstall(dev);
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003694
Ville Syrjäläad22d102016-04-12 18:56:14 +03003695 spin_lock_irq(&dev_priv->irq_lock);
Ville Syrjälä99182712016-04-11 16:56:25 +03003696 if (dev_priv->display_irqs_enabled)
3697 vlv_display_irq_postinstall(dev_priv);
Ville Syrjäläad22d102016-04-12 18:56:14 +03003698 spin_unlock_irq(&dev_priv->irq_lock);
3699
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003700 I915_WRITE(VLV_MASTER_IER, MASTER_INTERRUPT_ENABLE);
Ville Syrjälä34c7b8a2016-04-13 21:19:48 +03003701 POSTING_READ(VLV_MASTER_IER);
Daniel Vetter20afbda2012-12-11 14:05:07 +01003702
3703 return 0;
3704}
3705
Ben Widawskyabd58f02013-11-02 21:07:09 -07003706static void gen8_gt_irq_postinstall(struct drm_i915_private *dev_priv)
3707{
Ben Widawskyabd58f02013-11-02 21:07:09 -07003708 /* These are interrupts we'll toggle with the ring mask register */
3709 uint32_t gt_interrupts[] = {
3710 GT_RENDER_USER_INTERRUPT << GEN8_RCS_IRQ_SHIFT |
Oscar Mateo73d477f2014-07-24 17:04:31 +01003711 GT_CONTEXT_SWITCH_INTERRUPT << GEN8_RCS_IRQ_SHIFT |
Oscar Mateo73d477f2014-07-24 17:04:31 +01003712 GT_RENDER_USER_INTERRUPT << GEN8_BCS_IRQ_SHIFT |
3713 GT_CONTEXT_SWITCH_INTERRUPT << GEN8_BCS_IRQ_SHIFT,
Ben Widawskyabd58f02013-11-02 21:07:09 -07003714 GT_RENDER_USER_INTERRUPT << GEN8_VCS1_IRQ_SHIFT |
Oscar Mateo73d477f2014-07-24 17:04:31 +01003715 GT_CONTEXT_SWITCH_INTERRUPT << GEN8_VCS1_IRQ_SHIFT |
3716 GT_RENDER_USER_INTERRUPT << GEN8_VCS2_IRQ_SHIFT |
3717 GT_CONTEXT_SWITCH_INTERRUPT << GEN8_VCS2_IRQ_SHIFT,
Ben Widawskyabd58f02013-11-02 21:07:09 -07003718 0,
Oscar Mateo73d477f2014-07-24 17:04:31 +01003719 GT_RENDER_USER_INTERRUPT << GEN8_VECS_IRQ_SHIFT |
3720 GT_CONTEXT_SWITCH_INTERRUPT << GEN8_VECS_IRQ_SHIFT
Ben Widawskyabd58f02013-11-02 21:07:09 -07003721 };
3722
Tvrtko Ursulin98735732016-04-19 16:46:08 +01003723 if (HAS_L3_DPF(dev_priv))
3724 gt_interrupts[0] |= GT_RENDER_L3_PARITY_ERROR_INTERRUPT;
3725
Ben Widawsky09610212014-05-15 20:58:08 +03003726 dev_priv->pm_irq_mask = 0xffffffff;
Deepak S9a2d2d82014-08-22 08:32:40 +05303727 GEN8_IRQ_INIT_NDX(GT, 0, ~gt_interrupts[0], gt_interrupts[0]);
3728 GEN8_IRQ_INIT_NDX(GT, 1, ~gt_interrupts[1], gt_interrupts[1]);
Imre Deak78e68d32014-12-15 18:59:27 +02003729 /*
3730 * RPS interrupts will get enabled/disabled on demand when RPS itself
3731 * is enabled/disabled.
3732 */
3733 GEN8_IRQ_INIT_NDX(GT, 2, dev_priv->pm_irq_mask, 0);
Deepak S9a2d2d82014-08-22 08:32:40 +05303734 GEN8_IRQ_INIT_NDX(GT, 3, ~gt_interrupts[3], gt_interrupts[3]);
Ben Widawskyabd58f02013-11-02 21:07:09 -07003735}
3736
3737static void gen8_de_irq_postinstall(struct drm_i915_private *dev_priv)
3738{
Damien Lespiau770de832014-03-20 20:45:01 +00003739 uint32_t de_pipe_masked = GEN8_PIPE_CDCLK_CRC_DONE;
3740 uint32_t de_pipe_enables;
Ville Syrjälä3a3b3c72015-08-27 23:56:06 +03003741 u32 de_port_masked = GEN8_AUX_CHANNEL_A;
3742 u32 de_port_enables;
Ville Syrjälä11825b02016-05-19 12:14:43 +03003743 u32 de_misc_masked = GEN8_DE_MISC_GSE;
Ville Syrjälä3a3b3c72015-08-27 23:56:06 +03003744 enum pipe pipe;
Damien Lespiau770de832014-03-20 20:45:01 +00003745
Rodrigo Vivib4834a52015-09-02 15:19:24 -07003746 if (INTEL_INFO(dev_priv)->gen >= 9) {
Damien Lespiau770de832014-03-20 20:45:01 +00003747 de_pipe_masked |= GEN9_PIPE_PLANE1_FLIP_DONE |
3748 GEN9_DE_PIPE_IRQ_FAULT_ERRORS;
Ville Syrjälä3a3b3c72015-08-27 23:56:06 +03003749 de_port_masked |= GEN9_AUX_CHANNEL_B | GEN9_AUX_CHANNEL_C |
3750 GEN9_AUX_CHANNEL_D;
Shashank Sharma9e637432014-08-22 17:40:43 +05303751 if (IS_BROXTON(dev_priv))
Ville Syrjälä3a3b3c72015-08-27 23:56:06 +03003752 de_port_masked |= BXT_DE_PORT_GMBUS;
3753 } else {
Damien Lespiau770de832014-03-20 20:45:01 +00003754 de_pipe_masked |= GEN8_PIPE_PRIMARY_FLIP_DONE |
3755 GEN8_DE_PIPE_IRQ_FAULT_ERRORS;
Ville Syrjälä3a3b3c72015-08-27 23:56:06 +03003756 }
Damien Lespiau770de832014-03-20 20:45:01 +00003757
3758 de_pipe_enables = de_pipe_masked | GEN8_PIPE_VBLANK |
3759 GEN8_PIPE_FIFO_UNDERRUN;
3760
Ville Syrjälä3a3b3c72015-08-27 23:56:06 +03003761 de_port_enables = de_port_masked;
Ville Syrjäläa52bb152015-08-27 23:56:11 +03003762 if (IS_BROXTON(dev_priv))
3763 de_port_enables |= BXT_DE_PORT_HOTPLUG_MASK;
3764 else if (IS_BROADWELL(dev_priv))
Ville Syrjälä3a3b3c72015-08-27 23:56:06 +03003765 de_port_enables |= GEN8_PORT_DP_A_HOTPLUG;
3766
Daniel Vetter13b3a0a2013-11-07 15:31:52 +01003767 dev_priv->de_irq_mask[PIPE_A] = ~de_pipe_masked;
3768 dev_priv->de_irq_mask[PIPE_B] = ~de_pipe_masked;
3769 dev_priv->de_irq_mask[PIPE_C] = ~de_pipe_masked;
Ben Widawskyabd58f02013-11-02 21:07:09 -07003770
Damien Lespiau055e3932014-08-18 13:49:10 +01003771 for_each_pipe(dev_priv, pipe)
Daniel Vetterf458ebb2014-09-30 10:56:39 +02003772 if (intel_display_power_is_enabled(dev_priv,
Paulo Zanoni813bde42014-07-04 11:50:29 -03003773 POWER_DOMAIN_PIPE(pipe)))
3774 GEN8_IRQ_INIT_NDX(DE_PIPE, pipe,
3775 dev_priv->de_irq_mask[pipe],
3776 de_pipe_enables);
Ben Widawskyabd58f02013-11-02 21:07:09 -07003777
Ville Syrjälä3a3b3c72015-08-27 23:56:06 +03003778 GEN5_IRQ_INIT(GEN8_DE_PORT_, ~de_port_masked, de_port_enables);
Ville Syrjälä11825b02016-05-19 12:14:43 +03003779 GEN5_IRQ_INIT(GEN8_DE_MISC_, ~de_misc_masked, de_misc_masked);
Ben Widawskyabd58f02013-11-02 21:07:09 -07003780}
3781
3782static int gen8_irq_postinstall(struct drm_device *dev)
3783{
3784 struct drm_i915_private *dev_priv = dev->dev_private;
3785
Shashank Sharma266ea3d2014-08-22 17:40:42 +05303786 if (HAS_PCH_SPLIT(dev))
3787 ibx_irq_pre_postinstall(dev);
Paulo Zanoni622364b2014-04-01 15:37:22 -03003788
Ben Widawskyabd58f02013-11-02 21:07:09 -07003789 gen8_gt_irq_postinstall(dev_priv);
3790 gen8_de_irq_postinstall(dev_priv);
3791
Shashank Sharma266ea3d2014-08-22 17:40:42 +05303792 if (HAS_PCH_SPLIT(dev))
3793 ibx_irq_postinstall(dev);
Ben Widawskyabd58f02013-11-02 21:07:09 -07003794
Ville Syrjäläe5328c42016-04-13 21:19:47 +03003795 I915_WRITE(GEN8_MASTER_IRQ, GEN8_MASTER_IRQ_CONTROL);
Ben Widawskyabd58f02013-11-02 21:07:09 -07003796 POSTING_READ(GEN8_MASTER_IRQ);
3797
3798 return 0;
3799}
3800
Ville Syrjälä43f328d2014-04-09 20:40:52 +03003801static int cherryview_irq_postinstall(struct drm_device *dev)
3802{
3803 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjälä43f328d2014-04-09 20:40:52 +03003804
Ville Syrjälä43f328d2014-04-09 20:40:52 +03003805 gen8_gt_irq_postinstall(dev_priv);
3806
Ville Syrjäläad22d102016-04-12 18:56:14 +03003807 spin_lock_irq(&dev_priv->irq_lock);
Ville Syrjälä99182712016-04-11 16:56:25 +03003808 if (dev_priv->display_irqs_enabled)
3809 vlv_display_irq_postinstall(dev_priv);
Ville Syrjäläad22d102016-04-12 18:56:14 +03003810 spin_unlock_irq(&dev_priv->irq_lock);
3811
Ville Syrjäläe5328c42016-04-13 21:19:47 +03003812 I915_WRITE(GEN8_MASTER_IRQ, GEN8_MASTER_IRQ_CONTROL);
Ville Syrjälä43f328d2014-04-09 20:40:52 +03003813 POSTING_READ(GEN8_MASTER_IRQ);
3814
3815 return 0;
3816}
3817
Ben Widawskyabd58f02013-11-02 21:07:09 -07003818static void gen8_irq_uninstall(struct drm_device *dev)
3819{
3820 struct drm_i915_private *dev_priv = dev->dev_private;
Ben Widawskyabd58f02013-11-02 21:07:09 -07003821
3822 if (!dev_priv)
3823 return;
3824
Paulo Zanoni823f6b32014-04-01 15:37:26 -03003825 gen8_irq_reset(dev);
Ben Widawskyabd58f02013-11-02 21:07:09 -07003826}
3827
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003828static void valleyview_irq_uninstall(struct drm_device *dev)
3829{
Jani Nikula2d1013d2014-03-31 14:27:17 +03003830 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003831
3832 if (!dev_priv)
3833 return;
3834
Imre Deak843d0e72014-04-14 20:24:23 +03003835 I915_WRITE(VLV_MASTER_IER, 0);
Ville Syrjälä34c7b8a2016-04-13 21:19:48 +03003836 POSTING_READ(VLV_MASTER_IER);
Imre Deak843d0e72014-04-14 20:24:23 +03003837
Ville Syrjälä893fce82014-10-30 19:42:56 +02003838 gen5_gt_irq_reset(dev);
3839
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003840 I915_WRITE(HWSTAM, 0xffffffff);
Imre Deakf8b79e52014-03-04 19:23:07 +02003841
Ville Syrjäläad22d102016-04-12 18:56:14 +03003842 spin_lock_irq(&dev_priv->irq_lock);
Ville Syrjälä99182712016-04-11 16:56:25 +03003843 if (dev_priv->display_irqs_enabled)
3844 vlv_display_irq_reset(dev_priv);
Ville Syrjäläad22d102016-04-12 18:56:14 +03003845 spin_unlock_irq(&dev_priv->irq_lock);
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003846}
3847
Ville Syrjälä43f328d2014-04-09 20:40:52 +03003848static void cherryview_irq_uninstall(struct drm_device *dev)
3849{
3850 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjälä43f328d2014-04-09 20:40:52 +03003851
3852 if (!dev_priv)
3853 return;
3854
3855 I915_WRITE(GEN8_MASTER_IRQ, 0);
3856 POSTING_READ(GEN8_MASTER_IRQ);
3857
Ville Syrjäläa2c30fb2014-10-30 19:42:52 +02003858 gen8_gt_irq_reset(dev_priv);
Ville Syrjälä43f328d2014-04-09 20:40:52 +03003859
Ville Syrjäläa2c30fb2014-10-30 19:42:52 +02003860 GEN5_IRQ_RESET(GEN8_PCU_);
Ville Syrjälä43f328d2014-04-09 20:40:52 +03003861
Ville Syrjäläad22d102016-04-12 18:56:14 +03003862 spin_lock_irq(&dev_priv->irq_lock);
Ville Syrjälä99182712016-04-11 16:56:25 +03003863 if (dev_priv->display_irqs_enabled)
3864 vlv_display_irq_reset(dev_priv);
Ville Syrjäläad22d102016-04-12 18:56:14 +03003865 spin_unlock_irq(&dev_priv->irq_lock);
Ville Syrjälä43f328d2014-04-09 20:40:52 +03003866}
3867
Jesse Barnesf71d4af2011-06-28 13:00:41 -07003868static void ironlake_irq_uninstall(struct drm_device *dev)
Zhenyu Wang036a4a72009-06-08 14:40:19 +08003869{
Jani Nikula2d1013d2014-03-31 14:27:17 +03003870 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes46979952011-04-07 13:53:55 -07003871
3872 if (!dev_priv)
3873 return;
3874
Paulo Zanonibe30b292014-04-01 15:37:25 -03003875 ironlake_irq_reset(dev);
Zhenyu Wang036a4a72009-06-08 14:40:19 +08003876}
3877
Chris Wilsonc2798b12012-04-22 21:13:57 +01003878static void i8xx_irq_preinstall(struct drm_device * dev)
3879{
Jani Nikula2d1013d2014-03-31 14:27:17 +03003880 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsonc2798b12012-04-22 21:13:57 +01003881 int pipe;
3882
Damien Lespiau055e3932014-08-18 13:49:10 +01003883 for_each_pipe(dev_priv, pipe)
Chris Wilsonc2798b12012-04-22 21:13:57 +01003884 I915_WRITE(PIPESTAT(pipe), 0);
3885 I915_WRITE16(IMR, 0xffff);
3886 I915_WRITE16(IER, 0x0);
3887 POSTING_READ16(IER);
3888}
3889
3890static int i8xx_irq_postinstall(struct drm_device *dev)
3891{
Jani Nikula2d1013d2014-03-31 14:27:17 +03003892 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsonc2798b12012-04-22 21:13:57 +01003893
Chris Wilsonc2798b12012-04-22 21:13:57 +01003894 I915_WRITE16(EMR,
3895 ~(I915_ERROR_PAGE_TABLE | I915_ERROR_MEMORY_REFRESH));
3896
3897 /* Unmask the interrupts that we always want on. */
3898 dev_priv->irq_mask =
3899 ~(I915_DISPLAY_PIPE_A_EVENT_INTERRUPT |
3900 I915_DISPLAY_PIPE_B_EVENT_INTERRUPT |
3901 I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT |
Daniel Vetter37ef01a2015-04-01 13:43:46 +02003902 I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT);
Chris Wilsonc2798b12012-04-22 21:13:57 +01003903 I915_WRITE16(IMR, dev_priv->irq_mask);
3904
3905 I915_WRITE16(IER,
3906 I915_DISPLAY_PIPE_A_EVENT_INTERRUPT |
3907 I915_DISPLAY_PIPE_B_EVENT_INTERRUPT |
Chris Wilsonc2798b12012-04-22 21:13:57 +01003908 I915_USER_INTERRUPT);
3909 POSTING_READ16(IER);
3910
Daniel Vetter379ef822013-10-16 22:55:56 +02003911 /* Interrupt setup is already guaranteed to be single-threaded, this is
3912 * just to make the assert_spin_locked check happy. */
Daniel Vetterd6207432014-09-15 14:55:27 +02003913 spin_lock_irq(&dev_priv->irq_lock);
Imre Deak755e9012014-02-10 18:42:47 +02003914 i915_enable_pipestat(dev_priv, PIPE_A, PIPE_CRC_DONE_INTERRUPT_STATUS);
3915 i915_enable_pipestat(dev_priv, PIPE_B, PIPE_CRC_DONE_INTERRUPT_STATUS);
Daniel Vetterd6207432014-09-15 14:55:27 +02003916 spin_unlock_irq(&dev_priv->irq_lock);
Daniel Vetter379ef822013-10-16 22:55:56 +02003917
Chris Wilsonc2798b12012-04-22 21:13:57 +01003918 return 0;
3919}
3920
Daniel Vetter5a21b662016-05-24 17:13:53 +02003921/*
3922 * Returns true when a page flip has completed.
3923 */
3924static bool i8xx_handle_vblank(struct drm_i915_private *dev_priv,
3925 int plane, int pipe, u32 iir)
3926{
3927 u16 flip_pending = DISPLAY_PLANE_FLIP_PENDING(plane);
3928
3929 if (!intel_pipe_handle_vblank(dev_priv, pipe))
3930 return false;
3931
3932 if ((iir & flip_pending) == 0)
3933 goto check_page_flip;
3934
3935 /* We detect FlipDone by looking for the change in PendingFlip from '1'
3936 * to '0' on the following vblank, i.e. IIR has the Pendingflip
3937 * asserted following the MI_DISPLAY_FLIP, but ISR is deasserted, hence
3938 * the flip is completed (no longer pending). Since this doesn't raise
3939 * an interrupt per se, we watch for the change at vblank.
3940 */
3941 if (I915_READ16(ISR) & flip_pending)
3942 goto check_page_flip;
3943
3944 intel_finish_page_flip_cs(dev_priv, pipe);
3945 return true;
3946
3947check_page_flip:
3948 intel_check_page_flip(dev_priv, pipe);
3949 return false;
3950}
3951
Daniel Vetterff1f5252012-10-02 15:10:55 +02003952static irqreturn_t i8xx_irq_handler(int irq, void *arg)
Chris Wilsonc2798b12012-04-22 21:13:57 +01003953{
Daniel Vetter45a83f82014-05-12 19:17:55 +02003954 struct drm_device *dev = arg;
Jani Nikula2d1013d2014-03-31 14:27:17 +03003955 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsonc2798b12012-04-22 21:13:57 +01003956 u16 iir, new_iir;
3957 u32 pipe_stats[2];
Chris Wilsonc2798b12012-04-22 21:13:57 +01003958 int pipe;
3959 u16 flip_mask =
3960 I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT |
3961 I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT;
Imre Deak1f814da2015-12-16 02:52:19 +02003962 irqreturn_t ret;
Chris Wilsonc2798b12012-04-22 21:13:57 +01003963
Imre Deak2dd2a882015-02-24 11:14:30 +02003964 if (!intel_irqs_enabled(dev_priv))
3965 return IRQ_NONE;
3966
Imre Deak1f814da2015-12-16 02:52:19 +02003967 /* IRQs are synced during runtime_suspend, we don't require a wakeref */
3968 disable_rpm_wakeref_asserts(dev_priv);
3969
3970 ret = IRQ_NONE;
Chris Wilsonc2798b12012-04-22 21:13:57 +01003971 iir = I915_READ16(IIR);
3972 if (iir == 0)
Imre Deak1f814da2015-12-16 02:52:19 +02003973 goto out;
Chris Wilsonc2798b12012-04-22 21:13:57 +01003974
3975 while (iir & ~flip_mask) {
3976 /* Can't rely on pipestat interrupt bit in iir as it might
3977 * have been cleared after the pipestat interrupt was received.
3978 * It doesn't set the bit in iir again, but it still produces
3979 * interrupts (for non-MSI).
3980 */
Daniel Vetter222c7f52014-09-15 14:55:28 +02003981 spin_lock(&dev_priv->irq_lock);
Chris Wilsonc2798b12012-04-22 21:13:57 +01003982 if (iir & I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT)
Daniel Vetteraaecdf62014-11-04 15:52:22 +01003983 DRM_DEBUG("Command parser error, iir 0x%08x\n", iir);
Chris Wilsonc2798b12012-04-22 21:13:57 +01003984
Damien Lespiau055e3932014-08-18 13:49:10 +01003985 for_each_pipe(dev_priv, pipe) {
Ville Syrjäläf0f59a02015-11-18 15:33:26 +02003986 i915_reg_t reg = PIPESTAT(pipe);
Chris Wilsonc2798b12012-04-22 21:13:57 +01003987 pipe_stats[pipe] = I915_READ(reg);
3988
3989 /*
3990 * Clear the PIPE*STAT regs before the IIR
3991 */
Ville Syrjälä2d9d2b02014-01-17 11:44:31 +02003992 if (pipe_stats[pipe] & 0x8000ffff)
Chris Wilsonc2798b12012-04-22 21:13:57 +01003993 I915_WRITE(reg, pipe_stats[pipe]);
Chris Wilsonc2798b12012-04-22 21:13:57 +01003994 }
Daniel Vetter222c7f52014-09-15 14:55:28 +02003995 spin_unlock(&dev_priv->irq_lock);
Chris Wilsonc2798b12012-04-22 21:13:57 +01003996
3997 I915_WRITE16(IIR, iir & ~flip_mask);
3998 new_iir = I915_READ16(IIR); /* Flush posted writes */
3999
Chris Wilsonc2798b12012-04-22 21:13:57 +01004000 if (iir & I915_USER_INTERRUPT)
Tvrtko Ursulin4a570db2016-03-16 11:00:38 +00004001 notify_ring(&dev_priv->engine[RCS]);
Chris Wilsonc2798b12012-04-22 21:13:57 +01004002
Damien Lespiau055e3932014-08-18 13:49:10 +01004003 for_each_pipe(dev_priv, pipe) {
Daniel Vetter5a21b662016-05-24 17:13:53 +02004004 int plane = pipe;
4005 if (HAS_FBC(dev_priv))
4006 plane = !plane;
4007
4008 if (pipe_stats[pipe] & PIPE_VBLANK_INTERRUPT_STATUS &&
4009 i8xx_handle_vblank(dev_priv, plane, pipe, iir))
4010 flip_mask &= ~DISPLAY_PLANE_FLIP_PENDING(plane);
Chris Wilsonc2798b12012-04-22 21:13:57 +01004011
Daniel Vetter4356d582013-10-16 22:55:55 +02004012 if (pipe_stats[pipe] & PIPE_CRC_DONE_INTERRUPT_STATUS)
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01004013 i9xx_pipe_crc_irq_handler(dev_priv, pipe);
Ville Syrjälä2d9d2b02014-01-17 11:44:31 +02004014
Daniel Vetter1f7247c2014-09-30 10:56:48 +02004015 if (pipe_stats[pipe] & PIPE_FIFO_UNDERRUN_STATUS)
4016 intel_cpu_fifo_underrun_irq_handler(dev_priv,
4017 pipe);
Daniel Vetter4356d582013-10-16 22:55:55 +02004018 }
Chris Wilsonc2798b12012-04-22 21:13:57 +01004019
4020 iir = new_iir;
4021 }
Imre Deak1f814da2015-12-16 02:52:19 +02004022 ret = IRQ_HANDLED;
Chris Wilsonc2798b12012-04-22 21:13:57 +01004023
Imre Deak1f814da2015-12-16 02:52:19 +02004024out:
4025 enable_rpm_wakeref_asserts(dev_priv);
4026
4027 return ret;
Chris Wilsonc2798b12012-04-22 21:13:57 +01004028}
4029
4030static void i8xx_irq_uninstall(struct drm_device * dev)
4031{
Jani Nikula2d1013d2014-03-31 14:27:17 +03004032 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsonc2798b12012-04-22 21:13:57 +01004033 int pipe;
4034
Damien Lespiau055e3932014-08-18 13:49:10 +01004035 for_each_pipe(dev_priv, pipe) {
Chris Wilsonc2798b12012-04-22 21:13:57 +01004036 /* Clear enable bits; then clear status bits */
4037 I915_WRITE(PIPESTAT(pipe), 0);
4038 I915_WRITE(PIPESTAT(pipe), I915_READ(PIPESTAT(pipe)));
4039 }
4040 I915_WRITE16(IMR, 0xffff);
4041 I915_WRITE16(IER, 0x0);
4042 I915_WRITE16(IIR, I915_READ16(IIR));
4043}
4044
Chris Wilsona266c7d2012-04-24 22:59:44 +01004045static void i915_irq_preinstall(struct drm_device * dev)
4046{
Jani Nikula2d1013d2014-03-31 14:27:17 +03004047 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsona266c7d2012-04-24 22:59:44 +01004048 int pipe;
4049
Chris Wilsona266c7d2012-04-24 22:59:44 +01004050 if (I915_HAS_HOTPLUG(dev)) {
Egbert Eich0706f172015-09-23 16:15:27 +02004051 i915_hotplug_interrupt_update(dev_priv, 0xffffffff, 0);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004052 I915_WRITE(PORT_HOTPLUG_STAT, I915_READ(PORT_HOTPLUG_STAT));
4053 }
4054
Chris Wilson00d98eb2012-04-24 22:59:48 +01004055 I915_WRITE16(HWSTAM, 0xeffe);
Damien Lespiau055e3932014-08-18 13:49:10 +01004056 for_each_pipe(dev_priv, pipe)
Chris Wilsona266c7d2012-04-24 22:59:44 +01004057 I915_WRITE(PIPESTAT(pipe), 0);
4058 I915_WRITE(IMR, 0xffffffff);
4059 I915_WRITE(IER, 0x0);
4060 POSTING_READ(IER);
4061}
4062
4063static int i915_irq_postinstall(struct drm_device *dev)
4064{
Jani Nikula2d1013d2014-03-31 14:27:17 +03004065 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson38bde182012-04-24 22:59:50 +01004066 u32 enable_mask;
Chris Wilsona266c7d2012-04-24 22:59:44 +01004067
Chris Wilson38bde182012-04-24 22:59:50 +01004068 I915_WRITE(EMR, ~(I915_ERROR_PAGE_TABLE | I915_ERROR_MEMORY_REFRESH));
4069
4070 /* Unmask the interrupts that we always want on. */
4071 dev_priv->irq_mask =
4072 ~(I915_ASLE_INTERRUPT |
4073 I915_DISPLAY_PIPE_A_EVENT_INTERRUPT |
4074 I915_DISPLAY_PIPE_B_EVENT_INTERRUPT |
4075 I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT |
Daniel Vetter37ef01a2015-04-01 13:43:46 +02004076 I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT);
Chris Wilson38bde182012-04-24 22:59:50 +01004077
4078 enable_mask =
4079 I915_ASLE_INTERRUPT |
4080 I915_DISPLAY_PIPE_A_EVENT_INTERRUPT |
4081 I915_DISPLAY_PIPE_B_EVENT_INTERRUPT |
Chris Wilson38bde182012-04-24 22:59:50 +01004082 I915_USER_INTERRUPT;
4083
Chris Wilsona266c7d2012-04-24 22:59:44 +01004084 if (I915_HAS_HOTPLUG(dev)) {
Egbert Eich0706f172015-09-23 16:15:27 +02004085 i915_hotplug_interrupt_update(dev_priv, 0xffffffff, 0);
Daniel Vetter20afbda2012-12-11 14:05:07 +01004086 POSTING_READ(PORT_HOTPLUG_EN);
4087
Chris Wilsona266c7d2012-04-24 22:59:44 +01004088 /* Enable in IER... */
4089 enable_mask |= I915_DISPLAY_PORT_INTERRUPT;
4090 /* and unmask in IMR */
4091 dev_priv->irq_mask &= ~I915_DISPLAY_PORT_INTERRUPT;
4092 }
4093
Chris Wilsona266c7d2012-04-24 22:59:44 +01004094 I915_WRITE(IMR, dev_priv->irq_mask);
4095 I915_WRITE(IER, enable_mask);
4096 POSTING_READ(IER);
4097
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01004098 i915_enable_asle_pipestat(dev_priv);
Daniel Vetter20afbda2012-12-11 14:05:07 +01004099
Daniel Vetter379ef822013-10-16 22:55:56 +02004100 /* Interrupt setup is already guaranteed to be single-threaded, this is
4101 * just to make the assert_spin_locked check happy. */
Daniel Vetterd6207432014-09-15 14:55:27 +02004102 spin_lock_irq(&dev_priv->irq_lock);
Imre Deak755e9012014-02-10 18:42:47 +02004103 i915_enable_pipestat(dev_priv, PIPE_A, PIPE_CRC_DONE_INTERRUPT_STATUS);
4104 i915_enable_pipestat(dev_priv, PIPE_B, PIPE_CRC_DONE_INTERRUPT_STATUS);
Daniel Vetterd6207432014-09-15 14:55:27 +02004105 spin_unlock_irq(&dev_priv->irq_lock);
Daniel Vetter379ef822013-10-16 22:55:56 +02004106
Daniel Vetter20afbda2012-12-11 14:05:07 +01004107 return 0;
4108}
4109
Daniel Vetter5a21b662016-05-24 17:13:53 +02004110/*
4111 * Returns true when a page flip has completed.
4112 */
4113static bool i915_handle_vblank(struct drm_i915_private *dev_priv,
4114 int plane, int pipe, u32 iir)
4115{
4116 u32 flip_pending = DISPLAY_PLANE_FLIP_PENDING(plane);
4117
4118 if (!intel_pipe_handle_vblank(dev_priv, pipe))
4119 return false;
4120
4121 if ((iir & flip_pending) == 0)
4122 goto check_page_flip;
4123
4124 /* We detect FlipDone by looking for the change in PendingFlip from '1'
4125 * to '0' on the following vblank, i.e. IIR has the Pendingflip
4126 * asserted following the MI_DISPLAY_FLIP, but ISR is deasserted, hence
4127 * the flip is completed (no longer pending). Since this doesn't raise
4128 * an interrupt per se, we watch for the change at vblank.
4129 */
4130 if (I915_READ(ISR) & flip_pending)
4131 goto check_page_flip;
4132
4133 intel_finish_page_flip_cs(dev_priv, pipe);
4134 return true;
4135
4136check_page_flip:
4137 intel_check_page_flip(dev_priv, pipe);
4138 return false;
4139}
4140
Daniel Vetterff1f5252012-10-02 15:10:55 +02004141static irqreturn_t i915_irq_handler(int irq, void *arg)
Chris Wilsona266c7d2012-04-24 22:59:44 +01004142{
Daniel Vetter45a83f82014-05-12 19:17:55 +02004143 struct drm_device *dev = arg;
Jani Nikula2d1013d2014-03-31 14:27:17 +03004144 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson8291ee92012-04-24 22:59:47 +01004145 u32 iir, new_iir, pipe_stats[I915_MAX_PIPES];
Chris Wilson38bde182012-04-24 22:59:50 +01004146 u32 flip_mask =
4147 I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT |
4148 I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT;
Chris Wilson38bde182012-04-24 22:59:50 +01004149 int pipe, ret = IRQ_NONE;
Chris Wilsona266c7d2012-04-24 22:59:44 +01004150
Imre Deak2dd2a882015-02-24 11:14:30 +02004151 if (!intel_irqs_enabled(dev_priv))
4152 return IRQ_NONE;
4153
Imre Deak1f814da2015-12-16 02:52:19 +02004154 /* IRQs are synced during runtime_suspend, we don't require a wakeref */
4155 disable_rpm_wakeref_asserts(dev_priv);
4156
Chris Wilsona266c7d2012-04-24 22:59:44 +01004157 iir = I915_READ(IIR);
Chris Wilson38bde182012-04-24 22:59:50 +01004158 do {
4159 bool irq_received = (iir & ~flip_mask) != 0;
Chris Wilson8291ee92012-04-24 22:59:47 +01004160 bool blc_event = false;
Chris Wilsona266c7d2012-04-24 22:59:44 +01004161
4162 /* Can't rely on pipestat interrupt bit in iir as it might
4163 * have been cleared after the pipestat interrupt was received.
4164 * It doesn't set the bit in iir again, but it still produces
4165 * interrupts (for non-MSI).
4166 */
Daniel Vetter222c7f52014-09-15 14:55:28 +02004167 spin_lock(&dev_priv->irq_lock);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004168 if (iir & I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT)
Daniel Vetteraaecdf62014-11-04 15:52:22 +01004169 DRM_DEBUG("Command parser error, iir 0x%08x\n", iir);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004170
Damien Lespiau055e3932014-08-18 13:49:10 +01004171 for_each_pipe(dev_priv, pipe) {
Ville Syrjäläf0f59a02015-11-18 15:33:26 +02004172 i915_reg_t reg = PIPESTAT(pipe);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004173 pipe_stats[pipe] = I915_READ(reg);
4174
Chris Wilson38bde182012-04-24 22:59:50 +01004175 /* Clear the PIPE*STAT regs before the IIR */
Chris Wilsona266c7d2012-04-24 22:59:44 +01004176 if (pipe_stats[pipe] & 0x8000ffff) {
Chris Wilsona266c7d2012-04-24 22:59:44 +01004177 I915_WRITE(reg, pipe_stats[pipe]);
Chris Wilson38bde182012-04-24 22:59:50 +01004178 irq_received = true;
Chris Wilsona266c7d2012-04-24 22:59:44 +01004179 }
4180 }
Daniel Vetter222c7f52014-09-15 14:55:28 +02004181 spin_unlock(&dev_priv->irq_lock);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004182
4183 if (!irq_received)
4184 break;
4185
Chris Wilsona266c7d2012-04-24 22:59:44 +01004186 /* Consume port. Then clear IIR or we'll miss events */
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01004187 if (I915_HAS_HOTPLUG(dev_priv) &&
Ville Syrjälä1ae3c342016-04-13 21:19:54 +03004188 iir & I915_DISPLAY_PORT_INTERRUPT) {
4189 u32 hotplug_status = i9xx_hpd_irq_ack(dev_priv);
4190 if (hotplug_status)
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01004191 i9xx_hpd_irq_handler(dev_priv, hotplug_status);
Ville Syrjälä1ae3c342016-04-13 21:19:54 +03004192 }
Chris Wilsona266c7d2012-04-24 22:59:44 +01004193
Chris Wilson38bde182012-04-24 22:59:50 +01004194 I915_WRITE(IIR, iir & ~flip_mask);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004195 new_iir = I915_READ(IIR); /* Flush posted writes */
4196
Chris Wilsona266c7d2012-04-24 22:59:44 +01004197 if (iir & I915_USER_INTERRUPT)
Tvrtko Ursulin4a570db2016-03-16 11:00:38 +00004198 notify_ring(&dev_priv->engine[RCS]);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004199
Damien Lespiau055e3932014-08-18 13:49:10 +01004200 for_each_pipe(dev_priv, pipe) {
Daniel Vetter5a21b662016-05-24 17:13:53 +02004201 int plane = pipe;
4202 if (HAS_FBC(dev_priv))
4203 plane = !plane;
4204
4205 if (pipe_stats[pipe] & PIPE_VBLANK_INTERRUPT_STATUS &&
4206 i915_handle_vblank(dev_priv, plane, pipe, iir))
4207 flip_mask &= ~DISPLAY_PLANE_FLIP_PENDING(plane);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004208
4209 if (pipe_stats[pipe] & PIPE_LEGACY_BLC_EVENT_STATUS)
4210 blc_event = true;
Daniel Vetter4356d582013-10-16 22:55:55 +02004211
4212 if (pipe_stats[pipe] & PIPE_CRC_DONE_INTERRUPT_STATUS)
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01004213 i9xx_pipe_crc_irq_handler(dev_priv, pipe);
Ville Syrjälä2d9d2b02014-01-17 11:44:31 +02004214
Daniel Vetter1f7247c2014-09-30 10:56:48 +02004215 if (pipe_stats[pipe] & PIPE_FIFO_UNDERRUN_STATUS)
4216 intel_cpu_fifo_underrun_irq_handler(dev_priv,
4217 pipe);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004218 }
4219
Chris Wilsona266c7d2012-04-24 22:59:44 +01004220 if (blc_event || (iir & I915_ASLE_INTERRUPT))
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01004221 intel_opregion_asle_intr(dev_priv);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004222
4223 /* With MSI, interrupts are only generated when iir
4224 * transitions from zero to nonzero. If another bit got
4225 * set while we were handling the existing iir bits, then
4226 * we would never get another interrupt.
4227 *
4228 * This is fine on non-MSI as well, as if we hit this path
4229 * we avoid exiting the interrupt handler only to generate
4230 * another one.
4231 *
4232 * Note that for MSI this could cause a stray interrupt report
4233 * if an interrupt landed in the time between writing IIR and
4234 * the posting read. This should be rare enough to never
4235 * trigger the 99% of 100,000 interrupts test for disabling
4236 * stray interrupts.
4237 */
Chris Wilson38bde182012-04-24 22:59:50 +01004238 ret = IRQ_HANDLED;
Chris Wilsona266c7d2012-04-24 22:59:44 +01004239 iir = new_iir;
Chris Wilson38bde182012-04-24 22:59:50 +01004240 } while (iir & ~flip_mask);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004241
Imre Deak1f814da2015-12-16 02:52:19 +02004242 enable_rpm_wakeref_asserts(dev_priv);
4243
Chris Wilsona266c7d2012-04-24 22:59:44 +01004244 return ret;
4245}
4246
4247static void i915_irq_uninstall(struct drm_device * dev)
4248{
Jani Nikula2d1013d2014-03-31 14:27:17 +03004249 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsona266c7d2012-04-24 22:59:44 +01004250 int pipe;
4251
Chris Wilsona266c7d2012-04-24 22:59:44 +01004252 if (I915_HAS_HOTPLUG(dev)) {
Egbert Eich0706f172015-09-23 16:15:27 +02004253 i915_hotplug_interrupt_update(dev_priv, 0xffffffff, 0);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004254 I915_WRITE(PORT_HOTPLUG_STAT, I915_READ(PORT_HOTPLUG_STAT));
4255 }
4256
Chris Wilson00d98eb2012-04-24 22:59:48 +01004257 I915_WRITE16(HWSTAM, 0xffff);
Damien Lespiau055e3932014-08-18 13:49:10 +01004258 for_each_pipe(dev_priv, pipe) {
Chris Wilson55b39752012-04-24 22:59:49 +01004259 /* Clear enable bits; then clear status bits */
Chris Wilsona266c7d2012-04-24 22:59:44 +01004260 I915_WRITE(PIPESTAT(pipe), 0);
Chris Wilson55b39752012-04-24 22:59:49 +01004261 I915_WRITE(PIPESTAT(pipe), I915_READ(PIPESTAT(pipe)));
4262 }
Chris Wilsona266c7d2012-04-24 22:59:44 +01004263 I915_WRITE(IMR, 0xffffffff);
4264 I915_WRITE(IER, 0x0);
4265
Chris Wilsona266c7d2012-04-24 22:59:44 +01004266 I915_WRITE(IIR, I915_READ(IIR));
4267}
4268
4269static void i965_irq_preinstall(struct drm_device * dev)
4270{
Jani Nikula2d1013d2014-03-31 14:27:17 +03004271 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsona266c7d2012-04-24 22:59:44 +01004272 int pipe;
4273
Egbert Eich0706f172015-09-23 16:15:27 +02004274 i915_hotplug_interrupt_update(dev_priv, 0xffffffff, 0);
Chris Wilsonadca4732012-05-11 18:01:31 +01004275 I915_WRITE(PORT_HOTPLUG_STAT, I915_READ(PORT_HOTPLUG_STAT));
Chris Wilsona266c7d2012-04-24 22:59:44 +01004276
4277 I915_WRITE(HWSTAM, 0xeffe);
Damien Lespiau055e3932014-08-18 13:49:10 +01004278 for_each_pipe(dev_priv, pipe)
Chris Wilsona266c7d2012-04-24 22:59:44 +01004279 I915_WRITE(PIPESTAT(pipe), 0);
4280 I915_WRITE(IMR, 0xffffffff);
4281 I915_WRITE(IER, 0x0);
4282 POSTING_READ(IER);
4283}
4284
4285static int i965_irq_postinstall(struct drm_device *dev)
4286{
Jani Nikula2d1013d2014-03-31 14:27:17 +03004287 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsonbbba0a92012-04-24 22:59:51 +01004288 u32 enable_mask;
Chris Wilsona266c7d2012-04-24 22:59:44 +01004289 u32 error_mask;
4290
Chris Wilsona266c7d2012-04-24 22:59:44 +01004291 /* Unmask the interrupts that we always want on. */
Chris Wilsonbbba0a92012-04-24 22:59:51 +01004292 dev_priv->irq_mask = ~(I915_ASLE_INTERRUPT |
Chris Wilsonadca4732012-05-11 18:01:31 +01004293 I915_DISPLAY_PORT_INTERRUPT |
Chris Wilsonbbba0a92012-04-24 22:59:51 +01004294 I915_DISPLAY_PIPE_A_EVENT_INTERRUPT |
4295 I915_DISPLAY_PIPE_B_EVENT_INTERRUPT |
4296 I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT |
4297 I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT |
4298 I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT);
4299
4300 enable_mask = ~dev_priv->irq_mask;
Ville Syrjälä21ad8332013-02-19 15:16:39 +02004301 enable_mask &= ~(I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT |
4302 I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT);
Chris Wilsonbbba0a92012-04-24 22:59:51 +01004303 enable_mask |= I915_USER_INTERRUPT;
4304
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01004305 if (IS_G4X(dev_priv))
Chris Wilsonbbba0a92012-04-24 22:59:51 +01004306 enable_mask |= I915_BSD_USER_INTERRUPT;
Chris Wilsona266c7d2012-04-24 22:59:44 +01004307
Daniel Vetterb79480b2013-06-27 17:52:10 +02004308 /* Interrupt setup is already guaranteed to be single-threaded, this is
4309 * just to make the assert_spin_locked check happy. */
Daniel Vetterd6207432014-09-15 14:55:27 +02004310 spin_lock_irq(&dev_priv->irq_lock);
Imre Deak755e9012014-02-10 18:42:47 +02004311 i915_enable_pipestat(dev_priv, PIPE_A, PIPE_GMBUS_INTERRUPT_STATUS);
4312 i915_enable_pipestat(dev_priv, PIPE_A, PIPE_CRC_DONE_INTERRUPT_STATUS);
4313 i915_enable_pipestat(dev_priv, PIPE_B, PIPE_CRC_DONE_INTERRUPT_STATUS);
Daniel Vetterd6207432014-09-15 14:55:27 +02004314 spin_unlock_irq(&dev_priv->irq_lock);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004315
Chris Wilsona266c7d2012-04-24 22:59:44 +01004316 /*
4317 * Enable some error detection, note the instruction error mask
4318 * bit is reserved, so we leave it masked.
4319 */
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01004320 if (IS_G4X(dev_priv)) {
Chris Wilsona266c7d2012-04-24 22:59:44 +01004321 error_mask = ~(GM45_ERROR_PAGE_TABLE |
4322 GM45_ERROR_MEM_PRIV |
4323 GM45_ERROR_CP_PRIV |
4324 I915_ERROR_MEMORY_REFRESH);
4325 } else {
4326 error_mask = ~(I915_ERROR_PAGE_TABLE |
4327 I915_ERROR_MEMORY_REFRESH);
4328 }
4329 I915_WRITE(EMR, error_mask);
4330
4331 I915_WRITE(IMR, dev_priv->irq_mask);
4332 I915_WRITE(IER, enable_mask);
4333 POSTING_READ(IER);
4334
Egbert Eich0706f172015-09-23 16:15:27 +02004335 i915_hotplug_interrupt_update(dev_priv, 0xffffffff, 0);
Daniel Vetter20afbda2012-12-11 14:05:07 +01004336 POSTING_READ(PORT_HOTPLUG_EN);
4337
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01004338 i915_enable_asle_pipestat(dev_priv);
Daniel Vetter20afbda2012-12-11 14:05:07 +01004339
4340 return 0;
4341}
4342
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01004343static void i915_hpd_irq_setup(struct drm_i915_private *dev_priv)
Daniel Vetter20afbda2012-12-11 14:05:07 +01004344{
Daniel Vetter20afbda2012-12-11 14:05:07 +01004345 u32 hotplug_en;
4346
Daniel Vetterb5ea2d52013-06-27 17:52:15 +02004347 assert_spin_locked(&dev_priv->irq_lock);
4348
Ville Syrjälä778eb332015-01-09 14:21:13 +02004349 /* Note HDMI and DP share hotplug bits */
4350 /* enable bits are the same for all generations */
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01004351 hotplug_en = intel_hpd_enabled_irqs(dev_priv, hpd_mask_i915);
Ville Syrjälä778eb332015-01-09 14:21:13 +02004352 /* Programming the CRT detection parameters tends
4353 to generate a spurious hotplug event about three
4354 seconds later. So just do it once.
4355 */
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01004356 if (IS_G4X(dev_priv))
Ville Syrjälä778eb332015-01-09 14:21:13 +02004357 hotplug_en |= CRT_HOTPLUG_ACTIVATION_PERIOD_64;
Ville Syrjälä778eb332015-01-09 14:21:13 +02004358 hotplug_en |= CRT_HOTPLUG_VOLTAGE_COMPARE_50;
Chris Wilsona266c7d2012-04-24 22:59:44 +01004359
Ville Syrjälä778eb332015-01-09 14:21:13 +02004360 /* Ignore TV since it's buggy */
Egbert Eich0706f172015-09-23 16:15:27 +02004361 i915_hotplug_interrupt_update_locked(dev_priv,
Jani Nikulaf9e3dc72015-10-21 17:22:43 +03004362 HOTPLUG_INT_EN_MASK |
4363 CRT_HOTPLUG_VOLTAGE_COMPARE_MASK |
4364 CRT_HOTPLUG_ACTIVATION_PERIOD_64,
4365 hotplug_en);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004366}
4367
Daniel Vetterff1f5252012-10-02 15:10:55 +02004368static irqreturn_t i965_irq_handler(int irq, void *arg)
Chris Wilsona266c7d2012-04-24 22:59:44 +01004369{
Daniel Vetter45a83f82014-05-12 19:17:55 +02004370 struct drm_device *dev = arg;
Jani Nikula2d1013d2014-03-31 14:27:17 +03004371 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsona266c7d2012-04-24 22:59:44 +01004372 u32 iir, new_iir;
4373 u32 pipe_stats[I915_MAX_PIPES];
Chris Wilsona266c7d2012-04-24 22:59:44 +01004374 int ret = IRQ_NONE, pipe;
Ville Syrjälä21ad8332013-02-19 15:16:39 +02004375 u32 flip_mask =
4376 I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT |
4377 I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT;
Chris Wilsona266c7d2012-04-24 22:59:44 +01004378
Imre Deak2dd2a882015-02-24 11:14:30 +02004379 if (!intel_irqs_enabled(dev_priv))
4380 return IRQ_NONE;
4381
Imre Deak1f814da2015-12-16 02:52:19 +02004382 /* IRQs are synced during runtime_suspend, we don't require a wakeref */
4383 disable_rpm_wakeref_asserts(dev_priv);
4384
Chris Wilsona266c7d2012-04-24 22:59:44 +01004385 iir = I915_READ(IIR);
4386
Chris Wilsona266c7d2012-04-24 22:59:44 +01004387 for (;;) {
Ville Syrjälä501e01d2014-01-17 11:35:15 +02004388 bool irq_received = (iir & ~flip_mask) != 0;
Chris Wilson2c8ba292012-04-24 22:59:46 +01004389 bool blc_event = false;
4390
Chris Wilsona266c7d2012-04-24 22:59:44 +01004391 /* Can't rely on pipestat interrupt bit in iir as it might
4392 * have been cleared after the pipestat interrupt was received.
4393 * It doesn't set the bit in iir again, but it still produces
4394 * interrupts (for non-MSI).
4395 */
Daniel Vetter222c7f52014-09-15 14:55:28 +02004396 spin_lock(&dev_priv->irq_lock);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004397 if (iir & I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT)
Daniel Vetteraaecdf62014-11-04 15:52:22 +01004398 DRM_DEBUG("Command parser error, iir 0x%08x\n", iir);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004399
Damien Lespiau055e3932014-08-18 13:49:10 +01004400 for_each_pipe(dev_priv, pipe) {
Ville Syrjäläf0f59a02015-11-18 15:33:26 +02004401 i915_reg_t reg = PIPESTAT(pipe);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004402 pipe_stats[pipe] = I915_READ(reg);
4403
4404 /*
4405 * Clear the PIPE*STAT regs before the IIR
4406 */
4407 if (pipe_stats[pipe] & 0x8000ffff) {
Chris Wilsona266c7d2012-04-24 22:59:44 +01004408 I915_WRITE(reg, pipe_stats[pipe]);
Ville Syrjälä501e01d2014-01-17 11:35:15 +02004409 irq_received = true;
Chris Wilsona266c7d2012-04-24 22:59:44 +01004410 }
4411 }
Daniel Vetter222c7f52014-09-15 14:55:28 +02004412 spin_unlock(&dev_priv->irq_lock);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004413
4414 if (!irq_received)
4415 break;
4416
4417 ret = IRQ_HANDLED;
4418
4419 /* Consume port. Then clear IIR or we'll miss events */
Ville Syrjälä1ae3c342016-04-13 21:19:54 +03004420 if (iir & I915_DISPLAY_PORT_INTERRUPT) {
4421 u32 hotplug_status = i9xx_hpd_irq_ack(dev_priv);
4422 if (hotplug_status)
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01004423 i9xx_hpd_irq_handler(dev_priv, hotplug_status);
Ville Syrjälä1ae3c342016-04-13 21:19:54 +03004424 }
Chris Wilsona266c7d2012-04-24 22:59:44 +01004425
Ville Syrjälä21ad8332013-02-19 15:16:39 +02004426 I915_WRITE(IIR, iir & ~flip_mask);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004427 new_iir = I915_READ(IIR); /* Flush posted writes */
4428
Chris Wilsona266c7d2012-04-24 22:59:44 +01004429 if (iir & I915_USER_INTERRUPT)
Tvrtko Ursulin4a570db2016-03-16 11:00:38 +00004430 notify_ring(&dev_priv->engine[RCS]);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004431 if (iir & I915_BSD_USER_INTERRUPT)
Tvrtko Ursulin4a570db2016-03-16 11:00:38 +00004432 notify_ring(&dev_priv->engine[VCS]);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004433
Damien Lespiau055e3932014-08-18 13:49:10 +01004434 for_each_pipe(dev_priv, pipe) {
Daniel Vetter5a21b662016-05-24 17:13:53 +02004435 if (pipe_stats[pipe] & PIPE_START_VBLANK_INTERRUPT_STATUS &&
4436 i915_handle_vblank(dev_priv, pipe, pipe, iir))
4437 flip_mask &= ~DISPLAY_PLANE_FLIP_PENDING(pipe);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004438
4439 if (pipe_stats[pipe] & PIPE_LEGACY_BLC_EVENT_STATUS)
4440 blc_event = true;
Daniel Vetter4356d582013-10-16 22:55:55 +02004441
4442 if (pipe_stats[pipe] & PIPE_CRC_DONE_INTERRUPT_STATUS)
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01004443 i9xx_pipe_crc_irq_handler(dev_priv, pipe);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004444
Daniel Vetter1f7247c2014-09-30 10:56:48 +02004445 if (pipe_stats[pipe] & PIPE_FIFO_UNDERRUN_STATUS)
4446 intel_cpu_fifo_underrun_irq_handler(dev_priv, pipe);
Ville Syrjälä2d9d2b02014-01-17 11:44:31 +02004447 }
Chris Wilsona266c7d2012-04-24 22:59:44 +01004448
4449 if (blc_event || (iir & I915_ASLE_INTERRUPT))
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01004450 intel_opregion_asle_intr(dev_priv);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004451
Daniel Vetter515ac2b2012-12-01 13:53:44 +01004452 if (pipe_stats[0] & PIPE_GMBUS_INTERRUPT_STATUS)
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01004453 gmbus_irq_handler(dev_priv);
Daniel Vetter515ac2b2012-12-01 13:53:44 +01004454
Chris Wilsona266c7d2012-04-24 22:59:44 +01004455 /* With MSI, interrupts are only generated when iir
4456 * transitions from zero to nonzero. If another bit got
4457 * set while we were handling the existing iir bits, then
4458 * we would never get another interrupt.
4459 *
4460 * This is fine on non-MSI as well, as if we hit this path
4461 * we avoid exiting the interrupt handler only to generate
4462 * another one.
4463 *
4464 * Note that for MSI this could cause a stray interrupt report
4465 * if an interrupt landed in the time between writing IIR and
4466 * the posting read. This should be rare enough to never
4467 * trigger the 99% of 100,000 interrupts test for disabling
4468 * stray interrupts.
4469 */
4470 iir = new_iir;
4471 }
4472
Imre Deak1f814da2015-12-16 02:52:19 +02004473 enable_rpm_wakeref_asserts(dev_priv);
4474
Chris Wilsona266c7d2012-04-24 22:59:44 +01004475 return ret;
4476}
4477
4478static void i965_irq_uninstall(struct drm_device * dev)
4479{
Jani Nikula2d1013d2014-03-31 14:27:17 +03004480 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsona266c7d2012-04-24 22:59:44 +01004481 int pipe;
4482
4483 if (!dev_priv)
4484 return;
4485
Egbert Eich0706f172015-09-23 16:15:27 +02004486 i915_hotplug_interrupt_update(dev_priv, 0xffffffff, 0);
Chris Wilsonadca4732012-05-11 18:01:31 +01004487 I915_WRITE(PORT_HOTPLUG_STAT, I915_READ(PORT_HOTPLUG_STAT));
Chris Wilsona266c7d2012-04-24 22:59:44 +01004488
4489 I915_WRITE(HWSTAM, 0xffffffff);
Damien Lespiau055e3932014-08-18 13:49:10 +01004490 for_each_pipe(dev_priv, pipe)
Chris Wilsona266c7d2012-04-24 22:59:44 +01004491 I915_WRITE(PIPESTAT(pipe), 0);
4492 I915_WRITE(IMR, 0xffffffff);
4493 I915_WRITE(IER, 0x0);
4494
Damien Lespiau055e3932014-08-18 13:49:10 +01004495 for_each_pipe(dev_priv, pipe)
Chris Wilsona266c7d2012-04-24 22:59:44 +01004496 I915_WRITE(PIPESTAT(pipe),
4497 I915_READ(PIPESTAT(pipe)) & 0x8000ffff);
4498 I915_WRITE(IIR, I915_READ(IIR));
4499}
4500
Daniel Vetterfca52a52014-09-30 10:56:45 +02004501/**
4502 * intel_irq_init - initializes irq support
4503 * @dev_priv: i915 device instance
4504 *
4505 * This function initializes all the irq support including work items, timers
4506 * and all the vtables. It does not setup the interrupt itself though.
4507 */
Daniel Vetterb9632912014-09-30 10:56:44 +02004508void intel_irq_init(struct drm_i915_private *dev_priv)
Jesse Barnesf71d4af2011-06-28 13:00:41 -07004509{
Daniel Vetterb9632912014-09-30 10:56:44 +02004510 struct drm_device *dev = dev_priv->dev;
Chris Wilson8b2e3262012-04-24 22:59:41 +01004511
Jani Nikula77913b32015-06-18 13:06:16 +03004512 intel_hpd_init_work(dev_priv);
4513
Daniel Vetterc6a828d2012-08-08 23:35:35 +02004514 INIT_WORK(&dev_priv->rps.work, gen6_pm_rps_work);
Daniel Vettera4da4fa2012-11-02 19:55:07 +01004515 INIT_WORK(&dev_priv->l3_parity.error_work, ivybridge_parity_work);
Chris Wilson8b2e3262012-04-24 22:59:41 +01004516
Deepak Sa6706b42014-03-15 20:23:22 +05304517 /* Let's track the enabled rps events */
Wayne Boyer666a4532015-12-09 12:29:35 -08004518 if (IS_VALLEYVIEW(dev_priv))
Ville Syrjälä6c65a582014-08-29 14:14:07 +03004519 /* WaGsvRC0ResidencyMethod:vlv */
Chris Wilson6f4b12f82015-03-18 09:48:23 +00004520 dev_priv->pm_rps_events = GEN6_PM_RP_DOWN_EI_EXPIRED | GEN6_PM_RP_UP_EI_EXPIRED;
Deepak S31685c22014-07-03 17:33:01 -04004521 else
4522 dev_priv->pm_rps_events = GEN6_PM_RPS_EVENTS;
Deepak Sa6706b42014-03-15 20:23:22 +05304523
Sagar Arun Kamble1800ad22016-05-31 13:58:27 +05304524 dev_priv->rps.pm_intr_keep = 0;
4525
4526 /*
4527 * SNB,IVB can while VLV,CHV may hard hang on looping batchbuffer
4528 * if GEN6_PM_UP_EI_EXPIRED is masked.
4529 *
4530 * TODO: verify if this can be reproduced on VLV,CHV.
4531 */
4532 if (INTEL_INFO(dev_priv)->gen <= 7 && !IS_HASWELL(dev_priv))
4533 dev_priv->rps.pm_intr_keep |= GEN6_PM_RP_UP_EI_EXPIRED;
4534
4535 if (INTEL_INFO(dev_priv)->gen >= 8)
4536 dev_priv->rps.pm_intr_keep |= GEN8_PMINTR_REDIRECT_TO_NON_DISP;
4537
Chris Wilson737b1502015-01-26 18:03:03 +02004538 INIT_DELAYED_WORK(&dev_priv->gpu_error.hangcheck_work,
4539 i915_hangcheck_elapsed);
Daniel Vetter61bac782012-12-01 21:03:21 +01004540
Daniel Vetterb9632912014-09-30 10:56:44 +02004541 if (IS_GEN2(dev_priv)) {
Ville Syrjälä4cdb83e2013-10-11 21:52:44 +03004542 dev->max_vblank_count = 0;
4543 dev->driver->get_vblank_counter = i8xx_get_vblank_counter;
Daniel Vetterb9632912014-09-30 10:56:44 +02004544 } else if (IS_G4X(dev_priv) || INTEL_INFO(dev_priv)->gen >= 5) {
Jesse Barnesf71d4af2011-06-28 13:00:41 -07004545 dev->max_vblank_count = 0xffffffff; /* full 32 bit counter */
Ville Syrjäläfd8f5072015-09-18 20:03:42 +03004546 dev->driver->get_vblank_counter = g4x_get_vblank_counter;
Ville Syrjälä391f75e2013-09-25 19:55:26 +03004547 } else {
4548 dev->driver->get_vblank_counter = i915_get_vblank_counter;
4549 dev->max_vblank_count = 0xffffff; /* only 24 bits of frame count */
Jesse Barnesf71d4af2011-06-28 13:00:41 -07004550 }
4551
Ville Syrjälä21da2702014-08-06 14:49:55 +03004552 /*
4553 * Opt out of the vblank disable timer on everything except gen2.
4554 * Gen2 doesn't have a hardware frame counter and so depends on
4555 * vblank interrupts to produce sane vblank seuquence numbers.
4556 */
Daniel Vetterb9632912014-09-30 10:56:44 +02004557 if (!IS_GEN2(dev_priv))
Ville Syrjälä21da2702014-08-06 14:49:55 +03004558 dev->vblank_disable_immediate = true;
4559
Daniel Vetterf3a5c3f2015-02-13 21:03:44 +01004560 dev->driver->get_vblank_timestamp = i915_get_vblank_timestamp;
4561 dev->driver->get_scanout_position = i915_get_crtc_scanoutpos;
Jesse Barnesf71d4af2011-06-28 13:00:41 -07004562
Daniel Vetterb9632912014-09-30 10:56:44 +02004563 if (IS_CHERRYVIEW(dev_priv)) {
Ville Syrjälä43f328d2014-04-09 20:40:52 +03004564 dev->driver->irq_handler = cherryview_irq_handler;
4565 dev->driver->irq_preinstall = cherryview_irq_preinstall;
4566 dev->driver->irq_postinstall = cherryview_irq_postinstall;
4567 dev->driver->irq_uninstall = cherryview_irq_uninstall;
4568 dev->driver->enable_vblank = valleyview_enable_vblank;
4569 dev->driver->disable_vblank = valleyview_disable_vblank;
4570 dev_priv->display.hpd_irq_setup = i915_hpd_irq_setup;
Daniel Vetterb9632912014-09-30 10:56:44 +02004571 } else if (IS_VALLEYVIEW(dev_priv)) {
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07004572 dev->driver->irq_handler = valleyview_irq_handler;
4573 dev->driver->irq_preinstall = valleyview_irq_preinstall;
4574 dev->driver->irq_postinstall = valleyview_irq_postinstall;
4575 dev->driver->irq_uninstall = valleyview_irq_uninstall;
4576 dev->driver->enable_vblank = valleyview_enable_vblank;
4577 dev->driver->disable_vblank = valleyview_disable_vblank;
Egbert Eichfa00abe2013-02-25 12:06:48 -05004578 dev_priv->display.hpd_irq_setup = i915_hpd_irq_setup;
Daniel Vetterb9632912014-09-30 10:56:44 +02004579 } else if (INTEL_INFO(dev_priv)->gen >= 8) {
Ben Widawskyabd58f02013-11-02 21:07:09 -07004580 dev->driver->irq_handler = gen8_irq_handler;
Daniel Vetter723761b2014-05-22 17:56:34 +02004581 dev->driver->irq_preinstall = gen8_irq_reset;
Ben Widawskyabd58f02013-11-02 21:07:09 -07004582 dev->driver->irq_postinstall = gen8_irq_postinstall;
4583 dev->driver->irq_uninstall = gen8_irq_uninstall;
4584 dev->driver->enable_vblank = gen8_enable_vblank;
4585 dev->driver->disable_vblank = gen8_disable_vblank;
Ville Syrjälä6dbf30c2015-08-27 23:56:02 +03004586 if (IS_BROXTON(dev))
Shashank Sharmae0a20ad2015-03-27 14:54:14 +02004587 dev_priv->display.hpd_irq_setup = bxt_hpd_irq_setup;
Ville Syrjälä6dbf30c2015-08-27 23:56:02 +03004588 else if (HAS_PCH_SPT(dev))
4589 dev_priv->display.hpd_irq_setup = spt_hpd_irq_setup;
4590 else
Ville Syrjälä3a3b3c72015-08-27 23:56:06 +03004591 dev_priv->display.hpd_irq_setup = ilk_hpd_irq_setup;
Jesse Barnesf71d4af2011-06-28 13:00:41 -07004592 } else if (HAS_PCH_SPLIT(dev)) {
4593 dev->driver->irq_handler = ironlake_irq_handler;
Daniel Vetter723761b2014-05-22 17:56:34 +02004594 dev->driver->irq_preinstall = ironlake_irq_reset;
Jesse Barnesf71d4af2011-06-28 13:00:41 -07004595 dev->driver->irq_postinstall = ironlake_irq_postinstall;
4596 dev->driver->irq_uninstall = ironlake_irq_uninstall;
4597 dev->driver->enable_vblank = ironlake_enable_vblank;
4598 dev->driver->disable_vblank = ironlake_disable_vblank;
Ville Syrjälä23bb4cb2015-08-27 23:56:04 +03004599 dev_priv->display.hpd_irq_setup = ilk_hpd_irq_setup;
Jesse Barnesf71d4af2011-06-28 13:00:41 -07004600 } else {
Tvrtko Ursulin7e22dbb2016-05-10 10:57:06 +01004601 if (IS_GEN2(dev_priv)) {
Chris Wilsonc2798b12012-04-22 21:13:57 +01004602 dev->driver->irq_preinstall = i8xx_irq_preinstall;
4603 dev->driver->irq_postinstall = i8xx_irq_postinstall;
4604 dev->driver->irq_handler = i8xx_irq_handler;
4605 dev->driver->irq_uninstall = i8xx_irq_uninstall;
Tvrtko Ursulin7e22dbb2016-05-10 10:57:06 +01004606 } else if (IS_GEN3(dev_priv)) {
Chris Wilsona266c7d2012-04-24 22:59:44 +01004607 dev->driver->irq_preinstall = i915_irq_preinstall;
4608 dev->driver->irq_postinstall = i915_irq_postinstall;
4609 dev->driver->irq_uninstall = i915_irq_uninstall;
4610 dev->driver->irq_handler = i915_irq_handler;
Chris Wilsonc2798b12012-04-22 21:13:57 +01004611 } else {
Chris Wilsona266c7d2012-04-24 22:59:44 +01004612 dev->driver->irq_preinstall = i965_irq_preinstall;
4613 dev->driver->irq_postinstall = i965_irq_postinstall;
4614 dev->driver->irq_uninstall = i965_irq_uninstall;
4615 dev->driver->irq_handler = i965_irq_handler;
Chris Wilsonc2798b12012-04-22 21:13:57 +01004616 }
Ville Syrjälä778eb332015-01-09 14:21:13 +02004617 if (I915_HAS_HOTPLUG(dev_priv))
4618 dev_priv->display.hpd_irq_setup = i915_hpd_irq_setup;
Jesse Barnesf71d4af2011-06-28 13:00:41 -07004619 dev->driver->enable_vblank = i915_enable_vblank;
4620 dev->driver->disable_vblank = i915_disable_vblank;
4621 }
4622}
Daniel Vetter20afbda2012-12-11 14:05:07 +01004623
Daniel Vetterfca52a52014-09-30 10:56:45 +02004624/**
Daniel Vetterfca52a52014-09-30 10:56:45 +02004625 * intel_irq_install - enables the hardware interrupt
4626 * @dev_priv: i915 device instance
4627 *
4628 * This function enables the hardware interrupt handling, but leaves the hotplug
4629 * handling still disabled. It is called after intel_irq_init().
4630 *
4631 * In the driver load and resume code we need working interrupts in a few places
4632 * but don't want to deal with the hassle of concurrent probe and hotplug
4633 * workers. Hence the split into this two-stage approach.
4634 */
Daniel Vetter2aeb7d32014-09-30 10:56:43 +02004635int intel_irq_install(struct drm_i915_private *dev_priv)
4636{
4637 /*
4638 * We enable some interrupt sources in our postinstall hooks, so mark
4639 * interrupts as enabled _before_ actually enabling them to avoid
4640 * special cases in our ordering checks.
4641 */
4642 dev_priv->pm.irqs_enabled = true;
4643
4644 return drm_irq_install(dev_priv->dev, dev_priv->dev->pdev->irq);
4645}
4646
Daniel Vetterfca52a52014-09-30 10:56:45 +02004647/**
4648 * intel_irq_uninstall - finilizes all irq handling
4649 * @dev_priv: i915 device instance
4650 *
4651 * This stops interrupt and hotplug handling and unregisters and frees all
4652 * resources acquired in the init functions.
4653 */
Daniel Vetter2aeb7d32014-09-30 10:56:43 +02004654void intel_irq_uninstall(struct drm_i915_private *dev_priv)
4655{
4656 drm_irq_uninstall(dev_priv->dev);
4657 intel_hpd_cancel_work(dev_priv);
4658 dev_priv->pm.irqs_enabled = false;
4659}
4660
Daniel Vetterfca52a52014-09-30 10:56:45 +02004661/**
4662 * intel_runtime_pm_disable_interrupts - runtime interrupt disabling
4663 * @dev_priv: i915 device instance
4664 *
4665 * This function is used to disable interrupts at runtime, both in the runtime
4666 * pm and the system suspend/resume code.
4667 */
Daniel Vetterb9632912014-09-30 10:56:44 +02004668void intel_runtime_pm_disable_interrupts(struct drm_i915_private *dev_priv)
Paulo Zanonic67a4702013-08-19 13:18:09 -03004669{
Daniel Vetterb9632912014-09-30 10:56:44 +02004670 dev_priv->dev->driver->irq_uninstall(dev_priv->dev);
Daniel Vetter2aeb7d32014-09-30 10:56:43 +02004671 dev_priv->pm.irqs_enabled = false;
Imre Deak2dd2a882015-02-24 11:14:30 +02004672 synchronize_irq(dev_priv->dev->irq);
Paulo Zanonic67a4702013-08-19 13:18:09 -03004673}
4674
Daniel Vetterfca52a52014-09-30 10:56:45 +02004675/**
4676 * intel_runtime_pm_enable_interrupts - runtime interrupt enabling
4677 * @dev_priv: i915 device instance
4678 *
4679 * This function is used to enable interrupts at runtime, both in the runtime
4680 * pm and the system suspend/resume code.
4681 */
Daniel Vetterb9632912014-09-30 10:56:44 +02004682void intel_runtime_pm_enable_interrupts(struct drm_i915_private *dev_priv)
Paulo Zanonic67a4702013-08-19 13:18:09 -03004683{
Daniel Vetter2aeb7d32014-09-30 10:56:43 +02004684 dev_priv->pm.irqs_enabled = true;
Daniel Vetterb9632912014-09-30 10:56:44 +02004685 dev_priv->dev->driver->irq_preinstall(dev_priv->dev);
4686 dev_priv->dev->driver->irq_postinstall(dev_priv->dev);
Paulo Zanonic67a4702013-08-19 13:18:09 -03004687}