blob: 75fb1f66cc0cb32c6f6051b0ef58d34aa6132f69 [file] [log] [blame]
Dave Airlie0d6aa602006-01-02 20:14:23 +11001/* i915_irq.c -- IRQ support for the I915 -*- linux-c -*-
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 */
Dave Airlie0d6aa602006-01-02 20:14:23 +11003/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 * Copyright 2003 Tungsten Graphics, Inc., Cedar Park, Texas.
5 * All Rights Reserved.
Dave Airliebc54fd12005-06-23 22:46:46 +10006 *
7 * Permission is hereby granted, free of charge, to any person obtaining a
8 * copy of this software and associated documentation files (the
9 * "Software"), to deal in the Software without restriction, including
10 * without limitation the rights to use, copy, modify, merge, publish,
11 * distribute, sub license, and/or sell copies of the Software, and to
12 * permit persons to whom the Software is furnished to do so, subject to
13 * the following conditions:
14 *
15 * The above copyright notice and this permission notice (including the
16 * next paragraph) shall be included in all copies or substantial portions
17 * of the Software.
18 *
19 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
20 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
21 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
22 * IN NO EVENT SHALL TUNGSTEN GRAPHICS AND/OR ITS SUPPLIERS BE LIABLE FOR
23 * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
24 * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
25 * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
26 *
Dave Airlie0d6aa602006-01-02 20:14:23 +110027 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070028
Joe Perchesa70491c2012-03-18 13:00:11 -070029#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
30
Jesse Barnes63eeaf32009-06-18 16:56:52 -070031#include <linux/sysrq.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090032#include <linux/slab.h>
Damien Lespiaub2c88f52013-10-15 18:55:29 +010033#include <linux/circ_buf.h>
David Howells760285e2012-10-02 18:01:07 +010034#include <drm/drmP.h>
35#include <drm/i915_drm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#include "i915_drv.h"
Chris Wilson1c5d22f2009-08-25 11:15:50 +010037#include "i915_trace.h"
Jesse Barnes79e53942008-11-07 14:24:08 -080038#include "intel_drv.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070039
Daniel Vetterfca52a52014-09-30 10:56:45 +020040/**
41 * DOC: interrupt handling
42 *
43 * These functions provide the basic support for enabling and disabling the
44 * interrupt handling support. There's a lot more functionality in i915_irq.c
45 * and related files, but that will be described in separate chapters.
46 */
47
Ville Syrjäläe4ce95a2015-08-27 23:56:03 +030048static const u32 hpd_ilk[HPD_NUM_PINS] = {
49 [HPD_PORT_A] = DE_DP_A_HOTPLUG,
50};
51
Ville Syrjälä23bb4cb2015-08-27 23:56:04 +030052static const u32 hpd_ivb[HPD_NUM_PINS] = {
53 [HPD_PORT_A] = DE_DP_A_HOTPLUG_IVB,
54};
55
Ville Syrjälä3a3b3c72015-08-27 23:56:06 +030056static const u32 hpd_bdw[HPD_NUM_PINS] = {
57 [HPD_PORT_A] = GEN8_PORT_DP_A_HOTPLUG,
58};
59
Ville Syrjälä7c7e10d2015-01-09 14:21:12 +020060static const u32 hpd_ibx[HPD_NUM_PINS] = {
Egbert Eiche5868a32013-02-28 04:17:12 -050061 [HPD_CRT] = SDE_CRT_HOTPLUG,
62 [HPD_SDVO_B] = SDE_SDVOB_HOTPLUG,
63 [HPD_PORT_B] = SDE_PORTB_HOTPLUG,
64 [HPD_PORT_C] = SDE_PORTC_HOTPLUG,
65 [HPD_PORT_D] = SDE_PORTD_HOTPLUG
66};
67
Ville Syrjälä7c7e10d2015-01-09 14:21:12 +020068static const u32 hpd_cpt[HPD_NUM_PINS] = {
Egbert Eiche5868a32013-02-28 04:17:12 -050069 [HPD_CRT] = SDE_CRT_HOTPLUG_CPT,
Daniel Vetter73c352a2013-03-26 22:38:43 +010070 [HPD_SDVO_B] = SDE_SDVOB_HOTPLUG_CPT,
Egbert Eiche5868a32013-02-28 04:17:12 -050071 [HPD_PORT_B] = SDE_PORTB_HOTPLUG_CPT,
72 [HPD_PORT_C] = SDE_PORTC_HOTPLUG_CPT,
73 [HPD_PORT_D] = SDE_PORTD_HOTPLUG_CPT
74};
75
Xiong Zhang26951ca2015-08-17 15:55:50 +080076static const u32 hpd_spt[HPD_NUM_PINS] = {
Ville Syrjälä74c0b392015-08-27 23:56:07 +030077 [HPD_PORT_A] = SDE_PORTA_HOTPLUG_SPT,
Xiong Zhang26951ca2015-08-17 15:55:50 +080078 [HPD_PORT_B] = SDE_PORTB_HOTPLUG_CPT,
79 [HPD_PORT_C] = SDE_PORTC_HOTPLUG_CPT,
80 [HPD_PORT_D] = SDE_PORTD_HOTPLUG_CPT,
81 [HPD_PORT_E] = SDE_PORTE_HOTPLUG_SPT
82};
83
Ville Syrjälä7c7e10d2015-01-09 14:21:12 +020084static const u32 hpd_mask_i915[HPD_NUM_PINS] = {
Egbert Eiche5868a32013-02-28 04:17:12 -050085 [HPD_CRT] = CRT_HOTPLUG_INT_EN,
86 [HPD_SDVO_B] = SDVOB_HOTPLUG_INT_EN,
87 [HPD_SDVO_C] = SDVOC_HOTPLUG_INT_EN,
88 [HPD_PORT_B] = PORTB_HOTPLUG_INT_EN,
89 [HPD_PORT_C] = PORTC_HOTPLUG_INT_EN,
90 [HPD_PORT_D] = PORTD_HOTPLUG_INT_EN
91};
92
Ville Syrjälä7c7e10d2015-01-09 14:21:12 +020093static const u32 hpd_status_g4x[HPD_NUM_PINS] = {
Egbert Eiche5868a32013-02-28 04:17:12 -050094 [HPD_CRT] = CRT_HOTPLUG_INT_STATUS,
95 [HPD_SDVO_B] = SDVOB_HOTPLUG_INT_STATUS_G4X,
96 [HPD_SDVO_C] = SDVOC_HOTPLUG_INT_STATUS_G4X,
97 [HPD_PORT_B] = PORTB_HOTPLUG_INT_STATUS,
98 [HPD_PORT_C] = PORTC_HOTPLUG_INT_STATUS,
99 [HPD_PORT_D] = PORTD_HOTPLUG_INT_STATUS
100};
101
Ville Syrjälä4bca26d2015-05-11 20:49:10 +0300102static const u32 hpd_status_i915[HPD_NUM_PINS] = {
Egbert Eiche5868a32013-02-28 04:17:12 -0500103 [HPD_CRT] = CRT_HOTPLUG_INT_STATUS,
104 [HPD_SDVO_B] = SDVOB_HOTPLUG_INT_STATUS_I915,
105 [HPD_SDVO_C] = SDVOC_HOTPLUG_INT_STATUS_I915,
106 [HPD_PORT_B] = PORTB_HOTPLUG_INT_STATUS,
107 [HPD_PORT_C] = PORTC_HOTPLUG_INT_STATUS,
108 [HPD_PORT_D] = PORTD_HOTPLUG_INT_STATUS
109};
110
Shashank Sharmae0a20ad2015-03-27 14:54:14 +0200111/* BXT hpd list */
112static const u32 hpd_bxt[HPD_NUM_PINS] = {
Sonika Jindal7f3561b2015-08-10 10:35:35 +0530113 [HPD_PORT_A] = BXT_DE_PORT_HP_DDIA,
Shashank Sharmae0a20ad2015-03-27 14:54:14 +0200114 [HPD_PORT_B] = BXT_DE_PORT_HP_DDIB,
115 [HPD_PORT_C] = BXT_DE_PORT_HP_DDIC
116};
117
Paulo Zanoni5c502442014-04-01 15:37:11 -0300118/* IIR can theoretically queue up two events. Be paranoid. */
Paulo Zanonif86f3fb2014-04-01 15:37:14 -0300119#define GEN8_IRQ_RESET_NDX(type, which) do { \
Paulo Zanoni5c502442014-04-01 15:37:11 -0300120 I915_WRITE(GEN8_##type##_IMR(which), 0xffffffff); \
121 POSTING_READ(GEN8_##type##_IMR(which)); \
122 I915_WRITE(GEN8_##type##_IER(which), 0); \
123 I915_WRITE(GEN8_##type##_IIR(which), 0xffffffff); \
124 POSTING_READ(GEN8_##type##_IIR(which)); \
125 I915_WRITE(GEN8_##type##_IIR(which), 0xffffffff); \
126 POSTING_READ(GEN8_##type##_IIR(which)); \
127} while (0)
128
Paulo Zanonif86f3fb2014-04-01 15:37:14 -0300129#define GEN5_IRQ_RESET(type) do { \
Paulo Zanonia9d356a2014-04-01 15:37:09 -0300130 I915_WRITE(type##IMR, 0xffffffff); \
Paulo Zanoni5c502442014-04-01 15:37:11 -0300131 POSTING_READ(type##IMR); \
Paulo Zanonia9d356a2014-04-01 15:37:09 -0300132 I915_WRITE(type##IER, 0); \
Paulo Zanoni5c502442014-04-01 15:37:11 -0300133 I915_WRITE(type##IIR, 0xffffffff); \
134 POSTING_READ(type##IIR); \
135 I915_WRITE(type##IIR, 0xffffffff); \
136 POSTING_READ(type##IIR); \
Paulo Zanonia9d356a2014-04-01 15:37:09 -0300137} while (0)
138
Paulo Zanoni337ba012014-04-01 15:37:16 -0300139/*
140 * We should clear IMR at preinstall/uninstall, and just check at postinstall.
141 */
Ville Syrjäläf0f59a02015-11-18 15:33:26 +0200142static void gen5_assert_iir_is_zero(struct drm_i915_private *dev_priv,
143 i915_reg_t reg)
Ville Syrjäläb51a2842015-09-18 20:03:41 +0300144{
145 u32 val = I915_READ(reg);
146
147 if (val == 0)
148 return;
149
150 WARN(1, "Interrupt register 0x%x is not zero: 0x%08x\n",
Ville Syrjäläf0f59a02015-11-18 15:33:26 +0200151 i915_mmio_reg_offset(reg), val);
Ville Syrjäläb51a2842015-09-18 20:03:41 +0300152 I915_WRITE(reg, 0xffffffff);
153 POSTING_READ(reg);
154 I915_WRITE(reg, 0xffffffff);
155 POSTING_READ(reg);
156}
Paulo Zanoni337ba012014-04-01 15:37:16 -0300157
Paulo Zanoni35079892014-04-01 15:37:15 -0300158#define GEN8_IRQ_INIT_NDX(type, which, imr_val, ier_val) do { \
Ville Syrjäläb51a2842015-09-18 20:03:41 +0300159 gen5_assert_iir_is_zero(dev_priv, GEN8_##type##_IIR(which)); \
Paulo Zanoni35079892014-04-01 15:37:15 -0300160 I915_WRITE(GEN8_##type##_IER(which), (ier_val)); \
Ville Syrjälä7d1bd5392014-10-30 19:42:50 +0200161 I915_WRITE(GEN8_##type##_IMR(which), (imr_val)); \
162 POSTING_READ(GEN8_##type##_IMR(which)); \
Paulo Zanoni35079892014-04-01 15:37:15 -0300163} while (0)
164
165#define GEN5_IRQ_INIT(type, imr_val, ier_val) do { \
Ville Syrjäläb51a2842015-09-18 20:03:41 +0300166 gen5_assert_iir_is_zero(dev_priv, type##IIR); \
Paulo Zanoni35079892014-04-01 15:37:15 -0300167 I915_WRITE(type##IER, (ier_val)); \
Ville Syrjälä7d1bd5392014-10-30 19:42:50 +0200168 I915_WRITE(type##IMR, (imr_val)); \
169 POSTING_READ(type##IMR); \
Paulo Zanoni35079892014-04-01 15:37:15 -0300170} while (0)
171
Imre Deakc9a9a262014-11-05 20:48:37 +0200172static void gen6_rps_irq_handler(struct drm_i915_private *dev_priv, u32 pm_iir);
Sagar Arun Kamble26705e22016-10-12 21:54:31 +0530173static void gen9_guc_irq_handler(struct drm_i915_private *dev_priv, u32 pm_iir);
Imre Deakc9a9a262014-11-05 20:48:37 +0200174
Egbert Eich0706f172015-09-23 16:15:27 +0200175/* For display hotplug interrupt */
176static inline void
177i915_hotplug_interrupt_update_locked(struct drm_i915_private *dev_priv,
178 uint32_t mask,
179 uint32_t bits)
180{
181 uint32_t val;
182
183 assert_spin_locked(&dev_priv->irq_lock);
184 WARN_ON(bits & ~mask);
185
186 val = I915_READ(PORT_HOTPLUG_EN);
187 val &= ~mask;
188 val |= bits;
189 I915_WRITE(PORT_HOTPLUG_EN, val);
190}
191
192/**
193 * i915_hotplug_interrupt_update - update hotplug interrupt enable
194 * @dev_priv: driver private
195 * @mask: bits to update
196 * @bits: bits to enable
197 * NOTE: the HPD enable bits are modified both inside and outside
198 * of an interrupt context. To avoid that read-modify-write cycles
199 * interfer, these bits are protected by a spinlock. Since this
200 * function is usually not called from a context where the lock is
201 * held already, this function acquires the lock itself. A non-locking
202 * version is also available.
203 */
204void i915_hotplug_interrupt_update(struct drm_i915_private *dev_priv,
205 uint32_t mask,
206 uint32_t bits)
207{
208 spin_lock_irq(&dev_priv->irq_lock);
209 i915_hotplug_interrupt_update_locked(dev_priv, mask, bits);
210 spin_unlock_irq(&dev_priv->irq_lock);
211}
212
Ville Syrjäläd9dc34f12015-08-27 23:55:58 +0300213/**
214 * ilk_update_display_irq - update DEIMR
215 * @dev_priv: driver private
216 * @interrupt_mask: mask of interrupt bits to update
217 * @enabled_irq_mask: mask of interrupt bits to enable
218 */
Ville Syrjäläfbdedaea2015-11-23 18:06:16 +0200219void ilk_update_display_irq(struct drm_i915_private *dev_priv,
220 uint32_t interrupt_mask,
221 uint32_t enabled_irq_mask)
Zhenyu Wang036a4a72009-06-08 14:40:19 +0800222{
Ville Syrjäläd9dc34f12015-08-27 23:55:58 +0300223 uint32_t new_val;
224
Daniel Vetter4bc9d432013-06-27 13:44:58 +0200225 assert_spin_locked(&dev_priv->irq_lock);
226
Ville Syrjäläd9dc34f12015-08-27 23:55:58 +0300227 WARN_ON(enabled_irq_mask & ~interrupt_mask);
228
Jesse Barnes9df7575f2014-06-20 09:29:20 -0700229 if (WARN_ON(!intel_irqs_enabled(dev_priv)))
Paulo Zanonic67a4702013-08-19 13:18:09 -0300230 return;
Paulo Zanonic67a4702013-08-19 13:18:09 -0300231
Ville Syrjäläd9dc34f12015-08-27 23:55:58 +0300232 new_val = dev_priv->irq_mask;
233 new_val &= ~interrupt_mask;
234 new_val |= (~enabled_irq_mask & interrupt_mask);
235
236 if (new_val != dev_priv->irq_mask) {
237 dev_priv->irq_mask = new_val;
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000238 I915_WRITE(DEIMR, dev_priv->irq_mask);
Chris Wilson3143a2b2010-11-16 15:55:10 +0000239 POSTING_READ(DEIMR);
Zhenyu Wang036a4a72009-06-08 14:40:19 +0800240 }
241}
242
Paulo Zanoni43eaea12013-08-06 18:57:12 -0300243/**
244 * ilk_update_gt_irq - update GTIMR
245 * @dev_priv: driver private
246 * @interrupt_mask: mask of interrupt bits to update
247 * @enabled_irq_mask: mask of interrupt bits to enable
248 */
249static void ilk_update_gt_irq(struct drm_i915_private *dev_priv,
250 uint32_t interrupt_mask,
251 uint32_t enabled_irq_mask)
252{
253 assert_spin_locked(&dev_priv->irq_lock);
254
Daniel Vetter15a17aa2014-12-08 16:30:00 +0100255 WARN_ON(enabled_irq_mask & ~interrupt_mask);
256
Jesse Barnes9df7575f2014-06-20 09:29:20 -0700257 if (WARN_ON(!intel_irqs_enabled(dev_priv)))
Paulo Zanonic67a4702013-08-19 13:18:09 -0300258 return;
Paulo Zanonic67a4702013-08-19 13:18:09 -0300259
Paulo Zanoni43eaea12013-08-06 18:57:12 -0300260 dev_priv->gt_irq_mask &= ~interrupt_mask;
261 dev_priv->gt_irq_mask |= (~enabled_irq_mask & interrupt_mask);
262 I915_WRITE(GTIMR, dev_priv->gt_irq_mask);
Paulo Zanoni43eaea12013-08-06 18:57:12 -0300263}
264
Daniel Vetter480c8032014-07-16 09:49:40 +0200265void gen5_enable_gt_irq(struct drm_i915_private *dev_priv, uint32_t mask)
Paulo Zanoni43eaea12013-08-06 18:57:12 -0300266{
267 ilk_update_gt_irq(dev_priv, mask, mask);
Chris Wilson31bb59c2016-07-01 17:23:27 +0100268 POSTING_READ_FW(GTIMR);
Paulo Zanoni43eaea12013-08-06 18:57:12 -0300269}
270
Daniel Vetter480c8032014-07-16 09:49:40 +0200271void gen5_disable_gt_irq(struct drm_i915_private *dev_priv, uint32_t mask)
Paulo Zanoni43eaea12013-08-06 18:57:12 -0300272{
273 ilk_update_gt_irq(dev_priv, mask, 0);
274}
275
Ville Syrjäläf0f59a02015-11-18 15:33:26 +0200276static i915_reg_t gen6_pm_iir(struct drm_i915_private *dev_priv)
Imre Deakb900b942014-11-05 20:48:48 +0200277{
278 return INTEL_INFO(dev_priv)->gen >= 8 ? GEN8_GT_IIR(2) : GEN6_PMIIR;
279}
280
Ville Syrjäläf0f59a02015-11-18 15:33:26 +0200281static i915_reg_t gen6_pm_imr(struct drm_i915_private *dev_priv)
Imre Deaka72fbc32014-11-05 20:48:31 +0200282{
283 return INTEL_INFO(dev_priv)->gen >= 8 ? GEN8_GT_IMR(2) : GEN6_PMIMR;
284}
285
Ville Syrjäläf0f59a02015-11-18 15:33:26 +0200286static i915_reg_t gen6_pm_ier(struct drm_i915_private *dev_priv)
Imre Deakb900b942014-11-05 20:48:48 +0200287{
288 return INTEL_INFO(dev_priv)->gen >= 8 ? GEN8_GT_IER(2) : GEN6_PMIER;
289}
290
Paulo Zanoniedbfdb42013-08-06 18:57:13 -0300291/**
Ville Syrjälä81fd8742015-11-25 16:21:30 +0200292 * snb_update_pm_irq - update GEN6_PMIMR
293 * @dev_priv: driver private
294 * @interrupt_mask: mask of interrupt bits to update
295 * @enabled_irq_mask: mask of interrupt bits to enable
296 */
Paulo Zanoniedbfdb42013-08-06 18:57:13 -0300297static void snb_update_pm_irq(struct drm_i915_private *dev_priv,
298 uint32_t interrupt_mask,
299 uint32_t enabled_irq_mask)
300{
Paulo Zanoni605cd252013-08-06 18:57:15 -0300301 uint32_t new_val;
Paulo Zanoniedbfdb42013-08-06 18:57:13 -0300302
Daniel Vetter15a17aa2014-12-08 16:30:00 +0100303 WARN_ON(enabled_irq_mask & ~interrupt_mask);
304
Paulo Zanoniedbfdb42013-08-06 18:57:13 -0300305 assert_spin_locked(&dev_priv->irq_lock);
306
Akash Goelf4e9af42016-10-12 21:54:30 +0530307 new_val = dev_priv->pm_imr;
Paulo Zanonif52ecbc2013-08-06 18:57:14 -0300308 new_val &= ~interrupt_mask;
309 new_val |= (~enabled_irq_mask & interrupt_mask);
310
Akash Goelf4e9af42016-10-12 21:54:30 +0530311 if (new_val != dev_priv->pm_imr) {
312 dev_priv->pm_imr = new_val;
313 I915_WRITE(gen6_pm_imr(dev_priv), dev_priv->pm_imr);
Imre Deaka72fbc32014-11-05 20:48:31 +0200314 POSTING_READ(gen6_pm_imr(dev_priv));
Paulo Zanonif52ecbc2013-08-06 18:57:14 -0300315 }
Paulo Zanoniedbfdb42013-08-06 18:57:13 -0300316}
317
Akash Goelf4e9af42016-10-12 21:54:30 +0530318void gen6_unmask_pm_irq(struct drm_i915_private *dev_priv, u32 mask)
Paulo Zanoniedbfdb42013-08-06 18:57:13 -0300319{
Imre Deak9939fba2014-11-20 23:01:47 +0200320 if (WARN_ON(!intel_irqs_enabled(dev_priv)))
321 return;
322
Paulo Zanoniedbfdb42013-08-06 18:57:13 -0300323 snb_update_pm_irq(dev_priv, mask, mask);
324}
325
Akash Goelf4e9af42016-10-12 21:54:30 +0530326static void __gen6_mask_pm_irq(struct drm_i915_private *dev_priv, u32 mask)
Imre Deak9939fba2014-11-20 23:01:47 +0200327{
328 snb_update_pm_irq(dev_priv, mask, 0);
329}
330
Akash Goelf4e9af42016-10-12 21:54:30 +0530331void gen6_mask_pm_irq(struct drm_i915_private *dev_priv, u32 mask)
Paulo Zanoniedbfdb42013-08-06 18:57:13 -0300332{
Imre Deak9939fba2014-11-20 23:01:47 +0200333 if (WARN_ON(!intel_irqs_enabled(dev_priv)))
334 return;
335
Akash Goelf4e9af42016-10-12 21:54:30 +0530336 __gen6_mask_pm_irq(dev_priv, mask);
337}
338
339void gen6_reset_pm_iir(struct drm_i915_private *dev_priv, u32 reset_mask)
340{
341 i915_reg_t reg = gen6_pm_iir(dev_priv);
342
343 assert_spin_locked(&dev_priv->irq_lock);
344
345 I915_WRITE(reg, reset_mask);
346 I915_WRITE(reg, reset_mask);
347 POSTING_READ(reg);
348}
349
350void gen6_enable_pm_irq(struct drm_i915_private *dev_priv, u32 enable_mask)
351{
352 assert_spin_locked(&dev_priv->irq_lock);
353
354 dev_priv->pm_ier |= enable_mask;
355 I915_WRITE(gen6_pm_ier(dev_priv), dev_priv->pm_ier);
356 gen6_unmask_pm_irq(dev_priv, enable_mask);
357 /* unmask_pm_irq provides an implicit barrier (POSTING_READ) */
358}
359
360void gen6_disable_pm_irq(struct drm_i915_private *dev_priv, u32 disable_mask)
361{
362 assert_spin_locked(&dev_priv->irq_lock);
363
364 dev_priv->pm_ier &= ~disable_mask;
365 __gen6_mask_pm_irq(dev_priv, disable_mask);
366 I915_WRITE(gen6_pm_ier(dev_priv), dev_priv->pm_ier);
367 /* though a barrier is missing here, but don't really need a one */
Paulo Zanoniedbfdb42013-08-06 18:57:13 -0300368}
369
Chris Wilsondc979972016-05-10 14:10:04 +0100370void gen6_reset_rps_interrupts(struct drm_i915_private *dev_priv)
Imre Deak3cc134e2014-11-19 15:30:03 +0200371{
Imre Deak3cc134e2014-11-19 15:30:03 +0200372 spin_lock_irq(&dev_priv->irq_lock);
Akash Goelf4e9af42016-10-12 21:54:30 +0530373 gen6_reset_pm_iir(dev_priv, dev_priv->pm_rps_events);
Imre Deak096fad92015-03-23 19:11:35 +0200374 dev_priv->rps.pm_iir = 0;
Imre Deak3cc134e2014-11-19 15:30:03 +0200375 spin_unlock_irq(&dev_priv->irq_lock);
376}
377
Tvrtko Ursulin91d14252016-05-06 14:48:28 +0100378void gen6_enable_rps_interrupts(struct drm_i915_private *dev_priv)
Imre Deakb900b942014-11-05 20:48:48 +0200379{
Chris Wilsonf2a91d12016-09-21 14:51:06 +0100380 if (READ_ONCE(dev_priv->rps.interrupts_enabled))
381 return;
382
Imre Deakb900b942014-11-05 20:48:48 +0200383 spin_lock_irq(&dev_priv->irq_lock);
Chris Wilsonc33d2472016-07-04 08:08:36 +0100384 WARN_ON_ONCE(dev_priv->rps.pm_iir);
385 WARN_ON_ONCE(I915_READ(gen6_pm_iir(dev_priv)) & dev_priv->pm_rps_events);
Imre Deakd4d70aa2014-11-19 15:30:04 +0200386 dev_priv->rps.interrupts_enabled = true;
Imre Deakb900b942014-11-05 20:48:48 +0200387 gen6_enable_pm_irq(dev_priv, dev_priv->pm_rps_events);
Imre Deak78e68d32014-12-15 18:59:27 +0200388
Imre Deakb900b942014-11-05 20:48:48 +0200389 spin_unlock_irq(&dev_priv->irq_lock);
390}
391
Imre Deak59d02a12014-12-19 19:33:26 +0200392u32 gen6_sanitize_rps_pm_mask(struct drm_i915_private *dev_priv, u32 mask)
393{
Sagar Arun Kamble1800ad22016-05-31 13:58:27 +0530394 return (mask & ~dev_priv->rps.pm_intr_keep);
Imre Deak59d02a12014-12-19 19:33:26 +0200395}
396
Tvrtko Ursulin91d14252016-05-06 14:48:28 +0100397void gen6_disable_rps_interrupts(struct drm_i915_private *dev_priv)
Imre Deakb900b942014-11-05 20:48:48 +0200398{
Chris Wilsonf2a91d12016-09-21 14:51:06 +0100399 if (!READ_ONCE(dev_priv->rps.interrupts_enabled))
400 return;
401
Imre Deakd4d70aa2014-11-19 15:30:04 +0200402 spin_lock_irq(&dev_priv->irq_lock);
403 dev_priv->rps.interrupts_enabled = false;
Imre Deak9939fba2014-11-20 23:01:47 +0200404
Dave Gordonb20e3cf2016-09-12 21:19:35 +0100405 I915_WRITE(GEN6_PMINTRMSK, gen6_sanitize_rps_pm_mask(dev_priv, ~0u));
Imre Deak9939fba2014-11-20 23:01:47 +0200406
Akash Goelf4e9af42016-10-12 21:54:30 +0530407 gen6_disable_pm_irq(dev_priv, dev_priv->pm_rps_events);
Imre Deak58072cc2015-03-23 19:11:34 +0200408
409 spin_unlock_irq(&dev_priv->irq_lock);
Chris Wilson91c8a322016-07-05 10:40:23 +0100410 synchronize_irq(dev_priv->drm.irq);
Chris Wilsonc33d2472016-07-04 08:08:36 +0100411
412 /* Now that we will not be generating any more work, flush any
413 * outsanding tasks. As we are called on the RPS idle path,
414 * we will reset the GPU to minimum frequencies, so the current
415 * state of the worker can be discarded.
416 */
417 cancel_work_sync(&dev_priv->rps.work);
418 gen6_reset_rps_interrupts(dev_priv);
Imre Deakb900b942014-11-05 20:48:48 +0200419}
420
Sagar Arun Kamble26705e22016-10-12 21:54:31 +0530421void gen9_reset_guc_interrupts(struct drm_i915_private *dev_priv)
422{
423 spin_lock_irq(&dev_priv->irq_lock);
424 gen6_reset_pm_iir(dev_priv, dev_priv->pm_guc_events);
425 spin_unlock_irq(&dev_priv->irq_lock);
426}
427
428void gen9_enable_guc_interrupts(struct drm_i915_private *dev_priv)
429{
430 spin_lock_irq(&dev_priv->irq_lock);
431 if (!dev_priv->guc.interrupts_enabled) {
432 WARN_ON_ONCE(I915_READ(gen6_pm_iir(dev_priv)) &
433 dev_priv->pm_guc_events);
434 dev_priv->guc.interrupts_enabled = true;
435 gen6_enable_pm_irq(dev_priv, dev_priv->pm_guc_events);
436 }
437 spin_unlock_irq(&dev_priv->irq_lock);
438}
439
440void gen9_disable_guc_interrupts(struct drm_i915_private *dev_priv)
441{
442 spin_lock_irq(&dev_priv->irq_lock);
443 dev_priv->guc.interrupts_enabled = false;
444
445 gen6_disable_pm_irq(dev_priv, dev_priv->pm_guc_events);
446
447 spin_unlock_irq(&dev_priv->irq_lock);
448 synchronize_irq(dev_priv->drm.irq);
449
450 gen9_reset_guc_interrupts(dev_priv);
451}
452
Ben Widawsky09610212014-05-15 20:58:08 +0300453/**
Ville Syrjälä81fd8742015-11-25 16:21:30 +0200454 * bdw_update_port_irq - update DE port interrupt
455 * @dev_priv: driver private
456 * @interrupt_mask: mask of interrupt bits to update
457 * @enabled_irq_mask: mask of interrupt bits to enable
458 */
Ville Syrjälä3a3b3c72015-08-27 23:56:06 +0300459static void bdw_update_port_irq(struct drm_i915_private *dev_priv,
460 uint32_t interrupt_mask,
461 uint32_t enabled_irq_mask)
462{
463 uint32_t new_val;
464 uint32_t old_val;
465
466 assert_spin_locked(&dev_priv->irq_lock);
467
468 WARN_ON(enabled_irq_mask & ~interrupt_mask);
469
470 if (WARN_ON(!intel_irqs_enabled(dev_priv)))
471 return;
472
473 old_val = I915_READ(GEN8_DE_PORT_IMR);
474
475 new_val = old_val;
476 new_val &= ~interrupt_mask;
477 new_val |= (~enabled_irq_mask & interrupt_mask);
478
479 if (new_val != old_val) {
480 I915_WRITE(GEN8_DE_PORT_IMR, new_val);
481 POSTING_READ(GEN8_DE_PORT_IMR);
482 }
483}
484
485/**
Ville Syrjälä013d3752015-11-23 18:06:17 +0200486 * bdw_update_pipe_irq - update DE pipe interrupt
487 * @dev_priv: driver private
488 * @pipe: pipe whose interrupt to update
489 * @interrupt_mask: mask of interrupt bits to update
490 * @enabled_irq_mask: mask of interrupt bits to enable
491 */
492void bdw_update_pipe_irq(struct drm_i915_private *dev_priv,
493 enum pipe pipe,
494 uint32_t interrupt_mask,
495 uint32_t enabled_irq_mask)
496{
497 uint32_t new_val;
498
499 assert_spin_locked(&dev_priv->irq_lock);
500
501 WARN_ON(enabled_irq_mask & ~interrupt_mask);
502
503 if (WARN_ON(!intel_irqs_enabled(dev_priv)))
504 return;
505
506 new_val = dev_priv->de_irq_mask[pipe];
507 new_val &= ~interrupt_mask;
508 new_val |= (~enabled_irq_mask & interrupt_mask);
509
510 if (new_val != dev_priv->de_irq_mask[pipe]) {
511 dev_priv->de_irq_mask[pipe] = new_val;
512 I915_WRITE(GEN8_DE_PIPE_IMR(pipe), dev_priv->de_irq_mask[pipe]);
513 POSTING_READ(GEN8_DE_PIPE_IMR(pipe));
514 }
515}
516
517/**
Daniel Vetterfee884e2013-07-04 23:35:21 +0200518 * ibx_display_interrupt_update - update SDEIMR
519 * @dev_priv: driver private
520 * @interrupt_mask: mask of interrupt bits to update
521 * @enabled_irq_mask: mask of interrupt bits to enable
522 */
Daniel Vetter47339cd2014-09-30 10:56:46 +0200523void ibx_display_interrupt_update(struct drm_i915_private *dev_priv,
524 uint32_t interrupt_mask,
525 uint32_t enabled_irq_mask)
Daniel Vetterfee884e2013-07-04 23:35:21 +0200526{
527 uint32_t sdeimr = I915_READ(SDEIMR);
528 sdeimr &= ~interrupt_mask;
529 sdeimr |= (~enabled_irq_mask & interrupt_mask);
530
Daniel Vetter15a17aa2014-12-08 16:30:00 +0100531 WARN_ON(enabled_irq_mask & ~interrupt_mask);
532
Daniel Vetterfee884e2013-07-04 23:35:21 +0200533 assert_spin_locked(&dev_priv->irq_lock);
534
Jesse Barnes9df7575f2014-06-20 09:29:20 -0700535 if (WARN_ON(!intel_irqs_enabled(dev_priv)))
Paulo Zanonic67a4702013-08-19 13:18:09 -0300536 return;
Paulo Zanonic67a4702013-08-19 13:18:09 -0300537
Daniel Vetterfee884e2013-07-04 23:35:21 +0200538 I915_WRITE(SDEIMR, sdeimr);
539 POSTING_READ(SDEIMR);
540}
Paulo Zanoni86642812013-04-12 17:57:57 -0300541
Daniel Vetterb5ea6422014-03-02 21:18:00 +0100542static void
Imre Deak755e9012014-02-10 18:42:47 +0200543__i915_enable_pipestat(struct drm_i915_private *dev_priv, enum pipe pipe,
544 u32 enable_mask, u32 status_mask)
Keith Packard7c463582008-11-04 02:03:27 -0800545{
Ville Syrjäläf0f59a02015-11-18 15:33:26 +0200546 i915_reg_t reg = PIPESTAT(pipe);
Imre Deak755e9012014-02-10 18:42:47 +0200547 u32 pipestat = I915_READ(reg) & PIPESTAT_INT_ENABLE_MASK;
Keith Packard7c463582008-11-04 02:03:27 -0800548
Daniel Vetterb79480b2013-06-27 17:52:10 +0200549 assert_spin_locked(&dev_priv->irq_lock);
Daniel Vetterd518ce52014-08-27 10:43:37 +0200550 WARN_ON(!intel_irqs_enabled(dev_priv));
Daniel Vetterb79480b2013-06-27 17:52:10 +0200551
Ville Syrjälä04feced2014-04-03 13:28:33 +0300552 if (WARN_ONCE(enable_mask & ~PIPESTAT_INT_ENABLE_MASK ||
553 status_mask & ~PIPESTAT_INT_STATUS_MASK,
554 "pipe %c: enable_mask=0x%x, status_mask=0x%x\n",
555 pipe_name(pipe), enable_mask, status_mask))
Imre Deak755e9012014-02-10 18:42:47 +0200556 return;
557
558 if ((pipestat & enable_mask) == enable_mask)
Ville Syrjälä46c06a32013-02-20 21:16:18 +0200559 return;
560
Imre Deak91d181d2014-02-10 18:42:49 +0200561 dev_priv->pipestat_irq_mask[pipe] |= status_mask;
562
Ville Syrjälä46c06a32013-02-20 21:16:18 +0200563 /* Enable the interrupt, clear any pending status */
Imre Deak755e9012014-02-10 18:42:47 +0200564 pipestat |= enable_mask | status_mask;
Ville Syrjälä46c06a32013-02-20 21:16:18 +0200565 I915_WRITE(reg, pipestat);
566 POSTING_READ(reg);
Keith Packard7c463582008-11-04 02:03:27 -0800567}
568
Daniel Vetterb5ea6422014-03-02 21:18:00 +0100569static void
Imre Deak755e9012014-02-10 18:42:47 +0200570__i915_disable_pipestat(struct drm_i915_private *dev_priv, enum pipe pipe,
571 u32 enable_mask, u32 status_mask)
Keith Packard7c463582008-11-04 02:03:27 -0800572{
Ville Syrjäläf0f59a02015-11-18 15:33:26 +0200573 i915_reg_t reg = PIPESTAT(pipe);
Imre Deak755e9012014-02-10 18:42:47 +0200574 u32 pipestat = I915_READ(reg) & PIPESTAT_INT_ENABLE_MASK;
Keith Packard7c463582008-11-04 02:03:27 -0800575
Daniel Vetterb79480b2013-06-27 17:52:10 +0200576 assert_spin_locked(&dev_priv->irq_lock);
Daniel Vetterd518ce52014-08-27 10:43:37 +0200577 WARN_ON(!intel_irqs_enabled(dev_priv));
Daniel Vetterb79480b2013-06-27 17:52:10 +0200578
Ville Syrjälä04feced2014-04-03 13:28:33 +0300579 if (WARN_ONCE(enable_mask & ~PIPESTAT_INT_ENABLE_MASK ||
580 status_mask & ~PIPESTAT_INT_STATUS_MASK,
581 "pipe %c: enable_mask=0x%x, status_mask=0x%x\n",
582 pipe_name(pipe), enable_mask, status_mask))
Ville Syrjälä46c06a32013-02-20 21:16:18 +0200583 return;
584
Imre Deak755e9012014-02-10 18:42:47 +0200585 if ((pipestat & enable_mask) == 0)
586 return;
587
Imre Deak91d181d2014-02-10 18:42:49 +0200588 dev_priv->pipestat_irq_mask[pipe] &= ~status_mask;
589
Imre Deak755e9012014-02-10 18:42:47 +0200590 pipestat &= ~enable_mask;
Ville Syrjälä46c06a32013-02-20 21:16:18 +0200591 I915_WRITE(reg, pipestat);
592 POSTING_READ(reg);
Keith Packard7c463582008-11-04 02:03:27 -0800593}
594
Imre Deak10c59c52014-02-10 18:42:48 +0200595static u32 vlv_get_pipestat_enable_mask(struct drm_device *dev, u32 status_mask)
596{
597 u32 enable_mask = status_mask << 16;
598
599 /*
Ville Syrjälä724a6902014-04-09 13:28:48 +0300600 * On pipe A we don't support the PSR interrupt yet,
601 * on pipe B and C the same bit MBZ.
Imre Deak10c59c52014-02-10 18:42:48 +0200602 */
603 if (WARN_ON_ONCE(status_mask & PIPE_A_PSR_STATUS_VLV))
604 return 0;
Ville Syrjälä724a6902014-04-09 13:28:48 +0300605 /*
606 * On pipe B and C we don't support the PSR interrupt yet, on pipe
607 * A the same bit is for perf counters which we don't use either.
608 */
609 if (WARN_ON_ONCE(status_mask & PIPE_B_PSR_STATUS_VLV))
610 return 0;
Imre Deak10c59c52014-02-10 18:42:48 +0200611
612 enable_mask &= ~(PIPE_FIFO_UNDERRUN_STATUS |
613 SPRITE0_FLIP_DONE_INT_EN_VLV |
614 SPRITE1_FLIP_DONE_INT_EN_VLV);
615 if (status_mask & SPRITE0_FLIP_DONE_INT_STATUS_VLV)
616 enable_mask |= SPRITE0_FLIP_DONE_INT_EN_VLV;
617 if (status_mask & SPRITE1_FLIP_DONE_INT_STATUS_VLV)
618 enable_mask |= SPRITE1_FLIP_DONE_INT_EN_VLV;
619
620 return enable_mask;
621}
622
Imre Deak755e9012014-02-10 18:42:47 +0200623void
624i915_enable_pipestat(struct drm_i915_private *dev_priv, enum pipe pipe,
625 u32 status_mask)
626{
627 u32 enable_mask;
628
Wayne Boyer666a4532015-12-09 12:29:35 -0800629 if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv))
Chris Wilson91c8a322016-07-05 10:40:23 +0100630 enable_mask = vlv_get_pipestat_enable_mask(&dev_priv->drm,
Imre Deak10c59c52014-02-10 18:42:48 +0200631 status_mask);
632 else
633 enable_mask = status_mask << 16;
Imre Deak755e9012014-02-10 18:42:47 +0200634 __i915_enable_pipestat(dev_priv, pipe, enable_mask, status_mask);
635}
636
637void
638i915_disable_pipestat(struct drm_i915_private *dev_priv, enum pipe pipe,
639 u32 status_mask)
640{
641 u32 enable_mask;
642
Wayne Boyer666a4532015-12-09 12:29:35 -0800643 if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv))
Chris Wilson91c8a322016-07-05 10:40:23 +0100644 enable_mask = vlv_get_pipestat_enable_mask(&dev_priv->drm,
Imre Deak10c59c52014-02-10 18:42:48 +0200645 status_mask);
646 else
647 enable_mask = status_mask << 16;
Imre Deak755e9012014-02-10 18:42:47 +0200648 __i915_disable_pipestat(dev_priv, pipe, enable_mask, status_mask);
649}
650
=?utf-8?q?Michel_D=C3=A4nzer?=a6b54f32006-10-24 23:37:43 +1000651/**
Jani Nikulaf49e38d2013-04-29 13:02:54 +0300652 * i915_enable_asle_pipestat - enable ASLE pipestat for OpRegion
Tvrtko Ursulin14bb2c12016-06-03 14:02:17 +0100653 * @dev_priv: i915 device private
Zhao Yakui01c66882009-10-28 05:10:00 +0000654 */
Tvrtko Ursulin91d14252016-05-06 14:48:28 +0100655static void i915_enable_asle_pipestat(struct drm_i915_private *dev_priv)
Zhao Yakui01c66882009-10-28 05:10:00 +0000656{
Tvrtko Ursulin91d14252016-05-06 14:48:28 +0100657 if (!dev_priv->opregion.asle || !IS_MOBILE(dev_priv))
Jani Nikulaf49e38d2013-04-29 13:02:54 +0300658 return;
659
Daniel Vetter13321782014-09-15 14:55:29 +0200660 spin_lock_irq(&dev_priv->irq_lock);
Zhao Yakui01c66882009-10-28 05:10:00 +0000661
Imre Deak755e9012014-02-10 18:42:47 +0200662 i915_enable_pipestat(dev_priv, PIPE_B, PIPE_LEGACY_BLC_EVENT_STATUS);
Tvrtko Ursulin91d14252016-05-06 14:48:28 +0100663 if (INTEL_GEN(dev_priv) >= 4)
Daniel Vetter3b6c42e2013-10-21 18:04:35 +0200664 i915_enable_pipestat(dev_priv, PIPE_A,
Imre Deak755e9012014-02-10 18:42:47 +0200665 PIPE_LEGACY_BLC_EVENT_STATUS);
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000666
Daniel Vetter13321782014-09-15 14:55:29 +0200667 spin_unlock_irq(&dev_priv->irq_lock);
Zhao Yakui01c66882009-10-28 05:10:00 +0000668}
669
Ville Syrjäläf75f3742014-05-15 20:20:36 +0300670/*
671 * This timing diagram depicts the video signal in and
672 * around the vertical blanking period.
673 *
674 * Assumptions about the fictitious mode used in this example:
675 * vblank_start >= 3
676 * vsync_start = vblank_start + 1
677 * vsync_end = vblank_start + 2
678 * vtotal = vblank_start + 3
679 *
680 * start of vblank:
681 * latch double buffered registers
682 * increment frame counter (ctg+)
683 * generate start of vblank interrupt (gen4+)
684 * |
685 * | frame start:
686 * | generate frame start interrupt (aka. vblank interrupt) (gmch)
687 * | may be shifted forward 1-3 extra lines via PIPECONF
688 * | |
689 * | | start of vsync:
690 * | | generate vsync interrupt
691 * | | |
692 * ___xxxx___ ___xxxx___ ___xxxx___ ___xxxx___ ___xxxx___ ___xxxx
693 * . \hs/ . \hs/ \hs/ \hs/ . \hs/
694 * ----va---> <-----------------vb--------------------> <--------va-------------
695 * | | <----vs-----> |
696 * -vbs-----> <---vbs+1---> <---vbs+2---> <-----0-----> <-----1-----> <-----2--- (scanline counter gen2)
697 * -vbs-2---> <---vbs-1---> <---vbs-----> <---vbs+1---> <---vbs+2---> <-----0--- (scanline counter gen3+)
698 * -vbs-2---> <---vbs-2---> <---vbs-1---> <---vbs-----> <---vbs+1---> <---vbs+2- (scanline counter hsw+ hdmi)
699 * | | |
700 * last visible pixel first visible pixel
701 * | increment frame counter (gen3/4)
702 * pixel counter = vblank_start * htotal pixel counter = 0 (gen3/4)
703 *
704 * x = horizontal active
705 * _ = horizontal blanking
706 * hs = horizontal sync
707 * va = vertical active
708 * vb = vertical blanking
709 * vs = vertical sync
710 * vbs = vblank_start (number)
711 *
712 * Summary:
713 * - most events happen at the start of horizontal sync
714 * - frame start happens at the start of horizontal blank, 1-4 lines
715 * (depending on PIPECONF settings) after the start of vblank
716 * - gen3/4 pixel and frame counter are synchronized with the start
717 * of horizontal active on the first line of vertical active
718 */
719
Keith Packard42f52ef2008-10-18 19:39:29 -0700720/* Called from drm generic code, passed a 'crtc', which
721 * we use as a pipe index
722 */
Thierry Reding88e72712015-09-24 18:35:31 +0200723static u32 i915_get_vblank_counter(struct drm_device *dev, unsigned int pipe)
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700724{
Chris Wilsonfac5e232016-07-04 11:34:36 +0100725 struct drm_i915_private *dev_priv = to_i915(dev);
Ville Syrjäläf0f59a02015-11-18 15:33:26 +0200726 i915_reg_t high_frame, low_frame;
Ville Syrjälä0b2a8e02014-04-29 13:35:50 +0300727 u32 high1, high2, low, pixel, vbl_start, hsync_start, htotal;
Ville Syrjälä98187832016-10-31 22:37:10 +0200728 struct intel_crtc *intel_crtc = intel_get_crtc_for_pipe(dev_priv,
729 pipe);
Maarten Lankhorstfc467a222015-06-01 12:50:07 +0200730 const struct drm_display_mode *mode = &intel_crtc->base.hwmode;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700731
Daniel Vetterf3a5c3f2015-02-13 21:03:44 +0100732 htotal = mode->crtc_htotal;
733 hsync_start = mode->crtc_hsync_start;
734 vbl_start = mode->crtc_vblank_start;
735 if (mode->flags & DRM_MODE_FLAG_INTERLACE)
736 vbl_start = DIV_ROUND_UP(vbl_start, 2);
Ville Syrjälä391f75e2013-09-25 19:55:26 +0300737
Ville Syrjälä0b2a8e02014-04-29 13:35:50 +0300738 /* Convert to pixel count */
739 vbl_start *= htotal;
740
741 /* Start of vblank event occurs at start of hsync */
742 vbl_start -= htotal - hsync_start;
743
Jesse Barnes9db4a9c2011-02-07 12:26:52 -0800744 high_frame = PIPEFRAME(pipe);
745 low_frame = PIPEFRAMEPIXEL(pipe);
Chris Wilson5eddb702010-09-11 13:48:45 +0100746
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700747 /*
748 * High & low register fields aren't synchronized, so make sure
749 * we get a low value that's stable across two reads of the high
750 * register.
751 */
752 do {
Chris Wilson5eddb702010-09-11 13:48:45 +0100753 high1 = I915_READ(high_frame) & PIPE_FRAME_HIGH_MASK;
Ville Syrjälä391f75e2013-09-25 19:55:26 +0300754 low = I915_READ(low_frame);
Chris Wilson5eddb702010-09-11 13:48:45 +0100755 high2 = I915_READ(high_frame) & PIPE_FRAME_HIGH_MASK;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700756 } while (high1 != high2);
757
Chris Wilson5eddb702010-09-11 13:48:45 +0100758 high1 >>= PIPE_FRAME_HIGH_SHIFT;
Ville Syrjälä391f75e2013-09-25 19:55:26 +0300759 pixel = low & PIPE_PIXEL_MASK;
Chris Wilson5eddb702010-09-11 13:48:45 +0100760 low >>= PIPE_FRAME_LOW_SHIFT;
Ville Syrjälä391f75e2013-09-25 19:55:26 +0300761
762 /*
763 * The frame counter increments at beginning of active.
764 * Cook up a vblank counter by also checking the pixel
765 * counter against vblank start.
766 */
Ville Syrjäläedc08d02013-11-06 13:56:27 -0200767 return (((high1 << 8) | low) + (pixel >= vbl_start)) & 0xffffff;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700768}
769
Dave Airlie974e59b2015-10-30 09:45:33 +1000770static u32 g4x_get_vblank_counter(struct drm_device *dev, unsigned int pipe)
Jesse Barnes9880b7a2009-02-06 10:22:41 -0800771{
Chris Wilsonfac5e232016-07-04 11:34:36 +0100772 struct drm_i915_private *dev_priv = to_i915(dev);
Jesse Barnes9880b7a2009-02-06 10:22:41 -0800773
Ville Syrjälä649636e2015-09-22 19:50:01 +0300774 return I915_READ(PIPE_FRMCOUNT_G4X(pipe));
Jesse Barnes9880b7a2009-02-06 10:22:41 -0800775}
776
Ville Syrjälä75aa3f62015-10-22 15:34:56 +0300777/* I915_READ_FW, only for fast reads of display block, no need for forcewake etc. */
Ville Syrjäläa225f072014-04-29 13:35:45 +0300778static int __intel_get_crtc_scanline(struct intel_crtc *crtc)
779{
780 struct drm_device *dev = crtc->base.dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +0100781 struct drm_i915_private *dev_priv = to_i915(dev);
Maarten Lankhorstfc467a222015-06-01 12:50:07 +0200782 const struct drm_display_mode *mode = &crtc->base.hwmode;
Ville Syrjäläa225f072014-04-29 13:35:45 +0300783 enum pipe pipe = crtc->pipe;
Ville Syrjälä80715b22014-05-15 20:23:23 +0300784 int position, vtotal;
Ville Syrjäläa225f072014-04-29 13:35:45 +0300785
Ville Syrjälä80715b22014-05-15 20:23:23 +0300786 vtotal = mode->crtc_vtotal;
Ville Syrjäläa225f072014-04-29 13:35:45 +0300787 if (mode->flags & DRM_MODE_FLAG_INTERLACE)
788 vtotal /= 2;
789
Tvrtko Ursulin91d14252016-05-06 14:48:28 +0100790 if (IS_GEN2(dev_priv))
Ville Syrjälä75aa3f62015-10-22 15:34:56 +0300791 position = I915_READ_FW(PIPEDSL(pipe)) & DSL_LINEMASK_GEN2;
Ville Syrjäläa225f072014-04-29 13:35:45 +0300792 else
Ville Syrjälä75aa3f62015-10-22 15:34:56 +0300793 position = I915_READ_FW(PIPEDSL(pipe)) & DSL_LINEMASK_GEN3;
Ville Syrjäläa225f072014-04-29 13:35:45 +0300794
795 /*
Jesse Barnes41b578f2015-09-22 12:15:54 -0700796 * On HSW, the DSL reg (0x70000) appears to return 0 if we
797 * read it just before the start of vblank. So try it again
798 * so we don't accidentally end up spanning a vblank frame
799 * increment, causing the pipe_update_end() code to squak at us.
800 *
801 * The nature of this problem means we can't simply check the ISR
802 * bit and return the vblank start value; nor can we use the scanline
803 * debug register in the transcoder as it appears to have the same
804 * problem. We may need to extend this to include other platforms,
805 * but so far testing only shows the problem on HSW.
806 */
Tvrtko Ursulin91d14252016-05-06 14:48:28 +0100807 if (HAS_DDI(dev_priv) && !position) {
Jesse Barnes41b578f2015-09-22 12:15:54 -0700808 int i, temp;
809
810 for (i = 0; i < 100; i++) {
811 udelay(1);
812 temp = __raw_i915_read32(dev_priv, PIPEDSL(pipe)) &
813 DSL_LINEMASK_GEN3;
814 if (temp != position) {
815 position = temp;
816 break;
817 }
818 }
819 }
820
821 /*
Ville Syrjälä80715b22014-05-15 20:23:23 +0300822 * See update_scanline_offset() for the details on the
823 * scanline_offset adjustment.
Ville Syrjäläa225f072014-04-29 13:35:45 +0300824 */
Ville Syrjälä80715b22014-05-15 20:23:23 +0300825 return (position + crtc->scanline_offset) % vtotal;
Ville Syrjäläa225f072014-04-29 13:35:45 +0300826}
827
Thierry Reding88e72712015-09-24 18:35:31 +0200828static int i915_get_crtc_scanoutpos(struct drm_device *dev, unsigned int pipe,
Ville Syrjäläabca9e42013-10-28 20:50:48 +0200829 unsigned int flags, int *vpos, int *hpos,
Ville Syrjälä3bb403b2015-09-14 22:43:44 +0300830 ktime_t *stime, ktime_t *etime,
831 const struct drm_display_mode *mode)
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100832{
Chris Wilsonfac5e232016-07-04 11:34:36 +0100833 struct drm_i915_private *dev_priv = to_i915(dev);
Ville Syrjälä98187832016-10-31 22:37:10 +0200834 struct intel_crtc *intel_crtc = intel_get_crtc_for_pipe(dev_priv,
835 pipe);
Ville Syrjälä3aa18df2013-10-11 19:10:32 +0300836 int position;
Ville Syrjälä78e8fc62014-04-29 13:35:44 +0300837 int vbl_start, vbl_end, hsync_start, htotal, vtotal;
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100838 bool in_vbl = true;
839 int ret = 0;
Mario Kleinerad3543e2013-10-30 05:13:08 +0100840 unsigned long irqflags;
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100841
Maarten Lankhorstfc467a222015-06-01 12:50:07 +0200842 if (WARN_ON(!mode->crtc_clock)) {
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100843 DRM_DEBUG_DRIVER("trying to get scanoutpos for disabled "
Jesse Barnes9db4a9c2011-02-07 12:26:52 -0800844 "pipe %c\n", pipe_name(pipe));
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100845 return 0;
846 }
847
Ville Syrjäläc2baf4b2013-09-23 14:48:50 +0300848 htotal = mode->crtc_htotal;
Ville Syrjälä78e8fc62014-04-29 13:35:44 +0300849 hsync_start = mode->crtc_hsync_start;
Ville Syrjäläc2baf4b2013-09-23 14:48:50 +0300850 vtotal = mode->crtc_vtotal;
851 vbl_start = mode->crtc_vblank_start;
852 vbl_end = mode->crtc_vblank_end;
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100853
Ville Syrjäläd31faf62013-10-28 16:31:41 +0200854 if (mode->flags & DRM_MODE_FLAG_INTERLACE) {
855 vbl_start = DIV_ROUND_UP(vbl_start, 2);
856 vbl_end /= 2;
857 vtotal /= 2;
858 }
859
Ville Syrjäläc2baf4b2013-09-23 14:48:50 +0300860 ret |= DRM_SCANOUTPOS_VALID | DRM_SCANOUTPOS_ACCURATE;
861
Mario Kleinerad3543e2013-10-30 05:13:08 +0100862 /*
863 * Lock uncore.lock, as we will do multiple timing critical raw
864 * register reads, potentially with preemption disabled, so the
865 * following code must not block on uncore.lock.
866 */
867 spin_lock_irqsave(&dev_priv->uncore.lock, irqflags);
Ville Syrjälä78e8fc62014-04-29 13:35:44 +0300868
Mario Kleinerad3543e2013-10-30 05:13:08 +0100869 /* preempt_disable_rt() should go right here in PREEMPT_RT patchset. */
870
871 /* Get optional system timestamp before query. */
872 if (stime)
873 *stime = ktime_get();
874
Tvrtko Ursulin91d14252016-05-06 14:48:28 +0100875 if (IS_GEN2(dev_priv) || IS_G4X(dev_priv) || INTEL_GEN(dev_priv) >= 5) {
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100876 /* No obvious pixelcount register. Only query vertical
877 * scanout position from Display scan line register.
878 */
Ville Syrjäläa225f072014-04-29 13:35:45 +0300879 position = __intel_get_crtc_scanline(intel_crtc);
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100880 } else {
881 /* Have access to pixelcount since start of frame.
882 * We can split this into vertical and horizontal
883 * scanout position.
884 */
Ville Syrjälä75aa3f62015-10-22 15:34:56 +0300885 position = (I915_READ_FW(PIPEFRAMEPIXEL(pipe)) & PIPE_PIXEL_MASK) >> PIPE_PIXEL_SHIFT;
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100886
Ville Syrjälä3aa18df2013-10-11 19:10:32 +0300887 /* convert to pixel counts */
888 vbl_start *= htotal;
889 vbl_end *= htotal;
890 vtotal *= htotal;
Ville Syrjälä78e8fc62014-04-29 13:35:44 +0300891
892 /*
Ville Syrjälä7e78f1cb2014-04-29 13:35:49 +0300893 * In interlaced modes, the pixel counter counts all pixels,
894 * so one field will have htotal more pixels. In order to avoid
895 * the reported position from jumping backwards when the pixel
896 * counter is beyond the length of the shorter field, just
897 * clamp the position the length of the shorter field. This
898 * matches how the scanline counter based position works since
899 * the scanline counter doesn't count the two half lines.
900 */
901 if (position >= vtotal)
902 position = vtotal - 1;
903
904 /*
Ville Syrjälä78e8fc62014-04-29 13:35:44 +0300905 * Start of vblank interrupt is triggered at start of hsync,
906 * just prior to the first active line of vblank. However we
907 * consider lines to start at the leading edge of horizontal
908 * active. So, should we get here before we've crossed into
909 * the horizontal active of the first line in vblank, we would
910 * not set the DRM_SCANOUTPOS_INVBL flag. In order to fix that,
911 * always add htotal-hsync_start to the current pixel position.
912 */
913 position = (position + htotal - hsync_start) % vtotal;
Ville Syrjälä3aa18df2013-10-11 19:10:32 +0300914 }
915
Mario Kleinerad3543e2013-10-30 05:13:08 +0100916 /* Get optional system timestamp after query. */
917 if (etime)
918 *etime = ktime_get();
919
920 /* preempt_enable_rt() should go right here in PREEMPT_RT patchset. */
921
922 spin_unlock_irqrestore(&dev_priv->uncore.lock, irqflags);
923
Ville Syrjälä3aa18df2013-10-11 19:10:32 +0300924 in_vbl = position >= vbl_start && position < vbl_end;
925
926 /*
927 * While in vblank, position will be negative
928 * counting up towards 0 at vbl_end. And outside
929 * vblank, position will be positive counting
930 * up since vbl_end.
931 */
932 if (position >= vbl_start)
933 position -= vbl_end;
934 else
935 position += vtotal - vbl_end;
936
Tvrtko Ursulin91d14252016-05-06 14:48:28 +0100937 if (IS_GEN2(dev_priv) || IS_G4X(dev_priv) || INTEL_GEN(dev_priv) >= 5) {
Ville Syrjälä3aa18df2013-10-11 19:10:32 +0300938 *vpos = position;
939 *hpos = 0;
940 } else {
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100941 *vpos = position / htotal;
942 *hpos = position - (*vpos * htotal);
943 }
944
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100945 /* In vblank? */
946 if (in_vbl)
Daniel Vetter3d3cbd82014-09-10 17:36:11 +0200947 ret |= DRM_SCANOUTPOS_IN_VBLANK;
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100948
949 return ret;
950}
951
Ville Syrjäläa225f072014-04-29 13:35:45 +0300952int intel_get_crtc_scanline(struct intel_crtc *crtc)
953{
Chris Wilsonfac5e232016-07-04 11:34:36 +0100954 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
Ville Syrjäläa225f072014-04-29 13:35:45 +0300955 unsigned long irqflags;
956 int position;
957
958 spin_lock_irqsave(&dev_priv->uncore.lock, irqflags);
959 position = __intel_get_crtc_scanline(crtc);
960 spin_unlock_irqrestore(&dev_priv->uncore.lock, irqflags);
961
962 return position;
963}
964
Thierry Reding88e72712015-09-24 18:35:31 +0200965static int i915_get_vblank_timestamp(struct drm_device *dev, unsigned int pipe,
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100966 int *max_error,
967 struct timeval *vblank_time,
968 unsigned flags)
969{
Ville Syrjäläb91eb5c2016-10-31 22:37:09 +0200970 struct drm_i915_private *dev_priv = to_i915(dev);
Ville Syrjäläe2af48c2016-10-31 22:37:05 +0200971 struct intel_crtc *crtc;
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100972
Ville Syrjäläb91eb5c2016-10-31 22:37:09 +0200973 if (pipe >= INTEL_INFO(dev_priv)->num_pipes) {
Thierry Reding88e72712015-09-24 18:35:31 +0200974 DRM_ERROR("Invalid crtc %u\n", pipe);
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100975 return -EINVAL;
976 }
977
978 /* Get drm_crtc to timestamp: */
Ville Syrjäläb91eb5c2016-10-31 22:37:09 +0200979 crtc = intel_get_crtc_for_pipe(dev_priv, pipe);
Chris Wilson4041b852011-01-22 10:07:56 +0000980 if (crtc == NULL) {
Thierry Reding88e72712015-09-24 18:35:31 +0200981 DRM_ERROR("Invalid crtc %u\n", pipe);
Chris Wilson4041b852011-01-22 10:07:56 +0000982 return -EINVAL;
983 }
984
Ville Syrjäläe2af48c2016-10-31 22:37:05 +0200985 if (!crtc->base.hwmode.crtc_clock) {
Thierry Reding88e72712015-09-24 18:35:31 +0200986 DRM_DEBUG_KMS("crtc %u is disabled\n", pipe);
Chris Wilson4041b852011-01-22 10:07:56 +0000987 return -EBUSY;
988 }
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100989
990 /* Helper routine in DRM core does all the work: */
Chris Wilson4041b852011-01-22 10:07:56 +0000991 return drm_calc_vbltimestamp_from_scanoutpos(dev, pipe, max_error,
992 vblank_time, flags,
Ville Syrjäläe2af48c2016-10-31 22:37:05 +0200993 &crtc->base.hwmode);
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100994}
995
Tvrtko Ursulin91d14252016-05-06 14:48:28 +0100996static void ironlake_rps_change_irq_handler(struct drm_i915_private *dev_priv)
Jesse Barnesf97108d2010-01-29 11:27:07 -0800997{
Matthew Garrettb5b72e82010-02-02 18:30:47 +0000998 u32 busy_up, busy_down, max_avg, min_avg;
Daniel Vetter92703882012-08-09 16:46:01 +0200999 u8 new_delay;
Daniel Vetter92703882012-08-09 16:46:01 +02001000
Daniel Vetterd0ecd7e2013-07-04 23:35:25 +02001001 spin_lock(&mchdev_lock);
Jesse Barnesf97108d2010-01-29 11:27:07 -08001002
Daniel Vetter73edd18f2012-08-08 23:35:37 +02001003 I915_WRITE16(MEMINTRSTS, I915_READ(MEMINTRSTS));
1004
Daniel Vetter20e4d402012-08-08 23:35:39 +02001005 new_delay = dev_priv->ips.cur_delay;
Daniel Vetter92703882012-08-09 16:46:01 +02001006
Jesse Barnes7648fa92010-05-20 14:28:11 -07001007 I915_WRITE16(MEMINTRSTS, MEMINT_EVAL_CHG);
Matthew Garrettb5b72e82010-02-02 18:30:47 +00001008 busy_up = I915_READ(RCPREVBSYTUPAVG);
1009 busy_down = I915_READ(RCPREVBSYTDNAVG);
Jesse Barnesf97108d2010-01-29 11:27:07 -08001010 max_avg = I915_READ(RCBMAXAVG);
1011 min_avg = I915_READ(RCBMINAVG);
1012
1013 /* Handle RCS change request from hw */
Matthew Garrettb5b72e82010-02-02 18:30:47 +00001014 if (busy_up > max_avg) {
Daniel Vetter20e4d402012-08-08 23:35:39 +02001015 if (dev_priv->ips.cur_delay != dev_priv->ips.max_delay)
1016 new_delay = dev_priv->ips.cur_delay - 1;
1017 if (new_delay < dev_priv->ips.max_delay)
1018 new_delay = dev_priv->ips.max_delay;
Matthew Garrettb5b72e82010-02-02 18:30:47 +00001019 } else if (busy_down < min_avg) {
Daniel Vetter20e4d402012-08-08 23:35:39 +02001020 if (dev_priv->ips.cur_delay != dev_priv->ips.min_delay)
1021 new_delay = dev_priv->ips.cur_delay + 1;
1022 if (new_delay > dev_priv->ips.min_delay)
1023 new_delay = dev_priv->ips.min_delay;
Jesse Barnesf97108d2010-01-29 11:27:07 -08001024 }
1025
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01001026 if (ironlake_set_drps(dev_priv, new_delay))
Daniel Vetter20e4d402012-08-08 23:35:39 +02001027 dev_priv->ips.cur_delay = new_delay;
Jesse Barnesf97108d2010-01-29 11:27:07 -08001028
Daniel Vetterd0ecd7e2013-07-04 23:35:25 +02001029 spin_unlock(&mchdev_lock);
Daniel Vetter92703882012-08-09 16:46:01 +02001030
Jesse Barnesf97108d2010-01-29 11:27:07 -08001031 return;
1032}
1033
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00001034static void notify_ring(struct intel_engine_cs *engine)
Chris Wilson549f7362010-10-19 11:19:32 +01001035{
Chris Wilsonaca34b62016-07-06 12:39:02 +01001036 smp_store_mb(engine->breadcrumbs.irq_posted, true);
Chris Wilson83348ba2016-08-09 17:47:51 +01001037 if (intel_engine_wakeup(engine))
Chris Wilson688e6c72016-07-01 17:23:15 +01001038 trace_i915_gem_request_notify(engine);
Chris Wilson549f7362010-10-19 11:19:32 +01001039}
1040
Chris Wilson43cf3bf2015-03-18 09:48:22 +00001041static void vlv_c0_read(struct drm_i915_private *dev_priv,
1042 struct intel_rps_ei *ei)
Deepak S31685c22014-07-03 17:33:01 -04001043{
Chris Wilson43cf3bf2015-03-18 09:48:22 +00001044 ei->cz_clock = vlv_punit_read(dev_priv, PUNIT_REG_CZ_TIMESTAMP);
1045 ei->render_c0 = I915_READ(VLV_RENDER_C0_COUNT);
1046 ei->media_c0 = I915_READ(VLV_MEDIA_C0_COUNT);
Deepak S31685c22014-07-03 17:33:01 -04001047}
1048
Chris Wilson43cf3bf2015-03-18 09:48:22 +00001049static bool vlv_c0_above(struct drm_i915_private *dev_priv,
1050 const struct intel_rps_ei *old,
1051 const struct intel_rps_ei *now,
1052 int threshold)
Deepak S31685c22014-07-03 17:33:01 -04001053{
Chris Wilson43cf3bf2015-03-18 09:48:22 +00001054 u64 time, c0;
Ville Syrjälä7bad74d2015-09-24 23:29:20 +03001055 unsigned int mul = 100;
Deepak S31685c22014-07-03 17:33:01 -04001056
Chris Wilson43cf3bf2015-03-18 09:48:22 +00001057 if (old->cz_clock == 0)
1058 return false;
Deepak S31685c22014-07-03 17:33:01 -04001059
Ville Syrjälä7bad74d2015-09-24 23:29:20 +03001060 if (I915_READ(VLV_COUNTER_CONTROL) & VLV_COUNT_RANGE_HIGH)
1061 mul <<= 8;
1062
Chris Wilson43cf3bf2015-03-18 09:48:22 +00001063 time = now->cz_clock - old->cz_clock;
Ville Syrjälä7bad74d2015-09-24 23:29:20 +03001064 time *= threshold * dev_priv->czclk_freq;
Deepak S31685c22014-07-03 17:33:01 -04001065
Chris Wilson43cf3bf2015-03-18 09:48:22 +00001066 /* Workload can be split between render + media, e.g. SwapBuffers
1067 * being blitted in X after being rendered in mesa. To account for
1068 * this we need to combine both engines into our activity counter.
1069 */
1070 c0 = now->render_c0 - old->render_c0;
1071 c0 += now->media_c0 - old->media_c0;
Ville Syrjälä7bad74d2015-09-24 23:29:20 +03001072 c0 *= mul * VLV_CZ_CLOCK_TO_MILLI_SEC;
Deepak S31685c22014-07-03 17:33:01 -04001073
Chris Wilson43cf3bf2015-03-18 09:48:22 +00001074 return c0 >= time;
1075}
Deepak S31685c22014-07-03 17:33:01 -04001076
Chris Wilson43cf3bf2015-03-18 09:48:22 +00001077void gen6_rps_reset_ei(struct drm_i915_private *dev_priv)
1078{
1079 vlv_c0_read(dev_priv, &dev_priv->rps.down_ei);
1080 dev_priv->rps.up_ei = dev_priv->rps.down_ei;
Chris Wilson43cf3bf2015-03-18 09:48:22 +00001081}
1082
1083static u32 vlv_wa_c0_ei(struct drm_i915_private *dev_priv, u32 pm_iir)
1084{
1085 struct intel_rps_ei now;
1086 u32 events = 0;
1087
Chris Wilson6f4b12f82015-03-18 09:48:23 +00001088 if ((pm_iir & (GEN6_PM_RP_DOWN_EI_EXPIRED | GEN6_PM_RP_UP_EI_EXPIRED)) == 0)
Chris Wilson43cf3bf2015-03-18 09:48:22 +00001089 return 0;
1090
1091 vlv_c0_read(dev_priv, &now);
1092 if (now.cz_clock == 0)
1093 return 0;
Deepak S31685c22014-07-03 17:33:01 -04001094
Chris Wilson43cf3bf2015-03-18 09:48:22 +00001095 if (pm_iir & GEN6_PM_RP_DOWN_EI_EXPIRED) {
1096 if (!vlv_c0_above(dev_priv,
1097 &dev_priv->rps.down_ei, &now,
Chris Wilson8fb55192015-04-07 16:20:28 +01001098 dev_priv->rps.down_threshold))
Chris Wilson43cf3bf2015-03-18 09:48:22 +00001099 events |= GEN6_PM_RP_DOWN_THRESHOLD;
1100 dev_priv->rps.down_ei = now;
Deepak S31685c22014-07-03 17:33:01 -04001101 }
1102
Chris Wilson43cf3bf2015-03-18 09:48:22 +00001103 if (pm_iir & GEN6_PM_RP_UP_EI_EXPIRED) {
1104 if (vlv_c0_above(dev_priv,
1105 &dev_priv->rps.up_ei, &now,
Chris Wilson8fb55192015-04-07 16:20:28 +01001106 dev_priv->rps.up_threshold))
Chris Wilson43cf3bf2015-03-18 09:48:22 +00001107 events |= GEN6_PM_RP_UP_THRESHOLD;
1108 dev_priv->rps.up_ei = now;
1109 }
1110
1111 return events;
Deepak S31685c22014-07-03 17:33:01 -04001112}
1113
Chris Wilsonf5a4c672015-04-27 13:41:23 +01001114static bool any_waiters(struct drm_i915_private *dev_priv)
1115{
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00001116 struct intel_engine_cs *engine;
Akash Goel3b3f1652016-10-13 22:44:48 +05301117 enum intel_engine_id id;
Chris Wilsonf5a4c672015-04-27 13:41:23 +01001118
Akash Goel3b3f1652016-10-13 22:44:48 +05301119 for_each_engine(engine, dev_priv, id)
Chris Wilson688e6c72016-07-01 17:23:15 +01001120 if (intel_engine_has_waiter(engine))
Chris Wilsonf5a4c672015-04-27 13:41:23 +01001121 return true;
1122
1123 return false;
1124}
1125
Ben Widawsky4912d042011-04-25 11:25:20 -07001126static void gen6_pm_rps_work(struct work_struct *work)
Jesse Barnes3b8d8d92010-12-17 14:19:02 -08001127{
Jani Nikula2d1013d2014-03-31 14:27:17 +03001128 struct drm_i915_private *dev_priv =
1129 container_of(work, struct drm_i915_private, rps.work);
Chris Wilson8d3afd72015-05-21 21:01:47 +01001130 bool client_boost;
1131 int new_delay, adj, min, max;
Paulo Zanoniedbfdb42013-08-06 18:57:13 -03001132 u32 pm_iir;
Jesse Barnes3b8d8d92010-12-17 14:19:02 -08001133
Daniel Vetter59cdb632013-07-04 23:35:28 +02001134 spin_lock_irq(&dev_priv->irq_lock);
Imre Deakd4d70aa2014-11-19 15:30:04 +02001135 /* Speed up work cancelation during disabling rps interrupts. */
1136 if (!dev_priv->rps.interrupts_enabled) {
1137 spin_unlock_irq(&dev_priv->irq_lock);
1138 return;
1139 }
Imre Deak1f814da2015-12-16 02:52:19 +02001140
Daniel Vetterc6a828d2012-08-08 23:35:35 +02001141 pm_iir = dev_priv->rps.pm_iir;
1142 dev_priv->rps.pm_iir = 0;
Imre Deaka72fbc32014-11-05 20:48:31 +02001143 /* Make sure not to corrupt PMIMR state used by ringbuffer on GEN6 */
Akash Goelf4e9af42016-10-12 21:54:30 +05301144 gen6_unmask_pm_irq(dev_priv, dev_priv->pm_rps_events);
Chris Wilson8d3afd72015-05-21 21:01:47 +01001145 client_boost = dev_priv->rps.client_boost;
1146 dev_priv->rps.client_boost = false;
Daniel Vetter59cdb632013-07-04 23:35:28 +02001147 spin_unlock_irq(&dev_priv->irq_lock);
Ben Widawsky4912d042011-04-25 11:25:20 -07001148
Paulo Zanoni60611c12013-08-15 11:50:01 -03001149 /* Make sure we didn't queue anything we're not going to process. */
Deepak Sa6706b42014-03-15 20:23:22 +05301150 WARN_ON(pm_iir & ~dev_priv->pm_rps_events);
Paulo Zanoni60611c12013-08-15 11:50:01 -03001151
Chris Wilson8d3afd72015-05-21 21:01:47 +01001152 if ((pm_iir & dev_priv->pm_rps_events) == 0 && !client_boost)
Chris Wilsonc33d2472016-07-04 08:08:36 +01001153 return;
Jesse Barnes3b8d8d92010-12-17 14:19:02 -08001154
Jesse Barnes4fc688c2012-11-02 11:14:01 -07001155 mutex_lock(&dev_priv->rps.hw_lock);
Chris Wilson7b9e0ae2012-04-28 08:56:39 +01001156
Chris Wilson43cf3bf2015-03-18 09:48:22 +00001157 pm_iir |= vlv_wa_c0_ei(dev_priv, pm_iir);
1158
Chris Wilsondd75fdc2013-09-25 17:34:57 +01001159 adj = dev_priv->rps.last_adj;
Chris Wilsonedcf2842015-04-07 16:20:29 +01001160 new_delay = dev_priv->rps.cur_freq;
Chris Wilson8d3afd72015-05-21 21:01:47 +01001161 min = dev_priv->rps.min_freq_softlimit;
1162 max = dev_priv->rps.max_freq_softlimit;
Chris Wilson29ecd78d2016-07-13 09:10:35 +01001163 if (client_boost || any_waiters(dev_priv))
1164 max = dev_priv->rps.max_freq;
1165 if (client_boost && new_delay < dev_priv->rps.boost_freq) {
1166 new_delay = dev_priv->rps.boost_freq;
Chris Wilson8d3afd72015-05-21 21:01:47 +01001167 adj = 0;
1168 } else if (pm_iir & GEN6_PM_RP_UP_THRESHOLD) {
Chris Wilsondd75fdc2013-09-25 17:34:57 +01001169 if (adj > 0)
1170 adj *= 2;
Chris Wilsonedcf2842015-04-07 16:20:29 +01001171 else /* CHV needs even encode values */
1172 adj = IS_CHERRYVIEW(dev_priv) ? 2 : 1;
Ville Syrjälä74250342013-06-25 21:38:11 +03001173 /*
1174 * For better performance, jump directly
1175 * to RPe if we're below it.
1176 */
Chris Wilsonedcf2842015-04-07 16:20:29 +01001177 if (new_delay < dev_priv->rps.efficient_freq - adj) {
Ben Widawskyb39fb292014-03-19 18:31:11 -07001178 new_delay = dev_priv->rps.efficient_freq;
Chris Wilsonedcf2842015-04-07 16:20:29 +01001179 adj = 0;
1180 }
Chris Wilson29ecd78d2016-07-13 09:10:35 +01001181 } else if (client_boost || any_waiters(dev_priv)) {
Chris Wilsonf5a4c672015-04-27 13:41:23 +01001182 adj = 0;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01001183 } else if (pm_iir & GEN6_PM_RP_DOWN_TIMEOUT) {
Ben Widawskyb39fb292014-03-19 18:31:11 -07001184 if (dev_priv->rps.cur_freq > dev_priv->rps.efficient_freq)
1185 new_delay = dev_priv->rps.efficient_freq;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01001186 else
Ben Widawskyb39fb292014-03-19 18:31:11 -07001187 new_delay = dev_priv->rps.min_freq_softlimit;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01001188 adj = 0;
1189 } else if (pm_iir & GEN6_PM_RP_DOWN_THRESHOLD) {
1190 if (adj < 0)
1191 adj *= 2;
Chris Wilsonedcf2842015-04-07 16:20:29 +01001192 else /* CHV needs even encode values */
1193 adj = IS_CHERRYVIEW(dev_priv) ? -2 : -1;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01001194 } else { /* unknown event */
Chris Wilsonedcf2842015-04-07 16:20:29 +01001195 adj = 0;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01001196 }
Jesse Barnes3b8d8d92010-12-17 14:19:02 -08001197
Chris Wilsonedcf2842015-04-07 16:20:29 +01001198 dev_priv->rps.last_adj = adj;
1199
Ben Widawsky79249632012-09-07 19:43:42 -07001200 /* sysfs frequency interfaces may have snuck in while servicing the
1201 * interrupt
1202 */
Chris Wilsonedcf2842015-04-07 16:20:29 +01001203 new_delay += adj;
Chris Wilson8d3afd72015-05-21 21:01:47 +01001204 new_delay = clamp_t(int, new_delay, min, max);
Deepak S27544362014-01-27 21:35:05 +05301205
Chris Wilsondc979972016-05-10 14:10:04 +01001206 intel_set_rps(dev_priv, new_delay);
Jesse Barnes3b8d8d92010-12-17 14:19:02 -08001207
Jesse Barnes4fc688c2012-11-02 11:14:01 -07001208 mutex_unlock(&dev_priv->rps.hw_lock);
Jesse Barnes3b8d8d92010-12-17 14:19:02 -08001209}
1210
Ben Widawskye3689192012-05-25 16:56:22 -07001211
1212/**
1213 * ivybridge_parity_work - Workqueue called when a parity error interrupt
1214 * occurred.
1215 * @work: workqueue struct
1216 *
1217 * Doesn't actually do anything except notify userspace. As a consequence of
1218 * this event, userspace should try to remap the bad rows since statistically
1219 * it is likely the same row is more likely to go bad again.
1220 */
1221static void ivybridge_parity_work(struct work_struct *work)
1222{
Jani Nikula2d1013d2014-03-31 14:27:17 +03001223 struct drm_i915_private *dev_priv =
1224 container_of(work, struct drm_i915_private, l3_parity.error_work);
Ben Widawskye3689192012-05-25 16:56:22 -07001225 u32 error_status, row, bank, subbank;
Ben Widawsky35a85ac2013-09-19 11:13:41 -07001226 char *parity_event[6];
Ben Widawskye3689192012-05-25 16:56:22 -07001227 uint32_t misccpctl;
Ben Widawsky35a85ac2013-09-19 11:13:41 -07001228 uint8_t slice = 0;
Ben Widawskye3689192012-05-25 16:56:22 -07001229
1230 /* We must turn off DOP level clock gating to access the L3 registers.
1231 * In order to prevent a get/put style interface, acquire struct mutex
1232 * any time we access those registers.
1233 */
Chris Wilson91c8a322016-07-05 10:40:23 +01001234 mutex_lock(&dev_priv->drm.struct_mutex);
Ben Widawskye3689192012-05-25 16:56:22 -07001235
Ben Widawsky35a85ac2013-09-19 11:13:41 -07001236 /* If we've screwed up tracking, just let the interrupt fire again */
1237 if (WARN_ON(!dev_priv->l3_parity.which_slice))
1238 goto out;
1239
Ben Widawskye3689192012-05-25 16:56:22 -07001240 misccpctl = I915_READ(GEN7_MISCCPCTL);
1241 I915_WRITE(GEN7_MISCCPCTL, misccpctl & ~GEN7_DOP_CLOCK_GATE_ENABLE);
1242 POSTING_READ(GEN7_MISCCPCTL);
1243
Ben Widawsky35a85ac2013-09-19 11:13:41 -07001244 while ((slice = ffs(dev_priv->l3_parity.which_slice)) != 0) {
Ville Syrjäläf0f59a02015-11-18 15:33:26 +02001245 i915_reg_t reg;
Ben Widawskye3689192012-05-25 16:56:22 -07001246
Ben Widawsky35a85ac2013-09-19 11:13:41 -07001247 slice--;
Joonas Lahtinen2d1fe072016-04-07 11:08:05 +03001248 if (WARN_ON_ONCE(slice >= NUM_L3_SLICES(dev_priv)))
Ben Widawsky35a85ac2013-09-19 11:13:41 -07001249 break;
1250
1251 dev_priv->l3_parity.which_slice &= ~(1<<slice);
1252
Ville Syrjälä6fa1c5f2015-11-04 23:20:02 +02001253 reg = GEN7_L3CDERRST1(slice);
Ben Widawsky35a85ac2013-09-19 11:13:41 -07001254
1255 error_status = I915_READ(reg);
1256 row = GEN7_PARITY_ERROR_ROW(error_status);
1257 bank = GEN7_PARITY_ERROR_BANK(error_status);
1258 subbank = GEN7_PARITY_ERROR_SUBBANK(error_status);
1259
1260 I915_WRITE(reg, GEN7_PARITY_ERROR_VALID | GEN7_L3CDERRST1_ENABLE);
1261 POSTING_READ(reg);
1262
1263 parity_event[0] = I915_L3_PARITY_UEVENT "=1";
1264 parity_event[1] = kasprintf(GFP_KERNEL, "ROW=%d", row);
1265 parity_event[2] = kasprintf(GFP_KERNEL, "BANK=%d", bank);
1266 parity_event[3] = kasprintf(GFP_KERNEL, "SUBBANK=%d", subbank);
1267 parity_event[4] = kasprintf(GFP_KERNEL, "SLICE=%d", slice);
1268 parity_event[5] = NULL;
1269
Chris Wilson91c8a322016-07-05 10:40:23 +01001270 kobject_uevent_env(&dev_priv->drm.primary->kdev->kobj,
Ben Widawsky35a85ac2013-09-19 11:13:41 -07001271 KOBJ_CHANGE, parity_event);
1272
1273 DRM_DEBUG("Parity error: Slice = %d, Row = %d, Bank = %d, Sub bank = %d.\n",
1274 slice, row, bank, subbank);
1275
1276 kfree(parity_event[4]);
1277 kfree(parity_event[3]);
1278 kfree(parity_event[2]);
1279 kfree(parity_event[1]);
1280 }
Ben Widawskye3689192012-05-25 16:56:22 -07001281
1282 I915_WRITE(GEN7_MISCCPCTL, misccpctl);
1283
Ben Widawsky35a85ac2013-09-19 11:13:41 -07001284out:
1285 WARN_ON(dev_priv->l3_parity.which_slice);
Daniel Vetter4cb21832014-09-15 14:55:26 +02001286 spin_lock_irq(&dev_priv->irq_lock);
Joonas Lahtinen2d1fe072016-04-07 11:08:05 +03001287 gen5_enable_gt_irq(dev_priv, GT_PARITY_ERROR(dev_priv));
Daniel Vetter4cb21832014-09-15 14:55:26 +02001288 spin_unlock_irq(&dev_priv->irq_lock);
Ben Widawskye3689192012-05-25 16:56:22 -07001289
Chris Wilson91c8a322016-07-05 10:40:23 +01001290 mutex_unlock(&dev_priv->drm.struct_mutex);
Ben Widawskye3689192012-05-25 16:56:22 -07001291}
1292
Ville Syrjälä261e40b2016-04-13 21:19:57 +03001293static void ivybridge_parity_error_irq_handler(struct drm_i915_private *dev_priv,
1294 u32 iir)
Ben Widawskye3689192012-05-25 16:56:22 -07001295{
Ville Syrjälä261e40b2016-04-13 21:19:57 +03001296 if (!HAS_L3_DPF(dev_priv))
Ben Widawskye3689192012-05-25 16:56:22 -07001297 return;
1298
Daniel Vetterd0ecd7e2013-07-04 23:35:25 +02001299 spin_lock(&dev_priv->irq_lock);
Ville Syrjälä261e40b2016-04-13 21:19:57 +03001300 gen5_disable_gt_irq(dev_priv, GT_PARITY_ERROR(dev_priv));
Daniel Vetterd0ecd7e2013-07-04 23:35:25 +02001301 spin_unlock(&dev_priv->irq_lock);
Ben Widawskye3689192012-05-25 16:56:22 -07001302
Ville Syrjälä261e40b2016-04-13 21:19:57 +03001303 iir &= GT_PARITY_ERROR(dev_priv);
Ben Widawsky35a85ac2013-09-19 11:13:41 -07001304 if (iir & GT_RENDER_L3_PARITY_ERROR_INTERRUPT_S1)
1305 dev_priv->l3_parity.which_slice |= 1 << 1;
1306
1307 if (iir & GT_RENDER_L3_PARITY_ERROR_INTERRUPT)
1308 dev_priv->l3_parity.which_slice |= 1 << 0;
1309
Daniel Vettera4da4fa2012-11-02 19:55:07 +01001310 queue_work(dev_priv->wq, &dev_priv->l3_parity.error_work);
Ben Widawskye3689192012-05-25 16:56:22 -07001311}
1312
Ville Syrjälä261e40b2016-04-13 21:19:57 +03001313static void ilk_gt_irq_handler(struct drm_i915_private *dev_priv,
Paulo Zanonif1af8fc2013-07-12 19:56:30 -03001314 u32 gt_iir)
1315{
Chris Wilsonf8973c22016-07-01 17:23:21 +01001316 if (gt_iir & GT_RENDER_USER_INTERRUPT)
Akash Goel3b3f1652016-10-13 22:44:48 +05301317 notify_ring(dev_priv->engine[RCS]);
Paulo Zanonif1af8fc2013-07-12 19:56:30 -03001318 if (gt_iir & ILK_BSD_USER_INTERRUPT)
Akash Goel3b3f1652016-10-13 22:44:48 +05301319 notify_ring(dev_priv->engine[VCS]);
Paulo Zanonif1af8fc2013-07-12 19:56:30 -03001320}
1321
Ville Syrjälä261e40b2016-04-13 21:19:57 +03001322static void snb_gt_irq_handler(struct drm_i915_private *dev_priv,
Daniel Vettere7b4c6b2012-03-30 20:24:35 +02001323 u32 gt_iir)
1324{
Chris Wilsonf8973c22016-07-01 17:23:21 +01001325 if (gt_iir & GT_RENDER_USER_INTERRUPT)
Akash Goel3b3f1652016-10-13 22:44:48 +05301326 notify_ring(dev_priv->engine[RCS]);
Ben Widawskycc609d52013-05-28 19:22:29 -07001327 if (gt_iir & GT_BSD_USER_INTERRUPT)
Akash Goel3b3f1652016-10-13 22:44:48 +05301328 notify_ring(dev_priv->engine[VCS]);
Ben Widawskycc609d52013-05-28 19:22:29 -07001329 if (gt_iir & GT_BLT_USER_INTERRUPT)
Akash Goel3b3f1652016-10-13 22:44:48 +05301330 notify_ring(dev_priv->engine[BCS]);
Daniel Vettere7b4c6b2012-03-30 20:24:35 +02001331
Ben Widawskycc609d52013-05-28 19:22:29 -07001332 if (gt_iir & (GT_BLT_CS_ERROR_INTERRUPT |
1333 GT_BSD_CS_ERROR_INTERRUPT |
Daniel Vetteraaecdf62014-11-04 15:52:22 +01001334 GT_RENDER_CS_MASTER_ERROR_INTERRUPT))
1335 DRM_DEBUG("Command parser error, gt_iir 0x%08x\n", gt_iir);
Ben Widawskye3689192012-05-25 16:56:22 -07001336
Ville Syrjälä261e40b2016-04-13 21:19:57 +03001337 if (gt_iir & GT_PARITY_ERROR(dev_priv))
1338 ivybridge_parity_error_irq_handler(dev_priv, gt_iir);
Daniel Vettere7b4c6b2012-03-30 20:24:35 +02001339}
1340
Nick Hoathfbcc1a02015-10-20 10:23:52 +01001341static __always_inline void
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00001342gen8_cs_irq_handler(struct intel_engine_cs *engine, u32 iir, int test_shift)
Nick Hoathfbcc1a02015-10-20 10:23:52 +01001343{
1344 if (iir & (GT_RENDER_USER_INTERRUPT << test_shift))
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00001345 notify_ring(engine);
Nick Hoathfbcc1a02015-10-20 10:23:52 +01001346 if (iir & (GT_CONTEXT_SWITCH_INTERRUPT << test_shift))
Tvrtko Ursulin27af5ee2016-04-04 12:11:56 +01001347 tasklet_schedule(&engine->irq_tasklet);
Nick Hoathfbcc1a02015-10-20 10:23:52 +01001348}
1349
Ville Syrjäläe30e2512016-04-13 21:19:58 +03001350static irqreturn_t gen8_gt_irq_ack(struct drm_i915_private *dev_priv,
1351 u32 master_ctl,
1352 u32 gt_iir[4])
Ben Widawskyabd58f02013-11-02 21:07:09 -07001353{
Ben Widawskyabd58f02013-11-02 21:07:09 -07001354 irqreturn_t ret = IRQ_NONE;
1355
1356 if (master_ctl & (GEN8_GT_RCS_IRQ | GEN8_GT_BCS_IRQ)) {
Ville Syrjäläe30e2512016-04-13 21:19:58 +03001357 gt_iir[0] = I915_READ_FW(GEN8_GT_IIR(0));
1358 if (gt_iir[0]) {
1359 I915_WRITE_FW(GEN8_GT_IIR(0), gt_iir[0]);
Ben Widawskyabd58f02013-11-02 21:07:09 -07001360 ret = IRQ_HANDLED;
Ben Widawskyabd58f02013-11-02 21:07:09 -07001361 } else
1362 DRM_ERROR("The master control interrupt lied (GT0)!\n");
1363 }
1364
Zhao Yakui85f9b5f2014-04-17 10:37:38 +08001365 if (master_ctl & (GEN8_GT_VCS1_IRQ | GEN8_GT_VCS2_IRQ)) {
Ville Syrjäläe30e2512016-04-13 21:19:58 +03001366 gt_iir[1] = I915_READ_FW(GEN8_GT_IIR(1));
1367 if (gt_iir[1]) {
1368 I915_WRITE_FW(GEN8_GT_IIR(1), gt_iir[1]);
Ben Widawskyabd58f02013-11-02 21:07:09 -07001369 ret = IRQ_HANDLED;
Ben Widawskyabd58f02013-11-02 21:07:09 -07001370 } else
1371 DRM_ERROR("The master control interrupt lied (GT1)!\n");
1372 }
1373
Chris Wilson74cdb332015-04-07 16:21:05 +01001374 if (master_ctl & GEN8_GT_VECS_IRQ) {
Ville Syrjäläe30e2512016-04-13 21:19:58 +03001375 gt_iir[3] = I915_READ_FW(GEN8_GT_IIR(3));
1376 if (gt_iir[3]) {
1377 I915_WRITE_FW(GEN8_GT_IIR(3), gt_iir[3]);
Chris Wilson74cdb332015-04-07 16:21:05 +01001378 ret = IRQ_HANDLED;
Chris Wilson74cdb332015-04-07 16:21:05 +01001379 } else
1380 DRM_ERROR("The master control interrupt lied (GT3)!\n");
1381 }
1382
Sagar Arun Kamble26705e22016-10-12 21:54:31 +05301383 if (master_ctl & (GEN8_GT_PM_IRQ | GEN8_GT_GUC_IRQ)) {
Ville Syrjäläe30e2512016-04-13 21:19:58 +03001384 gt_iir[2] = I915_READ_FW(GEN8_GT_IIR(2));
Sagar Arun Kamble26705e22016-10-12 21:54:31 +05301385 if (gt_iir[2] & (dev_priv->pm_rps_events |
1386 dev_priv->pm_guc_events)) {
Chris Wilsoncb0d2052015-04-07 16:21:04 +01001387 I915_WRITE_FW(GEN8_GT_IIR(2),
Sagar Arun Kamble26705e22016-10-12 21:54:31 +05301388 gt_iir[2] & (dev_priv->pm_rps_events |
1389 dev_priv->pm_guc_events));
Oscar Mateo38cc46d2014-06-16 16:10:59 +01001390 ret = IRQ_HANDLED;
Ben Widawsky09610212014-05-15 20:58:08 +03001391 } else
1392 DRM_ERROR("The master control interrupt lied (PM)!\n");
1393 }
1394
Ben Widawskyabd58f02013-11-02 21:07:09 -07001395 return ret;
1396}
1397
Ville Syrjäläe30e2512016-04-13 21:19:58 +03001398static void gen8_gt_irq_handler(struct drm_i915_private *dev_priv,
1399 u32 gt_iir[4])
1400{
1401 if (gt_iir[0]) {
Akash Goel3b3f1652016-10-13 22:44:48 +05301402 gen8_cs_irq_handler(dev_priv->engine[RCS],
Ville Syrjäläe30e2512016-04-13 21:19:58 +03001403 gt_iir[0], GEN8_RCS_IRQ_SHIFT);
Akash Goel3b3f1652016-10-13 22:44:48 +05301404 gen8_cs_irq_handler(dev_priv->engine[BCS],
Ville Syrjäläe30e2512016-04-13 21:19:58 +03001405 gt_iir[0], GEN8_BCS_IRQ_SHIFT);
1406 }
1407
1408 if (gt_iir[1]) {
Akash Goel3b3f1652016-10-13 22:44:48 +05301409 gen8_cs_irq_handler(dev_priv->engine[VCS],
Ville Syrjäläe30e2512016-04-13 21:19:58 +03001410 gt_iir[1], GEN8_VCS1_IRQ_SHIFT);
Akash Goel3b3f1652016-10-13 22:44:48 +05301411 gen8_cs_irq_handler(dev_priv->engine[VCS2],
Ville Syrjäläe30e2512016-04-13 21:19:58 +03001412 gt_iir[1], GEN8_VCS2_IRQ_SHIFT);
1413 }
1414
1415 if (gt_iir[3])
Akash Goel3b3f1652016-10-13 22:44:48 +05301416 gen8_cs_irq_handler(dev_priv->engine[VECS],
Ville Syrjäläe30e2512016-04-13 21:19:58 +03001417 gt_iir[3], GEN8_VECS_IRQ_SHIFT);
1418
1419 if (gt_iir[2] & dev_priv->pm_rps_events)
1420 gen6_rps_irq_handler(dev_priv, gt_iir[2]);
Sagar Arun Kamble26705e22016-10-12 21:54:31 +05301421
1422 if (gt_iir[2] & dev_priv->pm_guc_events)
1423 gen9_guc_irq_handler(dev_priv, gt_iir[2]);
Ville Syrjäläe30e2512016-04-13 21:19:58 +03001424}
1425
Imre Deak63c88d22015-07-20 14:43:39 -07001426static bool bxt_port_hotplug_long_detect(enum port port, u32 val)
1427{
1428 switch (port) {
1429 case PORT_A:
Ville Syrjälä195baa02015-08-27 23:56:00 +03001430 return val & PORTA_HOTPLUG_LONG_DETECT;
Imre Deak63c88d22015-07-20 14:43:39 -07001431 case PORT_B:
1432 return val & PORTB_HOTPLUG_LONG_DETECT;
1433 case PORT_C:
1434 return val & PORTC_HOTPLUG_LONG_DETECT;
Imre Deak63c88d22015-07-20 14:43:39 -07001435 default:
1436 return false;
1437 }
1438}
1439
Ville Syrjälä6dbf30c2015-08-27 23:56:02 +03001440static bool spt_port_hotplug2_long_detect(enum port port, u32 val)
1441{
1442 switch (port) {
1443 case PORT_E:
1444 return val & PORTE_HOTPLUG_LONG_DETECT;
1445 default:
1446 return false;
1447 }
1448}
1449
Ville Syrjälä74c0b392015-08-27 23:56:07 +03001450static bool spt_port_hotplug_long_detect(enum port port, u32 val)
1451{
1452 switch (port) {
1453 case PORT_A:
1454 return val & PORTA_HOTPLUG_LONG_DETECT;
1455 case PORT_B:
1456 return val & PORTB_HOTPLUG_LONG_DETECT;
1457 case PORT_C:
1458 return val & PORTC_HOTPLUG_LONG_DETECT;
1459 case PORT_D:
1460 return val & PORTD_HOTPLUG_LONG_DETECT;
1461 default:
1462 return false;
1463 }
1464}
1465
Ville Syrjäläe4ce95a2015-08-27 23:56:03 +03001466static bool ilk_port_hotplug_long_detect(enum port port, u32 val)
1467{
1468 switch (port) {
1469 case PORT_A:
1470 return val & DIGITAL_PORTA_HOTPLUG_LONG_DETECT;
1471 default:
1472 return false;
1473 }
1474}
1475
Jani Nikula676574d2015-05-28 15:43:53 +03001476static bool pch_port_hotplug_long_detect(enum port port, u32 val)
Dave Airlie13cf5502014-06-18 11:29:35 +10001477{
1478 switch (port) {
Dave Airlie13cf5502014-06-18 11:29:35 +10001479 case PORT_B:
Jani Nikula676574d2015-05-28 15:43:53 +03001480 return val & PORTB_HOTPLUG_LONG_DETECT;
Dave Airlie13cf5502014-06-18 11:29:35 +10001481 case PORT_C:
Jani Nikula676574d2015-05-28 15:43:53 +03001482 return val & PORTC_HOTPLUG_LONG_DETECT;
Dave Airlie13cf5502014-06-18 11:29:35 +10001483 case PORT_D:
Jani Nikula676574d2015-05-28 15:43:53 +03001484 return val & PORTD_HOTPLUG_LONG_DETECT;
1485 default:
1486 return false;
Dave Airlie13cf5502014-06-18 11:29:35 +10001487 }
1488}
1489
Jani Nikula676574d2015-05-28 15:43:53 +03001490static bool i9xx_port_hotplug_long_detect(enum port port, u32 val)
Dave Airlie13cf5502014-06-18 11:29:35 +10001491{
1492 switch (port) {
Dave Airlie13cf5502014-06-18 11:29:35 +10001493 case PORT_B:
Jani Nikula676574d2015-05-28 15:43:53 +03001494 return val & PORTB_HOTPLUG_INT_LONG_PULSE;
Dave Airlie13cf5502014-06-18 11:29:35 +10001495 case PORT_C:
Jani Nikula676574d2015-05-28 15:43:53 +03001496 return val & PORTC_HOTPLUG_INT_LONG_PULSE;
Dave Airlie13cf5502014-06-18 11:29:35 +10001497 case PORT_D:
Jani Nikula676574d2015-05-28 15:43:53 +03001498 return val & PORTD_HOTPLUG_INT_LONG_PULSE;
1499 default:
1500 return false;
Dave Airlie13cf5502014-06-18 11:29:35 +10001501 }
1502}
1503
Ville Syrjälä42db67d2015-08-28 21:26:27 +03001504/*
1505 * Get a bit mask of pins that have triggered, and which ones may be long.
1506 * This can be called multiple times with the same masks to accumulate
1507 * hotplug detection results from several registers.
1508 *
1509 * Note that the caller is expected to zero out the masks initially.
1510 */
Imre Deakfd63e2a2015-07-21 15:32:44 -07001511static void intel_get_hpd_pins(u32 *pin_mask, u32 *long_mask,
Jani Nikula8c841e52015-06-18 13:06:17 +03001512 u32 hotplug_trigger, u32 dig_hotplug_reg,
Imre Deakfd63e2a2015-07-21 15:32:44 -07001513 const u32 hpd[HPD_NUM_PINS],
1514 bool long_pulse_detect(enum port port, u32 val))
Jani Nikula676574d2015-05-28 15:43:53 +03001515{
Jani Nikula8c841e52015-06-18 13:06:17 +03001516 enum port port;
Jani Nikula676574d2015-05-28 15:43:53 +03001517 int i;
1518
Jani Nikula676574d2015-05-28 15:43:53 +03001519 for_each_hpd_pin(i) {
Jani Nikula8c841e52015-06-18 13:06:17 +03001520 if ((hpd[i] & hotplug_trigger) == 0)
1521 continue;
Jani Nikula676574d2015-05-28 15:43:53 +03001522
Jani Nikula8c841e52015-06-18 13:06:17 +03001523 *pin_mask |= BIT(i);
1524
Imre Deakcc24fcd2015-07-21 15:32:45 -07001525 if (!intel_hpd_pin_to_port(i, &port))
1526 continue;
1527
Imre Deakfd63e2a2015-07-21 15:32:44 -07001528 if (long_pulse_detect(port, dig_hotplug_reg))
Jani Nikula8c841e52015-06-18 13:06:17 +03001529 *long_mask |= BIT(i);
Jani Nikula676574d2015-05-28 15:43:53 +03001530 }
1531
1532 DRM_DEBUG_DRIVER("hotplug event received, stat 0x%08x, dig 0x%08x, pins 0x%08x\n",
1533 hotplug_trigger, dig_hotplug_reg, *pin_mask);
1534
1535}
1536
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01001537static void gmbus_irq_handler(struct drm_i915_private *dev_priv)
Daniel Vetter515ac2b2012-12-01 13:53:44 +01001538{
Daniel Vetter28c70f12012-12-01 13:53:45 +01001539 wake_up_all(&dev_priv->gmbus_wait_queue);
Daniel Vetter515ac2b2012-12-01 13:53:44 +01001540}
1541
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01001542static void dp_aux_irq_handler(struct drm_i915_private *dev_priv)
Daniel Vetterce99c252012-12-01 13:53:47 +01001543{
Daniel Vetter9ee32fea2012-12-01 13:53:48 +01001544 wake_up_all(&dev_priv->gmbus_wait_queue);
Daniel Vetterce99c252012-12-01 13:53:47 +01001545}
1546
Shuang He8bf1e9f2013-10-15 18:55:27 +01001547#if defined(CONFIG_DEBUG_FS)
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01001548static void display_pipe_crc_irq_handler(struct drm_i915_private *dev_priv,
1549 enum pipe pipe,
Daniel Vetter277de952013-10-18 16:37:07 +02001550 uint32_t crc0, uint32_t crc1,
1551 uint32_t crc2, uint32_t crc3,
1552 uint32_t crc4)
Shuang He8bf1e9f2013-10-15 18:55:27 +01001553{
Shuang He8bf1e9f2013-10-15 18:55:27 +01001554 struct intel_pipe_crc *pipe_crc = &dev_priv->pipe_crc[pipe];
1555 struct intel_pipe_crc_entry *entry;
Tomeu Vizoso8c6b7092017-01-10 14:43:04 +01001556 struct intel_crtc *crtc = intel_get_crtc_for_pipe(dev_priv, pipe);
1557 struct drm_driver *driver = dev_priv->drm.driver;
1558 uint32_t crcs[5];
Damien Lespiauac2300d2013-10-15 18:55:30 +01001559 int head, tail;
Damien Lespiaub2c88f52013-10-15 18:55:29 +01001560
Damien Lespiaud538bbd2013-10-21 14:29:30 +01001561 spin_lock(&pipe_crc->lock);
Tomeu Vizoso8c6b7092017-01-10 14:43:04 +01001562 if (pipe_crc->source) {
1563 if (!pipe_crc->entries) {
1564 spin_unlock(&pipe_crc->lock);
1565 DRM_DEBUG_KMS("spurious interrupt\n");
1566 return;
1567 }
Damien Lespiaud538bbd2013-10-21 14:29:30 +01001568
Tomeu Vizoso8c6b7092017-01-10 14:43:04 +01001569 head = pipe_crc->head;
1570 tail = pipe_crc->tail;
1571
1572 if (CIRC_SPACE(head, tail, INTEL_PIPE_CRC_ENTRIES_NR) < 1) {
1573 spin_unlock(&pipe_crc->lock);
1574 DRM_ERROR("CRC buffer overflowing\n");
1575 return;
1576 }
1577
1578 entry = &pipe_crc->entries[head];
1579
1580 entry->frame = driver->get_vblank_counter(&dev_priv->drm, pipe);
1581 entry->crc[0] = crc0;
1582 entry->crc[1] = crc1;
1583 entry->crc[2] = crc2;
1584 entry->crc[3] = crc3;
1585 entry->crc[4] = crc4;
1586
1587 head = (head + 1) & (INTEL_PIPE_CRC_ENTRIES_NR - 1);
1588 pipe_crc->head = head;
1589
Damien Lespiaud538bbd2013-10-21 14:29:30 +01001590 spin_unlock(&pipe_crc->lock);
Damien Lespiau0c912c72013-10-15 18:55:37 +01001591
Tomeu Vizoso8c6b7092017-01-10 14:43:04 +01001592 wake_up_interruptible(&pipe_crc->wq);
1593 } else {
1594 /*
1595 * For some not yet identified reason, the first CRC is
1596 * bonkers. So let's just wait for the next vblank and read
1597 * out the buggy result.
1598 *
1599 * On CHV sometimes the second CRC is bonkers as well, so
1600 * don't trust that one either.
1601 */
1602 if (pipe_crc->skipped == 0 ||
1603 (IS_CHERRYVIEW(dev_priv) && pipe_crc->skipped == 1)) {
1604 pipe_crc->skipped++;
1605 spin_unlock(&pipe_crc->lock);
1606 return;
1607 }
Damien Lespiaud538bbd2013-10-21 14:29:30 +01001608 spin_unlock(&pipe_crc->lock);
Tomeu Vizoso8c6b7092017-01-10 14:43:04 +01001609 crcs[0] = crc0;
1610 crcs[1] = crc1;
1611 crcs[2] = crc2;
1612 crcs[3] = crc3;
1613 crcs[4] = crc4;
Tomeu Vizoso246ee522017-01-10 14:43:05 +01001614 drm_crtc_add_crc_entry(&crtc->base, true,
1615 drm_accurate_vblank_count(&crtc->base),
1616 crcs);
Damien Lespiaub2c88f52013-10-15 18:55:29 +01001617 }
Shuang He8bf1e9f2013-10-15 18:55:27 +01001618}
Daniel Vetter277de952013-10-18 16:37:07 +02001619#else
1620static inline void
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01001621display_pipe_crc_irq_handler(struct drm_i915_private *dev_priv,
1622 enum pipe pipe,
Daniel Vetter277de952013-10-18 16:37:07 +02001623 uint32_t crc0, uint32_t crc1,
1624 uint32_t crc2, uint32_t crc3,
1625 uint32_t crc4) {}
1626#endif
Daniel Vettereba94eb2013-10-16 22:55:46 +02001627
Daniel Vetter277de952013-10-18 16:37:07 +02001628
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01001629static void hsw_pipe_crc_irq_handler(struct drm_i915_private *dev_priv,
1630 enum pipe pipe)
Daniel Vetter5a69b892013-10-16 22:55:52 +02001631{
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01001632 display_pipe_crc_irq_handler(dev_priv, pipe,
Daniel Vetter277de952013-10-18 16:37:07 +02001633 I915_READ(PIPE_CRC_RES_1_IVB(pipe)),
1634 0, 0, 0, 0);
Daniel Vetter5a69b892013-10-16 22:55:52 +02001635}
1636
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01001637static void ivb_pipe_crc_irq_handler(struct drm_i915_private *dev_priv,
1638 enum pipe pipe)
Daniel Vettereba94eb2013-10-16 22:55:46 +02001639{
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01001640 display_pipe_crc_irq_handler(dev_priv, pipe,
Daniel Vetter277de952013-10-18 16:37:07 +02001641 I915_READ(PIPE_CRC_RES_1_IVB(pipe)),
1642 I915_READ(PIPE_CRC_RES_2_IVB(pipe)),
1643 I915_READ(PIPE_CRC_RES_3_IVB(pipe)),
1644 I915_READ(PIPE_CRC_RES_4_IVB(pipe)),
1645 I915_READ(PIPE_CRC_RES_5_IVB(pipe)));
Daniel Vettereba94eb2013-10-16 22:55:46 +02001646}
Daniel Vetter5b3a8562013-10-16 22:55:48 +02001647
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01001648static void i9xx_pipe_crc_irq_handler(struct drm_i915_private *dev_priv,
1649 enum pipe pipe)
Daniel Vetter5b3a8562013-10-16 22:55:48 +02001650{
Daniel Vetter0b5c5ed2013-10-16 22:55:53 +02001651 uint32_t res1, res2;
1652
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01001653 if (INTEL_GEN(dev_priv) >= 3)
Daniel Vetter0b5c5ed2013-10-16 22:55:53 +02001654 res1 = I915_READ(PIPE_CRC_RES_RES1_I915(pipe));
1655 else
1656 res1 = 0;
1657
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01001658 if (INTEL_GEN(dev_priv) >= 5 || IS_G4X(dev_priv))
Daniel Vetter0b5c5ed2013-10-16 22:55:53 +02001659 res2 = I915_READ(PIPE_CRC_RES_RES2_G4X(pipe));
1660 else
1661 res2 = 0;
Daniel Vetter5b3a8562013-10-16 22:55:48 +02001662
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01001663 display_pipe_crc_irq_handler(dev_priv, pipe,
Daniel Vetter277de952013-10-18 16:37:07 +02001664 I915_READ(PIPE_CRC_RES_RED(pipe)),
1665 I915_READ(PIPE_CRC_RES_GREEN(pipe)),
1666 I915_READ(PIPE_CRC_RES_BLUE(pipe)),
1667 res1, res2);
Daniel Vetter5b3a8562013-10-16 22:55:48 +02001668}
Shuang He8bf1e9f2013-10-15 18:55:27 +01001669
Paulo Zanoni1403c0d2013-08-15 11:51:32 -03001670/* The RPS events need forcewake, so we add them to a work queue and mask their
1671 * IMR bits until the work is done. Other interrupts can be processed without
1672 * the work queue. */
1673static void gen6_rps_irq_handler(struct drm_i915_private *dev_priv, u32 pm_iir)
Ben Widawskybaf02a12013-05-28 19:22:24 -07001674{
Deepak Sa6706b42014-03-15 20:23:22 +05301675 if (pm_iir & dev_priv->pm_rps_events) {
Daniel Vetter59cdb632013-07-04 23:35:28 +02001676 spin_lock(&dev_priv->irq_lock);
Akash Goelf4e9af42016-10-12 21:54:30 +05301677 gen6_mask_pm_irq(dev_priv, pm_iir & dev_priv->pm_rps_events);
Imre Deakd4d70aa2014-11-19 15:30:04 +02001678 if (dev_priv->rps.interrupts_enabled) {
1679 dev_priv->rps.pm_iir |= pm_iir & dev_priv->pm_rps_events;
Chris Wilsonc33d2472016-07-04 08:08:36 +01001680 schedule_work(&dev_priv->rps.work);
Imre Deakd4d70aa2014-11-19 15:30:04 +02001681 }
Daniel Vetter59cdb632013-07-04 23:35:28 +02001682 spin_unlock(&dev_priv->irq_lock);
Ben Widawskybaf02a12013-05-28 19:22:24 -07001683 }
Ben Widawskybaf02a12013-05-28 19:22:24 -07001684
Imre Deakc9a9a262014-11-05 20:48:37 +02001685 if (INTEL_INFO(dev_priv)->gen >= 8)
1686 return;
1687
Joonas Lahtinen2d1fe072016-04-07 11:08:05 +03001688 if (HAS_VEBOX(dev_priv)) {
Paulo Zanoni1403c0d2013-08-15 11:51:32 -03001689 if (pm_iir & PM_VEBOX_USER_INTERRUPT)
Akash Goel3b3f1652016-10-13 22:44:48 +05301690 notify_ring(dev_priv->engine[VECS]);
Ben Widawsky12638c52013-05-28 19:22:31 -07001691
Daniel Vetteraaecdf62014-11-04 15:52:22 +01001692 if (pm_iir & PM_VEBOX_CS_ERROR_INTERRUPT)
1693 DRM_DEBUG("Command parser error, pm_iir 0x%08x\n", pm_iir);
Ben Widawsky12638c52013-05-28 19:22:31 -07001694 }
Ben Widawskybaf02a12013-05-28 19:22:24 -07001695}
1696
Sagar Arun Kamble26705e22016-10-12 21:54:31 +05301697static void gen9_guc_irq_handler(struct drm_i915_private *dev_priv, u32 gt_iir)
1698{
1699 if (gt_iir & GEN9_GUC_TO_HOST_INT_EVENT) {
Sagar Arun Kamble4100b2a2016-10-12 21:54:32 +05301700 /* Sample the log buffer flush related bits & clear them out now
1701 * itself from the message identity register to minimize the
1702 * probability of losing a flush interrupt, when there are back
1703 * to back flush interrupts.
1704 * There can be a new flush interrupt, for different log buffer
1705 * type (like for ISR), whilst Host is handling one (for DPC).
1706 * Since same bit is used in message register for ISR & DPC, it
1707 * could happen that GuC sets the bit for 2nd interrupt but Host
1708 * clears out the bit on handling the 1st interrupt.
1709 */
1710 u32 msg, flush;
1711
1712 msg = I915_READ(SOFT_SCRATCH(15));
Arkadiusz Hilera80bc452016-11-25 18:59:34 +01001713 flush = msg & (INTEL_GUC_RECV_MSG_CRASH_DUMP_POSTED |
1714 INTEL_GUC_RECV_MSG_FLUSH_LOG_BUFFER);
Sagar Arun Kamble4100b2a2016-10-12 21:54:32 +05301715 if (flush) {
1716 /* Clear the message bits that are handled */
1717 I915_WRITE(SOFT_SCRATCH(15), msg & ~flush);
1718
1719 /* Handle flush interrupt in bottom half */
1720 queue_work(dev_priv->guc.log.flush_wq,
1721 &dev_priv->guc.log.flush_work);
Akash Goel5aa1ee42016-10-12 21:54:36 +05301722
1723 dev_priv->guc.log.flush_interrupt_count++;
Sagar Arun Kamble4100b2a2016-10-12 21:54:32 +05301724 } else {
1725 /* Not clearing of unhandled event bits won't result in
1726 * re-triggering of the interrupt.
1727 */
1728 }
Sagar Arun Kamble26705e22016-10-12 21:54:31 +05301729 }
1730}
1731
Daniel Vetter5a21b662016-05-24 17:13:53 +02001732static bool intel_pipe_handle_vblank(struct drm_i915_private *dev_priv,
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01001733 enum pipe pipe)
Ville Syrjälä8d7849d2014-04-29 13:35:46 +03001734{
Daniel Vetter5a21b662016-05-24 17:13:53 +02001735 bool ret;
1736
Chris Wilson91c8a322016-07-05 10:40:23 +01001737 ret = drm_handle_vblank(&dev_priv->drm, pipe);
Daniel Vetter5a21b662016-05-24 17:13:53 +02001738 if (ret)
Maarten Lankhorst51cbaf02016-05-17 15:07:49 +02001739 intel_finish_page_flip_mmio(dev_priv, pipe);
Daniel Vetter5a21b662016-05-24 17:13:53 +02001740
1741 return ret;
Ville Syrjälä8d7849d2014-04-29 13:35:46 +03001742}
1743
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01001744static void valleyview_pipestat_irq_ack(struct drm_i915_private *dev_priv,
1745 u32 iir, u32 pipe_stats[I915_MAX_PIPES])
Imre Deakc1874ed2014-02-04 21:35:46 +02001746{
Imre Deakc1874ed2014-02-04 21:35:46 +02001747 int pipe;
1748
Imre Deak58ead0d2014-02-04 21:35:47 +02001749 spin_lock(&dev_priv->irq_lock);
Ville Syrjälä1ca993d2016-02-18 21:54:26 +02001750
1751 if (!dev_priv->display_irqs_enabled) {
1752 spin_unlock(&dev_priv->irq_lock);
1753 return;
1754 }
1755
Damien Lespiau055e3932014-08-18 13:49:10 +01001756 for_each_pipe(dev_priv, pipe) {
Ville Syrjäläf0f59a02015-11-18 15:33:26 +02001757 i915_reg_t reg;
Daniel Vetterbbb5eeb2014-02-12 17:55:36 +01001758 u32 mask, iir_bit = 0;
Imre Deak91d181d2014-02-10 18:42:49 +02001759
Daniel Vetterbbb5eeb2014-02-12 17:55:36 +01001760 /*
1761 * PIPESTAT bits get signalled even when the interrupt is
1762 * disabled with the mask bits, and some of the status bits do
1763 * not generate interrupts at all (like the underrun bit). Hence
1764 * we need to be careful that we only handle what we want to
1765 * handle.
1766 */
Daniel Vetter0f239f42014-09-30 10:56:49 +02001767
1768 /* fifo underruns are filterered in the underrun handler. */
1769 mask = PIPE_FIFO_UNDERRUN_STATUS;
Daniel Vetterbbb5eeb2014-02-12 17:55:36 +01001770
1771 switch (pipe) {
1772 case PIPE_A:
1773 iir_bit = I915_DISPLAY_PIPE_A_EVENT_INTERRUPT;
1774 break;
1775 case PIPE_B:
1776 iir_bit = I915_DISPLAY_PIPE_B_EVENT_INTERRUPT;
1777 break;
Ville Syrjälä3278f672014-04-09 13:28:49 +03001778 case PIPE_C:
1779 iir_bit = I915_DISPLAY_PIPE_C_EVENT_INTERRUPT;
1780 break;
Daniel Vetterbbb5eeb2014-02-12 17:55:36 +01001781 }
1782 if (iir & iir_bit)
1783 mask |= dev_priv->pipestat_irq_mask[pipe];
1784
1785 if (!mask)
Imre Deak91d181d2014-02-10 18:42:49 +02001786 continue;
1787
1788 reg = PIPESTAT(pipe);
Daniel Vetterbbb5eeb2014-02-12 17:55:36 +01001789 mask |= PIPESTAT_INT_ENABLE_MASK;
1790 pipe_stats[pipe] = I915_READ(reg) & mask;
Imre Deakc1874ed2014-02-04 21:35:46 +02001791
1792 /*
1793 * Clear the PIPE*STAT regs before the IIR
1794 */
Imre Deak91d181d2014-02-10 18:42:49 +02001795 if (pipe_stats[pipe] & (PIPE_FIFO_UNDERRUN_STATUS |
1796 PIPESTAT_INT_STATUS_MASK))
Imre Deakc1874ed2014-02-04 21:35:46 +02001797 I915_WRITE(reg, pipe_stats[pipe]);
1798 }
Imre Deak58ead0d2014-02-04 21:35:47 +02001799 spin_unlock(&dev_priv->irq_lock);
Ville Syrjälä2ecb8ca2016-04-13 21:19:55 +03001800}
1801
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01001802static void valleyview_pipestat_irq_handler(struct drm_i915_private *dev_priv,
Ville Syrjälä2ecb8ca2016-04-13 21:19:55 +03001803 u32 pipe_stats[I915_MAX_PIPES])
1804{
Ville Syrjälä2ecb8ca2016-04-13 21:19:55 +03001805 enum pipe pipe;
Imre Deakc1874ed2014-02-04 21:35:46 +02001806
Damien Lespiau055e3932014-08-18 13:49:10 +01001807 for_each_pipe(dev_priv, pipe) {
Daniel Vetter5a21b662016-05-24 17:13:53 +02001808 if (pipe_stats[pipe] & PIPE_START_VBLANK_INTERRUPT_STATUS &&
1809 intel_pipe_handle_vblank(dev_priv, pipe))
1810 intel_check_page_flip(dev_priv, pipe);
Imre Deakc1874ed2014-02-04 21:35:46 +02001811
Maarten Lankhorst5251f042016-05-17 15:07:47 +02001812 if (pipe_stats[pipe] & PLANE_FLIP_DONE_INT_STATUS_VLV)
Maarten Lankhorst51cbaf02016-05-17 15:07:49 +02001813 intel_finish_page_flip_cs(dev_priv, pipe);
Imre Deakc1874ed2014-02-04 21:35:46 +02001814
1815 if (pipe_stats[pipe] & PIPE_CRC_DONE_INTERRUPT_STATUS)
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01001816 i9xx_pipe_crc_irq_handler(dev_priv, pipe);
Imre Deakc1874ed2014-02-04 21:35:46 +02001817
Daniel Vetter1f7247c2014-09-30 10:56:48 +02001818 if (pipe_stats[pipe] & PIPE_FIFO_UNDERRUN_STATUS)
1819 intel_cpu_fifo_underrun_irq_handler(dev_priv, pipe);
Imre Deakc1874ed2014-02-04 21:35:46 +02001820 }
1821
1822 if (pipe_stats[0] & PIPE_GMBUS_INTERRUPT_STATUS)
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01001823 gmbus_irq_handler(dev_priv);
Imre Deakc1874ed2014-02-04 21:35:46 +02001824}
1825
Ville Syrjälä1ae3c342016-04-13 21:19:54 +03001826static u32 i9xx_hpd_irq_ack(struct drm_i915_private *dev_priv)
Ville Syrjälä16c6c562014-04-01 10:54:36 +03001827{
Ville Syrjälä16c6c562014-04-01 10:54:36 +03001828 u32 hotplug_status = I915_READ(PORT_HOTPLUG_STAT);
Ville Syrjälä1ae3c342016-04-13 21:19:54 +03001829
1830 if (hotplug_status)
1831 I915_WRITE(PORT_HOTPLUG_STAT, hotplug_status);
1832
1833 return hotplug_status;
1834}
1835
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01001836static void i9xx_hpd_irq_handler(struct drm_i915_private *dev_priv,
Ville Syrjälä1ae3c342016-04-13 21:19:54 +03001837 u32 hotplug_status)
1838{
Ville Syrjälä42db67d2015-08-28 21:26:27 +03001839 u32 pin_mask = 0, long_mask = 0;
Ville Syrjälä16c6c562014-04-01 10:54:36 +03001840
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01001841 if (IS_G4X(dev_priv) || IS_VALLEYVIEW(dev_priv) ||
1842 IS_CHERRYVIEW(dev_priv)) {
Jani Nikula0d2e4292015-05-27 15:03:39 +03001843 u32 hotplug_trigger = hotplug_status & HOTPLUG_INT_STATUS_G4X;
Oscar Mateo3ff60f82014-06-16 16:10:58 +01001844
Ville Syrjälä58f2cf22015-08-28 22:59:08 +03001845 if (hotplug_trigger) {
1846 intel_get_hpd_pins(&pin_mask, &long_mask, hotplug_trigger,
1847 hotplug_trigger, hpd_status_g4x,
1848 i9xx_port_hotplug_long_detect);
1849
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01001850 intel_hpd_irq_handler(dev_priv, pin_mask, long_mask);
Ville Syrjälä58f2cf22015-08-28 22:59:08 +03001851 }
Jani Nikula369712e2015-05-27 15:03:40 +03001852
1853 if (hotplug_status & DP_AUX_CHANNEL_MASK_INT_STATUS_G4X)
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01001854 dp_aux_irq_handler(dev_priv);
Jani Nikula0d2e4292015-05-27 15:03:39 +03001855 } else {
1856 u32 hotplug_trigger = hotplug_status & HOTPLUG_INT_STATUS_I915;
Oscar Mateo3ff60f82014-06-16 16:10:58 +01001857
Ville Syrjälä58f2cf22015-08-28 22:59:08 +03001858 if (hotplug_trigger) {
1859 intel_get_hpd_pins(&pin_mask, &long_mask, hotplug_trigger,
Daniel Vetter44cc6c02015-09-30 08:47:41 +02001860 hotplug_trigger, hpd_status_i915,
Ville Syrjälä58f2cf22015-08-28 22:59:08 +03001861 i9xx_port_hotplug_long_detect);
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01001862 intel_hpd_irq_handler(dev_priv, pin_mask, long_mask);
Ville Syrjälä58f2cf22015-08-28 22:59:08 +03001863 }
Ville Syrjälä16c6c562014-04-01 10:54:36 +03001864 }
Ville Syrjälä16c6c562014-04-01 10:54:36 +03001865}
1866
Daniel Vetterff1f5252012-10-02 15:10:55 +02001867static irqreturn_t valleyview_irq_handler(int irq, void *arg)
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07001868{
Daniel Vetter45a83f82014-05-12 19:17:55 +02001869 struct drm_device *dev = arg;
Chris Wilsonfac5e232016-07-04 11:34:36 +01001870 struct drm_i915_private *dev_priv = to_i915(dev);
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07001871 irqreturn_t ret = IRQ_NONE;
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07001872
Imre Deak2dd2a882015-02-24 11:14:30 +02001873 if (!intel_irqs_enabled(dev_priv))
1874 return IRQ_NONE;
1875
Imre Deak1f814da2015-12-16 02:52:19 +02001876 /* IRQs are synced during runtime_suspend, we don't require a wakeref */
1877 disable_rpm_wakeref_asserts(dev_priv);
1878
Ville Syrjälä1e1cace2016-04-13 21:19:52 +03001879 do {
Ville Syrjälä6e814802016-04-13 21:19:53 +03001880 u32 iir, gt_iir, pm_iir;
Ville Syrjälä2ecb8ca2016-04-13 21:19:55 +03001881 u32 pipe_stats[I915_MAX_PIPES] = {};
Ville Syrjälä1ae3c342016-04-13 21:19:54 +03001882 u32 hotplug_status = 0;
Ville Syrjäläa5e485a2016-04-13 21:19:51 +03001883 u32 ier = 0;
Oscar Mateo3ff60f82014-06-16 16:10:58 +01001884
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07001885 gt_iir = I915_READ(GTIIR);
1886 pm_iir = I915_READ(GEN6_PMIIR);
Oscar Mateo3ff60f82014-06-16 16:10:58 +01001887 iir = I915_READ(VLV_IIR);
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07001888
1889 if (gt_iir == 0 && pm_iir == 0 && iir == 0)
Ville Syrjälä1e1cace2016-04-13 21:19:52 +03001890 break;
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07001891
1892 ret = IRQ_HANDLED;
1893
Ville Syrjäläa5e485a2016-04-13 21:19:51 +03001894 /*
1895 * Theory on interrupt generation, based on empirical evidence:
1896 *
1897 * x = ((VLV_IIR & VLV_IER) ||
1898 * (((GT_IIR & GT_IER) || (GEN6_PMIIR & GEN6_PMIER)) &&
1899 * (VLV_MASTER_IER & MASTER_INTERRUPT_ENABLE)));
1900 *
1901 * A CPU interrupt will only be raised when 'x' has a 0->1 edge.
1902 * Hence we clear MASTER_INTERRUPT_ENABLE and VLV_IER to
1903 * guarantee the CPU interrupt will be raised again even if we
1904 * don't end up clearing all the VLV_IIR, GT_IIR, GEN6_PMIIR
1905 * bits this time around.
1906 */
Ville Syrjälä4a0a0202016-04-13 21:19:50 +03001907 I915_WRITE(VLV_MASTER_IER, 0);
Ville Syrjäläa5e485a2016-04-13 21:19:51 +03001908 ier = I915_READ(VLV_IER);
1909 I915_WRITE(VLV_IER, 0);
Ville Syrjälä4a0a0202016-04-13 21:19:50 +03001910
1911 if (gt_iir)
1912 I915_WRITE(GTIIR, gt_iir);
1913 if (pm_iir)
1914 I915_WRITE(GEN6_PMIIR, pm_iir);
1915
Ville Syrjälä7ce4d1f2016-04-13 21:19:49 +03001916 if (iir & I915_DISPLAY_PORT_INTERRUPT)
Ville Syrjälä1ae3c342016-04-13 21:19:54 +03001917 hotplug_status = i9xx_hpd_irq_ack(dev_priv);
Ville Syrjälä7ce4d1f2016-04-13 21:19:49 +03001918
Oscar Mateo3ff60f82014-06-16 16:10:58 +01001919 /* Call regardless, as some status bits might not be
1920 * signalled in iir */
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01001921 valleyview_pipestat_irq_ack(dev_priv, iir, pipe_stats);
Ville Syrjälä7ce4d1f2016-04-13 21:19:49 +03001922
1923 /*
1924 * VLV_IIR is single buffered, and reflects the level
1925 * from PIPESTAT/PORT_HOTPLUG_STAT, hence clear it last.
1926 */
1927 if (iir)
1928 I915_WRITE(VLV_IIR, iir);
Ville Syrjälä4a0a0202016-04-13 21:19:50 +03001929
Ville Syrjäläa5e485a2016-04-13 21:19:51 +03001930 I915_WRITE(VLV_IER, ier);
Ville Syrjälä4a0a0202016-04-13 21:19:50 +03001931 I915_WRITE(VLV_MASTER_IER, MASTER_INTERRUPT_ENABLE);
1932 POSTING_READ(VLV_MASTER_IER);
Ville Syrjälä1ae3c342016-04-13 21:19:54 +03001933
Ville Syrjälä52894872016-04-13 21:19:56 +03001934 if (gt_iir)
Ville Syrjälä261e40b2016-04-13 21:19:57 +03001935 snb_gt_irq_handler(dev_priv, gt_iir);
Ville Syrjälä52894872016-04-13 21:19:56 +03001936 if (pm_iir)
1937 gen6_rps_irq_handler(dev_priv, pm_iir);
1938
Ville Syrjälä1ae3c342016-04-13 21:19:54 +03001939 if (hotplug_status)
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01001940 i9xx_hpd_irq_handler(dev_priv, hotplug_status);
Ville Syrjälä2ecb8ca2016-04-13 21:19:55 +03001941
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01001942 valleyview_pipestat_irq_handler(dev_priv, pipe_stats);
Ville Syrjälä1e1cace2016-04-13 21:19:52 +03001943 } while (0);
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07001944
Imre Deak1f814da2015-12-16 02:52:19 +02001945 enable_rpm_wakeref_asserts(dev_priv);
1946
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07001947 return ret;
1948}
1949
Ville Syrjälä43f328d2014-04-09 20:40:52 +03001950static irqreturn_t cherryview_irq_handler(int irq, void *arg)
1951{
Daniel Vetter45a83f82014-05-12 19:17:55 +02001952 struct drm_device *dev = arg;
Chris Wilsonfac5e232016-07-04 11:34:36 +01001953 struct drm_i915_private *dev_priv = to_i915(dev);
Ville Syrjälä43f328d2014-04-09 20:40:52 +03001954 irqreturn_t ret = IRQ_NONE;
Ville Syrjälä43f328d2014-04-09 20:40:52 +03001955
Imre Deak2dd2a882015-02-24 11:14:30 +02001956 if (!intel_irqs_enabled(dev_priv))
1957 return IRQ_NONE;
1958
Imre Deak1f814da2015-12-16 02:52:19 +02001959 /* IRQs are synced during runtime_suspend, we don't require a wakeref */
1960 disable_rpm_wakeref_asserts(dev_priv);
1961
Chris Wilson579de732016-03-14 09:01:57 +00001962 do {
Ville Syrjälä6e814802016-04-13 21:19:53 +03001963 u32 master_ctl, iir;
Ville Syrjäläe30e2512016-04-13 21:19:58 +03001964 u32 gt_iir[4] = {};
Ville Syrjälä2ecb8ca2016-04-13 21:19:55 +03001965 u32 pipe_stats[I915_MAX_PIPES] = {};
Ville Syrjälä1ae3c342016-04-13 21:19:54 +03001966 u32 hotplug_status = 0;
Ville Syrjäläa5e485a2016-04-13 21:19:51 +03001967 u32 ier = 0;
1968
Ville Syrjälä8e5fd592014-04-09 13:28:50 +03001969 master_ctl = I915_READ(GEN8_MASTER_IRQ) & ~GEN8_MASTER_IRQ_CONTROL;
1970 iir = I915_READ(VLV_IIR);
Ville Syrjälä3278f672014-04-09 13:28:49 +03001971
Ville Syrjälä8e5fd592014-04-09 13:28:50 +03001972 if (master_ctl == 0 && iir == 0)
1973 break;
Ville Syrjälä43f328d2014-04-09 20:40:52 +03001974
Oscar Mateo27b6c122014-06-16 16:11:00 +01001975 ret = IRQ_HANDLED;
1976
Ville Syrjäläa5e485a2016-04-13 21:19:51 +03001977 /*
1978 * Theory on interrupt generation, based on empirical evidence:
1979 *
1980 * x = ((VLV_IIR & VLV_IER) ||
1981 * ((GEN8_MASTER_IRQ & ~GEN8_MASTER_IRQ_CONTROL) &&
1982 * (GEN8_MASTER_IRQ & GEN8_MASTER_IRQ_CONTROL)));
1983 *
1984 * A CPU interrupt will only be raised when 'x' has a 0->1 edge.
1985 * Hence we clear GEN8_MASTER_IRQ_CONTROL and VLV_IER to
1986 * guarantee the CPU interrupt will be raised again even if we
1987 * don't end up clearing all the VLV_IIR and GEN8_MASTER_IRQ_CONTROL
1988 * bits this time around.
1989 */
Ville Syrjälä8e5fd592014-04-09 13:28:50 +03001990 I915_WRITE(GEN8_MASTER_IRQ, 0);
Ville Syrjäläa5e485a2016-04-13 21:19:51 +03001991 ier = I915_READ(VLV_IER);
1992 I915_WRITE(VLV_IER, 0);
Ville Syrjälä43f328d2014-04-09 20:40:52 +03001993
Ville Syrjäläe30e2512016-04-13 21:19:58 +03001994 gen8_gt_irq_ack(dev_priv, master_ctl, gt_iir);
Ville Syrjälä43f328d2014-04-09 20:40:52 +03001995
Ville Syrjälä7ce4d1f2016-04-13 21:19:49 +03001996 if (iir & I915_DISPLAY_PORT_INTERRUPT)
Ville Syrjälä1ae3c342016-04-13 21:19:54 +03001997 hotplug_status = i9xx_hpd_irq_ack(dev_priv);
Ville Syrjälä7ce4d1f2016-04-13 21:19:49 +03001998
Oscar Mateo27b6c122014-06-16 16:11:00 +01001999 /* Call regardless, as some status bits might not be
2000 * signalled in iir */
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002001 valleyview_pipestat_irq_ack(dev_priv, iir, pipe_stats);
Ville Syrjälä43f328d2014-04-09 20:40:52 +03002002
Ville Syrjälä7ce4d1f2016-04-13 21:19:49 +03002003 /*
2004 * VLV_IIR is single buffered, and reflects the level
2005 * from PIPESTAT/PORT_HOTPLUG_STAT, hence clear it last.
2006 */
2007 if (iir)
2008 I915_WRITE(VLV_IIR, iir);
2009
Ville Syrjäläa5e485a2016-04-13 21:19:51 +03002010 I915_WRITE(VLV_IER, ier);
Ville Syrjäläe5328c42016-04-13 21:19:47 +03002011 I915_WRITE(GEN8_MASTER_IRQ, GEN8_MASTER_IRQ_CONTROL);
Ville Syrjälä8e5fd592014-04-09 13:28:50 +03002012 POSTING_READ(GEN8_MASTER_IRQ);
Ville Syrjälä1ae3c342016-04-13 21:19:54 +03002013
Ville Syrjäläe30e2512016-04-13 21:19:58 +03002014 gen8_gt_irq_handler(dev_priv, gt_iir);
2015
Ville Syrjälä1ae3c342016-04-13 21:19:54 +03002016 if (hotplug_status)
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002017 i9xx_hpd_irq_handler(dev_priv, hotplug_status);
Ville Syrjälä2ecb8ca2016-04-13 21:19:55 +03002018
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002019 valleyview_pipestat_irq_handler(dev_priv, pipe_stats);
Chris Wilson579de732016-03-14 09:01:57 +00002020 } while (0);
Ville Syrjälä43f328d2014-04-09 20:40:52 +03002021
Imre Deak1f814da2015-12-16 02:52:19 +02002022 enable_rpm_wakeref_asserts(dev_priv);
2023
Ville Syrjälä43f328d2014-04-09 20:40:52 +03002024 return ret;
2025}
2026
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002027static void ibx_hpd_irq_handler(struct drm_i915_private *dev_priv,
2028 u32 hotplug_trigger,
Ville Syrjälä40e56412015-08-27 23:56:10 +03002029 const u32 hpd[HPD_NUM_PINS])
2030{
Ville Syrjälä40e56412015-08-27 23:56:10 +03002031 u32 dig_hotplug_reg, pin_mask = 0, long_mask = 0;
2032
Jani Nikula6a39d7c2015-11-25 16:47:22 +02002033 /*
2034 * Somehow the PCH doesn't seem to really ack the interrupt to the CPU
2035 * unless we touch the hotplug register, even if hotplug_trigger is
2036 * zero. Not acking leads to "The master control interrupt lied (SDE)!"
2037 * errors.
2038 */
Ville Syrjälä40e56412015-08-27 23:56:10 +03002039 dig_hotplug_reg = I915_READ(PCH_PORT_HOTPLUG);
Jani Nikula6a39d7c2015-11-25 16:47:22 +02002040 if (!hotplug_trigger) {
2041 u32 mask = PORTA_HOTPLUG_STATUS_MASK |
2042 PORTD_HOTPLUG_STATUS_MASK |
2043 PORTC_HOTPLUG_STATUS_MASK |
2044 PORTB_HOTPLUG_STATUS_MASK;
2045 dig_hotplug_reg &= ~mask;
2046 }
2047
Ville Syrjälä40e56412015-08-27 23:56:10 +03002048 I915_WRITE(PCH_PORT_HOTPLUG, dig_hotplug_reg);
Jani Nikula6a39d7c2015-11-25 16:47:22 +02002049 if (!hotplug_trigger)
2050 return;
Ville Syrjälä40e56412015-08-27 23:56:10 +03002051
2052 intel_get_hpd_pins(&pin_mask, &long_mask, hotplug_trigger,
2053 dig_hotplug_reg, hpd,
2054 pch_port_hotplug_long_detect);
2055
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002056 intel_hpd_irq_handler(dev_priv, pin_mask, long_mask);
Ville Syrjälä40e56412015-08-27 23:56:10 +03002057}
2058
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002059static void ibx_irq_handler(struct drm_i915_private *dev_priv, u32 pch_iir)
Jesse Barnes776ad802011-01-04 15:09:39 -08002060{
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08002061 int pipe;
Egbert Eichb543fb02013-04-16 13:36:54 +02002062 u32 hotplug_trigger = pch_iir & SDE_HOTPLUG_MASK;
Jesse Barnes776ad802011-01-04 15:09:39 -08002063
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002064 ibx_hpd_irq_handler(dev_priv, hotplug_trigger, hpd_ibx);
Daniel Vetter91d131d2013-06-27 17:52:14 +02002065
Ville Syrjäläcfc33bf2013-04-17 17:48:48 +03002066 if (pch_iir & SDE_AUDIO_POWER_MASK) {
2067 int port = ffs((pch_iir & SDE_AUDIO_POWER_MASK) >>
2068 SDE_AUDIO_POWER_SHIFT);
Jesse Barnes776ad802011-01-04 15:09:39 -08002069 DRM_DEBUG_DRIVER("PCH audio power change on port %d\n",
Ville Syrjäläcfc33bf2013-04-17 17:48:48 +03002070 port_name(port));
2071 }
Jesse Barnes776ad802011-01-04 15:09:39 -08002072
Daniel Vetterce99c252012-12-01 13:53:47 +01002073 if (pch_iir & SDE_AUX_MASK)
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002074 dp_aux_irq_handler(dev_priv);
Daniel Vetterce99c252012-12-01 13:53:47 +01002075
Jesse Barnes776ad802011-01-04 15:09:39 -08002076 if (pch_iir & SDE_GMBUS)
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002077 gmbus_irq_handler(dev_priv);
Jesse Barnes776ad802011-01-04 15:09:39 -08002078
2079 if (pch_iir & SDE_AUDIO_HDCP_MASK)
2080 DRM_DEBUG_DRIVER("PCH HDCP audio interrupt\n");
2081
2082 if (pch_iir & SDE_AUDIO_TRANS_MASK)
2083 DRM_DEBUG_DRIVER("PCH transcoder audio interrupt\n");
2084
2085 if (pch_iir & SDE_POISON)
2086 DRM_ERROR("PCH poison interrupt\n");
2087
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08002088 if (pch_iir & SDE_FDI_MASK)
Damien Lespiau055e3932014-08-18 13:49:10 +01002089 for_each_pipe(dev_priv, pipe)
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08002090 DRM_DEBUG_DRIVER(" pipe %c FDI IIR: 0x%08x\n",
2091 pipe_name(pipe),
2092 I915_READ(FDI_RX_IIR(pipe)));
Jesse Barnes776ad802011-01-04 15:09:39 -08002093
2094 if (pch_iir & (SDE_TRANSB_CRC_DONE | SDE_TRANSA_CRC_DONE))
2095 DRM_DEBUG_DRIVER("PCH transcoder CRC done interrupt\n");
2096
2097 if (pch_iir & (SDE_TRANSB_CRC_ERR | SDE_TRANSA_CRC_ERR))
2098 DRM_DEBUG_DRIVER("PCH transcoder CRC error interrupt\n");
2099
Jesse Barnes776ad802011-01-04 15:09:39 -08002100 if (pch_iir & SDE_TRANSA_FIFO_UNDER)
Daniel Vetter1f7247c2014-09-30 10:56:48 +02002101 intel_pch_fifo_underrun_irq_handler(dev_priv, TRANSCODER_A);
Paulo Zanoni86642812013-04-12 17:57:57 -03002102
2103 if (pch_iir & SDE_TRANSB_FIFO_UNDER)
Daniel Vetter1f7247c2014-09-30 10:56:48 +02002104 intel_pch_fifo_underrun_irq_handler(dev_priv, TRANSCODER_B);
Paulo Zanoni86642812013-04-12 17:57:57 -03002105}
2106
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002107static void ivb_err_int_handler(struct drm_i915_private *dev_priv)
Paulo Zanoni86642812013-04-12 17:57:57 -03002108{
Paulo Zanoni86642812013-04-12 17:57:57 -03002109 u32 err_int = I915_READ(GEN7_ERR_INT);
Daniel Vetter5a69b892013-10-16 22:55:52 +02002110 enum pipe pipe;
Paulo Zanoni86642812013-04-12 17:57:57 -03002111
Paulo Zanonide032bf2013-04-12 17:57:58 -03002112 if (err_int & ERR_INT_POISON)
2113 DRM_ERROR("Poison interrupt\n");
2114
Damien Lespiau055e3932014-08-18 13:49:10 +01002115 for_each_pipe(dev_priv, pipe) {
Daniel Vetter1f7247c2014-09-30 10:56:48 +02002116 if (err_int & ERR_INT_FIFO_UNDERRUN(pipe))
2117 intel_cpu_fifo_underrun_irq_handler(dev_priv, pipe);
Paulo Zanoni86642812013-04-12 17:57:57 -03002118
Daniel Vetter5a69b892013-10-16 22:55:52 +02002119 if (err_int & ERR_INT_PIPE_CRC_DONE(pipe)) {
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002120 if (IS_IVYBRIDGE(dev_priv))
2121 ivb_pipe_crc_irq_handler(dev_priv, pipe);
Daniel Vetter5a69b892013-10-16 22:55:52 +02002122 else
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002123 hsw_pipe_crc_irq_handler(dev_priv, pipe);
Daniel Vetter5a69b892013-10-16 22:55:52 +02002124 }
2125 }
Shuang He8bf1e9f2013-10-15 18:55:27 +01002126
Paulo Zanoni86642812013-04-12 17:57:57 -03002127 I915_WRITE(GEN7_ERR_INT, err_int);
2128}
2129
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002130static void cpt_serr_int_handler(struct drm_i915_private *dev_priv)
Paulo Zanoni86642812013-04-12 17:57:57 -03002131{
Paulo Zanoni86642812013-04-12 17:57:57 -03002132 u32 serr_int = I915_READ(SERR_INT);
2133
Paulo Zanonide032bf2013-04-12 17:57:58 -03002134 if (serr_int & SERR_INT_POISON)
2135 DRM_ERROR("PCH poison interrupt\n");
2136
Paulo Zanoni86642812013-04-12 17:57:57 -03002137 if (serr_int & SERR_INT_TRANS_A_FIFO_UNDERRUN)
Daniel Vetter1f7247c2014-09-30 10:56:48 +02002138 intel_pch_fifo_underrun_irq_handler(dev_priv, TRANSCODER_A);
Paulo Zanoni86642812013-04-12 17:57:57 -03002139
2140 if (serr_int & SERR_INT_TRANS_B_FIFO_UNDERRUN)
Daniel Vetter1f7247c2014-09-30 10:56:48 +02002141 intel_pch_fifo_underrun_irq_handler(dev_priv, TRANSCODER_B);
Paulo Zanoni86642812013-04-12 17:57:57 -03002142
2143 if (serr_int & SERR_INT_TRANS_C_FIFO_UNDERRUN)
Daniel Vetter1f7247c2014-09-30 10:56:48 +02002144 intel_pch_fifo_underrun_irq_handler(dev_priv, TRANSCODER_C);
Paulo Zanoni86642812013-04-12 17:57:57 -03002145
2146 I915_WRITE(SERR_INT, serr_int);
Jesse Barnes776ad802011-01-04 15:09:39 -08002147}
2148
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002149static void cpt_irq_handler(struct drm_i915_private *dev_priv, u32 pch_iir)
Adam Jackson23e81d62012-06-06 15:45:44 -04002150{
Adam Jackson23e81d62012-06-06 15:45:44 -04002151 int pipe;
Ville Syrjälä6dbf30c2015-08-27 23:56:02 +03002152 u32 hotplug_trigger = pch_iir & SDE_HOTPLUG_MASK_CPT;
Adam Jackson23e81d62012-06-06 15:45:44 -04002153
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002154 ibx_hpd_irq_handler(dev_priv, hotplug_trigger, hpd_cpt);
Daniel Vetter91d131d2013-06-27 17:52:14 +02002155
Ville Syrjäläcfc33bf2013-04-17 17:48:48 +03002156 if (pch_iir & SDE_AUDIO_POWER_MASK_CPT) {
2157 int port = ffs((pch_iir & SDE_AUDIO_POWER_MASK_CPT) >>
2158 SDE_AUDIO_POWER_SHIFT_CPT);
2159 DRM_DEBUG_DRIVER("PCH audio power change on port %c\n",
2160 port_name(port));
2161 }
Adam Jackson23e81d62012-06-06 15:45:44 -04002162
2163 if (pch_iir & SDE_AUX_MASK_CPT)
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002164 dp_aux_irq_handler(dev_priv);
Adam Jackson23e81d62012-06-06 15:45:44 -04002165
2166 if (pch_iir & SDE_GMBUS_CPT)
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002167 gmbus_irq_handler(dev_priv);
Adam Jackson23e81d62012-06-06 15:45:44 -04002168
2169 if (pch_iir & SDE_AUDIO_CP_REQ_CPT)
2170 DRM_DEBUG_DRIVER("Audio CP request interrupt\n");
2171
2172 if (pch_iir & SDE_AUDIO_CP_CHG_CPT)
2173 DRM_DEBUG_DRIVER("Audio CP change interrupt\n");
2174
2175 if (pch_iir & SDE_FDI_MASK_CPT)
Damien Lespiau055e3932014-08-18 13:49:10 +01002176 for_each_pipe(dev_priv, pipe)
Adam Jackson23e81d62012-06-06 15:45:44 -04002177 DRM_DEBUG_DRIVER(" pipe %c FDI IIR: 0x%08x\n",
2178 pipe_name(pipe),
2179 I915_READ(FDI_RX_IIR(pipe)));
Paulo Zanoni86642812013-04-12 17:57:57 -03002180
2181 if (pch_iir & SDE_ERROR_CPT)
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002182 cpt_serr_int_handler(dev_priv);
Adam Jackson23e81d62012-06-06 15:45:44 -04002183}
2184
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002185static void spt_irq_handler(struct drm_i915_private *dev_priv, u32 pch_iir)
Ville Syrjälä6dbf30c2015-08-27 23:56:02 +03002186{
Ville Syrjälä6dbf30c2015-08-27 23:56:02 +03002187 u32 hotplug_trigger = pch_iir & SDE_HOTPLUG_MASK_SPT &
2188 ~SDE_PORTE_HOTPLUG_SPT;
2189 u32 hotplug2_trigger = pch_iir & SDE_PORTE_HOTPLUG_SPT;
2190 u32 pin_mask = 0, long_mask = 0;
2191
2192 if (hotplug_trigger) {
2193 u32 dig_hotplug_reg;
2194
2195 dig_hotplug_reg = I915_READ(PCH_PORT_HOTPLUG);
2196 I915_WRITE(PCH_PORT_HOTPLUG, dig_hotplug_reg);
2197
2198 intel_get_hpd_pins(&pin_mask, &long_mask, hotplug_trigger,
2199 dig_hotplug_reg, hpd_spt,
Ville Syrjälä74c0b392015-08-27 23:56:07 +03002200 spt_port_hotplug_long_detect);
Ville Syrjälä6dbf30c2015-08-27 23:56:02 +03002201 }
2202
2203 if (hotplug2_trigger) {
2204 u32 dig_hotplug_reg;
2205
2206 dig_hotplug_reg = I915_READ(PCH_PORT_HOTPLUG2);
2207 I915_WRITE(PCH_PORT_HOTPLUG2, dig_hotplug_reg);
2208
2209 intel_get_hpd_pins(&pin_mask, &long_mask, hotplug2_trigger,
2210 dig_hotplug_reg, hpd_spt,
2211 spt_port_hotplug2_long_detect);
2212 }
2213
2214 if (pin_mask)
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002215 intel_hpd_irq_handler(dev_priv, pin_mask, long_mask);
Ville Syrjälä6dbf30c2015-08-27 23:56:02 +03002216
2217 if (pch_iir & SDE_GMBUS_CPT)
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002218 gmbus_irq_handler(dev_priv);
Ville Syrjälä6dbf30c2015-08-27 23:56:02 +03002219}
2220
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002221static void ilk_hpd_irq_handler(struct drm_i915_private *dev_priv,
2222 u32 hotplug_trigger,
Ville Syrjälä40e56412015-08-27 23:56:10 +03002223 const u32 hpd[HPD_NUM_PINS])
2224{
Ville Syrjälä40e56412015-08-27 23:56:10 +03002225 u32 dig_hotplug_reg, pin_mask = 0, long_mask = 0;
2226
2227 dig_hotplug_reg = I915_READ(DIGITAL_PORT_HOTPLUG_CNTRL);
2228 I915_WRITE(DIGITAL_PORT_HOTPLUG_CNTRL, dig_hotplug_reg);
2229
2230 intel_get_hpd_pins(&pin_mask, &long_mask, hotplug_trigger,
2231 dig_hotplug_reg, hpd,
2232 ilk_port_hotplug_long_detect);
2233
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002234 intel_hpd_irq_handler(dev_priv, pin_mask, long_mask);
Ville Syrjälä40e56412015-08-27 23:56:10 +03002235}
2236
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002237static void ilk_display_irq_handler(struct drm_i915_private *dev_priv,
2238 u32 de_iir)
Paulo Zanonic008bc62013-07-12 16:35:10 -03002239{
Daniel Vetter40da17c22013-10-21 18:04:36 +02002240 enum pipe pipe;
Ville Syrjäläe4ce95a2015-08-27 23:56:03 +03002241 u32 hotplug_trigger = de_iir & DE_DP_A_HOTPLUG;
2242
Ville Syrjälä40e56412015-08-27 23:56:10 +03002243 if (hotplug_trigger)
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002244 ilk_hpd_irq_handler(dev_priv, hotplug_trigger, hpd_ilk);
Paulo Zanonic008bc62013-07-12 16:35:10 -03002245
2246 if (de_iir & DE_AUX_CHANNEL_A)
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002247 dp_aux_irq_handler(dev_priv);
Paulo Zanonic008bc62013-07-12 16:35:10 -03002248
2249 if (de_iir & DE_GSE)
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002250 intel_opregion_asle_intr(dev_priv);
Paulo Zanonic008bc62013-07-12 16:35:10 -03002251
Paulo Zanonic008bc62013-07-12 16:35:10 -03002252 if (de_iir & DE_POISON)
2253 DRM_ERROR("Poison interrupt\n");
2254
Damien Lespiau055e3932014-08-18 13:49:10 +01002255 for_each_pipe(dev_priv, pipe) {
Daniel Vetter5a21b662016-05-24 17:13:53 +02002256 if (de_iir & DE_PIPE_VBLANK(pipe) &&
2257 intel_pipe_handle_vblank(dev_priv, pipe))
2258 intel_check_page_flip(dev_priv, pipe);
Paulo Zanonic008bc62013-07-12 16:35:10 -03002259
Daniel Vetter40da17c22013-10-21 18:04:36 +02002260 if (de_iir & DE_PIPE_FIFO_UNDERRUN(pipe))
Daniel Vetter1f7247c2014-09-30 10:56:48 +02002261 intel_cpu_fifo_underrun_irq_handler(dev_priv, pipe);
Paulo Zanonic008bc62013-07-12 16:35:10 -03002262
Daniel Vetter40da17c22013-10-21 18:04:36 +02002263 if (de_iir & DE_PIPE_CRC_DONE(pipe))
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002264 i9xx_pipe_crc_irq_handler(dev_priv, pipe);
Daniel Vetter5b3a8562013-10-16 22:55:48 +02002265
Daniel Vetter40da17c22013-10-21 18:04:36 +02002266 /* plane/pipes map 1:1 on ilk+ */
Maarten Lankhorst5251f042016-05-17 15:07:47 +02002267 if (de_iir & DE_PLANE_FLIP_DONE(pipe))
Maarten Lankhorst51cbaf02016-05-17 15:07:49 +02002268 intel_finish_page_flip_cs(dev_priv, pipe);
Paulo Zanonic008bc62013-07-12 16:35:10 -03002269 }
2270
2271 /* check event from PCH */
2272 if (de_iir & DE_PCH_EVENT) {
2273 u32 pch_iir = I915_READ(SDEIIR);
2274
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002275 if (HAS_PCH_CPT(dev_priv))
2276 cpt_irq_handler(dev_priv, pch_iir);
Paulo Zanonic008bc62013-07-12 16:35:10 -03002277 else
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002278 ibx_irq_handler(dev_priv, pch_iir);
Paulo Zanonic008bc62013-07-12 16:35:10 -03002279
2280 /* should clear PCH hotplug event before clear CPU irq */
2281 I915_WRITE(SDEIIR, pch_iir);
2282 }
2283
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002284 if (IS_GEN5(dev_priv) && de_iir & DE_PCU_EVENT)
2285 ironlake_rps_change_irq_handler(dev_priv);
Paulo Zanonic008bc62013-07-12 16:35:10 -03002286}
2287
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002288static void ivb_display_irq_handler(struct drm_i915_private *dev_priv,
2289 u32 de_iir)
Paulo Zanoni9719fb92013-07-12 16:35:11 -03002290{
Damien Lespiau07d27e22014-03-03 17:31:46 +00002291 enum pipe pipe;
Ville Syrjälä23bb4cb2015-08-27 23:56:04 +03002292 u32 hotplug_trigger = de_iir & DE_DP_A_HOTPLUG_IVB;
2293
Ville Syrjälä40e56412015-08-27 23:56:10 +03002294 if (hotplug_trigger)
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002295 ilk_hpd_irq_handler(dev_priv, hotplug_trigger, hpd_ivb);
Paulo Zanoni9719fb92013-07-12 16:35:11 -03002296
2297 if (de_iir & DE_ERR_INT_IVB)
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002298 ivb_err_int_handler(dev_priv);
Paulo Zanoni9719fb92013-07-12 16:35:11 -03002299
2300 if (de_iir & DE_AUX_CHANNEL_A_IVB)
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002301 dp_aux_irq_handler(dev_priv);
Paulo Zanoni9719fb92013-07-12 16:35:11 -03002302
2303 if (de_iir & DE_GSE_IVB)
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002304 intel_opregion_asle_intr(dev_priv);
Paulo Zanoni9719fb92013-07-12 16:35:11 -03002305
Damien Lespiau055e3932014-08-18 13:49:10 +01002306 for_each_pipe(dev_priv, pipe) {
Daniel Vetter5a21b662016-05-24 17:13:53 +02002307 if (de_iir & (DE_PIPE_VBLANK_IVB(pipe)) &&
2308 intel_pipe_handle_vblank(dev_priv, pipe))
2309 intel_check_page_flip(dev_priv, pipe);
Daniel Vetter40da17c22013-10-21 18:04:36 +02002310
2311 /* plane/pipes map 1:1 on ilk+ */
Maarten Lankhorst5251f042016-05-17 15:07:47 +02002312 if (de_iir & DE_PLANE_FLIP_DONE_IVB(pipe))
Maarten Lankhorst51cbaf02016-05-17 15:07:49 +02002313 intel_finish_page_flip_cs(dev_priv, pipe);
Paulo Zanoni9719fb92013-07-12 16:35:11 -03002314 }
2315
2316 /* check event from PCH */
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002317 if (!HAS_PCH_NOP(dev_priv) && (de_iir & DE_PCH_EVENT_IVB)) {
Paulo Zanoni9719fb92013-07-12 16:35:11 -03002318 u32 pch_iir = I915_READ(SDEIIR);
2319
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002320 cpt_irq_handler(dev_priv, pch_iir);
Paulo Zanoni9719fb92013-07-12 16:35:11 -03002321
2322 /* clear PCH hotplug event before clear CPU irq */
2323 I915_WRITE(SDEIIR, pch_iir);
2324 }
2325}
2326
Oscar Mateo72c90f62014-06-16 16:10:57 +01002327/*
2328 * To handle irqs with the minimum potential races with fresh interrupts, we:
2329 * 1 - Disable Master Interrupt Control.
2330 * 2 - Find the source(s) of the interrupt.
2331 * 3 - Clear the Interrupt Identity bits (IIR).
2332 * 4 - Process the interrupt(s) that had bits set in the IIRs.
2333 * 5 - Re-enable Master Interrupt Control.
2334 */
Paulo Zanonif1af8fc2013-07-12 19:56:30 -03002335static irqreturn_t ironlake_irq_handler(int irq, void *arg)
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002336{
Daniel Vetter45a83f82014-05-12 19:17:55 +02002337 struct drm_device *dev = arg;
Chris Wilsonfac5e232016-07-04 11:34:36 +01002338 struct drm_i915_private *dev_priv = to_i915(dev);
Paulo Zanonif1af8fc2013-07-12 19:56:30 -03002339 u32 de_iir, gt_iir, de_ier, sde_ier = 0;
Chris Wilson0e434062012-05-09 21:45:44 +01002340 irqreturn_t ret = IRQ_NONE;
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002341
Imre Deak2dd2a882015-02-24 11:14:30 +02002342 if (!intel_irqs_enabled(dev_priv))
2343 return IRQ_NONE;
2344
Imre Deak1f814da2015-12-16 02:52:19 +02002345 /* IRQs are synced during runtime_suspend, we don't require a wakeref */
2346 disable_rpm_wakeref_asserts(dev_priv);
2347
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002348 /* disable master interrupt before clearing iir */
2349 de_ier = I915_READ(DEIER);
2350 I915_WRITE(DEIER, de_ier & ~DE_MASTER_IRQ_CONTROL);
Paulo Zanoni23a78512013-07-12 16:35:14 -03002351 POSTING_READ(DEIER);
Chris Wilson0e434062012-05-09 21:45:44 +01002352
Paulo Zanoni44498ae2013-02-22 17:05:28 -03002353 /* Disable south interrupts. We'll only write to SDEIIR once, so further
2354 * interrupts will will be stored on its back queue, and then we'll be
2355 * able to process them after we restore SDEIER (as soon as we restore
2356 * it, we'll get an interrupt if SDEIIR still has something to process
2357 * due to its back queue). */
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002358 if (!HAS_PCH_NOP(dev_priv)) {
Ben Widawskyab5c6082013-04-05 13:12:41 -07002359 sde_ier = I915_READ(SDEIER);
2360 I915_WRITE(SDEIER, 0);
2361 POSTING_READ(SDEIER);
2362 }
Paulo Zanoni44498ae2013-02-22 17:05:28 -03002363
Oscar Mateo72c90f62014-06-16 16:10:57 +01002364 /* Find, clear, then process each source of interrupt */
2365
Chris Wilson0e434062012-05-09 21:45:44 +01002366 gt_iir = I915_READ(GTIIR);
2367 if (gt_iir) {
Oscar Mateo72c90f62014-06-16 16:10:57 +01002368 I915_WRITE(GTIIR, gt_iir);
2369 ret = IRQ_HANDLED;
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002370 if (INTEL_GEN(dev_priv) >= 6)
Ville Syrjälä261e40b2016-04-13 21:19:57 +03002371 snb_gt_irq_handler(dev_priv, gt_iir);
Paulo Zanonid8fc8a42013-07-19 18:57:55 -03002372 else
Ville Syrjälä261e40b2016-04-13 21:19:57 +03002373 ilk_gt_irq_handler(dev_priv, gt_iir);
Chris Wilson0e434062012-05-09 21:45:44 +01002374 }
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002375
2376 de_iir = I915_READ(DEIIR);
Chris Wilson0e434062012-05-09 21:45:44 +01002377 if (de_iir) {
Oscar Mateo72c90f62014-06-16 16:10:57 +01002378 I915_WRITE(DEIIR, de_iir);
2379 ret = IRQ_HANDLED;
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002380 if (INTEL_GEN(dev_priv) >= 7)
2381 ivb_display_irq_handler(dev_priv, de_iir);
Paulo Zanonif1af8fc2013-07-12 19:56:30 -03002382 else
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002383 ilk_display_irq_handler(dev_priv, de_iir);
Chris Wilson0e434062012-05-09 21:45:44 +01002384 }
2385
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002386 if (INTEL_GEN(dev_priv) >= 6) {
Paulo Zanonif1af8fc2013-07-12 19:56:30 -03002387 u32 pm_iir = I915_READ(GEN6_PMIIR);
2388 if (pm_iir) {
Paulo Zanonif1af8fc2013-07-12 19:56:30 -03002389 I915_WRITE(GEN6_PMIIR, pm_iir);
2390 ret = IRQ_HANDLED;
Oscar Mateo72c90f62014-06-16 16:10:57 +01002391 gen6_rps_irq_handler(dev_priv, pm_iir);
Paulo Zanonif1af8fc2013-07-12 19:56:30 -03002392 }
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002393 }
2394
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002395 I915_WRITE(DEIER, de_ier);
2396 POSTING_READ(DEIER);
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002397 if (!HAS_PCH_NOP(dev_priv)) {
Ben Widawskyab5c6082013-04-05 13:12:41 -07002398 I915_WRITE(SDEIER, sde_ier);
2399 POSTING_READ(SDEIER);
2400 }
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002401
Imre Deak1f814da2015-12-16 02:52:19 +02002402 /* IRQs are synced during runtime_suspend, we don't require a wakeref */
2403 enable_rpm_wakeref_asserts(dev_priv);
2404
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002405 return ret;
2406}
2407
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002408static void bxt_hpd_irq_handler(struct drm_i915_private *dev_priv,
2409 u32 hotplug_trigger,
Ville Syrjälä40e56412015-08-27 23:56:10 +03002410 const u32 hpd[HPD_NUM_PINS])
Shashank Sharmad04a4922014-08-22 17:40:41 +05302411{
Ville Syrjäläcebd87a2015-08-27 23:56:09 +03002412 u32 dig_hotplug_reg, pin_mask = 0, long_mask = 0;
Shashank Sharmad04a4922014-08-22 17:40:41 +05302413
Ville Syrjäläa52bb152015-08-27 23:56:11 +03002414 dig_hotplug_reg = I915_READ(PCH_PORT_HOTPLUG);
2415 I915_WRITE(PCH_PORT_HOTPLUG, dig_hotplug_reg);
Shashank Sharmad04a4922014-08-22 17:40:41 +05302416
Ville Syrjäläcebd87a2015-08-27 23:56:09 +03002417 intel_get_hpd_pins(&pin_mask, &long_mask, hotplug_trigger,
Ville Syrjälä40e56412015-08-27 23:56:10 +03002418 dig_hotplug_reg, hpd,
Ville Syrjäläcebd87a2015-08-27 23:56:09 +03002419 bxt_port_hotplug_long_detect);
Ville Syrjälä40e56412015-08-27 23:56:10 +03002420
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002421 intel_hpd_irq_handler(dev_priv, pin_mask, long_mask);
Shashank Sharmad04a4922014-08-22 17:40:41 +05302422}
2423
Tvrtko Ursulinf11a0f42016-01-12 16:04:07 +00002424static irqreturn_t
2425gen8_de_irq_handler(struct drm_i915_private *dev_priv, u32 master_ctl)
Ben Widawskyabd58f02013-11-02 21:07:09 -07002426{
Ben Widawskyabd58f02013-11-02 21:07:09 -07002427 irqreturn_t ret = IRQ_NONE;
Tvrtko Ursulinf11a0f42016-01-12 16:04:07 +00002428 u32 iir;
Daniel Vetterc42664c2013-11-07 11:05:40 +01002429 enum pipe pipe;
Jesse Barnes88e04702014-11-13 17:51:48 +00002430
Ben Widawskyabd58f02013-11-02 21:07:09 -07002431 if (master_ctl & GEN8_DE_MISC_IRQ) {
Tvrtko Ursuline32192e2016-01-12 16:04:06 +00002432 iir = I915_READ(GEN8_DE_MISC_IIR);
2433 if (iir) {
2434 I915_WRITE(GEN8_DE_MISC_IIR, iir);
Ben Widawskyabd58f02013-11-02 21:07:09 -07002435 ret = IRQ_HANDLED;
Tvrtko Ursuline32192e2016-01-12 16:04:06 +00002436 if (iir & GEN8_DE_MISC_GSE)
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002437 intel_opregion_asle_intr(dev_priv);
Oscar Mateo38cc46d2014-06-16 16:10:59 +01002438 else
2439 DRM_ERROR("Unexpected DE Misc interrupt\n");
Ben Widawskyabd58f02013-11-02 21:07:09 -07002440 }
Oscar Mateo38cc46d2014-06-16 16:10:59 +01002441 else
2442 DRM_ERROR("The master control interrupt lied (DE MISC)!\n");
Ben Widawskyabd58f02013-11-02 21:07:09 -07002443 }
2444
Daniel Vetter6d766f02013-11-07 14:49:55 +01002445 if (master_ctl & GEN8_DE_PORT_IRQ) {
Tvrtko Ursuline32192e2016-01-12 16:04:06 +00002446 iir = I915_READ(GEN8_DE_PORT_IIR);
2447 if (iir) {
2448 u32 tmp_mask;
Shashank Sharmad04a4922014-08-22 17:40:41 +05302449 bool found = false;
Ville Syrjäläcebd87a2015-08-27 23:56:09 +03002450
Tvrtko Ursuline32192e2016-01-12 16:04:06 +00002451 I915_WRITE(GEN8_DE_PORT_IIR, iir);
Daniel Vetter6d766f02013-11-07 14:49:55 +01002452 ret = IRQ_HANDLED;
Jesse Barnes88e04702014-11-13 17:51:48 +00002453
Tvrtko Ursuline32192e2016-01-12 16:04:06 +00002454 tmp_mask = GEN8_AUX_CHANNEL_A;
2455 if (INTEL_INFO(dev_priv)->gen >= 9)
2456 tmp_mask |= GEN9_AUX_CHANNEL_B |
2457 GEN9_AUX_CHANNEL_C |
2458 GEN9_AUX_CHANNEL_D;
2459
2460 if (iir & tmp_mask) {
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002461 dp_aux_irq_handler(dev_priv);
Shashank Sharmad04a4922014-08-22 17:40:41 +05302462 found = true;
2463 }
2464
Ander Conselvan de Oliveiracc3f90f2016-12-02 10:23:49 +02002465 if (IS_GEN9_LP(dev_priv)) {
Tvrtko Ursuline32192e2016-01-12 16:04:06 +00002466 tmp_mask = iir & BXT_DE_PORT_HOTPLUG_MASK;
2467 if (tmp_mask) {
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002468 bxt_hpd_irq_handler(dev_priv, tmp_mask,
2469 hpd_bxt);
Tvrtko Ursuline32192e2016-01-12 16:04:06 +00002470 found = true;
2471 }
2472 } else if (IS_BROADWELL(dev_priv)) {
2473 tmp_mask = iir & GEN8_PORT_DP_A_HOTPLUG;
2474 if (tmp_mask) {
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002475 ilk_hpd_irq_handler(dev_priv,
2476 tmp_mask, hpd_bdw);
Tvrtko Ursuline32192e2016-01-12 16:04:06 +00002477 found = true;
2478 }
Shashank Sharmad04a4922014-08-22 17:40:41 +05302479 }
2480
Ander Conselvan de Oliveiracc3f90f2016-12-02 10:23:49 +02002481 if (IS_GEN9_LP(dev_priv) && (iir & BXT_DE_PORT_GMBUS)) {
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002482 gmbus_irq_handler(dev_priv);
Shashank Sharma9e637432014-08-22 17:40:43 +05302483 found = true;
2484 }
2485
Shashank Sharmad04a4922014-08-22 17:40:41 +05302486 if (!found)
Oscar Mateo38cc46d2014-06-16 16:10:59 +01002487 DRM_ERROR("Unexpected DE Port interrupt\n");
Daniel Vetter6d766f02013-11-07 14:49:55 +01002488 }
Oscar Mateo38cc46d2014-06-16 16:10:59 +01002489 else
2490 DRM_ERROR("The master control interrupt lied (DE PORT)!\n");
Daniel Vetter6d766f02013-11-07 14:49:55 +01002491 }
2492
Damien Lespiau055e3932014-08-18 13:49:10 +01002493 for_each_pipe(dev_priv, pipe) {
Tvrtko Ursuline32192e2016-01-12 16:04:06 +00002494 u32 flip_done, fault_errors;
Ben Widawskyabd58f02013-11-02 21:07:09 -07002495
Daniel Vetterc42664c2013-11-07 11:05:40 +01002496 if (!(master_ctl & GEN8_DE_PIPE_IRQ(pipe)))
2497 continue;
Ben Widawskyabd58f02013-11-02 21:07:09 -07002498
Tvrtko Ursuline32192e2016-01-12 16:04:06 +00002499 iir = I915_READ(GEN8_DE_PIPE_IIR(pipe));
2500 if (!iir) {
Ben Widawskyabd58f02013-11-02 21:07:09 -07002501 DRM_ERROR("The master control interrupt lied (DE PIPE)!\n");
Tvrtko Ursuline32192e2016-01-12 16:04:06 +00002502 continue;
2503 }
2504
2505 ret = IRQ_HANDLED;
2506 I915_WRITE(GEN8_DE_PIPE_IIR(pipe), iir);
2507
Daniel Vetter5a21b662016-05-24 17:13:53 +02002508 if (iir & GEN8_PIPE_VBLANK &&
2509 intel_pipe_handle_vblank(dev_priv, pipe))
2510 intel_check_page_flip(dev_priv, pipe);
Tvrtko Ursuline32192e2016-01-12 16:04:06 +00002511
2512 flip_done = iir;
2513 if (INTEL_INFO(dev_priv)->gen >= 9)
2514 flip_done &= GEN9_PIPE_PLANE1_FLIP_DONE;
2515 else
2516 flip_done &= GEN8_PIPE_PRIMARY_FLIP_DONE;
2517
Maarten Lankhorst5251f042016-05-17 15:07:47 +02002518 if (flip_done)
Maarten Lankhorst51cbaf02016-05-17 15:07:49 +02002519 intel_finish_page_flip_cs(dev_priv, pipe);
Tvrtko Ursuline32192e2016-01-12 16:04:06 +00002520
2521 if (iir & GEN8_PIPE_CDCLK_CRC_DONE)
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002522 hsw_pipe_crc_irq_handler(dev_priv, pipe);
Tvrtko Ursuline32192e2016-01-12 16:04:06 +00002523
2524 if (iir & GEN8_PIPE_FIFO_UNDERRUN)
2525 intel_cpu_fifo_underrun_irq_handler(dev_priv, pipe);
2526
2527 fault_errors = iir;
2528 if (INTEL_INFO(dev_priv)->gen >= 9)
2529 fault_errors &= GEN9_DE_PIPE_IRQ_FAULT_ERRORS;
2530 else
2531 fault_errors &= GEN8_DE_PIPE_IRQ_FAULT_ERRORS;
2532
2533 if (fault_errors)
Tvrtko Ursulin1353ec32016-10-27 13:48:32 +01002534 DRM_ERROR("Fault errors on pipe %c: 0x%08x\n",
Tvrtko Ursuline32192e2016-01-12 16:04:06 +00002535 pipe_name(pipe),
2536 fault_errors);
Ben Widawskyabd58f02013-11-02 21:07:09 -07002537 }
2538
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002539 if (HAS_PCH_SPLIT(dev_priv) && !HAS_PCH_NOP(dev_priv) &&
Shashank Sharma266ea3d2014-08-22 17:40:42 +05302540 master_ctl & GEN8_DE_PCH_IRQ) {
Daniel Vetter92d03a82013-11-07 11:05:43 +01002541 /*
2542 * FIXME(BDW): Assume for now that the new interrupt handling
2543 * scheme also closed the SDE interrupt handling race we've seen
2544 * on older pch-split platforms. But this needs testing.
2545 */
Tvrtko Ursuline32192e2016-01-12 16:04:06 +00002546 iir = I915_READ(SDEIIR);
2547 if (iir) {
2548 I915_WRITE(SDEIIR, iir);
Daniel Vetter92d03a82013-11-07 11:05:43 +01002549 ret = IRQ_HANDLED;
Ville Syrjälä6dbf30c2015-08-27 23:56:02 +03002550
Rodrigo Vivi22dea0b2016-07-01 17:07:12 -07002551 if (HAS_PCH_SPT(dev_priv) || HAS_PCH_KBP(dev_priv))
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002552 spt_irq_handler(dev_priv, iir);
Ville Syrjälä6dbf30c2015-08-27 23:56:02 +03002553 else
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002554 cpt_irq_handler(dev_priv, iir);
Jani Nikula2dfb0b82016-01-07 10:29:10 +02002555 } else {
2556 /*
2557 * Like on previous PCH there seems to be something
2558 * fishy going on with forwarding PCH interrupts.
2559 */
2560 DRM_DEBUG_DRIVER("The master control interrupt lied (SDE)!\n");
2561 }
Daniel Vetter92d03a82013-11-07 11:05:43 +01002562 }
2563
Tvrtko Ursulinf11a0f42016-01-12 16:04:07 +00002564 return ret;
2565}
2566
2567static irqreturn_t gen8_irq_handler(int irq, void *arg)
2568{
2569 struct drm_device *dev = arg;
Chris Wilsonfac5e232016-07-04 11:34:36 +01002570 struct drm_i915_private *dev_priv = to_i915(dev);
Tvrtko Ursulinf11a0f42016-01-12 16:04:07 +00002571 u32 master_ctl;
Ville Syrjäläe30e2512016-04-13 21:19:58 +03002572 u32 gt_iir[4] = {};
Tvrtko Ursulinf11a0f42016-01-12 16:04:07 +00002573 irqreturn_t ret;
2574
2575 if (!intel_irqs_enabled(dev_priv))
2576 return IRQ_NONE;
2577
2578 master_ctl = I915_READ_FW(GEN8_MASTER_IRQ);
2579 master_ctl &= ~GEN8_MASTER_IRQ_CONTROL;
2580 if (!master_ctl)
2581 return IRQ_NONE;
2582
2583 I915_WRITE_FW(GEN8_MASTER_IRQ, 0);
2584
2585 /* IRQs are synced during runtime_suspend, we don't require a wakeref */
2586 disable_rpm_wakeref_asserts(dev_priv);
2587
2588 /* Find, clear, then process each source of interrupt */
Ville Syrjäläe30e2512016-04-13 21:19:58 +03002589 ret = gen8_gt_irq_ack(dev_priv, master_ctl, gt_iir);
2590 gen8_gt_irq_handler(dev_priv, gt_iir);
Tvrtko Ursulinf11a0f42016-01-12 16:04:07 +00002591 ret |= gen8_de_irq_handler(dev_priv, master_ctl);
2592
Chris Wilsoncb0d2052015-04-07 16:21:04 +01002593 I915_WRITE_FW(GEN8_MASTER_IRQ, GEN8_MASTER_IRQ_CONTROL);
2594 POSTING_READ_FW(GEN8_MASTER_IRQ);
Ben Widawskyabd58f02013-11-02 21:07:09 -07002595
Imre Deak1f814da2015-12-16 02:52:19 +02002596 enable_rpm_wakeref_asserts(dev_priv);
2597
Ben Widawskyabd58f02013-11-02 21:07:09 -07002598 return ret;
2599}
2600
Chris Wilson1f15b762016-07-01 17:23:14 +01002601static void i915_error_wake_up(struct drm_i915_private *dev_priv)
Daniel Vetter17e1df02013-09-08 21:57:13 +02002602{
Daniel Vetter17e1df02013-09-08 21:57:13 +02002603 /*
2604 * Notify all waiters for GPU completion events that reset state has
2605 * been changed, and that they need to restart their wait after
2606 * checking for potential errors (and bail out to drop locks if there is
2607 * a gpu reset pending so that i915_error_work_func can acquire them).
2608 */
2609
2610 /* Wake up __wait_seqno, potentially holding dev->struct_mutex. */
Chris Wilson1f15b762016-07-01 17:23:14 +01002611 wake_up_all(&dev_priv->gpu_error.wait_queue);
Daniel Vetter17e1df02013-09-08 21:57:13 +02002612
2613 /* Wake up intel_crtc_wait_for_pending_flips, holding crtc->mutex. */
2614 wake_up_all(&dev_priv->pending_flip_queue);
Daniel Vetter17e1df02013-09-08 21:57:13 +02002615}
2616
Jesse Barnes8a905232009-07-11 16:48:03 -04002617/**
Mika Kuoppalab8d24a02015-01-28 17:03:14 +02002618 * i915_reset_and_wakeup - do process context error handling work
Tvrtko Ursulin14bb2c12016-06-03 14:02:17 +01002619 * @dev_priv: i915 device private
Jesse Barnes8a905232009-07-11 16:48:03 -04002620 *
2621 * Fire an error uevent so userspace can see that a hang or error
2622 * was detected.
2623 */
Chris Wilsonc0336662016-05-06 15:40:21 +01002624static void i915_reset_and_wakeup(struct drm_i915_private *dev_priv)
Jesse Barnes8a905232009-07-11 16:48:03 -04002625{
Chris Wilson91c8a322016-07-05 10:40:23 +01002626 struct kobject *kobj = &dev_priv->drm.primary->kdev->kobj;
Ben Widawskycce723e2013-07-19 09:16:42 -07002627 char *error_event[] = { I915_ERROR_UEVENT "=1", NULL };
2628 char *reset_event[] = { I915_RESET_UEVENT "=1", NULL };
2629 char *reset_done_event[] = { I915_ERROR_UEVENT "=0", NULL };
Jesse Barnes8a905232009-07-11 16:48:03 -04002630
Chris Wilsonc0336662016-05-06 15:40:21 +01002631 kobject_uevent_env(kobj, KOBJ_CHANGE, error_event);
Jesse Barnes8a905232009-07-11 16:48:03 -04002632
Chris Wilson8af29b02016-09-09 14:11:47 +01002633 DRM_DEBUG_DRIVER("resetting chip\n");
2634 kobject_uevent_env(kobj, KOBJ_CHANGE, reset_event);
2635
Daniel Vetter7db0ba22012-12-06 16:23:37 +01002636 /*
Chris Wilson8af29b02016-09-09 14:11:47 +01002637 * In most cases it's guaranteed that we get here with an RPM
2638 * reference held, for example because there is a pending GPU
2639 * request that won't finish until the reset is done. This
2640 * isn't the case at least when we get here by doing a
2641 * simulated reset via debugs, so get an RPM reference.
Daniel Vetter7db0ba22012-12-06 16:23:37 +01002642 */
Chris Wilson8af29b02016-09-09 14:11:47 +01002643 intel_runtime_pm_get(dev_priv);
Chris Wilson8af29b02016-09-09 14:11:47 +01002644 intel_prepare_reset(dev_priv);
Ville Syrjälä75147472014-11-24 18:28:11 +02002645
Chris Wilson780f2622016-09-09 14:11:52 +01002646 do {
2647 /*
2648 * All state reset _must_ be completed before we update the
2649 * reset counter, for otherwise waiters might miss the reset
2650 * pending state and not properly drop locks, resulting in
2651 * deadlocks with the reset work.
2652 */
2653 if (mutex_trylock(&dev_priv->drm.struct_mutex)) {
2654 i915_reset(dev_priv);
2655 mutex_unlock(&dev_priv->drm.struct_mutex);
2656 }
2657
2658 /* We need to wait for anyone holding the lock to wakeup */
2659 } while (wait_on_bit_timeout(&dev_priv->gpu_error.flags,
2660 I915_RESET_IN_PROGRESS,
2661 TASK_UNINTERRUPTIBLE,
2662 HZ));
Ville Syrjälä75147472014-11-24 18:28:11 +02002663
Chris Wilson8af29b02016-09-09 14:11:47 +01002664 intel_finish_reset(dev_priv);
Chris Wilson8af29b02016-09-09 14:11:47 +01002665 intel_runtime_pm_put(dev_priv);
Daniel Vetter17e1df02013-09-08 21:57:13 +02002666
Chris Wilson780f2622016-09-09 14:11:52 +01002667 if (!test_bit(I915_WEDGED, &dev_priv->gpu_error.flags))
Chris Wilson8af29b02016-09-09 14:11:47 +01002668 kobject_uevent_env(kobj,
2669 KOBJ_CHANGE, reset_done_event);
Imre Deakf454c692014-04-23 01:09:04 +03002670
Chris Wilson8af29b02016-09-09 14:11:47 +01002671 /*
2672 * Note: The wake_up also serves as a memory barrier so that
2673 * waiters see the updated value of the dev_priv->gpu_error.
2674 */
2675 wake_up_all(&dev_priv->gpu_error.reset_queue);
Jesse Barnes8a905232009-07-11 16:48:03 -04002676}
2677
Ben Widawskyd6369512016-09-20 16:54:32 +03002678static inline void
2679i915_err_print_instdone(struct drm_i915_private *dev_priv,
2680 struct intel_instdone *instdone)
2681{
Ben Widawskyf9e61372016-09-20 16:54:33 +03002682 int slice;
2683 int subslice;
2684
Ben Widawskyd6369512016-09-20 16:54:32 +03002685 pr_err(" INSTDONE: 0x%08x\n", instdone->instdone);
2686
2687 if (INTEL_GEN(dev_priv) <= 3)
2688 return;
2689
2690 pr_err(" SC_INSTDONE: 0x%08x\n", instdone->slice_common);
2691
2692 if (INTEL_GEN(dev_priv) <= 6)
2693 return;
2694
Ben Widawskyf9e61372016-09-20 16:54:33 +03002695 for_each_instdone_slice_subslice(dev_priv, slice, subslice)
2696 pr_err(" SAMPLER_INSTDONE[%d][%d]: 0x%08x\n",
2697 slice, subslice, instdone->sampler[slice][subslice]);
2698
2699 for_each_instdone_slice_subslice(dev_priv, slice, subslice)
2700 pr_err(" ROW_INSTDONE[%d][%d]: 0x%08x\n",
2701 slice, subslice, instdone->row[slice][subslice]);
Ben Widawskyd6369512016-09-20 16:54:32 +03002702}
2703
Chris Wilsoneaa14c22016-10-19 13:52:03 +01002704static void i915_clear_error_registers(struct drm_i915_private *dev_priv)
Jesse Barnes8a905232009-07-11 16:48:03 -04002705{
Chris Wilsoneaa14c22016-10-19 13:52:03 +01002706 u32 eir;
Jesse Barnes8a905232009-07-11 16:48:03 -04002707
Chris Wilsoneaa14c22016-10-19 13:52:03 +01002708 if (!IS_GEN2(dev_priv))
2709 I915_WRITE(PGTBL_ER, I915_READ(PGTBL_ER));
Jesse Barnes8a905232009-07-11 16:48:03 -04002710
Chris Wilsoneaa14c22016-10-19 13:52:03 +01002711 if (INTEL_GEN(dev_priv) < 4)
2712 I915_WRITE(IPEIR, I915_READ(IPEIR));
2713 else
2714 I915_WRITE(IPEIR_I965, I915_READ(IPEIR_I965));
Jesse Barnes8a905232009-07-11 16:48:03 -04002715
Chris Wilsoneaa14c22016-10-19 13:52:03 +01002716 I915_WRITE(EIR, I915_READ(EIR));
Jesse Barnes8a905232009-07-11 16:48:03 -04002717 eir = I915_READ(EIR);
2718 if (eir) {
2719 /*
2720 * some errors might have become stuck,
2721 * mask them.
2722 */
Chris Wilsoneaa14c22016-10-19 13:52:03 +01002723 DRM_DEBUG_DRIVER("EIR stuck: 0x%08x, masking\n", eir);
Jesse Barnes8a905232009-07-11 16:48:03 -04002724 I915_WRITE(EMR, I915_READ(EMR) | eir);
2725 I915_WRITE(IIR, I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT);
2726 }
Chris Wilson35aed2e2010-05-27 13:18:12 +01002727}
2728
2729/**
Mika Kuoppalab8d24a02015-01-28 17:03:14 +02002730 * i915_handle_error - handle a gpu error
Tvrtko Ursulin14bb2c12016-06-03 14:02:17 +01002731 * @dev_priv: i915 device private
arun.siluvery@linux.intel.com14b730f2016-03-18 20:07:55 +00002732 * @engine_mask: mask representing engines that are hung
Javier Martinez Canillasaafd8582015-10-08 09:57:49 +02002733 * Do some basic checking of register state at error time and
Chris Wilson35aed2e2010-05-27 13:18:12 +01002734 * dump it to the syslog. Also call i915_capture_error_state() to make
2735 * sure we get a record and make it available in debugfs. Fire a uevent
2736 * so userspace knows something bad happened (should trigger collection
2737 * of a ring dump etc.).
Tvrtko Ursulin14bb2c12016-06-03 14:02:17 +01002738 * @fmt: Error message format string
Chris Wilson35aed2e2010-05-27 13:18:12 +01002739 */
Chris Wilsonc0336662016-05-06 15:40:21 +01002740void i915_handle_error(struct drm_i915_private *dev_priv,
2741 u32 engine_mask,
Mika Kuoppala58174462014-02-25 17:11:26 +02002742 const char *fmt, ...)
Chris Wilson35aed2e2010-05-27 13:18:12 +01002743{
Mika Kuoppala58174462014-02-25 17:11:26 +02002744 va_list args;
2745 char error_msg[80];
Chris Wilson35aed2e2010-05-27 13:18:12 +01002746
Mika Kuoppala58174462014-02-25 17:11:26 +02002747 va_start(args, fmt);
2748 vscnprintf(error_msg, sizeof(error_msg), fmt, args);
2749 va_end(args);
2750
Chris Wilsonc0336662016-05-06 15:40:21 +01002751 i915_capture_error_state(dev_priv, engine_mask, error_msg);
Chris Wilsoneaa14c22016-10-19 13:52:03 +01002752 i915_clear_error_registers(dev_priv);
Jesse Barnes8a905232009-07-11 16:48:03 -04002753
Chris Wilson8af29b02016-09-09 14:11:47 +01002754 if (!engine_mask)
2755 return;
Ben Gamariba1234d2009-09-14 17:48:47 -04002756
Chris Wilson8af29b02016-09-09 14:11:47 +01002757 if (test_and_set_bit(I915_RESET_IN_PROGRESS,
2758 &dev_priv->gpu_error.flags))
2759 return;
2760
2761 /*
2762 * Wakeup waiting processes so that the reset function
2763 * i915_reset_and_wakeup doesn't deadlock trying to grab
2764 * various locks. By bumping the reset counter first, the woken
2765 * processes will see a reset in progress and back off,
2766 * releasing their locks and then wait for the reset completion.
2767 * We must do this for _all_ gpu waiters that might hold locks
2768 * that the reset work needs to acquire.
2769 *
2770 * Note: The wake_up also provides a memory barrier to ensure that the
2771 * waiters see the updated value of the reset flags.
2772 */
2773 i915_error_wake_up(dev_priv);
Ben Gamari11ed50e2009-09-14 17:48:45 -04002774
Chris Wilsonc0336662016-05-06 15:40:21 +01002775 i915_reset_and_wakeup(dev_priv);
Jesse Barnes8a905232009-07-11 16:48:03 -04002776}
2777
Keith Packard42f52ef2008-10-18 19:39:29 -07002778/* Called from drm generic code, passed 'crtc' which
2779 * we use as a pipe index
2780 */
Chris Wilson86e83e32016-10-07 20:49:52 +01002781static int i8xx_enable_vblank(struct drm_device *dev, unsigned int pipe)
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07002782{
Chris Wilsonfac5e232016-07-04 11:34:36 +01002783 struct drm_i915_private *dev_priv = to_i915(dev);
Keith Packarde9d21d72008-10-16 11:31:38 -07002784 unsigned long irqflags;
Jesse Barnes71e0ffa2009-01-08 10:42:15 -08002785
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002786 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Chris Wilson86e83e32016-10-07 20:49:52 +01002787 i915_enable_pipestat(dev_priv, pipe, PIPE_VBLANK_INTERRUPT_STATUS);
2788 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
2789
2790 return 0;
2791}
2792
2793static int i965_enable_vblank(struct drm_device *dev, unsigned int pipe)
2794{
2795 struct drm_i915_private *dev_priv = to_i915(dev);
2796 unsigned long irqflags;
2797
2798 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
2799 i915_enable_pipestat(dev_priv, pipe,
2800 PIPE_START_VBLANK_INTERRUPT_STATUS);
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002801 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
Chris Wilson8692d00e2011-02-05 10:08:21 +00002802
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07002803 return 0;
2804}
2805
Thierry Reding88e72712015-09-24 18:35:31 +02002806static int ironlake_enable_vblank(struct drm_device *dev, unsigned int pipe)
Jesse Barnesf796cf82011-04-07 13:58:17 -07002807{
Chris Wilsonfac5e232016-07-04 11:34:36 +01002808 struct drm_i915_private *dev_priv = to_i915(dev);
Jesse Barnesf796cf82011-04-07 13:58:17 -07002809 unsigned long irqflags;
Tvrtko Ursulin55b8f2a2016-10-14 09:17:22 +01002810 uint32_t bit = INTEL_GEN(dev_priv) >= 7 ?
Chris Wilson86e83e32016-10-07 20:49:52 +01002811 DE_PIPE_VBLANK_IVB(pipe) : DE_PIPE_VBLANK(pipe);
Jesse Barnesf796cf82011-04-07 13:58:17 -07002812
Jesse Barnesf796cf82011-04-07 13:58:17 -07002813 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Ville Syrjäläfbdedaea2015-11-23 18:06:16 +02002814 ilk_enable_display_irq(dev_priv, bit);
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002815 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
2816
2817 return 0;
2818}
2819
Thierry Reding88e72712015-09-24 18:35:31 +02002820static int gen8_enable_vblank(struct drm_device *dev, unsigned int pipe)
Ben Widawskyabd58f02013-11-02 21:07:09 -07002821{
Chris Wilsonfac5e232016-07-04 11:34:36 +01002822 struct drm_i915_private *dev_priv = to_i915(dev);
Ben Widawskyabd58f02013-11-02 21:07:09 -07002823 unsigned long irqflags;
Ben Widawskyabd58f02013-11-02 21:07:09 -07002824
Ben Widawskyabd58f02013-11-02 21:07:09 -07002825 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Ville Syrjälä013d3752015-11-23 18:06:17 +02002826 bdw_enable_pipe_irq(dev_priv, pipe, GEN8_PIPE_VBLANK);
Ben Widawskyabd58f02013-11-02 21:07:09 -07002827 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
Ville Syrjälä013d3752015-11-23 18:06:17 +02002828
Ben Widawskyabd58f02013-11-02 21:07:09 -07002829 return 0;
2830}
2831
Keith Packard42f52ef2008-10-18 19:39:29 -07002832/* Called from drm generic code, passed 'crtc' which
2833 * we use as a pipe index
2834 */
Chris Wilson86e83e32016-10-07 20:49:52 +01002835static void i8xx_disable_vblank(struct drm_device *dev, unsigned int pipe)
2836{
2837 struct drm_i915_private *dev_priv = to_i915(dev);
2838 unsigned long irqflags;
2839
2840 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
2841 i915_disable_pipestat(dev_priv, pipe, PIPE_VBLANK_INTERRUPT_STATUS);
2842 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
2843}
2844
2845static void i965_disable_vblank(struct drm_device *dev, unsigned int pipe)
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07002846{
Chris Wilsonfac5e232016-07-04 11:34:36 +01002847 struct drm_i915_private *dev_priv = to_i915(dev);
Keith Packarde9d21d72008-10-16 11:31:38 -07002848 unsigned long irqflags;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07002849
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002850 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Jesse Barnesf796cf82011-04-07 13:58:17 -07002851 i915_disable_pipestat(dev_priv, pipe,
Imre Deak755e9012014-02-10 18:42:47 +02002852 PIPE_START_VBLANK_INTERRUPT_STATUS);
Jesse Barnesf796cf82011-04-07 13:58:17 -07002853 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
2854}
2855
Thierry Reding88e72712015-09-24 18:35:31 +02002856static void ironlake_disable_vblank(struct drm_device *dev, unsigned int pipe)
Jesse Barnesf796cf82011-04-07 13:58:17 -07002857{
Chris Wilsonfac5e232016-07-04 11:34:36 +01002858 struct drm_i915_private *dev_priv = to_i915(dev);
Jesse Barnesf796cf82011-04-07 13:58:17 -07002859 unsigned long irqflags;
Tvrtko Ursulin55b8f2a2016-10-14 09:17:22 +01002860 uint32_t bit = INTEL_GEN(dev_priv) >= 7 ?
Chris Wilson86e83e32016-10-07 20:49:52 +01002861 DE_PIPE_VBLANK_IVB(pipe) : DE_PIPE_VBLANK(pipe);
Jesse Barnesf796cf82011-04-07 13:58:17 -07002862
2863 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Ville Syrjäläfbdedaea2015-11-23 18:06:16 +02002864 ilk_disable_display_irq(dev_priv, bit);
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002865 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
2866}
2867
Thierry Reding88e72712015-09-24 18:35:31 +02002868static void gen8_disable_vblank(struct drm_device *dev, unsigned int pipe)
Ben Widawskyabd58f02013-11-02 21:07:09 -07002869{
Chris Wilsonfac5e232016-07-04 11:34:36 +01002870 struct drm_i915_private *dev_priv = to_i915(dev);
Ben Widawskyabd58f02013-11-02 21:07:09 -07002871 unsigned long irqflags;
Ben Widawskyabd58f02013-11-02 21:07:09 -07002872
Ben Widawskyabd58f02013-11-02 21:07:09 -07002873 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Ville Syrjälä013d3752015-11-23 18:06:17 +02002874 bdw_disable_pipe_irq(dev_priv, pipe, GEN8_PIPE_VBLANK);
Ben Widawskyabd58f02013-11-02 21:07:09 -07002875 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
2876}
2877
Tvrtko Ursulinb243f532016-11-16 08:55:38 +00002878static void ibx_irq_reset(struct drm_i915_private *dev_priv)
Paulo Zanoni91738a92013-06-05 14:21:51 -03002879{
Tvrtko Ursulin6e266952016-10-13 11:02:53 +01002880 if (HAS_PCH_NOP(dev_priv))
Paulo Zanoni91738a92013-06-05 14:21:51 -03002881 return;
2882
Paulo Zanonif86f3fb2014-04-01 15:37:14 -03002883 GEN5_IRQ_RESET(SDE);
Paulo Zanoni105b1222014-04-01 15:37:17 -03002884
Tvrtko Ursulin6e266952016-10-13 11:02:53 +01002885 if (HAS_PCH_CPT(dev_priv) || HAS_PCH_LPT(dev_priv))
Paulo Zanoni105b1222014-04-01 15:37:17 -03002886 I915_WRITE(SERR_INT, 0xffffffff);
Paulo Zanoni622364b2014-04-01 15:37:22 -03002887}
Paulo Zanoni105b1222014-04-01 15:37:17 -03002888
Paulo Zanoni622364b2014-04-01 15:37:22 -03002889/*
2890 * SDEIER is also touched by the interrupt handler to work around missed PCH
2891 * interrupts. Hence we can't update it after the interrupt handler is enabled -
2892 * instead we unconditionally enable all PCH interrupt sources here, but then
2893 * only unmask them as needed with SDEIMR.
2894 *
2895 * This function needs to be called before interrupts are enabled.
2896 */
2897static void ibx_irq_pre_postinstall(struct drm_device *dev)
2898{
Chris Wilsonfac5e232016-07-04 11:34:36 +01002899 struct drm_i915_private *dev_priv = to_i915(dev);
Paulo Zanoni622364b2014-04-01 15:37:22 -03002900
Tvrtko Ursulin6e266952016-10-13 11:02:53 +01002901 if (HAS_PCH_NOP(dev_priv))
Paulo Zanoni622364b2014-04-01 15:37:22 -03002902 return;
2903
2904 WARN_ON(I915_READ(SDEIER) != 0);
Paulo Zanoni91738a92013-06-05 14:21:51 -03002905 I915_WRITE(SDEIER, 0xffffffff);
2906 POSTING_READ(SDEIER);
2907}
2908
Tvrtko Ursulinb243f532016-11-16 08:55:38 +00002909static void gen5_gt_irq_reset(struct drm_i915_private *dev_priv)
Daniel Vetterd18ea1b2013-07-12 22:43:25 +02002910{
Paulo Zanonif86f3fb2014-04-01 15:37:14 -03002911 GEN5_IRQ_RESET(GT);
Tvrtko Ursulinb243f532016-11-16 08:55:38 +00002912 if (INTEL_GEN(dev_priv) >= 6)
Paulo Zanonif86f3fb2014-04-01 15:37:14 -03002913 GEN5_IRQ_RESET(GEN6_PM);
Daniel Vetterd18ea1b2013-07-12 22:43:25 +02002914}
2915
Ville Syrjälä70591a42014-10-30 19:42:58 +02002916static void vlv_display_irq_reset(struct drm_i915_private *dev_priv)
2917{
2918 enum pipe pipe;
2919
Ville Syrjälä71b8b412016-04-11 16:56:31 +03002920 if (IS_CHERRYVIEW(dev_priv))
2921 I915_WRITE(DPINVGTT, DPINVGTT_STATUS_MASK_CHV);
2922 else
2923 I915_WRITE(DPINVGTT, DPINVGTT_STATUS_MASK);
2924
Ville Syrjäläad22d102016-04-12 18:56:14 +03002925 i915_hotplug_interrupt_update_locked(dev_priv, 0xffffffff, 0);
Ville Syrjälä70591a42014-10-30 19:42:58 +02002926 I915_WRITE(PORT_HOTPLUG_STAT, I915_READ(PORT_HOTPLUG_STAT));
2927
Ville Syrjäläad22d102016-04-12 18:56:14 +03002928 for_each_pipe(dev_priv, pipe) {
2929 I915_WRITE(PIPESTAT(pipe),
2930 PIPE_FIFO_UNDERRUN_STATUS |
2931 PIPESTAT_INT_STATUS_MASK);
2932 dev_priv->pipestat_irq_mask[pipe] = 0;
2933 }
Ville Syrjälä70591a42014-10-30 19:42:58 +02002934
2935 GEN5_IRQ_RESET(VLV_);
Ville Syrjäläad22d102016-04-12 18:56:14 +03002936 dev_priv->irq_mask = ~0;
Ville Syrjälä70591a42014-10-30 19:42:58 +02002937}
2938
Ville Syrjälä8bb61302016-04-12 18:56:44 +03002939static void vlv_display_irq_postinstall(struct drm_i915_private *dev_priv)
2940{
2941 u32 pipestat_mask;
Ville Syrjälä9ab981f2016-04-11 16:56:28 +03002942 u32 enable_mask;
Ville Syrjälä8bb61302016-04-12 18:56:44 +03002943 enum pipe pipe;
2944
Ville Syrjälä8bb61302016-04-12 18:56:44 +03002945 pipestat_mask = PLANE_FLIP_DONE_INT_STATUS_VLV |
2946 PIPE_CRC_DONE_INTERRUPT_STATUS;
2947
2948 i915_enable_pipestat(dev_priv, PIPE_A, PIPE_GMBUS_INTERRUPT_STATUS);
2949 for_each_pipe(dev_priv, pipe)
2950 i915_enable_pipestat(dev_priv, pipe, pipestat_mask);
2951
Ville Syrjälä9ab981f2016-04-11 16:56:28 +03002952 enable_mask = I915_DISPLAY_PORT_INTERRUPT |
2953 I915_DISPLAY_PIPE_A_EVENT_INTERRUPT |
2954 I915_DISPLAY_PIPE_B_EVENT_INTERRUPT;
Ville Syrjälä8bb61302016-04-12 18:56:44 +03002955 if (IS_CHERRYVIEW(dev_priv))
Ville Syrjälä9ab981f2016-04-11 16:56:28 +03002956 enable_mask |= I915_DISPLAY_PIPE_C_EVENT_INTERRUPT;
Ville Syrjälä6b7eafc2016-04-11 16:56:29 +03002957
2958 WARN_ON(dev_priv->irq_mask != ~0);
2959
Ville Syrjälä9ab981f2016-04-11 16:56:28 +03002960 dev_priv->irq_mask = ~enable_mask;
Ville Syrjälä8bb61302016-04-12 18:56:44 +03002961
Ville Syrjälä9ab981f2016-04-11 16:56:28 +03002962 GEN5_IRQ_INIT(VLV_, dev_priv->irq_mask, enable_mask);
Ville Syrjälä8bb61302016-04-12 18:56:44 +03002963}
2964
2965/* drm_dma.h hooks
2966*/
2967static void ironlake_irq_reset(struct drm_device *dev)
2968{
Chris Wilsonfac5e232016-07-04 11:34:36 +01002969 struct drm_i915_private *dev_priv = to_i915(dev);
Ville Syrjälä8bb61302016-04-12 18:56:44 +03002970
2971 I915_WRITE(HWSTAM, 0xffffffff);
2972
2973 GEN5_IRQ_RESET(DE);
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002974 if (IS_GEN7(dev_priv))
Ville Syrjälä8bb61302016-04-12 18:56:44 +03002975 I915_WRITE(GEN7_ERR_INT, 0xffffffff);
2976
Tvrtko Ursulinb243f532016-11-16 08:55:38 +00002977 gen5_gt_irq_reset(dev_priv);
Ville Syrjälä8bb61302016-04-12 18:56:44 +03002978
Tvrtko Ursulinb243f532016-11-16 08:55:38 +00002979 ibx_irq_reset(dev_priv);
Ville Syrjälä8bb61302016-04-12 18:56:44 +03002980}
2981
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002982static void valleyview_irq_preinstall(struct drm_device *dev)
2983{
Chris Wilsonfac5e232016-07-04 11:34:36 +01002984 struct drm_i915_private *dev_priv = to_i915(dev);
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002985
Ville Syrjälä34c7b8a2016-04-13 21:19:48 +03002986 I915_WRITE(VLV_MASTER_IER, 0);
2987 POSTING_READ(VLV_MASTER_IER);
2988
Tvrtko Ursulinb243f532016-11-16 08:55:38 +00002989 gen5_gt_irq_reset(dev_priv);
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002990
Ville Syrjäläad22d102016-04-12 18:56:14 +03002991 spin_lock_irq(&dev_priv->irq_lock);
Ville Syrjälä99182712016-04-11 16:56:25 +03002992 if (dev_priv->display_irqs_enabled)
2993 vlv_display_irq_reset(dev_priv);
Ville Syrjäläad22d102016-04-12 18:56:14 +03002994 spin_unlock_irq(&dev_priv->irq_lock);
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002995}
2996
Daniel Vetterd6e3cca2014-05-22 22:18:22 +02002997static void gen8_gt_irq_reset(struct drm_i915_private *dev_priv)
2998{
2999 GEN8_IRQ_RESET_NDX(GT, 0);
3000 GEN8_IRQ_RESET_NDX(GT, 1);
3001 GEN8_IRQ_RESET_NDX(GT, 2);
3002 GEN8_IRQ_RESET_NDX(GT, 3);
3003}
3004
Paulo Zanoni823f6b32014-04-01 15:37:26 -03003005static void gen8_irq_reset(struct drm_device *dev)
Ben Widawskyabd58f02013-11-02 21:07:09 -07003006{
Chris Wilsonfac5e232016-07-04 11:34:36 +01003007 struct drm_i915_private *dev_priv = to_i915(dev);
Ben Widawskyabd58f02013-11-02 21:07:09 -07003008 int pipe;
3009
Ben Widawskyabd58f02013-11-02 21:07:09 -07003010 I915_WRITE(GEN8_MASTER_IRQ, 0);
3011 POSTING_READ(GEN8_MASTER_IRQ);
3012
Daniel Vetterd6e3cca2014-05-22 22:18:22 +02003013 gen8_gt_irq_reset(dev_priv);
Ben Widawskyabd58f02013-11-02 21:07:09 -07003014
Damien Lespiau055e3932014-08-18 13:49:10 +01003015 for_each_pipe(dev_priv, pipe)
Daniel Vetterf458ebb2014-09-30 10:56:39 +02003016 if (intel_display_power_is_enabled(dev_priv,
3017 POWER_DOMAIN_PIPE(pipe)))
Paulo Zanoni813bde42014-07-04 11:50:29 -03003018 GEN8_IRQ_RESET_NDX(DE_PIPE, pipe);
Ben Widawskyabd58f02013-11-02 21:07:09 -07003019
Paulo Zanonif86f3fb2014-04-01 15:37:14 -03003020 GEN5_IRQ_RESET(GEN8_DE_PORT_);
3021 GEN5_IRQ_RESET(GEN8_DE_MISC_);
3022 GEN5_IRQ_RESET(GEN8_PCU_);
Ben Widawskyabd58f02013-11-02 21:07:09 -07003023
Tvrtko Ursulin6e266952016-10-13 11:02:53 +01003024 if (HAS_PCH_SPLIT(dev_priv))
Tvrtko Ursulinb243f532016-11-16 08:55:38 +00003025 ibx_irq_reset(dev_priv);
Ben Widawskyabd58f02013-11-02 21:07:09 -07003026}
Ben Widawskyabd58f02013-11-02 21:07:09 -07003027
Damien Lespiau4c6c03b2015-03-06 18:50:48 +00003028void gen8_irq_power_well_post_enable(struct drm_i915_private *dev_priv,
3029 unsigned int pipe_mask)
Paulo Zanonid49bdb02014-07-04 11:50:31 -03003030{
Paulo Zanoni1180e202014-10-07 18:02:52 -03003031 uint32_t extra_ier = GEN8_PIPE_VBLANK | GEN8_PIPE_FIFO_UNDERRUN;
Ville Syrjälä6831f3e2016-02-19 20:47:31 +02003032 enum pipe pipe;
Paulo Zanonid49bdb02014-07-04 11:50:31 -03003033
Daniel Vetter13321782014-09-15 14:55:29 +02003034 spin_lock_irq(&dev_priv->irq_lock);
Ville Syrjälä6831f3e2016-02-19 20:47:31 +02003035 for_each_pipe_masked(dev_priv, pipe, pipe_mask)
3036 GEN8_IRQ_INIT_NDX(DE_PIPE, pipe,
3037 dev_priv->de_irq_mask[pipe],
3038 ~dev_priv->de_irq_mask[pipe] | extra_ier);
Daniel Vetter13321782014-09-15 14:55:29 +02003039 spin_unlock_irq(&dev_priv->irq_lock);
Paulo Zanonid49bdb02014-07-04 11:50:31 -03003040}
3041
Ville Syrjäläaae8ba82016-02-19 20:47:30 +02003042void gen8_irq_power_well_pre_disable(struct drm_i915_private *dev_priv,
3043 unsigned int pipe_mask)
3044{
Ville Syrjälä6831f3e2016-02-19 20:47:31 +02003045 enum pipe pipe;
3046
Ville Syrjäläaae8ba82016-02-19 20:47:30 +02003047 spin_lock_irq(&dev_priv->irq_lock);
Ville Syrjälä6831f3e2016-02-19 20:47:31 +02003048 for_each_pipe_masked(dev_priv, pipe, pipe_mask)
3049 GEN8_IRQ_RESET_NDX(DE_PIPE, pipe);
Ville Syrjäläaae8ba82016-02-19 20:47:30 +02003050 spin_unlock_irq(&dev_priv->irq_lock);
3051
3052 /* make sure we're done processing display irqs */
Chris Wilson91c8a322016-07-05 10:40:23 +01003053 synchronize_irq(dev_priv->drm.irq);
Ville Syrjäläaae8ba82016-02-19 20:47:30 +02003054}
3055
Ville Syrjälä43f328d2014-04-09 20:40:52 +03003056static void cherryview_irq_preinstall(struct drm_device *dev)
3057{
Chris Wilsonfac5e232016-07-04 11:34:36 +01003058 struct drm_i915_private *dev_priv = to_i915(dev);
Ville Syrjälä43f328d2014-04-09 20:40:52 +03003059
3060 I915_WRITE(GEN8_MASTER_IRQ, 0);
3061 POSTING_READ(GEN8_MASTER_IRQ);
3062
Daniel Vetterd6e3cca2014-05-22 22:18:22 +02003063 gen8_gt_irq_reset(dev_priv);
Ville Syrjälä43f328d2014-04-09 20:40:52 +03003064
3065 GEN5_IRQ_RESET(GEN8_PCU_);
3066
Ville Syrjäläad22d102016-04-12 18:56:14 +03003067 spin_lock_irq(&dev_priv->irq_lock);
Ville Syrjälä99182712016-04-11 16:56:25 +03003068 if (dev_priv->display_irqs_enabled)
3069 vlv_display_irq_reset(dev_priv);
Ville Syrjäläad22d102016-04-12 18:56:14 +03003070 spin_unlock_irq(&dev_priv->irq_lock);
Ville Syrjälä43f328d2014-04-09 20:40:52 +03003071}
3072
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01003073static u32 intel_hpd_enabled_irqs(struct drm_i915_private *dev_priv,
Ville Syrjälä87a02102015-08-27 23:55:57 +03003074 const u32 hpd[HPD_NUM_PINS])
3075{
Ville Syrjälä87a02102015-08-27 23:55:57 +03003076 struct intel_encoder *encoder;
3077 u32 enabled_irqs = 0;
3078
Chris Wilson91c8a322016-07-05 10:40:23 +01003079 for_each_intel_encoder(&dev_priv->drm, encoder)
Ville Syrjälä87a02102015-08-27 23:55:57 +03003080 if (dev_priv->hotplug.stats[encoder->hpd_pin].state == HPD_ENABLED)
3081 enabled_irqs |= hpd[encoder->hpd_pin];
3082
3083 return enabled_irqs;
3084}
3085
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01003086static void ibx_hpd_irq_setup(struct drm_i915_private *dev_priv)
Keith Packard7fe0b972011-09-19 13:31:02 -07003087{
Ville Syrjälä87a02102015-08-27 23:55:57 +03003088 u32 hotplug_irqs, hotplug, enabled_irqs;
Keith Packard7fe0b972011-09-19 13:31:02 -07003089
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01003090 if (HAS_PCH_IBX(dev_priv)) {
Daniel Vetterfee884e2013-07-04 23:35:21 +02003091 hotplug_irqs = SDE_HOTPLUG_MASK;
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01003092 enabled_irqs = intel_hpd_enabled_irqs(dev_priv, hpd_ibx);
Daniel Vetter82a28bc2013-03-27 15:55:01 +01003093 } else {
Daniel Vetterfee884e2013-07-04 23:35:21 +02003094 hotplug_irqs = SDE_HOTPLUG_MASK_CPT;
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01003095 enabled_irqs = intel_hpd_enabled_irqs(dev_priv, hpd_cpt);
Daniel Vetter82a28bc2013-03-27 15:55:01 +01003096 }
3097
Daniel Vetterfee884e2013-07-04 23:35:21 +02003098 ibx_display_interrupt_update(dev_priv, hotplug_irqs, enabled_irqs);
Daniel Vetter82a28bc2013-03-27 15:55:01 +01003099
3100 /*
3101 * Enable digital hotplug on the PCH, and configure the DP short pulse
Ville Syrjälä6dbf30c2015-08-27 23:56:02 +03003102 * duration to 2ms (which is the minimum in the Display Port spec).
3103 * The pulse duration bits are reserved on LPT+.
Daniel Vetter82a28bc2013-03-27 15:55:01 +01003104 */
Keith Packard7fe0b972011-09-19 13:31:02 -07003105 hotplug = I915_READ(PCH_PORT_HOTPLUG);
3106 hotplug &= ~(PORTD_PULSE_DURATION_MASK|PORTC_PULSE_DURATION_MASK|PORTB_PULSE_DURATION_MASK);
3107 hotplug |= PORTD_HOTPLUG_ENABLE | PORTD_PULSE_DURATION_2ms;
3108 hotplug |= PORTC_HOTPLUG_ENABLE | PORTC_PULSE_DURATION_2ms;
3109 hotplug |= PORTB_HOTPLUG_ENABLE | PORTB_PULSE_DURATION_2ms;
Ville Syrjälä0b2eb332015-08-27 23:56:05 +03003110 /*
3111 * When CPU and PCH are on the same package, port A
3112 * HPD must be enabled in both north and south.
3113 */
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01003114 if (HAS_PCH_LPT_LP(dev_priv))
Ville Syrjälä0b2eb332015-08-27 23:56:05 +03003115 hotplug |= PORTA_HOTPLUG_ENABLE;
Keith Packard7fe0b972011-09-19 13:31:02 -07003116 I915_WRITE(PCH_PORT_HOTPLUG, hotplug);
Ville Syrjälä6dbf30c2015-08-27 23:56:02 +03003117}
Xiong Zhang26951ca2015-08-17 15:55:50 +08003118
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01003119static void spt_hpd_irq_setup(struct drm_i915_private *dev_priv)
Ville Syrjälä6dbf30c2015-08-27 23:56:02 +03003120{
Ville Syrjälä6dbf30c2015-08-27 23:56:02 +03003121 u32 hotplug_irqs, hotplug, enabled_irqs;
3122
3123 hotplug_irqs = SDE_HOTPLUG_MASK_SPT;
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01003124 enabled_irqs = intel_hpd_enabled_irqs(dev_priv, hpd_spt);
Ville Syrjälä6dbf30c2015-08-27 23:56:02 +03003125
3126 ibx_display_interrupt_update(dev_priv, hotplug_irqs, enabled_irqs);
3127
3128 /* Enable digital hotplug on the PCH */
3129 hotplug = I915_READ(PCH_PORT_HOTPLUG);
3130 hotplug |= PORTD_HOTPLUG_ENABLE | PORTC_HOTPLUG_ENABLE |
Ville Syrjälä74c0b392015-08-27 23:56:07 +03003131 PORTB_HOTPLUG_ENABLE | PORTA_HOTPLUG_ENABLE;
Ville Syrjälä6dbf30c2015-08-27 23:56:02 +03003132 I915_WRITE(PCH_PORT_HOTPLUG, hotplug);
3133
3134 hotplug = I915_READ(PCH_PORT_HOTPLUG2);
3135 hotplug |= PORTE_HOTPLUG_ENABLE;
3136 I915_WRITE(PCH_PORT_HOTPLUG2, hotplug);
Keith Packard7fe0b972011-09-19 13:31:02 -07003137}
3138
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01003139static void ilk_hpd_irq_setup(struct drm_i915_private *dev_priv)
Ville Syrjäläe4ce95a2015-08-27 23:56:03 +03003140{
Ville Syrjäläe4ce95a2015-08-27 23:56:03 +03003141 u32 hotplug_irqs, hotplug, enabled_irqs;
3142
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01003143 if (INTEL_GEN(dev_priv) >= 8) {
Ville Syrjälä3a3b3c72015-08-27 23:56:06 +03003144 hotplug_irqs = GEN8_PORT_DP_A_HOTPLUG;
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01003145 enabled_irqs = intel_hpd_enabled_irqs(dev_priv, hpd_bdw);
Ville Syrjälä3a3b3c72015-08-27 23:56:06 +03003146
3147 bdw_update_port_irq(dev_priv, hotplug_irqs, enabled_irqs);
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01003148 } else if (INTEL_GEN(dev_priv) >= 7) {
Ville Syrjälä23bb4cb2015-08-27 23:56:04 +03003149 hotplug_irqs = DE_DP_A_HOTPLUG_IVB;
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01003150 enabled_irqs = intel_hpd_enabled_irqs(dev_priv, hpd_ivb);
Ville Syrjälä3a3b3c72015-08-27 23:56:06 +03003151
3152 ilk_update_display_irq(dev_priv, hotplug_irqs, enabled_irqs);
Ville Syrjälä23bb4cb2015-08-27 23:56:04 +03003153 } else {
3154 hotplug_irqs = DE_DP_A_HOTPLUG;
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01003155 enabled_irqs = intel_hpd_enabled_irqs(dev_priv, hpd_ilk);
Ville Syrjäläe4ce95a2015-08-27 23:56:03 +03003156
Ville Syrjälä3a3b3c72015-08-27 23:56:06 +03003157 ilk_update_display_irq(dev_priv, hotplug_irqs, enabled_irqs);
3158 }
Ville Syrjäläe4ce95a2015-08-27 23:56:03 +03003159
3160 /*
3161 * Enable digital hotplug on the CPU, and configure the DP short pulse
3162 * duration to 2ms (which is the minimum in the Display Port spec)
Ville Syrjälä23bb4cb2015-08-27 23:56:04 +03003163 * The pulse duration bits are reserved on HSW+.
Ville Syrjäläe4ce95a2015-08-27 23:56:03 +03003164 */
3165 hotplug = I915_READ(DIGITAL_PORT_HOTPLUG_CNTRL);
3166 hotplug &= ~DIGITAL_PORTA_PULSE_DURATION_MASK;
3167 hotplug |= DIGITAL_PORTA_HOTPLUG_ENABLE | DIGITAL_PORTA_PULSE_DURATION_2ms;
3168 I915_WRITE(DIGITAL_PORT_HOTPLUG_CNTRL, hotplug);
3169
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01003170 ibx_hpd_irq_setup(dev_priv);
Ville Syrjäläe4ce95a2015-08-27 23:56:03 +03003171}
3172
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01003173static void bxt_hpd_irq_setup(struct drm_i915_private *dev_priv)
Shashank Sharmae0a20ad2015-03-27 14:54:14 +02003174{
Ville Syrjäläa52bb152015-08-27 23:56:11 +03003175 u32 hotplug_irqs, hotplug, enabled_irqs;
Shashank Sharmae0a20ad2015-03-27 14:54:14 +02003176
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01003177 enabled_irqs = intel_hpd_enabled_irqs(dev_priv, hpd_bxt);
Ville Syrjäläa52bb152015-08-27 23:56:11 +03003178 hotplug_irqs = BXT_DE_PORT_HOTPLUG_MASK;
Shashank Sharmae0a20ad2015-03-27 14:54:14 +02003179
Ville Syrjäläa52bb152015-08-27 23:56:11 +03003180 bdw_update_port_irq(dev_priv, hotplug_irqs, enabled_irqs);
Shashank Sharmae0a20ad2015-03-27 14:54:14 +02003181
Ville Syrjäläa52bb152015-08-27 23:56:11 +03003182 hotplug = I915_READ(PCH_PORT_HOTPLUG);
3183 hotplug |= PORTC_HOTPLUG_ENABLE | PORTB_HOTPLUG_ENABLE |
3184 PORTA_HOTPLUG_ENABLE;
Shubhangi Shrivastavad252bf62016-03-31 16:11:47 +05303185
3186 DRM_DEBUG_KMS("Invert bit setting: hp_ctl:%x hp_port:%x\n",
3187 hotplug, enabled_irqs);
3188 hotplug &= ~BXT_DDI_HPD_INVERT_MASK;
3189
3190 /*
3191 * For BXT invert bit has to be set based on AOB design
3192 * for HPD detection logic, update it based on VBT fields.
3193 */
3194
3195 if ((enabled_irqs & BXT_DE_PORT_HP_DDIA) &&
3196 intel_bios_is_port_hpd_inverted(dev_priv, PORT_A))
3197 hotplug |= BXT_DDIA_HPD_INVERT;
3198 if ((enabled_irqs & BXT_DE_PORT_HP_DDIB) &&
3199 intel_bios_is_port_hpd_inverted(dev_priv, PORT_B))
3200 hotplug |= BXT_DDIB_HPD_INVERT;
3201 if ((enabled_irqs & BXT_DE_PORT_HP_DDIC) &&
3202 intel_bios_is_port_hpd_inverted(dev_priv, PORT_C))
3203 hotplug |= BXT_DDIC_HPD_INVERT;
3204
Ville Syrjäläa52bb152015-08-27 23:56:11 +03003205 I915_WRITE(PCH_PORT_HOTPLUG, hotplug);
Shashank Sharmae0a20ad2015-03-27 14:54:14 +02003206}
3207
Paulo Zanonid46da432013-02-08 17:35:15 -02003208static void ibx_irq_postinstall(struct drm_device *dev)
3209{
Chris Wilsonfac5e232016-07-04 11:34:36 +01003210 struct drm_i915_private *dev_priv = to_i915(dev);
Daniel Vetter82a28bc2013-03-27 15:55:01 +01003211 u32 mask;
Paulo Zanonid46da432013-02-08 17:35:15 -02003212
Tvrtko Ursulin6e266952016-10-13 11:02:53 +01003213 if (HAS_PCH_NOP(dev_priv))
Daniel Vetter692a04c2013-05-29 21:43:05 +02003214 return;
3215
Tvrtko Ursulin6e266952016-10-13 11:02:53 +01003216 if (HAS_PCH_IBX(dev_priv))
Daniel Vetter5c673b62014-03-07 20:34:46 +01003217 mask = SDE_GMBUS | SDE_AUX_MASK | SDE_POISON;
Paulo Zanoni105b1222014-04-01 15:37:17 -03003218 else
Daniel Vetter5c673b62014-03-07 20:34:46 +01003219 mask = SDE_GMBUS_CPT | SDE_AUX_MASK_CPT;
Paulo Zanoni86642812013-04-12 17:57:57 -03003220
Ville Syrjäläb51a2842015-09-18 20:03:41 +03003221 gen5_assert_iir_is_zero(dev_priv, SDEIIR);
Paulo Zanonid46da432013-02-08 17:35:15 -02003222 I915_WRITE(SDEIMR, ~mask);
Paulo Zanonid46da432013-02-08 17:35:15 -02003223}
3224
Daniel Vetter0a9a8c92013-07-12 22:43:26 +02003225static void gen5_gt_irq_postinstall(struct drm_device *dev)
3226{
Chris Wilsonfac5e232016-07-04 11:34:36 +01003227 struct drm_i915_private *dev_priv = to_i915(dev);
Daniel Vetter0a9a8c92013-07-12 22:43:26 +02003228 u32 pm_irqs, gt_irqs;
3229
3230 pm_irqs = gt_irqs = 0;
3231
3232 dev_priv->gt_irq_mask = ~0;
Tvrtko Ursulin3c9192b2016-10-13 11:03:05 +01003233 if (HAS_L3_DPF(dev_priv)) {
Daniel Vetter0a9a8c92013-07-12 22:43:26 +02003234 /* L3 parity interrupt is always unmasked. */
Tvrtko Ursulin772c2a52016-10-13 11:03:01 +01003235 dev_priv->gt_irq_mask = ~GT_PARITY_ERROR(dev_priv);
3236 gt_irqs |= GT_PARITY_ERROR(dev_priv);
Daniel Vetter0a9a8c92013-07-12 22:43:26 +02003237 }
3238
3239 gt_irqs |= GT_RENDER_USER_INTERRUPT;
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01003240 if (IS_GEN5(dev_priv)) {
Chris Wilsonf8973c22016-07-01 17:23:21 +01003241 gt_irqs |= ILK_BSD_USER_INTERRUPT;
Daniel Vetter0a9a8c92013-07-12 22:43:26 +02003242 } else {
3243 gt_irqs |= GT_BLT_USER_INTERRUPT | GT_BSD_USER_INTERRUPT;
3244 }
3245
Paulo Zanoni35079892014-04-01 15:37:15 -03003246 GEN5_IRQ_INIT(GT, dev_priv->gt_irq_mask, gt_irqs);
Daniel Vetter0a9a8c92013-07-12 22:43:26 +02003247
Tvrtko Ursulinb243f532016-11-16 08:55:38 +00003248 if (INTEL_GEN(dev_priv) >= 6) {
Imre Deak78e68d32014-12-15 18:59:27 +02003249 /*
3250 * RPS interrupts will get enabled/disabled on demand when RPS
3251 * itself is enabled/disabled.
3252 */
Akash Goelf4e9af42016-10-12 21:54:30 +05303253 if (HAS_VEBOX(dev_priv)) {
Daniel Vetter0a9a8c92013-07-12 22:43:26 +02003254 pm_irqs |= PM_VEBOX_USER_INTERRUPT;
Akash Goelf4e9af42016-10-12 21:54:30 +05303255 dev_priv->pm_ier |= PM_VEBOX_USER_INTERRUPT;
3256 }
Daniel Vetter0a9a8c92013-07-12 22:43:26 +02003257
Akash Goelf4e9af42016-10-12 21:54:30 +05303258 dev_priv->pm_imr = 0xffffffff;
3259 GEN5_IRQ_INIT(GEN6_PM, dev_priv->pm_imr, pm_irqs);
Daniel Vetter0a9a8c92013-07-12 22:43:26 +02003260 }
3261}
3262
Jesse Barnesf71d4af2011-06-28 13:00:41 -07003263static int ironlake_irq_postinstall(struct drm_device *dev)
Zhenyu Wang036a4a72009-06-08 14:40:19 +08003264{
Chris Wilsonfac5e232016-07-04 11:34:36 +01003265 struct drm_i915_private *dev_priv = to_i915(dev);
Paulo Zanoni8e76f8d2013-07-12 20:01:56 -03003266 u32 display_mask, extra_mask;
3267
Tvrtko Ursulinb243f532016-11-16 08:55:38 +00003268 if (INTEL_GEN(dev_priv) >= 7) {
Paulo Zanoni8e76f8d2013-07-12 20:01:56 -03003269 display_mask = (DE_MASTER_IRQ_CONTROL | DE_GSE_IVB |
3270 DE_PCH_EVENT_IVB | DE_PLANEC_FLIP_DONE_IVB |
3271 DE_PLANEB_FLIP_DONE_IVB |
Daniel Vetter5c673b62014-03-07 20:34:46 +01003272 DE_PLANEA_FLIP_DONE_IVB | DE_AUX_CHANNEL_A_IVB);
Paulo Zanoni8e76f8d2013-07-12 20:01:56 -03003273 extra_mask = (DE_PIPEC_VBLANK_IVB | DE_PIPEB_VBLANK_IVB |
Ville Syrjälä23bb4cb2015-08-27 23:56:04 +03003274 DE_PIPEA_VBLANK_IVB | DE_ERR_INT_IVB |
3275 DE_DP_A_HOTPLUG_IVB);
Paulo Zanoni8e76f8d2013-07-12 20:01:56 -03003276 } else {
3277 display_mask = (DE_MASTER_IRQ_CONTROL | DE_GSE | DE_PCH_EVENT |
3278 DE_PLANEA_FLIP_DONE | DE_PLANEB_FLIP_DONE |
Daniel Vetter5b3a8562013-10-16 22:55:48 +02003279 DE_AUX_CHANNEL_A |
Daniel Vetter5b3a8562013-10-16 22:55:48 +02003280 DE_PIPEB_CRC_DONE | DE_PIPEA_CRC_DONE |
3281 DE_POISON);
Ville Syrjäläe4ce95a2015-08-27 23:56:03 +03003282 extra_mask = (DE_PIPEA_VBLANK | DE_PIPEB_VBLANK | DE_PCU_EVENT |
3283 DE_PIPEB_FIFO_UNDERRUN | DE_PIPEA_FIFO_UNDERRUN |
3284 DE_DP_A_HOTPLUG);
Paulo Zanoni8e76f8d2013-07-12 20:01:56 -03003285 }
Zhenyu Wang036a4a72009-06-08 14:40:19 +08003286
Chris Wilson1ec14ad2010-12-04 11:30:53 +00003287 dev_priv->irq_mask = ~display_mask;
Zhenyu Wang036a4a72009-06-08 14:40:19 +08003288
Paulo Zanoni0c841212014-04-01 15:37:27 -03003289 I915_WRITE(HWSTAM, 0xeffe);
3290
Paulo Zanoni622364b2014-04-01 15:37:22 -03003291 ibx_irq_pre_postinstall(dev);
3292
Paulo Zanoni35079892014-04-01 15:37:15 -03003293 GEN5_IRQ_INIT(DE, dev_priv->irq_mask, display_mask | extra_mask);
Zhenyu Wang036a4a72009-06-08 14:40:19 +08003294
Daniel Vetter0a9a8c92013-07-12 22:43:26 +02003295 gen5_gt_irq_postinstall(dev);
Zhenyu Wang036a4a72009-06-08 14:40:19 +08003296
Paulo Zanonid46da432013-02-08 17:35:15 -02003297 ibx_irq_postinstall(dev);
Keith Packard7fe0b972011-09-19 13:31:02 -07003298
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +01003299 if (IS_IRONLAKE_M(dev_priv)) {
Daniel Vetter6005ce42013-06-27 13:44:59 +02003300 /* Enable PCU event interrupts
3301 *
3302 * spinlocking not required here for correctness since interrupt
Daniel Vetter4bc9d432013-06-27 13:44:58 +02003303 * setup is guaranteed to run in single-threaded context. But we
3304 * need it to make the assert_spin_locked happy. */
Daniel Vetterd6207432014-09-15 14:55:27 +02003305 spin_lock_irq(&dev_priv->irq_lock);
Ville Syrjäläfbdedaea2015-11-23 18:06:16 +02003306 ilk_enable_display_irq(dev_priv, DE_PCU_EVENT);
Daniel Vetterd6207432014-09-15 14:55:27 +02003307 spin_unlock_irq(&dev_priv->irq_lock);
Jesse Barnesf97108d2010-01-29 11:27:07 -08003308 }
3309
Zhenyu Wang036a4a72009-06-08 14:40:19 +08003310 return 0;
3311}
3312
Imre Deakf8b79e52014-03-04 19:23:07 +02003313void valleyview_enable_display_irqs(struct drm_i915_private *dev_priv)
3314{
3315 assert_spin_locked(&dev_priv->irq_lock);
3316
3317 if (dev_priv->display_irqs_enabled)
3318 return;
3319
3320 dev_priv->display_irqs_enabled = true;
3321
Ville Syrjäläd6c69802016-04-11 16:56:27 +03003322 if (intel_irqs_enabled(dev_priv)) {
3323 vlv_display_irq_reset(dev_priv);
Ville Syrjäläad22d102016-04-12 18:56:14 +03003324 vlv_display_irq_postinstall(dev_priv);
Ville Syrjäläd6c69802016-04-11 16:56:27 +03003325 }
Imre Deakf8b79e52014-03-04 19:23:07 +02003326}
3327
3328void valleyview_disable_display_irqs(struct drm_i915_private *dev_priv)
3329{
3330 assert_spin_locked(&dev_priv->irq_lock);
3331
3332 if (!dev_priv->display_irqs_enabled)
3333 return;
3334
3335 dev_priv->display_irqs_enabled = false;
3336
Imre Deak950eaba2014-09-08 15:21:09 +03003337 if (intel_irqs_enabled(dev_priv))
Ville Syrjäläad22d102016-04-12 18:56:14 +03003338 vlv_display_irq_reset(dev_priv);
Imre Deakf8b79e52014-03-04 19:23:07 +02003339}
3340
Ville Syrjälä0e6c9a92014-10-30 19:43:00 +02003341
3342static int valleyview_irq_postinstall(struct drm_device *dev)
3343{
Chris Wilsonfac5e232016-07-04 11:34:36 +01003344 struct drm_i915_private *dev_priv = to_i915(dev);
Ville Syrjälä0e6c9a92014-10-30 19:43:00 +02003345
Daniel Vetter0a9a8c92013-07-12 22:43:26 +02003346 gen5_gt_irq_postinstall(dev);
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003347
Ville Syrjäläad22d102016-04-12 18:56:14 +03003348 spin_lock_irq(&dev_priv->irq_lock);
Ville Syrjälä99182712016-04-11 16:56:25 +03003349 if (dev_priv->display_irqs_enabled)
3350 vlv_display_irq_postinstall(dev_priv);
Ville Syrjäläad22d102016-04-12 18:56:14 +03003351 spin_unlock_irq(&dev_priv->irq_lock);
3352
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003353 I915_WRITE(VLV_MASTER_IER, MASTER_INTERRUPT_ENABLE);
Ville Syrjälä34c7b8a2016-04-13 21:19:48 +03003354 POSTING_READ(VLV_MASTER_IER);
Daniel Vetter20afbda2012-12-11 14:05:07 +01003355
3356 return 0;
3357}
3358
Ben Widawskyabd58f02013-11-02 21:07:09 -07003359static void gen8_gt_irq_postinstall(struct drm_i915_private *dev_priv)
3360{
Ben Widawskyabd58f02013-11-02 21:07:09 -07003361 /* These are interrupts we'll toggle with the ring mask register */
3362 uint32_t gt_interrupts[] = {
3363 GT_RENDER_USER_INTERRUPT << GEN8_RCS_IRQ_SHIFT |
Oscar Mateo73d477f2014-07-24 17:04:31 +01003364 GT_CONTEXT_SWITCH_INTERRUPT << GEN8_RCS_IRQ_SHIFT |
Oscar Mateo73d477f2014-07-24 17:04:31 +01003365 GT_RENDER_USER_INTERRUPT << GEN8_BCS_IRQ_SHIFT |
3366 GT_CONTEXT_SWITCH_INTERRUPT << GEN8_BCS_IRQ_SHIFT,
Ben Widawskyabd58f02013-11-02 21:07:09 -07003367 GT_RENDER_USER_INTERRUPT << GEN8_VCS1_IRQ_SHIFT |
Oscar Mateo73d477f2014-07-24 17:04:31 +01003368 GT_CONTEXT_SWITCH_INTERRUPT << GEN8_VCS1_IRQ_SHIFT |
3369 GT_RENDER_USER_INTERRUPT << GEN8_VCS2_IRQ_SHIFT |
3370 GT_CONTEXT_SWITCH_INTERRUPT << GEN8_VCS2_IRQ_SHIFT,
Ben Widawskyabd58f02013-11-02 21:07:09 -07003371 0,
Oscar Mateo73d477f2014-07-24 17:04:31 +01003372 GT_RENDER_USER_INTERRUPT << GEN8_VECS_IRQ_SHIFT |
3373 GT_CONTEXT_SWITCH_INTERRUPT << GEN8_VECS_IRQ_SHIFT
Ben Widawskyabd58f02013-11-02 21:07:09 -07003374 };
3375
Tvrtko Ursulin98735732016-04-19 16:46:08 +01003376 if (HAS_L3_DPF(dev_priv))
3377 gt_interrupts[0] |= GT_RENDER_L3_PARITY_ERROR_INTERRUPT;
3378
Akash Goelf4e9af42016-10-12 21:54:30 +05303379 dev_priv->pm_ier = 0x0;
3380 dev_priv->pm_imr = ~dev_priv->pm_ier;
Deepak S9a2d2d82014-08-22 08:32:40 +05303381 GEN8_IRQ_INIT_NDX(GT, 0, ~gt_interrupts[0], gt_interrupts[0]);
3382 GEN8_IRQ_INIT_NDX(GT, 1, ~gt_interrupts[1], gt_interrupts[1]);
Imre Deak78e68d32014-12-15 18:59:27 +02003383 /*
3384 * RPS interrupts will get enabled/disabled on demand when RPS itself
Sagar Arun Kamble26705e22016-10-12 21:54:31 +05303385 * is enabled/disabled. Same wil be the case for GuC interrupts.
Imre Deak78e68d32014-12-15 18:59:27 +02003386 */
Akash Goelf4e9af42016-10-12 21:54:30 +05303387 GEN8_IRQ_INIT_NDX(GT, 2, dev_priv->pm_imr, dev_priv->pm_ier);
Deepak S9a2d2d82014-08-22 08:32:40 +05303388 GEN8_IRQ_INIT_NDX(GT, 3, ~gt_interrupts[3], gt_interrupts[3]);
Ben Widawskyabd58f02013-11-02 21:07:09 -07003389}
3390
3391static void gen8_de_irq_postinstall(struct drm_i915_private *dev_priv)
3392{
Damien Lespiau770de832014-03-20 20:45:01 +00003393 uint32_t de_pipe_masked = GEN8_PIPE_CDCLK_CRC_DONE;
3394 uint32_t de_pipe_enables;
Ville Syrjälä3a3b3c72015-08-27 23:56:06 +03003395 u32 de_port_masked = GEN8_AUX_CHANNEL_A;
3396 u32 de_port_enables;
Ville Syrjälä11825b02016-05-19 12:14:43 +03003397 u32 de_misc_masked = GEN8_DE_MISC_GSE;
Ville Syrjälä3a3b3c72015-08-27 23:56:06 +03003398 enum pipe pipe;
Damien Lespiau770de832014-03-20 20:45:01 +00003399
Rodrigo Vivib4834a52015-09-02 15:19:24 -07003400 if (INTEL_INFO(dev_priv)->gen >= 9) {
Damien Lespiau770de832014-03-20 20:45:01 +00003401 de_pipe_masked |= GEN9_PIPE_PLANE1_FLIP_DONE |
3402 GEN9_DE_PIPE_IRQ_FAULT_ERRORS;
Ville Syrjälä3a3b3c72015-08-27 23:56:06 +03003403 de_port_masked |= GEN9_AUX_CHANNEL_B | GEN9_AUX_CHANNEL_C |
3404 GEN9_AUX_CHANNEL_D;
Ander Conselvan de Oliveiracc3f90f2016-12-02 10:23:49 +02003405 if (IS_GEN9_LP(dev_priv))
Ville Syrjälä3a3b3c72015-08-27 23:56:06 +03003406 de_port_masked |= BXT_DE_PORT_GMBUS;
3407 } else {
Damien Lespiau770de832014-03-20 20:45:01 +00003408 de_pipe_masked |= GEN8_PIPE_PRIMARY_FLIP_DONE |
3409 GEN8_DE_PIPE_IRQ_FAULT_ERRORS;
Ville Syrjälä3a3b3c72015-08-27 23:56:06 +03003410 }
Damien Lespiau770de832014-03-20 20:45:01 +00003411
3412 de_pipe_enables = de_pipe_masked | GEN8_PIPE_VBLANK |
3413 GEN8_PIPE_FIFO_UNDERRUN;
3414
Ville Syrjälä3a3b3c72015-08-27 23:56:06 +03003415 de_port_enables = de_port_masked;
Ander Conselvan de Oliveiracc3f90f2016-12-02 10:23:49 +02003416 if (IS_GEN9_LP(dev_priv))
Ville Syrjäläa52bb152015-08-27 23:56:11 +03003417 de_port_enables |= BXT_DE_PORT_HOTPLUG_MASK;
3418 else if (IS_BROADWELL(dev_priv))
Ville Syrjälä3a3b3c72015-08-27 23:56:06 +03003419 de_port_enables |= GEN8_PORT_DP_A_HOTPLUG;
3420
Daniel Vetter13b3a0a2013-11-07 15:31:52 +01003421 dev_priv->de_irq_mask[PIPE_A] = ~de_pipe_masked;
3422 dev_priv->de_irq_mask[PIPE_B] = ~de_pipe_masked;
3423 dev_priv->de_irq_mask[PIPE_C] = ~de_pipe_masked;
Ben Widawskyabd58f02013-11-02 21:07:09 -07003424
Damien Lespiau055e3932014-08-18 13:49:10 +01003425 for_each_pipe(dev_priv, pipe)
Daniel Vetterf458ebb2014-09-30 10:56:39 +02003426 if (intel_display_power_is_enabled(dev_priv,
Paulo Zanoni813bde42014-07-04 11:50:29 -03003427 POWER_DOMAIN_PIPE(pipe)))
3428 GEN8_IRQ_INIT_NDX(DE_PIPE, pipe,
3429 dev_priv->de_irq_mask[pipe],
3430 de_pipe_enables);
Ben Widawskyabd58f02013-11-02 21:07:09 -07003431
Ville Syrjälä3a3b3c72015-08-27 23:56:06 +03003432 GEN5_IRQ_INIT(GEN8_DE_PORT_, ~de_port_masked, de_port_enables);
Ville Syrjälä11825b02016-05-19 12:14:43 +03003433 GEN5_IRQ_INIT(GEN8_DE_MISC_, ~de_misc_masked, de_misc_masked);
Ben Widawskyabd58f02013-11-02 21:07:09 -07003434}
3435
3436static int gen8_irq_postinstall(struct drm_device *dev)
3437{
Chris Wilsonfac5e232016-07-04 11:34:36 +01003438 struct drm_i915_private *dev_priv = to_i915(dev);
Ben Widawskyabd58f02013-11-02 21:07:09 -07003439
Tvrtko Ursulin6e266952016-10-13 11:02:53 +01003440 if (HAS_PCH_SPLIT(dev_priv))
Shashank Sharma266ea3d2014-08-22 17:40:42 +05303441 ibx_irq_pre_postinstall(dev);
Paulo Zanoni622364b2014-04-01 15:37:22 -03003442
Ben Widawskyabd58f02013-11-02 21:07:09 -07003443 gen8_gt_irq_postinstall(dev_priv);
3444 gen8_de_irq_postinstall(dev_priv);
3445
Tvrtko Ursulin6e266952016-10-13 11:02:53 +01003446 if (HAS_PCH_SPLIT(dev_priv))
Shashank Sharma266ea3d2014-08-22 17:40:42 +05303447 ibx_irq_postinstall(dev);
Ben Widawskyabd58f02013-11-02 21:07:09 -07003448
Ville Syrjäläe5328c42016-04-13 21:19:47 +03003449 I915_WRITE(GEN8_MASTER_IRQ, GEN8_MASTER_IRQ_CONTROL);
Ben Widawskyabd58f02013-11-02 21:07:09 -07003450 POSTING_READ(GEN8_MASTER_IRQ);
3451
3452 return 0;
3453}
3454
Ville Syrjälä43f328d2014-04-09 20:40:52 +03003455static int cherryview_irq_postinstall(struct drm_device *dev)
3456{
Chris Wilsonfac5e232016-07-04 11:34:36 +01003457 struct drm_i915_private *dev_priv = to_i915(dev);
Ville Syrjälä43f328d2014-04-09 20:40:52 +03003458
Ville Syrjälä43f328d2014-04-09 20:40:52 +03003459 gen8_gt_irq_postinstall(dev_priv);
3460
Ville Syrjäläad22d102016-04-12 18:56:14 +03003461 spin_lock_irq(&dev_priv->irq_lock);
Ville Syrjälä99182712016-04-11 16:56:25 +03003462 if (dev_priv->display_irqs_enabled)
3463 vlv_display_irq_postinstall(dev_priv);
Ville Syrjäläad22d102016-04-12 18:56:14 +03003464 spin_unlock_irq(&dev_priv->irq_lock);
3465
Ville Syrjäläe5328c42016-04-13 21:19:47 +03003466 I915_WRITE(GEN8_MASTER_IRQ, GEN8_MASTER_IRQ_CONTROL);
Ville Syrjälä43f328d2014-04-09 20:40:52 +03003467 POSTING_READ(GEN8_MASTER_IRQ);
3468
3469 return 0;
3470}
3471
Ben Widawskyabd58f02013-11-02 21:07:09 -07003472static void gen8_irq_uninstall(struct drm_device *dev)
3473{
Chris Wilsonfac5e232016-07-04 11:34:36 +01003474 struct drm_i915_private *dev_priv = to_i915(dev);
Ben Widawskyabd58f02013-11-02 21:07:09 -07003475
3476 if (!dev_priv)
3477 return;
3478
Paulo Zanoni823f6b32014-04-01 15:37:26 -03003479 gen8_irq_reset(dev);
Ben Widawskyabd58f02013-11-02 21:07:09 -07003480}
3481
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003482static void valleyview_irq_uninstall(struct drm_device *dev)
3483{
Chris Wilsonfac5e232016-07-04 11:34:36 +01003484 struct drm_i915_private *dev_priv = to_i915(dev);
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003485
3486 if (!dev_priv)
3487 return;
3488
Imre Deak843d0e72014-04-14 20:24:23 +03003489 I915_WRITE(VLV_MASTER_IER, 0);
Ville Syrjälä34c7b8a2016-04-13 21:19:48 +03003490 POSTING_READ(VLV_MASTER_IER);
Imre Deak843d0e72014-04-14 20:24:23 +03003491
Tvrtko Ursulinb243f532016-11-16 08:55:38 +00003492 gen5_gt_irq_reset(dev_priv);
Ville Syrjälä893fce82014-10-30 19:42:56 +02003493
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003494 I915_WRITE(HWSTAM, 0xffffffff);
Imre Deakf8b79e52014-03-04 19:23:07 +02003495
Ville Syrjäläad22d102016-04-12 18:56:14 +03003496 spin_lock_irq(&dev_priv->irq_lock);
Ville Syrjälä99182712016-04-11 16:56:25 +03003497 if (dev_priv->display_irqs_enabled)
3498 vlv_display_irq_reset(dev_priv);
Ville Syrjäläad22d102016-04-12 18:56:14 +03003499 spin_unlock_irq(&dev_priv->irq_lock);
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003500}
3501
Ville Syrjälä43f328d2014-04-09 20:40:52 +03003502static void cherryview_irq_uninstall(struct drm_device *dev)
3503{
Chris Wilsonfac5e232016-07-04 11:34:36 +01003504 struct drm_i915_private *dev_priv = to_i915(dev);
Ville Syrjälä43f328d2014-04-09 20:40:52 +03003505
3506 if (!dev_priv)
3507 return;
3508
3509 I915_WRITE(GEN8_MASTER_IRQ, 0);
3510 POSTING_READ(GEN8_MASTER_IRQ);
3511
Ville Syrjäläa2c30fb2014-10-30 19:42:52 +02003512 gen8_gt_irq_reset(dev_priv);
Ville Syrjälä43f328d2014-04-09 20:40:52 +03003513
Ville Syrjäläa2c30fb2014-10-30 19:42:52 +02003514 GEN5_IRQ_RESET(GEN8_PCU_);
Ville Syrjälä43f328d2014-04-09 20:40:52 +03003515
Ville Syrjäläad22d102016-04-12 18:56:14 +03003516 spin_lock_irq(&dev_priv->irq_lock);
Ville Syrjälä99182712016-04-11 16:56:25 +03003517 if (dev_priv->display_irqs_enabled)
3518 vlv_display_irq_reset(dev_priv);
Ville Syrjäläad22d102016-04-12 18:56:14 +03003519 spin_unlock_irq(&dev_priv->irq_lock);
Ville Syrjälä43f328d2014-04-09 20:40:52 +03003520}
3521
Jesse Barnesf71d4af2011-06-28 13:00:41 -07003522static void ironlake_irq_uninstall(struct drm_device *dev)
Zhenyu Wang036a4a72009-06-08 14:40:19 +08003523{
Chris Wilsonfac5e232016-07-04 11:34:36 +01003524 struct drm_i915_private *dev_priv = to_i915(dev);
Jesse Barnes46979952011-04-07 13:53:55 -07003525
3526 if (!dev_priv)
3527 return;
3528
Paulo Zanonibe30b292014-04-01 15:37:25 -03003529 ironlake_irq_reset(dev);
Zhenyu Wang036a4a72009-06-08 14:40:19 +08003530}
3531
Chris Wilsonc2798b12012-04-22 21:13:57 +01003532static void i8xx_irq_preinstall(struct drm_device * dev)
3533{
Chris Wilsonfac5e232016-07-04 11:34:36 +01003534 struct drm_i915_private *dev_priv = to_i915(dev);
Chris Wilsonc2798b12012-04-22 21:13:57 +01003535 int pipe;
3536
Damien Lespiau055e3932014-08-18 13:49:10 +01003537 for_each_pipe(dev_priv, pipe)
Chris Wilsonc2798b12012-04-22 21:13:57 +01003538 I915_WRITE(PIPESTAT(pipe), 0);
3539 I915_WRITE16(IMR, 0xffff);
3540 I915_WRITE16(IER, 0x0);
3541 POSTING_READ16(IER);
3542}
3543
3544static int i8xx_irq_postinstall(struct drm_device *dev)
3545{
Chris Wilsonfac5e232016-07-04 11:34:36 +01003546 struct drm_i915_private *dev_priv = to_i915(dev);
Chris Wilsonc2798b12012-04-22 21:13:57 +01003547
Chris Wilsonc2798b12012-04-22 21:13:57 +01003548 I915_WRITE16(EMR,
3549 ~(I915_ERROR_PAGE_TABLE | I915_ERROR_MEMORY_REFRESH));
3550
3551 /* Unmask the interrupts that we always want on. */
3552 dev_priv->irq_mask =
3553 ~(I915_DISPLAY_PIPE_A_EVENT_INTERRUPT |
3554 I915_DISPLAY_PIPE_B_EVENT_INTERRUPT |
3555 I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT |
Daniel Vetter37ef01a2015-04-01 13:43:46 +02003556 I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT);
Chris Wilsonc2798b12012-04-22 21:13:57 +01003557 I915_WRITE16(IMR, dev_priv->irq_mask);
3558
3559 I915_WRITE16(IER,
3560 I915_DISPLAY_PIPE_A_EVENT_INTERRUPT |
3561 I915_DISPLAY_PIPE_B_EVENT_INTERRUPT |
Chris Wilsonc2798b12012-04-22 21:13:57 +01003562 I915_USER_INTERRUPT);
3563 POSTING_READ16(IER);
3564
Daniel Vetter379ef822013-10-16 22:55:56 +02003565 /* Interrupt setup is already guaranteed to be single-threaded, this is
3566 * just to make the assert_spin_locked check happy. */
Daniel Vetterd6207432014-09-15 14:55:27 +02003567 spin_lock_irq(&dev_priv->irq_lock);
Imre Deak755e9012014-02-10 18:42:47 +02003568 i915_enable_pipestat(dev_priv, PIPE_A, PIPE_CRC_DONE_INTERRUPT_STATUS);
3569 i915_enable_pipestat(dev_priv, PIPE_B, PIPE_CRC_DONE_INTERRUPT_STATUS);
Daniel Vetterd6207432014-09-15 14:55:27 +02003570 spin_unlock_irq(&dev_priv->irq_lock);
Daniel Vetter379ef822013-10-16 22:55:56 +02003571
Chris Wilsonc2798b12012-04-22 21:13:57 +01003572 return 0;
3573}
3574
Daniel Vetter5a21b662016-05-24 17:13:53 +02003575/*
3576 * Returns true when a page flip has completed.
3577 */
3578static bool i8xx_handle_vblank(struct drm_i915_private *dev_priv,
3579 int plane, int pipe, u32 iir)
3580{
3581 u16 flip_pending = DISPLAY_PLANE_FLIP_PENDING(plane);
3582
3583 if (!intel_pipe_handle_vblank(dev_priv, pipe))
3584 return false;
3585
3586 if ((iir & flip_pending) == 0)
3587 goto check_page_flip;
3588
3589 /* We detect FlipDone by looking for the change in PendingFlip from '1'
3590 * to '0' on the following vblank, i.e. IIR has the Pendingflip
3591 * asserted following the MI_DISPLAY_FLIP, but ISR is deasserted, hence
3592 * the flip is completed (no longer pending). Since this doesn't raise
3593 * an interrupt per se, we watch for the change at vblank.
3594 */
3595 if (I915_READ16(ISR) & flip_pending)
3596 goto check_page_flip;
3597
3598 intel_finish_page_flip_cs(dev_priv, pipe);
3599 return true;
3600
3601check_page_flip:
3602 intel_check_page_flip(dev_priv, pipe);
3603 return false;
3604}
3605
Daniel Vetterff1f5252012-10-02 15:10:55 +02003606static irqreturn_t i8xx_irq_handler(int irq, void *arg)
Chris Wilsonc2798b12012-04-22 21:13:57 +01003607{
Daniel Vetter45a83f82014-05-12 19:17:55 +02003608 struct drm_device *dev = arg;
Chris Wilsonfac5e232016-07-04 11:34:36 +01003609 struct drm_i915_private *dev_priv = to_i915(dev);
Chris Wilsonc2798b12012-04-22 21:13:57 +01003610 u16 iir, new_iir;
3611 u32 pipe_stats[2];
Chris Wilsonc2798b12012-04-22 21:13:57 +01003612 int pipe;
3613 u16 flip_mask =
3614 I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT |
3615 I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT;
Imre Deak1f814da2015-12-16 02:52:19 +02003616 irqreturn_t ret;
Chris Wilsonc2798b12012-04-22 21:13:57 +01003617
Imre Deak2dd2a882015-02-24 11:14:30 +02003618 if (!intel_irqs_enabled(dev_priv))
3619 return IRQ_NONE;
3620
Imre Deak1f814da2015-12-16 02:52:19 +02003621 /* IRQs are synced during runtime_suspend, we don't require a wakeref */
3622 disable_rpm_wakeref_asserts(dev_priv);
3623
3624 ret = IRQ_NONE;
Chris Wilsonc2798b12012-04-22 21:13:57 +01003625 iir = I915_READ16(IIR);
3626 if (iir == 0)
Imre Deak1f814da2015-12-16 02:52:19 +02003627 goto out;
Chris Wilsonc2798b12012-04-22 21:13:57 +01003628
3629 while (iir & ~flip_mask) {
3630 /* Can't rely on pipestat interrupt bit in iir as it might
3631 * have been cleared after the pipestat interrupt was received.
3632 * It doesn't set the bit in iir again, but it still produces
3633 * interrupts (for non-MSI).
3634 */
Daniel Vetter222c7f52014-09-15 14:55:28 +02003635 spin_lock(&dev_priv->irq_lock);
Chris Wilsonc2798b12012-04-22 21:13:57 +01003636 if (iir & I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT)
Daniel Vetteraaecdf62014-11-04 15:52:22 +01003637 DRM_DEBUG("Command parser error, iir 0x%08x\n", iir);
Chris Wilsonc2798b12012-04-22 21:13:57 +01003638
Damien Lespiau055e3932014-08-18 13:49:10 +01003639 for_each_pipe(dev_priv, pipe) {
Ville Syrjäläf0f59a02015-11-18 15:33:26 +02003640 i915_reg_t reg = PIPESTAT(pipe);
Chris Wilsonc2798b12012-04-22 21:13:57 +01003641 pipe_stats[pipe] = I915_READ(reg);
3642
3643 /*
3644 * Clear the PIPE*STAT regs before the IIR
3645 */
Ville Syrjälä2d9d2b02014-01-17 11:44:31 +02003646 if (pipe_stats[pipe] & 0x8000ffff)
Chris Wilsonc2798b12012-04-22 21:13:57 +01003647 I915_WRITE(reg, pipe_stats[pipe]);
Chris Wilsonc2798b12012-04-22 21:13:57 +01003648 }
Daniel Vetter222c7f52014-09-15 14:55:28 +02003649 spin_unlock(&dev_priv->irq_lock);
Chris Wilsonc2798b12012-04-22 21:13:57 +01003650
3651 I915_WRITE16(IIR, iir & ~flip_mask);
3652 new_iir = I915_READ16(IIR); /* Flush posted writes */
3653
Chris Wilsonc2798b12012-04-22 21:13:57 +01003654 if (iir & I915_USER_INTERRUPT)
Akash Goel3b3f1652016-10-13 22:44:48 +05303655 notify_ring(dev_priv->engine[RCS]);
Chris Wilsonc2798b12012-04-22 21:13:57 +01003656
Damien Lespiau055e3932014-08-18 13:49:10 +01003657 for_each_pipe(dev_priv, pipe) {
Daniel Vetter5a21b662016-05-24 17:13:53 +02003658 int plane = pipe;
3659 if (HAS_FBC(dev_priv))
3660 plane = !plane;
3661
3662 if (pipe_stats[pipe] & PIPE_VBLANK_INTERRUPT_STATUS &&
3663 i8xx_handle_vblank(dev_priv, plane, pipe, iir))
3664 flip_mask &= ~DISPLAY_PLANE_FLIP_PENDING(plane);
Chris Wilsonc2798b12012-04-22 21:13:57 +01003665
Daniel Vetter4356d582013-10-16 22:55:55 +02003666 if (pipe_stats[pipe] & PIPE_CRC_DONE_INTERRUPT_STATUS)
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01003667 i9xx_pipe_crc_irq_handler(dev_priv, pipe);
Ville Syrjälä2d9d2b02014-01-17 11:44:31 +02003668
Daniel Vetter1f7247c2014-09-30 10:56:48 +02003669 if (pipe_stats[pipe] & PIPE_FIFO_UNDERRUN_STATUS)
3670 intel_cpu_fifo_underrun_irq_handler(dev_priv,
3671 pipe);
Daniel Vetter4356d582013-10-16 22:55:55 +02003672 }
Chris Wilsonc2798b12012-04-22 21:13:57 +01003673
3674 iir = new_iir;
3675 }
Imre Deak1f814da2015-12-16 02:52:19 +02003676 ret = IRQ_HANDLED;
Chris Wilsonc2798b12012-04-22 21:13:57 +01003677
Imre Deak1f814da2015-12-16 02:52:19 +02003678out:
3679 enable_rpm_wakeref_asserts(dev_priv);
3680
3681 return ret;
Chris Wilsonc2798b12012-04-22 21:13:57 +01003682}
3683
3684static void i8xx_irq_uninstall(struct drm_device * dev)
3685{
Chris Wilsonfac5e232016-07-04 11:34:36 +01003686 struct drm_i915_private *dev_priv = to_i915(dev);
Chris Wilsonc2798b12012-04-22 21:13:57 +01003687 int pipe;
3688
Damien Lespiau055e3932014-08-18 13:49:10 +01003689 for_each_pipe(dev_priv, pipe) {
Chris Wilsonc2798b12012-04-22 21:13:57 +01003690 /* Clear enable bits; then clear status bits */
3691 I915_WRITE(PIPESTAT(pipe), 0);
3692 I915_WRITE(PIPESTAT(pipe), I915_READ(PIPESTAT(pipe)));
3693 }
3694 I915_WRITE16(IMR, 0xffff);
3695 I915_WRITE16(IER, 0x0);
3696 I915_WRITE16(IIR, I915_READ16(IIR));
3697}
3698
Chris Wilsona266c7d2012-04-24 22:59:44 +01003699static void i915_irq_preinstall(struct drm_device * dev)
3700{
Chris Wilsonfac5e232016-07-04 11:34:36 +01003701 struct drm_i915_private *dev_priv = to_i915(dev);
Chris Wilsona266c7d2012-04-24 22:59:44 +01003702 int pipe;
3703
Tvrtko Ursulin56b857a2016-11-07 09:29:20 +00003704 if (I915_HAS_HOTPLUG(dev_priv)) {
Egbert Eich0706f172015-09-23 16:15:27 +02003705 i915_hotplug_interrupt_update(dev_priv, 0xffffffff, 0);
Chris Wilsona266c7d2012-04-24 22:59:44 +01003706 I915_WRITE(PORT_HOTPLUG_STAT, I915_READ(PORT_HOTPLUG_STAT));
3707 }
3708
Chris Wilson00d98eb2012-04-24 22:59:48 +01003709 I915_WRITE16(HWSTAM, 0xeffe);
Damien Lespiau055e3932014-08-18 13:49:10 +01003710 for_each_pipe(dev_priv, pipe)
Chris Wilsona266c7d2012-04-24 22:59:44 +01003711 I915_WRITE(PIPESTAT(pipe), 0);
3712 I915_WRITE(IMR, 0xffffffff);
3713 I915_WRITE(IER, 0x0);
3714 POSTING_READ(IER);
3715}
3716
3717static int i915_irq_postinstall(struct drm_device *dev)
3718{
Chris Wilsonfac5e232016-07-04 11:34:36 +01003719 struct drm_i915_private *dev_priv = to_i915(dev);
Chris Wilson38bde182012-04-24 22:59:50 +01003720 u32 enable_mask;
Chris Wilsona266c7d2012-04-24 22:59:44 +01003721
Chris Wilson38bde182012-04-24 22:59:50 +01003722 I915_WRITE(EMR, ~(I915_ERROR_PAGE_TABLE | I915_ERROR_MEMORY_REFRESH));
3723
3724 /* Unmask the interrupts that we always want on. */
3725 dev_priv->irq_mask =
3726 ~(I915_ASLE_INTERRUPT |
3727 I915_DISPLAY_PIPE_A_EVENT_INTERRUPT |
3728 I915_DISPLAY_PIPE_B_EVENT_INTERRUPT |
3729 I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT |
Daniel Vetter37ef01a2015-04-01 13:43:46 +02003730 I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT);
Chris Wilson38bde182012-04-24 22:59:50 +01003731
3732 enable_mask =
3733 I915_ASLE_INTERRUPT |
3734 I915_DISPLAY_PIPE_A_EVENT_INTERRUPT |
3735 I915_DISPLAY_PIPE_B_EVENT_INTERRUPT |
Chris Wilson38bde182012-04-24 22:59:50 +01003736 I915_USER_INTERRUPT;
3737
Tvrtko Ursulin56b857a2016-11-07 09:29:20 +00003738 if (I915_HAS_HOTPLUG(dev_priv)) {
Egbert Eich0706f172015-09-23 16:15:27 +02003739 i915_hotplug_interrupt_update(dev_priv, 0xffffffff, 0);
Daniel Vetter20afbda2012-12-11 14:05:07 +01003740 POSTING_READ(PORT_HOTPLUG_EN);
3741
Chris Wilsona266c7d2012-04-24 22:59:44 +01003742 /* Enable in IER... */
3743 enable_mask |= I915_DISPLAY_PORT_INTERRUPT;
3744 /* and unmask in IMR */
3745 dev_priv->irq_mask &= ~I915_DISPLAY_PORT_INTERRUPT;
3746 }
3747
Chris Wilsona266c7d2012-04-24 22:59:44 +01003748 I915_WRITE(IMR, dev_priv->irq_mask);
3749 I915_WRITE(IER, enable_mask);
3750 POSTING_READ(IER);
3751
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01003752 i915_enable_asle_pipestat(dev_priv);
Daniel Vetter20afbda2012-12-11 14:05:07 +01003753
Daniel Vetter379ef822013-10-16 22:55:56 +02003754 /* Interrupt setup is already guaranteed to be single-threaded, this is
3755 * just to make the assert_spin_locked check happy. */
Daniel Vetterd6207432014-09-15 14:55:27 +02003756 spin_lock_irq(&dev_priv->irq_lock);
Imre Deak755e9012014-02-10 18:42:47 +02003757 i915_enable_pipestat(dev_priv, PIPE_A, PIPE_CRC_DONE_INTERRUPT_STATUS);
3758 i915_enable_pipestat(dev_priv, PIPE_B, PIPE_CRC_DONE_INTERRUPT_STATUS);
Daniel Vetterd6207432014-09-15 14:55:27 +02003759 spin_unlock_irq(&dev_priv->irq_lock);
Daniel Vetter379ef822013-10-16 22:55:56 +02003760
Daniel Vetter20afbda2012-12-11 14:05:07 +01003761 return 0;
3762}
3763
Daniel Vetter5a21b662016-05-24 17:13:53 +02003764/*
3765 * Returns true when a page flip has completed.
3766 */
3767static bool i915_handle_vblank(struct drm_i915_private *dev_priv,
3768 int plane, int pipe, u32 iir)
3769{
3770 u32 flip_pending = DISPLAY_PLANE_FLIP_PENDING(plane);
3771
3772 if (!intel_pipe_handle_vblank(dev_priv, pipe))
3773 return false;
3774
3775 if ((iir & flip_pending) == 0)
3776 goto check_page_flip;
3777
3778 /* We detect FlipDone by looking for the change in PendingFlip from '1'
3779 * to '0' on the following vblank, i.e. IIR has the Pendingflip
3780 * asserted following the MI_DISPLAY_FLIP, but ISR is deasserted, hence
3781 * the flip is completed (no longer pending). Since this doesn't raise
3782 * an interrupt per se, we watch for the change at vblank.
3783 */
3784 if (I915_READ(ISR) & flip_pending)
3785 goto check_page_flip;
3786
3787 intel_finish_page_flip_cs(dev_priv, pipe);
3788 return true;
3789
3790check_page_flip:
3791 intel_check_page_flip(dev_priv, pipe);
3792 return false;
3793}
3794
Daniel Vetterff1f5252012-10-02 15:10:55 +02003795static irqreturn_t i915_irq_handler(int irq, void *arg)
Chris Wilsona266c7d2012-04-24 22:59:44 +01003796{
Daniel Vetter45a83f82014-05-12 19:17:55 +02003797 struct drm_device *dev = arg;
Chris Wilsonfac5e232016-07-04 11:34:36 +01003798 struct drm_i915_private *dev_priv = to_i915(dev);
Chris Wilson8291ee92012-04-24 22:59:47 +01003799 u32 iir, new_iir, pipe_stats[I915_MAX_PIPES];
Chris Wilson38bde182012-04-24 22:59:50 +01003800 u32 flip_mask =
3801 I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT |
3802 I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT;
Chris Wilson38bde182012-04-24 22:59:50 +01003803 int pipe, ret = IRQ_NONE;
Chris Wilsona266c7d2012-04-24 22:59:44 +01003804
Imre Deak2dd2a882015-02-24 11:14:30 +02003805 if (!intel_irqs_enabled(dev_priv))
3806 return IRQ_NONE;
3807
Imre Deak1f814da2015-12-16 02:52:19 +02003808 /* IRQs are synced during runtime_suspend, we don't require a wakeref */
3809 disable_rpm_wakeref_asserts(dev_priv);
3810
Chris Wilsona266c7d2012-04-24 22:59:44 +01003811 iir = I915_READ(IIR);
Chris Wilson38bde182012-04-24 22:59:50 +01003812 do {
3813 bool irq_received = (iir & ~flip_mask) != 0;
Chris Wilson8291ee92012-04-24 22:59:47 +01003814 bool blc_event = false;
Chris Wilsona266c7d2012-04-24 22:59:44 +01003815
3816 /* Can't rely on pipestat interrupt bit in iir as it might
3817 * have been cleared after the pipestat interrupt was received.
3818 * It doesn't set the bit in iir again, but it still produces
3819 * interrupts (for non-MSI).
3820 */
Daniel Vetter222c7f52014-09-15 14:55:28 +02003821 spin_lock(&dev_priv->irq_lock);
Chris Wilsona266c7d2012-04-24 22:59:44 +01003822 if (iir & I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT)
Daniel Vetteraaecdf62014-11-04 15:52:22 +01003823 DRM_DEBUG("Command parser error, iir 0x%08x\n", iir);
Chris Wilsona266c7d2012-04-24 22:59:44 +01003824
Damien Lespiau055e3932014-08-18 13:49:10 +01003825 for_each_pipe(dev_priv, pipe) {
Ville Syrjäläf0f59a02015-11-18 15:33:26 +02003826 i915_reg_t reg = PIPESTAT(pipe);
Chris Wilsona266c7d2012-04-24 22:59:44 +01003827 pipe_stats[pipe] = I915_READ(reg);
3828
Chris Wilson38bde182012-04-24 22:59:50 +01003829 /* Clear the PIPE*STAT regs before the IIR */
Chris Wilsona266c7d2012-04-24 22:59:44 +01003830 if (pipe_stats[pipe] & 0x8000ffff) {
Chris Wilsona266c7d2012-04-24 22:59:44 +01003831 I915_WRITE(reg, pipe_stats[pipe]);
Chris Wilson38bde182012-04-24 22:59:50 +01003832 irq_received = true;
Chris Wilsona266c7d2012-04-24 22:59:44 +01003833 }
3834 }
Daniel Vetter222c7f52014-09-15 14:55:28 +02003835 spin_unlock(&dev_priv->irq_lock);
Chris Wilsona266c7d2012-04-24 22:59:44 +01003836
3837 if (!irq_received)
3838 break;
3839
Chris Wilsona266c7d2012-04-24 22:59:44 +01003840 /* Consume port. Then clear IIR or we'll miss events */
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01003841 if (I915_HAS_HOTPLUG(dev_priv) &&
Ville Syrjälä1ae3c342016-04-13 21:19:54 +03003842 iir & I915_DISPLAY_PORT_INTERRUPT) {
3843 u32 hotplug_status = i9xx_hpd_irq_ack(dev_priv);
3844 if (hotplug_status)
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01003845 i9xx_hpd_irq_handler(dev_priv, hotplug_status);
Ville Syrjälä1ae3c342016-04-13 21:19:54 +03003846 }
Chris Wilsona266c7d2012-04-24 22:59:44 +01003847
Chris Wilson38bde182012-04-24 22:59:50 +01003848 I915_WRITE(IIR, iir & ~flip_mask);
Chris Wilsona266c7d2012-04-24 22:59:44 +01003849 new_iir = I915_READ(IIR); /* Flush posted writes */
3850
Chris Wilsona266c7d2012-04-24 22:59:44 +01003851 if (iir & I915_USER_INTERRUPT)
Akash Goel3b3f1652016-10-13 22:44:48 +05303852 notify_ring(dev_priv->engine[RCS]);
Chris Wilsona266c7d2012-04-24 22:59:44 +01003853
Damien Lespiau055e3932014-08-18 13:49:10 +01003854 for_each_pipe(dev_priv, pipe) {
Daniel Vetter5a21b662016-05-24 17:13:53 +02003855 int plane = pipe;
3856 if (HAS_FBC(dev_priv))
3857 plane = !plane;
3858
3859 if (pipe_stats[pipe] & PIPE_VBLANK_INTERRUPT_STATUS &&
3860 i915_handle_vblank(dev_priv, plane, pipe, iir))
3861 flip_mask &= ~DISPLAY_PLANE_FLIP_PENDING(plane);
Chris Wilsona266c7d2012-04-24 22:59:44 +01003862
3863 if (pipe_stats[pipe] & PIPE_LEGACY_BLC_EVENT_STATUS)
3864 blc_event = true;
Daniel Vetter4356d582013-10-16 22:55:55 +02003865
3866 if (pipe_stats[pipe] & PIPE_CRC_DONE_INTERRUPT_STATUS)
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01003867 i9xx_pipe_crc_irq_handler(dev_priv, pipe);
Ville Syrjälä2d9d2b02014-01-17 11:44:31 +02003868
Daniel Vetter1f7247c2014-09-30 10:56:48 +02003869 if (pipe_stats[pipe] & PIPE_FIFO_UNDERRUN_STATUS)
3870 intel_cpu_fifo_underrun_irq_handler(dev_priv,
3871 pipe);
Chris Wilsona266c7d2012-04-24 22:59:44 +01003872 }
3873
Chris Wilsona266c7d2012-04-24 22:59:44 +01003874 if (blc_event || (iir & I915_ASLE_INTERRUPT))
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01003875 intel_opregion_asle_intr(dev_priv);
Chris Wilsona266c7d2012-04-24 22:59:44 +01003876
3877 /* With MSI, interrupts are only generated when iir
3878 * transitions from zero to nonzero. If another bit got
3879 * set while we were handling the existing iir bits, then
3880 * we would never get another interrupt.
3881 *
3882 * This is fine on non-MSI as well, as if we hit this path
3883 * we avoid exiting the interrupt handler only to generate
3884 * another one.
3885 *
3886 * Note that for MSI this could cause a stray interrupt report
3887 * if an interrupt landed in the time between writing IIR and
3888 * the posting read. This should be rare enough to never
3889 * trigger the 99% of 100,000 interrupts test for disabling
3890 * stray interrupts.
3891 */
Chris Wilson38bde182012-04-24 22:59:50 +01003892 ret = IRQ_HANDLED;
Chris Wilsona266c7d2012-04-24 22:59:44 +01003893 iir = new_iir;
Chris Wilson38bde182012-04-24 22:59:50 +01003894 } while (iir & ~flip_mask);
Chris Wilsona266c7d2012-04-24 22:59:44 +01003895
Imre Deak1f814da2015-12-16 02:52:19 +02003896 enable_rpm_wakeref_asserts(dev_priv);
3897
Chris Wilsona266c7d2012-04-24 22:59:44 +01003898 return ret;
3899}
3900
3901static void i915_irq_uninstall(struct drm_device * dev)
3902{
Chris Wilsonfac5e232016-07-04 11:34:36 +01003903 struct drm_i915_private *dev_priv = to_i915(dev);
Chris Wilsona266c7d2012-04-24 22:59:44 +01003904 int pipe;
3905
Tvrtko Ursulin56b857a2016-11-07 09:29:20 +00003906 if (I915_HAS_HOTPLUG(dev_priv)) {
Egbert Eich0706f172015-09-23 16:15:27 +02003907 i915_hotplug_interrupt_update(dev_priv, 0xffffffff, 0);
Chris Wilsona266c7d2012-04-24 22:59:44 +01003908 I915_WRITE(PORT_HOTPLUG_STAT, I915_READ(PORT_HOTPLUG_STAT));
3909 }
3910
Chris Wilson00d98eb2012-04-24 22:59:48 +01003911 I915_WRITE16(HWSTAM, 0xffff);
Damien Lespiau055e3932014-08-18 13:49:10 +01003912 for_each_pipe(dev_priv, pipe) {
Chris Wilson55b39752012-04-24 22:59:49 +01003913 /* Clear enable bits; then clear status bits */
Chris Wilsona266c7d2012-04-24 22:59:44 +01003914 I915_WRITE(PIPESTAT(pipe), 0);
Chris Wilson55b39752012-04-24 22:59:49 +01003915 I915_WRITE(PIPESTAT(pipe), I915_READ(PIPESTAT(pipe)));
3916 }
Chris Wilsona266c7d2012-04-24 22:59:44 +01003917 I915_WRITE(IMR, 0xffffffff);
3918 I915_WRITE(IER, 0x0);
3919
Chris Wilsona266c7d2012-04-24 22:59:44 +01003920 I915_WRITE(IIR, I915_READ(IIR));
3921}
3922
3923static void i965_irq_preinstall(struct drm_device * dev)
3924{
Chris Wilsonfac5e232016-07-04 11:34:36 +01003925 struct drm_i915_private *dev_priv = to_i915(dev);
Chris Wilsona266c7d2012-04-24 22:59:44 +01003926 int pipe;
3927
Egbert Eich0706f172015-09-23 16:15:27 +02003928 i915_hotplug_interrupt_update(dev_priv, 0xffffffff, 0);
Chris Wilsonadca4732012-05-11 18:01:31 +01003929 I915_WRITE(PORT_HOTPLUG_STAT, I915_READ(PORT_HOTPLUG_STAT));
Chris Wilsona266c7d2012-04-24 22:59:44 +01003930
3931 I915_WRITE(HWSTAM, 0xeffe);
Damien Lespiau055e3932014-08-18 13:49:10 +01003932 for_each_pipe(dev_priv, pipe)
Chris Wilsona266c7d2012-04-24 22:59:44 +01003933 I915_WRITE(PIPESTAT(pipe), 0);
3934 I915_WRITE(IMR, 0xffffffff);
3935 I915_WRITE(IER, 0x0);
3936 POSTING_READ(IER);
3937}
3938
3939static int i965_irq_postinstall(struct drm_device *dev)
3940{
Chris Wilsonfac5e232016-07-04 11:34:36 +01003941 struct drm_i915_private *dev_priv = to_i915(dev);
Chris Wilsonbbba0a92012-04-24 22:59:51 +01003942 u32 enable_mask;
Chris Wilsona266c7d2012-04-24 22:59:44 +01003943 u32 error_mask;
3944
Chris Wilsona266c7d2012-04-24 22:59:44 +01003945 /* Unmask the interrupts that we always want on. */
Chris Wilsonbbba0a92012-04-24 22:59:51 +01003946 dev_priv->irq_mask = ~(I915_ASLE_INTERRUPT |
Chris Wilsonadca4732012-05-11 18:01:31 +01003947 I915_DISPLAY_PORT_INTERRUPT |
Chris Wilsonbbba0a92012-04-24 22:59:51 +01003948 I915_DISPLAY_PIPE_A_EVENT_INTERRUPT |
3949 I915_DISPLAY_PIPE_B_EVENT_INTERRUPT |
3950 I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT |
3951 I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT |
3952 I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT);
3953
3954 enable_mask = ~dev_priv->irq_mask;
Ville Syrjälä21ad8332013-02-19 15:16:39 +02003955 enable_mask &= ~(I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT |
3956 I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT);
Chris Wilsonbbba0a92012-04-24 22:59:51 +01003957 enable_mask |= I915_USER_INTERRUPT;
3958
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01003959 if (IS_G4X(dev_priv))
Chris Wilsonbbba0a92012-04-24 22:59:51 +01003960 enable_mask |= I915_BSD_USER_INTERRUPT;
Chris Wilsona266c7d2012-04-24 22:59:44 +01003961
Daniel Vetterb79480b2013-06-27 17:52:10 +02003962 /* Interrupt setup is already guaranteed to be single-threaded, this is
3963 * just to make the assert_spin_locked check happy. */
Daniel Vetterd6207432014-09-15 14:55:27 +02003964 spin_lock_irq(&dev_priv->irq_lock);
Imre Deak755e9012014-02-10 18:42:47 +02003965 i915_enable_pipestat(dev_priv, PIPE_A, PIPE_GMBUS_INTERRUPT_STATUS);
3966 i915_enable_pipestat(dev_priv, PIPE_A, PIPE_CRC_DONE_INTERRUPT_STATUS);
3967 i915_enable_pipestat(dev_priv, PIPE_B, PIPE_CRC_DONE_INTERRUPT_STATUS);
Daniel Vetterd6207432014-09-15 14:55:27 +02003968 spin_unlock_irq(&dev_priv->irq_lock);
Chris Wilsona266c7d2012-04-24 22:59:44 +01003969
Chris Wilsona266c7d2012-04-24 22:59:44 +01003970 /*
3971 * Enable some error detection, note the instruction error mask
3972 * bit is reserved, so we leave it masked.
3973 */
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01003974 if (IS_G4X(dev_priv)) {
Chris Wilsona266c7d2012-04-24 22:59:44 +01003975 error_mask = ~(GM45_ERROR_PAGE_TABLE |
3976 GM45_ERROR_MEM_PRIV |
3977 GM45_ERROR_CP_PRIV |
3978 I915_ERROR_MEMORY_REFRESH);
3979 } else {
3980 error_mask = ~(I915_ERROR_PAGE_TABLE |
3981 I915_ERROR_MEMORY_REFRESH);
3982 }
3983 I915_WRITE(EMR, error_mask);
3984
3985 I915_WRITE(IMR, dev_priv->irq_mask);
3986 I915_WRITE(IER, enable_mask);
3987 POSTING_READ(IER);
3988
Egbert Eich0706f172015-09-23 16:15:27 +02003989 i915_hotplug_interrupt_update(dev_priv, 0xffffffff, 0);
Daniel Vetter20afbda2012-12-11 14:05:07 +01003990 POSTING_READ(PORT_HOTPLUG_EN);
3991
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01003992 i915_enable_asle_pipestat(dev_priv);
Daniel Vetter20afbda2012-12-11 14:05:07 +01003993
3994 return 0;
3995}
3996
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01003997static void i915_hpd_irq_setup(struct drm_i915_private *dev_priv)
Daniel Vetter20afbda2012-12-11 14:05:07 +01003998{
Daniel Vetter20afbda2012-12-11 14:05:07 +01003999 u32 hotplug_en;
4000
Daniel Vetterb5ea2d52013-06-27 17:52:15 +02004001 assert_spin_locked(&dev_priv->irq_lock);
4002
Ville Syrjälä778eb332015-01-09 14:21:13 +02004003 /* Note HDMI and DP share hotplug bits */
4004 /* enable bits are the same for all generations */
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01004005 hotplug_en = intel_hpd_enabled_irqs(dev_priv, hpd_mask_i915);
Ville Syrjälä778eb332015-01-09 14:21:13 +02004006 /* Programming the CRT detection parameters tends
4007 to generate a spurious hotplug event about three
4008 seconds later. So just do it once.
4009 */
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01004010 if (IS_G4X(dev_priv))
Ville Syrjälä778eb332015-01-09 14:21:13 +02004011 hotplug_en |= CRT_HOTPLUG_ACTIVATION_PERIOD_64;
Ville Syrjälä778eb332015-01-09 14:21:13 +02004012 hotplug_en |= CRT_HOTPLUG_VOLTAGE_COMPARE_50;
Chris Wilsona266c7d2012-04-24 22:59:44 +01004013
Ville Syrjälä778eb332015-01-09 14:21:13 +02004014 /* Ignore TV since it's buggy */
Egbert Eich0706f172015-09-23 16:15:27 +02004015 i915_hotplug_interrupt_update_locked(dev_priv,
Jani Nikulaf9e3dc72015-10-21 17:22:43 +03004016 HOTPLUG_INT_EN_MASK |
4017 CRT_HOTPLUG_VOLTAGE_COMPARE_MASK |
4018 CRT_HOTPLUG_ACTIVATION_PERIOD_64,
4019 hotplug_en);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004020}
4021
Daniel Vetterff1f5252012-10-02 15:10:55 +02004022static irqreturn_t i965_irq_handler(int irq, void *arg)
Chris Wilsona266c7d2012-04-24 22:59:44 +01004023{
Daniel Vetter45a83f82014-05-12 19:17:55 +02004024 struct drm_device *dev = arg;
Chris Wilsonfac5e232016-07-04 11:34:36 +01004025 struct drm_i915_private *dev_priv = to_i915(dev);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004026 u32 iir, new_iir;
4027 u32 pipe_stats[I915_MAX_PIPES];
Chris Wilsona266c7d2012-04-24 22:59:44 +01004028 int ret = IRQ_NONE, pipe;
Ville Syrjälä21ad8332013-02-19 15:16:39 +02004029 u32 flip_mask =
4030 I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT |
4031 I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT;
Chris Wilsona266c7d2012-04-24 22:59:44 +01004032
Imre Deak2dd2a882015-02-24 11:14:30 +02004033 if (!intel_irqs_enabled(dev_priv))
4034 return IRQ_NONE;
4035
Imre Deak1f814da2015-12-16 02:52:19 +02004036 /* IRQs are synced during runtime_suspend, we don't require a wakeref */
4037 disable_rpm_wakeref_asserts(dev_priv);
4038
Chris Wilsona266c7d2012-04-24 22:59:44 +01004039 iir = I915_READ(IIR);
4040
Chris Wilsona266c7d2012-04-24 22:59:44 +01004041 for (;;) {
Ville Syrjälä501e01d2014-01-17 11:35:15 +02004042 bool irq_received = (iir & ~flip_mask) != 0;
Chris Wilson2c8ba292012-04-24 22:59:46 +01004043 bool blc_event = false;
4044
Chris Wilsona266c7d2012-04-24 22:59:44 +01004045 /* Can't rely on pipestat interrupt bit in iir as it might
4046 * have been cleared after the pipestat interrupt was received.
4047 * It doesn't set the bit in iir again, but it still produces
4048 * interrupts (for non-MSI).
4049 */
Daniel Vetter222c7f52014-09-15 14:55:28 +02004050 spin_lock(&dev_priv->irq_lock);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004051 if (iir & I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT)
Daniel Vetteraaecdf62014-11-04 15:52:22 +01004052 DRM_DEBUG("Command parser error, iir 0x%08x\n", iir);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004053
Damien Lespiau055e3932014-08-18 13:49:10 +01004054 for_each_pipe(dev_priv, pipe) {
Ville Syrjäläf0f59a02015-11-18 15:33:26 +02004055 i915_reg_t reg = PIPESTAT(pipe);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004056 pipe_stats[pipe] = I915_READ(reg);
4057
4058 /*
4059 * Clear the PIPE*STAT regs before the IIR
4060 */
4061 if (pipe_stats[pipe] & 0x8000ffff) {
Chris Wilsona266c7d2012-04-24 22:59:44 +01004062 I915_WRITE(reg, pipe_stats[pipe]);
Ville Syrjälä501e01d2014-01-17 11:35:15 +02004063 irq_received = true;
Chris Wilsona266c7d2012-04-24 22:59:44 +01004064 }
4065 }
Daniel Vetter222c7f52014-09-15 14:55:28 +02004066 spin_unlock(&dev_priv->irq_lock);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004067
4068 if (!irq_received)
4069 break;
4070
4071 ret = IRQ_HANDLED;
4072
4073 /* Consume port. Then clear IIR or we'll miss events */
Ville Syrjälä1ae3c342016-04-13 21:19:54 +03004074 if (iir & I915_DISPLAY_PORT_INTERRUPT) {
4075 u32 hotplug_status = i9xx_hpd_irq_ack(dev_priv);
4076 if (hotplug_status)
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01004077 i9xx_hpd_irq_handler(dev_priv, hotplug_status);
Ville Syrjälä1ae3c342016-04-13 21:19:54 +03004078 }
Chris Wilsona266c7d2012-04-24 22:59:44 +01004079
Ville Syrjälä21ad8332013-02-19 15:16:39 +02004080 I915_WRITE(IIR, iir & ~flip_mask);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004081 new_iir = I915_READ(IIR); /* Flush posted writes */
4082
Chris Wilsona266c7d2012-04-24 22:59:44 +01004083 if (iir & I915_USER_INTERRUPT)
Akash Goel3b3f1652016-10-13 22:44:48 +05304084 notify_ring(dev_priv->engine[RCS]);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004085 if (iir & I915_BSD_USER_INTERRUPT)
Akash Goel3b3f1652016-10-13 22:44:48 +05304086 notify_ring(dev_priv->engine[VCS]);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004087
Damien Lespiau055e3932014-08-18 13:49:10 +01004088 for_each_pipe(dev_priv, pipe) {
Daniel Vetter5a21b662016-05-24 17:13:53 +02004089 if (pipe_stats[pipe] & PIPE_START_VBLANK_INTERRUPT_STATUS &&
4090 i915_handle_vblank(dev_priv, pipe, pipe, iir))
4091 flip_mask &= ~DISPLAY_PLANE_FLIP_PENDING(pipe);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004092
4093 if (pipe_stats[pipe] & PIPE_LEGACY_BLC_EVENT_STATUS)
4094 blc_event = true;
Daniel Vetter4356d582013-10-16 22:55:55 +02004095
4096 if (pipe_stats[pipe] & PIPE_CRC_DONE_INTERRUPT_STATUS)
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01004097 i9xx_pipe_crc_irq_handler(dev_priv, pipe);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004098
Daniel Vetter1f7247c2014-09-30 10:56:48 +02004099 if (pipe_stats[pipe] & PIPE_FIFO_UNDERRUN_STATUS)
4100 intel_cpu_fifo_underrun_irq_handler(dev_priv, pipe);
Ville Syrjälä2d9d2b02014-01-17 11:44:31 +02004101 }
Chris Wilsona266c7d2012-04-24 22:59:44 +01004102
4103 if (blc_event || (iir & I915_ASLE_INTERRUPT))
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01004104 intel_opregion_asle_intr(dev_priv);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004105
Daniel Vetter515ac2b2012-12-01 13:53:44 +01004106 if (pipe_stats[0] & PIPE_GMBUS_INTERRUPT_STATUS)
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01004107 gmbus_irq_handler(dev_priv);
Daniel Vetter515ac2b2012-12-01 13:53:44 +01004108
Chris Wilsona266c7d2012-04-24 22:59:44 +01004109 /* With MSI, interrupts are only generated when iir
4110 * transitions from zero to nonzero. If another bit got
4111 * set while we were handling the existing iir bits, then
4112 * we would never get another interrupt.
4113 *
4114 * This is fine on non-MSI as well, as if we hit this path
4115 * we avoid exiting the interrupt handler only to generate
4116 * another one.
4117 *
4118 * Note that for MSI this could cause a stray interrupt report
4119 * if an interrupt landed in the time between writing IIR and
4120 * the posting read. This should be rare enough to never
4121 * trigger the 99% of 100,000 interrupts test for disabling
4122 * stray interrupts.
4123 */
4124 iir = new_iir;
4125 }
4126
Imre Deak1f814da2015-12-16 02:52:19 +02004127 enable_rpm_wakeref_asserts(dev_priv);
4128
Chris Wilsona266c7d2012-04-24 22:59:44 +01004129 return ret;
4130}
4131
4132static void i965_irq_uninstall(struct drm_device * dev)
4133{
Chris Wilsonfac5e232016-07-04 11:34:36 +01004134 struct drm_i915_private *dev_priv = to_i915(dev);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004135 int pipe;
4136
4137 if (!dev_priv)
4138 return;
4139
Egbert Eich0706f172015-09-23 16:15:27 +02004140 i915_hotplug_interrupt_update(dev_priv, 0xffffffff, 0);
Chris Wilsonadca4732012-05-11 18:01:31 +01004141 I915_WRITE(PORT_HOTPLUG_STAT, I915_READ(PORT_HOTPLUG_STAT));
Chris Wilsona266c7d2012-04-24 22:59:44 +01004142
4143 I915_WRITE(HWSTAM, 0xffffffff);
Damien Lespiau055e3932014-08-18 13:49:10 +01004144 for_each_pipe(dev_priv, pipe)
Chris Wilsona266c7d2012-04-24 22:59:44 +01004145 I915_WRITE(PIPESTAT(pipe), 0);
4146 I915_WRITE(IMR, 0xffffffff);
4147 I915_WRITE(IER, 0x0);
4148
Damien Lespiau055e3932014-08-18 13:49:10 +01004149 for_each_pipe(dev_priv, pipe)
Chris Wilsona266c7d2012-04-24 22:59:44 +01004150 I915_WRITE(PIPESTAT(pipe),
4151 I915_READ(PIPESTAT(pipe)) & 0x8000ffff);
4152 I915_WRITE(IIR, I915_READ(IIR));
4153}
4154
Daniel Vetterfca52a52014-09-30 10:56:45 +02004155/**
4156 * intel_irq_init - initializes irq support
4157 * @dev_priv: i915 device instance
4158 *
4159 * This function initializes all the irq support including work items, timers
4160 * and all the vtables. It does not setup the interrupt itself though.
4161 */
Daniel Vetterb9632912014-09-30 10:56:44 +02004162void intel_irq_init(struct drm_i915_private *dev_priv)
Jesse Barnesf71d4af2011-06-28 13:00:41 -07004163{
Chris Wilson91c8a322016-07-05 10:40:23 +01004164 struct drm_device *dev = &dev_priv->drm;
Chris Wilson8b2e3262012-04-24 22:59:41 +01004165
Jani Nikula77913b32015-06-18 13:06:16 +03004166 intel_hpd_init_work(dev_priv);
4167
Daniel Vetterc6a828d2012-08-08 23:35:35 +02004168 INIT_WORK(&dev_priv->rps.work, gen6_pm_rps_work);
Daniel Vettera4da4fa2012-11-02 19:55:07 +01004169 INIT_WORK(&dev_priv->l3_parity.error_work, ivybridge_parity_work);
Chris Wilson8b2e3262012-04-24 22:59:41 +01004170
Tvrtko Ursulin4805fe82016-11-04 14:42:46 +00004171 if (HAS_GUC_SCHED(dev_priv))
Sagar Arun Kamble26705e22016-10-12 21:54:31 +05304172 dev_priv->pm_guc_events = GEN9_GUC_TO_HOST_INT_EVENT;
4173
Deepak Sa6706b42014-03-15 20:23:22 +05304174 /* Let's track the enabled rps events */
Wayne Boyer666a4532015-12-09 12:29:35 -08004175 if (IS_VALLEYVIEW(dev_priv))
Ville Syrjälä6c65a582014-08-29 14:14:07 +03004176 /* WaGsvRC0ResidencyMethod:vlv */
Chris Wilson6f4b12f82015-03-18 09:48:23 +00004177 dev_priv->pm_rps_events = GEN6_PM_RP_DOWN_EI_EXPIRED | GEN6_PM_RP_UP_EI_EXPIRED;
Deepak S31685c22014-07-03 17:33:01 -04004178 else
4179 dev_priv->pm_rps_events = GEN6_PM_RPS_EVENTS;
Deepak Sa6706b42014-03-15 20:23:22 +05304180
Sagar Arun Kamble1800ad22016-05-31 13:58:27 +05304181 dev_priv->rps.pm_intr_keep = 0;
4182
4183 /*
4184 * SNB,IVB can while VLV,CHV may hard hang on looping batchbuffer
4185 * if GEN6_PM_UP_EI_EXPIRED is masked.
4186 *
4187 * TODO: verify if this can be reproduced on VLV,CHV.
4188 */
4189 if (INTEL_INFO(dev_priv)->gen <= 7 && !IS_HASWELL(dev_priv))
4190 dev_priv->rps.pm_intr_keep |= GEN6_PM_RP_UP_EI_EXPIRED;
4191
4192 if (INTEL_INFO(dev_priv)->gen >= 8)
Dave Gordonb20e3cf2016-09-12 21:19:35 +01004193 dev_priv->rps.pm_intr_keep |= GEN8_PMINTR_REDIRECT_TO_GUC;
Sagar Arun Kamble1800ad22016-05-31 13:58:27 +05304194
Daniel Vetterb9632912014-09-30 10:56:44 +02004195 if (IS_GEN2(dev_priv)) {
Rodrigo Vivi4194c082016-08-03 10:00:56 -07004196 /* Gen2 doesn't have a hardware frame counter */
Ville Syrjälä4cdb83e2013-10-11 21:52:44 +03004197 dev->max_vblank_count = 0;
Rodrigo Vivi4194c082016-08-03 10:00:56 -07004198 dev->driver->get_vblank_counter = drm_vblank_no_hw_counter;
Daniel Vetterb9632912014-09-30 10:56:44 +02004199 } else if (IS_G4X(dev_priv) || INTEL_INFO(dev_priv)->gen >= 5) {
Jesse Barnesf71d4af2011-06-28 13:00:41 -07004200 dev->max_vblank_count = 0xffffffff; /* full 32 bit counter */
Ville Syrjäläfd8f5072015-09-18 20:03:42 +03004201 dev->driver->get_vblank_counter = g4x_get_vblank_counter;
Ville Syrjälä391f75e2013-09-25 19:55:26 +03004202 } else {
4203 dev->driver->get_vblank_counter = i915_get_vblank_counter;
4204 dev->max_vblank_count = 0xffffff; /* only 24 bits of frame count */
Jesse Barnesf71d4af2011-06-28 13:00:41 -07004205 }
4206
Ville Syrjälä21da2702014-08-06 14:49:55 +03004207 /*
4208 * Opt out of the vblank disable timer on everything except gen2.
4209 * Gen2 doesn't have a hardware frame counter and so depends on
4210 * vblank interrupts to produce sane vblank seuquence numbers.
4211 */
Daniel Vetterb9632912014-09-30 10:56:44 +02004212 if (!IS_GEN2(dev_priv))
Ville Syrjälä21da2702014-08-06 14:49:55 +03004213 dev->vblank_disable_immediate = true;
4214
Daniel Vetterf3a5c3f2015-02-13 21:03:44 +01004215 dev->driver->get_vblank_timestamp = i915_get_vblank_timestamp;
4216 dev->driver->get_scanout_position = i915_get_crtc_scanoutpos;
Jesse Barnesf71d4af2011-06-28 13:00:41 -07004217
Daniel Vetterb9632912014-09-30 10:56:44 +02004218 if (IS_CHERRYVIEW(dev_priv)) {
Ville Syrjälä43f328d2014-04-09 20:40:52 +03004219 dev->driver->irq_handler = cherryview_irq_handler;
4220 dev->driver->irq_preinstall = cherryview_irq_preinstall;
4221 dev->driver->irq_postinstall = cherryview_irq_postinstall;
4222 dev->driver->irq_uninstall = cherryview_irq_uninstall;
Chris Wilson86e83e32016-10-07 20:49:52 +01004223 dev->driver->enable_vblank = i965_enable_vblank;
4224 dev->driver->disable_vblank = i965_disable_vblank;
Ville Syrjälä43f328d2014-04-09 20:40:52 +03004225 dev_priv->display.hpd_irq_setup = i915_hpd_irq_setup;
Daniel Vetterb9632912014-09-30 10:56:44 +02004226 } else if (IS_VALLEYVIEW(dev_priv)) {
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07004227 dev->driver->irq_handler = valleyview_irq_handler;
4228 dev->driver->irq_preinstall = valleyview_irq_preinstall;
4229 dev->driver->irq_postinstall = valleyview_irq_postinstall;
4230 dev->driver->irq_uninstall = valleyview_irq_uninstall;
Chris Wilson86e83e32016-10-07 20:49:52 +01004231 dev->driver->enable_vblank = i965_enable_vblank;
4232 dev->driver->disable_vblank = i965_disable_vblank;
Egbert Eichfa00abe2013-02-25 12:06:48 -05004233 dev_priv->display.hpd_irq_setup = i915_hpd_irq_setup;
Daniel Vetterb9632912014-09-30 10:56:44 +02004234 } else if (INTEL_INFO(dev_priv)->gen >= 8) {
Ben Widawskyabd58f02013-11-02 21:07:09 -07004235 dev->driver->irq_handler = gen8_irq_handler;
Daniel Vetter723761b2014-05-22 17:56:34 +02004236 dev->driver->irq_preinstall = gen8_irq_reset;
Ben Widawskyabd58f02013-11-02 21:07:09 -07004237 dev->driver->irq_postinstall = gen8_irq_postinstall;
4238 dev->driver->irq_uninstall = gen8_irq_uninstall;
4239 dev->driver->enable_vblank = gen8_enable_vblank;
4240 dev->driver->disable_vblank = gen8_disable_vblank;
Ander Conselvan de Oliveiracc3f90f2016-12-02 10:23:49 +02004241 if (IS_GEN9_LP(dev_priv))
Shashank Sharmae0a20ad2015-03-27 14:54:14 +02004242 dev_priv->display.hpd_irq_setup = bxt_hpd_irq_setup;
Tvrtko Ursulin6e266952016-10-13 11:02:53 +01004243 else if (HAS_PCH_SPT(dev_priv) || HAS_PCH_KBP(dev_priv))
Ville Syrjälä6dbf30c2015-08-27 23:56:02 +03004244 dev_priv->display.hpd_irq_setup = spt_hpd_irq_setup;
4245 else
Ville Syrjälä3a3b3c72015-08-27 23:56:06 +03004246 dev_priv->display.hpd_irq_setup = ilk_hpd_irq_setup;
Tvrtko Ursulin6e266952016-10-13 11:02:53 +01004247 } else if (HAS_PCH_SPLIT(dev_priv)) {
Jesse Barnesf71d4af2011-06-28 13:00:41 -07004248 dev->driver->irq_handler = ironlake_irq_handler;
Daniel Vetter723761b2014-05-22 17:56:34 +02004249 dev->driver->irq_preinstall = ironlake_irq_reset;
Jesse Barnesf71d4af2011-06-28 13:00:41 -07004250 dev->driver->irq_postinstall = ironlake_irq_postinstall;
4251 dev->driver->irq_uninstall = ironlake_irq_uninstall;
4252 dev->driver->enable_vblank = ironlake_enable_vblank;
4253 dev->driver->disable_vblank = ironlake_disable_vblank;
Ville Syrjälä23bb4cb2015-08-27 23:56:04 +03004254 dev_priv->display.hpd_irq_setup = ilk_hpd_irq_setup;
Jesse Barnesf71d4af2011-06-28 13:00:41 -07004255 } else {
Tvrtko Ursulin7e22dbb2016-05-10 10:57:06 +01004256 if (IS_GEN2(dev_priv)) {
Chris Wilsonc2798b12012-04-22 21:13:57 +01004257 dev->driver->irq_preinstall = i8xx_irq_preinstall;
4258 dev->driver->irq_postinstall = i8xx_irq_postinstall;
4259 dev->driver->irq_handler = i8xx_irq_handler;
4260 dev->driver->irq_uninstall = i8xx_irq_uninstall;
Chris Wilson86e83e32016-10-07 20:49:52 +01004261 dev->driver->enable_vblank = i8xx_enable_vblank;
4262 dev->driver->disable_vblank = i8xx_disable_vblank;
Tvrtko Ursulin7e22dbb2016-05-10 10:57:06 +01004263 } else if (IS_GEN3(dev_priv)) {
Chris Wilsona266c7d2012-04-24 22:59:44 +01004264 dev->driver->irq_preinstall = i915_irq_preinstall;
4265 dev->driver->irq_postinstall = i915_irq_postinstall;
4266 dev->driver->irq_uninstall = i915_irq_uninstall;
4267 dev->driver->irq_handler = i915_irq_handler;
Chris Wilson86e83e32016-10-07 20:49:52 +01004268 dev->driver->enable_vblank = i8xx_enable_vblank;
4269 dev->driver->disable_vblank = i8xx_disable_vblank;
Chris Wilsonc2798b12012-04-22 21:13:57 +01004270 } else {
Chris Wilsona266c7d2012-04-24 22:59:44 +01004271 dev->driver->irq_preinstall = i965_irq_preinstall;
4272 dev->driver->irq_postinstall = i965_irq_postinstall;
4273 dev->driver->irq_uninstall = i965_irq_uninstall;
4274 dev->driver->irq_handler = i965_irq_handler;
Chris Wilson86e83e32016-10-07 20:49:52 +01004275 dev->driver->enable_vblank = i965_enable_vblank;
4276 dev->driver->disable_vblank = i965_disable_vblank;
Chris Wilsonc2798b12012-04-22 21:13:57 +01004277 }
Ville Syrjälä778eb332015-01-09 14:21:13 +02004278 if (I915_HAS_HOTPLUG(dev_priv))
4279 dev_priv->display.hpd_irq_setup = i915_hpd_irq_setup;
Jesse Barnesf71d4af2011-06-28 13:00:41 -07004280 }
4281}
Daniel Vetter20afbda2012-12-11 14:05:07 +01004282
Daniel Vetterfca52a52014-09-30 10:56:45 +02004283/**
Daniel Vetterfca52a52014-09-30 10:56:45 +02004284 * intel_irq_install - enables the hardware interrupt
4285 * @dev_priv: i915 device instance
4286 *
4287 * This function enables the hardware interrupt handling, but leaves the hotplug
4288 * handling still disabled. It is called after intel_irq_init().
4289 *
4290 * In the driver load and resume code we need working interrupts in a few places
4291 * but don't want to deal with the hassle of concurrent probe and hotplug
4292 * workers. Hence the split into this two-stage approach.
4293 */
Daniel Vetter2aeb7d32014-09-30 10:56:43 +02004294int intel_irq_install(struct drm_i915_private *dev_priv)
4295{
4296 /*
4297 * We enable some interrupt sources in our postinstall hooks, so mark
4298 * interrupts as enabled _before_ actually enabling them to avoid
4299 * special cases in our ordering checks.
4300 */
4301 dev_priv->pm.irqs_enabled = true;
4302
Chris Wilson91c8a322016-07-05 10:40:23 +01004303 return drm_irq_install(&dev_priv->drm, dev_priv->drm.pdev->irq);
Daniel Vetter2aeb7d32014-09-30 10:56:43 +02004304}
4305
Daniel Vetterfca52a52014-09-30 10:56:45 +02004306/**
4307 * intel_irq_uninstall - finilizes all irq handling
4308 * @dev_priv: i915 device instance
4309 *
4310 * This stops interrupt and hotplug handling and unregisters and frees all
4311 * resources acquired in the init functions.
4312 */
Daniel Vetter2aeb7d32014-09-30 10:56:43 +02004313void intel_irq_uninstall(struct drm_i915_private *dev_priv)
4314{
Chris Wilson91c8a322016-07-05 10:40:23 +01004315 drm_irq_uninstall(&dev_priv->drm);
Daniel Vetter2aeb7d32014-09-30 10:56:43 +02004316 intel_hpd_cancel_work(dev_priv);
4317 dev_priv->pm.irqs_enabled = false;
4318}
4319
Daniel Vetterfca52a52014-09-30 10:56:45 +02004320/**
4321 * intel_runtime_pm_disable_interrupts - runtime interrupt disabling
4322 * @dev_priv: i915 device instance
4323 *
4324 * This function is used to disable interrupts at runtime, both in the runtime
4325 * pm and the system suspend/resume code.
4326 */
Daniel Vetterb9632912014-09-30 10:56:44 +02004327void intel_runtime_pm_disable_interrupts(struct drm_i915_private *dev_priv)
Paulo Zanonic67a4702013-08-19 13:18:09 -03004328{
Chris Wilson91c8a322016-07-05 10:40:23 +01004329 dev_priv->drm.driver->irq_uninstall(&dev_priv->drm);
Daniel Vetter2aeb7d32014-09-30 10:56:43 +02004330 dev_priv->pm.irqs_enabled = false;
Chris Wilson91c8a322016-07-05 10:40:23 +01004331 synchronize_irq(dev_priv->drm.irq);
Paulo Zanonic67a4702013-08-19 13:18:09 -03004332}
4333
Daniel Vetterfca52a52014-09-30 10:56:45 +02004334/**
4335 * intel_runtime_pm_enable_interrupts - runtime interrupt enabling
4336 * @dev_priv: i915 device instance
4337 *
4338 * This function is used to enable interrupts at runtime, both in the runtime
4339 * pm and the system suspend/resume code.
4340 */
Daniel Vetterb9632912014-09-30 10:56:44 +02004341void intel_runtime_pm_enable_interrupts(struct drm_i915_private *dev_priv)
Paulo Zanonic67a4702013-08-19 13:18:09 -03004342{
Daniel Vetter2aeb7d32014-09-30 10:56:43 +02004343 dev_priv->pm.irqs_enabled = true;
Chris Wilson91c8a322016-07-05 10:40:23 +01004344 dev_priv->drm.driver->irq_preinstall(&dev_priv->drm);
4345 dev_priv->drm.driver->irq_postinstall(&dev_priv->drm);
Paulo Zanonic67a4702013-08-19 13:18:09 -03004346}