blob: 696dc6f339ac86e774bc1b9e34ac985a1b2994a2 [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äe2af48c2016-10-31 22:37:05 +0200728 struct intel_crtc *intel_crtc = dev_priv->pipe_to_crtc_mapping[pipe];
Maarten Lankhorstfc467a222015-06-01 12:50:07 +0200729 const struct drm_display_mode *mode = &intel_crtc->base.hwmode;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700730
Daniel Vetterf3a5c3f2015-02-13 21:03:44 +0100731 htotal = mode->crtc_htotal;
732 hsync_start = mode->crtc_hsync_start;
733 vbl_start = mode->crtc_vblank_start;
734 if (mode->flags & DRM_MODE_FLAG_INTERLACE)
735 vbl_start = DIV_ROUND_UP(vbl_start, 2);
Ville Syrjälä391f75e2013-09-25 19:55:26 +0300736
Ville Syrjälä0b2a8e02014-04-29 13:35:50 +0300737 /* Convert to pixel count */
738 vbl_start *= htotal;
739
740 /* Start of vblank event occurs at start of hsync */
741 vbl_start -= htotal - hsync_start;
742
Jesse Barnes9db4a9c2011-02-07 12:26:52 -0800743 high_frame = PIPEFRAME(pipe);
744 low_frame = PIPEFRAMEPIXEL(pipe);
Chris Wilson5eddb702010-09-11 13:48:45 +0100745
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700746 /*
747 * High & low register fields aren't synchronized, so make sure
748 * we get a low value that's stable across two reads of the high
749 * register.
750 */
751 do {
Chris Wilson5eddb702010-09-11 13:48:45 +0100752 high1 = I915_READ(high_frame) & PIPE_FRAME_HIGH_MASK;
Ville Syrjälä391f75e2013-09-25 19:55:26 +0300753 low = I915_READ(low_frame);
Chris Wilson5eddb702010-09-11 13:48:45 +0100754 high2 = I915_READ(high_frame) & PIPE_FRAME_HIGH_MASK;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700755 } while (high1 != high2);
756
Chris Wilson5eddb702010-09-11 13:48:45 +0100757 high1 >>= PIPE_FRAME_HIGH_SHIFT;
Ville Syrjälä391f75e2013-09-25 19:55:26 +0300758 pixel = low & PIPE_PIXEL_MASK;
Chris Wilson5eddb702010-09-11 13:48:45 +0100759 low >>= PIPE_FRAME_LOW_SHIFT;
Ville Syrjälä391f75e2013-09-25 19:55:26 +0300760
761 /*
762 * The frame counter increments at beginning of active.
763 * Cook up a vblank counter by also checking the pixel
764 * counter against vblank start.
765 */
Ville Syrjäläedc08d02013-11-06 13:56:27 -0200766 return (((high1 << 8) | low) + (pixel >= vbl_start)) & 0xffffff;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700767}
768
Dave Airlie974e59b2015-10-30 09:45:33 +1000769static u32 g4x_get_vblank_counter(struct drm_device *dev, unsigned int pipe)
Jesse Barnes9880b7a2009-02-06 10:22:41 -0800770{
Chris Wilsonfac5e232016-07-04 11:34:36 +0100771 struct drm_i915_private *dev_priv = to_i915(dev);
Jesse Barnes9880b7a2009-02-06 10:22:41 -0800772
Ville Syrjälä649636e2015-09-22 19:50:01 +0300773 return I915_READ(PIPE_FRMCOUNT_G4X(pipe));
Jesse Barnes9880b7a2009-02-06 10:22:41 -0800774}
775
Ville Syrjälä75aa3f62015-10-22 15:34:56 +0300776/* I915_READ_FW, only for fast reads of display block, no need for forcewake etc. */
Ville Syrjäläa225f072014-04-29 13:35:45 +0300777static int __intel_get_crtc_scanline(struct intel_crtc *crtc)
778{
779 struct drm_device *dev = crtc->base.dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +0100780 struct drm_i915_private *dev_priv = to_i915(dev);
Maarten Lankhorstfc467a222015-06-01 12:50:07 +0200781 const struct drm_display_mode *mode = &crtc->base.hwmode;
Ville Syrjäläa225f072014-04-29 13:35:45 +0300782 enum pipe pipe = crtc->pipe;
Ville Syrjälä80715b22014-05-15 20:23:23 +0300783 int position, vtotal;
Ville Syrjäläa225f072014-04-29 13:35:45 +0300784
Ville Syrjälä80715b22014-05-15 20:23:23 +0300785 vtotal = mode->crtc_vtotal;
Ville Syrjäläa225f072014-04-29 13:35:45 +0300786 if (mode->flags & DRM_MODE_FLAG_INTERLACE)
787 vtotal /= 2;
788
Tvrtko Ursulin91d14252016-05-06 14:48:28 +0100789 if (IS_GEN2(dev_priv))
Ville Syrjälä75aa3f62015-10-22 15:34:56 +0300790 position = I915_READ_FW(PIPEDSL(pipe)) & DSL_LINEMASK_GEN2;
Ville Syrjäläa225f072014-04-29 13:35:45 +0300791 else
Ville Syrjälä75aa3f62015-10-22 15:34:56 +0300792 position = I915_READ_FW(PIPEDSL(pipe)) & DSL_LINEMASK_GEN3;
Ville Syrjäläa225f072014-04-29 13:35:45 +0300793
794 /*
Jesse Barnes41b578f2015-09-22 12:15:54 -0700795 * On HSW, the DSL reg (0x70000) appears to return 0 if we
796 * read it just before the start of vblank. So try it again
797 * so we don't accidentally end up spanning a vblank frame
798 * increment, causing the pipe_update_end() code to squak at us.
799 *
800 * The nature of this problem means we can't simply check the ISR
801 * bit and return the vblank start value; nor can we use the scanline
802 * debug register in the transcoder as it appears to have the same
803 * problem. We may need to extend this to include other platforms,
804 * but so far testing only shows the problem on HSW.
805 */
Tvrtko Ursulin91d14252016-05-06 14:48:28 +0100806 if (HAS_DDI(dev_priv) && !position) {
Jesse Barnes41b578f2015-09-22 12:15:54 -0700807 int i, temp;
808
809 for (i = 0; i < 100; i++) {
810 udelay(1);
811 temp = __raw_i915_read32(dev_priv, PIPEDSL(pipe)) &
812 DSL_LINEMASK_GEN3;
813 if (temp != position) {
814 position = temp;
815 break;
816 }
817 }
818 }
819
820 /*
Ville Syrjälä80715b22014-05-15 20:23:23 +0300821 * See update_scanline_offset() for the details on the
822 * scanline_offset adjustment.
Ville Syrjäläa225f072014-04-29 13:35:45 +0300823 */
Ville Syrjälä80715b22014-05-15 20:23:23 +0300824 return (position + crtc->scanline_offset) % vtotal;
Ville Syrjäläa225f072014-04-29 13:35:45 +0300825}
826
Thierry Reding88e72712015-09-24 18:35:31 +0200827static int i915_get_crtc_scanoutpos(struct drm_device *dev, unsigned int pipe,
Ville Syrjäläabca9e42013-10-28 20:50:48 +0200828 unsigned int flags, int *vpos, int *hpos,
Ville Syrjälä3bb403b2015-09-14 22:43:44 +0300829 ktime_t *stime, ktime_t *etime,
830 const struct drm_display_mode *mode)
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100831{
Chris Wilsonfac5e232016-07-04 11:34:36 +0100832 struct drm_i915_private *dev_priv = to_i915(dev);
Ville Syrjäläe2af48c2016-10-31 22:37:05 +0200833 struct intel_crtc *intel_crtc = dev_priv->pipe_to_crtc_mapping[pipe];
Ville Syrjälä3aa18df2013-10-11 19:10:32 +0300834 int position;
Ville Syrjälä78e8fc62014-04-29 13:35:44 +0300835 int vbl_start, vbl_end, hsync_start, htotal, vtotal;
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100836 bool in_vbl = true;
837 int ret = 0;
Mario Kleinerad3543e2013-10-30 05:13:08 +0100838 unsigned long irqflags;
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100839
Maarten Lankhorstfc467a222015-06-01 12:50:07 +0200840 if (WARN_ON(!mode->crtc_clock)) {
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100841 DRM_DEBUG_DRIVER("trying to get scanoutpos for disabled "
Jesse Barnes9db4a9c2011-02-07 12:26:52 -0800842 "pipe %c\n", pipe_name(pipe));
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100843 return 0;
844 }
845
Ville Syrjäläc2baf4b2013-09-23 14:48:50 +0300846 htotal = mode->crtc_htotal;
Ville Syrjälä78e8fc62014-04-29 13:35:44 +0300847 hsync_start = mode->crtc_hsync_start;
Ville Syrjäläc2baf4b2013-09-23 14:48:50 +0300848 vtotal = mode->crtc_vtotal;
849 vbl_start = mode->crtc_vblank_start;
850 vbl_end = mode->crtc_vblank_end;
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100851
Ville Syrjäläd31faf62013-10-28 16:31:41 +0200852 if (mode->flags & DRM_MODE_FLAG_INTERLACE) {
853 vbl_start = DIV_ROUND_UP(vbl_start, 2);
854 vbl_end /= 2;
855 vtotal /= 2;
856 }
857
Ville Syrjäläc2baf4b2013-09-23 14:48:50 +0300858 ret |= DRM_SCANOUTPOS_VALID | DRM_SCANOUTPOS_ACCURATE;
859
Mario Kleinerad3543e2013-10-30 05:13:08 +0100860 /*
861 * Lock uncore.lock, as we will do multiple timing critical raw
862 * register reads, potentially with preemption disabled, so the
863 * following code must not block on uncore.lock.
864 */
865 spin_lock_irqsave(&dev_priv->uncore.lock, irqflags);
Ville Syrjälä78e8fc62014-04-29 13:35:44 +0300866
Mario Kleinerad3543e2013-10-30 05:13:08 +0100867 /* preempt_disable_rt() should go right here in PREEMPT_RT patchset. */
868
869 /* Get optional system timestamp before query. */
870 if (stime)
871 *stime = ktime_get();
872
Tvrtko Ursulin91d14252016-05-06 14:48:28 +0100873 if (IS_GEN2(dev_priv) || IS_G4X(dev_priv) || INTEL_GEN(dev_priv) >= 5) {
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100874 /* No obvious pixelcount register. Only query vertical
875 * scanout position from Display scan line register.
876 */
Ville Syrjäläa225f072014-04-29 13:35:45 +0300877 position = __intel_get_crtc_scanline(intel_crtc);
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100878 } else {
879 /* Have access to pixelcount since start of frame.
880 * We can split this into vertical and horizontal
881 * scanout position.
882 */
Ville Syrjälä75aa3f62015-10-22 15:34:56 +0300883 position = (I915_READ_FW(PIPEFRAMEPIXEL(pipe)) & PIPE_PIXEL_MASK) >> PIPE_PIXEL_SHIFT;
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100884
Ville Syrjälä3aa18df2013-10-11 19:10:32 +0300885 /* convert to pixel counts */
886 vbl_start *= htotal;
887 vbl_end *= htotal;
888 vtotal *= htotal;
Ville Syrjälä78e8fc62014-04-29 13:35:44 +0300889
890 /*
Ville Syrjälä7e78f1cb2014-04-29 13:35:49 +0300891 * In interlaced modes, the pixel counter counts all pixels,
892 * so one field will have htotal more pixels. In order to avoid
893 * the reported position from jumping backwards when the pixel
894 * counter is beyond the length of the shorter field, just
895 * clamp the position the length of the shorter field. This
896 * matches how the scanline counter based position works since
897 * the scanline counter doesn't count the two half lines.
898 */
899 if (position >= vtotal)
900 position = vtotal - 1;
901
902 /*
Ville Syrjälä78e8fc62014-04-29 13:35:44 +0300903 * Start of vblank interrupt is triggered at start of hsync,
904 * just prior to the first active line of vblank. However we
905 * consider lines to start at the leading edge of horizontal
906 * active. So, should we get here before we've crossed into
907 * the horizontal active of the first line in vblank, we would
908 * not set the DRM_SCANOUTPOS_INVBL flag. In order to fix that,
909 * always add htotal-hsync_start to the current pixel position.
910 */
911 position = (position + htotal - hsync_start) % vtotal;
Ville Syrjälä3aa18df2013-10-11 19:10:32 +0300912 }
913
Mario Kleinerad3543e2013-10-30 05:13:08 +0100914 /* Get optional system timestamp after query. */
915 if (etime)
916 *etime = ktime_get();
917
918 /* preempt_enable_rt() should go right here in PREEMPT_RT patchset. */
919
920 spin_unlock_irqrestore(&dev_priv->uncore.lock, irqflags);
921
Ville Syrjälä3aa18df2013-10-11 19:10:32 +0300922 in_vbl = position >= vbl_start && position < vbl_end;
923
924 /*
925 * While in vblank, position will be negative
926 * counting up towards 0 at vbl_end. And outside
927 * vblank, position will be positive counting
928 * up since vbl_end.
929 */
930 if (position >= vbl_start)
931 position -= vbl_end;
932 else
933 position += vtotal - vbl_end;
934
Tvrtko Ursulin91d14252016-05-06 14:48:28 +0100935 if (IS_GEN2(dev_priv) || IS_G4X(dev_priv) || INTEL_GEN(dev_priv) >= 5) {
Ville Syrjälä3aa18df2013-10-11 19:10:32 +0300936 *vpos = position;
937 *hpos = 0;
938 } else {
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100939 *vpos = position / htotal;
940 *hpos = position - (*vpos * htotal);
941 }
942
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100943 /* In vblank? */
944 if (in_vbl)
Daniel Vetter3d3cbd82014-09-10 17:36:11 +0200945 ret |= DRM_SCANOUTPOS_IN_VBLANK;
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100946
947 return ret;
948}
949
Ville Syrjäläa225f072014-04-29 13:35:45 +0300950int intel_get_crtc_scanline(struct intel_crtc *crtc)
951{
Chris Wilsonfac5e232016-07-04 11:34:36 +0100952 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
Ville Syrjäläa225f072014-04-29 13:35:45 +0300953 unsigned long irqflags;
954 int position;
955
956 spin_lock_irqsave(&dev_priv->uncore.lock, irqflags);
957 position = __intel_get_crtc_scanline(crtc);
958 spin_unlock_irqrestore(&dev_priv->uncore.lock, irqflags);
959
960 return position;
961}
962
Thierry Reding88e72712015-09-24 18:35:31 +0200963static int i915_get_vblank_timestamp(struct drm_device *dev, unsigned int pipe,
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100964 int *max_error,
965 struct timeval *vblank_time,
966 unsigned flags)
967{
Ville Syrjäläe2af48c2016-10-31 22:37:05 +0200968 struct intel_crtc *crtc;
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100969
Thierry Reding88e72712015-09-24 18:35:31 +0200970 if (pipe >= INTEL_INFO(dev)->num_pipes) {
971 DRM_ERROR("Invalid crtc %u\n", pipe);
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100972 return -EINVAL;
973 }
974
975 /* Get drm_crtc to timestamp: */
Chris Wilson4041b852011-01-22 10:07:56 +0000976 crtc = intel_get_crtc_for_pipe(dev, pipe);
977 if (crtc == NULL) {
Thierry Reding88e72712015-09-24 18:35:31 +0200978 DRM_ERROR("Invalid crtc %u\n", pipe);
Chris Wilson4041b852011-01-22 10:07:56 +0000979 return -EINVAL;
980 }
981
Ville Syrjäläe2af48c2016-10-31 22:37:05 +0200982 if (!crtc->base.hwmode.crtc_clock) {
Thierry Reding88e72712015-09-24 18:35:31 +0200983 DRM_DEBUG_KMS("crtc %u is disabled\n", pipe);
Chris Wilson4041b852011-01-22 10:07:56 +0000984 return -EBUSY;
985 }
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100986
987 /* Helper routine in DRM core does all the work: */
Chris Wilson4041b852011-01-22 10:07:56 +0000988 return drm_calc_vbltimestamp_from_scanoutpos(dev, pipe, max_error,
989 vblank_time, flags,
Ville Syrjäläe2af48c2016-10-31 22:37:05 +0200990 &crtc->base.hwmode);
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100991}
992
Tvrtko Ursulin91d14252016-05-06 14:48:28 +0100993static void ironlake_rps_change_irq_handler(struct drm_i915_private *dev_priv)
Jesse Barnesf97108d2010-01-29 11:27:07 -0800994{
Matthew Garrettb5b72e82010-02-02 18:30:47 +0000995 u32 busy_up, busy_down, max_avg, min_avg;
Daniel Vetter92703882012-08-09 16:46:01 +0200996 u8 new_delay;
Daniel Vetter92703882012-08-09 16:46:01 +0200997
Daniel Vetterd0ecd7e2013-07-04 23:35:25 +0200998 spin_lock(&mchdev_lock);
Jesse Barnesf97108d2010-01-29 11:27:07 -0800999
Daniel Vetter73edd18f2012-08-08 23:35:37 +02001000 I915_WRITE16(MEMINTRSTS, I915_READ(MEMINTRSTS));
1001
Daniel Vetter20e4d402012-08-08 23:35:39 +02001002 new_delay = dev_priv->ips.cur_delay;
Daniel Vetter92703882012-08-09 16:46:01 +02001003
Jesse Barnes7648fa92010-05-20 14:28:11 -07001004 I915_WRITE16(MEMINTRSTS, MEMINT_EVAL_CHG);
Matthew Garrettb5b72e82010-02-02 18:30:47 +00001005 busy_up = I915_READ(RCPREVBSYTUPAVG);
1006 busy_down = I915_READ(RCPREVBSYTDNAVG);
Jesse Barnesf97108d2010-01-29 11:27:07 -08001007 max_avg = I915_READ(RCBMAXAVG);
1008 min_avg = I915_READ(RCBMINAVG);
1009
1010 /* Handle RCS change request from hw */
Matthew Garrettb5b72e82010-02-02 18:30:47 +00001011 if (busy_up > max_avg) {
Daniel Vetter20e4d402012-08-08 23:35:39 +02001012 if (dev_priv->ips.cur_delay != dev_priv->ips.max_delay)
1013 new_delay = dev_priv->ips.cur_delay - 1;
1014 if (new_delay < dev_priv->ips.max_delay)
1015 new_delay = dev_priv->ips.max_delay;
Matthew Garrettb5b72e82010-02-02 18:30:47 +00001016 } else if (busy_down < min_avg) {
Daniel Vetter20e4d402012-08-08 23:35:39 +02001017 if (dev_priv->ips.cur_delay != dev_priv->ips.min_delay)
1018 new_delay = dev_priv->ips.cur_delay + 1;
1019 if (new_delay > dev_priv->ips.min_delay)
1020 new_delay = dev_priv->ips.min_delay;
Jesse Barnesf97108d2010-01-29 11:27:07 -08001021 }
1022
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01001023 if (ironlake_set_drps(dev_priv, new_delay))
Daniel Vetter20e4d402012-08-08 23:35:39 +02001024 dev_priv->ips.cur_delay = new_delay;
Jesse Barnesf97108d2010-01-29 11:27:07 -08001025
Daniel Vetterd0ecd7e2013-07-04 23:35:25 +02001026 spin_unlock(&mchdev_lock);
Daniel Vetter92703882012-08-09 16:46:01 +02001027
Jesse Barnesf97108d2010-01-29 11:27:07 -08001028 return;
1029}
1030
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00001031static void notify_ring(struct intel_engine_cs *engine)
Chris Wilson549f7362010-10-19 11:19:32 +01001032{
Chris Wilsonaca34b62016-07-06 12:39:02 +01001033 smp_store_mb(engine->breadcrumbs.irq_posted, true);
Chris Wilson83348ba2016-08-09 17:47:51 +01001034 if (intel_engine_wakeup(engine))
Chris Wilson688e6c72016-07-01 17:23:15 +01001035 trace_i915_gem_request_notify(engine);
Chris Wilson549f7362010-10-19 11:19:32 +01001036}
1037
Chris Wilson43cf3bf2015-03-18 09:48:22 +00001038static void vlv_c0_read(struct drm_i915_private *dev_priv,
1039 struct intel_rps_ei *ei)
Deepak S31685c22014-07-03 17:33:01 -04001040{
Chris Wilson43cf3bf2015-03-18 09:48:22 +00001041 ei->cz_clock = vlv_punit_read(dev_priv, PUNIT_REG_CZ_TIMESTAMP);
1042 ei->render_c0 = I915_READ(VLV_RENDER_C0_COUNT);
1043 ei->media_c0 = I915_READ(VLV_MEDIA_C0_COUNT);
Deepak S31685c22014-07-03 17:33:01 -04001044}
1045
Chris Wilson43cf3bf2015-03-18 09:48:22 +00001046static bool vlv_c0_above(struct drm_i915_private *dev_priv,
1047 const struct intel_rps_ei *old,
1048 const struct intel_rps_ei *now,
1049 int threshold)
Deepak S31685c22014-07-03 17:33:01 -04001050{
Chris Wilson43cf3bf2015-03-18 09:48:22 +00001051 u64 time, c0;
Ville Syrjälä7bad74d2015-09-24 23:29:20 +03001052 unsigned int mul = 100;
Deepak S31685c22014-07-03 17:33:01 -04001053
Chris Wilson43cf3bf2015-03-18 09:48:22 +00001054 if (old->cz_clock == 0)
1055 return false;
Deepak S31685c22014-07-03 17:33:01 -04001056
Ville Syrjälä7bad74d2015-09-24 23:29:20 +03001057 if (I915_READ(VLV_COUNTER_CONTROL) & VLV_COUNT_RANGE_HIGH)
1058 mul <<= 8;
1059
Chris Wilson43cf3bf2015-03-18 09:48:22 +00001060 time = now->cz_clock - old->cz_clock;
Ville Syrjälä7bad74d2015-09-24 23:29:20 +03001061 time *= threshold * dev_priv->czclk_freq;
Deepak S31685c22014-07-03 17:33:01 -04001062
Chris Wilson43cf3bf2015-03-18 09:48:22 +00001063 /* Workload can be split between render + media, e.g. SwapBuffers
1064 * being blitted in X after being rendered in mesa. To account for
1065 * this we need to combine both engines into our activity counter.
1066 */
1067 c0 = now->render_c0 - old->render_c0;
1068 c0 += now->media_c0 - old->media_c0;
Ville Syrjälä7bad74d2015-09-24 23:29:20 +03001069 c0 *= mul * VLV_CZ_CLOCK_TO_MILLI_SEC;
Deepak S31685c22014-07-03 17:33:01 -04001070
Chris Wilson43cf3bf2015-03-18 09:48:22 +00001071 return c0 >= time;
1072}
Deepak S31685c22014-07-03 17:33:01 -04001073
Chris Wilson43cf3bf2015-03-18 09:48:22 +00001074void gen6_rps_reset_ei(struct drm_i915_private *dev_priv)
1075{
1076 vlv_c0_read(dev_priv, &dev_priv->rps.down_ei);
1077 dev_priv->rps.up_ei = dev_priv->rps.down_ei;
Chris Wilson43cf3bf2015-03-18 09:48:22 +00001078}
1079
1080static u32 vlv_wa_c0_ei(struct drm_i915_private *dev_priv, u32 pm_iir)
1081{
1082 struct intel_rps_ei now;
1083 u32 events = 0;
1084
Chris Wilson6f4b12f82015-03-18 09:48:23 +00001085 if ((pm_iir & (GEN6_PM_RP_DOWN_EI_EXPIRED | GEN6_PM_RP_UP_EI_EXPIRED)) == 0)
Chris Wilson43cf3bf2015-03-18 09:48:22 +00001086 return 0;
1087
1088 vlv_c0_read(dev_priv, &now);
1089 if (now.cz_clock == 0)
1090 return 0;
Deepak S31685c22014-07-03 17:33:01 -04001091
Chris Wilson43cf3bf2015-03-18 09:48:22 +00001092 if (pm_iir & GEN6_PM_RP_DOWN_EI_EXPIRED) {
1093 if (!vlv_c0_above(dev_priv,
1094 &dev_priv->rps.down_ei, &now,
Chris Wilson8fb55192015-04-07 16:20:28 +01001095 dev_priv->rps.down_threshold))
Chris Wilson43cf3bf2015-03-18 09:48:22 +00001096 events |= GEN6_PM_RP_DOWN_THRESHOLD;
1097 dev_priv->rps.down_ei = now;
Deepak S31685c22014-07-03 17:33:01 -04001098 }
1099
Chris Wilson43cf3bf2015-03-18 09:48:22 +00001100 if (pm_iir & GEN6_PM_RP_UP_EI_EXPIRED) {
1101 if (vlv_c0_above(dev_priv,
1102 &dev_priv->rps.up_ei, &now,
Chris Wilson8fb55192015-04-07 16:20:28 +01001103 dev_priv->rps.up_threshold))
Chris Wilson43cf3bf2015-03-18 09:48:22 +00001104 events |= GEN6_PM_RP_UP_THRESHOLD;
1105 dev_priv->rps.up_ei = now;
1106 }
1107
1108 return events;
Deepak S31685c22014-07-03 17:33:01 -04001109}
1110
Chris Wilsonf5a4c672015-04-27 13:41:23 +01001111static bool any_waiters(struct drm_i915_private *dev_priv)
1112{
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00001113 struct intel_engine_cs *engine;
Akash Goel3b3f1652016-10-13 22:44:48 +05301114 enum intel_engine_id id;
Chris Wilsonf5a4c672015-04-27 13:41:23 +01001115
Akash Goel3b3f1652016-10-13 22:44:48 +05301116 for_each_engine(engine, dev_priv, id)
Chris Wilson688e6c72016-07-01 17:23:15 +01001117 if (intel_engine_has_waiter(engine))
Chris Wilsonf5a4c672015-04-27 13:41:23 +01001118 return true;
1119
1120 return false;
1121}
1122
Ben Widawsky4912d042011-04-25 11:25:20 -07001123static void gen6_pm_rps_work(struct work_struct *work)
Jesse Barnes3b8d8d92010-12-17 14:19:02 -08001124{
Jani Nikula2d1013d2014-03-31 14:27:17 +03001125 struct drm_i915_private *dev_priv =
1126 container_of(work, struct drm_i915_private, rps.work);
Chris Wilson8d3afd72015-05-21 21:01:47 +01001127 bool client_boost;
1128 int new_delay, adj, min, max;
Paulo Zanoniedbfdb42013-08-06 18:57:13 -03001129 u32 pm_iir;
Jesse Barnes3b8d8d92010-12-17 14:19:02 -08001130
Daniel Vetter59cdb632013-07-04 23:35:28 +02001131 spin_lock_irq(&dev_priv->irq_lock);
Imre Deakd4d70aa2014-11-19 15:30:04 +02001132 /* Speed up work cancelation during disabling rps interrupts. */
1133 if (!dev_priv->rps.interrupts_enabled) {
1134 spin_unlock_irq(&dev_priv->irq_lock);
1135 return;
1136 }
Imre Deak1f814da2015-12-16 02:52:19 +02001137
Daniel Vetterc6a828d2012-08-08 23:35:35 +02001138 pm_iir = dev_priv->rps.pm_iir;
1139 dev_priv->rps.pm_iir = 0;
Imre Deaka72fbc32014-11-05 20:48:31 +02001140 /* Make sure not to corrupt PMIMR state used by ringbuffer on GEN6 */
Akash Goelf4e9af42016-10-12 21:54:30 +05301141 gen6_unmask_pm_irq(dev_priv, dev_priv->pm_rps_events);
Chris Wilson8d3afd72015-05-21 21:01:47 +01001142 client_boost = dev_priv->rps.client_boost;
1143 dev_priv->rps.client_boost = false;
Daniel Vetter59cdb632013-07-04 23:35:28 +02001144 spin_unlock_irq(&dev_priv->irq_lock);
Ben Widawsky4912d042011-04-25 11:25:20 -07001145
Paulo Zanoni60611c12013-08-15 11:50:01 -03001146 /* Make sure we didn't queue anything we're not going to process. */
Deepak Sa6706b42014-03-15 20:23:22 +05301147 WARN_ON(pm_iir & ~dev_priv->pm_rps_events);
Paulo Zanoni60611c12013-08-15 11:50:01 -03001148
Chris Wilson8d3afd72015-05-21 21:01:47 +01001149 if ((pm_iir & dev_priv->pm_rps_events) == 0 && !client_boost)
Chris Wilsonc33d2472016-07-04 08:08:36 +01001150 return;
Jesse Barnes3b8d8d92010-12-17 14:19:02 -08001151
Jesse Barnes4fc688c2012-11-02 11:14:01 -07001152 mutex_lock(&dev_priv->rps.hw_lock);
Chris Wilson7b9e0ae2012-04-28 08:56:39 +01001153
Chris Wilson43cf3bf2015-03-18 09:48:22 +00001154 pm_iir |= vlv_wa_c0_ei(dev_priv, pm_iir);
1155
Chris Wilsondd75fdc2013-09-25 17:34:57 +01001156 adj = dev_priv->rps.last_adj;
Chris Wilsonedcf2842015-04-07 16:20:29 +01001157 new_delay = dev_priv->rps.cur_freq;
Chris Wilson8d3afd72015-05-21 21:01:47 +01001158 min = dev_priv->rps.min_freq_softlimit;
1159 max = dev_priv->rps.max_freq_softlimit;
Chris Wilson29ecd78d2016-07-13 09:10:35 +01001160 if (client_boost || any_waiters(dev_priv))
1161 max = dev_priv->rps.max_freq;
1162 if (client_boost && new_delay < dev_priv->rps.boost_freq) {
1163 new_delay = dev_priv->rps.boost_freq;
Chris Wilson8d3afd72015-05-21 21:01:47 +01001164 adj = 0;
1165 } else if (pm_iir & GEN6_PM_RP_UP_THRESHOLD) {
Chris Wilsondd75fdc2013-09-25 17:34:57 +01001166 if (adj > 0)
1167 adj *= 2;
Chris Wilsonedcf2842015-04-07 16:20:29 +01001168 else /* CHV needs even encode values */
1169 adj = IS_CHERRYVIEW(dev_priv) ? 2 : 1;
Ville Syrjälä74250342013-06-25 21:38:11 +03001170 /*
1171 * For better performance, jump directly
1172 * to RPe if we're below it.
1173 */
Chris Wilsonedcf2842015-04-07 16:20:29 +01001174 if (new_delay < dev_priv->rps.efficient_freq - adj) {
Ben Widawskyb39fb292014-03-19 18:31:11 -07001175 new_delay = dev_priv->rps.efficient_freq;
Chris Wilsonedcf2842015-04-07 16:20:29 +01001176 adj = 0;
1177 }
Chris Wilson29ecd78d2016-07-13 09:10:35 +01001178 } else if (client_boost || any_waiters(dev_priv)) {
Chris Wilsonf5a4c672015-04-27 13:41:23 +01001179 adj = 0;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01001180 } else if (pm_iir & GEN6_PM_RP_DOWN_TIMEOUT) {
Ben Widawskyb39fb292014-03-19 18:31:11 -07001181 if (dev_priv->rps.cur_freq > dev_priv->rps.efficient_freq)
1182 new_delay = dev_priv->rps.efficient_freq;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01001183 else
Ben Widawskyb39fb292014-03-19 18:31:11 -07001184 new_delay = dev_priv->rps.min_freq_softlimit;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01001185 adj = 0;
1186 } else if (pm_iir & GEN6_PM_RP_DOWN_THRESHOLD) {
1187 if (adj < 0)
1188 adj *= 2;
Chris Wilsonedcf2842015-04-07 16:20:29 +01001189 else /* CHV needs even encode values */
1190 adj = IS_CHERRYVIEW(dev_priv) ? -2 : -1;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01001191 } else { /* unknown event */
Chris Wilsonedcf2842015-04-07 16:20:29 +01001192 adj = 0;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01001193 }
Jesse Barnes3b8d8d92010-12-17 14:19:02 -08001194
Chris Wilsonedcf2842015-04-07 16:20:29 +01001195 dev_priv->rps.last_adj = adj;
1196
Ben Widawsky79249632012-09-07 19:43:42 -07001197 /* sysfs frequency interfaces may have snuck in while servicing the
1198 * interrupt
1199 */
Chris Wilsonedcf2842015-04-07 16:20:29 +01001200 new_delay += adj;
Chris Wilson8d3afd72015-05-21 21:01:47 +01001201 new_delay = clamp_t(int, new_delay, min, max);
Deepak S27544362014-01-27 21:35:05 +05301202
Chris Wilsondc979972016-05-10 14:10:04 +01001203 intel_set_rps(dev_priv, new_delay);
Jesse Barnes3b8d8d92010-12-17 14:19:02 -08001204
Jesse Barnes4fc688c2012-11-02 11:14:01 -07001205 mutex_unlock(&dev_priv->rps.hw_lock);
Jesse Barnes3b8d8d92010-12-17 14:19:02 -08001206}
1207
Ben Widawskye3689192012-05-25 16:56:22 -07001208
1209/**
1210 * ivybridge_parity_work - Workqueue called when a parity error interrupt
1211 * occurred.
1212 * @work: workqueue struct
1213 *
1214 * Doesn't actually do anything except notify userspace. As a consequence of
1215 * this event, userspace should try to remap the bad rows since statistically
1216 * it is likely the same row is more likely to go bad again.
1217 */
1218static void ivybridge_parity_work(struct work_struct *work)
1219{
Jani Nikula2d1013d2014-03-31 14:27:17 +03001220 struct drm_i915_private *dev_priv =
1221 container_of(work, struct drm_i915_private, l3_parity.error_work);
Ben Widawskye3689192012-05-25 16:56:22 -07001222 u32 error_status, row, bank, subbank;
Ben Widawsky35a85ac2013-09-19 11:13:41 -07001223 char *parity_event[6];
Ben Widawskye3689192012-05-25 16:56:22 -07001224 uint32_t misccpctl;
Ben Widawsky35a85ac2013-09-19 11:13:41 -07001225 uint8_t slice = 0;
Ben Widawskye3689192012-05-25 16:56:22 -07001226
1227 /* We must turn off DOP level clock gating to access the L3 registers.
1228 * In order to prevent a get/put style interface, acquire struct mutex
1229 * any time we access those registers.
1230 */
Chris Wilson91c8a322016-07-05 10:40:23 +01001231 mutex_lock(&dev_priv->drm.struct_mutex);
Ben Widawskye3689192012-05-25 16:56:22 -07001232
Ben Widawsky35a85ac2013-09-19 11:13:41 -07001233 /* If we've screwed up tracking, just let the interrupt fire again */
1234 if (WARN_ON(!dev_priv->l3_parity.which_slice))
1235 goto out;
1236
Ben Widawskye3689192012-05-25 16:56:22 -07001237 misccpctl = I915_READ(GEN7_MISCCPCTL);
1238 I915_WRITE(GEN7_MISCCPCTL, misccpctl & ~GEN7_DOP_CLOCK_GATE_ENABLE);
1239 POSTING_READ(GEN7_MISCCPCTL);
1240
Ben Widawsky35a85ac2013-09-19 11:13:41 -07001241 while ((slice = ffs(dev_priv->l3_parity.which_slice)) != 0) {
Ville Syrjäläf0f59a02015-11-18 15:33:26 +02001242 i915_reg_t reg;
Ben Widawskye3689192012-05-25 16:56:22 -07001243
Ben Widawsky35a85ac2013-09-19 11:13:41 -07001244 slice--;
Joonas Lahtinen2d1fe072016-04-07 11:08:05 +03001245 if (WARN_ON_ONCE(slice >= NUM_L3_SLICES(dev_priv)))
Ben Widawsky35a85ac2013-09-19 11:13:41 -07001246 break;
1247
1248 dev_priv->l3_parity.which_slice &= ~(1<<slice);
1249
Ville Syrjälä6fa1c5f2015-11-04 23:20:02 +02001250 reg = GEN7_L3CDERRST1(slice);
Ben Widawsky35a85ac2013-09-19 11:13:41 -07001251
1252 error_status = I915_READ(reg);
1253 row = GEN7_PARITY_ERROR_ROW(error_status);
1254 bank = GEN7_PARITY_ERROR_BANK(error_status);
1255 subbank = GEN7_PARITY_ERROR_SUBBANK(error_status);
1256
1257 I915_WRITE(reg, GEN7_PARITY_ERROR_VALID | GEN7_L3CDERRST1_ENABLE);
1258 POSTING_READ(reg);
1259
1260 parity_event[0] = I915_L3_PARITY_UEVENT "=1";
1261 parity_event[1] = kasprintf(GFP_KERNEL, "ROW=%d", row);
1262 parity_event[2] = kasprintf(GFP_KERNEL, "BANK=%d", bank);
1263 parity_event[3] = kasprintf(GFP_KERNEL, "SUBBANK=%d", subbank);
1264 parity_event[4] = kasprintf(GFP_KERNEL, "SLICE=%d", slice);
1265 parity_event[5] = NULL;
1266
Chris Wilson91c8a322016-07-05 10:40:23 +01001267 kobject_uevent_env(&dev_priv->drm.primary->kdev->kobj,
Ben Widawsky35a85ac2013-09-19 11:13:41 -07001268 KOBJ_CHANGE, parity_event);
1269
1270 DRM_DEBUG("Parity error: Slice = %d, Row = %d, Bank = %d, Sub bank = %d.\n",
1271 slice, row, bank, subbank);
1272
1273 kfree(parity_event[4]);
1274 kfree(parity_event[3]);
1275 kfree(parity_event[2]);
1276 kfree(parity_event[1]);
1277 }
Ben Widawskye3689192012-05-25 16:56:22 -07001278
1279 I915_WRITE(GEN7_MISCCPCTL, misccpctl);
1280
Ben Widawsky35a85ac2013-09-19 11:13:41 -07001281out:
1282 WARN_ON(dev_priv->l3_parity.which_slice);
Daniel Vetter4cb21832014-09-15 14:55:26 +02001283 spin_lock_irq(&dev_priv->irq_lock);
Joonas Lahtinen2d1fe072016-04-07 11:08:05 +03001284 gen5_enable_gt_irq(dev_priv, GT_PARITY_ERROR(dev_priv));
Daniel Vetter4cb21832014-09-15 14:55:26 +02001285 spin_unlock_irq(&dev_priv->irq_lock);
Ben Widawskye3689192012-05-25 16:56:22 -07001286
Chris Wilson91c8a322016-07-05 10:40:23 +01001287 mutex_unlock(&dev_priv->drm.struct_mutex);
Ben Widawskye3689192012-05-25 16:56:22 -07001288}
1289
Ville Syrjälä261e40b2016-04-13 21:19:57 +03001290static void ivybridge_parity_error_irq_handler(struct drm_i915_private *dev_priv,
1291 u32 iir)
Ben Widawskye3689192012-05-25 16:56:22 -07001292{
Ville Syrjälä261e40b2016-04-13 21:19:57 +03001293 if (!HAS_L3_DPF(dev_priv))
Ben Widawskye3689192012-05-25 16:56:22 -07001294 return;
1295
Daniel Vetterd0ecd7e2013-07-04 23:35:25 +02001296 spin_lock(&dev_priv->irq_lock);
Ville Syrjälä261e40b2016-04-13 21:19:57 +03001297 gen5_disable_gt_irq(dev_priv, GT_PARITY_ERROR(dev_priv));
Daniel Vetterd0ecd7e2013-07-04 23:35:25 +02001298 spin_unlock(&dev_priv->irq_lock);
Ben Widawskye3689192012-05-25 16:56:22 -07001299
Ville Syrjälä261e40b2016-04-13 21:19:57 +03001300 iir &= GT_PARITY_ERROR(dev_priv);
Ben Widawsky35a85ac2013-09-19 11:13:41 -07001301 if (iir & GT_RENDER_L3_PARITY_ERROR_INTERRUPT_S1)
1302 dev_priv->l3_parity.which_slice |= 1 << 1;
1303
1304 if (iir & GT_RENDER_L3_PARITY_ERROR_INTERRUPT)
1305 dev_priv->l3_parity.which_slice |= 1 << 0;
1306
Daniel Vettera4da4fa2012-11-02 19:55:07 +01001307 queue_work(dev_priv->wq, &dev_priv->l3_parity.error_work);
Ben Widawskye3689192012-05-25 16:56:22 -07001308}
1309
Ville Syrjälä261e40b2016-04-13 21:19:57 +03001310static void ilk_gt_irq_handler(struct drm_i915_private *dev_priv,
Paulo Zanonif1af8fc2013-07-12 19:56:30 -03001311 u32 gt_iir)
1312{
Chris Wilsonf8973c22016-07-01 17:23:21 +01001313 if (gt_iir & GT_RENDER_USER_INTERRUPT)
Akash Goel3b3f1652016-10-13 22:44:48 +05301314 notify_ring(dev_priv->engine[RCS]);
Paulo Zanonif1af8fc2013-07-12 19:56:30 -03001315 if (gt_iir & ILK_BSD_USER_INTERRUPT)
Akash Goel3b3f1652016-10-13 22:44:48 +05301316 notify_ring(dev_priv->engine[VCS]);
Paulo Zanonif1af8fc2013-07-12 19:56:30 -03001317}
1318
Ville Syrjälä261e40b2016-04-13 21:19:57 +03001319static void snb_gt_irq_handler(struct drm_i915_private *dev_priv,
Daniel Vettere7b4c6b2012-03-30 20:24:35 +02001320 u32 gt_iir)
1321{
Chris Wilsonf8973c22016-07-01 17:23:21 +01001322 if (gt_iir & GT_RENDER_USER_INTERRUPT)
Akash Goel3b3f1652016-10-13 22:44:48 +05301323 notify_ring(dev_priv->engine[RCS]);
Ben Widawskycc609d52013-05-28 19:22:29 -07001324 if (gt_iir & GT_BSD_USER_INTERRUPT)
Akash Goel3b3f1652016-10-13 22:44:48 +05301325 notify_ring(dev_priv->engine[VCS]);
Ben Widawskycc609d52013-05-28 19:22:29 -07001326 if (gt_iir & GT_BLT_USER_INTERRUPT)
Akash Goel3b3f1652016-10-13 22:44:48 +05301327 notify_ring(dev_priv->engine[BCS]);
Daniel Vettere7b4c6b2012-03-30 20:24:35 +02001328
Ben Widawskycc609d52013-05-28 19:22:29 -07001329 if (gt_iir & (GT_BLT_CS_ERROR_INTERRUPT |
1330 GT_BSD_CS_ERROR_INTERRUPT |
Daniel Vetteraaecdf62014-11-04 15:52:22 +01001331 GT_RENDER_CS_MASTER_ERROR_INTERRUPT))
1332 DRM_DEBUG("Command parser error, gt_iir 0x%08x\n", gt_iir);
Ben Widawskye3689192012-05-25 16:56:22 -07001333
Ville Syrjälä261e40b2016-04-13 21:19:57 +03001334 if (gt_iir & GT_PARITY_ERROR(dev_priv))
1335 ivybridge_parity_error_irq_handler(dev_priv, gt_iir);
Daniel Vettere7b4c6b2012-03-30 20:24:35 +02001336}
1337
Nick Hoathfbcc1a02015-10-20 10:23:52 +01001338static __always_inline void
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00001339gen8_cs_irq_handler(struct intel_engine_cs *engine, u32 iir, int test_shift)
Nick Hoathfbcc1a02015-10-20 10:23:52 +01001340{
1341 if (iir & (GT_RENDER_USER_INTERRUPT << test_shift))
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00001342 notify_ring(engine);
Nick Hoathfbcc1a02015-10-20 10:23:52 +01001343 if (iir & (GT_CONTEXT_SWITCH_INTERRUPT << test_shift))
Tvrtko Ursulin27af5ee2016-04-04 12:11:56 +01001344 tasklet_schedule(&engine->irq_tasklet);
Nick Hoathfbcc1a02015-10-20 10:23:52 +01001345}
1346
Ville Syrjäläe30e2512016-04-13 21:19:58 +03001347static irqreturn_t gen8_gt_irq_ack(struct drm_i915_private *dev_priv,
1348 u32 master_ctl,
1349 u32 gt_iir[4])
Ben Widawskyabd58f02013-11-02 21:07:09 -07001350{
Ben Widawskyabd58f02013-11-02 21:07:09 -07001351 irqreturn_t ret = IRQ_NONE;
1352
1353 if (master_ctl & (GEN8_GT_RCS_IRQ | GEN8_GT_BCS_IRQ)) {
Ville Syrjäläe30e2512016-04-13 21:19:58 +03001354 gt_iir[0] = I915_READ_FW(GEN8_GT_IIR(0));
1355 if (gt_iir[0]) {
1356 I915_WRITE_FW(GEN8_GT_IIR(0), gt_iir[0]);
Ben Widawskyabd58f02013-11-02 21:07:09 -07001357 ret = IRQ_HANDLED;
Ben Widawskyabd58f02013-11-02 21:07:09 -07001358 } else
1359 DRM_ERROR("The master control interrupt lied (GT0)!\n");
1360 }
1361
Zhao Yakui85f9b5f2014-04-17 10:37:38 +08001362 if (master_ctl & (GEN8_GT_VCS1_IRQ | GEN8_GT_VCS2_IRQ)) {
Ville Syrjäläe30e2512016-04-13 21:19:58 +03001363 gt_iir[1] = I915_READ_FW(GEN8_GT_IIR(1));
1364 if (gt_iir[1]) {
1365 I915_WRITE_FW(GEN8_GT_IIR(1), gt_iir[1]);
Ben Widawskyabd58f02013-11-02 21:07:09 -07001366 ret = IRQ_HANDLED;
Ben Widawskyabd58f02013-11-02 21:07:09 -07001367 } else
1368 DRM_ERROR("The master control interrupt lied (GT1)!\n");
1369 }
1370
Chris Wilson74cdb332015-04-07 16:21:05 +01001371 if (master_ctl & GEN8_GT_VECS_IRQ) {
Ville Syrjäläe30e2512016-04-13 21:19:58 +03001372 gt_iir[3] = I915_READ_FW(GEN8_GT_IIR(3));
1373 if (gt_iir[3]) {
1374 I915_WRITE_FW(GEN8_GT_IIR(3), gt_iir[3]);
Chris Wilson74cdb332015-04-07 16:21:05 +01001375 ret = IRQ_HANDLED;
Chris Wilson74cdb332015-04-07 16:21:05 +01001376 } else
1377 DRM_ERROR("The master control interrupt lied (GT3)!\n");
1378 }
1379
Sagar Arun Kamble26705e22016-10-12 21:54:31 +05301380 if (master_ctl & (GEN8_GT_PM_IRQ | GEN8_GT_GUC_IRQ)) {
Ville Syrjäläe30e2512016-04-13 21:19:58 +03001381 gt_iir[2] = I915_READ_FW(GEN8_GT_IIR(2));
Sagar Arun Kamble26705e22016-10-12 21:54:31 +05301382 if (gt_iir[2] & (dev_priv->pm_rps_events |
1383 dev_priv->pm_guc_events)) {
Chris Wilsoncb0d2052015-04-07 16:21:04 +01001384 I915_WRITE_FW(GEN8_GT_IIR(2),
Sagar Arun Kamble26705e22016-10-12 21:54:31 +05301385 gt_iir[2] & (dev_priv->pm_rps_events |
1386 dev_priv->pm_guc_events));
Oscar Mateo38cc46d2014-06-16 16:10:59 +01001387 ret = IRQ_HANDLED;
Ben Widawsky09610212014-05-15 20:58:08 +03001388 } else
1389 DRM_ERROR("The master control interrupt lied (PM)!\n");
1390 }
1391
Ben Widawskyabd58f02013-11-02 21:07:09 -07001392 return ret;
1393}
1394
Ville Syrjäläe30e2512016-04-13 21:19:58 +03001395static void gen8_gt_irq_handler(struct drm_i915_private *dev_priv,
1396 u32 gt_iir[4])
1397{
1398 if (gt_iir[0]) {
Akash Goel3b3f1652016-10-13 22:44:48 +05301399 gen8_cs_irq_handler(dev_priv->engine[RCS],
Ville Syrjäläe30e2512016-04-13 21:19:58 +03001400 gt_iir[0], GEN8_RCS_IRQ_SHIFT);
Akash Goel3b3f1652016-10-13 22:44:48 +05301401 gen8_cs_irq_handler(dev_priv->engine[BCS],
Ville Syrjäläe30e2512016-04-13 21:19:58 +03001402 gt_iir[0], GEN8_BCS_IRQ_SHIFT);
1403 }
1404
1405 if (gt_iir[1]) {
Akash Goel3b3f1652016-10-13 22:44:48 +05301406 gen8_cs_irq_handler(dev_priv->engine[VCS],
Ville Syrjäläe30e2512016-04-13 21:19:58 +03001407 gt_iir[1], GEN8_VCS1_IRQ_SHIFT);
Akash Goel3b3f1652016-10-13 22:44:48 +05301408 gen8_cs_irq_handler(dev_priv->engine[VCS2],
Ville Syrjäläe30e2512016-04-13 21:19:58 +03001409 gt_iir[1], GEN8_VCS2_IRQ_SHIFT);
1410 }
1411
1412 if (gt_iir[3])
Akash Goel3b3f1652016-10-13 22:44:48 +05301413 gen8_cs_irq_handler(dev_priv->engine[VECS],
Ville Syrjäläe30e2512016-04-13 21:19:58 +03001414 gt_iir[3], GEN8_VECS_IRQ_SHIFT);
1415
1416 if (gt_iir[2] & dev_priv->pm_rps_events)
1417 gen6_rps_irq_handler(dev_priv, gt_iir[2]);
Sagar Arun Kamble26705e22016-10-12 21:54:31 +05301418
1419 if (gt_iir[2] & dev_priv->pm_guc_events)
1420 gen9_guc_irq_handler(dev_priv, gt_iir[2]);
Ville Syrjäläe30e2512016-04-13 21:19:58 +03001421}
1422
Imre Deak63c88d22015-07-20 14:43:39 -07001423static bool bxt_port_hotplug_long_detect(enum port port, u32 val)
1424{
1425 switch (port) {
1426 case PORT_A:
Ville Syrjälä195baa02015-08-27 23:56:00 +03001427 return val & PORTA_HOTPLUG_LONG_DETECT;
Imre Deak63c88d22015-07-20 14:43:39 -07001428 case PORT_B:
1429 return val & PORTB_HOTPLUG_LONG_DETECT;
1430 case PORT_C:
1431 return val & PORTC_HOTPLUG_LONG_DETECT;
Imre Deak63c88d22015-07-20 14:43:39 -07001432 default:
1433 return false;
1434 }
1435}
1436
Ville Syrjälä6dbf30c2015-08-27 23:56:02 +03001437static bool spt_port_hotplug2_long_detect(enum port port, u32 val)
1438{
1439 switch (port) {
1440 case PORT_E:
1441 return val & PORTE_HOTPLUG_LONG_DETECT;
1442 default:
1443 return false;
1444 }
1445}
1446
Ville Syrjälä74c0b392015-08-27 23:56:07 +03001447static bool spt_port_hotplug_long_detect(enum port port, u32 val)
1448{
1449 switch (port) {
1450 case PORT_A:
1451 return val & PORTA_HOTPLUG_LONG_DETECT;
1452 case PORT_B:
1453 return val & PORTB_HOTPLUG_LONG_DETECT;
1454 case PORT_C:
1455 return val & PORTC_HOTPLUG_LONG_DETECT;
1456 case PORT_D:
1457 return val & PORTD_HOTPLUG_LONG_DETECT;
1458 default:
1459 return false;
1460 }
1461}
1462
Ville Syrjäläe4ce95a2015-08-27 23:56:03 +03001463static bool ilk_port_hotplug_long_detect(enum port port, u32 val)
1464{
1465 switch (port) {
1466 case PORT_A:
1467 return val & DIGITAL_PORTA_HOTPLUG_LONG_DETECT;
1468 default:
1469 return false;
1470 }
1471}
1472
Jani Nikula676574d2015-05-28 15:43:53 +03001473static bool pch_port_hotplug_long_detect(enum port port, u32 val)
Dave Airlie13cf5502014-06-18 11:29:35 +10001474{
1475 switch (port) {
Dave Airlie13cf5502014-06-18 11:29:35 +10001476 case PORT_B:
Jani Nikula676574d2015-05-28 15:43:53 +03001477 return val & PORTB_HOTPLUG_LONG_DETECT;
Dave Airlie13cf5502014-06-18 11:29:35 +10001478 case PORT_C:
Jani Nikula676574d2015-05-28 15:43:53 +03001479 return val & PORTC_HOTPLUG_LONG_DETECT;
Dave Airlie13cf5502014-06-18 11:29:35 +10001480 case PORT_D:
Jani Nikula676574d2015-05-28 15:43:53 +03001481 return val & PORTD_HOTPLUG_LONG_DETECT;
1482 default:
1483 return false;
Dave Airlie13cf5502014-06-18 11:29:35 +10001484 }
1485}
1486
Jani Nikula676574d2015-05-28 15:43:53 +03001487static bool i9xx_port_hotplug_long_detect(enum port port, u32 val)
Dave Airlie13cf5502014-06-18 11:29:35 +10001488{
1489 switch (port) {
Dave Airlie13cf5502014-06-18 11:29:35 +10001490 case PORT_B:
Jani Nikula676574d2015-05-28 15:43:53 +03001491 return val & PORTB_HOTPLUG_INT_LONG_PULSE;
Dave Airlie13cf5502014-06-18 11:29:35 +10001492 case PORT_C:
Jani Nikula676574d2015-05-28 15:43:53 +03001493 return val & PORTC_HOTPLUG_INT_LONG_PULSE;
Dave Airlie13cf5502014-06-18 11:29:35 +10001494 case PORT_D:
Jani Nikula676574d2015-05-28 15:43:53 +03001495 return val & PORTD_HOTPLUG_INT_LONG_PULSE;
1496 default:
1497 return false;
Dave Airlie13cf5502014-06-18 11:29:35 +10001498 }
1499}
1500
Ville Syrjälä42db67d2015-08-28 21:26:27 +03001501/*
1502 * Get a bit mask of pins that have triggered, and which ones may be long.
1503 * This can be called multiple times with the same masks to accumulate
1504 * hotplug detection results from several registers.
1505 *
1506 * Note that the caller is expected to zero out the masks initially.
1507 */
Imre Deakfd63e2a2015-07-21 15:32:44 -07001508static void intel_get_hpd_pins(u32 *pin_mask, u32 *long_mask,
Jani Nikula8c841e52015-06-18 13:06:17 +03001509 u32 hotplug_trigger, u32 dig_hotplug_reg,
Imre Deakfd63e2a2015-07-21 15:32:44 -07001510 const u32 hpd[HPD_NUM_PINS],
1511 bool long_pulse_detect(enum port port, u32 val))
Jani Nikula676574d2015-05-28 15:43:53 +03001512{
Jani Nikula8c841e52015-06-18 13:06:17 +03001513 enum port port;
Jani Nikula676574d2015-05-28 15:43:53 +03001514 int i;
1515
Jani Nikula676574d2015-05-28 15:43:53 +03001516 for_each_hpd_pin(i) {
Jani Nikula8c841e52015-06-18 13:06:17 +03001517 if ((hpd[i] & hotplug_trigger) == 0)
1518 continue;
Jani Nikula676574d2015-05-28 15:43:53 +03001519
Jani Nikula8c841e52015-06-18 13:06:17 +03001520 *pin_mask |= BIT(i);
1521
Imre Deakcc24fcd2015-07-21 15:32:45 -07001522 if (!intel_hpd_pin_to_port(i, &port))
1523 continue;
1524
Imre Deakfd63e2a2015-07-21 15:32:44 -07001525 if (long_pulse_detect(port, dig_hotplug_reg))
Jani Nikula8c841e52015-06-18 13:06:17 +03001526 *long_mask |= BIT(i);
Jani Nikula676574d2015-05-28 15:43:53 +03001527 }
1528
1529 DRM_DEBUG_DRIVER("hotplug event received, stat 0x%08x, dig 0x%08x, pins 0x%08x\n",
1530 hotplug_trigger, dig_hotplug_reg, *pin_mask);
1531
1532}
1533
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01001534static void gmbus_irq_handler(struct drm_i915_private *dev_priv)
Daniel Vetter515ac2b2012-12-01 13:53:44 +01001535{
Daniel Vetter28c70f12012-12-01 13:53:45 +01001536 wake_up_all(&dev_priv->gmbus_wait_queue);
Daniel Vetter515ac2b2012-12-01 13:53:44 +01001537}
1538
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01001539static void dp_aux_irq_handler(struct drm_i915_private *dev_priv)
Daniel Vetterce99c252012-12-01 13:53:47 +01001540{
Daniel Vetter9ee32fea2012-12-01 13:53:48 +01001541 wake_up_all(&dev_priv->gmbus_wait_queue);
Daniel Vetterce99c252012-12-01 13:53:47 +01001542}
1543
Shuang He8bf1e9f2013-10-15 18:55:27 +01001544#if defined(CONFIG_DEBUG_FS)
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01001545static void display_pipe_crc_irq_handler(struct drm_i915_private *dev_priv,
1546 enum pipe pipe,
Daniel Vetter277de952013-10-18 16:37:07 +02001547 uint32_t crc0, uint32_t crc1,
1548 uint32_t crc2, uint32_t crc3,
1549 uint32_t crc4)
Shuang He8bf1e9f2013-10-15 18:55:27 +01001550{
Shuang He8bf1e9f2013-10-15 18:55:27 +01001551 struct intel_pipe_crc *pipe_crc = &dev_priv->pipe_crc[pipe];
1552 struct intel_pipe_crc_entry *entry;
Damien Lespiauac2300d2013-10-15 18:55:30 +01001553 int head, tail;
Damien Lespiaub2c88f52013-10-15 18:55:29 +01001554
Damien Lespiaud538bbd2013-10-21 14:29:30 +01001555 spin_lock(&pipe_crc->lock);
1556
Damien Lespiau0c912c72013-10-15 18:55:37 +01001557 if (!pipe_crc->entries) {
Damien Lespiaud538bbd2013-10-21 14:29:30 +01001558 spin_unlock(&pipe_crc->lock);
Daniel Vetter34273622014-11-26 16:29:04 +01001559 DRM_DEBUG_KMS("spurious interrupt\n");
Damien Lespiau0c912c72013-10-15 18:55:37 +01001560 return;
1561 }
1562
Damien Lespiaud538bbd2013-10-21 14:29:30 +01001563 head = pipe_crc->head;
1564 tail = pipe_crc->tail;
Damien Lespiaub2c88f52013-10-15 18:55:29 +01001565
1566 if (CIRC_SPACE(head, tail, INTEL_PIPE_CRC_ENTRIES_NR) < 1) {
Damien Lespiaud538bbd2013-10-21 14:29:30 +01001567 spin_unlock(&pipe_crc->lock);
Damien Lespiaub2c88f52013-10-15 18:55:29 +01001568 DRM_ERROR("CRC buffer overflowing\n");
1569 return;
1570 }
1571
1572 entry = &pipe_crc->entries[head];
Shuang He8bf1e9f2013-10-15 18:55:27 +01001573
Chris Wilson91c8a322016-07-05 10:40:23 +01001574 entry->frame = dev_priv->drm.driver->get_vblank_counter(&dev_priv->drm,
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01001575 pipe);
Daniel Vettereba94eb2013-10-16 22:55:46 +02001576 entry->crc[0] = crc0;
1577 entry->crc[1] = crc1;
1578 entry->crc[2] = crc2;
1579 entry->crc[3] = crc3;
1580 entry->crc[4] = crc4;
Damien Lespiaub2c88f52013-10-15 18:55:29 +01001581
1582 head = (head + 1) & (INTEL_PIPE_CRC_ENTRIES_NR - 1);
Damien Lespiaud538bbd2013-10-21 14:29:30 +01001583 pipe_crc->head = head;
1584
1585 spin_unlock(&pipe_crc->lock);
Damien Lespiau07144422013-10-15 18:55:40 +01001586
1587 wake_up_interruptible(&pipe_crc->wq);
Shuang He8bf1e9f2013-10-15 18:55:27 +01001588}
Daniel Vetter277de952013-10-18 16:37:07 +02001589#else
1590static inline void
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01001591display_pipe_crc_irq_handler(struct drm_i915_private *dev_priv,
1592 enum pipe pipe,
Daniel Vetter277de952013-10-18 16:37:07 +02001593 uint32_t crc0, uint32_t crc1,
1594 uint32_t crc2, uint32_t crc3,
1595 uint32_t crc4) {}
1596#endif
Daniel Vettereba94eb2013-10-16 22:55:46 +02001597
Daniel Vetter277de952013-10-18 16:37:07 +02001598
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01001599static void hsw_pipe_crc_irq_handler(struct drm_i915_private *dev_priv,
1600 enum pipe pipe)
Daniel Vetter5a69b892013-10-16 22:55:52 +02001601{
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01001602 display_pipe_crc_irq_handler(dev_priv, pipe,
Daniel Vetter277de952013-10-18 16:37:07 +02001603 I915_READ(PIPE_CRC_RES_1_IVB(pipe)),
1604 0, 0, 0, 0);
Daniel Vetter5a69b892013-10-16 22:55:52 +02001605}
1606
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01001607static void ivb_pipe_crc_irq_handler(struct drm_i915_private *dev_priv,
1608 enum pipe pipe)
Daniel Vettereba94eb2013-10-16 22:55:46 +02001609{
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01001610 display_pipe_crc_irq_handler(dev_priv, pipe,
Daniel Vetter277de952013-10-18 16:37:07 +02001611 I915_READ(PIPE_CRC_RES_1_IVB(pipe)),
1612 I915_READ(PIPE_CRC_RES_2_IVB(pipe)),
1613 I915_READ(PIPE_CRC_RES_3_IVB(pipe)),
1614 I915_READ(PIPE_CRC_RES_4_IVB(pipe)),
1615 I915_READ(PIPE_CRC_RES_5_IVB(pipe)));
Daniel Vettereba94eb2013-10-16 22:55:46 +02001616}
Daniel Vetter5b3a8562013-10-16 22:55:48 +02001617
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01001618static void i9xx_pipe_crc_irq_handler(struct drm_i915_private *dev_priv,
1619 enum pipe pipe)
Daniel Vetter5b3a8562013-10-16 22:55:48 +02001620{
Daniel Vetter0b5c5ed2013-10-16 22:55:53 +02001621 uint32_t res1, res2;
1622
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01001623 if (INTEL_GEN(dev_priv) >= 3)
Daniel Vetter0b5c5ed2013-10-16 22:55:53 +02001624 res1 = I915_READ(PIPE_CRC_RES_RES1_I915(pipe));
1625 else
1626 res1 = 0;
1627
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01001628 if (INTEL_GEN(dev_priv) >= 5 || IS_G4X(dev_priv))
Daniel Vetter0b5c5ed2013-10-16 22:55:53 +02001629 res2 = I915_READ(PIPE_CRC_RES_RES2_G4X(pipe));
1630 else
1631 res2 = 0;
Daniel Vetter5b3a8562013-10-16 22:55:48 +02001632
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01001633 display_pipe_crc_irq_handler(dev_priv, pipe,
Daniel Vetter277de952013-10-18 16:37:07 +02001634 I915_READ(PIPE_CRC_RES_RED(pipe)),
1635 I915_READ(PIPE_CRC_RES_GREEN(pipe)),
1636 I915_READ(PIPE_CRC_RES_BLUE(pipe)),
1637 res1, res2);
Daniel Vetter5b3a8562013-10-16 22:55:48 +02001638}
Shuang He8bf1e9f2013-10-15 18:55:27 +01001639
Paulo Zanoni1403c0d2013-08-15 11:51:32 -03001640/* The RPS events need forcewake, so we add them to a work queue and mask their
1641 * IMR bits until the work is done. Other interrupts can be processed without
1642 * the work queue. */
1643static void gen6_rps_irq_handler(struct drm_i915_private *dev_priv, u32 pm_iir)
Ben Widawskybaf02a12013-05-28 19:22:24 -07001644{
Deepak Sa6706b42014-03-15 20:23:22 +05301645 if (pm_iir & dev_priv->pm_rps_events) {
Daniel Vetter59cdb632013-07-04 23:35:28 +02001646 spin_lock(&dev_priv->irq_lock);
Akash Goelf4e9af42016-10-12 21:54:30 +05301647 gen6_mask_pm_irq(dev_priv, pm_iir & dev_priv->pm_rps_events);
Imre Deakd4d70aa2014-11-19 15:30:04 +02001648 if (dev_priv->rps.interrupts_enabled) {
1649 dev_priv->rps.pm_iir |= pm_iir & dev_priv->pm_rps_events;
Chris Wilsonc33d2472016-07-04 08:08:36 +01001650 schedule_work(&dev_priv->rps.work);
Imre Deakd4d70aa2014-11-19 15:30:04 +02001651 }
Daniel Vetter59cdb632013-07-04 23:35:28 +02001652 spin_unlock(&dev_priv->irq_lock);
Ben Widawskybaf02a12013-05-28 19:22:24 -07001653 }
Ben Widawskybaf02a12013-05-28 19:22:24 -07001654
Imre Deakc9a9a262014-11-05 20:48:37 +02001655 if (INTEL_INFO(dev_priv)->gen >= 8)
1656 return;
1657
Joonas Lahtinen2d1fe072016-04-07 11:08:05 +03001658 if (HAS_VEBOX(dev_priv)) {
Paulo Zanoni1403c0d2013-08-15 11:51:32 -03001659 if (pm_iir & PM_VEBOX_USER_INTERRUPT)
Akash Goel3b3f1652016-10-13 22:44:48 +05301660 notify_ring(dev_priv->engine[VECS]);
Ben Widawsky12638c52013-05-28 19:22:31 -07001661
Daniel Vetteraaecdf62014-11-04 15:52:22 +01001662 if (pm_iir & PM_VEBOX_CS_ERROR_INTERRUPT)
1663 DRM_DEBUG("Command parser error, pm_iir 0x%08x\n", pm_iir);
Ben Widawsky12638c52013-05-28 19:22:31 -07001664 }
Ben Widawskybaf02a12013-05-28 19:22:24 -07001665}
1666
Sagar Arun Kamble26705e22016-10-12 21:54:31 +05301667static void gen9_guc_irq_handler(struct drm_i915_private *dev_priv, u32 gt_iir)
1668{
1669 if (gt_iir & GEN9_GUC_TO_HOST_INT_EVENT) {
Sagar Arun Kamble4100b2a2016-10-12 21:54:32 +05301670 /* Sample the log buffer flush related bits & clear them out now
1671 * itself from the message identity register to minimize the
1672 * probability of losing a flush interrupt, when there are back
1673 * to back flush interrupts.
1674 * There can be a new flush interrupt, for different log buffer
1675 * type (like for ISR), whilst Host is handling one (for DPC).
1676 * Since same bit is used in message register for ISR & DPC, it
1677 * could happen that GuC sets the bit for 2nd interrupt but Host
1678 * clears out the bit on handling the 1st interrupt.
1679 */
1680 u32 msg, flush;
1681
1682 msg = I915_READ(SOFT_SCRATCH(15));
1683 flush = msg & (GUC2HOST_MSG_CRASH_DUMP_POSTED |
1684 GUC2HOST_MSG_FLUSH_LOG_BUFFER);
1685 if (flush) {
1686 /* Clear the message bits that are handled */
1687 I915_WRITE(SOFT_SCRATCH(15), msg & ~flush);
1688
1689 /* Handle flush interrupt in bottom half */
1690 queue_work(dev_priv->guc.log.flush_wq,
1691 &dev_priv->guc.log.flush_work);
Akash Goel5aa1ee42016-10-12 21:54:36 +05301692
1693 dev_priv->guc.log.flush_interrupt_count++;
Sagar Arun Kamble4100b2a2016-10-12 21:54:32 +05301694 } else {
1695 /* Not clearing of unhandled event bits won't result in
1696 * re-triggering of the interrupt.
1697 */
1698 }
Sagar Arun Kamble26705e22016-10-12 21:54:31 +05301699 }
1700}
1701
Daniel Vetter5a21b662016-05-24 17:13:53 +02001702static bool intel_pipe_handle_vblank(struct drm_i915_private *dev_priv,
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01001703 enum pipe pipe)
Ville Syrjälä8d7849d2014-04-29 13:35:46 +03001704{
Daniel Vetter5a21b662016-05-24 17:13:53 +02001705 bool ret;
1706
Chris Wilson91c8a322016-07-05 10:40:23 +01001707 ret = drm_handle_vblank(&dev_priv->drm, pipe);
Daniel Vetter5a21b662016-05-24 17:13:53 +02001708 if (ret)
Maarten Lankhorst51cbaf02016-05-17 15:07:49 +02001709 intel_finish_page_flip_mmio(dev_priv, pipe);
Daniel Vetter5a21b662016-05-24 17:13:53 +02001710
1711 return ret;
Ville Syrjälä8d7849d2014-04-29 13:35:46 +03001712}
1713
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01001714static void valleyview_pipestat_irq_ack(struct drm_i915_private *dev_priv,
1715 u32 iir, u32 pipe_stats[I915_MAX_PIPES])
Imre Deakc1874ed2014-02-04 21:35:46 +02001716{
Imre Deakc1874ed2014-02-04 21:35:46 +02001717 int pipe;
1718
Imre Deak58ead0d2014-02-04 21:35:47 +02001719 spin_lock(&dev_priv->irq_lock);
Ville Syrjälä1ca993d2016-02-18 21:54:26 +02001720
1721 if (!dev_priv->display_irqs_enabled) {
1722 spin_unlock(&dev_priv->irq_lock);
1723 return;
1724 }
1725
Damien Lespiau055e3932014-08-18 13:49:10 +01001726 for_each_pipe(dev_priv, pipe) {
Ville Syrjäläf0f59a02015-11-18 15:33:26 +02001727 i915_reg_t reg;
Daniel Vetterbbb5eeb2014-02-12 17:55:36 +01001728 u32 mask, iir_bit = 0;
Imre Deak91d181d2014-02-10 18:42:49 +02001729
Daniel Vetterbbb5eeb2014-02-12 17:55:36 +01001730 /*
1731 * PIPESTAT bits get signalled even when the interrupt is
1732 * disabled with the mask bits, and some of the status bits do
1733 * not generate interrupts at all (like the underrun bit). Hence
1734 * we need to be careful that we only handle what we want to
1735 * handle.
1736 */
Daniel Vetter0f239f42014-09-30 10:56:49 +02001737
1738 /* fifo underruns are filterered in the underrun handler. */
1739 mask = PIPE_FIFO_UNDERRUN_STATUS;
Daniel Vetterbbb5eeb2014-02-12 17:55:36 +01001740
1741 switch (pipe) {
1742 case PIPE_A:
1743 iir_bit = I915_DISPLAY_PIPE_A_EVENT_INTERRUPT;
1744 break;
1745 case PIPE_B:
1746 iir_bit = I915_DISPLAY_PIPE_B_EVENT_INTERRUPT;
1747 break;
Ville Syrjälä3278f672014-04-09 13:28:49 +03001748 case PIPE_C:
1749 iir_bit = I915_DISPLAY_PIPE_C_EVENT_INTERRUPT;
1750 break;
Daniel Vetterbbb5eeb2014-02-12 17:55:36 +01001751 }
1752 if (iir & iir_bit)
1753 mask |= dev_priv->pipestat_irq_mask[pipe];
1754
1755 if (!mask)
Imre Deak91d181d2014-02-10 18:42:49 +02001756 continue;
1757
1758 reg = PIPESTAT(pipe);
Daniel Vetterbbb5eeb2014-02-12 17:55:36 +01001759 mask |= PIPESTAT_INT_ENABLE_MASK;
1760 pipe_stats[pipe] = I915_READ(reg) & mask;
Imre Deakc1874ed2014-02-04 21:35:46 +02001761
1762 /*
1763 * Clear the PIPE*STAT regs before the IIR
1764 */
Imre Deak91d181d2014-02-10 18:42:49 +02001765 if (pipe_stats[pipe] & (PIPE_FIFO_UNDERRUN_STATUS |
1766 PIPESTAT_INT_STATUS_MASK))
Imre Deakc1874ed2014-02-04 21:35:46 +02001767 I915_WRITE(reg, pipe_stats[pipe]);
1768 }
Imre Deak58ead0d2014-02-04 21:35:47 +02001769 spin_unlock(&dev_priv->irq_lock);
Ville Syrjälä2ecb8ca2016-04-13 21:19:55 +03001770}
1771
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01001772static void valleyview_pipestat_irq_handler(struct drm_i915_private *dev_priv,
Ville Syrjälä2ecb8ca2016-04-13 21:19:55 +03001773 u32 pipe_stats[I915_MAX_PIPES])
1774{
Ville Syrjälä2ecb8ca2016-04-13 21:19:55 +03001775 enum pipe pipe;
Imre Deakc1874ed2014-02-04 21:35:46 +02001776
Damien Lespiau055e3932014-08-18 13:49:10 +01001777 for_each_pipe(dev_priv, pipe) {
Daniel Vetter5a21b662016-05-24 17:13:53 +02001778 if (pipe_stats[pipe] & PIPE_START_VBLANK_INTERRUPT_STATUS &&
1779 intel_pipe_handle_vblank(dev_priv, pipe))
1780 intel_check_page_flip(dev_priv, pipe);
Imre Deakc1874ed2014-02-04 21:35:46 +02001781
Maarten Lankhorst5251f042016-05-17 15:07:47 +02001782 if (pipe_stats[pipe] & PLANE_FLIP_DONE_INT_STATUS_VLV)
Maarten Lankhorst51cbaf02016-05-17 15:07:49 +02001783 intel_finish_page_flip_cs(dev_priv, pipe);
Imre Deakc1874ed2014-02-04 21:35:46 +02001784
1785 if (pipe_stats[pipe] & PIPE_CRC_DONE_INTERRUPT_STATUS)
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01001786 i9xx_pipe_crc_irq_handler(dev_priv, pipe);
Imre Deakc1874ed2014-02-04 21:35:46 +02001787
Daniel Vetter1f7247c2014-09-30 10:56:48 +02001788 if (pipe_stats[pipe] & PIPE_FIFO_UNDERRUN_STATUS)
1789 intel_cpu_fifo_underrun_irq_handler(dev_priv, pipe);
Imre Deakc1874ed2014-02-04 21:35:46 +02001790 }
1791
1792 if (pipe_stats[0] & PIPE_GMBUS_INTERRUPT_STATUS)
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01001793 gmbus_irq_handler(dev_priv);
Imre Deakc1874ed2014-02-04 21:35:46 +02001794}
1795
Ville Syrjälä1ae3c342016-04-13 21:19:54 +03001796static u32 i9xx_hpd_irq_ack(struct drm_i915_private *dev_priv)
Ville Syrjälä16c6c562014-04-01 10:54:36 +03001797{
Ville Syrjälä16c6c562014-04-01 10:54:36 +03001798 u32 hotplug_status = I915_READ(PORT_HOTPLUG_STAT);
Ville Syrjälä1ae3c342016-04-13 21:19:54 +03001799
1800 if (hotplug_status)
1801 I915_WRITE(PORT_HOTPLUG_STAT, hotplug_status);
1802
1803 return hotplug_status;
1804}
1805
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01001806static void i9xx_hpd_irq_handler(struct drm_i915_private *dev_priv,
Ville Syrjälä1ae3c342016-04-13 21:19:54 +03001807 u32 hotplug_status)
1808{
Ville Syrjälä42db67d2015-08-28 21:26:27 +03001809 u32 pin_mask = 0, long_mask = 0;
Ville Syrjälä16c6c562014-04-01 10:54:36 +03001810
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01001811 if (IS_G4X(dev_priv) || IS_VALLEYVIEW(dev_priv) ||
1812 IS_CHERRYVIEW(dev_priv)) {
Jani Nikula0d2e4292015-05-27 15:03:39 +03001813 u32 hotplug_trigger = hotplug_status & HOTPLUG_INT_STATUS_G4X;
Oscar Mateo3ff60f82014-06-16 16:10:58 +01001814
Ville Syrjälä58f2cf22015-08-28 22:59:08 +03001815 if (hotplug_trigger) {
1816 intel_get_hpd_pins(&pin_mask, &long_mask, hotplug_trigger,
1817 hotplug_trigger, hpd_status_g4x,
1818 i9xx_port_hotplug_long_detect);
1819
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01001820 intel_hpd_irq_handler(dev_priv, pin_mask, long_mask);
Ville Syrjälä58f2cf22015-08-28 22:59:08 +03001821 }
Jani Nikula369712e2015-05-27 15:03:40 +03001822
1823 if (hotplug_status & DP_AUX_CHANNEL_MASK_INT_STATUS_G4X)
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01001824 dp_aux_irq_handler(dev_priv);
Jani Nikula0d2e4292015-05-27 15:03:39 +03001825 } else {
1826 u32 hotplug_trigger = hotplug_status & HOTPLUG_INT_STATUS_I915;
Oscar Mateo3ff60f82014-06-16 16:10:58 +01001827
Ville Syrjälä58f2cf22015-08-28 22:59:08 +03001828 if (hotplug_trigger) {
1829 intel_get_hpd_pins(&pin_mask, &long_mask, hotplug_trigger,
Daniel Vetter44cc6c02015-09-30 08:47:41 +02001830 hotplug_trigger, hpd_status_i915,
Ville Syrjälä58f2cf22015-08-28 22:59:08 +03001831 i9xx_port_hotplug_long_detect);
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01001832 intel_hpd_irq_handler(dev_priv, pin_mask, long_mask);
Ville Syrjälä58f2cf22015-08-28 22:59:08 +03001833 }
Ville Syrjälä16c6c562014-04-01 10:54:36 +03001834 }
Ville Syrjälä16c6c562014-04-01 10:54:36 +03001835}
1836
Daniel Vetterff1f5252012-10-02 15:10:55 +02001837static irqreturn_t valleyview_irq_handler(int irq, void *arg)
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07001838{
Daniel Vetter45a83f82014-05-12 19:17:55 +02001839 struct drm_device *dev = arg;
Chris Wilsonfac5e232016-07-04 11:34:36 +01001840 struct drm_i915_private *dev_priv = to_i915(dev);
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07001841 irqreturn_t ret = IRQ_NONE;
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07001842
Imre Deak2dd2a882015-02-24 11:14:30 +02001843 if (!intel_irqs_enabled(dev_priv))
1844 return IRQ_NONE;
1845
Imre Deak1f814da2015-12-16 02:52:19 +02001846 /* IRQs are synced during runtime_suspend, we don't require a wakeref */
1847 disable_rpm_wakeref_asserts(dev_priv);
1848
Ville Syrjälä1e1cace2016-04-13 21:19:52 +03001849 do {
Ville Syrjälä6e814802016-04-13 21:19:53 +03001850 u32 iir, gt_iir, pm_iir;
Ville Syrjälä2ecb8ca2016-04-13 21:19:55 +03001851 u32 pipe_stats[I915_MAX_PIPES] = {};
Ville Syrjälä1ae3c342016-04-13 21:19:54 +03001852 u32 hotplug_status = 0;
Ville Syrjäläa5e485a2016-04-13 21:19:51 +03001853 u32 ier = 0;
Oscar Mateo3ff60f82014-06-16 16:10:58 +01001854
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07001855 gt_iir = I915_READ(GTIIR);
1856 pm_iir = I915_READ(GEN6_PMIIR);
Oscar Mateo3ff60f82014-06-16 16:10:58 +01001857 iir = I915_READ(VLV_IIR);
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07001858
1859 if (gt_iir == 0 && pm_iir == 0 && iir == 0)
Ville Syrjälä1e1cace2016-04-13 21:19:52 +03001860 break;
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07001861
1862 ret = IRQ_HANDLED;
1863
Ville Syrjäläa5e485a2016-04-13 21:19:51 +03001864 /*
1865 * Theory on interrupt generation, based on empirical evidence:
1866 *
1867 * x = ((VLV_IIR & VLV_IER) ||
1868 * (((GT_IIR & GT_IER) || (GEN6_PMIIR & GEN6_PMIER)) &&
1869 * (VLV_MASTER_IER & MASTER_INTERRUPT_ENABLE)));
1870 *
1871 * A CPU interrupt will only be raised when 'x' has a 0->1 edge.
1872 * Hence we clear MASTER_INTERRUPT_ENABLE and VLV_IER to
1873 * guarantee the CPU interrupt will be raised again even if we
1874 * don't end up clearing all the VLV_IIR, GT_IIR, GEN6_PMIIR
1875 * bits this time around.
1876 */
Ville Syrjälä4a0a0202016-04-13 21:19:50 +03001877 I915_WRITE(VLV_MASTER_IER, 0);
Ville Syrjäläa5e485a2016-04-13 21:19:51 +03001878 ier = I915_READ(VLV_IER);
1879 I915_WRITE(VLV_IER, 0);
Ville Syrjälä4a0a0202016-04-13 21:19:50 +03001880
1881 if (gt_iir)
1882 I915_WRITE(GTIIR, gt_iir);
1883 if (pm_iir)
1884 I915_WRITE(GEN6_PMIIR, pm_iir);
1885
Ville Syrjälä7ce4d1f2016-04-13 21:19:49 +03001886 if (iir & I915_DISPLAY_PORT_INTERRUPT)
Ville Syrjälä1ae3c342016-04-13 21:19:54 +03001887 hotplug_status = i9xx_hpd_irq_ack(dev_priv);
Ville Syrjälä7ce4d1f2016-04-13 21:19:49 +03001888
Oscar Mateo3ff60f82014-06-16 16:10:58 +01001889 /* Call regardless, as some status bits might not be
1890 * signalled in iir */
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01001891 valleyview_pipestat_irq_ack(dev_priv, iir, pipe_stats);
Ville Syrjälä7ce4d1f2016-04-13 21:19:49 +03001892
1893 /*
1894 * VLV_IIR is single buffered, and reflects the level
1895 * from PIPESTAT/PORT_HOTPLUG_STAT, hence clear it last.
1896 */
1897 if (iir)
1898 I915_WRITE(VLV_IIR, iir);
Ville Syrjälä4a0a0202016-04-13 21:19:50 +03001899
Ville Syrjäläa5e485a2016-04-13 21:19:51 +03001900 I915_WRITE(VLV_IER, ier);
Ville Syrjälä4a0a0202016-04-13 21:19:50 +03001901 I915_WRITE(VLV_MASTER_IER, MASTER_INTERRUPT_ENABLE);
1902 POSTING_READ(VLV_MASTER_IER);
Ville Syrjälä1ae3c342016-04-13 21:19:54 +03001903
Ville Syrjälä52894872016-04-13 21:19:56 +03001904 if (gt_iir)
Ville Syrjälä261e40b2016-04-13 21:19:57 +03001905 snb_gt_irq_handler(dev_priv, gt_iir);
Ville Syrjälä52894872016-04-13 21:19:56 +03001906 if (pm_iir)
1907 gen6_rps_irq_handler(dev_priv, pm_iir);
1908
Ville Syrjälä1ae3c342016-04-13 21:19:54 +03001909 if (hotplug_status)
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01001910 i9xx_hpd_irq_handler(dev_priv, hotplug_status);
Ville Syrjälä2ecb8ca2016-04-13 21:19:55 +03001911
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01001912 valleyview_pipestat_irq_handler(dev_priv, pipe_stats);
Ville Syrjälä1e1cace2016-04-13 21:19:52 +03001913 } while (0);
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07001914
Imre Deak1f814da2015-12-16 02:52:19 +02001915 enable_rpm_wakeref_asserts(dev_priv);
1916
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07001917 return ret;
1918}
1919
Ville Syrjälä43f328d2014-04-09 20:40:52 +03001920static irqreturn_t cherryview_irq_handler(int irq, void *arg)
1921{
Daniel Vetter45a83f82014-05-12 19:17:55 +02001922 struct drm_device *dev = arg;
Chris Wilsonfac5e232016-07-04 11:34:36 +01001923 struct drm_i915_private *dev_priv = to_i915(dev);
Ville Syrjälä43f328d2014-04-09 20:40:52 +03001924 irqreturn_t ret = IRQ_NONE;
Ville Syrjälä43f328d2014-04-09 20:40:52 +03001925
Imre Deak2dd2a882015-02-24 11:14:30 +02001926 if (!intel_irqs_enabled(dev_priv))
1927 return IRQ_NONE;
1928
Imre Deak1f814da2015-12-16 02:52:19 +02001929 /* IRQs are synced during runtime_suspend, we don't require a wakeref */
1930 disable_rpm_wakeref_asserts(dev_priv);
1931
Chris Wilson579de732016-03-14 09:01:57 +00001932 do {
Ville Syrjälä6e814802016-04-13 21:19:53 +03001933 u32 master_ctl, iir;
Ville Syrjäläe30e2512016-04-13 21:19:58 +03001934 u32 gt_iir[4] = {};
Ville Syrjälä2ecb8ca2016-04-13 21:19:55 +03001935 u32 pipe_stats[I915_MAX_PIPES] = {};
Ville Syrjälä1ae3c342016-04-13 21:19:54 +03001936 u32 hotplug_status = 0;
Ville Syrjäläa5e485a2016-04-13 21:19:51 +03001937 u32 ier = 0;
1938
Ville Syrjälä8e5fd592014-04-09 13:28:50 +03001939 master_ctl = I915_READ(GEN8_MASTER_IRQ) & ~GEN8_MASTER_IRQ_CONTROL;
1940 iir = I915_READ(VLV_IIR);
Ville Syrjälä3278f672014-04-09 13:28:49 +03001941
Ville Syrjälä8e5fd592014-04-09 13:28:50 +03001942 if (master_ctl == 0 && iir == 0)
1943 break;
Ville Syrjälä43f328d2014-04-09 20:40:52 +03001944
Oscar Mateo27b6c122014-06-16 16:11:00 +01001945 ret = IRQ_HANDLED;
1946
Ville Syrjäläa5e485a2016-04-13 21:19:51 +03001947 /*
1948 * Theory on interrupt generation, based on empirical evidence:
1949 *
1950 * x = ((VLV_IIR & VLV_IER) ||
1951 * ((GEN8_MASTER_IRQ & ~GEN8_MASTER_IRQ_CONTROL) &&
1952 * (GEN8_MASTER_IRQ & GEN8_MASTER_IRQ_CONTROL)));
1953 *
1954 * A CPU interrupt will only be raised when 'x' has a 0->1 edge.
1955 * Hence we clear GEN8_MASTER_IRQ_CONTROL and VLV_IER to
1956 * guarantee the CPU interrupt will be raised again even if we
1957 * don't end up clearing all the VLV_IIR and GEN8_MASTER_IRQ_CONTROL
1958 * bits this time around.
1959 */
Ville Syrjälä8e5fd592014-04-09 13:28:50 +03001960 I915_WRITE(GEN8_MASTER_IRQ, 0);
Ville Syrjäläa5e485a2016-04-13 21:19:51 +03001961 ier = I915_READ(VLV_IER);
1962 I915_WRITE(VLV_IER, 0);
Ville Syrjälä43f328d2014-04-09 20:40:52 +03001963
Ville Syrjäläe30e2512016-04-13 21:19:58 +03001964 gen8_gt_irq_ack(dev_priv, master_ctl, gt_iir);
Ville Syrjälä43f328d2014-04-09 20:40:52 +03001965
Ville Syrjälä7ce4d1f2016-04-13 21:19:49 +03001966 if (iir & I915_DISPLAY_PORT_INTERRUPT)
Ville Syrjälä1ae3c342016-04-13 21:19:54 +03001967 hotplug_status = i9xx_hpd_irq_ack(dev_priv);
Ville Syrjälä7ce4d1f2016-04-13 21:19:49 +03001968
Oscar Mateo27b6c122014-06-16 16:11:00 +01001969 /* Call regardless, as some status bits might not be
1970 * signalled in iir */
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01001971 valleyview_pipestat_irq_ack(dev_priv, iir, pipe_stats);
Ville Syrjälä43f328d2014-04-09 20:40:52 +03001972
Ville Syrjälä7ce4d1f2016-04-13 21:19:49 +03001973 /*
1974 * VLV_IIR is single buffered, and reflects the level
1975 * from PIPESTAT/PORT_HOTPLUG_STAT, hence clear it last.
1976 */
1977 if (iir)
1978 I915_WRITE(VLV_IIR, iir);
1979
Ville Syrjäläa5e485a2016-04-13 21:19:51 +03001980 I915_WRITE(VLV_IER, ier);
Ville Syrjäläe5328c42016-04-13 21:19:47 +03001981 I915_WRITE(GEN8_MASTER_IRQ, GEN8_MASTER_IRQ_CONTROL);
Ville Syrjälä8e5fd592014-04-09 13:28:50 +03001982 POSTING_READ(GEN8_MASTER_IRQ);
Ville Syrjälä1ae3c342016-04-13 21:19:54 +03001983
Ville Syrjäläe30e2512016-04-13 21:19:58 +03001984 gen8_gt_irq_handler(dev_priv, gt_iir);
1985
Ville Syrjälä1ae3c342016-04-13 21:19:54 +03001986 if (hotplug_status)
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01001987 i9xx_hpd_irq_handler(dev_priv, hotplug_status);
Ville Syrjälä2ecb8ca2016-04-13 21:19:55 +03001988
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01001989 valleyview_pipestat_irq_handler(dev_priv, pipe_stats);
Chris Wilson579de732016-03-14 09:01:57 +00001990 } while (0);
Ville Syrjälä43f328d2014-04-09 20:40:52 +03001991
Imre Deak1f814da2015-12-16 02:52:19 +02001992 enable_rpm_wakeref_asserts(dev_priv);
1993
Ville Syrjälä43f328d2014-04-09 20:40:52 +03001994 return ret;
1995}
1996
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01001997static void ibx_hpd_irq_handler(struct drm_i915_private *dev_priv,
1998 u32 hotplug_trigger,
Ville Syrjälä40e56412015-08-27 23:56:10 +03001999 const u32 hpd[HPD_NUM_PINS])
2000{
Ville Syrjälä40e56412015-08-27 23:56:10 +03002001 u32 dig_hotplug_reg, pin_mask = 0, long_mask = 0;
2002
Jani Nikula6a39d7c2015-11-25 16:47:22 +02002003 /*
2004 * Somehow the PCH doesn't seem to really ack the interrupt to the CPU
2005 * unless we touch the hotplug register, even if hotplug_trigger is
2006 * zero. Not acking leads to "The master control interrupt lied (SDE)!"
2007 * errors.
2008 */
Ville Syrjälä40e56412015-08-27 23:56:10 +03002009 dig_hotplug_reg = I915_READ(PCH_PORT_HOTPLUG);
Jani Nikula6a39d7c2015-11-25 16:47:22 +02002010 if (!hotplug_trigger) {
2011 u32 mask = PORTA_HOTPLUG_STATUS_MASK |
2012 PORTD_HOTPLUG_STATUS_MASK |
2013 PORTC_HOTPLUG_STATUS_MASK |
2014 PORTB_HOTPLUG_STATUS_MASK;
2015 dig_hotplug_reg &= ~mask;
2016 }
2017
Ville Syrjälä40e56412015-08-27 23:56:10 +03002018 I915_WRITE(PCH_PORT_HOTPLUG, dig_hotplug_reg);
Jani Nikula6a39d7c2015-11-25 16:47:22 +02002019 if (!hotplug_trigger)
2020 return;
Ville Syrjälä40e56412015-08-27 23:56:10 +03002021
2022 intel_get_hpd_pins(&pin_mask, &long_mask, hotplug_trigger,
2023 dig_hotplug_reg, hpd,
2024 pch_port_hotplug_long_detect);
2025
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002026 intel_hpd_irq_handler(dev_priv, pin_mask, long_mask);
Ville Syrjälä40e56412015-08-27 23:56:10 +03002027}
2028
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002029static void ibx_irq_handler(struct drm_i915_private *dev_priv, u32 pch_iir)
Jesse Barnes776ad802011-01-04 15:09:39 -08002030{
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08002031 int pipe;
Egbert Eichb543fb02013-04-16 13:36:54 +02002032 u32 hotplug_trigger = pch_iir & SDE_HOTPLUG_MASK;
Jesse Barnes776ad802011-01-04 15:09:39 -08002033
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002034 ibx_hpd_irq_handler(dev_priv, hotplug_trigger, hpd_ibx);
Daniel Vetter91d131d2013-06-27 17:52:14 +02002035
Ville Syrjäläcfc33bf2013-04-17 17:48:48 +03002036 if (pch_iir & SDE_AUDIO_POWER_MASK) {
2037 int port = ffs((pch_iir & SDE_AUDIO_POWER_MASK) >>
2038 SDE_AUDIO_POWER_SHIFT);
Jesse Barnes776ad802011-01-04 15:09:39 -08002039 DRM_DEBUG_DRIVER("PCH audio power change on port %d\n",
Ville Syrjäläcfc33bf2013-04-17 17:48:48 +03002040 port_name(port));
2041 }
Jesse Barnes776ad802011-01-04 15:09:39 -08002042
Daniel Vetterce99c252012-12-01 13:53:47 +01002043 if (pch_iir & SDE_AUX_MASK)
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002044 dp_aux_irq_handler(dev_priv);
Daniel Vetterce99c252012-12-01 13:53:47 +01002045
Jesse Barnes776ad802011-01-04 15:09:39 -08002046 if (pch_iir & SDE_GMBUS)
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002047 gmbus_irq_handler(dev_priv);
Jesse Barnes776ad802011-01-04 15:09:39 -08002048
2049 if (pch_iir & SDE_AUDIO_HDCP_MASK)
2050 DRM_DEBUG_DRIVER("PCH HDCP audio interrupt\n");
2051
2052 if (pch_iir & SDE_AUDIO_TRANS_MASK)
2053 DRM_DEBUG_DRIVER("PCH transcoder audio interrupt\n");
2054
2055 if (pch_iir & SDE_POISON)
2056 DRM_ERROR("PCH poison interrupt\n");
2057
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08002058 if (pch_iir & SDE_FDI_MASK)
Damien Lespiau055e3932014-08-18 13:49:10 +01002059 for_each_pipe(dev_priv, pipe)
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08002060 DRM_DEBUG_DRIVER(" pipe %c FDI IIR: 0x%08x\n",
2061 pipe_name(pipe),
2062 I915_READ(FDI_RX_IIR(pipe)));
Jesse Barnes776ad802011-01-04 15:09:39 -08002063
2064 if (pch_iir & (SDE_TRANSB_CRC_DONE | SDE_TRANSA_CRC_DONE))
2065 DRM_DEBUG_DRIVER("PCH transcoder CRC done interrupt\n");
2066
2067 if (pch_iir & (SDE_TRANSB_CRC_ERR | SDE_TRANSA_CRC_ERR))
2068 DRM_DEBUG_DRIVER("PCH transcoder CRC error interrupt\n");
2069
Jesse Barnes776ad802011-01-04 15:09:39 -08002070 if (pch_iir & SDE_TRANSA_FIFO_UNDER)
Daniel Vetter1f7247c2014-09-30 10:56:48 +02002071 intel_pch_fifo_underrun_irq_handler(dev_priv, TRANSCODER_A);
Paulo Zanoni86642812013-04-12 17:57:57 -03002072
2073 if (pch_iir & SDE_TRANSB_FIFO_UNDER)
Daniel Vetter1f7247c2014-09-30 10:56:48 +02002074 intel_pch_fifo_underrun_irq_handler(dev_priv, TRANSCODER_B);
Paulo Zanoni86642812013-04-12 17:57:57 -03002075}
2076
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002077static void ivb_err_int_handler(struct drm_i915_private *dev_priv)
Paulo Zanoni86642812013-04-12 17:57:57 -03002078{
Paulo Zanoni86642812013-04-12 17:57:57 -03002079 u32 err_int = I915_READ(GEN7_ERR_INT);
Daniel Vetter5a69b892013-10-16 22:55:52 +02002080 enum pipe pipe;
Paulo Zanoni86642812013-04-12 17:57:57 -03002081
Paulo Zanonide032bf2013-04-12 17:57:58 -03002082 if (err_int & ERR_INT_POISON)
2083 DRM_ERROR("Poison interrupt\n");
2084
Damien Lespiau055e3932014-08-18 13:49:10 +01002085 for_each_pipe(dev_priv, pipe) {
Daniel Vetter1f7247c2014-09-30 10:56:48 +02002086 if (err_int & ERR_INT_FIFO_UNDERRUN(pipe))
2087 intel_cpu_fifo_underrun_irq_handler(dev_priv, pipe);
Paulo Zanoni86642812013-04-12 17:57:57 -03002088
Daniel Vetter5a69b892013-10-16 22:55:52 +02002089 if (err_int & ERR_INT_PIPE_CRC_DONE(pipe)) {
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002090 if (IS_IVYBRIDGE(dev_priv))
2091 ivb_pipe_crc_irq_handler(dev_priv, pipe);
Daniel Vetter5a69b892013-10-16 22:55:52 +02002092 else
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002093 hsw_pipe_crc_irq_handler(dev_priv, pipe);
Daniel Vetter5a69b892013-10-16 22:55:52 +02002094 }
2095 }
Shuang He8bf1e9f2013-10-15 18:55:27 +01002096
Paulo Zanoni86642812013-04-12 17:57:57 -03002097 I915_WRITE(GEN7_ERR_INT, err_int);
2098}
2099
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002100static void cpt_serr_int_handler(struct drm_i915_private *dev_priv)
Paulo Zanoni86642812013-04-12 17:57:57 -03002101{
Paulo Zanoni86642812013-04-12 17:57:57 -03002102 u32 serr_int = I915_READ(SERR_INT);
2103
Paulo Zanonide032bf2013-04-12 17:57:58 -03002104 if (serr_int & SERR_INT_POISON)
2105 DRM_ERROR("PCH poison interrupt\n");
2106
Paulo Zanoni86642812013-04-12 17:57:57 -03002107 if (serr_int & SERR_INT_TRANS_A_FIFO_UNDERRUN)
Daniel Vetter1f7247c2014-09-30 10:56:48 +02002108 intel_pch_fifo_underrun_irq_handler(dev_priv, TRANSCODER_A);
Paulo Zanoni86642812013-04-12 17:57:57 -03002109
2110 if (serr_int & SERR_INT_TRANS_B_FIFO_UNDERRUN)
Daniel Vetter1f7247c2014-09-30 10:56:48 +02002111 intel_pch_fifo_underrun_irq_handler(dev_priv, TRANSCODER_B);
Paulo Zanoni86642812013-04-12 17:57:57 -03002112
2113 if (serr_int & SERR_INT_TRANS_C_FIFO_UNDERRUN)
Daniel Vetter1f7247c2014-09-30 10:56:48 +02002114 intel_pch_fifo_underrun_irq_handler(dev_priv, TRANSCODER_C);
Paulo Zanoni86642812013-04-12 17:57:57 -03002115
2116 I915_WRITE(SERR_INT, serr_int);
Jesse Barnes776ad802011-01-04 15:09:39 -08002117}
2118
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002119static void cpt_irq_handler(struct drm_i915_private *dev_priv, u32 pch_iir)
Adam Jackson23e81d62012-06-06 15:45:44 -04002120{
Adam Jackson23e81d62012-06-06 15:45:44 -04002121 int pipe;
Ville Syrjälä6dbf30c2015-08-27 23:56:02 +03002122 u32 hotplug_trigger = pch_iir & SDE_HOTPLUG_MASK_CPT;
Adam Jackson23e81d62012-06-06 15:45:44 -04002123
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002124 ibx_hpd_irq_handler(dev_priv, hotplug_trigger, hpd_cpt);
Daniel Vetter91d131d2013-06-27 17:52:14 +02002125
Ville Syrjäläcfc33bf2013-04-17 17:48:48 +03002126 if (pch_iir & SDE_AUDIO_POWER_MASK_CPT) {
2127 int port = ffs((pch_iir & SDE_AUDIO_POWER_MASK_CPT) >>
2128 SDE_AUDIO_POWER_SHIFT_CPT);
2129 DRM_DEBUG_DRIVER("PCH audio power change on port %c\n",
2130 port_name(port));
2131 }
Adam Jackson23e81d62012-06-06 15:45:44 -04002132
2133 if (pch_iir & SDE_AUX_MASK_CPT)
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002134 dp_aux_irq_handler(dev_priv);
Adam Jackson23e81d62012-06-06 15:45:44 -04002135
2136 if (pch_iir & SDE_GMBUS_CPT)
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002137 gmbus_irq_handler(dev_priv);
Adam Jackson23e81d62012-06-06 15:45:44 -04002138
2139 if (pch_iir & SDE_AUDIO_CP_REQ_CPT)
2140 DRM_DEBUG_DRIVER("Audio CP request interrupt\n");
2141
2142 if (pch_iir & SDE_AUDIO_CP_CHG_CPT)
2143 DRM_DEBUG_DRIVER("Audio CP change interrupt\n");
2144
2145 if (pch_iir & SDE_FDI_MASK_CPT)
Damien Lespiau055e3932014-08-18 13:49:10 +01002146 for_each_pipe(dev_priv, pipe)
Adam Jackson23e81d62012-06-06 15:45:44 -04002147 DRM_DEBUG_DRIVER(" pipe %c FDI IIR: 0x%08x\n",
2148 pipe_name(pipe),
2149 I915_READ(FDI_RX_IIR(pipe)));
Paulo Zanoni86642812013-04-12 17:57:57 -03002150
2151 if (pch_iir & SDE_ERROR_CPT)
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002152 cpt_serr_int_handler(dev_priv);
Adam Jackson23e81d62012-06-06 15:45:44 -04002153}
2154
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002155static void spt_irq_handler(struct drm_i915_private *dev_priv, u32 pch_iir)
Ville Syrjälä6dbf30c2015-08-27 23:56:02 +03002156{
Ville Syrjälä6dbf30c2015-08-27 23:56:02 +03002157 u32 hotplug_trigger = pch_iir & SDE_HOTPLUG_MASK_SPT &
2158 ~SDE_PORTE_HOTPLUG_SPT;
2159 u32 hotplug2_trigger = pch_iir & SDE_PORTE_HOTPLUG_SPT;
2160 u32 pin_mask = 0, long_mask = 0;
2161
2162 if (hotplug_trigger) {
2163 u32 dig_hotplug_reg;
2164
2165 dig_hotplug_reg = I915_READ(PCH_PORT_HOTPLUG);
2166 I915_WRITE(PCH_PORT_HOTPLUG, dig_hotplug_reg);
2167
2168 intel_get_hpd_pins(&pin_mask, &long_mask, hotplug_trigger,
2169 dig_hotplug_reg, hpd_spt,
Ville Syrjälä74c0b392015-08-27 23:56:07 +03002170 spt_port_hotplug_long_detect);
Ville Syrjälä6dbf30c2015-08-27 23:56:02 +03002171 }
2172
2173 if (hotplug2_trigger) {
2174 u32 dig_hotplug_reg;
2175
2176 dig_hotplug_reg = I915_READ(PCH_PORT_HOTPLUG2);
2177 I915_WRITE(PCH_PORT_HOTPLUG2, dig_hotplug_reg);
2178
2179 intel_get_hpd_pins(&pin_mask, &long_mask, hotplug2_trigger,
2180 dig_hotplug_reg, hpd_spt,
2181 spt_port_hotplug2_long_detect);
2182 }
2183
2184 if (pin_mask)
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002185 intel_hpd_irq_handler(dev_priv, pin_mask, long_mask);
Ville Syrjälä6dbf30c2015-08-27 23:56:02 +03002186
2187 if (pch_iir & SDE_GMBUS_CPT)
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002188 gmbus_irq_handler(dev_priv);
Ville Syrjälä6dbf30c2015-08-27 23:56:02 +03002189}
2190
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002191static void ilk_hpd_irq_handler(struct drm_i915_private *dev_priv,
2192 u32 hotplug_trigger,
Ville Syrjälä40e56412015-08-27 23:56:10 +03002193 const u32 hpd[HPD_NUM_PINS])
2194{
Ville Syrjälä40e56412015-08-27 23:56:10 +03002195 u32 dig_hotplug_reg, pin_mask = 0, long_mask = 0;
2196
2197 dig_hotplug_reg = I915_READ(DIGITAL_PORT_HOTPLUG_CNTRL);
2198 I915_WRITE(DIGITAL_PORT_HOTPLUG_CNTRL, dig_hotplug_reg);
2199
2200 intel_get_hpd_pins(&pin_mask, &long_mask, hotplug_trigger,
2201 dig_hotplug_reg, hpd,
2202 ilk_port_hotplug_long_detect);
2203
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002204 intel_hpd_irq_handler(dev_priv, pin_mask, long_mask);
Ville Syrjälä40e56412015-08-27 23:56:10 +03002205}
2206
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002207static void ilk_display_irq_handler(struct drm_i915_private *dev_priv,
2208 u32 de_iir)
Paulo Zanonic008bc62013-07-12 16:35:10 -03002209{
Daniel Vetter40da17c22013-10-21 18:04:36 +02002210 enum pipe pipe;
Ville Syrjäläe4ce95a2015-08-27 23:56:03 +03002211 u32 hotplug_trigger = de_iir & DE_DP_A_HOTPLUG;
2212
Ville Syrjälä40e56412015-08-27 23:56:10 +03002213 if (hotplug_trigger)
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002214 ilk_hpd_irq_handler(dev_priv, hotplug_trigger, hpd_ilk);
Paulo Zanonic008bc62013-07-12 16:35:10 -03002215
2216 if (de_iir & DE_AUX_CHANNEL_A)
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002217 dp_aux_irq_handler(dev_priv);
Paulo Zanonic008bc62013-07-12 16:35:10 -03002218
2219 if (de_iir & DE_GSE)
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002220 intel_opregion_asle_intr(dev_priv);
Paulo Zanonic008bc62013-07-12 16:35:10 -03002221
Paulo Zanonic008bc62013-07-12 16:35:10 -03002222 if (de_iir & DE_POISON)
2223 DRM_ERROR("Poison interrupt\n");
2224
Damien Lespiau055e3932014-08-18 13:49:10 +01002225 for_each_pipe(dev_priv, pipe) {
Daniel Vetter5a21b662016-05-24 17:13:53 +02002226 if (de_iir & DE_PIPE_VBLANK(pipe) &&
2227 intel_pipe_handle_vblank(dev_priv, pipe))
2228 intel_check_page_flip(dev_priv, pipe);
Paulo Zanonic008bc62013-07-12 16:35:10 -03002229
Daniel Vetter40da17c22013-10-21 18:04:36 +02002230 if (de_iir & DE_PIPE_FIFO_UNDERRUN(pipe))
Daniel Vetter1f7247c2014-09-30 10:56:48 +02002231 intel_cpu_fifo_underrun_irq_handler(dev_priv, pipe);
Paulo Zanonic008bc62013-07-12 16:35:10 -03002232
Daniel Vetter40da17c22013-10-21 18:04:36 +02002233 if (de_iir & DE_PIPE_CRC_DONE(pipe))
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002234 i9xx_pipe_crc_irq_handler(dev_priv, pipe);
Daniel Vetter5b3a8562013-10-16 22:55:48 +02002235
Daniel Vetter40da17c22013-10-21 18:04:36 +02002236 /* plane/pipes map 1:1 on ilk+ */
Maarten Lankhorst5251f042016-05-17 15:07:47 +02002237 if (de_iir & DE_PLANE_FLIP_DONE(pipe))
Maarten Lankhorst51cbaf02016-05-17 15:07:49 +02002238 intel_finish_page_flip_cs(dev_priv, pipe);
Paulo Zanonic008bc62013-07-12 16:35:10 -03002239 }
2240
2241 /* check event from PCH */
2242 if (de_iir & DE_PCH_EVENT) {
2243 u32 pch_iir = I915_READ(SDEIIR);
2244
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002245 if (HAS_PCH_CPT(dev_priv))
2246 cpt_irq_handler(dev_priv, pch_iir);
Paulo Zanonic008bc62013-07-12 16:35:10 -03002247 else
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002248 ibx_irq_handler(dev_priv, pch_iir);
Paulo Zanonic008bc62013-07-12 16:35:10 -03002249
2250 /* should clear PCH hotplug event before clear CPU irq */
2251 I915_WRITE(SDEIIR, pch_iir);
2252 }
2253
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002254 if (IS_GEN5(dev_priv) && de_iir & DE_PCU_EVENT)
2255 ironlake_rps_change_irq_handler(dev_priv);
Paulo Zanonic008bc62013-07-12 16:35:10 -03002256}
2257
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002258static void ivb_display_irq_handler(struct drm_i915_private *dev_priv,
2259 u32 de_iir)
Paulo Zanoni9719fb92013-07-12 16:35:11 -03002260{
Damien Lespiau07d27e22014-03-03 17:31:46 +00002261 enum pipe pipe;
Ville Syrjälä23bb4cb2015-08-27 23:56:04 +03002262 u32 hotplug_trigger = de_iir & DE_DP_A_HOTPLUG_IVB;
2263
Ville Syrjälä40e56412015-08-27 23:56:10 +03002264 if (hotplug_trigger)
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002265 ilk_hpd_irq_handler(dev_priv, hotplug_trigger, hpd_ivb);
Paulo Zanoni9719fb92013-07-12 16:35:11 -03002266
2267 if (de_iir & DE_ERR_INT_IVB)
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002268 ivb_err_int_handler(dev_priv);
Paulo Zanoni9719fb92013-07-12 16:35:11 -03002269
2270 if (de_iir & DE_AUX_CHANNEL_A_IVB)
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002271 dp_aux_irq_handler(dev_priv);
Paulo Zanoni9719fb92013-07-12 16:35:11 -03002272
2273 if (de_iir & DE_GSE_IVB)
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002274 intel_opregion_asle_intr(dev_priv);
Paulo Zanoni9719fb92013-07-12 16:35:11 -03002275
Damien Lespiau055e3932014-08-18 13:49:10 +01002276 for_each_pipe(dev_priv, pipe) {
Daniel Vetter5a21b662016-05-24 17:13:53 +02002277 if (de_iir & (DE_PIPE_VBLANK_IVB(pipe)) &&
2278 intel_pipe_handle_vblank(dev_priv, pipe))
2279 intel_check_page_flip(dev_priv, pipe);
Daniel Vetter40da17c22013-10-21 18:04:36 +02002280
2281 /* plane/pipes map 1:1 on ilk+ */
Maarten Lankhorst5251f042016-05-17 15:07:47 +02002282 if (de_iir & DE_PLANE_FLIP_DONE_IVB(pipe))
Maarten Lankhorst51cbaf02016-05-17 15:07:49 +02002283 intel_finish_page_flip_cs(dev_priv, pipe);
Paulo Zanoni9719fb92013-07-12 16:35:11 -03002284 }
2285
2286 /* check event from PCH */
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002287 if (!HAS_PCH_NOP(dev_priv) && (de_iir & DE_PCH_EVENT_IVB)) {
Paulo Zanoni9719fb92013-07-12 16:35:11 -03002288 u32 pch_iir = I915_READ(SDEIIR);
2289
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002290 cpt_irq_handler(dev_priv, pch_iir);
Paulo Zanoni9719fb92013-07-12 16:35:11 -03002291
2292 /* clear PCH hotplug event before clear CPU irq */
2293 I915_WRITE(SDEIIR, pch_iir);
2294 }
2295}
2296
Oscar Mateo72c90f62014-06-16 16:10:57 +01002297/*
2298 * To handle irqs with the minimum potential races with fresh interrupts, we:
2299 * 1 - Disable Master Interrupt Control.
2300 * 2 - Find the source(s) of the interrupt.
2301 * 3 - Clear the Interrupt Identity bits (IIR).
2302 * 4 - Process the interrupt(s) that had bits set in the IIRs.
2303 * 5 - Re-enable Master Interrupt Control.
2304 */
Paulo Zanonif1af8fc2013-07-12 19:56:30 -03002305static irqreturn_t ironlake_irq_handler(int irq, void *arg)
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002306{
Daniel Vetter45a83f82014-05-12 19:17:55 +02002307 struct drm_device *dev = arg;
Chris Wilsonfac5e232016-07-04 11:34:36 +01002308 struct drm_i915_private *dev_priv = to_i915(dev);
Paulo Zanonif1af8fc2013-07-12 19:56:30 -03002309 u32 de_iir, gt_iir, de_ier, sde_ier = 0;
Chris Wilson0e434062012-05-09 21:45:44 +01002310 irqreturn_t ret = IRQ_NONE;
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002311
Imre Deak2dd2a882015-02-24 11:14:30 +02002312 if (!intel_irqs_enabled(dev_priv))
2313 return IRQ_NONE;
2314
Imre Deak1f814da2015-12-16 02:52:19 +02002315 /* IRQs are synced during runtime_suspend, we don't require a wakeref */
2316 disable_rpm_wakeref_asserts(dev_priv);
2317
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002318 /* disable master interrupt before clearing iir */
2319 de_ier = I915_READ(DEIER);
2320 I915_WRITE(DEIER, de_ier & ~DE_MASTER_IRQ_CONTROL);
Paulo Zanoni23a78512013-07-12 16:35:14 -03002321 POSTING_READ(DEIER);
Chris Wilson0e434062012-05-09 21:45:44 +01002322
Paulo Zanoni44498ae2013-02-22 17:05:28 -03002323 /* Disable south interrupts. We'll only write to SDEIIR once, so further
2324 * interrupts will will be stored on its back queue, and then we'll be
2325 * able to process them after we restore SDEIER (as soon as we restore
2326 * it, we'll get an interrupt if SDEIIR still has something to process
2327 * due to its back queue). */
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002328 if (!HAS_PCH_NOP(dev_priv)) {
Ben Widawskyab5c6082013-04-05 13:12:41 -07002329 sde_ier = I915_READ(SDEIER);
2330 I915_WRITE(SDEIER, 0);
2331 POSTING_READ(SDEIER);
2332 }
Paulo Zanoni44498ae2013-02-22 17:05:28 -03002333
Oscar Mateo72c90f62014-06-16 16:10:57 +01002334 /* Find, clear, then process each source of interrupt */
2335
Chris Wilson0e434062012-05-09 21:45:44 +01002336 gt_iir = I915_READ(GTIIR);
2337 if (gt_iir) {
Oscar Mateo72c90f62014-06-16 16:10:57 +01002338 I915_WRITE(GTIIR, gt_iir);
2339 ret = IRQ_HANDLED;
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002340 if (INTEL_GEN(dev_priv) >= 6)
Ville Syrjälä261e40b2016-04-13 21:19:57 +03002341 snb_gt_irq_handler(dev_priv, gt_iir);
Paulo Zanonid8fc8a42013-07-19 18:57:55 -03002342 else
Ville Syrjälä261e40b2016-04-13 21:19:57 +03002343 ilk_gt_irq_handler(dev_priv, gt_iir);
Chris Wilson0e434062012-05-09 21:45:44 +01002344 }
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002345
2346 de_iir = I915_READ(DEIIR);
Chris Wilson0e434062012-05-09 21:45:44 +01002347 if (de_iir) {
Oscar Mateo72c90f62014-06-16 16:10:57 +01002348 I915_WRITE(DEIIR, de_iir);
2349 ret = IRQ_HANDLED;
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002350 if (INTEL_GEN(dev_priv) >= 7)
2351 ivb_display_irq_handler(dev_priv, de_iir);
Paulo Zanonif1af8fc2013-07-12 19:56:30 -03002352 else
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002353 ilk_display_irq_handler(dev_priv, de_iir);
Chris Wilson0e434062012-05-09 21:45:44 +01002354 }
2355
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002356 if (INTEL_GEN(dev_priv) >= 6) {
Paulo Zanonif1af8fc2013-07-12 19:56:30 -03002357 u32 pm_iir = I915_READ(GEN6_PMIIR);
2358 if (pm_iir) {
Paulo Zanonif1af8fc2013-07-12 19:56:30 -03002359 I915_WRITE(GEN6_PMIIR, pm_iir);
2360 ret = IRQ_HANDLED;
Oscar Mateo72c90f62014-06-16 16:10:57 +01002361 gen6_rps_irq_handler(dev_priv, pm_iir);
Paulo Zanonif1af8fc2013-07-12 19:56:30 -03002362 }
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002363 }
2364
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002365 I915_WRITE(DEIER, de_ier);
2366 POSTING_READ(DEIER);
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002367 if (!HAS_PCH_NOP(dev_priv)) {
Ben Widawskyab5c6082013-04-05 13:12:41 -07002368 I915_WRITE(SDEIER, sde_ier);
2369 POSTING_READ(SDEIER);
2370 }
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002371
Imre Deak1f814da2015-12-16 02:52:19 +02002372 /* IRQs are synced during runtime_suspend, we don't require a wakeref */
2373 enable_rpm_wakeref_asserts(dev_priv);
2374
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002375 return ret;
2376}
2377
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002378static void bxt_hpd_irq_handler(struct drm_i915_private *dev_priv,
2379 u32 hotplug_trigger,
Ville Syrjälä40e56412015-08-27 23:56:10 +03002380 const u32 hpd[HPD_NUM_PINS])
Shashank Sharmad04a4922014-08-22 17:40:41 +05302381{
Ville Syrjäläcebd87a2015-08-27 23:56:09 +03002382 u32 dig_hotplug_reg, pin_mask = 0, long_mask = 0;
Shashank Sharmad04a4922014-08-22 17:40:41 +05302383
Ville Syrjäläa52bb152015-08-27 23:56:11 +03002384 dig_hotplug_reg = I915_READ(PCH_PORT_HOTPLUG);
2385 I915_WRITE(PCH_PORT_HOTPLUG, dig_hotplug_reg);
Shashank Sharmad04a4922014-08-22 17:40:41 +05302386
Ville Syrjäläcebd87a2015-08-27 23:56:09 +03002387 intel_get_hpd_pins(&pin_mask, &long_mask, hotplug_trigger,
Ville Syrjälä40e56412015-08-27 23:56:10 +03002388 dig_hotplug_reg, hpd,
Ville Syrjäläcebd87a2015-08-27 23:56:09 +03002389 bxt_port_hotplug_long_detect);
Ville Syrjälä40e56412015-08-27 23:56:10 +03002390
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002391 intel_hpd_irq_handler(dev_priv, pin_mask, long_mask);
Shashank Sharmad04a4922014-08-22 17:40:41 +05302392}
2393
Tvrtko Ursulinf11a0f42016-01-12 16:04:07 +00002394static irqreturn_t
2395gen8_de_irq_handler(struct drm_i915_private *dev_priv, u32 master_ctl)
Ben Widawskyabd58f02013-11-02 21:07:09 -07002396{
Ben Widawskyabd58f02013-11-02 21:07:09 -07002397 irqreturn_t ret = IRQ_NONE;
Tvrtko Ursulinf11a0f42016-01-12 16:04:07 +00002398 u32 iir;
Daniel Vetterc42664c2013-11-07 11:05:40 +01002399 enum pipe pipe;
Jesse Barnes88e04702014-11-13 17:51:48 +00002400
Ben Widawskyabd58f02013-11-02 21:07:09 -07002401 if (master_ctl & GEN8_DE_MISC_IRQ) {
Tvrtko Ursuline32192e2016-01-12 16:04:06 +00002402 iir = I915_READ(GEN8_DE_MISC_IIR);
2403 if (iir) {
2404 I915_WRITE(GEN8_DE_MISC_IIR, iir);
Ben Widawskyabd58f02013-11-02 21:07:09 -07002405 ret = IRQ_HANDLED;
Tvrtko Ursuline32192e2016-01-12 16:04:06 +00002406 if (iir & GEN8_DE_MISC_GSE)
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002407 intel_opregion_asle_intr(dev_priv);
Oscar Mateo38cc46d2014-06-16 16:10:59 +01002408 else
2409 DRM_ERROR("Unexpected DE Misc interrupt\n");
Ben Widawskyabd58f02013-11-02 21:07:09 -07002410 }
Oscar Mateo38cc46d2014-06-16 16:10:59 +01002411 else
2412 DRM_ERROR("The master control interrupt lied (DE MISC)!\n");
Ben Widawskyabd58f02013-11-02 21:07:09 -07002413 }
2414
Daniel Vetter6d766f02013-11-07 14:49:55 +01002415 if (master_ctl & GEN8_DE_PORT_IRQ) {
Tvrtko Ursuline32192e2016-01-12 16:04:06 +00002416 iir = I915_READ(GEN8_DE_PORT_IIR);
2417 if (iir) {
2418 u32 tmp_mask;
Shashank Sharmad04a4922014-08-22 17:40:41 +05302419 bool found = false;
Ville Syrjäläcebd87a2015-08-27 23:56:09 +03002420
Tvrtko Ursuline32192e2016-01-12 16:04:06 +00002421 I915_WRITE(GEN8_DE_PORT_IIR, iir);
Daniel Vetter6d766f02013-11-07 14:49:55 +01002422 ret = IRQ_HANDLED;
Jesse Barnes88e04702014-11-13 17:51:48 +00002423
Tvrtko Ursuline32192e2016-01-12 16:04:06 +00002424 tmp_mask = GEN8_AUX_CHANNEL_A;
2425 if (INTEL_INFO(dev_priv)->gen >= 9)
2426 tmp_mask |= GEN9_AUX_CHANNEL_B |
2427 GEN9_AUX_CHANNEL_C |
2428 GEN9_AUX_CHANNEL_D;
2429
2430 if (iir & tmp_mask) {
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002431 dp_aux_irq_handler(dev_priv);
Shashank Sharmad04a4922014-08-22 17:40:41 +05302432 found = true;
2433 }
2434
Tvrtko Ursuline32192e2016-01-12 16:04:06 +00002435 if (IS_BROXTON(dev_priv)) {
2436 tmp_mask = iir & BXT_DE_PORT_HOTPLUG_MASK;
2437 if (tmp_mask) {
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002438 bxt_hpd_irq_handler(dev_priv, tmp_mask,
2439 hpd_bxt);
Tvrtko Ursuline32192e2016-01-12 16:04:06 +00002440 found = true;
2441 }
2442 } else if (IS_BROADWELL(dev_priv)) {
2443 tmp_mask = iir & GEN8_PORT_DP_A_HOTPLUG;
2444 if (tmp_mask) {
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002445 ilk_hpd_irq_handler(dev_priv,
2446 tmp_mask, hpd_bdw);
Tvrtko Ursuline32192e2016-01-12 16:04:06 +00002447 found = true;
2448 }
Shashank Sharmad04a4922014-08-22 17:40:41 +05302449 }
2450
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002451 if (IS_BROXTON(dev_priv) && (iir & BXT_DE_PORT_GMBUS)) {
2452 gmbus_irq_handler(dev_priv);
Shashank Sharma9e637432014-08-22 17:40:43 +05302453 found = true;
2454 }
2455
Shashank Sharmad04a4922014-08-22 17:40:41 +05302456 if (!found)
Oscar Mateo38cc46d2014-06-16 16:10:59 +01002457 DRM_ERROR("Unexpected DE Port interrupt\n");
Daniel Vetter6d766f02013-11-07 14:49:55 +01002458 }
Oscar Mateo38cc46d2014-06-16 16:10:59 +01002459 else
2460 DRM_ERROR("The master control interrupt lied (DE PORT)!\n");
Daniel Vetter6d766f02013-11-07 14:49:55 +01002461 }
2462
Damien Lespiau055e3932014-08-18 13:49:10 +01002463 for_each_pipe(dev_priv, pipe) {
Tvrtko Ursuline32192e2016-01-12 16:04:06 +00002464 u32 flip_done, fault_errors;
Ben Widawskyabd58f02013-11-02 21:07:09 -07002465
Daniel Vetterc42664c2013-11-07 11:05:40 +01002466 if (!(master_ctl & GEN8_DE_PIPE_IRQ(pipe)))
2467 continue;
Ben Widawskyabd58f02013-11-02 21:07:09 -07002468
Tvrtko Ursuline32192e2016-01-12 16:04:06 +00002469 iir = I915_READ(GEN8_DE_PIPE_IIR(pipe));
2470 if (!iir) {
Ben Widawskyabd58f02013-11-02 21:07:09 -07002471 DRM_ERROR("The master control interrupt lied (DE PIPE)!\n");
Tvrtko Ursuline32192e2016-01-12 16:04:06 +00002472 continue;
2473 }
2474
2475 ret = IRQ_HANDLED;
2476 I915_WRITE(GEN8_DE_PIPE_IIR(pipe), iir);
2477
Daniel Vetter5a21b662016-05-24 17:13:53 +02002478 if (iir & GEN8_PIPE_VBLANK &&
2479 intel_pipe_handle_vblank(dev_priv, pipe))
2480 intel_check_page_flip(dev_priv, pipe);
Tvrtko Ursuline32192e2016-01-12 16:04:06 +00002481
2482 flip_done = iir;
2483 if (INTEL_INFO(dev_priv)->gen >= 9)
2484 flip_done &= GEN9_PIPE_PLANE1_FLIP_DONE;
2485 else
2486 flip_done &= GEN8_PIPE_PRIMARY_FLIP_DONE;
2487
Maarten Lankhorst5251f042016-05-17 15:07:47 +02002488 if (flip_done)
Maarten Lankhorst51cbaf02016-05-17 15:07:49 +02002489 intel_finish_page_flip_cs(dev_priv, pipe);
Tvrtko Ursuline32192e2016-01-12 16:04:06 +00002490
2491 if (iir & GEN8_PIPE_CDCLK_CRC_DONE)
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002492 hsw_pipe_crc_irq_handler(dev_priv, pipe);
Tvrtko Ursuline32192e2016-01-12 16:04:06 +00002493
2494 if (iir & GEN8_PIPE_FIFO_UNDERRUN)
2495 intel_cpu_fifo_underrun_irq_handler(dev_priv, pipe);
2496
2497 fault_errors = iir;
2498 if (INTEL_INFO(dev_priv)->gen >= 9)
2499 fault_errors &= GEN9_DE_PIPE_IRQ_FAULT_ERRORS;
2500 else
2501 fault_errors &= GEN8_DE_PIPE_IRQ_FAULT_ERRORS;
2502
2503 if (fault_errors)
Tvrtko Ursulin1353ec32016-10-27 13:48:32 +01002504 DRM_ERROR("Fault errors on pipe %c: 0x%08x\n",
Tvrtko Ursuline32192e2016-01-12 16:04:06 +00002505 pipe_name(pipe),
2506 fault_errors);
Ben Widawskyabd58f02013-11-02 21:07:09 -07002507 }
2508
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002509 if (HAS_PCH_SPLIT(dev_priv) && !HAS_PCH_NOP(dev_priv) &&
Shashank Sharma266ea3d2014-08-22 17:40:42 +05302510 master_ctl & GEN8_DE_PCH_IRQ) {
Daniel Vetter92d03a82013-11-07 11:05:43 +01002511 /*
2512 * FIXME(BDW): Assume for now that the new interrupt handling
2513 * scheme also closed the SDE interrupt handling race we've seen
2514 * on older pch-split platforms. But this needs testing.
2515 */
Tvrtko Ursuline32192e2016-01-12 16:04:06 +00002516 iir = I915_READ(SDEIIR);
2517 if (iir) {
2518 I915_WRITE(SDEIIR, iir);
Daniel Vetter92d03a82013-11-07 11:05:43 +01002519 ret = IRQ_HANDLED;
Ville Syrjälä6dbf30c2015-08-27 23:56:02 +03002520
Rodrigo Vivi22dea0b2016-07-01 17:07:12 -07002521 if (HAS_PCH_SPT(dev_priv) || HAS_PCH_KBP(dev_priv))
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002522 spt_irq_handler(dev_priv, iir);
Ville Syrjälä6dbf30c2015-08-27 23:56:02 +03002523 else
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002524 cpt_irq_handler(dev_priv, iir);
Jani Nikula2dfb0b82016-01-07 10:29:10 +02002525 } else {
2526 /*
2527 * Like on previous PCH there seems to be something
2528 * fishy going on with forwarding PCH interrupts.
2529 */
2530 DRM_DEBUG_DRIVER("The master control interrupt lied (SDE)!\n");
2531 }
Daniel Vetter92d03a82013-11-07 11:05:43 +01002532 }
2533
Tvrtko Ursulinf11a0f42016-01-12 16:04:07 +00002534 return ret;
2535}
2536
2537static irqreturn_t gen8_irq_handler(int irq, void *arg)
2538{
2539 struct drm_device *dev = arg;
Chris Wilsonfac5e232016-07-04 11:34:36 +01002540 struct drm_i915_private *dev_priv = to_i915(dev);
Tvrtko Ursulinf11a0f42016-01-12 16:04:07 +00002541 u32 master_ctl;
Ville Syrjäläe30e2512016-04-13 21:19:58 +03002542 u32 gt_iir[4] = {};
Tvrtko Ursulinf11a0f42016-01-12 16:04:07 +00002543 irqreturn_t ret;
2544
2545 if (!intel_irqs_enabled(dev_priv))
2546 return IRQ_NONE;
2547
2548 master_ctl = I915_READ_FW(GEN8_MASTER_IRQ);
2549 master_ctl &= ~GEN8_MASTER_IRQ_CONTROL;
2550 if (!master_ctl)
2551 return IRQ_NONE;
2552
2553 I915_WRITE_FW(GEN8_MASTER_IRQ, 0);
2554
2555 /* IRQs are synced during runtime_suspend, we don't require a wakeref */
2556 disable_rpm_wakeref_asserts(dev_priv);
2557
2558 /* Find, clear, then process each source of interrupt */
Ville Syrjäläe30e2512016-04-13 21:19:58 +03002559 ret = gen8_gt_irq_ack(dev_priv, master_ctl, gt_iir);
2560 gen8_gt_irq_handler(dev_priv, gt_iir);
Tvrtko Ursulinf11a0f42016-01-12 16:04:07 +00002561 ret |= gen8_de_irq_handler(dev_priv, master_ctl);
2562
Chris Wilsoncb0d2052015-04-07 16:21:04 +01002563 I915_WRITE_FW(GEN8_MASTER_IRQ, GEN8_MASTER_IRQ_CONTROL);
2564 POSTING_READ_FW(GEN8_MASTER_IRQ);
Ben Widawskyabd58f02013-11-02 21:07:09 -07002565
Imre Deak1f814da2015-12-16 02:52:19 +02002566 enable_rpm_wakeref_asserts(dev_priv);
2567
Ben Widawskyabd58f02013-11-02 21:07:09 -07002568 return ret;
2569}
2570
Chris Wilson1f15b762016-07-01 17:23:14 +01002571static void i915_error_wake_up(struct drm_i915_private *dev_priv)
Daniel Vetter17e1df02013-09-08 21:57:13 +02002572{
Daniel Vetter17e1df02013-09-08 21:57:13 +02002573 /*
2574 * Notify all waiters for GPU completion events that reset state has
2575 * been changed, and that they need to restart their wait after
2576 * checking for potential errors (and bail out to drop locks if there is
2577 * a gpu reset pending so that i915_error_work_func can acquire them).
2578 */
2579
2580 /* Wake up __wait_seqno, potentially holding dev->struct_mutex. */
Chris Wilson1f15b762016-07-01 17:23:14 +01002581 wake_up_all(&dev_priv->gpu_error.wait_queue);
Daniel Vetter17e1df02013-09-08 21:57:13 +02002582
2583 /* Wake up intel_crtc_wait_for_pending_flips, holding crtc->mutex. */
2584 wake_up_all(&dev_priv->pending_flip_queue);
Daniel Vetter17e1df02013-09-08 21:57:13 +02002585}
2586
Jesse Barnes8a905232009-07-11 16:48:03 -04002587/**
Mika Kuoppalab8d24a02015-01-28 17:03:14 +02002588 * i915_reset_and_wakeup - do process context error handling work
Tvrtko Ursulin14bb2c12016-06-03 14:02:17 +01002589 * @dev_priv: i915 device private
Jesse Barnes8a905232009-07-11 16:48:03 -04002590 *
2591 * Fire an error uevent so userspace can see that a hang or error
2592 * was detected.
2593 */
Chris Wilsonc0336662016-05-06 15:40:21 +01002594static void i915_reset_and_wakeup(struct drm_i915_private *dev_priv)
Jesse Barnes8a905232009-07-11 16:48:03 -04002595{
Chris Wilson91c8a322016-07-05 10:40:23 +01002596 struct kobject *kobj = &dev_priv->drm.primary->kdev->kobj;
Ben Widawskycce723e2013-07-19 09:16:42 -07002597 char *error_event[] = { I915_ERROR_UEVENT "=1", NULL };
2598 char *reset_event[] = { I915_RESET_UEVENT "=1", NULL };
2599 char *reset_done_event[] = { I915_ERROR_UEVENT "=0", NULL };
Jesse Barnes8a905232009-07-11 16:48:03 -04002600
Chris Wilsonc0336662016-05-06 15:40:21 +01002601 kobject_uevent_env(kobj, KOBJ_CHANGE, error_event);
Jesse Barnes8a905232009-07-11 16:48:03 -04002602
Chris Wilson8af29b02016-09-09 14:11:47 +01002603 DRM_DEBUG_DRIVER("resetting chip\n");
2604 kobject_uevent_env(kobj, KOBJ_CHANGE, reset_event);
2605
Daniel Vetter7db0ba22012-12-06 16:23:37 +01002606 /*
Chris Wilson8af29b02016-09-09 14:11:47 +01002607 * In most cases it's guaranteed that we get here with an RPM
2608 * reference held, for example because there is a pending GPU
2609 * request that won't finish until the reset is done. This
2610 * isn't the case at least when we get here by doing a
2611 * simulated reset via debugs, so get an RPM reference.
Daniel Vetter7db0ba22012-12-06 16:23:37 +01002612 */
Chris Wilson8af29b02016-09-09 14:11:47 +01002613 intel_runtime_pm_get(dev_priv);
Chris Wilson8af29b02016-09-09 14:11:47 +01002614 intel_prepare_reset(dev_priv);
Ville Syrjälä75147472014-11-24 18:28:11 +02002615
Chris Wilson780f2622016-09-09 14:11:52 +01002616 do {
2617 /*
2618 * All state reset _must_ be completed before we update the
2619 * reset counter, for otherwise waiters might miss the reset
2620 * pending state and not properly drop locks, resulting in
2621 * deadlocks with the reset work.
2622 */
2623 if (mutex_trylock(&dev_priv->drm.struct_mutex)) {
2624 i915_reset(dev_priv);
2625 mutex_unlock(&dev_priv->drm.struct_mutex);
2626 }
2627
2628 /* We need to wait for anyone holding the lock to wakeup */
2629 } while (wait_on_bit_timeout(&dev_priv->gpu_error.flags,
2630 I915_RESET_IN_PROGRESS,
2631 TASK_UNINTERRUPTIBLE,
2632 HZ));
Ville Syrjälä75147472014-11-24 18:28:11 +02002633
Chris Wilson8af29b02016-09-09 14:11:47 +01002634 intel_finish_reset(dev_priv);
Chris Wilson8af29b02016-09-09 14:11:47 +01002635 intel_runtime_pm_put(dev_priv);
Daniel Vetter17e1df02013-09-08 21:57:13 +02002636
Chris Wilson780f2622016-09-09 14:11:52 +01002637 if (!test_bit(I915_WEDGED, &dev_priv->gpu_error.flags))
Chris Wilson8af29b02016-09-09 14:11:47 +01002638 kobject_uevent_env(kobj,
2639 KOBJ_CHANGE, reset_done_event);
Imre Deakf454c692014-04-23 01:09:04 +03002640
Chris Wilson8af29b02016-09-09 14:11:47 +01002641 /*
2642 * Note: The wake_up also serves as a memory barrier so that
2643 * waiters see the updated value of the dev_priv->gpu_error.
2644 */
2645 wake_up_all(&dev_priv->gpu_error.reset_queue);
Jesse Barnes8a905232009-07-11 16:48:03 -04002646}
2647
Ben Widawskyd6369512016-09-20 16:54:32 +03002648static inline void
2649i915_err_print_instdone(struct drm_i915_private *dev_priv,
2650 struct intel_instdone *instdone)
2651{
Ben Widawskyf9e61372016-09-20 16:54:33 +03002652 int slice;
2653 int subslice;
2654
Ben Widawskyd6369512016-09-20 16:54:32 +03002655 pr_err(" INSTDONE: 0x%08x\n", instdone->instdone);
2656
2657 if (INTEL_GEN(dev_priv) <= 3)
2658 return;
2659
2660 pr_err(" SC_INSTDONE: 0x%08x\n", instdone->slice_common);
2661
2662 if (INTEL_GEN(dev_priv) <= 6)
2663 return;
2664
Ben Widawskyf9e61372016-09-20 16:54:33 +03002665 for_each_instdone_slice_subslice(dev_priv, slice, subslice)
2666 pr_err(" SAMPLER_INSTDONE[%d][%d]: 0x%08x\n",
2667 slice, subslice, instdone->sampler[slice][subslice]);
2668
2669 for_each_instdone_slice_subslice(dev_priv, slice, subslice)
2670 pr_err(" ROW_INSTDONE[%d][%d]: 0x%08x\n",
2671 slice, subslice, instdone->row[slice][subslice]);
Ben Widawskyd6369512016-09-20 16:54:32 +03002672}
2673
Chris Wilsoneaa14c22016-10-19 13:52:03 +01002674static void i915_clear_error_registers(struct drm_i915_private *dev_priv)
Jesse Barnes8a905232009-07-11 16:48:03 -04002675{
Chris Wilsoneaa14c22016-10-19 13:52:03 +01002676 u32 eir;
Jesse Barnes8a905232009-07-11 16:48:03 -04002677
Chris Wilsoneaa14c22016-10-19 13:52:03 +01002678 if (!IS_GEN2(dev_priv))
2679 I915_WRITE(PGTBL_ER, I915_READ(PGTBL_ER));
Jesse Barnes8a905232009-07-11 16:48:03 -04002680
Chris Wilsoneaa14c22016-10-19 13:52:03 +01002681 if (INTEL_GEN(dev_priv) < 4)
2682 I915_WRITE(IPEIR, I915_READ(IPEIR));
2683 else
2684 I915_WRITE(IPEIR_I965, I915_READ(IPEIR_I965));
Jesse Barnes8a905232009-07-11 16:48:03 -04002685
Chris Wilsoneaa14c22016-10-19 13:52:03 +01002686 I915_WRITE(EIR, I915_READ(EIR));
Jesse Barnes8a905232009-07-11 16:48:03 -04002687 eir = I915_READ(EIR);
2688 if (eir) {
2689 /*
2690 * some errors might have become stuck,
2691 * mask them.
2692 */
Chris Wilsoneaa14c22016-10-19 13:52:03 +01002693 DRM_DEBUG_DRIVER("EIR stuck: 0x%08x, masking\n", eir);
Jesse Barnes8a905232009-07-11 16:48:03 -04002694 I915_WRITE(EMR, I915_READ(EMR) | eir);
2695 I915_WRITE(IIR, I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT);
2696 }
Chris Wilson35aed2e2010-05-27 13:18:12 +01002697}
2698
2699/**
Mika Kuoppalab8d24a02015-01-28 17:03:14 +02002700 * i915_handle_error - handle a gpu error
Tvrtko Ursulin14bb2c12016-06-03 14:02:17 +01002701 * @dev_priv: i915 device private
arun.siluvery@linux.intel.com14b730f2016-03-18 20:07:55 +00002702 * @engine_mask: mask representing engines that are hung
Javier Martinez Canillasaafd8582015-10-08 09:57:49 +02002703 * Do some basic checking of register state at error time and
Chris Wilson35aed2e2010-05-27 13:18:12 +01002704 * dump it to the syslog. Also call i915_capture_error_state() to make
2705 * sure we get a record and make it available in debugfs. Fire a uevent
2706 * so userspace knows something bad happened (should trigger collection
2707 * of a ring dump etc.).
Tvrtko Ursulin14bb2c12016-06-03 14:02:17 +01002708 * @fmt: Error message format string
Chris Wilson35aed2e2010-05-27 13:18:12 +01002709 */
Chris Wilsonc0336662016-05-06 15:40:21 +01002710void i915_handle_error(struct drm_i915_private *dev_priv,
2711 u32 engine_mask,
Mika Kuoppala58174462014-02-25 17:11:26 +02002712 const char *fmt, ...)
Chris Wilson35aed2e2010-05-27 13:18:12 +01002713{
Mika Kuoppala58174462014-02-25 17:11:26 +02002714 va_list args;
2715 char error_msg[80];
Chris Wilson35aed2e2010-05-27 13:18:12 +01002716
Mika Kuoppala58174462014-02-25 17:11:26 +02002717 va_start(args, fmt);
2718 vscnprintf(error_msg, sizeof(error_msg), fmt, args);
2719 va_end(args);
2720
Chris Wilsonc0336662016-05-06 15:40:21 +01002721 i915_capture_error_state(dev_priv, engine_mask, error_msg);
Chris Wilsoneaa14c22016-10-19 13:52:03 +01002722 i915_clear_error_registers(dev_priv);
Jesse Barnes8a905232009-07-11 16:48:03 -04002723
Chris Wilson8af29b02016-09-09 14:11:47 +01002724 if (!engine_mask)
2725 return;
Ben Gamariba1234d2009-09-14 17:48:47 -04002726
Chris Wilson8af29b02016-09-09 14:11:47 +01002727 if (test_and_set_bit(I915_RESET_IN_PROGRESS,
2728 &dev_priv->gpu_error.flags))
2729 return;
2730
2731 /*
2732 * Wakeup waiting processes so that the reset function
2733 * i915_reset_and_wakeup doesn't deadlock trying to grab
2734 * various locks. By bumping the reset counter first, the woken
2735 * processes will see a reset in progress and back off,
2736 * releasing their locks and then wait for the reset completion.
2737 * We must do this for _all_ gpu waiters that might hold locks
2738 * that the reset work needs to acquire.
2739 *
2740 * Note: The wake_up also provides a memory barrier to ensure that the
2741 * waiters see the updated value of the reset flags.
2742 */
2743 i915_error_wake_up(dev_priv);
Ben Gamari11ed50e2009-09-14 17:48:45 -04002744
Chris Wilsonc0336662016-05-06 15:40:21 +01002745 i915_reset_and_wakeup(dev_priv);
Jesse Barnes8a905232009-07-11 16:48:03 -04002746}
2747
Keith Packard42f52ef2008-10-18 19:39:29 -07002748/* Called from drm generic code, passed 'crtc' which
2749 * we use as a pipe index
2750 */
Chris Wilson86e83e32016-10-07 20:49:52 +01002751static int i8xx_enable_vblank(struct drm_device *dev, unsigned int pipe)
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07002752{
Chris Wilsonfac5e232016-07-04 11:34:36 +01002753 struct drm_i915_private *dev_priv = to_i915(dev);
Keith Packarde9d21d72008-10-16 11:31:38 -07002754 unsigned long irqflags;
Jesse Barnes71e0ffa2009-01-08 10:42:15 -08002755
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002756 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Chris Wilson86e83e32016-10-07 20:49:52 +01002757 i915_enable_pipestat(dev_priv, pipe, PIPE_VBLANK_INTERRUPT_STATUS);
2758 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
2759
2760 return 0;
2761}
2762
2763static int i965_enable_vblank(struct drm_device *dev, unsigned int pipe)
2764{
2765 struct drm_i915_private *dev_priv = to_i915(dev);
2766 unsigned long irqflags;
2767
2768 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
2769 i915_enable_pipestat(dev_priv, pipe,
2770 PIPE_START_VBLANK_INTERRUPT_STATUS);
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002771 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
Chris Wilson8692d00e2011-02-05 10:08:21 +00002772
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07002773 return 0;
2774}
2775
Thierry Reding88e72712015-09-24 18:35:31 +02002776static int ironlake_enable_vblank(struct drm_device *dev, unsigned int pipe)
Jesse Barnesf796cf82011-04-07 13:58:17 -07002777{
Chris Wilsonfac5e232016-07-04 11:34:36 +01002778 struct drm_i915_private *dev_priv = to_i915(dev);
Jesse Barnesf796cf82011-04-07 13:58:17 -07002779 unsigned long irqflags;
Tvrtko Ursulin55b8f2a2016-10-14 09:17:22 +01002780 uint32_t bit = INTEL_GEN(dev_priv) >= 7 ?
Chris Wilson86e83e32016-10-07 20:49:52 +01002781 DE_PIPE_VBLANK_IVB(pipe) : DE_PIPE_VBLANK(pipe);
Jesse Barnesf796cf82011-04-07 13:58:17 -07002782
Jesse Barnesf796cf82011-04-07 13:58:17 -07002783 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Ville Syrjäläfbdedaea2015-11-23 18:06:16 +02002784 ilk_enable_display_irq(dev_priv, bit);
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002785 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
2786
2787 return 0;
2788}
2789
Thierry Reding88e72712015-09-24 18:35:31 +02002790static int gen8_enable_vblank(struct drm_device *dev, unsigned int pipe)
Ben Widawskyabd58f02013-11-02 21:07:09 -07002791{
Chris Wilsonfac5e232016-07-04 11:34:36 +01002792 struct drm_i915_private *dev_priv = to_i915(dev);
Ben Widawskyabd58f02013-11-02 21:07:09 -07002793 unsigned long irqflags;
Ben Widawskyabd58f02013-11-02 21:07:09 -07002794
Ben Widawskyabd58f02013-11-02 21:07:09 -07002795 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Ville Syrjälä013d3752015-11-23 18:06:17 +02002796 bdw_enable_pipe_irq(dev_priv, pipe, GEN8_PIPE_VBLANK);
Ben Widawskyabd58f02013-11-02 21:07:09 -07002797 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
Ville Syrjälä013d3752015-11-23 18:06:17 +02002798
Ben Widawskyabd58f02013-11-02 21:07:09 -07002799 return 0;
2800}
2801
Keith Packard42f52ef2008-10-18 19:39:29 -07002802/* Called from drm generic code, passed 'crtc' which
2803 * we use as a pipe index
2804 */
Chris Wilson86e83e32016-10-07 20:49:52 +01002805static void i8xx_disable_vblank(struct drm_device *dev, unsigned int pipe)
2806{
2807 struct drm_i915_private *dev_priv = to_i915(dev);
2808 unsigned long irqflags;
2809
2810 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
2811 i915_disable_pipestat(dev_priv, pipe, PIPE_VBLANK_INTERRUPT_STATUS);
2812 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
2813}
2814
2815static void i965_disable_vblank(struct drm_device *dev, unsigned int pipe)
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07002816{
Chris Wilsonfac5e232016-07-04 11:34:36 +01002817 struct drm_i915_private *dev_priv = to_i915(dev);
Keith Packarde9d21d72008-10-16 11:31:38 -07002818 unsigned long irqflags;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07002819
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002820 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Jesse Barnesf796cf82011-04-07 13:58:17 -07002821 i915_disable_pipestat(dev_priv, pipe,
Imre Deak755e9012014-02-10 18:42:47 +02002822 PIPE_START_VBLANK_INTERRUPT_STATUS);
Jesse Barnesf796cf82011-04-07 13:58:17 -07002823 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
2824}
2825
Thierry Reding88e72712015-09-24 18:35:31 +02002826static void ironlake_disable_vblank(struct drm_device *dev, unsigned int pipe)
Jesse Barnesf796cf82011-04-07 13:58:17 -07002827{
Chris Wilsonfac5e232016-07-04 11:34:36 +01002828 struct drm_i915_private *dev_priv = to_i915(dev);
Jesse Barnesf796cf82011-04-07 13:58:17 -07002829 unsigned long irqflags;
Tvrtko Ursulin55b8f2a2016-10-14 09:17:22 +01002830 uint32_t bit = INTEL_GEN(dev_priv) >= 7 ?
Chris Wilson86e83e32016-10-07 20:49:52 +01002831 DE_PIPE_VBLANK_IVB(pipe) : DE_PIPE_VBLANK(pipe);
Jesse Barnesf796cf82011-04-07 13:58:17 -07002832
2833 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Ville Syrjäläfbdedaea2015-11-23 18:06:16 +02002834 ilk_disable_display_irq(dev_priv, bit);
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002835 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
2836}
2837
Thierry Reding88e72712015-09-24 18:35:31 +02002838static void gen8_disable_vblank(struct drm_device *dev, unsigned int pipe)
Ben Widawskyabd58f02013-11-02 21:07:09 -07002839{
Chris Wilsonfac5e232016-07-04 11:34:36 +01002840 struct drm_i915_private *dev_priv = to_i915(dev);
Ben Widawskyabd58f02013-11-02 21:07:09 -07002841 unsigned long irqflags;
Ben Widawskyabd58f02013-11-02 21:07:09 -07002842
Ben Widawskyabd58f02013-11-02 21:07:09 -07002843 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Ville Syrjälä013d3752015-11-23 18:06:17 +02002844 bdw_disable_pipe_irq(dev_priv, pipe, GEN8_PIPE_VBLANK);
Ben Widawskyabd58f02013-11-02 21:07:09 -07002845 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
2846}
2847
Chris Wilson9107e9d2013-06-10 11:20:20 +01002848static bool
Chris Wilson31bb59c2016-07-01 17:23:27 +01002849ipehr_is_semaphore_wait(struct intel_engine_cs *engine, u32 ipehr)
Daniel Vettera028c4b2014-03-15 00:08:56 +01002850{
Chris Wilson31bb59c2016-07-01 17:23:27 +01002851 if (INTEL_GEN(engine->i915) >= 8) {
Rodrigo Vivia6cdb932014-06-30 09:53:39 -07002852 return (ipehr >> 23) == 0x1c;
Daniel Vettera028c4b2014-03-15 00:08:56 +01002853 } else {
2854 ipehr &= ~MI_SEMAPHORE_SYNC_MASK;
2855 return ipehr == (MI_SEMAPHORE_MBOX | MI_SEMAPHORE_COMPARE |
2856 MI_SEMAPHORE_REGISTER);
2857 }
2858}
2859
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002860static struct intel_engine_cs *
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00002861semaphore_wait_to_signaller_ring(struct intel_engine_cs *engine, u32 ipehr,
2862 u64 offset)
Daniel Vetter921d42e2014-03-18 10:26:04 +01002863{
Chris Wilsonc0336662016-05-06 15:40:21 +01002864 struct drm_i915_private *dev_priv = engine->i915;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002865 struct intel_engine_cs *signaller;
Akash Goel3b3f1652016-10-13 22:44:48 +05302866 enum intel_engine_id id;
Daniel Vetter921d42e2014-03-18 10:26:04 +01002867
Chris Wilsonc0336662016-05-06 15:40:21 +01002868 if (INTEL_GEN(dev_priv) >= 8) {
Akash Goel3b3f1652016-10-13 22:44:48 +05302869 for_each_engine(signaller, dev_priv, id) {
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00002870 if (engine == signaller)
Rodrigo Vivia6cdb932014-06-30 09:53:39 -07002871 continue;
2872
Chris Wilson348b9b12016-10-03 13:45:16 +01002873 if (offset == signaller->semaphore.signal_ggtt[engine->hw_id])
Rodrigo Vivia6cdb932014-06-30 09:53:39 -07002874 return signaller;
2875 }
Daniel Vetter921d42e2014-03-18 10:26:04 +01002876 } else {
2877 u32 sync_bits = ipehr & MI_SEMAPHORE_SYNC_MASK;
2878
Akash Goel3b3f1652016-10-13 22:44:48 +05302879 for_each_engine(signaller, dev_priv, id) {
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00002880 if(engine == signaller)
Daniel Vetter921d42e2014-03-18 10:26:04 +01002881 continue;
2882
Chris Wilson348b9b12016-10-03 13:45:16 +01002883 if (sync_bits == signaller->semaphore.mbox.wait[engine->hw_id])
Daniel Vetter921d42e2014-03-18 10:26:04 +01002884 return signaller;
2885 }
2886 }
2887
Chris Wilson348b9b12016-10-03 13:45:16 +01002888 DRM_DEBUG_DRIVER("No signaller ring found for %s, ipehr 0x%08x, offset 0x%016llx\n",
2889 engine->name, ipehr, offset);
Daniel Vetter921d42e2014-03-18 10:26:04 +01002890
Chris Wilson80b5bdb2016-09-09 14:11:58 +01002891 return ERR_PTR(-ENODEV);
Daniel Vetter921d42e2014-03-18 10:26:04 +01002892}
2893
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002894static struct intel_engine_cs *
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00002895semaphore_waits_for(struct intel_engine_cs *engine, u32 *seqno)
Chris Wilsona24a11e2013-03-14 17:52:05 +02002896{
Chris Wilsonc0336662016-05-06 15:40:21 +01002897 struct drm_i915_private *dev_priv = engine->i915;
Chris Wilson406ea8d2016-07-20 13:31:55 +01002898 void __iomem *vaddr;
Daniel Vetter88fe4292014-03-15 00:08:55 +01002899 u32 cmd, ipehr, head;
Rodrigo Vivia6cdb932014-06-30 09:53:39 -07002900 u64 offset = 0;
2901 int i, backwards;
Chris Wilsona24a11e2013-03-14 17:52:05 +02002902
Tomas Elf381e8ae2015-10-08 19:31:33 +01002903 /*
2904 * This function does not support execlist mode - any attempt to
2905 * proceed further into this function will result in a kernel panic
2906 * when dereferencing ring->buffer, which is not set up in execlist
2907 * mode.
2908 *
2909 * The correct way of doing it would be to derive the currently
2910 * executing ring buffer from the current context, which is derived
2911 * from the currently running request. Unfortunately, to get the
2912 * current request we would have to grab the struct_mutex before doing
2913 * anything else, which would be ill-advised since some other thread
2914 * might have grabbed it already and managed to hang itself, causing
2915 * the hang checker to deadlock.
2916 *
2917 * Therefore, this function does not support execlist mode in its
2918 * current form. Just return NULL and move on.
2919 */
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00002920 if (engine->buffer == NULL)
Tomas Elf381e8ae2015-10-08 19:31:33 +01002921 return NULL;
2922
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00002923 ipehr = I915_READ(RING_IPEHR(engine->mmio_base));
Chris Wilson31bb59c2016-07-01 17:23:27 +01002924 if (!ipehr_is_semaphore_wait(engine, ipehr))
Chris Wilson6274f212013-06-10 11:20:21 +01002925 return NULL;
Chris Wilsona24a11e2013-03-14 17:52:05 +02002926
Daniel Vetter88fe4292014-03-15 00:08:55 +01002927 /*
2928 * HEAD is likely pointing to the dword after the actual command,
2929 * so scan backwards until we find the MBOX. But limit it to just 3
Rodrigo Vivia6cdb932014-06-30 09:53:39 -07002930 * or 4 dwords depending on the semaphore wait command size.
2931 * Note that we don't care about ACTHD here since that might
Daniel Vetter88fe4292014-03-15 00:08:55 +01002932 * point at at batch, and semaphores are always emitted into the
2933 * ringbuffer itself.
Chris Wilsona24a11e2013-03-14 17:52:05 +02002934 */
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00002935 head = I915_READ_HEAD(engine) & HEAD_ADDR;
Chris Wilsonc0336662016-05-06 15:40:21 +01002936 backwards = (INTEL_GEN(dev_priv) >= 8) ? 5 : 4;
Chris Wilsonf2f0ed72016-07-20 13:31:56 +01002937 vaddr = (void __iomem *)engine->buffer->vaddr;
Daniel Vetter88fe4292014-03-15 00:08:55 +01002938
Rodrigo Vivia6cdb932014-06-30 09:53:39 -07002939 for (i = backwards; i; --i) {
Daniel Vetter88fe4292014-03-15 00:08:55 +01002940 /*
2941 * Be paranoid and presume the hw has gone off into the wild -
2942 * our ring is smaller than what the hardware (and hence
2943 * HEAD_ADDR) allows. Also handles wrap-around.
2944 */
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00002945 head &= engine->buffer->size - 1;
Daniel Vetter88fe4292014-03-15 00:08:55 +01002946
2947 /* This here seems to blow up */
Chris Wilson406ea8d2016-07-20 13:31:55 +01002948 cmd = ioread32(vaddr + head);
Chris Wilsona24a11e2013-03-14 17:52:05 +02002949 if (cmd == ipehr)
2950 break;
2951
Daniel Vetter88fe4292014-03-15 00:08:55 +01002952 head -= 4;
2953 }
Chris Wilsona24a11e2013-03-14 17:52:05 +02002954
Daniel Vetter88fe4292014-03-15 00:08:55 +01002955 if (!i)
2956 return NULL;
2957
Chris Wilson406ea8d2016-07-20 13:31:55 +01002958 *seqno = ioread32(vaddr + head + 4) + 1;
Chris Wilsonc0336662016-05-06 15:40:21 +01002959 if (INTEL_GEN(dev_priv) >= 8) {
Chris Wilson406ea8d2016-07-20 13:31:55 +01002960 offset = ioread32(vaddr + head + 12);
Rodrigo Vivia6cdb932014-06-30 09:53:39 -07002961 offset <<= 32;
Chris Wilson406ea8d2016-07-20 13:31:55 +01002962 offset |= ioread32(vaddr + head + 8);
Rodrigo Vivia6cdb932014-06-30 09:53:39 -07002963 }
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00002964 return semaphore_wait_to_signaller_ring(engine, ipehr, offset);
Chris Wilsona24a11e2013-03-14 17:52:05 +02002965}
2966
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00002967static int semaphore_passed(struct intel_engine_cs *engine)
Chris Wilson6274f212013-06-10 11:20:21 +01002968{
Chris Wilsonc0336662016-05-06 15:40:21 +01002969 struct drm_i915_private *dev_priv = engine->i915;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002970 struct intel_engine_cs *signaller;
Chris Wilsona0d036b2014-07-19 12:40:42 +01002971 u32 seqno;
Chris Wilson6274f212013-06-10 11:20:21 +01002972
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00002973 engine->hangcheck.deadlock++;
Chris Wilson6274f212013-06-10 11:20:21 +01002974
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00002975 signaller = semaphore_waits_for(engine, &seqno);
Chris Wilson4be17382014-06-06 10:22:29 +01002976 if (signaller == NULL)
2977 return -1;
2978
Chris Wilson80b5bdb2016-09-09 14:11:58 +01002979 if (IS_ERR(signaller))
2980 return 0;
2981
Chris Wilson4be17382014-06-06 10:22:29 +01002982 /* Prevent pathological recursion due to driver bugs */
Tvrtko Ursulin666796d2016-03-16 11:00:39 +00002983 if (signaller->hangcheck.deadlock >= I915_NUM_ENGINES)
Chris Wilson6274f212013-06-10 11:20:21 +01002984 return -1;
2985
Chris Wilson1b7744e2016-07-01 17:23:17 +01002986 if (i915_seqno_passed(intel_engine_get_seqno(signaller), seqno))
Chris Wilson4be17382014-06-06 10:22:29 +01002987 return 1;
2988
Chris Wilsona0d036b2014-07-19 12:40:42 +01002989 /* cursory check for an unkickable deadlock */
2990 if (I915_READ_CTL(signaller) & RING_WAIT_SEMAPHORE &&
2991 semaphore_passed(signaller) < 0)
Chris Wilson4be17382014-06-06 10:22:29 +01002992 return -1;
2993
2994 return 0;
Chris Wilson6274f212013-06-10 11:20:21 +01002995}
2996
2997static void semaphore_clear_deadlocks(struct drm_i915_private *dev_priv)
2998{
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00002999 struct intel_engine_cs *engine;
Akash Goel3b3f1652016-10-13 22:44:48 +05303000 enum intel_engine_id id;
Chris Wilson6274f212013-06-10 11:20:21 +01003001
Akash Goel3b3f1652016-10-13 22:44:48 +05303002 for_each_engine(engine, dev_priv, id)
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00003003 engine->hangcheck.deadlock = 0;
Chris Wilson6274f212013-06-10 11:20:21 +01003004}
3005
Ben Widawskyd6369512016-09-20 16:54:32 +03003006static bool instdone_unchanged(u32 current_instdone, u32 *old_instdone)
3007{
3008 u32 tmp = current_instdone | *old_instdone;
3009 bool unchanged;
3010
3011 unchanged = tmp == *old_instdone;
3012 *old_instdone |= tmp;
3013
3014 return unchanged;
3015}
3016
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00003017static bool subunits_stuck(struct intel_engine_cs *engine)
Chris Wilson1ec14ad2010-12-04 11:30:53 +00003018{
Ben Widawskyd6369512016-09-20 16:54:32 +03003019 struct drm_i915_private *dev_priv = engine->i915;
3020 struct intel_instdone instdone;
3021 struct intel_instdone *accu_instdone = &engine->hangcheck.instdone;
Mika Kuoppala61642ff2015-12-01 17:56:12 +02003022 bool stuck;
Ben Widawskyf9e61372016-09-20 16:54:33 +03003023 int slice;
3024 int subslice;
Chris Wilson9107e9d2013-06-10 11:20:20 +01003025
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00003026 if (engine->id != RCS)
Mika Kuoppala61642ff2015-12-01 17:56:12 +02003027 return true;
3028
Chris Wilson0e704472016-10-12 10:05:17 +01003029 intel_engine_get_instdone(engine, &instdone);
Mika Kuoppala61642ff2015-12-01 17:56:12 +02003030
3031 /* There might be unstable subunit states even when
3032 * actual head is not moving. Filter out the unstable ones by
3033 * accumulating the undone -> done transitions and only
3034 * consider those as progress.
3035 */
Ben Widawskyd6369512016-09-20 16:54:32 +03003036 stuck = instdone_unchanged(instdone.instdone,
3037 &accu_instdone->instdone);
3038 stuck &= instdone_unchanged(instdone.slice_common,
3039 &accu_instdone->slice_common);
Ben Widawskyf9e61372016-09-20 16:54:33 +03003040
3041 for_each_instdone_slice_subslice(dev_priv, slice, subslice) {
3042 stuck &= instdone_unchanged(instdone.sampler[slice][subslice],
3043 &accu_instdone->sampler[slice][subslice]);
3044 stuck &= instdone_unchanged(instdone.row[slice][subslice],
3045 &accu_instdone->row[slice][subslice]);
3046 }
Mika Kuoppala61642ff2015-12-01 17:56:12 +02003047
3048 return stuck;
3049}
3050
Chris Wilson7e37f882016-08-02 22:50:21 +01003051static enum intel_engine_hangcheck_action
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00003052head_stuck(struct intel_engine_cs *engine, u64 acthd)
Mika Kuoppala61642ff2015-12-01 17:56:12 +02003053{
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00003054 if (acthd != engine->hangcheck.acthd) {
Mika Kuoppala61642ff2015-12-01 17:56:12 +02003055
3056 /* Clear subunit states on head movement */
Ben Widawskyd6369512016-09-20 16:54:32 +03003057 memset(&engine->hangcheck.instdone, 0,
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00003058 sizeof(engine->hangcheck.instdone));
Mika Kuoppala61642ff2015-12-01 17:56:12 +02003059
Mika Kuoppala24a65e62016-03-02 16:48:29 +02003060 return HANGCHECK_ACTIVE;
Mika Kuoppalaf260fe72014-08-05 17:16:26 +03003061 }
Chris Wilson6274f212013-06-10 11:20:21 +01003062
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00003063 if (!subunits_stuck(engine))
Mika Kuoppala61642ff2015-12-01 17:56:12 +02003064 return HANGCHECK_ACTIVE;
3065
3066 return HANGCHECK_HUNG;
3067}
3068
Chris Wilson7e37f882016-08-02 22:50:21 +01003069static enum intel_engine_hangcheck_action
3070engine_stuck(struct intel_engine_cs *engine, u64 acthd)
Mika Kuoppala61642ff2015-12-01 17:56:12 +02003071{
Chris Wilsonc0336662016-05-06 15:40:21 +01003072 struct drm_i915_private *dev_priv = engine->i915;
Chris Wilson7e37f882016-08-02 22:50:21 +01003073 enum intel_engine_hangcheck_action ha;
Mika Kuoppala61642ff2015-12-01 17:56:12 +02003074 u32 tmp;
3075
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00003076 ha = head_stuck(engine, acthd);
Mika Kuoppala61642ff2015-12-01 17:56:12 +02003077 if (ha != HANGCHECK_HUNG)
3078 return ha;
3079
Chris Wilsonc0336662016-05-06 15:40:21 +01003080 if (IS_GEN2(dev_priv))
Jani Nikulaf2f4d822013-08-11 12:44:01 +03003081 return HANGCHECK_HUNG;
Chris Wilson9107e9d2013-06-10 11:20:20 +01003082
3083 /* Is the chip hanging on a WAIT_FOR_EVENT?
3084 * If so we can simply poke the RB_WAIT bit
3085 * and break the hang. This should work on
3086 * all but the second generation chipsets.
3087 */
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00003088 tmp = I915_READ_CTL(engine);
Chris Wilson1ec14ad2010-12-04 11:30:53 +00003089 if (tmp & RING_WAIT) {
Chris Wilsonc0336662016-05-06 15:40:21 +01003090 i915_handle_error(dev_priv, 0,
Mika Kuoppala58174462014-02-25 17:11:26 +02003091 "Kicking stuck wait on %s",
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00003092 engine->name);
3093 I915_WRITE_CTL(engine, tmp);
Jani Nikulaf2f4d822013-08-11 12:44:01 +03003094 return HANGCHECK_KICK;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00003095 }
Chris Wilsona24a11e2013-03-14 17:52:05 +02003096
Chris Wilsonc0336662016-05-06 15:40:21 +01003097 if (INTEL_GEN(dev_priv) >= 6 && tmp & RING_WAIT_SEMAPHORE) {
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00003098 switch (semaphore_passed(engine)) {
Chris Wilson6274f212013-06-10 11:20:21 +01003099 default:
Jani Nikulaf2f4d822013-08-11 12:44:01 +03003100 return HANGCHECK_HUNG;
Chris Wilson6274f212013-06-10 11:20:21 +01003101 case 1:
Chris Wilsonc0336662016-05-06 15:40:21 +01003102 i915_handle_error(dev_priv, 0,
Mika Kuoppala58174462014-02-25 17:11:26 +02003103 "Kicking stuck semaphore on %s",
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00003104 engine->name);
3105 I915_WRITE_CTL(engine, tmp);
Jani Nikulaf2f4d822013-08-11 12:44:01 +03003106 return HANGCHECK_KICK;
Chris Wilson6274f212013-06-10 11:20:21 +01003107 case 0:
Jani Nikulaf2f4d822013-08-11 12:44:01 +03003108 return HANGCHECK_WAIT;
Chris Wilson6274f212013-06-10 11:20:21 +01003109 }
Chris Wilson9107e9d2013-06-10 11:20:20 +01003110 }
Mika Kuoppalaed5cbb02013-05-13 16:32:11 +03003111
Jani Nikulaf2f4d822013-08-11 12:44:01 +03003112 return HANGCHECK_HUNG;
Mika Kuoppalaed5cbb02013-05-13 16:32:11 +03003113}
3114
Chris Wilson737b1502015-01-26 18:03:03 +02003115/*
Ben Gamarif65d9422009-09-14 17:48:44 -04003116 * This is called when the chip hasn't reported back with completed
Mika Kuoppala05407ff2013-05-30 09:04:29 +03003117 * batchbuffers in a long time. We keep track per ring seqno progress and
3118 * if there are no progress, hangcheck score for that ring is increased.
3119 * Further, acthd is inspected to see if the ring is stuck. On stuck case
3120 * we kick the ring. If we see no progress on three subsequent calls
3121 * we assume chip is wedged and try to fix it by resetting the chip.
Ben Gamarif65d9422009-09-14 17:48:44 -04003122 */
Chris Wilson737b1502015-01-26 18:03:03 +02003123static void i915_hangcheck_elapsed(struct work_struct *work)
Ben Gamarif65d9422009-09-14 17:48:44 -04003124{
Chris Wilson737b1502015-01-26 18:03:03 +02003125 struct drm_i915_private *dev_priv =
3126 container_of(work, typeof(*dev_priv),
3127 gpu_error.hangcheck_work.work);
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00003128 struct intel_engine_cs *engine;
Akash Goel3b3f1652016-10-13 22:44:48 +05303129 enum intel_engine_id id;
Chris Wilson2b284282016-07-04 08:48:32 +01003130 unsigned int hung = 0, stuck = 0;
3131 int busy_count = 0;
Chris Wilson9107e9d2013-06-10 11:20:20 +01003132#define BUSY 1
3133#define KICK 5
3134#define HUNG 20
Mika Kuoppala24a65e62016-03-02 16:48:29 +02003135#define ACTIVE_DECAY 15
Chris Wilson893eead2010-10-27 14:44:35 +01003136
Jani Nikulad330a952014-01-21 11:24:25 +02003137 if (!i915.enable_hangcheck)
Ben Widawsky3e0dc6b2011-06-29 10:26:42 -07003138 return;
3139
Chris Wilsonb1379d42016-07-05 08:54:36 +01003140 if (!READ_ONCE(dev_priv->gt.awake))
Chris Wilson67d97da2016-07-04 08:08:31 +01003141 return;
Imre Deak1f814da2015-12-16 02:52:19 +02003142
Mika Kuoppala75714942015-12-16 09:26:48 +02003143 /* As enabling the GPU requires fairly extensive mmio access,
3144 * periodically arm the mmio checker to see if we are triggering
3145 * any invalid access.
3146 */
3147 intel_uncore_arm_unclaimed_mmio_detection(dev_priv);
3148
Akash Goel3b3f1652016-10-13 22:44:48 +05303149 for_each_engine(engine, dev_priv, id) {
Chris Wilson688e6c72016-07-01 17:23:15 +01003150 bool busy = intel_engine_has_waiter(engine);
Chris Wilson50877442014-03-21 12:41:53 +00003151 u64 acthd;
3152 u32 seqno;
Chris Wilson34730fe2016-08-20 15:54:08 +01003153 u32 submit;
Chris Wilsonb4519512012-05-11 14:29:30 +01003154
Chris Wilson6274f212013-06-10 11:20:21 +01003155 semaphore_clear_deadlocks(dev_priv);
3156
Chris Wilsonc04e0f32016-04-09 10:57:54 +01003157 /* We don't strictly need an irq-barrier here, as we are not
3158 * serving an interrupt request, be paranoid in case the
3159 * barrier has side-effects (such as preventing a broken
3160 * cacheline snoop) and so be sure that we can see the seqno
3161 * advance. If the seqno should stick, due to a stale
3162 * cacheline, we would erroneously declare the GPU hung.
3163 */
3164 if (engine->irq_seqno_barrier)
3165 engine->irq_seqno_barrier(engine);
3166
Chris Wilson7e37f882016-08-02 22:50:21 +01003167 acthd = intel_engine_get_active_head(engine);
Chris Wilson1b7744e2016-07-01 17:23:17 +01003168 seqno = intel_engine_get_seqno(engine);
Chris Wilsoncb399ea2016-11-01 10:03:16 +00003169 submit = intel_engine_last_submit(engine);
Chris Wilsond1e61e72012-04-10 17:00:41 +01003170
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00003171 if (engine->hangcheck.seqno == seqno) {
Chris Wilson34730fe2016-08-20 15:54:08 +01003172 if (i915_seqno_passed(seqno, submit)) {
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00003173 engine->hangcheck.action = HANGCHECK_IDLE;
Mika Kuoppala05407ff2013-05-30 09:04:29 +03003174 } else {
Chris Wilson6274f212013-06-10 11:20:21 +01003175 /* We always increment the hangcheck score
Chris Wilson9930ca12016-07-27 09:07:30 +01003176 * if the engine is busy and still processing
Chris Wilson6274f212013-06-10 11:20:21 +01003177 * the same request, so that no single request
3178 * can run indefinitely (such as a chain of
3179 * batches). The only time we do not increment
3180 * the hangcheck score on this ring, if this
Chris Wilson9930ca12016-07-27 09:07:30 +01003181 * engine is in a legitimate wait for another
3182 * engine. In that case the waiting engine is a
Chris Wilson6274f212013-06-10 11:20:21 +01003183 * victim and we want to be sure we catch the
3184 * right culprit. Then every time we do kick
3185 * the ring, add a small increment to the
3186 * score so that we can catch a batch that is
3187 * being repeatedly kicked and so responsible
3188 * for stalling the machine.
3189 */
Chris Wilson7e37f882016-08-02 22:50:21 +01003190 engine->hangcheck.action =
3191 engine_stuck(engine, acthd);
Mika Kuoppalaad8beae2013-06-12 12:35:32 +03003192
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00003193 switch (engine->hangcheck.action) {
Mika Kuoppalada661462013-09-06 16:03:28 +03003194 case HANGCHECK_IDLE:
Jani Nikulaf2f4d822013-08-11 12:44:01 +03003195 case HANGCHECK_WAIT:
Mika Kuoppalaf260fe72014-08-05 17:16:26 +03003196 break;
Mika Kuoppala24a65e62016-03-02 16:48:29 +02003197 case HANGCHECK_ACTIVE:
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00003198 engine->hangcheck.score += BUSY;
Chris Wilson6274f212013-06-10 11:20:21 +01003199 break;
Jani Nikulaf2f4d822013-08-11 12:44:01 +03003200 case HANGCHECK_KICK:
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00003201 engine->hangcheck.score += KICK;
Chris Wilson6274f212013-06-10 11:20:21 +01003202 break;
Jani Nikulaf2f4d822013-08-11 12:44:01 +03003203 case HANGCHECK_HUNG:
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00003204 engine->hangcheck.score += HUNG;
Chris Wilson6274f212013-06-10 11:20:21 +01003205 break;
3206 }
Mika Kuoppala05407ff2013-05-30 09:04:29 +03003207 }
Chris Wilson2b284282016-07-04 08:48:32 +01003208
3209 if (engine->hangcheck.score >= HANGCHECK_SCORE_RING_HUNG) {
3210 hung |= intel_engine_flag(engine);
3211 if (engine->hangcheck.action != HANGCHECK_HUNG)
3212 stuck |= intel_engine_flag(engine);
3213 }
Chris Wilson9107e9d2013-06-10 11:20:20 +01003214 } else {
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00003215 engine->hangcheck.action = HANGCHECK_ACTIVE;
Mika Kuoppalada661462013-09-06 16:03:28 +03003216
Chris Wilson9107e9d2013-06-10 11:20:20 +01003217 /* Gradually reduce the count so that we catch DoS
3218 * attempts across multiple batches.
3219 */
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00003220 if (engine->hangcheck.score > 0)
3221 engine->hangcheck.score -= ACTIVE_DECAY;
3222 if (engine->hangcheck.score < 0)
3223 engine->hangcheck.score = 0;
Mika Kuoppalaf260fe72014-08-05 17:16:26 +03003224
Mika Kuoppala61642ff2015-12-01 17:56:12 +02003225 /* Clear head and subunit states on seqno movement */
Chris Wilson12471ba2016-04-09 10:57:55 +01003226 acthd = 0;
Mika Kuoppala61642ff2015-12-01 17:56:12 +02003227
Ben Widawskyd6369512016-09-20 16:54:32 +03003228 memset(&engine->hangcheck.instdone, 0,
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00003229 sizeof(engine->hangcheck.instdone));
Chris Wilsond1e61e72012-04-10 17:00:41 +01003230 }
3231
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00003232 engine->hangcheck.seqno = seqno;
3233 engine->hangcheck.acthd = acthd;
Chris Wilson9107e9d2013-06-10 11:20:20 +01003234 busy_count += busy;
Chris Wilson893eead2010-10-27 14:44:35 +01003235 }
Eric Anholtb9201c12010-01-08 14:25:16 -08003236
Chris Wilson2b284282016-07-04 08:48:32 +01003237 if (hung) {
3238 char msg[80];
Chris Wilsonbafb0fc2016-08-27 08:54:01 +01003239 unsigned int tmp;
Chris Wilson2b284282016-07-04 08:48:32 +01003240 int len;
Mika Kuoppala92cab732013-05-24 17:16:07 +03003241
Chris Wilson2b284282016-07-04 08:48:32 +01003242 /* If some rings hung but others were still busy, only
3243 * blame the hanging rings in the synopsis.
3244 */
3245 if (stuck != hung)
3246 hung &= ~stuck;
3247 len = scnprintf(msg, sizeof(msg),
3248 "%s on ", stuck == hung ? "No progress" : "Hang");
Chris Wilsonbafb0fc2016-08-27 08:54:01 +01003249 for_each_engine_masked(engine, dev_priv, hung, tmp)
Chris Wilson2b284282016-07-04 08:48:32 +01003250 len += scnprintf(msg + len, sizeof(msg) - len,
3251 "%s, ", engine->name);
3252 msg[len-2] = '\0';
3253
3254 return i915_handle_error(dev_priv, hung, msg);
3255 }
Ben Gamarif65d9422009-09-14 17:48:44 -04003256
Chris Wilson05535722016-07-01 17:23:11 +01003257 /* Reset timer in case GPU hangs without another request being added */
Mika Kuoppala05407ff2013-05-30 09:04:29 +03003258 if (busy_count)
Chris Wilsonc0336662016-05-06 15:40:21 +01003259 i915_queue_hangcheck(dev_priv);
Mika Kuoppala10cd45b2013-07-03 17:22:08 +03003260}
3261
Paulo Zanoni1c69eb42014-04-01 15:37:23 -03003262static void ibx_irq_reset(struct drm_device *dev)
Paulo Zanoni91738a92013-06-05 14:21:51 -03003263{
Chris Wilsonfac5e232016-07-04 11:34:36 +01003264 struct drm_i915_private *dev_priv = to_i915(dev);
Paulo Zanoni91738a92013-06-05 14:21:51 -03003265
Tvrtko Ursulin6e266952016-10-13 11:02:53 +01003266 if (HAS_PCH_NOP(dev_priv))
Paulo Zanoni91738a92013-06-05 14:21:51 -03003267 return;
3268
Paulo Zanonif86f3fb2014-04-01 15:37:14 -03003269 GEN5_IRQ_RESET(SDE);
Paulo Zanoni105b1222014-04-01 15:37:17 -03003270
Tvrtko Ursulin6e266952016-10-13 11:02:53 +01003271 if (HAS_PCH_CPT(dev_priv) || HAS_PCH_LPT(dev_priv))
Paulo Zanoni105b1222014-04-01 15:37:17 -03003272 I915_WRITE(SERR_INT, 0xffffffff);
Paulo Zanoni622364b2014-04-01 15:37:22 -03003273}
Paulo Zanoni105b1222014-04-01 15:37:17 -03003274
Paulo Zanoni622364b2014-04-01 15:37:22 -03003275/*
3276 * SDEIER is also touched by the interrupt handler to work around missed PCH
3277 * interrupts. Hence we can't update it after the interrupt handler is enabled -
3278 * instead we unconditionally enable all PCH interrupt sources here, but then
3279 * only unmask them as needed with SDEIMR.
3280 *
3281 * This function needs to be called before interrupts are enabled.
3282 */
3283static void ibx_irq_pre_postinstall(struct drm_device *dev)
3284{
Chris Wilsonfac5e232016-07-04 11:34:36 +01003285 struct drm_i915_private *dev_priv = to_i915(dev);
Paulo Zanoni622364b2014-04-01 15:37:22 -03003286
Tvrtko Ursulin6e266952016-10-13 11:02:53 +01003287 if (HAS_PCH_NOP(dev_priv))
Paulo Zanoni622364b2014-04-01 15:37:22 -03003288 return;
3289
3290 WARN_ON(I915_READ(SDEIER) != 0);
Paulo Zanoni91738a92013-06-05 14:21:51 -03003291 I915_WRITE(SDEIER, 0xffffffff);
3292 POSTING_READ(SDEIER);
3293}
3294
Paulo Zanoni7c4d6642014-04-01 15:37:19 -03003295static void gen5_gt_irq_reset(struct drm_device *dev)
Daniel Vetterd18ea1b2013-07-12 22:43:25 +02003296{
Chris Wilsonfac5e232016-07-04 11:34:36 +01003297 struct drm_i915_private *dev_priv = to_i915(dev);
Daniel Vetterd18ea1b2013-07-12 22:43:25 +02003298
Paulo Zanonif86f3fb2014-04-01 15:37:14 -03003299 GEN5_IRQ_RESET(GT);
Paulo Zanonia9d356a2014-04-01 15:37:09 -03003300 if (INTEL_INFO(dev)->gen >= 6)
Paulo Zanonif86f3fb2014-04-01 15:37:14 -03003301 GEN5_IRQ_RESET(GEN6_PM);
Daniel Vetterd18ea1b2013-07-12 22:43:25 +02003302}
3303
Ville Syrjälä70591a42014-10-30 19:42:58 +02003304static void vlv_display_irq_reset(struct drm_i915_private *dev_priv)
3305{
3306 enum pipe pipe;
3307
Ville Syrjälä71b8b412016-04-11 16:56:31 +03003308 if (IS_CHERRYVIEW(dev_priv))
3309 I915_WRITE(DPINVGTT, DPINVGTT_STATUS_MASK_CHV);
3310 else
3311 I915_WRITE(DPINVGTT, DPINVGTT_STATUS_MASK);
3312
Ville Syrjäläad22d102016-04-12 18:56:14 +03003313 i915_hotplug_interrupt_update_locked(dev_priv, 0xffffffff, 0);
Ville Syrjälä70591a42014-10-30 19:42:58 +02003314 I915_WRITE(PORT_HOTPLUG_STAT, I915_READ(PORT_HOTPLUG_STAT));
3315
Ville Syrjäläad22d102016-04-12 18:56:14 +03003316 for_each_pipe(dev_priv, pipe) {
3317 I915_WRITE(PIPESTAT(pipe),
3318 PIPE_FIFO_UNDERRUN_STATUS |
3319 PIPESTAT_INT_STATUS_MASK);
3320 dev_priv->pipestat_irq_mask[pipe] = 0;
3321 }
Ville Syrjälä70591a42014-10-30 19:42:58 +02003322
3323 GEN5_IRQ_RESET(VLV_);
Ville Syrjäläad22d102016-04-12 18:56:14 +03003324 dev_priv->irq_mask = ~0;
Ville Syrjälä70591a42014-10-30 19:42:58 +02003325}
3326
Ville Syrjälä8bb61302016-04-12 18:56:44 +03003327static void vlv_display_irq_postinstall(struct drm_i915_private *dev_priv)
3328{
3329 u32 pipestat_mask;
Ville Syrjälä9ab981f2016-04-11 16:56:28 +03003330 u32 enable_mask;
Ville Syrjälä8bb61302016-04-12 18:56:44 +03003331 enum pipe pipe;
3332
Ville Syrjälä8bb61302016-04-12 18:56:44 +03003333 pipestat_mask = PLANE_FLIP_DONE_INT_STATUS_VLV |
3334 PIPE_CRC_DONE_INTERRUPT_STATUS;
3335
3336 i915_enable_pipestat(dev_priv, PIPE_A, PIPE_GMBUS_INTERRUPT_STATUS);
3337 for_each_pipe(dev_priv, pipe)
3338 i915_enable_pipestat(dev_priv, pipe, pipestat_mask);
3339
Ville Syrjälä9ab981f2016-04-11 16:56:28 +03003340 enable_mask = I915_DISPLAY_PORT_INTERRUPT |
3341 I915_DISPLAY_PIPE_A_EVENT_INTERRUPT |
3342 I915_DISPLAY_PIPE_B_EVENT_INTERRUPT;
Ville Syrjälä8bb61302016-04-12 18:56:44 +03003343 if (IS_CHERRYVIEW(dev_priv))
Ville Syrjälä9ab981f2016-04-11 16:56:28 +03003344 enable_mask |= I915_DISPLAY_PIPE_C_EVENT_INTERRUPT;
Ville Syrjälä6b7eafc2016-04-11 16:56:29 +03003345
3346 WARN_ON(dev_priv->irq_mask != ~0);
3347
Ville Syrjälä9ab981f2016-04-11 16:56:28 +03003348 dev_priv->irq_mask = ~enable_mask;
Ville Syrjälä8bb61302016-04-12 18:56:44 +03003349
Ville Syrjälä9ab981f2016-04-11 16:56:28 +03003350 GEN5_IRQ_INIT(VLV_, dev_priv->irq_mask, enable_mask);
Ville Syrjälä8bb61302016-04-12 18:56:44 +03003351}
3352
3353/* drm_dma.h hooks
3354*/
3355static void ironlake_irq_reset(struct drm_device *dev)
3356{
Chris Wilsonfac5e232016-07-04 11:34:36 +01003357 struct drm_i915_private *dev_priv = to_i915(dev);
Ville Syrjälä8bb61302016-04-12 18:56:44 +03003358
3359 I915_WRITE(HWSTAM, 0xffffffff);
3360
3361 GEN5_IRQ_RESET(DE);
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01003362 if (IS_GEN7(dev_priv))
Ville Syrjälä8bb61302016-04-12 18:56:44 +03003363 I915_WRITE(GEN7_ERR_INT, 0xffffffff);
3364
3365 gen5_gt_irq_reset(dev);
3366
3367 ibx_irq_reset(dev);
3368}
3369
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003370static void valleyview_irq_preinstall(struct drm_device *dev)
3371{
Chris Wilsonfac5e232016-07-04 11:34:36 +01003372 struct drm_i915_private *dev_priv = to_i915(dev);
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003373
Ville Syrjälä34c7b8a2016-04-13 21:19:48 +03003374 I915_WRITE(VLV_MASTER_IER, 0);
3375 POSTING_READ(VLV_MASTER_IER);
3376
Paulo Zanoni7c4d6642014-04-01 15:37:19 -03003377 gen5_gt_irq_reset(dev);
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003378
Ville Syrjäläad22d102016-04-12 18:56:14 +03003379 spin_lock_irq(&dev_priv->irq_lock);
Ville Syrjälä99182712016-04-11 16:56:25 +03003380 if (dev_priv->display_irqs_enabled)
3381 vlv_display_irq_reset(dev_priv);
Ville Syrjäläad22d102016-04-12 18:56:14 +03003382 spin_unlock_irq(&dev_priv->irq_lock);
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003383}
3384
Daniel Vetterd6e3cca2014-05-22 22:18:22 +02003385static void gen8_gt_irq_reset(struct drm_i915_private *dev_priv)
3386{
3387 GEN8_IRQ_RESET_NDX(GT, 0);
3388 GEN8_IRQ_RESET_NDX(GT, 1);
3389 GEN8_IRQ_RESET_NDX(GT, 2);
3390 GEN8_IRQ_RESET_NDX(GT, 3);
3391}
3392
Paulo Zanoni823f6b32014-04-01 15:37:26 -03003393static void gen8_irq_reset(struct drm_device *dev)
Ben Widawskyabd58f02013-11-02 21:07:09 -07003394{
Chris Wilsonfac5e232016-07-04 11:34:36 +01003395 struct drm_i915_private *dev_priv = to_i915(dev);
Ben Widawskyabd58f02013-11-02 21:07:09 -07003396 int pipe;
3397
Ben Widawskyabd58f02013-11-02 21:07:09 -07003398 I915_WRITE(GEN8_MASTER_IRQ, 0);
3399 POSTING_READ(GEN8_MASTER_IRQ);
3400
Daniel Vetterd6e3cca2014-05-22 22:18:22 +02003401 gen8_gt_irq_reset(dev_priv);
Ben Widawskyabd58f02013-11-02 21:07:09 -07003402
Damien Lespiau055e3932014-08-18 13:49:10 +01003403 for_each_pipe(dev_priv, pipe)
Daniel Vetterf458ebb2014-09-30 10:56:39 +02003404 if (intel_display_power_is_enabled(dev_priv,
3405 POWER_DOMAIN_PIPE(pipe)))
Paulo Zanoni813bde42014-07-04 11:50:29 -03003406 GEN8_IRQ_RESET_NDX(DE_PIPE, pipe);
Ben Widawskyabd58f02013-11-02 21:07:09 -07003407
Paulo Zanonif86f3fb2014-04-01 15:37:14 -03003408 GEN5_IRQ_RESET(GEN8_DE_PORT_);
3409 GEN5_IRQ_RESET(GEN8_DE_MISC_);
3410 GEN5_IRQ_RESET(GEN8_PCU_);
Ben Widawskyabd58f02013-11-02 21:07:09 -07003411
Tvrtko Ursulin6e266952016-10-13 11:02:53 +01003412 if (HAS_PCH_SPLIT(dev_priv))
Shashank Sharma266ea3d2014-08-22 17:40:42 +05303413 ibx_irq_reset(dev);
Ben Widawskyabd58f02013-11-02 21:07:09 -07003414}
Ben Widawskyabd58f02013-11-02 21:07:09 -07003415
Damien Lespiau4c6c03b2015-03-06 18:50:48 +00003416void gen8_irq_power_well_post_enable(struct drm_i915_private *dev_priv,
3417 unsigned int pipe_mask)
Paulo Zanonid49bdb02014-07-04 11:50:31 -03003418{
Paulo Zanoni1180e202014-10-07 18:02:52 -03003419 uint32_t extra_ier = GEN8_PIPE_VBLANK | GEN8_PIPE_FIFO_UNDERRUN;
Ville Syrjälä6831f3e2016-02-19 20:47:31 +02003420 enum pipe pipe;
Paulo Zanonid49bdb02014-07-04 11:50:31 -03003421
Daniel Vetter13321782014-09-15 14:55:29 +02003422 spin_lock_irq(&dev_priv->irq_lock);
Ville Syrjälä6831f3e2016-02-19 20:47:31 +02003423 for_each_pipe_masked(dev_priv, pipe, pipe_mask)
3424 GEN8_IRQ_INIT_NDX(DE_PIPE, pipe,
3425 dev_priv->de_irq_mask[pipe],
3426 ~dev_priv->de_irq_mask[pipe] | extra_ier);
Daniel Vetter13321782014-09-15 14:55:29 +02003427 spin_unlock_irq(&dev_priv->irq_lock);
Paulo Zanonid49bdb02014-07-04 11:50:31 -03003428}
3429
Ville Syrjäläaae8ba82016-02-19 20:47:30 +02003430void gen8_irq_power_well_pre_disable(struct drm_i915_private *dev_priv,
3431 unsigned int pipe_mask)
3432{
Ville Syrjälä6831f3e2016-02-19 20:47:31 +02003433 enum pipe pipe;
3434
Ville Syrjäläaae8ba82016-02-19 20:47:30 +02003435 spin_lock_irq(&dev_priv->irq_lock);
Ville Syrjälä6831f3e2016-02-19 20:47:31 +02003436 for_each_pipe_masked(dev_priv, pipe, pipe_mask)
3437 GEN8_IRQ_RESET_NDX(DE_PIPE, pipe);
Ville Syrjäläaae8ba82016-02-19 20:47:30 +02003438 spin_unlock_irq(&dev_priv->irq_lock);
3439
3440 /* make sure we're done processing display irqs */
Chris Wilson91c8a322016-07-05 10:40:23 +01003441 synchronize_irq(dev_priv->drm.irq);
Ville Syrjäläaae8ba82016-02-19 20:47:30 +02003442}
3443
Ville Syrjälä43f328d2014-04-09 20:40:52 +03003444static void cherryview_irq_preinstall(struct drm_device *dev)
3445{
Chris Wilsonfac5e232016-07-04 11:34:36 +01003446 struct drm_i915_private *dev_priv = to_i915(dev);
Ville Syrjälä43f328d2014-04-09 20:40:52 +03003447
3448 I915_WRITE(GEN8_MASTER_IRQ, 0);
3449 POSTING_READ(GEN8_MASTER_IRQ);
3450
Daniel Vetterd6e3cca2014-05-22 22:18:22 +02003451 gen8_gt_irq_reset(dev_priv);
Ville Syrjälä43f328d2014-04-09 20:40:52 +03003452
3453 GEN5_IRQ_RESET(GEN8_PCU_);
3454
Ville Syrjäläad22d102016-04-12 18:56:14 +03003455 spin_lock_irq(&dev_priv->irq_lock);
Ville Syrjälä99182712016-04-11 16:56:25 +03003456 if (dev_priv->display_irqs_enabled)
3457 vlv_display_irq_reset(dev_priv);
Ville Syrjäläad22d102016-04-12 18:56:14 +03003458 spin_unlock_irq(&dev_priv->irq_lock);
Ville Syrjälä43f328d2014-04-09 20:40:52 +03003459}
3460
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01003461static u32 intel_hpd_enabled_irqs(struct drm_i915_private *dev_priv,
Ville Syrjälä87a02102015-08-27 23:55:57 +03003462 const u32 hpd[HPD_NUM_PINS])
3463{
Ville Syrjälä87a02102015-08-27 23:55:57 +03003464 struct intel_encoder *encoder;
3465 u32 enabled_irqs = 0;
3466
Chris Wilson91c8a322016-07-05 10:40:23 +01003467 for_each_intel_encoder(&dev_priv->drm, encoder)
Ville Syrjälä87a02102015-08-27 23:55:57 +03003468 if (dev_priv->hotplug.stats[encoder->hpd_pin].state == HPD_ENABLED)
3469 enabled_irqs |= hpd[encoder->hpd_pin];
3470
3471 return enabled_irqs;
3472}
3473
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01003474static void ibx_hpd_irq_setup(struct drm_i915_private *dev_priv)
Keith Packard7fe0b972011-09-19 13:31:02 -07003475{
Ville Syrjälä87a02102015-08-27 23:55:57 +03003476 u32 hotplug_irqs, hotplug, enabled_irqs;
Keith Packard7fe0b972011-09-19 13:31:02 -07003477
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01003478 if (HAS_PCH_IBX(dev_priv)) {
Daniel Vetterfee884e2013-07-04 23:35:21 +02003479 hotplug_irqs = SDE_HOTPLUG_MASK;
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01003480 enabled_irqs = intel_hpd_enabled_irqs(dev_priv, hpd_ibx);
Daniel Vetter82a28bc2013-03-27 15:55:01 +01003481 } else {
Daniel Vetterfee884e2013-07-04 23:35:21 +02003482 hotplug_irqs = SDE_HOTPLUG_MASK_CPT;
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01003483 enabled_irqs = intel_hpd_enabled_irqs(dev_priv, hpd_cpt);
Daniel Vetter82a28bc2013-03-27 15:55:01 +01003484 }
3485
Daniel Vetterfee884e2013-07-04 23:35:21 +02003486 ibx_display_interrupt_update(dev_priv, hotplug_irqs, enabled_irqs);
Daniel Vetter82a28bc2013-03-27 15:55:01 +01003487
3488 /*
3489 * Enable digital hotplug on the PCH, and configure the DP short pulse
Ville Syrjälä6dbf30c2015-08-27 23:56:02 +03003490 * duration to 2ms (which is the minimum in the Display Port spec).
3491 * The pulse duration bits are reserved on LPT+.
Daniel Vetter82a28bc2013-03-27 15:55:01 +01003492 */
Keith Packard7fe0b972011-09-19 13:31:02 -07003493 hotplug = I915_READ(PCH_PORT_HOTPLUG);
3494 hotplug &= ~(PORTD_PULSE_DURATION_MASK|PORTC_PULSE_DURATION_MASK|PORTB_PULSE_DURATION_MASK);
3495 hotplug |= PORTD_HOTPLUG_ENABLE | PORTD_PULSE_DURATION_2ms;
3496 hotplug |= PORTC_HOTPLUG_ENABLE | PORTC_PULSE_DURATION_2ms;
3497 hotplug |= PORTB_HOTPLUG_ENABLE | PORTB_PULSE_DURATION_2ms;
Ville Syrjälä0b2eb332015-08-27 23:56:05 +03003498 /*
3499 * When CPU and PCH are on the same package, port A
3500 * HPD must be enabled in both north and south.
3501 */
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01003502 if (HAS_PCH_LPT_LP(dev_priv))
Ville Syrjälä0b2eb332015-08-27 23:56:05 +03003503 hotplug |= PORTA_HOTPLUG_ENABLE;
Keith Packard7fe0b972011-09-19 13:31:02 -07003504 I915_WRITE(PCH_PORT_HOTPLUG, hotplug);
Ville Syrjälä6dbf30c2015-08-27 23:56:02 +03003505}
Xiong Zhang26951ca2015-08-17 15:55:50 +08003506
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01003507static void spt_hpd_irq_setup(struct drm_i915_private *dev_priv)
Ville Syrjälä6dbf30c2015-08-27 23:56:02 +03003508{
Ville Syrjälä6dbf30c2015-08-27 23:56:02 +03003509 u32 hotplug_irqs, hotplug, enabled_irqs;
3510
3511 hotplug_irqs = SDE_HOTPLUG_MASK_SPT;
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01003512 enabled_irqs = intel_hpd_enabled_irqs(dev_priv, hpd_spt);
Ville Syrjälä6dbf30c2015-08-27 23:56:02 +03003513
3514 ibx_display_interrupt_update(dev_priv, hotplug_irqs, enabled_irqs);
3515
3516 /* Enable digital hotplug on the PCH */
3517 hotplug = I915_READ(PCH_PORT_HOTPLUG);
3518 hotplug |= PORTD_HOTPLUG_ENABLE | PORTC_HOTPLUG_ENABLE |
Ville Syrjälä74c0b392015-08-27 23:56:07 +03003519 PORTB_HOTPLUG_ENABLE | PORTA_HOTPLUG_ENABLE;
Ville Syrjälä6dbf30c2015-08-27 23:56:02 +03003520 I915_WRITE(PCH_PORT_HOTPLUG, hotplug);
3521
3522 hotplug = I915_READ(PCH_PORT_HOTPLUG2);
3523 hotplug |= PORTE_HOTPLUG_ENABLE;
3524 I915_WRITE(PCH_PORT_HOTPLUG2, hotplug);
Keith Packard7fe0b972011-09-19 13:31:02 -07003525}
3526
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01003527static void ilk_hpd_irq_setup(struct drm_i915_private *dev_priv)
Ville Syrjäläe4ce95a2015-08-27 23:56:03 +03003528{
Ville Syrjäläe4ce95a2015-08-27 23:56:03 +03003529 u32 hotplug_irqs, hotplug, enabled_irqs;
3530
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01003531 if (INTEL_GEN(dev_priv) >= 8) {
Ville Syrjälä3a3b3c72015-08-27 23:56:06 +03003532 hotplug_irqs = GEN8_PORT_DP_A_HOTPLUG;
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01003533 enabled_irqs = intel_hpd_enabled_irqs(dev_priv, hpd_bdw);
Ville Syrjälä3a3b3c72015-08-27 23:56:06 +03003534
3535 bdw_update_port_irq(dev_priv, hotplug_irqs, enabled_irqs);
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01003536 } else if (INTEL_GEN(dev_priv) >= 7) {
Ville Syrjälä23bb4cb2015-08-27 23:56:04 +03003537 hotplug_irqs = DE_DP_A_HOTPLUG_IVB;
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01003538 enabled_irqs = intel_hpd_enabled_irqs(dev_priv, hpd_ivb);
Ville Syrjälä3a3b3c72015-08-27 23:56:06 +03003539
3540 ilk_update_display_irq(dev_priv, hotplug_irqs, enabled_irqs);
Ville Syrjälä23bb4cb2015-08-27 23:56:04 +03003541 } else {
3542 hotplug_irqs = DE_DP_A_HOTPLUG;
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01003543 enabled_irqs = intel_hpd_enabled_irqs(dev_priv, hpd_ilk);
Ville Syrjäläe4ce95a2015-08-27 23:56:03 +03003544
Ville Syrjälä3a3b3c72015-08-27 23:56:06 +03003545 ilk_update_display_irq(dev_priv, hotplug_irqs, enabled_irqs);
3546 }
Ville Syrjäläe4ce95a2015-08-27 23:56:03 +03003547
3548 /*
3549 * Enable digital hotplug on the CPU, and configure the DP short pulse
3550 * duration to 2ms (which is the minimum in the Display Port spec)
Ville Syrjälä23bb4cb2015-08-27 23:56:04 +03003551 * The pulse duration bits are reserved on HSW+.
Ville Syrjäläe4ce95a2015-08-27 23:56:03 +03003552 */
3553 hotplug = I915_READ(DIGITAL_PORT_HOTPLUG_CNTRL);
3554 hotplug &= ~DIGITAL_PORTA_PULSE_DURATION_MASK;
3555 hotplug |= DIGITAL_PORTA_HOTPLUG_ENABLE | DIGITAL_PORTA_PULSE_DURATION_2ms;
3556 I915_WRITE(DIGITAL_PORT_HOTPLUG_CNTRL, hotplug);
3557
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01003558 ibx_hpd_irq_setup(dev_priv);
Ville Syrjäläe4ce95a2015-08-27 23:56:03 +03003559}
3560
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01003561static void bxt_hpd_irq_setup(struct drm_i915_private *dev_priv)
Shashank Sharmae0a20ad2015-03-27 14:54:14 +02003562{
Ville Syrjäläa52bb152015-08-27 23:56:11 +03003563 u32 hotplug_irqs, hotplug, enabled_irqs;
Shashank Sharmae0a20ad2015-03-27 14:54:14 +02003564
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01003565 enabled_irqs = intel_hpd_enabled_irqs(dev_priv, hpd_bxt);
Ville Syrjäläa52bb152015-08-27 23:56:11 +03003566 hotplug_irqs = BXT_DE_PORT_HOTPLUG_MASK;
Shashank Sharmae0a20ad2015-03-27 14:54:14 +02003567
Ville Syrjäläa52bb152015-08-27 23:56:11 +03003568 bdw_update_port_irq(dev_priv, hotplug_irqs, enabled_irqs);
Shashank Sharmae0a20ad2015-03-27 14:54:14 +02003569
Ville Syrjäläa52bb152015-08-27 23:56:11 +03003570 hotplug = I915_READ(PCH_PORT_HOTPLUG);
3571 hotplug |= PORTC_HOTPLUG_ENABLE | PORTB_HOTPLUG_ENABLE |
3572 PORTA_HOTPLUG_ENABLE;
Shubhangi Shrivastavad252bf62016-03-31 16:11:47 +05303573
3574 DRM_DEBUG_KMS("Invert bit setting: hp_ctl:%x hp_port:%x\n",
3575 hotplug, enabled_irqs);
3576 hotplug &= ~BXT_DDI_HPD_INVERT_MASK;
3577
3578 /*
3579 * For BXT invert bit has to be set based on AOB design
3580 * for HPD detection logic, update it based on VBT fields.
3581 */
3582
3583 if ((enabled_irqs & BXT_DE_PORT_HP_DDIA) &&
3584 intel_bios_is_port_hpd_inverted(dev_priv, PORT_A))
3585 hotplug |= BXT_DDIA_HPD_INVERT;
3586 if ((enabled_irqs & BXT_DE_PORT_HP_DDIB) &&
3587 intel_bios_is_port_hpd_inverted(dev_priv, PORT_B))
3588 hotplug |= BXT_DDIB_HPD_INVERT;
3589 if ((enabled_irqs & BXT_DE_PORT_HP_DDIC) &&
3590 intel_bios_is_port_hpd_inverted(dev_priv, PORT_C))
3591 hotplug |= BXT_DDIC_HPD_INVERT;
3592
Ville Syrjäläa52bb152015-08-27 23:56:11 +03003593 I915_WRITE(PCH_PORT_HOTPLUG, hotplug);
Shashank Sharmae0a20ad2015-03-27 14:54:14 +02003594}
3595
Paulo Zanonid46da432013-02-08 17:35:15 -02003596static void ibx_irq_postinstall(struct drm_device *dev)
3597{
Chris Wilsonfac5e232016-07-04 11:34:36 +01003598 struct drm_i915_private *dev_priv = to_i915(dev);
Daniel Vetter82a28bc2013-03-27 15:55:01 +01003599 u32 mask;
Paulo Zanonid46da432013-02-08 17:35:15 -02003600
Tvrtko Ursulin6e266952016-10-13 11:02:53 +01003601 if (HAS_PCH_NOP(dev_priv))
Daniel Vetter692a04c2013-05-29 21:43:05 +02003602 return;
3603
Tvrtko Ursulin6e266952016-10-13 11:02:53 +01003604 if (HAS_PCH_IBX(dev_priv))
Daniel Vetter5c673b62014-03-07 20:34:46 +01003605 mask = SDE_GMBUS | SDE_AUX_MASK | SDE_POISON;
Paulo Zanoni105b1222014-04-01 15:37:17 -03003606 else
Daniel Vetter5c673b62014-03-07 20:34:46 +01003607 mask = SDE_GMBUS_CPT | SDE_AUX_MASK_CPT;
Paulo Zanoni86642812013-04-12 17:57:57 -03003608
Ville Syrjäläb51a2842015-09-18 20:03:41 +03003609 gen5_assert_iir_is_zero(dev_priv, SDEIIR);
Paulo Zanonid46da432013-02-08 17:35:15 -02003610 I915_WRITE(SDEIMR, ~mask);
Paulo Zanonid46da432013-02-08 17:35:15 -02003611}
3612
Daniel Vetter0a9a8c92013-07-12 22:43:26 +02003613static void gen5_gt_irq_postinstall(struct drm_device *dev)
3614{
Chris Wilsonfac5e232016-07-04 11:34:36 +01003615 struct drm_i915_private *dev_priv = to_i915(dev);
Daniel Vetter0a9a8c92013-07-12 22:43:26 +02003616 u32 pm_irqs, gt_irqs;
3617
3618 pm_irqs = gt_irqs = 0;
3619
3620 dev_priv->gt_irq_mask = ~0;
Tvrtko Ursulin3c9192b2016-10-13 11:03:05 +01003621 if (HAS_L3_DPF(dev_priv)) {
Daniel Vetter0a9a8c92013-07-12 22:43:26 +02003622 /* L3 parity interrupt is always unmasked. */
Tvrtko Ursulin772c2a52016-10-13 11:03:01 +01003623 dev_priv->gt_irq_mask = ~GT_PARITY_ERROR(dev_priv);
3624 gt_irqs |= GT_PARITY_ERROR(dev_priv);
Daniel Vetter0a9a8c92013-07-12 22:43:26 +02003625 }
3626
3627 gt_irqs |= GT_RENDER_USER_INTERRUPT;
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01003628 if (IS_GEN5(dev_priv)) {
Chris Wilsonf8973c22016-07-01 17:23:21 +01003629 gt_irqs |= ILK_BSD_USER_INTERRUPT;
Daniel Vetter0a9a8c92013-07-12 22:43:26 +02003630 } else {
3631 gt_irqs |= GT_BLT_USER_INTERRUPT | GT_BSD_USER_INTERRUPT;
3632 }
3633
Paulo Zanoni35079892014-04-01 15:37:15 -03003634 GEN5_IRQ_INIT(GT, dev_priv->gt_irq_mask, gt_irqs);
Daniel Vetter0a9a8c92013-07-12 22:43:26 +02003635
3636 if (INTEL_INFO(dev)->gen >= 6) {
Imre Deak78e68d32014-12-15 18:59:27 +02003637 /*
3638 * RPS interrupts will get enabled/disabled on demand when RPS
3639 * itself is enabled/disabled.
3640 */
Akash Goelf4e9af42016-10-12 21:54:30 +05303641 if (HAS_VEBOX(dev_priv)) {
Daniel Vetter0a9a8c92013-07-12 22:43:26 +02003642 pm_irqs |= PM_VEBOX_USER_INTERRUPT;
Akash Goelf4e9af42016-10-12 21:54:30 +05303643 dev_priv->pm_ier |= PM_VEBOX_USER_INTERRUPT;
3644 }
Daniel Vetter0a9a8c92013-07-12 22:43:26 +02003645
Akash Goelf4e9af42016-10-12 21:54:30 +05303646 dev_priv->pm_imr = 0xffffffff;
3647 GEN5_IRQ_INIT(GEN6_PM, dev_priv->pm_imr, pm_irqs);
Daniel Vetter0a9a8c92013-07-12 22:43:26 +02003648 }
3649}
3650
Jesse Barnesf71d4af2011-06-28 13:00:41 -07003651static int ironlake_irq_postinstall(struct drm_device *dev)
Zhenyu Wang036a4a72009-06-08 14:40:19 +08003652{
Chris Wilsonfac5e232016-07-04 11:34:36 +01003653 struct drm_i915_private *dev_priv = to_i915(dev);
Paulo Zanoni8e76f8d2013-07-12 20:01:56 -03003654 u32 display_mask, extra_mask;
3655
3656 if (INTEL_INFO(dev)->gen >= 7) {
3657 display_mask = (DE_MASTER_IRQ_CONTROL | DE_GSE_IVB |
3658 DE_PCH_EVENT_IVB | DE_PLANEC_FLIP_DONE_IVB |
3659 DE_PLANEB_FLIP_DONE_IVB |
Daniel Vetter5c673b62014-03-07 20:34:46 +01003660 DE_PLANEA_FLIP_DONE_IVB | DE_AUX_CHANNEL_A_IVB);
Paulo Zanoni8e76f8d2013-07-12 20:01:56 -03003661 extra_mask = (DE_PIPEC_VBLANK_IVB | DE_PIPEB_VBLANK_IVB |
Ville Syrjälä23bb4cb2015-08-27 23:56:04 +03003662 DE_PIPEA_VBLANK_IVB | DE_ERR_INT_IVB |
3663 DE_DP_A_HOTPLUG_IVB);
Paulo Zanoni8e76f8d2013-07-12 20:01:56 -03003664 } else {
3665 display_mask = (DE_MASTER_IRQ_CONTROL | DE_GSE | DE_PCH_EVENT |
3666 DE_PLANEA_FLIP_DONE | DE_PLANEB_FLIP_DONE |
Daniel Vetter5b3a8562013-10-16 22:55:48 +02003667 DE_AUX_CHANNEL_A |
Daniel Vetter5b3a8562013-10-16 22:55:48 +02003668 DE_PIPEB_CRC_DONE | DE_PIPEA_CRC_DONE |
3669 DE_POISON);
Ville Syrjäläe4ce95a2015-08-27 23:56:03 +03003670 extra_mask = (DE_PIPEA_VBLANK | DE_PIPEB_VBLANK | DE_PCU_EVENT |
3671 DE_PIPEB_FIFO_UNDERRUN | DE_PIPEA_FIFO_UNDERRUN |
3672 DE_DP_A_HOTPLUG);
Paulo Zanoni8e76f8d2013-07-12 20:01:56 -03003673 }
Zhenyu Wang036a4a72009-06-08 14:40:19 +08003674
Chris Wilson1ec14ad2010-12-04 11:30:53 +00003675 dev_priv->irq_mask = ~display_mask;
Zhenyu Wang036a4a72009-06-08 14:40:19 +08003676
Paulo Zanoni0c841212014-04-01 15:37:27 -03003677 I915_WRITE(HWSTAM, 0xeffe);
3678
Paulo Zanoni622364b2014-04-01 15:37:22 -03003679 ibx_irq_pre_postinstall(dev);
3680
Paulo Zanoni35079892014-04-01 15:37:15 -03003681 GEN5_IRQ_INIT(DE, dev_priv->irq_mask, display_mask | extra_mask);
Zhenyu Wang036a4a72009-06-08 14:40:19 +08003682
Daniel Vetter0a9a8c92013-07-12 22:43:26 +02003683 gen5_gt_irq_postinstall(dev);
Zhenyu Wang036a4a72009-06-08 14:40:19 +08003684
Paulo Zanonid46da432013-02-08 17:35:15 -02003685 ibx_irq_postinstall(dev);
Keith Packard7fe0b972011-09-19 13:31:02 -07003686
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +01003687 if (IS_IRONLAKE_M(dev_priv)) {
Daniel Vetter6005ce42013-06-27 13:44:59 +02003688 /* Enable PCU event interrupts
3689 *
3690 * spinlocking not required here for correctness since interrupt
Daniel Vetter4bc9d432013-06-27 13:44:58 +02003691 * setup is guaranteed to run in single-threaded context. But we
3692 * need it to make the assert_spin_locked happy. */
Daniel Vetterd6207432014-09-15 14:55:27 +02003693 spin_lock_irq(&dev_priv->irq_lock);
Ville Syrjäläfbdedaea2015-11-23 18:06:16 +02003694 ilk_enable_display_irq(dev_priv, DE_PCU_EVENT);
Daniel Vetterd6207432014-09-15 14:55:27 +02003695 spin_unlock_irq(&dev_priv->irq_lock);
Jesse Barnesf97108d2010-01-29 11:27:07 -08003696 }
3697
Zhenyu Wang036a4a72009-06-08 14:40:19 +08003698 return 0;
3699}
3700
Imre Deakf8b79e52014-03-04 19:23:07 +02003701void valleyview_enable_display_irqs(struct drm_i915_private *dev_priv)
3702{
3703 assert_spin_locked(&dev_priv->irq_lock);
3704
3705 if (dev_priv->display_irqs_enabled)
3706 return;
3707
3708 dev_priv->display_irqs_enabled = true;
3709
Ville Syrjäläd6c69802016-04-11 16:56:27 +03003710 if (intel_irqs_enabled(dev_priv)) {
3711 vlv_display_irq_reset(dev_priv);
Ville Syrjäläad22d102016-04-12 18:56:14 +03003712 vlv_display_irq_postinstall(dev_priv);
Ville Syrjäläd6c69802016-04-11 16:56:27 +03003713 }
Imre Deakf8b79e52014-03-04 19:23:07 +02003714}
3715
3716void valleyview_disable_display_irqs(struct drm_i915_private *dev_priv)
3717{
3718 assert_spin_locked(&dev_priv->irq_lock);
3719
3720 if (!dev_priv->display_irqs_enabled)
3721 return;
3722
3723 dev_priv->display_irqs_enabled = false;
3724
Imre Deak950eaba2014-09-08 15:21:09 +03003725 if (intel_irqs_enabled(dev_priv))
Ville Syrjäläad22d102016-04-12 18:56:14 +03003726 vlv_display_irq_reset(dev_priv);
Imre Deakf8b79e52014-03-04 19:23:07 +02003727}
3728
Ville Syrjälä0e6c9a92014-10-30 19:43:00 +02003729
3730static int valleyview_irq_postinstall(struct drm_device *dev)
3731{
Chris Wilsonfac5e232016-07-04 11:34:36 +01003732 struct drm_i915_private *dev_priv = to_i915(dev);
Ville Syrjälä0e6c9a92014-10-30 19:43:00 +02003733
Daniel Vetter0a9a8c92013-07-12 22:43:26 +02003734 gen5_gt_irq_postinstall(dev);
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003735
Ville Syrjäläad22d102016-04-12 18:56:14 +03003736 spin_lock_irq(&dev_priv->irq_lock);
Ville Syrjälä99182712016-04-11 16:56:25 +03003737 if (dev_priv->display_irqs_enabled)
3738 vlv_display_irq_postinstall(dev_priv);
Ville Syrjäläad22d102016-04-12 18:56:14 +03003739 spin_unlock_irq(&dev_priv->irq_lock);
3740
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003741 I915_WRITE(VLV_MASTER_IER, MASTER_INTERRUPT_ENABLE);
Ville Syrjälä34c7b8a2016-04-13 21:19:48 +03003742 POSTING_READ(VLV_MASTER_IER);
Daniel Vetter20afbda2012-12-11 14:05:07 +01003743
3744 return 0;
3745}
3746
Ben Widawskyabd58f02013-11-02 21:07:09 -07003747static void gen8_gt_irq_postinstall(struct drm_i915_private *dev_priv)
3748{
Ben Widawskyabd58f02013-11-02 21:07:09 -07003749 /* These are interrupts we'll toggle with the ring mask register */
3750 uint32_t gt_interrupts[] = {
3751 GT_RENDER_USER_INTERRUPT << GEN8_RCS_IRQ_SHIFT |
Oscar Mateo73d477f2014-07-24 17:04:31 +01003752 GT_CONTEXT_SWITCH_INTERRUPT << GEN8_RCS_IRQ_SHIFT |
Oscar Mateo73d477f2014-07-24 17:04:31 +01003753 GT_RENDER_USER_INTERRUPT << GEN8_BCS_IRQ_SHIFT |
3754 GT_CONTEXT_SWITCH_INTERRUPT << GEN8_BCS_IRQ_SHIFT,
Ben Widawskyabd58f02013-11-02 21:07:09 -07003755 GT_RENDER_USER_INTERRUPT << GEN8_VCS1_IRQ_SHIFT |
Oscar Mateo73d477f2014-07-24 17:04:31 +01003756 GT_CONTEXT_SWITCH_INTERRUPT << GEN8_VCS1_IRQ_SHIFT |
3757 GT_RENDER_USER_INTERRUPT << GEN8_VCS2_IRQ_SHIFT |
3758 GT_CONTEXT_SWITCH_INTERRUPT << GEN8_VCS2_IRQ_SHIFT,
Ben Widawskyabd58f02013-11-02 21:07:09 -07003759 0,
Oscar Mateo73d477f2014-07-24 17:04:31 +01003760 GT_RENDER_USER_INTERRUPT << GEN8_VECS_IRQ_SHIFT |
3761 GT_CONTEXT_SWITCH_INTERRUPT << GEN8_VECS_IRQ_SHIFT
Ben Widawskyabd58f02013-11-02 21:07:09 -07003762 };
3763
Tvrtko Ursulin98735732016-04-19 16:46:08 +01003764 if (HAS_L3_DPF(dev_priv))
3765 gt_interrupts[0] |= GT_RENDER_L3_PARITY_ERROR_INTERRUPT;
3766
Akash Goelf4e9af42016-10-12 21:54:30 +05303767 dev_priv->pm_ier = 0x0;
3768 dev_priv->pm_imr = ~dev_priv->pm_ier;
Deepak S9a2d2d82014-08-22 08:32:40 +05303769 GEN8_IRQ_INIT_NDX(GT, 0, ~gt_interrupts[0], gt_interrupts[0]);
3770 GEN8_IRQ_INIT_NDX(GT, 1, ~gt_interrupts[1], gt_interrupts[1]);
Imre Deak78e68d32014-12-15 18:59:27 +02003771 /*
3772 * RPS interrupts will get enabled/disabled on demand when RPS itself
Sagar Arun Kamble26705e22016-10-12 21:54:31 +05303773 * is enabled/disabled. Same wil be the case for GuC interrupts.
Imre Deak78e68d32014-12-15 18:59:27 +02003774 */
Akash Goelf4e9af42016-10-12 21:54:30 +05303775 GEN8_IRQ_INIT_NDX(GT, 2, dev_priv->pm_imr, dev_priv->pm_ier);
Deepak S9a2d2d82014-08-22 08:32:40 +05303776 GEN8_IRQ_INIT_NDX(GT, 3, ~gt_interrupts[3], gt_interrupts[3]);
Ben Widawskyabd58f02013-11-02 21:07:09 -07003777}
3778
3779static void gen8_de_irq_postinstall(struct drm_i915_private *dev_priv)
3780{
Damien Lespiau770de832014-03-20 20:45:01 +00003781 uint32_t de_pipe_masked = GEN8_PIPE_CDCLK_CRC_DONE;
3782 uint32_t de_pipe_enables;
Ville Syrjälä3a3b3c72015-08-27 23:56:06 +03003783 u32 de_port_masked = GEN8_AUX_CHANNEL_A;
3784 u32 de_port_enables;
Ville Syrjälä11825b02016-05-19 12:14:43 +03003785 u32 de_misc_masked = GEN8_DE_MISC_GSE;
Ville Syrjälä3a3b3c72015-08-27 23:56:06 +03003786 enum pipe pipe;
Damien Lespiau770de832014-03-20 20:45:01 +00003787
Rodrigo Vivib4834a52015-09-02 15:19:24 -07003788 if (INTEL_INFO(dev_priv)->gen >= 9) {
Damien Lespiau770de832014-03-20 20:45:01 +00003789 de_pipe_masked |= GEN9_PIPE_PLANE1_FLIP_DONE |
3790 GEN9_DE_PIPE_IRQ_FAULT_ERRORS;
Ville Syrjälä3a3b3c72015-08-27 23:56:06 +03003791 de_port_masked |= GEN9_AUX_CHANNEL_B | GEN9_AUX_CHANNEL_C |
3792 GEN9_AUX_CHANNEL_D;
Shashank Sharma9e637432014-08-22 17:40:43 +05303793 if (IS_BROXTON(dev_priv))
Ville Syrjälä3a3b3c72015-08-27 23:56:06 +03003794 de_port_masked |= BXT_DE_PORT_GMBUS;
3795 } else {
Damien Lespiau770de832014-03-20 20:45:01 +00003796 de_pipe_masked |= GEN8_PIPE_PRIMARY_FLIP_DONE |
3797 GEN8_DE_PIPE_IRQ_FAULT_ERRORS;
Ville Syrjälä3a3b3c72015-08-27 23:56:06 +03003798 }
Damien Lespiau770de832014-03-20 20:45:01 +00003799
3800 de_pipe_enables = de_pipe_masked | GEN8_PIPE_VBLANK |
3801 GEN8_PIPE_FIFO_UNDERRUN;
3802
Ville Syrjälä3a3b3c72015-08-27 23:56:06 +03003803 de_port_enables = de_port_masked;
Ville Syrjäläa52bb152015-08-27 23:56:11 +03003804 if (IS_BROXTON(dev_priv))
3805 de_port_enables |= BXT_DE_PORT_HOTPLUG_MASK;
3806 else if (IS_BROADWELL(dev_priv))
Ville Syrjälä3a3b3c72015-08-27 23:56:06 +03003807 de_port_enables |= GEN8_PORT_DP_A_HOTPLUG;
3808
Daniel Vetter13b3a0a2013-11-07 15:31:52 +01003809 dev_priv->de_irq_mask[PIPE_A] = ~de_pipe_masked;
3810 dev_priv->de_irq_mask[PIPE_B] = ~de_pipe_masked;
3811 dev_priv->de_irq_mask[PIPE_C] = ~de_pipe_masked;
Ben Widawskyabd58f02013-11-02 21:07:09 -07003812
Damien Lespiau055e3932014-08-18 13:49:10 +01003813 for_each_pipe(dev_priv, pipe)
Daniel Vetterf458ebb2014-09-30 10:56:39 +02003814 if (intel_display_power_is_enabled(dev_priv,
Paulo Zanoni813bde42014-07-04 11:50:29 -03003815 POWER_DOMAIN_PIPE(pipe)))
3816 GEN8_IRQ_INIT_NDX(DE_PIPE, pipe,
3817 dev_priv->de_irq_mask[pipe],
3818 de_pipe_enables);
Ben Widawskyabd58f02013-11-02 21:07:09 -07003819
Ville Syrjälä3a3b3c72015-08-27 23:56:06 +03003820 GEN5_IRQ_INIT(GEN8_DE_PORT_, ~de_port_masked, de_port_enables);
Ville Syrjälä11825b02016-05-19 12:14:43 +03003821 GEN5_IRQ_INIT(GEN8_DE_MISC_, ~de_misc_masked, de_misc_masked);
Ben Widawskyabd58f02013-11-02 21:07:09 -07003822}
3823
3824static int gen8_irq_postinstall(struct drm_device *dev)
3825{
Chris Wilsonfac5e232016-07-04 11:34:36 +01003826 struct drm_i915_private *dev_priv = to_i915(dev);
Ben Widawskyabd58f02013-11-02 21:07:09 -07003827
Tvrtko Ursulin6e266952016-10-13 11:02:53 +01003828 if (HAS_PCH_SPLIT(dev_priv))
Shashank Sharma266ea3d2014-08-22 17:40:42 +05303829 ibx_irq_pre_postinstall(dev);
Paulo Zanoni622364b2014-04-01 15:37:22 -03003830
Ben Widawskyabd58f02013-11-02 21:07:09 -07003831 gen8_gt_irq_postinstall(dev_priv);
3832 gen8_de_irq_postinstall(dev_priv);
3833
Tvrtko Ursulin6e266952016-10-13 11:02:53 +01003834 if (HAS_PCH_SPLIT(dev_priv))
Shashank Sharma266ea3d2014-08-22 17:40:42 +05303835 ibx_irq_postinstall(dev);
Ben Widawskyabd58f02013-11-02 21:07:09 -07003836
Ville Syrjäläe5328c42016-04-13 21:19:47 +03003837 I915_WRITE(GEN8_MASTER_IRQ, GEN8_MASTER_IRQ_CONTROL);
Ben Widawskyabd58f02013-11-02 21:07:09 -07003838 POSTING_READ(GEN8_MASTER_IRQ);
3839
3840 return 0;
3841}
3842
Ville Syrjälä43f328d2014-04-09 20:40:52 +03003843static int cherryview_irq_postinstall(struct drm_device *dev)
3844{
Chris Wilsonfac5e232016-07-04 11:34:36 +01003845 struct drm_i915_private *dev_priv = to_i915(dev);
Ville Syrjälä43f328d2014-04-09 20:40:52 +03003846
Ville Syrjälä43f328d2014-04-09 20:40:52 +03003847 gen8_gt_irq_postinstall(dev_priv);
3848
Ville Syrjäläad22d102016-04-12 18:56:14 +03003849 spin_lock_irq(&dev_priv->irq_lock);
Ville Syrjälä99182712016-04-11 16:56:25 +03003850 if (dev_priv->display_irqs_enabled)
3851 vlv_display_irq_postinstall(dev_priv);
Ville Syrjäläad22d102016-04-12 18:56:14 +03003852 spin_unlock_irq(&dev_priv->irq_lock);
3853
Ville Syrjäläe5328c42016-04-13 21:19:47 +03003854 I915_WRITE(GEN8_MASTER_IRQ, GEN8_MASTER_IRQ_CONTROL);
Ville Syrjälä43f328d2014-04-09 20:40:52 +03003855 POSTING_READ(GEN8_MASTER_IRQ);
3856
3857 return 0;
3858}
3859
Ben Widawskyabd58f02013-11-02 21:07:09 -07003860static void gen8_irq_uninstall(struct drm_device *dev)
3861{
Chris Wilsonfac5e232016-07-04 11:34:36 +01003862 struct drm_i915_private *dev_priv = to_i915(dev);
Ben Widawskyabd58f02013-11-02 21:07:09 -07003863
3864 if (!dev_priv)
3865 return;
3866
Paulo Zanoni823f6b32014-04-01 15:37:26 -03003867 gen8_irq_reset(dev);
Ben Widawskyabd58f02013-11-02 21:07:09 -07003868}
3869
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003870static void valleyview_irq_uninstall(struct drm_device *dev)
3871{
Chris Wilsonfac5e232016-07-04 11:34:36 +01003872 struct drm_i915_private *dev_priv = to_i915(dev);
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003873
3874 if (!dev_priv)
3875 return;
3876
Imre Deak843d0e72014-04-14 20:24:23 +03003877 I915_WRITE(VLV_MASTER_IER, 0);
Ville Syrjälä34c7b8a2016-04-13 21:19:48 +03003878 POSTING_READ(VLV_MASTER_IER);
Imre Deak843d0e72014-04-14 20:24:23 +03003879
Ville Syrjälä893fce82014-10-30 19:42:56 +02003880 gen5_gt_irq_reset(dev);
3881
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003882 I915_WRITE(HWSTAM, 0xffffffff);
Imre Deakf8b79e52014-03-04 19:23:07 +02003883
Ville Syrjäläad22d102016-04-12 18:56:14 +03003884 spin_lock_irq(&dev_priv->irq_lock);
Ville Syrjälä99182712016-04-11 16:56:25 +03003885 if (dev_priv->display_irqs_enabled)
3886 vlv_display_irq_reset(dev_priv);
Ville Syrjäläad22d102016-04-12 18:56:14 +03003887 spin_unlock_irq(&dev_priv->irq_lock);
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003888}
3889
Ville Syrjälä43f328d2014-04-09 20:40:52 +03003890static void cherryview_irq_uninstall(struct drm_device *dev)
3891{
Chris Wilsonfac5e232016-07-04 11:34:36 +01003892 struct drm_i915_private *dev_priv = to_i915(dev);
Ville Syrjälä43f328d2014-04-09 20:40:52 +03003893
3894 if (!dev_priv)
3895 return;
3896
3897 I915_WRITE(GEN8_MASTER_IRQ, 0);
3898 POSTING_READ(GEN8_MASTER_IRQ);
3899
Ville Syrjäläa2c30fb2014-10-30 19:42:52 +02003900 gen8_gt_irq_reset(dev_priv);
Ville Syrjälä43f328d2014-04-09 20:40:52 +03003901
Ville Syrjäläa2c30fb2014-10-30 19:42:52 +02003902 GEN5_IRQ_RESET(GEN8_PCU_);
Ville Syrjälä43f328d2014-04-09 20:40:52 +03003903
Ville Syrjäläad22d102016-04-12 18:56:14 +03003904 spin_lock_irq(&dev_priv->irq_lock);
Ville Syrjälä99182712016-04-11 16:56:25 +03003905 if (dev_priv->display_irqs_enabled)
3906 vlv_display_irq_reset(dev_priv);
Ville Syrjäläad22d102016-04-12 18:56:14 +03003907 spin_unlock_irq(&dev_priv->irq_lock);
Ville Syrjälä43f328d2014-04-09 20:40:52 +03003908}
3909
Jesse Barnesf71d4af2011-06-28 13:00:41 -07003910static void ironlake_irq_uninstall(struct drm_device *dev)
Zhenyu Wang036a4a72009-06-08 14:40:19 +08003911{
Chris Wilsonfac5e232016-07-04 11:34:36 +01003912 struct drm_i915_private *dev_priv = to_i915(dev);
Jesse Barnes46979952011-04-07 13:53:55 -07003913
3914 if (!dev_priv)
3915 return;
3916
Paulo Zanonibe30b292014-04-01 15:37:25 -03003917 ironlake_irq_reset(dev);
Zhenyu Wang036a4a72009-06-08 14:40:19 +08003918}
3919
Chris Wilsonc2798b12012-04-22 21:13:57 +01003920static void i8xx_irq_preinstall(struct drm_device * dev)
3921{
Chris Wilsonfac5e232016-07-04 11:34:36 +01003922 struct drm_i915_private *dev_priv = to_i915(dev);
Chris Wilsonc2798b12012-04-22 21:13:57 +01003923 int pipe;
3924
Damien Lespiau055e3932014-08-18 13:49:10 +01003925 for_each_pipe(dev_priv, pipe)
Chris Wilsonc2798b12012-04-22 21:13:57 +01003926 I915_WRITE(PIPESTAT(pipe), 0);
3927 I915_WRITE16(IMR, 0xffff);
3928 I915_WRITE16(IER, 0x0);
3929 POSTING_READ16(IER);
3930}
3931
3932static int i8xx_irq_postinstall(struct drm_device *dev)
3933{
Chris Wilsonfac5e232016-07-04 11:34:36 +01003934 struct drm_i915_private *dev_priv = to_i915(dev);
Chris Wilsonc2798b12012-04-22 21:13:57 +01003935
Chris Wilsonc2798b12012-04-22 21:13:57 +01003936 I915_WRITE16(EMR,
3937 ~(I915_ERROR_PAGE_TABLE | I915_ERROR_MEMORY_REFRESH));
3938
3939 /* Unmask the interrupts that we always want on. */
3940 dev_priv->irq_mask =
3941 ~(I915_DISPLAY_PIPE_A_EVENT_INTERRUPT |
3942 I915_DISPLAY_PIPE_B_EVENT_INTERRUPT |
3943 I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT |
Daniel Vetter37ef01a2015-04-01 13:43:46 +02003944 I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT);
Chris Wilsonc2798b12012-04-22 21:13:57 +01003945 I915_WRITE16(IMR, dev_priv->irq_mask);
3946
3947 I915_WRITE16(IER,
3948 I915_DISPLAY_PIPE_A_EVENT_INTERRUPT |
3949 I915_DISPLAY_PIPE_B_EVENT_INTERRUPT |
Chris Wilsonc2798b12012-04-22 21:13:57 +01003950 I915_USER_INTERRUPT);
3951 POSTING_READ16(IER);
3952
Daniel Vetter379ef822013-10-16 22:55:56 +02003953 /* Interrupt setup is already guaranteed to be single-threaded, this is
3954 * just to make the assert_spin_locked check happy. */
Daniel Vetterd6207432014-09-15 14:55:27 +02003955 spin_lock_irq(&dev_priv->irq_lock);
Imre Deak755e9012014-02-10 18:42:47 +02003956 i915_enable_pipestat(dev_priv, PIPE_A, PIPE_CRC_DONE_INTERRUPT_STATUS);
3957 i915_enable_pipestat(dev_priv, PIPE_B, PIPE_CRC_DONE_INTERRUPT_STATUS);
Daniel Vetterd6207432014-09-15 14:55:27 +02003958 spin_unlock_irq(&dev_priv->irq_lock);
Daniel Vetter379ef822013-10-16 22:55:56 +02003959
Chris Wilsonc2798b12012-04-22 21:13:57 +01003960 return 0;
3961}
3962
Daniel Vetter5a21b662016-05-24 17:13:53 +02003963/*
3964 * Returns true when a page flip has completed.
3965 */
3966static bool i8xx_handle_vblank(struct drm_i915_private *dev_priv,
3967 int plane, int pipe, u32 iir)
3968{
3969 u16 flip_pending = DISPLAY_PLANE_FLIP_PENDING(plane);
3970
3971 if (!intel_pipe_handle_vblank(dev_priv, pipe))
3972 return false;
3973
3974 if ((iir & flip_pending) == 0)
3975 goto check_page_flip;
3976
3977 /* We detect FlipDone by looking for the change in PendingFlip from '1'
3978 * to '0' on the following vblank, i.e. IIR has the Pendingflip
3979 * asserted following the MI_DISPLAY_FLIP, but ISR is deasserted, hence
3980 * the flip is completed (no longer pending). Since this doesn't raise
3981 * an interrupt per se, we watch for the change at vblank.
3982 */
3983 if (I915_READ16(ISR) & flip_pending)
3984 goto check_page_flip;
3985
3986 intel_finish_page_flip_cs(dev_priv, pipe);
3987 return true;
3988
3989check_page_flip:
3990 intel_check_page_flip(dev_priv, pipe);
3991 return false;
3992}
3993
Daniel Vetterff1f5252012-10-02 15:10:55 +02003994static irqreturn_t i8xx_irq_handler(int irq, void *arg)
Chris Wilsonc2798b12012-04-22 21:13:57 +01003995{
Daniel Vetter45a83f82014-05-12 19:17:55 +02003996 struct drm_device *dev = arg;
Chris Wilsonfac5e232016-07-04 11:34:36 +01003997 struct drm_i915_private *dev_priv = to_i915(dev);
Chris Wilsonc2798b12012-04-22 21:13:57 +01003998 u16 iir, new_iir;
3999 u32 pipe_stats[2];
Chris Wilsonc2798b12012-04-22 21:13:57 +01004000 int pipe;
4001 u16 flip_mask =
4002 I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT |
4003 I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT;
Imre Deak1f814da2015-12-16 02:52:19 +02004004 irqreturn_t ret;
Chris Wilsonc2798b12012-04-22 21:13:57 +01004005
Imre Deak2dd2a882015-02-24 11:14:30 +02004006 if (!intel_irqs_enabled(dev_priv))
4007 return IRQ_NONE;
4008
Imre Deak1f814da2015-12-16 02:52:19 +02004009 /* IRQs are synced during runtime_suspend, we don't require a wakeref */
4010 disable_rpm_wakeref_asserts(dev_priv);
4011
4012 ret = IRQ_NONE;
Chris Wilsonc2798b12012-04-22 21:13:57 +01004013 iir = I915_READ16(IIR);
4014 if (iir == 0)
Imre Deak1f814da2015-12-16 02:52:19 +02004015 goto out;
Chris Wilsonc2798b12012-04-22 21:13:57 +01004016
4017 while (iir & ~flip_mask) {
4018 /* Can't rely on pipestat interrupt bit in iir as it might
4019 * have been cleared after the pipestat interrupt was received.
4020 * It doesn't set the bit in iir again, but it still produces
4021 * interrupts (for non-MSI).
4022 */
Daniel Vetter222c7f52014-09-15 14:55:28 +02004023 spin_lock(&dev_priv->irq_lock);
Chris Wilsonc2798b12012-04-22 21:13:57 +01004024 if (iir & I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT)
Daniel Vetteraaecdf62014-11-04 15:52:22 +01004025 DRM_DEBUG("Command parser error, iir 0x%08x\n", iir);
Chris Wilsonc2798b12012-04-22 21:13:57 +01004026
Damien Lespiau055e3932014-08-18 13:49:10 +01004027 for_each_pipe(dev_priv, pipe) {
Ville Syrjäläf0f59a02015-11-18 15:33:26 +02004028 i915_reg_t reg = PIPESTAT(pipe);
Chris Wilsonc2798b12012-04-22 21:13:57 +01004029 pipe_stats[pipe] = I915_READ(reg);
4030
4031 /*
4032 * Clear the PIPE*STAT regs before the IIR
4033 */
Ville Syrjälä2d9d2b02014-01-17 11:44:31 +02004034 if (pipe_stats[pipe] & 0x8000ffff)
Chris Wilsonc2798b12012-04-22 21:13:57 +01004035 I915_WRITE(reg, pipe_stats[pipe]);
Chris Wilsonc2798b12012-04-22 21:13:57 +01004036 }
Daniel Vetter222c7f52014-09-15 14:55:28 +02004037 spin_unlock(&dev_priv->irq_lock);
Chris Wilsonc2798b12012-04-22 21:13:57 +01004038
4039 I915_WRITE16(IIR, iir & ~flip_mask);
4040 new_iir = I915_READ16(IIR); /* Flush posted writes */
4041
Chris Wilsonc2798b12012-04-22 21:13:57 +01004042 if (iir & I915_USER_INTERRUPT)
Akash Goel3b3f1652016-10-13 22:44:48 +05304043 notify_ring(dev_priv->engine[RCS]);
Chris Wilsonc2798b12012-04-22 21:13:57 +01004044
Damien Lespiau055e3932014-08-18 13:49:10 +01004045 for_each_pipe(dev_priv, pipe) {
Daniel Vetter5a21b662016-05-24 17:13:53 +02004046 int plane = pipe;
4047 if (HAS_FBC(dev_priv))
4048 plane = !plane;
4049
4050 if (pipe_stats[pipe] & PIPE_VBLANK_INTERRUPT_STATUS &&
4051 i8xx_handle_vblank(dev_priv, plane, pipe, iir))
4052 flip_mask &= ~DISPLAY_PLANE_FLIP_PENDING(plane);
Chris Wilsonc2798b12012-04-22 21:13:57 +01004053
Daniel Vetter4356d582013-10-16 22:55:55 +02004054 if (pipe_stats[pipe] & PIPE_CRC_DONE_INTERRUPT_STATUS)
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01004055 i9xx_pipe_crc_irq_handler(dev_priv, pipe);
Ville Syrjälä2d9d2b02014-01-17 11:44:31 +02004056
Daniel Vetter1f7247c2014-09-30 10:56:48 +02004057 if (pipe_stats[pipe] & PIPE_FIFO_UNDERRUN_STATUS)
4058 intel_cpu_fifo_underrun_irq_handler(dev_priv,
4059 pipe);
Daniel Vetter4356d582013-10-16 22:55:55 +02004060 }
Chris Wilsonc2798b12012-04-22 21:13:57 +01004061
4062 iir = new_iir;
4063 }
Imre Deak1f814da2015-12-16 02:52:19 +02004064 ret = IRQ_HANDLED;
Chris Wilsonc2798b12012-04-22 21:13:57 +01004065
Imre Deak1f814da2015-12-16 02:52:19 +02004066out:
4067 enable_rpm_wakeref_asserts(dev_priv);
4068
4069 return ret;
Chris Wilsonc2798b12012-04-22 21:13:57 +01004070}
4071
4072static void i8xx_irq_uninstall(struct drm_device * dev)
4073{
Chris Wilsonfac5e232016-07-04 11:34:36 +01004074 struct drm_i915_private *dev_priv = to_i915(dev);
Chris Wilsonc2798b12012-04-22 21:13:57 +01004075 int pipe;
4076
Damien Lespiau055e3932014-08-18 13:49:10 +01004077 for_each_pipe(dev_priv, pipe) {
Chris Wilsonc2798b12012-04-22 21:13:57 +01004078 /* Clear enable bits; then clear status bits */
4079 I915_WRITE(PIPESTAT(pipe), 0);
4080 I915_WRITE(PIPESTAT(pipe), I915_READ(PIPESTAT(pipe)));
4081 }
4082 I915_WRITE16(IMR, 0xffff);
4083 I915_WRITE16(IER, 0x0);
4084 I915_WRITE16(IIR, I915_READ16(IIR));
4085}
4086
Chris Wilsona266c7d2012-04-24 22:59:44 +01004087static void i915_irq_preinstall(struct drm_device * dev)
4088{
Chris Wilsonfac5e232016-07-04 11:34:36 +01004089 struct drm_i915_private *dev_priv = to_i915(dev);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004090 int pipe;
4091
Chris Wilsona266c7d2012-04-24 22:59:44 +01004092 if (I915_HAS_HOTPLUG(dev)) {
Egbert Eich0706f172015-09-23 16:15:27 +02004093 i915_hotplug_interrupt_update(dev_priv, 0xffffffff, 0);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004094 I915_WRITE(PORT_HOTPLUG_STAT, I915_READ(PORT_HOTPLUG_STAT));
4095 }
4096
Chris Wilson00d98eb2012-04-24 22:59:48 +01004097 I915_WRITE16(HWSTAM, 0xeffe);
Damien Lespiau055e3932014-08-18 13:49:10 +01004098 for_each_pipe(dev_priv, pipe)
Chris Wilsona266c7d2012-04-24 22:59:44 +01004099 I915_WRITE(PIPESTAT(pipe), 0);
4100 I915_WRITE(IMR, 0xffffffff);
4101 I915_WRITE(IER, 0x0);
4102 POSTING_READ(IER);
4103}
4104
4105static int i915_irq_postinstall(struct drm_device *dev)
4106{
Chris Wilsonfac5e232016-07-04 11:34:36 +01004107 struct drm_i915_private *dev_priv = to_i915(dev);
Chris Wilson38bde182012-04-24 22:59:50 +01004108 u32 enable_mask;
Chris Wilsona266c7d2012-04-24 22:59:44 +01004109
Chris Wilson38bde182012-04-24 22:59:50 +01004110 I915_WRITE(EMR, ~(I915_ERROR_PAGE_TABLE | I915_ERROR_MEMORY_REFRESH));
4111
4112 /* Unmask the interrupts that we always want on. */
4113 dev_priv->irq_mask =
4114 ~(I915_ASLE_INTERRUPT |
4115 I915_DISPLAY_PIPE_A_EVENT_INTERRUPT |
4116 I915_DISPLAY_PIPE_B_EVENT_INTERRUPT |
4117 I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT |
Daniel Vetter37ef01a2015-04-01 13:43:46 +02004118 I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT);
Chris Wilson38bde182012-04-24 22:59:50 +01004119
4120 enable_mask =
4121 I915_ASLE_INTERRUPT |
4122 I915_DISPLAY_PIPE_A_EVENT_INTERRUPT |
4123 I915_DISPLAY_PIPE_B_EVENT_INTERRUPT |
Chris Wilson38bde182012-04-24 22:59:50 +01004124 I915_USER_INTERRUPT;
4125
Chris Wilsona266c7d2012-04-24 22:59:44 +01004126 if (I915_HAS_HOTPLUG(dev)) {
Egbert Eich0706f172015-09-23 16:15:27 +02004127 i915_hotplug_interrupt_update(dev_priv, 0xffffffff, 0);
Daniel Vetter20afbda2012-12-11 14:05:07 +01004128 POSTING_READ(PORT_HOTPLUG_EN);
4129
Chris Wilsona266c7d2012-04-24 22:59:44 +01004130 /* Enable in IER... */
4131 enable_mask |= I915_DISPLAY_PORT_INTERRUPT;
4132 /* and unmask in IMR */
4133 dev_priv->irq_mask &= ~I915_DISPLAY_PORT_INTERRUPT;
4134 }
4135
Chris Wilsona266c7d2012-04-24 22:59:44 +01004136 I915_WRITE(IMR, dev_priv->irq_mask);
4137 I915_WRITE(IER, enable_mask);
4138 POSTING_READ(IER);
4139
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01004140 i915_enable_asle_pipestat(dev_priv);
Daniel Vetter20afbda2012-12-11 14:05:07 +01004141
Daniel Vetter379ef822013-10-16 22:55:56 +02004142 /* Interrupt setup is already guaranteed to be single-threaded, this is
4143 * just to make the assert_spin_locked check happy. */
Daniel Vetterd6207432014-09-15 14:55:27 +02004144 spin_lock_irq(&dev_priv->irq_lock);
Imre Deak755e9012014-02-10 18:42:47 +02004145 i915_enable_pipestat(dev_priv, PIPE_A, PIPE_CRC_DONE_INTERRUPT_STATUS);
4146 i915_enable_pipestat(dev_priv, PIPE_B, PIPE_CRC_DONE_INTERRUPT_STATUS);
Daniel Vetterd6207432014-09-15 14:55:27 +02004147 spin_unlock_irq(&dev_priv->irq_lock);
Daniel Vetter379ef822013-10-16 22:55:56 +02004148
Daniel Vetter20afbda2012-12-11 14:05:07 +01004149 return 0;
4150}
4151
Daniel Vetter5a21b662016-05-24 17:13:53 +02004152/*
4153 * Returns true when a page flip has completed.
4154 */
4155static bool i915_handle_vblank(struct drm_i915_private *dev_priv,
4156 int plane, int pipe, u32 iir)
4157{
4158 u32 flip_pending = DISPLAY_PLANE_FLIP_PENDING(plane);
4159
4160 if (!intel_pipe_handle_vblank(dev_priv, pipe))
4161 return false;
4162
4163 if ((iir & flip_pending) == 0)
4164 goto check_page_flip;
4165
4166 /* We detect FlipDone by looking for the change in PendingFlip from '1'
4167 * to '0' on the following vblank, i.e. IIR has the Pendingflip
4168 * asserted following the MI_DISPLAY_FLIP, but ISR is deasserted, hence
4169 * the flip is completed (no longer pending). Since this doesn't raise
4170 * an interrupt per se, we watch for the change at vblank.
4171 */
4172 if (I915_READ(ISR) & flip_pending)
4173 goto check_page_flip;
4174
4175 intel_finish_page_flip_cs(dev_priv, pipe);
4176 return true;
4177
4178check_page_flip:
4179 intel_check_page_flip(dev_priv, pipe);
4180 return false;
4181}
4182
Daniel Vetterff1f5252012-10-02 15:10:55 +02004183static irqreturn_t i915_irq_handler(int irq, void *arg)
Chris Wilsona266c7d2012-04-24 22:59:44 +01004184{
Daniel Vetter45a83f82014-05-12 19:17:55 +02004185 struct drm_device *dev = arg;
Chris Wilsonfac5e232016-07-04 11:34:36 +01004186 struct drm_i915_private *dev_priv = to_i915(dev);
Chris Wilson8291ee92012-04-24 22:59:47 +01004187 u32 iir, new_iir, pipe_stats[I915_MAX_PIPES];
Chris Wilson38bde182012-04-24 22:59:50 +01004188 u32 flip_mask =
4189 I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT |
4190 I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT;
Chris Wilson38bde182012-04-24 22:59:50 +01004191 int pipe, ret = IRQ_NONE;
Chris Wilsona266c7d2012-04-24 22:59:44 +01004192
Imre Deak2dd2a882015-02-24 11:14:30 +02004193 if (!intel_irqs_enabled(dev_priv))
4194 return IRQ_NONE;
4195
Imre Deak1f814da2015-12-16 02:52:19 +02004196 /* IRQs are synced during runtime_suspend, we don't require a wakeref */
4197 disable_rpm_wakeref_asserts(dev_priv);
4198
Chris Wilsona266c7d2012-04-24 22:59:44 +01004199 iir = I915_READ(IIR);
Chris Wilson38bde182012-04-24 22:59:50 +01004200 do {
4201 bool irq_received = (iir & ~flip_mask) != 0;
Chris Wilson8291ee92012-04-24 22:59:47 +01004202 bool blc_event = false;
Chris Wilsona266c7d2012-04-24 22:59:44 +01004203
4204 /* Can't rely on pipestat interrupt bit in iir as it might
4205 * have been cleared after the pipestat interrupt was received.
4206 * It doesn't set the bit in iir again, but it still produces
4207 * interrupts (for non-MSI).
4208 */
Daniel Vetter222c7f52014-09-15 14:55:28 +02004209 spin_lock(&dev_priv->irq_lock);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004210 if (iir & I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT)
Daniel Vetteraaecdf62014-11-04 15:52:22 +01004211 DRM_DEBUG("Command parser error, iir 0x%08x\n", iir);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004212
Damien Lespiau055e3932014-08-18 13:49:10 +01004213 for_each_pipe(dev_priv, pipe) {
Ville Syrjäläf0f59a02015-11-18 15:33:26 +02004214 i915_reg_t reg = PIPESTAT(pipe);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004215 pipe_stats[pipe] = I915_READ(reg);
4216
Chris Wilson38bde182012-04-24 22:59:50 +01004217 /* Clear the PIPE*STAT regs before the IIR */
Chris Wilsona266c7d2012-04-24 22:59:44 +01004218 if (pipe_stats[pipe] & 0x8000ffff) {
Chris Wilsona266c7d2012-04-24 22:59:44 +01004219 I915_WRITE(reg, pipe_stats[pipe]);
Chris Wilson38bde182012-04-24 22:59:50 +01004220 irq_received = true;
Chris Wilsona266c7d2012-04-24 22:59:44 +01004221 }
4222 }
Daniel Vetter222c7f52014-09-15 14:55:28 +02004223 spin_unlock(&dev_priv->irq_lock);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004224
4225 if (!irq_received)
4226 break;
4227
Chris Wilsona266c7d2012-04-24 22:59:44 +01004228 /* Consume port. Then clear IIR or we'll miss events */
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01004229 if (I915_HAS_HOTPLUG(dev_priv) &&
Ville Syrjälä1ae3c342016-04-13 21:19:54 +03004230 iir & I915_DISPLAY_PORT_INTERRUPT) {
4231 u32 hotplug_status = i9xx_hpd_irq_ack(dev_priv);
4232 if (hotplug_status)
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01004233 i9xx_hpd_irq_handler(dev_priv, hotplug_status);
Ville Syrjälä1ae3c342016-04-13 21:19:54 +03004234 }
Chris Wilsona266c7d2012-04-24 22:59:44 +01004235
Chris Wilson38bde182012-04-24 22:59:50 +01004236 I915_WRITE(IIR, iir & ~flip_mask);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004237 new_iir = I915_READ(IIR); /* Flush posted writes */
4238
Chris Wilsona266c7d2012-04-24 22:59:44 +01004239 if (iir & I915_USER_INTERRUPT)
Akash Goel3b3f1652016-10-13 22:44:48 +05304240 notify_ring(dev_priv->engine[RCS]);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004241
Damien Lespiau055e3932014-08-18 13:49:10 +01004242 for_each_pipe(dev_priv, pipe) {
Daniel Vetter5a21b662016-05-24 17:13:53 +02004243 int plane = pipe;
4244 if (HAS_FBC(dev_priv))
4245 plane = !plane;
4246
4247 if (pipe_stats[pipe] & PIPE_VBLANK_INTERRUPT_STATUS &&
4248 i915_handle_vblank(dev_priv, plane, pipe, iir))
4249 flip_mask &= ~DISPLAY_PLANE_FLIP_PENDING(plane);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004250
4251 if (pipe_stats[pipe] & PIPE_LEGACY_BLC_EVENT_STATUS)
4252 blc_event = true;
Daniel Vetter4356d582013-10-16 22:55:55 +02004253
4254 if (pipe_stats[pipe] & PIPE_CRC_DONE_INTERRUPT_STATUS)
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01004255 i9xx_pipe_crc_irq_handler(dev_priv, pipe);
Ville Syrjälä2d9d2b02014-01-17 11:44:31 +02004256
Daniel Vetter1f7247c2014-09-30 10:56:48 +02004257 if (pipe_stats[pipe] & PIPE_FIFO_UNDERRUN_STATUS)
4258 intel_cpu_fifo_underrun_irq_handler(dev_priv,
4259 pipe);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004260 }
4261
Chris Wilsona266c7d2012-04-24 22:59:44 +01004262 if (blc_event || (iir & I915_ASLE_INTERRUPT))
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01004263 intel_opregion_asle_intr(dev_priv);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004264
4265 /* With MSI, interrupts are only generated when iir
4266 * transitions from zero to nonzero. If another bit got
4267 * set while we were handling the existing iir bits, then
4268 * we would never get another interrupt.
4269 *
4270 * This is fine on non-MSI as well, as if we hit this path
4271 * we avoid exiting the interrupt handler only to generate
4272 * another one.
4273 *
4274 * Note that for MSI this could cause a stray interrupt report
4275 * if an interrupt landed in the time between writing IIR and
4276 * the posting read. This should be rare enough to never
4277 * trigger the 99% of 100,000 interrupts test for disabling
4278 * stray interrupts.
4279 */
Chris Wilson38bde182012-04-24 22:59:50 +01004280 ret = IRQ_HANDLED;
Chris Wilsona266c7d2012-04-24 22:59:44 +01004281 iir = new_iir;
Chris Wilson38bde182012-04-24 22:59:50 +01004282 } while (iir & ~flip_mask);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004283
Imre Deak1f814da2015-12-16 02:52:19 +02004284 enable_rpm_wakeref_asserts(dev_priv);
4285
Chris Wilsona266c7d2012-04-24 22:59:44 +01004286 return ret;
4287}
4288
4289static void i915_irq_uninstall(struct drm_device * dev)
4290{
Chris Wilsonfac5e232016-07-04 11:34:36 +01004291 struct drm_i915_private *dev_priv = to_i915(dev);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004292 int pipe;
4293
Chris Wilsona266c7d2012-04-24 22:59:44 +01004294 if (I915_HAS_HOTPLUG(dev)) {
Egbert Eich0706f172015-09-23 16:15:27 +02004295 i915_hotplug_interrupt_update(dev_priv, 0xffffffff, 0);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004296 I915_WRITE(PORT_HOTPLUG_STAT, I915_READ(PORT_HOTPLUG_STAT));
4297 }
4298
Chris Wilson00d98eb2012-04-24 22:59:48 +01004299 I915_WRITE16(HWSTAM, 0xffff);
Damien Lespiau055e3932014-08-18 13:49:10 +01004300 for_each_pipe(dev_priv, pipe) {
Chris Wilson55b39752012-04-24 22:59:49 +01004301 /* Clear enable bits; then clear status bits */
Chris Wilsona266c7d2012-04-24 22:59:44 +01004302 I915_WRITE(PIPESTAT(pipe), 0);
Chris Wilson55b39752012-04-24 22:59:49 +01004303 I915_WRITE(PIPESTAT(pipe), I915_READ(PIPESTAT(pipe)));
4304 }
Chris Wilsona266c7d2012-04-24 22:59:44 +01004305 I915_WRITE(IMR, 0xffffffff);
4306 I915_WRITE(IER, 0x0);
4307
Chris Wilsona266c7d2012-04-24 22:59:44 +01004308 I915_WRITE(IIR, I915_READ(IIR));
4309}
4310
4311static void i965_irq_preinstall(struct drm_device * dev)
4312{
Chris Wilsonfac5e232016-07-04 11:34:36 +01004313 struct drm_i915_private *dev_priv = to_i915(dev);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004314 int pipe;
4315
Egbert Eich0706f172015-09-23 16:15:27 +02004316 i915_hotplug_interrupt_update(dev_priv, 0xffffffff, 0);
Chris Wilsonadca4732012-05-11 18:01:31 +01004317 I915_WRITE(PORT_HOTPLUG_STAT, I915_READ(PORT_HOTPLUG_STAT));
Chris Wilsona266c7d2012-04-24 22:59:44 +01004318
4319 I915_WRITE(HWSTAM, 0xeffe);
Damien Lespiau055e3932014-08-18 13:49:10 +01004320 for_each_pipe(dev_priv, pipe)
Chris Wilsona266c7d2012-04-24 22:59:44 +01004321 I915_WRITE(PIPESTAT(pipe), 0);
4322 I915_WRITE(IMR, 0xffffffff);
4323 I915_WRITE(IER, 0x0);
4324 POSTING_READ(IER);
4325}
4326
4327static int i965_irq_postinstall(struct drm_device *dev)
4328{
Chris Wilsonfac5e232016-07-04 11:34:36 +01004329 struct drm_i915_private *dev_priv = to_i915(dev);
Chris Wilsonbbba0a92012-04-24 22:59:51 +01004330 u32 enable_mask;
Chris Wilsona266c7d2012-04-24 22:59:44 +01004331 u32 error_mask;
4332
Chris Wilsona266c7d2012-04-24 22:59:44 +01004333 /* Unmask the interrupts that we always want on. */
Chris Wilsonbbba0a92012-04-24 22:59:51 +01004334 dev_priv->irq_mask = ~(I915_ASLE_INTERRUPT |
Chris Wilsonadca4732012-05-11 18:01:31 +01004335 I915_DISPLAY_PORT_INTERRUPT |
Chris Wilsonbbba0a92012-04-24 22:59:51 +01004336 I915_DISPLAY_PIPE_A_EVENT_INTERRUPT |
4337 I915_DISPLAY_PIPE_B_EVENT_INTERRUPT |
4338 I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT |
4339 I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT |
4340 I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT);
4341
4342 enable_mask = ~dev_priv->irq_mask;
Ville Syrjälä21ad8332013-02-19 15:16:39 +02004343 enable_mask &= ~(I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT |
4344 I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT);
Chris Wilsonbbba0a92012-04-24 22:59:51 +01004345 enable_mask |= I915_USER_INTERRUPT;
4346
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01004347 if (IS_G4X(dev_priv))
Chris Wilsonbbba0a92012-04-24 22:59:51 +01004348 enable_mask |= I915_BSD_USER_INTERRUPT;
Chris Wilsona266c7d2012-04-24 22:59:44 +01004349
Daniel Vetterb79480b2013-06-27 17:52:10 +02004350 /* Interrupt setup is already guaranteed to be single-threaded, this is
4351 * just to make the assert_spin_locked check happy. */
Daniel Vetterd6207432014-09-15 14:55:27 +02004352 spin_lock_irq(&dev_priv->irq_lock);
Imre Deak755e9012014-02-10 18:42:47 +02004353 i915_enable_pipestat(dev_priv, PIPE_A, PIPE_GMBUS_INTERRUPT_STATUS);
4354 i915_enable_pipestat(dev_priv, PIPE_A, PIPE_CRC_DONE_INTERRUPT_STATUS);
4355 i915_enable_pipestat(dev_priv, PIPE_B, PIPE_CRC_DONE_INTERRUPT_STATUS);
Daniel Vetterd6207432014-09-15 14:55:27 +02004356 spin_unlock_irq(&dev_priv->irq_lock);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004357
Chris Wilsona266c7d2012-04-24 22:59:44 +01004358 /*
4359 * Enable some error detection, note the instruction error mask
4360 * bit is reserved, so we leave it masked.
4361 */
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01004362 if (IS_G4X(dev_priv)) {
Chris Wilsona266c7d2012-04-24 22:59:44 +01004363 error_mask = ~(GM45_ERROR_PAGE_TABLE |
4364 GM45_ERROR_MEM_PRIV |
4365 GM45_ERROR_CP_PRIV |
4366 I915_ERROR_MEMORY_REFRESH);
4367 } else {
4368 error_mask = ~(I915_ERROR_PAGE_TABLE |
4369 I915_ERROR_MEMORY_REFRESH);
4370 }
4371 I915_WRITE(EMR, error_mask);
4372
4373 I915_WRITE(IMR, dev_priv->irq_mask);
4374 I915_WRITE(IER, enable_mask);
4375 POSTING_READ(IER);
4376
Egbert Eich0706f172015-09-23 16:15:27 +02004377 i915_hotplug_interrupt_update(dev_priv, 0xffffffff, 0);
Daniel Vetter20afbda2012-12-11 14:05:07 +01004378 POSTING_READ(PORT_HOTPLUG_EN);
4379
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01004380 i915_enable_asle_pipestat(dev_priv);
Daniel Vetter20afbda2012-12-11 14:05:07 +01004381
4382 return 0;
4383}
4384
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01004385static void i915_hpd_irq_setup(struct drm_i915_private *dev_priv)
Daniel Vetter20afbda2012-12-11 14:05:07 +01004386{
Daniel Vetter20afbda2012-12-11 14:05:07 +01004387 u32 hotplug_en;
4388
Daniel Vetterb5ea2d52013-06-27 17:52:15 +02004389 assert_spin_locked(&dev_priv->irq_lock);
4390
Ville Syrjälä778eb332015-01-09 14:21:13 +02004391 /* Note HDMI and DP share hotplug bits */
4392 /* enable bits are the same for all generations */
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01004393 hotplug_en = intel_hpd_enabled_irqs(dev_priv, hpd_mask_i915);
Ville Syrjälä778eb332015-01-09 14:21:13 +02004394 /* Programming the CRT detection parameters tends
4395 to generate a spurious hotplug event about three
4396 seconds later. So just do it once.
4397 */
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01004398 if (IS_G4X(dev_priv))
Ville Syrjälä778eb332015-01-09 14:21:13 +02004399 hotplug_en |= CRT_HOTPLUG_ACTIVATION_PERIOD_64;
Ville Syrjälä778eb332015-01-09 14:21:13 +02004400 hotplug_en |= CRT_HOTPLUG_VOLTAGE_COMPARE_50;
Chris Wilsona266c7d2012-04-24 22:59:44 +01004401
Ville Syrjälä778eb332015-01-09 14:21:13 +02004402 /* Ignore TV since it's buggy */
Egbert Eich0706f172015-09-23 16:15:27 +02004403 i915_hotplug_interrupt_update_locked(dev_priv,
Jani Nikulaf9e3dc72015-10-21 17:22:43 +03004404 HOTPLUG_INT_EN_MASK |
4405 CRT_HOTPLUG_VOLTAGE_COMPARE_MASK |
4406 CRT_HOTPLUG_ACTIVATION_PERIOD_64,
4407 hotplug_en);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004408}
4409
Daniel Vetterff1f5252012-10-02 15:10:55 +02004410static irqreturn_t i965_irq_handler(int irq, void *arg)
Chris Wilsona266c7d2012-04-24 22:59:44 +01004411{
Daniel Vetter45a83f82014-05-12 19:17:55 +02004412 struct drm_device *dev = arg;
Chris Wilsonfac5e232016-07-04 11:34:36 +01004413 struct drm_i915_private *dev_priv = to_i915(dev);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004414 u32 iir, new_iir;
4415 u32 pipe_stats[I915_MAX_PIPES];
Chris Wilsona266c7d2012-04-24 22:59:44 +01004416 int ret = IRQ_NONE, pipe;
Ville Syrjälä21ad8332013-02-19 15:16:39 +02004417 u32 flip_mask =
4418 I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT |
4419 I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT;
Chris Wilsona266c7d2012-04-24 22:59:44 +01004420
Imre Deak2dd2a882015-02-24 11:14:30 +02004421 if (!intel_irqs_enabled(dev_priv))
4422 return IRQ_NONE;
4423
Imre Deak1f814da2015-12-16 02:52:19 +02004424 /* IRQs are synced during runtime_suspend, we don't require a wakeref */
4425 disable_rpm_wakeref_asserts(dev_priv);
4426
Chris Wilsona266c7d2012-04-24 22:59:44 +01004427 iir = I915_READ(IIR);
4428
Chris Wilsona266c7d2012-04-24 22:59:44 +01004429 for (;;) {
Ville Syrjälä501e01d2014-01-17 11:35:15 +02004430 bool irq_received = (iir & ~flip_mask) != 0;
Chris Wilson2c8ba292012-04-24 22:59:46 +01004431 bool blc_event = false;
4432
Chris Wilsona266c7d2012-04-24 22:59:44 +01004433 /* Can't rely on pipestat interrupt bit in iir as it might
4434 * have been cleared after the pipestat interrupt was received.
4435 * It doesn't set the bit in iir again, but it still produces
4436 * interrupts (for non-MSI).
4437 */
Daniel Vetter222c7f52014-09-15 14:55:28 +02004438 spin_lock(&dev_priv->irq_lock);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004439 if (iir & I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT)
Daniel Vetteraaecdf62014-11-04 15:52:22 +01004440 DRM_DEBUG("Command parser error, iir 0x%08x\n", iir);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004441
Damien Lespiau055e3932014-08-18 13:49:10 +01004442 for_each_pipe(dev_priv, pipe) {
Ville Syrjäläf0f59a02015-11-18 15:33:26 +02004443 i915_reg_t reg = PIPESTAT(pipe);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004444 pipe_stats[pipe] = I915_READ(reg);
4445
4446 /*
4447 * Clear the PIPE*STAT regs before the IIR
4448 */
4449 if (pipe_stats[pipe] & 0x8000ffff) {
Chris Wilsona266c7d2012-04-24 22:59:44 +01004450 I915_WRITE(reg, pipe_stats[pipe]);
Ville Syrjälä501e01d2014-01-17 11:35:15 +02004451 irq_received = true;
Chris Wilsona266c7d2012-04-24 22:59:44 +01004452 }
4453 }
Daniel Vetter222c7f52014-09-15 14:55:28 +02004454 spin_unlock(&dev_priv->irq_lock);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004455
4456 if (!irq_received)
4457 break;
4458
4459 ret = IRQ_HANDLED;
4460
4461 /* Consume port. Then clear IIR or we'll miss events */
Ville Syrjälä1ae3c342016-04-13 21:19:54 +03004462 if (iir & I915_DISPLAY_PORT_INTERRUPT) {
4463 u32 hotplug_status = i9xx_hpd_irq_ack(dev_priv);
4464 if (hotplug_status)
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01004465 i9xx_hpd_irq_handler(dev_priv, hotplug_status);
Ville Syrjälä1ae3c342016-04-13 21:19:54 +03004466 }
Chris Wilsona266c7d2012-04-24 22:59:44 +01004467
Ville Syrjälä21ad8332013-02-19 15:16:39 +02004468 I915_WRITE(IIR, iir & ~flip_mask);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004469 new_iir = I915_READ(IIR); /* Flush posted writes */
4470
Chris Wilsona266c7d2012-04-24 22:59:44 +01004471 if (iir & I915_USER_INTERRUPT)
Akash Goel3b3f1652016-10-13 22:44:48 +05304472 notify_ring(dev_priv->engine[RCS]);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004473 if (iir & I915_BSD_USER_INTERRUPT)
Akash Goel3b3f1652016-10-13 22:44:48 +05304474 notify_ring(dev_priv->engine[VCS]);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004475
Damien Lespiau055e3932014-08-18 13:49:10 +01004476 for_each_pipe(dev_priv, pipe) {
Daniel Vetter5a21b662016-05-24 17:13:53 +02004477 if (pipe_stats[pipe] & PIPE_START_VBLANK_INTERRUPT_STATUS &&
4478 i915_handle_vblank(dev_priv, pipe, pipe, iir))
4479 flip_mask &= ~DISPLAY_PLANE_FLIP_PENDING(pipe);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004480
4481 if (pipe_stats[pipe] & PIPE_LEGACY_BLC_EVENT_STATUS)
4482 blc_event = true;
Daniel Vetter4356d582013-10-16 22:55:55 +02004483
4484 if (pipe_stats[pipe] & PIPE_CRC_DONE_INTERRUPT_STATUS)
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01004485 i9xx_pipe_crc_irq_handler(dev_priv, pipe);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004486
Daniel Vetter1f7247c2014-09-30 10:56:48 +02004487 if (pipe_stats[pipe] & PIPE_FIFO_UNDERRUN_STATUS)
4488 intel_cpu_fifo_underrun_irq_handler(dev_priv, pipe);
Ville Syrjälä2d9d2b02014-01-17 11:44:31 +02004489 }
Chris Wilsona266c7d2012-04-24 22:59:44 +01004490
4491 if (blc_event || (iir & I915_ASLE_INTERRUPT))
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01004492 intel_opregion_asle_intr(dev_priv);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004493
Daniel Vetter515ac2b2012-12-01 13:53:44 +01004494 if (pipe_stats[0] & PIPE_GMBUS_INTERRUPT_STATUS)
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01004495 gmbus_irq_handler(dev_priv);
Daniel Vetter515ac2b2012-12-01 13:53:44 +01004496
Chris Wilsona266c7d2012-04-24 22:59:44 +01004497 /* With MSI, interrupts are only generated when iir
4498 * transitions from zero to nonzero. If another bit got
4499 * set while we were handling the existing iir bits, then
4500 * we would never get another interrupt.
4501 *
4502 * This is fine on non-MSI as well, as if we hit this path
4503 * we avoid exiting the interrupt handler only to generate
4504 * another one.
4505 *
4506 * Note that for MSI this could cause a stray interrupt report
4507 * if an interrupt landed in the time between writing IIR and
4508 * the posting read. This should be rare enough to never
4509 * trigger the 99% of 100,000 interrupts test for disabling
4510 * stray interrupts.
4511 */
4512 iir = new_iir;
4513 }
4514
Imre Deak1f814da2015-12-16 02:52:19 +02004515 enable_rpm_wakeref_asserts(dev_priv);
4516
Chris Wilsona266c7d2012-04-24 22:59:44 +01004517 return ret;
4518}
4519
4520static void i965_irq_uninstall(struct drm_device * dev)
4521{
Chris Wilsonfac5e232016-07-04 11:34:36 +01004522 struct drm_i915_private *dev_priv = to_i915(dev);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004523 int pipe;
4524
4525 if (!dev_priv)
4526 return;
4527
Egbert Eich0706f172015-09-23 16:15:27 +02004528 i915_hotplug_interrupt_update(dev_priv, 0xffffffff, 0);
Chris Wilsonadca4732012-05-11 18:01:31 +01004529 I915_WRITE(PORT_HOTPLUG_STAT, I915_READ(PORT_HOTPLUG_STAT));
Chris Wilsona266c7d2012-04-24 22:59:44 +01004530
4531 I915_WRITE(HWSTAM, 0xffffffff);
Damien Lespiau055e3932014-08-18 13:49:10 +01004532 for_each_pipe(dev_priv, pipe)
Chris Wilsona266c7d2012-04-24 22:59:44 +01004533 I915_WRITE(PIPESTAT(pipe), 0);
4534 I915_WRITE(IMR, 0xffffffff);
4535 I915_WRITE(IER, 0x0);
4536
Damien Lespiau055e3932014-08-18 13:49:10 +01004537 for_each_pipe(dev_priv, pipe)
Chris Wilsona266c7d2012-04-24 22:59:44 +01004538 I915_WRITE(PIPESTAT(pipe),
4539 I915_READ(PIPESTAT(pipe)) & 0x8000ffff);
4540 I915_WRITE(IIR, I915_READ(IIR));
4541}
4542
Daniel Vetterfca52a52014-09-30 10:56:45 +02004543/**
4544 * intel_irq_init - initializes irq support
4545 * @dev_priv: i915 device instance
4546 *
4547 * This function initializes all the irq support including work items, timers
4548 * and all the vtables. It does not setup the interrupt itself though.
4549 */
Daniel Vetterb9632912014-09-30 10:56:44 +02004550void intel_irq_init(struct drm_i915_private *dev_priv)
Jesse Barnesf71d4af2011-06-28 13:00:41 -07004551{
Chris Wilson91c8a322016-07-05 10:40:23 +01004552 struct drm_device *dev = &dev_priv->drm;
Chris Wilson8b2e3262012-04-24 22:59:41 +01004553
Jani Nikula77913b32015-06-18 13:06:16 +03004554 intel_hpd_init_work(dev_priv);
4555
Daniel Vetterc6a828d2012-08-08 23:35:35 +02004556 INIT_WORK(&dev_priv->rps.work, gen6_pm_rps_work);
Daniel Vettera4da4fa2012-11-02 19:55:07 +01004557 INIT_WORK(&dev_priv->l3_parity.error_work, ivybridge_parity_work);
Chris Wilson8b2e3262012-04-24 22:59:41 +01004558
Sagar Arun Kamble26705e22016-10-12 21:54:31 +05304559 if (HAS_GUC_SCHED(dev))
4560 dev_priv->pm_guc_events = GEN9_GUC_TO_HOST_INT_EVENT;
4561
Deepak Sa6706b42014-03-15 20:23:22 +05304562 /* Let's track the enabled rps events */
Wayne Boyer666a4532015-12-09 12:29:35 -08004563 if (IS_VALLEYVIEW(dev_priv))
Ville Syrjälä6c65a582014-08-29 14:14:07 +03004564 /* WaGsvRC0ResidencyMethod:vlv */
Chris Wilson6f4b12f82015-03-18 09:48:23 +00004565 dev_priv->pm_rps_events = GEN6_PM_RP_DOWN_EI_EXPIRED | GEN6_PM_RP_UP_EI_EXPIRED;
Deepak S31685c22014-07-03 17:33:01 -04004566 else
4567 dev_priv->pm_rps_events = GEN6_PM_RPS_EVENTS;
Deepak Sa6706b42014-03-15 20:23:22 +05304568
Sagar Arun Kamble1800ad22016-05-31 13:58:27 +05304569 dev_priv->rps.pm_intr_keep = 0;
4570
4571 /*
4572 * SNB,IVB can while VLV,CHV may hard hang on looping batchbuffer
4573 * if GEN6_PM_UP_EI_EXPIRED is masked.
4574 *
4575 * TODO: verify if this can be reproduced on VLV,CHV.
4576 */
4577 if (INTEL_INFO(dev_priv)->gen <= 7 && !IS_HASWELL(dev_priv))
4578 dev_priv->rps.pm_intr_keep |= GEN6_PM_RP_UP_EI_EXPIRED;
4579
4580 if (INTEL_INFO(dev_priv)->gen >= 8)
Dave Gordonb20e3cf2016-09-12 21:19:35 +01004581 dev_priv->rps.pm_intr_keep |= GEN8_PMINTR_REDIRECT_TO_GUC;
Sagar Arun Kamble1800ad22016-05-31 13:58:27 +05304582
Chris Wilson737b1502015-01-26 18:03:03 +02004583 INIT_DELAYED_WORK(&dev_priv->gpu_error.hangcheck_work,
4584 i915_hangcheck_elapsed);
Daniel Vetter61bac782012-12-01 21:03:21 +01004585
Daniel Vetterb9632912014-09-30 10:56:44 +02004586 if (IS_GEN2(dev_priv)) {
Rodrigo Vivi4194c082016-08-03 10:00:56 -07004587 /* Gen2 doesn't have a hardware frame counter */
Ville Syrjälä4cdb83e2013-10-11 21:52:44 +03004588 dev->max_vblank_count = 0;
Rodrigo Vivi4194c082016-08-03 10:00:56 -07004589 dev->driver->get_vblank_counter = drm_vblank_no_hw_counter;
Daniel Vetterb9632912014-09-30 10:56:44 +02004590 } else if (IS_G4X(dev_priv) || INTEL_INFO(dev_priv)->gen >= 5) {
Jesse Barnesf71d4af2011-06-28 13:00:41 -07004591 dev->max_vblank_count = 0xffffffff; /* full 32 bit counter */
Ville Syrjäläfd8f5072015-09-18 20:03:42 +03004592 dev->driver->get_vblank_counter = g4x_get_vblank_counter;
Ville Syrjälä391f75e2013-09-25 19:55:26 +03004593 } else {
4594 dev->driver->get_vblank_counter = i915_get_vblank_counter;
4595 dev->max_vblank_count = 0xffffff; /* only 24 bits of frame count */
Jesse Barnesf71d4af2011-06-28 13:00:41 -07004596 }
4597
Ville Syrjälä21da2702014-08-06 14:49:55 +03004598 /*
4599 * Opt out of the vblank disable timer on everything except gen2.
4600 * Gen2 doesn't have a hardware frame counter and so depends on
4601 * vblank interrupts to produce sane vblank seuquence numbers.
4602 */
Daniel Vetterb9632912014-09-30 10:56:44 +02004603 if (!IS_GEN2(dev_priv))
Ville Syrjälä21da2702014-08-06 14:49:55 +03004604 dev->vblank_disable_immediate = true;
4605
Daniel Vetterf3a5c3f2015-02-13 21:03:44 +01004606 dev->driver->get_vblank_timestamp = i915_get_vblank_timestamp;
4607 dev->driver->get_scanout_position = i915_get_crtc_scanoutpos;
Jesse Barnesf71d4af2011-06-28 13:00:41 -07004608
Daniel Vetterb9632912014-09-30 10:56:44 +02004609 if (IS_CHERRYVIEW(dev_priv)) {
Ville Syrjälä43f328d2014-04-09 20:40:52 +03004610 dev->driver->irq_handler = cherryview_irq_handler;
4611 dev->driver->irq_preinstall = cherryview_irq_preinstall;
4612 dev->driver->irq_postinstall = cherryview_irq_postinstall;
4613 dev->driver->irq_uninstall = cherryview_irq_uninstall;
Chris Wilson86e83e32016-10-07 20:49:52 +01004614 dev->driver->enable_vblank = i965_enable_vblank;
4615 dev->driver->disable_vblank = i965_disable_vblank;
Ville Syrjälä43f328d2014-04-09 20:40:52 +03004616 dev_priv->display.hpd_irq_setup = i915_hpd_irq_setup;
Daniel Vetterb9632912014-09-30 10:56:44 +02004617 } else if (IS_VALLEYVIEW(dev_priv)) {
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07004618 dev->driver->irq_handler = valleyview_irq_handler;
4619 dev->driver->irq_preinstall = valleyview_irq_preinstall;
4620 dev->driver->irq_postinstall = valleyview_irq_postinstall;
4621 dev->driver->irq_uninstall = valleyview_irq_uninstall;
Chris Wilson86e83e32016-10-07 20:49:52 +01004622 dev->driver->enable_vblank = i965_enable_vblank;
4623 dev->driver->disable_vblank = i965_disable_vblank;
Egbert Eichfa00abe2013-02-25 12:06:48 -05004624 dev_priv->display.hpd_irq_setup = i915_hpd_irq_setup;
Daniel Vetterb9632912014-09-30 10:56:44 +02004625 } else if (INTEL_INFO(dev_priv)->gen >= 8) {
Ben Widawskyabd58f02013-11-02 21:07:09 -07004626 dev->driver->irq_handler = gen8_irq_handler;
Daniel Vetter723761b2014-05-22 17:56:34 +02004627 dev->driver->irq_preinstall = gen8_irq_reset;
Ben Widawskyabd58f02013-11-02 21:07:09 -07004628 dev->driver->irq_postinstall = gen8_irq_postinstall;
4629 dev->driver->irq_uninstall = gen8_irq_uninstall;
4630 dev->driver->enable_vblank = gen8_enable_vblank;
4631 dev->driver->disable_vblank = gen8_disable_vblank;
Tvrtko Ursuline2d214a2016-10-13 11:03:04 +01004632 if (IS_BROXTON(dev_priv))
Shashank Sharmae0a20ad2015-03-27 14:54:14 +02004633 dev_priv->display.hpd_irq_setup = bxt_hpd_irq_setup;
Tvrtko Ursulin6e266952016-10-13 11:02:53 +01004634 else if (HAS_PCH_SPT(dev_priv) || HAS_PCH_KBP(dev_priv))
Ville Syrjälä6dbf30c2015-08-27 23:56:02 +03004635 dev_priv->display.hpd_irq_setup = spt_hpd_irq_setup;
4636 else
Ville Syrjälä3a3b3c72015-08-27 23:56:06 +03004637 dev_priv->display.hpd_irq_setup = ilk_hpd_irq_setup;
Tvrtko Ursulin6e266952016-10-13 11:02:53 +01004638 } else if (HAS_PCH_SPLIT(dev_priv)) {
Jesse Barnesf71d4af2011-06-28 13:00:41 -07004639 dev->driver->irq_handler = ironlake_irq_handler;
Daniel Vetter723761b2014-05-22 17:56:34 +02004640 dev->driver->irq_preinstall = ironlake_irq_reset;
Jesse Barnesf71d4af2011-06-28 13:00:41 -07004641 dev->driver->irq_postinstall = ironlake_irq_postinstall;
4642 dev->driver->irq_uninstall = ironlake_irq_uninstall;
4643 dev->driver->enable_vblank = ironlake_enable_vblank;
4644 dev->driver->disable_vblank = ironlake_disable_vblank;
Ville Syrjälä23bb4cb2015-08-27 23:56:04 +03004645 dev_priv->display.hpd_irq_setup = ilk_hpd_irq_setup;
Jesse Barnesf71d4af2011-06-28 13:00:41 -07004646 } else {
Tvrtko Ursulin7e22dbb2016-05-10 10:57:06 +01004647 if (IS_GEN2(dev_priv)) {
Chris Wilsonc2798b12012-04-22 21:13:57 +01004648 dev->driver->irq_preinstall = i8xx_irq_preinstall;
4649 dev->driver->irq_postinstall = i8xx_irq_postinstall;
4650 dev->driver->irq_handler = i8xx_irq_handler;
4651 dev->driver->irq_uninstall = i8xx_irq_uninstall;
Chris Wilson86e83e32016-10-07 20:49:52 +01004652 dev->driver->enable_vblank = i8xx_enable_vblank;
4653 dev->driver->disable_vblank = i8xx_disable_vblank;
Tvrtko Ursulin7e22dbb2016-05-10 10:57:06 +01004654 } else if (IS_GEN3(dev_priv)) {
Chris Wilsona266c7d2012-04-24 22:59:44 +01004655 dev->driver->irq_preinstall = i915_irq_preinstall;
4656 dev->driver->irq_postinstall = i915_irq_postinstall;
4657 dev->driver->irq_uninstall = i915_irq_uninstall;
4658 dev->driver->irq_handler = i915_irq_handler;
Chris Wilson86e83e32016-10-07 20:49:52 +01004659 dev->driver->enable_vblank = i8xx_enable_vblank;
4660 dev->driver->disable_vblank = i8xx_disable_vblank;
Chris Wilsonc2798b12012-04-22 21:13:57 +01004661 } else {
Chris Wilsona266c7d2012-04-24 22:59:44 +01004662 dev->driver->irq_preinstall = i965_irq_preinstall;
4663 dev->driver->irq_postinstall = i965_irq_postinstall;
4664 dev->driver->irq_uninstall = i965_irq_uninstall;
4665 dev->driver->irq_handler = i965_irq_handler;
Chris Wilson86e83e32016-10-07 20:49:52 +01004666 dev->driver->enable_vblank = i965_enable_vblank;
4667 dev->driver->disable_vblank = i965_disable_vblank;
Chris Wilsonc2798b12012-04-22 21:13:57 +01004668 }
Ville Syrjälä778eb332015-01-09 14:21:13 +02004669 if (I915_HAS_HOTPLUG(dev_priv))
4670 dev_priv->display.hpd_irq_setup = i915_hpd_irq_setup;
Jesse Barnesf71d4af2011-06-28 13:00:41 -07004671 }
4672}
Daniel Vetter20afbda2012-12-11 14:05:07 +01004673
Daniel Vetterfca52a52014-09-30 10:56:45 +02004674/**
Daniel Vetterfca52a52014-09-30 10:56:45 +02004675 * intel_irq_install - enables the hardware interrupt
4676 * @dev_priv: i915 device instance
4677 *
4678 * This function enables the hardware interrupt handling, but leaves the hotplug
4679 * handling still disabled. It is called after intel_irq_init().
4680 *
4681 * In the driver load and resume code we need working interrupts in a few places
4682 * but don't want to deal with the hassle of concurrent probe and hotplug
4683 * workers. Hence the split into this two-stage approach.
4684 */
Daniel Vetter2aeb7d32014-09-30 10:56:43 +02004685int intel_irq_install(struct drm_i915_private *dev_priv)
4686{
4687 /*
4688 * We enable some interrupt sources in our postinstall hooks, so mark
4689 * interrupts as enabled _before_ actually enabling them to avoid
4690 * special cases in our ordering checks.
4691 */
4692 dev_priv->pm.irqs_enabled = true;
4693
Chris Wilson91c8a322016-07-05 10:40:23 +01004694 return drm_irq_install(&dev_priv->drm, dev_priv->drm.pdev->irq);
Daniel Vetter2aeb7d32014-09-30 10:56:43 +02004695}
4696
Daniel Vetterfca52a52014-09-30 10:56:45 +02004697/**
4698 * intel_irq_uninstall - finilizes all irq handling
4699 * @dev_priv: i915 device instance
4700 *
4701 * This stops interrupt and hotplug handling and unregisters and frees all
4702 * resources acquired in the init functions.
4703 */
Daniel Vetter2aeb7d32014-09-30 10:56:43 +02004704void intel_irq_uninstall(struct drm_i915_private *dev_priv)
4705{
Chris Wilson91c8a322016-07-05 10:40:23 +01004706 drm_irq_uninstall(&dev_priv->drm);
Daniel Vetter2aeb7d32014-09-30 10:56:43 +02004707 intel_hpd_cancel_work(dev_priv);
4708 dev_priv->pm.irqs_enabled = false;
4709}
4710
Daniel Vetterfca52a52014-09-30 10:56:45 +02004711/**
4712 * intel_runtime_pm_disable_interrupts - runtime interrupt disabling
4713 * @dev_priv: i915 device instance
4714 *
4715 * This function is used to disable interrupts at runtime, both in the runtime
4716 * pm and the system suspend/resume code.
4717 */
Daniel Vetterb9632912014-09-30 10:56:44 +02004718void intel_runtime_pm_disable_interrupts(struct drm_i915_private *dev_priv)
Paulo Zanonic67a4702013-08-19 13:18:09 -03004719{
Chris Wilson91c8a322016-07-05 10:40:23 +01004720 dev_priv->drm.driver->irq_uninstall(&dev_priv->drm);
Daniel Vetter2aeb7d32014-09-30 10:56:43 +02004721 dev_priv->pm.irqs_enabled = false;
Chris Wilson91c8a322016-07-05 10:40:23 +01004722 synchronize_irq(dev_priv->drm.irq);
Paulo Zanonic67a4702013-08-19 13:18:09 -03004723}
4724
Daniel Vetterfca52a52014-09-30 10:56:45 +02004725/**
4726 * intel_runtime_pm_enable_interrupts - runtime interrupt enabling
4727 * @dev_priv: i915 device instance
4728 *
4729 * This function is used to enable interrupts at runtime, both in the runtime
4730 * pm and the system suspend/resume code.
4731 */
Daniel Vetterb9632912014-09-30 10:56:44 +02004732void intel_runtime_pm_enable_interrupts(struct drm_i915_private *dev_priv)
Paulo Zanonic67a4702013-08-19 13:18:09 -03004733{
Daniel Vetter2aeb7d32014-09-30 10:56:43 +02004734 dev_priv->pm.irqs_enabled = true;
Chris Wilson91c8a322016-07-05 10:40:23 +01004735 dev_priv->drm.driver->irq_preinstall(&dev_priv->drm);
4736 dev_priv->drm.driver->irq_postinstall(&dev_priv->drm);
Paulo Zanonic67a4702013-08-19 13:18:09 -03004737}