blob: 8f1ca6af33a199781235842792e583426c48ba5e [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
Chris Wilson67520412017-03-02 13:28:01 +0000183 lockdep_assert_held(&dev_priv->irq_lock);
Egbert Eich0706f172015-09-23 16:15:27 +0200184 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
Chris Wilson67520412017-03-02 13:28:01 +0000225 lockdep_assert_held(&dev_priv->irq_lock);
Daniel Vetter4bc9d432013-06-27 13:44:58 +0200226
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{
Chris Wilson67520412017-03-02 13:28:01 +0000253 lockdep_assert_held(&dev_priv->irq_lock);
Paulo Zanoni43eaea12013-08-06 18:57:12 -0300254
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
Chris Wilson67520412017-03-02 13:28:01 +0000305 lockdep_assert_held(&dev_priv->irq_lock);
Paulo Zanoniedbfdb42013-08-06 18:57:13 -0300306
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
Chris Wilson67520412017-03-02 13:28:01 +0000343 lockdep_assert_held(&dev_priv->irq_lock);
Akash Goelf4e9af42016-10-12 21:54:30 +0530344
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{
Chris Wilson67520412017-03-02 13:28:01 +0000352 lockdep_assert_held(&dev_priv->irq_lock);
Akash Goelf4e9af42016-10-12 21:54:30 +0530353
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{
Chris Wilson67520412017-03-02 13:28:01 +0000362 lockdep_assert_held(&dev_priv->irq_lock);
Akash Goelf4e9af42016-10-12 21:54:30 +0530363
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
Tvrtko Ursulin91d14252016-05-06 14:48:28 +0100392void gen6_disable_rps_interrupts(struct drm_i915_private *dev_priv)
Imre Deakb900b942014-11-05 20:48:48 +0200393{
Chris Wilsonf2a91d12016-09-21 14:51:06 +0100394 if (!READ_ONCE(dev_priv->rps.interrupts_enabled))
395 return;
396
Imre Deakd4d70aa2014-11-19 15:30:04 +0200397 spin_lock_irq(&dev_priv->irq_lock);
398 dev_priv->rps.interrupts_enabled = false;
Imre Deak9939fba2014-11-20 23:01:47 +0200399
Dave Gordonb20e3cf2016-09-12 21:19:35 +0100400 I915_WRITE(GEN6_PMINTRMSK, gen6_sanitize_rps_pm_mask(dev_priv, ~0u));
Imre Deak9939fba2014-11-20 23:01:47 +0200401
Akash Goelf4e9af42016-10-12 21:54:30 +0530402 gen6_disable_pm_irq(dev_priv, dev_priv->pm_rps_events);
Imre Deak58072cc2015-03-23 19:11:34 +0200403
404 spin_unlock_irq(&dev_priv->irq_lock);
Chris Wilson91c8a322016-07-05 10:40:23 +0100405 synchronize_irq(dev_priv->drm.irq);
Chris Wilsonc33d2472016-07-04 08:08:36 +0100406
407 /* Now that we will not be generating any more work, flush any
408 * outsanding tasks. As we are called on the RPS idle path,
409 * we will reset the GPU to minimum frequencies, so the current
410 * state of the worker can be discarded.
411 */
412 cancel_work_sync(&dev_priv->rps.work);
413 gen6_reset_rps_interrupts(dev_priv);
Imre Deakb900b942014-11-05 20:48:48 +0200414}
415
Sagar Arun Kamble26705e22016-10-12 21:54:31 +0530416void gen9_reset_guc_interrupts(struct drm_i915_private *dev_priv)
417{
418 spin_lock_irq(&dev_priv->irq_lock);
419 gen6_reset_pm_iir(dev_priv, dev_priv->pm_guc_events);
420 spin_unlock_irq(&dev_priv->irq_lock);
421}
422
423void gen9_enable_guc_interrupts(struct drm_i915_private *dev_priv)
424{
425 spin_lock_irq(&dev_priv->irq_lock);
426 if (!dev_priv->guc.interrupts_enabled) {
427 WARN_ON_ONCE(I915_READ(gen6_pm_iir(dev_priv)) &
428 dev_priv->pm_guc_events);
429 dev_priv->guc.interrupts_enabled = true;
430 gen6_enable_pm_irq(dev_priv, dev_priv->pm_guc_events);
431 }
432 spin_unlock_irq(&dev_priv->irq_lock);
433}
434
435void gen9_disable_guc_interrupts(struct drm_i915_private *dev_priv)
436{
437 spin_lock_irq(&dev_priv->irq_lock);
438 dev_priv->guc.interrupts_enabled = false;
439
440 gen6_disable_pm_irq(dev_priv, dev_priv->pm_guc_events);
441
442 spin_unlock_irq(&dev_priv->irq_lock);
443 synchronize_irq(dev_priv->drm.irq);
444
445 gen9_reset_guc_interrupts(dev_priv);
446}
447
Ben Widawsky09610212014-05-15 20:58:08 +0300448/**
Ville Syrjälä81fd8742015-11-25 16:21:30 +0200449 * bdw_update_port_irq - update DE port interrupt
450 * @dev_priv: driver private
451 * @interrupt_mask: mask of interrupt bits to update
452 * @enabled_irq_mask: mask of interrupt bits to enable
453 */
Ville Syrjälä3a3b3c72015-08-27 23:56:06 +0300454static void bdw_update_port_irq(struct drm_i915_private *dev_priv,
455 uint32_t interrupt_mask,
456 uint32_t enabled_irq_mask)
457{
458 uint32_t new_val;
459 uint32_t old_val;
460
Chris Wilson67520412017-03-02 13:28:01 +0000461 lockdep_assert_held(&dev_priv->irq_lock);
Ville Syrjälä3a3b3c72015-08-27 23:56:06 +0300462
463 WARN_ON(enabled_irq_mask & ~interrupt_mask);
464
465 if (WARN_ON(!intel_irqs_enabled(dev_priv)))
466 return;
467
468 old_val = I915_READ(GEN8_DE_PORT_IMR);
469
470 new_val = old_val;
471 new_val &= ~interrupt_mask;
472 new_val |= (~enabled_irq_mask & interrupt_mask);
473
474 if (new_val != old_val) {
475 I915_WRITE(GEN8_DE_PORT_IMR, new_val);
476 POSTING_READ(GEN8_DE_PORT_IMR);
477 }
478}
479
480/**
Ville Syrjälä013d3752015-11-23 18:06:17 +0200481 * bdw_update_pipe_irq - update DE pipe interrupt
482 * @dev_priv: driver private
483 * @pipe: pipe whose interrupt to update
484 * @interrupt_mask: mask of interrupt bits to update
485 * @enabled_irq_mask: mask of interrupt bits to enable
486 */
487void bdw_update_pipe_irq(struct drm_i915_private *dev_priv,
488 enum pipe pipe,
489 uint32_t interrupt_mask,
490 uint32_t enabled_irq_mask)
491{
492 uint32_t new_val;
493
Chris Wilson67520412017-03-02 13:28:01 +0000494 lockdep_assert_held(&dev_priv->irq_lock);
Ville Syrjälä013d3752015-11-23 18:06:17 +0200495
496 WARN_ON(enabled_irq_mask & ~interrupt_mask);
497
498 if (WARN_ON(!intel_irqs_enabled(dev_priv)))
499 return;
500
501 new_val = dev_priv->de_irq_mask[pipe];
502 new_val &= ~interrupt_mask;
503 new_val |= (~enabled_irq_mask & interrupt_mask);
504
505 if (new_val != dev_priv->de_irq_mask[pipe]) {
506 dev_priv->de_irq_mask[pipe] = new_val;
507 I915_WRITE(GEN8_DE_PIPE_IMR(pipe), dev_priv->de_irq_mask[pipe]);
508 POSTING_READ(GEN8_DE_PIPE_IMR(pipe));
509 }
510}
511
512/**
Daniel Vetterfee884e2013-07-04 23:35:21 +0200513 * ibx_display_interrupt_update - update SDEIMR
514 * @dev_priv: driver private
515 * @interrupt_mask: mask of interrupt bits to update
516 * @enabled_irq_mask: mask of interrupt bits to enable
517 */
Daniel Vetter47339cd2014-09-30 10:56:46 +0200518void ibx_display_interrupt_update(struct drm_i915_private *dev_priv,
519 uint32_t interrupt_mask,
520 uint32_t enabled_irq_mask)
Daniel Vetterfee884e2013-07-04 23:35:21 +0200521{
522 uint32_t sdeimr = I915_READ(SDEIMR);
523 sdeimr &= ~interrupt_mask;
524 sdeimr |= (~enabled_irq_mask & interrupt_mask);
525
Daniel Vetter15a17aa2014-12-08 16:30:00 +0100526 WARN_ON(enabled_irq_mask & ~interrupt_mask);
527
Chris Wilson67520412017-03-02 13:28:01 +0000528 lockdep_assert_held(&dev_priv->irq_lock);
Daniel Vetterfee884e2013-07-04 23:35:21 +0200529
Jesse Barnes9df7575f2014-06-20 09:29:20 -0700530 if (WARN_ON(!intel_irqs_enabled(dev_priv)))
Paulo Zanonic67a4702013-08-19 13:18:09 -0300531 return;
Paulo Zanonic67a4702013-08-19 13:18:09 -0300532
Daniel Vetterfee884e2013-07-04 23:35:21 +0200533 I915_WRITE(SDEIMR, sdeimr);
534 POSTING_READ(SDEIMR);
535}
Paulo Zanoni86642812013-04-12 17:57:57 -0300536
Daniel Vetterb5ea6422014-03-02 21:18:00 +0100537static void
Imre Deak755e9012014-02-10 18:42:47 +0200538__i915_enable_pipestat(struct drm_i915_private *dev_priv, enum pipe pipe,
539 u32 enable_mask, u32 status_mask)
Keith Packard7c463582008-11-04 02:03:27 -0800540{
Ville Syrjäläf0f59a02015-11-18 15:33:26 +0200541 i915_reg_t reg = PIPESTAT(pipe);
Imre Deak755e9012014-02-10 18:42:47 +0200542 u32 pipestat = I915_READ(reg) & PIPESTAT_INT_ENABLE_MASK;
Keith Packard7c463582008-11-04 02:03:27 -0800543
Chris Wilson67520412017-03-02 13:28:01 +0000544 lockdep_assert_held(&dev_priv->irq_lock);
Daniel Vetterd518ce52014-08-27 10:43:37 +0200545 WARN_ON(!intel_irqs_enabled(dev_priv));
Daniel Vetterb79480b2013-06-27 17:52:10 +0200546
Ville Syrjälä04feced2014-04-03 13:28:33 +0300547 if (WARN_ONCE(enable_mask & ~PIPESTAT_INT_ENABLE_MASK ||
548 status_mask & ~PIPESTAT_INT_STATUS_MASK,
549 "pipe %c: enable_mask=0x%x, status_mask=0x%x\n",
550 pipe_name(pipe), enable_mask, status_mask))
Imre Deak755e9012014-02-10 18:42:47 +0200551 return;
552
553 if ((pipestat & enable_mask) == enable_mask)
Ville Syrjälä46c06a32013-02-20 21:16:18 +0200554 return;
555
Imre Deak91d181d2014-02-10 18:42:49 +0200556 dev_priv->pipestat_irq_mask[pipe] |= status_mask;
557
Ville Syrjälä46c06a32013-02-20 21:16:18 +0200558 /* Enable the interrupt, clear any pending status */
Imre Deak755e9012014-02-10 18:42:47 +0200559 pipestat |= enable_mask | status_mask;
Ville Syrjälä46c06a32013-02-20 21:16:18 +0200560 I915_WRITE(reg, pipestat);
561 POSTING_READ(reg);
Keith Packard7c463582008-11-04 02:03:27 -0800562}
563
Daniel Vetterb5ea6422014-03-02 21:18:00 +0100564static void
Imre Deak755e9012014-02-10 18:42:47 +0200565__i915_disable_pipestat(struct drm_i915_private *dev_priv, enum pipe pipe,
566 u32 enable_mask, u32 status_mask)
Keith Packard7c463582008-11-04 02:03:27 -0800567{
Ville Syrjäläf0f59a02015-11-18 15:33:26 +0200568 i915_reg_t reg = PIPESTAT(pipe);
Imre Deak755e9012014-02-10 18:42:47 +0200569 u32 pipestat = I915_READ(reg) & PIPESTAT_INT_ENABLE_MASK;
Keith Packard7c463582008-11-04 02:03:27 -0800570
Chris Wilson67520412017-03-02 13:28:01 +0000571 lockdep_assert_held(&dev_priv->irq_lock);
Daniel Vetterd518ce52014-08-27 10:43:37 +0200572 WARN_ON(!intel_irqs_enabled(dev_priv));
Daniel Vetterb79480b2013-06-27 17:52:10 +0200573
Ville Syrjälä04feced2014-04-03 13:28:33 +0300574 if (WARN_ONCE(enable_mask & ~PIPESTAT_INT_ENABLE_MASK ||
575 status_mask & ~PIPESTAT_INT_STATUS_MASK,
576 "pipe %c: enable_mask=0x%x, status_mask=0x%x\n",
577 pipe_name(pipe), enable_mask, status_mask))
Ville Syrjälä46c06a32013-02-20 21:16:18 +0200578 return;
579
Imre Deak755e9012014-02-10 18:42:47 +0200580 if ((pipestat & enable_mask) == 0)
581 return;
582
Imre Deak91d181d2014-02-10 18:42:49 +0200583 dev_priv->pipestat_irq_mask[pipe] &= ~status_mask;
584
Imre Deak755e9012014-02-10 18:42:47 +0200585 pipestat &= ~enable_mask;
Ville Syrjälä46c06a32013-02-20 21:16:18 +0200586 I915_WRITE(reg, pipestat);
587 POSTING_READ(reg);
Keith Packard7c463582008-11-04 02:03:27 -0800588}
589
Imre Deak10c59c52014-02-10 18:42:48 +0200590static u32 vlv_get_pipestat_enable_mask(struct drm_device *dev, u32 status_mask)
591{
592 u32 enable_mask = status_mask << 16;
593
594 /*
Ville Syrjälä724a6902014-04-09 13:28:48 +0300595 * On pipe A we don't support the PSR interrupt yet,
596 * on pipe B and C the same bit MBZ.
Imre Deak10c59c52014-02-10 18:42:48 +0200597 */
598 if (WARN_ON_ONCE(status_mask & PIPE_A_PSR_STATUS_VLV))
599 return 0;
Ville Syrjälä724a6902014-04-09 13:28:48 +0300600 /*
601 * On pipe B and C we don't support the PSR interrupt yet, on pipe
602 * A the same bit is for perf counters which we don't use either.
603 */
604 if (WARN_ON_ONCE(status_mask & PIPE_B_PSR_STATUS_VLV))
605 return 0;
Imre Deak10c59c52014-02-10 18:42:48 +0200606
607 enable_mask &= ~(PIPE_FIFO_UNDERRUN_STATUS |
608 SPRITE0_FLIP_DONE_INT_EN_VLV |
609 SPRITE1_FLIP_DONE_INT_EN_VLV);
610 if (status_mask & SPRITE0_FLIP_DONE_INT_STATUS_VLV)
611 enable_mask |= SPRITE0_FLIP_DONE_INT_EN_VLV;
612 if (status_mask & SPRITE1_FLIP_DONE_INT_STATUS_VLV)
613 enable_mask |= SPRITE1_FLIP_DONE_INT_EN_VLV;
614
615 return enable_mask;
616}
617
Imre Deak755e9012014-02-10 18:42:47 +0200618void
619i915_enable_pipestat(struct drm_i915_private *dev_priv, enum pipe pipe,
620 u32 status_mask)
621{
622 u32 enable_mask;
623
Wayne Boyer666a4532015-12-09 12:29:35 -0800624 if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv))
Chris Wilson91c8a322016-07-05 10:40:23 +0100625 enable_mask = vlv_get_pipestat_enable_mask(&dev_priv->drm,
Imre Deak10c59c52014-02-10 18:42:48 +0200626 status_mask);
627 else
628 enable_mask = status_mask << 16;
Imre Deak755e9012014-02-10 18:42:47 +0200629 __i915_enable_pipestat(dev_priv, pipe, enable_mask, status_mask);
630}
631
632void
633i915_disable_pipestat(struct drm_i915_private *dev_priv, enum pipe pipe,
634 u32 status_mask)
635{
636 u32 enable_mask;
637
Wayne Boyer666a4532015-12-09 12:29:35 -0800638 if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv))
Chris Wilson91c8a322016-07-05 10:40:23 +0100639 enable_mask = vlv_get_pipestat_enable_mask(&dev_priv->drm,
Imre Deak10c59c52014-02-10 18:42:48 +0200640 status_mask);
641 else
642 enable_mask = status_mask << 16;
Imre Deak755e9012014-02-10 18:42:47 +0200643 __i915_disable_pipestat(dev_priv, pipe, enable_mask, status_mask);
644}
645
=?utf-8?q?Michel_D=C3=A4nzer?=a6b54f32006-10-24 23:37:43 +1000646/**
Jani Nikulaf49e38d2013-04-29 13:02:54 +0300647 * i915_enable_asle_pipestat - enable ASLE pipestat for OpRegion
Tvrtko Ursulin14bb2c12016-06-03 14:02:17 +0100648 * @dev_priv: i915 device private
Zhao Yakui01c66882009-10-28 05:10:00 +0000649 */
Tvrtko Ursulin91d14252016-05-06 14:48:28 +0100650static void i915_enable_asle_pipestat(struct drm_i915_private *dev_priv)
Zhao Yakui01c66882009-10-28 05:10:00 +0000651{
Tvrtko Ursulin91d14252016-05-06 14:48:28 +0100652 if (!dev_priv->opregion.asle || !IS_MOBILE(dev_priv))
Jani Nikulaf49e38d2013-04-29 13:02:54 +0300653 return;
654
Daniel Vetter13321782014-09-15 14:55:29 +0200655 spin_lock_irq(&dev_priv->irq_lock);
Zhao Yakui01c66882009-10-28 05:10:00 +0000656
Imre Deak755e9012014-02-10 18:42:47 +0200657 i915_enable_pipestat(dev_priv, PIPE_B, PIPE_LEGACY_BLC_EVENT_STATUS);
Tvrtko Ursulin91d14252016-05-06 14:48:28 +0100658 if (INTEL_GEN(dev_priv) >= 4)
Daniel Vetter3b6c42e2013-10-21 18:04:35 +0200659 i915_enable_pipestat(dev_priv, PIPE_A,
Imre Deak755e9012014-02-10 18:42:47 +0200660 PIPE_LEGACY_BLC_EVENT_STATUS);
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000661
Daniel Vetter13321782014-09-15 14:55:29 +0200662 spin_unlock_irq(&dev_priv->irq_lock);
Zhao Yakui01c66882009-10-28 05:10:00 +0000663}
664
Ville Syrjäläf75f3742014-05-15 20:20:36 +0300665/*
666 * This timing diagram depicts the video signal in and
667 * around the vertical blanking period.
668 *
669 * Assumptions about the fictitious mode used in this example:
670 * vblank_start >= 3
671 * vsync_start = vblank_start + 1
672 * vsync_end = vblank_start + 2
673 * vtotal = vblank_start + 3
674 *
675 * start of vblank:
676 * latch double buffered registers
677 * increment frame counter (ctg+)
678 * generate start of vblank interrupt (gen4+)
679 * |
680 * | frame start:
681 * | generate frame start interrupt (aka. vblank interrupt) (gmch)
682 * | may be shifted forward 1-3 extra lines via PIPECONF
683 * | |
684 * | | start of vsync:
685 * | | generate vsync interrupt
686 * | | |
687 * ___xxxx___ ___xxxx___ ___xxxx___ ___xxxx___ ___xxxx___ ___xxxx
688 * . \hs/ . \hs/ \hs/ \hs/ . \hs/
689 * ----va---> <-----------------vb--------------------> <--------va-------------
690 * | | <----vs-----> |
691 * -vbs-----> <---vbs+1---> <---vbs+2---> <-----0-----> <-----1-----> <-----2--- (scanline counter gen2)
692 * -vbs-2---> <---vbs-1---> <---vbs-----> <---vbs+1---> <---vbs+2---> <-----0--- (scanline counter gen3+)
693 * -vbs-2---> <---vbs-2---> <---vbs-1---> <---vbs-----> <---vbs+1---> <---vbs+2- (scanline counter hsw+ hdmi)
694 * | | |
695 * last visible pixel first visible pixel
696 * | increment frame counter (gen3/4)
697 * pixel counter = vblank_start * htotal pixel counter = 0 (gen3/4)
698 *
699 * x = horizontal active
700 * _ = horizontal blanking
701 * hs = horizontal sync
702 * va = vertical active
703 * vb = vertical blanking
704 * vs = vertical sync
705 * vbs = vblank_start (number)
706 *
707 * Summary:
708 * - most events happen at the start of horizontal sync
709 * - frame start happens at the start of horizontal blank, 1-4 lines
710 * (depending on PIPECONF settings) after the start of vblank
711 * - gen3/4 pixel and frame counter are synchronized with the start
712 * of horizontal active on the first line of vertical active
713 */
714
Keith Packard42f52ef2008-10-18 19:39:29 -0700715/* Called from drm generic code, passed a 'crtc', which
716 * we use as a pipe index
717 */
Thierry Reding88e72712015-09-24 18:35:31 +0200718static u32 i915_get_vblank_counter(struct drm_device *dev, unsigned int pipe)
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700719{
Chris Wilsonfac5e232016-07-04 11:34:36 +0100720 struct drm_i915_private *dev_priv = to_i915(dev);
Ville Syrjäläf0f59a02015-11-18 15:33:26 +0200721 i915_reg_t high_frame, low_frame;
Ville Syrjälä0b2a8e02014-04-29 13:35:50 +0300722 u32 high1, high2, low, pixel, vbl_start, hsync_start, htotal;
Ville Syrjälä98187832016-10-31 22:37:10 +0200723 struct intel_crtc *intel_crtc = intel_get_crtc_for_pipe(dev_priv,
724 pipe);
Maarten Lankhorstfc467a222015-06-01 12:50:07 +0200725 const struct drm_display_mode *mode = &intel_crtc->base.hwmode;
Ville Syrjälä694e4092017-03-09 17:44:30 +0200726 unsigned long irqflags;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700727
Daniel Vetterf3a5c3f2015-02-13 21:03:44 +0100728 htotal = mode->crtc_htotal;
729 hsync_start = mode->crtc_hsync_start;
730 vbl_start = mode->crtc_vblank_start;
731 if (mode->flags & DRM_MODE_FLAG_INTERLACE)
732 vbl_start = DIV_ROUND_UP(vbl_start, 2);
Ville Syrjälä391f75e2013-09-25 19:55:26 +0300733
Ville Syrjälä0b2a8e02014-04-29 13:35:50 +0300734 /* Convert to pixel count */
735 vbl_start *= htotal;
736
737 /* Start of vblank event occurs at start of hsync */
738 vbl_start -= htotal - hsync_start;
739
Jesse Barnes9db4a9c2011-02-07 12:26:52 -0800740 high_frame = PIPEFRAME(pipe);
741 low_frame = PIPEFRAMEPIXEL(pipe);
Chris Wilson5eddb702010-09-11 13:48:45 +0100742
Ville Syrjälä694e4092017-03-09 17:44:30 +0200743 spin_lock_irqsave(&dev_priv->uncore.lock, irqflags);
744
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700745 /*
746 * High & low register fields aren't synchronized, so make sure
747 * we get a low value that's stable across two reads of the high
748 * register.
749 */
750 do {
Ville Syrjälä694e4092017-03-09 17:44:30 +0200751 high1 = I915_READ_FW(high_frame) & PIPE_FRAME_HIGH_MASK;
752 low = I915_READ_FW(low_frame);
753 high2 = I915_READ_FW(high_frame) & PIPE_FRAME_HIGH_MASK;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700754 } while (high1 != high2);
755
Ville Syrjälä694e4092017-03-09 17:44:30 +0200756 spin_unlock_irqrestore(&dev_priv->uncore.lock, irqflags);
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ä72259532017-03-02 19:15:05 +0200786 if (!crtc->active)
787 return -1;
788
Ville Syrjälä80715b22014-05-15 20:23:23 +0300789 vtotal = mode->crtc_vtotal;
Ville Syrjäläa225f072014-04-29 13:35:45 +0300790 if (mode->flags & DRM_MODE_FLAG_INTERLACE)
791 vtotal /= 2;
792
Tvrtko Ursulin91d14252016-05-06 14:48:28 +0100793 if (IS_GEN2(dev_priv))
Ville Syrjälä75aa3f62015-10-22 15:34:56 +0300794 position = I915_READ_FW(PIPEDSL(pipe)) & DSL_LINEMASK_GEN2;
Ville Syrjäläa225f072014-04-29 13:35:45 +0300795 else
Ville Syrjälä75aa3f62015-10-22 15:34:56 +0300796 position = I915_READ_FW(PIPEDSL(pipe)) & DSL_LINEMASK_GEN3;
Ville Syrjäläa225f072014-04-29 13:35:45 +0300797
798 /*
Jesse Barnes41b578f2015-09-22 12:15:54 -0700799 * On HSW, the DSL reg (0x70000) appears to return 0 if we
800 * read it just before the start of vblank. So try it again
801 * so we don't accidentally end up spanning a vblank frame
802 * increment, causing the pipe_update_end() code to squak at us.
803 *
804 * The nature of this problem means we can't simply check the ISR
805 * bit and return the vblank start value; nor can we use the scanline
806 * debug register in the transcoder as it appears to have the same
807 * problem. We may need to extend this to include other platforms,
808 * but so far testing only shows the problem on HSW.
809 */
Tvrtko Ursulin91d14252016-05-06 14:48:28 +0100810 if (HAS_DDI(dev_priv) && !position) {
Jesse Barnes41b578f2015-09-22 12:15:54 -0700811 int i, temp;
812
813 for (i = 0; i < 100; i++) {
814 udelay(1);
Ville Syrjälä707bdd32017-03-09 17:44:31 +0200815 temp = I915_READ_FW(PIPEDSL(pipe)) & DSL_LINEMASK_GEN3;
Jesse Barnes41b578f2015-09-22 12:15:54 -0700816 if (temp != position) {
817 position = temp;
818 break;
819 }
820 }
821 }
822
823 /*
Ville Syrjälä80715b22014-05-15 20:23:23 +0300824 * See update_scanline_offset() for the details on the
825 * scanline_offset adjustment.
Ville Syrjäläa225f072014-04-29 13:35:45 +0300826 */
Ville Syrjälä80715b22014-05-15 20:23:23 +0300827 return (position + crtc->scanline_offset) % vtotal;
Ville Syrjäläa225f072014-04-29 13:35:45 +0300828}
829
Thierry Reding88e72712015-09-24 18:35:31 +0200830static int i915_get_crtc_scanoutpos(struct drm_device *dev, unsigned int pipe,
Ville Syrjäläabca9e42013-10-28 20:50:48 +0200831 unsigned int flags, int *vpos, int *hpos,
Ville Syrjälä3bb403b2015-09-14 22:43:44 +0300832 ktime_t *stime, ktime_t *etime,
833 const struct drm_display_mode *mode)
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100834{
Chris Wilsonfac5e232016-07-04 11:34:36 +0100835 struct drm_i915_private *dev_priv = to_i915(dev);
Ville Syrjälä98187832016-10-31 22:37:10 +0200836 struct intel_crtc *intel_crtc = intel_get_crtc_for_pipe(dev_priv,
837 pipe);
Ville Syrjälä3aa18df2013-10-11 19:10:32 +0300838 int position;
Ville Syrjälä78e8fc62014-04-29 13:35:44 +0300839 int vbl_start, vbl_end, hsync_start, htotal, vtotal;
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100840 bool in_vbl = true;
841 int ret = 0;
Mario Kleinerad3543e2013-10-30 05:13:08 +0100842 unsigned long irqflags;
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100843
Maarten Lankhorstfc467a222015-06-01 12:50:07 +0200844 if (WARN_ON(!mode->crtc_clock)) {
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100845 DRM_DEBUG_DRIVER("trying to get scanoutpos for disabled "
Jesse Barnes9db4a9c2011-02-07 12:26:52 -0800846 "pipe %c\n", pipe_name(pipe));
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100847 return 0;
848 }
849
Ville Syrjäläc2baf4b2013-09-23 14:48:50 +0300850 htotal = mode->crtc_htotal;
Ville Syrjälä78e8fc62014-04-29 13:35:44 +0300851 hsync_start = mode->crtc_hsync_start;
Ville Syrjäläc2baf4b2013-09-23 14:48:50 +0300852 vtotal = mode->crtc_vtotal;
853 vbl_start = mode->crtc_vblank_start;
854 vbl_end = mode->crtc_vblank_end;
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100855
Ville Syrjäläd31faf62013-10-28 16:31:41 +0200856 if (mode->flags & DRM_MODE_FLAG_INTERLACE) {
857 vbl_start = DIV_ROUND_UP(vbl_start, 2);
858 vbl_end /= 2;
859 vtotal /= 2;
860 }
861
Ville Syrjäläc2baf4b2013-09-23 14:48:50 +0300862 ret |= DRM_SCANOUTPOS_VALID | DRM_SCANOUTPOS_ACCURATE;
863
Mario Kleinerad3543e2013-10-30 05:13:08 +0100864 /*
865 * Lock uncore.lock, as we will do multiple timing critical raw
866 * register reads, potentially with preemption disabled, so the
867 * following code must not block on uncore.lock.
868 */
869 spin_lock_irqsave(&dev_priv->uncore.lock, irqflags);
Ville Syrjälä78e8fc62014-04-29 13:35:44 +0300870
Mario Kleinerad3543e2013-10-30 05:13:08 +0100871 /* preempt_disable_rt() should go right here in PREEMPT_RT patchset. */
872
873 /* Get optional system timestamp before query. */
874 if (stime)
875 *stime = ktime_get();
876
Tvrtko Ursulin91d14252016-05-06 14:48:28 +0100877 if (IS_GEN2(dev_priv) || IS_G4X(dev_priv) || INTEL_GEN(dev_priv) >= 5) {
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100878 /* No obvious pixelcount register. Only query vertical
879 * scanout position from Display scan line register.
880 */
Ville Syrjäläa225f072014-04-29 13:35:45 +0300881 position = __intel_get_crtc_scanline(intel_crtc);
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100882 } else {
883 /* Have access to pixelcount since start of frame.
884 * We can split this into vertical and horizontal
885 * scanout position.
886 */
Ville Syrjälä75aa3f62015-10-22 15:34:56 +0300887 position = (I915_READ_FW(PIPEFRAMEPIXEL(pipe)) & PIPE_PIXEL_MASK) >> PIPE_PIXEL_SHIFT;
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100888
Ville Syrjälä3aa18df2013-10-11 19:10:32 +0300889 /* convert to pixel counts */
890 vbl_start *= htotal;
891 vbl_end *= htotal;
892 vtotal *= htotal;
Ville Syrjälä78e8fc62014-04-29 13:35:44 +0300893
894 /*
Ville Syrjälä7e78f1cb2014-04-29 13:35:49 +0300895 * In interlaced modes, the pixel counter counts all pixels,
896 * so one field will have htotal more pixels. In order to avoid
897 * the reported position from jumping backwards when the pixel
898 * counter is beyond the length of the shorter field, just
899 * clamp the position the length of the shorter field. This
900 * matches how the scanline counter based position works since
901 * the scanline counter doesn't count the two half lines.
902 */
903 if (position >= vtotal)
904 position = vtotal - 1;
905
906 /*
Ville Syrjälä78e8fc62014-04-29 13:35:44 +0300907 * Start of vblank interrupt is triggered at start of hsync,
908 * just prior to the first active line of vblank. However we
909 * consider lines to start at the leading edge of horizontal
910 * active. So, should we get here before we've crossed into
911 * the horizontal active of the first line in vblank, we would
912 * not set the DRM_SCANOUTPOS_INVBL flag. In order to fix that,
913 * always add htotal-hsync_start to the current pixel position.
914 */
915 position = (position + htotal - hsync_start) % vtotal;
Ville Syrjälä3aa18df2013-10-11 19:10:32 +0300916 }
917
Mario Kleinerad3543e2013-10-30 05:13:08 +0100918 /* Get optional system timestamp after query. */
919 if (etime)
920 *etime = ktime_get();
921
922 /* preempt_enable_rt() should go right here in PREEMPT_RT patchset. */
923
924 spin_unlock_irqrestore(&dev_priv->uncore.lock, irqflags);
925
Ville Syrjälä3aa18df2013-10-11 19:10:32 +0300926 in_vbl = position >= vbl_start && position < vbl_end;
927
928 /*
929 * While in vblank, position will be negative
930 * counting up towards 0 at vbl_end. And outside
931 * vblank, position will be positive counting
932 * up since vbl_end.
933 */
934 if (position >= vbl_start)
935 position -= vbl_end;
936 else
937 position += vtotal - vbl_end;
938
Tvrtko Ursulin91d14252016-05-06 14:48:28 +0100939 if (IS_GEN2(dev_priv) || IS_G4X(dev_priv) || INTEL_GEN(dev_priv) >= 5) {
Ville Syrjälä3aa18df2013-10-11 19:10:32 +0300940 *vpos = position;
941 *hpos = 0;
942 } else {
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100943 *vpos = position / htotal;
944 *hpos = position - (*vpos * htotal);
945 }
946
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100947 /* In vblank? */
948 if (in_vbl)
Daniel Vetter3d3cbd82014-09-10 17:36:11 +0200949 ret |= DRM_SCANOUTPOS_IN_VBLANK;
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100950
951 return ret;
952}
953
Ville Syrjäläa225f072014-04-29 13:35:45 +0300954int intel_get_crtc_scanline(struct intel_crtc *crtc)
955{
Chris Wilsonfac5e232016-07-04 11:34:36 +0100956 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
Ville Syrjäläa225f072014-04-29 13:35:45 +0300957 unsigned long irqflags;
958 int position;
959
960 spin_lock_irqsave(&dev_priv->uncore.lock, irqflags);
961 position = __intel_get_crtc_scanline(crtc);
962 spin_unlock_irqrestore(&dev_priv->uncore.lock, irqflags);
963
964 return position;
965}
966
Thierry Reding88e72712015-09-24 18:35:31 +0200967static int i915_get_vblank_timestamp(struct drm_device *dev, unsigned int pipe,
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100968 int *max_error,
969 struct timeval *vblank_time,
970 unsigned flags)
971{
Ville Syrjäläb91eb5c2016-10-31 22:37:09 +0200972 struct drm_i915_private *dev_priv = to_i915(dev);
Ville Syrjäläe2af48c2016-10-31 22:37:05 +0200973 struct intel_crtc *crtc;
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100974
Ville Syrjäläb91eb5c2016-10-31 22:37:09 +0200975 if (pipe >= INTEL_INFO(dev_priv)->num_pipes) {
Thierry Reding88e72712015-09-24 18:35:31 +0200976 DRM_ERROR("Invalid crtc %u\n", pipe);
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100977 return -EINVAL;
978 }
979
980 /* Get drm_crtc to timestamp: */
Ville Syrjäläb91eb5c2016-10-31 22:37:09 +0200981 crtc = intel_get_crtc_for_pipe(dev_priv, pipe);
Chris Wilson4041b852011-01-22 10:07:56 +0000982 if (crtc == NULL) {
Thierry Reding88e72712015-09-24 18:35:31 +0200983 DRM_ERROR("Invalid crtc %u\n", pipe);
Chris Wilson4041b852011-01-22 10:07:56 +0000984 return -EINVAL;
985 }
986
Ville Syrjäläe2af48c2016-10-31 22:37:05 +0200987 if (!crtc->base.hwmode.crtc_clock) {
Thierry Reding88e72712015-09-24 18:35:31 +0200988 DRM_DEBUG_KMS("crtc %u is disabled\n", pipe);
Chris Wilson4041b852011-01-22 10:07:56 +0000989 return -EBUSY;
990 }
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100991
992 /* Helper routine in DRM core does all the work: */
Chris Wilson4041b852011-01-22 10:07:56 +0000993 return drm_calc_vbltimestamp_from_scanoutpos(dev, pipe, max_error,
994 vblank_time, flags,
Ville Syrjäläe2af48c2016-10-31 22:37:05 +0200995 &crtc->base.hwmode);
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100996}
997
Tvrtko Ursulin91d14252016-05-06 14:48:28 +0100998static void ironlake_rps_change_irq_handler(struct drm_i915_private *dev_priv)
Jesse Barnesf97108d2010-01-29 11:27:07 -0800999{
Matthew Garrettb5b72e82010-02-02 18:30:47 +00001000 u32 busy_up, busy_down, max_avg, min_avg;
Daniel Vetter92703882012-08-09 16:46:01 +02001001 u8 new_delay;
Daniel Vetter92703882012-08-09 16:46:01 +02001002
Daniel Vetterd0ecd7e2013-07-04 23:35:25 +02001003 spin_lock(&mchdev_lock);
Jesse Barnesf97108d2010-01-29 11:27:07 -08001004
Daniel Vetter73edd18f2012-08-08 23:35:37 +02001005 I915_WRITE16(MEMINTRSTS, I915_READ(MEMINTRSTS));
1006
Daniel Vetter20e4d402012-08-08 23:35:39 +02001007 new_delay = dev_priv->ips.cur_delay;
Daniel Vetter92703882012-08-09 16:46:01 +02001008
Jesse Barnes7648fa92010-05-20 14:28:11 -07001009 I915_WRITE16(MEMINTRSTS, MEMINT_EVAL_CHG);
Matthew Garrettb5b72e82010-02-02 18:30:47 +00001010 busy_up = I915_READ(RCPREVBSYTUPAVG);
1011 busy_down = I915_READ(RCPREVBSYTDNAVG);
Jesse Barnesf97108d2010-01-29 11:27:07 -08001012 max_avg = I915_READ(RCBMAXAVG);
1013 min_avg = I915_READ(RCBMINAVG);
1014
1015 /* Handle RCS change request from hw */
Matthew Garrettb5b72e82010-02-02 18:30:47 +00001016 if (busy_up > max_avg) {
Daniel Vetter20e4d402012-08-08 23:35:39 +02001017 if (dev_priv->ips.cur_delay != dev_priv->ips.max_delay)
1018 new_delay = dev_priv->ips.cur_delay - 1;
1019 if (new_delay < dev_priv->ips.max_delay)
1020 new_delay = dev_priv->ips.max_delay;
Matthew Garrettb5b72e82010-02-02 18:30:47 +00001021 } else if (busy_down < min_avg) {
Daniel Vetter20e4d402012-08-08 23:35:39 +02001022 if (dev_priv->ips.cur_delay != dev_priv->ips.min_delay)
1023 new_delay = dev_priv->ips.cur_delay + 1;
1024 if (new_delay > dev_priv->ips.min_delay)
1025 new_delay = dev_priv->ips.min_delay;
Jesse Barnesf97108d2010-01-29 11:27:07 -08001026 }
1027
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01001028 if (ironlake_set_drps(dev_priv, new_delay))
Daniel Vetter20e4d402012-08-08 23:35:39 +02001029 dev_priv->ips.cur_delay = new_delay;
Jesse Barnesf97108d2010-01-29 11:27:07 -08001030
Daniel Vetterd0ecd7e2013-07-04 23:35:25 +02001031 spin_unlock(&mchdev_lock);
Daniel Vetter92703882012-08-09 16:46:01 +02001032
Jesse Barnesf97108d2010-01-29 11:27:07 -08001033 return;
1034}
1035
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00001036static void notify_ring(struct intel_engine_cs *engine)
Chris Wilson549f7362010-10-19 11:19:32 +01001037{
Chris Wilson56299fb2017-02-27 20:58:48 +00001038 struct drm_i915_gem_request *rq = NULL;
1039 struct intel_wait *wait;
Tvrtko Ursulindffabc82017-02-21 09:13:48 +00001040
Chris Wilson2246bea2017-02-17 15:13:00 +00001041 atomic_inc(&engine->irq_count);
Chris Wilson538b2572017-01-24 15:18:05 +00001042 set_bit(ENGINE_IRQ_BREADCRUMB, &engine->irq_posted);
Chris Wilson56299fb2017-02-27 20:58:48 +00001043
Chris Wilson61d3dc72017-03-03 19:08:24 +00001044 spin_lock(&engine->breadcrumbs.irq_lock);
1045 wait = engine->breadcrumbs.irq_wait;
Chris Wilson56299fb2017-02-27 20:58:48 +00001046 if (wait) {
1047 /* We use a callback from the dma-fence to submit
1048 * requests after waiting on our own requests. To
1049 * ensure minimum delay in queuing the next request to
1050 * hardware, signal the fence now rather than wait for
1051 * the signaler to be woken up. We still wake up the
1052 * waiter in order to handle the irq-seqno coherency
1053 * issues (we may receive the interrupt before the
1054 * seqno is written, see __i915_request_irq_complete())
1055 * and to handle coalescing of multiple seqno updates
1056 * and many waiters.
1057 */
1058 if (i915_seqno_passed(intel_engine_get_seqno(engine),
Chris Wilsondb939912017-03-15 21:07:26 +00001059 wait->seqno) &&
1060 !test_bit(DMA_FENCE_FLAG_SIGNALED_BIT,
1061 &wait->request->fence.flags))
Chris Wilson24754d72017-03-03 14:45:57 +00001062 rq = i915_gem_request_get(wait->request);
Chris Wilson56299fb2017-02-27 20:58:48 +00001063
1064 wake_up_process(wait->tsk);
Chris Wilson67b807a82017-02-27 20:58:50 +00001065 } else {
1066 __intel_engine_disarm_breadcrumbs(engine);
Chris Wilson56299fb2017-02-27 20:58:48 +00001067 }
Chris Wilson61d3dc72017-03-03 19:08:24 +00001068 spin_unlock(&engine->breadcrumbs.irq_lock);
Chris Wilson56299fb2017-02-27 20:58:48 +00001069
Chris Wilson24754d72017-03-03 14:45:57 +00001070 if (rq) {
Chris Wilson56299fb2017-02-27 20:58:48 +00001071 dma_fence_signal(&rq->fence);
Chris Wilson24754d72017-03-03 14:45:57 +00001072 i915_gem_request_put(rq);
1073 }
Chris Wilson56299fb2017-02-27 20:58:48 +00001074
1075 trace_intel_engine_notify(engine, wait);
Chris Wilson549f7362010-10-19 11:19:32 +01001076}
1077
Chris Wilson43cf3bf2015-03-18 09:48:22 +00001078static void vlv_c0_read(struct drm_i915_private *dev_priv,
1079 struct intel_rps_ei *ei)
Deepak S31685c22014-07-03 17:33:01 -04001080{
Mika Kuoppala679cb6c2017-03-15 17:43:03 +02001081 ei->ktime = ktime_get_raw();
Chris Wilson43cf3bf2015-03-18 09:48:22 +00001082 ei->render_c0 = I915_READ(VLV_RENDER_C0_COUNT);
1083 ei->media_c0 = I915_READ(VLV_MEDIA_C0_COUNT);
Deepak S31685c22014-07-03 17:33:01 -04001084}
1085
Chris Wilson43cf3bf2015-03-18 09:48:22 +00001086void gen6_rps_reset_ei(struct drm_i915_private *dev_priv)
1087{
Chris Wilsone0e8c7c2017-03-09 21:12:30 +00001088 memset(&dev_priv->rps.ei, 0, sizeof(dev_priv->rps.ei));
Chris Wilson43cf3bf2015-03-18 09:48:22 +00001089}
1090
1091static u32 vlv_wa_c0_ei(struct drm_i915_private *dev_priv, u32 pm_iir)
1092{
Chris Wilsone0e8c7c2017-03-09 21:12:30 +00001093 const struct intel_rps_ei *prev = &dev_priv->rps.ei;
Chris Wilson43cf3bf2015-03-18 09:48:22 +00001094 struct intel_rps_ei now;
1095 u32 events = 0;
1096
Chris Wilsone0e8c7c2017-03-09 21:12:30 +00001097 if ((pm_iir & GEN6_PM_RP_UP_EI_EXPIRED) == 0)
Chris Wilson43cf3bf2015-03-18 09:48:22 +00001098 return 0;
1099
1100 vlv_c0_read(dev_priv, &now);
Deepak S31685c22014-07-03 17:33:01 -04001101
Mika Kuoppala679cb6c2017-03-15 17:43:03 +02001102 if (prev->ktime) {
Chris Wilsone0e8c7c2017-03-09 21:12:30 +00001103 u64 time, c0;
Chris Wilson569884e2017-03-09 21:12:31 +00001104 u32 render, media;
Chris Wilsone0e8c7c2017-03-09 21:12:30 +00001105
Mika Kuoppala679cb6c2017-03-15 17:43:03 +02001106 time = ktime_us_delta(now.ktime, prev->ktime);
Chris Wilson8f68d592017-03-13 17:06:17 +00001107
Chris Wilsone0e8c7c2017-03-09 21:12:30 +00001108 time *= dev_priv->czclk_freq;
1109
1110 /* Workload can be split between render + media,
1111 * e.g. SwapBuffers being blitted in X after being rendered in
1112 * mesa. To account for this we need to combine both engines
1113 * into our activity counter.
1114 */
Chris Wilson569884e2017-03-09 21:12:31 +00001115 render = now.render_c0 - prev->render_c0;
1116 media = now.media_c0 - prev->media_c0;
1117 c0 = max(render, media);
Mika Kuoppala6b7f6aa2017-03-15 18:12:59 +02001118 c0 *= 1000 * 100 << 8; /* to usecs and scale to threshold% */
Chris Wilsone0e8c7c2017-03-09 21:12:30 +00001119
1120 if (c0 > time * dev_priv->rps.up_threshold)
1121 events = GEN6_PM_RP_UP_THRESHOLD;
1122 else if (c0 < time * dev_priv->rps.down_threshold)
1123 events = GEN6_PM_RP_DOWN_THRESHOLD;
Deepak S31685c22014-07-03 17:33:01 -04001124 }
1125
Chris Wilsone0e8c7c2017-03-09 21:12:30 +00001126 dev_priv->rps.ei = now;
Chris Wilson43cf3bf2015-03-18 09:48:22 +00001127 return events;
Deepak S31685c22014-07-03 17:33:01 -04001128}
1129
Chris Wilsonf5a4c672015-04-27 13:41:23 +01001130static bool any_waiters(struct drm_i915_private *dev_priv)
1131{
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00001132 struct intel_engine_cs *engine;
Akash Goel3b3f1652016-10-13 22:44:48 +05301133 enum intel_engine_id id;
Chris Wilsonf5a4c672015-04-27 13:41:23 +01001134
Akash Goel3b3f1652016-10-13 22:44:48 +05301135 for_each_engine(engine, dev_priv, id)
Chris Wilson688e6c72016-07-01 17:23:15 +01001136 if (intel_engine_has_waiter(engine))
Chris Wilsonf5a4c672015-04-27 13:41:23 +01001137 return true;
1138
1139 return false;
1140}
1141
Ben Widawsky4912d042011-04-25 11:25:20 -07001142static void gen6_pm_rps_work(struct work_struct *work)
Jesse Barnes3b8d8d92010-12-17 14:19:02 -08001143{
Jani Nikula2d1013d2014-03-31 14:27:17 +03001144 struct drm_i915_private *dev_priv =
1145 container_of(work, struct drm_i915_private, rps.work);
Chris Wilson7c0a16a2017-03-09 21:12:32 +00001146 bool client_boost = false;
Chris Wilson8d3afd72015-05-21 21:01:47 +01001147 int new_delay, adj, min, max;
Chris Wilson7c0a16a2017-03-09 21:12:32 +00001148 u32 pm_iir = 0;
Jesse Barnes3b8d8d92010-12-17 14:19:02 -08001149
Daniel Vetter59cdb632013-07-04 23:35:28 +02001150 spin_lock_irq(&dev_priv->irq_lock);
Chris Wilson7c0a16a2017-03-09 21:12:32 +00001151 if (dev_priv->rps.interrupts_enabled) {
1152 pm_iir = fetch_and_zero(&dev_priv->rps.pm_iir);
1153 client_boost = fetch_and_zero(&dev_priv->rps.client_boost);
Imre Deakd4d70aa2014-11-19 15:30:04 +02001154 }
Daniel Vetter59cdb632013-07-04 23:35:28 +02001155 spin_unlock_irq(&dev_priv->irq_lock);
Ben Widawsky4912d042011-04-25 11:25:20 -07001156
Paulo Zanoni60611c12013-08-15 11:50:01 -03001157 /* Make sure we didn't queue anything we're not going to process. */
Deepak Sa6706b42014-03-15 20:23:22 +05301158 WARN_ON(pm_iir & ~dev_priv->pm_rps_events);
Chris Wilson8d3afd72015-05-21 21:01:47 +01001159 if ((pm_iir & dev_priv->pm_rps_events) == 0 && !client_boost)
Chris Wilson7c0a16a2017-03-09 21:12:32 +00001160 goto out;
Jesse Barnes3b8d8d92010-12-17 14:19:02 -08001161
Jesse Barnes4fc688c2012-11-02 11:14:01 -07001162 mutex_lock(&dev_priv->rps.hw_lock);
Chris Wilson7b9e0ae2012-04-28 08:56:39 +01001163
Chris Wilson43cf3bf2015-03-18 09:48:22 +00001164 pm_iir |= vlv_wa_c0_ei(dev_priv, pm_iir);
1165
Chris Wilsondd75fdc2013-09-25 17:34:57 +01001166 adj = dev_priv->rps.last_adj;
Chris Wilsonedcf2842015-04-07 16:20:29 +01001167 new_delay = dev_priv->rps.cur_freq;
Chris Wilson8d3afd72015-05-21 21:01:47 +01001168 min = dev_priv->rps.min_freq_softlimit;
1169 max = dev_priv->rps.max_freq_softlimit;
Chris Wilson29ecd78d2016-07-13 09:10:35 +01001170 if (client_boost || any_waiters(dev_priv))
1171 max = dev_priv->rps.max_freq;
1172 if (client_boost && new_delay < dev_priv->rps.boost_freq) {
1173 new_delay = dev_priv->rps.boost_freq;
Chris Wilson8d3afd72015-05-21 21:01:47 +01001174 adj = 0;
1175 } else if (pm_iir & GEN6_PM_RP_UP_THRESHOLD) {
Chris Wilsondd75fdc2013-09-25 17:34:57 +01001176 if (adj > 0)
1177 adj *= 2;
Chris Wilsonedcf2842015-04-07 16:20:29 +01001178 else /* CHV needs even encode values */
1179 adj = IS_CHERRYVIEW(dev_priv) ? 2 : 1;
Sagar Arun Kamble7e79a682017-01-20 09:18:24 +05301180
1181 if (new_delay >= dev_priv->rps.max_freq_softlimit)
1182 adj = 0;
Chris Wilson29ecd78d2016-07-13 09:10:35 +01001183 } else if (client_boost || any_waiters(dev_priv)) {
Chris Wilsonf5a4c672015-04-27 13:41:23 +01001184 adj = 0;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01001185 } else if (pm_iir & GEN6_PM_RP_DOWN_TIMEOUT) {
Ben Widawskyb39fb292014-03-19 18:31:11 -07001186 if (dev_priv->rps.cur_freq > dev_priv->rps.efficient_freq)
1187 new_delay = dev_priv->rps.efficient_freq;
Chris Wilson17136d52017-02-10 15:03:47 +00001188 else if (dev_priv->rps.cur_freq > dev_priv->rps.min_freq_softlimit)
Ben Widawskyb39fb292014-03-19 18:31:11 -07001189 new_delay = dev_priv->rps.min_freq_softlimit;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01001190 adj = 0;
1191 } else if (pm_iir & GEN6_PM_RP_DOWN_THRESHOLD) {
1192 if (adj < 0)
1193 adj *= 2;
Chris Wilsonedcf2842015-04-07 16:20:29 +01001194 else /* CHV needs even encode values */
1195 adj = IS_CHERRYVIEW(dev_priv) ? -2 : -1;
Sagar Arun Kamble7e79a682017-01-20 09:18:24 +05301196
1197 if (new_delay <= dev_priv->rps.min_freq_softlimit)
1198 adj = 0;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01001199 } else { /* unknown event */
Chris Wilsonedcf2842015-04-07 16:20:29 +01001200 adj = 0;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01001201 }
Jesse Barnes3b8d8d92010-12-17 14:19:02 -08001202
Chris Wilsonedcf2842015-04-07 16:20:29 +01001203 dev_priv->rps.last_adj = adj;
1204
Ben Widawsky79249632012-09-07 19:43:42 -07001205 /* sysfs frequency interfaces may have snuck in while servicing the
1206 * interrupt
1207 */
Chris Wilsonedcf2842015-04-07 16:20:29 +01001208 new_delay += adj;
Chris Wilson8d3afd72015-05-21 21:01:47 +01001209 new_delay = clamp_t(int, new_delay, min, max);
Deepak S27544362014-01-27 21:35:05 +05301210
Chris Wilson9fcee2f2017-01-26 10:19:19 +00001211 if (intel_set_rps(dev_priv, new_delay)) {
1212 DRM_DEBUG_DRIVER("Failed to set new GPU frequency\n");
1213 dev_priv->rps.last_adj = 0;
1214 }
Jesse Barnes3b8d8d92010-12-17 14:19:02 -08001215
Jesse Barnes4fc688c2012-11-02 11:14:01 -07001216 mutex_unlock(&dev_priv->rps.hw_lock);
Chris Wilson7c0a16a2017-03-09 21:12:32 +00001217
1218out:
1219 /* Make sure not to corrupt PMIMR state used by ringbuffer on GEN6 */
1220 spin_lock_irq(&dev_priv->irq_lock);
1221 if (dev_priv->rps.interrupts_enabled)
1222 gen6_unmask_pm_irq(dev_priv, dev_priv->pm_rps_events);
1223 spin_unlock_irq(&dev_priv->irq_lock);
Jesse Barnes3b8d8d92010-12-17 14:19:02 -08001224}
1225
Ben Widawskye3689192012-05-25 16:56:22 -07001226
1227/**
1228 * ivybridge_parity_work - Workqueue called when a parity error interrupt
1229 * occurred.
1230 * @work: workqueue struct
1231 *
1232 * Doesn't actually do anything except notify userspace. As a consequence of
1233 * this event, userspace should try to remap the bad rows since statistically
1234 * it is likely the same row is more likely to go bad again.
1235 */
1236static void ivybridge_parity_work(struct work_struct *work)
1237{
Jani Nikula2d1013d2014-03-31 14:27:17 +03001238 struct drm_i915_private *dev_priv =
Joonas Lahtinencefcff82017-04-28 10:58:39 +03001239 container_of(work, typeof(*dev_priv), l3_parity.error_work);
Ben Widawskye3689192012-05-25 16:56:22 -07001240 u32 error_status, row, bank, subbank;
Ben Widawsky35a85ac2013-09-19 11:13:41 -07001241 char *parity_event[6];
Ben Widawskye3689192012-05-25 16:56:22 -07001242 uint32_t misccpctl;
Ben Widawsky35a85ac2013-09-19 11:13:41 -07001243 uint8_t slice = 0;
Ben Widawskye3689192012-05-25 16:56:22 -07001244
1245 /* We must turn off DOP level clock gating to access the L3 registers.
1246 * In order to prevent a get/put style interface, acquire struct mutex
1247 * any time we access those registers.
1248 */
Chris Wilson91c8a322016-07-05 10:40:23 +01001249 mutex_lock(&dev_priv->drm.struct_mutex);
Ben Widawskye3689192012-05-25 16:56:22 -07001250
Ben Widawsky35a85ac2013-09-19 11:13:41 -07001251 /* If we've screwed up tracking, just let the interrupt fire again */
1252 if (WARN_ON(!dev_priv->l3_parity.which_slice))
1253 goto out;
1254
Ben Widawskye3689192012-05-25 16:56:22 -07001255 misccpctl = I915_READ(GEN7_MISCCPCTL);
1256 I915_WRITE(GEN7_MISCCPCTL, misccpctl & ~GEN7_DOP_CLOCK_GATE_ENABLE);
1257 POSTING_READ(GEN7_MISCCPCTL);
1258
Ben Widawsky35a85ac2013-09-19 11:13:41 -07001259 while ((slice = ffs(dev_priv->l3_parity.which_slice)) != 0) {
Ville Syrjäläf0f59a02015-11-18 15:33:26 +02001260 i915_reg_t reg;
Ben Widawskye3689192012-05-25 16:56:22 -07001261
Ben Widawsky35a85ac2013-09-19 11:13:41 -07001262 slice--;
Joonas Lahtinen2d1fe072016-04-07 11:08:05 +03001263 if (WARN_ON_ONCE(slice >= NUM_L3_SLICES(dev_priv)))
Ben Widawsky35a85ac2013-09-19 11:13:41 -07001264 break;
1265
1266 dev_priv->l3_parity.which_slice &= ~(1<<slice);
1267
Ville Syrjälä6fa1c5f2015-11-04 23:20:02 +02001268 reg = GEN7_L3CDERRST1(slice);
Ben Widawsky35a85ac2013-09-19 11:13:41 -07001269
1270 error_status = I915_READ(reg);
1271 row = GEN7_PARITY_ERROR_ROW(error_status);
1272 bank = GEN7_PARITY_ERROR_BANK(error_status);
1273 subbank = GEN7_PARITY_ERROR_SUBBANK(error_status);
1274
1275 I915_WRITE(reg, GEN7_PARITY_ERROR_VALID | GEN7_L3CDERRST1_ENABLE);
1276 POSTING_READ(reg);
1277
1278 parity_event[0] = I915_L3_PARITY_UEVENT "=1";
1279 parity_event[1] = kasprintf(GFP_KERNEL, "ROW=%d", row);
1280 parity_event[2] = kasprintf(GFP_KERNEL, "BANK=%d", bank);
1281 parity_event[3] = kasprintf(GFP_KERNEL, "SUBBANK=%d", subbank);
1282 parity_event[4] = kasprintf(GFP_KERNEL, "SLICE=%d", slice);
1283 parity_event[5] = NULL;
1284
Chris Wilson91c8a322016-07-05 10:40:23 +01001285 kobject_uevent_env(&dev_priv->drm.primary->kdev->kobj,
Ben Widawsky35a85ac2013-09-19 11:13:41 -07001286 KOBJ_CHANGE, parity_event);
1287
1288 DRM_DEBUG("Parity error: Slice = %d, Row = %d, Bank = %d, Sub bank = %d.\n",
1289 slice, row, bank, subbank);
1290
1291 kfree(parity_event[4]);
1292 kfree(parity_event[3]);
1293 kfree(parity_event[2]);
1294 kfree(parity_event[1]);
1295 }
Ben Widawskye3689192012-05-25 16:56:22 -07001296
1297 I915_WRITE(GEN7_MISCCPCTL, misccpctl);
1298
Ben Widawsky35a85ac2013-09-19 11:13:41 -07001299out:
1300 WARN_ON(dev_priv->l3_parity.which_slice);
Daniel Vetter4cb21832014-09-15 14:55:26 +02001301 spin_lock_irq(&dev_priv->irq_lock);
Joonas Lahtinen2d1fe072016-04-07 11:08:05 +03001302 gen5_enable_gt_irq(dev_priv, GT_PARITY_ERROR(dev_priv));
Daniel Vetter4cb21832014-09-15 14:55:26 +02001303 spin_unlock_irq(&dev_priv->irq_lock);
Ben Widawskye3689192012-05-25 16:56:22 -07001304
Chris Wilson91c8a322016-07-05 10:40:23 +01001305 mutex_unlock(&dev_priv->drm.struct_mutex);
Ben Widawskye3689192012-05-25 16:56:22 -07001306}
1307
Ville Syrjälä261e40b2016-04-13 21:19:57 +03001308static void ivybridge_parity_error_irq_handler(struct drm_i915_private *dev_priv,
1309 u32 iir)
Ben Widawskye3689192012-05-25 16:56:22 -07001310{
Ville Syrjälä261e40b2016-04-13 21:19:57 +03001311 if (!HAS_L3_DPF(dev_priv))
Ben Widawskye3689192012-05-25 16:56:22 -07001312 return;
1313
Daniel Vetterd0ecd7e2013-07-04 23:35:25 +02001314 spin_lock(&dev_priv->irq_lock);
Ville Syrjälä261e40b2016-04-13 21:19:57 +03001315 gen5_disable_gt_irq(dev_priv, GT_PARITY_ERROR(dev_priv));
Daniel Vetterd0ecd7e2013-07-04 23:35:25 +02001316 spin_unlock(&dev_priv->irq_lock);
Ben Widawskye3689192012-05-25 16:56:22 -07001317
Ville Syrjälä261e40b2016-04-13 21:19:57 +03001318 iir &= GT_PARITY_ERROR(dev_priv);
Ben Widawsky35a85ac2013-09-19 11:13:41 -07001319 if (iir & GT_RENDER_L3_PARITY_ERROR_INTERRUPT_S1)
1320 dev_priv->l3_parity.which_slice |= 1 << 1;
1321
1322 if (iir & GT_RENDER_L3_PARITY_ERROR_INTERRUPT)
1323 dev_priv->l3_parity.which_slice |= 1 << 0;
1324
Daniel Vettera4da4fa2012-11-02 19:55:07 +01001325 queue_work(dev_priv->wq, &dev_priv->l3_parity.error_work);
Ben Widawskye3689192012-05-25 16:56:22 -07001326}
1327
Ville Syrjälä261e40b2016-04-13 21:19:57 +03001328static void ilk_gt_irq_handler(struct drm_i915_private *dev_priv,
Paulo Zanonif1af8fc2013-07-12 19:56:30 -03001329 u32 gt_iir)
1330{
Chris Wilsonf8973c22016-07-01 17:23:21 +01001331 if (gt_iir & GT_RENDER_USER_INTERRUPT)
Akash Goel3b3f1652016-10-13 22:44:48 +05301332 notify_ring(dev_priv->engine[RCS]);
Paulo Zanonif1af8fc2013-07-12 19:56:30 -03001333 if (gt_iir & ILK_BSD_USER_INTERRUPT)
Akash Goel3b3f1652016-10-13 22:44:48 +05301334 notify_ring(dev_priv->engine[VCS]);
Paulo Zanonif1af8fc2013-07-12 19:56:30 -03001335}
1336
Ville Syrjälä261e40b2016-04-13 21:19:57 +03001337static void snb_gt_irq_handler(struct drm_i915_private *dev_priv,
Daniel Vettere7b4c6b2012-03-30 20:24:35 +02001338 u32 gt_iir)
1339{
Chris Wilsonf8973c22016-07-01 17:23:21 +01001340 if (gt_iir & GT_RENDER_USER_INTERRUPT)
Akash Goel3b3f1652016-10-13 22:44:48 +05301341 notify_ring(dev_priv->engine[RCS]);
Ben Widawskycc609d52013-05-28 19:22:29 -07001342 if (gt_iir & GT_BSD_USER_INTERRUPT)
Akash Goel3b3f1652016-10-13 22:44:48 +05301343 notify_ring(dev_priv->engine[VCS]);
Ben Widawskycc609d52013-05-28 19:22:29 -07001344 if (gt_iir & GT_BLT_USER_INTERRUPT)
Akash Goel3b3f1652016-10-13 22:44:48 +05301345 notify_ring(dev_priv->engine[BCS]);
Daniel Vettere7b4c6b2012-03-30 20:24:35 +02001346
Ben Widawskycc609d52013-05-28 19:22:29 -07001347 if (gt_iir & (GT_BLT_CS_ERROR_INTERRUPT |
1348 GT_BSD_CS_ERROR_INTERRUPT |
Daniel Vetteraaecdf62014-11-04 15:52:22 +01001349 GT_RENDER_CS_MASTER_ERROR_INTERRUPT))
1350 DRM_DEBUG("Command parser error, gt_iir 0x%08x\n", gt_iir);
Ben Widawskye3689192012-05-25 16:56:22 -07001351
Ville Syrjälä261e40b2016-04-13 21:19:57 +03001352 if (gt_iir & GT_PARITY_ERROR(dev_priv))
1353 ivybridge_parity_error_irq_handler(dev_priv, gt_iir);
Daniel Vettere7b4c6b2012-03-30 20:24:35 +02001354}
1355
Chris Wilson5d3d69d2017-05-17 13:10:06 +01001356static void
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00001357gen8_cs_irq_handler(struct intel_engine_cs *engine, u32 iir, int test_shift)
Nick Hoathfbcc1a02015-10-20 10:23:52 +01001358{
Chris Wilson31de7352017-03-16 12:56:18 +00001359 bool tasklet = false;
Chris Wilsonf7470262017-01-24 15:20:21 +00001360
1361 if (iir & (GT_CONTEXT_SWITCH_INTERRUPT << test_shift)) {
Chris Wilsona4b2b012017-05-17 13:10:01 +01001362 if (port_count(&engine->execlist_port[0])) {
1363 set_bit(ENGINE_IRQ_EXECLIST, &engine->irq_posted);
1364 tasklet = true;
1365 }
Chris Wilsonf7470262017-01-24 15:20:21 +00001366 }
Chris Wilson31de7352017-03-16 12:56:18 +00001367
1368 if (iir & (GT_RENDER_USER_INTERRUPT << test_shift)) {
1369 notify_ring(engine);
1370 tasklet |= i915.enable_guc_submission;
1371 }
1372
1373 if (tasklet)
1374 tasklet_hi_schedule(&engine->irq_tasklet);
Nick Hoathfbcc1a02015-10-20 10:23:52 +01001375}
1376
Ville Syrjäläe30e2512016-04-13 21:19:58 +03001377static irqreturn_t gen8_gt_irq_ack(struct drm_i915_private *dev_priv,
1378 u32 master_ctl,
1379 u32 gt_iir[4])
Ben Widawskyabd58f02013-11-02 21:07:09 -07001380{
Ben Widawskyabd58f02013-11-02 21:07:09 -07001381 irqreturn_t ret = IRQ_NONE;
1382
1383 if (master_ctl & (GEN8_GT_RCS_IRQ | GEN8_GT_BCS_IRQ)) {
Ville Syrjäläe30e2512016-04-13 21:19:58 +03001384 gt_iir[0] = I915_READ_FW(GEN8_GT_IIR(0));
1385 if (gt_iir[0]) {
1386 I915_WRITE_FW(GEN8_GT_IIR(0), gt_iir[0]);
Ben Widawskyabd58f02013-11-02 21:07:09 -07001387 ret = IRQ_HANDLED;
Ben Widawskyabd58f02013-11-02 21:07:09 -07001388 } else
1389 DRM_ERROR("The master control interrupt lied (GT0)!\n");
1390 }
1391
Zhao Yakui85f9b5f2014-04-17 10:37:38 +08001392 if (master_ctl & (GEN8_GT_VCS1_IRQ | GEN8_GT_VCS2_IRQ)) {
Ville Syrjäläe30e2512016-04-13 21:19:58 +03001393 gt_iir[1] = I915_READ_FW(GEN8_GT_IIR(1));
1394 if (gt_iir[1]) {
1395 I915_WRITE_FW(GEN8_GT_IIR(1), gt_iir[1]);
Ben Widawskyabd58f02013-11-02 21:07:09 -07001396 ret = IRQ_HANDLED;
Ben Widawskyabd58f02013-11-02 21:07:09 -07001397 } else
1398 DRM_ERROR("The master control interrupt lied (GT1)!\n");
1399 }
1400
Chris Wilson74cdb332015-04-07 16:21:05 +01001401 if (master_ctl & GEN8_GT_VECS_IRQ) {
Ville Syrjäläe30e2512016-04-13 21:19:58 +03001402 gt_iir[3] = I915_READ_FW(GEN8_GT_IIR(3));
1403 if (gt_iir[3]) {
1404 I915_WRITE_FW(GEN8_GT_IIR(3), gt_iir[3]);
Chris Wilson74cdb332015-04-07 16:21:05 +01001405 ret = IRQ_HANDLED;
Chris Wilson74cdb332015-04-07 16:21:05 +01001406 } else
1407 DRM_ERROR("The master control interrupt lied (GT3)!\n");
1408 }
1409
Sagar Arun Kamble26705e22016-10-12 21:54:31 +05301410 if (master_ctl & (GEN8_GT_PM_IRQ | GEN8_GT_GUC_IRQ)) {
Ville Syrjäläe30e2512016-04-13 21:19:58 +03001411 gt_iir[2] = I915_READ_FW(GEN8_GT_IIR(2));
Sagar Arun Kamble26705e22016-10-12 21:54:31 +05301412 if (gt_iir[2] & (dev_priv->pm_rps_events |
1413 dev_priv->pm_guc_events)) {
Chris Wilsoncb0d2052015-04-07 16:21:04 +01001414 I915_WRITE_FW(GEN8_GT_IIR(2),
Sagar Arun Kamble26705e22016-10-12 21:54:31 +05301415 gt_iir[2] & (dev_priv->pm_rps_events |
1416 dev_priv->pm_guc_events));
Oscar Mateo38cc46d2014-06-16 16:10:59 +01001417 ret = IRQ_HANDLED;
Ben Widawsky09610212014-05-15 20:58:08 +03001418 } else
1419 DRM_ERROR("The master control interrupt lied (PM)!\n");
1420 }
1421
Ben Widawskyabd58f02013-11-02 21:07:09 -07001422 return ret;
1423}
1424
Ville Syrjäläe30e2512016-04-13 21:19:58 +03001425static void gen8_gt_irq_handler(struct drm_i915_private *dev_priv,
1426 u32 gt_iir[4])
1427{
1428 if (gt_iir[0]) {
Akash Goel3b3f1652016-10-13 22:44:48 +05301429 gen8_cs_irq_handler(dev_priv->engine[RCS],
Ville Syrjäläe30e2512016-04-13 21:19:58 +03001430 gt_iir[0], GEN8_RCS_IRQ_SHIFT);
Akash Goel3b3f1652016-10-13 22:44:48 +05301431 gen8_cs_irq_handler(dev_priv->engine[BCS],
Ville Syrjäläe30e2512016-04-13 21:19:58 +03001432 gt_iir[0], GEN8_BCS_IRQ_SHIFT);
1433 }
1434
1435 if (gt_iir[1]) {
Akash Goel3b3f1652016-10-13 22:44:48 +05301436 gen8_cs_irq_handler(dev_priv->engine[VCS],
Ville Syrjäläe30e2512016-04-13 21:19:58 +03001437 gt_iir[1], GEN8_VCS1_IRQ_SHIFT);
Akash Goel3b3f1652016-10-13 22:44:48 +05301438 gen8_cs_irq_handler(dev_priv->engine[VCS2],
Ville Syrjäläe30e2512016-04-13 21:19:58 +03001439 gt_iir[1], GEN8_VCS2_IRQ_SHIFT);
1440 }
1441
1442 if (gt_iir[3])
Akash Goel3b3f1652016-10-13 22:44:48 +05301443 gen8_cs_irq_handler(dev_priv->engine[VECS],
Ville Syrjäläe30e2512016-04-13 21:19:58 +03001444 gt_iir[3], GEN8_VECS_IRQ_SHIFT);
1445
1446 if (gt_iir[2] & dev_priv->pm_rps_events)
1447 gen6_rps_irq_handler(dev_priv, gt_iir[2]);
Sagar Arun Kamble26705e22016-10-12 21:54:31 +05301448
1449 if (gt_iir[2] & dev_priv->pm_guc_events)
1450 gen9_guc_irq_handler(dev_priv, gt_iir[2]);
Ville Syrjäläe30e2512016-04-13 21:19:58 +03001451}
1452
Imre Deak63c88d22015-07-20 14:43:39 -07001453static bool bxt_port_hotplug_long_detect(enum port port, u32 val)
1454{
1455 switch (port) {
1456 case PORT_A:
Ville Syrjälä195baa02015-08-27 23:56:00 +03001457 return val & PORTA_HOTPLUG_LONG_DETECT;
Imre Deak63c88d22015-07-20 14:43:39 -07001458 case PORT_B:
1459 return val & PORTB_HOTPLUG_LONG_DETECT;
1460 case PORT_C:
1461 return val & PORTC_HOTPLUG_LONG_DETECT;
Imre Deak63c88d22015-07-20 14:43:39 -07001462 default:
1463 return false;
1464 }
1465}
1466
Ville Syrjälä6dbf30c2015-08-27 23:56:02 +03001467static bool spt_port_hotplug2_long_detect(enum port port, u32 val)
1468{
1469 switch (port) {
1470 case PORT_E:
1471 return val & PORTE_HOTPLUG_LONG_DETECT;
1472 default:
1473 return false;
1474 }
1475}
1476
Ville Syrjälä74c0b392015-08-27 23:56:07 +03001477static bool spt_port_hotplug_long_detect(enum port port, u32 val)
1478{
1479 switch (port) {
1480 case PORT_A:
1481 return val & PORTA_HOTPLUG_LONG_DETECT;
1482 case PORT_B:
1483 return val & PORTB_HOTPLUG_LONG_DETECT;
1484 case PORT_C:
1485 return val & PORTC_HOTPLUG_LONG_DETECT;
1486 case PORT_D:
1487 return val & PORTD_HOTPLUG_LONG_DETECT;
1488 default:
1489 return false;
1490 }
1491}
1492
Ville Syrjäläe4ce95a2015-08-27 23:56:03 +03001493static bool ilk_port_hotplug_long_detect(enum port port, u32 val)
1494{
1495 switch (port) {
1496 case PORT_A:
1497 return val & DIGITAL_PORTA_HOTPLUG_LONG_DETECT;
1498 default:
1499 return false;
1500 }
1501}
1502
Jani Nikula676574d2015-05-28 15:43:53 +03001503static bool pch_port_hotplug_long_detect(enum port port, u32 val)
Dave Airlie13cf5502014-06-18 11:29:35 +10001504{
1505 switch (port) {
Dave Airlie13cf5502014-06-18 11:29:35 +10001506 case PORT_B:
Jani Nikula676574d2015-05-28 15:43:53 +03001507 return val & PORTB_HOTPLUG_LONG_DETECT;
Dave Airlie13cf5502014-06-18 11:29:35 +10001508 case PORT_C:
Jani Nikula676574d2015-05-28 15:43:53 +03001509 return val & PORTC_HOTPLUG_LONG_DETECT;
Dave Airlie13cf5502014-06-18 11:29:35 +10001510 case PORT_D:
Jani Nikula676574d2015-05-28 15:43:53 +03001511 return val & PORTD_HOTPLUG_LONG_DETECT;
1512 default:
1513 return false;
Dave Airlie13cf5502014-06-18 11:29:35 +10001514 }
1515}
1516
Jani Nikula676574d2015-05-28 15:43:53 +03001517static bool i9xx_port_hotplug_long_detect(enum port port, u32 val)
Dave Airlie13cf5502014-06-18 11:29:35 +10001518{
1519 switch (port) {
Dave Airlie13cf5502014-06-18 11:29:35 +10001520 case PORT_B:
Jani Nikula676574d2015-05-28 15:43:53 +03001521 return val & PORTB_HOTPLUG_INT_LONG_PULSE;
Dave Airlie13cf5502014-06-18 11:29:35 +10001522 case PORT_C:
Jani Nikula676574d2015-05-28 15:43:53 +03001523 return val & PORTC_HOTPLUG_INT_LONG_PULSE;
Dave Airlie13cf5502014-06-18 11:29:35 +10001524 case PORT_D:
Jani Nikula676574d2015-05-28 15:43:53 +03001525 return val & PORTD_HOTPLUG_INT_LONG_PULSE;
1526 default:
1527 return false;
Dave Airlie13cf5502014-06-18 11:29:35 +10001528 }
1529}
1530
Ville Syrjälä42db67d2015-08-28 21:26:27 +03001531/*
1532 * Get a bit mask of pins that have triggered, and which ones may be long.
1533 * This can be called multiple times with the same masks to accumulate
1534 * hotplug detection results from several registers.
1535 *
1536 * Note that the caller is expected to zero out the masks initially.
1537 */
Imre Deakfd63e2a2015-07-21 15:32:44 -07001538static void intel_get_hpd_pins(u32 *pin_mask, u32 *long_mask,
Jani Nikula8c841e52015-06-18 13:06:17 +03001539 u32 hotplug_trigger, u32 dig_hotplug_reg,
Imre Deakfd63e2a2015-07-21 15:32:44 -07001540 const u32 hpd[HPD_NUM_PINS],
1541 bool long_pulse_detect(enum port port, u32 val))
Jani Nikula676574d2015-05-28 15:43:53 +03001542{
Jani Nikula8c841e52015-06-18 13:06:17 +03001543 enum port port;
Jani Nikula676574d2015-05-28 15:43:53 +03001544 int i;
1545
Jani Nikula676574d2015-05-28 15:43:53 +03001546 for_each_hpd_pin(i) {
Jani Nikula8c841e52015-06-18 13:06:17 +03001547 if ((hpd[i] & hotplug_trigger) == 0)
1548 continue;
Jani Nikula676574d2015-05-28 15:43:53 +03001549
Jani Nikula8c841e52015-06-18 13:06:17 +03001550 *pin_mask |= BIT(i);
1551
Imre Deakcc24fcd2015-07-21 15:32:45 -07001552 if (!intel_hpd_pin_to_port(i, &port))
1553 continue;
1554
Imre Deakfd63e2a2015-07-21 15:32:44 -07001555 if (long_pulse_detect(port, dig_hotplug_reg))
Jani Nikula8c841e52015-06-18 13:06:17 +03001556 *long_mask |= BIT(i);
Jani Nikula676574d2015-05-28 15:43:53 +03001557 }
1558
1559 DRM_DEBUG_DRIVER("hotplug event received, stat 0x%08x, dig 0x%08x, pins 0x%08x\n",
1560 hotplug_trigger, dig_hotplug_reg, *pin_mask);
1561
1562}
1563
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01001564static void gmbus_irq_handler(struct drm_i915_private *dev_priv)
Daniel Vetter515ac2b2012-12-01 13:53:44 +01001565{
Daniel Vetter28c70f12012-12-01 13:53:45 +01001566 wake_up_all(&dev_priv->gmbus_wait_queue);
Daniel Vetter515ac2b2012-12-01 13:53:44 +01001567}
1568
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01001569static void dp_aux_irq_handler(struct drm_i915_private *dev_priv)
Daniel Vetterce99c252012-12-01 13:53:47 +01001570{
Daniel Vetter9ee32fea2012-12-01 13:53:48 +01001571 wake_up_all(&dev_priv->gmbus_wait_queue);
Daniel Vetterce99c252012-12-01 13:53:47 +01001572}
1573
Shuang He8bf1e9f2013-10-15 18:55:27 +01001574#if defined(CONFIG_DEBUG_FS)
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01001575static void display_pipe_crc_irq_handler(struct drm_i915_private *dev_priv,
1576 enum pipe pipe,
Daniel Vetter277de952013-10-18 16:37:07 +02001577 uint32_t crc0, uint32_t crc1,
1578 uint32_t crc2, uint32_t crc3,
1579 uint32_t crc4)
Shuang He8bf1e9f2013-10-15 18:55:27 +01001580{
Shuang He8bf1e9f2013-10-15 18:55:27 +01001581 struct intel_pipe_crc *pipe_crc = &dev_priv->pipe_crc[pipe];
1582 struct intel_pipe_crc_entry *entry;
Tomeu Vizoso8c6b7092017-01-10 14:43:04 +01001583 struct intel_crtc *crtc = intel_get_crtc_for_pipe(dev_priv, pipe);
1584 struct drm_driver *driver = dev_priv->drm.driver;
1585 uint32_t crcs[5];
Damien Lespiauac2300d2013-10-15 18:55:30 +01001586 int head, tail;
Damien Lespiaub2c88f52013-10-15 18:55:29 +01001587
Damien Lespiaud538bbd2013-10-21 14:29:30 +01001588 spin_lock(&pipe_crc->lock);
Tomeu Vizoso8c6b7092017-01-10 14:43:04 +01001589 if (pipe_crc->source) {
1590 if (!pipe_crc->entries) {
1591 spin_unlock(&pipe_crc->lock);
1592 DRM_DEBUG_KMS("spurious interrupt\n");
1593 return;
1594 }
Damien Lespiaud538bbd2013-10-21 14:29:30 +01001595
Tomeu Vizoso8c6b7092017-01-10 14:43:04 +01001596 head = pipe_crc->head;
1597 tail = pipe_crc->tail;
1598
1599 if (CIRC_SPACE(head, tail, INTEL_PIPE_CRC_ENTRIES_NR) < 1) {
1600 spin_unlock(&pipe_crc->lock);
1601 DRM_ERROR("CRC buffer overflowing\n");
1602 return;
1603 }
1604
1605 entry = &pipe_crc->entries[head];
1606
1607 entry->frame = driver->get_vblank_counter(&dev_priv->drm, pipe);
1608 entry->crc[0] = crc0;
1609 entry->crc[1] = crc1;
1610 entry->crc[2] = crc2;
1611 entry->crc[3] = crc3;
1612 entry->crc[4] = crc4;
1613
1614 head = (head + 1) & (INTEL_PIPE_CRC_ENTRIES_NR - 1);
1615 pipe_crc->head = head;
1616
Damien Lespiaud538bbd2013-10-21 14:29:30 +01001617 spin_unlock(&pipe_crc->lock);
Damien Lespiau0c912c72013-10-15 18:55:37 +01001618
Tomeu Vizoso8c6b7092017-01-10 14:43:04 +01001619 wake_up_interruptible(&pipe_crc->wq);
1620 } else {
1621 /*
1622 * For some not yet identified reason, the first CRC is
1623 * bonkers. So let's just wait for the next vblank and read
1624 * out the buggy result.
1625 *
1626 * On CHV sometimes the second CRC is bonkers as well, so
1627 * don't trust that one either.
1628 */
1629 if (pipe_crc->skipped == 0 ||
1630 (IS_CHERRYVIEW(dev_priv) && pipe_crc->skipped == 1)) {
1631 pipe_crc->skipped++;
1632 spin_unlock(&pipe_crc->lock);
1633 return;
1634 }
Damien Lespiaud538bbd2013-10-21 14:29:30 +01001635 spin_unlock(&pipe_crc->lock);
Tomeu Vizoso8c6b7092017-01-10 14:43:04 +01001636 crcs[0] = crc0;
1637 crcs[1] = crc1;
1638 crcs[2] = crc2;
1639 crcs[3] = crc3;
1640 crcs[4] = crc4;
Tomeu Vizoso246ee522017-01-10 14:43:05 +01001641 drm_crtc_add_crc_entry(&crtc->base, true,
1642 drm_accurate_vblank_count(&crtc->base),
1643 crcs);
Damien Lespiaub2c88f52013-10-15 18:55:29 +01001644 }
Shuang He8bf1e9f2013-10-15 18:55:27 +01001645}
Daniel Vetter277de952013-10-18 16:37:07 +02001646#else
1647static inline void
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01001648display_pipe_crc_irq_handler(struct drm_i915_private *dev_priv,
1649 enum pipe pipe,
Daniel Vetter277de952013-10-18 16:37:07 +02001650 uint32_t crc0, uint32_t crc1,
1651 uint32_t crc2, uint32_t crc3,
1652 uint32_t crc4) {}
1653#endif
Daniel Vettereba94eb2013-10-16 22:55:46 +02001654
Daniel Vetter277de952013-10-18 16:37:07 +02001655
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01001656static void hsw_pipe_crc_irq_handler(struct drm_i915_private *dev_priv,
1657 enum pipe pipe)
Daniel Vetter5a69b892013-10-16 22:55:52 +02001658{
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01001659 display_pipe_crc_irq_handler(dev_priv, pipe,
Daniel Vetter277de952013-10-18 16:37:07 +02001660 I915_READ(PIPE_CRC_RES_1_IVB(pipe)),
1661 0, 0, 0, 0);
Daniel Vetter5a69b892013-10-16 22:55:52 +02001662}
1663
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01001664static void ivb_pipe_crc_irq_handler(struct drm_i915_private *dev_priv,
1665 enum pipe pipe)
Daniel Vettereba94eb2013-10-16 22:55:46 +02001666{
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01001667 display_pipe_crc_irq_handler(dev_priv, pipe,
Daniel Vetter277de952013-10-18 16:37:07 +02001668 I915_READ(PIPE_CRC_RES_1_IVB(pipe)),
1669 I915_READ(PIPE_CRC_RES_2_IVB(pipe)),
1670 I915_READ(PIPE_CRC_RES_3_IVB(pipe)),
1671 I915_READ(PIPE_CRC_RES_4_IVB(pipe)),
1672 I915_READ(PIPE_CRC_RES_5_IVB(pipe)));
Daniel Vettereba94eb2013-10-16 22:55:46 +02001673}
Daniel Vetter5b3a8562013-10-16 22:55:48 +02001674
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01001675static void i9xx_pipe_crc_irq_handler(struct drm_i915_private *dev_priv,
1676 enum pipe pipe)
Daniel Vetter5b3a8562013-10-16 22:55:48 +02001677{
Daniel Vetter0b5c5ed2013-10-16 22:55:53 +02001678 uint32_t res1, res2;
1679
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01001680 if (INTEL_GEN(dev_priv) >= 3)
Daniel Vetter0b5c5ed2013-10-16 22:55:53 +02001681 res1 = I915_READ(PIPE_CRC_RES_RES1_I915(pipe));
1682 else
1683 res1 = 0;
1684
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01001685 if (INTEL_GEN(dev_priv) >= 5 || IS_G4X(dev_priv))
Daniel Vetter0b5c5ed2013-10-16 22:55:53 +02001686 res2 = I915_READ(PIPE_CRC_RES_RES2_G4X(pipe));
1687 else
1688 res2 = 0;
Daniel Vetter5b3a8562013-10-16 22:55:48 +02001689
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01001690 display_pipe_crc_irq_handler(dev_priv, pipe,
Daniel Vetter277de952013-10-18 16:37:07 +02001691 I915_READ(PIPE_CRC_RES_RED(pipe)),
1692 I915_READ(PIPE_CRC_RES_GREEN(pipe)),
1693 I915_READ(PIPE_CRC_RES_BLUE(pipe)),
1694 res1, res2);
Daniel Vetter5b3a8562013-10-16 22:55:48 +02001695}
Shuang He8bf1e9f2013-10-15 18:55:27 +01001696
Paulo Zanoni1403c0d2013-08-15 11:51:32 -03001697/* The RPS events need forcewake, so we add them to a work queue and mask their
1698 * IMR bits until the work is done. Other interrupts can be processed without
1699 * the work queue. */
1700static void gen6_rps_irq_handler(struct drm_i915_private *dev_priv, u32 pm_iir)
Ben Widawskybaf02a12013-05-28 19:22:24 -07001701{
Deepak Sa6706b42014-03-15 20:23:22 +05301702 if (pm_iir & dev_priv->pm_rps_events) {
Daniel Vetter59cdb632013-07-04 23:35:28 +02001703 spin_lock(&dev_priv->irq_lock);
Akash Goelf4e9af42016-10-12 21:54:30 +05301704 gen6_mask_pm_irq(dev_priv, pm_iir & dev_priv->pm_rps_events);
Imre Deakd4d70aa2014-11-19 15:30:04 +02001705 if (dev_priv->rps.interrupts_enabled) {
1706 dev_priv->rps.pm_iir |= pm_iir & dev_priv->pm_rps_events;
Chris Wilsonc33d2472016-07-04 08:08:36 +01001707 schedule_work(&dev_priv->rps.work);
Imre Deakd4d70aa2014-11-19 15:30:04 +02001708 }
Daniel Vetter59cdb632013-07-04 23:35:28 +02001709 spin_unlock(&dev_priv->irq_lock);
Ben Widawskybaf02a12013-05-28 19:22:24 -07001710 }
Ben Widawskybaf02a12013-05-28 19:22:24 -07001711
Imre Deakc9a9a262014-11-05 20:48:37 +02001712 if (INTEL_INFO(dev_priv)->gen >= 8)
1713 return;
1714
Joonas Lahtinen2d1fe072016-04-07 11:08:05 +03001715 if (HAS_VEBOX(dev_priv)) {
Paulo Zanoni1403c0d2013-08-15 11:51:32 -03001716 if (pm_iir & PM_VEBOX_USER_INTERRUPT)
Akash Goel3b3f1652016-10-13 22:44:48 +05301717 notify_ring(dev_priv->engine[VECS]);
Ben Widawsky12638c52013-05-28 19:22:31 -07001718
Daniel Vetteraaecdf62014-11-04 15:52:22 +01001719 if (pm_iir & PM_VEBOX_CS_ERROR_INTERRUPT)
1720 DRM_DEBUG("Command parser error, pm_iir 0x%08x\n", pm_iir);
Ben Widawsky12638c52013-05-28 19:22:31 -07001721 }
Ben Widawskybaf02a12013-05-28 19:22:24 -07001722}
1723
Sagar Arun Kamble26705e22016-10-12 21:54:31 +05301724static void gen9_guc_irq_handler(struct drm_i915_private *dev_priv, u32 gt_iir)
1725{
1726 if (gt_iir & GEN9_GUC_TO_HOST_INT_EVENT) {
Sagar Arun Kamble4100b2a2016-10-12 21:54:32 +05301727 /* Sample the log buffer flush related bits & clear them out now
1728 * itself from the message identity register to minimize the
1729 * probability of losing a flush interrupt, when there are back
1730 * to back flush interrupts.
1731 * There can be a new flush interrupt, for different log buffer
1732 * type (like for ISR), whilst Host is handling one (for DPC).
1733 * Since same bit is used in message register for ISR & DPC, it
1734 * could happen that GuC sets the bit for 2nd interrupt but Host
1735 * clears out the bit on handling the 1st interrupt.
1736 */
1737 u32 msg, flush;
1738
1739 msg = I915_READ(SOFT_SCRATCH(15));
Arkadiusz Hilera80bc452016-11-25 18:59:34 +01001740 flush = msg & (INTEL_GUC_RECV_MSG_CRASH_DUMP_POSTED |
1741 INTEL_GUC_RECV_MSG_FLUSH_LOG_BUFFER);
Sagar Arun Kamble4100b2a2016-10-12 21:54:32 +05301742 if (flush) {
1743 /* Clear the message bits that are handled */
1744 I915_WRITE(SOFT_SCRATCH(15), msg & ~flush);
1745
1746 /* Handle flush interrupt in bottom half */
Oscar Mateoe7465472017-03-22 10:39:48 -07001747 queue_work(dev_priv->guc.log.runtime.flush_wq,
1748 &dev_priv->guc.log.runtime.flush_work);
Akash Goel5aa1ee42016-10-12 21:54:36 +05301749
1750 dev_priv->guc.log.flush_interrupt_count++;
Sagar Arun Kamble4100b2a2016-10-12 21:54:32 +05301751 } else {
1752 /* Not clearing of unhandled event bits won't result in
1753 * re-triggering of the interrupt.
1754 */
1755 }
Sagar Arun Kamble26705e22016-10-12 21:54:31 +05301756 }
1757}
1758
Daniel Vetter5a21b662016-05-24 17:13:53 +02001759static bool intel_pipe_handle_vblank(struct drm_i915_private *dev_priv,
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01001760 enum pipe pipe)
Ville Syrjälä8d7849d2014-04-29 13:35:46 +03001761{
Daniel Vetter5a21b662016-05-24 17:13:53 +02001762 bool ret;
1763
Chris Wilson91c8a322016-07-05 10:40:23 +01001764 ret = drm_handle_vblank(&dev_priv->drm, pipe);
Daniel Vetter5a21b662016-05-24 17:13:53 +02001765 if (ret)
Maarten Lankhorst51cbaf02016-05-17 15:07:49 +02001766 intel_finish_page_flip_mmio(dev_priv, pipe);
Daniel Vetter5a21b662016-05-24 17:13:53 +02001767
1768 return ret;
Ville Syrjälä8d7849d2014-04-29 13:35:46 +03001769}
1770
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01001771static void valleyview_pipestat_irq_ack(struct drm_i915_private *dev_priv,
1772 u32 iir, u32 pipe_stats[I915_MAX_PIPES])
Imre Deakc1874ed2014-02-04 21:35:46 +02001773{
Imre Deakc1874ed2014-02-04 21:35:46 +02001774 int pipe;
1775
Imre Deak58ead0d2014-02-04 21:35:47 +02001776 spin_lock(&dev_priv->irq_lock);
Ville Syrjälä1ca993d2016-02-18 21:54:26 +02001777
1778 if (!dev_priv->display_irqs_enabled) {
1779 spin_unlock(&dev_priv->irq_lock);
1780 return;
1781 }
1782
Damien Lespiau055e3932014-08-18 13:49:10 +01001783 for_each_pipe(dev_priv, pipe) {
Ville Syrjäläf0f59a02015-11-18 15:33:26 +02001784 i915_reg_t reg;
Daniel Vetterbbb5eeb2014-02-12 17:55:36 +01001785 u32 mask, iir_bit = 0;
Imre Deak91d181d2014-02-10 18:42:49 +02001786
Daniel Vetterbbb5eeb2014-02-12 17:55:36 +01001787 /*
1788 * PIPESTAT bits get signalled even when the interrupt is
1789 * disabled with the mask bits, and some of the status bits do
1790 * not generate interrupts at all (like the underrun bit). Hence
1791 * we need to be careful that we only handle what we want to
1792 * handle.
1793 */
Daniel Vetter0f239f42014-09-30 10:56:49 +02001794
1795 /* fifo underruns are filterered in the underrun handler. */
1796 mask = PIPE_FIFO_UNDERRUN_STATUS;
Daniel Vetterbbb5eeb2014-02-12 17:55:36 +01001797
1798 switch (pipe) {
1799 case PIPE_A:
1800 iir_bit = I915_DISPLAY_PIPE_A_EVENT_INTERRUPT;
1801 break;
1802 case PIPE_B:
1803 iir_bit = I915_DISPLAY_PIPE_B_EVENT_INTERRUPT;
1804 break;
Ville Syrjälä3278f672014-04-09 13:28:49 +03001805 case PIPE_C:
1806 iir_bit = I915_DISPLAY_PIPE_C_EVENT_INTERRUPT;
1807 break;
Daniel Vetterbbb5eeb2014-02-12 17:55:36 +01001808 }
1809 if (iir & iir_bit)
1810 mask |= dev_priv->pipestat_irq_mask[pipe];
1811
1812 if (!mask)
Imre Deak91d181d2014-02-10 18:42:49 +02001813 continue;
1814
1815 reg = PIPESTAT(pipe);
Daniel Vetterbbb5eeb2014-02-12 17:55:36 +01001816 mask |= PIPESTAT_INT_ENABLE_MASK;
1817 pipe_stats[pipe] = I915_READ(reg) & mask;
Imre Deakc1874ed2014-02-04 21:35:46 +02001818
1819 /*
1820 * Clear the PIPE*STAT regs before the IIR
1821 */
Imre Deak91d181d2014-02-10 18:42:49 +02001822 if (pipe_stats[pipe] & (PIPE_FIFO_UNDERRUN_STATUS |
1823 PIPESTAT_INT_STATUS_MASK))
Imre Deakc1874ed2014-02-04 21:35:46 +02001824 I915_WRITE(reg, pipe_stats[pipe]);
1825 }
Imre Deak58ead0d2014-02-04 21:35:47 +02001826 spin_unlock(&dev_priv->irq_lock);
Ville Syrjälä2ecb8ca2016-04-13 21:19:55 +03001827}
1828
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01001829static void valleyview_pipestat_irq_handler(struct drm_i915_private *dev_priv,
Ville Syrjälä2ecb8ca2016-04-13 21:19:55 +03001830 u32 pipe_stats[I915_MAX_PIPES])
1831{
Ville Syrjälä2ecb8ca2016-04-13 21:19:55 +03001832 enum pipe pipe;
Imre Deakc1874ed2014-02-04 21:35:46 +02001833
Damien Lespiau055e3932014-08-18 13:49:10 +01001834 for_each_pipe(dev_priv, pipe) {
Daniel Vetter5a21b662016-05-24 17:13:53 +02001835 if (pipe_stats[pipe] & PIPE_START_VBLANK_INTERRUPT_STATUS &&
1836 intel_pipe_handle_vblank(dev_priv, pipe))
1837 intel_check_page_flip(dev_priv, pipe);
Imre Deakc1874ed2014-02-04 21:35:46 +02001838
Maarten Lankhorst5251f042016-05-17 15:07:47 +02001839 if (pipe_stats[pipe] & PLANE_FLIP_DONE_INT_STATUS_VLV)
Maarten Lankhorst51cbaf02016-05-17 15:07:49 +02001840 intel_finish_page_flip_cs(dev_priv, pipe);
Imre Deakc1874ed2014-02-04 21:35:46 +02001841
1842 if (pipe_stats[pipe] & PIPE_CRC_DONE_INTERRUPT_STATUS)
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01001843 i9xx_pipe_crc_irq_handler(dev_priv, pipe);
Imre Deakc1874ed2014-02-04 21:35:46 +02001844
Daniel Vetter1f7247c2014-09-30 10:56:48 +02001845 if (pipe_stats[pipe] & PIPE_FIFO_UNDERRUN_STATUS)
1846 intel_cpu_fifo_underrun_irq_handler(dev_priv, pipe);
Imre Deakc1874ed2014-02-04 21:35:46 +02001847 }
1848
1849 if (pipe_stats[0] & PIPE_GMBUS_INTERRUPT_STATUS)
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01001850 gmbus_irq_handler(dev_priv);
Imre Deakc1874ed2014-02-04 21:35:46 +02001851}
1852
Ville Syrjälä1ae3c342016-04-13 21:19:54 +03001853static u32 i9xx_hpd_irq_ack(struct drm_i915_private *dev_priv)
Ville Syrjälä16c6c562014-04-01 10:54:36 +03001854{
Ville Syrjälä16c6c562014-04-01 10:54:36 +03001855 u32 hotplug_status = I915_READ(PORT_HOTPLUG_STAT);
Ville Syrjälä1ae3c342016-04-13 21:19:54 +03001856
1857 if (hotplug_status)
1858 I915_WRITE(PORT_HOTPLUG_STAT, hotplug_status);
1859
1860 return hotplug_status;
1861}
1862
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01001863static void i9xx_hpd_irq_handler(struct drm_i915_private *dev_priv,
Ville Syrjälä1ae3c342016-04-13 21:19:54 +03001864 u32 hotplug_status)
1865{
Ville Syrjälä42db67d2015-08-28 21:26:27 +03001866 u32 pin_mask = 0, long_mask = 0;
Ville Syrjälä16c6c562014-04-01 10:54:36 +03001867
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01001868 if (IS_G4X(dev_priv) || IS_VALLEYVIEW(dev_priv) ||
1869 IS_CHERRYVIEW(dev_priv)) {
Jani Nikula0d2e4292015-05-27 15:03:39 +03001870 u32 hotplug_trigger = hotplug_status & HOTPLUG_INT_STATUS_G4X;
Oscar Mateo3ff60f82014-06-16 16:10:58 +01001871
Ville Syrjälä58f2cf22015-08-28 22:59:08 +03001872 if (hotplug_trigger) {
1873 intel_get_hpd_pins(&pin_mask, &long_mask, hotplug_trigger,
1874 hotplug_trigger, hpd_status_g4x,
1875 i9xx_port_hotplug_long_detect);
1876
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01001877 intel_hpd_irq_handler(dev_priv, pin_mask, long_mask);
Ville Syrjälä58f2cf22015-08-28 22:59:08 +03001878 }
Jani Nikula369712e2015-05-27 15:03:40 +03001879
1880 if (hotplug_status & DP_AUX_CHANNEL_MASK_INT_STATUS_G4X)
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01001881 dp_aux_irq_handler(dev_priv);
Jani Nikula0d2e4292015-05-27 15:03:39 +03001882 } else {
1883 u32 hotplug_trigger = hotplug_status & HOTPLUG_INT_STATUS_I915;
Oscar Mateo3ff60f82014-06-16 16:10:58 +01001884
Ville Syrjälä58f2cf22015-08-28 22:59:08 +03001885 if (hotplug_trigger) {
1886 intel_get_hpd_pins(&pin_mask, &long_mask, hotplug_trigger,
Daniel Vetter44cc6c02015-09-30 08:47:41 +02001887 hotplug_trigger, hpd_status_i915,
Ville Syrjälä58f2cf22015-08-28 22:59:08 +03001888 i9xx_port_hotplug_long_detect);
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01001889 intel_hpd_irq_handler(dev_priv, pin_mask, long_mask);
Ville Syrjälä58f2cf22015-08-28 22:59:08 +03001890 }
Ville Syrjälä16c6c562014-04-01 10:54:36 +03001891 }
Ville Syrjälä16c6c562014-04-01 10:54:36 +03001892}
1893
Daniel Vetterff1f5252012-10-02 15:10:55 +02001894static irqreturn_t valleyview_irq_handler(int irq, void *arg)
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07001895{
Daniel Vetter45a83f82014-05-12 19:17:55 +02001896 struct drm_device *dev = arg;
Chris Wilsonfac5e232016-07-04 11:34:36 +01001897 struct drm_i915_private *dev_priv = to_i915(dev);
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07001898 irqreturn_t ret = IRQ_NONE;
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07001899
Imre Deak2dd2a882015-02-24 11:14:30 +02001900 if (!intel_irqs_enabled(dev_priv))
1901 return IRQ_NONE;
1902
Imre Deak1f814da2015-12-16 02:52:19 +02001903 /* IRQs are synced during runtime_suspend, we don't require a wakeref */
1904 disable_rpm_wakeref_asserts(dev_priv);
1905
Ville Syrjälä1e1cace2016-04-13 21:19:52 +03001906 do {
Ville Syrjälä6e814802016-04-13 21:19:53 +03001907 u32 iir, gt_iir, pm_iir;
Ville Syrjälä2ecb8ca2016-04-13 21:19:55 +03001908 u32 pipe_stats[I915_MAX_PIPES] = {};
Ville Syrjälä1ae3c342016-04-13 21:19:54 +03001909 u32 hotplug_status = 0;
Ville Syrjäläa5e485a2016-04-13 21:19:51 +03001910 u32 ier = 0;
Oscar Mateo3ff60f82014-06-16 16:10:58 +01001911
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07001912 gt_iir = I915_READ(GTIIR);
1913 pm_iir = I915_READ(GEN6_PMIIR);
Oscar Mateo3ff60f82014-06-16 16:10:58 +01001914 iir = I915_READ(VLV_IIR);
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07001915
1916 if (gt_iir == 0 && pm_iir == 0 && iir == 0)
Ville Syrjälä1e1cace2016-04-13 21:19:52 +03001917 break;
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07001918
1919 ret = IRQ_HANDLED;
1920
Ville Syrjäläa5e485a2016-04-13 21:19:51 +03001921 /*
1922 * Theory on interrupt generation, based on empirical evidence:
1923 *
1924 * x = ((VLV_IIR & VLV_IER) ||
1925 * (((GT_IIR & GT_IER) || (GEN6_PMIIR & GEN6_PMIER)) &&
1926 * (VLV_MASTER_IER & MASTER_INTERRUPT_ENABLE)));
1927 *
1928 * A CPU interrupt will only be raised when 'x' has a 0->1 edge.
1929 * Hence we clear MASTER_INTERRUPT_ENABLE and VLV_IER to
1930 * guarantee the CPU interrupt will be raised again even if we
1931 * don't end up clearing all the VLV_IIR, GT_IIR, GEN6_PMIIR
1932 * bits this time around.
1933 */
Ville Syrjälä4a0a0202016-04-13 21:19:50 +03001934 I915_WRITE(VLV_MASTER_IER, 0);
Ville Syrjäläa5e485a2016-04-13 21:19:51 +03001935 ier = I915_READ(VLV_IER);
1936 I915_WRITE(VLV_IER, 0);
Ville Syrjälä4a0a0202016-04-13 21:19:50 +03001937
1938 if (gt_iir)
1939 I915_WRITE(GTIIR, gt_iir);
1940 if (pm_iir)
1941 I915_WRITE(GEN6_PMIIR, pm_iir);
1942
Ville Syrjälä7ce4d1f2016-04-13 21:19:49 +03001943 if (iir & I915_DISPLAY_PORT_INTERRUPT)
Ville Syrjälä1ae3c342016-04-13 21:19:54 +03001944 hotplug_status = i9xx_hpd_irq_ack(dev_priv);
Ville Syrjälä7ce4d1f2016-04-13 21:19:49 +03001945
Oscar Mateo3ff60f82014-06-16 16:10:58 +01001946 /* Call regardless, as some status bits might not be
1947 * signalled in iir */
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01001948 valleyview_pipestat_irq_ack(dev_priv, iir, pipe_stats);
Ville Syrjälä7ce4d1f2016-04-13 21:19:49 +03001949
Jerome Anandeef57322017-01-25 04:27:49 +05301950 if (iir & (I915_LPE_PIPE_A_INTERRUPT |
1951 I915_LPE_PIPE_B_INTERRUPT))
1952 intel_lpe_audio_irq_handler(dev_priv);
1953
Ville Syrjälä7ce4d1f2016-04-13 21:19:49 +03001954 /*
1955 * VLV_IIR is single buffered, and reflects the level
1956 * from PIPESTAT/PORT_HOTPLUG_STAT, hence clear it last.
1957 */
1958 if (iir)
1959 I915_WRITE(VLV_IIR, iir);
Ville Syrjälä4a0a0202016-04-13 21:19:50 +03001960
Ville Syrjäläa5e485a2016-04-13 21:19:51 +03001961 I915_WRITE(VLV_IER, ier);
Ville Syrjälä4a0a0202016-04-13 21:19:50 +03001962 I915_WRITE(VLV_MASTER_IER, MASTER_INTERRUPT_ENABLE);
1963 POSTING_READ(VLV_MASTER_IER);
Ville Syrjälä1ae3c342016-04-13 21:19:54 +03001964
Ville Syrjälä52894872016-04-13 21:19:56 +03001965 if (gt_iir)
Ville Syrjälä261e40b2016-04-13 21:19:57 +03001966 snb_gt_irq_handler(dev_priv, gt_iir);
Ville Syrjälä52894872016-04-13 21:19:56 +03001967 if (pm_iir)
1968 gen6_rps_irq_handler(dev_priv, pm_iir);
1969
Ville Syrjälä1ae3c342016-04-13 21:19:54 +03001970 if (hotplug_status)
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01001971 i9xx_hpd_irq_handler(dev_priv, hotplug_status);
Ville Syrjälä2ecb8ca2016-04-13 21:19:55 +03001972
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01001973 valleyview_pipestat_irq_handler(dev_priv, pipe_stats);
Ville Syrjälä1e1cace2016-04-13 21:19:52 +03001974 } while (0);
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07001975
Imre Deak1f814da2015-12-16 02:52:19 +02001976 enable_rpm_wakeref_asserts(dev_priv);
1977
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07001978 return ret;
1979}
1980
Ville Syrjälä43f328d2014-04-09 20:40:52 +03001981static irqreturn_t cherryview_irq_handler(int irq, void *arg)
1982{
Daniel Vetter45a83f82014-05-12 19:17:55 +02001983 struct drm_device *dev = arg;
Chris Wilsonfac5e232016-07-04 11:34:36 +01001984 struct drm_i915_private *dev_priv = to_i915(dev);
Ville Syrjälä43f328d2014-04-09 20:40:52 +03001985 irqreturn_t ret = IRQ_NONE;
Ville Syrjälä43f328d2014-04-09 20:40:52 +03001986
Imre Deak2dd2a882015-02-24 11:14:30 +02001987 if (!intel_irqs_enabled(dev_priv))
1988 return IRQ_NONE;
1989
Imre Deak1f814da2015-12-16 02:52:19 +02001990 /* IRQs are synced during runtime_suspend, we don't require a wakeref */
1991 disable_rpm_wakeref_asserts(dev_priv);
1992
Chris Wilson579de732016-03-14 09:01:57 +00001993 do {
Ville Syrjälä6e814802016-04-13 21:19:53 +03001994 u32 master_ctl, iir;
Ville Syrjäläe30e2512016-04-13 21:19:58 +03001995 u32 gt_iir[4] = {};
Ville Syrjälä2ecb8ca2016-04-13 21:19:55 +03001996 u32 pipe_stats[I915_MAX_PIPES] = {};
Ville Syrjälä1ae3c342016-04-13 21:19:54 +03001997 u32 hotplug_status = 0;
Ville Syrjäläa5e485a2016-04-13 21:19:51 +03001998 u32 ier = 0;
1999
Ville Syrjälä8e5fd592014-04-09 13:28:50 +03002000 master_ctl = I915_READ(GEN8_MASTER_IRQ) & ~GEN8_MASTER_IRQ_CONTROL;
2001 iir = I915_READ(VLV_IIR);
Ville Syrjälä3278f672014-04-09 13:28:49 +03002002
Ville Syrjälä8e5fd592014-04-09 13:28:50 +03002003 if (master_ctl == 0 && iir == 0)
2004 break;
Ville Syrjälä43f328d2014-04-09 20:40:52 +03002005
Oscar Mateo27b6c122014-06-16 16:11:00 +01002006 ret = IRQ_HANDLED;
2007
Ville Syrjäläa5e485a2016-04-13 21:19:51 +03002008 /*
2009 * Theory on interrupt generation, based on empirical evidence:
2010 *
2011 * x = ((VLV_IIR & VLV_IER) ||
2012 * ((GEN8_MASTER_IRQ & ~GEN8_MASTER_IRQ_CONTROL) &&
2013 * (GEN8_MASTER_IRQ & GEN8_MASTER_IRQ_CONTROL)));
2014 *
2015 * A CPU interrupt will only be raised when 'x' has a 0->1 edge.
2016 * Hence we clear GEN8_MASTER_IRQ_CONTROL and VLV_IER to
2017 * guarantee the CPU interrupt will be raised again even if we
2018 * don't end up clearing all the VLV_IIR and GEN8_MASTER_IRQ_CONTROL
2019 * bits this time around.
2020 */
Ville Syrjälä8e5fd592014-04-09 13:28:50 +03002021 I915_WRITE(GEN8_MASTER_IRQ, 0);
Ville Syrjäläa5e485a2016-04-13 21:19:51 +03002022 ier = I915_READ(VLV_IER);
2023 I915_WRITE(VLV_IER, 0);
Ville Syrjälä43f328d2014-04-09 20:40:52 +03002024
Ville Syrjäläe30e2512016-04-13 21:19:58 +03002025 gen8_gt_irq_ack(dev_priv, master_ctl, gt_iir);
Ville Syrjälä43f328d2014-04-09 20:40:52 +03002026
Ville Syrjälä7ce4d1f2016-04-13 21:19:49 +03002027 if (iir & I915_DISPLAY_PORT_INTERRUPT)
Ville Syrjälä1ae3c342016-04-13 21:19:54 +03002028 hotplug_status = i9xx_hpd_irq_ack(dev_priv);
Ville Syrjälä7ce4d1f2016-04-13 21:19:49 +03002029
Oscar Mateo27b6c122014-06-16 16:11:00 +01002030 /* Call regardless, as some status bits might not be
2031 * signalled in iir */
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002032 valleyview_pipestat_irq_ack(dev_priv, iir, pipe_stats);
Ville Syrjälä43f328d2014-04-09 20:40:52 +03002033
Jerome Anandeef57322017-01-25 04:27:49 +05302034 if (iir & (I915_LPE_PIPE_A_INTERRUPT |
2035 I915_LPE_PIPE_B_INTERRUPT |
2036 I915_LPE_PIPE_C_INTERRUPT))
2037 intel_lpe_audio_irq_handler(dev_priv);
2038
Ville Syrjälä7ce4d1f2016-04-13 21:19:49 +03002039 /*
2040 * VLV_IIR is single buffered, and reflects the level
2041 * from PIPESTAT/PORT_HOTPLUG_STAT, hence clear it last.
2042 */
2043 if (iir)
2044 I915_WRITE(VLV_IIR, iir);
2045
Ville Syrjäläa5e485a2016-04-13 21:19:51 +03002046 I915_WRITE(VLV_IER, ier);
Ville Syrjäläe5328c42016-04-13 21:19:47 +03002047 I915_WRITE(GEN8_MASTER_IRQ, GEN8_MASTER_IRQ_CONTROL);
Ville Syrjälä8e5fd592014-04-09 13:28:50 +03002048 POSTING_READ(GEN8_MASTER_IRQ);
Ville Syrjälä1ae3c342016-04-13 21:19:54 +03002049
Ville Syrjäläe30e2512016-04-13 21:19:58 +03002050 gen8_gt_irq_handler(dev_priv, gt_iir);
2051
Ville Syrjälä1ae3c342016-04-13 21:19:54 +03002052 if (hotplug_status)
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002053 i9xx_hpd_irq_handler(dev_priv, hotplug_status);
Ville Syrjälä2ecb8ca2016-04-13 21:19:55 +03002054
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002055 valleyview_pipestat_irq_handler(dev_priv, pipe_stats);
Chris Wilson579de732016-03-14 09:01:57 +00002056 } while (0);
Ville Syrjälä43f328d2014-04-09 20:40:52 +03002057
Imre Deak1f814da2015-12-16 02:52:19 +02002058 enable_rpm_wakeref_asserts(dev_priv);
2059
Ville Syrjälä43f328d2014-04-09 20:40:52 +03002060 return ret;
2061}
2062
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002063static void ibx_hpd_irq_handler(struct drm_i915_private *dev_priv,
2064 u32 hotplug_trigger,
Ville Syrjälä40e56412015-08-27 23:56:10 +03002065 const u32 hpd[HPD_NUM_PINS])
2066{
Ville Syrjälä40e56412015-08-27 23:56:10 +03002067 u32 dig_hotplug_reg, pin_mask = 0, long_mask = 0;
2068
Jani Nikula6a39d7c2015-11-25 16:47:22 +02002069 /*
2070 * Somehow the PCH doesn't seem to really ack the interrupt to the CPU
2071 * unless we touch the hotplug register, even if hotplug_trigger is
2072 * zero. Not acking leads to "The master control interrupt lied (SDE)!"
2073 * errors.
2074 */
Ville Syrjälä40e56412015-08-27 23:56:10 +03002075 dig_hotplug_reg = I915_READ(PCH_PORT_HOTPLUG);
Jani Nikula6a39d7c2015-11-25 16:47:22 +02002076 if (!hotplug_trigger) {
2077 u32 mask = PORTA_HOTPLUG_STATUS_MASK |
2078 PORTD_HOTPLUG_STATUS_MASK |
2079 PORTC_HOTPLUG_STATUS_MASK |
2080 PORTB_HOTPLUG_STATUS_MASK;
2081 dig_hotplug_reg &= ~mask;
2082 }
2083
Ville Syrjälä40e56412015-08-27 23:56:10 +03002084 I915_WRITE(PCH_PORT_HOTPLUG, dig_hotplug_reg);
Jani Nikula6a39d7c2015-11-25 16:47:22 +02002085 if (!hotplug_trigger)
2086 return;
Ville Syrjälä40e56412015-08-27 23:56:10 +03002087
2088 intel_get_hpd_pins(&pin_mask, &long_mask, hotplug_trigger,
2089 dig_hotplug_reg, hpd,
2090 pch_port_hotplug_long_detect);
2091
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002092 intel_hpd_irq_handler(dev_priv, pin_mask, long_mask);
Ville Syrjälä40e56412015-08-27 23:56:10 +03002093}
2094
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002095static void ibx_irq_handler(struct drm_i915_private *dev_priv, u32 pch_iir)
Jesse Barnes776ad802011-01-04 15:09:39 -08002096{
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08002097 int pipe;
Egbert Eichb543fb02013-04-16 13:36:54 +02002098 u32 hotplug_trigger = pch_iir & SDE_HOTPLUG_MASK;
Jesse Barnes776ad802011-01-04 15:09:39 -08002099
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002100 ibx_hpd_irq_handler(dev_priv, hotplug_trigger, hpd_ibx);
Daniel Vetter91d131d2013-06-27 17:52:14 +02002101
Ville Syrjäläcfc33bf2013-04-17 17:48:48 +03002102 if (pch_iir & SDE_AUDIO_POWER_MASK) {
2103 int port = ffs((pch_iir & SDE_AUDIO_POWER_MASK) >>
2104 SDE_AUDIO_POWER_SHIFT);
Jesse Barnes776ad802011-01-04 15:09:39 -08002105 DRM_DEBUG_DRIVER("PCH audio power change on port %d\n",
Ville Syrjäläcfc33bf2013-04-17 17:48:48 +03002106 port_name(port));
2107 }
Jesse Barnes776ad802011-01-04 15:09:39 -08002108
Daniel Vetterce99c252012-12-01 13:53:47 +01002109 if (pch_iir & SDE_AUX_MASK)
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002110 dp_aux_irq_handler(dev_priv);
Daniel Vetterce99c252012-12-01 13:53:47 +01002111
Jesse Barnes776ad802011-01-04 15:09:39 -08002112 if (pch_iir & SDE_GMBUS)
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002113 gmbus_irq_handler(dev_priv);
Jesse Barnes776ad802011-01-04 15:09:39 -08002114
2115 if (pch_iir & SDE_AUDIO_HDCP_MASK)
2116 DRM_DEBUG_DRIVER("PCH HDCP audio interrupt\n");
2117
2118 if (pch_iir & SDE_AUDIO_TRANS_MASK)
2119 DRM_DEBUG_DRIVER("PCH transcoder audio interrupt\n");
2120
2121 if (pch_iir & SDE_POISON)
2122 DRM_ERROR("PCH poison interrupt\n");
2123
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08002124 if (pch_iir & SDE_FDI_MASK)
Damien Lespiau055e3932014-08-18 13:49:10 +01002125 for_each_pipe(dev_priv, pipe)
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08002126 DRM_DEBUG_DRIVER(" pipe %c FDI IIR: 0x%08x\n",
2127 pipe_name(pipe),
2128 I915_READ(FDI_RX_IIR(pipe)));
Jesse Barnes776ad802011-01-04 15:09:39 -08002129
2130 if (pch_iir & (SDE_TRANSB_CRC_DONE | SDE_TRANSA_CRC_DONE))
2131 DRM_DEBUG_DRIVER("PCH transcoder CRC done interrupt\n");
2132
2133 if (pch_iir & (SDE_TRANSB_CRC_ERR | SDE_TRANSA_CRC_ERR))
2134 DRM_DEBUG_DRIVER("PCH transcoder CRC error interrupt\n");
2135
Jesse Barnes776ad802011-01-04 15:09:39 -08002136 if (pch_iir & SDE_TRANSA_FIFO_UNDER)
Daniel Vetter1f7247c2014-09-30 10:56:48 +02002137 intel_pch_fifo_underrun_irq_handler(dev_priv, TRANSCODER_A);
Paulo Zanoni86642812013-04-12 17:57:57 -03002138
2139 if (pch_iir & SDE_TRANSB_FIFO_UNDER)
Daniel Vetter1f7247c2014-09-30 10:56:48 +02002140 intel_pch_fifo_underrun_irq_handler(dev_priv, TRANSCODER_B);
Paulo Zanoni86642812013-04-12 17:57:57 -03002141}
2142
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002143static void ivb_err_int_handler(struct drm_i915_private *dev_priv)
Paulo Zanoni86642812013-04-12 17:57:57 -03002144{
Paulo Zanoni86642812013-04-12 17:57:57 -03002145 u32 err_int = I915_READ(GEN7_ERR_INT);
Daniel Vetter5a69b892013-10-16 22:55:52 +02002146 enum pipe pipe;
Paulo Zanoni86642812013-04-12 17:57:57 -03002147
Paulo Zanonide032bf2013-04-12 17:57:58 -03002148 if (err_int & ERR_INT_POISON)
2149 DRM_ERROR("Poison interrupt\n");
2150
Damien Lespiau055e3932014-08-18 13:49:10 +01002151 for_each_pipe(dev_priv, pipe) {
Daniel Vetter1f7247c2014-09-30 10:56:48 +02002152 if (err_int & ERR_INT_FIFO_UNDERRUN(pipe))
2153 intel_cpu_fifo_underrun_irq_handler(dev_priv, pipe);
Paulo Zanoni86642812013-04-12 17:57:57 -03002154
Daniel Vetter5a69b892013-10-16 22:55:52 +02002155 if (err_int & ERR_INT_PIPE_CRC_DONE(pipe)) {
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002156 if (IS_IVYBRIDGE(dev_priv))
2157 ivb_pipe_crc_irq_handler(dev_priv, pipe);
Daniel Vetter5a69b892013-10-16 22:55:52 +02002158 else
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002159 hsw_pipe_crc_irq_handler(dev_priv, pipe);
Daniel Vetter5a69b892013-10-16 22:55:52 +02002160 }
2161 }
Shuang He8bf1e9f2013-10-15 18:55:27 +01002162
Paulo Zanoni86642812013-04-12 17:57:57 -03002163 I915_WRITE(GEN7_ERR_INT, err_int);
2164}
2165
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002166static void cpt_serr_int_handler(struct drm_i915_private *dev_priv)
Paulo Zanoni86642812013-04-12 17:57:57 -03002167{
Paulo Zanoni86642812013-04-12 17:57:57 -03002168 u32 serr_int = I915_READ(SERR_INT);
2169
Paulo Zanonide032bf2013-04-12 17:57:58 -03002170 if (serr_int & SERR_INT_POISON)
2171 DRM_ERROR("PCH poison interrupt\n");
2172
Paulo Zanoni86642812013-04-12 17:57:57 -03002173 if (serr_int & SERR_INT_TRANS_A_FIFO_UNDERRUN)
Daniel Vetter1f7247c2014-09-30 10:56:48 +02002174 intel_pch_fifo_underrun_irq_handler(dev_priv, TRANSCODER_A);
Paulo Zanoni86642812013-04-12 17:57:57 -03002175
2176 if (serr_int & SERR_INT_TRANS_B_FIFO_UNDERRUN)
Daniel Vetter1f7247c2014-09-30 10:56:48 +02002177 intel_pch_fifo_underrun_irq_handler(dev_priv, TRANSCODER_B);
Paulo Zanoni86642812013-04-12 17:57:57 -03002178
2179 if (serr_int & SERR_INT_TRANS_C_FIFO_UNDERRUN)
Daniel Vetter1f7247c2014-09-30 10:56:48 +02002180 intel_pch_fifo_underrun_irq_handler(dev_priv, TRANSCODER_C);
Paulo Zanoni86642812013-04-12 17:57:57 -03002181
2182 I915_WRITE(SERR_INT, serr_int);
Jesse Barnes776ad802011-01-04 15:09:39 -08002183}
2184
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002185static void cpt_irq_handler(struct drm_i915_private *dev_priv, u32 pch_iir)
Adam Jackson23e81d62012-06-06 15:45:44 -04002186{
Adam Jackson23e81d62012-06-06 15:45:44 -04002187 int pipe;
Ville Syrjälä6dbf30c2015-08-27 23:56:02 +03002188 u32 hotplug_trigger = pch_iir & SDE_HOTPLUG_MASK_CPT;
Adam Jackson23e81d62012-06-06 15:45:44 -04002189
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002190 ibx_hpd_irq_handler(dev_priv, hotplug_trigger, hpd_cpt);
Daniel Vetter91d131d2013-06-27 17:52:14 +02002191
Ville Syrjäläcfc33bf2013-04-17 17:48:48 +03002192 if (pch_iir & SDE_AUDIO_POWER_MASK_CPT) {
2193 int port = ffs((pch_iir & SDE_AUDIO_POWER_MASK_CPT) >>
2194 SDE_AUDIO_POWER_SHIFT_CPT);
2195 DRM_DEBUG_DRIVER("PCH audio power change on port %c\n",
2196 port_name(port));
2197 }
Adam Jackson23e81d62012-06-06 15:45:44 -04002198
2199 if (pch_iir & SDE_AUX_MASK_CPT)
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002200 dp_aux_irq_handler(dev_priv);
Adam Jackson23e81d62012-06-06 15:45:44 -04002201
2202 if (pch_iir & SDE_GMBUS_CPT)
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002203 gmbus_irq_handler(dev_priv);
Adam Jackson23e81d62012-06-06 15:45:44 -04002204
2205 if (pch_iir & SDE_AUDIO_CP_REQ_CPT)
2206 DRM_DEBUG_DRIVER("Audio CP request interrupt\n");
2207
2208 if (pch_iir & SDE_AUDIO_CP_CHG_CPT)
2209 DRM_DEBUG_DRIVER("Audio CP change interrupt\n");
2210
2211 if (pch_iir & SDE_FDI_MASK_CPT)
Damien Lespiau055e3932014-08-18 13:49:10 +01002212 for_each_pipe(dev_priv, pipe)
Adam Jackson23e81d62012-06-06 15:45:44 -04002213 DRM_DEBUG_DRIVER(" pipe %c FDI IIR: 0x%08x\n",
2214 pipe_name(pipe),
2215 I915_READ(FDI_RX_IIR(pipe)));
Paulo Zanoni86642812013-04-12 17:57:57 -03002216
2217 if (pch_iir & SDE_ERROR_CPT)
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002218 cpt_serr_int_handler(dev_priv);
Adam Jackson23e81d62012-06-06 15:45:44 -04002219}
2220
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002221static void spt_irq_handler(struct drm_i915_private *dev_priv, u32 pch_iir)
Ville Syrjälä6dbf30c2015-08-27 23:56:02 +03002222{
Ville Syrjälä6dbf30c2015-08-27 23:56:02 +03002223 u32 hotplug_trigger = pch_iir & SDE_HOTPLUG_MASK_SPT &
2224 ~SDE_PORTE_HOTPLUG_SPT;
2225 u32 hotplug2_trigger = pch_iir & SDE_PORTE_HOTPLUG_SPT;
2226 u32 pin_mask = 0, long_mask = 0;
2227
2228 if (hotplug_trigger) {
2229 u32 dig_hotplug_reg;
2230
2231 dig_hotplug_reg = I915_READ(PCH_PORT_HOTPLUG);
2232 I915_WRITE(PCH_PORT_HOTPLUG, dig_hotplug_reg);
2233
2234 intel_get_hpd_pins(&pin_mask, &long_mask, hotplug_trigger,
2235 dig_hotplug_reg, hpd_spt,
Ville Syrjälä74c0b392015-08-27 23:56:07 +03002236 spt_port_hotplug_long_detect);
Ville Syrjälä6dbf30c2015-08-27 23:56:02 +03002237 }
2238
2239 if (hotplug2_trigger) {
2240 u32 dig_hotplug_reg;
2241
2242 dig_hotplug_reg = I915_READ(PCH_PORT_HOTPLUG2);
2243 I915_WRITE(PCH_PORT_HOTPLUG2, dig_hotplug_reg);
2244
2245 intel_get_hpd_pins(&pin_mask, &long_mask, hotplug2_trigger,
2246 dig_hotplug_reg, hpd_spt,
2247 spt_port_hotplug2_long_detect);
2248 }
2249
2250 if (pin_mask)
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002251 intel_hpd_irq_handler(dev_priv, pin_mask, long_mask);
Ville Syrjälä6dbf30c2015-08-27 23:56:02 +03002252
2253 if (pch_iir & SDE_GMBUS_CPT)
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002254 gmbus_irq_handler(dev_priv);
Ville Syrjälä6dbf30c2015-08-27 23:56:02 +03002255}
2256
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002257static void ilk_hpd_irq_handler(struct drm_i915_private *dev_priv,
2258 u32 hotplug_trigger,
Ville Syrjälä40e56412015-08-27 23:56:10 +03002259 const u32 hpd[HPD_NUM_PINS])
2260{
Ville Syrjälä40e56412015-08-27 23:56:10 +03002261 u32 dig_hotplug_reg, pin_mask = 0, long_mask = 0;
2262
2263 dig_hotplug_reg = I915_READ(DIGITAL_PORT_HOTPLUG_CNTRL);
2264 I915_WRITE(DIGITAL_PORT_HOTPLUG_CNTRL, dig_hotplug_reg);
2265
2266 intel_get_hpd_pins(&pin_mask, &long_mask, hotplug_trigger,
2267 dig_hotplug_reg, hpd,
2268 ilk_port_hotplug_long_detect);
2269
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002270 intel_hpd_irq_handler(dev_priv, pin_mask, long_mask);
Ville Syrjälä40e56412015-08-27 23:56:10 +03002271}
2272
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002273static void ilk_display_irq_handler(struct drm_i915_private *dev_priv,
2274 u32 de_iir)
Paulo Zanonic008bc62013-07-12 16:35:10 -03002275{
Daniel Vetter40da17c22013-10-21 18:04:36 +02002276 enum pipe pipe;
Ville Syrjäläe4ce95a2015-08-27 23:56:03 +03002277 u32 hotplug_trigger = de_iir & DE_DP_A_HOTPLUG;
2278
Ville Syrjälä40e56412015-08-27 23:56:10 +03002279 if (hotplug_trigger)
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002280 ilk_hpd_irq_handler(dev_priv, hotplug_trigger, hpd_ilk);
Paulo Zanonic008bc62013-07-12 16:35:10 -03002281
2282 if (de_iir & DE_AUX_CHANNEL_A)
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002283 dp_aux_irq_handler(dev_priv);
Paulo Zanonic008bc62013-07-12 16:35:10 -03002284
2285 if (de_iir & DE_GSE)
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002286 intel_opregion_asle_intr(dev_priv);
Paulo Zanonic008bc62013-07-12 16:35:10 -03002287
Paulo Zanonic008bc62013-07-12 16:35:10 -03002288 if (de_iir & DE_POISON)
2289 DRM_ERROR("Poison interrupt\n");
2290
Damien Lespiau055e3932014-08-18 13:49:10 +01002291 for_each_pipe(dev_priv, pipe) {
Daniel Vetter5a21b662016-05-24 17:13:53 +02002292 if (de_iir & DE_PIPE_VBLANK(pipe) &&
2293 intel_pipe_handle_vblank(dev_priv, pipe))
2294 intel_check_page_flip(dev_priv, pipe);
Paulo Zanonic008bc62013-07-12 16:35:10 -03002295
Daniel Vetter40da17c22013-10-21 18:04:36 +02002296 if (de_iir & DE_PIPE_FIFO_UNDERRUN(pipe))
Daniel Vetter1f7247c2014-09-30 10:56:48 +02002297 intel_cpu_fifo_underrun_irq_handler(dev_priv, pipe);
Paulo Zanonic008bc62013-07-12 16:35:10 -03002298
Daniel Vetter40da17c22013-10-21 18:04:36 +02002299 if (de_iir & DE_PIPE_CRC_DONE(pipe))
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002300 i9xx_pipe_crc_irq_handler(dev_priv, pipe);
Daniel Vetter5b3a8562013-10-16 22:55:48 +02002301
Daniel Vetter40da17c22013-10-21 18:04:36 +02002302 /* plane/pipes map 1:1 on ilk+ */
Maarten Lankhorst5251f042016-05-17 15:07:47 +02002303 if (de_iir & DE_PLANE_FLIP_DONE(pipe))
Maarten Lankhorst51cbaf02016-05-17 15:07:49 +02002304 intel_finish_page_flip_cs(dev_priv, pipe);
Paulo Zanonic008bc62013-07-12 16:35:10 -03002305 }
2306
2307 /* check event from PCH */
2308 if (de_iir & DE_PCH_EVENT) {
2309 u32 pch_iir = I915_READ(SDEIIR);
2310
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002311 if (HAS_PCH_CPT(dev_priv))
2312 cpt_irq_handler(dev_priv, pch_iir);
Paulo Zanonic008bc62013-07-12 16:35:10 -03002313 else
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002314 ibx_irq_handler(dev_priv, pch_iir);
Paulo Zanonic008bc62013-07-12 16:35:10 -03002315
2316 /* should clear PCH hotplug event before clear CPU irq */
2317 I915_WRITE(SDEIIR, pch_iir);
2318 }
2319
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002320 if (IS_GEN5(dev_priv) && de_iir & DE_PCU_EVENT)
2321 ironlake_rps_change_irq_handler(dev_priv);
Paulo Zanonic008bc62013-07-12 16:35:10 -03002322}
2323
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002324static void ivb_display_irq_handler(struct drm_i915_private *dev_priv,
2325 u32 de_iir)
Paulo Zanoni9719fb92013-07-12 16:35:11 -03002326{
Damien Lespiau07d27e22014-03-03 17:31:46 +00002327 enum pipe pipe;
Ville Syrjälä23bb4cb2015-08-27 23:56:04 +03002328 u32 hotplug_trigger = de_iir & DE_DP_A_HOTPLUG_IVB;
2329
Ville Syrjälä40e56412015-08-27 23:56:10 +03002330 if (hotplug_trigger)
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002331 ilk_hpd_irq_handler(dev_priv, hotplug_trigger, hpd_ivb);
Paulo Zanoni9719fb92013-07-12 16:35:11 -03002332
2333 if (de_iir & DE_ERR_INT_IVB)
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002334 ivb_err_int_handler(dev_priv);
Paulo Zanoni9719fb92013-07-12 16:35:11 -03002335
2336 if (de_iir & DE_AUX_CHANNEL_A_IVB)
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002337 dp_aux_irq_handler(dev_priv);
Paulo Zanoni9719fb92013-07-12 16:35:11 -03002338
2339 if (de_iir & DE_GSE_IVB)
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002340 intel_opregion_asle_intr(dev_priv);
Paulo Zanoni9719fb92013-07-12 16:35:11 -03002341
Damien Lespiau055e3932014-08-18 13:49:10 +01002342 for_each_pipe(dev_priv, pipe) {
Daniel Vetter5a21b662016-05-24 17:13:53 +02002343 if (de_iir & (DE_PIPE_VBLANK_IVB(pipe)) &&
2344 intel_pipe_handle_vblank(dev_priv, pipe))
2345 intel_check_page_flip(dev_priv, pipe);
Daniel Vetter40da17c22013-10-21 18:04:36 +02002346
2347 /* plane/pipes map 1:1 on ilk+ */
Maarten Lankhorst5251f042016-05-17 15:07:47 +02002348 if (de_iir & DE_PLANE_FLIP_DONE_IVB(pipe))
Maarten Lankhorst51cbaf02016-05-17 15:07:49 +02002349 intel_finish_page_flip_cs(dev_priv, pipe);
Paulo Zanoni9719fb92013-07-12 16:35:11 -03002350 }
2351
2352 /* check event from PCH */
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002353 if (!HAS_PCH_NOP(dev_priv) && (de_iir & DE_PCH_EVENT_IVB)) {
Paulo Zanoni9719fb92013-07-12 16:35:11 -03002354 u32 pch_iir = I915_READ(SDEIIR);
2355
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002356 cpt_irq_handler(dev_priv, pch_iir);
Paulo Zanoni9719fb92013-07-12 16:35:11 -03002357
2358 /* clear PCH hotplug event before clear CPU irq */
2359 I915_WRITE(SDEIIR, pch_iir);
2360 }
2361}
2362
Oscar Mateo72c90f62014-06-16 16:10:57 +01002363/*
2364 * To handle irqs with the minimum potential races with fresh interrupts, we:
2365 * 1 - Disable Master Interrupt Control.
2366 * 2 - Find the source(s) of the interrupt.
2367 * 3 - Clear the Interrupt Identity bits (IIR).
2368 * 4 - Process the interrupt(s) that had bits set in the IIRs.
2369 * 5 - Re-enable Master Interrupt Control.
2370 */
Paulo Zanonif1af8fc2013-07-12 19:56:30 -03002371static irqreturn_t ironlake_irq_handler(int irq, void *arg)
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002372{
Daniel Vetter45a83f82014-05-12 19:17:55 +02002373 struct drm_device *dev = arg;
Chris Wilsonfac5e232016-07-04 11:34:36 +01002374 struct drm_i915_private *dev_priv = to_i915(dev);
Paulo Zanonif1af8fc2013-07-12 19:56:30 -03002375 u32 de_iir, gt_iir, de_ier, sde_ier = 0;
Chris Wilson0e434062012-05-09 21:45:44 +01002376 irqreturn_t ret = IRQ_NONE;
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002377
Imre Deak2dd2a882015-02-24 11:14:30 +02002378 if (!intel_irqs_enabled(dev_priv))
2379 return IRQ_NONE;
2380
Imre Deak1f814da2015-12-16 02:52:19 +02002381 /* IRQs are synced during runtime_suspend, we don't require a wakeref */
2382 disable_rpm_wakeref_asserts(dev_priv);
2383
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002384 /* disable master interrupt before clearing iir */
2385 de_ier = I915_READ(DEIER);
2386 I915_WRITE(DEIER, de_ier & ~DE_MASTER_IRQ_CONTROL);
Paulo Zanoni23a78512013-07-12 16:35:14 -03002387 POSTING_READ(DEIER);
Chris Wilson0e434062012-05-09 21:45:44 +01002388
Paulo Zanoni44498ae2013-02-22 17:05:28 -03002389 /* Disable south interrupts. We'll only write to SDEIIR once, so further
2390 * interrupts will will be stored on its back queue, and then we'll be
2391 * able to process them after we restore SDEIER (as soon as we restore
2392 * it, we'll get an interrupt if SDEIIR still has something to process
2393 * due to its back queue). */
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002394 if (!HAS_PCH_NOP(dev_priv)) {
Ben Widawskyab5c6082013-04-05 13:12:41 -07002395 sde_ier = I915_READ(SDEIER);
2396 I915_WRITE(SDEIER, 0);
2397 POSTING_READ(SDEIER);
2398 }
Paulo Zanoni44498ae2013-02-22 17:05:28 -03002399
Oscar Mateo72c90f62014-06-16 16:10:57 +01002400 /* Find, clear, then process each source of interrupt */
2401
Chris Wilson0e434062012-05-09 21:45:44 +01002402 gt_iir = I915_READ(GTIIR);
2403 if (gt_iir) {
Oscar Mateo72c90f62014-06-16 16:10:57 +01002404 I915_WRITE(GTIIR, gt_iir);
2405 ret = IRQ_HANDLED;
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002406 if (INTEL_GEN(dev_priv) >= 6)
Ville Syrjälä261e40b2016-04-13 21:19:57 +03002407 snb_gt_irq_handler(dev_priv, gt_iir);
Paulo Zanonid8fc8a42013-07-19 18:57:55 -03002408 else
Ville Syrjälä261e40b2016-04-13 21:19:57 +03002409 ilk_gt_irq_handler(dev_priv, gt_iir);
Chris Wilson0e434062012-05-09 21:45:44 +01002410 }
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002411
2412 de_iir = I915_READ(DEIIR);
Chris Wilson0e434062012-05-09 21:45:44 +01002413 if (de_iir) {
Oscar Mateo72c90f62014-06-16 16:10:57 +01002414 I915_WRITE(DEIIR, de_iir);
2415 ret = IRQ_HANDLED;
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002416 if (INTEL_GEN(dev_priv) >= 7)
2417 ivb_display_irq_handler(dev_priv, de_iir);
Paulo Zanonif1af8fc2013-07-12 19:56:30 -03002418 else
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002419 ilk_display_irq_handler(dev_priv, de_iir);
Chris Wilson0e434062012-05-09 21:45:44 +01002420 }
2421
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002422 if (INTEL_GEN(dev_priv) >= 6) {
Paulo Zanonif1af8fc2013-07-12 19:56:30 -03002423 u32 pm_iir = I915_READ(GEN6_PMIIR);
2424 if (pm_iir) {
Paulo Zanonif1af8fc2013-07-12 19:56:30 -03002425 I915_WRITE(GEN6_PMIIR, pm_iir);
2426 ret = IRQ_HANDLED;
Oscar Mateo72c90f62014-06-16 16:10:57 +01002427 gen6_rps_irq_handler(dev_priv, pm_iir);
Paulo Zanonif1af8fc2013-07-12 19:56:30 -03002428 }
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002429 }
2430
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002431 I915_WRITE(DEIER, de_ier);
2432 POSTING_READ(DEIER);
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002433 if (!HAS_PCH_NOP(dev_priv)) {
Ben Widawskyab5c6082013-04-05 13:12:41 -07002434 I915_WRITE(SDEIER, sde_ier);
2435 POSTING_READ(SDEIER);
2436 }
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002437
Imre Deak1f814da2015-12-16 02:52:19 +02002438 /* IRQs are synced during runtime_suspend, we don't require a wakeref */
2439 enable_rpm_wakeref_asserts(dev_priv);
2440
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002441 return ret;
2442}
2443
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002444static void bxt_hpd_irq_handler(struct drm_i915_private *dev_priv,
2445 u32 hotplug_trigger,
Ville Syrjälä40e56412015-08-27 23:56:10 +03002446 const u32 hpd[HPD_NUM_PINS])
Shashank Sharmad04a4922014-08-22 17:40:41 +05302447{
Ville Syrjäläcebd87a2015-08-27 23:56:09 +03002448 u32 dig_hotplug_reg, pin_mask = 0, long_mask = 0;
Shashank Sharmad04a4922014-08-22 17:40:41 +05302449
Ville Syrjäläa52bb152015-08-27 23:56:11 +03002450 dig_hotplug_reg = I915_READ(PCH_PORT_HOTPLUG);
2451 I915_WRITE(PCH_PORT_HOTPLUG, dig_hotplug_reg);
Shashank Sharmad04a4922014-08-22 17:40:41 +05302452
Ville Syrjäläcebd87a2015-08-27 23:56:09 +03002453 intel_get_hpd_pins(&pin_mask, &long_mask, hotplug_trigger,
Ville Syrjälä40e56412015-08-27 23:56:10 +03002454 dig_hotplug_reg, hpd,
Ville Syrjäläcebd87a2015-08-27 23:56:09 +03002455 bxt_port_hotplug_long_detect);
Ville Syrjälä40e56412015-08-27 23:56:10 +03002456
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002457 intel_hpd_irq_handler(dev_priv, pin_mask, long_mask);
Shashank Sharmad04a4922014-08-22 17:40:41 +05302458}
2459
Tvrtko Ursulinf11a0f42016-01-12 16:04:07 +00002460static irqreturn_t
2461gen8_de_irq_handler(struct drm_i915_private *dev_priv, u32 master_ctl)
Ben Widawskyabd58f02013-11-02 21:07:09 -07002462{
Ben Widawskyabd58f02013-11-02 21:07:09 -07002463 irqreturn_t ret = IRQ_NONE;
Tvrtko Ursulinf11a0f42016-01-12 16:04:07 +00002464 u32 iir;
Daniel Vetterc42664c2013-11-07 11:05:40 +01002465 enum pipe pipe;
Jesse Barnes88e04702014-11-13 17:51:48 +00002466
Ben Widawskyabd58f02013-11-02 21:07:09 -07002467 if (master_ctl & GEN8_DE_MISC_IRQ) {
Tvrtko Ursuline32192e2016-01-12 16:04:06 +00002468 iir = I915_READ(GEN8_DE_MISC_IIR);
2469 if (iir) {
2470 I915_WRITE(GEN8_DE_MISC_IIR, iir);
Ben Widawskyabd58f02013-11-02 21:07:09 -07002471 ret = IRQ_HANDLED;
Tvrtko Ursuline32192e2016-01-12 16:04:06 +00002472 if (iir & GEN8_DE_MISC_GSE)
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002473 intel_opregion_asle_intr(dev_priv);
Oscar Mateo38cc46d2014-06-16 16:10:59 +01002474 else
2475 DRM_ERROR("Unexpected DE Misc interrupt\n");
Ben Widawskyabd58f02013-11-02 21:07:09 -07002476 }
Oscar Mateo38cc46d2014-06-16 16:10:59 +01002477 else
2478 DRM_ERROR("The master control interrupt lied (DE MISC)!\n");
Ben Widawskyabd58f02013-11-02 21:07:09 -07002479 }
2480
Daniel Vetter6d766f02013-11-07 14:49:55 +01002481 if (master_ctl & GEN8_DE_PORT_IRQ) {
Tvrtko Ursuline32192e2016-01-12 16:04:06 +00002482 iir = I915_READ(GEN8_DE_PORT_IIR);
2483 if (iir) {
2484 u32 tmp_mask;
Shashank Sharmad04a4922014-08-22 17:40:41 +05302485 bool found = false;
Ville Syrjäläcebd87a2015-08-27 23:56:09 +03002486
Tvrtko Ursuline32192e2016-01-12 16:04:06 +00002487 I915_WRITE(GEN8_DE_PORT_IIR, iir);
Daniel Vetter6d766f02013-11-07 14:49:55 +01002488 ret = IRQ_HANDLED;
Jesse Barnes88e04702014-11-13 17:51:48 +00002489
Tvrtko Ursuline32192e2016-01-12 16:04:06 +00002490 tmp_mask = GEN8_AUX_CHANNEL_A;
2491 if (INTEL_INFO(dev_priv)->gen >= 9)
2492 tmp_mask |= GEN9_AUX_CHANNEL_B |
2493 GEN9_AUX_CHANNEL_C |
2494 GEN9_AUX_CHANNEL_D;
2495
2496 if (iir & tmp_mask) {
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002497 dp_aux_irq_handler(dev_priv);
Shashank Sharmad04a4922014-08-22 17:40:41 +05302498 found = true;
2499 }
2500
Ander Conselvan de Oliveiracc3f90f2016-12-02 10:23:49 +02002501 if (IS_GEN9_LP(dev_priv)) {
Tvrtko Ursuline32192e2016-01-12 16:04:06 +00002502 tmp_mask = iir & BXT_DE_PORT_HOTPLUG_MASK;
2503 if (tmp_mask) {
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002504 bxt_hpd_irq_handler(dev_priv, tmp_mask,
2505 hpd_bxt);
Tvrtko Ursuline32192e2016-01-12 16:04:06 +00002506 found = true;
2507 }
2508 } else if (IS_BROADWELL(dev_priv)) {
2509 tmp_mask = iir & GEN8_PORT_DP_A_HOTPLUG;
2510 if (tmp_mask) {
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002511 ilk_hpd_irq_handler(dev_priv,
2512 tmp_mask, hpd_bdw);
Tvrtko Ursuline32192e2016-01-12 16:04:06 +00002513 found = true;
2514 }
Shashank Sharmad04a4922014-08-22 17:40:41 +05302515 }
2516
Ander Conselvan de Oliveiracc3f90f2016-12-02 10:23:49 +02002517 if (IS_GEN9_LP(dev_priv) && (iir & BXT_DE_PORT_GMBUS)) {
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002518 gmbus_irq_handler(dev_priv);
Shashank Sharma9e637432014-08-22 17:40:43 +05302519 found = true;
2520 }
2521
Shashank Sharmad04a4922014-08-22 17:40:41 +05302522 if (!found)
Oscar Mateo38cc46d2014-06-16 16:10:59 +01002523 DRM_ERROR("Unexpected DE Port interrupt\n");
Daniel Vetter6d766f02013-11-07 14:49:55 +01002524 }
Oscar Mateo38cc46d2014-06-16 16:10:59 +01002525 else
2526 DRM_ERROR("The master control interrupt lied (DE PORT)!\n");
Daniel Vetter6d766f02013-11-07 14:49:55 +01002527 }
2528
Damien Lespiau055e3932014-08-18 13:49:10 +01002529 for_each_pipe(dev_priv, pipe) {
Tvrtko Ursuline32192e2016-01-12 16:04:06 +00002530 u32 flip_done, fault_errors;
Ben Widawskyabd58f02013-11-02 21:07:09 -07002531
Daniel Vetterc42664c2013-11-07 11:05:40 +01002532 if (!(master_ctl & GEN8_DE_PIPE_IRQ(pipe)))
2533 continue;
Ben Widawskyabd58f02013-11-02 21:07:09 -07002534
Tvrtko Ursuline32192e2016-01-12 16:04:06 +00002535 iir = I915_READ(GEN8_DE_PIPE_IIR(pipe));
2536 if (!iir) {
Ben Widawskyabd58f02013-11-02 21:07:09 -07002537 DRM_ERROR("The master control interrupt lied (DE PIPE)!\n");
Tvrtko Ursuline32192e2016-01-12 16:04:06 +00002538 continue;
2539 }
2540
2541 ret = IRQ_HANDLED;
2542 I915_WRITE(GEN8_DE_PIPE_IIR(pipe), iir);
2543
Daniel Vetter5a21b662016-05-24 17:13:53 +02002544 if (iir & GEN8_PIPE_VBLANK &&
2545 intel_pipe_handle_vblank(dev_priv, pipe))
2546 intel_check_page_flip(dev_priv, pipe);
Tvrtko Ursuline32192e2016-01-12 16:04:06 +00002547
2548 flip_done = iir;
2549 if (INTEL_INFO(dev_priv)->gen >= 9)
2550 flip_done &= GEN9_PIPE_PLANE1_FLIP_DONE;
2551 else
2552 flip_done &= GEN8_PIPE_PRIMARY_FLIP_DONE;
2553
Maarten Lankhorst5251f042016-05-17 15:07:47 +02002554 if (flip_done)
Maarten Lankhorst51cbaf02016-05-17 15:07:49 +02002555 intel_finish_page_flip_cs(dev_priv, pipe);
Tvrtko Ursuline32192e2016-01-12 16:04:06 +00002556
2557 if (iir & GEN8_PIPE_CDCLK_CRC_DONE)
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002558 hsw_pipe_crc_irq_handler(dev_priv, pipe);
Tvrtko Ursuline32192e2016-01-12 16:04:06 +00002559
2560 if (iir & GEN8_PIPE_FIFO_UNDERRUN)
2561 intel_cpu_fifo_underrun_irq_handler(dev_priv, pipe);
2562
2563 fault_errors = iir;
2564 if (INTEL_INFO(dev_priv)->gen >= 9)
2565 fault_errors &= GEN9_DE_PIPE_IRQ_FAULT_ERRORS;
2566 else
2567 fault_errors &= GEN8_DE_PIPE_IRQ_FAULT_ERRORS;
2568
2569 if (fault_errors)
Tvrtko Ursulin1353ec32016-10-27 13:48:32 +01002570 DRM_ERROR("Fault errors on pipe %c: 0x%08x\n",
Tvrtko Ursuline32192e2016-01-12 16:04:06 +00002571 pipe_name(pipe),
2572 fault_errors);
Ben Widawskyabd58f02013-11-02 21:07:09 -07002573 }
2574
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002575 if (HAS_PCH_SPLIT(dev_priv) && !HAS_PCH_NOP(dev_priv) &&
Shashank Sharma266ea3d2014-08-22 17:40:42 +05302576 master_ctl & GEN8_DE_PCH_IRQ) {
Daniel Vetter92d03a82013-11-07 11:05:43 +01002577 /*
2578 * FIXME(BDW): Assume for now that the new interrupt handling
2579 * scheme also closed the SDE interrupt handling race we've seen
2580 * on older pch-split platforms. But this needs testing.
2581 */
Tvrtko Ursuline32192e2016-01-12 16:04:06 +00002582 iir = I915_READ(SDEIIR);
2583 if (iir) {
2584 I915_WRITE(SDEIIR, iir);
Daniel Vetter92d03a82013-11-07 11:05:43 +01002585 ret = IRQ_HANDLED;
Ville Syrjälä6dbf30c2015-08-27 23:56:02 +03002586
Rodrigo Vivi22dea0b2016-07-01 17:07:12 -07002587 if (HAS_PCH_SPT(dev_priv) || HAS_PCH_KBP(dev_priv))
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002588 spt_irq_handler(dev_priv, iir);
Ville Syrjälä6dbf30c2015-08-27 23:56:02 +03002589 else
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002590 cpt_irq_handler(dev_priv, iir);
Jani Nikula2dfb0b82016-01-07 10:29:10 +02002591 } else {
2592 /*
2593 * Like on previous PCH there seems to be something
2594 * fishy going on with forwarding PCH interrupts.
2595 */
2596 DRM_DEBUG_DRIVER("The master control interrupt lied (SDE)!\n");
2597 }
Daniel Vetter92d03a82013-11-07 11:05:43 +01002598 }
2599
Tvrtko Ursulinf11a0f42016-01-12 16:04:07 +00002600 return ret;
2601}
2602
2603static irqreturn_t gen8_irq_handler(int irq, void *arg)
2604{
2605 struct drm_device *dev = arg;
Chris Wilsonfac5e232016-07-04 11:34:36 +01002606 struct drm_i915_private *dev_priv = to_i915(dev);
Tvrtko Ursulinf11a0f42016-01-12 16:04:07 +00002607 u32 master_ctl;
Ville Syrjäläe30e2512016-04-13 21:19:58 +03002608 u32 gt_iir[4] = {};
Tvrtko Ursulinf11a0f42016-01-12 16:04:07 +00002609 irqreturn_t ret;
2610
2611 if (!intel_irqs_enabled(dev_priv))
2612 return IRQ_NONE;
2613
2614 master_ctl = I915_READ_FW(GEN8_MASTER_IRQ);
2615 master_ctl &= ~GEN8_MASTER_IRQ_CONTROL;
2616 if (!master_ctl)
2617 return IRQ_NONE;
2618
2619 I915_WRITE_FW(GEN8_MASTER_IRQ, 0);
2620
2621 /* IRQs are synced during runtime_suspend, we don't require a wakeref */
2622 disable_rpm_wakeref_asserts(dev_priv);
2623
2624 /* Find, clear, then process each source of interrupt */
Ville Syrjäläe30e2512016-04-13 21:19:58 +03002625 ret = gen8_gt_irq_ack(dev_priv, master_ctl, gt_iir);
2626 gen8_gt_irq_handler(dev_priv, gt_iir);
Tvrtko Ursulinf11a0f42016-01-12 16:04:07 +00002627 ret |= gen8_de_irq_handler(dev_priv, master_ctl);
2628
Chris Wilsoncb0d2052015-04-07 16:21:04 +01002629 I915_WRITE_FW(GEN8_MASTER_IRQ, GEN8_MASTER_IRQ_CONTROL);
2630 POSTING_READ_FW(GEN8_MASTER_IRQ);
Ben Widawskyabd58f02013-11-02 21:07:09 -07002631
Imre Deak1f814da2015-12-16 02:52:19 +02002632 enable_rpm_wakeref_asserts(dev_priv);
2633
Ben Widawskyabd58f02013-11-02 21:07:09 -07002634 return ret;
2635}
2636
Jesse Barnes8a905232009-07-11 16:48:03 -04002637/**
Mika Kuoppalab8d24a02015-01-28 17:03:14 +02002638 * i915_reset_and_wakeup - do process context error handling work
Tvrtko Ursulin14bb2c12016-06-03 14:02:17 +01002639 * @dev_priv: i915 device private
Jesse Barnes8a905232009-07-11 16:48:03 -04002640 *
2641 * Fire an error uevent so userspace can see that a hang or error
2642 * was detected.
2643 */
Chris Wilsonc0336662016-05-06 15:40:21 +01002644static void i915_reset_and_wakeup(struct drm_i915_private *dev_priv)
Jesse Barnes8a905232009-07-11 16:48:03 -04002645{
Chris Wilson91c8a322016-07-05 10:40:23 +01002646 struct kobject *kobj = &dev_priv->drm.primary->kdev->kobj;
Ben Widawskycce723e2013-07-19 09:16:42 -07002647 char *error_event[] = { I915_ERROR_UEVENT "=1", NULL };
2648 char *reset_event[] = { I915_RESET_UEVENT "=1", NULL };
2649 char *reset_done_event[] = { I915_ERROR_UEVENT "=0", NULL };
Jesse Barnes8a905232009-07-11 16:48:03 -04002650
Chris Wilsonc0336662016-05-06 15:40:21 +01002651 kobject_uevent_env(kobj, KOBJ_CHANGE, error_event);
Jesse Barnes8a905232009-07-11 16:48:03 -04002652
Chris Wilson8af29b02016-09-09 14:11:47 +01002653 DRM_DEBUG_DRIVER("resetting chip\n");
2654 kobject_uevent_env(kobj, KOBJ_CHANGE, reset_event);
2655
Chris Wilson8af29b02016-09-09 14:11:47 +01002656 intel_prepare_reset(dev_priv);
Ville Syrjälä75147472014-11-24 18:28:11 +02002657
Chris Wilson8c185ec2017-03-16 17:13:02 +00002658 set_bit(I915_RESET_HANDOFF, &dev_priv->gpu_error.flags);
2659 wake_up_all(&dev_priv->gpu_error.wait_queue);
2660
Chris Wilson780f2622016-09-09 14:11:52 +01002661 do {
2662 /*
2663 * All state reset _must_ be completed before we update the
2664 * reset counter, for otherwise waiters might miss the reset
2665 * pending state and not properly drop locks, resulting in
2666 * deadlocks with the reset work.
2667 */
2668 if (mutex_trylock(&dev_priv->drm.struct_mutex)) {
2669 i915_reset(dev_priv);
2670 mutex_unlock(&dev_priv->drm.struct_mutex);
2671 }
2672
2673 /* We need to wait for anyone holding the lock to wakeup */
2674 } while (wait_on_bit_timeout(&dev_priv->gpu_error.flags,
Chris Wilson8c185ec2017-03-16 17:13:02 +00002675 I915_RESET_HANDOFF,
Chris Wilson780f2622016-09-09 14:11:52 +01002676 TASK_UNINTERRUPTIBLE,
2677 HZ));
Ville Syrjälä75147472014-11-24 18:28:11 +02002678
Chris Wilson8af29b02016-09-09 14:11:47 +01002679 intel_finish_reset(dev_priv);
Daniel Vetter17e1df02013-09-08 21:57:13 +02002680
Chris Wilson780f2622016-09-09 14:11:52 +01002681 if (!test_bit(I915_WEDGED, &dev_priv->gpu_error.flags))
Chris Wilson8af29b02016-09-09 14:11:47 +01002682 kobject_uevent_env(kobj,
2683 KOBJ_CHANGE, reset_done_event);
Imre Deakf454c692014-04-23 01:09:04 +03002684
Chris Wilson8af29b02016-09-09 14:11:47 +01002685 /*
2686 * Note: The wake_up also serves as a memory barrier so that
2687 * waiters see the updated value of the dev_priv->gpu_error.
2688 */
Chris Wilson8c185ec2017-03-16 17:13:02 +00002689 clear_bit(I915_RESET_BACKOFF, &dev_priv->gpu_error.flags);
Chris Wilson8af29b02016-09-09 14:11:47 +01002690 wake_up_all(&dev_priv->gpu_error.reset_queue);
Jesse Barnes8a905232009-07-11 16:48:03 -04002691}
2692
Ben Widawskyd6369512016-09-20 16:54:32 +03002693static inline void
2694i915_err_print_instdone(struct drm_i915_private *dev_priv,
2695 struct intel_instdone *instdone)
2696{
Ben Widawskyf9e61372016-09-20 16:54:33 +03002697 int slice;
2698 int subslice;
2699
Ben Widawskyd6369512016-09-20 16:54:32 +03002700 pr_err(" INSTDONE: 0x%08x\n", instdone->instdone);
2701
2702 if (INTEL_GEN(dev_priv) <= 3)
2703 return;
2704
2705 pr_err(" SC_INSTDONE: 0x%08x\n", instdone->slice_common);
2706
2707 if (INTEL_GEN(dev_priv) <= 6)
2708 return;
2709
Ben Widawskyf9e61372016-09-20 16:54:33 +03002710 for_each_instdone_slice_subslice(dev_priv, slice, subslice)
2711 pr_err(" SAMPLER_INSTDONE[%d][%d]: 0x%08x\n",
2712 slice, subslice, instdone->sampler[slice][subslice]);
2713
2714 for_each_instdone_slice_subslice(dev_priv, slice, subslice)
2715 pr_err(" ROW_INSTDONE[%d][%d]: 0x%08x\n",
2716 slice, subslice, instdone->row[slice][subslice]);
Ben Widawskyd6369512016-09-20 16:54:32 +03002717}
2718
Chris Wilsoneaa14c22016-10-19 13:52:03 +01002719static void i915_clear_error_registers(struct drm_i915_private *dev_priv)
Jesse Barnes8a905232009-07-11 16:48:03 -04002720{
Chris Wilsoneaa14c22016-10-19 13:52:03 +01002721 u32 eir;
Jesse Barnes8a905232009-07-11 16:48:03 -04002722
Chris Wilsoneaa14c22016-10-19 13:52:03 +01002723 if (!IS_GEN2(dev_priv))
2724 I915_WRITE(PGTBL_ER, I915_READ(PGTBL_ER));
Jesse Barnes8a905232009-07-11 16:48:03 -04002725
Chris Wilsoneaa14c22016-10-19 13:52:03 +01002726 if (INTEL_GEN(dev_priv) < 4)
2727 I915_WRITE(IPEIR, I915_READ(IPEIR));
2728 else
2729 I915_WRITE(IPEIR_I965, I915_READ(IPEIR_I965));
Jesse Barnes8a905232009-07-11 16:48:03 -04002730
Chris Wilsoneaa14c22016-10-19 13:52:03 +01002731 I915_WRITE(EIR, I915_READ(EIR));
Jesse Barnes8a905232009-07-11 16:48:03 -04002732 eir = I915_READ(EIR);
2733 if (eir) {
2734 /*
2735 * some errors might have become stuck,
2736 * mask them.
2737 */
Chris Wilsoneaa14c22016-10-19 13:52:03 +01002738 DRM_DEBUG_DRIVER("EIR stuck: 0x%08x, masking\n", eir);
Jesse Barnes8a905232009-07-11 16:48:03 -04002739 I915_WRITE(EMR, I915_READ(EMR) | eir);
2740 I915_WRITE(IIR, I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT);
2741 }
Chris Wilson35aed2e2010-05-27 13:18:12 +01002742}
2743
2744/**
Mika Kuoppalab8d24a02015-01-28 17:03:14 +02002745 * i915_handle_error - handle a gpu error
Tvrtko Ursulin14bb2c12016-06-03 14:02:17 +01002746 * @dev_priv: i915 device private
arun.siluvery@linux.intel.com14b730f2016-03-18 20:07:55 +00002747 * @engine_mask: mask representing engines that are hung
Michel Thierry87c390b2017-01-11 20:18:08 -08002748 * @fmt: Error message format string
2749 *
Javier Martinez Canillasaafd8582015-10-08 09:57:49 +02002750 * Do some basic checking of register state at error time and
Chris Wilson35aed2e2010-05-27 13:18:12 +01002751 * dump it to the syslog. Also call i915_capture_error_state() to make
2752 * sure we get a record and make it available in debugfs. Fire a uevent
2753 * so userspace knows something bad happened (should trigger collection
2754 * of a ring dump etc.).
2755 */
Chris Wilsonc0336662016-05-06 15:40:21 +01002756void i915_handle_error(struct drm_i915_private *dev_priv,
2757 u32 engine_mask,
Mika Kuoppala58174462014-02-25 17:11:26 +02002758 const char *fmt, ...)
Chris Wilson35aed2e2010-05-27 13:18:12 +01002759{
Mika Kuoppala58174462014-02-25 17:11:26 +02002760 va_list args;
2761 char error_msg[80];
Chris Wilson35aed2e2010-05-27 13:18:12 +01002762
Mika Kuoppala58174462014-02-25 17:11:26 +02002763 va_start(args, fmt);
2764 vscnprintf(error_msg, sizeof(error_msg), fmt, args);
2765 va_end(args);
2766
Chris Wilson1604a862017-03-14 17:18:40 +00002767 /*
2768 * In most cases it's guaranteed that we get here with an RPM
2769 * reference held, for example because there is a pending GPU
2770 * request that won't finish until the reset is done. This
2771 * isn't the case at least when we get here by doing a
2772 * simulated reset via debugfs, so get an RPM reference.
2773 */
2774 intel_runtime_pm_get(dev_priv);
2775
Chris Wilsonc0336662016-05-06 15:40:21 +01002776 i915_capture_error_state(dev_priv, engine_mask, error_msg);
Chris Wilsoneaa14c22016-10-19 13:52:03 +01002777 i915_clear_error_registers(dev_priv);
Jesse Barnes8a905232009-07-11 16:48:03 -04002778
Chris Wilson8af29b02016-09-09 14:11:47 +01002779 if (!engine_mask)
Chris Wilson1604a862017-03-14 17:18:40 +00002780 goto out;
Ben Gamariba1234d2009-09-14 17:48:47 -04002781
Chris Wilson8c185ec2017-03-16 17:13:02 +00002782 if (test_and_set_bit(I915_RESET_BACKOFF,
Chris Wilson8af29b02016-09-09 14:11:47 +01002783 &dev_priv->gpu_error.flags))
Chris Wilson1604a862017-03-14 17:18:40 +00002784 goto out;
Chris Wilson8af29b02016-09-09 14:11:47 +01002785
Chris Wilsonc0336662016-05-06 15:40:21 +01002786 i915_reset_and_wakeup(dev_priv);
Chris Wilson1604a862017-03-14 17:18:40 +00002787
2788out:
2789 intel_runtime_pm_put(dev_priv);
Jesse Barnes8a905232009-07-11 16:48:03 -04002790}
2791
Keith Packard42f52ef2008-10-18 19:39:29 -07002792/* Called from drm generic code, passed 'crtc' which
2793 * we use as a pipe index
2794 */
Chris Wilson86e83e32016-10-07 20:49:52 +01002795static int i8xx_enable_vblank(struct drm_device *dev, unsigned int pipe)
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07002796{
Chris Wilsonfac5e232016-07-04 11:34:36 +01002797 struct drm_i915_private *dev_priv = to_i915(dev);
Keith Packarde9d21d72008-10-16 11:31:38 -07002798 unsigned long irqflags;
Jesse Barnes71e0ffa2009-01-08 10:42:15 -08002799
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002800 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Chris Wilson86e83e32016-10-07 20:49:52 +01002801 i915_enable_pipestat(dev_priv, pipe, PIPE_VBLANK_INTERRUPT_STATUS);
2802 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
2803
2804 return 0;
2805}
2806
2807static int i965_enable_vblank(struct drm_device *dev, unsigned int pipe)
2808{
2809 struct drm_i915_private *dev_priv = to_i915(dev);
2810 unsigned long irqflags;
2811
2812 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
2813 i915_enable_pipestat(dev_priv, pipe,
2814 PIPE_START_VBLANK_INTERRUPT_STATUS);
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002815 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
Chris Wilson8692d00e2011-02-05 10:08:21 +00002816
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07002817 return 0;
2818}
2819
Thierry Reding88e72712015-09-24 18:35:31 +02002820static int ironlake_enable_vblank(struct drm_device *dev, unsigned int pipe)
Jesse Barnesf796cf82011-04-07 13:58:17 -07002821{
Chris Wilsonfac5e232016-07-04 11:34:36 +01002822 struct drm_i915_private *dev_priv = to_i915(dev);
Jesse Barnesf796cf82011-04-07 13:58:17 -07002823 unsigned long irqflags;
Tvrtko Ursulin55b8f2a2016-10-14 09:17:22 +01002824 uint32_t bit = INTEL_GEN(dev_priv) >= 7 ?
Chris Wilson86e83e32016-10-07 20:49:52 +01002825 DE_PIPE_VBLANK_IVB(pipe) : DE_PIPE_VBLANK(pipe);
Jesse Barnesf796cf82011-04-07 13:58:17 -07002826
Jesse Barnesf796cf82011-04-07 13:58:17 -07002827 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Ville Syrjäläfbdedaea2015-11-23 18:06:16 +02002828 ilk_enable_display_irq(dev_priv, bit);
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002829 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
2830
2831 return 0;
2832}
2833
Thierry Reding88e72712015-09-24 18:35:31 +02002834static int gen8_enable_vblank(struct drm_device *dev, unsigned int pipe)
Ben Widawskyabd58f02013-11-02 21:07:09 -07002835{
Chris Wilsonfac5e232016-07-04 11:34:36 +01002836 struct drm_i915_private *dev_priv = to_i915(dev);
Ben Widawskyabd58f02013-11-02 21:07:09 -07002837 unsigned long irqflags;
Ben Widawskyabd58f02013-11-02 21:07:09 -07002838
Ben Widawskyabd58f02013-11-02 21:07:09 -07002839 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Ville Syrjälä013d3752015-11-23 18:06:17 +02002840 bdw_enable_pipe_irq(dev_priv, pipe, GEN8_PIPE_VBLANK);
Ben Widawskyabd58f02013-11-02 21:07:09 -07002841 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
Ville Syrjälä013d3752015-11-23 18:06:17 +02002842
Ben Widawskyabd58f02013-11-02 21:07:09 -07002843 return 0;
2844}
2845
Keith Packard42f52ef2008-10-18 19:39:29 -07002846/* Called from drm generic code, passed 'crtc' which
2847 * we use as a pipe index
2848 */
Chris Wilson86e83e32016-10-07 20:49:52 +01002849static void i8xx_disable_vblank(struct drm_device *dev, unsigned int pipe)
2850{
2851 struct drm_i915_private *dev_priv = to_i915(dev);
2852 unsigned long irqflags;
2853
2854 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
2855 i915_disable_pipestat(dev_priv, pipe, PIPE_VBLANK_INTERRUPT_STATUS);
2856 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
2857}
2858
2859static void i965_disable_vblank(struct drm_device *dev, unsigned int pipe)
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07002860{
Chris Wilsonfac5e232016-07-04 11:34:36 +01002861 struct drm_i915_private *dev_priv = to_i915(dev);
Keith Packarde9d21d72008-10-16 11:31:38 -07002862 unsigned long irqflags;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07002863
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002864 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Jesse Barnesf796cf82011-04-07 13:58:17 -07002865 i915_disable_pipestat(dev_priv, pipe,
Imre Deak755e9012014-02-10 18:42:47 +02002866 PIPE_START_VBLANK_INTERRUPT_STATUS);
Jesse Barnesf796cf82011-04-07 13:58:17 -07002867 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
2868}
2869
Thierry Reding88e72712015-09-24 18:35:31 +02002870static void ironlake_disable_vblank(struct drm_device *dev, unsigned int pipe)
Jesse Barnesf796cf82011-04-07 13:58:17 -07002871{
Chris Wilsonfac5e232016-07-04 11:34:36 +01002872 struct drm_i915_private *dev_priv = to_i915(dev);
Jesse Barnesf796cf82011-04-07 13:58:17 -07002873 unsigned long irqflags;
Tvrtko Ursulin55b8f2a2016-10-14 09:17:22 +01002874 uint32_t bit = INTEL_GEN(dev_priv) >= 7 ?
Chris Wilson86e83e32016-10-07 20:49:52 +01002875 DE_PIPE_VBLANK_IVB(pipe) : DE_PIPE_VBLANK(pipe);
Jesse Barnesf796cf82011-04-07 13:58:17 -07002876
2877 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Ville Syrjäläfbdedaea2015-11-23 18:06:16 +02002878 ilk_disable_display_irq(dev_priv, bit);
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002879 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
2880}
2881
Thierry Reding88e72712015-09-24 18:35:31 +02002882static void gen8_disable_vblank(struct drm_device *dev, unsigned int pipe)
Ben Widawskyabd58f02013-11-02 21:07:09 -07002883{
Chris Wilsonfac5e232016-07-04 11:34:36 +01002884 struct drm_i915_private *dev_priv = to_i915(dev);
Ben Widawskyabd58f02013-11-02 21:07:09 -07002885 unsigned long irqflags;
Ben Widawskyabd58f02013-11-02 21:07:09 -07002886
Ben Widawskyabd58f02013-11-02 21:07:09 -07002887 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Ville Syrjälä013d3752015-11-23 18:06:17 +02002888 bdw_disable_pipe_irq(dev_priv, pipe, GEN8_PIPE_VBLANK);
Ben Widawskyabd58f02013-11-02 21:07:09 -07002889 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
2890}
2891
Tvrtko Ursulinb243f532016-11-16 08:55:38 +00002892static void ibx_irq_reset(struct drm_i915_private *dev_priv)
Paulo Zanoni91738a92013-06-05 14:21:51 -03002893{
Tvrtko Ursulin6e266952016-10-13 11:02:53 +01002894 if (HAS_PCH_NOP(dev_priv))
Paulo Zanoni91738a92013-06-05 14:21:51 -03002895 return;
2896
Paulo Zanonif86f3fb2014-04-01 15:37:14 -03002897 GEN5_IRQ_RESET(SDE);
Paulo Zanoni105b1222014-04-01 15:37:17 -03002898
Tvrtko Ursulin6e266952016-10-13 11:02:53 +01002899 if (HAS_PCH_CPT(dev_priv) || HAS_PCH_LPT(dev_priv))
Paulo Zanoni105b1222014-04-01 15:37:17 -03002900 I915_WRITE(SERR_INT, 0xffffffff);
Paulo Zanoni622364b2014-04-01 15:37:22 -03002901}
Paulo Zanoni105b1222014-04-01 15:37:17 -03002902
Paulo Zanoni622364b2014-04-01 15:37:22 -03002903/*
2904 * SDEIER is also touched by the interrupt handler to work around missed PCH
2905 * interrupts. Hence we can't update it after the interrupt handler is enabled -
2906 * instead we unconditionally enable all PCH interrupt sources here, but then
2907 * only unmask them as needed with SDEIMR.
2908 *
2909 * This function needs to be called before interrupts are enabled.
2910 */
2911static void ibx_irq_pre_postinstall(struct drm_device *dev)
2912{
Chris Wilsonfac5e232016-07-04 11:34:36 +01002913 struct drm_i915_private *dev_priv = to_i915(dev);
Paulo Zanoni622364b2014-04-01 15:37:22 -03002914
Tvrtko Ursulin6e266952016-10-13 11:02:53 +01002915 if (HAS_PCH_NOP(dev_priv))
Paulo Zanoni622364b2014-04-01 15:37:22 -03002916 return;
2917
2918 WARN_ON(I915_READ(SDEIER) != 0);
Paulo Zanoni91738a92013-06-05 14:21:51 -03002919 I915_WRITE(SDEIER, 0xffffffff);
2920 POSTING_READ(SDEIER);
2921}
2922
Tvrtko Ursulinb243f532016-11-16 08:55:38 +00002923static void gen5_gt_irq_reset(struct drm_i915_private *dev_priv)
Daniel Vetterd18ea1b2013-07-12 22:43:25 +02002924{
Paulo Zanonif86f3fb2014-04-01 15:37:14 -03002925 GEN5_IRQ_RESET(GT);
Tvrtko Ursulinb243f532016-11-16 08:55:38 +00002926 if (INTEL_GEN(dev_priv) >= 6)
Paulo Zanonif86f3fb2014-04-01 15:37:14 -03002927 GEN5_IRQ_RESET(GEN6_PM);
Daniel Vetterd18ea1b2013-07-12 22:43:25 +02002928}
2929
Ville Syrjälä70591a42014-10-30 19:42:58 +02002930static void vlv_display_irq_reset(struct drm_i915_private *dev_priv)
2931{
2932 enum pipe pipe;
2933
Ville Syrjälä71b8b412016-04-11 16:56:31 +03002934 if (IS_CHERRYVIEW(dev_priv))
2935 I915_WRITE(DPINVGTT, DPINVGTT_STATUS_MASK_CHV);
2936 else
2937 I915_WRITE(DPINVGTT, DPINVGTT_STATUS_MASK);
2938
Ville Syrjäläad22d102016-04-12 18:56:14 +03002939 i915_hotplug_interrupt_update_locked(dev_priv, 0xffffffff, 0);
Ville Syrjälä70591a42014-10-30 19:42:58 +02002940 I915_WRITE(PORT_HOTPLUG_STAT, I915_READ(PORT_HOTPLUG_STAT));
2941
Ville Syrjäläad22d102016-04-12 18:56:14 +03002942 for_each_pipe(dev_priv, pipe) {
2943 I915_WRITE(PIPESTAT(pipe),
2944 PIPE_FIFO_UNDERRUN_STATUS |
2945 PIPESTAT_INT_STATUS_MASK);
2946 dev_priv->pipestat_irq_mask[pipe] = 0;
2947 }
Ville Syrjälä70591a42014-10-30 19:42:58 +02002948
2949 GEN5_IRQ_RESET(VLV_);
Ville Syrjäläad22d102016-04-12 18:56:14 +03002950 dev_priv->irq_mask = ~0;
Ville Syrjälä70591a42014-10-30 19:42:58 +02002951}
2952
Ville Syrjälä8bb61302016-04-12 18:56:44 +03002953static void vlv_display_irq_postinstall(struct drm_i915_private *dev_priv)
2954{
2955 u32 pipestat_mask;
Ville Syrjälä9ab981f2016-04-11 16:56:28 +03002956 u32 enable_mask;
Ville Syrjälä8bb61302016-04-12 18:56:44 +03002957 enum pipe pipe;
2958
Ville Syrjälä8bb61302016-04-12 18:56:44 +03002959 pipestat_mask = PLANE_FLIP_DONE_INT_STATUS_VLV |
2960 PIPE_CRC_DONE_INTERRUPT_STATUS;
2961
2962 i915_enable_pipestat(dev_priv, PIPE_A, PIPE_GMBUS_INTERRUPT_STATUS);
2963 for_each_pipe(dev_priv, pipe)
2964 i915_enable_pipestat(dev_priv, pipe, pipestat_mask);
2965
Ville Syrjälä9ab981f2016-04-11 16:56:28 +03002966 enable_mask = I915_DISPLAY_PORT_INTERRUPT |
2967 I915_DISPLAY_PIPE_A_EVENT_INTERRUPT |
Ville Syrjäläebf5f922017-04-27 19:02:22 +03002968 I915_DISPLAY_PIPE_B_EVENT_INTERRUPT |
2969 I915_LPE_PIPE_A_INTERRUPT |
2970 I915_LPE_PIPE_B_INTERRUPT;
2971
Ville Syrjälä8bb61302016-04-12 18:56:44 +03002972 if (IS_CHERRYVIEW(dev_priv))
Ville Syrjäläebf5f922017-04-27 19:02:22 +03002973 enable_mask |= I915_DISPLAY_PIPE_C_EVENT_INTERRUPT |
2974 I915_LPE_PIPE_C_INTERRUPT;
Ville Syrjälä6b7eafc2016-04-11 16:56:29 +03002975
2976 WARN_ON(dev_priv->irq_mask != ~0);
2977
Ville Syrjälä9ab981f2016-04-11 16:56:28 +03002978 dev_priv->irq_mask = ~enable_mask;
Ville Syrjälä8bb61302016-04-12 18:56:44 +03002979
Ville Syrjälä9ab981f2016-04-11 16:56:28 +03002980 GEN5_IRQ_INIT(VLV_, dev_priv->irq_mask, enable_mask);
Ville Syrjälä8bb61302016-04-12 18:56:44 +03002981}
2982
2983/* drm_dma.h hooks
2984*/
2985static void ironlake_irq_reset(struct drm_device *dev)
2986{
Chris Wilsonfac5e232016-07-04 11:34:36 +01002987 struct drm_i915_private *dev_priv = to_i915(dev);
Ville Syrjälä8bb61302016-04-12 18:56:44 +03002988
2989 I915_WRITE(HWSTAM, 0xffffffff);
2990
2991 GEN5_IRQ_RESET(DE);
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002992 if (IS_GEN7(dev_priv))
Ville Syrjälä8bb61302016-04-12 18:56:44 +03002993 I915_WRITE(GEN7_ERR_INT, 0xffffffff);
2994
Tvrtko Ursulinb243f532016-11-16 08:55:38 +00002995 gen5_gt_irq_reset(dev_priv);
Ville Syrjälä8bb61302016-04-12 18:56:44 +03002996
Tvrtko Ursulinb243f532016-11-16 08:55:38 +00002997 ibx_irq_reset(dev_priv);
Ville Syrjälä8bb61302016-04-12 18:56:44 +03002998}
2999
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003000static void valleyview_irq_preinstall(struct drm_device *dev)
3001{
Chris Wilsonfac5e232016-07-04 11:34:36 +01003002 struct drm_i915_private *dev_priv = to_i915(dev);
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003003
Ville Syrjälä34c7b8a2016-04-13 21:19:48 +03003004 I915_WRITE(VLV_MASTER_IER, 0);
3005 POSTING_READ(VLV_MASTER_IER);
3006
Tvrtko Ursulinb243f532016-11-16 08:55:38 +00003007 gen5_gt_irq_reset(dev_priv);
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003008
Ville Syrjäläad22d102016-04-12 18:56:14 +03003009 spin_lock_irq(&dev_priv->irq_lock);
Ville Syrjälä99182712016-04-11 16:56:25 +03003010 if (dev_priv->display_irqs_enabled)
3011 vlv_display_irq_reset(dev_priv);
Ville Syrjäläad22d102016-04-12 18:56:14 +03003012 spin_unlock_irq(&dev_priv->irq_lock);
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003013}
3014
Daniel Vetterd6e3cca2014-05-22 22:18:22 +02003015static void gen8_gt_irq_reset(struct drm_i915_private *dev_priv)
3016{
3017 GEN8_IRQ_RESET_NDX(GT, 0);
3018 GEN8_IRQ_RESET_NDX(GT, 1);
3019 GEN8_IRQ_RESET_NDX(GT, 2);
3020 GEN8_IRQ_RESET_NDX(GT, 3);
3021}
3022
Paulo Zanoni823f6b32014-04-01 15:37:26 -03003023static void gen8_irq_reset(struct drm_device *dev)
Ben Widawskyabd58f02013-11-02 21:07:09 -07003024{
Chris Wilsonfac5e232016-07-04 11:34:36 +01003025 struct drm_i915_private *dev_priv = to_i915(dev);
Ben Widawskyabd58f02013-11-02 21:07:09 -07003026 int pipe;
3027
Ben Widawskyabd58f02013-11-02 21:07:09 -07003028 I915_WRITE(GEN8_MASTER_IRQ, 0);
3029 POSTING_READ(GEN8_MASTER_IRQ);
3030
Daniel Vetterd6e3cca2014-05-22 22:18:22 +02003031 gen8_gt_irq_reset(dev_priv);
Ben Widawskyabd58f02013-11-02 21:07:09 -07003032
Damien Lespiau055e3932014-08-18 13:49:10 +01003033 for_each_pipe(dev_priv, pipe)
Daniel Vetterf458ebb2014-09-30 10:56:39 +02003034 if (intel_display_power_is_enabled(dev_priv,
3035 POWER_DOMAIN_PIPE(pipe)))
Paulo Zanoni813bde42014-07-04 11:50:29 -03003036 GEN8_IRQ_RESET_NDX(DE_PIPE, pipe);
Ben Widawskyabd58f02013-11-02 21:07:09 -07003037
Paulo Zanonif86f3fb2014-04-01 15:37:14 -03003038 GEN5_IRQ_RESET(GEN8_DE_PORT_);
3039 GEN5_IRQ_RESET(GEN8_DE_MISC_);
3040 GEN5_IRQ_RESET(GEN8_PCU_);
Ben Widawskyabd58f02013-11-02 21:07:09 -07003041
Tvrtko Ursulin6e266952016-10-13 11:02:53 +01003042 if (HAS_PCH_SPLIT(dev_priv))
Tvrtko Ursulinb243f532016-11-16 08:55:38 +00003043 ibx_irq_reset(dev_priv);
Ben Widawskyabd58f02013-11-02 21:07:09 -07003044}
Ben Widawskyabd58f02013-11-02 21:07:09 -07003045
Damien Lespiau4c6c03b2015-03-06 18:50:48 +00003046void gen8_irq_power_well_post_enable(struct drm_i915_private *dev_priv,
3047 unsigned int pipe_mask)
Paulo Zanonid49bdb02014-07-04 11:50:31 -03003048{
Paulo Zanoni1180e202014-10-07 18:02:52 -03003049 uint32_t extra_ier = GEN8_PIPE_VBLANK | GEN8_PIPE_FIFO_UNDERRUN;
Ville Syrjälä6831f3e2016-02-19 20:47:31 +02003050 enum pipe pipe;
Paulo Zanonid49bdb02014-07-04 11:50:31 -03003051
Daniel Vetter13321782014-09-15 14:55:29 +02003052 spin_lock_irq(&dev_priv->irq_lock);
Ville Syrjälä6831f3e2016-02-19 20:47:31 +02003053 for_each_pipe_masked(dev_priv, pipe, pipe_mask)
3054 GEN8_IRQ_INIT_NDX(DE_PIPE, pipe,
3055 dev_priv->de_irq_mask[pipe],
3056 ~dev_priv->de_irq_mask[pipe] | extra_ier);
Daniel Vetter13321782014-09-15 14:55:29 +02003057 spin_unlock_irq(&dev_priv->irq_lock);
Paulo Zanonid49bdb02014-07-04 11:50:31 -03003058}
3059
Ville Syrjäläaae8ba82016-02-19 20:47:30 +02003060void gen8_irq_power_well_pre_disable(struct drm_i915_private *dev_priv,
3061 unsigned int pipe_mask)
3062{
Ville Syrjälä6831f3e2016-02-19 20:47:31 +02003063 enum pipe pipe;
3064
Ville Syrjäläaae8ba82016-02-19 20:47:30 +02003065 spin_lock_irq(&dev_priv->irq_lock);
Ville Syrjälä6831f3e2016-02-19 20:47:31 +02003066 for_each_pipe_masked(dev_priv, pipe, pipe_mask)
3067 GEN8_IRQ_RESET_NDX(DE_PIPE, pipe);
Ville Syrjäläaae8ba82016-02-19 20:47:30 +02003068 spin_unlock_irq(&dev_priv->irq_lock);
3069
3070 /* make sure we're done processing display irqs */
Chris Wilson91c8a322016-07-05 10:40:23 +01003071 synchronize_irq(dev_priv->drm.irq);
Ville Syrjäläaae8ba82016-02-19 20:47:30 +02003072}
3073
Ville Syrjälä43f328d2014-04-09 20:40:52 +03003074static void cherryview_irq_preinstall(struct drm_device *dev)
3075{
Chris Wilsonfac5e232016-07-04 11:34:36 +01003076 struct drm_i915_private *dev_priv = to_i915(dev);
Ville Syrjälä43f328d2014-04-09 20:40:52 +03003077
3078 I915_WRITE(GEN8_MASTER_IRQ, 0);
3079 POSTING_READ(GEN8_MASTER_IRQ);
3080
Daniel Vetterd6e3cca2014-05-22 22:18:22 +02003081 gen8_gt_irq_reset(dev_priv);
Ville Syrjälä43f328d2014-04-09 20:40:52 +03003082
3083 GEN5_IRQ_RESET(GEN8_PCU_);
3084
Ville Syrjäläad22d102016-04-12 18:56:14 +03003085 spin_lock_irq(&dev_priv->irq_lock);
Ville Syrjälä99182712016-04-11 16:56:25 +03003086 if (dev_priv->display_irqs_enabled)
3087 vlv_display_irq_reset(dev_priv);
Ville Syrjäläad22d102016-04-12 18:56:14 +03003088 spin_unlock_irq(&dev_priv->irq_lock);
Ville Syrjälä43f328d2014-04-09 20:40:52 +03003089}
3090
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01003091static u32 intel_hpd_enabled_irqs(struct drm_i915_private *dev_priv,
Ville Syrjälä87a02102015-08-27 23:55:57 +03003092 const u32 hpd[HPD_NUM_PINS])
3093{
Ville Syrjälä87a02102015-08-27 23:55:57 +03003094 struct intel_encoder *encoder;
3095 u32 enabled_irqs = 0;
3096
Chris Wilson91c8a322016-07-05 10:40:23 +01003097 for_each_intel_encoder(&dev_priv->drm, encoder)
Ville Syrjälä87a02102015-08-27 23:55:57 +03003098 if (dev_priv->hotplug.stats[encoder->hpd_pin].state == HPD_ENABLED)
3099 enabled_irqs |= hpd[encoder->hpd_pin];
3100
3101 return enabled_irqs;
3102}
3103
Imre Deak1a56b1a2017-01-27 11:39:21 +02003104static void ibx_hpd_detection_setup(struct drm_i915_private *dev_priv)
3105{
3106 u32 hotplug;
3107
3108 /*
3109 * Enable digital hotplug on the PCH, and configure the DP short pulse
3110 * duration to 2ms (which is the minimum in the Display Port spec).
3111 * The pulse duration bits are reserved on LPT+.
3112 */
3113 hotplug = I915_READ(PCH_PORT_HOTPLUG);
3114 hotplug &= ~(PORTB_PULSE_DURATION_MASK |
3115 PORTC_PULSE_DURATION_MASK |
3116 PORTD_PULSE_DURATION_MASK);
3117 hotplug |= PORTB_HOTPLUG_ENABLE | PORTB_PULSE_DURATION_2ms;
3118 hotplug |= PORTC_HOTPLUG_ENABLE | PORTC_PULSE_DURATION_2ms;
3119 hotplug |= PORTD_HOTPLUG_ENABLE | PORTD_PULSE_DURATION_2ms;
3120 /*
3121 * When CPU and PCH are on the same package, port A
3122 * HPD must be enabled in both north and south.
3123 */
3124 if (HAS_PCH_LPT_LP(dev_priv))
3125 hotplug |= PORTA_HOTPLUG_ENABLE;
3126 I915_WRITE(PCH_PORT_HOTPLUG, hotplug);
3127}
3128
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01003129static void ibx_hpd_irq_setup(struct drm_i915_private *dev_priv)
Keith Packard7fe0b972011-09-19 13:31:02 -07003130{
Imre Deak1a56b1a2017-01-27 11:39:21 +02003131 u32 hotplug_irqs, enabled_irqs;
Keith Packard7fe0b972011-09-19 13:31:02 -07003132
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01003133 if (HAS_PCH_IBX(dev_priv)) {
Daniel Vetterfee884e2013-07-04 23:35:21 +02003134 hotplug_irqs = SDE_HOTPLUG_MASK;
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01003135 enabled_irqs = intel_hpd_enabled_irqs(dev_priv, hpd_ibx);
Daniel Vetter82a28bc2013-03-27 15:55:01 +01003136 } else {
Daniel Vetterfee884e2013-07-04 23:35:21 +02003137 hotplug_irqs = SDE_HOTPLUG_MASK_CPT;
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01003138 enabled_irqs = intel_hpd_enabled_irqs(dev_priv, hpd_cpt);
Daniel Vetter82a28bc2013-03-27 15:55:01 +01003139 }
3140
Daniel Vetterfee884e2013-07-04 23:35:21 +02003141 ibx_display_interrupt_update(dev_priv, hotplug_irqs, enabled_irqs);
Daniel Vetter82a28bc2013-03-27 15:55:01 +01003142
Imre Deak1a56b1a2017-01-27 11:39:21 +02003143 ibx_hpd_detection_setup(dev_priv);
Ville Syrjälä6dbf30c2015-08-27 23:56:02 +03003144}
Xiong Zhang26951ca2015-08-17 15:55:50 +08003145
Imre Deak2a57d9c2017-01-27 11:39:18 +02003146static void spt_hpd_detection_setup(struct drm_i915_private *dev_priv)
3147{
3148 u32 hotplug;
3149
3150 /* Enable digital hotplug on the PCH */
3151 hotplug = I915_READ(PCH_PORT_HOTPLUG);
3152 hotplug |= PORTA_HOTPLUG_ENABLE |
3153 PORTB_HOTPLUG_ENABLE |
3154 PORTC_HOTPLUG_ENABLE |
3155 PORTD_HOTPLUG_ENABLE;
3156 I915_WRITE(PCH_PORT_HOTPLUG, hotplug);
3157
3158 hotplug = I915_READ(PCH_PORT_HOTPLUG2);
3159 hotplug |= PORTE_HOTPLUG_ENABLE;
3160 I915_WRITE(PCH_PORT_HOTPLUG2, hotplug);
3161}
3162
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01003163static void spt_hpd_irq_setup(struct drm_i915_private *dev_priv)
Ville Syrjälä6dbf30c2015-08-27 23:56:02 +03003164{
Imre Deak2a57d9c2017-01-27 11:39:18 +02003165 u32 hotplug_irqs, enabled_irqs;
Ville Syrjälä6dbf30c2015-08-27 23:56:02 +03003166
3167 hotplug_irqs = SDE_HOTPLUG_MASK_SPT;
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01003168 enabled_irqs = intel_hpd_enabled_irqs(dev_priv, hpd_spt);
Ville Syrjälä6dbf30c2015-08-27 23:56:02 +03003169
3170 ibx_display_interrupt_update(dev_priv, hotplug_irqs, enabled_irqs);
3171
Imre Deak2a57d9c2017-01-27 11:39:18 +02003172 spt_hpd_detection_setup(dev_priv);
Keith Packard7fe0b972011-09-19 13:31:02 -07003173}
3174
Imre Deak1a56b1a2017-01-27 11:39:21 +02003175static void ilk_hpd_detection_setup(struct drm_i915_private *dev_priv)
3176{
3177 u32 hotplug;
3178
3179 /*
3180 * Enable digital hotplug on the CPU, and configure the DP short pulse
3181 * duration to 2ms (which is the minimum in the Display Port spec)
3182 * The pulse duration bits are reserved on HSW+.
3183 */
3184 hotplug = I915_READ(DIGITAL_PORT_HOTPLUG_CNTRL);
3185 hotplug &= ~DIGITAL_PORTA_PULSE_DURATION_MASK;
3186 hotplug |= DIGITAL_PORTA_HOTPLUG_ENABLE |
3187 DIGITAL_PORTA_PULSE_DURATION_2ms;
3188 I915_WRITE(DIGITAL_PORT_HOTPLUG_CNTRL, hotplug);
3189}
3190
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01003191static void ilk_hpd_irq_setup(struct drm_i915_private *dev_priv)
Ville Syrjäläe4ce95a2015-08-27 23:56:03 +03003192{
Imre Deak1a56b1a2017-01-27 11:39:21 +02003193 u32 hotplug_irqs, enabled_irqs;
Ville Syrjäläe4ce95a2015-08-27 23:56:03 +03003194
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01003195 if (INTEL_GEN(dev_priv) >= 8) {
Ville Syrjälä3a3b3c72015-08-27 23:56:06 +03003196 hotplug_irqs = GEN8_PORT_DP_A_HOTPLUG;
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01003197 enabled_irqs = intel_hpd_enabled_irqs(dev_priv, hpd_bdw);
Ville Syrjälä3a3b3c72015-08-27 23:56:06 +03003198
3199 bdw_update_port_irq(dev_priv, hotplug_irqs, enabled_irqs);
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01003200 } else if (INTEL_GEN(dev_priv) >= 7) {
Ville Syrjälä23bb4cb2015-08-27 23:56:04 +03003201 hotplug_irqs = DE_DP_A_HOTPLUG_IVB;
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01003202 enabled_irqs = intel_hpd_enabled_irqs(dev_priv, hpd_ivb);
Ville Syrjälä3a3b3c72015-08-27 23:56:06 +03003203
3204 ilk_update_display_irq(dev_priv, hotplug_irqs, enabled_irqs);
Ville Syrjälä23bb4cb2015-08-27 23:56:04 +03003205 } else {
3206 hotplug_irqs = DE_DP_A_HOTPLUG;
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01003207 enabled_irqs = intel_hpd_enabled_irqs(dev_priv, hpd_ilk);
Ville Syrjäläe4ce95a2015-08-27 23:56:03 +03003208
Ville Syrjälä3a3b3c72015-08-27 23:56:06 +03003209 ilk_update_display_irq(dev_priv, hotplug_irqs, enabled_irqs);
3210 }
Ville Syrjäläe4ce95a2015-08-27 23:56:03 +03003211
Imre Deak1a56b1a2017-01-27 11:39:21 +02003212 ilk_hpd_detection_setup(dev_priv);
Ville Syrjäläe4ce95a2015-08-27 23:56:03 +03003213
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01003214 ibx_hpd_irq_setup(dev_priv);
Ville Syrjäläe4ce95a2015-08-27 23:56:03 +03003215}
3216
Imre Deak2a57d9c2017-01-27 11:39:18 +02003217static void __bxt_hpd_detection_setup(struct drm_i915_private *dev_priv,
3218 u32 enabled_irqs)
Shashank Sharmae0a20ad2015-03-27 14:54:14 +02003219{
Imre Deak2a57d9c2017-01-27 11:39:18 +02003220 u32 hotplug;
Shashank Sharmae0a20ad2015-03-27 14:54:14 +02003221
Ville Syrjäläa52bb152015-08-27 23:56:11 +03003222 hotplug = I915_READ(PCH_PORT_HOTPLUG);
Imre Deak2a57d9c2017-01-27 11:39:18 +02003223 hotplug |= PORTA_HOTPLUG_ENABLE |
3224 PORTB_HOTPLUG_ENABLE |
3225 PORTC_HOTPLUG_ENABLE;
Shubhangi Shrivastavad252bf62016-03-31 16:11:47 +05303226
3227 DRM_DEBUG_KMS("Invert bit setting: hp_ctl:%x hp_port:%x\n",
3228 hotplug, enabled_irqs);
3229 hotplug &= ~BXT_DDI_HPD_INVERT_MASK;
3230
3231 /*
3232 * For BXT invert bit has to be set based on AOB design
3233 * for HPD detection logic, update it based on VBT fields.
3234 */
Shubhangi Shrivastavad252bf62016-03-31 16:11:47 +05303235 if ((enabled_irqs & BXT_DE_PORT_HP_DDIA) &&
3236 intel_bios_is_port_hpd_inverted(dev_priv, PORT_A))
3237 hotplug |= BXT_DDIA_HPD_INVERT;
3238 if ((enabled_irqs & BXT_DE_PORT_HP_DDIB) &&
3239 intel_bios_is_port_hpd_inverted(dev_priv, PORT_B))
3240 hotplug |= BXT_DDIB_HPD_INVERT;
3241 if ((enabled_irqs & BXT_DE_PORT_HP_DDIC) &&
3242 intel_bios_is_port_hpd_inverted(dev_priv, PORT_C))
3243 hotplug |= BXT_DDIC_HPD_INVERT;
3244
Ville Syrjäläa52bb152015-08-27 23:56:11 +03003245 I915_WRITE(PCH_PORT_HOTPLUG, hotplug);
Shashank Sharmae0a20ad2015-03-27 14:54:14 +02003246}
3247
Imre Deak2a57d9c2017-01-27 11:39:18 +02003248static void bxt_hpd_detection_setup(struct drm_i915_private *dev_priv)
3249{
3250 __bxt_hpd_detection_setup(dev_priv, BXT_DE_PORT_HOTPLUG_MASK);
3251}
3252
3253static void bxt_hpd_irq_setup(struct drm_i915_private *dev_priv)
3254{
3255 u32 hotplug_irqs, enabled_irqs;
3256
3257 enabled_irqs = intel_hpd_enabled_irqs(dev_priv, hpd_bxt);
3258 hotplug_irqs = BXT_DE_PORT_HOTPLUG_MASK;
3259
3260 bdw_update_port_irq(dev_priv, hotplug_irqs, enabled_irqs);
3261
3262 __bxt_hpd_detection_setup(dev_priv, enabled_irqs);
3263}
3264
Paulo Zanonid46da432013-02-08 17:35:15 -02003265static void ibx_irq_postinstall(struct drm_device *dev)
3266{
Chris Wilsonfac5e232016-07-04 11:34:36 +01003267 struct drm_i915_private *dev_priv = to_i915(dev);
Daniel Vetter82a28bc2013-03-27 15:55:01 +01003268 u32 mask;
Paulo Zanonid46da432013-02-08 17:35:15 -02003269
Tvrtko Ursulin6e266952016-10-13 11:02:53 +01003270 if (HAS_PCH_NOP(dev_priv))
Daniel Vetter692a04c2013-05-29 21:43:05 +02003271 return;
3272
Tvrtko Ursulin6e266952016-10-13 11:02:53 +01003273 if (HAS_PCH_IBX(dev_priv))
Daniel Vetter5c673b62014-03-07 20:34:46 +01003274 mask = SDE_GMBUS | SDE_AUX_MASK | SDE_POISON;
Paulo Zanoni105b1222014-04-01 15:37:17 -03003275 else
Daniel Vetter5c673b62014-03-07 20:34:46 +01003276 mask = SDE_GMBUS_CPT | SDE_AUX_MASK_CPT;
Paulo Zanoni86642812013-04-12 17:57:57 -03003277
Ville Syrjäläb51a2842015-09-18 20:03:41 +03003278 gen5_assert_iir_is_zero(dev_priv, SDEIIR);
Paulo Zanonid46da432013-02-08 17:35:15 -02003279 I915_WRITE(SDEIMR, ~mask);
Imre Deak2a57d9c2017-01-27 11:39:18 +02003280
3281 if (HAS_PCH_IBX(dev_priv) || HAS_PCH_CPT(dev_priv) ||
3282 HAS_PCH_LPT(dev_priv))
Imre Deak1a56b1a2017-01-27 11:39:21 +02003283 ibx_hpd_detection_setup(dev_priv);
Imre Deak2a57d9c2017-01-27 11:39:18 +02003284 else
3285 spt_hpd_detection_setup(dev_priv);
Paulo Zanonid46da432013-02-08 17:35:15 -02003286}
3287
Daniel Vetter0a9a8c92013-07-12 22:43:26 +02003288static void gen5_gt_irq_postinstall(struct drm_device *dev)
3289{
Chris Wilsonfac5e232016-07-04 11:34:36 +01003290 struct drm_i915_private *dev_priv = to_i915(dev);
Daniel Vetter0a9a8c92013-07-12 22:43:26 +02003291 u32 pm_irqs, gt_irqs;
3292
3293 pm_irqs = gt_irqs = 0;
3294
3295 dev_priv->gt_irq_mask = ~0;
Tvrtko Ursulin3c9192b2016-10-13 11:03:05 +01003296 if (HAS_L3_DPF(dev_priv)) {
Daniel Vetter0a9a8c92013-07-12 22:43:26 +02003297 /* L3 parity interrupt is always unmasked. */
Tvrtko Ursulin772c2a52016-10-13 11:03:01 +01003298 dev_priv->gt_irq_mask = ~GT_PARITY_ERROR(dev_priv);
3299 gt_irqs |= GT_PARITY_ERROR(dev_priv);
Daniel Vetter0a9a8c92013-07-12 22:43:26 +02003300 }
3301
3302 gt_irqs |= GT_RENDER_USER_INTERRUPT;
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01003303 if (IS_GEN5(dev_priv)) {
Chris Wilsonf8973c22016-07-01 17:23:21 +01003304 gt_irqs |= ILK_BSD_USER_INTERRUPT;
Daniel Vetter0a9a8c92013-07-12 22:43:26 +02003305 } else {
3306 gt_irqs |= GT_BLT_USER_INTERRUPT | GT_BSD_USER_INTERRUPT;
3307 }
3308
Paulo Zanoni35079892014-04-01 15:37:15 -03003309 GEN5_IRQ_INIT(GT, dev_priv->gt_irq_mask, gt_irqs);
Daniel Vetter0a9a8c92013-07-12 22:43:26 +02003310
Tvrtko Ursulinb243f532016-11-16 08:55:38 +00003311 if (INTEL_GEN(dev_priv) >= 6) {
Imre Deak78e68d32014-12-15 18:59:27 +02003312 /*
3313 * RPS interrupts will get enabled/disabled on demand when RPS
3314 * itself is enabled/disabled.
3315 */
Akash Goelf4e9af42016-10-12 21:54:30 +05303316 if (HAS_VEBOX(dev_priv)) {
Daniel Vetter0a9a8c92013-07-12 22:43:26 +02003317 pm_irqs |= PM_VEBOX_USER_INTERRUPT;
Akash Goelf4e9af42016-10-12 21:54:30 +05303318 dev_priv->pm_ier |= PM_VEBOX_USER_INTERRUPT;
3319 }
Daniel Vetter0a9a8c92013-07-12 22:43:26 +02003320
Akash Goelf4e9af42016-10-12 21:54:30 +05303321 dev_priv->pm_imr = 0xffffffff;
3322 GEN5_IRQ_INIT(GEN6_PM, dev_priv->pm_imr, pm_irqs);
Daniel Vetter0a9a8c92013-07-12 22:43:26 +02003323 }
3324}
3325
Jesse Barnesf71d4af2011-06-28 13:00:41 -07003326static int ironlake_irq_postinstall(struct drm_device *dev)
Zhenyu Wang036a4a72009-06-08 14:40:19 +08003327{
Chris Wilsonfac5e232016-07-04 11:34:36 +01003328 struct drm_i915_private *dev_priv = to_i915(dev);
Paulo Zanoni8e76f8d2013-07-12 20:01:56 -03003329 u32 display_mask, extra_mask;
3330
Tvrtko Ursulinb243f532016-11-16 08:55:38 +00003331 if (INTEL_GEN(dev_priv) >= 7) {
Paulo Zanoni8e76f8d2013-07-12 20:01:56 -03003332 display_mask = (DE_MASTER_IRQ_CONTROL | DE_GSE_IVB |
3333 DE_PCH_EVENT_IVB | DE_PLANEC_FLIP_DONE_IVB |
3334 DE_PLANEB_FLIP_DONE_IVB |
Daniel Vetter5c673b62014-03-07 20:34:46 +01003335 DE_PLANEA_FLIP_DONE_IVB | DE_AUX_CHANNEL_A_IVB);
Paulo Zanoni8e76f8d2013-07-12 20:01:56 -03003336 extra_mask = (DE_PIPEC_VBLANK_IVB | DE_PIPEB_VBLANK_IVB |
Ville Syrjälä23bb4cb2015-08-27 23:56:04 +03003337 DE_PIPEA_VBLANK_IVB | DE_ERR_INT_IVB |
3338 DE_DP_A_HOTPLUG_IVB);
Paulo Zanoni8e76f8d2013-07-12 20:01:56 -03003339 } else {
3340 display_mask = (DE_MASTER_IRQ_CONTROL | DE_GSE | DE_PCH_EVENT |
3341 DE_PLANEA_FLIP_DONE | DE_PLANEB_FLIP_DONE |
Daniel Vetter5b3a8562013-10-16 22:55:48 +02003342 DE_AUX_CHANNEL_A |
Daniel Vetter5b3a8562013-10-16 22:55:48 +02003343 DE_PIPEB_CRC_DONE | DE_PIPEA_CRC_DONE |
3344 DE_POISON);
Ville Syrjäläe4ce95a2015-08-27 23:56:03 +03003345 extra_mask = (DE_PIPEA_VBLANK | DE_PIPEB_VBLANK | DE_PCU_EVENT |
3346 DE_PIPEB_FIFO_UNDERRUN | DE_PIPEA_FIFO_UNDERRUN |
3347 DE_DP_A_HOTPLUG);
Paulo Zanoni8e76f8d2013-07-12 20:01:56 -03003348 }
Zhenyu Wang036a4a72009-06-08 14:40:19 +08003349
Chris Wilson1ec14ad2010-12-04 11:30:53 +00003350 dev_priv->irq_mask = ~display_mask;
Zhenyu Wang036a4a72009-06-08 14:40:19 +08003351
Paulo Zanoni0c841212014-04-01 15:37:27 -03003352 I915_WRITE(HWSTAM, 0xeffe);
3353
Paulo Zanoni622364b2014-04-01 15:37:22 -03003354 ibx_irq_pre_postinstall(dev);
3355
Paulo Zanoni35079892014-04-01 15:37:15 -03003356 GEN5_IRQ_INIT(DE, dev_priv->irq_mask, display_mask | extra_mask);
Zhenyu Wang036a4a72009-06-08 14:40:19 +08003357
Daniel Vetter0a9a8c92013-07-12 22:43:26 +02003358 gen5_gt_irq_postinstall(dev);
Zhenyu Wang036a4a72009-06-08 14:40:19 +08003359
Imre Deak1a56b1a2017-01-27 11:39:21 +02003360 ilk_hpd_detection_setup(dev_priv);
3361
Paulo Zanonid46da432013-02-08 17:35:15 -02003362 ibx_irq_postinstall(dev);
Keith Packard7fe0b972011-09-19 13:31:02 -07003363
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +01003364 if (IS_IRONLAKE_M(dev_priv)) {
Daniel Vetter6005ce42013-06-27 13:44:59 +02003365 /* Enable PCU event interrupts
3366 *
3367 * spinlocking not required here for correctness since interrupt
Daniel Vetter4bc9d432013-06-27 13:44:58 +02003368 * setup is guaranteed to run in single-threaded context. But we
3369 * need it to make the assert_spin_locked happy. */
Daniel Vetterd6207432014-09-15 14:55:27 +02003370 spin_lock_irq(&dev_priv->irq_lock);
Ville Syrjäläfbdedaea2015-11-23 18:06:16 +02003371 ilk_enable_display_irq(dev_priv, DE_PCU_EVENT);
Daniel Vetterd6207432014-09-15 14:55:27 +02003372 spin_unlock_irq(&dev_priv->irq_lock);
Jesse Barnesf97108d2010-01-29 11:27:07 -08003373 }
3374
Zhenyu Wang036a4a72009-06-08 14:40:19 +08003375 return 0;
3376}
3377
Imre Deakf8b79e52014-03-04 19:23:07 +02003378void valleyview_enable_display_irqs(struct drm_i915_private *dev_priv)
3379{
Chris Wilson67520412017-03-02 13:28:01 +00003380 lockdep_assert_held(&dev_priv->irq_lock);
Imre Deakf8b79e52014-03-04 19:23:07 +02003381
3382 if (dev_priv->display_irqs_enabled)
3383 return;
3384
3385 dev_priv->display_irqs_enabled = true;
3386
Ville Syrjäläd6c69802016-04-11 16:56:27 +03003387 if (intel_irqs_enabled(dev_priv)) {
3388 vlv_display_irq_reset(dev_priv);
Ville Syrjäläad22d102016-04-12 18:56:14 +03003389 vlv_display_irq_postinstall(dev_priv);
Ville Syrjäläd6c69802016-04-11 16:56:27 +03003390 }
Imre Deakf8b79e52014-03-04 19:23:07 +02003391}
3392
3393void valleyview_disable_display_irqs(struct drm_i915_private *dev_priv)
3394{
Chris Wilson67520412017-03-02 13:28:01 +00003395 lockdep_assert_held(&dev_priv->irq_lock);
Imre Deakf8b79e52014-03-04 19:23:07 +02003396
3397 if (!dev_priv->display_irqs_enabled)
3398 return;
3399
3400 dev_priv->display_irqs_enabled = false;
3401
Imre Deak950eaba2014-09-08 15:21:09 +03003402 if (intel_irqs_enabled(dev_priv))
Ville Syrjäläad22d102016-04-12 18:56:14 +03003403 vlv_display_irq_reset(dev_priv);
Imre Deakf8b79e52014-03-04 19:23:07 +02003404}
3405
Ville Syrjälä0e6c9a92014-10-30 19:43:00 +02003406
3407static int valleyview_irq_postinstall(struct drm_device *dev)
3408{
Chris Wilsonfac5e232016-07-04 11:34:36 +01003409 struct drm_i915_private *dev_priv = to_i915(dev);
Ville Syrjälä0e6c9a92014-10-30 19:43:00 +02003410
Daniel Vetter0a9a8c92013-07-12 22:43:26 +02003411 gen5_gt_irq_postinstall(dev);
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003412
Ville Syrjäläad22d102016-04-12 18:56:14 +03003413 spin_lock_irq(&dev_priv->irq_lock);
Ville Syrjälä99182712016-04-11 16:56:25 +03003414 if (dev_priv->display_irqs_enabled)
3415 vlv_display_irq_postinstall(dev_priv);
Ville Syrjäläad22d102016-04-12 18:56:14 +03003416 spin_unlock_irq(&dev_priv->irq_lock);
3417
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003418 I915_WRITE(VLV_MASTER_IER, MASTER_INTERRUPT_ENABLE);
Ville Syrjälä34c7b8a2016-04-13 21:19:48 +03003419 POSTING_READ(VLV_MASTER_IER);
Daniel Vetter20afbda2012-12-11 14:05:07 +01003420
3421 return 0;
3422}
3423
Ben Widawskyabd58f02013-11-02 21:07:09 -07003424static void gen8_gt_irq_postinstall(struct drm_i915_private *dev_priv)
3425{
Ben Widawskyabd58f02013-11-02 21:07:09 -07003426 /* These are interrupts we'll toggle with the ring mask register */
3427 uint32_t gt_interrupts[] = {
3428 GT_RENDER_USER_INTERRUPT << GEN8_RCS_IRQ_SHIFT |
Oscar Mateo73d477f2014-07-24 17:04:31 +01003429 GT_CONTEXT_SWITCH_INTERRUPT << GEN8_RCS_IRQ_SHIFT |
Oscar Mateo73d477f2014-07-24 17:04:31 +01003430 GT_RENDER_USER_INTERRUPT << GEN8_BCS_IRQ_SHIFT |
3431 GT_CONTEXT_SWITCH_INTERRUPT << GEN8_BCS_IRQ_SHIFT,
Ben Widawskyabd58f02013-11-02 21:07:09 -07003432 GT_RENDER_USER_INTERRUPT << GEN8_VCS1_IRQ_SHIFT |
Oscar Mateo73d477f2014-07-24 17:04:31 +01003433 GT_CONTEXT_SWITCH_INTERRUPT << GEN8_VCS1_IRQ_SHIFT |
3434 GT_RENDER_USER_INTERRUPT << GEN8_VCS2_IRQ_SHIFT |
3435 GT_CONTEXT_SWITCH_INTERRUPT << GEN8_VCS2_IRQ_SHIFT,
Ben Widawskyabd58f02013-11-02 21:07:09 -07003436 0,
Oscar Mateo73d477f2014-07-24 17:04:31 +01003437 GT_RENDER_USER_INTERRUPT << GEN8_VECS_IRQ_SHIFT |
3438 GT_CONTEXT_SWITCH_INTERRUPT << GEN8_VECS_IRQ_SHIFT
Ben Widawskyabd58f02013-11-02 21:07:09 -07003439 };
3440
Tvrtko Ursulin98735732016-04-19 16:46:08 +01003441 if (HAS_L3_DPF(dev_priv))
3442 gt_interrupts[0] |= GT_RENDER_L3_PARITY_ERROR_INTERRUPT;
3443
Akash Goelf4e9af42016-10-12 21:54:30 +05303444 dev_priv->pm_ier = 0x0;
3445 dev_priv->pm_imr = ~dev_priv->pm_ier;
Deepak S9a2d2d82014-08-22 08:32:40 +05303446 GEN8_IRQ_INIT_NDX(GT, 0, ~gt_interrupts[0], gt_interrupts[0]);
3447 GEN8_IRQ_INIT_NDX(GT, 1, ~gt_interrupts[1], gt_interrupts[1]);
Imre Deak78e68d32014-12-15 18:59:27 +02003448 /*
3449 * RPS interrupts will get enabled/disabled on demand when RPS itself
Sagar Arun Kamble26705e22016-10-12 21:54:31 +05303450 * is enabled/disabled. Same wil be the case for GuC interrupts.
Imre Deak78e68d32014-12-15 18:59:27 +02003451 */
Akash Goelf4e9af42016-10-12 21:54:30 +05303452 GEN8_IRQ_INIT_NDX(GT, 2, dev_priv->pm_imr, dev_priv->pm_ier);
Deepak S9a2d2d82014-08-22 08:32:40 +05303453 GEN8_IRQ_INIT_NDX(GT, 3, ~gt_interrupts[3], gt_interrupts[3]);
Ben Widawskyabd58f02013-11-02 21:07:09 -07003454}
3455
3456static void gen8_de_irq_postinstall(struct drm_i915_private *dev_priv)
3457{
Damien Lespiau770de832014-03-20 20:45:01 +00003458 uint32_t de_pipe_masked = GEN8_PIPE_CDCLK_CRC_DONE;
3459 uint32_t de_pipe_enables;
Ville Syrjälä3a3b3c72015-08-27 23:56:06 +03003460 u32 de_port_masked = GEN8_AUX_CHANNEL_A;
3461 u32 de_port_enables;
Ville Syrjälä11825b02016-05-19 12:14:43 +03003462 u32 de_misc_masked = GEN8_DE_MISC_GSE;
Ville Syrjälä3a3b3c72015-08-27 23:56:06 +03003463 enum pipe pipe;
Damien Lespiau770de832014-03-20 20:45:01 +00003464
Rodrigo Vivib4834a52015-09-02 15:19:24 -07003465 if (INTEL_INFO(dev_priv)->gen >= 9) {
Damien Lespiau770de832014-03-20 20:45:01 +00003466 de_pipe_masked |= GEN9_PIPE_PLANE1_FLIP_DONE |
3467 GEN9_DE_PIPE_IRQ_FAULT_ERRORS;
Ville Syrjälä3a3b3c72015-08-27 23:56:06 +03003468 de_port_masked |= GEN9_AUX_CHANNEL_B | GEN9_AUX_CHANNEL_C |
3469 GEN9_AUX_CHANNEL_D;
Ander Conselvan de Oliveiracc3f90f2016-12-02 10:23:49 +02003470 if (IS_GEN9_LP(dev_priv))
Ville Syrjälä3a3b3c72015-08-27 23:56:06 +03003471 de_port_masked |= BXT_DE_PORT_GMBUS;
3472 } else {
Damien Lespiau770de832014-03-20 20:45:01 +00003473 de_pipe_masked |= GEN8_PIPE_PRIMARY_FLIP_DONE |
3474 GEN8_DE_PIPE_IRQ_FAULT_ERRORS;
Ville Syrjälä3a3b3c72015-08-27 23:56:06 +03003475 }
Damien Lespiau770de832014-03-20 20:45:01 +00003476
3477 de_pipe_enables = de_pipe_masked | GEN8_PIPE_VBLANK |
3478 GEN8_PIPE_FIFO_UNDERRUN;
3479
Ville Syrjälä3a3b3c72015-08-27 23:56:06 +03003480 de_port_enables = de_port_masked;
Ander Conselvan de Oliveiracc3f90f2016-12-02 10:23:49 +02003481 if (IS_GEN9_LP(dev_priv))
Ville Syrjäläa52bb152015-08-27 23:56:11 +03003482 de_port_enables |= BXT_DE_PORT_HOTPLUG_MASK;
3483 else if (IS_BROADWELL(dev_priv))
Ville Syrjälä3a3b3c72015-08-27 23:56:06 +03003484 de_port_enables |= GEN8_PORT_DP_A_HOTPLUG;
3485
Daniel Vetter13b3a0a2013-11-07 15:31:52 +01003486 dev_priv->de_irq_mask[PIPE_A] = ~de_pipe_masked;
3487 dev_priv->de_irq_mask[PIPE_B] = ~de_pipe_masked;
3488 dev_priv->de_irq_mask[PIPE_C] = ~de_pipe_masked;
Ben Widawskyabd58f02013-11-02 21:07:09 -07003489
Damien Lespiau055e3932014-08-18 13:49:10 +01003490 for_each_pipe(dev_priv, pipe)
Daniel Vetterf458ebb2014-09-30 10:56:39 +02003491 if (intel_display_power_is_enabled(dev_priv,
Paulo Zanoni813bde42014-07-04 11:50:29 -03003492 POWER_DOMAIN_PIPE(pipe)))
3493 GEN8_IRQ_INIT_NDX(DE_PIPE, pipe,
3494 dev_priv->de_irq_mask[pipe],
3495 de_pipe_enables);
Ben Widawskyabd58f02013-11-02 21:07:09 -07003496
Ville Syrjälä3a3b3c72015-08-27 23:56:06 +03003497 GEN5_IRQ_INIT(GEN8_DE_PORT_, ~de_port_masked, de_port_enables);
Ville Syrjälä11825b02016-05-19 12:14:43 +03003498 GEN5_IRQ_INIT(GEN8_DE_MISC_, ~de_misc_masked, de_misc_masked);
Imre Deak2a57d9c2017-01-27 11:39:18 +02003499
3500 if (IS_GEN9_LP(dev_priv))
3501 bxt_hpd_detection_setup(dev_priv);
Imre Deak1a56b1a2017-01-27 11:39:21 +02003502 else if (IS_BROADWELL(dev_priv))
3503 ilk_hpd_detection_setup(dev_priv);
Ben Widawskyabd58f02013-11-02 21:07:09 -07003504}
3505
3506static int gen8_irq_postinstall(struct drm_device *dev)
3507{
Chris Wilsonfac5e232016-07-04 11:34:36 +01003508 struct drm_i915_private *dev_priv = to_i915(dev);
Ben Widawskyabd58f02013-11-02 21:07:09 -07003509
Tvrtko Ursulin6e266952016-10-13 11:02:53 +01003510 if (HAS_PCH_SPLIT(dev_priv))
Shashank Sharma266ea3d2014-08-22 17:40:42 +05303511 ibx_irq_pre_postinstall(dev);
Paulo Zanoni622364b2014-04-01 15:37:22 -03003512
Ben Widawskyabd58f02013-11-02 21:07:09 -07003513 gen8_gt_irq_postinstall(dev_priv);
3514 gen8_de_irq_postinstall(dev_priv);
3515
Tvrtko Ursulin6e266952016-10-13 11:02:53 +01003516 if (HAS_PCH_SPLIT(dev_priv))
Shashank Sharma266ea3d2014-08-22 17:40:42 +05303517 ibx_irq_postinstall(dev);
Ben Widawskyabd58f02013-11-02 21:07:09 -07003518
Ville Syrjäläe5328c42016-04-13 21:19:47 +03003519 I915_WRITE(GEN8_MASTER_IRQ, GEN8_MASTER_IRQ_CONTROL);
Ben Widawskyabd58f02013-11-02 21:07:09 -07003520 POSTING_READ(GEN8_MASTER_IRQ);
3521
3522 return 0;
3523}
3524
Ville Syrjälä43f328d2014-04-09 20:40:52 +03003525static int cherryview_irq_postinstall(struct drm_device *dev)
3526{
Chris Wilsonfac5e232016-07-04 11:34:36 +01003527 struct drm_i915_private *dev_priv = to_i915(dev);
Ville Syrjälä43f328d2014-04-09 20:40:52 +03003528
Ville Syrjälä43f328d2014-04-09 20:40:52 +03003529 gen8_gt_irq_postinstall(dev_priv);
3530
Ville Syrjäläad22d102016-04-12 18:56:14 +03003531 spin_lock_irq(&dev_priv->irq_lock);
Ville Syrjälä99182712016-04-11 16:56:25 +03003532 if (dev_priv->display_irqs_enabled)
3533 vlv_display_irq_postinstall(dev_priv);
Ville Syrjäläad22d102016-04-12 18:56:14 +03003534 spin_unlock_irq(&dev_priv->irq_lock);
3535
Ville Syrjäläe5328c42016-04-13 21:19:47 +03003536 I915_WRITE(GEN8_MASTER_IRQ, GEN8_MASTER_IRQ_CONTROL);
Ville Syrjälä43f328d2014-04-09 20:40:52 +03003537 POSTING_READ(GEN8_MASTER_IRQ);
3538
3539 return 0;
3540}
3541
Ben Widawskyabd58f02013-11-02 21:07:09 -07003542static void gen8_irq_uninstall(struct drm_device *dev)
3543{
Chris Wilsonfac5e232016-07-04 11:34:36 +01003544 struct drm_i915_private *dev_priv = to_i915(dev);
Ben Widawskyabd58f02013-11-02 21:07:09 -07003545
3546 if (!dev_priv)
3547 return;
3548
Paulo Zanoni823f6b32014-04-01 15:37:26 -03003549 gen8_irq_reset(dev);
Ben Widawskyabd58f02013-11-02 21:07:09 -07003550}
3551
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003552static void valleyview_irq_uninstall(struct drm_device *dev)
3553{
Chris Wilsonfac5e232016-07-04 11:34:36 +01003554 struct drm_i915_private *dev_priv = to_i915(dev);
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003555
3556 if (!dev_priv)
3557 return;
3558
Imre Deak843d0e72014-04-14 20:24:23 +03003559 I915_WRITE(VLV_MASTER_IER, 0);
Ville Syrjälä34c7b8a2016-04-13 21:19:48 +03003560 POSTING_READ(VLV_MASTER_IER);
Imre Deak843d0e72014-04-14 20:24:23 +03003561
Tvrtko Ursulinb243f532016-11-16 08:55:38 +00003562 gen5_gt_irq_reset(dev_priv);
Ville Syrjälä893fce82014-10-30 19:42:56 +02003563
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003564 I915_WRITE(HWSTAM, 0xffffffff);
Imre Deakf8b79e52014-03-04 19:23:07 +02003565
Ville Syrjäläad22d102016-04-12 18:56:14 +03003566 spin_lock_irq(&dev_priv->irq_lock);
Ville Syrjälä99182712016-04-11 16:56:25 +03003567 if (dev_priv->display_irqs_enabled)
3568 vlv_display_irq_reset(dev_priv);
Ville Syrjäläad22d102016-04-12 18:56:14 +03003569 spin_unlock_irq(&dev_priv->irq_lock);
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003570}
3571
Ville Syrjälä43f328d2014-04-09 20:40:52 +03003572static void cherryview_irq_uninstall(struct drm_device *dev)
3573{
Chris Wilsonfac5e232016-07-04 11:34:36 +01003574 struct drm_i915_private *dev_priv = to_i915(dev);
Ville Syrjälä43f328d2014-04-09 20:40:52 +03003575
3576 if (!dev_priv)
3577 return;
3578
3579 I915_WRITE(GEN8_MASTER_IRQ, 0);
3580 POSTING_READ(GEN8_MASTER_IRQ);
3581
Ville Syrjäläa2c30fb2014-10-30 19:42:52 +02003582 gen8_gt_irq_reset(dev_priv);
Ville Syrjälä43f328d2014-04-09 20:40:52 +03003583
Ville Syrjäläa2c30fb2014-10-30 19:42:52 +02003584 GEN5_IRQ_RESET(GEN8_PCU_);
Ville Syrjälä43f328d2014-04-09 20:40:52 +03003585
Ville Syrjäläad22d102016-04-12 18:56:14 +03003586 spin_lock_irq(&dev_priv->irq_lock);
Ville Syrjälä99182712016-04-11 16:56:25 +03003587 if (dev_priv->display_irqs_enabled)
3588 vlv_display_irq_reset(dev_priv);
Ville Syrjäläad22d102016-04-12 18:56:14 +03003589 spin_unlock_irq(&dev_priv->irq_lock);
Ville Syrjälä43f328d2014-04-09 20:40:52 +03003590}
3591
Jesse Barnesf71d4af2011-06-28 13:00:41 -07003592static void ironlake_irq_uninstall(struct drm_device *dev)
Zhenyu Wang036a4a72009-06-08 14:40:19 +08003593{
Chris Wilsonfac5e232016-07-04 11:34:36 +01003594 struct drm_i915_private *dev_priv = to_i915(dev);
Jesse Barnes46979952011-04-07 13:53:55 -07003595
3596 if (!dev_priv)
3597 return;
3598
Paulo Zanonibe30b292014-04-01 15:37:25 -03003599 ironlake_irq_reset(dev);
Zhenyu Wang036a4a72009-06-08 14:40:19 +08003600}
3601
Chris Wilsonc2798b12012-04-22 21:13:57 +01003602static void i8xx_irq_preinstall(struct drm_device * dev)
3603{
Chris Wilsonfac5e232016-07-04 11:34:36 +01003604 struct drm_i915_private *dev_priv = to_i915(dev);
Chris Wilsonc2798b12012-04-22 21:13:57 +01003605 int pipe;
3606
Damien Lespiau055e3932014-08-18 13:49:10 +01003607 for_each_pipe(dev_priv, pipe)
Chris Wilsonc2798b12012-04-22 21:13:57 +01003608 I915_WRITE(PIPESTAT(pipe), 0);
3609 I915_WRITE16(IMR, 0xffff);
3610 I915_WRITE16(IER, 0x0);
3611 POSTING_READ16(IER);
3612}
3613
3614static int i8xx_irq_postinstall(struct drm_device *dev)
3615{
Chris Wilsonfac5e232016-07-04 11:34:36 +01003616 struct drm_i915_private *dev_priv = to_i915(dev);
Chris Wilsonc2798b12012-04-22 21:13:57 +01003617
Chris Wilsonc2798b12012-04-22 21:13:57 +01003618 I915_WRITE16(EMR,
3619 ~(I915_ERROR_PAGE_TABLE | I915_ERROR_MEMORY_REFRESH));
3620
3621 /* Unmask the interrupts that we always want on. */
3622 dev_priv->irq_mask =
3623 ~(I915_DISPLAY_PIPE_A_EVENT_INTERRUPT |
3624 I915_DISPLAY_PIPE_B_EVENT_INTERRUPT |
3625 I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT |
Daniel Vetter37ef01a2015-04-01 13:43:46 +02003626 I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT);
Chris Wilsonc2798b12012-04-22 21:13:57 +01003627 I915_WRITE16(IMR, dev_priv->irq_mask);
3628
3629 I915_WRITE16(IER,
3630 I915_DISPLAY_PIPE_A_EVENT_INTERRUPT |
3631 I915_DISPLAY_PIPE_B_EVENT_INTERRUPT |
Chris Wilsonc2798b12012-04-22 21:13:57 +01003632 I915_USER_INTERRUPT);
3633 POSTING_READ16(IER);
3634
Daniel Vetter379ef822013-10-16 22:55:56 +02003635 /* Interrupt setup is already guaranteed to be single-threaded, this is
3636 * just to make the assert_spin_locked check happy. */
Daniel Vetterd6207432014-09-15 14:55:27 +02003637 spin_lock_irq(&dev_priv->irq_lock);
Imre Deak755e9012014-02-10 18:42:47 +02003638 i915_enable_pipestat(dev_priv, PIPE_A, PIPE_CRC_DONE_INTERRUPT_STATUS);
3639 i915_enable_pipestat(dev_priv, PIPE_B, PIPE_CRC_DONE_INTERRUPT_STATUS);
Daniel Vetterd6207432014-09-15 14:55:27 +02003640 spin_unlock_irq(&dev_priv->irq_lock);
Daniel Vetter379ef822013-10-16 22:55:56 +02003641
Chris Wilsonc2798b12012-04-22 21:13:57 +01003642 return 0;
3643}
3644
Daniel Vetter5a21b662016-05-24 17:13:53 +02003645/*
3646 * Returns true when a page flip has completed.
3647 */
3648static bool i8xx_handle_vblank(struct drm_i915_private *dev_priv,
3649 int plane, int pipe, u32 iir)
3650{
3651 u16 flip_pending = DISPLAY_PLANE_FLIP_PENDING(plane);
3652
3653 if (!intel_pipe_handle_vblank(dev_priv, pipe))
3654 return false;
3655
3656 if ((iir & flip_pending) == 0)
3657 goto check_page_flip;
3658
3659 /* We detect FlipDone by looking for the change in PendingFlip from '1'
3660 * to '0' on the following vblank, i.e. IIR has the Pendingflip
3661 * asserted following the MI_DISPLAY_FLIP, but ISR is deasserted, hence
3662 * the flip is completed (no longer pending). Since this doesn't raise
3663 * an interrupt per se, we watch for the change at vblank.
3664 */
3665 if (I915_READ16(ISR) & flip_pending)
3666 goto check_page_flip;
3667
3668 intel_finish_page_flip_cs(dev_priv, pipe);
3669 return true;
3670
3671check_page_flip:
3672 intel_check_page_flip(dev_priv, pipe);
3673 return false;
3674}
3675
Daniel Vetterff1f5252012-10-02 15:10:55 +02003676static irqreturn_t i8xx_irq_handler(int irq, void *arg)
Chris Wilsonc2798b12012-04-22 21:13:57 +01003677{
Daniel Vetter45a83f82014-05-12 19:17:55 +02003678 struct drm_device *dev = arg;
Chris Wilsonfac5e232016-07-04 11:34:36 +01003679 struct drm_i915_private *dev_priv = to_i915(dev);
Chris Wilsonc2798b12012-04-22 21:13:57 +01003680 u16 iir, new_iir;
3681 u32 pipe_stats[2];
Chris Wilsonc2798b12012-04-22 21:13:57 +01003682 int pipe;
3683 u16 flip_mask =
3684 I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT |
3685 I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT;
Imre Deak1f814da2015-12-16 02:52:19 +02003686 irqreturn_t ret;
Chris Wilsonc2798b12012-04-22 21:13:57 +01003687
Imre Deak2dd2a882015-02-24 11:14:30 +02003688 if (!intel_irqs_enabled(dev_priv))
3689 return IRQ_NONE;
3690
Imre Deak1f814da2015-12-16 02:52:19 +02003691 /* IRQs are synced during runtime_suspend, we don't require a wakeref */
3692 disable_rpm_wakeref_asserts(dev_priv);
3693
3694 ret = IRQ_NONE;
Chris Wilsonc2798b12012-04-22 21:13:57 +01003695 iir = I915_READ16(IIR);
3696 if (iir == 0)
Imre Deak1f814da2015-12-16 02:52:19 +02003697 goto out;
Chris Wilsonc2798b12012-04-22 21:13:57 +01003698
3699 while (iir & ~flip_mask) {
3700 /* Can't rely on pipestat interrupt bit in iir as it might
3701 * have been cleared after the pipestat interrupt was received.
3702 * It doesn't set the bit in iir again, but it still produces
3703 * interrupts (for non-MSI).
3704 */
Daniel Vetter222c7f52014-09-15 14:55:28 +02003705 spin_lock(&dev_priv->irq_lock);
Chris Wilsonc2798b12012-04-22 21:13:57 +01003706 if (iir & I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT)
Daniel Vetteraaecdf62014-11-04 15:52:22 +01003707 DRM_DEBUG("Command parser error, iir 0x%08x\n", iir);
Chris Wilsonc2798b12012-04-22 21:13:57 +01003708
Damien Lespiau055e3932014-08-18 13:49:10 +01003709 for_each_pipe(dev_priv, pipe) {
Ville Syrjäläf0f59a02015-11-18 15:33:26 +02003710 i915_reg_t reg = PIPESTAT(pipe);
Chris Wilsonc2798b12012-04-22 21:13:57 +01003711 pipe_stats[pipe] = I915_READ(reg);
3712
3713 /*
3714 * Clear the PIPE*STAT regs before the IIR
3715 */
Ville Syrjälä2d9d2b02014-01-17 11:44:31 +02003716 if (pipe_stats[pipe] & 0x8000ffff)
Chris Wilsonc2798b12012-04-22 21:13:57 +01003717 I915_WRITE(reg, pipe_stats[pipe]);
Chris Wilsonc2798b12012-04-22 21:13:57 +01003718 }
Daniel Vetter222c7f52014-09-15 14:55:28 +02003719 spin_unlock(&dev_priv->irq_lock);
Chris Wilsonc2798b12012-04-22 21:13:57 +01003720
3721 I915_WRITE16(IIR, iir & ~flip_mask);
3722 new_iir = I915_READ16(IIR); /* Flush posted writes */
3723
Chris Wilsonc2798b12012-04-22 21:13:57 +01003724 if (iir & I915_USER_INTERRUPT)
Akash Goel3b3f1652016-10-13 22:44:48 +05303725 notify_ring(dev_priv->engine[RCS]);
Chris Wilsonc2798b12012-04-22 21:13:57 +01003726
Damien Lespiau055e3932014-08-18 13:49:10 +01003727 for_each_pipe(dev_priv, pipe) {
Daniel Vetter5a21b662016-05-24 17:13:53 +02003728 int plane = pipe;
3729 if (HAS_FBC(dev_priv))
3730 plane = !plane;
3731
3732 if (pipe_stats[pipe] & PIPE_VBLANK_INTERRUPT_STATUS &&
3733 i8xx_handle_vblank(dev_priv, plane, pipe, iir))
3734 flip_mask &= ~DISPLAY_PLANE_FLIP_PENDING(plane);
Chris Wilsonc2798b12012-04-22 21:13:57 +01003735
Daniel Vetter4356d582013-10-16 22:55:55 +02003736 if (pipe_stats[pipe] & PIPE_CRC_DONE_INTERRUPT_STATUS)
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01003737 i9xx_pipe_crc_irq_handler(dev_priv, pipe);
Ville Syrjälä2d9d2b02014-01-17 11:44:31 +02003738
Daniel Vetter1f7247c2014-09-30 10:56:48 +02003739 if (pipe_stats[pipe] & PIPE_FIFO_UNDERRUN_STATUS)
3740 intel_cpu_fifo_underrun_irq_handler(dev_priv,
3741 pipe);
Daniel Vetter4356d582013-10-16 22:55:55 +02003742 }
Chris Wilsonc2798b12012-04-22 21:13:57 +01003743
3744 iir = new_iir;
3745 }
Imre Deak1f814da2015-12-16 02:52:19 +02003746 ret = IRQ_HANDLED;
Chris Wilsonc2798b12012-04-22 21:13:57 +01003747
Imre Deak1f814da2015-12-16 02:52:19 +02003748out:
3749 enable_rpm_wakeref_asserts(dev_priv);
3750
3751 return ret;
Chris Wilsonc2798b12012-04-22 21:13:57 +01003752}
3753
3754static void i8xx_irq_uninstall(struct drm_device * dev)
3755{
Chris Wilsonfac5e232016-07-04 11:34:36 +01003756 struct drm_i915_private *dev_priv = to_i915(dev);
Chris Wilsonc2798b12012-04-22 21:13:57 +01003757 int pipe;
3758
Damien Lespiau055e3932014-08-18 13:49:10 +01003759 for_each_pipe(dev_priv, pipe) {
Chris Wilsonc2798b12012-04-22 21:13:57 +01003760 /* Clear enable bits; then clear status bits */
3761 I915_WRITE(PIPESTAT(pipe), 0);
3762 I915_WRITE(PIPESTAT(pipe), I915_READ(PIPESTAT(pipe)));
3763 }
3764 I915_WRITE16(IMR, 0xffff);
3765 I915_WRITE16(IER, 0x0);
3766 I915_WRITE16(IIR, I915_READ16(IIR));
3767}
3768
Chris Wilsona266c7d2012-04-24 22:59:44 +01003769static void i915_irq_preinstall(struct drm_device * dev)
3770{
Chris Wilsonfac5e232016-07-04 11:34:36 +01003771 struct drm_i915_private *dev_priv = to_i915(dev);
Chris Wilsona266c7d2012-04-24 22:59:44 +01003772 int pipe;
3773
Tvrtko Ursulin56b857a2016-11-07 09:29:20 +00003774 if (I915_HAS_HOTPLUG(dev_priv)) {
Egbert Eich0706f172015-09-23 16:15:27 +02003775 i915_hotplug_interrupt_update(dev_priv, 0xffffffff, 0);
Chris Wilsona266c7d2012-04-24 22:59:44 +01003776 I915_WRITE(PORT_HOTPLUG_STAT, I915_READ(PORT_HOTPLUG_STAT));
3777 }
3778
Chris Wilson00d98eb2012-04-24 22:59:48 +01003779 I915_WRITE16(HWSTAM, 0xeffe);
Damien Lespiau055e3932014-08-18 13:49:10 +01003780 for_each_pipe(dev_priv, pipe)
Chris Wilsona266c7d2012-04-24 22:59:44 +01003781 I915_WRITE(PIPESTAT(pipe), 0);
3782 I915_WRITE(IMR, 0xffffffff);
3783 I915_WRITE(IER, 0x0);
3784 POSTING_READ(IER);
3785}
3786
3787static int i915_irq_postinstall(struct drm_device *dev)
3788{
Chris Wilsonfac5e232016-07-04 11:34:36 +01003789 struct drm_i915_private *dev_priv = to_i915(dev);
Chris Wilson38bde182012-04-24 22:59:50 +01003790 u32 enable_mask;
Chris Wilsona266c7d2012-04-24 22:59:44 +01003791
Chris Wilson38bde182012-04-24 22:59:50 +01003792 I915_WRITE(EMR, ~(I915_ERROR_PAGE_TABLE | I915_ERROR_MEMORY_REFRESH));
3793
3794 /* Unmask the interrupts that we always want on. */
3795 dev_priv->irq_mask =
3796 ~(I915_ASLE_INTERRUPT |
3797 I915_DISPLAY_PIPE_A_EVENT_INTERRUPT |
3798 I915_DISPLAY_PIPE_B_EVENT_INTERRUPT |
3799 I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT |
Daniel Vetter37ef01a2015-04-01 13:43:46 +02003800 I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT);
Chris Wilson38bde182012-04-24 22:59:50 +01003801
3802 enable_mask =
3803 I915_ASLE_INTERRUPT |
3804 I915_DISPLAY_PIPE_A_EVENT_INTERRUPT |
3805 I915_DISPLAY_PIPE_B_EVENT_INTERRUPT |
Chris Wilson38bde182012-04-24 22:59:50 +01003806 I915_USER_INTERRUPT;
3807
Tvrtko Ursulin56b857a2016-11-07 09:29:20 +00003808 if (I915_HAS_HOTPLUG(dev_priv)) {
Egbert Eich0706f172015-09-23 16:15:27 +02003809 i915_hotplug_interrupt_update(dev_priv, 0xffffffff, 0);
Daniel Vetter20afbda2012-12-11 14:05:07 +01003810 POSTING_READ(PORT_HOTPLUG_EN);
3811
Chris Wilsona266c7d2012-04-24 22:59:44 +01003812 /* Enable in IER... */
3813 enable_mask |= I915_DISPLAY_PORT_INTERRUPT;
3814 /* and unmask in IMR */
3815 dev_priv->irq_mask &= ~I915_DISPLAY_PORT_INTERRUPT;
3816 }
3817
Chris Wilsona266c7d2012-04-24 22:59:44 +01003818 I915_WRITE(IMR, dev_priv->irq_mask);
3819 I915_WRITE(IER, enable_mask);
3820 POSTING_READ(IER);
3821
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01003822 i915_enable_asle_pipestat(dev_priv);
Daniel Vetter20afbda2012-12-11 14:05:07 +01003823
Daniel Vetter379ef822013-10-16 22:55:56 +02003824 /* Interrupt setup is already guaranteed to be single-threaded, this is
3825 * just to make the assert_spin_locked check happy. */
Daniel Vetterd6207432014-09-15 14:55:27 +02003826 spin_lock_irq(&dev_priv->irq_lock);
Imre Deak755e9012014-02-10 18:42:47 +02003827 i915_enable_pipestat(dev_priv, PIPE_A, PIPE_CRC_DONE_INTERRUPT_STATUS);
3828 i915_enable_pipestat(dev_priv, PIPE_B, PIPE_CRC_DONE_INTERRUPT_STATUS);
Daniel Vetterd6207432014-09-15 14:55:27 +02003829 spin_unlock_irq(&dev_priv->irq_lock);
Daniel Vetter379ef822013-10-16 22:55:56 +02003830
Daniel Vetter20afbda2012-12-11 14:05:07 +01003831 return 0;
3832}
3833
Daniel Vetter5a21b662016-05-24 17:13:53 +02003834/*
3835 * Returns true when a page flip has completed.
3836 */
3837static bool i915_handle_vblank(struct drm_i915_private *dev_priv,
3838 int plane, int pipe, u32 iir)
3839{
3840 u32 flip_pending = DISPLAY_PLANE_FLIP_PENDING(plane);
3841
3842 if (!intel_pipe_handle_vblank(dev_priv, pipe))
3843 return false;
3844
3845 if ((iir & flip_pending) == 0)
3846 goto check_page_flip;
3847
3848 /* We detect FlipDone by looking for the change in PendingFlip from '1'
3849 * to '0' on the following vblank, i.e. IIR has the Pendingflip
3850 * asserted following the MI_DISPLAY_FLIP, but ISR is deasserted, hence
3851 * the flip is completed (no longer pending). Since this doesn't raise
3852 * an interrupt per se, we watch for the change at vblank.
3853 */
3854 if (I915_READ(ISR) & flip_pending)
3855 goto check_page_flip;
3856
3857 intel_finish_page_flip_cs(dev_priv, pipe);
3858 return true;
3859
3860check_page_flip:
3861 intel_check_page_flip(dev_priv, pipe);
3862 return false;
3863}
3864
Daniel Vetterff1f5252012-10-02 15:10:55 +02003865static irqreturn_t i915_irq_handler(int irq, void *arg)
Chris Wilsona266c7d2012-04-24 22:59:44 +01003866{
Daniel Vetter45a83f82014-05-12 19:17:55 +02003867 struct drm_device *dev = arg;
Chris Wilsonfac5e232016-07-04 11:34:36 +01003868 struct drm_i915_private *dev_priv = to_i915(dev);
Chris Wilson8291ee92012-04-24 22:59:47 +01003869 u32 iir, new_iir, pipe_stats[I915_MAX_PIPES];
Chris Wilson38bde182012-04-24 22:59:50 +01003870 u32 flip_mask =
3871 I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT |
3872 I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT;
Chris Wilson38bde182012-04-24 22:59:50 +01003873 int pipe, ret = IRQ_NONE;
Chris Wilsona266c7d2012-04-24 22:59:44 +01003874
Imre Deak2dd2a882015-02-24 11:14:30 +02003875 if (!intel_irqs_enabled(dev_priv))
3876 return IRQ_NONE;
3877
Imre Deak1f814da2015-12-16 02:52:19 +02003878 /* IRQs are synced during runtime_suspend, we don't require a wakeref */
3879 disable_rpm_wakeref_asserts(dev_priv);
3880
Chris Wilsona266c7d2012-04-24 22:59:44 +01003881 iir = I915_READ(IIR);
Chris Wilson38bde182012-04-24 22:59:50 +01003882 do {
3883 bool irq_received = (iir & ~flip_mask) != 0;
Chris Wilson8291ee92012-04-24 22:59:47 +01003884 bool blc_event = false;
Chris Wilsona266c7d2012-04-24 22:59:44 +01003885
3886 /* Can't rely on pipestat interrupt bit in iir as it might
3887 * have been cleared after the pipestat interrupt was received.
3888 * It doesn't set the bit in iir again, but it still produces
3889 * interrupts (for non-MSI).
3890 */
Daniel Vetter222c7f52014-09-15 14:55:28 +02003891 spin_lock(&dev_priv->irq_lock);
Chris Wilsona266c7d2012-04-24 22:59:44 +01003892 if (iir & I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT)
Daniel Vetteraaecdf62014-11-04 15:52:22 +01003893 DRM_DEBUG("Command parser error, iir 0x%08x\n", iir);
Chris Wilsona266c7d2012-04-24 22:59:44 +01003894
Damien Lespiau055e3932014-08-18 13:49:10 +01003895 for_each_pipe(dev_priv, pipe) {
Ville Syrjäläf0f59a02015-11-18 15:33:26 +02003896 i915_reg_t reg = PIPESTAT(pipe);
Chris Wilsona266c7d2012-04-24 22:59:44 +01003897 pipe_stats[pipe] = I915_READ(reg);
3898
Chris Wilson38bde182012-04-24 22:59:50 +01003899 /* Clear the PIPE*STAT regs before the IIR */
Chris Wilsona266c7d2012-04-24 22:59:44 +01003900 if (pipe_stats[pipe] & 0x8000ffff) {
Chris Wilsona266c7d2012-04-24 22:59:44 +01003901 I915_WRITE(reg, pipe_stats[pipe]);
Chris Wilson38bde182012-04-24 22:59:50 +01003902 irq_received = true;
Chris Wilsona266c7d2012-04-24 22:59:44 +01003903 }
3904 }
Daniel Vetter222c7f52014-09-15 14:55:28 +02003905 spin_unlock(&dev_priv->irq_lock);
Chris Wilsona266c7d2012-04-24 22:59:44 +01003906
3907 if (!irq_received)
3908 break;
3909
Chris Wilsona266c7d2012-04-24 22:59:44 +01003910 /* Consume port. Then clear IIR or we'll miss events */
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01003911 if (I915_HAS_HOTPLUG(dev_priv) &&
Ville Syrjälä1ae3c342016-04-13 21:19:54 +03003912 iir & I915_DISPLAY_PORT_INTERRUPT) {
3913 u32 hotplug_status = i9xx_hpd_irq_ack(dev_priv);
3914 if (hotplug_status)
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01003915 i9xx_hpd_irq_handler(dev_priv, hotplug_status);
Ville Syrjälä1ae3c342016-04-13 21:19:54 +03003916 }
Chris Wilsona266c7d2012-04-24 22:59:44 +01003917
Chris Wilson38bde182012-04-24 22:59:50 +01003918 I915_WRITE(IIR, iir & ~flip_mask);
Chris Wilsona266c7d2012-04-24 22:59:44 +01003919 new_iir = I915_READ(IIR); /* Flush posted writes */
3920
Chris Wilsona266c7d2012-04-24 22:59:44 +01003921 if (iir & I915_USER_INTERRUPT)
Akash Goel3b3f1652016-10-13 22:44:48 +05303922 notify_ring(dev_priv->engine[RCS]);
Chris Wilsona266c7d2012-04-24 22:59:44 +01003923
Damien Lespiau055e3932014-08-18 13:49:10 +01003924 for_each_pipe(dev_priv, pipe) {
Daniel Vetter5a21b662016-05-24 17:13:53 +02003925 int plane = pipe;
3926 if (HAS_FBC(dev_priv))
3927 plane = !plane;
3928
3929 if (pipe_stats[pipe] & PIPE_VBLANK_INTERRUPT_STATUS &&
3930 i915_handle_vblank(dev_priv, plane, pipe, iir))
3931 flip_mask &= ~DISPLAY_PLANE_FLIP_PENDING(plane);
Chris Wilsona266c7d2012-04-24 22:59:44 +01003932
3933 if (pipe_stats[pipe] & PIPE_LEGACY_BLC_EVENT_STATUS)
3934 blc_event = true;
Daniel Vetter4356d582013-10-16 22:55:55 +02003935
3936 if (pipe_stats[pipe] & PIPE_CRC_DONE_INTERRUPT_STATUS)
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01003937 i9xx_pipe_crc_irq_handler(dev_priv, pipe);
Ville Syrjälä2d9d2b02014-01-17 11:44:31 +02003938
Daniel Vetter1f7247c2014-09-30 10:56:48 +02003939 if (pipe_stats[pipe] & PIPE_FIFO_UNDERRUN_STATUS)
3940 intel_cpu_fifo_underrun_irq_handler(dev_priv,
3941 pipe);
Chris Wilsona266c7d2012-04-24 22:59:44 +01003942 }
3943
Chris Wilsona266c7d2012-04-24 22:59:44 +01003944 if (blc_event || (iir & I915_ASLE_INTERRUPT))
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01003945 intel_opregion_asle_intr(dev_priv);
Chris Wilsona266c7d2012-04-24 22:59:44 +01003946
3947 /* With MSI, interrupts are only generated when iir
3948 * transitions from zero to nonzero. If another bit got
3949 * set while we were handling the existing iir bits, then
3950 * we would never get another interrupt.
3951 *
3952 * This is fine on non-MSI as well, as if we hit this path
3953 * we avoid exiting the interrupt handler only to generate
3954 * another one.
3955 *
3956 * Note that for MSI this could cause a stray interrupt report
3957 * if an interrupt landed in the time between writing IIR and
3958 * the posting read. This should be rare enough to never
3959 * trigger the 99% of 100,000 interrupts test for disabling
3960 * stray interrupts.
3961 */
Chris Wilson38bde182012-04-24 22:59:50 +01003962 ret = IRQ_HANDLED;
Chris Wilsona266c7d2012-04-24 22:59:44 +01003963 iir = new_iir;
Chris Wilson38bde182012-04-24 22:59:50 +01003964 } while (iir & ~flip_mask);
Chris Wilsona266c7d2012-04-24 22:59:44 +01003965
Imre Deak1f814da2015-12-16 02:52:19 +02003966 enable_rpm_wakeref_asserts(dev_priv);
3967
Chris Wilsona266c7d2012-04-24 22:59:44 +01003968 return ret;
3969}
3970
3971static void i915_irq_uninstall(struct drm_device * dev)
3972{
Chris Wilsonfac5e232016-07-04 11:34:36 +01003973 struct drm_i915_private *dev_priv = to_i915(dev);
Chris Wilsona266c7d2012-04-24 22:59:44 +01003974 int pipe;
3975
Tvrtko Ursulin56b857a2016-11-07 09:29:20 +00003976 if (I915_HAS_HOTPLUG(dev_priv)) {
Egbert Eich0706f172015-09-23 16:15:27 +02003977 i915_hotplug_interrupt_update(dev_priv, 0xffffffff, 0);
Chris Wilsona266c7d2012-04-24 22:59:44 +01003978 I915_WRITE(PORT_HOTPLUG_STAT, I915_READ(PORT_HOTPLUG_STAT));
3979 }
3980
Chris Wilson00d98eb2012-04-24 22:59:48 +01003981 I915_WRITE16(HWSTAM, 0xffff);
Damien Lespiau055e3932014-08-18 13:49:10 +01003982 for_each_pipe(dev_priv, pipe) {
Chris Wilson55b39752012-04-24 22:59:49 +01003983 /* Clear enable bits; then clear status bits */
Chris Wilsona266c7d2012-04-24 22:59:44 +01003984 I915_WRITE(PIPESTAT(pipe), 0);
Chris Wilson55b39752012-04-24 22:59:49 +01003985 I915_WRITE(PIPESTAT(pipe), I915_READ(PIPESTAT(pipe)));
3986 }
Chris Wilsona266c7d2012-04-24 22:59:44 +01003987 I915_WRITE(IMR, 0xffffffff);
3988 I915_WRITE(IER, 0x0);
3989
Chris Wilsona266c7d2012-04-24 22:59:44 +01003990 I915_WRITE(IIR, I915_READ(IIR));
3991}
3992
3993static void i965_irq_preinstall(struct drm_device * dev)
3994{
Chris Wilsonfac5e232016-07-04 11:34:36 +01003995 struct drm_i915_private *dev_priv = to_i915(dev);
Chris Wilsona266c7d2012-04-24 22:59:44 +01003996 int pipe;
3997
Egbert Eich0706f172015-09-23 16:15:27 +02003998 i915_hotplug_interrupt_update(dev_priv, 0xffffffff, 0);
Chris Wilsonadca4732012-05-11 18:01:31 +01003999 I915_WRITE(PORT_HOTPLUG_STAT, I915_READ(PORT_HOTPLUG_STAT));
Chris Wilsona266c7d2012-04-24 22:59:44 +01004000
4001 I915_WRITE(HWSTAM, 0xeffe);
Damien Lespiau055e3932014-08-18 13:49:10 +01004002 for_each_pipe(dev_priv, pipe)
Chris Wilsona266c7d2012-04-24 22:59:44 +01004003 I915_WRITE(PIPESTAT(pipe), 0);
4004 I915_WRITE(IMR, 0xffffffff);
4005 I915_WRITE(IER, 0x0);
4006 POSTING_READ(IER);
4007}
4008
4009static int i965_irq_postinstall(struct drm_device *dev)
4010{
Chris Wilsonfac5e232016-07-04 11:34:36 +01004011 struct drm_i915_private *dev_priv = to_i915(dev);
Chris Wilsonbbba0a92012-04-24 22:59:51 +01004012 u32 enable_mask;
Chris Wilsona266c7d2012-04-24 22:59:44 +01004013 u32 error_mask;
4014
Chris Wilsona266c7d2012-04-24 22:59:44 +01004015 /* Unmask the interrupts that we always want on. */
Chris Wilsonbbba0a92012-04-24 22:59:51 +01004016 dev_priv->irq_mask = ~(I915_ASLE_INTERRUPT |
Chris Wilsonadca4732012-05-11 18:01:31 +01004017 I915_DISPLAY_PORT_INTERRUPT |
Chris Wilsonbbba0a92012-04-24 22:59:51 +01004018 I915_DISPLAY_PIPE_A_EVENT_INTERRUPT |
4019 I915_DISPLAY_PIPE_B_EVENT_INTERRUPT |
4020 I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT |
4021 I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT |
4022 I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT);
4023
4024 enable_mask = ~dev_priv->irq_mask;
Ville Syrjälä21ad8332013-02-19 15:16:39 +02004025 enable_mask &= ~(I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT |
4026 I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT);
Chris Wilsonbbba0a92012-04-24 22:59:51 +01004027 enable_mask |= I915_USER_INTERRUPT;
4028
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01004029 if (IS_G4X(dev_priv))
Chris Wilsonbbba0a92012-04-24 22:59:51 +01004030 enable_mask |= I915_BSD_USER_INTERRUPT;
Chris Wilsona266c7d2012-04-24 22:59:44 +01004031
Daniel Vetterb79480b2013-06-27 17:52:10 +02004032 /* Interrupt setup is already guaranteed to be single-threaded, this is
4033 * just to make the assert_spin_locked check happy. */
Daniel Vetterd6207432014-09-15 14:55:27 +02004034 spin_lock_irq(&dev_priv->irq_lock);
Imre Deak755e9012014-02-10 18:42:47 +02004035 i915_enable_pipestat(dev_priv, PIPE_A, PIPE_GMBUS_INTERRUPT_STATUS);
4036 i915_enable_pipestat(dev_priv, PIPE_A, PIPE_CRC_DONE_INTERRUPT_STATUS);
4037 i915_enable_pipestat(dev_priv, PIPE_B, PIPE_CRC_DONE_INTERRUPT_STATUS);
Daniel Vetterd6207432014-09-15 14:55:27 +02004038 spin_unlock_irq(&dev_priv->irq_lock);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004039
Chris Wilsona266c7d2012-04-24 22:59:44 +01004040 /*
4041 * Enable some error detection, note the instruction error mask
4042 * bit is reserved, so we leave it masked.
4043 */
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01004044 if (IS_G4X(dev_priv)) {
Chris Wilsona266c7d2012-04-24 22:59:44 +01004045 error_mask = ~(GM45_ERROR_PAGE_TABLE |
4046 GM45_ERROR_MEM_PRIV |
4047 GM45_ERROR_CP_PRIV |
4048 I915_ERROR_MEMORY_REFRESH);
4049 } else {
4050 error_mask = ~(I915_ERROR_PAGE_TABLE |
4051 I915_ERROR_MEMORY_REFRESH);
4052 }
4053 I915_WRITE(EMR, error_mask);
4054
4055 I915_WRITE(IMR, dev_priv->irq_mask);
4056 I915_WRITE(IER, enable_mask);
4057 POSTING_READ(IER);
4058
Egbert Eich0706f172015-09-23 16:15:27 +02004059 i915_hotplug_interrupt_update(dev_priv, 0xffffffff, 0);
Daniel Vetter20afbda2012-12-11 14:05:07 +01004060 POSTING_READ(PORT_HOTPLUG_EN);
4061
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01004062 i915_enable_asle_pipestat(dev_priv);
Daniel Vetter20afbda2012-12-11 14:05:07 +01004063
4064 return 0;
4065}
4066
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01004067static void i915_hpd_irq_setup(struct drm_i915_private *dev_priv)
Daniel Vetter20afbda2012-12-11 14:05:07 +01004068{
Daniel Vetter20afbda2012-12-11 14:05:07 +01004069 u32 hotplug_en;
4070
Chris Wilson67520412017-03-02 13:28:01 +00004071 lockdep_assert_held(&dev_priv->irq_lock);
Daniel Vetterb5ea2d52013-06-27 17:52:15 +02004072
Ville Syrjälä778eb332015-01-09 14:21:13 +02004073 /* Note HDMI and DP share hotplug bits */
4074 /* enable bits are the same for all generations */
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01004075 hotplug_en = intel_hpd_enabled_irqs(dev_priv, hpd_mask_i915);
Ville Syrjälä778eb332015-01-09 14:21:13 +02004076 /* Programming the CRT detection parameters tends
4077 to generate a spurious hotplug event about three
4078 seconds later. So just do it once.
4079 */
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01004080 if (IS_G4X(dev_priv))
Ville Syrjälä778eb332015-01-09 14:21:13 +02004081 hotplug_en |= CRT_HOTPLUG_ACTIVATION_PERIOD_64;
Ville Syrjälä778eb332015-01-09 14:21:13 +02004082 hotplug_en |= CRT_HOTPLUG_VOLTAGE_COMPARE_50;
Chris Wilsona266c7d2012-04-24 22:59:44 +01004083
Ville Syrjälä778eb332015-01-09 14:21:13 +02004084 /* Ignore TV since it's buggy */
Egbert Eich0706f172015-09-23 16:15:27 +02004085 i915_hotplug_interrupt_update_locked(dev_priv,
Jani Nikulaf9e3dc72015-10-21 17:22:43 +03004086 HOTPLUG_INT_EN_MASK |
4087 CRT_HOTPLUG_VOLTAGE_COMPARE_MASK |
4088 CRT_HOTPLUG_ACTIVATION_PERIOD_64,
4089 hotplug_en);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004090}
4091
Daniel Vetterff1f5252012-10-02 15:10:55 +02004092static irqreturn_t i965_irq_handler(int irq, void *arg)
Chris Wilsona266c7d2012-04-24 22:59:44 +01004093{
Daniel Vetter45a83f82014-05-12 19:17:55 +02004094 struct drm_device *dev = arg;
Chris Wilsonfac5e232016-07-04 11:34:36 +01004095 struct drm_i915_private *dev_priv = to_i915(dev);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004096 u32 iir, new_iir;
4097 u32 pipe_stats[I915_MAX_PIPES];
Chris Wilsona266c7d2012-04-24 22:59:44 +01004098 int ret = IRQ_NONE, pipe;
Ville Syrjälä21ad8332013-02-19 15:16:39 +02004099 u32 flip_mask =
4100 I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT |
4101 I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT;
Chris Wilsona266c7d2012-04-24 22:59:44 +01004102
Imre Deak2dd2a882015-02-24 11:14:30 +02004103 if (!intel_irqs_enabled(dev_priv))
4104 return IRQ_NONE;
4105
Imre Deak1f814da2015-12-16 02:52:19 +02004106 /* IRQs are synced during runtime_suspend, we don't require a wakeref */
4107 disable_rpm_wakeref_asserts(dev_priv);
4108
Chris Wilsona266c7d2012-04-24 22:59:44 +01004109 iir = I915_READ(IIR);
4110
Chris Wilsona266c7d2012-04-24 22:59:44 +01004111 for (;;) {
Ville Syrjälä501e01d2014-01-17 11:35:15 +02004112 bool irq_received = (iir & ~flip_mask) != 0;
Chris Wilson2c8ba292012-04-24 22:59:46 +01004113 bool blc_event = false;
4114
Chris Wilsona266c7d2012-04-24 22:59:44 +01004115 /* Can't rely on pipestat interrupt bit in iir as it might
4116 * have been cleared after the pipestat interrupt was received.
4117 * It doesn't set the bit in iir again, but it still produces
4118 * interrupts (for non-MSI).
4119 */
Daniel Vetter222c7f52014-09-15 14:55:28 +02004120 spin_lock(&dev_priv->irq_lock);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004121 if (iir & I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT)
Daniel Vetteraaecdf62014-11-04 15:52:22 +01004122 DRM_DEBUG("Command parser error, iir 0x%08x\n", iir);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004123
Damien Lespiau055e3932014-08-18 13:49:10 +01004124 for_each_pipe(dev_priv, pipe) {
Ville Syrjäläf0f59a02015-11-18 15:33:26 +02004125 i915_reg_t reg = PIPESTAT(pipe);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004126 pipe_stats[pipe] = I915_READ(reg);
4127
4128 /*
4129 * Clear the PIPE*STAT regs before the IIR
4130 */
4131 if (pipe_stats[pipe] & 0x8000ffff) {
Chris Wilsona266c7d2012-04-24 22:59:44 +01004132 I915_WRITE(reg, pipe_stats[pipe]);
Ville Syrjälä501e01d2014-01-17 11:35:15 +02004133 irq_received = true;
Chris Wilsona266c7d2012-04-24 22:59:44 +01004134 }
4135 }
Daniel Vetter222c7f52014-09-15 14:55:28 +02004136 spin_unlock(&dev_priv->irq_lock);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004137
4138 if (!irq_received)
4139 break;
4140
4141 ret = IRQ_HANDLED;
4142
4143 /* Consume port. Then clear IIR or we'll miss events */
Ville Syrjälä1ae3c342016-04-13 21:19:54 +03004144 if (iir & I915_DISPLAY_PORT_INTERRUPT) {
4145 u32 hotplug_status = i9xx_hpd_irq_ack(dev_priv);
4146 if (hotplug_status)
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01004147 i9xx_hpd_irq_handler(dev_priv, hotplug_status);
Ville Syrjälä1ae3c342016-04-13 21:19:54 +03004148 }
Chris Wilsona266c7d2012-04-24 22:59:44 +01004149
Ville Syrjälä21ad8332013-02-19 15:16:39 +02004150 I915_WRITE(IIR, iir & ~flip_mask);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004151 new_iir = I915_READ(IIR); /* Flush posted writes */
4152
Chris Wilsona266c7d2012-04-24 22:59:44 +01004153 if (iir & I915_USER_INTERRUPT)
Akash Goel3b3f1652016-10-13 22:44:48 +05304154 notify_ring(dev_priv->engine[RCS]);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004155 if (iir & I915_BSD_USER_INTERRUPT)
Akash Goel3b3f1652016-10-13 22:44:48 +05304156 notify_ring(dev_priv->engine[VCS]);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004157
Damien Lespiau055e3932014-08-18 13:49:10 +01004158 for_each_pipe(dev_priv, pipe) {
Daniel Vetter5a21b662016-05-24 17:13:53 +02004159 if (pipe_stats[pipe] & PIPE_START_VBLANK_INTERRUPT_STATUS &&
4160 i915_handle_vblank(dev_priv, pipe, pipe, iir))
4161 flip_mask &= ~DISPLAY_PLANE_FLIP_PENDING(pipe);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004162
4163 if (pipe_stats[pipe] & PIPE_LEGACY_BLC_EVENT_STATUS)
4164 blc_event = true;
Daniel Vetter4356d582013-10-16 22:55:55 +02004165
4166 if (pipe_stats[pipe] & PIPE_CRC_DONE_INTERRUPT_STATUS)
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01004167 i9xx_pipe_crc_irq_handler(dev_priv, pipe);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004168
Daniel Vetter1f7247c2014-09-30 10:56:48 +02004169 if (pipe_stats[pipe] & PIPE_FIFO_UNDERRUN_STATUS)
4170 intel_cpu_fifo_underrun_irq_handler(dev_priv, pipe);
Ville Syrjälä2d9d2b02014-01-17 11:44:31 +02004171 }
Chris Wilsona266c7d2012-04-24 22:59:44 +01004172
4173 if (blc_event || (iir & I915_ASLE_INTERRUPT))
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01004174 intel_opregion_asle_intr(dev_priv);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004175
Daniel Vetter515ac2b2012-12-01 13:53:44 +01004176 if (pipe_stats[0] & PIPE_GMBUS_INTERRUPT_STATUS)
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01004177 gmbus_irq_handler(dev_priv);
Daniel Vetter515ac2b2012-12-01 13:53:44 +01004178
Chris Wilsona266c7d2012-04-24 22:59:44 +01004179 /* With MSI, interrupts are only generated when iir
4180 * transitions from zero to nonzero. If another bit got
4181 * set while we were handling the existing iir bits, then
4182 * we would never get another interrupt.
4183 *
4184 * This is fine on non-MSI as well, as if we hit this path
4185 * we avoid exiting the interrupt handler only to generate
4186 * another one.
4187 *
4188 * Note that for MSI this could cause a stray interrupt report
4189 * if an interrupt landed in the time between writing IIR and
4190 * the posting read. This should be rare enough to never
4191 * trigger the 99% of 100,000 interrupts test for disabling
4192 * stray interrupts.
4193 */
4194 iir = new_iir;
4195 }
4196
Imre Deak1f814da2015-12-16 02:52:19 +02004197 enable_rpm_wakeref_asserts(dev_priv);
4198
Chris Wilsona266c7d2012-04-24 22:59:44 +01004199 return ret;
4200}
4201
4202static void i965_irq_uninstall(struct drm_device * dev)
4203{
Chris Wilsonfac5e232016-07-04 11:34:36 +01004204 struct drm_i915_private *dev_priv = to_i915(dev);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004205 int pipe;
4206
4207 if (!dev_priv)
4208 return;
4209
Egbert Eich0706f172015-09-23 16:15:27 +02004210 i915_hotplug_interrupt_update(dev_priv, 0xffffffff, 0);
Chris Wilsonadca4732012-05-11 18:01:31 +01004211 I915_WRITE(PORT_HOTPLUG_STAT, I915_READ(PORT_HOTPLUG_STAT));
Chris Wilsona266c7d2012-04-24 22:59:44 +01004212
4213 I915_WRITE(HWSTAM, 0xffffffff);
Damien Lespiau055e3932014-08-18 13:49:10 +01004214 for_each_pipe(dev_priv, pipe)
Chris Wilsona266c7d2012-04-24 22:59:44 +01004215 I915_WRITE(PIPESTAT(pipe), 0);
4216 I915_WRITE(IMR, 0xffffffff);
4217 I915_WRITE(IER, 0x0);
4218
Damien Lespiau055e3932014-08-18 13:49:10 +01004219 for_each_pipe(dev_priv, pipe)
Chris Wilsona266c7d2012-04-24 22:59:44 +01004220 I915_WRITE(PIPESTAT(pipe),
4221 I915_READ(PIPESTAT(pipe)) & 0x8000ffff);
4222 I915_WRITE(IIR, I915_READ(IIR));
4223}
4224
Daniel Vetterfca52a52014-09-30 10:56:45 +02004225/**
4226 * intel_irq_init - initializes irq support
4227 * @dev_priv: i915 device instance
4228 *
4229 * This function initializes all the irq support including work items, timers
4230 * and all the vtables. It does not setup the interrupt itself though.
4231 */
Daniel Vetterb9632912014-09-30 10:56:44 +02004232void intel_irq_init(struct drm_i915_private *dev_priv)
Jesse Barnesf71d4af2011-06-28 13:00:41 -07004233{
Chris Wilson91c8a322016-07-05 10:40:23 +01004234 struct drm_device *dev = &dev_priv->drm;
Joonas Lahtinencefcff82017-04-28 10:58:39 +03004235 int i;
Chris Wilson8b2e3262012-04-24 22:59:41 +01004236
Jani Nikula77913b32015-06-18 13:06:16 +03004237 intel_hpd_init_work(dev_priv);
4238
Daniel Vetterc6a828d2012-08-08 23:35:35 +02004239 INIT_WORK(&dev_priv->rps.work, gen6_pm_rps_work);
Joonas Lahtinencefcff82017-04-28 10:58:39 +03004240
Daniel Vettera4da4fa2012-11-02 19:55:07 +01004241 INIT_WORK(&dev_priv->l3_parity.error_work, ivybridge_parity_work);
Joonas Lahtinencefcff82017-04-28 10:58:39 +03004242 for (i = 0; i < MAX_L3_SLICES; ++i)
4243 dev_priv->l3_parity.remap_info[i] = NULL;
Chris Wilson8b2e3262012-04-24 22:59:41 +01004244
Tvrtko Ursulin4805fe82016-11-04 14:42:46 +00004245 if (HAS_GUC_SCHED(dev_priv))
Sagar Arun Kamble26705e22016-10-12 21:54:31 +05304246 dev_priv->pm_guc_events = GEN9_GUC_TO_HOST_INT_EVENT;
4247
Deepak Sa6706b42014-03-15 20:23:22 +05304248 /* Let's track the enabled rps events */
Wayne Boyer666a4532015-12-09 12:29:35 -08004249 if (IS_VALLEYVIEW(dev_priv))
Ville Syrjälä6c65a582014-08-29 14:14:07 +03004250 /* WaGsvRC0ResidencyMethod:vlv */
Chris Wilsone0e8c7c2017-03-09 21:12:30 +00004251 dev_priv->pm_rps_events = GEN6_PM_RP_UP_EI_EXPIRED;
Deepak S31685c22014-07-03 17:33:01 -04004252 else
4253 dev_priv->pm_rps_events = GEN6_PM_RPS_EVENTS;
Deepak Sa6706b42014-03-15 20:23:22 +05304254
Sagar Arun Kamble5dd04552017-03-11 08:07:00 +05304255 dev_priv->rps.pm_intrmsk_mbz = 0;
Sagar Arun Kamble1800ad22016-05-31 13:58:27 +05304256
4257 /*
Mika Kuoppala3396a272017-04-13 14:15:27 +03004258 * SNB,IVB,HSW can while VLV,CHV may hard hang on looping batchbuffer
Sagar Arun Kamble1800ad22016-05-31 13:58:27 +05304259 * if GEN6_PM_UP_EI_EXPIRED is masked.
4260 *
4261 * TODO: verify if this can be reproduced on VLV,CHV.
4262 */
Mika Kuoppala3396a272017-04-13 14:15:27 +03004263 if (INTEL_INFO(dev_priv)->gen <= 7)
Sagar Arun Kamble5dd04552017-03-11 08:07:00 +05304264 dev_priv->rps.pm_intrmsk_mbz |= GEN6_PM_RP_UP_EI_EXPIRED;
Sagar Arun Kamble1800ad22016-05-31 13:58:27 +05304265
4266 if (INTEL_INFO(dev_priv)->gen >= 8)
Chris Wilson655d49e2017-03-12 13:27:45 +00004267 dev_priv->rps.pm_intrmsk_mbz |= GEN8_PMINTR_DISABLE_REDIRECT_TO_GUC;
Sagar Arun Kamble1800ad22016-05-31 13:58:27 +05304268
Daniel Vetterb9632912014-09-30 10:56:44 +02004269 if (IS_GEN2(dev_priv)) {
Rodrigo Vivi4194c082016-08-03 10:00:56 -07004270 /* Gen2 doesn't have a hardware frame counter */
Ville Syrjälä4cdb83e2013-10-11 21:52:44 +03004271 dev->max_vblank_count = 0;
Daniel Vetterb9632912014-09-30 10:56:44 +02004272 } else if (IS_G4X(dev_priv) || INTEL_INFO(dev_priv)->gen >= 5) {
Jesse Barnesf71d4af2011-06-28 13:00:41 -07004273 dev->max_vblank_count = 0xffffffff; /* full 32 bit counter */
Ville Syrjäläfd8f5072015-09-18 20:03:42 +03004274 dev->driver->get_vblank_counter = g4x_get_vblank_counter;
Ville Syrjälä391f75e2013-09-25 19:55:26 +03004275 } else {
4276 dev->driver->get_vblank_counter = i915_get_vblank_counter;
4277 dev->max_vblank_count = 0xffffff; /* only 24 bits of frame count */
Jesse Barnesf71d4af2011-06-28 13:00:41 -07004278 }
4279
Ville Syrjälä21da2702014-08-06 14:49:55 +03004280 /*
4281 * Opt out of the vblank disable timer on everything except gen2.
4282 * Gen2 doesn't have a hardware frame counter and so depends on
4283 * vblank interrupts to produce sane vblank seuquence numbers.
4284 */
Daniel Vetterb9632912014-09-30 10:56:44 +02004285 if (!IS_GEN2(dev_priv))
Ville Syrjälä21da2702014-08-06 14:49:55 +03004286 dev->vblank_disable_immediate = true;
4287
Chris Wilson262fd482017-02-15 13:15:47 +00004288 /* Most platforms treat the display irq block as an always-on
4289 * power domain. vlv/chv can disable it at runtime and need
4290 * special care to avoid writing any of the display block registers
4291 * outside of the power domain. We defer setting up the display irqs
4292 * in this case to the runtime pm.
4293 */
4294 dev_priv->display_irqs_enabled = true;
4295 if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv))
4296 dev_priv->display_irqs_enabled = false;
4297
Lyude317eaa92017-02-03 21:18:25 -05004298 dev_priv->hotplug.hpd_storm_threshold = HPD_STORM_DEFAULT_THRESHOLD;
4299
Daniel Vetterf3a5c3f2015-02-13 21:03:44 +01004300 dev->driver->get_vblank_timestamp = i915_get_vblank_timestamp;
4301 dev->driver->get_scanout_position = i915_get_crtc_scanoutpos;
Jesse Barnesf71d4af2011-06-28 13:00:41 -07004302
Daniel Vetterb9632912014-09-30 10:56:44 +02004303 if (IS_CHERRYVIEW(dev_priv)) {
Ville Syrjälä43f328d2014-04-09 20:40:52 +03004304 dev->driver->irq_handler = cherryview_irq_handler;
4305 dev->driver->irq_preinstall = cherryview_irq_preinstall;
4306 dev->driver->irq_postinstall = cherryview_irq_postinstall;
4307 dev->driver->irq_uninstall = cherryview_irq_uninstall;
Chris Wilson86e83e32016-10-07 20:49:52 +01004308 dev->driver->enable_vblank = i965_enable_vblank;
4309 dev->driver->disable_vblank = i965_disable_vblank;
Ville Syrjälä43f328d2014-04-09 20:40:52 +03004310 dev_priv->display.hpd_irq_setup = i915_hpd_irq_setup;
Daniel Vetterb9632912014-09-30 10:56:44 +02004311 } else if (IS_VALLEYVIEW(dev_priv)) {
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07004312 dev->driver->irq_handler = valleyview_irq_handler;
4313 dev->driver->irq_preinstall = valleyview_irq_preinstall;
4314 dev->driver->irq_postinstall = valleyview_irq_postinstall;
4315 dev->driver->irq_uninstall = valleyview_irq_uninstall;
Chris Wilson86e83e32016-10-07 20:49:52 +01004316 dev->driver->enable_vblank = i965_enable_vblank;
4317 dev->driver->disable_vblank = i965_disable_vblank;
Egbert Eichfa00abe2013-02-25 12:06:48 -05004318 dev_priv->display.hpd_irq_setup = i915_hpd_irq_setup;
Daniel Vetterb9632912014-09-30 10:56:44 +02004319 } else if (INTEL_INFO(dev_priv)->gen >= 8) {
Ben Widawskyabd58f02013-11-02 21:07:09 -07004320 dev->driver->irq_handler = gen8_irq_handler;
Daniel Vetter723761b2014-05-22 17:56:34 +02004321 dev->driver->irq_preinstall = gen8_irq_reset;
Ben Widawskyabd58f02013-11-02 21:07:09 -07004322 dev->driver->irq_postinstall = gen8_irq_postinstall;
4323 dev->driver->irq_uninstall = gen8_irq_uninstall;
4324 dev->driver->enable_vblank = gen8_enable_vblank;
4325 dev->driver->disable_vblank = gen8_disable_vblank;
Ander Conselvan de Oliveiracc3f90f2016-12-02 10:23:49 +02004326 if (IS_GEN9_LP(dev_priv))
Shashank Sharmae0a20ad2015-03-27 14:54:14 +02004327 dev_priv->display.hpd_irq_setup = bxt_hpd_irq_setup;
Tvrtko Ursulin6e266952016-10-13 11:02:53 +01004328 else if (HAS_PCH_SPT(dev_priv) || HAS_PCH_KBP(dev_priv))
Ville Syrjälä6dbf30c2015-08-27 23:56:02 +03004329 dev_priv->display.hpd_irq_setup = spt_hpd_irq_setup;
4330 else
Ville Syrjälä3a3b3c72015-08-27 23:56:06 +03004331 dev_priv->display.hpd_irq_setup = ilk_hpd_irq_setup;
Tvrtko Ursulin6e266952016-10-13 11:02:53 +01004332 } else if (HAS_PCH_SPLIT(dev_priv)) {
Jesse Barnesf71d4af2011-06-28 13:00:41 -07004333 dev->driver->irq_handler = ironlake_irq_handler;
Daniel Vetter723761b2014-05-22 17:56:34 +02004334 dev->driver->irq_preinstall = ironlake_irq_reset;
Jesse Barnesf71d4af2011-06-28 13:00:41 -07004335 dev->driver->irq_postinstall = ironlake_irq_postinstall;
4336 dev->driver->irq_uninstall = ironlake_irq_uninstall;
4337 dev->driver->enable_vblank = ironlake_enable_vblank;
4338 dev->driver->disable_vblank = ironlake_disable_vblank;
Ville Syrjälä23bb4cb2015-08-27 23:56:04 +03004339 dev_priv->display.hpd_irq_setup = ilk_hpd_irq_setup;
Jesse Barnesf71d4af2011-06-28 13:00:41 -07004340 } else {
Tvrtko Ursulin7e22dbb2016-05-10 10:57:06 +01004341 if (IS_GEN2(dev_priv)) {
Chris Wilsonc2798b12012-04-22 21:13:57 +01004342 dev->driver->irq_preinstall = i8xx_irq_preinstall;
4343 dev->driver->irq_postinstall = i8xx_irq_postinstall;
4344 dev->driver->irq_handler = i8xx_irq_handler;
4345 dev->driver->irq_uninstall = i8xx_irq_uninstall;
Chris Wilson86e83e32016-10-07 20:49:52 +01004346 dev->driver->enable_vblank = i8xx_enable_vblank;
4347 dev->driver->disable_vblank = i8xx_disable_vblank;
Tvrtko Ursulin7e22dbb2016-05-10 10:57:06 +01004348 } else if (IS_GEN3(dev_priv)) {
Chris Wilsona266c7d2012-04-24 22:59:44 +01004349 dev->driver->irq_preinstall = i915_irq_preinstall;
4350 dev->driver->irq_postinstall = i915_irq_postinstall;
4351 dev->driver->irq_uninstall = i915_irq_uninstall;
4352 dev->driver->irq_handler = i915_irq_handler;
Chris Wilson86e83e32016-10-07 20:49:52 +01004353 dev->driver->enable_vblank = i8xx_enable_vblank;
4354 dev->driver->disable_vblank = i8xx_disable_vblank;
Chris Wilsonc2798b12012-04-22 21:13:57 +01004355 } else {
Chris Wilsona266c7d2012-04-24 22:59:44 +01004356 dev->driver->irq_preinstall = i965_irq_preinstall;
4357 dev->driver->irq_postinstall = i965_irq_postinstall;
4358 dev->driver->irq_uninstall = i965_irq_uninstall;
4359 dev->driver->irq_handler = i965_irq_handler;
Chris Wilson86e83e32016-10-07 20:49:52 +01004360 dev->driver->enable_vblank = i965_enable_vblank;
4361 dev->driver->disable_vblank = i965_disable_vblank;
Chris Wilsonc2798b12012-04-22 21:13:57 +01004362 }
Ville Syrjälä778eb332015-01-09 14:21:13 +02004363 if (I915_HAS_HOTPLUG(dev_priv))
4364 dev_priv->display.hpd_irq_setup = i915_hpd_irq_setup;
Jesse Barnesf71d4af2011-06-28 13:00:41 -07004365 }
4366}
Daniel Vetter20afbda2012-12-11 14:05:07 +01004367
Daniel Vetterfca52a52014-09-30 10:56:45 +02004368/**
Joonas Lahtinencefcff82017-04-28 10:58:39 +03004369 * intel_irq_fini - deinitializes IRQ support
4370 * @i915: i915 device instance
4371 *
4372 * This function deinitializes all the IRQ support.
4373 */
4374void intel_irq_fini(struct drm_i915_private *i915)
4375{
4376 int i;
4377
4378 for (i = 0; i < MAX_L3_SLICES; ++i)
4379 kfree(i915->l3_parity.remap_info[i]);
4380}
4381
4382/**
Daniel Vetterfca52a52014-09-30 10:56:45 +02004383 * intel_irq_install - enables the hardware interrupt
4384 * @dev_priv: i915 device instance
4385 *
4386 * This function enables the hardware interrupt handling, but leaves the hotplug
4387 * handling still disabled. It is called after intel_irq_init().
4388 *
4389 * In the driver load and resume code we need working interrupts in a few places
4390 * but don't want to deal with the hassle of concurrent probe and hotplug
4391 * workers. Hence the split into this two-stage approach.
4392 */
Daniel Vetter2aeb7d32014-09-30 10:56:43 +02004393int intel_irq_install(struct drm_i915_private *dev_priv)
4394{
4395 /*
4396 * We enable some interrupt sources in our postinstall hooks, so mark
4397 * interrupts as enabled _before_ actually enabling them to avoid
4398 * special cases in our ordering checks.
4399 */
4400 dev_priv->pm.irqs_enabled = true;
4401
Chris Wilson91c8a322016-07-05 10:40:23 +01004402 return drm_irq_install(&dev_priv->drm, dev_priv->drm.pdev->irq);
Daniel Vetter2aeb7d32014-09-30 10:56:43 +02004403}
4404
Daniel Vetterfca52a52014-09-30 10:56:45 +02004405/**
4406 * intel_irq_uninstall - finilizes all irq handling
4407 * @dev_priv: i915 device instance
4408 *
4409 * This stops interrupt and hotplug handling and unregisters and frees all
4410 * resources acquired in the init functions.
4411 */
Daniel Vetter2aeb7d32014-09-30 10:56:43 +02004412void intel_irq_uninstall(struct drm_i915_private *dev_priv)
4413{
Chris Wilson91c8a322016-07-05 10:40:23 +01004414 drm_irq_uninstall(&dev_priv->drm);
Daniel Vetter2aeb7d32014-09-30 10:56:43 +02004415 intel_hpd_cancel_work(dev_priv);
4416 dev_priv->pm.irqs_enabled = false;
4417}
4418
Daniel Vetterfca52a52014-09-30 10:56:45 +02004419/**
4420 * intel_runtime_pm_disable_interrupts - runtime interrupt disabling
4421 * @dev_priv: i915 device instance
4422 *
4423 * This function is used to disable interrupts at runtime, both in the runtime
4424 * pm and the system suspend/resume code.
4425 */
Daniel Vetterb9632912014-09-30 10:56:44 +02004426void intel_runtime_pm_disable_interrupts(struct drm_i915_private *dev_priv)
Paulo Zanonic67a4702013-08-19 13:18:09 -03004427{
Chris Wilson91c8a322016-07-05 10:40:23 +01004428 dev_priv->drm.driver->irq_uninstall(&dev_priv->drm);
Daniel Vetter2aeb7d32014-09-30 10:56:43 +02004429 dev_priv->pm.irqs_enabled = false;
Chris Wilson91c8a322016-07-05 10:40:23 +01004430 synchronize_irq(dev_priv->drm.irq);
Paulo Zanonic67a4702013-08-19 13:18:09 -03004431}
4432
Daniel Vetterfca52a52014-09-30 10:56:45 +02004433/**
4434 * intel_runtime_pm_enable_interrupts - runtime interrupt enabling
4435 * @dev_priv: i915 device instance
4436 *
4437 * This function is used to enable interrupts at runtime, both in the runtime
4438 * pm and the system suspend/resume code.
4439 */
Daniel Vetterb9632912014-09-30 10:56:44 +02004440void intel_runtime_pm_enable_interrupts(struct drm_i915_private *dev_priv)
Paulo Zanonic67a4702013-08-19 13:18:09 -03004441{
Daniel Vetter2aeb7d32014-09-30 10:56:43 +02004442 dev_priv->pm.irqs_enabled = true;
Chris Wilson91c8a322016-07-05 10:40:23 +01004443 dev_priv->drm.driver->irq_preinstall(&dev_priv->drm);
4444 dev_priv->drm.driver->irq_postinstall(&dev_priv->drm);
Paulo Zanonic67a4702013-08-19 13:18:09 -03004445}