blob: ecd06d301d8bd755a0b1e4ddb9f9e3ea66d600f6 [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);
Sagar Arun Kamble26705e22016-10-12 21:54:31 +0530173static void gen9_guc_irq_handler(struct drm_i915_private *dev_priv, u32 pm_iir);
Imre Deakc9a9a262014-11-05 20:48:37 +0200174
Egbert Eich0706f172015-09-23 16:15:27 +0200175/* For display hotplug interrupt */
176static inline void
177i915_hotplug_interrupt_update_locked(struct drm_i915_private *dev_priv,
178 uint32_t mask,
179 uint32_t bits)
180{
181 uint32_t val;
182
183 assert_spin_locked(&dev_priv->irq_lock);
184 WARN_ON(bits & ~mask);
185
186 val = I915_READ(PORT_HOTPLUG_EN);
187 val &= ~mask;
188 val |= bits;
189 I915_WRITE(PORT_HOTPLUG_EN, val);
190}
191
192/**
193 * i915_hotplug_interrupt_update - update hotplug interrupt enable
194 * @dev_priv: driver private
195 * @mask: bits to update
196 * @bits: bits to enable
197 * NOTE: the HPD enable bits are modified both inside and outside
198 * of an interrupt context. To avoid that read-modify-write cycles
199 * interfer, these bits are protected by a spinlock. Since this
200 * function is usually not called from a context where the lock is
201 * held already, this function acquires the lock itself. A non-locking
202 * version is also available.
203 */
204void i915_hotplug_interrupt_update(struct drm_i915_private *dev_priv,
205 uint32_t mask,
206 uint32_t bits)
207{
208 spin_lock_irq(&dev_priv->irq_lock);
209 i915_hotplug_interrupt_update_locked(dev_priv, mask, bits);
210 spin_unlock_irq(&dev_priv->irq_lock);
211}
212
Ville Syrjäläd9dc34f12015-08-27 23:55:58 +0300213/**
214 * ilk_update_display_irq - update DEIMR
215 * @dev_priv: driver private
216 * @interrupt_mask: mask of interrupt bits to update
217 * @enabled_irq_mask: mask of interrupt bits to enable
218 */
Ville Syrjäläfbdedaea2015-11-23 18:06:16 +0200219void ilk_update_display_irq(struct drm_i915_private *dev_priv,
220 uint32_t interrupt_mask,
221 uint32_t enabled_irq_mask)
Zhenyu Wang036a4a72009-06-08 14:40:19 +0800222{
Ville Syrjäläd9dc34f12015-08-27 23:55:58 +0300223 uint32_t new_val;
224
Daniel Vetter4bc9d432013-06-27 13:44:58 +0200225 assert_spin_locked(&dev_priv->irq_lock);
226
Ville Syrjäläd9dc34f12015-08-27 23:55:58 +0300227 WARN_ON(enabled_irq_mask & ~interrupt_mask);
228
Jesse Barnes9df7575f2014-06-20 09:29:20 -0700229 if (WARN_ON(!intel_irqs_enabled(dev_priv)))
Paulo Zanonic67a4702013-08-19 13:18:09 -0300230 return;
Paulo Zanonic67a4702013-08-19 13:18:09 -0300231
Ville Syrjäläd9dc34f12015-08-27 23:55:58 +0300232 new_val = dev_priv->irq_mask;
233 new_val &= ~interrupt_mask;
234 new_val |= (~enabled_irq_mask & interrupt_mask);
235
236 if (new_val != dev_priv->irq_mask) {
237 dev_priv->irq_mask = new_val;
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000238 I915_WRITE(DEIMR, dev_priv->irq_mask);
Chris Wilson3143a2b2010-11-16 15:55:10 +0000239 POSTING_READ(DEIMR);
Zhenyu Wang036a4a72009-06-08 14:40:19 +0800240 }
241}
242
Paulo Zanoni43eaea12013-08-06 18:57:12 -0300243/**
244 * ilk_update_gt_irq - update GTIMR
245 * @dev_priv: driver private
246 * @interrupt_mask: mask of interrupt bits to update
247 * @enabled_irq_mask: mask of interrupt bits to enable
248 */
249static void ilk_update_gt_irq(struct drm_i915_private *dev_priv,
250 uint32_t interrupt_mask,
251 uint32_t enabled_irq_mask)
252{
253 assert_spin_locked(&dev_priv->irq_lock);
254
Daniel Vetter15a17aa2014-12-08 16:30:00 +0100255 WARN_ON(enabled_irq_mask & ~interrupt_mask);
256
Jesse Barnes9df7575f2014-06-20 09:29:20 -0700257 if (WARN_ON(!intel_irqs_enabled(dev_priv)))
Paulo Zanonic67a4702013-08-19 13:18:09 -0300258 return;
Paulo Zanonic67a4702013-08-19 13:18:09 -0300259
Paulo Zanoni43eaea12013-08-06 18:57:12 -0300260 dev_priv->gt_irq_mask &= ~interrupt_mask;
261 dev_priv->gt_irq_mask |= (~enabled_irq_mask & interrupt_mask);
262 I915_WRITE(GTIMR, dev_priv->gt_irq_mask);
Paulo Zanoni43eaea12013-08-06 18:57:12 -0300263}
264
Daniel Vetter480c8032014-07-16 09:49:40 +0200265void gen5_enable_gt_irq(struct drm_i915_private *dev_priv, uint32_t mask)
Paulo Zanoni43eaea12013-08-06 18:57:12 -0300266{
267 ilk_update_gt_irq(dev_priv, mask, mask);
Chris Wilson31bb59c2016-07-01 17:23:27 +0100268 POSTING_READ_FW(GTIMR);
Paulo Zanoni43eaea12013-08-06 18:57:12 -0300269}
270
Daniel Vetter480c8032014-07-16 09:49:40 +0200271void gen5_disable_gt_irq(struct drm_i915_private *dev_priv, uint32_t mask)
Paulo Zanoni43eaea12013-08-06 18:57:12 -0300272{
273 ilk_update_gt_irq(dev_priv, mask, 0);
274}
275
Ville Syrjäläf0f59a02015-11-18 15:33:26 +0200276static i915_reg_t gen6_pm_iir(struct drm_i915_private *dev_priv)
Imre Deakb900b942014-11-05 20:48:48 +0200277{
278 return INTEL_INFO(dev_priv)->gen >= 8 ? GEN8_GT_IIR(2) : GEN6_PMIIR;
279}
280
Ville Syrjäläf0f59a02015-11-18 15:33:26 +0200281static i915_reg_t gen6_pm_imr(struct drm_i915_private *dev_priv)
Imre Deaka72fbc32014-11-05 20:48:31 +0200282{
283 return INTEL_INFO(dev_priv)->gen >= 8 ? GEN8_GT_IMR(2) : GEN6_PMIMR;
284}
285
Ville Syrjäläf0f59a02015-11-18 15:33:26 +0200286static i915_reg_t gen6_pm_ier(struct drm_i915_private *dev_priv)
Imre Deakb900b942014-11-05 20:48:48 +0200287{
288 return INTEL_INFO(dev_priv)->gen >= 8 ? GEN8_GT_IER(2) : GEN6_PMIER;
289}
290
Paulo Zanoniedbfdb42013-08-06 18:57:13 -0300291/**
Ville Syrjälä81fd8742015-11-25 16:21:30 +0200292 * snb_update_pm_irq - update GEN6_PMIMR
293 * @dev_priv: driver private
294 * @interrupt_mask: mask of interrupt bits to update
295 * @enabled_irq_mask: mask of interrupt bits to enable
296 */
Paulo Zanoniedbfdb42013-08-06 18:57:13 -0300297static void snb_update_pm_irq(struct drm_i915_private *dev_priv,
298 uint32_t interrupt_mask,
299 uint32_t enabled_irq_mask)
300{
Paulo Zanoni605cd252013-08-06 18:57:15 -0300301 uint32_t new_val;
Paulo Zanoniedbfdb42013-08-06 18:57:13 -0300302
Daniel Vetter15a17aa2014-12-08 16:30:00 +0100303 WARN_ON(enabled_irq_mask & ~interrupt_mask);
304
Paulo Zanoniedbfdb42013-08-06 18:57:13 -0300305 assert_spin_locked(&dev_priv->irq_lock);
306
Akash Goelf4e9af42016-10-12 21:54:30 +0530307 new_val = dev_priv->pm_imr;
Paulo Zanonif52ecbc2013-08-06 18:57:14 -0300308 new_val &= ~interrupt_mask;
309 new_val |= (~enabled_irq_mask & interrupt_mask);
310
Akash Goelf4e9af42016-10-12 21:54:30 +0530311 if (new_val != dev_priv->pm_imr) {
312 dev_priv->pm_imr = new_val;
313 I915_WRITE(gen6_pm_imr(dev_priv), dev_priv->pm_imr);
Imre Deaka72fbc32014-11-05 20:48:31 +0200314 POSTING_READ(gen6_pm_imr(dev_priv));
Paulo Zanonif52ecbc2013-08-06 18:57:14 -0300315 }
Paulo Zanoniedbfdb42013-08-06 18:57:13 -0300316}
317
Akash Goelf4e9af42016-10-12 21:54:30 +0530318void gen6_unmask_pm_irq(struct drm_i915_private *dev_priv, u32 mask)
Paulo Zanoniedbfdb42013-08-06 18:57:13 -0300319{
Imre Deak9939fba2014-11-20 23:01:47 +0200320 if (WARN_ON(!intel_irqs_enabled(dev_priv)))
321 return;
322
Paulo Zanoniedbfdb42013-08-06 18:57:13 -0300323 snb_update_pm_irq(dev_priv, mask, mask);
324}
325
Akash Goelf4e9af42016-10-12 21:54:30 +0530326static void __gen6_mask_pm_irq(struct drm_i915_private *dev_priv, u32 mask)
Imre Deak9939fba2014-11-20 23:01:47 +0200327{
328 snb_update_pm_irq(dev_priv, mask, 0);
329}
330
Akash Goelf4e9af42016-10-12 21:54:30 +0530331void gen6_mask_pm_irq(struct drm_i915_private *dev_priv, u32 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
Akash Goelf4e9af42016-10-12 21:54:30 +0530336 __gen6_mask_pm_irq(dev_priv, mask);
337}
338
339void gen6_reset_pm_iir(struct drm_i915_private *dev_priv, u32 reset_mask)
340{
341 i915_reg_t reg = gen6_pm_iir(dev_priv);
342
343 assert_spin_locked(&dev_priv->irq_lock);
344
345 I915_WRITE(reg, reset_mask);
346 I915_WRITE(reg, reset_mask);
347 POSTING_READ(reg);
348}
349
350void gen6_enable_pm_irq(struct drm_i915_private *dev_priv, u32 enable_mask)
351{
352 assert_spin_locked(&dev_priv->irq_lock);
353
354 dev_priv->pm_ier |= enable_mask;
355 I915_WRITE(gen6_pm_ier(dev_priv), dev_priv->pm_ier);
356 gen6_unmask_pm_irq(dev_priv, enable_mask);
357 /* unmask_pm_irq provides an implicit barrier (POSTING_READ) */
358}
359
360void gen6_disable_pm_irq(struct drm_i915_private *dev_priv, u32 disable_mask)
361{
362 assert_spin_locked(&dev_priv->irq_lock);
363
364 dev_priv->pm_ier &= ~disable_mask;
365 __gen6_mask_pm_irq(dev_priv, disable_mask);
366 I915_WRITE(gen6_pm_ier(dev_priv), dev_priv->pm_ier);
367 /* though a barrier is missing here, but don't really need a one */
Paulo Zanoniedbfdb42013-08-06 18:57:13 -0300368}
369
Chris Wilsondc979972016-05-10 14:10:04 +0100370void gen6_reset_rps_interrupts(struct drm_i915_private *dev_priv)
Imre Deak3cc134e2014-11-19 15:30:03 +0200371{
Imre Deak3cc134e2014-11-19 15:30:03 +0200372 spin_lock_irq(&dev_priv->irq_lock);
Akash Goelf4e9af42016-10-12 21:54:30 +0530373 gen6_reset_pm_iir(dev_priv, dev_priv->pm_rps_events);
Imre Deak096fad92015-03-23 19:11:35 +0200374 dev_priv->rps.pm_iir = 0;
Imre Deak3cc134e2014-11-19 15:30:03 +0200375 spin_unlock_irq(&dev_priv->irq_lock);
376}
377
Tvrtko Ursulin91d14252016-05-06 14:48:28 +0100378void gen6_enable_rps_interrupts(struct drm_i915_private *dev_priv)
Imre Deakb900b942014-11-05 20:48:48 +0200379{
Chris Wilsonf2a91d12016-09-21 14:51:06 +0100380 if (READ_ONCE(dev_priv->rps.interrupts_enabled))
381 return;
382
Imre Deakb900b942014-11-05 20:48:48 +0200383 spin_lock_irq(&dev_priv->irq_lock);
Chris Wilsonc33d2472016-07-04 08:08:36 +0100384 WARN_ON_ONCE(dev_priv->rps.pm_iir);
385 WARN_ON_ONCE(I915_READ(gen6_pm_iir(dev_priv)) & dev_priv->pm_rps_events);
Imre Deakd4d70aa2014-11-19 15:30:04 +0200386 dev_priv->rps.interrupts_enabled = true;
Imre Deakb900b942014-11-05 20:48:48 +0200387 gen6_enable_pm_irq(dev_priv, dev_priv->pm_rps_events);
Imre Deak78e68d32014-12-15 18:59:27 +0200388
Imre Deakb900b942014-11-05 20:48:48 +0200389 spin_unlock_irq(&dev_priv->irq_lock);
390}
391
Imre Deak59d02a12014-12-19 19:33:26 +0200392u32 gen6_sanitize_rps_pm_mask(struct drm_i915_private *dev_priv, u32 mask)
393{
Sagar Arun Kamble1800ad22016-05-31 13:58:27 +0530394 return (mask & ~dev_priv->rps.pm_intr_keep);
Imre Deak59d02a12014-12-19 19:33:26 +0200395}
396
Tvrtko Ursulin91d14252016-05-06 14:48:28 +0100397void gen6_disable_rps_interrupts(struct drm_i915_private *dev_priv)
Imre Deakb900b942014-11-05 20:48:48 +0200398{
Chris Wilsonf2a91d12016-09-21 14:51:06 +0100399 if (!READ_ONCE(dev_priv->rps.interrupts_enabled))
400 return;
401
Imre Deakd4d70aa2014-11-19 15:30:04 +0200402 spin_lock_irq(&dev_priv->irq_lock);
403 dev_priv->rps.interrupts_enabled = false;
Imre Deak9939fba2014-11-20 23:01:47 +0200404
Dave Gordonb20e3cf2016-09-12 21:19:35 +0100405 I915_WRITE(GEN6_PMINTRMSK, gen6_sanitize_rps_pm_mask(dev_priv, ~0u));
Imre Deak9939fba2014-11-20 23:01:47 +0200406
Akash Goelf4e9af42016-10-12 21:54:30 +0530407 gen6_disable_pm_irq(dev_priv, dev_priv->pm_rps_events);
Imre Deak58072cc2015-03-23 19:11:34 +0200408
409 spin_unlock_irq(&dev_priv->irq_lock);
Chris Wilson91c8a322016-07-05 10:40:23 +0100410 synchronize_irq(dev_priv->drm.irq);
Chris Wilsonc33d2472016-07-04 08:08:36 +0100411
412 /* Now that we will not be generating any more work, flush any
413 * outsanding tasks. As we are called on the RPS idle path,
414 * we will reset the GPU to minimum frequencies, so the current
415 * state of the worker can be discarded.
416 */
417 cancel_work_sync(&dev_priv->rps.work);
418 gen6_reset_rps_interrupts(dev_priv);
Imre Deakb900b942014-11-05 20:48:48 +0200419}
420
Sagar Arun Kamble26705e22016-10-12 21:54:31 +0530421void gen9_reset_guc_interrupts(struct drm_i915_private *dev_priv)
422{
423 spin_lock_irq(&dev_priv->irq_lock);
424 gen6_reset_pm_iir(dev_priv, dev_priv->pm_guc_events);
425 spin_unlock_irq(&dev_priv->irq_lock);
426}
427
428void gen9_enable_guc_interrupts(struct drm_i915_private *dev_priv)
429{
430 spin_lock_irq(&dev_priv->irq_lock);
431 if (!dev_priv->guc.interrupts_enabled) {
432 WARN_ON_ONCE(I915_READ(gen6_pm_iir(dev_priv)) &
433 dev_priv->pm_guc_events);
434 dev_priv->guc.interrupts_enabled = true;
435 gen6_enable_pm_irq(dev_priv, dev_priv->pm_guc_events);
436 }
437 spin_unlock_irq(&dev_priv->irq_lock);
438}
439
440void gen9_disable_guc_interrupts(struct drm_i915_private *dev_priv)
441{
442 spin_lock_irq(&dev_priv->irq_lock);
443 dev_priv->guc.interrupts_enabled = false;
444
445 gen6_disable_pm_irq(dev_priv, dev_priv->pm_guc_events);
446
447 spin_unlock_irq(&dev_priv->irq_lock);
448 synchronize_irq(dev_priv->drm.irq);
449
450 gen9_reset_guc_interrupts(dev_priv);
451}
452
Ben Widawsky09610212014-05-15 20:58:08 +0300453/**
Ville Syrjälä81fd8742015-11-25 16:21:30 +0200454 * bdw_update_port_irq - update DE port interrupt
455 * @dev_priv: driver private
456 * @interrupt_mask: mask of interrupt bits to update
457 * @enabled_irq_mask: mask of interrupt bits to enable
458 */
Ville Syrjälä3a3b3c72015-08-27 23:56:06 +0300459static void bdw_update_port_irq(struct drm_i915_private *dev_priv,
460 uint32_t interrupt_mask,
461 uint32_t enabled_irq_mask)
462{
463 uint32_t new_val;
464 uint32_t old_val;
465
466 assert_spin_locked(&dev_priv->irq_lock);
467
468 WARN_ON(enabled_irq_mask & ~interrupt_mask);
469
470 if (WARN_ON(!intel_irqs_enabled(dev_priv)))
471 return;
472
473 old_val = I915_READ(GEN8_DE_PORT_IMR);
474
475 new_val = old_val;
476 new_val &= ~interrupt_mask;
477 new_val |= (~enabled_irq_mask & interrupt_mask);
478
479 if (new_val != old_val) {
480 I915_WRITE(GEN8_DE_PORT_IMR, new_val);
481 POSTING_READ(GEN8_DE_PORT_IMR);
482 }
483}
484
485/**
Ville Syrjälä013d3752015-11-23 18:06:17 +0200486 * bdw_update_pipe_irq - update DE pipe interrupt
487 * @dev_priv: driver private
488 * @pipe: pipe whose interrupt to update
489 * @interrupt_mask: mask of interrupt bits to update
490 * @enabled_irq_mask: mask of interrupt bits to enable
491 */
492void bdw_update_pipe_irq(struct drm_i915_private *dev_priv,
493 enum pipe pipe,
494 uint32_t interrupt_mask,
495 uint32_t enabled_irq_mask)
496{
497 uint32_t new_val;
498
499 assert_spin_locked(&dev_priv->irq_lock);
500
501 WARN_ON(enabled_irq_mask & ~interrupt_mask);
502
503 if (WARN_ON(!intel_irqs_enabled(dev_priv)))
504 return;
505
506 new_val = dev_priv->de_irq_mask[pipe];
507 new_val &= ~interrupt_mask;
508 new_val |= (~enabled_irq_mask & interrupt_mask);
509
510 if (new_val != dev_priv->de_irq_mask[pipe]) {
511 dev_priv->de_irq_mask[pipe] = new_val;
512 I915_WRITE(GEN8_DE_PIPE_IMR(pipe), dev_priv->de_irq_mask[pipe]);
513 POSTING_READ(GEN8_DE_PIPE_IMR(pipe));
514 }
515}
516
517/**
Daniel Vetterfee884e2013-07-04 23:35:21 +0200518 * ibx_display_interrupt_update - update SDEIMR
519 * @dev_priv: driver private
520 * @interrupt_mask: mask of interrupt bits to update
521 * @enabled_irq_mask: mask of interrupt bits to enable
522 */
Daniel Vetter47339cd2014-09-30 10:56:46 +0200523void ibx_display_interrupt_update(struct drm_i915_private *dev_priv,
524 uint32_t interrupt_mask,
525 uint32_t enabled_irq_mask)
Daniel Vetterfee884e2013-07-04 23:35:21 +0200526{
527 uint32_t sdeimr = I915_READ(SDEIMR);
528 sdeimr &= ~interrupt_mask;
529 sdeimr |= (~enabled_irq_mask & interrupt_mask);
530
Daniel Vetter15a17aa2014-12-08 16:30:00 +0100531 WARN_ON(enabled_irq_mask & ~interrupt_mask);
532
Daniel Vetterfee884e2013-07-04 23:35:21 +0200533 assert_spin_locked(&dev_priv->irq_lock);
534
Jesse Barnes9df7575f2014-06-20 09:29:20 -0700535 if (WARN_ON(!intel_irqs_enabled(dev_priv)))
Paulo Zanonic67a4702013-08-19 13:18:09 -0300536 return;
Paulo Zanonic67a4702013-08-19 13:18:09 -0300537
Daniel Vetterfee884e2013-07-04 23:35:21 +0200538 I915_WRITE(SDEIMR, sdeimr);
539 POSTING_READ(SDEIMR);
540}
Paulo Zanoni86642812013-04-12 17:57:57 -0300541
Daniel Vetterb5ea6422014-03-02 21:18:00 +0100542static void
Imre Deak755e9012014-02-10 18:42:47 +0200543__i915_enable_pipestat(struct drm_i915_private *dev_priv, enum pipe pipe,
544 u32 enable_mask, u32 status_mask)
Keith Packard7c463582008-11-04 02:03:27 -0800545{
Ville Syrjäläf0f59a02015-11-18 15:33:26 +0200546 i915_reg_t reg = PIPESTAT(pipe);
Imre Deak755e9012014-02-10 18:42:47 +0200547 u32 pipestat = I915_READ(reg) & PIPESTAT_INT_ENABLE_MASK;
Keith Packard7c463582008-11-04 02:03:27 -0800548
Daniel Vetterb79480b2013-06-27 17:52:10 +0200549 assert_spin_locked(&dev_priv->irq_lock);
Daniel Vetterd518ce52014-08-27 10:43:37 +0200550 WARN_ON(!intel_irqs_enabled(dev_priv));
Daniel Vetterb79480b2013-06-27 17:52:10 +0200551
Ville Syrjälä04feced2014-04-03 13:28:33 +0300552 if (WARN_ONCE(enable_mask & ~PIPESTAT_INT_ENABLE_MASK ||
553 status_mask & ~PIPESTAT_INT_STATUS_MASK,
554 "pipe %c: enable_mask=0x%x, status_mask=0x%x\n",
555 pipe_name(pipe), enable_mask, status_mask))
Imre Deak755e9012014-02-10 18:42:47 +0200556 return;
557
558 if ((pipestat & enable_mask) == enable_mask)
Ville Syrjälä46c06a32013-02-20 21:16:18 +0200559 return;
560
Imre Deak91d181d2014-02-10 18:42:49 +0200561 dev_priv->pipestat_irq_mask[pipe] |= status_mask;
562
Ville Syrjälä46c06a32013-02-20 21:16:18 +0200563 /* Enable the interrupt, clear any pending status */
Imre Deak755e9012014-02-10 18:42:47 +0200564 pipestat |= enable_mask | status_mask;
Ville Syrjälä46c06a32013-02-20 21:16:18 +0200565 I915_WRITE(reg, pipestat);
566 POSTING_READ(reg);
Keith Packard7c463582008-11-04 02:03:27 -0800567}
568
Daniel Vetterb5ea6422014-03-02 21:18:00 +0100569static void
Imre Deak755e9012014-02-10 18:42:47 +0200570__i915_disable_pipestat(struct drm_i915_private *dev_priv, enum pipe pipe,
571 u32 enable_mask, u32 status_mask)
Keith Packard7c463582008-11-04 02:03:27 -0800572{
Ville Syrjäläf0f59a02015-11-18 15:33:26 +0200573 i915_reg_t reg = PIPESTAT(pipe);
Imre Deak755e9012014-02-10 18:42:47 +0200574 u32 pipestat = I915_READ(reg) & PIPESTAT_INT_ENABLE_MASK;
Keith Packard7c463582008-11-04 02:03:27 -0800575
Daniel Vetterb79480b2013-06-27 17:52:10 +0200576 assert_spin_locked(&dev_priv->irq_lock);
Daniel Vetterd518ce52014-08-27 10:43:37 +0200577 WARN_ON(!intel_irqs_enabled(dev_priv));
Daniel Vetterb79480b2013-06-27 17:52:10 +0200578
Ville Syrjälä04feced2014-04-03 13:28:33 +0300579 if (WARN_ONCE(enable_mask & ~PIPESTAT_INT_ENABLE_MASK ||
580 status_mask & ~PIPESTAT_INT_STATUS_MASK,
581 "pipe %c: enable_mask=0x%x, status_mask=0x%x\n",
582 pipe_name(pipe), enable_mask, status_mask))
Ville Syrjälä46c06a32013-02-20 21:16:18 +0200583 return;
584
Imre Deak755e9012014-02-10 18:42:47 +0200585 if ((pipestat & enable_mask) == 0)
586 return;
587
Imre Deak91d181d2014-02-10 18:42:49 +0200588 dev_priv->pipestat_irq_mask[pipe] &= ~status_mask;
589
Imre Deak755e9012014-02-10 18:42:47 +0200590 pipestat &= ~enable_mask;
Ville Syrjälä46c06a32013-02-20 21:16:18 +0200591 I915_WRITE(reg, pipestat);
592 POSTING_READ(reg);
Keith Packard7c463582008-11-04 02:03:27 -0800593}
594
Imre Deak10c59c52014-02-10 18:42:48 +0200595static u32 vlv_get_pipestat_enable_mask(struct drm_device *dev, u32 status_mask)
596{
597 u32 enable_mask = status_mask << 16;
598
599 /*
Ville Syrjälä724a6902014-04-09 13:28:48 +0300600 * On pipe A we don't support the PSR interrupt yet,
601 * on pipe B and C the same bit MBZ.
Imre Deak10c59c52014-02-10 18:42:48 +0200602 */
603 if (WARN_ON_ONCE(status_mask & PIPE_A_PSR_STATUS_VLV))
604 return 0;
Ville Syrjälä724a6902014-04-09 13:28:48 +0300605 /*
606 * On pipe B and C we don't support the PSR interrupt yet, on pipe
607 * A the same bit is for perf counters which we don't use either.
608 */
609 if (WARN_ON_ONCE(status_mask & PIPE_B_PSR_STATUS_VLV))
610 return 0;
Imre Deak10c59c52014-02-10 18:42:48 +0200611
612 enable_mask &= ~(PIPE_FIFO_UNDERRUN_STATUS |
613 SPRITE0_FLIP_DONE_INT_EN_VLV |
614 SPRITE1_FLIP_DONE_INT_EN_VLV);
615 if (status_mask & SPRITE0_FLIP_DONE_INT_STATUS_VLV)
616 enable_mask |= SPRITE0_FLIP_DONE_INT_EN_VLV;
617 if (status_mask & SPRITE1_FLIP_DONE_INT_STATUS_VLV)
618 enable_mask |= SPRITE1_FLIP_DONE_INT_EN_VLV;
619
620 return enable_mask;
621}
622
Imre Deak755e9012014-02-10 18:42:47 +0200623void
624i915_enable_pipestat(struct drm_i915_private *dev_priv, enum pipe pipe,
625 u32 status_mask)
626{
627 u32 enable_mask;
628
Wayne Boyer666a4532015-12-09 12:29:35 -0800629 if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv))
Chris Wilson91c8a322016-07-05 10:40:23 +0100630 enable_mask = vlv_get_pipestat_enable_mask(&dev_priv->drm,
Imre Deak10c59c52014-02-10 18:42:48 +0200631 status_mask);
632 else
633 enable_mask = status_mask << 16;
Imre Deak755e9012014-02-10 18:42:47 +0200634 __i915_enable_pipestat(dev_priv, pipe, enable_mask, status_mask);
635}
636
637void
638i915_disable_pipestat(struct drm_i915_private *dev_priv, enum pipe pipe,
639 u32 status_mask)
640{
641 u32 enable_mask;
642
Wayne Boyer666a4532015-12-09 12:29:35 -0800643 if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv))
Chris Wilson91c8a322016-07-05 10:40:23 +0100644 enable_mask = vlv_get_pipestat_enable_mask(&dev_priv->drm,
Imre Deak10c59c52014-02-10 18:42:48 +0200645 status_mask);
646 else
647 enable_mask = status_mask << 16;
Imre Deak755e9012014-02-10 18:42:47 +0200648 __i915_disable_pipestat(dev_priv, pipe, enable_mask, status_mask);
649}
650
=?utf-8?q?Michel_D=C3=A4nzer?=a6b54f32006-10-24 23:37:43 +1000651/**
Jani Nikulaf49e38d2013-04-29 13:02:54 +0300652 * i915_enable_asle_pipestat - enable ASLE pipestat for OpRegion
Tvrtko Ursulin14bb2c12016-06-03 14:02:17 +0100653 * @dev_priv: i915 device private
Zhao Yakui01c66882009-10-28 05:10:00 +0000654 */
Tvrtko Ursulin91d14252016-05-06 14:48:28 +0100655static void i915_enable_asle_pipestat(struct drm_i915_private *dev_priv)
Zhao Yakui01c66882009-10-28 05:10:00 +0000656{
Tvrtko Ursulin91d14252016-05-06 14:48:28 +0100657 if (!dev_priv->opregion.asle || !IS_MOBILE(dev_priv))
Jani Nikulaf49e38d2013-04-29 13:02:54 +0300658 return;
659
Daniel Vetter13321782014-09-15 14:55:29 +0200660 spin_lock_irq(&dev_priv->irq_lock);
Zhao Yakui01c66882009-10-28 05:10:00 +0000661
Imre Deak755e9012014-02-10 18:42:47 +0200662 i915_enable_pipestat(dev_priv, PIPE_B, PIPE_LEGACY_BLC_EVENT_STATUS);
Tvrtko Ursulin91d14252016-05-06 14:48:28 +0100663 if (INTEL_GEN(dev_priv) >= 4)
Daniel Vetter3b6c42e2013-10-21 18:04:35 +0200664 i915_enable_pipestat(dev_priv, PIPE_A,
Imre Deak755e9012014-02-10 18:42:47 +0200665 PIPE_LEGACY_BLC_EVENT_STATUS);
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000666
Daniel Vetter13321782014-09-15 14:55:29 +0200667 spin_unlock_irq(&dev_priv->irq_lock);
Zhao Yakui01c66882009-10-28 05:10:00 +0000668}
669
Ville Syrjäläf75f3742014-05-15 20:20:36 +0300670/*
671 * This timing diagram depicts the video signal in and
672 * around the vertical blanking period.
673 *
674 * Assumptions about the fictitious mode used in this example:
675 * vblank_start >= 3
676 * vsync_start = vblank_start + 1
677 * vsync_end = vblank_start + 2
678 * vtotal = vblank_start + 3
679 *
680 * start of vblank:
681 * latch double buffered registers
682 * increment frame counter (ctg+)
683 * generate start of vblank interrupt (gen4+)
684 * |
685 * | frame start:
686 * | generate frame start interrupt (aka. vblank interrupt) (gmch)
687 * | may be shifted forward 1-3 extra lines via PIPECONF
688 * | |
689 * | | start of vsync:
690 * | | generate vsync interrupt
691 * | | |
692 * ___xxxx___ ___xxxx___ ___xxxx___ ___xxxx___ ___xxxx___ ___xxxx
693 * . \hs/ . \hs/ \hs/ \hs/ . \hs/
694 * ----va---> <-----------------vb--------------------> <--------va-------------
695 * | | <----vs-----> |
696 * -vbs-----> <---vbs+1---> <---vbs+2---> <-----0-----> <-----1-----> <-----2--- (scanline counter gen2)
697 * -vbs-2---> <---vbs-1---> <---vbs-----> <---vbs+1---> <---vbs+2---> <-----0--- (scanline counter gen3+)
698 * -vbs-2---> <---vbs-2---> <---vbs-1---> <---vbs-----> <---vbs+1---> <---vbs+2- (scanline counter hsw+ hdmi)
699 * | | |
700 * last visible pixel first visible pixel
701 * | increment frame counter (gen3/4)
702 * pixel counter = vblank_start * htotal pixel counter = 0 (gen3/4)
703 *
704 * x = horizontal active
705 * _ = horizontal blanking
706 * hs = horizontal sync
707 * va = vertical active
708 * vb = vertical blanking
709 * vs = vertical sync
710 * vbs = vblank_start (number)
711 *
712 * Summary:
713 * - most events happen at the start of horizontal sync
714 * - frame start happens at the start of horizontal blank, 1-4 lines
715 * (depending on PIPECONF settings) after the start of vblank
716 * - gen3/4 pixel and frame counter are synchronized with the start
717 * of horizontal active on the first line of vertical active
718 */
719
Keith Packard42f52ef2008-10-18 19:39:29 -0700720/* Called from drm generic code, passed a 'crtc', which
721 * we use as a pipe index
722 */
Thierry Reding88e72712015-09-24 18:35:31 +0200723static u32 i915_get_vblank_counter(struct drm_device *dev, unsigned int pipe)
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700724{
Chris Wilsonfac5e232016-07-04 11:34:36 +0100725 struct drm_i915_private *dev_priv = to_i915(dev);
Ville Syrjäläf0f59a02015-11-18 15:33:26 +0200726 i915_reg_t high_frame, low_frame;
Ville Syrjälä0b2a8e02014-04-29 13:35:50 +0300727 u32 high1, high2, low, pixel, vbl_start, hsync_start, htotal;
Ville Syrjälä98187832016-10-31 22:37:10 +0200728 struct intel_crtc *intel_crtc = intel_get_crtc_for_pipe(dev_priv,
729 pipe);
Maarten Lankhorstfc467a222015-06-01 12:50:07 +0200730 const struct drm_display_mode *mode = &intel_crtc->base.hwmode;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700731
Daniel Vetterf3a5c3f2015-02-13 21:03:44 +0100732 htotal = mode->crtc_htotal;
733 hsync_start = mode->crtc_hsync_start;
734 vbl_start = mode->crtc_vblank_start;
735 if (mode->flags & DRM_MODE_FLAG_INTERLACE)
736 vbl_start = DIV_ROUND_UP(vbl_start, 2);
Ville Syrjälä391f75e2013-09-25 19:55:26 +0300737
Ville Syrjälä0b2a8e02014-04-29 13:35:50 +0300738 /* Convert to pixel count */
739 vbl_start *= htotal;
740
741 /* Start of vblank event occurs at start of hsync */
742 vbl_start -= htotal - hsync_start;
743
Jesse Barnes9db4a9c2011-02-07 12:26:52 -0800744 high_frame = PIPEFRAME(pipe);
745 low_frame = PIPEFRAMEPIXEL(pipe);
Chris Wilson5eddb702010-09-11 13:48:45 +0100746
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700747 /*
748 * High & low register fields aren't synchronized, so make sure
749 * we get a low value that's stable across two reads of the high
750 * register.
751 */
752 do {
Chris Wilson5eddb702010-09-11 13:48:45 +0100753 high1 = I915_READ(high_frame) & PIPE_FRAME_HIGH_MASK;
Ville Syrjälä391f75e2013-09-25 19:55:26 +0300754 low = I915_READ(low_frame);
Chris Wilson5eddb702010-09-11 13:48:45 +0100755 high2 = I915_READ(high_frame) & PIPE_FRAME_HIGH_MASK;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700756 } while (high1 != high2);
757
Chris Wilson5eddb702010-09-11 13:48:45 +0100758 high1 >>= PIPE_FRAME_HIGH_SHIFT;
Ville Syrjälä391f75e2013-09-25 19:55:26 +0300759 pixel = low & PIPE_PIXEL_MASK;
Chris Wilson5eddb702010-09-11 13:48:45 +0100760 low >>= PIPE_FRAME_LOW_SHIFT;
Ville Syrjälä391f75e2013-09-25 19:55:26 +0300761
762 /*
763 * The frame counter increments at beginning of active.
764 * Cook up a vblank counter by also checking the pixel
765 * counter against vblank start.
766 */
Ville Syrjäläedc08d02013-11-06 13:56:27 -0200767 return (((high1 << 8) | low) + (pixel >= vbl_start)) & 0xffffff;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700768}
769
Dave Airlie974e59b2015-10-30 09:45:33 +1000770static u32 g4x_get_vblank_counter(struct drm_device *dev, unsigned int pipe)
Jesse Barnes9880b7a2009-02-06 10:22:41 -0800771{
Chris Wilsonfac5e232016-07-04 11:34:36 +0100772 struct drm_i915_private *dev_priv = to_i915(dev);
Jesse Barnes9880b7a2009-02-06 10:22:41 -0800773
Ville Syrjälä649636e2015-09-22 19:50:01 +0300774 return I915_READ(PIPE_FRMCOUNT_G4X(pipe));
Jesse Barnes9880b7a2009-02-06 10:22:41 -0800775}
776
Ville Syrjälä75aa3f62015-10-22 15:34:56 +0300777/* I915_READ_FW, only for fast reads of display block, no need for forcewake etc. */
Ville Syrjäläa225f072014-04-29 13:35:45 +0300778static int __intel_get_crtc_scanline(struct intel_crtc *crtc)
779{
780 struct drm_device *dev = crtc->base.dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +0100781 struct drm_i915_private *dev_priv = to_i915(dev);
Maarten Lankhorstfc467a222015-06-01 12:50:07 +0200782 const struct drm_display_mode *mode = &crtc->base.hwmode;
Ville Syrjäläa225f072014-04-29 13:35:45 +0300783 enum pipe pipe = crtc->pipe;
Ville Syrjälä80715b22014-05-15 20:23:23 +0300784 int position, vtotal;
Ville Syrjäläa225f072014-04-29 13:35:45 +0300785
Ville Syrjälä80715b22014-05-15 20:23:23 +0300786 vtotal = mode->crtc_vtotal;
Ville Syrjäläa225f072014-04-29 13:35:45 +0300787 if (mode->flags & DRM_MODE_FLAG_INTERLACE)
788 vtotal /= 2;
789
Tvrtko Ursulin91d14252016-05-06 14:48:28 +0100790 if (IS_GEN2(dev_priv))
Ville Syrjälä75aa3f62015-10-22 15:34:56 +0300791 position = I915_READ_FW(PIPEDSL(pipe)) & DSL_LINEMASK_GEN2;
Ville Syrjäläa225f072014-04-29 13:35:45 +0300792 else
Ville Syrjälä75aa3f62015-10-22 15:34:56 +0300793 position = I915_READ_FW(PIPEDSL(pipe)) & DSL_LINEMASK_GEN3;
Ville Syrjäläa225f072014-04-29 13:35:45 +0300794
795 /*
Jesse Barnes41b578f2015-09-22 12:15:54 -0700796 * On HSW, the DSL reg (0x70000) appears to return 0 if we
797 * read it just before the start of vblank. So try it again
798 * so we don't accidentally end up spanning a vblank frame
799 * increment, causing the pipe_update_end() code to squak at us.
800 *
801 * The nature of this problem means we can't simply check the ISR
802 * bit and return the vblank start value; nor can we use the scanline
803 * debug register in the transcoder as it appears to have the same
804 * problem. We may need to extend this to include other platforms,
805 * but so far testing only shows the problem on HSW.
806 */
Tvrtko Ursulin91d14252016-05-06 14:48:28 +0100807 if (HAS_DDI(dev_priv) && !position) {
Jesse Barnes41b578f2015-09-22 12:15:54 -0700808 int i, temp;
809
810 for (i = 0; i < 100; i++) {
811 udelay(1);
812 temp = __raw_i915_read32(dev_priv, PIPEDSL(pipe)) &
813 DSL_LINEMASK_GEN3;
814 if (temp != position) {
815 position = temp;
816 break;
817 }
818 }
819 }
820
821 /*
Ville Syrjälä80715b22014-05-15 20:23:23 +0300822 * See update_scanline_offset() for the details on the
823 * scanline_offset adjustment.
Ville Syrjäläa225f072014-04-29 13:35:45 +0300824 */
Ville Syrjälä80715b22014-05-15 20:23:23 +0300825 return (position + crtc->scanline_offset) % vtotal;
Ville Syrjäläa225f072014-04-29 13:35:45 +0300826}
827
Thierry Reding88e72712015-09-24 18:35:31 +0200828static int i915_get_crtc_scanoutpos(struct drm_device *dev, unsigned int pipe,
Ville Syrjäläabca9e42013-10-28 20:50:48 +0200829 unsigned int flags, int *vpos, int *hpos,
Ville Syrjälä3bb403b2015-09-14 22:43:44 +0300830 ktime_t *stime, ktime_t *etime,
831 const struct drm_display_mode *mode)
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100832{
Chris Wilsonfac5e232016-07-04 11:34:36 +0100833 struct drm_i915_private *dev_priv = to_i915(dev);
Ville Syrjälä98187832016-10-31 22:37:10 +0200834 struct intel_crtc *intel_crtc = intel_get_crtc_for_pipe(dev_priv,
835 pipe);
Ville Syrjälä3aa18df2013-10-11 19:10:32 +0300836 int position;
Ville Syrjälä78e8fc62014-04-29 13:35:44 +0300837 int vbl_start, vbl_end, hsync_start, htotal, vtotal;
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100838 bool in_vbl = true;
839 int ret = 0;
Mario Kleinerad3543e2013-10-30 05:13:08 +0100840 unsigned long irqflags;
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100841
Maarten Lankhorstfc467a222015-06-01 12:50:07 +0200842 if (WARN_ON(!mode->crtc_clock)) {
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100843 DRM_DEBUG_DRIVER("trying to get scanoutpos for disabled "
Jesse Barnes9db4a9c2011-02-07 12:26:52 -0800844 "pipe %c\n", pipe_name(pipe));
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100845 return 0;
846 }
847
Ville Syrjäläc2baf4b2013-09-23 14:48:50 +0300848 htotal = mode->crtc_htotal;
Ville Syrjälä78e8fc62014-04-29 13:35:44 +0300849 hsync_start = mode->crtc_hsync_start;
Ville Syrjäläc2baf4b2013-09-23 14:48:50 +0300850 vtotal = mode->crtc_vtotal;
851 vbl_start = mode->crtc_vblank_start;
852 vbl_end = mode->crtc_vblank_end;
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100853
Ville Syrjäläd31faf62013-10-28 16:31:41 +0200854 if (mode->flags & DRM_MODE_FLAG_INTERLACE) {
855 vbl_start = DIV_ROUND_UP(vbl_start, 2);
856 vbl_end /= 2;
857 vtotal /= 2;
858 }
859
Ville Syrjäläc2baf4b2013-09-23 14:48:50 +0300860 ret |= DRM_SCANOUTPOS_VALID | DRM_SCANOUTPOS_ACCURATE;
861
Mario Kleinerad3543e2013-10-30 05:13:08 +0100862 /*
863 * Lock uncore.lock, as we will do multiple timing critical raw
864 * register reads, potentially with preemption disabled, so the
865 * following code must not block on uncore.lock.
866 */
867 spin_lock_irqsave(&dev_priv->uncore.lock, irqflags);
Ville Syrjälä78e8fc62014-04-29 13:35:44 +0300868
Mario Kleinerad3543e2013-10-30 05:13:08 +0100869 /* preempt_disable_rt() should go right here in PREEMPT_RT patchset. */
870
871 /* Get optional system timestamp before query. */
872 if (stime)
873 *stime = ktime_get();
874
Tvrtko Ursulin91d14252016-05-06 14:48:28 +0100875 if (IS_GEN2(dev_priv) || IS_G4X(dev_priv) || INTEL_GEN(dev_priv) >= 5) {
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100876 /* No obvious pixelcount register. Only query vertical
877 * scanout position from Display scan line register.
878 */
Ville Syrjäläa225f072014-04-29 13:35:45 +0300879 position = __intel_get_crtc_scanline(intel_crtc);
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100880 } else {
881 /* Have access to pixelcount since start of frame.
882 * We can split this into vertical and horizontal
883 * scanout position.
884 */
Ville Syrjälä75aa3f62015-10-22 15:34:56 +0300885 position = (I915_READ_FW(PIPEFRAMEPIXEL(pipe)) & PIPE_PIXEL_MASK) >> PIPE_PIXEL_SHIFT;
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100886
Ville Syrjälä3aa18df2013-10-11 19:10:32 +0300887 /* convert to pixel counts */
888 vbl_start *= htotal;
889 vbl_end *= htotal;
890 vtotal *= htotal;
Ville Syrjälä78e8fc62014-04-29 13:35:44 +0300891
892 /*
Ville Syrjälä7e78f1cb2014-04-29 13:35:49 +0300893 * In interlaced modes, the pixel counter counts all pixels,
894 * so one field will have htotal more pixels. In order to avoid
895 * the reported position from jumping backwards when the pixel
896 * counter is beyond the length of the shorter field, just
897 * clamp the position the length of the shorter field. This
898 * matches how the scanline counter based position works since
899 * the scanline counter doesn't count the two half lines.
900 */
901 if (position >= vtotal)
902 position = vtotal - 1;
903
904 /*
Ville Syrjälä78e8fc62014-04-29 13:35:44 +0300905 * Start of vblank interrupt is triggered at start of hsync,
906 * just prior to the first active line of vblank. However we
907 * consider lines to start at the leading edge of horizontal
908 * active. So, should we get here before we've crossed into
909 * the horizontal active of the first line in vblank, we would
910 * not set the DRM_SCANOUTPOS_INVBL flag. In order to fix that,
911 * always add htotal-hsync_start to the current pixel position.
912 */
913 position = (position + htotal - hsync_start) % vtotal;
Ville Syrjälä3aa18df2013-10-11 19:10:32 +0300914 }
915
Mario Kleinerad3543e2013-10-30 05:13:08 +0100916 /* Get optional system timestamp after query. */
917 if (etime)
918 *etime = ktime_get();
919
920 /* preempt_enable_rt() should go right here in PREEMPT_RT patchset. */
921
922 spin_unlock_irqrestore(&dev_priv->uncore.lock, irqflags);
923
Ville Syrjälä3aa18df2013-10-11 19:10:32 +0300924 in_vbl = position >= vbl_start && position < vbl_end;
925
926 /*
927 * While in vblank, position will be negative
928 * counting up towards 0 at vbl_end. And outside
929 * vblank, position will be positive counting
930 * up since vbl_end.
931 */
932 if (position >= vbl_start)
933 position -= vbl_end;
934 else
935 position += vtotal - vbl_end;
936
Tvrtko Ursulin91d14252016-05-06 14:48:28 +0100937 if (IS_GEN2(dev_priv) || IS_G4X(dev_priv) || INTEL_GEN(dev_priv) >= 5) {
Ville Syrjälä3aa18df2013-10-11 19:10:32 +0300938 *vpos = position;
939 *hpos = 0;
940 } else {
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100941 *vpos = position / htotal;
942 *hpos = position - (*vpos * htotal);
943 }
944
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100945 /* In vblank? */
946 if (in_vbl)
Daniel Vetter3d3cbd82014-09-10 17:36:11 +0200947 ret |= DRM_SCANOUTPOS_IN_VBLANK;
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100948
949 return ret;
950}
951
Ville Syrjäläa225f072014-04-29 13:35:45 +0300952int intel_get_crtc_scanline(struct intel_crtc *crtc)
953{
Chris Wilsonfac5e232016-07-04 11:34:36 +0100954 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
Ville Syrjäläa225f072014-04-29 13:35:45 +0300955 unsigned long irqflags;
956 int position;
957
958 spin_lock_irqsave(&dev_priv->uncore.lock, irqflags);
959 position = __intel_get_crtc_scanline(crtc);
960 spin_unlock_irqrestore(&dev_priv->uncore.lock, irqflags);
961
962 return position;
963}
964
Thierry Reding88e72712015-09-24 18:35:31 +0200965static int i915_get_vblank_timestamp(struct drm_device *dev, unsigned int pipe,
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100966 int *max_error,
967 struct timeval *vblank_time,
968 unsigned flags)
969{
Ville Syrjäläb91eb5c2016-10-31 22:37:09 +0200970 struct drm_i915_private *dev_priv = to_i915(dev);
Ville Syrjäläe2af48c2016-10-31 22:37:05 +0200971 struct intel_crtc *crtc;
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100972
Ville Syrjäläb91eb5c2016-10-31 22:37:09 +0200973 if (pipe >= INTEL_INFO(dev_priv)->num_pipes) {
Thierry Reding88e72712015-09-24 18:35:31 +0200974 DRM_ERROR("Invalid crtc %u\n", pipe);
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100975 return -EINVAL;
976 }
977
978 /* Get drm_crtc to timestamp: */
Ville Syrjäläb91eb5c2016-10-31 22:37:09 +0200979 crtc = intel_get_crtc_for_pipe(dev_priv, pipe);
Chris Wilson4041b852011-01-22 10:07:56 +0000980 if (crtc == NULL) {
Thierry Reding88e72712015-09-24 18:35:31 +0200981 DRM_ERROR("Invalid crtc %u\n", pipe);
Chris Wilson4041b852011-01-22 10:07:56 +0000982 return -EINVAL;
983 }
984
Ville Syrjäläe2af48c2016-10-31 22:37:05 +0200985 if (!crtc->base.hwmode.crtc_clock) {
Thierry Reding88e72712015-09-24 18:35:31 +0200986 DRM_DEBUG_KMS("crtc %u is disabled\n", pipe);
Chris Wilson4041b852011-01-22 10:07:56 +0000987 return -EBUSY;
988 }
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100989
990 /* Helper routine in DRM core does all the work: */
Chris Wilson4041b852011-01-22 10:07:56 +0000991 return drm_calc_vbltimestamp_from_scanoutpos(dev, pipe, max_error,
992 vblank_time, flags,
Ville Syrjäläe2af48c2016-10-31 22:37:05 +0200993 &crtc->base.hwmode);
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100994}
995
Tvrtko Ursulin91d14252016-05-06 14:48:28 +0100996static void ironlake_rps_change_irq_handler(struct drm_i915_private *dev_priv)
Jesse Barnesf97108d2010-01-29 11:27:07 -0800997{
Matthew Garrettb5b72e82010-02-02 18:30:47 +0000998 u32 busy_up, busy_down, max_avg, min_avg;
Daniel Vetter92703882012-08-09 16:46:01 +0200999 u8 new_delay;
Daniel Vetter92703882012-08-09 16:46:01 +02001000
Daniel Vetterd0ecd7e2013-07-04 23:35:25 +02001001 spin_lock(&mchdev_lock);
Jesse Barnesf97108d2010-01-29 11:27:07 -08001002
Daniel Vetter73edd18f2012-08-08 23:35:37 +02001003 I915_WRITE16(MEMINTRSTS, I915_READ(MEMINTRSTS));
1004
Daniel Vetter20e4d402012-08-08 23:35:39 +02001005 new_delay = dev_priv->ips.cur_delay;
Daniel Vetter92703882012-08-09 16:46:01 +02001006
Jesse Barnes7648fa92010-05-20 14:28:11 -07001007 I915_WRITE16(MEMINTRSTS, MEMINT_EVAL_CHG);
Matthew Garrettb5b72e82010-02-02 18:30:47 +00001008 busy_up = I915_READ(RCPREVBSYTUPAVG);
1009 busy_down = I915_READ(RCPREVBSYTDNAVG);
Jesse Barnesf97108d2010-01-29 11:27:07 -08001010 max_avg = I915_READ(RCBMAXAVG);
1011 min_avg = I915_READ(RCBMINAVG);
1012
1013 /* Handle RCS change request from hw */
Matthew Garrettb5b72e82010-02-02 18:30:47 +00001014 if (busy_up > max_avg) {
Daniel Vetter20e4d402012-08-08 23:35:39 +02001015 if (dev_priv->ips.cur_delay != dev_priv->ips.max_delay)
1016 new_delay = dev_priv->ips.cur_delay - 1;
1017 if (new_delay < dev_priv->ips.max_delay)
1018 new_delay = dev_priv->ips.max_delay;
Matthew Garrettb5b72e82010-02-02 18:30:47 +00001019 } else if (busy_down < min_avg) {
Daniel Vetter20e4d402012-08-08 23:35:39 +02001020 if (dev_priv->ips.cur_delay != dev_priv->ips.min_delay)
1021 new_delay = dev_priv->ips.cur_delay + 1;
1022 if (new_delay > dev_priv->ips.min_delay)
1023 new_delay = dev_priv->ips.min_delay;
Jesse Barnesf97108d2010-01-29 11:27:07 -08001024 }
1025
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01001026 if (ironlake_set_drps(dev_priv, new_delay))
Daniel Vetter20e4d402012-08-08 23:35:39 +02001027 dev_priv->ips.cur_delay = new_delay;
Jesse Barnesf97108d2010-01-29 11:27:07 -08001028
Daniel Vetterd0ecd7e2013-07-04 23:35:25 +02001029 spin_unlock(&mchdev_lock);
Daniel Vetter92703882012-08-09 16:46:01 +02001030
Jesse Barnesf97108d2010-01-29 11:27:07 -08001031 return;
1032}
1033
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00001034static void notify_ring(struct intel_engine_cs *engine)
Chris Wilson549f7362010-10-19 11:19:32 +01001035{
Chris Wilsonaca34b62016-07-06 12:39:02 +01001036 smp_store_mb(engine->breadcrumbs.irq_posted, true);
Chris Wilson83348ba2016-08-09 17:47:51 +01001037 if (intel_engine_wakeup(engine))
Chris Wilson688e6c72016-07-01 17:23:15 +01001038 trace_i915_gem_request_notify(engine);
Chris Wilson549f7362010-10-19 11:19:32 +01001039}
1040
Chris Wilson43cf3bf2015-03-18 09:48:22 +00001041static void vlv_c0_read(struct drm_i915_private *dev_priv,
1042 struct intel_rps_ei *ei)
Deepak S31685c22014-07-03 17:33:01 -04001043{
Chris Wilson43cf3bf2015-03-18 09:48:22 +00001044 ei->cz_clock = vlv_punit_read(dev_priv, PUNIT_REG_CZ_TIMESTAMP);
1045 ei->render_c0 = I915_READ(VLV_RENDER_C0_COUNT);
1046 ei->media_c0 = I915_READ(VLV_MEDIA_C0_COUNT);
Deepak S31685c22014-07-03 17:33:01 -04001047}
1048
Chris Wilson43cf3bf2015-03-18 09:48:22 +00001049static bool vlv_c0_above(struct drm_i915_private *dev_priv,
1050 const struct intel_rps_ei *old,
1051 const struct intel_rps_ei *now,
1052 int threshold)
Deepak S31685c22014-07-03 17:33:01 -04001053{
Chris Wilson43cf3bf2015-03-18 09:48:22 +00001054 u64 time, c0;
Ville Syrjälä7bad74d2015-09-24 23:29:20 +03001055 unsigned int mul = 100;
Deepak S31685c22014-07-03 17:33:01 -04001056
Chris Wilson43cf3bf2015-03-18 09:48:22 +00001057 if (old->cz_clock == 0)
1058 return false;
Deepak S31685c22014-07-03 17:33:01 -04001059
Ville Syrjälä7bad74d2015-09-24 23:29:20 +03001060 if (I915_READ(VLV_COUNTER_CONTROL) & VLV_COUNT_RANGE_HIGH)
1061 mul <<= 8;
1062
Chris Wilson43cf3bf2015-03-18 09:48:22 +00001063 time = now->cz_clock - old->cz_clock;
Ville Syrjälä7bad74d2015-09-24 23:29:20 +03001064 time *= threshold * dev_priv->czclk_freq;
Deepak S31685c22014-07-03 17:33:01 -04001065
Chris Wilson43cf3bf2015-03-18 09:48:22 +00001066 /* Workload can be split between render + media, e.g. SwapBuffers
1067 * being blitted in X after being rendered in mesa. To account for
1068 * this we need to combine both engines into our activity counter.
1069 */
1070 c0 = now->render_c0 - old->render_c0;
1071 c0 += now->media_c0 - old->media_c0;
Ville Syrjälä7bad74d2015-09-24 23:29:20 +03001072 c0 *= mul * VLV_CZ_CLOCK_TO_MILLI_SEC;
Deepak S31685c22014-07-03 17:33:01 -04001073
Chris Wilson43cf3bf2015-03-18 09:48:22 +00001074 return c0 >= time;
1075}
Deepak S31685c22014-07-03 17:33:01 -04001076
Chris Wilson43cf3bf2015-03-18 09:48:22 +00001077void gen6_rps_reset_ei(struct drm_i915_private *dev_priv)
1078{
1079 vlv_c0_read(dev_priv, &dev_priv->rps.down_ei);
1080 dev_priv->rps.up_ei = dev_priv->rps.down_ei;
Chris Wilson43cf3bf2015-03-18 09:48:22 +00001081}
1082
1083static u32 vlv_wa_c0_ei(struct drm_i915_private *dev_priv, u32 pm_iir)
1084{
1085 struct intel_rps_ei now;
1086 u32 events = 0;
1087
Chris Wilson6f4b12f82015-03-18 09:48:23 +00001088 if ((pm_iir & (GEN6_PM_RP_DOWN_EI_EXPIRED | GEN6_PM_RP_UP_EI_EXPIRED)) == 0)
Chris Wilson43cf3bf2015-03-18 09:48:22 +00001089 return 0;
1090
1091 vlv_c0_read(dev_priv, &now);
1092 if (now.cz_clock == 0)
1093 return 0;
Deepak S31685c22014-07-03 17:33:01 -04001094
Chris Wilson43cf3bf2015-03-18 09:48:22 +00001095 if (pm_iir & GEN6_PM_RP_DOWN_EI_EXPIRED) {
1096 if (!vlv_c0_above(dev_priv,
1097 &dev_priv->rps.down_ei, &now,
Chris Wilson8fb55192015-04-07 16:20:28 +01001098 dev_priv->rps.down_threshold))
Chris Wilson43cf3bf2015-03-18 09:48:22 +00001099 events |= GEN6_PM_RP_DOWN_THRESHOLD;
1100 dev_priv->rps.down_ei = now;
Deepak S31685c22014-07-03 17:33:01 -04001101 }
1102
Chris Wilson43cf3bf2015-03-18 09:48:22 +00001103 if (pm_iir & GEN6_PM_RP_UP_EI_EXPIRED) {
1104 if (vlv_c0_above(dev_priv,
1105 &dev_priv->rps.up_ei, &now,
Chris Wilson8fb55192015-04-07 16:20:28 +01001106 dev_priv->rps.up_threshold))
Chris Wilson43cf3bf2015-03-18 09:48:22 +00001107 events |= GEN6_PM_RP_UP_THRESHOLD;
1108 dev_priv->rps.up_ei = now;
1109 }
1110
1111 return events;
Deepak S31685c22014-07-03 17:33:01 -04001112}
1113
Chris Wilsonf5a4c672015-04-27 13:41:23 +01001114static bool any_waiters(struct drm_i915_private *dev_priv)
1115{
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00001116 struct intel_engine_cs *engine;
Akash Goel3b3f1652016-10-13 22:44:48 +05301117 enum intel_engine_id id;
Chris Wilsonf5a4c672015-04-27 13:41:23 +01001118
Akash Goel3b3f1652016-10-13 22:44:48 +05301119 for_each_engine(engine, dev_priv, id)
Chris Wilson688e6c72016-07-01 17:23:15 +01001120 if (intel_engine_has_waiter(engine))
Chris Wilsonf5a4c672015-04-27 13:41:23 +01001121 return true;
1122
1123 return false;
1124}
1125
Ben Widawsky4912d042011-04-25 11:25:20 -07001126static void gen6_pm_rps_work(struct work_struct *work)
Jesse Barnes3b8d8d92010-12-17 14:19:02 -08001127{
Jani Nikula2d1013d2014-03-31 14:27:17 +03001128 struct drm_i915_private *dev_priv =
1129 container_of(work, struct drm_i915_private, rps.work);
Chris Wilson8d3afd72015-05-21 21:01:47 +01001130 bool client_boost;
1131 int new_delay, adj, min, max;
Paulo Zanoniedbfdb42013-08-06 18:57:13 -03001132 u32 pm_iir;
Jesse Barnes3b8d8d92010-12-17 14:19:02 -08001133
Daniel Vetter59cdb632013-07-04 23:35:28 +02001134 spin_lock_irq(&dev_priv->irq_lock);
Imre Deakd4d70aa2014-11-19 15:30:04 +02001135 /* Speed up work cancelation during disabling rps interrupts. */
1136 if (!dev_priv->rps.interrupts_enabled) {
1137 spin_unlock_irq(&dev_priv->irq_lock);
1138 return;
1139 }
Imre Deak1f814da2015-12-16 02:52:19 +02001140
Daniel Vetterc6a828d2012-08-08 23:35:35 +02001141 pm_iir = dev_priv->rps.pm_iir;
1142 dev_priv->rps.pm_iir = 0;
Imre Deaka72fbc32014-11-05 20:48:31 +02001143 /* Make sure not to corrupt PMIMR state used by ringbuffer on GEN6 */
Akash Goelf4e9af42016-10-12 21:54:30 +05301144 gen6_unmask_pm_irq(dev_priv, dev_priv->pm_rps_events);
Chris Wilson8d3afd72015-05-21 21:01:47 +01001145 client_boost = dev_priv->rps.client_boost;
1146 dev_priv->rps.client_boost = false;
Daniel Vetter59cdb632013-07-04 23:35:28 +02001147 spin_unlock_irq(&dev_priv->irq_lock);
Ben Widawsky4912d042011-04-25 11:25:20 -07001148
Paulo Zanoni60611c12013-08-15 11:50:01 -03001149 /* Make sure we didn't queue anything we're not going to process. */
Deepak Sa6706b42014-03-15 20:23:22 +05301150 WARN_ON(pm_iir & ~dev_priv->pm_rps_events);
Paulo Zanoni60611c12013-08-15 11:50:01 -03001151
Chris Wilson8d3afd72015-05-21 21:01:47 +01001152 if ((pm_iir & dev_priv->pm_rps_events) == 0 && !client_boost)
Chris Wilsonc33d2472016-07-04 08:08:36 +01001153 return;
Jesse Barnes3b8d8d92010-12-17 14:19:02 -08001154
Jesse Barnes4fc688c2012-11-02 11:14:01 -07001155 mutex_lock(&dev_priv->rps.hw_lock);
Chris Wilson7b9e0ae2012-04-28 08:56:39 +01001156
Chris Wilson43cf3bf2015-03-18 09:48:22 +00001157 pm_iir |= vlv_wa_c0_ei(dev_priv, pm_iir);
1158
Chris Wilsondd75fdc2013-09-25 17:34:57 +01001159 adj = dev_priv->rps.last_adj;
Chris Wilsonedcf2842015-04-07 16:20:29 +01001160 new_delay = dev_priv->rps.cur_freq;
Chris Wilson8d3afd72015-05-21 21:01:47 +01001161 min = dev_priv->rps.min_freq_softlimit;
1162 max = dev_priv->rps.max_freq_softlimit;
Chris Wilson29ecd78d2016-07-13 09:10:35 +01001163 if (client_boost || any_waiters(dev_priv))
1164 max = dev_priv->rps.max_freq;
1165 if (client_boost && new_delay < dev_priv->rps.boost_freq) {
1166 new_delay = dev_priv->rps.boost_freq;
Chris Wilson8d3afd72015-05-21 21:01:47 +01001167 adj = 0;
1168 } else if (pm_iir & GEN6_PM_RP_UP_THRESHOLD) {
Chris Wilsondd75fdc2013-09-25 17:34:57 +01001169 if (adj > 0)
1170 adj *= 2;
Chris Wilsonedcf2842015-04-07 16:20:29 +01001171 else /* CHV needs even encode values */
1172 adj = IS_CHERRYVIEW(dev_priv) ? 2 : 1;
Ville Syrjälä74250342013-06-25 21:38:11 +03001173 /*
1174 * For better performance, jump directly
1175 * to RPe if we're below it.
1176 */
Chris Wilsonedcf2842015-04-07 16:20:29 +01001177 if (new_delay < dev_priv->rps.efficient_freq - adj) {
Ben Widawskyb39fb292014-03-19 18:31:11 -07001178 new_delay = dev_priv->rps.efficient_freq;
Chris Wilsonedcf2842015-04-07 16:20:29 +01001179 adj = 0;
1180 }
Chris Wilson29ecd78d2016-07-13 09:10:35 +01001181 } else if (client_boost || any_waiters(dev_priv)) {
Chris Wilsonf5a4c672015-04-27 13:41:23 +01001182 adj = 0;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01001183 } else if (pm_iir & GEN6_PM_RP_DOWN_TIMEOUT) {
Ben Widawskyb39fb292014-03-19 18:31:11 -07001184 if (dev_priv->rps.cur_freq > dev_priv->rps.efficient_freq)
1185 new_delay = dev_priv->rps.efficient_freq;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01001186 else
Ben Widawskyb39fb292014-03-19 18:31:11 -07001187 new_delay = dev_priv->rps.min_freq_softlimit;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01001188 adj = 0;
1189 } else if (pm_iir & GEN6_PM_RP_DOWN_THRESHOLD) {
1190 if (adj < 0)
1191 adj *= 2;
Chris Wilsonedcf2842015-04-07 16:20:29 +01001192 else /* CHV needs even encode values */
1193 adj = IS_CHERRYVIEW(dev_priv) ? -2 : -1;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01001194 } else { /* unknown event */
Chris Wilsonedcf2842015-04-07 16:20:29 +01001195 adj = 0;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01001196 }
Jesse Barnes3b8d8d92010-12-17 14:19:02 -08001197
Chris Wilsonedcf2842015-04-07 16:20:29 +01001198 dev_priv->rps.last_adj = adj;
1199
Ben Widawsky79249632012-09-07 19:43:42 -07001200 /* sysfs frequency interfaces may have snuck in while servicing the
1201 * interrupt
1202 */
Chris Wilsonedcf2842015-04-07 16:20:29 +01001203 new_delay += adj;
Chris Wilson8d3afd72015-05-21 21:01:47 +01001204 new_delay = clamp_t(int, new_delay, min, max);
Deepak S27544362014-01-27 21:35:05 +05301205
Chris Wilsondc979972016-05-10 14:10:04 +01001206 intel_set_rps(dev_priv, new_delay);
Jesse Barnes3b8d8d92010-12-17 14:19:02 -08001207
Jesse Barnes4fc688c2012-11-02 11:14:01 -07001208 mutex_unlock(&dev_priv->rps.hw_lock);
Jesse Barnes3b8d8d92010-12-17 14:19:02 -08001209}
1210
Ben Widawskye3689192012-05-25 16:56:22 -07001211
1212/**
1213 * ivybridge_parity_work - Workqueue called when a parity error interrupt
1214 * occurred.
1215 * @work: workqueue struct
1216 *
1217 * Doesn't actually do anything except notify userspace. As a consequence of
1218 * this event, userspace should try to remap the bad rows since statistically
1219 * it is likely the same row is more likely to go bad again.
1220 */
1221static void ivybridge_parity_work(struct work_struct *work)
1222{
Jani Nikula2d1013d2014-03-31 14:27:17 +03001223 struct drm_i915_private *dev_priv =
1224 container_of(work, struct drm_i915_private, l3_parity.error_work);
Ben Widawskye3689192012-05-25 16:56:22 -07001225 u32 error_status, row, bank, subbank;
Ben Widawsky35a85ac2013-09-19 11:13:41 -07001226 char *parity_event[6];
Ben Widawskye3689192012-05-25 16:56:22 -07001227 uint32_t misccpctl;
Ben Widawsky35a85ac2013-09-19 11:13:41 -07001228 uint8_t slice = 0;
Ben Widawskye3689192012-05-25 16:56:22 -07001229
1230 /* We must turn off DOP level clock gating to access the L3 registers.
1231 * In order to prevent a get/put style interface, acquire struct mutex
1232 * any time we access those registers.
1233 */
Chris Wilson91c8a322016-07-05 10:40:23 +01001234 mutex_lock(&dev_priv->drm.struct_mutex);
Ben Widawskye3689192012-05-25 16:56:22 -07001235
Ben Widawsky35a85ac2013-09-19 11:13:41 -07001236 /* If we've screwed up tracking, just let the interrupt fire again */
1237 if (WARN_ON(!dev_priv->l3_parity.which_slice))
1238 goto out;
1239
Ben Widawskye3689192012-05-25 16:56:22 -07001240 misccpctl = I915_READ(GEN7_MISCCPCTL);
1241 I915_WRITE(GEN7_MISCCPCTL, misccpctl & ~GEN7_DOP_CLOCK_GATE_ENABLE);
1242 POSTING_READ(GEN7_MISCCPCTL);
1243
Ben Widawsky35a85ac2013-09-19 11:13:41 -07001244 while ((slice = ffs(dev_priv->l3_parity.which_slice)) != 0) {
Ville Syrjäläf0f59a02015-11-18 15:33:26 +02001245 i915_reg_t reg;
Ben Widawskye3689192012-05-25 16:56:22 -07001246
Ben Widawsky35a85ac2013-09-19 11:13:41 -07001247 slice--;
Joonas Lahtinen2d1fe072016-04-07 11:08:05 +03001248 if (WARN_ON_ONCE(slice >= NUM_L3_SLICES(dev_priv)))
Ben Widawsky35a85ac2013-09-19 11:13:41 -07001249 break;
1250
1251 dev_priv->l3_parity.which_slice &= ~(1<<slice);
1252
Ville Syrjälä6fa1c5f2015-11-04 23:20:02 +02001253 reg = GEN7_L3CDERRST1(slice);
Ben Widawsky35a85ac2013-09-19 11:13:41 -07001254
1255 error_status = I915_READ(reg);
1256 row = GEN7_PARITY_ERROR_ROW(error_status);
1257 bank = GEN7_PARITY_ERROR_BANK(error_status);
1258 subbank = GEN7_PARITY_ERROR_SUBBANK(error_status);
1259
1260 I915_WRITE(reg, GEN7_PARITY_ERROR_VALID | GEN7_L3CDERRST1_ENABLE);
1261 POSTING_READ(reg);
1262
1263 parity_event[0] = I915_L3_PARITY_UEVENT "=1";
1264 parity_event[1] = kasprintf(GFP_KERNEL, "ROW=%d", row);
1265 parity_event[2] = kasprintf(GFP_KERNEL, "BANK=%d", bank);
1266 parity_event[3] = kasprintf(GFP_KERNEL, "SUBBANK=%d", subbank);
1267 parity_event[4] = kasprintf(GFP_KERNEL, "SLICE=%d", slice);
1268 parity_event[5] = NULL;
1269
Chris Wilson91c8a322016-07-05 10:40:23 +01001270 kobject_uevent_env(&dev_priv->drm.primary->kdev->kobj,
Ben Widawsky35a85ac2013-09-19 11:13:41 -07001271 KOBJ_CHANGE, parity_event);
1272
1273 DRM_DEBUG("Parity error: Slice = %d, Row = %d, Bank = %d, Sub bank = %d.\n",
1274 slice, row, bank, subbank);
1275
1276 kfree(parity_event[4]);
1277 kfree(parity_event[3]);
1278 kfree(parity_event[2]);
1279 kfree(parity_event[1]);
1280 }
Ben Widawskye3689192012-05-25 16:56:22 -07001281
1282 I915_WRITE(GEN7_MISCCPCTL, misccpctl);
1283
Ben Widawsky35a85ac2013-09-19 11:13:41 -07001284out:
1285 WARN_ON(dev_priv->l3_parity.which_slice);
Daniel Vetter4cb21832014-09-15 14:55:26 +02001286 spin_lock_irq(&dev_priv->irq_lock);
Joonas Lahtinen2d1fe072016-04-07 11:08:05 +03001287 gen5_enable_gt_irq(dev_priv, GT_PARITY_ERROR(dev_priv));
Daniel Vetter4cb21832014-09-15 14:55:26 +02001288 spin_unlock_irq(&dev_priv->irq_lock);
Ben Widawskye3689192012-05-25 16:56:22 -07001289
Chris Wilson91c8a322016-07-05 10:40:23 +01001290 mutex_unlock(&dev_priv->drm.struct_mutex);
Ben Widawskye3689192012-05-25 16:56:22 -07001291}
1292
Ville Syrjälä261e40b2016-04-13 21:19:57 +03001293static void ivybridge_parity_error_irq_handler(struct drm_i915_private *dev_priv,
1294 u32 iir)
Ben Widawskye3689192012-05-25 16:56:22 -07001295{
Ville Syrjälä261e40b2016-04-13 21:19:57 +03001296 if (!HAS_L3_DPF(dev_priv))
Ben Widawskye3689192012-05-25 16:56:22 -07001297 return;
1298
Daniel Vetterd0ecd7e2013-07-04 23:35:25 +02001299 spin_lock(&dev_priv->irq_lock);
Ville Syrjälä261e40b2016-04-13 21:19:57 +03001300 gen5_disable_gt_irq(dev_priv, GT_PARITY_ERROR(dev_priv));
Daniel Vetterd0ecd7e2013-07-04 23:35:25 +02001301 spin_unlock(&dev_priv->irq_lock);
Ben Widawskye3689192012-05-25 16:56:22 -07001302
Ville Syrjälä261e40b2016-04-13 21:19:57 +03001303 iir &= GT_PARITY_ERROR(dev_priv);
Ben Widawsky35a85ac2013-09-19 11:13:41 -07001304 if (iir & GT_RENDER_L3_PARITY_ERROR_INTERRUPT_S1)
1305 dev_priv->l3_parity.which_slice |= 1 << 1;
1306
1307 if (iir & GT_RENDER_L3_PARITY_ERROR_INTERRUPT)
1308 dev_priv->l3_parity.which_slice |= 1 << 0;
1309
Daniel Vettera4da4fa2012-11-02 19:55:07 +01001310 queue_work(dev_priv->wq, &dev_priv->l3_parity.error_work);
Ben Widawskye3689192012-05-25 16:56:22 -07001311}
1312
Ville Syrjälä261e40b2016-04-13 21:19:57 +03001313static void ilk_gt_irq_handler(struct drm_i915_private *dev_priv,
Paulo Zanonif1af8fc2013-07-12 19:56:30 -03001314 u32 gt_iir)
1315{
Chris Wilsonf8973c22016-07-01 17:23:21 +01001316 if (gt_iir & GT_RENDER_USER_INTERRUPT)
Akash Goel3b3f1652016-10-13 22:44:48 +05301317 notify_ring(dev_priv->engine[RCS]);
Paulo Zanonif1af8fc2013-07-12 19:56:30 -03001318 if (gt_iir & ILK_BSD_USER_INTERRUPT)
Akash Goel3b3f1652016-10-13 22:44:48 +05301319 notify_ring(dev_priv->engine[VCS]);
Paulo Zanonif1af8fc2013-07-12 19:56:30 -03001320}
1321
Ville Syrjälä261e40b2016-04-13 21:19:57 +03001322static void snb_gt_irq_handler(struct drm_i915_private *dev_priv,
Daniel Vettere7b4c6b2012-03-30 20:24:35 +02001323 u32 gt_iir)
1324{
Chris Wilsonf8973c22016-07-01 17:23:21 +01001325 if (gt_iir & GT_RENDER_USER_INTERRUPT)
Akash Goel3b3f1652016-10-13 22:44:48 +05301326 notify_ring(dev_priv->engine[RCS]);
Ben Widawskycc609d52013-05-28 19:22:29 -07001327 if (gt_iir & GT_BSD_USER_INTERRUPT)
Akash Goel3b3f1652016-10-13 22:44:48 +05301328 notify_ring(dev_priv->engine[VCS]);
Ben Widawskycc609d52013-05-28 19:22:29 -07001329 if (gt_iir & GT_BLT_USER_INTERRUPT)
Akash Goel3b3f1652016-10-13 22:44:48 +05301330 notify_ring(dev_priv->engine[BCS]);
Daniel Vettere7b4c6b2012-03-30 20:24:35 +02001331
Ben Widawskycc609d52013-05-28 19:22:29 -07001332 if (gt_iir & (GT_BLT_CS_ERROR_INTERRUPT |
1333 GT_BSD_CS_ERROR_INTERRUPT |
Daniel Vetteraaecdf62014-11-04 15:52:22 +01001334 GT_RENDER_CS_MASTER_ERROR_INTERRUPT))
1335 DRM_DEBUG("Command parser error, gt_iir 0x%08x\n", gt_iir);
Ben Widawskye3689192012-05-25 16:56:22 -07001336
Ville Syrjälä261e40b2016-04-13 21:19:57 +03001337 if (gt_iir & GT_PARITY_ERROR(dev_priv))
1338 ivybridge_parity_error_irq_handler(dev_priv, gt_iir);
Daniel Vettere7b4c6b2012-03-30 20:24:35 +02001339}
1340
Nick Hoathfbcc1a02015-10-20 10:23:52 +01001341static __always_inline void
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00001342gen8_cs_irq_handler(struct intel_engine_cs *engine, u32 iir, int test_shift)
Nick Hoathfbcc1a02015-10-20 10:23:52 +01001343{
1344 if (iir & (GT_RENDER_USER_INTERRUPT << test_shift))
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00001345 notify_ring(engine);
Nick Hoathfbcc1a02015-10-20 10:23:52 +01001346 if (iir & (GT_CONTEXT_SWITCH_INTERRUPT << test_shift))
Tvrtko Ursulin27af5ee2016-04-04 12:11:56 +01001347 tasklet_schedule(&engine->irq_tasklet);
Nick Hoathfbcc1a02015-10-20 10:23:52 +01001348}
1349
Ville Syrjäläe30e2512016-04-13 21:19:58 +03001350static irqreturn_t gen8_gt_irq_ack(struct drm_i915_private *dev_priv,
1351 u32 master_ctl,
1352 u32 gt_iir[4])
Ben Widawskyabd58f02013-11-02 21:07:09 -07001353{
Ben Widawskyabd58f02013-11-02 21:07:09 -07001354 irqreturn_t ret = IRQ_NONE;
1355
1356 if (master_ctl & (GEN8_GT_RCS_IRQ | GEN8_GT_BCS_IRQ)) {
Ville Syrjäläe30e2512016-04-13 21:19:58 +03001357 gt_iir[0] = I915_READ_FW(GEN8_GT_IIR(0));
1358 if (gt_iir[0]) {
1359 I915_WRITE_FW(GEN8_GT_IIR(0), gt_iir[0]);
Ben Widawskyabd58f02013-11-02 21:07:09 -07001360 ret = IRQ_HANDLED;
Ben Widawskyabd58f02013-11-02 21:07:09 -07001361 } else
1362 DRM_ERROR("The master control interrupt lied (GT0)!\n");
1363 }
1364
Zhao Yakui85f9b5f2014-04-17 10:37:38 +08001365 if (master_ctl & (GEN8_GT_VCS1_IRQ | GEN8_GT_VCS2_IRQ)) {
Ville Syrjäläe30e2512016-04-13 21:19:58 +03001366 gt_iir[1] = I915_READ_FW(GEN8_GT_IIR(1));
1367 if (gt_iir[1]) {
1368 I915_WRITE_FW(GEN8_GT_IIR(1), gt_iir[1]);
Ben Widawskyabd58f02013-11-02 21:07:09 -07001369 ret = IRQ_HANDLED;
Ben Widawskyabd58f02013-11-02 21:07:09 -07001370 } else
1371 DRM_ERROR("The master control interrupt lied (GT1)!\n");
1372 }
1373
Chris Wilson74cdb332015-04-07 16:21:05 +01001374 if (master_ctl & GEN8_GT_VECS_IRQ) {
Ville Syrjäläe30e2512016-04-13 21:19:58 +03001375 gt_iir[3] = I915_READ_FW(GEN8_GT_IIR(3));
1376 if (gt_iir[3]) {
1377 I915_WRITE_FW(GEN8_GT_IIR(3), gt_iir[3]);
Chris Wilson74cdb332015-04-07 16:21:05 +01001378 ret = IRQ_HANDLED;
Chris Wilson74cdb332015-04-07 16:21:05 +01001379 } else
1380 DRM_ERROR("The master control interrupt lied (GT3)!\n");
1381 }
1382
Sagar Arun Kamble26705e22016-10-12 21:54:31 +05301383 if (master_ctl & (GEN8_GT_PM_IRQ | GEN8_GT_GUC_IRQ)) {
Ville Syrjäläe30e2512016-04-13 21:19:58 +03001384 gt_iir[2] = I915_READ_FW(GEN8_GT_IIR(2));
Sagar Arun Kamble26705e22016-10-12 21:54:31 +05301385 if (gt_iir[2] & (dev_priv->pm_rps_events |
1386 dev_priv->pm_guc_events)) {
Chris Wilsoncb0d2052015-04-07 16:21:04 +01001387 I915_WRITE_FW(GEN8_GT_IIR(2),
Sagar Arun Kamble26705e22016-10-12 21:54:31 +05301388 gt_iir[2] & (dev_priv->pm_rps_events |
1389 dev_priv->pm_guc_events));
Oscar Mateo38cc46d2014-06-16 16:10:59 +01001390 ret = IRQ_HANDLED;
Ben Widawsky09610212014-05-15 20:58:08 +03001391 } else
1392 DRM_ERROR("The master control interrupt lied (PM)!\n");
1393 }
1394
Ben Widawskyabd58f02013-11-02 21:07:09 -07001395 return ret;
1396}
1397
Ville Syrjäläe30e2512016-04-13 21:19:58 +03001398static void gen8_gt_irq_handler(struct drm_i915_private *dev_priv,
1399 u32 gt_iir[4])
1400{
1401 if (gt_iir[0]) {
Akash Goel3b3f1652016-10-13 22:44:48 +05301402 gen8_cs_irq_handler(dev_priv->engine[RCS],
Ville Syrjäläe30e2512016-04-13 21:19:58 +03001403 gt_iir[0], GEN8_RCS_IRQ_SHIFT);
Akash Goel3b3f1652016-10-13 22:44:48 +05301404 gen8_cs_irq_handler(dev_priv->engine[BCS],
Ville Syrjäläe30e2512016-04-13 21:19:58 +03001405 gt_iir[0], GEN8_BCS_IRQ_SHIFT);
1406 }
1407
1408 if (gt_iir[1]) {
Akash Goel3b3f1652016-10-13 22:44:48 +05301409 gen8_cs_irq_handler(dev_priv->engine[VCS],
Ville Syrjäläe30e2512016-04-13 21:19:58 +03001410 gt_iir[1], GEN8_VCS1_IRQ_SHIFT);
Akash Goel3b3f1652016-10-13 22:44:48 +05301411 gen8_cs_irq_handler(dev_priv->engine[VCS2],
Ville Syrjäläe30e2512016-04-13 21:19:58 +03001412 gt_iir[1], GEN8_VCS2_IRQ_SHIFT);
1413 }
1414
1415 if (gt_iir[3])
Akash Goel3b3f1652016-10-13 22:44:48 +05301416 gen8_cs_irq_handler(dev_priv->engine[VECS],
Ville Syrjäläe30e2512016-04-13 21:19:58 +03001417 gt_iir[3], GEN8_VECS_IRQ_SHIFT);
1418
1419 if (gt_iir[2] & dev_priv->pm_rps_events)
1420 gen6_rps_irq_handler(dev_priv, gt_iir[2]);
Sagar Arun Kamble26705e22016-10-12 21:54:31 +05301421
1422 if (gt_iir[2] & dev_priv->pm_guc_events)
1423 gen9_guc_irq_handler(dev_priv, gt_iir[2]);
Ville Syrjäläe30e2512016-04-13 21:19:58 +03001424}
1425
Imre Deak63c88d22015-07-20 14:43:39 -07001426static bool bxt_port_hotplug_long_detect(enum port port, u32 val)
1427{
1428 switch (port) {
1429 case PORT_A:
Ville Syrjälä195baa02015-08-27 23:56:00 +03001430 return val & PORTA_HOTPLUG_LONG_DETECT;
Imre Deak63c88d22015-07-20 14:43:39 -07001431 case PORT_B:
1432 return val & PORTB_HOTPLUG_LONG_DETECT;
1433 case PORT_C:
1434 return val & PORTC_HOTPLUG_LONG_DETECT;
Imre Deak63c88d22015-07-20 14:43:39 -07001435 default:
1436 return false;
1437 }
1438}
1439
Ville Syrjälä6dbf30c2015-08-27 23:56:02 +03001440static bool spt_port_hotplug2_long_detect(enum port port, u32 val)
1441{
1442 switch (port) {
1443 case PORT_E:
1444 return val & PORTE_HOTPLUG_LONG_DETECT;
1445 default:
1446 return false;
1447 }
1448}
1449
Ville Syrjälä74c0b392015-08-27 23:56:07 +03001450static bool spt_port_hotplug_long_detect(enum port port, u32 val)
1451{
1452 switch (port) {
1453 case PORT_A:
1454 return val & PORTA_HOTPLUG_LONG_DETECT;
1455 case PORT_B:
1456 return val & PORTB_HOTPLUG_LONG_DETECT;
1457 case PORT_C:
1458 return val & PORTC_HOTPLUG_LONG_DETECT;
1459 case PORT_D:
1460 return val & PORTD_HOTPLUG_LONG_DETECT;
1461 default:
1462 return false;
1463 }
1464}
1465
Ville Syrjäläe4ce95a2015-08-27 23:56:03 +03001466static bool ilk_port_hotplug_long_detect(enum port port, u32 val)
1467{
1468 switch (port) {
1469 case PORT_A:
1470 return val & DIGITAL_PORTA_HOTPLUG_LONG_DETECT;
1471 default:
1472 return false;
1473 }
1474}
1475
Jani Nikula676574d2015-05-28 15:43:53 +03001476static bool pch_port_hotplug_long_detect(enum port port, u32 val)
Dave Airlie13cf5502014-06-18 11:29:35 +10001477{
1478 switch (port) {
Dave Airlie13cf5502014-06-18 11:29:35 +10001479 case PORT_B:
Jani Nikula676574d2015-05-28 15:43:53 +03001480 return val & PORTB_HOTPLUG_LONG_DETECT;
Dave Airlie13cf5502014-06-18 11:29:35 +10001481 case PORT_C:
Jani Nikula676574d2015-05-28 15:43:53 +03001482 return val & PORTC_HOTPLUG_LONG_DETECT;
Dave Airlie13cf5502014-06-18 11:29:35 +10001483 case PORT_D:
Jani Nikula676574d2015-05-28 15:43:53 +03001484 return val & PORTD_HOTPLUG_LONG_DETECT;
1485 default:
1486 return false;
Dave Airlie13cf5502014-06-18 11:29:35 +10001487 }
1488}
1489
Jani Nikula676574d2015-05-28 15:43:53 +03001490static bool i9xx_port_hotplug_long_detect(enum port port, u32 val)
Dave Airlie13cf5502014-06-18 11:29:35 +10001491{
1492 switch (port) {
Dave Airlie13cf5502014-06-18 11:29:35 +10001493 case PORT_B:
Jani Nikula676574d2015-05-28 15:43:53 +03001494 return val & PORTB_HOTPLUG_INT_LONG_PULSE;
Dave Airlie13cf5502014-06-18 11:29:35 +10001495 case PORT_C:
Jani Nikula676574d2015-05-28 15:43:53 +03001496 return val & PORTC_HOTPLUG_INT_LONG_PULSE;
Dave Airlie13cf5502014-06-18 11:29:35 +10001497 case PORT_D:
Jani Nikula676574d2015-05-28 15:43:53 +03001498 return val & PORTD_HOTPLUG_INT_LONG_PULSE;
1499 default:
1500 return false;
Dave Airlie13cf5502014-06-18 11:29:35 +10001501 }
1502}
1503
Ville Syrjälä42db67d2015-08-28 21:26:27 +03001504/*
1505 * Get a bit mask of pins that have triggered, and which ones may be long.
1506 * This can be called multiple times with the same masks to accumulate
1507 * hotplug detection results from several registers.
1508 *
1509 * Note that the caller is expected to zero out the masks initially.
1510 */
Imre Deakfd63e2a2015-07-21 15:32:44 -07001511static void intel_get_hpd_pins(u32 *pin_mask, u32 *long_mask,
Jani Nikula8c841e52015-06-18 13:06:17 +03001512 u32 hotplug_trigger, u32 dig_hotplug_reg,
Imre Deakfd63e2a2015-07-21 15:32:44 -07001513 const u32 hpd[HPD_NUM_PINS],
1514 bool long_pulse_detect(enum port port, u32 val))
Jani Nikula676574d2015-05-28 15:43:53 +03001515{
Jani Nikula8c841e52015-06-18 13:06:17 +03001516 enum port port;
Jani Nikula676574d2015-05-28 15:43:53 +03001517 int i;
1518
Jani Nikula676574d2015-05-28 15:43:53 +03001519 for_each_hpd_pin(i) {
Jani Nikula8c841e52015-06-18 13:06:17 +03001520 if ((hpd[i] & hotplug_trigger) == 0)
1521 continue;
Jani Nikula676574d2015-05-28 15:43:53 +03001522
Jani Nikula8c841e52015-06-18 13:06:17 +03001523 *pin_mask |= BIT(i);
1524
Imre Deakcc24fcd2015-07-21 15:32:45 -07001525 if (!intel_hpd_pin_to_port(i, &port))
1526 continue;
1527
Imre Deakfd63e2a2015-07-21 15:32:44 -07001528 if (long_pulse_detect(port, dig_hotplug_reg))
Jani Nikula8c841e52015-06-18 13:06:17 +03001529 *long_mask |= BIT(i);
Jani Nikula676574d2015-05-28 15:43:53 +03001530 }
1531
1532 DRM_DEBUG_DRIVER("hotplug event received, stat 0x%08x, dig 0x%08x, pins 0x%08x\n",
1533 hotplug_trigger, dig_hotplug_reg, *pin_mask);
1534
1535}
1536
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01001537static void gmbus_irq_handler(struct drm_i915_private *dev_priv)
Daniel Vetter515ac2b2012-12-01 13:53:44 +01001538{
Daniel Vetter28c70f12012-12-01 13:53:45 +01001539 wake_up_all(&dev_priv->gmbus_wait_queue);
Daniel Vetter515ac2b2012-12-01 13:53:44 +01001540}
1541
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01001542static void dp_aux_irq_handler(struct drm_i915_private *dev_priv)
Daniel Vetterce99c252012-12-01 13:53:47 +01001543{
Daniel Vetter9ee32fea2012-12-01 13:53:48 +01001544 wake_up_all(&dev_priv->gmbus_wait_queue);
Daniel Vetterce99c252012-12-01 13:53:47 +01001545}
1546
Shuang He8bf1e9f2013-10-15 18:55:27 +01001547#if defined(CONFIG_DEBUG_FS)
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01001548static void display_pipe_crc_irq_handler(struct drm_i915_private *dev_priv,
1549 enum pipe pipe,
Daniel Vetter277de952013-10-18 16:37:07 +02001550 uint32_t crc0, uint32_t crc1,
1551 uint32_t crc2, uint32_t crc3,
1552 uint32_t crc4)
Shuang He8bf1e9f2013-10-15 18:55:27 +01001553{
Shuang He8bf1e9f2013-10-15 18:55:27 +01001554 struct intel_pipe_crc *pipe_crc = &dev_priv->pipe_crc[pipe];
1555 struct intel_pipe_crc_entry *entry;
Damien Lespiauac2300d2013-10-15 18:55:30 +01001556 int head, tail;
Damien Lespiaub2c88f52013-10-15 18:55:29 +01001557
Damien Lespiaud538bbd2013-10-21 14:29:30 +01001558 spin_lock(&pipe_crc->lock);
1559
Damien Lespiau0c912c72013-10-15 18:55:37 +01001560 if (!pipe_crc->entries) {
Damien Lespiaud538bbd2013-10-21 14:29:30 +01001561 spin_unlock(&pipe_crc->lock);
Daniel Vetter34273622014-11-26 16:29:04 +01001562 DRM_DEBUG_KMS("spurious interrupt\n");
Damien Lespiau0c912c72013-10-15 18:55:37 +01001563 return;
1564 }
1565
Damien Lespiaud538bbd2013-10-21 14:29:30 +01001566 head = pipe_crc->head;
1567 tail = pipe_crc->tail;
Damien Lespiaub2c88f52013-10-15 18:55:29 +01001568
1569 if (CIRC_SPACE(head, tail, INTEL_PIPE_CRC_ENTRIES_NR) < 1) {
Damien Lespiaud538bbd2013-10-21 14:29:30 +01001570 spin_unlock(&pipe_crc->lock);
Damien Lespiaub2c88f52013-10-15 18:55:29 +01001571 DRM_ERROR("CRC buffer overflowing\n");
1572 return;
1573 }
1574
1575 entry = &pipe_crc->entries[head];
Shuang He8bf1e9f2013-10-15 18:55:27 +01001576
Chris Wilson91c8a322016-07-05 10:40:23 +01001577 entry->frame = dev_priv->drm.driver->get_vblank_counter(&dev_priv->drm,
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01001578 pipe);
Daniel Vettereba94eb2013-10-16 22:55:46 +02001579 entry->crc[0] = crc0;
1580 entry->crc[1] = crc1;
1581 entry->crc[2] = crc2;
1582 entry->crc[3] = crc3;
1583 entry->crc[4] = crc4;
Damien Lespiaub2c88f52013-10-15 18:55:29 +01001584
1585 head = (head + 1) & (INTEL_PIPE_CRC_ENTRIES_NR - 1);
Damien Lespiaud538bbd2013-10-21 14:29:30 +01001586 pipe_crc->head = head;
1587
1588 spin_unlock(&pipe_crc->lock);
Damien Lespiau07144422013-10-15 18:55:40 +01001589
1590 wake_up_interruptible(&pipe_crc->wq);
Shuang He8bf1e9f2013-10-15 18:55:27 +01001591}
Daniel Vetter277de952013-10-18 16:37:07 +02001592#else
1593static inline void
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01001594display_pipe_crc_irq_handler(struct drm_i915_private *dev_priv,
1595 enum pipe pipe,
Daniel Vetter277de952013-10-18 16:37:07 +02001596 uint32_t crc0, uint32_t crc1,
1597 uint32_t crc2, uint32_t crc3,
1598 uint32_t crc4) {}
1599#endif
Daniel Vettereba94eb2013-10-16 22:55:46 +02001600
Daniel Vetter277de952013-10-18 16:37:07 +02001601
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01001602static void hsw_pipe_crc_irq_handler(struct drm_i915_private *dev_priv,
1603 enum pipe pipe)
Daniel Vetter5a69b892013-10-16 22:55:52 +02001604{
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01001605 display_pipe_crc_irq_handler(dev_priv, pipe,
Daniel Vetter277de952013-10-18 16:37:07 +02001606 I915_READ(PIPE_CRC_RES_1_IVB(pipe)),
1607 0, 0, 0, 0);
Daniel Vetter5a69b892013-10-16 22:55:52 +02001608}
1609
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01001610static void ivb_pipe_crc_irq_handler(struct drm_i915_private *dev_priv,
1611 enum pipe pipe)
Daniel Vettereba94eb2013-10-16 22:55:46 +02001612{
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01001613 display_pipe_crc_irq_handler(dev_priv, pipe,
Daniel Vetter277de952013-10-18 16:37:07 +02001614 I915_READ(PIPE_CRC_RES_1_IVB(pipe)),
1615 I915_READ(PIPE_CRC_RES_2_IVB(pipe)),
1616 I915_READ(PIPE_CRC_RES_3_IVB(pipe)),
1617 I915_READ(PIPE_CRC_RES_4_IVB(pipe)),
1618 I915_READ(PIPE_CRC_RES_5_IVB(pipe)));
Daniel Vettereba94eb2013-10-16 22:55:46 +02001619}
Daniel Vetter5b3a8562013-10-16 22:55:48 +02001620
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01001621static void i9xx_pipe_crc_irq_handler(struct drm_i915_private *dev_priv,
1622 enum pipe pipe)
Daniel Vetter5b3a8562013-10-16 22:55:48 +02001623{
Daniel Vetter0b5c5ed2013-10-16 22:55:53 +02001624 uint32_t res1, res2;
1625
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01001626 if (INTEL_GEN(dev_priv) >= 3)
Daniel Vetter0b5c5ed2013-10-16 22:55:53 +02001627 res1 = I915_READ(PIPE_CRC_RES_RES1_I915(pipe));
1628 else
1629 res1 = 0;
1630
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01001631 if (INTEL_GEN(dev_priv) >= 5 || IS_G4X(dev_priv))
Daniel Vetter0b5c5ed2013-10-16 22:55:53 +02001632 res2 = I915_READ(PIPE_CRC_RES_RES2_G4X(pipe));
1633 else
1634 res2 = 0;
Daniel Vetter5b3a8562013-10-16 22:55:48 +02001635
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01001636 display_pipe_crc_irq_handler(dev_priv, pipe,
Daniel Vetter277de952013-10-18 16:37:07 +02001637 I915_READ(PIPE_CRC_RES_RED(pipe)),
1638 I915_READ(PIPE_CRC_RES_GREEN(pipe)),
1639 I915_READ(PIPE_CRC_RES_BLUE(pipe)),
1640 res1, res2);
Daniel Vetter5b3a8562013-10-16 22:55:48 +02001641}
Shuang He8bf1e9f2013-10-15 18:55:27 +01001642
Paulo Zanoni1403c0d2013-08-15 11:51:32 -03001643/* The RPS events need forcewake, so we add them to a work queue and mask their
1644 * IMR bits until the work is done. Other interrupts can be processed without
1645 * the work queue. */
1646static void gen6_rps_irq_handler(struct drm_i915_private *dev_priv, u32 pm_iir)
Ben Widawskybaf02a12013-05-28 19:22:24 -07001647{
Deepak Sa6706b42014-03-15 20:23:22 +05301648 if (pm_iir & dev_priv->pm_rps_events) {
Daniel Vetter59cdb632013-07-04 23:35:28 +02001649 spin_lock(&dev_priv->irq_lock);
Akash Goelf4e9af42016-10-12 21:54:30 +05301650 gen6_mask_pm_irq(dev_priv, pm_iir & dev_priv->pm_rps_events);
Imre Deakd4d70aa2014-11-19 15:30:04 +02001651 if (dev_priv->rps.interrupts_enabled) {
1652 dev_priv->rps.pm_iir |= pm_iir & dev_priv->pm_rps_events;
Chris Wilsonc33d2472016-07-04 08:08:36 +01001653 schedule_work(&dev_priv->rps.work);
Imre Deakd4d70aa2014-11-19 15:30:04 +02001654 }
Daniel Vetter59cdb632013-07-04 23:35:28 +02001655 spin_unlock(&dev_priv->irq_lock);
Ben Widawskybaf02a12013-05-28 19:22:24 -07001656 }
Ben Widawskybaf02a12013-05-28 19:22:24 -07001657
Imre Deakc9a9a262014-11-05 20:48:37 +02001658 if (INTEL_INFO(dev_priv)->gen >= 8)
1659 return;
1660
Joonas Lahtinen2d1fe072016-04-07 11:08:05 +03001661 if (HAS_VEBOX(dev_priv)) {
Paulo Zanoni1403c0d2013-08-15 11:51:32 -03001662 if (pm_iir & PM_VEBOX_USER_INTERRUPT)
Akash Goel3b3f1652016-10-13 22:44:48 +05301663 notify_ring(dev_priv->engine[VECS]);
Ben Widawsky12638c52013-05-28 19:22:31 -07001664
Daniel Vetteraaecdf62014-11-04 15:52:22 +01001665 if (pm_iir & PM_VEBOX_CS_ERROR_INTERRUPT)
1666 DRM_DEBUG("Command parser error, pm_iir 0x%08x\n", pm_iir);
Ben Widawsky12638c52013-05-28 19:22:31 -07001667 }
Ben Widawskybaf02a12013-05-28 19:22:24 -07001668}
1669
Sagar Arun Kamble26705e22016-10-12 21:54:31 +05301670static void gen9_guc_irq_handler(struct drm_i915_private *dev_priv, u32 gt_iir)
1671{
1672 if (gt_iir & GEN9_GUC_TO_HOST_INT_EVENT) {
Sagar Arun Kamble4100b2a2016-10-12 21:54:32 +05301673 /* Sample the log buffer flush related bits & clear them out now
1674 * itself from the message identity register to minimize the
1675 * probability of losing a flush interrupt, when there are back
1676 * to back flush interrupts.
1677 * There can be a new flush interrupt, for different log buffer
1678 * type (like for ISR), whilst Host is handling one (for DPC).
1679 * Since same bit is used in message register for ISR & DPC, it
1680 * could happen that GuC sets the bit for 2nd interrupt but Host
1681 * clears out the bit on handling the 1st interrupt.
1682 */
1683 u32 msg, flush;
1684
1685 msg = I915_READ(SOFT_SCRATCH(15));
1686 flush = msg & (GUC2HOST_MSG_CRASH_DUMP_POSTED |
1687 GUC2HOST_MSG_FLUSH_LOG_BUFFER);
1688 if (flush) {
1689 /* Clear the message bits that are handled */
1690 I915_WRITE(SOFT_SCRATCH(15), msg & ~flush);
1691
1692 /* Handle flush interrupt in bottom half */
1693 queue_work(dev_priv->guc.log.flush_wq,
1694 &dev_priv->guc.log.flush_work);
Akash Goel5aa1ee42016-10-12 21:54:36 +05301695
1696 dev_priv->guc.log.flush_interrupt_count++;
Sagar Arun Kamble4100b2a2016-10-12 21:54:32 +05301697 } else {
1698 /* Not clearing of unhandled event bits won't result in
1699 * re-triggering of the interrupt.
1700 */
1701 }
Sagar Arun Kamble26705e22016-10-12 21:54:31 +05301702 }
1703}
1704
Daniel Vetter5a21b662016-05-24 17:13:53 +02001705static bool intel_pipe_handle_vblank(struct drm_i915_private *dev_priv,
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01001706 enum pipe pipe)
Ville Syrjälä8d7849d2014-04-29 13:35:46 +03001707{
Daniel Vetter5a21b662016-05-24 17:13:53 +02001708 bool ret;
1709
Chris Wilson91c8a322016-07-05 10:40:23 +01001710 ret = drm_handle_vblank(&dev_priv->drm, pipe);
Daniel Vetter5a21b662016-05-24 17:13:53 +02001711 if (ret)
Maarten Lankhorst51cbaf02016-05-17 15:07:49 +02001712 intel_finish_page_flip_mmio(dev_priv, pipe);
Daniel Vetter5a21b662016-05-24 17:13:53 +02001713
1714 return ret;
Ville Syrjälä8d7849d2014-04-29 13:35:46 +03001715}
1716
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01001717static void valleyview_pipestat_irq_ack(struct drm_i915_private *dev_priv,
1718 u32 iir, u32 pipe_stats[I915_MAX_PIPES])
Imre Deakc1874ed2014-02-04 21:35:46 +02001719{
Imre Deakc1874ed2014-02-04 21:35:46 +02001720 int pipe;
1721
Imre Deak58ead0d2014-02-04 21:35:47 +02001722 spin_lock(&dev_priv->irq_lock);
Ville Syrjälä1ca993d2016-02-18 21:54:26 +02001723
1724 if (!dev_priv->display_irqs_enabled) {
1725 spin_unlock(&dev_priv->irq_lock);
1726 return;
1727 }
1728
Damien Lespiau055e3932014-08-18 13:49:10 +01001729 for_each_pipe(dev_priv, pipe) {
Ville Syrjäläf0f59a02015-11-18 15:33:26 +02001730 i915_reg_t reg;
Daniel Vetterbbb5eeb2014-02-12 17:55:36 +01001731 u32 mask, iir_bit = 0;
Imre Deak91d181d2014-02-10 18:42:49 +02001732
Daniel Vetterbbb5eeb2014-02-12 17:55:36 +01001733 /*
1734 * PIPESTAT bits get signalled even when the interrupt is
1735 * disabled with the mask bits, and some of the status bits do
1736 * not generate interrupts at all (like the underrun bit). Hence
1737 * we need to be careful that we only handle what we want to
1738 * handle.
1739 */
Daniel Vetter0f239f42014-09-30 10:56:49 +02001740
1741 /* fifo underruns are filterered in the underrun handler. */
1742 mask = PIPE_FIFO_UNDERRUN_STATUS;
Daniel Vetterbbb5eeb2014-02-12 17:55:36 +01001743
1744 switch (pipe) {
1745 case PIPE_A:
1746 iir_bit = I915_DISPLAY_PIPE_A_EVENT_INTERRUPT;
1747 break;
1748 case PIPE_B:
1749 iir_bit = I915_DISPLAY_PIPE_B_EVENT_INTERRUPT;
1750 break;
Ville Syrjälä3278f672014-04-09 13:28:49 +03001751 case PIPE_C:
1752 iir_bit = I915_DISPLAY_PIPE_C_EVENT_INTERRUPT;
1753 break;
Daniel Vetterbbb5eeb2014-02-12 17:55:36 +01001754 }
1755 if (iir & iir_bit)
1756 mask |= dev_priv->pipestat_irq_mask[pipe];
1757
1758 if (!mask)
Imre Deak91d181d2014-02-10 18:42:49 +02001759 continue;
1760
1761 reg = PIPESTAT(pipe);
Daniel Vetterbbb5eeb2014-02-12 17:55:36 +01001762 mask |= PIPESTAT_INT_ENABLE_MASK;
1763 pipe_stats[pipe] = I915_READ(reg) & mask;
Imre Deakc1874ed2014-02-04 21:35:46 +02001764
1765 /*
1766 * Clear the PIPE*STAT regs before the IIR
1767 */
Imre Deak91d181d2014-02-10 18:42:49 +02001768 if (pipe_stats[pipe] & (PIPE_FIFO_UNDERRUN_STATUS |
1769 PIPESTAT_INT_STATUS_MASK))
Imre Deakc1874ed2014-02-04 21:35:46 +02001770 I915_WRITE(reg, pipe_stats[pipe]);
1771 }
Imre Deak58ead0d2014-02-04 21:35:47 +02001772 spin_unlock(&dev_priv->irq_lock);
Ville Syrjälä2ecb8ca2016-04-13 21:19:55 +03001773}
1774
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01001775static void valleyview_pipestat_irq_handler(struct drm_i915_private *dev_priv,
Ville Syrjälä2ecb8ca2016-04-13 21:19:55 +03001776 u32 pipe_stats[I915_MAX_PIPES])
1777{
Ville Syrjälä2ecb8ca2016-04-13 21:19:55 +03001778 enum pipe pipe;
Imre Deakc1874ed2014-02-04 21:35:46 +02001779
Damien Lespiau055e3932014-08-18 13:49:10 +01001780 for_each_pipe(dev_priv, pipe) {
Daniel Vetter5a21b662016-05-24 17:13:53 +02001781 if (pipe_stats[pipe] & PIPE_START_VBLANK_INTERRUPT_STATUS &&
1782 intel_pipe_handle_vblank(dev_priv, pipe))
1783 intel_check_page_flip(dev_priv, pipe);
Imre Deakc1874ed2014-02-04 21:35:46 +02001784
Maarten Lankhorst5251f042016-05-17 15:07:47 +02001785 if (pipe_stats[pipe] & PLANE_FLIP_DONE_INT_STATUS_VLV)
Maarten Lankhorst51cbaf02016-05-17 15:07:49 +02001786 intel_finish_page_flip_cs(dev_priv, pipe);
Imre Deakc1874ed2014-02-04 21:35:46 +02001787
1788 if (pipe_stats[pipe] & PIPE_CRC_DONE_INTERRUPT_STATUS)
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01001789 i9xx_pipe_crc_irq_handler(dev_priv, pipe);
Imre Deakc1874ed2014-02-04 21:35:46 +02001790
Daniel Vetter1f7247c2014-09-30 10:56:48 +02001791 if (pipe_stats[pipe] & PIPE_FIFO_UNDERRUN_STATUS)
1792 intel_cpu_fifo_underrun_irq_handler(dev_priv, pipe);
Imre Deakc1874ed2014-02-04 21:35:46 +02001793 }
1794
1795 if (pipe_stats[0] & PIPE_GMBUS_INTERRUPT_STATUS)
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01001796 gmbus_irq_handler(dev_priv);
Imre Deakc1874ed2014-02-04 21:35:46 +02001797}
1798
Ville Syrjälä1ae3c342016-04-13 21:19:54 +03001799static u32 i9xx_hpd_irq_ack(struct drm_i915_private *dev_priv)
Ville Syrjälä16c6c562014-04-01 10:54:36 +03001800{
Ville Syrjälä16c6c562014-04-01 10:54:36 +03001801 u32 hotplug_status = I915_READ(PORT_HOTPLUG_STAT);
Ville Syrjälä1ae3c342016-04-13 21:19:54 +03001802
1803 if (hotplug_status)
1804 I915_WRITE(PORT_HOTPLUG_STAT, hotplug_status);
1805
1806 return hotplug_status;
1807}
1808
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01001809static void i9xx_hpd_irq_handler(struct drm_i915_private *dev_priv,
Ville Syrjälä1ae3c342016-04-13 21:19:54 +03001810 u32 hotplug_status)
1811{
Ville Syrjälä42db67d2015-08-28 21:26:27 +03001812 u32 pin_mask = 0, long_mask = 0;
Ville Syrjälä16c6c562014-04-01 10:54:36 +03001813
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01001814 if (IS_G4X(dev_priv) || IS_VALLEYVIEW(dev_priv) ||
1815 IS_CHERRYVIEW(dev_priv)) {
Jani Nikula0d2e4292015-05-27 15:03:39 +03001816 u32 hotplug_trigger = hotplug_status & HOTPLUG_INT_STATUS_G4X;
Oscar Mateo3ff60f82014-06-16 16:10:58 +01001817
Ville Syrjälä58f2cf22015-08-28 22:59:08 +03001818 if (hotplug_trigger) {
1819 intel_get_hpd_pins(&pin_mask, &long_mask, hotplug_trigger,
1820 hotplug_trigger, hpd_status_g4x,
1821 i9xx_port_hotplug_long_detect);
1822
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01001823 intel_hpd_irq_handler(dev_priv, pin_mask, long_mask);
Ville Syrjälä58f2cf22015-08-28 22:59:08 +03001824 }
Jani Nikula369712e2015-05-27 15:03:40 +03001825
1826 if (hotplug_status & DP_AUX_CHANNEL_MASK_INT_STATUS_G4X)
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01001827 dp_aux_irq_handler(dev_priv);
Jani Nikula0d2e4292015-05-27 15:03:39 +03001828 } else {
1829 u32 hotplug_trigger = hotplug_status & HOTPLUG_INT_STATUS_I915;
Oscar Mateo3ff60f82014-06-16 16:10:58 +01001830
Ville Syrjälä58f2cf22015-08-28 22:59:08 +03001831 if (hotplug_trigger) {
1832 intel_get_hpd_pins(&pin_mask, &long_mask, hotplug_trigger,
Daniel Vetter44cc6c02015-09-30 08:47:41 +02001833 hotplug_trigger, hpd_status_i915,
Ville Syrjälä58f2cf22015-08-28 22:59:08 +03001834 i9xx_port_hotplug_long_detect);
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01001835 intel_hpd_irq_handler(dev_priv, pin_mask, long_mask);
Ville Syrjälä58f2cf22015-08-28 22:59:08 +03001836 }
Ville Syrjälä16c6c562014-04-01 10:54:36 +03001837 }
Ville Syrjälä16c6c562014-04-01 10:54:36 +03001838}
1839
Daniel Vetterff1f5252012-10-02 15:10:55 +02001840static irqreturn_t valleyview_irq_handler(int irq, void *arg)
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07001841{
Daniel Vetter45a83f82014-05-12 19:17:55 +02001842 struct drm_device *dev = arg;
Chris Wilsonfac5e232016-07-04 11:34:36 +01001843 struct drm_i915_private *dev_priv = to_i915(dev);
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07001844 irqreturn_t ret = IRQ_NONE;
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07001845
Imre Deak2dd2a882015-02-24 11:14:30 +02001846 if (!intel_irqs_enabled(dev_priv))
1847 return IRQ_NONE;
1848
Imre Deak1f814da2015-12-16 02:52:19 +02001849 /* IRQs are synced during runtime_suspend, we don't require a wakeref */
1850 disable_rpm_wakeref_asserts(dev_priv);
1851
Ville Syrjälä1e1cace2016-04-13 21:19:52 +03001852 do {
Ville Syrjälä6e814802016-04-13 21:19:53 +03001853 u32 iir, gt_iir, pm_iir;
Ville Syrjälä2ecb8ca2016-04-13 21:19:55 +03001854 u32 pipe_stats[I915_MAX_PIPES] = {};
Ville Syrjälä1ae3c342016-04-13 21:19:54 +03001855 u32 hotplug_status = 0;
Ville Syrjäläa5e485a2016-04-13 21:19:51 +03001856 u32 ier = 0;
Oscar Mateo3ff60f82014-06-16 16:10:58 +01001857
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07001858 gt_iir = I915_READ(GTIIR);
1859 pm_iir = I915_READ(GEN6_PMIIR);
Oscar Mateo3ff60f82014-06-16 16:10:58 +01001860 iir = I915_READ(VLV_IIR);
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07001861
1862 if (gt_iir == 0 && pm_iir == 0 && iir == 0)
Ville Syrjälä1e1cace2016-04-13 21:19:52 +03001863 break;
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07001864
1865 ret = IRQ_HANDLED;
1866
Ville Syrjäläa5e485a2016-04-13 21:19:51 +03001867 /*
1868 * Theory on interrupt generation, based on empirical evidence:
1869 *
1870 * x = ((VLV_IIR & VLV_IER) ||
1871 * (((GT_IIR & GT_IER) || (GEN6_PMIIR & GEN6_PMIER)) &&
1872 * (VLV_MASTER_IER & MASTER_INTERRUPT_ENABLE)));
1873 *
1874 * A CPU interrupt will only be raised when 'x' has a 0->1 edge.
1875 * Hence we clear MASTER_INTERRUPT_ENABLE and VLV_IER to
1876 * guarantee the CPU interrupt will be raised again even if we
1877 * don't end up clearing all the VLV_IIR, GT_IIR, GEN6_PMIIR
1878 * bits this time around.
1879 */
Ville Syrjälä4a0a0202016-04-13 21:19:50 +03001880 I915_WRITE(VLV_MASTER_IER, 0);
Ville Syrjäläa5e485a2016-04-13 21:19:51 +03001881 ier = I915_READ(VLV_IER);
1882 I915_WRITE(VLV_IER, 0);
Ville Syrjälä4a0a0202016-04-13 21:19:50 +03001883
1884 if (gt_iir)
1885 I915_WRITE(GTIIR, gt_iir);
1886 if (pm_iir)
1887 I915_WRITE(GEN6_PMIIR, pm_iir);
1888
Ville Syrjälä7ce4d1f2016-04-13 21:19:49 +03001889 if (iir & I915_DISPLAY_PORT_INTERRUPT)
Ville Syrjälä1ae3c342016-04-13 21:19:54 +03001890 hotplug_status = i9xx_hpd_irq_ack(dev_priv);
Ville Syrjälä7ce4d1f2016-04-13 21:19:49 +03001891
Oscar Mateo3ff60f82014-06-16 16:10:58 +01001892 /* Call regardless, as some status bits might not be
1893 * signalled in iir */
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01001894 valleyview_pipestat_irq_ack(dev_priv, iir, pipe_stats);
Ville Syrjälä7ce4d1f2016-04-13 21:19:49 +03001895
1896 /*
1897 * VLV_IIR is single buffered, and reflects the level
1898 * from PIPESTAT/PORT_HOTPLUG_STAT, hence clear it last.
1899 */
1900 if (iir)
1901 I915_WRITE(VLV_IIR, iir);
Ville Syrjälä4a0a0202016-04-13 21:19:50 +03001902
Ville Syrjäläa5e485a2016-04-13 21:19:51 +03001903 I915_WRITE(VLV_IER, ier);
Ville Syrjälä4a0a0202016-04-13 21:19:50 +03001904 I915_WRITE(VLV_MASTER_IER, MASTER_INTERRUPT_ENABLE);
1905 POSTING_READ(VLV_MASTER_IER);
Ville Syrjälä1ae3c342016-04-13 21:19:54 +03001906
Ville Syrjälä52894872016-04-13 21:19:56 +03001907 if (gt_iir)
Ville Syrjälä261e40b2016-04-13 21:19:57 +03001908 snb_gt_irq_handler(dev_priv, gt_iir);
Ville Syrjälä52894872016-04-13 21:19:56 +03001909 if (pm_iir)
1910 gen6_rps_irq_handler(dev_priv, pm_iir);
1911
Ville Syrjälä1ae3c342016-04-13 21:19:54 +03001912 if (hotplug_status)
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01001913 i9xx_hpd_irq_handler(dev_priv, hotplug_status);
Ville Syrjälä2ecb8ca2016-04-13 21:19:55 +03001914
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01001915 valleyview_pipestat_irq_handler(dev_priv, pipe_stats);
Ville Syrjälä1e1cace2016-04-13 21:19:52 +03001916 } while (0);
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07001917
Imre Deak1f814da2015-12-16 02:52:19 +02001918 enable_rpm_wakeref_asserts(dev_priv);
1919
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07001920 return ret;
1921}
1922
Ville Syrjälä43f328d2014-04-09 20:40:52 +03001923static irqreturn_t cherryview_irq_handler(int irq, void *arg)
1924{
Daniel Vetter45a83f82014-05-12 19:17:55 +02001925 struct drm_device *dev = arg;
Chris Wilsonfac5e232016-07-04 11:34:36 +01001926 struct drm_i915_private *dev_priv = to_i915(dev);
Ville Syrjälä43f328d2014-04-09 20:40:52 +03001927 irqreturn_t ret = IRQ_NONE;
Ville Syrjälä43f328d2014-04-09 20:40:52 +03001928
Imre Deak2dd2a882015-02-24 11:14:30 +02001929 if (!intel_irqs_enabled(dev_priv))
1930 return IRQ_NONE;
1931
Imre Deak1f814da2015-12-16 02:52:19 +02001932 /* IRQs are synced during runtime_suspend, we don't require a wakeref */
1933 disable_rpm_wakeref_asserts(dev_priv);
1934
Chris Wilson579de732016-03-14 09:01:57 +00001935 do {
Ville Syrjälä6e814802016-04-13 21:19:53 +03001936 u32 master_ctl, iir;
Ville Syrjäläe30e2512016-04-13 21:19:58 +03001937 u32 gt_iir[4] = {};
Ville Syrjälä2ecb8ca2016-04-13 21:19:55 +03001938 u32 pipe_stats[I915_MAX_PIPES] = {};
Ville Syrjälä1ae3c342016-04-13 21:19:54 +03001939 u32 hotplug_status = 0;
Ville Syrjäläa5e485a2016-04-13 21:19:51 +03001940 u32 ier = 0;
1941
Ville Syrjälä8e5fd592014-04-09 13:28:50 +03001942 master_ctl = I915_READ(GEN8_MASTER_IRQ) & ~GEN8_MASTER_IRQ_CONTROL;
1943 iir = I915_READ(VLV_IIR);
Ville Syrjälä3278f672014-04-09 13:28:49 +03001944
Ville Syrjälä8e5fd592014-04-09 13:28:50 +03001945 if (master_ctl == 0 && iir == 0)
1946 break;
Ville Syrjälä43f328d2014-04-09 20:40:52 +03001947
Oscar Mateo27b6c122014-06-16 16:11:00 +01001948 ret = IRQ_HANDLED;
1949
Ville Syrjäläa5e485a2016-04-13 21:19:51 +03001950 /*
1951 * Theory on interrupt generation, based on empirical evidence:
1952 *
1953 * x = ((VLV_IIR & VLV_IER) ||
1954 * ((GEN8_MASTER_IRQ & ~GEN8_MASTER_IRQ_CONTROL) &&
1955 * (GEN8_MASTER_IRQ & GEN8_MASTER_IRQ_CONTROL)));
1956 *
1957 * A CPU interrupt will only be raised when 'x' has a 0->1 edge.
1958 * Hence we clear GEN8_MASTER_IRQ_CONTROL and VLV_IER to
1959 * guarantee the CPU interrupt will be raised again even if we
1960 * don't end up clearing all the VLV_IIR and GEN8_MASTER_IRQ_CONTROL
1961 * bits this time around.
1962 */
Ville Syrjälä8e5fd592014-04-09 13:28:50 +03001963 I915_WRITE(GEN8_MASTER_IRQ, 0);
Ville Syrjäläa5e485a2016-04-13 21:19:51 +03001964 ier = I915_READ(VLV_IER);
1965 I915_WRITE(VLV_IER, 0);
Ville Syrjälä43f328d2014-04-09 20:40:52 +03001966
Ville Syrjäläe30e2512016-04-13 21:19:58 +03001967 gen8_gt_irq_ack(dev_priv, master_ctl, gt_iir);
Ville Syrjälä43f328d2014-04-09 20:40:52 +03001968
Ville Syrjälä7ce4d1f2016-04-13 21:19:49 +03001969 if (iir & I915_DISPLAY_PORT_INTERRUPT)
Ville Syrjälä1ae3c342016-04-13 21:19:54 +03001970 hotplug_status = i9xx_hpd_irq_ack(dev_priv);
Ville Syrjälä7ce4d1f2016-04-13 21:19:49 +03001971
Oscar Mateo27b6c122014-06-16 16:11:00 +01001972 /* Call regardless, as some status bits might not be
1973 * signalled in iir */
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01001974 valleyview_pipestat_irq_ack(dev_priv, iir, pipe_stats);
Ville Syrjälä43f328d2014-04-09 20:40:52 +03001975
Ville Syrjälä7ce4d1f2016-04-13 21:19:49 +03001976 /*
1977 * VLV_IIR is single buffered, and reflects the level
1978 * from PIPESTAT/PORT_HOTPLUG_STAT, hence clear it last.
1979 */
1980 if (iir)
1981 I915_WRITE(VLV_IIR, iir);
1982
Ville Syrjäläa5e485a2016-04-13 21:19:51 +03001983 I915_WRITE(VLV_IER, ier);
Ville Syrjäläe5328c42016-04-13 21:19:47 +03001984 I915_WRITE(GEN8_MASTER_IRQ, GEN8_MASTER_IRQ_CONTROL);
Ville Syrjälä8e5fd592014-04-09 13:28:50 +03001985 POSTING_READ(GEN8_MASTER_IRQ);
Ville Syrjälä1ae3c342016-04-13 21:19:54 +03001986
Ville Syrjäläe30e2512016-04-13 21:19:58 +03001987 gen8_gt_irq_handler(dev_priv, gt_iir);
1988
Ville Syrjälä1ae3c342016-04-13 21:19:54 +03001989 if (hotplug_status)
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01001990 i9xx_hpd_irq_handler(dev_priv, hotplug_status);
Ville Syrjälä2ecb8ca2016-04-13 21:19:55 +03001991
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01001992 valleyview_pipestat_irq_handler(dev_priv, pipe_stats);
Chris Wilson579de732016-03-14 09:01:57 +00001993 } while (0);
Ville Syrjälä43f328d2014-04-09 20:40:52 +03001994
Imre Deak1f814da2015-12-16 02:52:19 +02001995 enable_rpm_wakeref_asserts(dev_priv);
1996
Ville Syrjälä43f328d2014-04-09 20:40:52 +03001997 return ret;
1998}
1999
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002000static void ibx_hpd_irq_handler(struct drm_i915_private *dev_priv,
2001 u32 hotplug_trigger,
Ville Syrjälä40e56412015-08-27 23:56:10 +03002002 const u32 hpd[HPD_NUM_PINS])
2003{
Ville Syrjälä40e56412015-08-27 23:56:10 +03002004 u32 dig_hotplug_reg, pin_mask = 0, long_mask = 0;
2005
Jani Nikula6a39d7c2015-11-25 16:47:22 +02002006 /*
2007 * Somehow the PCH doesn't seem to really ack the interrupt to the CPU
2008 * unless we touch the hotplug register, even if hotplug_trigger is
2009 * zero. Not acking leads to "The master control interrupt lied (SDE)!"
2010 * errors.
2011 */
Ville Syrjälä40e56412015-08-27 23:56:10 +03002012 dig_hotplug_reg = I915_READ(PCH_PORT_HOTPLUG);
Jani Nikula6a39d7c2015-11-25 16:47:22 +02002013 if (!hotplug_trigger) {
2014 u32 mask = PORTA_HOTPLUG_STATUS_MASK |
2015 PORTD_HOTPLUG_STATUS_MASK |
2016 PORTC_HOTPLUG_STATUS_MASK |
2017 PORTB_HOTPLUG_STATUS_MASK;
2018 dig_hotplug_reg &= ~mask;
2019 }
2020
Ville Syrjälä40e56412015-08-27 23:56:10 +03002021 I915_WRITE(PCH_PORT_HOTPLUG, dig_hotplug_reg);
Jani Nikula6a39d7c2015-11-25 16:47:22 +02002022 if (!hotplug_trigger)
2023 return;
Ville Syrjälä40e56412015-08-27 23:56:10 +03002024
2025 intel_get_hpd_pins(&pin_mask, &long_mask, hotplug_trigger,
2026 dig_hotplug_reg, hpd,
2027 pch_port_hotplug_long_detect);
2028
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002029 intel_hpd_irq_handler(dev_priv, pin_mask, long_mask);
Ville Syrjälä40e56412015-08-27 23:56:10 +03002030}
2031
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002032static void ibx_irq_handler(struct drm_i915_private *dev_priv, u32 pch_iir)
Jesse Barnes776ad802011-01-04 15:09:39 -08002033{
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08002034 int pipe;
Egbert Eichb543fb02013-04-16 13:36:54 +02002035 u32 hotplug_trigger = pch_iir & SDE_HOTPLUG_MASK;
Jesse Barnes776ad802011-01-04 15:09:39 -08002036
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002037 ibx_hpd_irq_handler(dev_priv, hotplug_trigger, hpd_ibx);
Daniel Vetter91d131d2013-06-27 17:52:14 +02002038
Ville Syrjäläcfc33bf2013-04-17 17:48:48 +03002039 if (pch_iir & SDE_AUDIO_POWER_MASK) {
2040 int port = ffs((pch_iir & SDE_AUDIO_POWER_MASK) >>
2041 SDE_AUDIO_POWER_SHIFT);
Jesse Barnes776ad802011-01-04 15:09:39 -08002042 DRM_DEBUG_DRIVER("PCH audio power change on port %d\n",
Ville Syrjäläcfc33bf2013-04-17 17:48:48 +03002043 port_name(port));
2044 }
Jesse Barnes776ad802011-01-04 15:09:39 -08002045
Daniel Vetterce99c252012-12-01 13:53:47 +01002046 if (pch_iir & SDE_AUX_MASK)
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002047 dp_aux_irq_handler(dev_priv);
Daniel Vetterce99c252012-12-01 13:53:47 +01002048
Jesse Barnes776ad802011-01-04 15:09:39 -08002049 if (pch_iir & SDE_GMBUS)
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002050 gmbus_irq_handler(dev_priv);
Jesse Barnes776ad802011-01-04 15:09:39 -08002051
2052 if (pch_iir & SDE_AUDIO_HDCP_MASK)
2053 DRM_DEBUG_DRIVER("PCH HDCP audio interrupt\n");
2054
2055 if (pch_iir & SDE_AUDIO_TRANS_MASK)
2056 DRM_DEBUG_DRIVER("PCH transcoder audio interrupt\n");
2057
2058 if (pch_iir & SDE_POISON)
2059 DRM_ERROR("PCH poison interrupt\n");
2060
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08002061 if (pch_iir & SDE_FDI_MASK)
Damien Lespiau055e3932014-08-18 13:49:10 +01002062 for_each_pipe(dev_priv, pipe)
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08002063 DRM_DEBUG_DRIVER(" pipe %c FDI IIR: 0x%08x\n",
2064 pipe_name(pipe),
2065 I915_READ(FDI_RX_IIR(pipe)));
Jesse Barnes776ad802011-01-04 15:09:39 -08002066
2067 if (pch_iir & (SDE_TRANSB_CRC_DONE | SDE_TRANSA_CRC_DONE))
2068 DRM_DEBUG_DRIVER("PCH transcoder CRC done interrupt\n");
2069
2070 if (pch_iir & (SDE_TRANSB_CRC_ERR | SDE_TRANSA_CRC_ERR))
2071 DRM_DEBUG_DRIVER("PCH transcoder CRC error interrupt\n");
2072
Jesse Barnes776ad802011-01-04 15:09:39 -08002073 if (pch_iir & SDE_TRANSA_FIFO_UNDER)
Daniel Vetter1f7247c2014-09-30 10:56:48 +02002074 intel_pch_fifo_underrun_irq_handler(dev_priv, TRANSCODER_A);
Paulo Zanoni86642812013-04-12 17:57:57 -03002075
2076 if (pch_iir & SDE_TRANSB_FIFO_UNDER)
Daniel Vetter1f7247c2014-09-30 10:56:48 +02002077 intel_pch_fifo_underrun_irq_handler(dev_priv, TRANSCODER_B);
Paulo Zanoni86642812013-04-12 17:57:57 -03002078}
2079
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002080static void ivb_err_int_handler(struct drm_i915_private *dev_priv)
Paulo Zanoni86642812013-04-12 17:57:57 -03002081{
Paulo Zanoni86642812013-04-12 17:57:57 -03002082 u32 err_int = I915_READ(GEN7_ERR_INT);
Daniel Vetter5a69b892013-10-16 22:55:52 +02002083 enum pipe pipe;
Paulo Zanoni86642812013-04-12 17:57:57 -03002084
Paulo Zanonide032bf2013-04-12 17:57:58 -03002085 if (err_int & ERR_INT_POISON)
2086 DRM_ERROR("Poison interrupt\n");
2087
Damien Lespiau055e3932014-08-18 13:49:10 +01002088 for_each_pipe(dev_priv, pipe) {
Daniel Vetter1f7247c2014-09-30 10:56:48 +02002089 if (err_int & ERR_INT_FIFO_UNDERRUN(pipe))
2090 intel_cpu_fifo_underrun_irq_handler(dev_priv, pipe);
Paulo Zanoni86642812013-04-12 17:57:57 -03002091
Daniel Vetter5a69b892013-10-16 22:55:52 +02002092 if (err_int & ERR_INT_PIPE_CRC_DONE(pipe)) {
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002093 if (IS_IVYBRIDGE(dev_priv))
2094 ivb_pipe_crc_irq_handler(dev_priv, pipe);
Daniel Vetter5a69b892013-10-16 22:55:52 +02002095 else
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002096 hsw_pipe_crc_irq_handler(dev_priv, pipe);
Daniel Vetter5a69b892013-10-16 22:55:52 +02002097 }
2098 }
Shuang He8bf1e9f2013-10-15 18:55:27 +01002099
Paulo Zanoni86642812013-04-12 17:57:57 -03002100 I915_WRITE(GEN7_ERR_INT, err_int);
2101}
2102
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002103static void cpt_serr_int_handler(struct drm_i915_private *dev_priv)
Paulo Zanoni86642812013-04-12 17:57:57 -03002104{
Paulo Zanoni86642812013-04-12 17:57:57 -03002105 u32 serr_int = I915_READ(SERR_INT);
2106
Paulo Zanonide032bf2013-04-12 17:57:58 -03002107 if (serr_int & SERR_INT_POISON)
2108 DRM_ERROR("PCH poison interrupt\n");
2109
Paulo Zanoni86642812013-04-12 17:57:57 -03002110 if (serr_int & SERR_INT_TRANS_A_FIFO_UNDERRUN)
Daniel Vetter1f7247c2014-09-30 10:56:48 +02002111 intel_pch_fifo_underrun_irq_handler(dev_priv, TRANSCODER_A);
Paulo Zanoni86642812013-04-12 17:57:57 -03002112
2113 if (serr_int & SERR_INT_TRANS_B_FIFO_UNDERRUN)
Daniel Vetter1f7247c2014-09-30 10:56:48 +02002114 intel_pch_fifo_underrun_irq_handler(dev_priv, TRANSCODER_B);
Paulo Zanoni86642812013-04-12 17:57:57 -03002115
2116 if (serr_int & SERR_INT_TRANS_C_FIFO_UNDERRUN)
Daniel Vetter1f7247c2014-09-30 10:56:48 +02002117 intel_pch_fifo_underrun_irq_handler(dev_priv, TRANSCODER_C);
Paulo Zanoni86642812013-04-12 17:57:57 -03002118
2119 I915_WRITE(SERR_INT, serr_int);
Jesse Barnes776ad802011-01-04 15:09:39 -08002120}
2121
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002122static void cpt_irq_handler(struct drm_i915_private *dev_priv, u32 pch_iir)
Adam Jackson23e81d62012-06-06 15:45:44 -04002123{
Adam Jackson23e81d62012-06-06 15:45:44 -04002124 int pipe;
Ville Syrjälä6dbf30c2015-08-27 23:56:02 +03002125 u32 hotplug_trigger = pch_iir & SDE_HOTPLUG_MASK_CPT;
Adam Jackson23e81d62012-06-06 15:45:44 -04002126
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002127 ibx_hpd_irq_handler(dev_priv, hotplug_trigger, hpd_cpt);
Daniel Vetter91d131d2013-06-27 17:52:14 +02002128
Ville Syrjäläcfc33bf2013-04-17 17:48:48 +03002129 if (pch_iir & SDE_AUDIO_POWER_MASK_CPT) {
2130 int port = ffs((pch_iir & SDE_AUDIO_POWER_MASK_CPT) >>
2131 SDE_AUDIO_POWER_SHIFT_CPT);
2132 DRM_DEBUG_DRIVER("PCH audio power change on port %c\n",
2133 port_name(port));
2134 }
Adam Jackson23e81d62012-06-06 15:45:44 -04002135
2136 if (pch_iir & SDE_AUX_MASK_CPT)
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002137 dp_aux_irq_handler(dev_priv);
Adam Jackson23e81d62012-06-06 15:45:44 -04002138
2139 if (pch_iir & SDE_GMBUS_CPT)
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002140 gmbus_irq_handler(dev_priv);
Adam Jackson23e81d62012-06-06 15:45:44 -04002141
2142 if (pch_iir & SDE_AUDIO_CP_REQ_CPT)
2143 DRM_DEBUG_DRIVER("Audio CP request interrupt\n");
2144
2145 if (pch_iir & SDE_AUDIO_CP_CHG_CPT)
2146 DRM_DEBUG_DRIVER("Audio CP change interrupt\n");
2147
2148 if (pch_iir & SDE_FDI_MASK_CPT)
Damien Lespiau055e3932014-08-18 13:49:10 +01002149 for_each_pipe(dev_priv, pipe)
Adam Jackson23e81d62012-06-06 15:45:44 -04002150 DRM_DEBUG_DRIVER(" pipe %c FDI IIR: 0x%08x\n",
2151 pipe_name(pipe),
2152 I915_READ(FDI_RX_IIR(pipe)));
Paulo Zanoni86642812013-04-12 17:57:57 -03002153
2154 if (pch_iir & SDE_ERROR_CPT)
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002155 cpt_serr_int_handler(dev_priv);
Adam Jackson23e81d62012-06-06 15:45:44 -04002156}
2157
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002158static void spt_irq_handler(struct drm_i915_private *dev_priv, u32 pch_iir)
Ville Syrjälä6dbf30c2015-08-27 23:56:02 +03002159{
Ville Syrjälä6dbf30c2015-08-27 23:56:02 +03002160 u32 hotplug_trigger = pch_iir & SDE_HOTPLUG_MASK_SPT &
2161 ~SDE_PORTE_HOTPLUG_SPT;
2162 u32 hotplug2_trigger = pch_iir & SDE_PORTE_HOTPLUG_SPT;
2163 u32 pin_mask = 0, long_mask = 0;
2164
2165 if (hotplug_trigger) {
2166 u32 dig_hotplug_reg;
2167
2168 dig_hotplug_reg = I915_READ(PCH_PORT_HOTPLUG);
2169 I915_WRITE(PCH_PORT_HOTPLUG, dig_hotplug_reg);
2170
2171 intel_get_hpd_pins(&pin_mask, &long_mask, hotplug_trigger,
2172 dig_hotplug_reg, hpd_spt,
Ville Syrjälä74c0b392015-08-27 23:56:07 +03002173 spt_port_hotplug_long_detect);
Ville Syrjälä6dbf30c2015-08-27 23:56:02 +03002174 }
2175
2176 if (hotplug2_trigger) {
2177 u32 dig_hotplug_reg;
2178
2179 dig_hotplug_reg = I915_READ(PCH_PORT_HOTPLUG2);
2180 I915_WRITE(PCH_PORT_HOTPLUG2, dig_hotplug_reg);
2181
2182 intel_get_hpd_pins(&pin_mask, &long_mask, hotplug2_trigger,
2183 dig_hotplug_reg, hpd_spt,
2184 spt_port_hotplug2_long_detect);
2185 }
2186
2187 if (pin_mask)
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002188 intel_hpd_irq_handler(dev_priv, pin_mask, long_mask);
Ville Syrjälä6dbf30c2015-08-27 23:56:02 +03002189
2190 if (pch_iir & SDE_GMBUS_CPT)
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002191 gmbus_irq_handler(dev_priv);
Ville Syrjälä6dbf30c2015-08-27 23:56:02 +03002192}
2193
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002194static void ilk_hpd_irq_handler(struct drm_i915_private *dev_priv,
2195 u32 hotplug_trigger,
Ville Syrjälä40e56412015-08-27 23:56:10 +03002196 const u32 hpd[HPD_NUM_PINS])
2197{
Ville Syrjälä40e56412015-08-27 23:56:10 +03002198 u32 dig_hotplug_reg, pin_mask = 0, long_mask = 0;
2199
2200 dig_hotplug_reg = I915_READ(DIGITAL_PORT_HOTPLUG_CNTRL);
2201 I915_WRITE(DIGITAL_PORT_HOTPLUG_CNTRL, dig_hotplug_reg);
2202
2203 intel_get_hpd_pins(&pin_mask, &long_mask, hotplug_trigger,
2204 dig_hotplug_reg, hpd,
2205 ilk_port_hotplug_long_detect);
2206
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002207 intel_hpd_irq_handler(dev_priv, pin_mask, long_mask);
Ville Syrjälä40e56412015-08-27 23:56:10 +03002208}
2209
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002210static void ilk_display_irq_handler(struct drm_i915_private *dev_priv,
2211 u32 de_iir)
Paulo Zanonic008bc62013-07-12 16:35:10 -03002212{
Daniel Vetter40da17c22013-10-21 18:04:36 +02002213 enum pipe pipe;
Ville Syrjäläe4ce95a2015-08-27 23:56:03 +03002214 u32 hotplug_trigger = de_iir & DE_DP_A_HOTPLUG;
2215
Ville Syrjälä40e56412015-08-27 23:56:10 +03002216 if (hotplug_trigger)
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002217 ilk_hpd_irq_handler(dev_priv, hotplug_trigger, hpd_ilk);
Paulo Zanonic008bc62013-07-12 16:35:10 -03002218
2219 if (de_iir & DE_AUX_CHANNEL_A)
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002220 dp_aux_irq_handler(dev_priv);
Paulo Zanonic008bc62013-07-12 16:35:10 -03002221
2222 if (de_iir & DE_GSE)
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002223 intel_opregion_asle_intr(dev_priv);
Paulo Zanonic008bc62013-07-12 16:35:10 -03002224
Paulo Zanonic008bc62013-07-12 16:35:10 -03002225 if (de_iir & DE_POISON)
2226 DRM_ERROR("Poison interrupt\n");
2227
Damien Lespiau055e3932014-08-18 13:49:10 +01002228 for_each_pipe(dev_priv, pipe) {
Daniel Vetter5a21b662016-05-24 17:13:53 +02002229 if (de_iir & DE_PIPE_VBLANK(pipe) &&
2230 intel_pipe_handle_vblank(dev_priv, pipe))
2231 intel_check_page_flip(dev_priv, pipe);
Paulo Zanonic008bc62013-07-12 16:35:10 -03002232
Daniel Vetter40da17c22013-10-21 18:04:36 +02002233 if (de_iir & DE_PIPE_FIFO_UNDERRUN(pipe))
Daniel Vetter1f7247c2014-09-30 10:56:48 +02002234 intel_cpu_fifo_underrun_irq_handler(dev_priv, pipe);
Paulo Zanonic008bc62013-07-12 16:35:10 -03002235
Daniel Vetter40da17c22013-10-21 18:04:36 +02002236 if (de_iir & DE_PIPE_CRC_DONE(pipe))
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002237 i9xx_pipe_crc_irq_handler(dev_priv, pipe);
Daniel Vetter5b3a8562013-10-16 22:55:48 +02002238
Daniel Vetter40da17c22013-10-21 18:04:36 +02002239 /* plane/pipes map 1:1 on ilk+ */
Maarten Lankhorst5251f042016-05-17 15:07:47 +02002240 if (de_iir & DE_PLANE_FLIP_DONE(pipe))
Maarten Lankhorst51cbaf02016-05-17 15:07:49 +02002241 intel_finish_page_flip_cs(dev_priv, pipe);
Paulo Zanonic008bc62013-07-12 16:35:10 -03002242 }
2243
2244 /* check event from PCH */
2245 if (de_iir & DE_PCH_EVENT) {
2246 u32 pch_iir = I915_READ(SDEIIR);
2247
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002248 if (HAS_PCH_CPT(dev_priv))
2249 cpt_irq_handler(dev_priv, pch_iir);
Paulo Zanonic008bc62013-07-12 16:35:10 -03002250 else
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002251 ibx_irq_handler(dev_priv, pch_iir);
Paulo Zanonic008bc62013-07-12 16:35:10 -03002252
2253 /* should clear PCH hotplug event before clear CPU irq */
2254 I915_WRITE(SDEIIR, pch_iir);
2255 }
2256
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002257 if (IS_GEN5(dev_priv) && de_iir & DE_PCU_EVENT)
2258 ironlake_rps_change_irq_handler(dev_priv);
Paulo Zanonic008bc62013-07-12 16:35:10 -03002259}
2260
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002261static void ivb_display_irq_handler(struct drm_i915_private *dev_priv,
2262 u32 de_iir)
Paulo Zanoni9719fb92013-07-12 16:35:11 -03002263{
Damien Lespiau07d27e22014-03-03 17:31:46 +00002264 enum pipe pipe;
Ville Syrjälä23bb4cb2015-08-27 23:56:04 +03002265 u32 hotplug_trigger = de_iir & DE_DP_A_HOTPLUG_IVB;
2266
Ville Syrjälä40e56412015-08-27 23:56:10 +03002267 if (hotplug_trigger)
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002268 ilk_hpd_irq_handler(dev_priv, hotplug_trigger, hpd_ivb);
Paulo Zanoni9719fb92013-07-12 16:35:11 -03002269
2270 if (de_iir & DE_ERR_INT_IVB)
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002271 ivb_err_int_handler(dev_priv);
Paulo Zanoni9719fb92013-07-12 16:35:11 -03002272
2273 if (de_iir & DE_AUX_CHANNEL_A_IVB)
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002274 dp_aux_irq_handler(dev_priv);
Paulo Zanoni9719fb92013-07-12 16:35:11 -03002275
2276 if (de_iir & DE_GSE_IVB)
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002277 intel_opregion_asle_intr(dev_priv);
Paulo Zanoni9719fb92013-07-12 16:35:11 -03002278
Damien Lespiau055e3932014-08-18 13:49:10 +01002279 for_each_pipe(dev_priv, pipe) {
Daniel Vetter5a21b662016-05-24 17:13:53 +02002280 if (de_iir & (DE_PIPE_VBLANK_IVB(pipe)) &&
2281 intel_pipe_handle_vblank(dev_priv, pipe))
2282 intel_check_page_flip(dev_priv, pipe);
Daniel Vetter40da17c22013-10-21 18:04:36 +02002283
2284 /* plane/pipes map 1:1 on ilk+ */
Maarten Lankhorst5251f042016-05-17 15:07:47 +02002285 if (de_iir & DE_PLANE_FLIP_DONE_IVB(pipe))
Maarten Lankhorst51cbaf02016-05-17 15:07:49 +02002286 intel_finish_page_flip_cs(dev_priv, pipe);
Paulo Zanoni9719fb92013-07-12 16:35:11 -03002287 }
2288
2289 /* check event from PCH */
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002290 if (!HAS_PCH_NOP(dev_priv) && (de_iir & DE_PCH_EVENT_IVB)) {
Paulo Zanoni9719fb92013-07-12 16:35:11 -03002291 u32 pch_iir = I915_READ(SDEIIR);
2292
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002293 cpt_irq_handler(dev_priv, pch_iir);
Paulo Zanoni9719fb92013-07-12 16:35:11 -03002294
2295 /* clear PCH hotplug event before clear CPU irq */
2296 I915_WRITE(SDEIIR, pch_iir);
2297 }
2298}
2299
Oscar Mateo72c90f62014-06-16 16:10:57 +01002300/*
2301 * To handle irqs with the minimum potential races with fresh interrupts, we:
2302 * 1 - Disable Master Interrupt Control.
2303 * 2 - Find the source(s) of the interrupt.
2304 * 3 - Clear the Interrupt Identity bits (IIR).
2305 * 4 - Process the interrupt(s) that had bits set in the IIRs.
2306 * 5 - Re-enable Master Interrupt Control.
2307 */
Paulo Zanonif1af8fc2013-07-12 19:56:30 -03002308static irqreturn_t ironlake_irq_handler(int irq, void *arg)
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002309{
Daniel Vetter45a83f82014-05-12 19:17:55 +02002310 struct drm_device *dev = arg;
Chris Wilsonfac5e232016-07-04 11:34:36 +01002311 struct drm_i915_private *dev_priv = to_i915(dev);
Paulo Zanonif1af8fc2013-07-12 19:56:30 -03002312 u32 de_iir, gt_iir, de_ier, sde_ier = 0;
Chris Wilson0e434062012-05-09 21:45:44 +01002313 irqreturn_t ret = IRQ_NONE;
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002314
Imre Deak2dd2a882015-02-24 11:14:30 +02002315 if (!intel_irqs_enabled(dev_priv))
2316 return IRQ_NONE;
2317
Imre Deak1f814da2015-12-16 02:52:19 +02002318 /* IRQs are synced during runtime_suspend, we don't require a wakeref */
2319 disable_rpm_wakeref_asserts(dev_priv);
2320
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002321 /* disable master interrupt before clearing iir */
2322 de_ier = I915_READ(DEIER);
2323 I915_WRITE(DEIER, de_ier & ~DE_MASTER_IRQ_CONTROL);
Paulo Zanoni23a78512013-07-12 16:35:14 -03002324 POSTING_READ(DEIER);
Chris Wilson0e434062012-05-09 21:45:44 +01002325
Paulo Zanoni44498ae2013-02-22 17:05:28 -03002326 /* Disable south interrupts. We'll only write to SDEIIR once, so further
2327 * interrupts will will be stored on its back queue, and then we'll be
2328 * able to process them after we restore SDEIER (as soon as we restore
2329 * it, we'll get an interrupt if SDEIIR still has something to process
2330 * due to its back queue). */
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002331 if (!HAS_PCH_NOP(dev_priv)) {
Ben Widawskyab5c6082013-04-05 13:12:41 -07002332 sde_ier = I915_READ(SDEIER);
2333 I915_WRITE(SDEIER, 0);
2334 POSTING_READ(SDEIER);
2335 }
Paulo Zanoni44498ae2013-02-22 17:05:28 -03002336
Oscar Mateo72c90f62014-06-16 16:10:57 +01002337 /* Find, clear, then process each source of interrupt */
2338
Chris Wilson0e434062012-05-09 21:45:44 +01002339 gt_iir = I915_READ(GTIIR);
2340 if (gt_iir) {
Oscar Mateo72c90f62014-06-16 16:10:57 +01002341 I915_WRITE(GTIIR, gt_iir);
2342 ret = IRQ_HANDLED;
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002343 if (INTEL_GEN(dev_priv) >= 6)
Ville Syrjälä261e40b2016-04-13 21:19:57 +03002344 snb_gt_irq_handler(dev_priv, gt_iir);
Paulo Zanonid8fc8a42013-07-19 18:57:55 -03002345 else
Ville Syrjälä261e40b2016-04-13 21:19:57 +03002346 ilk_gt_irq_handler(dev_priv, gt_iir);
Chris Wilson0e434062012-05-09 21:45:44 +01002347 }
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002348
2349 de_iir = I915_READ(DEIIR);
Chris Wilson0e434062012-05-09 21:45:44 +01002350 if (de_iir) {
Oscar Mateo72c90f62014-06-16 16:10:57 +01002351 I915_WRITE(DEIIR, de_iir);
2352 ret = IRQ_HANDLED;
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002353 if (INTEL_GEN(dev_priv) >= 7)
2354 ivb_display_irq_handler(dev_priv, de_iir);
Paulo Zanonif1af8fc2013-07-12 19:56:30 -03002355 else
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002356 ilk_display_irq_handler(dev_priv, de_iir);
Chris Wilson0e434062012-05-09 21:45:44 +01002357 }
2358
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002359 if (INTEL_GEN(dev_priv) >= 6) {
Paulo Zanonif1af8fc2013-07-12 19:56:30 -03002360 u32 pm_iir = I915_READ(GEN6_PMIIR);
2361 if (pm_iir) {
Paulo Zanonif1af8fc2013-07-12 19:56:30 -03002362 I915_WRITE(GEN6_PMIIR, pm_iir);
2363 ret = IRQ_HANDLED;
Oscar Mateo72c90f62014-06-16 16:10:57 +01002364 gen6_rps_irq_handler(dev_priv, pm_iir);
Paulo Zanonif1af8fc2013-07-12 19:56:30 -03002365 }
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002366 }
2367
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002368 I915_WRITE(DEIER, de_ier);
2369 POSTING_READ(DEIER);
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002370 if (!HAS_PCH_NOP(dev_priv)) {
Ben Widawskyab5c6082013-04-05 13:12:41 -07002371 I915_WRITE(SDEIER, sde_ier);
2372 POSTING_READ(SDEIER);
2373 }
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002374
Imre Deak1f814da2015-12-16 02:52:19 +02002375 /* IRQs are synced during runtime_suspend, we don't require a wakeref */
2376 enable_rpm_wakeref_asserts(dev_priv);
2377
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002378 return ret;
2379}
2380
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002381static void bxt_hpd_irq_handler(struct drm_i915_private *dev_priv,
2382 u32 hotplug_trigger,
Ville Syrjälä40e56412015-08-27 23:56:10 +03002383 const u32 hpd[HPD_NUM_PINS])
Shashank Sharmad04a4922014-08-22 17:40:41 +05302384{
Ville Syrjäläcebd87a2015-08-27 23:56:09 +03002385 u32 dig_hotplug_reg, pin_mask = 0, long_mask = 0;
Shashank Sharmad04a4922014-08-22 17:40:41 +05302386
Ville Syrjäläa52bb152015-08-27 23:56:11 +03002387 dig_hotplug_reg = I915_READ(PCH_PORT_HOTPLUG);
2388 I915_WRITE(PCH_PORT_HOTPLUG, dig_hotplug_reg);
Shashank Sharmad04a4922014-08-22 17:40:41 +05302389
Ville Syrjäläcebd87a2015-08-27 23:56:09 +03002390 intel_get_hpd_pins(&pin_mask, &long_mask, hotplug_trigger,
Ville Syrjälä40e56412015-08-27 23:56:10 +03002391 dig_hotplug_reg, hpd,
Ville Syrjäläcebd87a2015-08-27 23:56:09 +03002392 bxt_port_hotplug_long_detect);
Ville Syrjälä40e56412015-08-27 23:56:10 +03002393
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002394 intel_hpd_irq_handler(dev_priv, pin_mask, long_mask);
Shashank Sharmad04a4922014-08-22 17:40:41 +05302395}
2396
Tvrtko Ursulinf11a0f42016-01-12 16:04:07 +00002397static irqreturn_t
2398gen8_de_irq_handler(struct drm_i915_private *dev_priv, u32 master_ctl)
Ben Widawskyabd58f02013-11-02 21:07:09 -07002399{
Ben Widawskyabd58f02013-11-02 21:07:09 -07002400 irqreturn_t ret = IRQ_NONE;
Tvrtko Ursulinf11a0f42016-01-12 16:04:07 +00002401 u32 iir;
Daniel Vetterc42664c2013-11-07 11:05:40 +01002402 enum pipe pipe;
Jesse Barnes88e04702014-11-13 17:51:48 +00002403
Ben Widawskyabd58f02013-11-02 21:07:09 -07002404 if (master_ctl & GEN8_DE_MISC_IRQ) {
Tvrtko Ursuline32192e2016-01-12 16:04:06 +00002405 iir = I915_READ(GEN8_DE_MISC_IIR);
2406 if (iir) {
2407 I915_WRITE(GEN8_DE_MISC_IIR, iir);
Ben Widawskyabd58f02013-11-02 21:07:09 -07002408 ret = IRQ_HANDLED;
Tvrtko Ursuline32192e2016-01-12 16:04:06 +00002409 if (iir & GEN8_DE_MISC_GSE)
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002410 intel_opregion_asle_intr(dev_priv);
Oscar Mateo38cc46d2014-06-16 16:10:59 +01002411 else
2412 DRM_ERROR("Unexpected DE Misc interrupt\n");
Ben Widawskyabd58f02013-11-02 21:07:09 -07002413 }
Oscar Mateo38cc46d2014-06-16 16:10:59 +01002414 else
2415 DRM_ERROR("The master control interrupt lied (DE MISC)!\n");
Ben Widawskyabd58f02013-11-02 21:07:09 -07002416 }
2417
Daniel Vetter6d766f02013-11-07 14:49:55 +01002418 if (master_ctl & GEN8_DE_PORT_IRQ) {
Tvrtko Ursuline32192e2016-01-12 16:04:06 +00002419 iir = I915_READ(GEN8_DE_PORT_IIR);
2420 if (iir) {
2421 u32 tmp_mask;
Shashank Sharmad04a4922014-08-22 17:40:41 +05302422 bool found = false;
Ville Syrjäläcebd87a2015-08-27 23:56:09 +03002423
Tvrtko Ursuline32192e2016-01-12 16:04:06 +00002424 I915_WRITE(GEN8_DE_PORT_IIR, iir);
Daniel Vetter6d766f02013-11-07 14:49:55 +01002425 ret = IRQ_HANDLED;
Jesse Barnes88e04702014-11-13 17:51:48 +00002426
Tvrtko Ursuline32192e2016-01-12 16:04:06 +00002427 tmp_mask = GEN8_AUX_CHANNEL_A;
2428 if (INTEL_INFO(dev_priv)->gen >= 9)
2429 tmp_mask |= GEN9_AUX_CHANNEL_B |
2430 GEN9_AUX_CHANNEL_C |
2431 GEN9_AUX_CHANNEL_D;
2432
2433 if (iir & tmp_mask) {
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002434 dp_aux_irq_handler(dev_priv);
Shashank Sharmad04a4922014-08-22 17:40:41 +05302435 found = true;
2436 }
2437
Tvrtko Ursuline32192e2016-01-12 16:04:06 +00002438 if (IS_BROXTON(dev_priv)) {
2439 tmp_mask = iir & BXT_DE_PORT_HOTPLUG_MASK;
2440 if (tmp_mask) {
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002441 bxt_hpd_irq_handler(dev_priv, tmp_mask,
2442 hpd_bxt);
Tvrtko Ursuline32192e2016-01-12 16:04:06 +00002443 found = true;
2444 }
2445 } else if (IS_BROADWELL(dev_priv)) {
2446 tmp_mask = iir & GEN8_PORT_DP_A_HOTPLUG;
2447 if (tmp_mask) {
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002448 ilk_hpd_irq_handler(dev_priv,
2449 tmp_mask, hpd_bdw);
Tvrtko Ursuline32192e2016-01-12 16:04:06 +00002450 found = true;
2451 }
Shashank Sharmad04a4922014-08-22 17:40:41 +05302452 }
2453
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002454 if (IS_BROXTON(dev_priv) && (iir & BXT_DE_PORT_GMBUS)) {
2455 gmbus_irq_handler(dev_priv);
Shashank Sharma9e637432014-08-22 17:40:43 +05302456 found = true;
2457 }
2458
Shashank Sharmad04a4922014-08-22 17:40:41 +05302459 if (!found)
Oscar Mateo38cc46d2014-06-16 16:10:59 +01002460 DRM_ERROR("Unexpected DE Port interrupt\n");
Daniel Vetter6d766f02013-11-07 14:49:55 +01002461 }
Oscar Mateo38cc46d2014-06-16 16:10:59 +01002462 else
2463 DRM_ERROR("The master control interrupt lied (DE PORT)!\n");
Daniel Vetter6d766f02013-11-07 14:49:55 +01002464 }
2465
Damien Lespiau055e3932014-08-18 13:49:10 +01002466 for_each_pipe(dev_priv, pipe) {
Tvrtko Ursuline32192e2016-01-12 16:04:06 +00002467 u32 flip_done, fault_errors;
Ben Widawskyabd58f02013-11-02 21:07:09 -07002468
Daniel Vetterc42664c2013-11-07 11:05:40 +01002469 if (!(master_ctl & GEN8_DE_PIPE_IRQ(pipe)))
2470 continue;
Ben Widawskyabd58f02013-11-02 21:07:09 -07002471
Tvrtko Ursuline32192e2016-01-12 16:04:06 +00002472 iir = I915_READ(GEN8_DE_PIPE_IIR(pipe));
2473 if (!iir) {
Ben Widawskyabd58f02013-11-02 21:07:09 -07002474 DRM_ERROR("The master control interrupt lied (DE PIPE)!\n");
Tvrtko Ursuline32192e2016-01-12 16:04:06 +00002475 continue;
2476 }
2477
2478 ret = IRQ_HANDLED;
2479 I915_WRITE(GEN8_DE_PIPE_IIR(pipe), iir);
2480
Daniel Vetter5a21b662016-05-24 17:13:53 +02002481 if (iir & GEN8_PIPE_VBLANK &&
2482 intel_pipe_handle_vblank(dev_priv, pipe))
2483 intel_check_page_flip(dev_priv, pipe);
Tvrtko Ursuline32192e2016-01-12 16:04:06 +00002484
2485 flip_done = iir;
2486 if (INTEL_INFO(dev_priv)->gen >= 9)
2487 flip_done &= GEN9_PIPE_PLANE1_FLIP_DONE;
2488 else
2489 flip_done &= GEN8_PIPE_PRIMARY_FLIP_DONE;
2490
Maarten Lankhorst5251f042016-05-17 15:07:47 +02002491 if (flip_done)
Maarten Lankhorst51cbaf02016-05-17 15:07:49 +02002492 intel_finish_page_flip_cs(dev_priv, pipe);
Tvrtko Ursuline32192e2016-01-12 16:04:06 +00002493
2494 if (iir & GEN8_PIPE_CDCLK_CRC_DONE)
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002495 hsw_pipe_crc_irq_handler(dev_priv, pipe);
Tvrtko Ursuline32192e2016-01-12 16:04:06 +00002496
2497 if (iir & GEN8_PIPE_FIFO_UNDERRUN)
2498 intel_cpu_fifo_underrun_irq_handler(dev_priv, pipe);
2499
2500 fault_errors = iir;
2501 if (INTEL_INFO(dev_priv)->gen >= 9)
2502 fault_errors &= GEN9_DE_PIPE_IRQ_FAULT_ERRORS;
2503 else
2504 fault_errors &= GEN8_DE_PIPE_IRQ_FAULT_ERRORS;
2505
2506 if (fault_errors)
Tvrtko Ursulin1353ec32016-10-27 13:48:32 +01002507 DRM_ERROR("Fault errors on pipe %c: 0x%08x\n",
Tvrtko Ursuline32192e2016-01-12 16:04:06 +00002508 pipe_name(pipe),
2509 fault_errors);
Ben Widawskyabd58f02013-11-02 21:07:09 -07002510 }
2511
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002512 if (HAS_PCH_SPLIT(dev_priv) && !HAS_PCH_NOP(dev_priv) &&
Shashank Sharma266ea3d2014-08-22 17:40:42 +05302513 master_ctl & GEN8_DE_PCH_IRQ) {
Daniel Vetter92d03a82013-11-07 11:05:43 +01002514 /*
2515 * FIXME(BDW): Assume for now that the new interrupt handling
2516 * scheme also closed the SDE interrupt handling race we've seen
2517 * on older pch-split platforms. But this needs testing.
2518 */
Tvrtko Ursuline32192e2016-01-12 16:04:06 +00002519 iir = I915_READ(SDEIIR);
2520 if (iir) {
2521 I915_WRITE(SDEIIR, iir);
Daniel Vetter92d03a82013-11-07 11:05:43 +01002522 ret = IRQ_HANDLED;
Ville Syrjälä6dbf30c2015-08-27 23:56:02 +03002523
Rodrigo Vivi22dea0b2016-07-01 17:07:12 -07002524 if (HAS_PCH_SPT(dev_priv) || HAS_PCH_KBP(dev_priv))
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002525 spt_irq_handler(dev_priv, iir);
Ville Syrjälä6dbf30c2015-08-27 23:56:02 +03002526 else
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002527 cpt_irq_handler(dev_priv, iir);
Jani Nikula2dfb0b82016-01-07 10:29:10 +02002528 } else {
2529 /*
2530 * Like on previous PCH there seems to be something
2531 * fishy going on with forwarding PCH interrupts.
2532 */
2533 DRM_DEBUG_DRIVER("The master control interrupt lied (SDE)!\n");
2534 }
Daniel Vetter92d03a82013-11-07 11:05:43 +01002535 }
2536
Tvrtko Ursulinf11a0f42016-01-12 16:04:07 +00002537 return ret;
2538}
2539
2540static irqreturn_t gen8_irq_handler(int irq, void *arg)
2541{
2542 struct drm_device *dev = arg;
Chris Wilsonfac5e232016-07-04 11:34:36 +01002543 struct drm_i915_private *dev_priv = to_i915(dev);
Tvrtko Ursulinf11a0f42016-01-12 16:04:07 +00002544 u32 master_ctl;
Ville Syrjäläe30e2512016-04-13 21:19:58 +03002545 u32 gt_iir[4] = {};
Tvrtko Ursulinf11a0f42016-01-12 16:04:07 +00002546 irqreturn_t ret;
2547
2548 if (!intel_irqs_enabled(dev_priv))
2549 return IRQ_NONE;
2550
2551 master_ctl = I915_READ_FW(GEN8_MASTER_IRQ);
2552 master_ctl &= ~GEN8_MASTER_IRQ_CONTROL;
2553 if (!master_ctl)
2554 return IRQ_NONE;
2555
2556 I915_WRITE_FW(GEN8_MASTER_IRQ, 0);
2557
2558 /* IRQs are synced during runtime_suspend, we don't require a wakeref */
2559 disable_rpm_wakeref_asserts(dev_priv);
2560
2561 /* Find, clear, then process each source of interrupt */
Ville Syrjäläe30e2512016-04-13 21:19:58 +03002562 ret = gen8_gt_irq_ack(dev_priv, master_ctl, gt_iir);
2563 gen8_gt_irq_handler(dev_priv, gt_iir);
Tvrtko Ursulinf11a0f42016-01-12 16:04:07 +00002564 ret |= gen8_de_irq_handler(dev_priv, master_ctl);
2565
Chris Wilsoncb0d2052015-04-07 16:21:04 +01002566 I915_WRITE_FW(GEN8_MASTER_IRQ, GEN8_MASTER_IRQ_CONTROL);
2567 POSTING_READ_FW(GEN8_MASTER_IRQ);
Ben Widawskyabd58f02013-11-02 21:07:09 -07002568
Imre Deak1f814da2015-12-16 02:52:19 +02002569 enable_rpm_wakeref_asserts(dev_priv);
2570
Ben Widawskyabd58f02013-11-02 21:07:09 -07002571 return ret;
2572}
2573
Chris Wilson1f15b762016-07-01 17:23:14 +01002574static void i915_error_wake_up(struct drm_i915_private *dev_priv)
Daniel Vetter17e1df02013-09-08 21:57:13 +02002575{
Daniel Vetter17e1df02013-09-08 21:57:13 +02002576 /*
2577 * Notify all waiters for GPU completion events that reset state has
2578 * been changed, and that they need to restart their wait after
2579 * checking for potential errors (and bail out to drop locks if there is
2580 * a gpu reset pending so that i915_error_work_func can acquire them).
2581 */
2582
2583 /* Wake up __wait_seqno, potentially holding dev->struct_mutex. */
Chris Wilson1f15b762016-07-01 17:23:14 +01002584 wake_up_all(&dev_priv->gpu_error.wait_queue);
Daniel Vetter17e1df02013-09-08 21:57:13 +02002585
2586 /* Wake up intel_crtc_wait_for_pending_flips, holding crtc->mutex. */
2587 wake_up_all(&dev_priv->pending_flip_queue);
Daniel Vetter17e1df02013-09-08 21:57:13 +02002588}
2589
Jesse Barnes8a905232009-07-11 16:48:03 -04002590/**
Mika Kuoppalab8d24a02015-01-28 17:03:14 +02002591 * i915_reset_and_wakeup - do process context error handling work
Tvrtko Ursulin14bb2c12016-06-03 14:02:17 +01002592 * @dev_priv: i915 device private
Jesse Barnes8a905232009-07-11 16:48:03 -04002593 *
2594 * Fire an error uevent so userspace can see that a hang or error
2595 * was detected.
2596 */
Chris Wilsonc0336662016-05-06 15:40:21 +01002597static void i915_reset_and_wakeup(struct drm_i915_private *dev_priv)
Jesse Barnes8a905232009-07-11 16:48:03 -04002598{
Chris Wilson91c8a322016-07-05 10:40:23 +01002599 struct kobject *kobj = &dev_priv->drm.primary->kdev->kobj;
Ben Widawskycce723e2013-07-19 09:16:42 -07002600 char *error_event[] = { I915_ERROR_UEVENT "=1", NULL };
2601 char *reset_event[] = { I915_RESET_UEVENT "=1", NULL };
2602 char *reset_done_event[] = { I915_ERROR_UEVENT "=0", NULL };
Jesse Barnes8a905232009-07-11 16:48:03 -04002603
Chris Wilsonc0336662016-05-06 15:40:21 +01002604 kobject_uevent_env(kobj, KOBJ_CHANGE, error_event);
Jesse Barnes8a905232009-07-11 16:48:03 -04002605
Chris Wilson8af29b02016-09-09 14:11:47 +01002606 DRM_DEBUG_DRIVER("resetting chip\n");
2607 kobject_uevent_env(kobj, KOBJ_CHANGE, reset_event);
2608
Daniel Vetter7db0ba22012-12-06 16:23:37 +01002609 /*
Chris Wilson8af29b02016-09-09 14:11:47 +01002610 * In most cases it's guaranteed that we get here with an RPM
2611 * reference held, for example because there is a pending GPU
2612 * request that won't finish until the reset is done. This
2613 * isn't the case at least when we get here by doing a
2614 * simulated reset via debugs, so get an RPM reference.
Daniel Vetter7db0ba22012-12-06 16:23:37 +01002615 */
Chris Wilson8af29b02016-09-09 14:11:47 +01002616 intel_runtime_pm_get(dev_priv);
Chris Wilson8af29b02016-09-09 14:11:47 +01002617 intel_prepare_reset(dev_priv);
Ville Syrjälä75147472014-11-24 18:28:11 +02002618
Chris Wilson780f2622016-09-09 14:11:52 +01002619 do {
2620 /*
2621 * All state reset _must_ be completed before we update the
2622 * reset counter, for otherwise waiters might miss the reset
2623 * pending state and not properly drop locks, resulting in
2624 * deadlocks with the reset work.
2625 */
2626 if (mutex_trylock(&dev_priv->drm.struct_mutex)) {
2627 i915_reset(dev_priv);
2628 mutex_unlock(&dev_priv->drm.struct_mutex);
2629 }
2630
2631 /* We need to wait for anyone holding the lock to wakeup */
2632 } while (wait_on_bit_timeout(&dev_priv->gpu_error.flags,
2633 I915_RESET_IN_PROGRESS,
2634 TASK_UNINTERRUPTIBLE,
2635 HZ));
Ville Syrjälä75147472014-11-24 18:28:11 +02002636
Chris Wilson8af29b02016-09-09 14:11:47 +01002637 intel_finish_reset(dev_priv);
Chris Wilson8af29b02016-09-09 14:11:47 +01002638 intel_runtime_pm_put(dev_priv);
Daniel Vetter17e1df02013-09-08 21:57:13 +02002639
Chris Wilson780f2622016-09-09 14:11:52 +01002640 if (!test_bit(I915_WEDGED, &dev_priv->gpu_error.flags))
Chris Wilson8af29b02016-09-09 14:11:47 +01002641 kobject_uevent_env(kobj,
2642 KOBJ_CHANGE, reset_done_event);
Imre Deakf454c692014-04-23 01:09:04 +03002643
Chris Wilson8af29b02016-09-09 14:11:47 +01002644 /*
2645 * Note: The wake_up also serves as a memory barrier so that
2646 * waiters see the updated value of the dev_priv->gpu_error.
2647 */
2648 wake_up_all(&dev_priv->gpu_error.reset_queue);
Jesse Barnes8a905232009-07-11 16:48:03 -04002649}
2650
Ben Widawskyd6369512016-09-20 16:54:32 +03002651static inline void
2652i915_err_print_instdone(struct drm_i915_private *dev_priv,
2653 struct intel_instdone *instdone)
2654{
Ben Widawskyf9e61372016-09-20 16:54:33 +03002655 int slice;
2656 int subslice;
2657
Ben Widawskyd6369512016-09-20 16:54:32 +03002658 pr_err(" INSTDONE: 0x%08x\n", instdone->instdone);
2659
2660 if (INTEL_GEN(dev_priv) <= 3)
2661 return;
2662
2663 pr_err(" SC_INSTDONE: 0x%08x\n", instdone->slice_common);
2664
2665 if (INTEL_GEN(dev_priv) <= 6)
2666 return;
2667
Ben Widawskyf9e61372016-09-20 16:54:33 +03002668 for_each_instdone_slice_subslice(dev_priv, slice, subslice)
2669 pr_err(" SAMPLER_INSTDONE[%d][%d]: 0x%08x\n",
2670 slice, subslice, instdone->sampler[slice][subslice]);
2671
2672 for_each_instdone_slice_subslice(dev_priv, slice, subslice)
2673 pr_err(" ROW_INSTDONE[%d][%d]: 0x%08x\n",
2674 slice, subslice, instdone->row[slice][subslice]);
Ben Widawskyd6369512016-09-20 16:54:32 +03002675}
2676
Chris Wilsoneaa14c22016-10-19 13:52:03 +01002677static void i915_clear_error_registers(struct drm_i915_private *dev_priv)
Jesse Barnes8a905232009-07-11 16:48:03 -04002678{
Chris Wilsoneaa14c22016-10-19 13:52:03 +01002679 u32 eir;
Jesse Barnes8a905232009-07-11 16:48:03 -04002680
Chris Wilsoneaa14c22016-10-19 13:52:03 +01002681 if (!IS_GEN2(dev_priv))
2682 I915_WRITE(PGTBL_ER, I915_READ(PGTBL_ER));
Jesse Barnes8a905232009-07-11 16:48:03 -04002683
Chris Wilsoneaa14c22016-10-19 13:52:03 +01002684 if (INTEL_GEN(dev_priv) < 4)
2685 I915_WRITE(IPEIR, I915_READ(IPEIR));
2686 else
2687 I915_WRITE(IPEIR_I965, I915_READ(IPEIR_I965));
Jesse Barnes8a905232009-07-11 16:48:03 -04002688
Chris Wilsoneaa14c22016-10-19 13:52:03 +01002689 I915_WRITE(EIR, I915_READ(EIR));
Jesse Barnes8a905232009-07-11 16:48:03 -04002690 eir = I915_READ(EIR);
2691 if (eir) {
2692 /*
2693 * some errors might have become stuck,
2694 * mask them.
2695 */
Chris Wilsoneaa14c22016-10-19 13:52:03 +01002696 DRM_DEBUG_DRIVER("EIR stuck: 0x%08x, masking\n", eir);
Jesse Barnes8a905232009-07-11 16:48:03 -04002697 I915_WRITE(EMR, I915_READ(EMR) | eir);
2698 I915_WRITE(IIR, I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT);
2699 }
Chris Wilson35aed2e2010-05-27 13:18:12 +01002700}
2701
2702/**
Mika Kuoppalab8d24a02015-01-28 17:03:14 +02002703 * i915_handle_error - handle a gpu error
Tvrtko Ursulin14bb2c12016-06-03 14:02:17 +01002704 * @dev_priv: i915 device private
arun.siluvery@linux.intel.com14b730f2016-03-18 20:07:55 +00002705 * @engine_mask: mask representing engines that are hung
Javier Martinez Canillasaafd8582015-10-08 09:57:49 +02002706 * Do some basic checking of register state at error time and
Chris Wilson35aed2e2010-05-27 13:18:12 +01002707 * dump it to the syslog. Also call i915_capture_error_state() to make
2708 * sure we get a record and make it available in debugfs. Fire a uevent
2709 * so userspace knows something bad happened (should trigger collection
2710 * of a ring dump etc.).
Tvrtko Ursulin14bb2c12016-06-03 14:02:17 +01002711 * @fmt: Error message format string
Chris Wilson35aed2e2010-05-27 13:18:12 +01002712 */
Chris Wilsonc0336662016-05-06 15:40:21 +01002713void i915_handle_error(struct drm_i915_private *dev_priv,
2714 u32 engine_mask,
Mika Kuoppala58174462014-02-25 17:11:26 +02002715 const char *fmt, ...)
Chris Wilson35aed2e2010-05-27 13:18:12 +01002716{
Mika Kuoppala58174462014-02-25 17:11:26 +02002717 va_list args;
2718 char error_msg[80];
Chris Wilson35aed2e2010-05-27 13:18:12 +01002719
Mika Kuoppala58174462014-02-25 17:11:26 +02002720 va_start(args, fmt);
2721 vscnprintf(error_msg, sizeof(error_msg), fmt, args);
2722 va_end(args);
2723
Chris Wilsonc0336662016-05-06 15:40:21 +01002724 i915_capture_error_state(dev_priv, engine_mask, error_msg);
Chris Wilsoneaa14c22016-10-19 13:52:03 +01002725 i915_clear_error_registers(dev_priv);
Jesse Barnes8a905232009-07-11 16:48:03 -04002726
Chris Wilson8af29b02016-09-09 14:11:47 +01002727 if (!engine_mask)
2728 return;
Ben Gamariba1234d2009-09-14 17:48:47 -04002729
Chris Wilson8af29b02016-09-09 14:11:47 +01002730 if (test_and_set_bit(I915_RESET_IN_PROGRESS,
2731 &dev_priv->gpu_error.flags))
2732 return;
2733
2734 /*
2735 * Wakeup waiting processes so that the reset function
2736 * i915_reset_and_wakeup doesn't deadlock trying to grab
2737 * various locks. By bumping the reset counter first, the woken
2738 * processes will see a reset in progress and back off,
2739 * releasing their locks and then wait for the reset completion.
2740 * We must do this for _all_ gpu waiters that might hold locks
2741 * that the reset work needs to acquire.
2742 *
2743 * Note: The wake_up also provides a memory barrier to ensure that the
2744 * waiters see the updated value of the reset flags.
2745 */
2746 i915_error_wake_up(dev_priv);
Ben Gamari11ed50e2009-09-14 17:48:45 -04002747
Chris Wilsonc0336662016-05-06 15:40:21 +01002748 i915_reset_and_wakeup(dev_priv);
Jesse Barnes8a905232009-07-11 16:48:03 -04002749}
2750
Keith Packard42f52ef2008-10-18 19:39:29 -07002751/* Called from drm generic code, passed 'crtc' which
2752 * we use as a pipe index
2753 */
Chris Wilson86e83e32016-10-07 20:49:52 +01002754static int i8xx_enable_vblank(struct drm_device *dev, unsigned int pipe)
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07002755{
Chris Wilsonfac5e232016-07-04 11:34:36 +01002756 struct drm_i915_private *dev_priv = to_i915(dev);
Keith Packarde9d21d72008-10-16 11:31:38 -07002757 unsigned long irqflags;
Jesse Barnes71e0ffa2009-01-08 10:42:15 -08002758
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002759 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Chris Wilson86e83e32016-10-07 20:49:52 +01002760 i915_enable_pipestat(dev_priv, pipe, PIPE_VBLANK_INTERRUPT_STATUS);
2761 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
2762
2763 return 0;
2764}
2765
2766static int i965_enable_vblank(struct drm_device *dev, unsigned int pipe)
2767{
2768 struct drm_i915_private *dev_priv = to_i915(dev);
2769 unsigned long irqflags;
2770
2771 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
2772 i915_enable_pipestat(dev_priv, pipe,
2773 PIPE_START_VBLANK_INTERRUPT_STATUS);
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002774 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
Chris Wilson8692d00e2011-02-05 10:08:21 +00002775
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07002776 return 0;
2777}
2778
Thierry Reding88e72712015-09-24 18:35:31 +02002779static int ironlake_enable_vblank(struct drm_device *dev, unsigned int pipe)
Jesse Barnesf796cf82011-04-07 13:58:17 -07002780{
Chris Wilsonfac5e232016-07-04 11:34:36 +01002781 struct drm_i915_private *dev_priv = to_i915(dev);
Jesse Barnesf796cf82011-04-07 13:58:17 -07002782 unsigned long irqflags;
Tvrtko Ursulin55b8f2a2016-10-14 09:17:22 +01002783 uint32_t bit = INTEL_GEN(dev_priv) >= 7 ?
Chris Wilson86e83e32016-10-07 20:49:52 +01002784 DE_PIPE_VBLANK_IVB(pipe) : DE_PIPE_VBLANK(pipe);
Jesse Barnesf796cf82011-04-07 13:58:17 -07002785
Jesse Barnesf796cf82011-04-07 13:58:17 -07002786 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Ville Syrjäläfbdedaea2015-11-23 18:06:16 +02002787 ilk_enable_display_irq(dev_priv, bit);
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002788 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
2789
2790 return 0;
2791}
2792
Thierry Reding88e72712015-09-24 18:35:31 +02002793static int gen8_enable_vblank(struct drm_device *dev, unsigned int pipe)
Ben Widawskyabd58f02013-11-02 21:07:09 -07002794{
Chris Wilsonfac5e232016-07-04 11:34:36 +01002795 struct drm_i915_private *dev_priv = to_i915(dev);
Ben Widawskyabd58f02013-11-02 21:07:09 -07002796 unsigned long irqflags;
Ben Widawskyabd58f02013-11-02 21:07:09 -07002797
Ben Widawskyabd58f02013-11-02 21:07:09 -07002798 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Ville Syrjälä013d3752015-11-23 18:06:17 +02002799 bdw_enable_pipe_irq(dev_priv, pipe, GEN8_PIPE_VBLANK);
Ben Widawskyabd58f02013-11-02 21:07:09 -07002800 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
Ville Syrjälä013d3752015-11-23 18:06:17 +02002801
Ben Widawskyabd58f02013-11-02 21:07:09 -07002802 return 0;
2803}
2804
Keith Packard42f52ef2008-10-18 19:39:29 -07002805/* Called from drm generic code, passed 'crtc' which
2806 * we use as a pipe index
2807 */
Chris Wilson86e83e32016-10-07 20:49:52 +01002808static void i8xx_disable_vblank(struct drm_device *dev, unsigned int pipe)
2809{
2810 struct drm_i915_private *dev_priv = to_i915(dev);
2811 unsigned long irqflags;
2812
2813 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
2814 i915_disable_pipestat(dev_priv, pipe, PIPE_VBLANK_INTERRUPT_STATUS);
2815 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
2816}
2817
2818static void i965_disable_vblank(struct drm_device *dev, unsigned int pipe)
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07002819{
Chris Wilsonfac5e232016-07-04 11:34:36 +01002820 struct drm_i915_private *dev_priv = to_i915(dev);
Keith Packarde9d21d72008-10-16 11:31:38 -07002821 unsigned long irqflags;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07002822
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002823 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Jesse Barnesf796cf82011-04-07 13:58:17 -07002824 i915_disable_pipestat(dev_priv, pipe,
Imre Deak755e9012014-02-10 18:42:47 +02002825 PIPE_START_VBLANK_INTERRUPT_STATUS);
Jesse Barnesf796cf82011-04-07 13:58:17 -07002826 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
2827}
2828
Thierry Reding88e72712015-09-24 18:35:31 +02002829static void ironlake_disable_vblank(struct drm_device *dev, unsigned int pipe)
Jesse Barnesf796cf82011-04-07 13:58:17 -07002830{
Chris Wilsonfac5e232016-07-04 11:34:36 +01002831 struct drm_i915_private *dev_priv = to_i915(dev);
Jesse Barnesf796cf82011-04-07 13:58:17 -07002832 unsigned long irqflags;
Tvrtko Ursulin55b8f2a2016-10-14 09:17:22 +01002833 uint32_t bit = INTEL_GEN(dev_priv) >= 7 ?
Chris Wilson86e83e32016-10-07 20:49:52 +01002834 DE_PIPE_VBLANK_IVB(pipe) : DE_PIPE_VBLANK(pipe);
Jesse Barnesf796cf82011-04-07 13:58:17 -07002835
2836 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Ville Syrjäläfbdedaea2015-11-23 18:06:16 +02002837 ilk_disable_display_irq(dev_priv, bit);
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002838 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
2839}
2840
Thierry Reding88e72712015-09-24 18:35:31 +02002841static void gen8_disable_vblank(struct drm_device *dev, unsigned int pipe)
Ben Widawskyabd58f02013-11-02 21:07:09 -07002842{
Chris Wilsonfac5e232016-07-04 11:34:36 +01002843 struct drm_i915_private *dev_priv = to_i915(dev);
Ben Widawskyabd58f02013-11-02 21:07:09 -07002844 unsigned long irqflags;
Ben Widawskyabd58f02013-11-02 21:07:09 -07002845
Ben Widawskyabd58f02013-11-02 21:07:09 -07002846 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Ville Syrjälä013d3752015-11-23 18:06:17 +02002847 bdw_disable_pipe_irq(dev_priv, pipe, GEN8_PIPE_VBLANK);
Ben Widawskyabd58f02013-11-02 21:07:09 -07002848 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
2849}
2850
Chris Wilson9107e9d2013-06-10 11:20:20 +01002851static bool
Chris Wilson31bb59c2016-07-01 17:23:27 +01002852ipehr_is_semaphore_wait(struct intel_engine_cs *engine, u32 ipehr)
Daniel Vettera028c4b2014-03-15 00:08:56 +01002853{
Chris Wilson31bb59c2016-07-01 17:23:27 +01002854 if (INTEL_GEN(engine->i915) >= 8) {
Rodrigo Vivia6cdb932014-06-30 09:53:39 -07002855 return (ipehr >> 23) == 0x1c;
Daniel Vettera028c4b2014-03-15 00:08:56 +01002856 } else {
2857 ipehr &= ~MI_SEMAPHORE_SYNC_MASK;
2858 return ipehr == (MI_SEMAPHORE_MBOX | MI_SEMAPHORE_COMPARE |
2859 MI_SEMAPHORE_REGISTER);
2860 }
2861}
2862
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002863static struct intel_engine_cs *
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00002864semaphore_wait_to_signaller_ring(struct intel_engine_cs *engine, u32 ipehr,
2865 u64 offset)
Daniel Vetter921d42e2014-03-18 10:26:04 +01002866{
Chris Wilsonc0336662016-05-06 15:40:21 +01002867 struct drm_i915_private *dev_priv = engine->i915;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002868 struct intel_engine_cs *signaller;
Akash Goel3b3f1652016-10-13 22:44:48 +05302869 enum intel_engine_id id;
Daniel Vetter921d42e2014-03-18 10:26:04 +01002870
Chris Wilsonc0336662016-05-06 15:40:21 +01002871 if (INTEL_GEN(dev_priv) >= 8) {
Akash Goel3b3f1652016-10-13 22:44:48 +05302872 for_each_engine(signaller, dev_priv, id) {
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00002873 if (engine == signaller)
Rodrigo Vivia6cdb932014-06-30 09:53:39 -07002874 continue;
2875
Chris Wilson348b9b12016-10-03 13:45:16 +01002876 if (offset == signaller->semaphore.signal_ggtt[engine->hw_id])
Rodrigo Vivia6cdb932014-06-30 09:53:39 -07002877 return signaller;
2878 }
Daniel Vetter921d42e2014-03-18 10:26:04 +01002879 } else {
2880 u32 sync_bits = ipehr & MI_SEMAPHORE_SYNC_MASK;
2881
Akash Goel3b3f1652016-10-13 22:44:48 +05302882 for_each_engine(signaller, dev_priv, id) {
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00002883 if(engine == signaller)
Daniel Vetter921d42e2014-03-18 10:26:04 +01002884 continue;
2885
Chris Wilson348b9b12016-10-03 13:45:16 +01002886 if (sync_bits == signaller->semaphore.mbox.wait[engine->hw_id])
Daniel Vetter921d42e2014-03-18 10:26:04 +01002887 return signaller;
2888 }
2889 }
2890
Chris Wilson348b9b12016-10-03 13:45:16 +01002891 DRM_DEBUG_DRIVER("No signaller ring found for %s, ipehr 0x%08x, offset 0x%016llx\n",
2892 engine->name, ipehr, offset);
Daniel Vetter921d42e2014-03-18 10:26:04 +01002893
Chris Wilson80b5bdb2016-09-09 14:11:58 +01002894 return ERR_PTR(-ENODEV);
Daniel Vetter921d42e2014-03-18 10:26:04 +01002895}
2896
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002897static struct intel_engine_cs *
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00002898semaphore_waits_for(struct intel_engine_cs *engine, u32 *seqno)
Chris Wilsona24a11e2013-03-14 17:52:05 +02002899{
Chris Wilsonc0336662016-05-06 15:40:21 +01002900 struct drm_i915_private *dev_priv = engine->i915;
Chris Wilson406ea8d2016-07-20 13:31:55 +01002901 void __iomem *vaddr;
Daniel Vetter88fe4292014-03-15 00:08:55 +01002902 u32 cmd, ipehr, head;
Rodrigo Vivia6cdb932014-06-30 09:53:39 -07002903 u64 offset = 0;
2904 int i, backwards;
Chris Wilsona24a11e2013-03-14 17:52:05 +02002905
Tomas Elf381e8ae2015-10-08 19:31:33 +01002906 /*
2907 * This function does not support execlist mode - any attempt to
2908 * proceed further into this function will result in a kernel panic
2909 * when dereferencing ring->buffer, which is not set up in execlist
2910 * mode.
2911 *
2912 * The correct way of doing it would be to derive the currently
2913 * executing ring buffer from the current context, which is derived
2914 * from the currently running request. Unfortunately, to get the
2915 * current request we would have to grab the struct_mutex before doing
2916 * anything else, which would be ill-advised since some other thread
2917 * might have grabbed it already and managed to hang itself, causing
2918 * the hang checker to deadlock.
2919 *
2920 * Therefore, this function does not support execlist mode in its
2921 * current form. Just return NULL and move on.
2922 */
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00002923 if (engine->buffer == NULL)
Tomas Elf381e8ae2015-10-08 19:31:33 +01002924 return NULL;
2925
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00002926 ipehr = I915_READ(RING_IPEHR(engine->mmio_base));
Chris Wilson31bb59c2016-07-01 17:23:27 +01002927 if (!ipehr_is_semaphore_wait(engine, ipehr))
Chris Wilson6274f212013-06-10 11:20:21 +01002928 return NULL;
Chris Wilsona24a11e2013-03-14 17:52:05 +02002929
Daniel Vetter88fe4292014-03-15 00:08:55 +01002930 /*
2931 * HEAD is likely pointing to the dword after the actual command,
2932 * so scan backwards until we find the MBOX. But limit it to just 3
Rodrigo Vivia6cdb932014-06-30 09:53:39 -07002933 * or 4 dwords depending on the semaphore wait command size.
2934 * Note that we don't care about ACTHD here since that might
Daniel Vetter88fe4292014-03-15 00:08:55 +01002935 * point at at batch, and semaphores are always emitted into the
2936 * ringbuffer itself.
Chris Wilsona24a11e2013-03-14 17:52:05 +02002937 */
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00002938 head = I915_READ_HEAD(engine) & HEAD_ADDR;
Chris Wilsonc0336662016-05-06 15:40:21 +01002939 backwards = (INTEL_GEN(dev_priv) >= 8) ? 5 : 4;
Chris Wilsonf2f0ed72016-07-20 13:31:56 +01002940 vaddr = (void __iomem *)engine->buffer->vaddr;
Daniel Vetter88fe4292014-03-15 00:08:55 +01002941
Rodrigo Vivia6cdb932014-06-30 09:53:39 -07002942 for (i = backwards; i; --i) {
Daniel Vetter88fe4292014-03-15 00:08:55 +01002943 /*
2944 * Be paranoid and presume the hw has gone off into the wild -
2945 * our ring is smaller than what the hardware (and hence
2946 * HEAD_ADDR) allows. Also handles wrap-around.
2947 */
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00002948 head &= engine->buffer->size - 1;
Daniel Vetter88fe4292014-03-15 00:08:55 +01002949
2950 /* This here seems to blow up */
Chris Wilson406ea8d2016-07-20 13:31:55 +01002951 cmd = ioread32(vaddr + head);
Chris Wilsona24a11e2013-03-14 17:52:05 +02002952 if (cmd == ipehr)
2953 break;
2954
Daniel Vetter88fe4292014-03-15 00:08:55 +01002955 head -= 4;
2956 }
Chris Wilsona24a11e2013-03-14 17:52:05 +02002957
Daniel Vetter88fe4292014-03-15 00:08:55 +01002958 if (!i)
2959 return NULL;
2960
Chris Wilson406ea8d2016-07-20 13:31:55 +01002961 *seqno = ioread32(vaddr + head + 4) + 1;
Chris Wilsonc0336662016-05-06 15:40:21 +01002962 if (INTEL_GEN(dev_priv) >= 8) {
Chris Wilson406ea8d2016-07-20 13:31:55 +01002963 offset = ioread32(vaddr + head + 12);
Rodrigo Vivia6cdb932014-06-30 09:53:39 -07002964 offset <<= 32;
Chris Wilson406ea8d2016-07-20 13:31:55 +01002965 offset |= ioread32(vaddr + head + 8);
Rodrigo Vivia6cdb932014-06-30 09:53:39 -07002966 }
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00002967 return semaphore_wait_to_signaller_ring(engine, ipehr, offset);
Chris Wilsona24a11e2013-03-14 17:52:05 +02002968}
2969
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00002970static int semaphore_passed(struct intel_engine_cs *engine)
Chris Wilson6274f212013-06-10 11:20:21 +01002971{
Chris Wilsonc0336662016-05-06 15:40:21 +01002972 struct drm_i915_private *dev_priv = engine->i915;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002973 struct intel_engine_cs *signaller;
Chris Wilsona0d036b2014-07-19 12:40:42 +01002974 u32 seqno;
Chris Wilson6274f212013-06-10 11:20:21 +01002975
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00002976 engine->hangcheck.deadlock++;
Chris Wilson6274f212013-06-10 11:20:21 +01002977
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00002978 signaller = semaphore_waits_for(engine, &seqno);
Chris Wilson4be17382014-06-06 10:22:29 +01002979 if (signaller == NULL)
2980 return -1;
2981
Chris Wilson80b5bdb2016-09-09 14:11:58 +01002982 if (IS_ERR(signaller))
2983 return 0;
2984
Chris Wilson4be17382014-06-06 10:22:29 +01002985 /* Prevent pathological recursion due to driver bugs */
Tvrtko Ursulin666796d2016-03-16 11:00:39 +00002986 if (signaller->hangcheck.deadlock >= I915_NUM_ENGINES)
Chris Wilson6274f212013-06-10 11:20:21 +01002987 return -1;
2988
Chris Wilson1b7744e2016-07-01 17:23:17 +01002989 if (i915_seqno_passed(intel_engine_get_seqno(signaller), seqno))
Chris Wilson4be17382014-06-06 10:22:29 +01002990 return 1;
2991
Chris Wilsona0d036b2014-07-19 12:40:42 +01002992 /* cursory check for an unkickable deadlock */
2993 if (I915_READ_CTL(signaller) & RING_WAIT_SEMAPHORE &&
2994 semaphore_passed(signaller) < 0)
Chris Wilson4be17382014-06-06 10:22:29 +01002995 return -1;
2996
2997 return 0;
Chris Wilson6274f212013-06-10 11:20:21 +01002998}
2999
3000static void semaphore_clear_deadlocks(struct drm_i915_private *dev_priv)
3001{
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00003002 struct intel_engine_cs *engine;
Akash Goel3b3f1652016-10-13 22:44:48 +05303003 enum intel_engine_id id;
Chris Wilson6274f212013-06-10 11:20:21 +01003004
Akash Goel3b3f1652016-10-13 22:44:48 +05303005 for_each_engine(engine, dev_priv, id)
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00003006 engine->hangcheck.deadlock = 0;
Chris Wilson6274f212013-06-10 11:20:21 +01003007}
3008
Ben Widawskyd6369512016-09-20 16:54:32 +03003009static bool instdone_unchanged(u32 current_instdone, u32 *old_instdone)
3010{
3011 u32 tmp = current_instdone | *old_instdone;
3012 bool unchanged;
3013
3014 unchanged = tmp == *old_instdone;
3015 *old_instdone |= tmp;
3016
3017 return unchanged;
3018}
3019
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00003020static bool subunits_stuck(struct intel_engine_cs *engine)
Chris Wilson1ec14ad2010-12-04 11:30:53 +00003021{
Ben Widawskyd6369512016-09-20 16:54:32 +03003022 struct drm_i915_private *dev_priv = engine->i915;
3023 struct intel_instdone instdone;
3024 struct intel_instdone *accu_instdone = &engine->hangcheck.instdone;
Mika Kuoppala61642ff2015-12-01 17:56:12 +02003025 bool stuck;
Ben Widawskyf9e61372016-09-20 16:54:33 +03003026 int slice;
3027 int subslice;
Chris Wilson9107e9d2013-06-10 11:20:20 +01003028
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00003029 if (engine->id != RCS)
Mika Kuoppala61642ff2015-12-01 17:56:12 +02003030 return true;
3031
Chris Wilson0e704472016-10-12 10:05:17 +01003032 intel_engine_get_instdone(engine, &instdone);
Mika Kuoppala61642ff2015-12-01 17:56:12 +02003033
3034 /* There might be unstable subunit states even when
3035 * actual head is not moving. Filter out the unstable ones by
3036 * accumulating the undone -> done transitions and only
3037 * consider those as progress.
3038 */
Ben Widawskyd6369512016-09-20 16:54:32 +03003039 stuck = instdone_unchanged(instdone.instdone,
3040 &accu_instdone->instdone);
3041 stuck &= instdone_unchanged(instdone.slice_common,
3042 &accu_instdone->slice_common);
Ben Widawskyf9e61372016-09-20 16:54:33 +03003043
3044 for_each_instdone_slice_subslice(dev_priv, slice, subslice) {
3045 stuck &= instdone_unchanged(instdone.sampler[slice][subslice],
3046 &accu_instdone->sampler[slice][subslice]);
3047 stuck &= instdone_unchanged(instdone.row[slice][subslice],
3048 &accu_instdone->row[slice][subslice]);
3049 }
Mika Kuoppala61642ff2015-12-01 17:56:12 +02003050
3051 return stuck;
3052}
3053
Chris Wilson7e37f882016-08-02 22:50:21 +01003054static enum intel_engine_hangcheck_action
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00003055head_stuck(struct intel_engine_cs *engine, u64 acthd)
Mika Kuoppala61642ff2015-12-01 17:56:12 +02003056{
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00003057 if (acthd != engine->hangcheck.acthd) {
Mika Kuoppala61642ff2015-12-01 17:56:12 +02003058
3059 /* Clear subunit states on head movement */
Ben Widawskyd6369512016-09-20 16:54:32 +03003060 memset(&engine->hangcheck.instdone, 0,
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00003061 sizeof(engine->hangcheck.instdone));
Mika Kuoppala61642ff2015-12-01 17:56:12 +02003062
Mika Kuoppala24a65e62016-03-02 16:48:29 +02003063 return HANGCHECK_ACTIVE;
Mika Kuoppalaf260fe72014-08-05 17:16:26 +03003064 }
Chris Wilson6274f212013-06-10 11:20:21 +01003065
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00003066 if (!subunits_stuck(engine))
Mika Kuoppala61642ff2015-12-01 17:56:12 +02003067 return HANGCHECK_ACTIVE;
3068
3069 return HANGCHECK_HUNG;
3070}
3071
Chris Wilson7e37f882016-08-02 22:50:21 +01003072static enum intel_engine_hangcheck_action
3073engine_stuck(struct intel_engine_cs *engine, u64 acthd)
Mika Kuoppala61642ff2015-12-01 17:56:12 +02003074{
Chris Wilsonc0336662016-05-06 15:40:21 +01003075 struct drm_i915_private *dev_priv = engine->i915;
Chris Wilson7e37f882016-08-02 22:50:21 +01003076 enum intel_engine_hangcheck_action ha;
Mika Kuoppala61642ff2015-12-01 17:56:12 +02003077 u32 tmp;
3078
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00003079 ha = head_stuck(engine, acthd);
Mika Kuoppala61642ff2015-12-01 17:56:12 +02003080 if (ha != HANGCHECK_HUNG)
3081 return ha;
3082
Chris Wilsonc0336662016-05-06 15:40:21 +01003083 if (IS_GEN2(dev_priv))
Jani Nikulaf2f4d822013-08-11 12:44:01 +03003084 return HANGCHECK_HUNG;
Chris Wilson9107e9d2013-06-10 11:20:20 +01003085
3086 /* Is the chip hanging on a WAIT_FOR_EVENT?
3087 * If so we can simply poke the RB_WAIT bit
3088 * and break the hang. This should work on
3089 * all but the second generation chipsets.
3090 */
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00003091 tmp = I915_READ_CTL(engine);
Chris Wilson1ec14ad2010-12-04 11:30:53 +00003092 if (tmp & RING_WAIT) {
Chris Wilsonc0336662016-05-06 15:40:21 +01003093 i915_handle_error(dev_priv, 0,
Mika Kuoppala58174462014-02-25 17:11:26 +02003094 "Kicking stuck wait on %s",
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00003095 engine->name);
3096 I915_WRITE_CTL(engine, tmp);
Jani Nikulaf2f4d822013-08-11 12:44:01 +03003097 return HANGCHECK_KICK;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00003098 }
Chris Wilsona24a11e2013-03-14 17:52:05 +02003099
Chris Wilsonc0336662016-05-06 15:40:21 +01003100 if (INTEL_GEN(dev_priv) >= 6 && tmp & RING_WAIT_SEMAPHORE) {
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00003101 switch (semaphore_passed(engine)) {
Chris Wilson6274f212013-06-10 11:20:21 +01003102 default:
Jani Nikulaf2f4d822013-08-11 12:44:01 +03003103 return HANGCHECK_HUNG;
Chris Wilson6274f212013-06-10 11:20:21 +01003104 case 1:
Chris Wilsonc0336662016-05-06 15:40:21 +01003105 i915_handle_error(dev_priv, 0,
Mika Kuoppala58174462014-02-25 17:11:26 +02003106 "Kicking stuck semaphore on %s",
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00003107 engine->name);
3108 I915_WRITE_CTL(engine, tmp);
Jani Nikulaf2f4d822013-08-11 12:44:01 +03003109 return HANGCHECK_KICK;
Chris Wilson6274f212013-06-10 11:20:21 +01003110 case 0:
Jani Nikulaf2f4d822013-08-11 12:44:01 +03003111 return HANGCHECK_WAIT;
Chris Wilson6274f212013-06-10 11:20:21 +01003112 }
Chris Wilson9107e9d2013-06-10 11:20:20 +01003113 }
Mika Kuoppalaed5cbb02013-05-13 16:32:11 +03003114
Jani Nikulaf2f4d822013-08-11 12:44:01 +03003115 return HANGCHECK_HUNG;
Mika Kuoppalaed5cbb02013-05-13 16:32:11 +03003116}
3117
Chris Wilson737b1502015-01-26 18:03:03 +02003118/*
Ben Gamarif65d9422009-09-14 17:48:44 -04003119 * This is called when the chip hasn't reported back with completed
Mika Kuoppala05407ff2013-05-30 09:04:29 +03003120 * batchbuffers in a long time. We keep track per ring seqno progress and
3121 * if there are no progress, hangcheck score for that ring is increased.
3122 * Further, acthd is inspected to see if the ring is stuck. On stuck case
3123 * we kick the ring. If we see no progress on three subsequent calls
3124 * we assume chip is wedged and try to fix it by resetting the chip.
Ben Gamarif65d9422009-09-14 17:48:44 -04003125 */
Chris Wilson737b1502015-01-26 18:03:03 +02003126static void i915_hangcheck_elapsed(struct work_struct *work)
Ben Gamarif65d9422009-09-14 17:48:44 -04003127{
Chris Wilson737b1502015-01-26 18:03:03 +02003128 struct drm_i915_private *dev_priv =
3129 container_of(work, typeof(*dev_priv),
3130 gpu_error.hangcheck_work.work);
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00003131 struct intel_engine_cs *engine;
Akash Goel3b3f1652016-10-13 22:44:48 +05303132 enum intel_engine_id id;
Chris Wilson2b284282016-07-04 08:48:32 +01003133 unsigned int hung = 0, stuck = 0;
3134 int busy_count = 0;
Chris Wilson9107e9d2013-06-10 11:20:20 +01003135#define BUSY 1
3136#define KICK 5
3137#define HUNG 20
Mika Kuoppala24a65e62016-03-02 16:48:29 +02003138#define ACTIVE_DECAY 15
Chris Wilson893eead2010-10-27 14:44:35 +01003139
Jani Nikulad330a952014-01-21 11:24:25 +02003140 if (!i915.enable_hangcheck)
Ben Widawsky3e0dc6b2011-06-29 10:26:42 -07003141 return;
3142
Chris Wilsonb1379d42016-07-05 08:54:36 +01003143 if (!READ_ONCE(dev_priv->gt.awake))
Chris Wilson67d97da2016-07-04 08:08:31 +01003144 return;
Imre Deak1f814da2015-12-16 02:52:19 +02003145
Mika Kuoppala75714942015-12-16 09:26:48 +02003146 /* As enabling the GPU requires fairly extensive mmio access,
3147 * periodically arm the mmio checker to see if we are triggering
3148 * any invalid access.
3149 */
3150 intel_uncore_arm_unclaimed_mmio_detection(dev_priv);
3151
Akash Goel3b3f1652016-10-13 22:44:48 +05303152 for_each_engine(engine, dev_priv, id) {
Chris Wilson688e6c72016-07-01 17:23:15 +01003153 bool busy = intel_engine_has_waiter(engine);
Chris Wilson50877442014-03-21 12:41:53 +00003154 u64 acthd;
3155 u32 seqno;
Chris Wilson34730fe2016-08-20 15:54:08 +01003156 u32 submit;
Chris Wilsonb4519512012-05-11 14:29:30 +01003157
Chris Wilson6274f212013-06-10 11:20:21 +01003158 semaphore_clear_deadlocks(dev_priv);
3159
Chris Wilsonc04e0f32016-04-09 10:57:54 +01003160 /* We don't strictly need an irq-barrier here, as we are not
3161 * serving an interrupt request, be paranoid in case the
3162 * barrier has side-effects (such as preventing a broken
3163 * cacheline snoop) and so be sure that we can see the seqno
3164 * advance. If the seqno should stick, due to a stale
3165 * cacheline, we would erroneously declare the GPU hung.
3166 */
3167 if (engine->irq_seqno_barrier)
3168 engine->irq_seqno_barrier(engine);
3169
Chris Wilson7e37f882016-08-02 22:50:21 +01003170 acthd = intel_engine_get_active_head(engine);
Chris Wilson1b7744e2016-07-01 17:23:17 +01003171 seqno = intel_engine_get_seqno(engine);
Chris Wilsoncb399ea2016-11-01 10:03:16 +00003172 submit = intel_engine_last_submit(engine);
Chris Wilsond1e61e72012-04-10 17:00:41 +01003173
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00003174 if (engine->hangcheck.seqno == seqno) {
Chris Wilson34730fe2016-08-20 15:54:08 +01003175 if (i915_seqno_passed(seqno, submit)) {
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00003176 engine->hangcheck.action = HANGCHECK_IDLE;
Mika Kuoppala05407ff2013-05-30 09:04:29 +03003177 } else {
Chris Wilson6274f212013-06-10 11:20:21 +01003178 /* We always increment the hangcheck score
Chris Wilson9930ca12016-07-27 09:07:30 +01003179 * if the engine is busy and still processing
Chris Wilson6274f212013-06-10 11:20:21 +01003180 * the same request, so that no single request
3181 * can run indefinitely (such as a chain of
3182 * batches). The only time we do not increment
3183 * the hangcheck score on this ring, if this
Chris Wilson9930ca12016-07-27 09:07:30 +01003184 * engine is in a legitimate wait for another
3185 * engine. In that case the waiting engine is a
Chris Wilson6274f212013-06-10 11:20:21 +01003186 * victim and we want to be sure we catch the
3187 * right culprit. Then every time we do kick
3188 * the ring, add a small increment to the
3189 * score so that we can catch a batch that is
3190 * being repeatedly kicked and so responsible
3191 * for stalling the machine.
3192 */
Chris Wilson7e37f882016-08-02 22:50:21 +01003193 engine->hangcheck.action =
3194 engine_stuck(engine, acthd);
Mika Kuoppalaad8beae2013-06-12 12:35:32 +03003195
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00003196 switch (engine->hangcheck.action) {
Mika Kuoppalada661462013-09-06 16:03:28 +03003197 case HANGCHECK_IDLE:
Jani Nikulaf2f4d822013-08-11 12:44:01 +03003198 case HANGCHECK_WAIT:
Mika Kuoppalaf260fe72014-08-05 17:16:26 +03003199 break;
Mika Kuoppala24a65e62016-03-02 16:48:29 +02003200 case HANGCHECK_ACTIVE:
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00003201 engine->hangcheck.score += BUSY;
Chris Wilson6274f212013-06-10 11:20:21 +01003202 break;
Jani Nikulaf2f4d822013-08-11 12:44:01 +03003203 case HANGCHECK_KICK:
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00003204 engine->hangcheck.score += KICK;
Chris Wilson6274f212013-06-10 11:20:21 +01003205 break;
Jani Nikulaf2f4d822013-08-11 12:44:01 +03003206 case HANGCHECK_HUNG:
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00003207 engine->hangcheck.score += HUNG;
Chris Wilson6274f212013-06-10 11:20:21 +01003208 break;
3209 }
Mika Kuoppala05407ff2013-05-30 09:04:29 +03003210 }
Chris Wilson2b284282016-07-04 08:48:32 +01003211
3212 if (engine->hangcheck.score >= HANGCHECK_SCORE_RING_HUNG) {
3213 hung |= intel_engine_flag(engine);
3214 if (engine->hangcheck.action != HANGCHECK_HUNG)
3215 stuck |= intel_engine_flag(engine);
3216 }
Chris Wilson9107e9d2013-06-10 11:20:20 +01003217 } else {
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00003218 engine->hangcheck.action = HANGCHECK_ACTIVE;
Mika Kuoppalada661462013-09-06 16:03:28 +03003219
Chris Wilson9107e9d2013-06-10 11:20:20 +01003220 /* Gradually reduce the count so that we catch DoS
3221 * attempts across multiple batches.
3222 */
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00003223 if (engine->hangcheck.score > 0)
3224 engine->hangcheck.score -= ACTIVE_DECAY;
3225 if (engine->hangcheck.score < 0)
3226 engine->hangcheck.score = 0;
Mika Kuoppalaf260fe72014-08-05 17:16:26 +03003227
Mika Kuoppala61642ff2015-12-01 17:56:12 +02003228 /* Clear head and subunit states on seqno movement */
Chris Wilson12471ba2016-04-09 10:57:55 +01003229 acthd = 0;
Mika Kuoppala61642ff2015-12-01 17:56:12 +02003230
Ben Widawskyd6369512016-09-20 16:54:32 +03003231 memset(&engine->hangcheck.instdone, 0,
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00003232 sizeof(engine->hangcheck.instdone));
Chris Wilsond1e61e72012-04-10 17:00:41 +01003233 }
3234
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00003235 engine->hangcheck.seqno = seqno;
3236 engine->hangcheck.acthd = acthd;
Chris Wilson9107e9d2013-06-10 11:20:20 +01003237 busy_count += busy;
Chris Wilson893eead2010-10-27 14:44:35 +01003238 }
Eric Anholtb9201c12010-01-08 14:25:16 -08003239
Chris Wilson2b284282016-07-04 08:48:32 +01003240 if (hung) {
3241 char msg[80];
Chris Wilsonbafb0fc2016-08-27 08:54:01 +01003242 unsigned int tmp;
Chris Wilson2b284282016-07-04 08:48:32 +01003243 int len;
Mika Kuoppala92cab732013-05-24 17:16:07 +03003244
Chris Wilson2b284282016-07-04 08:48:32 +01003245 /* If some rings hung but others were still busy, only
3246 * blame the hanging rings in the synopsis.
3247 */
3248 if (stuck != hung)
3249 hung &= ~stuck;
3250 len = scnprintf(msg, sizeof(msg),
3251 "%s on ", stuck == hung ? "No progress" : "Hang");
Chris Wilsonbafb0fc2016-08-27 08:54:01 +01003252 for_each_engine_masked(engine, dev_priv, hung, tmp)
Chris Wilson2b284282016-07-04 08:48:32 +01003253 len += scnprintf(msg + len, sizeof(msg) - len,
3254 "%s, ", engine->name);
3255 msg[len-2] = '\0';
3256
3257 return i915_handle_error(dev_priv, hung, msg);
3258 }
Ben Gamarif65d9422009-09-14 17:48:44 -04003259
Chris Wilson05535722016-07-01 17:23:11 +01003260 /* Reset timer in case GPU hangs without another request being added */
Mika Kuoppala05407ff2013-05-30 09:04:29 +03003261 if (busy_count)
Chris Wilsonc0336662016-05-06 15:40:21 +01003262 i915_queue_hangcheck(dev_priv);
Mika Kuoppala10cd45b2013-07-03 17:22:08 +03003263}
3264
Paulo Zanoni1c69eb42014-04-01 15:37:23 -03003265static void ibx_irq_reset(struct drm_device *dev)
Paulo Zanoni91738a92013-06-05 14:21:51 -03003266{
Chris Wilsonfac5e232016-07-04 11:34:36 +01003267 struct drm_i915_private *dev_priv = to_i915(dev);
Paulo Zanoni91738a92013-06-05 14:21:51 -03003268
Tvrtko Ursulin6e266952016-10-13 11:02:53 +01003269 if (HAS_PCH_NOP(dev_priv))
Paulo Zanoni91738a92013-06-05 14:21:51 -03003270 return;
3271
Paulo Zanonif86f3fb2014-04-01 15:37:14 -03003272 GEN5_IRQ_RESET(SDE);
Paulo Zanoni105b1222014-04-01 15:37:17 -03003273
Tvrtko Ursulin6e266952016-10-13 11:02:53 +01003274 if (HAS_PCH_CPT(dev_priv) || HAS_PCH_LPT(dev_priv))
Paulo Zanoni105b1222014-04-01 15:37:17 -03003275 I915_WRITE(SERR_INT, 0xffffffff);
Paulo Zanoni622364b2014-04-01 15:37:22 -03003276}
Paulo Zanoni105b1222014-04-01 15:37:17 -03003277
Paulo Zanoni622364b2014-04-01 15:37:22 -03003278/*
3279 * SDEIER is also touched by the interrupt handler to work around missed PCH
3280 * interrupts. Hence we can't update it after the interrupt handler is enabled -
3281 * instead we unconditionally enable all PCH interrupt sources here, but then
3282 * only unmask them as needed with SDEIMR.
3283 *
3284 * This function needs to be called before interrupts are enabled.
3285 */
3286static void ibx_irq_pre_postinstall(struct drm_device *dev)
3287{
Chris Wilsonfac5e232016-07-04 11:34:36 +01003288 struct drm_i915_private *dev_priv = to_i915(dev);
Paulo Zanoni622364b2014-04-01 15:37:22 -03003289
Tvrtko Ursulin6e266952016-10-13 11:02:53 +01003290 if (HAS_PCH_NOP(dev_priv))
Paulo Zanoni622364b2014-04-01 15:37:22 -03003291 return;
3292
3293 WARN_ON(I915_READ(SDEIER) != 0);
Paulo Zanoni91738a92013-06-05 14:21:51 -03003294 I915_WRITE(SDEIER, 0xffffffff);
3295 POSTING_READ(SDEIER);
3296}
3297
Paulo Zanoni7c4d6642014-04-01 15:37:19 -03003298static void gen5_gt_irq_reset(struct drm_device *dev)
Daniel Vetterd18ea1b2013-07-12 22:43:25 +02003299{
Chris Wilsonfac5e232016-07-04 11:34:36 +01003300 struct drm_i915_private *dev_priv = to_i915(dev);
Daniel Vetterd18ea1b2013-07-12 22:43:25 +02003301
Paulo Zanonif86f3fb2014-04-01 15:37:14 -03003302 GEN5_IRQ_RESET(GT);
Paulo Zanonia9d356a2014-04-01 15:37:09 -03003303 if (INTEL_INFO(dev)->gen >= 6)
Paulo Zanonif86f3fb2014-04-01 15:37:14 -03003304 GEN5_IRQ_RESET(GEN6_PM);
Daniel Vetterd18ea1b2013-07-12 22:43:25 +02003305}
3306
Ville Syrjälä70591a42014-10-30 19:42:58 +02003307static void vlv_display_irq_reset(struct drm_i915_private *dev_priv)
3308{
3309 enum pipe pipe;
3310
Ville Syrjälä71b8b412016-04-11 16:56:31 +03003311 if (IS_CHERRYVIEW(dev_priv))
3312 I915_WRITE(DPINVGTT, DPINVGTT_STATUS_MASK_CHV);
3313 else
3314 I915_WRITE(DPINVGTT, DPINVGTT_STATUS_MASK);
3315
Ville Syrjäläad22d102016-04-12 18:56:14 +03003316 i915_hotplug_interrupt_update_locked(dev_priv, 0xffffffff, 0);
Ville Syrjälä70591a42014-10-30 19:42:58 +02003317 I915_WRITE(PORT_HOTPLUG_STAT, I915_READ(PORT_HOTPLUG_STAT));
3318
Ville Syrjäläad22d102016-04-12 18:56:14 +03003319 for_each_pipe(dev_priv, pipe) {
3320 I915_WRITE(PIPESTAT(pipe),
3321 PIPE_FIFO_UNDERRUN_STATUS |
3322 PIPESTAT_INT_STATUS_MASK);
3323 dev_priv->pipestat_irq_mask[pipe] = 0;
3324 }
Ville Syrjälä70591a42014-10-30 19:42:58 +02003325
3326 GEN5_IRQ_RESET(VLV_);
Ville Syrjäläad22d102016-04-12 18:56:14 +03003327 dev_priv->irq_mask = ~0;
Ville Syrjälä70591a42014-10-30 19:42:58 +02003328}
3329
Ville Syrjälä8bb61302016-04-12 18:56:44 +03003330static void vlv_display_irq_postinstall(struct drm_i915_private *dev_priv)
3331{
3332 u32 pipestat_mask;
Ville Syrjälä9ab981f2016-04-11 16:56:28 +03003333 u32 enable_mask;
Ville Syrjälä8bb61302016-04-12 18:56:44 +03003334 enum pipe pipe;
3335
Ville Syrjälä8bb61302016-04-12 18:56:44 +03003336 pipestat_mask = PLANE_FLIP_DONE_INT_STATUS_VLV |
3337 PIPE_CRC_DONE_INTERRUPT_STATUS;
3338
3339 i915_enable_pipestat(dev_priv, PIPE_A, PIPE_GMBUS_INTERRUPT_STATUS);
3340 for_each_pipe(dev_priv, pipe)
3341 i915_enable_pipestat(dev_priv, pipe, pipestat_mask);
3342
Ville Syrjälä9ab981f2016-04-11 16:56:28 +03003343 enable_mask = I915_DISPLAY_PORT_INTERRUPT |
3344 I915_DISPLAY_PIPE_A_EVENT_INTERRUPT |
3345 I915_DISPLAY_PIPE_B_EVENT_INTERRUPT;
Ville Syrjälä8bb61302016-04-12 18:56:44 +03003346 if (IS_CHERRYVIEW(dev_priv))
Ville Syrjälä9ab981f2016-04-11 16:56:28 +03003347 enable_mask |= I915_DISPLAY_PIPE_C_EVENT_INTERRUPT;
Ville Syrjälä6b7eafc2016-04-11 16:56:29 +03003348
3349 WARN_ON(dev_priv->irq_mask != ~0);
3350
Ville Syrjälä9ab981f2016-04-11 16:56:28 +03003351 dev_priv->irq_mask = ~enable_mask;
Ville Syrjälä8bb61302016-04-12 18:56:44 +03003352
Ville Syrjälä9ab981f2016-04-11 16:56:28 +03003353 GEN5_IRQ_INIT(VLV_, dev_priv->irq_mask, enable_mask);
Ville Syrjälä8bb61302016-04-12 18:56:44 +03003354}
3355
3356/* drm_dma.h hooks
3357*/
3358static void ironlake_irq_reset(struct drm_device *dev)
3359{
Chris Wilsonfac5e232016-07-04 11:34:36 +01003360 struct drm_i915_private *dev_priv = to_i915(dev);
Ville Syrjälä8bb61302016-04-12 18:56:44 +03003361
3362 I915_WRITE(HWSTAM, 0xffffffff);
3363
3364 GEN5_IRQ_RESET(DE);
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01003365 if (IS_GEN7(dev_priv))
Ville Syrjälä8bb61302016-04-12 18:56:44 +03003366 I915_WRITE(GEN7_ERR_INT, 0xffffffff);
3367
3368 gen5_gt_irq_reset(dev);
3369
3370 ibx_irq_reset(dev);
3371}
3372
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003373static void valleyview_irq_preinstall(struct drm_device *dev)
3374{
Chris Wilsonfac5e232016-07-04 11:34:36 +01003375 struct drm_i915_private *dev_priv = to_i915(dev);
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003376
Ville Syrjälä34c7b8a2016-04-13 21:19:48 +03003377 I915_WRITE(VLV_MASTER_IER, 0);
3378 POSTING_READ(VLV_MASTER_IER);
3379
Paulo Zanoni7c4d6642014-04-01 15:37:19 -03003380 gen5_gt_irq_reset(dev);
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003381
Ville Syrjäläad22d102016-04-12 18:56:14 +03003382 spin_lock_irq(&dev_priv->irq_lock);
Ville Syrjälä99182712016-04-11 16:56:25 +03003383 if (dev_priv->display_irqs_enabled)
3384 vlv_display_irq_reset(dev_priv);
Ville Syrjäläad22d102016-04-12 18:56:14 +03003385 spin_unlock_irq(&dev_priv->irq_lock);
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003386}
3387
Daniel Vetterd6e3cca2014-05-22 22:18:22 +02003388static void gen8_gt_irq_reset(struct drm_i915_private *dev_priv)
3389{
3390 GEN8_IRQ_RESET_NDX(GT, 0);
3391 GEN8_IRQ_RESET_NDX(GT, 1);
3392 GEN8_IRQ_RESET_NDX(GT, 2);
3393 GEN8_IRQ_RESET_NDX(GT, 3);
3394}
3395
Paulo Zanoni823f6b32014-04-01 15:37:26 -03003396static void gen8_irq_reset(struct drm_device *dev)
Ben Widawskyabd58f02013-11-02 21:07:09 -07003397{
Chris Wilsonfac5e232016-07-04 11:34:36 +01003398 struct drm_i915_private *dev_priv = to_i915(dev);
Ben Widawskyabd58f02013-11-02 21:07:09 -07003399 int pipe;
3400
Ben Widawskyabd58f02013-11-02 21:07:09 -07003401 I915_WRITE(GEN8_MASTER_IRQ, 0);
3402 POSTING_READ(GEN8_MASTER_IRQ);
3403
Daniel Vetterd6e3cca2014-05-22 22:18:22 +02003404 gen8_gt_irq_reset(dev_priv);
Ben Widawskyabd58f02013-11-02 21:07:09 -07003405
Damien Lespiau055e3932014-08-18 13:49:10 +01003406 for_each_pipe(dev_priv, pipe)
Daniel Vetterf458ebb2014-09-30 10:56:39 +02003407 if (intel_display_power_is_enabled(dev_priv,
3408 POWER_DOMAIN_PIPE(pipe)))
Paulo Zanoni813bde42014-07-04 11:50:29 -03003409 GEN8_IRQ_RESET_NDX(DE_PIPE, pipe);
Ben Widawskyabd58f02013-11-02 21:07:09 -07003410
Paulo Zanonif86f3fb2014-04-01 15:37:14 -03003411 GEN5_IRQ_RESET(GEN8_DE_PORT_);
3412 GEN5_IRQ_RESET(GEN8_DE_MISC_);
3413 GEN5_IRQ_RESET(GEN8_PCU_);
Ben Widawskyabd58f02013-11-02 21:07:09 -07003414
Tvrtko Ursulin6e266952016-10-13 11:02:53 +01003415 if (HAS_PCH_SPLIT(dev_priv))
Shashank Sharma266ea3d2014-08-22 17:40:42 +05303416 ibx_irq_reset(dev);
Ben Widawskyabd58f02013-11-02 21:07:09 -07003417}
Ben Widawskyabd58f02013-11-02 21:07:09 -07003418
Damien Lespiau4c6c03b2015-03-06 18:50:48 +00003419void gen8_irq_power_well_post_enable(struct drm_i915_private *dev_priv,
3420 unsigned int pipe_mask)
Paulo Zanonid49bdb02014-07-04 11:50:31 -03003421{
Paulo Zanoni1180e202014-10-07 18:02:52 -03003422 uint32_t extra_ier = GEN8_PIPE_VBLANK | GEN8_PIPE_FIFO_UNDERRUN;
Ville Syrjälä6831f3e2016-02-19 20:47:31 +02003423 enum pipe pipe;
Paulo Zanonid49bdb02014-07-04 11:50:31 -03003424
Daniel Vetter13321782014-09-15 14:55:29 +02003425 spin_lock_irq(&dev_priv->irq_lock);
Ville Syrjälä6831f3e2016-02-19 20:47:31 +02003426 for_each_pipe_masked(dev_priv, pipe, pipe_mask)
3427 GEN8_IRQ_INIT_NDX(DE_PIPE, pipe,
3428 dev_priv->de_irq_mask[pipe],
3429 ~dev_priv->de_irq_mask[pipe] | extra_ier);
Daniel Vetter13321782014-09-15 14:55:29 +02003430 spin_unlock_irq(&dev_priv->irq_lock);
Paulo Zanonid49bdb02014-07-04 11:50:31 -03003431}
3432
Ville Syrjäläaae8ba82016-02-19 20:47:30 +02003433void gen8_irq_power_well_pre_disable(struct drm_i915_private *dev_priv,
3434 unsigned int pipe_mask)
3435{
Ville Syrjälä6831f3e2016-02-19 20:47:31 +02003436 enum pipe pipe;
3437
Ville Syrjäläaae8ba82016-02-19 20:47:30 +02003438 spin_lock_irq(&dev_priv->irq_lock);
Ville Syrjälä6831f3e2016-02-19 20:47:31 +02003439 for_each_pipe_masked(dev_priv, pipe, pipe_mask)
3440 GEN8_IRQ_RESET_NDX(DE_PIPE, pipe);
Ville Syrjäläaae8ba82016-02-19 20:47:30 +02003441 spin_unlock_irq(&dev_priv->irq_lock);
3442
3443 /* make sure we're done processing display irqs */
Chris Wilson91c8a322016-07-05 10:40:23 +01003444 synchronize_irq(dev_priv->drm.irq);
Ville Syrjäläaae8ba82016-02-19 20:47:30 +02003445}
3446
Ville Syrjälä43f328d2014-04-09 20:40:52 +03003447static void cherryview_irq_preinstall(struct drm_device *dev)
3448{
Chris Wilsonfac5e232016-07-04 11:34:36 +01003449 struct drm_i915_private *dev_priv = to_i915(dev);
Ville Syrjälä43f328d2014-04-09 20:40:52 +03003450
3451 I915_WRITE(GEN8_MASTER_IRQ, 0);
3452 POSTING_READ(GEN8_MASTER_IRQ);
3453
Daniel Vetterd6e3cca2014-05-22 22:18:22 +02003454 gen8_gt_irq_reset(dev_priv);
Ville Syrjälä43f328d2014-04-09 20:40:52 +03003455
3456 GEN5_IRQ_RESET(GEN8_PCU_);
3457
Ville Syrjäläad22d102016-04-12 18:56:14 +03003458 spin_lock_irq(&dev_priv->irq_lock);
Ville Syrjälä99182712016-04-11 16:56:25 +03003459 if (dev_priv->display_irqs_enabled)
3460 vlv_display_irq_reset(dev_priv);
Ville Syrjäläad22d102016-04-12 18:56:14 +03003461 spin_unlock_irq(&dev_priv->irq_lock);
Ville Syrjälä43f328d2014-04-09 20:40:52 +03003462}
3463
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01003464static u32 intel_hpd_enabled_irqs(struct drm_i915_private *dev_priv,
Ville Syrjälä87a02102015-08-27 23:55:57 +03003465 const u32 hpd[HPD_NUM_PINS])
3466{
Ville Syrjälä87a02102015-08-27 23:55:57 +03003467 struct intel_encoder *encoder;
3468 u32 enabled_irqs = 0;
3469
Chris Wilson91c8a322016-07-05 10:40:23 +01003470 for_each_intel_encoder(&dev_priv->drm, encoder)
Ville Syrjälä87a02102015-08-27 23:55:57 +03003471 if (dev_priv->hotplug.stats[encoder->hpd_pin].state == HPD_ENABLED)
3472 enabled_irqs |= hpd[encoder->hpd_pin];
3473
3474 return enabled_irqs;
3475}
3476
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01003477static void ibx_hpd_irq_setup(struct drm_i915_private *dev_priv)
Keith Packard7fe0b972011-09-19 13:31:02 -07003478{
Ville Syrjälä87a02102015-08-27 23:55:57 +03003479 u32 hotplug_irqs, hotplug, enabled_irqs;
Keith Packard7fe0b972011-09-19 13:31:02 -07003480
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01003481 if (HAS_PCH_IBX(dev_priv)) {
Daniel Vetterfee884e2013-07-04 23:35:21 +02003482 hotplug_irqs = SDE_HOTPLUG_MASK;
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01003483 enabled_irqs = intel_hpd_enabled_irqs(dev_priv, hpd_ibx);
Daniel Vetter82a28bc2013-03-27 15:55:01 +01003484 } else {
Daniel Vetterfee884e2013-07-04 23:35:21 +02003485 hotplug_irqs = SDE_HOTPLUG_MASK_CPT;
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01003486 enabled_irqs = intel_hpd_enabled_irqs(dev_priv, hpd_cpt);
Daniel Vetter82a28bc2013-03-27 15:55:01 +01003487 }
3488
Daniel Vetterfee884e2013-07-04 23:35:21 +02003489 ibx_display_interrupt_update(dev_priv, hotplug_irqs, enabled_irqs);
Daniel Vetter82a28bc2013-03-27 15:55:01 +01003490
3491 /*
3492 * Enable digital hotplug on the PCH, and configure the DP short pulse
Ville Syrjälä6dbf30c2015-08-27 23:56:02 +03003493 * duration to 2ms (which is the minimum in the Display Port spec).
3494 * The pulse duration bits are reserved on LPT+.
Daniel Vetter82a28bc2013-03-27 15:55:01 +01003495 */
Keith Packard7fe0b972011-09-19 13:31:02 -07003496 hotplug = I915_READ(PCH_PORT_HOTPLUG);
3497 hotplug &= ~(PORTD_PULSE_DURATION_MASK|PORTC_PULSE_DURATION_MASK|PORTB_PULSE_DURATION_MASK);
3498 hotplug |= PORTD_HOTPLUG_ENABLE | PORTD_PULSE_DURATION_2ms;
3499 hotplug |= PORTC_HOTPLUG_ENABLE | PORTC_PULSE_DURATION_2ms;
3500 hotplug |= PORTB_HOTPLUG_ENABLE | PORTB_PULSE_DURATION_2ms;
Ville Syrjälä0b2eb332015-08-27 23:56:05 +03003501 /*
3502 * When CPU and PCH are on the same package, port A
3503 * HPD must be enabled in both north and south.
3504 */
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01003505 if (HAS_PCH_LPT_LP(dev_priv))
Ville Syrjälä0b2eb332015-08-27 23:56:05 +03003506 hotplug |= PORTA_HOTPLUG_ENABLE;
Keith Packard7fe0b972011-09-19 13:31:02 -07003507 I915_WRITE(PCH_PORT_HOTPLUG, hotplug);
Ville Syrjälä6dbf30c2015-08-27 23:56:02 +03003508}
Xiong Zhang26951ca2015-08-17 15:55:50 +08003509
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01003510static void spt_hpd_irq_setup(struct drm_i915_private *dev_priv)
Ville Syrjälä6dbf30c2015-08-27 23:56:02 +03003511{
Ville Syrjälä6dbf30c2015-08-27 23:56:02 +03003512 u32 hotplug_irqs, hotplug, enabled_irqs;
3513
3514 hotplug_irqs = SDE_HOTPLUG_MASK_SPT;
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01003515 enabled_irqs = intel_hpd_enabled_irqs(dev_priv, hpd_spt);
Ville Syrjälä6dbf30c2015-08-27 23:56:02 +03003516
3517 ibx_display_interrupt_update(dev_priv, hotplug_irqs, enabled_irqs);
3518
3519 /* Enable digital hotplug on the PCH */
3520 hotplug = I915_READ(PCH_PORT_HOTPLUG);
3521 hotplug |= PORTD_HOTPLUG_ENABLE | PORTC_HOTPLUG_ENABLE |
Ville Syrjälä74c0b392015-08-27 23:56:07 +03003522 PORTB_HOTPLUG_ENABLE | PORTA_HOTPLUG_ENABLE;
Ville Syrjälä6dbf30c2015-08-27 23:56:02 +03003523 I915_WRITE(PCH_PORT_HOTPLUG, hotplug);
3524
3525 hotplug = I915_READ(PCH_PORT_HOTPLUG2);
3526 hotplug |= PORTE_HOTPLUG_ENABLE;
3527 I915_WRITE(PCH_PORT_HOTPLUG2, hotplug);
Keith Packard7fe0b972011-09-19 13:31:02 -07003528}
3529
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01003530static void ilk_hpd_irq_setup(struct drm_i915_private *dev_priv)
Ville Syrjäläe4ce95a2015-08-27 23:56:03 +03003531{
Ville Syrjäläe4ce95a2015-08-27 23:56:03 +03003532 u32 hotplug_irqs, hotplug, enabled_irqs;
3533
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01003534 if (INTEL_GEN(dev_priv) >= 8) {
Ville Syrjälä3a3b3c72015-08-27 23:56:06 +03003535 hotplug_irqs = GEN8_PORT_DP_A_HOTPLUG;
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01003536 enabled_irqs = intel_hpd_enabled_irqs(dev_priv, hpd_bdw);
Ville Syrjälä3a3b3c72015-08-27 23:56:06 +03003537
3538 bdw_update_port_irq(dev_priv, hotplug_irqs, enabled_irqs);
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01003539 } else if (INTEL_GEN(dev_priv) >= 7) {
Ville Syrjälä23bb4cb2015-08-27 23:56:04 +03003540 hotplug_irqs = DE_DP_A_HOTPLUG_IVB;
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01003541 enabled_irqs = intel_hpd_enabled_irqs(dev_priv, hpd_ivb);
Ville Syrjälä3a3b3c72015-08-27 23:56:06 +03003542
3543 ilk_update_display_irq(dev_priv, hotplug_irqs, enabled_irqs);
Ville Syrjälä23bb4cb2015-08-27 23:56:04 +03003544 } else {
3545 hotplug_irqs = DE_DP_A_HOTPLUG;
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01003546 enabled_irqs = intel_hpd_enabled_irqs(dev_priv, hpd_ilk);
Ville Syrjäläe4ce95a2015-08-27 23:56:03 +03003547
Ville Syrjälä3a3b3c72015-08-27 23:56:06 +03003548 ilk_update_display_irq(dev_priv, hotplug_irqs, enabled_irqs);
3549 }
Ville Syrjäläe4ce95a2015-08-27 23:56:03 +03003550
3551 /*
3552 * Enable digital hotplug on the CPU, and configure the DP short pulse
3553 * duration to 2ms (which is the minimum in the Display Port spec)
Ville Syrjälä23bb4cb2015-08-27 23:56:04 +03003554 * The pulse duration bits are reserved on HSW+.
Ville Syrjäläe4ce95a2015-08-27 23:56:03 +03003555 */
3556 hotplug = I915_READ(DIGITAL_PORT_HOTPLUG_CNTRL);
3557 hotplug &= ~DIGITAL_PORTA_PULSE_DURATION_MASK;
3558 hotplug |= DIGITAL_PORTA_HOTPLUG_ENABLE | DIGITAL_PORTA_PULSE_DURATION_2ms;
3559 I915_WRITE(DIGITAL_PORT_HOTPLUG_CNTRL, hotplug);
3560
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01003561 ibx_hpd_irq_setup(dev_priv);
Ville Syrjäläe4ce95a2015-08-27 23:56:03 +03003562}
3563
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01003564static void bxt_hpd_irq_setup(struct drm_i915_private *dev_priv)
Shashank Sharmae0a20ad2015-03-27 14:54:14 +02003565{
Ville Syrjäläa52bb152015-08-27 23:56:11 +03003566 u32 hotplug_irqs, hotplug, enabled_irqs;
Shashank Sharmae0a20ad2015-03-27 14:54:14 +02003567
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01003568 enabled_irqs = intel_hpd_enabled_irqs(dev_priv, hpd_bxt);
Ville Syrjäläa52bb152015-08-27 23:56:11 +03003569 hotplug_irqs = BXT_DE_PORT_HOTPLUG_MASK;
Shashank Sharmae0a20ad2015-03-27 14:54:14 +02003570
Ville Syrjäläa52bb152015-08-27 23:56:11 +03003571 bdw_update_port_irq(dev_priv, hotplug_irqs, enabled_irqs);
Shashank Sharmae0a20ad2015-03-27 14:54:14 +02003572
Ville Syrjäläa52bb152015-08-27 23:56:11 +03003573 hotplug = I915_READ(PCH_PORT_HOTPLUG);
3574 hotplug |= PORTC_HOTPLUG_ENABLE | PORTB_HOTPLUG_ENABLE |
3575 PORTA_HOTPLUG_ENABLE;
Shubhangi Shrivastavad252bf62016-03-31 16:11:47 +05303576
3577 DRM_DEBUG_KMS("Invert bit setting: hp_ctl:%x hp_port:%x\n",
3578 hotplug, enabled_irqs);
3579 hotplug &= ~BXT_DDI_HPD_INVERT_MASK;
3580
3581 /*
3582 * For BXT invert bit has to be set based on AOB design
3583 * for HPD detection logic, update it based on VBT fields.
3584 */
3585
3586 if ((enabled_irqs & BXT_DE_PORT_HP_DDIA) &&
3587 intel_bios_is_port_hpd_inverted(dev_priv, PORT_A))
3588 hotplug |= BXT_DDIA_HPD_INVERT;
3589 if ((enabled_irqs & BXT_DE_PORT_HP_DDIB) &&
3590 intel_bios_is_port_hpd_inverted(dev_priv, PORT_B))
3591 hotplug |= BXT_DDIB_HPD_INVERT;
3592 if ((enabled_irqs & BXT_DE_PORT_HP_DDIC) &&
3593 intel_bios_is_port_hpd_inverted(dev_priv, PORT_C))
3594 hotplug |= BXT_DDIC_HPD_INVERT;
3595
Ville Syrjäläa52bb152015-08-27 23:56:11 +03003596 I915_WRITE(PCH_PORT_HOTPLUG, hotplug);
Shashank Sharmae0a20ad2015-03-27 14:54:14 +02003597}
3598
Paulo Zanonid46da432013-02-08 17:35:15 -02003599static void ibx_irq_postinstall(struct drm_device *dev)
3600{
Chris Wilsonfac5e232016-07-04 11:34:36 +01003601 struct drm_i915_private *dev_priv = to_i915(dev);
Daniel Vetter82a28bc2013-03-27 15:55:01 +01003602 u32 mask;
Paulo Zanonid46da432013-02-08 17:35:15 -02003603
Tvrtko Ursulin6e266952016-10-13 11:02:53 +01003604 if (HAS_PCH_NOP(dev_priv))
Daniel Vetter692a04c2013-05-29 21:43:05 +02003605 return;
3606
Tvrtko Ursulin6e266952016-10-13 11:02:53 +01003607 if (HAS_PCH_IBX(dev_priv))
Daniel Vetter5c673b62014-03-07 20:34:46 +01003608 mask = SDE_GMBUS | SDE_AUX_MASK | SDE_POISON;
Paulo Zanoni105b1222014-04-01 15:37:17 -03003609 else
Daniel Vetter5c673b62014-03-07 20:34:46 +01003610 mask = SDE_GMBUS_CPT | SDE_AUX_MASK_CPT;
Paulo Zanoni86642812013-04-12 17:57:57 -03003611
Ville Syrjäläb51a2842015-09-18 20:03:41 +03003612 gen5_assert_iir_is_zero(dev_priv, SDEIIR);
Paulo Zanonid46da432013-02-08 17:35:15 -02003613 I915_WRITE(SDEIMR, ~mask);
Paulo Zanonid46da432013-02-08 17:35:15 -02003614}
3615
Daniel Vetter0a9a8c92013-07-12 22:43:26 +02003616static void gen5_gt_irq_postinstall(struct drm_device *dev)
3617{
Chris Wilsonfac5e232016-07-04 11:34:36 +01003618 struct drm_i915_private *dev_priv = to_i915(dev);
Daniel Vetter0a9a8c92013-07-12 22:43:26 +02003619 u32 pm_irqs, gt_irqs;
3620
3621 pm_irqs = gt_irqs = 0;
3622
3623 dev_priv->gt_irq_mask = ~0;
Tvrtko Ursulin3c9192b2016-10-13 11:03:05 +01003624 if (HAS_L3_DPF(dev_priv)) {
Daniel Vetter0a9a8c92013-07-12 22:43:26 +02003625 /* L3 parity interrupt is always unmasked. */
Tvrtko Ursulin772c2a52016-10-13 11:03:01 +01003626 dev_priv->gt_irq_mask = ~GT_PARITY_ERROR(dev_priv);
3627 gt_irqs |= GT_PARITY_ERROR(dev_priv);
Daniel Vetter0a9a8c92013-07-12 22:43:26 +02003628 }
3629
3630 gt_irqs |= GT_RENDER_USER_INTERRUPT;
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01003631 if (IS_GEN5(dev_priv)) {
Chris Wilsonf8973c22016-07-01 17:23:21 +01003632 gt_irqs |= ILK_BSD_USER_INTERRUPT;
Daniel Vetter0a9a8c92013-07-12 22:43:26 +02003633 } else {
3634 gt_irqs |= GT_BLT_USER_INTERRUPT | GT_BSD_USER_INTERRUPT;
3635 }
3636
Paulo Zanoni35079892014-04-01 15:37:15 -03003637 GEN5_IRQ_INIT(GT, dev_priv->gt_irq_mask, gt_irqs);
Daniel Vetter0a9a8c92013-07-12 22:43:26 +02003638
3639 if (INTEL_INFO(dev)->gen >= 6) {
Imre Deak78e68d32014-12-15 18:59:27 +02003640 /*
3641 * RPS interrupts will get enabled/disabled on demand when RPS
3642 * itself is enabled/disabled.
3643 */
Akash Goelf4e9af42016-10-12 21:54:30 +05303644 if (HAS_VEBOX(dev_priv)) {
Daniel Vetter0a9a8c92013-07-12 22:43:26 +02003645 pm_irqs |= PM_VEBOX_USER_INTERRUPT;
Akash Goelf4e9af42016-10-12 21:54:30 +05303646 dev_priv->pm_ier |= PM_VEBOX_USER_INTERRUPT;
3647 }
Daniel Vetter0a9a8c92013-07-12 22:43:26 +02003648
Akash Goelf4e9af42016-10-12 21:54:30 +05303649 dev_priv->pm_imr = 0xffffffff;
3650 GEN5_IRQ_INIT(GEN6_PM, dev_priv->pm_imr, pm_irqs);
Daniel Vetter0a9a8c92013-07-12 22:43:26 +02003651 }
3652}
3653
Jesse Barnesf71d4af2011-06-28 13:00:41 -07003654static int ironlake_irq_postinstall(struct drm_device *dev)
Zhenyu Wang036a4a72009-06-08 14:40:19 +08003655{
Chris Wilsonfac5e232016-07-04 11:34:36 +01003656 struct drm_i915_private *dev_priv = to_i915(dev);
Paulo Zanoni8e76f8d2013-07-12 20:01:56 -03003657 u32 display_mask, extra_mask;
3658
3659 if (INTEL_INFO(dev)->gen >= 7) {
3660 display_mask = (DE_MASTER_IRQ_CONTROL | DE_GSE_IVB |
3661 DE_PCH_EVENT_IVB | DE_PLANEC_FLIP_DONE_IVB |
3662 DE_PLANEB_FLIP_DONE_IVB |
Daniel Vetter5c673b62014-03-07 20:34:46 +01003663 DE_PLANEA_FLIP_DONE_IVB | DE_AUX_CHANNEL_A_IVB);
Paulo Zanoni8e76f8d2013-07-12 20:01:56 -03003664 extra_mask = (DE_PIPEC_VBLANK_IVB | DE_PIPEB_VBLANK_IVB |
Ville Syrjälä23bb4cb2015-08-27 23:56:04 +03003665 DE_PIPEA_VBLANK_IVB | DE_ERR_INT_IVB |
3666 DE_DP_A_HOTPLUG_IVB);
Paulo Zanoni8e76f8d2013-07-12 20:01:56 -03003667 } else {
3668 display_mask = (DE_MASTER_IRQ_CONTROL | DE_GSE | DE_PCH_EVENT |
3669 DE_PLANEA_FLIP_DONE | DE_PLANEB_FLIP_DONE |
Daniel Vetter5b3a8562013-10-16 22:55:48 +02003670 DE_AUX_CHANNEL_A |
Daniel Vetter5b3a8562013-10-16 22:55:48 +02003671 DE_PIPEB_CRC_DONE | DE_PIPEA_CRC_DONE |
3672 DE_POISON);
Ville Syrjäläe4ce95a2015-08-27 23:56:03 +03003673 extra_mask = (DE_PIPEA_VBLANK | DE_PIPEB_VBLANK | DE_PCU_EVENT |
3674 DE_PIPEB_FIFO_UNDERRUN | DE_PIPEA_FIFO_UNDERRUN |
3675 DE_DP_A_HOTPLUG);
Paulo Zanoni8e76f8d2013-07-12 20:01:56 -03003676 }
Zhenyu Wang036a4a72009-06-08 14:40:19 +08003677
Chris Wilson1ec14ad2010-12-04 11:30:53 +00003678 dev_priv->irq_mask = ~display_mask;
Zhenyu Wang036a4a72009-06-08 14:40:19 +08003679
Paulo Zanoni0c841212014-04-01 15:37:27 -03003680 I915_WRITE(HWSTAM, 0xeffe);
3681
Paulo Zanoni622364b2014-04-01 15:37:22 -03003682 ibx_irq_pre_postinstall(dev);
3683
Paulo Zanoni35079892014-04-01 15:37:15 -03003684 GEN5_IRQ_INIT(DE, dev_priv->irq_mask, display_mask | extra_mask);
Zhenyu Wang036a4a72009-06-08 14:40:19 +08003685
Daniel Vetter0a9a8c92013-07-12 22:43:26 +02003686 gen5_gt_irq_postinstall(dev);
Zhenyu Wang036a4a72009-06-08 14:40:19 +08003687
Paulo Zanonid46da432013-02-08 17:35:15 -02003688 ibx_irq_postinstall(dev);
Keith Packard7fe0b972011-09-19 13:31:02 -07003689
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +01003690 if (IS_IRONLAKE_M(dev_priv)) {
Daniel Vetter6005ce42013-06-27 13:44:59 +02003691 /* Enable PCU event interrupts
3692 *
3693 * spinlocking not required here for correctness since interrupt
Daniel Vetter4bc9d432013-06-27 13:44:58 +02003694 * setup is guaranteed to run in single-threaded context. But we
3695 * need it to make the assert_spin_locked happy. */
Daniel Vetterd6207432014-09-15 14:55:27 +02003696 spin_lock_irq(&dev_priv->irq_lock);
Ville Syrjäläfbdedaea2015-11-23 18:06:16 +02003697 ilk_enable_display_irq(dev_priv, DE_PCU_EVENT);
Daniel Vetterd6207432014-09-15 14:55:27 +02003698 spin_unlock_irq(&dev_priv->irq_lock);
Jesse Barnesf97108d2010-01-29 11:27:07 -08003699 }
3700
Zhenyu Wang036a4a72009-06-08 14:40:19 +08003701 return 0;
3702}
3703
Imre Deakf8b79e52014-03-04 19:23:07 +02003704void valleyview_enable_display_irqs(struct drm_i915_private *dev_priv)
3705{
3706 assert_spin_locked(&dev_priv->irq_lock);
3707
3708 if (dev_priv->display_irqs_enabled)
3709 return;
3710
3711 dev_priv->display_irqs_enabled = true;
3712
Ville Syrjäläd6c69802016-04-11 16:56:27 +03003713 if (intel_irqs_enabled(dev_priv)) {
3714 vlv_display_irq_reset(dev_priv);
Ville Syrjäläad22d102016-04-12 18:56:14 +03003715 vlv_display_irq_postinstall(dev_priv);
Ville Syrjäläd6c69802016-04-11 16:56:27 +03003716 }
Imre Deakf8b79e52014-03-04 19:23:07 +02003717}
3718
3719void valleyview_disable_display_irqs(struct drm_i915_private *dev_priv)
3720{
3721 assert_spin_locked(&dev_priv->irq_lock);
3722
3723 if (!dev_priv->display_irqs_enabled)
3724 return;
3725
3726 dev_priv->display_irqs_enabled = false;
3727
Imre Deak950eaba2014-09-08 15:21:09 +03003728 if (intel_irqs_enabled(dev_priv))
Ville Syrjäläad22d102016-04-12 18:56:14 +03003729 vlv_display_irq_reset(dev_priv);
Imre Deakf8b79e52014-03-04 19:23:07 +02003730}
3731
Ville Syrjälä0e6c9a92014-10-30 19:43:00 +02003732
3733static int valleyview_irq_postinstall(struct drm_device *dev)
3734{
Chris Wilsonfac5e232016-07-04 11:34:36 +01003735 struct drm_i915_private *dev_priv = to_i915(dev);
Ville Syrjälä0e6c9a92014-10-30 19:43:00 +02003736
Daniel Vetter0a9a8c92013-07-12 22:43:26 +02003737 gen5_gt_irq_postinstall(dev);
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003738
Ville Syrjäläad22d102016-04-12 18:56:14 +03003739 spin_lock_irq(&dev_priv->irq_lock);
Ville Syrjälä99182712016-04-11 16:56:25 +03003740 if (dev_priv->display_irqs_enabled)
3741 vlv_display_irq_postinstall(dev_priv);
Ville Syrjäläad22d102016-04-12 18:56:14 +03003742 spin_unlock_irq(&dev_priv->irq_lock);
3743
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003744 I915_WRITE(VLV_MASTER_IER, MASTER_INTERRUPT_ENABLE);
Ville Syrjälä34c7b8a2016-04-13 21:19:48 +03003745 POSTING_READ(VLV_MASTER_IER);
Daniel Vetter20afbda2012-12-11 14:05:07 +01003746
3747 return 0;
3748}
3749
Ben Widawskyabd58f02013-11-02 21:07:09 -07003750static void gen8_gt_irq_postinstall(struct drm_i915_private *dev_priv)
3751{
Ben Widawskyabd58f02013-11-02 21:07:09 -07003752 /* These are interrupts we'll toggle with the ring mask register */
3753 uint32_t gt_interrupts[] = {
3754 GT_RENDER_USER_INTERRUPT << GEN8_RCS_IRQ_SHIFT |
Oscar Mateo73d477f2014-07-24 17:04:31 +01003755 GT_CONTEXT_SWITCH_INTERRUPT << GEN8_RCS_IRQ_SHIFT |
Oscar Mateo73d477f2014-07-24 17:04:31 +01003756 GT_RENDER_USER_INTERRUPT << GEN8_BCS_IRQ_SHIFT |
3757 GT_CONTEXT_SWITCH_INTERRUPT << GEN8_BCS_IRQ_SHIFT,
Ben Widawskyabd58f02013-11-02 21:07:09 -07003758 GT_RENDER_USER_INTERRUPT << GEN8_VCS1_IRQ_SHIFT |
Oscar Mateo73d477f2014-07-24 17:04:31 +01003759 GT_CONTEXT_SWITCH_INTERRUPT << GEN8_VCS1_IRQ_SHIFT |
3760 GT_RENDER_USER_INTERRUPT << GEN8_VCS2_IRQ_SHIFT |
3761 GT_CONTEXT_SWITCH_INTERRUPT << GEN8_VCS2_IRQ_SHIFT,
Ben Widawskyabd58f02013-11-02 21:07:09 -07003762 0,
Oscar Mateo73d477f2014-07-24 17:04:31 +01003763 GT_RENDER_USER_INTERRUPT << GEN8_VECS_IRQ_SHIFT |
3764 GT_CONTEXT_SWITCH_INTERRUPT << GEN8_VECS_IRQ_SHIFT
Ben Widawskyabd58f02013-11-02 21:07:09 -07003765 };
3766
Tvrtko Ursulin98735732016-04-19 16:46:08 +01003767 if (HAS_L3_DPF(dev_priv))
3768 gt_interrupts[0] |= GT_RENDER_L3_PARITY_ERROR_INTERRUPT;
3769
Akash Goelf4e9af42016-10-12 21:54:30 +05303770 dev_priv->pm_ier = 0x0;
3771 dev_priv->pm_imr = ~dev_priv->pm_ier;
Deepak S9a2d2d82014-08-22 08:32:40 +05303772 GEN8_IRQ_INIT_NDX(GT, 0, ~gt_interrupts[0], gt_interrupts[0]);
3773 GEN8_IRQ_INIT_NDX(GT, 1, ~gt_interrupts[1], gt_interrupts[1]);
Imre Deak78e68d32014-12-15 18:59:27 +02003774 /*
3775 * RPS interrupts will get enabled/disabled on demand when RPS itself
Sagar Arun Kamble26705e22016-10-12 21:54:31 +05303776 * is enabled/disabled. Same wil be the case for GuC interrupts.
Imre Deak78e68d32014-12-15 18:59:27 +02003777 */
Akash Goelf4e9af42016-10-12 21:54:30 +05303778 GEN8_IRQ_INIT_NDX(GT, 2, dev_priv->pm_imr, dev_priv->pm_ier);
Deepak S9a2d2d82014-08-22 08:32:40 +05303779 GEN8_IRQ_INIT_NDX(GT, 3, ~gt_interrupts[3], gt_interrupts[3]);
Ben Widawskyabd58f02013-11-02 21:07:09 -07003780}
3781
3782static void gen8_de_irq_postinstall(struct drm_i915_private *dev_priv)
3783{
Damien Lespiau770de832014-03-20 20:45:01 +00003784 uint32_t de_pipe_masked = GEN8_PIPE_CDCLK_CRC_DONE;
3785 uint32_t de_pipe_enables;
Ville Syrjälä3a3b3c72015-08-27 23:56:06 +03003786 u32 de_port_masked = GEN8_AUX_CHANNEL_A;
3787 u32 de_port_enables;
Ville Syrjälä11825b02016-05-19 12:14:43 +03003788 u32 de_misc_masked = GEN8_DE_MISC_GSE;
Ville Syrjälä3a3b3c72015-08-27 23:56:06 +03003789 enum pipe pipe;
Damien Lespiau770de832014-03-20 20:45:01 +00003790
Rodrigo Vivib4834a52015-09-02 15:19:24 -07003791 if (INTEL_INFO(dev_priv)->gen >= 9) {
Damien Lespiau770de832014-03-20 20:45:01 +00003792 de_pipe_masked |= GEN9_PIPE_PLANE1_FLIP_DONE |
3793 GEN9_DE_PIPE_IRQ_FAULT_ERRORS;
Ville Syrjälä3a3b3c72015-08-27 23:56:06 +03003794 de_port_masked |= GEN9_AUX_CHANNEL_B | GEN9_AUX_CHANNEL_C |
3795 GEN9_AUX_CHANNEL_D;
Shashank Sharma9e637432014-08-22 17:40:43 +05303796 if (IS_BROXTON(dev_priv))
Ville Syrjälä3a3b3c72015-08-27 23:56:06 +03003797 de_port_masked |= BXT_DE_PORT_GMBUS;
3798 } else {
Damien Lespiau770de832014-03-20 20:45:01 +00003799 de_pipe_masked |= GEN8_PIPE_PRIMARY_FLIP_DONE |
3800 GEN8_DE_PIPE_IRQ_FAULT_ERRORS;
Ville Syrjälä3a3b3c72015-08-27 23:56:06 +03003801 }
Damien Lespiau770de832014-03-20 20:45:01 +00003802
3803 de_pipe_enables = de_pipe_masked | GEN8_PIPE_VBLANK |
3804 GEN8_PIPE_FIFO_UNDERRUN;
3805
Ville Syrjälä3a3b3c72015-08-27 23:56:06 +03003806 de_port_enables = de_port_masked;
Ville Syrjäläa52bb152015-08-27 23:56:11 +03003807 if (IS_BROXTON(dev_priv))
3808 de_port_enables |= BXT_DE_PORT_HOTPLUG_MASK;
3809 else if (IS_BROADWELL(dev_priv))
Ville Syrjälä3a3b3c72015-08-27 23:56:06 +03003810 de_port_enables |= GEN8_PORT_DP_A_HOTPLUG;
3811
Daniel Vetter13b3a0a2013-11-07 15:31:52 +01003812 dev_priv->de_irq_mask[PIPE_A] = ~de_pipe_masked;
3813 dev_priv->de_irq_mask[PIPE_B] = ~de_pipe_masked;
3814 dev_priv->de_irq_mask[PIPE_C] = ~de_pipe_masked;
Ben Widawskyabd58f02013-11-02 21:07:09 -07003815
Damien Lespiau055e3932014-08-18 13:49:10 +01003816 for_each_pipe(dev_priv, pipe)
Daniel Vetterf458ebb2014-09-30 10:56:39 +02003817 if (intel_display_power_is_enabled(dev_priv,
Paulo Zanoni813bde42014-07-04 11:50:29 -03003818 POWER_DOMAIN_PIPE(pipe)))
3819 GEN8_IRQ_INIT_NDX(DE_PIPE, pipe,
3820 dev_priv->de_irq_mask[pipe],
3821 de_pipe_enables);
Ben Widawskyabd58f02013-11-02 21:07:09 -07003822
Ville Syrjälä3a3b3c72015-08-27 23:56:06 +03003823 GEN5_IRQ_INIT(GEN8_DE_PORT_, ~de_port_masked, de_port_enables);
Ville Syrjälä11825b02016-05-19 12:14:43 +03003824 GEN5_IRQ_INIT(GEN8_DE_MISC_, ~de_misc_masked, de_misc_masked);
Ben Widawskyabd58f02013-11-02 21:07:09 -07003825}
3826
3827static int gen8_irq_postinstall(struct drm_device *dev)
3828{
Chris Wilsonfac5e232016-07-04 11:34:36 +01003829 struct drm_i915_private *dev_priv = to_i915(dev);
Ben Widawskyabd58f02013-11-02 21:07:09 -07003830
Tvrtko Ursulin6e266952016-10-13 11:02:53 +01003831 if (HAS_PCH_SPLIT(dev_priv))
Shashank Sharma266ea3d2014-08-22 17:40:42 +05303832 ibx_irq_pre_postinstall(dev);
Paulo Zanoni622364b2014-04-01 15:37:22 -03003833
Ben Widawskyabd58f02013-11-02 21:07:09 -07003834 gen8_gt_irq_postinstall(dev_priv);
3835 gen8_de_irq_postinstall(dev_priv);
3836
Tvrtko Ursulin6e266952016-10-13 11:02:53 +01003837 if (HAS_PCH_SPLIT(dev_priv))
Shashank Sharma266ea3d2014-08-22 17:40:42 +05303838 ibx_irq_postinstall(dev);
Ben Widawskyabd58f02013-11-02 21:07:09 -07003839
Ville Syrjäläe5328c42016-04-13 21:19:47 +03003840 I915_WRITE(GEN8_MASTER_IRQ, GEN8_MASTER_IRQ_CONTROL);
Ben Widawskyabd58f02013-11-02 21:07:09 -07003841 POSTING_READ(GEN8_MASTER_IRQ);
3842
3843 return 0;
3844}
3845
Ville Syrjälä43f328d2014-04-09 20:40:52 +03003846static int cherryview_irq_postinstall(struct drm_device *dev)
3847{
Chris Wilsonfac5e232016-07-04 11:34:36 +01003848 struct drm_i915_private *dev_priv = to_i915(dev);
Ville Syrjälä43f328d2014-04-09 20:40:52 +03003849
Ville Syrjälä43f328d2014-04-09 20:40:52 +03003850 gen8_gt_irq_postinstall(dev_priv);
3851
Ville Syrjäläad22d102016-04-12 18:56:14 +03003852 spin_lock_irq(&dev_priv->irq_lock);
Ville Syrjälä99182712016-04-11 16:56:25 +03003853 if (dev_priv->display_irqs_enabled)
3854 vlv_display_irq_postinstall(dev_priv);
Ville Syrjäläad22d102016-04-12 18:56:14 +03003855 spin_unlock_irq(&dev_priv->irq_lock);
3856
Ville Syrjäläe5328c42016-04-13 21:19:47 +03003857 I915_WRITE(GEN8_MASTER_IRQ, GEN8_MASTER_IRQ_CONTROL);
Ville Syrjälä43f328d2014-04-09 20:40:52 +03003858 POSTING_READ(GEN8_MASTER_IRQ);
3859
3860 return 0;
3861}
3862
Ben Widawskyabd58f02013-11-02 21:07:09 -07003863static void gen8_irq_uninstall(struct drm_device *dev)
3864{
Chris Wilsonfac5e232016-07-04 11:34:36 +01003865 struct drm_i915_private *dev_priv = to_i915(dev);
Ben Widawskyabd58f02013-11-02 21:07:09 -07003866
3867 if (!dev_priv)
3868 return;
3869
Paulo Zanoni823f6b32014-04-01 15:37:26 -03003870 gen8_irq_reset(dev);
Ben Widawskyabd58f02013-11-02 21:07:09 -07003871}
3872
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003873static void valleyview_irq_uninstall(struct drm_device *dev)
3874{
Chris Wilsonfac5e232016-07-04 11:34:36 +01003875 struct drm_i915_private *dev_priv = to_i915(dev);
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003876
3877 if (!dev_priv)
3878 return;
3879
Imre Deak843d0e72014-04-14 20:24:23 +03003880 I915_WRITE(VLV_MASTER_IER, 0);
Ville Syrjälä34c7b8a2016-04-13 21:19:48 +03003881 POSTING_READ(VLV_MASTER_IER);
Imre Deak843d0e72014-04-14 20:24:23 +03003882
Ville Syrjälä893fce82014-10-30 19:42:56 +02003883 gen5_gt_irq_reset(dev);
3884
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003885 I915_WRITE(HWSTAM, 0xffffffff);
Imre Deakf8b79e52014-03-04 19:23:07 +02003886
Ville Syrjäläad22d102016-04-12 18:56:14 +03003887 spin_lock_irq(&dev_priv->irq_lock);
Ville Syrjälä99182712016-04-11 16:56:25 +03003888 if (dev_priv->display_irqs_enabled)
3889 vlv_display_irq_reset(dev_priv);
Ville Syrjäläad22d102016-04-12 18:56:14 +03003890 spin_unlock_irq(&dev_priv->irq_lock);
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003891}
3892
Ville Syrjälä43f328d2014-04-09 20:40:52 +03003893static void cherryview_irq_uninstall(struct drm_device *dev)
3894{
Chris Wilsonfac5e232016-07-04 11:34:36 +01003895 struct drm_i915_private *dev_priv = to_i915(dev);
Ville Syrjälä43f328d2014-04-09 20:40:52 +03003896
3897 if (!dev_priv)
3898 return;
3899
3900 I915_WRITE(GEN8_MASTER_IRQ, 0);
3901 POSTING_READ(GEN8_MASTER_IRQ);
3902
Ville Syrjäläa2c30fb2014-10-30 19:42:52 +02003903 gen8_gt_irq_reset(dev_priv);
Ville Syrjälä43f328d2014-04-09 20:40:52 +03003904
Ville Syrjäläa2c30fb2014-10-30 19:42:52 +02003905 GEN5_IRQ_RESET(GEN8_PCU_);
Ville Syrjälä43f328d2014-04-09 20:40:52 +03003906
Ville Syrjäläad22d102016-04-12 18:56:14 +03003907 spin_lock_irq(&dev_priv->irq_lock);
Ville Syrjälä99182712016-04-11 16:56:25 +03003908 if (dev_priv->display_irqs_enabled)
3909 vlv_display_irq_reset(dev_priv);
Ville Syrjäläad22d102016-04-12 18:56:14 +03003910 spin_unlock_irq(&dev_priv->irq_lock);
Ville Syrjälä43f328d2014-04-09 20:40:52 +03003911}
3912
Jesse Barnesf71d4af2011-06-28 13:00:41 -07003913static void ironlake_irq_uninstall(struct drm_device *dev)
Zhenyu Wang036a4a72009-06-08 14:40:19 +08003914{
Chris Wilsonfac5e232016-07-04 11:34:36 +01003915 struct drm_i915_private *dev_priv = to_i915(dev);
Jesse Barnes46979952011-04-07 13:53:55 -07003916
3917 if (!dev_priv)
3918 return;
3919
Paulo Zanonibe30b292014-04-01 15:37:25 -03003920 ironlake_irq_reset(dev);
Zhenyu Wang036a4a72009-06-08 14:40:19 +08003921}
3922
Chris Wilsonc2798b12012-04-22 21:13:57 +01003923static void i8xx_irq_preinstall(struct drm_device * dev)
3924{
Chris Wilsonfac5e232016-07-04 11:34:36 +01003925 struct drm_i915_private *dev_priv = to_i915(dev);
Chris Wilsonc2798b12012-04-22 21:13:57 +01003926 int pipe;
3927
Damien Lespiau055e3932014-08-18 13:49:10 +01003928 for_each_pipe(dev_priv, pipe)
Chris Wilsonc2798b12012-04-22 21:13:57 +01003929 I915_WRITE(PIPESTAT(pipe), 0);
3930 I915_WRITE16(IMR, 0xffff);
3931 I915_WRITE16(IER, 0x0);
3932 POSTING_READ16(IER);
3933}
3934
3935static int i8xx_irq_postinstall(struct drm_device *dev)
3936{
Chris Wilsonfac5e232016-07-04 11:34:36 +01003937 struct drm_i915_private *dev_priv = to_i915(dev);
Chris Wilsonc2798b12012-04-22 21:13:57 +01003938
Chris Wilsonc2798b12012-04-22 21:13:57 +01003939 I915_WRITE16(EMR,
3940 ~(I915_ERROR_PAGE_TABLE | I915_ERROR_MEMORY_REFRESH));
3941
3942 /* Unmask the interrupts that we always want on. */
3943 dev_priv->irq_mask =
3944 ~(I915_DISPLAY_PIPE_A_EVENT_INTERRUPT |
3945 I915_DISPLAY_PIPE_B_EVENT_INTERRUPT |
3946 I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT |
Daniel Vetter37ef01a2015-04-01 13:43:46 +02003947 I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT);
Chris Wilsonc2798b12012-04-22 21:13:57 +01003948 I915_WRITE16(IMR, dev_priv->irq_mask);
3949
3950 I915_WRITE16(IER,
3951 I915_DISPLAY_PIPE_A_EVENT_INTERRUPT |
3952 I915_DISPLAY_PIPE_B_EVENT_INTERRUPT |
Chris Wilsonc2798b12012-04-22 21:13:57 +01003953 I915_USER_INTERRUPT);
3954 POSTING_READ16(IER);
3955
Daniel Vetter379ef822013-10-16 22:55:56 +02003956 /* Interrupt setup is already guaranteed to be single-threaded, this is
3957 * just to make the assert_spin_locked check happy. */
Daniel Vetterd6207432014-09-15 14:55:27 +02003958 spin_lock_irq(&dev_priv->irq_lock);
Imre Deak755e9012014-02-10 18:42:47 +02003959 i915_enable_pipestat(dev_priv, PIPE_A, PIPE_CRC_DONE_INTERRUPT_STATUS);
3960 i915_enable_pipestat(dev_priv, PIPE_B, PIPE_CRC_DONE_INTERRUPT_STATUS);
Daniel Vetterd6207432014-09-15 14:55:27 +02003961 spin_unlock_irq(&dev_priv->irq_lock);
Daniel Vetter379ef822013-10-16 22:55:56 +02003962
Chris Wilsonc2798b12012-04-22 21:13:57 +01003963 return 0;
3964}
3965
Daniel Vetter5a21b662016-05-24 17:13:53 +02003966/*
3967 * Returns true when a page flip has completed.
3968 */
3969static bool i8xx_handle_vblank(struct drm_i915_private *dev_priv,
3970 int plane, int pipe, u32 iir)
3971{
3972 u16 flip_pending = DISPLAY_PLANE_FLIP_PENDING(plane);
3973
3974 if (!intel_pipe_handle_vblank(dev_priv, pipe))
3975 return false;
3976
3977 if ((iir & flip_pending) == 0)
3978 goto check_page_flip;
3979
3980 /* We detect FlipDone by looking for the change in PendingFlip from '1'
3981 * to '0' on the following vblank, i.e. IIR has the Pendingflip
3982 * asserted following the MI_DISPLAY_FLIP, but ISR is deasserted, hence
3983 * the flip is completed (no longer pending). Since this doesn't raise
3984 * an interrupt per se, we watch for the change at vblank.
3985 */
3986 if (I915_READ16(ISR) & flip_pending)
3987 goto check_page_flip;
3988
3989 intel_finish_page_flip_cs(dev_priv, pipe);
3990 return true;
3991
3992check_page_flip:
3993 intel_check_page_flip(dev_priv, pipe);
3994 return false;
3995}
3996
Daniel Vetterff1f5252012-10-02 15:10:55 +02003997static irqreturn_t i8xx_irq_handler(int irq, void *arg)
Chris Wilsonc2798b12012-04-22 21:13:57 +01003998{
Daniel Vetter45a83f82014-05-12 19:17:55 +02003999 struct drm_device *dev = arg;
Chris Wilsonfac5e232016-07-04 11:34:36 +01004000 struct drm_i915_private *dev_priv = to_i915(dev);
Chris Wilsonc2798b12012-04-22 21:13:57 +01004001 u16 iir, new_iir;
4002 u32 pipe_stats[2];
Chris Wilsonc2798b12012-04-22 21:13:57 +01004003 int pipe;
4004 u16 flip_mask =
4005 I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT |
4006 I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT;
Imre Deak1f814da2015-12-16 02:52:19 +02004007 irqreturn_t ret;
Chris Wilsonc2798b12012-04-22 21:13:57 +01004008
Imre Deak2dd2a882015-02-24 11:14:30 +02004009 if (!intel_irqs_enabled(dev_priv))
4010 return IRQ_NONE;
4011
Imre Deak1f814da2015-12-16 02:52:19 +02004012 /* IRQs are synced during runtime_suspend, we don't require a wakeref */
4013 disable_rpm_wakeref_asserts(dev_priv);
4014
4015 ret = IRQ_NONE;
Chris Wilsonc2798b12012-04-22 21:13:57 +01004016 iir = I915_READ16(IIR);
4017 if (iir == 0)
Imre Deak1f814da2015-12-16 02:52:19 +02004018 goto out;
Chris Wilsonc2798b12012-04-22 21:13:57 +01004019
4020 while (iir & ~flip_mask) {
4021 /* Can't rely on pipestat interrupt bit in iir as it might
4022 * have been cleared after the pipestat interrupt was received.
4023 * It doesn't set the bit in iir again, but it still produces
4024 * interrupts (for non-MSI).
4025 */
Daniel Vetter222c7f52014-09-15 14:55:28 +02004026 spin_lock(&dev_priv->irq_lock);
Chris Wilsonc2798b12012-04-22 21:13:57 +01004027 if (iir & I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT)
Daniel Vetteraaecdf62014-11-04 15:52:22 +01004028 DRM_DEBUG("Command parser error, iir 0x%08x\n", iir);
Chris Wilsonc2798b12012-04-22 21:13:57 +01004029
Damien Lespiau055e3932014-08-18 13:49:10 +01004030 for_each_pipe(dev_priv, pipe) {
Ville Syrjäläf0f59a02015-11-18 15:33:26 +02004031 i915_reg_t reg = PIPESTAT(pipe);
Chris Wilsonc2798b12012-04-22 21:13:57 +01004032 pipe_stats[pipe] = I915_READ(reg);
4033
4034 /*
4035 * Clear the PIPE*STAT regs before the IIR
4036 */
Ville Syrjälä2d9d2b02014-01-17 11:44:31 +02004037 if (pipe_stats[pipe] & 0x8000ffff)
Chris Wilsonc2798b12012-04-22 21:13:57 +01004038 I915_WRITE(reg, pipe_stats[pipe]);
Chris Wilsonc2798b12012-04-22 21:13:57 +01004039 }
Daniel Vetter222c7f52014-09-15 14:55:28 +02004040 spin_unlock(&dev_priv->irq_lock);
Chris Wilsonc2798b12012-04-22 21:13:57 +01004041
4042 I915_WRITE16(IIR, iir & ~flip_mask);
4043 new_iir = I915_READ16(IIR); /* Flush posted writes */
4044
Chris Wilsonc2798b12012-04-22 21:13:57 +01004045 if (iir & I915_USER_INTERRUPT)
Akash Goel3b3f1652016-10-13 22:44:48 +05304046 notify_ring(dev_priv->engine[RCS]);
Chris Wilsonc2798b12012-04-22 21:13:57 +01004047
Damien Lespiau055e3932014-08-18 13:49:10 +01004048 for_each_pipe(dev_priv, pipe) {
Daniel Vetter5a21b662016-05-24 17:13:53 +02004049 int plane = pipe;
4050 if (HAS_FBC(dev_priv))
4051 plane = !plane;
4052
4053 if (pipe_stats[pipe] & PIPE_VBLANK_INTERRUPT_STATUS &&
4054 i8xx_handle_vblank(dev_priv, plane, pipe, iir))
4055 flip_mask &= ~DISPLAY_PLANE_FLIP_PENDING(plane);
Chris Wilsonc2798b12012-04-22 21:13:57 +01004056
Daniel Vetter4356d582013-10-16 22:55:55 +02004057 if (pipe_stats[pipe] & PIPE_CRC_DONE_INTERRUPT_STATUS)
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01004058 i9xx_pipe_crc_irq_handler(dev_priv, pipe);
Ville Syrjälä2d9d2b02014-01-17 11:44:31 +02004059
Daniel Vetter1f7247c2014-09-30 10:56:48 +02004060 if (pipe_stats[pipe] & PIPE_FIFO_UNDERRUN_STATUS)
4061 intel_cpu_fifo_underrun_irq_handler(dev_priv,
4062 pipe);
Daniel Vetter4356d582013-10-16 22:55:55 +02004063 }
Chris Wilsonc2798b12012-04-22 21:13:57 +01004064
4065 iir = new_iir;
4066 }
Imre Deak1f814da2015-12-16 02:52:19 +02004067 ret = IRQ_HANDLED;
Chris Wilsonc2798b12012-04-22 21:13:57 +01004068
Imre Deak1f814da2015-12-16 02:52:19 +02004069out:
4070 enable_rpm_wakeref_asserts(dev_priv);
4071
4072 return ret;
Chris Wilsonc2798b12012-04-22 21:13:57 +01004073}
4074
4075static void i8xx_irq_uninstall(struct drm_device * dev)
4076{
Chris Wilsonfac5e232016-07-04 11:34:36 +01004077 struct drm_i915_private *dev_priv = to_i915(dev);
Chris Wilsonc2798b12012-04-22 21:13:57 +01004078 int pipe;
4079
Damien Lespiau055e3932014-08-18 13:49:10 +01004080 for_each_pipe(dev_priv, pipe) {
Chris Wilsonc2798b12012-04-22 21:13:57 +01004081 /* Clear enable bits; then clear status bits */
4082 I915_WRITE(PIPESTAT(pipe), 0);
4083 I915_WRITE(PIPESTAT(pipe), I915_READ(PIPESTAT(pipe)));
4084 }
4085 I915_WRITE16(IMR, 0xffff);
4086 I915_WRITE16(IER, 0x0);
4087 I915_WRITE16(IIR, I915_READ16(IIR));
4088}
4089
Chris Wilsona266c7d2012-04-24 22:59:44 +01004090static void i915_irq_preinstall(struct drm_device * dev)
4091{
Chris Wilsonfac5e232016-07-04 11:34:36 +01004092 struct drm_i915_private *dev_priv = to_i915(dev);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004093 int pipe;
4094
Chris Wilsona266c7d2012-04-24 22:59:44 +01004095 if (I915_HAS_HOTPLUG(dev)) {
Egbert Eich0706f172015-09-23 16:15:27 +02004096 i915_hotplug_interrupt_update(dev_priv, 0xffffffff, 0);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004097 I915_WRITE(PORT_HOTPLUG_STAT, I915_READ(PORT_HOTPLUG_STAT));
4098 }
4099
Chris Wilson00d98eb2012-04-24 22:59:48 +01004100 I915_WRITE16(HWSTAM, 0xeffe);
Damien Lespiau055e3932014-08-18 13:49:10 +01004101 for_each_pipe(dev_priv, pipe)
Chris Wilsona266c7d2012-04-24 22:59:44 +01004102 I915_WRITE(PIPESTAT(pipe), 0);
4103 I915_WRITE(IMR, 0xffffffff);
4104 I915_WRITE(IER, 0x0);
4105 POSTING_READ(IER);
4106}
4107
4108static int i915_irq_postinstall(struct drm_device *dev)
4109{
Chris Wilsonfac5e232016-07-04 11:34:36 +01004110 struct drm_i915_private *dev_priv = to_i915(dev);
Chris Wilson38bde182012-04-24 22:59:50 +01004111 u32 enable_mask;
Chris Wilsona266c7d2012-04-24 22:59:44 +01004112
Chris Wilson38bde182012-04-24 22:59:50 +01004113 I915_WRITE(EMR, ~(I915_ERROR_PAGE_TABLE | I915_ERROR_MEMORY_REFRESH));
4114
4115 /* Unmask the interrupts that we always want on. */
4116 dev_priv->irq_mask =
4117 ~(I915_ASLE_INTERRUPT |
4118 I915_DISPLAY_PIPE_A_EVENT_INTERRUPT |
4119 I915_DISPLAY_PIPE_B_EVENT_INTERRUPT |
4120 I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT |
Daniel Vetter37ef01a2015-04-01 13:43:46 +02004121 I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT);
Chris Wilson38bde182012-04-24 22:59:50 +01004122
4123 enable_mask =
4124 I915_ASLE_INTERRUPT |
4125 I915_DISPLAY_PIPE_A_EVENT_INTERRUPT |
4126 I915_DISPLAY_PIPE_B_EVENT_INTERRUPT |
Chris Wilson38bde182012-04-24 22:59:50 +01004127 I915_USER_INTERRUPT;
4128
Chris Wilsona266c7d2012-04-24 22:59:44 +01004129 if (I915_HAS_HOTPLUG(dev)) {
Egbert Eich0706f172015-09-23 16:15:27 +02004130 i915_hotplug_interrupt_update(dev_priv, 0xffffffff, 0);
Daniel Vetter20afbda2012-12-11 14:05:07 +01004131 POSTING_READ(PORT_HOTPLUG_EN);
4132
Chris Wilsona266c7d2012-04-24 22:59:44 +01004133 /* Enable in IER... */
4134 enable_mask |= I915_DISPLAY_PORT_INTERRUPT;
4135 /* and unmask in IMR */
4136 dev_priv->irq_mask &= ~I915_DISPLAY_PORT_INTERRUPT;
4137 }
4138
Chris Wilsona266c7d2012-04-24 22:59:44 +01004139 I915_WRITE(IMR, dev_priv->irq_mask);
4140 I915_WRITE(IER, enable_mask);
4141 POSTING_READ(IER);
4142
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01004143 i915_enable_asle_pipestat(dev_priv);
Daniel Vetter20afbda2012-12-11 14:05:07 +01004144
Daniel Vetter379ef822013-10-16 22:55:56 +02004145 /* Interrupt setup is already guaranteed to be single-threaded, this is
4146 * just to make the assert_spin_locked check happy. */
Daniel Vetterd6207432014-09-15 14:55:27 +02004147 spin_lock_irq(&dev_priv->irq_lock);
Imre Deak755e9012014-02-10 18:42:47 +02004148 i915_enable_pipestat(dev_priv, PIPE_A, PIPE_CRC_DONE_INTERRUPT_STATUS);
4149 i915_enable_pipestat(dev_priv, PIPE_B, PIPE_CRC_DONE_INTERRUPT_STATUS);
Daniel Vetterd6207432014-09-15 14:55:27 +02004150 spin_unlock_irq(&dev_priv->irq_lock);
Daniel Vetter379ef822013-10-16 22:55:56 +02004151
Daniel Vetter20afbda2012-12-11 14:05:07 +01004152 return 0;
4153}
4154
Daniel Vetter5a21b662016-05-24 17:13:53 +02004155/*
4156 * Returns true when a page flip has completed.
4157 */
4158static bool i915_handle_vblank(struct drm_i915_private *dev_priv,
4159 int plane, int pipe, u32 iir)
4160{
4161 u32 flip_pending = DISPLAY_PLANE_FLIP_PENDING(plane);
4162
4163 if (!intel_pipe_handle_vblank(dev_priv, pipe))
4164 return false;
4165
4166 if ((iir & flip_pending) == 0)
4167 goto check_page_flip;
4168
4169 /* We detect FlipDone by looking for the change in PendingFlip from '1'
4170 * to '0' on the following vblank, i.e. IIR has the Pendingflip
4171 * asserted following the MI_DISPLAY_FLIP, but ISR is deasserted, hence
4172 * the flip is completed (no longer pending). Since this doesn't raise
4173 * an interrupt per se, we watch for the change at vblank.
4174 */
4175 if (I915_READ(ISR) & flip_pending)
4176 goto check_page_flip;
4177
4178 intel_finish_page_flip_cs(dev_priv, pipe);
4179 return true;
4180
4181check_page_flip:
4182 intel_check_page_flip(dev_priv, pipe);
4183 return false;
4184}
4185
Daniel Vetterff1f5252012-10-02 15:10:55 +02004186static irqreturn_t i915_irq_handler(int irq, void *arg)
Chris Wilsona266c7d2012-04-24 22:59:44 +01004187{
Daniel Vetter45a83f82014-05-12 19:17:55 +02004188 struct drm_device *dev = arg;
Chris Wilsonfac5e232016-07-04 11:34:36 +01004189 struct drm_i915_private *dev_priv = to_i915(dev);
Chris Wilson8291ee92012-04-24 22:59:47 +01004190 u32 iir, new_iir, pipe_stats[I915_MAX_PIPES];
Chris Wilson38bde182012-04-24 22:59:50 +01004191 u32 flip_mask =
4192 I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT |
4193 I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT;
Chris Wilson38bde182012-04-24 22:59:50 +01004194 int pipe, ret = IRQ_NONE;
Chris Wilsona266c7d2012-04-24 22:59:44 +01004195
Imre Deak2dd2a882015-02-24 11:14:30 +02004196 if (!intel_irqs_enabled(dev_priv))
4197 return IRQ_NONE;
4198
Imre Deak1f814da2015-12-16 02:52:19 +02004199 /* IRQs are synced during runtime_suspend, we don't require a wakeref */
4200 disable_rpm_wakeref_asserts(dev_priv);
4201
Chris Wilsona266c7d2012-04-24 22:59:44 +01004202 iir = I915_READ(IIR);
Chris Wilson38bde182012-04-24 22:59:50 +01004203 do {
4204 bool irq_received = (iir & ~flip_mask) != 0;
Chris Wilson8291ee92012-04-24 22:59:47 +01004205 bool blc_event = false;
Chris Wilsona266c7d2012-04-24 22:59:44 +01004206
4207 /* Can't rely on pipestat interrupt bit in iir as it might
4208 * have been cleared after the pipestat interrupt was received.
4209 * It doesn't set the bit in iir again, but it still produces
4210 * interrupts (for non-MSI).
4211 */
Daniel Vetter222c7f52014-09-15 14:55:28 +02004212 spin_lock(&dev_priv->irq_lock);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004213 if (iir & I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT)
Daniel Vetteraaecdf62014-11-04 15:52:22 +01004214 DRM_DEBUG("Command parser error, iir 0x%08x\n", iir);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004215
Damien Lespiau055e3932014-08-18 13:49:10 +01004216 for_each_pipe(dev_priv, pipe) {
Ville Syrjäläf0f59a02015-11-18 15:33:26 +02004217 i915_reg_t reg = PIPESTAT(pipe);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004218 pipe_stats[pipe] = I915_READ(reg);
4219
Chris Wilson38bde182012-04-24 22:59:50 +01004220 /* Clear the PIPE*STAT regs before the IIR */
Chris Wilsona266c7d2012-04-24 22:59:44 +01004221 if (pipe_stats[pipe] & 0x8000ffff) {
Chris Wilsona266c7d2012-04-24 22:59:44 +01004222 I915_WRITE(reg, pipe_stats[pipe]);
Chris Wilson38bde182012-04-24 22:59:50 +01004223 irq_received = true;
Chris Wilsona266c7d2012-04-24 22:59:44 +01004224 }
4225 }
Daniel Vetter222c7f52014-09-15 14:55:28 +02004226 spin_unlock(&dev_priv->irq_lock);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004227
4228 if (!irq_received)
4229 break;
4230
Chris Wilsona266c7d2012-04-24 22:59:44 +01004231 /* Consume port. Then clear IIR or we'll miss events */
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01004232 if (I915_HAS_HOTPLUG(dev_priv) &&
Ville Syrjälä1ae3c342016-04-13 21:19:54 +03004233 iir & I915_DISPLAY_PORT_INTERRUPT) {
4234 u32 hotplug_status = i9xx_hpd_irq_ack(dev_priv);
4235 if (hotplug_status)
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01004236 i9xx_hpd_irq_handler(dev_priv, hotplug_status);
Ville Syrjälä1ae3c342016-04-13 21:19:54 +03004237 }
Chris Wilsona266c7d2012-04-24 22:59:44 +01004238
Chris Wilson38bde182012-04-24 22:59:50 +01004239 I915_WRITE(IIR, iir & ~flip_mask);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004240 new_iir = I915_READ(IIR); /* Flush posted writes */
4241
Chris Wilsona266c7d2012-04-24 22:59:44 +01004242 if (iir & I915_USER_INTERRUPT)
Akash Goel3b3f1652016-10-13 22:44:48 +05304243 notify_ring(dev_priv->engine[RCS]);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004244
Damien Lespiau055e3932014-08-18 13:49:10 +01004245 for_each_pipe(dev_priv, pipe) {
Daniel Vetter5a21b662016-05-24 17:13:53 +02004246 int plane = pipe;
4247 if (HAS_FBC(dev_priv))
4248 plane = !plane;
4249
4250 if (pipe_stats[pipe] & PIPE_VBLANK_INTERRUPT_STATUS &&
4251 i915_handle_vblank(dev_priv, plane, pipe, iir))
4252 flip_mask &= ~DISPLAY_PLANE_FLIP_PENDING(plane);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004253
4254 if (pipe_stats[pipe] & PIPE_LEGACY_BLC_EVENT_STATUS)
4255 blc_event = true;
Daniel Vetter4356d582013-10-16 22:55:55 +02004256
4257 if (pipe_stats[pipe] & PIPE_CRC_DONE_INTERRUPT_STATUS)
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01004258 i9xx_pipe_crc_irq_handler(dev_priv, pipe);
Ville Syrjälä2d9d2b02014-01-17 11:44:31 +02004259
Daniel Vetter1f7247c2014-09-30 10:56:48 +02004260 if (pipe_stats[pipe] & PIPE_FIFO_UNDERRUN_STATUS)
4261 intel_cpu_fifo_underrun_irq_handler(dev_priv,
4262 pipe);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004263 }
4264
Chris Wilsona266c7d2012-04-24 22:59:44 +01004265 if (blc_event || (iir & I915_ASLE_INTERRUPT))
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01004266 intel_opregion_asle_intr(dev_priv);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004267
4268 /* With MSI, interrupts are only generated when iir
4269 * transitions from zero to nonzero. If another bit got
4270 * set while we were handling the existing iir bits, then
4271 * we would never get another interrupt.
4272 *
4273 * This is fine on non-MSI as well, as if we hit this path
4274 * we avoid exiting the interrupt handler only to generate
4275 * another one.
4276 *
4277 * Note that for MSI this could cause a stray interrupt report
4278 * if an interrupt landed in the time between writing IIR and
4279 * the posting read. This should be rare enough to never
4280 * trigger the 99% of 100,000 interrupts test for disabling
4281 * stray interrupts.
4282 */
Chris Wilson38bde182012-04-24 22:59:50 +01004283 ret = IRQ_HANDLED;
Chris Wilsona266c7d2012-04-24 22:59:44 +01004284 iir = new_iir;
Chris Wilson38bde182012-04-24 22:59:50 +01004285 } while (iir & ~flip_mask);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004286
Imre Deak1f814da2015-12-16 02:52:19 +02004287 enable_rpm_wakeref_asserts(dev_priv);
4288
Chris Wilsona266c7d2012-04-24 22:59:44 +01004289 return ret;
4290}
4291
4292static void i915_irq_uninstall(struct drm_device * dev)
4293{
Chris Wilsonfac5e232016-07-04 11:34:36 +01004294 struct drm_i915_private *dev_priv = to_i915(dev);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004295 int pipe;
4296
Chris Wilsona266c7d2012-04-24 22:59:44 +01004297 if (I915_HAS_HOTPLUG(dev)) {
Egbert Eich0706f172015-09-23 16:15:27 +02004298 i915_hotplug_interrupt_update(dev_priv, 0xffffffff, 0);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004299 I915_WRITE(PORT_HOTPLUG_STAT, I915_READ(PORT_HOTPLUG_STAT));
4300 }
4301
Chris Wilson00d98eb2012-04-24 22:59:48 +01004302 I915_WRITE16(HWSTAM, 0xffff);
Damien Lespiau055e3932014-08-18 13:49:10 +01004303 for_each_pipe(dev_priv, pipe) {
Chris Wilson55b39752012-04-24 22:59:49 +01004304 /* Clear enable bits; then clear status bits */
Chris Wilsona266c7d2012-04-24 22:59:44 +01004305 I915_WRITE(PIPESTAT(pipe), 0);
Chris Wilson55b39752012-04-24 22:59:49 +01004306 I915_WRITE(PIPESTAT(pipe), I915_READ(PIPESTAT(pipe)));
4307 }
Chris Wilsona266c7d2012-04-24 22:59:44 +01004308 I915_WRITE(IMR, 0xffffffff);
4309 I915_WRITE(IER, 0x0);
4310
Chris Wilsona266c7d2012-04-24 22:59:44 +01004311 I915_WRITE(IIR, I915_READ(IIR));
4312}
4313
4314static void i965_irq_preinstall(struct drm_device * dev)
4315{
Chris Wilsonfac5e232016-07-04 11:34:36 +01004316 struct drm_i915_private *dev_priv = to_i915(dev);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004317 int pipe;
4318
Egbert Eich0706f172015-09-23 16:15:27 +02004319 i915_hotplug_interrupt_update(dev_priv, 0xffffffff, 0);
Chris Wilsonadca4732012-05-11 18:01:31 +01004320 I915_WRITE(PORT_HOTPLUG_STAT, I915_READ(PORT_HOTPLUG_STAT));
Chris Wilsona266c7d2012-04-24 22:59:44 +01004321
4322 I915_WRITE(HWSTAM, 0xeffe);
Damien Lespiau055e3932014-08-18 13:49:10 +01004323 for_each_pipe(dev_priv, pipe)
Chris Wilsona266c7d2012-04-24 22:59:44 +01004324 I915_WRITE(PIPESTAT(pipe), 0);
4325 I915_WRITE(IMR, 0xffffffff);
4326 I915_WRITE(IER, 0x0);
4327 POSTING_READ(IER);
4328}
4329
4330static int i965_irq_postinstall(struct drm_device *dev)
4331{
Chris Wilsonfac5e232016-07-04 11:34:36 +01004332 struct drm_i915_private *dev_priv = to_i915(dev);
Chris Wilsonbbba0a92012-04-24 22:59:51 +01004333 u32 enable_mask;
Chris Wilsona266c7d2012-04-24 22:59:44 +01004334 u32 error_mask;
4335
Chris Wilsona266c7d2012-04-24 22:59:44 +01004336 /* Unmask the interrupts that we always want on. */
Chris Wilsonbbba0a92012-04-24 22:59:51 +01004337 dev_priv->irq_mask = ~(I915_ASLE_INTERRUPT |
Chris Wilsonadca4732012-05-11 18:01:31 +01004338 I915_DISPLAY_PORT_INTERRUPT |
Chris Wilsonbbba0a92012-04-24 22:59:51 +01004339 I915_DISPLAY_PIPE_A_EVENT_INTERRUPT |
4340 I915_DISPLAY_PIPE_B_EVENT_INTERRUPT |
4341 I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT |
4342 I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT |
4343 I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT);
4344
4345 enable_mask = ~dev_priv->irq_mask;
Ville Syrjälä21ad8332013-02-19 15:16:39 +02004346 enable_mask &= ~(I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT |
4347 I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT);
Chris Wilsonbbba0a92012-04-24 22:59:51 +01004348 enable_mask |= I915_USER_INTERRUPT;
4349
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01004350 if (IS_G4X(dev_priv))
Chris Wilsonbbba0a92012-04-24 22:59:51 +01004351 enable_mask |= I915_BSD_USER_INTERRUPT;
Chris Wilsona266c7d2012-04-24 22:59:44 +01004352
Daniel Vetterb79480b2013-06-27 17:52:10 +02004353 /* Interrupt setup is already guaranteed to be single-threaded, this is
4354 * just to make the assert_spin_locked check happy. */
Daniel Vetterd6207432014-09-15 14:55:27 +02004355 spin_lock_irq(&dev_priv->irq_lock);
Imre Deak755e9012014-02-10 18:42:47 +02004356 i915_enable_pipestat(dev_priv, PIPE_A, PIPE_GMBUS_INTERRUPT_STATUS);
4357 i915_enable_pipestat(dev_priv, PIPE_A, PIPE_CRC_DONE_INTERRUPT_STATUS);
4358 i915_enable_pipestat(dev_priv, PIPE_B, PIPE_CRC_DONE_INTERRUPT_STATUS);
Daniel Vetterd6207432014-09-15 14:55:27 +02004359 spin_unlock_irq(&dev_priv->irq_lock);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004360
Chris Wilsona266c7d2012-04-24 22:59:44 +01004361 /*
4362 * Enable some error detection, note the instruction error mask
4363 * bit is reserved, so we leave it masked.
4364 */
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01004365 if (IS_G4X(dev_priv)) {
Chris Wilsona266c7d2012-04-24 22:59:44 +01004366 error_mask = ~(GM45_ERROR_PAGE_TABLE |
4367 GM45_ERROR_MEM_PRIV |
4368 GM45_ERROR_CP_PRIV |
4369 I915_ERROR_MEMORY_REFRESH);
4370 } else {
4371 error_mask = ~(I915_ERROR_PAGE_TABLE |
4372 I915_ERROR_MEMORY_REFRESH);
4373 }
4374 I915_WRITE(EMR, error_mask);
4375
4376 I915_WRITE(IMR, dev_priv->irq_mask);
4377 I915_WRITE(IER, enable_mask);
4378 POSTING_READ(IER);
4379
Egbert Eich0706f172015-09-23 16:15:27 +02004380 i915_hotplug_interrupt_update(dev_priv, 0xffffffff, 0);
Daniel Vetter20afbda2012-12-11 14:05:07 +01004381 POSTING_READ(PORT_HOTPLUG_EN);
4382
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01004383 i915_enable_asle_pipestat(dev_priv);
Daniel Vetter20afbda2012-12-11 14:05:07 +01004384
4385 return 0;
4386}
4387
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01004388static void i915_hpd_irq_setup(struct drm_i915_private *dev_priv)
Daniel Vetter20afbda2012-12-11 14:05:07 +01004389{
Daniel Vetter20afbda2012-12-11 14:05:07 +01004390 u32 hotplug_en;
4391
Daniel Vetterb5ea2d52013-06-27 17:52:15 +02004392 assert_spin_locked(&dev_priv->irq_lock);
4393
Ville Syrjälä778eb332015-01-09 14:21:13 +02004394 /* Note HDMI and DP share hotplug bits */
4395 /* enable bits are the same for all generations */
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01004396 hotplug_en = intel_hpd_enabled_irqs(dev_priv, hpd_mask_i915);
Ville Syrjälä778eb332015-01-09 14:21:13 +02004397 /* Programming the CRT detection parameters tends
4398 to generate a spurious hotplug event about three
4399 seconds later. So just do it once.
4400 */
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01004401 if (IS_G4X(dev_priv))
Ville Syrjälä778eb332015-01-09 14:21:13 +02004402 hotplug_en |= CRT_HOTPLUG_ACTIVATION_PERIOD_64;
Ville Syrjälä778eb332015-01-09 14:21:13 +02004403 hotplug_en |= CRT_HOTPLUG_VOLTAGE_COMPARE_50;
Chris Wilsona266c7d2012-04-24 22:59:44 +01004404
Ville Syrjälä778eb332015-01-09 14:21:13 +02004405 /* Ignore TV since it's buggy */
Egbert Eich0706f172015-09-23 16:15:27 +02004406 i915_hotplug_interrupt_update_locked(dev_priv,
Jani Nikulaf9e3dc72015-10-21 17:22:43 +03004407 HOTPLUG_INT_EN_MASK |
4408 CRT_HOTPLUG_VOLTAGE_COMPARE_MASK |
4409 CRT_HOTPLUG_ACTIVATION_PERIOD_64,
4410 hotplug_en);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004411}
4412
Daniel Vetterff1f5252012-10-02 15:10:55 +02004413static irqreturn_t i965_irq_handler(int irq, void *arg)
Chris Wilsona266c7d2012-04-24 22:59:44 +01004414{
Daniel Vetter45a83f82014-05-12 19:17:55 +02004415 struct drm_device *dev = arg;
Chris Wilsonfac5e232016-07-04 11:34:36 +01004416 struct drm_i915_private *dev_priv = to_i915(dev);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004417 u32 iir, new_iir;
4418 u32 pipe_stats[I915_MAX_PIPES];
Chris Wilsona266c7d2012-04-24 22:59:44 +01004419 int ret = IRQ_NONE, pipe;
Ville Syrjälä21ad8332013-02-19 15:16:39 +02004420 u32 flip_mask =
4421 I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT |
4422 I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT;
Chris Wilsona266c7d2012-04-24 22:59:44 +01004423
Imre Deak2dd2a882015-02-24 11:14:30 +02004424 if (!intel_irqs_enabled(dev_priv))
4425 return IRQ_NONE;
4426
Imre Deak1f814da2015-12-16 02:52:19 +02004427 /* IRQs are synced during runtime_suspend, we don't require a wakeref */
4428 disable_rpm_wakeref_asserts(dev_priv);
4429
Chris Wilsona266c7d2012-04-24 22:59:44 +01004430 iir = I915_READ(IIR);
4431
Chris Wilsona266c7d2012-04-24 22:59:44 +01004432 for (;;) {
Ville Syrjälä501e01d2014-01-17 11:35:15 +02004433 bool irq_received = (iir & ~flip_mask) != 0;
Chris Wilson2c8ba292012-04-24 22:59:46 +01004434 bool blc_event = false;
4435
Chris Wilsona266c7d2012-04-24 22:59:44 +01004436 /* Can't rely on pipestat interrupt bit in iir as it might
4437 * have been cleared after the pipestat interrupt was received.
4438 * It doesn't set the bit in iir again, but it still produces
4439 * interrupts (for non-MSI).
4440 */
Daniel Vetter222c7f52014-09-15 14:55:28 +02004441 spin_lock(&dev_priv->irq_lock);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004442 if (iir & I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT)
Daniel Vetteraaecdf62014-11-04 15:52:22 +01004443 DRM_DEBUG("Command parser error, iir 0x%08x\n", iir);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004444
Damien Lespiau055e3932014-08-18 13:49:10 +01004445 for_each_pipe(dev_priv, pipe) {
Ville Syrjäläf0f59a02015-11-18 15:33:26 +02004446 i915_reg_t reg = PIPESTAT(pipe);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004447 pipe_stats[pipe] = I915_READ(reg);
4448
4449 /*
4450 * Clear the PIPE*STAT regs before the IIR
4451 */
4452 if (pipe_stats[pipe] & 0x8000ffff) {
Chris Wilsona266c7d2012-04-24 22:59:44 +01004453 I915_WRITE(reg, pipe_stats[pipe]);
Ville Syrjälä501e01d2014-01-17 11:35:15 +02004454 irq_received = true;
Chris Wilsona266c7d2012-04-24 22:59:44 +01004455 }
4456 }
Daniel Vetter222c7f52014-09-15 14:55:28 +02004457 spin_unlock(&dev_priv->irq_lock);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004458
4459 if (!irq_received)
4460 break;
4461
4462 ret = IRQ_HANDLED;
4463
4464 /* Consume port. Then clear IIR or we'll miss events */
Ville Syrjälä1ae3c342016-04-13 21:19:54 +03004465 if (iir & I915_DISPLAY_PORT_INTERRUPT) {
4466 u32 hotplug_status = i9xx_hpd_irq_ack(dev_priv);
4467 if (hotplug_status)
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01004468 i9xx_hpd_irq_handler(dev_priv, hotplug_status);
Ville Syrjälä1ae3c342016-04-13 21:19:54 +03004469 }
Chris Wilsona266c7d2012-04-24 22:59:44 +01004470
Ville Syrjälä21ad8332013-02-19 15:16:39 +02004471 I915_WRITE(IIR, iir & ~flip_mask);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004472 new_iir = I915_READ(IIR); /* Flush posted writes */
4473
Chris Wilsona266c7d2012-04-24 22:59:44 +01004474 if (iir & I915_USER_INTERRUPT)
Akash Goel3b3f1652016-10-13 22:44:48 +05304475 notify_ring(dev_priv->engine[RCS]);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004476 if (iir & I915_BSD_USER_INTERRUPT)
Akash Goel3b3f1652016-10-13 22:44:48 +05304477 notify_ring(dev_priv->engine[VCS]);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004478
Damien Lespiau055e3932014-08-18 13:49:10 +01004479 for_each_pipe(dev_priv, pipe) {
Daniel Vetter5a21b662016-05-24 17:13:53 +02004480 if (pipe_stats[pipe] & PIPE_START_VBLANK_INTERRUPT_STATUS &&
4481 i915_handle_vblank(dev_priv, pipe, pipe, iir))
4482 flip_mask &= ~DISPLAY_PLANE_FLIP_PENDING(pipe);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004483
4484 if (pipe_stats[pipe] & PIPE_LEGACY_BLC_EVENT_STATUS)
4485 blc_event = true;
Daniel Vetter4356d582013-10-16 22:55:55 +02004486
4487 if (pipe_stats[pipe] & PIPE_CRC_DONE_INTERRUPT_STATUS)
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01004488 i9xx_pipe_crc_irq_handler(dev_priv, pipe);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004489
Daniel Vetter1f7247c2014-09-30 10:56:48 +02004490 if (pipe_stats[pipe] & PIPE_FIFO_UNDERRUN_STATUS)
4491 intel_cpu_fifo_underrun_irq_handler(dev_priv, pipe);
Ville Syrjälä2d9d2b02014-01-17 11:44:31 +02004492 }
Chris Wilsona266c7d2012-04-24 22:59:44 +01004493
4494 if (blc_event || (iir & I915_ASLE_INTERRUPT))
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01004495 intel_opregion_asle_intr(dev_priv);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004496
Daniel Vetter515ac2b2012-12-01 13:53:44 +01004497 if (pipe_stats[0] & PIPE_GMBUS_INTERRUPT_STATUS)
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01004498 gmbus_irq_handler(dev_priv);
Daniel Vetter515ac2b2012-12-01 13:53:44 +01004499
Chris Wilsona266c7d2012-04-24 22:59:44 +01004500 /* With MSI, interrupts are only generated when iir
4501 * transitions from zero to nonzero. If another bit got
4502 * set while we were handling the existing iir bits, then
4503 * we would never get another interrupt.
4504 *
4505 * This is fine on non-MSI as well, as if we hit this path
4506 * we avoid exiting the interrupt handler only to generate
4507 * another one.
4508 *
4509 * Note that for MSI this could cause a stray interrupt report
4510 * if an interrupt landed in the time between writing IIR and
4511 * the posting read. This should be rare enough to never
4512 * trigger the 99% of 100,000 interrupts test for disabling
4513 * stray interrupts.
4514 */
4515 iir = new_iir;
4516 }
4517
Imre Deak1f814da2015-12-16 02:52:19 +02004518 enable_rpm_wakeref_asserts(dev_priv);
4519
Chris Wilsona266c7d2012-04-24 22:59:44 +01004520 return ret;
4521}
4522
4523static void i965_irq_uninstall(struct drm_device * dev)
4524{
Chris Wilsonfac5e232016-07-04 11:34:36 +01004525 struct drm_i915_private *dev_priv = to_i915(dev);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004526 int pipe;
4527
4528 if (!dev_priv)
4529 return;
4530
Egbert Eich0706f172015-09-23 16:15:27 +02004531 i915_hotplug_interrupt_update(dev_priv, 0xffffffff, 0);
Chris Wilsonadca4732012-05-11 18:01:31 +01004532 I915_WRITE(PORT_HOTPLUG_STAT, I915_READ(PORT_HOTPLUG_STAT));
Chris Wilsona266c7d2012-04-24 22:59:44 +01004533
4534 I915_WRITE(HWSTAM, 0xffffffff);
Damien Lespiau055e3932014-08-18 13:49:10 +01004535 for_each_pipe(dev_priv, pipe)
Chris Wilsona266c7d2012-04-24 22:59:44 +01004536 I915_WRITE(PIPESTAT(pipe), 0);
4537 I915_WRITE(IMR, 0xffffffff);
4538 I915_WRITE(IER, 0x0);
4539
Damien Lespiau055e3932014-08-18 13:49:10 +01004540 for_each_pipe(dev_priv, pipe)
Chris Wilsona266c7d2012-04-24 22:59:44 +01004541 I915_WRITE(PIPESTAT(pipe),
4542 I915_READ(PIPESTAT(pipe)) & 0x8000ffff);
4543 I915_WRITE(IIR, I915_READ(IIR));
4544}
4545
Daniel Vetterfca52a52014-09-30 10:56:45 +02004546/**
4547 * intel_irq_init - initializes irq support
4548 * @dev_priv: i915 device instance
4549 *
4550 * This function initializes all the irq support including work items, timers
4551 * and all the vtables. It does not setup the interrupt itself though.
4552 */
Daniel Vetterb9632912014-09-30 10:56:44 +02004553void intel_irq_init(struct drm_i915_private *dev_priv)
Jesse Barnesf71d4af2011-06-28 13:00:41 -07004554{
Chris Wilson91c8a322016-07-05 10:40:23 +01004555 struct drm_device *dev = &dev_priv->drm;
Chris Wilson8b2e3262012-04-24 22:59:41 +01004556
Jani Nikula77913b32015-06-18 13:06:16 +03004557 intel_hpd_init_work(dev_priv);
4558
Daniel Vetterc6a828d2012-08-08 23:35:35 +02004559 INIT_WORK(&dev_priv->rps.work, gen6_pm_rps_work);
Daniel Vettera4da4fa2012-11-02 19:55:07 +01004560 INIT_WORK(&dev_priv->l3_parity.error_work, ivybridge_parity_work);
Chris Wilson8b2e3262012-04-24 22:59:41 +01004561
Sagar Arun Kamble26705e22016-10-12 21:54:31 +05304562 if (HAS_GUC_SCHED(dev))
4563 dev_priv->pm_guc_events = GEN9_GUC_TO_HOST_INT_EVENT;
4564
Deepak Sa6706b42014-03-15 20:23:22 +05304565 /* Let's track the enabled rps events */
Wayne Boyer666a4532015-12-09 12:29:35 -08004566 if (IS_VALLEYVIEW(dev_priv))
Ville Syrjälä6c65a582014-08-29 14:14:07 +03004567 /* WaGsvRC0ResidencyMethod:vlv */
Chris Wilson6f4b12f82015-03-18 09:48:23 +00004568 dev_priv->pm_rps_events = GEN6_PM_RP_DOWN_EI_EXPIRED | GEN6_PM_RP_UP_EI_EXPIRED;
Deepak S31685c22014-07-03 17:33:01 -04004569 else
4570 dev_priv->pm_rps_events = GEN6_PM_RPS_EVENTS;
Deepak Sa6706b42014-03-15 20:23:22 +05304571
Sagar Arun Kamble1800ad22016-05-31 13:58:27 +05304572 dev_priv->rps.pm_intr_keep = 0;
4573
4574 /*
4575 * SNB,IVB can while VLV,CHV may hard hang on looping batchbuffer
4576 * if GEN6_PM_UP_EI_EXPIRED is masked.
4577 *
4578 * TODO: verify if this can be reproduced on VLV,CHV.
4579 */
4580 if (INTEL_INFO(dev_priv)->gen <= 7 && !IS_HASWELL(dev_priv))
4581 dev_priv->rps.pm_intr_keep |= GEN6_PM_RP_UP_EI_EXPIRED;
4582
4583 if (INTEL_INFO(dev_priv)->gen >= 8)
Dave Gordonb20e3cf2016-09-12 21:19:35 +01004584 dev_priv->rps.pm_intr_keep |= GEN8_PMINTR_REDIRECT_TO_GUC;
Sagar Arun Kamble1800ad22016-05-31 13:58:27 +05304585
Chris Wilson737b1502015-01-26 18:03:03 +02004586 INIT_DELAYED_WORK(&dev_priv->gpu_error.hangcheck_work,
4587 i915_hangcheck_elapsed);
Daniel Vetter61bac782012-12-01 21:03:21 +01004588
Daniel Vetterb9632912014-09-30 10:56:44 +02004589 if (IS_GEN2(dev_priv)) {
Rodrigo Vivi4194c082016-08-03 10:00:56 -07004590 /* Gen2 doesn't have a hardware frame counter */
Ville Syrjälä4cdb83e2013-10-11 21:52:44 +03004591 dev->max_vblank_count = 0;
Rodrigo Vivi4194c082016-08-03 10:00:56 -07004592 dev->driver->get_vblank_counter = drm_vblank_no_hw_counter;
Daniel Vetterb9632912014-09-30 10:56:44 +02004593 } else if (IS_G4X(dev_priv) || INTEL_INFO(dev_priv)->gen >= 5) {
Jesse Barnesf71d4af2011-06-28 13:00:41 -07004594 dev->max_vblank_count = 0xffffffff; /* full 32 bit counter */
Ville Syrjäläfd8f5072015-09-18 20:03:42 +03004595 dev->driver->get_vblank_counter = g4x_get_vblank_counter;
Ville Syrjälä391f75e2013-09-25 19:55:26 +03004596 } else {
4597 dev->driver->get_vblank_counter = i915_get_vblank_counter;
4598 dev->max_vblank_count = 0xffffff; /* only 24 bits of frame count */
Jesse Barnesf71d4af2011-06-28 13:00:41 -07004599 }
4600
Ville Syrjälä21da2702014-08-06 14:49:55 +03004601 /*
4602 * Opt out of the vblank disable timer on everything except gen2.
4603 * Gen2 doesn't have a hardware frame counter and so depends on
4604 * vblank interrupts to produce sane vblank seuquence numbers.
4605 */
Daniel Vetterb9632912014-09-30 10:56:44 +02004606 if (!IS_GEN2(dev_priv))
Ville Syrjälä21da2702014-08-06 14:49:55 +03004607 dev->vblank_disable_immediate = true;
4608
Daniel Vetterf3a5c3f2015-02-13 21:03:44 +01004609 dev->driver->get_vblank_timestamp = i915_get_vblank_timestamp;
4610 dev->driver->get_scanout_position = i915_get_crtc_scanoutpos;
Jesse Barnesf71d4af2011-06-28 13:00:41 -07004611
Daniel Vetterb9632912014-09-30 10:56:44 +02004612 if (IS_CHERRYVIEW(dev_priv)) {
Ville Syrjälä43f328d2014-04-09 20:40:52 +03004613 dev->driver->irq_handler = cherryview_irq_handler;
4614 dev->driver->irq_preinstall = cherryview_irq_preinstall;
4615 dev->driver->irq_postinstall = cherryview_irq_postinstall;
4616 dev->driver->irq_uninstall = cherryview_irq_uninstall;
Chris Wilson86e83e32016-10-07 20:49:52 +01004617 dev->driver->enable_vblank = i965_enable_vblank;
4618 dev->driver->disable_vblank = i965_disable_vblank;
Ville Syrjälä43f328d2014-04-09 20:40:52 +03004619 dev_priv->display.hpd_irq_setup = i915_hpd_irq_setup;
Daniel Vetterb9632912014-09-30 10:56:44 +02004620 } else if (IS_VALLEYVIEW(dev_priv)) {
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07004621 dev->driver->irq_handler = valleyview_irq_handler;
4622 dev->driver->irq_preinstall = valleyview_irq_preinstall;
4623 dev->driver->irq_postinstall = valleyview_irq_postinstall;
4624 dev->driver->irq_uninstall = valleyview_irq_uninstall;
Chris Wilson86e83e32016-10-07 20:49:52 +01004625 dev->driver->enable_vblank = i965_enable_vblank;
4626 dev->driver->disable_vblank = i965_disable_vblank;
Egbert Eichfa00abe2013-02-25 12:06:48 -05004627 dev_priv->display.hpd_irq_setup = i915_hpd_irq_setup;
Daniel Vetterb9632912014-09-30 10:56:44 +02004628 } else if (INTEL_INFO(dev_priv)->gen >= 8) {
Ben Widawskyabd58f02013-11-02 21:07:09 -07004629 dev->driver->irq_handler = gen8_irq_handler;
Daniel Vetter723761b2014-05-22 17:56:34 +02004630 dev->driver->irq_preinstall = gen8_irq_reset;
Ben Widawskyabd58f02013-11-02 21:07:09 -07004631 dev->driver->irq_postinstall = gen8_irq_postinstall;
4632 dev->driver->irq_uninstall = gen8_irq_uninstall;
4633 dev->driver->enable_vblank = gen8_enable_vblank;
4634 dev->driver->disable_vblank = gen8_disable_vblank;
Tvrtko Ursuline2d214a2016-10-13 11:03:04 +01004635 if (IS_BROXTON(dev_priv))
Shashank Sharmae0a20ad2015-03-27 14:54:14 +02004636 dev_priv->display.hpd_irq_setup = bxt_hpd_irq_setup;
Tvrtko Ursulin6e266952016-10-13 11:02:53 +01004637 else if (HAS_PCH_SPT(dev_priv) || HAS_PCH_KBP(dev_priv))
Ville Syrjälä6dbf30c2015-08-27 23:56:02 +03004638 dev_priv->display.hpd_irq_setup = spt_hpd_irq_setup;
4639 else
Ville Syrjälä3a3b3c72015-08-27 23:56:06 +03004640 dev_priv->display.hpd_irq_setup = ilk_hpd_irq_setup;
Tvrtko Ursulin6e266952016-10-13 11:02:53 +01004641 } else if (HAS_PCH_SPLIT(dev_priv)) {
Jesse Barnesf71d4af2011-06-28 13:00:41 -07004642 dev->driver->irq_handler = ironlake_irq_handler;
Daniel Vetter723761b2014-05-22 17:56:34 +02004643 dev->driver->irq_preinstall = ironlake_irq_reset;
Jesse Barnesf71d4af2011-06-28 13:00:41 -07004644 dev->driver->irq_postinstall = ironlake_irq_postinstall;
4645 dev->driver->irq_uninstall = ironlake_irq_uninstall;
4646 dev->driver->enable_vblank = ironlake_enable_vblank;
4647 dev->driver->disable_vblank = ironlake_disable_vblank;
Ville Syrjälä23bb4cb2015-08-27 23:56:04 +03004648 dev_priv->display.hpd_irq_setup = ilk_hpd_irq_setup;
Jesse Barnesf71d4af2011-06-28 13:00:41 -07004649 } else {
Tvrtko Ursulin7e22dbb2016-05-10 10:57:06 +01004650 if (IS_GEN2(dev_priv)) {
Chris Wilsonc2798b12012-04-22 21:13:57 +01004651 dev->driver->irq_preinstall = i8xx_irq_preinstall;
4652 dev->driver->irq_postinstall = i8xx_irq_postinstall;
4653 dev->driver->irq_handler = i8xx_irq_handler;
4654 dev->driver->irq_uninstall = i8xx_irq_uninstall;
Chris Wilson86e83e32016-10-07 20:49:52 +01004655 dev->driver->enable_vblank = i8xx_enable_vblank;
4656 dev->driver->disable_vblank = i8xx_disable_vblank;
Tvrtko Ursulin7e22dbb2016-05-10 10:57:06 +01004657 } else if (IS_GEN3(dev_priv)) {
Chris Wilsona266c7d2012-04-24 22:59:44 +01004658 dev->driver->irq_preinstall = i915_irq_preinstall;
4659 dev->driver->irq_postinstall = i915_irq_postinstall;
4660 dev->driver->irq_uninstall = i915_irq_uninstall;
4661 dev->driver->irq_handler = i915_irq_handler;
Chris Wilson86e83e32016-10-07 20:49:52 +01004662 dev->driver->enable_vblank = i8xx_enable_vblank;
4663 dev->driver->disable_vblank = i8xx_disable_vblank;
Chris Wilsonc2798b12012-04-22 21:13:57 +01004664 } else {
Chris Wilsona266c7d2012-04-24 22:59:44 +01004665 dev->driver->irq_preinstall = i965_irq_preinstall;
4666 dev->driver->irq_postinstall = i965_irq_postinstall;
4667 dev->driver->irq_uninstall = i965_irq_uninstall;
4668 dev->driver->irq_handler = i965_irq_handler;
Chris Wilson86e83e32016-10-07 20:49:52 +01004669 dev->driver->enable_vblank = i965_enable_vblank;
4670 dev->driver->disable_vblank = i965_disable_vblank;
Chris Wilsonc2798b12012-04-22 21:13:57 +01004671 }
Ville Syrjälä778eb332015-01-09 14:21:13 +02004672 if (I915_HAS_HOTPLUG(dev_priv))
4673 dev_priv->display.hpd_irq_setup = i915_hpd_irq_setup;
Jesse Barnesf71d4af2011-06-28 13:00:41 -07004674 }
4675}
Daniel Vetter20afbda2012-12-11 14:05:07 +01004676
Daniel Vetterfca52a52014-09-30 10:56:45 +02004677/**
Daniel Vetterfca52a52014-09-30 10:56:45 +02004678 * intel_irq_install - enables the hardware interrupt
4679 * @dev_priv: i915 device instance
4680 *
4681 * This function enables the hardware interrupt handling, but leaves the hotplug
4682 * handling still disabled. It is called after intel_irq_init().
4683 *
4684 * In the driver load and resume code we need working interrupts in a few places
4685 * but don't want to deal with the hassle of concurrent probe and hotplug
4686 * workers. Hence the split into this two-stage approach.
4687 */
Daniel Vetter2aeb7d32014-09-30 10:56:43 +02004688int intel_irq_install(struct drm_i915_private *dev_priv)
4689{
4690 /*
4691 * We enable some interrupt sources in our postinstall hooks, so mark
4692 * interrupts as enabled _before_ actually enabling them to avoid
4693 * special cases in our ordering checks.
4694 */
4695 dev_priv->pm.irqs_enabled = true;
4696
Chris Wilson91c8a322016-07-05 10:40:23 +01004697 return drm_irq_install(&dev_priv->drm, dev_priv->drm.pdev->irq);
Daniel Vetter2aeb7d32014-09-30 10:56:43 +02004698}
4699
Daniel Vetterfca52a52014-09-30 10:56:45 +02004700/**
4701 * intel_irq_uninstall - finilizes all irq handling
4702 * @dev_priv: i915 device instance
4703 *
4704 * This stops interrupt and hotplug handling and unregisters and frees all
4705 * resources acquired in the init functions.
4706 */
Daniel Vetter2aeb7d32014-09-30 10:56:43 +02004707void intel_irq_uninstall(struct drm_i915_private *dev_priv)
4708{
Chris Wilson91c8a322016-07-05 10:40:23 +01004709 drm_irq_uninstall(&dev_priv->drm);
Daniel Vetter2aeb7d32014-09-30 10:56:43 +02004710 intel_hpd_cancel_work(dev_priv);
4711 dev_priv->pm.irqs_enabled = false;
4712}
4713
Daniel Vetterfca52a52014-09-30 10:56:45 +02004714/**
4715 * intel_runtime_pm_disable_interrupts - runtime interrupt disabling
4716 * @dev_priv: i915 device instance
4717 *
4718 * This function is used to disable interrupts at runtime, both in the runtime
4719 * pm and the system suspend/resume code.
4720 */
Daniel Vetterb9632912014-09-30 10:56:44 +02004721void intel_runtime_pm_disable_interrupts(struct drm_i915_private *dev_priv)
Paulo Zanonic67a4702013-08-19 13:18:09 -03004722{
Chris Wilson91c8a322016-07-05 10:40:23 +01004723 dev_priv->drm.driver->irq_uninstall(&dev_priv->drm);
Daniel Vetter2aeb7d32014-09-30 10:56:43 +02004724 dev_priv->pm.irqs_enabled = false;
Chris Wilson91c8a322016-07-05 10:40:23 +01004725 synchronize_irq(dev_priv->drm.irq);
Paulo Zanonic67a4702013-08-19 13:18:09 -03004726}
4727
Daniel Vetterfca52a52014-09-30 10:56:45 +02004728/**
4729 * intel_runtime_pm_enable_interrupts - runtime interrupt enabling
4730 * @dev_priv: i915 device instance
4731 *
4732 * This function is used to enable interrupts at runtime, both in the runtime
4733 * pm and the system suspend/resume code.
4734 */
Daniel Vetterb9632912014-09-30 10:56:44 +02004735void intel_runtime_pm_enable_interrupts(struct drm_i915_private *dev_priv)
Paulo Zanonic67a4702013-08-19 13:18:09 -03004736{
Daniel Vetter2aeb7d32014-09-30 10:56:43 +02004737 dev_priv->pm.irqs_enabled = true;
Chris Wilson91c8a322016-07-05 10:40:23 +01004738 dev_priv->drm.driver->irq_preinstall(&dev_priv->drm);
4739 dev_priv->drm.driver->irq_postinstall(&dev_priv->drm);
Paulo Zanonic67a4702013-08-19 13:18:09 -03004740}