blob: 22ac70374ac15666cc68666a3a3f388aea9c6171 [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
Imre Deak59d02a12014-12-19 19:33:26 +0200392u32 gen6_sanitize_rps_pm_mask(struct drm_i915_private *dev_priv, u32 mask)
393{
Sagar Arun Kamble1800ad22016-05-31 13:58:27 +0530394 return (mask & ~dev_priv->rps.pm_intr_keep);
Imre Deak59d02a12014-12-19 19:33:26 +0200395}
396
Tvrtko Ursulin91d14252016-05-06 14:48:28 +0100397void gen6_disable_rps_interrupts(struct drm_i915_private *dev_priv)
Imre Deakb900b942014-11-05 20:48:48 +0200398{
Chris Wilsonf2a91d12016-09-21 14:51:06 +0100399 if (!READ_ONCE(dev_priv->rps.interrupts_enabled))
400 return;
401
Imre Deakd4d70aa2014-11-19 15:30:04 +0200402 spin_lock_irq(&dev_priv->irq_lock);
403 dev_priv->rps.interrupts_enabled = false;
Imre Deak9939fba2014-11-20 23:01:47 +0200404
Dave Gordonb20e3cf2016-09-12 21:19:35 +0100405 I915_WRITE(GEN6_PMINTRMSK, gen6_sanitize_rps_pm_mask(dev_priv, ~0u));
Imre Deak9939fba2014-11-20 23:01:47 +0200406
Akash Goelf4e9af42016-10-12 21:54:30 +0530407 gen6_disable_pm_irq(dev_priv, dev_priv->pm_rps_events);
Imre Deak58072cc2015-03-23 19:11:34 +0200408
409 spin_unlock_irq(&dev_priv->irq_lock);
Chris Wilson91c8a322016-07-05 10:40:23 +0100410 synchronize_irq(dev_priv->drm.irq);
Chris Wilsonc33d2472016-07-04 08:08:36 +0100411
412 /* Now that we will not be generating any more work, flush any
413 * outsanding tasks. As we are called on the RPS idle path,
414 * we will reset the GPU to minimum frequencies, so the current
415 * state of the worker can be discarded.
416 */
417 cancel_work_sync(&dev_priv->rps.work);
418 gen6_reset_rps_interrupts(dev_priv);
Imre Deakb900b942014-11-05 20:48:48 +0200419}
420
Sagar Arun Kamble26705e22016-10-12 21:54:31 +0530421void gen9_reset_guc_interrupts(struct drm_i915_private *dev_priv)
422{
423 spin_lock_irq(&dev_priv->irq_lock);
424 gen6_reset_pm_iir(dev_priv, dev_priv->pm_guc_events);
425 spin_unlock_irq(&dev_priv->irq_lock);
426}
427
428void gen9_enable_guc_interrupts(struct drm_i915_private *dev_priv)
429{
430 spin_lock_irq(&dev_priv->irq_lock);
431 if (!dev_priv->guc.interrupts_enabled) {
432 WARN_ON_ONCE(I915_READ(gen6_pm_iir(dev_priv)) &
433 dev_priv->pm_guc_events);
434 dev_priv->guc.interrupts_enabled = true;
435 gen6_enable_pm_irq(dev_priv, dev_priv->pm_guc_events);
436 }
437 spin_unlock_irq(&dev_priv->irq_lock);
438}
439
440void gen9_disable_guc_interrupts(struct drm_i915_private *dev_priv)
441{
442 spin_lock_irq(&dev_priv->irq_lock);
443 dev_priv->guc.interrupts_enabled = false;
444
445 gen6_disable_pm_irq(dev_priv, dev_priv->pm_guc_events);
446
447 spin_unlock_irq(&dev_priv->irq_lock);
448 synchronize_irq(dev_priv->drm.irq);
449
450 gen9_reset_guc_interrupts(dev_priv);
451}
452
Ben Widawsky09610212014-05-15 20:58:08 +0300453/**
Ville Syrjälä81fd8742015-11-25 16:21:30 +0200454 * bdw_update_port_irq - update DE port interrupt
455 * @dev_priv: driver private
456 * @interrupt_mask: mask of interrupt bits to update
457 * @enabled_irq_mask: mask of interrupt bits to enable
458 */
Ville Syrjälä3a3b3c72015-08-27 23:56:06 +0300459static void bdw_update_port_irq(struct drm_i915_private *dev_priv,
460 uint32_t interrupt_mask,
461 uint32_t enabled_irq_mask)
462{
463 uint32_t new_val;
464 uint32_t old_val;
465
Chris Wilson67520412017-03-02 13:28:01 +0000466 lockdep_assert_held(&dev_priv->irq_lock);
Ville Syrjälä3a3b3c72015-08-27 23:56:06 +0300467
468 WARN_ON(enabled_irq_mask & ~interrupt_mask);
469
470 if (WARN_ON(!intel_irqs_enabled(dev_priv)))
471 return;
472
473 old_val = I915_READ(GEN8_DE_PORT_IMR);
474
475 new_val = old_val;
476 new_val &= ~interrupt_mask;
477 new_val |= (~enabled_irq_mask & interrupt_mask);
478
479 if (new_val != old_val) {
480 I915_WRITE(GEN8_DE_PORT_IMR, new_val);
481 POSTING_READ(GEN8_DE_PORT_IMR);
482 }
483}
484
485/**
Ville Syrjälä013d3752015-11-23 18:06:17 +0200486 * bdw_update_pipe_irq - update DE pipe interrupt
487 * @dev_priv: driver private
488 * @pipe: pipe whose interrupt to update
489 * @interrupt_mask: mask of interrupt bits to update
490 * @enabled_irq_mask: mask of interrupt bits to enable
491 */
492void bdw_update_pipe_irq(struct drm_i915_private *dev_priv,
493 enum pipe pipe,
494 uint32_t interrupt_mask,
495 uint32_t enabled_irq_mask)
496{
497 uint32_t new_val;
498
Chris Wilson67520412017-03-02 13:28:01 +0000499 lockdep_assert_held(&dev_priv->irq_lock);
Ville Syrjälä013d3752015-11-23 18:06:17 +0200500
501 WARN_ON(enabled_irq_mask & ~interrupt_mask);
502
503 if (WARN_ON(!intel_irqs_enabled(dev_priv)))
504 return;
505
506 new_val = dev_priv->de_irq_mask[pipe];
507 new_val &= ~interrupt_mask;
508 new_val |= (~enabled_irq_mask & interrupt_mask);
509
510 if (new_val != dev_priv->de_irq_mask[pipe]) {
511 dev_priv->de_irq_mask[pipe] = new_val;
512 I915_WRITE(GEN8_DE_PIPE_IMR(pipe), dev_priv->de_irq_mask[pipe]);
513 POSTING_READ(GEN8_DE_PIPE_IMR(pipe));
514 }
515}
516
517/**
Daniel Vetterfee884e2013-07-04 23:35:21 +0200518 * ibx_display_interrupt_update - update SDEIMR
519 * @dev_priv: driver private
520 * @interrupt_mask: mask of interrupt bits to update
521 * @enabled_irq_mask: mask of interrupt bits to enable
522 */
Daniel Vetter47339cd2014-09-30 10:56:46 +0200523void ibx_display_interrupt_update(struct drm_i915_private *dev_priv,
524 uint32_t interrupt_mask,
525 uint32_t enabled_irq_mask)
Daniel Vetterfee884e2013-07-04 23:35:21 +0200526{
527 uint32_t sdeimr = I915_READ(SDEIMR);
528 sdeimr &= ~interrupt_mask;
529 sdeimr |= (~enabled_irq_mask & interrupt_mask);
530
Daniel Vetter15a17aa2014-12-08 16:30:00 +0100531 WARN_ON(enabled_irq_mask & ~interrupt_mask);
532
Chris Wilson67520412017-03-02 13:28:01 +0000533 lockdep_assert_held(&dev_priv->irq_lock);
Daniel Vetterfee884e2013-07-04 23:35:21 +0200534
Jesse Barnes9df7575f2014-06-20 09:29:20 -0700535 if (WARN_ON(!intel_irqs_enabled(dev_priv)))
Paulo Zanonic67a4702013-08-19 13:18:09 -0300536 return;
Paulo Zanonic67a4702013-08-19 13:18:09 -0300537
Daniel Vetterfee884e2013-07-04 23:35:21 +0200538 I915_WRITE(SDEIMR, sdeimr);
539 POSTING_READ(SDEIMR);
540}
Paulo Zanoni86642812013-04-12 17:57:57 -0300541
Daniel Vetterb5ea6422014-03-02 21:18:00 +0100542static void
Imre Deak755e9012014-02-10 18:42:47 +0200543__i915_enable_pipestat(struct drm_i915_private *dev_priv, enum pipe pipe,
544 u32 enable_mask, u32 status_mask)
Keith Packard7c463582008-11-04 02:03:27 -0800545{
Ville Syrjäläf0f59a02015-11-18 15:33:26 +0200546 i915_reg_t reg = PIPESTAT(pipe);
Imre Deak755e9012014-02-10 18:42:47 +0200547 u32 pipestat = I915_READ(reg) & PIPESTAT_INT_ENABLE_MASK;
Keith Packard7c463582008-11-04 02:03:27 -0800548
Chris Wilson67520412017-03-02 13:28:01 +0000549 lockdep_assert_held(&dev_priv->irq_lock);
Daniel Vetterd518ce52014-08-27 10:43:37 +0200550 WARN_ON(!intel_irqs_enabled(dev_priv));
Daniel Vetterb79480b2013-06-27 17:52:10 +0200551
Ville Syrjälä04feced2014-04-03 13:28:33 +0300552 if (WARN_ONCE(enable_mask & ~PIPESTAT_INT_ENABLE_MASK ||
553 status_mask & ~PIPESTAT_INT_STATUS_MASK,
554 "pipe %c: enable_mask=0x%x, status_mask=0x%x\n",
555 pipe_name(pipe), enable_mask, status_mask))
Imre Deak755e9012014-02-10 18:42:47 +0200556 return;
557
558 if ((pipestat & enable_mask) == enable_mask)
Ville Syrjälä46c06a32013-02-20 21:16:18 +0200559 return;
560
Imre Deak91d181d2014-02-10 18:42:49 +0200561 dev_priv->pipestat_irq_mask[pipe] |= status_mask;
562
Ville Syrjälä46c06a32013-02-20 21:16:18 +0200563 /* Enable the interrupt, clear any pending status */
Imre Deak755e9012014-02-10 18:42:47 +0200564 pipestat |= enable_mask | status_mask;
Ville Syrjälä46c06a32013-02-20 21:16:18 +0200565 I915_WRITE(reg, pipestat);
566 POSTING_READ(reg);
Keith Packard7c463582008-11-04 02:03:27 -0800567}
568
Daniel Vetterb5ea6422014-03-02 21:18:00 +0100569static void
Imre Deak755e9012014-02-10 18:42:47 +0200570__i915_disable_pipestat(struct drm_i915_private *dev_priv, enum pipe pipe,
571 u32 enable_mask, u32 status_mask)
Keith Packard7c463582008-11-04 02:03:27 -0800572{
Ville Syrjäläf0f59a02015-11-18 15:33:26 +0200573 i915_reg_t reg = PIPESTAT(pipe);
Imre Deak755e9012014-02-10 18:42:47 +0200574 u32 pipestat = I915_READ(reg) & PIPESTAT_INT_ENABLE_MASK;
Keith Packard7c463582008-11-04 02:03:27 -0800575
Chris Wilson67520412017-03-02 13:28:01 +0000576 lockdep_assert_held(&dev_priv->irq_lock);
Daniel Vetterd518ce52014-08-27 10:43:37 +0200577 WARN_ON(!intel_irqs_enabled(dev_priv));
Daniel Vetterb79480b2013-06-27 17:52:10 +0200578
Ville Syrjälä04feced2014-04-03 13:28:33 +0300579 if (WARN_ONCE(enable_mask & ~PIPESTAT_INT_ENABLE_MASK ||
580 status_mask & ~PIPESTAT_INT_STATUS_MASK,
581 "pipe %c: enable_mask=0x%x, status_mask=0x%x\n",
582 pipe_name(pipe), enable_mask, status_mask))
Ville Syrjälä46c06a32013-02-20 21:16:18 +0200583 return;
584
Imre Deak755e9012014-02-10 18:42:47 +0200585 if ((pipestat & enable_mask) == 0)
586 return;
587
Imre Deak91d181d2014-02-10 18:42:49 +0200588 dev_priv->pipestat_irq_mask[pipe] &= ~status_mask;
589
Imre Deak755e9012014-02-10 18:42:47 +0200590 pipestat &= ~enable_mask;
Ville Syrjälä46c06a32013-02-20 21:16:18 +0200591 I915_WRITE(reg, pipestat);
592 POSTING_READ(reg);
Keith Packard7c463582008-11-04 02:03:27 -0800593}
594
Imre Deak10c59c52014-02-10 18:42:48 +0200595static u32 vlv_get_pipestat_enable_mask(struct drm_device *dev, u32 status_mask)
596{
597 u32 enable_mask = status_mask << 16;
598
599 /*
Ville Syrjälä724a6902014-04-09 13:28:48 +0300600 * On pipe A we don't support the PSR interrupt yet,
601 * on pipe B and C the same bit MBZ.
Imre Deak10c59c52014-02-10 18:42:48 +0200602 */
603 if (WARN_ON_ONCE(status_mask & PIPE_A_PSR_STATUS_VLV))
604 return 0;
Ville Syrjälä724a6902014-04-09 13:28:48 +0300605 /*
606 * On pipe B and C we don't support the PSR interrupt yet, on pipe
607 * A the same bit is for perf counters which we don't use either.
608 */
609 if (WARN_ON_ONCE(status_mask & PIPE_B_PSR_STATUS_VLV))
610 return 0;
Imre Deak10c59c52014-02-10 18:42:48 +0200611
612 enable_mask &= ~(PIPE_FIFO_UNDERRUN_STATUS |
613 SPRITE0_FLIP_DONE_INT_EN_VLV |
614 SPRITE1_FLIP_DONE_INT_EN_VLV);
615 if (status_mask & SPRITE0_FLIP_DONE_INT_STATUS_VLV)
616 enable_mask |= SPRITE0_FLIP_DONE_INT_EN_VLV;
617 if (status_mask & SPRITE1_FLIP_DONE_INT_STATUS_VLV)
618 enable_mask |= SPRITE1_FLIP_DONE_INT_EN_VLV;
619
620 return enable_mask;
621}
622
Imre Deak755e9012014-02-10 18:42:47 +0200623void
624i915_enable_pipestat(struct drm_i915_private *dev_priv, enum pipe pipe,
625 u32 status_mask)
626{
627 u32 enable_mask;
628
Wayne Boyer666a4532015-12-09 12:29:35 -0800629 if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv))
Chris Wilson91c8a322016-07-05 10:40:23 +0100630 enable_mask = vlv_get_pipestat_enable_mask(&dev_priv->drm,
Imre Deak10c59c52014-02-10 18:42:48 +0200631 status_mask);
632 else
633 enable_mask = status_mask << 16;
Imre Deak755e9012014-02-10 18:42:47 +0200634 __i915_enable_pipestat(dev_priv, pipe, enable_mask, status_mask);
635}
636
637void
638i915_disable_pipestat(struct drm_i915_private *dev_priv, enum pipe pipe,
639 u32 status_mask)
640{
641 u32 enable_mask;
642
Wayne Boyer666a4532015-12-09 12:29:35 -0800643 if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv))
Chris Wilson91c8a322016-07-05 10:40:23 +0100644 enable_mask = vlv_get_pipestat_enable_mask(&dev_priv->drm,
Imre Deak10c59c52014-02-10 18:42:48 +0200645 status_mask);
646 else
647 enable_mask = status_mask << 16;
Imre Deak755e9012014-02-10 18:42:47 +0200648 __i915_disable_pipestat(dev_priv, pipe, enable_mask, status_mask);
649}
650
=?utf-8?q?Michel_D=C3=A4nzer?=a6b54f32006-10-24 23:37:43 +1000651/**
Jani Nikulaf49e38d2013-04-29 13:02:54 +0300652 * i915_enable_asle_pipestat - enable ASLE pipestat for OpRegion
Tvrtko Ursulin14bb2c12016-06-03 14:02:17 +0100653 * @dev_priv: i915 device private
Zhao Yakui01c66882009-10-28 05:10:00 +0000654 */
Tvrtko Ursulin91d14252016-05-06 14:48:28 +0100655static void i915_enable_asle_pipestat(struct drm_i915_private *dev_priv)
Zhao Yakui01c66882009-10-28 05:10:00 +0000656{
Tvrtko Ursulin91d14252016-05-06 14:48:28 +0100657 if (!dev_priv->opregion.asle || !IS_MOBILE(dev_priv))
Jani Nikulaf49e38d2013-04-29 13:02:54 +0300658 return;
659
Daniel Vetter13321782014-09-15 14:55:29 +0200660 spin_lock_irq(&dev_priv->irq_lock);
Zhao Yakui01c66882009-10-28 05:10:00 +0000661
Imre Deak755e9012014-02-10 18:42:47 +0200662 i915_enable_pipestat(dev_priv, PIPE_B, PIPE_LEGACY_BLC_EVENT_STATUS);
Tvrtko Ursulin91d14252016-05-06 14:48:28 +0100663 if (INTEL_GEN(dev_priv) >= 4)
Daniel Vetter3b6c42e2013-10-21 18:04:35 +0200664 i915_enable_pipestat(dev_priv, PIPE_A,
Imre Deak755e9012014-02-10 18:42:47 +0200665 PIPE_LEGACY_BLC_EVENT_STATUS);
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000666
Daniel Vetter13321782014-09-15 14:55:29 +0200667 spin_unlock_irq(&dev_priv->irq_lock);
Zhao Yakui01c66882009-10-28 05:10:00 +0000668}
669
Ville Syrjäläf75f3742014-05-15 20:20:36 +0300670/*
671 * This timing diagram depicts the video signal in and
672 * around the vertical blanking period.
673 *
674 * Assumptions about the fictitious mode used in this example:
675 * vblank_start >= 3
676 * vsync_start = vblank_start + 1
677 * vsync_end = vblank_start + 2
678 * vtotal = vblank_start + 3
679 *
680 * start of vblank:
681 * latch double buffered registers
682 * increment frame counter (ctg+)
683 * generate start of vblank interrupt (gen4+)
684 * |
685 * | frame start:
686 * | generate frame start interrupt (aka. vblank interrupt) (gmch)
687 * | may be shifted forward 1-3 extra lines via PIPECONF
688 * | |
689 * | | start of vsync:
690 * | | generate vsync interrupt
691 * | | |
692 * ___xxxx___ ___xxxx___ ___xxxx___ ___xxxx___ ___xxxx___ ___xxxx
693 * . \hs/ . \hs/ \hs/ \hs/ . \hs/
694 * ----va---> <-----------------vb--------------------> <--------va-------------
695 * | | <----vs-----> |
696 * -vbs-----> <---vbs+1---> <---vbs+2---> <-----0-----> <-----1-----> <-----2--- (scanline counter gen2)
697 * -vbs-2---> <---vbs-1---> <---vbs-----> <---vbs+1---> <---vbs+2---> <-----0--- (scanline counter gen3+)
698 * -vbs-2---> <---vbs-2---> <---vbs-1---> <---vbs-----> <---vbs+1---> <---vbs+2- (scanline counter hsw+ hdmi)
699 * | | |
700 * last visible pixel first visible pixel
701 * | increment frame counter (gen3/4)
702 * pixel counter = vblank_start * htotal pixel counter = 0 (gen3/4)
703 *
704 * x = horizontal active
705 * _ = horizontal blanking
706 * hs = horizontal sync
707 * va = vertical active
708 * vb = vertical blanking
709 * vs = vertical sync
710 * vbs = vblank_start (number)
711 *
712 * Summary:
713 * - most events happen at the start of horizontal sync
714 * - frame start happens at the start of horizontal blank, 1-4 lines
715 * (depending on PIPECONF settings) after the start of vblank
716 * - gen3/4 pixel and frame counter are synchronized with the start
717 * of horizontal active on the first line of vertical active
718 */
719
Keith Packard42f52ef2008-10-18 19:39:29 -0700720/* Called from drm generic code, passed a 'crtc', which
721 * we use as a pipe index
722 */
Thierry Reding88e72712015-09-24 18:35:31 +0200723static u32 i915_get_vblank_counter(struct drm_device *dev, unsigned int pipe)
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700724{
Chris Wilsonfac5e232016-07-04 11:34:36 +0100725 struct drm_i915_private *dev_priv = to_i915(dev);
Ville Syrjäläf0f59a02015-11-18 15:33:26 +0200726 i915_reg_t high_frame, low_frame;
Ville Syrjälä0b2a8e02014-04-29 13:35:50 +0300727 u32 high1, high2, low, pixel, vbl_start, hsync_start, htotal;
Ville Syrjälä98187832016-10-31 22:37:10 +0200728 struct intel_crtc *intel_crtc = intel_get_crtc_for_pipe(dev_priv,
729 pipe);
Maarten Lankhorstfc467a222015-06-01 12:50:07 +0200730 const struct drm_display_mode *mode = &intel_crtc->base.hwmode;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700731
Daniel Vetterf3a5c3f2015-02-13 21:03:44 +0100732 htotal = mode->crtc_htotal;
733 hsync_start = mode->crtc_hsync_start;
734 vbl_start = mode->crtc_vblank_start;
735 if (mode->flags & DRM_MODE_FLAG_INTERLACE)
736 vbl_start = DIV_ROUND_UP(vbl_start, 2);
Ville Syrjälä391f75e2013-09-25 19:55:26 +0300737
Ville Syrjälä0b2a8e02014-04-29 13:35:50 +0300738 /* Convert to pixel count */
739 vbl_start *= htotal;
740
741 /* Start of vblank event occurs at start of hsync */
742 vbl_start -= htotal - hsync_start;
743
Jesse Barnes9db4a9c2011-02-07 12:26:52 -0800744 high_frame = PIPEFRAME(pipe);
745 low_frame = PIPEFRAMEPIXEL(pipe);
Chris Wilson5eddb702010-09-11 13:48:45 +0100746
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700747 /*
748 * High & low register fields aren't synchronized, so make sure
749 * we get a low value that's stable across two reads of the high
750 * register.
751 */
752 do {
Chris Wilson5eddb702010-09-11 13:48:45 +0100753 high1 = I915_READ(high_frame) & PIPE_FRAME_HIGH_MASK;
Ville Syrjälä391f75e2013-09-25 19:55:26 +0300754 low = I915_READ(low_frame);
Chris Wilson5eddb702010-09-11 13:48:45 +0100755 high2 = I915_READ(high_frame) & PIPE_FRAME_HIGH_MASK;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700756 } while (high1 != high2);
757
Chris Wilson5eddb702010-09-11 13:48:45 +0100758 high1 >>= PIPE_FRAME_HIGH_SHIFT;
Ville Syrjälä391f75e2013-09-25 19:55:26 +0300759 pixel = low & PIPE_PIXEL_MASK;
Chris Wilson5eddb702010-09-11 13:48:45 +0100760 low >>= PIPE_FRAME_LOW_SHIFT;
Ville Syrjälä391f75e2013-09-25 19:55:26 +0300761
762 /*
763 * The frame counter increments at beginning of active.
764 * Cook up a vblank counter by also checking the pixel
765 * counter against vblank start.
766 */
Ville Syrjäläedc08d02013-11-06 13:56:27 -0200767 return (((high1 << 8) | low) + (pixel >= vbl_start)) & 0xffffff;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700768}
769
Dave Airlie974e59b2015-10-30 09:45:33 +1000770static u32 g4x_get_vblank_counter(struct drm_device *dev, unsigned int pipe)
Jesse Barnes9880b7a2009-02-06 10:22:41 -0800771{
Chris Wilsonfac5e232016-07-04 11:34:36 +0100772 struct drm_i915_private *dev_priv = to_i915(dev);
Jesse Barnes9880b7a2009-02-06 10:22:41 -0800773
Ville Syrjälä649636e2015-09-22 19:50:01 +0300774 return I915_READ(PIPE_FRMCOUNT_G4X(pipe));
Jesse Barnes9880b7a2009-02-06 10:22:41 -0800775}
776
Ville Syrjälä75aa3f62015-10-22 15:34:56 +0300777/* I915_READ_FW, only for fast reads of display block, no need for forcewake etc. */
Ville Syrjäläa225f072014-04-29 13:35:45 +0300778static int __intel_get_crtc_scanline(struct intel_crtc *crtc)
779{
780 struct drm_device *dev = crtc->base.dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +0100781 struct drm_i915_private *dev_priv = to_i915(dev);
Maarten Lankhorstfc467a222015-06-01 12:50:07 +0200782 const struct drm_display_mode *mode = &crtc->base.hwmode;
Ville Syrjäläa225f072014-04-29 13:35:45 +0300783 enum pipe pipe = crtc->pipe;
Ville Syrjälä80715b22014-05-15 20:23:23 +0300784 int position, vtotal;
Ville Syrjäläa225f072014-04-29 13:35:45 +0300785
Ville Syrjälä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);
815 temp = __raw_i915_read32(dev_priv, PIPEDSL(pipe)) &
816 DSL_LINEMASK_GEN3;
817 if (temp != position) {
818 position = temp;
819 break;
820 }
821 }
822 }
823
824 /*
Ville Syrjälä80715b22014-05-15 20:23:23 +0300825 * See update_scanline_offset() for the details on the
826 * scanline_offset adjustment.
Ville Syrjäläa225f072014-04-29 13:35:45 +0300827 */
Ville Syrjälä80715b22014-05-15 20:23:23 +0300828 return (position + crtc->scanline_offset) % vtotal;
Ville Syrjäläa225f072014-04-29 13:35:45 +0300829}
830
Thierry Reding88e72712015-09-24 18:35:31 +0200831static int i915_get_crtc_scanoutpos(struct drm_device *dev, unsigned int pipe,
Ville Syrjäläabca9e42013-10-28 20:50:48 +0200832 unsigned int flags, int *vpos, int *hpos,
Ville Syrjälä3bb403b2015-09-14 22:43:44 +0300833 ktime_t *stime, ktime_t *etime,
834 const struct drm_display_mode *mode)
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100835{
Chris Wilsonfac5e232016-07-04 11:34:36 +0100836 struct drm_i915_private *dev_priv = to_i915(dev);
Ville Syrjälä98187832016-10-31 22:37:10 +0200837 struct intel_crtc *intel_crtc = intel_get_crtc_for_pipe(dev_priv,
838 pipe);
Ville Syrjälä3aa18df2013-10-11 19:10:32 +0300839 int position;
Ville Syrjälä78e8fc62014-04-29 13:35:44 +0300840 int vbl_start, vbl_end, hsync_start, htotal, vtotal;
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100841 bool in_vbl = true;
842 int ret = 0;
Mario Kleinerad3543e2013-10-30 05:13:08 +0100843 unsigned long irqflags;
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100844
Maarten Lankhorstfc467a222015-06-01 12:50:07 +0200845 if (WARN_ON(!mode->crtc_clock)) {
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100846 DRM_DEBUG_DRIVER("trying to get scanoutpos for disabled "
Jesse Barnes9db4a9c2011-02-07 12:26:52 -0800847 "pipe %c\n", pipe_name(pipe));
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100848 return 0;
849 }
850
Ville Syrjäläc2baf4b2013-09-23 14:48:50 +0300851 htotal = mode->crtc_htotal;
Ville Syrjälä78e8fc62014-04-29 13:35:44 +0300852 hsync_start = mode->crtc_hsync_start;
Ville Syrjäläc2baf4b2013-09-23 14:48:50 +0300853 vtotal = mode->crtc_vtotal;
854 vbl_start = mode->crtc_vblank_start;
855 vbl_end = mode->crtc_vblank_end;
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100856
Ville Syrjäläd31faf62013-10-28 16:31:41 +0200857 if (mode->flags & DRM_MODE_FLAG_INTERLACE) {
858 vbl_start = DIV_ROUND_UP(vbl_start, 2);
859 vbl_end /= 2;
860 vtotal /= 2;
861 }
862
Ville Syrjäläc2baf4b2013-09-23 14:48:50 +0300863 ret |= DRM_SCANOUTPOS_VALID | DRM_SCANOUTPOS_ACCURATE;
864
Mario Kleinerad3543e2013-10-30 05:13:08 +0100865 /*
866 * Lock uncore.lock, as we will do multiple timing critical raw
867 * register reads, potentially with preemption disabled, so the
868 * following code must not block on uncore.lock.
869 */
870 spin_lock_irqsave(&dev_priv->uncore.lock, irqflags);
Ville Syrjälä78e8fc62014-04-29 13:35:44 +0300871
Mario Kleinerad3543e2013-10-30 05:13:08 +0100872 /* preempt_disable_rt() should go right here in PREEMPT_RT patchset. */
873
874 /* Get optional system timestamp before query. */
875 if (stime)
876 *stime = ktime_get();
877
Tvrtko Ursulin91d14252016-05-06 14:48:28 +0100878 if (IS_GEN2(dev_priv) || IS_G4X(dev_priv) || INTEL_GEN(dev_priv) >= 5) {
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100879 /* No obvious pixelcount register. Only query vertical
880 * scanout position from Display scan line register.
881 */
Ville Syrjäläa225f072014-04-29 13:35:45 +0300882 position = __intel_get_crtc_scanline(intel_crtc);
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100883 } else {
884 /* Have access to pixelcount since start of frame.
885 * We can split this into vertical and horizontal
886 * scanout position.
887 */
Ville Syrjälä75aa3f62015-10-22 15:34:56 +0300888 position = (I915_READ_FW(PIPEFRAMEPIXEL(pipe)) & PIPE_PIXEL_MASK) >> PIPE_PIXEL_SHIFT;
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100889
Ville Syrjälä3aa18df2013-10-11 19:10:32 +0300890 /* convert to pixel counts */
891 vbl_start *= htotal;
892 vbl_end *= htotal;
893 vtotal *= htotal;
Ville Syrjälä78e8fc62014-04-29 13:35:44 +0300894
895 /*
Ville Syrjälä7e78f1cb2014-04-29 13:35:49 +0300896 * In interlaced modes, the pixel counter counts all pixels,
897 * so one field will have htotal more pixels. In order to avoid
898 * the reported position from jumping backwards when the pixel
899 * counter is beyond the length of the shorter field, just
900 * clamp the position the length of the shorter field. This
901 * matches how the scanline counter based position works since
902 * the scanline counter doesn't count the two half lines.
903 */
904 if (position >= vtotal)
905 position = vtotal - 1;
906
907 /*
Ville Syrjälä78e8fc62014-04-29 13:35:44 +0300908 * Start of vblank interrupt is triggered at start of hsync,
909 * just prior to the first active line of vblank. However we
910 * consider lines to start at the leading edge of horizontal
911 * active. So, should we get here before we've crossed into
912 * the horizontal active of the first line in vblank, we would
913 * not set the DRM_SCANOUTPOS_INVBL flag. In order to fix that,
914 * always add htotal-hsync_start to the current pixel position.
915 */
916 position = (position + htotal - hsync_start) % vtotal;
Ville Syrjälä3aa18df2013-10-11 19:10:32 +0300917 }
918
Mario Kleinerad3543e2013-10-30 05:13:08 +0100919 /* Get optional system timestamp after query. */
920 if (etime)
921 *etime = ktime_get();
922
923 /* preempt_enable_rt() should go right here in PREEMPT_RT patchset. */
924
925 spin_unlock_irqrestore(&dev_priv->uncore.lock, irqflags);
926
Ville Syrjälä3aa18df2013-10-11 19:10:32 +0300927 in_vbl = position >= vbl_start && position < vbl_end;
928
929 /*
930 * While in vblank, position will be negative
931 * counting up towards 0 at vbl_end. And outside
932 * vblank, position will be positive counting
933 * up since vbl_end.
934 */
935 if (position >= vbl_start)
936 position -= vbl_end;
937 else
938 position += vtotal - vbl_end;
939
Tvrtko Ursulin91d14252016-05-06 14:48:28 +0100940 if (IS_GEN2(dev_priv) || IS_G4X(dev_priv) || INTEL_GEN(dev_priv) >= 5) {
Ville Syrjälä3aa18df2013-10-11 19:10:32 +0300941 *vpos = position;
942 *hpos = 0;
943 } else {
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100944 *vpos = position / htotal;
945 *hpos = position - (*vpos * htotal);
946 }
947
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100948 /* In vblank? */
949 if (in_vbl)
Daniel Vetter3d3cbd82014-09-10 17:36:11 +0200950 ret |= DRM_SCANOUTPOS_IN_VBLANK;
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100951
952 return ret;
953}
954
Ville Syrjäläa225f072014-04-29 13:35:45 +0300955int intel_get_crtc_scanline(struct intel_crtc *crtc)
956{
Chris Wilsonfac5e232016-07-04 11:34:36 +0100957 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
Ville Syrjäläa225f072014-04-29 13:35:45 +0300958 unsigned long irqflags;
959 int position;
960
961 spin_lock_irqsave(&dev_priv->uncore.lock, irqflags);
962 position = __intel_get_crtc_scanline(crtc);
963 spin_unlock_irqrestore(&dev_priv->uncore.lock, irqflags);
964
965 return position;
966}
967
Thierry Reding88e72712015-09-24 18:35:31 +0200968static int i915_get_vblank_timestamp(struct drm_device *dev, unsigned int pipe,
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100969 int *max_error,
970 struct timeval *vblank_time,
971 unsigned flags)
972{
Ville Syrjäläb91eb5c2016-10-31 22:37:09 +0200973 struct drm_i915_private *dev_priv = to_i915(dev);
Ville Syrjäläe2af48c2016-10-31 22:37:05 +0200974 struct intel_crtc *crtc;
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100975
Ville Syrjäläb91eb5c2016-10-31 22:37:09 +0200976 if (pipe >= INTEL_INFO(dev_priv)->num_pipes) {
Thierry Reding88e72712015-09-24 18:35:31 +0200977 DRM_ERROR("Invalid crtc %u\n", pipe);
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100978 return -EINVAL;
979 }
980
981 /* Get drm_crtc to timestamp: */
Ville Syrjäläb91eb5c2016-10-31 22:37:09 +0200982 crtc = intel_get_crtc_for_pipe(dev_priv, pipe);
Chris Wilson4041b852011-01-22 10:07:56 +0000983 if (crtc == NULL) {
Thierry Reding88e72712015-09-24 18:35:31 +0200984 DRM_ERROR("Invalid crtc %u\n", pipe);
Chris Wilson4041b852011-01-22 10:07:56 +0000985 return -EINVAL;
986 }
987
Ville Syrjäläe2af48c2016-10-31 22:37:05 +0200988 if (!crtc->base.hwmode.crtc_clock) {
Thierry Reding88e72712015-09-24 18:35:31 +0200989 DRM_DEBUG_KMS("crtc %u is disabled\n", pipe);
Chris Wilson4041b852011-01-22 10:07:56 +0000990 return -EBUSY;
991 }
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100992
993 /* Helper routine in DRM core does all the work: */
Chris Wilson4041b852011-01-22 10:07:56 +0000994 return drm_calc_vbltimestamp_from_scanoutpos(dev, pipe, max_error,
995 vblank_time, flags,
Ville Syrjäläe2af48c2016-10-31 22:37:05 +0200996 &crtc->base.hwmode);
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100997}
998
Tvrtko Ursulin91d14252016-05-06 14:48:28 +0100999static void ironlake_rps_change_irq_handler(struct drm_i915_private *dev_priv)
Jesse Barnesf97108d2010-01-29 11:27:07 -08001000{
Matthew Garrettb5b72e82010-02-02 18:30:47 +00001001 u32 busy_up, busy_down, max_avg, min_avg;
Daniel Vetter92703882012-08-09 16:46:01 +02001002 u8 new_delay;
Daniel Vetter92703882012-08-09 16:46:01 +02001003
Daniel Vetterd0ecd7e2013-07-04 23:35:25 +02001004 spin_lock(&mchdev_lock);
Jesse Barnesf97108d2010-01-29 11:27:07 -08001005
Daniel Vetter73edd18f2012-08-08 23:35:37 +02001006 I915_WRITE16(MEMINTRSTS, I915_READ(MEMINTRSTS));
1007
Daniel Vetter20e4d402012-08-08 23:35:39 +02001008 new_delay = dev_priv->ips.cur_delay;
Daniel Vetter92703882012-08-09 16:46:01 +02001009
Jesse Barnes7648fa92010-05-20 14:28:11 -07001010 I915_WRITE16(MEMINTRSTS, MEMINT_EVAL_CHG);
Matthew Garrettb5b72e82010-02-02 18:30:47 +00001011 busy_up = I915_READ(RCPREVBSYTUPAVG);
1012 busy_down = I915_READ(RCPREVBSYTDNAVG);
Jesse Barnesf97108d2010-01-29 11:27:07 -08001013 max_avg = I915_READ(RCBMAXAVG);
1014 min_avg = I915_READ(RCBMINAVG);
1015
1016 /* Handle RCS change request from hw */
Matthew Garrettb5b72e82010-02-02 18:30:47 +00001017 if (busy_up > max_avg) {
Daniel Vetter20e4d402012-08-08 23:35:39 +02001018 if (dev_priv->ips.cur_delay != dev_priv->ips.max_delay)
1019 new_delay = dev_priv->ips.cur_delay - 1;
1020 if (new_delay < dev_priv->ips.max_delay)
1021 new_delay = dev_priv->ips.max_delay;
Matthew Garrettb5b72e82010-02-02 18:30:47 +00001022 } else if (busy_down < min_avg) {
Daniel Vetter20e4d402012-08-08 23:35:39 +02001023 if (dev_priv->ips.cur_delay != dev_priv->ips.min_delay)
1024 new_delay = dev_priv->ips.cur_delay + 1;
1025 if (new_delay > dev_priv->ips.min_delay)
1026 new_delay = dev_priv->ips.min_delay;
Jesse Barnesf97108d2010-01-29 11:27:07 -08001027 }
1028
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01001029 if (ironlake_set_drps(dev_priv, new_delay))
Daniel Vetter20e4d402012-08-08 23:35:39 +02001030 dev_priv->ips.cur_delay = new_delay;
Jesse Barnesf97108d2010-01-29 11:27:07 -08001031
Daniel Vetterd0ecd7e2013-07-04 23:35:25 +02001032 spin_unlock(&mchdev_lock);
Daniel Vetter92703882012-08-09 16:46:01 +02001033
Jesse Barnesf97108d2010-01-29 11:27:07 -08001034 return;
1035}
1036
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00001037static void notify_ring(struct intel_engine_cs *engine)
Chris Wilson549f7362010-10-19 11:19:32 +01001038{
Chris Wilson56299fb2017-02-27 20:58:48 +00001039 struct drm_i915_gem_request *rq = NULL;
1040 struct intel_wait *wait;
Tvrtko Ursulindffabc82017-02-21 09:13:48 +00001041
Chris Wilson2246bea2017-02-17 15:13:00 +00001042 atomic_inc(&engine->irq_count);
Chris Wilson538b2572017-01-24 15:18:05 +00001043 set_bit(ENGINE_IRQ_BREADCRUMB, &engine->irq_posted);
Chris Wilson56299fb2017-02-27 20:58:48 +00001044
Chris Wilson61d3dc72017-03-03 19:08:24 +00001045 spin_lock(&engine->breadcrumbs.irq_lock);
1046 wait = engine->breadcrumbs.irq_wait;
Chris Wilson56299fb2017-02-27 20:58:48 +00001047 if (wait) {
1048 /* We use a callback from the dma-fence to submit
1049 * requests after waiting on our own requests. To
1050 * ensure minimum delay in queuing the next request to
1051 * hardware, signal the fence now rather than wait for
1052 * the signaler to be woken up. We still wake up the
1053 * waiter in order to handle the irq-seqno coherency
1054 * issues (we may receive the interrupt before the
1055 * seqno is written, see __i915_request_irq_complete())
1056 * and to handle coalescing of multiple seqno updates
1057 * and many waiters.
1058 */
1059 if (i915_seqno_passed(intel_engine_get_seqno(engine),
1060 wait->seqno))
Chris Wilson24754d72017-03-03 14:45:57 +00001061 rq = i915_gem_request_get(wait->request);
Chris Wilson56299fb2017-02-27 20:58:48 +00001062
1063 wake_up_process(wait->tsk);
Chris Wilson67b807a82017-02-27 20:58:50 +00001064 } else {
1065 __intel_engine_disarm_breadcrumbs(engine);
Chris Wilson56299fb2017-02-27 20:58:48 +00001066 }
Chris Wilson61d3dc72017-03-03 19:08:24 +00001067 spin_unlock(&engine->breadcrumbs.irq_lock);
Chris Wilson56299fb2017-02-27 20:58:48 +00001068
Chris Wilson24754d72017-03-03 14:45:57 +00001069 if (rq) {
Chris Wilson56299fb2017-02-27 20:58:48 +00001070 dma_fence_signal(&rq->fence);
Chris Wilson24754d72017-03-03 14:45:57 +00001071 i915_gem_request_put(rq);
1072 }
Chris Wilson56299fb2017-02-27 20:58:48 +00001073
1074 trace_intel_engine_notify(engine, wait);
Chris Wilson549f7362010-10-19 11:19:32 +01001075}
1076
Chris Wilson43cf3bf2015-03-18 09:48:22 +00001077static void vlv_c0_read(struct drm_i915_private *dev_priv,
1078 struct intel_rps_ei *ei)
Deepak S31685c22014-07-03 17:33:01 -04001079{
Chris Wilson43cf3bf2015-03-18 09:48:22 +00001080 ei->cz_clock = vlv_punit_read(dev_priv, PUNIT_REG_CZ_TIMESTAMP);
1081 ei->render_c0 = I915_READ(VLV_RENDER_C0_COUNT);
1082 ei->media_c0 = I915_READ(VLV_MEDIA_C0_COUNT);
Deepak S31685c22014-07-03 17:33:01 -04001083}
1084
Chris Wilson43cf3bf2015-03-18 09:48:22 +00001085static bool vlv_c0_above(struct drm_i915_private *dev_priv,
1086 const struct intel_rps_ei *old,
1087 const struct intel_rps_ei *now,
1088 int threshold)
Deepak S31685c22014-07-03 17:33:01 -04001089{
Chris Wilson43cf3bf2015-03-18 09:48:22 +00001090 u64 time, c0;
Ville Syrjälä7bad74d2015-09-24 23:29:20 +03001091 unsigned int mul = 100;
Deepak S31685c22014-07-03 17:33:01 -04001092
Chris Wilson43cf3bf2015-03-18 09:48:22 +00001093 if (old->cz_clock == 0)
1094 return false;
Deepak S31685c22014-07-03 17:33:01 -04001095
Ville Syrjälä7bad74d2015-09-24 23:29:20 +03001096 if (I915_READ(VLV_COUNTER_CONTROL) & VLV_COUNT_RANGE_HIGH)
1097 mul <<= 8;
1098
Chris Wilson43cf3bf2015-03-18 09:48:22 +00001099 time = now->cz_clock - old->cz_clock;
Ville Syrjälä7bad74d2015-09-24 23:29:20 +03001100 time *= threshold * dev_priv->czclk_freq;
Deepak S31685c22014-07-03 17:33:01 -04001101
Chris Wilson43cf3bf2015-03-18 09:48:22 +00001102 /* Workload can be split between render + media, e.g. SwapBuffers
1103 * being blitted in X after being rendered in mesa. To account for
1104 * this we need to combine both engines into our activity counter.
1105 */
1106 c0 = now->render_c0 - old->render_c0;
1107 c0 += now->media_c0 - old->media_c0;
Ville Syrjälä7bad74d2015-09-24 23:29:20 +03001108 c0 *= mul * VLV_CZ_CLOCK_TO_MILLI_SEC;
Deepak S31685c22014-07-03 17:33:01 -04001109
Chris Wilson43cf3bf2015-03-18 09:48:22 +00001110 return c0 >= time;
1111}
Deepak S31685c22014-07-03 17:33:01 -04001112
Chris Wilson43cf3bf2015-03-18 09:48:22 +00001113void gen6_rps_reset_ei(struct drm_i915_private *dev_priv)
1114{
1115 vlv_c0_read(dev_priv, &dev_priv->rps.down_ei);
1116 dev_priv->rps.up_ei = dev_priv->rps.down_ei;
Chris Wilson43cf3bf2015-03-18 09:48:22 +00001117}
1118
1119static u32 vlv_wa_c0_ei(struct drm_i915_private *dev_priv, u32 pm_iir)
1120{
1121 struct intel_rps_ei now;
1122 u32 events = 0;
1123
Chris Wilson6f4b12f82015-03-18 09:48:23 +00001124 if ((pm_iir & (GEN6_PM_RP_DOWN_EI_EXPIRED | GEN6_PM_RP_UP_EI_EXPIRED)) == 0)
Chris Wilson43cf3bf2015-03-18 09:48:22 +00001125 return 0;
1126
1127 vlv_c0_read(dev_priv, &now);
1128 if (now.cz_clock == 0)
1129 return 0;
Deepak S31685c22014-07-03 17:33:01 -04001130
Chris Wilson43cf3bf2015-03-18 09:48:22 +00001131 if (pm_iir & GEN6_PM_RP_DOWN_EI_EXPIRED) {
1132 if (!vlv_c0_above(dev_priv,
1133 &dev_priv->rps.down_ei, &now,
Chris Wilson8fb55192015-04-07 16:20:28 +01001134 dev_priv->rps.down_threshold))
Chris Wilson43cf3bf2015-03-18 09:48:22 +00001135 events |= GEN6_PM_RP_DOWN_THRESHOLD;
1136 dev_priv->rps.down_ei = now;
Deepak S31685c22014-07-03 17:33:01 -04001137 }
1138
Chris Wilson43cf3bf2015-03-18 09:48:22 +00001139 if (pm_iir & GEN6_PM_RP_UP_EI_EXPIRED) {
1140 if (vlv_c0_above(dev_priv,
1141 &dev_priv->rps.up_ei, &now,
Chris Wilson8fb55192015-04-07 16:20:28 +01001142 dev_priv->rps.up_threshold))
Chris Wilson43cf3bf2015-03-18 09:48:22 +00001143 events |= GEN6_PM_RP_UP_THRESHOLD;
1144 dev_priv->rps.up_ei = now;
1145 }
1146
1147 return events;
Deepak S31685c22014-07-03 17:33:01 -04001148}
1149
Chris Wilsonf5a4c672015-04-27 13:41:23 +01001150static bool any_waiters(struct drm_i915_private *dev_priv)
1151{
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00001152 struct intel_engine_cs *engine;
Akash Goel3b3f1652016-10-13 22:44:48 +05301153 enum intel_engine_id id;
Chris Wilsonf5a4c672015-04-27 13:41:23 +01001154
Akash Goel3b3f1652016-10-13 22:44:48 +05301155 for_each_engine(engine, dev_priv, id)
Chris Wilson688e6c72016-07-01 17:23:15 +01001156 if (intel_engine_has_waiter(engine))
Chris Wilsonf5a4c672015-04-27 13:41:23 +01001157 return true;
1158
1159 return false;
1160}
1161
Ben Widawsky4912d042011-04-25 11:25:20 -07001162static void gen6_pm_rps_work(struct work_struct *work)
Jesse Barnes3b8d8d92010-12-17 14:19:02 -08001163{
Jani Nikula2d1013d2014-03-31 14:27:17 +03001164 struct drm_i915_private *dev_priv =
1165 container_of(work, struct drm_i915_private, rps.work);
Chris Wilson8d3afd72015-05-21 21:01:47 +01001166 bool client_boost;
1167 int new_delay, adj, min, max;
Paulo Zanoniedbfdb42013-08-06 18:57:13 -03001168 u32 pm_iir;
Jesse Barnes3b8d8d92010-12-17 14:19:02 -08001169
Daniel Vetter59cdb632013-07-04 23:35:28 +02001170 spin_lock_irq(&dev_priv->irq_lock);
Imre Deakd4d70aa2014-11-19 15:30:04 +02001171 /* Speed up work cancelation during disabling rps interrupts. */
1172 if (!dev_priv->rps.interrupts_enabled) {
1173 spin_unlock_irq(&dev_priv->irq_lock);
1174 return;
1175 }
Imre Deak1f814da2015-12-16 02:52:19 +02001176
Daniel Vetterc6a828d2012-08-08 23:35:35 +02001177 pm_iir = dev_priv->rps.pm_iir;
1178 dev_priv->rps.pm_iir = 0;
Imre Deaka72fbc32014-11-05 20:48:31 +02001179 /* Make sure not to corrupt PMIMR state used by ringbuffer on GEN6 */
Akash Goelf4e9af42016-10-12 21:54:30 +05301180 gen6_unmask_pm_irq(dev_priv, dev_priv->pm_rps_events);
Chris Wilson8d3afd72015-05-21 21:01:47 +01001181 client_boost = dev_priv->rps.client_boost;
1182 dev_priv->rps.client_boost = false;
Daniel Vetter59cdb632013-07-04 23:35:28 +02001183 spin_unlock_irq(&dev_priv->irq_lock);
Ben Widawsky4912d042011-04-25 11:25:20 -07001184
Paulo Zanoni60611c12013-08-15 11:50:01 -03001185 /* Make sure we didn't queue anything we're not going to process. */
Deepak Sa6706b42014-03-15 20:23:22 +05301186 WARN_ON(pm_iir & ~dev_priv->pm_rps_events);
Paulo Zanoni60611c12013-08-15 11:50:01 -03001187
Chris Wilson8d3afd72015-05-21 21:01:47 +01001188 if ((pm_iir & dev_priv->pm_rps_events) == 0 && !client_boost)
Chris Wilsonc33d2472016-07-04 08:08:36 +01001189 return;
Jesse Barnes3b8d8d92010-12-17 14:19:02 -08001190
Jesse Barnes4fc688c2012-11-02 11:14:01 -07001191 mutex_lock(&dev_priv->rps.hw_lock);
Chris Wilson7b9e0ae2012-04-28 08:56:39 +01001192
Chris Wilson43cf3bf2015-03-18 09:48:22 +00001193 pm_iir |= vlv_wa_c0_ei(dev_priv, pm_iir);
1194
Chris Wilsondd75fdc2013-09-25 17:34:57 +01001195 adj = dev_priv->rps.last_adj;
Chris Wilsonedcf2842015-04-07 16:20:29 +01001196 new_delay = dev_priv->rps.cur_freq;
Chris Wilson8d3afd72015-05-21 21:01:47 +01001197 min = dev_priv->rps.min_freq_softlimit;
1198 max = dev_priv->rps.max_freq_softlimit;
Chris Wilson29ecd78d2016-07-13 09:10:35 +01001199 if (client_boost || any_waiters(dev_priv))
1200 max = dev_priv->rps.max_freq;
1201 if (client_boost && new_delay < dev_priv->rps.boost_freq) {
1202 new_delay = dev_priv->rps.boost_freq;
Chris Wilson8d3afd72015-05-21 21:01:47 +01001203 adj = 0;
1204 } else if (pm_iir & GEN6_PM_RP_UP_THRESHOLD) {
Chris Wilsondd75fdc2013-09-25 17:34:57 +01001205 if (adj > 0)
1206 adj *= 2;
Chris Wilsonedcf2842015-04-07 16:20:29 +01001207 else /* CHV needs even encode values */
1208 adj = IS_CHERRYVIEW(dev_priv) ? 2 : 1;
Sagar Arun Kamble7e79a682017-01-20 09:18:24 +05301209
1210 if (new_delay >= dev_priv->rps.max_freq_softlimit)
1211 adj = 0;
Chris Wilson29ecd78d2016-07-13 09:10:35 +01001212 } else if (client_boost || any_waiters(dev_priv)) {
Chris Wilsonf5a4c672015-04-27 13:41:23 +01001213 adj = 0;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01001214 } else if (pm_iir & GEN6_PM_RP_DOWN_TIMEOUT) {
Ben Widawskyb39fb292014-03-19 18:31:11 -07001215 if (dev_priv->rps.cur_freq > dev_priv->rps.efficient_freq)
1216 new_delay = dev_priv->rps.efficient_freq;
Chris Wilson17136d52017-02-10 15:03:47 +00001217 else if (dev_priv->rps.cur_freq > dev_priv->rps.min_freq_softlimit)
Ben Widawskyb39fb292014-03-19 18:31:11 -07001218 new_delay = dev_priv->rps.min_freq_softlimit;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01001219 adj = 0;
1220 } else if (pm_iir & GEN6_PM_RP_DOWN_THRESHOLD) {
1221 if (adj < 0)
1222 adj *= 2;
Chris Wilsonedcf2842015-04-07 16:20:29 +01001223 else /* CHV needs even encode values */
1224 adj = IS_CHERRYVIEW(dev_priv) ? -2 : -1;
Sagar Arun Kamble7e79a682017-01-20 09:18:24 +05301225
1226 if (new_delay <= dev_priv->rps.min_freq_softlimit)
1227 adj = 0;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01001228 } else { /* unknown event */
Chris Wilsonedcf2842015-04-07 16:20:29 +01001229 adj = 0;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01001230 }
Jesse Barnes3b8d8d92010-12-17 14:19:02 -08001231
Chris Wilsonedcf2842015-04-07 16:20:29 +01001232 dev_priv->rps.last_adj = adj;
1233
Ben Widawsky79249632012-09-07 19:43:42 -07001234 /* sysfs frequency interfaces may have snuck in while servicing the
1235 * interrupt
1236 */
Chris Wilsonedcf2842015-04-07 16:20:29 +01001237 new_delay += adj;
Chris Wilson8d3afd72015-05-21 21:01:47 +01001238 new_delay = clamp_t(int, new_delay, min, max);
Deepak S27544362014-01-27 21:35:05 +05301239
Chris Wilson9fcee2f2017-01-26 10:19:19 +00001240 if (intel_set_rps(dev_priv, new_delay)) {
1241 DRM_DEBUG_DRIVER("Failed to set new GPU frequency\n");
1242 dev_priv->rps.last_adj = 0;
1243 }
Jesse Barnes3b8d8d92010-12-17 14:19:02 -08001244
Jesse Barnes4fc688c2012-11-02 11:14:01 -07001245 mutex_unlock(&dev_priv->rps.hw_lock);
Jesse Barnes3b8d8d92010-12-17 14:19:02 -08001246}
1247
Ben Widawskye3689192012-05-25 16:56:22 -07001248
1249/**
1250 * ivybridge_parity_work - Workqueue called when a parity error interrupt
1251 * occurred.
1252 * @work: workqueue struct
1253 *
1254 * Doesn't actually do anything except notify userspace. As a consequence of
1255 * this event, userspace should try to remap the bad rows since statistically
1256 * it is likely the same row is more likely to go bad again.
1257 */
1258static void ivybridge_parity_work(struct work_struct *work)
1259{
Jani Nikula2d1013d2014-03-31 14:27:17 +03001260 struct drm_i915_private *dev_priv =
1261 container_of(work, struct drm_i915_private, l3_parity.error_work);
Ben Widawskye3689192012-05-25 16:56:22 -07001262 u32 error_status, row, bank, subbank;
Ben Widawsky35a85ac2013-09-19 11:13:41 -07001263 char *parity_event[6];
Ben Widawskye3689192012-05-25 16:56:22 -07001264 uint32_t misccpctl;
Ben Widawsky35a85ac2013-09-19 11:13:41 -07001265 uint8_t slice = 0;
Ben Widawskye3689192012-05-25 16:56:22 -07001266
1267 /* We must turn off DOP level clock gating to access the L3 registers.
1268 * In order to prevent a get/put style interface, acquire struct mutex
1269 * any time we access those registers.
1270 */
Chris Wilson91c8a322016-07-05 10:40:23 +01001271 mutex_lock(&dev_priv->drm.struct_mutex);
Ben Widawskye3689192012-05-25 16:56:22 -07001272
Ben Widawsky35a85ac2013-09-19 11:13:41 -07001273 /* If we've screwed up tracking, just let the interrupt fire again */
1274 if (WARN_ON(!dev_priv->l3_parity.which_slice))
1275 goto out;
1276
Ben Widawskye3689192012-05-25 16:56:22 -07001277 misccpctl = I915_READ(GEN7_MISCCPCTL);
1278 I915_WRITE(GEN7_MISCCPCTL, misccpctl & ~GEN7_DOP_CLOCK_GATE_ENABLE);
1279 POSTING_READ(GEN7_MISCCPCTL);
1280
Ben Widawsky35a85ac2013-09-19 11:13:41 -07001281 while ((slice = ffs(dev_priv->l3_parity.which_slice)) != 0) {
Ville Syrjäläf0f59a02015-11-18 15:33:26 +02001282 i915_reg_t reg;
Ben Widawskye3689192012-05-25 16:56:22 -07001283
Ben Widawsky35a85ac2013-09-19 11:13:41 -07001284 slice--;
Joonas Lahtinen2d1fe072016-04-07 11:08:05 +03001285 if (WARN_ON_ONCE(slice >= NUM_L3_SLICES(dev_priv)))
Ben Widawsky35a85ac2013-09-19 11:13:41 -07001286 break;
1287
1288 dev_priv->l3_parity.which_slice &= ~(1<<slice);
1289
Ville Syrjälä6fa1c5f2015-11-04 23:20:02 +02001290 reg = GEN7_L3CDERRST1(slice);
Ben Widawsky35a85ac2013-09-19 11:13:41 -07001291
1292 error_status = I915_READ(reg);
1293 row = GEN7_PARITY_ERROR_ROW(error_status);
1294 bank = GEN7_PARITY_ERROR_BANK(error_status);
1295 subbank = GEN7_PARITY_ERROR_SUBBANK(error_status);
1296
1297 I915_WRITE(reg, GEN7_PARITY_ERROR_VALID | GEN7_L3CDERRST1_ENABLE);
1298 POSTING_READ(reg);
1299
1300 parity_event[0] = I915_L3_PARITY_UEVENT "=1";
1301 parity_event[1] = kasprintf(GFP_KERNEL, "ROW=%d", row);
1302 parity_event[2] = kasprintf(GFP_KERNEL, "BANK=%d", bank);
1303 parity_event[3] = kasprintf(GFP_KERNEL, "SUBBANK=%d", subbank);
1304 parity_event[4] = kasprintf(GFP_KERNEL, "SLICE=%d", slice);
1305 parity_event[5] = NULL;
1306
Chris Wilson91c8a322016-07-05 10:40:23 +01001307 kobject_uevent_env(&dev_priv->drm.primary->kdev->kobj,
Ben Widawsky35a85ac2013-09-19 11:13:41 -07001308 KOBJ_CHANGE, parity_event);
1309
1310 DRM_DEBUG("Parity error: Slice = %d, Row = %d, Bank = %d, Sub bank = %d.\n",
1311 slice, row, bank, subbank);
1312
1313 kfree(parity_event[4]);
1314 kfree(parity_event[3]);
1315 kfree(parity_event[2]);
1316 kfree(parity_event[1]);
1317 }
Ben Widawskye3689192012-05-25 16:56:22 -07001318
1319 I915_WRITE(GEN7_MISCCPCTL, misccpctl);
1320
Ben Widawsky35a85ac2013-09-19 11:13:41 -07001321out:
1322 WARN_ON(dev_priv->l3_parity.which_slice);
Daniel Vetter4cb21832014-09-15 14:55:26 +02001323 spin_lock_irq(&dev_priv->irq_lock);
Joonas Lahtinen2d1fe072016-04-07 11:08:05 +03001324 gen5_enable_gt_irq(dev_priv, GT_PARITY_ERROR(dev_priv));
Daniel Vetter4cb21832014-09-15 14:55:26 +02001325 spin_unlock_irq(&dev_priv->irq_lock);
Ben Widawskye3689192012-05-25 16:56:22 -07001326
Chris Wilson91c8a322016-07-05 10:40:23 +01001327 mutex_unlock(&dev_priv->drm.struct_mutex);
Ben Widawskye3689192012-05-25 16:56:22 -07001328}
1329
Ville Syrjälä261e40b2016-04-13 21:19:57 +03001330static void ivybridge_parity_error_irq_handler(struct drm_i915_private *dev_priv,
1331 u32 iir)
Ben Widawskye3689192012-05-25 16:56:22 -07001332{
Ville Syrjälä261e40b2016-04-13 21:19:57 +03001333 if (!HAS_L3_DPF(dev_priv))
Ben Widawskye3689192012-05-25 16:56:22 -07001334 return;
1335
Daniel Vetterd0ecd7e2013-07-04 23:35:25 +02001336 spin_lock(&dev_priv->irq_lock);
Ville Syrjälä261e40b2016-04-13 21:19:57 +03001337 gen5_disable_gt_irq(dev_priv, GT_PARITY_ERROR(dev_priv));
Daniel Vetterd0ecd7e2013-07-04 23:35:25 +02001338 spin_unlock(&dev_priv->irq_lock);
Ben Widawskye3689192012-05-25 16:56:22 -07001339
Ville Syrjälä261e40b2016-04-13 21:19:57 +03001340 iir &= GT_PARITY_ERROR(dev_priv);
Ben Widawsky35a85ac2013-09-19 11:13:41 -07001341 if (iir & GT_RENDER_L3_PARITY_ERROR_INTERRUPT_S1)
1342 dev_priv->l3_parity.which_slice |= 1 << 1;
1343
1344 if (iir & GT_RENDER_L3_PARITY_ERROR_INTERRUPT)
1345 dev_priv->l3_parity.which_slice |= 1 << 0;
1346
Daniel Vettera4da4fa2012-11-02 19:55:07 +01001347 queue_work(dev_priv->wq, &dev_priv->l3_parity.error_work);
Ben Widawskye3689192012-05-25 16:56:22 -07001348}
1349
Ville Syrjälä261e40b2016-04-13 21:19:57 +03001350static void ilk_gt_irq_handler(struct drm_i915_private *dev_priv,
Paulo Zanonif1af8fc2013-07-12 19:56:30 -03001351 u32 gt_iir)
1352{
Chris Wilsonf8973c22016-07-01 17:23:21 +01001353 if (gt_iir & GT_RENDER_USER_INTERRUPT)
Akash Goel3b3f1652016-10-13 22:44:48 +05301354 notify_ring(dev_priv->engine[RCS]);
Paulo Zanonif1af8fc2013-07-12 19:56:30 -03001355 if (gt_iir & ILK_BSD_USER_INTERRUPT)
Akash Goel3b3f1652016-10-13 22:44:48 +05301356 notify_ring(dev_priv->engine[VCS]);
Paulo Zanonif1af8fc2013-07-12 19:56:30 -03001357}
1358
Ville Syrjälä261e40b2016-04-13 21:19:57 +03001359static void snb_gt_irq_handler(struct drm_i915_private *dev_priv,
Daniel Vettere7b4c6b2012-03-30 20:24:35 +02001360 u32 gt_iir)
1361{
Chris Wilsonf8973c22016-07-01 17:23:21 +01001362 if (gt_iir & GT_RENDER_USER_INTERRUPT)
Akash Goel3b3f1652016-10-13 22:44:48 +05301363 notify_ring(dev_priv->engine[RCS]);
Ben Widawskycc609d52013-05-28 19:22:29 -07001364 if (gt_iir & GT_BSD_USER_INTERRUPT)
Akash Goel3b3f1652016-10-13 22:44:48 +05301365 notify_ring(dev_priv->engine[VCS]);
Ben Widawskycc609d52013-05-28 19:22:29 -07001366 if (gt_iir & GT_BLT_USER_INTERRUPT)
Akash Goel3b3f1652016-10-13 22:44:48 +05301367 notify_ring(dev_priv->engine[BCS]);
Daniel Vettere7b4c6b2012-03-30 20:24:35 +02001368
Ben Widawskycc609d52013-05-28 19:22:29 -07001369 if (gt_iir & (GT_BLT_CS_ERROR_INTERRUPT |
1370 GT_BSD_CS_ERROR_INTERRUPT |
Daniel Vetteraaecdf62014-11-04 15:52:22 +01001371 GT_RENDER_CS_MASTER_ERROR_INTERRUPT))
1372 DRM_DEBUG("Command parser error, gt_iir 0x%08x\n", gt_iir);
Ben Widawskye3689192012-05-25 16:56:22 -07001373
Ville Syrjälä261e40b2016-04-13 21:19:57 +03001374 if (gt_iir & GT_PARITY_ERROR(dev_priv))
1375 ivybridge_parity_error_irq_handler(dev_priv, gt_iir);
Daniel Vettere7b4c6b2012-03-30 20:24:35 +02001376}
1377
Nick Hoathfbcc1a02015-10-20 10:23:52 +01001378static __always_inline void
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00001379gen8_cs_irq_handler(struct intel_engine_cs *engine, u32 iir, int test_shift)
Nick Hoathfbcc1a02015-10-20 10:23:52 +01001380{
1381 if (iir & (GT_RENDER_USER_INTERRUPT << test_shift))
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00001382 notify_ring(engine);
Chris Wilsonf7470262017-01-24 15:20:21 +00001383
1384 if (iir & (GT_CONTEXT_SWITCH_INTERRUPT << test_shift)) {
1385 set_bit(ENGINE_IRQ_EXECLIST, &engine->irq_posted);
1386 tasklet_hi_schedule(&engine->irq_tasklet);
1387 }
Nick Hoathfbcc1a02015-10-20 10:23:52 +01001388}
1389
Ville Syrjäläe30e2512016-04-13 21:19:58 +03001390static irqreturn_t gen8_gt_irq_ack(struct drm_i915_private *dev_priv,
1391 u32 master_ctl,
1392 u32 gt_iir[4])
Ben Widawskyabd58f02013-11-02 21:07:09 -07001393{
Ben Widawskyabd58f02013-11-02 21:07:09 -07001394 irqreturn_t ret = IRQ_NONE;
1395
1396 if (master_ctl & (GEN8_GT_RCS_IRQ | GEN8_GT_BCS_IRQ)) {
Ville Syrjäläe30e2512016-04-13 21:19:58 +03001397 gt_iir[0] = I915_READ_FW(GEN8_GT_IIR(0));
1398 if (gt_iir[0]) {
1399 I915_WRITE_FW(GEN8_GT_IIR(0), gt_iir[0]);
Ben Widawskyabd58f02013-11-02 21:07:09 -07001400 ret = IRQ_HANDLED;
Ben Widawskyabd58f02013-11-02 21:07:09 -07001401 } else
1402 DRM_ERROR("The master control interrupt lied (GT0)!\n");
1403 }
1404
Zhao Yakui85f9b5f2014-04-17 10:37:38 +08001405 if (master_ctl & (GEN8_GT_VCS1_IRQ | GEN8_GT_VCS2_IRQ)) {
Ville Syrjäläe30e2512016-04-13 21:19:58 +03001406 gt_iir[1] = I915_READ_FW(GEN8_GT_IIR(1));
1407 if (gt_iir[1]) {
1408 I915_WRITE_FW(GEN8_GT_IIR(1), gt_iir[1]);
Ben Widawskyabd58f02013-11-02 21:07:09 -07001409 ret = IRQ_HANDLED;
Ben Widawskyabd58f02013-11-02 21:07:09 -07001410 } else
1411 DRM_ERROR("The master control interrupt lied (GT1)!\n");
1412 }
1413
Chris Wilson74cdb332015-04-07 16:21:05 +01001414 if (master_ctl & GEN8_GT_VECS_IRQ) {
Ville Syrjäläe30e2512016-04-13 21:19:58 +03001415 gt_iir[3] = I915_READ_FW(GEN8_GT_IIR(3));
1416 if (gt_iir[3]) {
1417 I915_WRITE_FW(GEN8_GT_IIR(3), gt_iir[3]);
Chris Wilson74cdb332015-04-07 16:21:05 +01001418 ret = IRQ_HANDLED;
Chris Wilson74cdb332015-04-07 16:21:05 +01001419 } else
1420 DRM_ERROR("The master control interrupt lied (GT3)!\n");
1421 }
1422
Sagar Arun Kamble26705e22016-10-12 21:54:31 +05301423 if (master_ctl & (GEN8_GT_PM_IRQ | GEN8_GT_GUC_IRQ)) {
Ville Syrjäläe30e2512016-04-13 21:19:58 +03001424 gt_iir[2] = I915_READ_FW(GEN8_GT_IIR(2));
Sagar Arun Kamble26705e22016-10-12 21:54:31 +05301425 if (gt_iir[2] & (dev_priv->pm_rps_events |
1426 dev_priv->pm_guc_events)) {
Chris Wilsoncb0d2052015-04-07 16:21:04 +01001427 I915_WRITE_FW(GEN8_GT_IIR(2),
Sagar Arun Kamble26705e22016-10-12 21:54:31 +05301428 gt_iir[2] & (dev_priv->pm_rps_events |
1429 dev_priv->pm_guc_events));
Oscar Mateo38cc46d2014-06-16 16:10:59 +01001430 ret = IRQ_HANDLED;
Ben Widawsky09610212014-05-15 20:58:08 +03001431 } else
1432 DRM_ERROR("The master control interrupt lied (PM)!\n");
1433 }
1434
Ben Widawskyabd58f02013-11-02 21:07:09 -07001435 return ret;
1436}
1437
Ville Syrjäläe30e2512016-04-13 21:19:58 +03001438static void gen8_gt_irq_handler(struct drm_i915_private *dev_priv,
1439 u32 gt_iir[4])
1440{
1441 if (gt_iir[0]) {
Akash Goel3b3f1652016-10-13 22:44:48 +05301442 gen8_cs_irq_handler(dev_priv->engine[RCS],
Ville Syrjäläe30e2512016-04-13 21:19:58 +03001443 gt_iir[0], GEN8_RCS_IRQ_SHIFT);
Akash Goel3b3f1652016-10-13 22:44:48 +05301444 gen8_cs_irq_handler(dev_priv->engine[BCS],
Ville Syrjäläe30e2512016-04-13 21:19:58 +03001445 gt_iir[0], GEN8_BCS_IRQ_SHIFT);
1446 }
1447
1448 if (gt_iir[1]) {
Akash Goel3b3f1652016-10-13 22:44:48 +05301449 gen8_cs_irq_handler(dev_priv->engine[VCS],
Ville Syrjäläe30e2512016-04-13 21:19:58 +03001450 gt_iir[1], GEN8_VCS1_IRQ_SHIFT);
Akash Goel3b3f1652016-10-13 22:44:48 +05301451 gen8_cs_irq_handler(dev_priv->engine[VCS2],
Ville Syrjäläe30e2512016-04-13 21:19:58 +03001452 gt_iir[1], GEN8_VCS2_IRQ_SHIFT);
1453 }
1454
1455 if (gt_iir[3])
Akash Goel3b3f1652016-10-13 22:44:48 +05301456 gen8_cs_irq_handler(dev_priv->engine[VECS],
Ville Syrjäläe30e2512016-04-13 21:19:58 +03001457 gt_iir[3], GEN8_VECS_IRQ_SHIFT);
1458
1459 if (gt_iir[2] & dev_priv->pm_rps_events)
1460 gen6_rps_irq_handler(dev_priv, gt_iir[2]);
Sagar Arun Kamble26705e22016-10-12 21:54:31 +05301461
1462 if (gt_iir[2] & dev_priv->pm_guc_events)
1463 gen9_guc_irq_handler(dev_priv, gt_iir[2]);
Ville Syrjäläe30e2512016-04-13 21:19:58 +03001464}
1465
Imre Deak63c88d22015-07-20 14:43:39 -07001466static bool bxt_port_hotplug_long_detect(enum port port, u32 val)
1467{
1468 switch (port) {
1469 case PORT_A:
Ville Syrjälä195baa02015-08-27 23:56:00 +03001470 return val & PORTA_HOTPLUG_LONG_DETECT;
Imre Deak63c88d22015-07-20 14:43:39 -07001471 case PORT_B:
1472 return val & PORTB_HOTPLUG_LONG_DETECT;
1473 case PORT_C:
1474 return val & PORTC_HOTPLUG_LONG_DETECT;
Imre Deak63c88d22015-07-20 14:43:39 -07001475 default:
1476 return false;
1477 }
1478}
1479
Ville Syrjälä6dbf30c2015-08-27 23:56:02 +03001480static bool spt_port_hotplug2_long_detect(enum port port, u32 val)
1481{
1482 switch (port) {
1483 case PORT_E:
1484 return val & PORTE_HOTPLUG_LONG_DETECT;
1485 default:
1486 return false;
1487 }
1488}
1489
Ville Syrjälä74c0b392015-08-27 23:56:07 +03001490static bool spt_port_hotplug_long_detect(enum port port, u32 val)
1491{
1492 switch (port) {
1493 case PORT_A:
1494 return val & PORTA_HOTPLUG_LONG_DETECT;
1495 case PORT_B:
1496 return val & PORTB_HOTPLUG_LONG_DETECT;
1497 case PORT_C:
1498 return val & PORTC_HOTPLUG_LONG_DETECT;
1499 case PORT_D:
1500 return val & PORTD_HOTPLUG_LONG_DETECT;
1501 default:
1502 return false;
1503 }
1504}
1505
Ville Syrjäläe4ce95a2015-08-27 23:56:03 +03001506static bool ilk_port_hotplug_long_detect(enum port port, u32 val)
1507{
1508 switch (port) {
1509 case PORT_A:
1510 return val & DIGITAL_PORTA_HOTPLUG_LONG_DETECT;
1511 default:
1512 return false;
1513 }
1514}
1515
Jani Nikula676574d2015-05-28 15:43:53 +03001516static bool pch_port_hotplug_long_detect(enum port port, u32 val)
Dave Airlie13cf5502014-06-18 11:29:35 +10001517{
1518 switch (port) {
Dave Airlie13cf5502014-06-18 11:29:35 +10001519 case PORT_B:
Jani Nikula676574d2015-05-28 15:43:53 +03001520 return val & PORTB_HOTPLUG_LONG_DETECT;
Dave Airlie13cf5502014-06-18 11:29:35 +10001521 case PORT_C:
Jani Nikula676574d2015-05-28 15:43:53 +03001522 return val & PORTC_HOTPLUG_LONG_DETECT;
Dave Airlie13cf5502014-06-18 11:29:35 +10001523 case PORT_D:
Jani Nikula676574d2015-05-28 15:43:53 +03001524 return val & PORTD_HOTPLUG_LONG_DETECT;
1525 default:
1526 return false;
Dave Airlie13cf5502014-06-18 11:29:35 +10001527 }
1528}
1529
Jani Nikula676574d2015-05-28 15:43:53 +03001530static bool i9xx_port_hotplug_long_detect(enum port port, u32 val)
Dave Airlie13cf5502014-06-18 11:29:35 +10001531{
1532 switch (port) {
Dave Airlie13cf5502014-06-18 11:29:35 +10001533 case PORT_B:
Jani Nikula676574d2015-05-28 15:43:53 +03001534 return val & PORTB_HOTPLUG_INT_LONG_PULSE;
Dave Airlie13cf5502014-06-18 11:29:35 +10001535 case PORT_C:
Jani Nikula676574d2015-05-28 15:43:53 +03001536 return val & PORTC_HOTPLUG_INT_LONG_PULSE;
Dave Airlie13cf5502014-06-18 11:29:35 +10001537 case PORT_D:
Jani Nikula676574d2015-05-28 15:43:53 +03001538 return val & PORTD_HOTPLUG_INT_LONG_PULSE;
1539 default:
1540 return false;
Dave Airlie13cf5502014-06-18 11:29:35 +10001541 }
1542}
1543
Ville Syrjälä42db67d2015-08-28 21:26:27 +03001544/*
1545 * Get a bit mask of pins that have triggered, and which ones may be long.
1546 * This can be called multiple times with the same masks to accumulate
1547 * hotplug detection results from several registers.
1548 *
1549 * Note that the caller is expected to zero out the masks initially.
1550 */
Imre Deakfd63e2a2015-07-21 15:32:44 -07001551static void intel_get_hpd_pins(u32 *pin_mask, u32 *long_mask,
Jani Nikula8c841e52015-06-18 13:06:17 +03001552 u32 hotplug_trigger, u32 dig_hotplug_reg,
Imre Deakfd63e2a2015-07-21 15:32:44 -07001553 const u32 hpd[HPD_NUM_PINS],
1554 bool long_pulse_detect(enum port port, u32 val))
Jani Nikula676574d2015-05-28 15:43:53 +03001555{
Jani Nikula8c841e52015-06-18 13:06:17 +03001556 enum port port;
Jani Nikula676574d2015-05-28 15:43:53 +03001557 int i;
1558
Jani Nikula676574d2015-05-28 15:43:53 +03001559 for_each_hpd_pin(i) {
Jani Nikula8c841e52015-06-18 13:06:17 +03001560 if ((hpd[i] & hotplug_trigger) == 0)
1561 continue;
Jani Nikula676574d2015-05-28 15:43:53 +03001562
Jani Nikula8c841e52015-06-18 13:06:17 +03001563 *pin_mask |= BIT(i);
1564
Imre Deakcc24fcd2015-07-21 15:32:45 -07001565 if (!intel_hpd_pin_to_port(i, &port))
1566 continue;
1567
Imre Deakfd63e2a2015-07-21 15:32:44 -07001568 if (long_pulse_detect(port, dig_hotplug_reg))
Jani Nikula8c841e52015-06-18 13:06:17 +03001569 *long_mask |= BIT(i);
Jani Nikula676574d2015-05-28 15:43:53 +03001570 }
1571
1572 DRM_DEBUG_DRIVER("hotplug event received, stat 0x%08x, dig 0x%08x, pins 0x%08x\n",
1573 hotplug_trigger, dig_hotplug_reg, *pin_mask);
1574
1575}
1576
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01001577static void gmbus_irq_handler(struct drm_i915_private *dev_priv)
Daniel Vetter515ac2b2012-12-01 13:53:44 +01001578{
Daniel Vetter28c70f12012-12-01 13:53:45 +01001579 wake_up_all(&dev_priv->gmbus_wait_queue);
Daniel Vetter515ac2b2012-12-01 13:53:44 +01001580}
1581
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01001582static void dp_aux_irq_handler(struct drm_i915_private *dev_priv)
Daniel Vetterce99c252012-12-01 13:53:47 +01001583{
Daniel Vetter9ee32fea2012-12-01 13:53:48 +01001584 wake_up_all(&dev_priv->gmbus_wait_queue);
Daniel Vetterce99c252012-12-01 13:53:47 +01001585}
1586
Shuang He8bf1e9f2013-10-15 18:55:27 +01001587#if defined(CONFIG_DEBUG_FS)
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01001588static void display_pipe_crc_irq_handler(struct drm_i915_private *dev_priv,
1589 enum pipe pipe,
Daniel Vetter277de952013-10-18 16:37:07 +02001590 uint32_t crc0, uint32_t crc1,
1591 uint32_t crc2, uint32_t crc3,
1592 uint32_t crc4)
Shuang He8bf1e9f2013-10-15 18:55:27 +01001593{
Shuang He8bf1e9f2013-10-15 18:55:27 +01001594 struct intel_pipe_crc *pipe_crc = &dev_priv->pipe_crc[pipe];
1595 struct intel_pipe_crc_entry *entry;
Tomeu Vizoso8c6b7092017-01-10 14:43:04 +01001596 struct intel_crtc *crtc = intel_get_crtc_for_pipe(dev_priv, pipe);
1597 struct drm_driver *driver = dev_priv->drm.driver;
1598 uint32_t crcs[5];
Damien Lespiauac2300d2013-10-15 18:55:30 +01001599 int head, tail;
Damien Lespiaub2c88f52013-10-15 18:55:29 +01001600
Damien Lespiaud538bbd2013-10-21 14:29:30 +01001601 spin_lock(&pipe_crc->lock);
Tomeu Vizoso8c6b7092017-01-10 14:43:04 +01001602 if (pipe_crc->source) {
1603 if (!pipe_crc->entries) {
1604 spin_unlock(&pipe_crc->lock);
1605 DRM_DEBUG_KMS("spurious interrupt\n");
1606 return;
1607 }
Damien Lespiaud538bbd2013-10-21 14:29:30 +01001608
Tomeu Vizoso8c6b7092017-01-10 14:43:04 +01001609 head = pipe_crc->head;
1610 tail = pipe_crc->tail;
1611
1612 if (CIRC_SPACE(head, tail, INTEL_PIPE_CRC_ENTRIES_NR) < 1) {
1613 spin_unlock(&pipe_crc->lock);
1614 DRM_ERROR("CRC buffer overflowing\n");
1615 return;
1616 }
1617
1618 entry = &pipe_crc->entries[head];
1619
1620 entry->frame = driver->get_vblank_counter(&dev_priv->drm, pipe);
1621 entry->crc[0] = crc0;
1622 entry->crc[1] = crc1;
1623 entry->crc[2] = crc2;
1624 entry->crc[3] = crc3;
1625 entry->crc[4] = crc4;
1626
1627 head = (head + 1) & (INTEL_PIPE_CRC_ENTRIES_NR - 1);
1628 pipe_crc->head = head;
1629
Damien Lespiaud538bbd2013-10-21 14:29:30 +01001630 spin_unlock(&pipe_crc->lock);
Damien Lespiau0c912c72013-10-15 18:55:37 +01001631
Tomeu Vizoso8c6b7092017-01-10 14:43:04 +01001632 wake_up_interruptible(&pipe_crc->wq);
1633 } else {
1634 /*
1635 * For some not yet identified reason, the first CRC is
1636 * bonkers. So let's just wait for the next vblank and read
1637 * out the buggy result.
1638 *
1639 * On CHV sometimes the second CRC is bonkers as well, so
1640 * don't trust that one either.
1641 */
1642 if (pipe_crc->skipped == 0 ||
1643 (IS_CHERRYVIEW(dev_priv) && pipe_crc->skipped == 1)) {
1644 pipe_crc->skipped++;
1645 spin_unlock(&pipe_crc->lock);
1646 return;
1647 }
Damien Lespiaud538bbd2013-10-21 14:29:30 +01001648 spin_unlock(&pipe_crc->lock);
Tomeu Vizoso8c6b7092017-01-10 14:43:04 +01001649 crcs[0] = crc0;
1650 crcs[1] = crc1;
1651 crcs[2] = crc2;
1652 crcs[3] = crc3;
1653 crcs[4] = crc4;
Tomeu Vizoso246ee522017-01-10 14:43:05 +01001654 drm_crtc_add_crc_entry(&crtc->base, true,
1655 drm_accurate_vblank_count(&crtc->base),
1656 crcs);
Damien Lespiaub2c88f52013-10-15 18:55:29 +01001657 }
Shuang He8bf1e9f2013-10-15 18:55:27 +01001658}
Daniel Vetter277de952013-10-18 16:37:07 +02001659#else
1660static inline void
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01001661display_pipe_crc_irq_handler(struct drm_i915_private *dev_priv,
1662 enum pipe pipe,
Daniel Vetter277de952013-10-18 16:37:07 +02001663 uint32_t crc0, uint32_t crc1,
1664 uint32_t crc2, uint32_t crc3,
1665 uint32_t crc4) {}
1666#endif
Daniel Vettereba94eb2013-10-16 22:55:46 +02001667
Daniel Vetter277de952013-10-18 16:37:07 +02001668
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01001669static void hsw_pipe_crc_irq_handler(struct drm_i915_private *dev_priv,
1670 enum pipe pipe)
Daniel Vetter5a69b892013-10-16 22:55:52 +02001671{
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01001672 display_pipe_crc_irq_handler(dev_priv, pipe,
Daniel Vetter277de952013-10-18 16:37:07 +02001673 I915_READ(PIPE_CRC_RES_1_IVB(pipe)),
1674 0, 0, 0, 0);
Daniel Vetter5a69b892013-10-16 22:55:52 +02001675}
1676
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01001677static void ivb_pipe_crc_irq_handler(struct drm_i915_private *dev_priv,
1678 enum pipe pipe)
Daniel Vettereba94eb2013-10-16 22:55:46 +02001679{
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01001680 display_pipe_crc_irq_handler(dev_priv, pipe,
Daniel Vetter277de952013-10-18 16:37:07 +02001681 I915_READ(PIPE_CRC_RES_1_IVB(pipe)),
1682 I915_READ(PIPE_CRC_RES_2_IVB(pipe)),
1683 I915_READ(PIPE_CRC_RES_3_IVB(pipe)),
1684 I915_READ(PIPE_CRC_RES_4_IVB(pipe)),
1685 I915_READ(PIPE_CRC_RES_5_IVB(pipe)));
Daniel Vettereba94eb2013-10-16 22:55:46 +02001686}
Daniel Vetter5b3a8562013-10-16 22:55:48 +02001687
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01001688static void i9xx_pipe_crc_irq_handler(struct drm_i915_private *dev_priv,
1689 enum pipe pipe)
Daniel Vetter5b3a8562013-10-16 22:55:48 +02001690{
Daniel Vetter0b5c5ed2013-10-16 22:55:53 +02001691 uint32_t res1, res2;
1692
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01001693 if (INTEL_GEN(dev_priv) >= 3)
Daniel Vetter0b5c5ed2013-10-16 22:55:53 +02001694 res1 = I915_READ(PIPE_CRC_RES_RES1_I915(pipe));
1695 else
1696 res1 = 0;
1697
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01001698 if (INTEL_GEN(dev_priv) >= 5 || IS_G4X(dev_priv))
Daniel Vetter0b5c5ed2013-10-16 22:55:53 +02001699 res2 = I915_READ(PIPE_CRC_RES_RES2_G4X(pipe));
1700 else
1701 res2 = 0;
Daniel Vetter5b3a8562013-10-16 22:55:48 +02001702
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01001703 display_pipe_crc_irq_handler(dev_priv, pipe,
Daniel Vetter277de952013-10-18 16:37:07 +02001704 I915_READ(PIPE_CRC_RES_RED(pipe)),
1705 I915_READ(PIPE_CRC_RES_GREEN(pipe)),
1706 I915_READ(PIPE_CRC_RES_BLUE(pipe)),
1707 res1, res2);
Daniel Vetter5b3a8562013-10-16 22:55:48 +02001708}
Shuang He8bf1e9f2013-10-15 18:55:27 +01001709
Paulo Zanoni1403c0d2013-08-15 11:51:32 -03001710/* The RPS events need forcewake, so we add them to a work queue and mask their
1711 * IMR bits until the work is done. Other interrupts can be processed without
1712 * the work queue. */
1713static void gen6_rps_irq_handler(struct drm_i915_private *dev_priv, u32 pm_iir)
Ben Widawskybaf02a12013-05-28 19:22:24 -07001714{
Deepak Sa6706b42014-03-15 20:23:22 +05301715 if (pm_iir & dev_priv->pm_rps_events) {
Daniel Vetter59cdb632013-07-04 23:35:28 +02001716 spin_lock(&dev_priv->irq_lock);
Akash Goelf4e9af42016-10-12 21:54:30 +05301717 gen6_mask_pm_irq(dev_priv, pm_iir & dev_priv->pm_rps_events);
Imre Deakd4d70aa2014-11-19 15:30:04 +02001718 if (dev_priv->rps.interrupts_enabled) {
1719 dev_priv->rps.pm_iir |= pm_iir & dev_priv->pm_rps_events;
Chris Wilsonc33d2472016-07-04 08:08:36 +01001720 schedule_work(&dev_priv->rps.work);
Imre Deakd4d70aa2014-11-19 15:30:04 +02001721 }
Daniel Vetter59cdb632013-07-04 23:35:28 +02001722 spin_unlock(&dev_priv->irq_lock);
Ben Widawskybaf02a12013-05-28 19:22:24 -07001723 }
Ben Widawskybaf02a12013-05-28 19:22:24 -07001724
Imre Deakc9a9a262014-11-05 20:48:37 +02001725 if (INTEL_INFO(dev_priv)->gen >= 8)
1726 return;
1727
Joonas Lahtinen2d1fe072016-04-07 11:08:05 +03001728 if (HAS_VEBOX(dev_priv)) {
Paulo Zanoni1403c0d2013-08-15 11:51:32 -03001729 if (pm_iir & PM_VEBOX_USER_INTERRUPT)
Akash Goel3b3f1652016-10-13 22:44:48 +05301730 notify_ring(dev_priv->engine[VECS]);
Ben Widawsky12638c52013-05-28 19:22:31 -07001731
Daniel Vetteraaecdf62014-11-04 15:52:22 +01001732 if (pm_iir & PM_VEBOX_CS_ERROR_INTERRUPT)
1733 DRM_DEBUG("Command parser error, pm_iir 0x%08x\n", pm_iir);
Ben Widawsky12638c52013-05-28 19:22:31 -07001734 }
Ben Widawskybaf02a12013-05-28 19:22:24 -07001735}
1736
Sagar Arun Kamble26705e22016-10-12 21:54:31 +05301737static void gen9_guc_irq_handler(struct drm_i915_private *dev_priv, u32 gt_iir)
1738{
1739 if (gt_iir & GEN9_GUC_TO_HOST_INT_EVENT) {
Sagar Arun Kamble4100b2a2016-10-12 21:54:32 +05301740 /* Sample the log buffer flush related bits & clear them out now
1741 * itself from the message identity register to minimize the
1742 * probability of losing a flush interrupt, when there are back
1743 * to back flush interrupts.
1744 * There can be a new flush interrupt, for different log buffer
1745 * type (like for ISR), whilst Host is handling one (for DPC).
1746 * Since same bit is used in message register for ISR & DPC, it
1747 * could happen that GuC sets the bit for 2nd interrupt but Host
1748 * clears out the bit on handling the 1st interrupt.
1749 */
1750 u32 msg, flush;
1751
1752 msg = I915_READ(SOFT_SCRATCH(15));
Arkadiusz Hilera80bc452016-11-25 18:59:34 +01001753 flush = msg & (INTEL_GUC_RECV_MSG_CRASH_DUMP_POSTED |
1754 INTEL_GUC_RECV_MSG_FLUSH_LOG_BUFFER);
Sagar Arun Kamble4100b2a2016-10-12 21:54:32 +05301755 if (flush) {
1756 /* Clear the message bits that are handled */
1757 I915_WRITE(SOFT_SCRATCH(15), msg & ~flush);
1758
1759 /* Handle flush interrupt in bottom half */
1760 queue_work(dev_priv->guc.log.flush_wq,
1761 &dev_priv->guc.log.flush_work);
Akash Goel5aa1ee42016-10-12 21:54:36 +05301762
1763 dev_priv->guc.log.flush_interrupt_count++;
Sagar Arun Kamble4100b2a2016-10-12 21:54:32 +05301764 } else {
1765 /* Not clearing of unhandled event bits won't result in
1766 * re-triggering of the interrupt.
1767 */
1768 }
Sagar Arun Kamble26705e22016-10-12 21:54:31 +05301769 }
1770}
1771
Daniel Vetter5a21b662016-05-24 17:13:53 +02001772static bool intel_pipe_handle_vblank(struct drm_i915_private *dev_priv,
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01001773 enum pipe pipe)
Ville Syrjälä8d7849d2014-04-29 13:35:46 +03001774{
Daniel Vetter5a21b662016-05-24 17:13:53 +02001775 bool ret;
1776
Chris Wilson91c8a322016-07-05 10:40:23 +01001777 ret = drm_handle_vblank(&dev_priv->drm, pipe);
Daniel Vetter5a21b662016-05-24 17:13:53 +02001778 if (ret)
Maarten Lankhorst51cbaf02016-05-17 15:07:49 +02001779 intel_finish_page_flip_mmio(dev_priv, pipe);
Daniel Vetter5a21b662016-05-24 17:13:53 +02001780
1781 return ret;
Ville Syrjälä8d7849d2014-04-29 13:35:46 +03001782}
1783
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01001784static void valleyview_pipestat_irq_ack(struct drm_i915_private *dev_priv,
1785 u32 iir, u32 pipe_stats[I915_MAX_PIPES])
Imre Deakc1874ed2014-02-04 21:35:46 +02001786{
Imre Deakc1874ed2014-02-04 21:35:46 +02001787 int pipe;
1788
Imre Deak58ead0d2014-02-04 21:35:47 +02001789 spin_lock(&dev_priv->irq_lock);
Ville Syrjälä1ca993d2016-02-18 21:54:26 +02001790
1791 if (!dev_priv->display_irqs_enabled) {
1792 spin_unlock(&dev_priv->irq_lock);
1793 return;
1794 }
1795
Damien Lespiau055e3932014-08-18 13:49:10 +01001796 for_each_pipe(dev_priv, pipe) {
Ville Syrjäläf0f59a02015-11-18 15:33:26 +02001797 i915_reg_t reg;
Daniel Vetterbbb5eeb2014-02-12 17:55:36 +01001798 u32 mask, iir_bit = 0;
Imre Deak91d181d2014-02-10 18:42:49 +02001799
Daniel Vetterbbb5eeb2014-02-12 17:55:36 +01001800 /*
1801 * PIPESTAT bits get signalled even when the interrupt is
1802 * disabled with the mask bits, and some of the status bits do
1803 * not generate interrupts at all (like the underrun bit). Hence
1804 * we need to be careful that we only handle what we want to
1805 * handle.
1806 */
Daniel Vetter0f239f42014-09-30 10:56:49 +02001807
1808 /* fifo underruns are filterered in the underrun handler. */
1809 mask = PIPE_FIFO_UNDERRUN_STATUS;
Daniel Vetterbbb5eeb2014-02-12 17:55:36 +01001810
1811 switch (pipe) {
1812 case PIPE_A:
1813 iir_bit = I915_DISPLAY_PIPE_A_EVENT_INTERRUPT;
1814 break;
1815 case PIPE_B:
1816 iir_bit = I915_DISPLAY_PIPE_B_EVENT_INTERRUPT;
1817 break;
Ville Syrjälä3278f672014-04-09 13:28:49 +03001818 case PIPE_C:
1819 iir_bit = I915_DISPLAY_PIPE_C_EVENT_INTERRUPT;
1820 break;
Daniel Vetterbbb5eeb2014-02-12 17:55:36 +01001821 }
1822 if (iir & iir_bit)
1823 mask |= dev_priv->pipestat_irq_mask[pipe];
1824
1825 if (!mask)
Imre Deak91d181d2014-02-10 18:42:49 +02001826 continue;
1827
1828 reg = PIPESTAT(pipe);
Daniel Vetterbbb5eeb2014-02-12 17:55:36 +01001829 mask |= PIPESTAT_INT_ENABLE_MASK;
1830 pipe_stats[pipe] = I915_READ(reg) & mask;
Imre Deakc1874ed2014-02-04 21:35:46 +02001831
1832 /*
1833 * Clear the PIPE*STAT regs before the IIR
1834 */
Imre Deak91d181d2014-02-10 18:42:49 +02001835 if (pipe_stats[pipe] & (PIPE_FIFO_UNDERRUN_STATUS |
1836 PIPESTAT_INT_STATUS_MASK))
Imre Deakc1874ed2014-02-04 21:35:46 +02001837 I915_WRITE(reg, pipe_stats[pipe]);
1838 }
Imre Deak58ead0d2014-02-04 21:35:47 +02001839 spin_unlock(&dev_priv->irq_lock);
Ville Syrjälä2ecb8ca2016-04-13 21:19:55 +03001840}
1841
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01001842static void valleyview_pipestat_irq_handler(struct drm_i915_private *dev_priv,
Ville Syrjälä2ecb8ca2016-04-13 21:19:55 +03001843 u32 pipe_stats[I915_MAX_PIPES])
1844{
Ville Syrjälä2ecb8ca2016-04-13 21:19:55 +03001845 enum pipe pipe;
Imre Deakc1874ed2014-02-04 21:35:46 +02001846
Damien Lespiau055e3932014-08-18 13:49:10 +01001847 for_each_pipe(dev_priv, pipe) {
Daniel Vetter5a21b662016-05-24 17:13:53 +02001848 if (pipe_stats[pipe] & PIPE_START_VBLANK_INTERRUPT_STATUS &&
1849 intel_pipe_handle_vblank(dev_priv, pipe))
1850 intel_check_page_flip(dev_priv, pipe);
Imre Deakc1874ed2014-02-04 21:35:46 +02001851
Maarten Lankhorst5251f042016-05-17 15:07:47 +02001852 if (pipe_stats[pipe] & PLANE_FLIP_DONE_INT_STATUS_VLV)
Maarten Lankhorst51cbaf02016-05-17 15:07:49 +02001853 intel_finish_page_flip_cs(dev_priv, pipe);
Imre Deakc1874ed2014-02-04 21:35:46 +02001854
1855 if (pipe_stats[pipe] & PIPE_CRC_DONE_INTERRUPT_STATUS)
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01001856 i9xx_pipe_crc_irq_handler(dev_priv, pipe);
Imre Deakc1874ed2014-02-04 21:35:46 +02001857
Daniel Vetter1f7247c2014-09-30 10:56:48 +02001858 if (pipe_stats[pipe] & PIPE_FIFO_UNDERRUN_STATUS)
1859 intel_cpu_fifo_underrun_irq_handler(dev_priv, pipe);
Imre Deakc1874ed2014-02-04 21:35:46 +02001860 }
1861
1862 if (pipe_stats[0] & PIPE_GMBUS_INTERRUPT_STATUS)
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01001863 gmbus_irq_handler(dev_priv);
Imre Deakc1874ed2014-02-04 21:35:46 +02001864}
1865
Ville Syrjälä1ae3c342016-04-13 21:19:54 +03001866static u32 i9xx_hpd_irq_ack(struct drm_i915_private *dev_priv)
Ville Syrjälä16c6c562014-04-01 10:54:36 +03001867{
Ville Syrjälä16c6c562014-04-01 10:54:36 +03001868 u32 hotplug_status = I915_READ(PORT_HOTPLUG_STAT);
Ville Syrjälä1ae3c342016-04-13 21:19:54 +03001869
1870 if (hotplug_status)
1871 I915_WRITE(PORT_HOTPLUG_STAT, hotplug_status);
1872
1873 return hotplug_status;
1874}
1875
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01001876static void i9xx_hpd_irq_handler(struct drm_i915_private *dev_priv,
Ville Syrjälä1ae3c342016-04-13 21:19:54 +03001877 u32 hotplug_status)
1878{
Ville Syrjälä42db67d2015-08-28 21:26:27 +03001879 u32 pin_mask = 0, long_mask = 0;
Ville Syrjälä16c6c562014-04-01 10:54:36 +03001880
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01001881 if (IS_G4X(dev_priv) || IS_VALLEYVIEW(dev_priv) ||
1882 IS_CHERRYVIEW(dev_priv)) {
Jani Nikula0d2e4292015-05-27 15:03:39 +03001883 u32 hotplug_trigger = hotplug_status & HOTPLUG_INT_STATUS_G4X;
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,
1887 hotplug_trigger, hpd_status_g4x,
1888 i9xx_port_hotplug_long_detect);
1889
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01001890 intel_hpd_irq_handler(dev_priv, pin_mask, long_mask);
Ville Syrjälä58f2cf22015-08-28 22:59:08 +03001891 }
Jani Nikula369712e2015-05-27 15:03:40 +03001892
1893 if (hotplug_status & DP_AUX_CHANNEL_MASK_INT_STATUS_G4X)
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01001894 dp_aux_irq_handler(dev_priv);
Jani Nikula0d2e4292015-05-27 15:03:39 +03001895 } else {
1896 u32 hotplug_trigger = hotplug_status & HOTPLUG_INT_STATUS_I915;
Oscar Mateo3ff60f82014-06-16 16:10:58 +01001897
Ville Syrjälä58f2cf22015-08-28 22:59:08 +03001898 if (hotplug_trigger) {
1899 intel_get_hpd_pins(&pin_mask, &long_mask, hotplug_trigger,
Daniel Vetter44cc6c02015-09-30 08:47:41 +02001900 hotplug_trigger, hpd_status_i915,
Ville Syrjälä58f2cf22015-08-28 22:59:08 +03001901 i9xx_port_hotplug_long_detect);
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01001902 intel_hpd_irq_handler(dev_priv, pin_mask, long_mask);
Ville Syrjälä58f2cf22015-08-28 22:59:08 +03001903 }
Ville Syrjälä16c6c562014-04-01 10:54:36 +03001904 }
Ville Syrjälä16c6c562014-04-01 10:54:36 +03001905}
1906
Daniel Vetterff1f5252012-10-02 15:10:55 +02001907static irqreturn_t valleyview_irq_handler(int irq, void *arg)
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07001908{
Daniel Vetter45a83f82014-05-12 19:17:55 +02001909 struct drm_device *dev = arg;
Chris Wilsonfac5e232016-07-04 11:34:36 +01001910 struct drm_i915_private *dev_priv = to_i915(dev);
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07001911 irqreturn_t ret = IRQ_NONE;
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07001912
Imre Deak2dd2a882015-02-24 11:14:30 +02001913 if (!intel_irqs_enabled(dev_priv))
1914 return IRQ_NONE;
1915
Imre Deak1f814da2015-12-16 02:52:19 +02001916 /* IRQs are synced during runtime_suspend, we don't require a wakeref */
1917 disable_rpm_wakeref_asserts(dev_priv);
1918
Ville Syrjälä1e1cace2016-04-13 21:19:52 +03001919 do {
Ville Syrjälä6e814802016-04-13 21:19:53 +03001920 u32 iir, gt_iir, pm_iir;
Ville Syrjälä2ecb8ca2016-04-13 21:19:55 +03001921 u32 pipe_stats[I915_MAX_PIPES] = {};
Ville Syrjälä1ae3c342016-04-13 21:19:54 +03001922 u32 hotplug_status = 0;
Ville Syrjäläa5e485a2016-04-13 21:19:51 +03001923 u32 ier = 0;
Oscar Mateo3ff60f82014-06-16 16:10:58 +01001924
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07001925 gt_iir = I915_READ(GTIIR);
1926 pm_iir = I915_READ(GEN6_PMIIR);
Oscar Mateo3ff60f82014-06-16 16:10:58 +01001927 iir = I915_READ(VLV_IIR);
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07001928
1929 if (gt_iir == 0 && pm_iir == 0 && iir == 0)
Ville Syrjälä1e1cace2016-04-13 21:19:52 +03001930 break;
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07001931
1932 ret = IRQ_HANDLED;
1933
Ville Syrjäläa5e485a2016-04-13 21:19:51 +03001934 /*
1935 * Theory on interrupt generation, based on empirical evidence:
1936 *
1937 * x = ((VLV_IIR & VLV_IER) ||
1938 * (((GT_IIR & GT_IER) || (GEN6_PMIIR & GEN6_PMIER)) &&
1939 * (VLV_MASTER_IER & MASTER_INTERRUPT_ENABLE)));
1940 *
1941 * A CPU interrupt will only be raised when 'x' has a 0->1 edge.
1942 * Hence we clear MASTER_INTERRUPT_ENABLE and VLV_IER to
1943 * guarantee the CPU interrupt will be raised again even if we
1944 * don't end up clearing all the VLV_IIR, GT_IIR, GEN6_PMIIR
1945 * bits this time around.
1946 */
Ville Syrjälä4a0a0202016-04-13 21:19:50 +03001947 I915_WRITE(VLV_MASTER_IER, 0);
Ville Syrjäläa5e485a2016-04-13 21:19:51 +03001948 ier = I915_READ(VLV_IER);
1949 I915_WRITE(VLV_IER, 0);
Ville Syrjälä4a0a0202016-04-13 21:19:50 +03001950
1951 if (gt_iir)
1952 I915_WRITE(GTIIR, gt_iir);
1953 if (pm_iir)
1954 I915_WRITE(GEN6_PMIIR, pm_iir);
1955
Ville Syrjälä7ce4d1f2016-04-13 21:19:49 +03001956 if (iir & I915_DISPLAY_PORT_INTERRUPT)
Ville Syrjälä1ae3c342016-04-13 21:19:54 +03001957 hotplug_status = i9xx_hpd_irq_ack(dev_priv);
Ville Syrjälä7ce4d1f2016-04-13 21:19:49 +03001958
Oscar Mateo3ff60f82014-06-16 16:10:58 +01001959 /* Call regardless, as some status bits might not be
1960 * signalled in iir */
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01001961 valleyview_pipestat_irq_ack(dev_priv, iir, pipe_stats);
Ville Syrjälä7ce4d1f2016-04-13 21:19:49 +03001962
Jerome Anandeef57322017-01-25 04:27:49 +05301963 if (iir & (I915_LPE_PIPE_A_INTERRUPT |
1964 I915_LPE_PIPE_B_INTERRUPT))
1965 intel_lpe_audio_irq_handler(dev_priv);
1966
Ville Syrjälä7ce4d1f2016-04-13 21:19:49 +03001967 /*
1968 * VLV_IIR is single buffered, and reflects the level
1969 * from PIPESTAT/PORT_HOTPLUG_STAT, hence clear it last.
1970 */
1971 if (iir)
1972 I915_WRITE(VLV_IIR, iir);
Ville Syrjälä4a0a0202016-04-13 21:19:50 +03001973
Ville Syrjäläa5e485a2016-04-13 21:19:51 +03001974 I915_WRITE(VLV_IER, ier);
Ville Syrjälä4a0a0202016-04-13 21:19:50 +03001975 I915_WRITE(VLV_MASTER_IER, MASTER_INTERRUPT_ENABLE);
1976 POSTING_READ(VLV_MASTER_IER);
Ville Syrjälä1ae3c342016-04-13 21:19:54 +03001977
Ville Syrjälä52894872016-04-13 21:19:56 +03001978 if (gt_iir)
Ville Syrjälä261e40b2016-04-13 21:19:57 +03001979 snb_gt_irq_handler(dev_priv, gt_iir);
Ville Syrjälä52894872016-04-13 21:19:56 +03001980 if (pm_iir)
1981 gen6_rps_irq_handler(dev_priv, pm_iir);
1982
Ville Syrjälä1ae3c342016-04-13 21:19:54 +03001983 if (hotplug_status)
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01001984 i9xx_hpd_irq_handler(dev_priv, hotplug_status);
Ville Syrjälä2ecb8ca2016-04-13 21:19:55 +03001985
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01001986 valleyview_pipestat_irq_handler(dev_priv, pipe_stats);
Ville Syrjälä1e1cace2016-04-13 21:19:52 +03001987 } while (0);
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07001988
Imre Deak1f814da2015-12-16 02:52:19 +02001989 enable_rpm_wakeref_asserts(dev_priv);
1990
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07001991 return ret;
1992}
1993
Ville Syrjälä43f328d2014-04-09 20:40:52 +03001994static irqreturn_t cherryview_irq_handler(int irq, void *arg)
1995{
Daniel Vetter45a83f82014-05-12 19:17:55 +02001996 struct drm_device *dev = arg;
Chris Wilsonfac5e232016-07-04 11:34:36 +01001997 struct drm_i915_private *dev_priv = to_i915(dev);
Ville Syrjälä43f328d2014-04-09 20:40:52 +03001998 irqreturn_t ret = IRQ_NONE;
Ville Syrjälä43f328d2014-04-09 20:40:52 +03001999
Imre Deak2dd2a882015-02-24 11:14:30 +02002000 if (!intel_irqs_enabled(dev_priv))
2001 return IRQ_NONE;
2002
Imre Deak1f814da2015-12-16 02:52:19 +02002003 /* IRQs are synced during runtime_suspend, we don't require a wakeref */
2004 disable_rpm_wakeref_asserts(dev_priv);
2005
Chris Wilson579de732016-03-14 09:01:57 +00002006 do {
Ville Syrjälä6e814802016-04-13 21:19:53 +03002007 u32 master_ctl, iir;
Ville Syrjäläe30e2512016-04-13 21:19:58 +03002008 u32 gt_iir[4] = {};
Ville Syrjälä2ecb8ca2016-04-13 21:19:55 +03002009 u32 pipe_stats[I915_MAX_PIPES] = {};
Ville Syrjälä1ae3c342016-04-13 21:19:54 +03002010 u32 hotplug_status = 0;
Ville Syrjäläa5e485a2016-04-13 21:19:51 +03002011 u32 ier = 0;
2012
Ville Syrjälä8e5fd592014-04-09 13:28:50 +03002013 master_ctl = I915_READ(GEN8_MASTER_IRQ) & ~GEN8_MASTER_IRQ_CONTROL;
2014 iir = I915_READ(VLV_IIR);
Ville Syrjälä3278f672014-04-09 13:28:49 +03002015
Ville Syrjälä8e5fd592014-04-09 13:28:50 +03002016 if (master_ctl == 0 && iir == 0)
2017 break;
Ville Syrjälä43f328d2014-04-09 20:40:52 +03002018
Oscar Mateo27b6c122014-06-16 16:11:00 +01002019 ret = IRQ_HANDLED;
2020
Ville Syrjäläa5e485a2016-04-13 21:19:51 +03002021 /*
2022 * Theory on interrupt generation, based on empirical evidence:
2023 *
2024 * x = ((VLV_IIR & VLV_IER) ||
2025 * ((GEN8_MASTER_IRQ & ~GEN8_MASTER_IRQ_CONTROL) &&
2026 * (GEN8_MASTER_IRQ & GEN8_MASTER_IRQ_CONTROL)));
2027 *
2028 * A CPU interrupt will only be raised when 'x' has a 0->1 edge.
2029 * Hence we clear GEN8_MASTER_IRQ_CONTROL and VLV_IER to
2030 * guarantee the CPU interrupt will be raised again even if we
2031 * don't end up clearing all the VLV_IIR and GEN8_MASTER_IRQ_CONTROL
2032 * bits this time around.
2033 */
Ville Syrjälä8e5fd592014-04-09 13:28:50 +03002034 I915_WRITE(GEN8_MASTER_IRQ, 0);
Ville Syrjäläa5e485a2016-04-13 21:19:51 +03002035 ier = I915_READ(VLV_IER);
2036 I915_WRITE(VLV_IER, 0);
Ville Syrjälä43f328d2014-04-09 20:40:52 +03002037
Ville Syrjäläe30e2512016-04-13 21:19:58 +03002038 gen8_gt_irq_ack(dev_priv, master_ctl, gt_iir);
Ville Syrjälä43f328d2014-04-09 20:40:52 +03002039
Ville Syrjälä7ce4d1f2016-04-13 21:19:49 +03002040 if (iir & I915_DISPLAY_PORT_INTERRUPT)
Ville Syrjälä1ae3c342016-04-13 21:19:54 +03002041 hotplug_status = i9xx_hpd_irq_ack(dev_priv);
Ville Syrjälä7ce4d1f2016-04-13 21:19:49 +03002042
Oscar Mateo27b6c122014-06-16 16:11:00 +01002043 /* Call regardless, as some status bits might not be
2044 * signalled in iir */
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002045 valleyview_pipestat_irq_ack(dev_priv, iir, pipe_stats);
Ville Syrjälä43f328d2014-04-09 20:40:52 +03002046
Jerome Anandeef57322017-01-25 04:27:49 +05302047 if (iir & (I915_LPE_PIPE_A_INTERRUPT |
2048 I915_LPE_PIPE_B_INTERRUPT |
2049 I915_LPE_PIPE_C_INTERRUPT))
2050 intel_lpe_audio_irq_handler(dev_priv);
2051
Ville Syrjälä7ce4d1f2016-04-13 21:19:49 +03002052 /*
2053 * VLV_IIR is single buffered, and reflects the level
2054 * from PIPESTAT/PORT_HOTPLUG_STAT, hence clear it last.
2055 */
2056 if (iir)
2057 I915_WRITE(VLV_IIR, iir);
2058
Ville Syrjäläa5e485a2016-04-13 21:19:51 +03002059 I915_WRITE(VLV_IER, ier);
Ville Syrjäläe5328c42016-04-13 21:19:47 +03002060 I915_WRITE(GEN8_MASTER_IRQ, GEN8_MASTER_IRQ_CONTROL);
Ville Syrjälä8e5fd592014-04-09 13:28:50 +03002061 POSTING_READ(GEN8_MASTER_IRQ);
Ville Syrjälä1ae3c342016-04-13 21:19:54 +03002062
Ville Syrjäläe30e2512016-04-13 21:19:58 +03002063 gen8_gt_irq_handler(dev_priv, gt_iir);
2064
Ville Syrjälä1ae3c342016-04-13 21:19:54 +03002065 if (hotplug_status)
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002066 i9xx_hpd_irq_handler(dev_priv, hotplug_status);
Ville Syrjälä2ecb8ca2016-04-13 21:19:55 +03002067
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002068 valleyview_pipestat_irq_handler(dev_priv, pipe_stats);
Chris Wilson579de732016-03-14 09:01:57 +00002069 } while (0);
Ville Syrjälä43f328d2014-04-09 20:40:52 +03002070
Imre Deak1f814da2015-12-16 02:52:19 +02002071 enable_rpm_wakeref_asserts(dev_priv);
2072
Ville Syrjälä43f328d2014-04-09 20:40:52 +03002073 return ret;
2074}
2075
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002076static void ibx_hpd_irq_handler(struct drm_i915_private *dev_priv,
2077 u32 hotplug_trigger,
Ville Syrjälä40e56412015-08-27 23:56:10 +03002078 const u32 hpd[HPD_NUM_PINS])
2079{
Ville Syrjälä40e56412015-08-27 23:56:10 +03002080 u32 dig_hotplug_reg, pin_mask = 0, long_mask = 0;
2081
Jani Nikula6a39d7c2015-11-25 16:47:22 +02002082 /*
2083 * Somehow the PCH doesn't seem to really ack the interrupt to the CPU
2084 * unless we touch the hotplug register, even if hotplug_trigger is
2085 * zero. Not acking leads to "The master control interrupt lied (SDE)!"
2086 * errors.
2087 */
Ville Syrjälä40e56412015-08-27 23:56:10 +03002088 dig_hotplug_reg = I915_READ(PCH_PORT_HOTPLUG);
Jani Nikula6a39d7c2015-11-25 16:47:22 +02002089 if (!hotplug_trigger) {
2090 u32 mask = PORTA_HOTPLUG_STATUS_MASK |
2091 PORTD_HOTPLUG_STATUS_MASK |
2092 PORTC_HOTPLUG_STATUS_MASK |
2093 PORTB_HOTPLUG_STATUS_MASK;
2094 dig_hotplug_reg &= ~mask;
2095 }
2096
Ville Syrjälä40e56412015-08-27 23:56:10 +03002097 I915_WRITE(PCH_PORT_HOTPLUG, dig_hotplug_reg);
Jani Nikula6a39d7c2015-11-25 16:47:22 +02002098 if (!hotplug_trigger)
2099 return;
Ville Syrjälä40e56412015-08-27 23:56:10 +03002100
2101 intel_get_hpd_pins(&pin_mask, &long_mask, hotplug_trigger,
2102 dig_hotplug_reg, hpd,
2103 pch_port_hotplug_long_detect);
2104
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002105 intel_hpd_irq_handler(dev_priv, pin_mask, long_mask);
Ville Syrjälä40e56412015-08-27 23:56:10 +03002106}
2107
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002108static void ibx_irq_handler(struct drm_i915_private *dev_priv, u32 pch_iir)
Jesse Barnes776ad802011-01-04 15:09:39 -08002109{
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08002110 int pipe;
Egbert Eichb543fb02013-04-16 13:36:54 +02002111 u32 hotplug_trigger = pch_iir & SDE_HOTPLUG_MASK;
Jesse Barnes776ad802011-01-04 15:09:39 -08002112
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002113 ibx_hpd_irq_handler(dev_priv, hotplug_trigger, hpd_ibx);
Daniel Vetter91d131d2013-06-27 17:52:14 +02002114
Ville Syrjäläcfc33bf2013-04-17 17:48:48 +03002115 if (pch_iir & SDE_AUDIO_POWER_MASK) {
2116 int port = ffs((pch_iir & SDE_AUDIO_POWER_MASK) >>
2117 SDE_AUDIO_POWER_SHIFT);
Jesse Barnes776ad802011-01-04 15:09:39 -08002118 DRM_DEBUG_DRIVER("PCH audio power change on port %d\n",
Ville Syrjäläcfc33bf2013-04-17 17:48:48 +03002119 port_name(port));
2120 }
Jesse Barnes776ad802011-01-04 15:09:39 -08002121
Daniel Vetterce99c252012-12-01 13:53:47 +01002122 if (pch_iir & SDE_AUX_MASK)
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002123 dp_aux_irq_handler(dev_priv);
Daniel Vetterce99c252012-12-01 13:53:47 +01002124
Jesse Barnes776ad802011-01-04 15:09:39 -08002125 if (pch_iir & SDE_GMBUS)
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002126 gmbus_irq_handler(dev_priv);
Jesse Barnes776ad802011-01-04 15:09:39 -08002127
2128 if (pch_iir & SDE_AUDIO_HDCP_MASK)
2129 DRM_DEBUG_DRIVER("PCH HDCP audio interrupt\n");
2130
2131 if (pch_iir & SDE_AUDIO_TRANS_MASK)
2132 DRM_DEBUG_DRIVER("PCH transcoder audio interrupt\n");
2133
2134 if (pch_iir & SDE_POISON)
2135 DRM_ERROR("PCH poison interrupt\n");
2136
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08002137 if (pch_iir & SDE_FDI_MASK)
Damien Lespiau055e3932014-08-18 13:49:10 +01002138 for_each_pipe(dev_priv, pipe)
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08002139 DRM_DEBUG_DRIVER(" pipe %c FDI IIR: 0x%08x\n",
2140 pipe_name(pipe),
2141 I915_READ(FDI_RX_IIR(pipe)));
Jesse Barnes776ad802011-01-04 15:09:39 -08002142
2143 if (pch_iir & (SDE_TRANSB_CRC_DONE | SDE_TRANSA_CRC_DONE))
2144 DRM_DEBUG_DRIVER("PCH transcoder CRC done interrupt\n");
2145
2146 if (pch_iir & (SDE_TRANSB_CRC_ERR | SDE_TRANSA_CRC_ERR))
2147 DRM_DEBUG_DRIVER("PCH transcoder CRC error interrupt\n");
2148
Jesse Barnes776ad802011-01-04 15:09:39 -08002149 if (pch_iir & SDE_TRANSA_FIFO_UNDER)
Daniel Vetter1f7247c2014-09-30 10:56:48 +02002150 intel_pch_fifo_underrun_irq_handler(dev_priv, TRANSCODER_A);
Paulo Zanoni86642812013-04-12 17:57:57 -03002151
2152 if (pch_iir & SDE_TRANSB_FIFO_UNDER)
Daniel Vetter1f7247c2014-09-30 10:56:48 +02002153 intel_pch_fifo_underrun_irq_handler(dev_priv, TRANSCODER_B);
Paulo Zanoni86642812013-04-12 17:57:57 -03002154}
2155
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002156static void ivb_err_int_handler(struct drm_i915_private *dev_priv)
Paulo Zanoni86642812013-04-12 17:57:57 -03002157{
Paulo Zanoni86642812013-04-12 17:57:57 -03002158 u32 err_int = I915_READ(GEN7_ERR_INT);
Daniel Vetter5a69b892013-10-16 22:55:52 +02002159 enum pipe pipe;
Paulo Zanoni86642812013-04-12 17:57:57 -03002160
Paulo Zanonide032bf2013-04-12 17:57:58 -03002161 if (err_int & ERR_INT_POISON)
2162 DRM_ERROR("Poison interrupt\n");
2163
Damien Lespiau055e3932014-08-18 13:49:10 +01002164 for_each_pipe(dev_priv, pipe) {
Daniel Vetter1f7247c2014-09-30 10:56:48 +02002165 if (err_int & ERR_INT_FIFO_UNDERRUN(pipe))
2166 intel_cpu_fifo_underrun_irq_handler(dev_priv, pipe);
Paulo Zanoni86642812013-04-12 17:57:57 -03002167
Daniel Vetter5a69b892013-10-16 22:55:52 +02002168 if (err_int & ERR_INT_PIPE_CRC_DONE(pipe)) {
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002169 if (IS_IVYBRIDGE(dev_priv))
2170 ivb_pipe_crc_irq_handler(dev_priv, pipe);
Daniel Vetter5a69b892013-10-16 22:55:52 +02002171 else
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002172 hsw_pipe_crc_irq_handler(dev_priv, pipe);
Daniel Vetter5a69b892013-10-16 22:55:52 +02002173 }
2174 }
Shuang He8bf1e9f2013-10-15 18:55:27 +01002175
Paulo Zanoni86642812013-04-12 17:57:57 -03002176 I915_WRITE(GEN7_ERR_INT, err_int);
2177}
2178
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002179static void cpt_serr_int_handler(struct drm_i915_private *dev_priv)
Paulo Zanoni86642812013-04-12 17:57:57 -03002180{
Paulo Zanoni86642812013-04-12 17:57:57 -03002181 u32 serr_int = I915_READ(SERR_INT);
2182
Paulo Zanonide032bf2013-04-12 17:57:58 -03002183 if (serr_int & SERR_INT_POISON)
2184 DRM_ERROR("PCH poison interrupt\n");
2185
Paulo Zanoni86642812013-04-12 17:57:57 -03002186 if (serr_int & SERR_INT_TRANS_A_FIFO_UNDERRUN)
Daniel Vetter1f7247c2014-09-30 10:56:48 +02002187 intel_pch_fifo_underrun_irq_handler(dev_priv, TRANSCODER_A);
Paulo Zanoni86642812013-04-12 17:57:57 -03002188
2189 if (serr_int & SERR_INT_TRANS_B_FIFO_UNDERRUN)
Daniel Vetter1f7247c2014-09-30 10:56:48 +02002190 intel_pch_fifo_underrun_irq_handler(dev_priv, TRANSCODER_B);
Paulo Zanoni86642812013-04-12 17:57:57 -03002191
2192 if (serr_int & SERR_INT_TRANS_C_FIFO_UNDERRUN)
Daniel Vetter1f7247c2014-09-30 10:56:48 +02002193 intel_pch_fifo_underrun_irq_handler(dev_priv, TRANSCODER_C);
Paulo Zanoni86642812013-04-12 17:57:57 -03002194
2195 I915_WRITE(SERR_INT, serr_int);
Jesse Barnes776ad802011-01-04 15:09:39 -08002196}
2197
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002198static void cpt_irq_handler(struct drm_i915_private *dev_priv, u32 pch_iir)
Adam Jackson23e81d62012-06-06 15:45:44 -04002199{
Adam Jackson23e81d62012-06-06 15:45:44 -04002200 int pipe;
Ville Syrjälä6dbf30c2015-08-27 23:56:02 +03002201 u32 hotplug_trigger = pch_iir & SDE_HOTPLUG_MASK_CPT;
Adam Jackson23e81d62012-06-06 15:45:44 -04002202
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002203 ibx_hpd_irq_handler(dev_priv, hotplug_trigger, hpd_cpt);
Daniel Vetter91d131d2013-06-27 17:52:14 +02002204
Ville Syrjäläcfc33bf2013-04-17 17:48:48 +03002205 if (pch_iir & SDE_AUDIO_POWER_MASK_CPT) {
2206 int port = ffs((pch_iir & SDE_AUDIO_POWER_MASK_CPT) >>
2207 SDE_AUDIO_POWER_SHIFT_CPT);
2208 DRM_DEBUG_DRIVER("PCH audio power change on port %c\n",
2209 port_name(port));
2210 }
Adam Jackson23e81d62012-06-06 15:45:44 -04002211
2212 if (pch_iir & SDE_AUX_MASK_CPT)
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002213 dp_aux_irq_handler(dev_priv);
Adam Jackson23e81d62012-06-06 15:45:44 -04002214
2215 if (pch_iir & SDE_GMBUS_CPT)
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002216 gmbus_irq_handler(dev_priv);
Adam Jackson23e81d62012-06-06 15:45:44 -04002217
2218 if (pch_iir & SDE_AUDIO_CP_REQ_CPT)
2219 DRM_DEBUG_DRIVER("Audio CP request interrupt\n");
2220
2221 if (pch_iir & SDE_AUDIO_CP_CHG_CPT)
2222 DRM_DEBUG_DRIVER("Audio CP change interrupt\n");
2223
2224 if (pch_iir & SDE_FDI_MASK_CPT)
Damien Lespiau055e3932014-08-18 13:49:10 +01002225 for_each_pipe(dev_priv, pipe)
Adam Jackson23e81d62012-06-06 15:45:44 -04002226 DRM_DEBUG_DRIVER(" pipe %c FDI IIR: 0x%08x\n",
2227 pipe_name(pipe),
2228 I915_READ(FDI_RX_IIR(pipe)));
Paulo Zanoni86642812013-04-12 17:57:57 -03002229
2230 if (pch_iir & SDE_ERROR_CPT)
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002231 cpt_serr_int_handler(dev_priv);
Adam Jackson23e81d62012-06-06 15:45:44 -04002232}
2233
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002234static void spt_irq_handler(struct drm_i915_private *dev_priv, u32 pch_iir)
Ville Syrjälä6dbf30c2015-08-27 23:56:02 +03002235{
Ville Syrjälä6dbf30c2015-08-27 23:56:02 +03002236 u32 hotplug_trigger = pch_iir & SDE_HOTPLUG_MASK_SPT &
2237 ~SDE_PORTE_HOTPLUG_SPT;
2238 u32 hotplug2_trigger = pch_iir & SDE_PORTE_HOTPLUG_SPT;
2239 u32 pin_mask = 0, long_mask = 0;
2240
2241 if (hotplug_trigger) {
2242 u32 dig_hotplug_reg;
2243
2244 dig_hotplug_reg = I915_READ(PCH_PORT_HOTPLUG);
2245 I915_WRITE(PCH_PORT_HOTPLUG, dig_hotplug_reg);
2246
2247 intel_get_hpd_pins(&pin_mask, &long_mask, hotplug_trigger,
2248 dig_hotplug_reg, hpd_spt,
Ville Syrjälä74c0b392015-08-27 23:56:07 +03002249 spt_port_hotplug_long_detect);
Ville Syrjälä6dbf30c2015-08-27 23:56:02 +03002250 }
2251
2252 if (hotplug2_trigger) {
2253 u32 dig_hotplug_reg;
2254
2255 dig_hotplug_reg = I915_READ(PCH_PORT_HOTPLUG2);
2256 I915_WRITE(PCH_PORT_HOTPLUG2, dig_hotplug_reg);
2257
2258 intel_get_hpd_pins(&pin_mask, &long_mask, hotplug2_trigger,
2259 dig_hotplug_reg, hpd_spt,
2260 spt_port_hotplug2_long_detect);
2261 }
2262
2263 if (pin_mask)
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002264 intel_hpd_irq_handler(dev_priv, pin_mask, long_mask);
Ville Syrjälä6dbf30c2015-08-27 23:56:02 +03002265
2266 if (pch_iir & SDE_GMBUS_CPT)
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002267 gmbus_irq_handler(dev_priv);
Ville Syrjälä6dbf30c2015-08-27 23:56:02 +03002268}
2269
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002270static void ilk_hpd_irq_handler(struct drm_i915_private *dev_priv,
2271 u32 hotplug_trigger,
Ville Syrjälä40e56412015-08-27 23:56:10 +03002272 const u32 hpd[HPD_NUM_PINS])
2273{
Ville Syrjälä40e56412015-08-27 23:56:10 +03002274 u32 dig_hotplug_reg, pin_mask = 0, long_mask = 0;
2275
2276 dig_hotplug_reg = I915_READ(DIGITAL_PORT_HOTPLUG_CNTRL);
2277 I915_WRITE(DIGITAL_PORT_HOTPLUG_CNTRL, dig_hotplug_reg);
2278
2279 intel_get_hpd_pins(&pin_mask, &long_mask, hotplug_trigger,
2280 dig_hotplug_reg, hpd,
2281 ilk_port_hotplug_long_detect);
2282
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002283 intel_hpd_irq_handler(dev_priv, pin_mask, long_mask);
Ville Syrjälä40e56412015-08-27 23:56:10 +03002284}
2285
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002286static void ilk_display_irq_handler(struct drm_i915_private *dev_priv,
2287 u32 de_iir)
Paulo Zanonic008bc62013-07-12 16:35:10 -03002288{
Daniel Vetter40da17c22013-10-21 18:04:36 +02002289 enum pipe pipe;
Ville Syrjäläe4ce95a2015-08-27 23:56:03 +03002290 u32 hotplug_trigger = de_iir & DE_DP_A_HOTPLUG;
2291
Ville Syrjälä40e56412015-08-27 23:56:10 +03002292 if (hotplug_trigger)
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002293 ilk_hpd_irq_handler(dev_priv, hotplug_trigger, hpd_ilk);
Paulo Zanonic008bc62013-07-12 16:35:10 -03002294
2295 if (de_iir & DE_AUX_CHANNEL_A)
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002296 dp_aux_irq_handler(dev_priv);
Paulo Zanonic008bc62013-07-12 16:35:10 -03002297
2298 if (de_iir & DE_GSE)
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002299 intel_opregion_asle_intr(dev_priv);
Paulo Zanonic008bc62013-07-12 16:35:10 -03002300
Paulo Zanonic008bc62013-07-12 16:35:10 -03002301 if (de_iir & DE_POISON)
2302 DRM_ERROR("Poison interrupt\n");
2303
Damien Lespiau055e3932014-08-18 13:49:10 +01002304 for_each_pipe(dev_priv, pipe) {
Daniel Vetter5a21b662016-05-24 17:13:53 +02002305 if (de_iir & DE_PIPE_VBLANK(pipe) &&
2306 intel_pipe_handle_vblank(dev_priv, pipe))
2307 intel_check_page_flip(dev_priv, pipe);
Paulo Zanonic008bc62013-07-12 16:35:10 -03002308
Daniel Vetter40da17c22013-10-21 18:04:36 +02002309 if (de_iir & DE_PIPE_FIFO_UNDERRUN(pipe))
Daniel Vetter1f7247c2014-09-30 10:56:48 +02002310 intel_cpu_fifo_underrun_irq_handler(dev_priv, pipe);
Paulo Zanonic008bc62013-07-12 16:35:10 -03002311
Daniel Vetter40da17c22013-10-21 18:04:36 +02002312 if (de_iir & DE_PIPE_CRC_DONE(pipe))
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002313 i9xx_pipe_crc_irq_handler(dev_priv, pipe);
Daniel Vetter5b3a8562013-10-16 22:55:48 +02002314
Daniel Vetter40da17c22013-10-21 18:04:36 +02002315 /* plane/pipes map 1:1 on ilk+ */
Maarten Lankhorst5251f042016-05-17 15:07:47 +02002316 if (de_iir & DE_PLANE_FLIP_DONE(pipe))
Maarten Lankhorst51cbaf02016-05-17 15:07:49 +02002317 intel_finish_page_flip_cs(dev_priv, pipe);
Paulo Zanonic008bc62013-07-12 16:35:10 -03002318 }
2319
2320 /* check event from PCH */
2321 if (de_iir & DE_PCH_EVENT) {
2322 u32 pch_iir = I915_READ(SDEIIR);
2323
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002324 if (HAS_PCH_CPT(dev_priv))
2325 cpt_irq_handler(dev_priv, pch_iir);
Paulo Zanonic008bc62013-07-12 16:35:10 -03002326 else
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002327 ibx_irq_handler(dev_priv, pch_iir);
Paulo Zanonic008bc62013-07-12 16:35:10 -03002328
2329 /* should clear PCH hotplug event before clear CPU irq */
2330 I915_WRITE(SDEIIR, pch_iir);
2331 }
2332
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002333 if (IS_GEN5(dev_priv) && de_iir & DE_PCU_EVENT)
2334 ironlake_rps_change_irq_handler(dev_priv);
Paulo Zanonic008bc62013-07-12 16:35:10 -03002335}
2336
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002337static void ivb_display_irq_handler(struct drm_i915_private *dev_priv,
2338 u32 de_iir)
Paulo Zanoni9719fb92013-07-12 16:35:11 -03002339{
Damien Lespiau07d27e22014-03-03 17:31:46 +00002340 enum pipe pipe;
Ville Syrjälä23bb4cb2015-08-27 23:56:04 +03002341 u32 hotplug_trigger = de_iir & DE_DP_A_HOTPLUG_IVB;
2342
Ville Syrjälä40e56412015-08-27 23:56:10 +03002343 if (hotplug_trigger)
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002344 ilk_hpd_irq_handler(dev_priv, hotplug_trigger, hpd_ivb);
Paulo Zanoni9719fb92013-07-12 16:35:11 -03002345
2346 if (de_iir & DE_ERR_INT_IVB)
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002347 ivb_err_int_handler(dev_priv);
Paulo Zanoni9719fb92013-07-12 16:35:11 -03002348
2349 if (de_iir & DE_AUX_CHANNEL_A_IVB)
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002350 dp_aux_irq_handler(dev_priv);
Paulo Zanoni9719fb92013-07-12 16:35:11 -03002351
2352 if (de_iir & DE_GSE_IVB)
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002353 intel_opregion_asle_intr(dev_priv);
Paulo Zanoni9719fb92013-07-12 16:35:11 -03002354
Damien Lespiau055e3932014-08-18 13:49:10 +01002355 for_each_pipe(dev_priv, pipe) {
Daniel Vetter5a21b662016-05-24 17:13:53 +02002356 if (de_iir & (DE_PIPE_VBLANK_IVB(pipe)) &&
2357 intel_pipe_handle_vblank(dev_priv, pipe))
2358 intel_check_page_flip(dev_priv, pipe);
Daniel Vetter40da17c22013-10-21 18:04:36 +02002359
2360 /* plane/pipes map 1:1 on ilk+ */
Maarten Lankhorst5251f042016-05-17 15:07:47 +02002361 if (de_iir & DE_PLANE_FLIP_DONE_IVB(pipe))
Maarten Lankhorst51cbaf02016-05-17 15:07:49 +02002362 intel_finish_page_flip_cs(dev_priv, pipe);
Paulo Zanoni9719fb92013-07-12 16:35:11 -03002363 }
2364
2365 /* check event from PCH */
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002366 if (!HAS_PCH_NOP(dev_priv) && (de_iir & DE_PCH_EVENT_IVB)) {
Paulo Zanoni9719fb92013-07-12 16:35:11 -03002367 u32 pch_iir = I915_READ(SDEIIR);
2368
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002369 cpt_irq_handler(dev_priv, pch_iir);
Paulo Zanoni9719fb92013-07-12 16:35:11 -03002370
2371 /* clear PCH hotplug event before clear CPU irq */
2372 I915_WRITE(SDEIIR, pch_iir);
2373 }
2374}
2375
Oscar Mateo72c90f62014-06-16 16:10:57 +01002376/*
2377 * To handle irqs with the minimum potential races with fresh interrupts, we:
2378 * 1 - Disable Master Interrupt Control.
2379 * 2 - Find the source(s) of the interrupt.
2380 * 3 - Clear the Interrupt Identity bits (IIR).
2381 * 4 - Process the interrupt(s) that had bits set in the IIRs.
2382 * 5 - Re-enable Master Interrupt Control.
2383 */
Paulo Zanonif1af8fc2013-07-12 19:56:30 -03002384static irqreturn_t ironlake_irq_handler(int irq, void *arg)
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002385{
Daniel Vetter45a83f82014-05-12 19:17:55 +02002386 struct drm_device *dev = arg;
Chris Wilsonfac5e232016-07-04 11:34:36 +01002387 struct drm_i915_private *dev_priv = to_i915(dev);
Paulo Zanonif1af8fc2013-07-12 19:56:30 -03002388 u32 de_iir, gt_iir, de_ier, sde_ier = 0;
Chris Wilson0e434062012-05-09 21:45:44 +01002389 irqreturn_t ret = IRQ_NONE;
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002390
Imre Deak2dd2a882015-02-24 11:14:30 +02002391 if (!intel_irqs_enabled(dev_priv))
2392 return IRQ_NONE;
2393
Imre Deak1f814da2015-12-16 02:52:19 +02002394 /* IRQs are synced during runtime_suspend, we don't require a wakeref */
2395 disable_rpm_wakeref_asserts(dev_priv);
2396
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002397 /* disable master interrupt before clearing iir */
2398 de_ier = I915_READ(DEIER);
2399 I915_WRITE(DEIER, de_ier & ~DE_MASTER_IRQ_CONTROL);
Paulo Zanoni23a78512013-07-12 16:35:14 -03002400 POSTING_READ(DEIER);
Chris Wilson0e434062012-05-09 21:45:44 +01002401
Paulo Zanoni44498ae2013-02-22 17:05:28 -03002402 /* Disable south interrupts. We'll only write to SDEIIR once, so further
2403 * interrupts will will be stored on its back queue, and then we'll be
2404 * able to process them after we restore SDEIER (as soon as we restore
2405 * it, we'll get an interrupt if SDEIIR still has something to process
2406 * due to its back queue). */
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002407 if (!HAS_PCH_NOP(dev_priv)) {
Ben Widawskyab5c6082013-04-05 13:12:41 -07002408 sde_ier = I915_READ(SDEIER);
2409 I915_WRITE(SDEIER, 0);
2410 POSTING_READ(SDEIER);
2411 }
Paulo Zanoni44498ae2013-02-22 17:05:28 -03002412
Oscar Mateo72c90f62014-06-16 16:10:57 +01002413 /* Find, clear, then process each source of interrupt */
2414
Chris Wilson0e434062012-05-09 21:45:44 +01002415 gt_iir = I915_READ(GTIIR);
2416 if (gt_iir) {
Oscar Mateo72c90f62014-06-16 16:10:57 +01002417 I915_WRITE(GTIIR, gt_iir);
2418 ret = IRQ_HANDLED;
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002419 if (INTEL_GEN(dev_priv) >= 6)
Ville Syrjälä261e40b2016-04-13 21:19:57 +03002420 snb_gt_irq_handler(dev_priv, gt_iir);
Paulo Zanonid8fc8a42013-07-19 18:57:55 -03002421 else
Ville Syrjälä261e40b2016-04-13 21:19:57 +03002422 ilk_gt_irq_handler(dev_priv, gt_iir);
Chris Wilson0e434062012-05-09 21:45:44 +01002423 }
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002424
2425 de_iir = I915_READ(DEIIR);
Chris Wilson0e434062012-05-09 21:45:44 +01002426 if (de_iir) {
Oscar Mateo72c90f62014-06-16 16:10:57 +01002427 I915_WRITE(DEIIR, de_iir);
2428 ret = IRQ_HANDLED;
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002429 if (INTEL_GEN(dev_priv) >= 7)
2430 ivb_display_irq_handler(dev_priv, de_iir);
Paulo Zanonif1af8fc2013-07-12 19:56:30 -03002431 else
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002432 ilk_display_irq_handler(dev_priv, de_iir);
Chris Wilson0e434062012-05-09 21:45:44 +01002433 }
2434
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002435 if (INTEL_GEN(dev_priv) >= 6) {
Paulo Zanonif1af8fc2013-07-12 19:56:30 -03002436 u32 pm_iir = I915_READ(GEN6_PMIIR);
2437 if (pm_iir) {
Paulo Zanonif1af8fc2013-07-12 19:56:30 -03002438 I915_WRITE(GEN6_PMIIR, pm_iir);
2439 ret = IRQ_HANDLED;
Oscar Mateo72c90f62014-06-16 16:10:57 +01002440 gen6_rps_irq_handler(dev_priv, pm_iir);
Paulo Zanonif1af8fc2013-07-12 19:56:30 -03002441 }
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002442 }
2443
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002444 I915_WRITE(DEIER, de_ier);
2445 POSTING_READ(DEIER);
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002446 if (!HAS_PCH_NOP(dev_priv)) {
Ben Widawskyab5c6082013-04-05 13:12:41 -07002447 I915_WRITE(SDEIER, sde_ier);
2448 POSTING_READ(SDEIER);
2449 }
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002450
Imre Deak1f814da2015-12-16 02:52:19 +02002451 /* IRQs are synced during runtime_suspend, we don't require a wakeref */
2452 enable_rpm_wakeref_asserts(dev_priv);
2453
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002454 return ret;
2455}
2456
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002457static void bxt_hpd_irq_handler(struct drm_i915_private *dev_priv,
2458 u32 hotplug_trigger,
Ville Syrjälä40e56412015-08-27 23:56:10 +03002459 const u32 hpd[HPD_NUM_PINS])
Shashank Sharmad04a4922014-08-22 17:40:41 +05302460{
Ville Syrjäläcebd87a2015-08-27 23:56:09 +03002461 u32 dig_hotplug_reg, pin_mask = 0, long_mask = 0;
Shashank Sharmad04a4922014-08-22 17:40:41 +05302462
Ville Syrjäläa52bb152015-08-27 23:56:11 +03002463 dig_hotplug_reg = I915_READ(PCH_PORT_HOTPLUG);
2464 I915_WRITE(PCH_PORT_HOTPLUG, dig_hotplug_reg);
Shashank Sharmad04a4922014-08-22 17:40:41 +05302465
Ville Syrjäläcebd87a2015-08-27 23:56:09 +03002466 intel_get_hpd_pins(&pin_mask, &long_mask, hotplug_trigger,
Ville Syrjälä40e56412015-08-27 23:56:10 +03002467 dig_hotplug_reg, hpd,
Ville Syrjäläcebd87a2015-08-27 23:56:09 +03002468 bxt_port_hotplug_long_detect);
Ville Syrjälä40e56412015-08-27 23:56:10 +03002469
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002470 intel_hpd_irq_handler(dev_priv, pin_mask, long_mask);
Shashank Sharmad04a4922014-08-22 17:40:41 +05302471}
2472
Tvrtko Ursulinf11a0f42016-01-12 16:04:07 +00002473static irqreturn_t
2474gen8_de_irq_handler(struct drm_i915_private *dev_priv, u32 master_ctl)
Ben Widawskyabd58f02013-11-02 21:07:09 -07002475{
Ben Widawskyabd58f02013-11-02 21:07:09 -07002476 irqreturn_t ret = IRQ_NONE;
Tvrtko Ursulinf11a0f42016-01-12 16:04:07 +00002477 u32 iir;
Daniel Vetterc42664c2013-11-07 11:05:40 +01002478 enum pipe pipe;
Jesse Barnes88e04702014-11-13 17:51:48 +00002479
Ben Widawskyabd58f02013-11-02 21:07:09 -07002480 if (master_ctl & GEN8_DE_MISC_IRQ) {
Tvrtko Ursuline32192e2016-01-12 16:04:06 +00002481 iir = I915_READ(GEN8_DE_MISC_IIR);
2482 if (iir) {
2483 I915_WRITE(GEN8_DE_MISC_IIR, iir);
Ben Widawskyabd58f02013-11-02 21:07:09 -07002484 ret = IRQ_HANDLED;
Tvrtko Ursuline32192e2016-01-12 16:04:06 +00002485 if (iir & GEN8_DE_MISC_GSE)
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002486 intel_opregion_asle_intr(dev_priv);
Oscar Mateo38cc46d2014-06-16 16:10:59 +01002487 else
2488 DRM_ERROR("Unexpected DE Misc interrupt\n");
Ben Widawskyabd58f02013-11-02 21:07:09 -07002489 }
Oscar Mateo38cc46d2014-06-16 16:10:59 +01002490 else
2491 DRM_ERROR("The master control interrupt lied (DE MISC)!\n");
Ben Widawskyabd58f02013-11-02 21:07:09 -07002492 }
2493
Daniel Vetter6d766f02013-11-07 14:49:55 +01002494 if (master_ctl & GEN8_DE_PORT_IRQ) {
Tvrtko Ursuline32192e2016-01-12 16:04:06 +00002495 iir = I915_READ(GEN8_DE_PORT_IIR);
2496 if (iir) {
2497 u32 tmp_mask;
Shashank Sharmad04a4922014-08-22 17:40:41 +05302498 bool found = false;
Ville Syrjäläcebd87a2015-08-27 23:56:09 +03002499
Tvrtko Ursuline32192e2016-01-12 16:04:06 +00002500 I915_WRITE(GEN8_DE_PORT_IIR, iir);
Daniel Vetter6d766f02013-11-07 14:49:55 +01002501 ret = IRQ_HANDLED;
Jesse Barnes88e04702014-11-13 17:51:48 +00002502
Tvrtko Ursuline32192e2016-01-12 16:04:06 +00002503 tmp_mask = GEN8_AUX_CHANNEL_A;
2504 if (INTEL_INFO(dev_priv)->gen >= 9)
2505 tmp_mask |= GEN9_AUX_CHANNEL_B |
2506 GEN9_AUX_CHANNEL_C |
2507 GEN9_AUX_CHANNEL_D;
2508
2509 if (iir & tmp_mask) {
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002510 dp_aux_irq_handler(dev_priv);
Shashank Sharmad04a4922014-08-22 17:40:41 +05302511 found = true;
2512 }
2513
Ander Conselvan de Oliveiracc3f90f2016-12-02 10:23:49 +02002514 if (IS_GEN9_LP(dev_priv)) {
Tvrtko Ursuline32192e2016-01-12 16:04:06 +00002515 tmp_mask = iir & BXT_DE_PORT_HOTPLUG_MASK;
2516 if (tmp_mask) {
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002517 bxt_hpd_irq_handler(dev_priv, tmp_mask,
2518 hpd_bxt);
Tvrtko Ursuline32192e2016-01-12 16:04:06 +00002519 found = true;
2520 }
2521 } else if (IS_BROADWELL(dev_priv)) {
2522 tmp_mask = iir & GEN8_PORT_DP_A_HOTPLUG;
2523 if (tmp_mask) {
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002524 ilk_hpd_irq_handler(dev_priv,
2525 tmp_mask, hpd_bdw);
Tvrtko Ursuline32192e2016-01-12 16:04:06 +00002526 found = true;
2527 }
Shashank Sharmad04a4922014-08-22 17:40:41 +05302528 }
2529
Ander Conselvan de Oliveiracc3f90f2016-12-02 10:23:49 +02002530 if (IS_GEN9_LP(dev_priv) && (iir & BXT_DE_PORT_GMBUS)) {
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002531 gmbus_irq_handler(dev_priv);
Shashank Sharma9e637432014-08-22 17:40:43 +05302532 found = true;
2533 }
2534
Shashank Sharmad04a4922014-08-22 17:40:41 +05302535 if (!found)
Oscar Mateo38cc46d2014-06-16 16:10:59 +01002536 DRM_ERROR("Unexpected DE Port interrupt\n");
Daniel Vetter6d766f02013-11-07 14:49:55 +01002537 }
Oscar Mateo38cc46d2014-06-16 16:10:59 +01002538 else
2539 DRM_ERROR("The master control interrupt lied (DE PORT)!\n");
Daniel Vetter6d766f02013-11-07 14:49:55 +01002540 }
2541
Damien Lespiau055e3932014-08-18 13:49:10 +01002542 for_each_pipe(dev_priv, pipe) {
Tvrtko Ursuline32192e2016-01-12 16:04:06 +00002543 u32 flip_done, fault_errors;
Ben Widawskyabd58f02013-11-02 21:07:09 -07002544
Daniel Vetterc42664c2013-11-07 11:05:40 +01002545 if (!(master_ctl & GEN8_DE_PIPE_IRQ(pipe)))
2546 continue;
Ben Widawskyabd58f02013-11-02 21:07:09 -07002547
Tvrtko Ursuline32192e2016-01-12 16:04:06 +00002548 iir = I915_READ(GEN8_DE_PIPE_IIR(pipe));
2549 if (!iir) {
Ben Widawskyabd58f02013-11-02 21:07:09 -07002550 DRM_ERROR("The master control interrupt lied (DE PIPE)!\n");
Tvrtko Ursuline32192e2016-01-12 16:04:06 +00002551 continue;
2552 }
2553
2554 ret = IRQ_HANDLED;
2555 I915_WRITE(GEN8_DE_PIPE_IIR(pipe), iir);
2556
Daniel Vetter5a21b662016-05-24 17:13:53 +02002557 if (iir & GEN8_PIPE_VBLANK &&
2558 intel_pipe_handle_vblank(dev_priv, pipe))
2559 intel_check_page_flip(dev_priv, pipe);
Tvrtko Ursuline32192e2016-01-12 16:04:06 +00002560
2561 flip_done = iir;
2562 if (INTEL_INFO(dev_priv)->gen >= 9)
2563 flip_done &= GEN9_PIPE_PLANE1_FLIP_DONE;
2564 else
2565 flip_done &= GEN8_PIPE_PRIMARY_FLIP_DONE;
2566
Maarten Lankhorst5251f042016-05-17 15:07:47 +02002567 if (flip_done)
Maarten Lankhorst51cbaf02016-05-17 15:07:49 +02002568 intel_finish_page_flip_cs(dev_priv, pipe);
Tvrtko Ursuline32192e2016-01-12 16:04:06 +00002569
2570 if (iir & GEN8_PIPE_CDCLK_CRC_DONE)
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002571 hsw_pipe_crc_irq_handler(dev_priv, pipe);
Tvrtko Ursuline32192e2016-01-12 16:04:06 +00002572
2573 if (iir & GEN8_PIPE_FIFO_UNDERRUN)
2574 intel_cpu_fifo_underrun_irq_handler(dev_priv, pipe);
2575
2576 fault_errors = iir;
2577 if (INTEL_INFO(dev_priv)->gen >= 9)
2578 fault_errors &= GEN9_DE_PIPE_IRQ_FAULT_ERRORS;
2579 else
2580 fault_errors &= GEN8_DE_PIPE_IRQ_FAULT_ERRORS;
2581
2582 if (fault_errors)
Tvrtko Ursulin1353ec32016-10-27 13:48:32 +01002583 DRM_ERROR("Fault errors on pipe %c: 0x%08x\n",
Tvrtko Ursuline32192e2016-01-12 16:04:06 +00002584 pipe_name(pipe),
2585 fault_errors);
Ben Widawskyabd58f02013-11-02 21:07:09 -07002586 }
2587
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002588 if (HAS_PCH_SPLIT(dev_priv) && !HAS_PCH_NOP(dev_priv) &&
Shashank Sharma266ea3d2014-08-22 17:40:42 +05302589 master_ctl & GEN8_DE_PCH_IRQ) {
Daniel Vetter92d03a82013-11-07 11:05:43 +01002590 /*
2591 * FIXME(BDW): Assume for now that the new interrupt handling
2592 * scheme also closed the SDE interrupt handling race we've seen
2593 * on older pch-split platforms. But this needs testing.
2594 */
Tvrtko Ursuline32192e2016-01-12 16:04:06 +00002595 iir = I915_READ(SDEIIR);
2596 if (iir) {
2597 I915_WRITE(SDEIIR, iir);
Daniel Vetter92d03a82013-11-07 11:05:43 +01002598 ret = IRQ_HANDLED;
Ville Syrjälä6dbf30c2015-08-27 23:56:02 +03002599
Rodrigo Vivi22dea0b2016-07-01 17:07:12 -07002600 if (HAS_PCH_SPT(dev_priv) || HAS_PCH_KBP(dev_priv))
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002601 spt_irq_handler(dev_priv, iir);
Ville Syrjälä6dbf30c2015-08-27 23:56:02 +03002602 else
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002603 cpt_irq_handler(dev_priv, iir);
Jani Nikula2dfb0b82016-01-07 10:29:10 +02002604 } else {
2605 /*
2606 * Like on previous PCH there seems to be something
2607 * fishy going on with forwarding PCH interrupts.
2608 */
2609 DRM_DEBUG_DRIVER("The master control interrupt lied (SDE)!\n");
2610 }
Daniel Vetter92d03a82013-11-07 11:05:43 +01002611 }
2612
Tvrtko Ursulinf11a0f42016-01-12 16:04:07 +00002613 return ret;
2614}
2615
2616static irqreturn_t gen8_irq_handler(int irq, void *arg)
2617{
2618 struct drm_device *dev = arg;
Chris Wilsonfac5e232016-07-04 11:34:36 +01002619 struct drm_i915_private *dev_priv = to_i915(dev);
Tvrtko Ursulinf11a0f42016-01-12 16:04:07 +00002620 u32 master_ctl;
Ville Syrjäläe30e2512016-04-13 21:19:58 +03002621 u32 gt_iir[4] = {};
Tvrtko Ursulinf11a0f42016-01-12 16:04:07 +00002622 irqreturn_t ret;
2623
2624 if (!intel_irqs_enabled(dev_priv))
2625 return IRQ_NONE;
2626
2627 master_ctl = I915_READ_FW(GEN8_MASTER_IRQ);
2628 master_ctl &= ~GEN8_MASTER_IRQ_CONTROL;
2629 if (!master_ctl)
2630 return IRQ_NONE;
2631
2632 I915_WRITE_FW(GEN8_MASTER_IRQ, 0);
2633
2634 /* IRQs are synced during runtime_suspend, we don't require a wakeref */
2635 disable_rpm_wakeref_asserts(dev_priv);
2636
2637 /* Find, clear, then process each source of interrupt */
Ville Syrjäläe30e2512016-04-13 21:19:58 +03002638 ret = gen8_gt_irq_ack(dev_priv, master_ctl, gt_iir);
2639 gen8_gt_irq_handler(dev_priv, gt_iir);
Tvrtko Ursulinf11a0f42016-01-12 16:04:07 +00002640 ret |= gen8_de_irq_handler(dev_priv, master_ctl);
2641
Chris Wilsoncb0d2052015-04-07 16:21:04 +01002642 I915_WRITE_FW(GEN8_MASTER_IRQ, GEN8_MASTER_IRQ_CONTROL);
2643 POSTING_READ_FW(GEN8_MASTER_IRQ);
Ben Widawskyabd58f02013-11-02 21:07:09 -07002644
Imre Deak1f814da2015-12-16 02:52:19 +02002645 enable_rpm_wakeref_asserts(dev_priv);
2646
Ben Widawskyabd58f02013-11-02 21:07:09 -07002647 return ret;
2648}
2649
Chris Wilson1f15b762016-07-01 17:23:14 +01002650static void i915_error_wake_up(struct drm_i915_private *dev_priv)
Daniel Vetter17e1df02013-09-08 21:57:13 +02002651{
Daniel Vetter17e1df02013-09-08 21:57:13 +02002652 /*
2653 * Notify all waiters for GPU completion events that reset state has
2654 * been changed, and that they need to restart their wait after
2655 * checking for potential errors (and bail out to drop locks if there is
2656 * a gpu reset pending so that i915_error_work_func can acquire them).
2657 */
2658
2659 /* Wake up __wait_seqno, potentially holding dev->struct_mutex. */
Chris Wilson1f15b762016-07-01 17:23:14 +01002660 wake_up_all(&dev_priv->gpu_error.wait_queue);
Daniel Vetter17e1df02013-09-08 21:57:13 +02002661
2662 /* Wake up intel_crtc_wait_for_pending_flips, holding crtc->mutex. */
2663 wake_up_all(&dev_priv->pending_flip_queue);
Daniel Vetter17e1df02013-09-08 21:57:13 +02002664}
2665
Jesse Barnes8a905232009-07-11 16:48:03 -04002666/**
Mika Kuoppalab8d24a02015-01-28 17:03:14 +02002667 * i915_reset_and_wakeup - do process context error handling work
Tvrtko Ursulin14bb2c12016-06-03 14:02:17 +01002668 * @dev_priv: i915 device private
Jesse Barnes8a905232009-07-11 16:48:03 -04002669 *
2670 * Fire an error uevent so userspace can see that a hang or error
2671 * was detected.
2672 */
Chris Wilsonc0336662016-05-06 15:40:21 +01002673static void i915_reset_and_wakeup(struct drm_i915_private *dev_priv)
Jesse Barnes8a905232009-07-11 16:48:03 -04002674{
Chris Wilson91c8a322016-07-05 10:40:23 +01002675 struct kobject *kobj = &dev_priv->drm.primary->kdev->kobj;
Ben Widawskycce723e2013-07-19 09:16:42 -07002676 char *error_event[] = { I915_ERROR_UEVENT "=1", NULL };
2677 char *reset_event[] = { I915_RESET_UEVENT "=1", NULL };
2678 char *reset_done_event[] = { I915_ERROR_UEVENT "=0", NULL };
Jesse Barnes8a905232009-07-11 16:48:03 -04002679
Chris Wilsonc0336662016-05-06 15:40:21 +01002680 kobject_uevent_env(kobj, KOBJ_CHANGE, error_event);
Jesse Barnes8a905232009-07-11 16:48:03 -04002681
Chris Wilson8af29b02016-09-09 14:11:47 +01002682 DRM_DEBUG_DRIVER("resetting chip\n");
2683 kobject_uevent_env(kobj, KOBJ_CHANGE, reset_event);
2684
Daniel Vetter7db0ba22012-12-06 16:23:37 +01002685 /*
Chris Wilson8af29b02016-09-09 14:11:47 +01002686 * In most cases it's guaranteed that we get here with an RPM
2687 * reference held, for example because there is a pending GPU
2688 * request that won't finish until the reset is done. This
2689 * isn't the case at least when we get here by doing a
2690 * simulated reset via debugs, so get an RPM reference.
Daniel Vetter7db0ba22012-12-06 16:23:37 +01002691 */
Chris Wilson8af29b02016-09-09 14:11:47 +01002692 intel_runtime_pm_get(dev_priv);
Chris Wilson8af29b02016-09-09 14:11:47 +01002693 intel_prepare_reset(dev_priv);
Ville Syrjälä75147472014-11-24 18:28:11 +02002694
Chris Wilson780f2622016-09-09 14:11:52 +01002695 do {
2696 /*
2697 * All state reset _must_ be completed before we update the
2698 * reset counter, for otherwise waiters might miss the reset
2699 * pending state and not properly drop locks, resulting in
2700 * deadlocks with the reset work.
2701 */
2702 if (mutex_trylock(&dev_priv->drm.struct_mutex)) {
2703 i915_reset(dev_priv);
2704 mutex_unlock(&dev_priv->drm.struct_mutex);
2705 }
2706
2707 /* We need to wait for anyone holding the lock to wakeup */
2708 } while (wait_on_bit_timeout(&dev_priv->gpu_error.flags,
2709 I915_RESET_IN_PROGRESS,
2710 TASK_UNINTERRUPTIBLE,
2711 HZ));
Ville Syrjälä75147472014-11-24 18:28:11 +02002712
Chris Wilson8af29b02016-09-09 14:11:47 +01002713 intel_finish_reset(dev_priv);
Chris Wilson8af29b02016-09-09 14:11:47 +01002714 intel_runtime_pm_put(dev_priv);
Daniel Vetter17e1df02013-09-08 21:57:13 +02002715
Chris Wilson780f2622016-09-09 14:11:52 +01002716 if (!test_bit(I915_WEDGED, &dev_priv->gpu_error.flags))
Chris Wilson8af29b02016-09-09 14:11:47 +01002717 kobject_uevent_env(kobj,
2718 KOBJ_CHANGE, reset_done_event);
Imre Deakf454c692014-04-23 01:09:04 +03002719
Chris Wilson8af29b02016-09-09 14:11:47 +01002720 /*
2721 * Note: The wake_up also serves as a memory barrier so that
2722 * waiters see the updated value of the dev_priv->gpu_error.
2723 */
2724 wake_up_all(&dev_priv->gpu_error.reset_queue);
Jesse Barnes8a905232009-07-11 16:48:03 -04002725}
2726
Ben Widawskyd6369512016-09-20 16:54:32 +03002727static inline void
2728i915_err_print_instdone(struct drm_i915_private *dev_priv,
2729 struct intel_instdone *instdone)
2730{
Ben Widawskyf9e61372016-09-20 16:54:33 +03002731 int slice;
2732 int subslice;
2733
Ben Widawskyd6369512016-09-20 16:54:32 +03002734 pr_err(" INSTDONE: 0x%08x\n", instdone->instdone);
2735
2736 if (INTEL_GEN(dev_priv) <= 3)
2737 return;
2738
2739 pr_err(" SC_INSTDONE: 0x%08x\n", instdone->slice_common);
2740
2741 if (INTEL_GEN(dev_priv) <= 6)
2742 return;
2743
Ben Widawskyf9e61372016-09-20 16:54:33 +03002744 for_each_instdone_slice_subslice(dev_priv, slice, subslice)
2745 pr_err(" SAMPLER_INSTDONE[%d][%d]: 0x%08x\n",
2746 slice, subslice, instdone->sampler[slice][subslice]);
2747
2748 for_each_instdone_slice_subslice(dev_priv, slice, subslice)
2749 pr_err(" ROW_INSTDONE[%d][%d]: 0x%08x\n",
2750 slice, subslice, instdone->row[slice][subslice]);
Ben Widawskyd6369512016-09-20 16:54:32 +03002751}
2752
Chris Wilsoneaa14c22016-10-19 13:52:03 +01002753static void i915_clear_error_registers(struct drm_i915_private *dev_priv)
Jesse Barnes8a905232009-07-11 16:48:03 -04002754{
Chris Wilsoneaa14c22016-10-19 13:52:03 +01002755 u32 eir;
Jesse Barnes8a905232009-07-11 16:48:03 -04002756
Chris Wilsoneaa14c22016-10-19 13:52:03 +01002757 if (!IS_GEN2(dev_priv))
2758 I915_WRITE(PGTBL_ER, I915_READ(PGTBL_ER));
Jesse Barnes8a905232009-07-11 16:48:03 -04002759
Chris Wilsoneaa14c22016-10-19 13:52:03 +01002760 if (INTEL_GEN(dev_priv) < 4)
2761 I915_WRITE(IPEIR, I915_READ(IPEIR));
2762 else
2763 I915_WRITE(IPEIR_I965, I915_READ(IPEIR_I965));
Jesse Barnes8a905232009-07-11 16:48:03 -04002764
Chris Wilsoneaa14c22016-10-19 13:52:03 +01002765 I915_WRITE(EIR, I915_READ(EIR));
Jesse Barnes8a905232009-07-11 16:48:03 -04002766 eir = I915_READ(EIR);
2767 if (eir) {
2768 /*
2769 * some errors might have become stuck,
2770 * mask them.
2771 */
Chris Wilsoneaa14c22016-10-19 13:52:03 +01002772 DRM_DEBUG_DRIVER("EIR stuck: 0x%08x, masking\n", eir);
Jesse Barnes8a905232009-07-11 16:48:03 -04002773 I915_WRITE(EMR, I915_READ(EMR) | eir);
2774 I915_WRITE(IIR, I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT);
2775 }
Chris Wilson35aed2e2010-05-27 13:18:12 +01002776}
2777
2778/**
Mika Kuoppalab8d24a02015-01-28 17:03:14 +02002779 * i915_handle_error - handle a gpu error
Tvrtko Ursulin14bb2c12016-06-03 14:02:17 +01002780 * @dev_priv: i915 device private
arun.siluvery@linux.intel.com14b730f2016-03-18 20:07:55 +00002781 * @engine_mask: mask representing engines that are hung
Michel Thierry87c390b2017-01-11 20:18:08 -08002782 * @fmt: Error message format string
2783 *
Javier Martinez Canillasaafd8582015-10-08 09:57:49 +02002784 * Do some basic checking of register state at error time and
Chris Wilson35aed2e2010-05-27 13:18:12 +01002785 * dump it to the syslog. Also call i915_capture_error_state() to make
2786 * sure we get a record and make it available in debugfs. Fire a uevent
2787 * so userspace knows something bad happened (should trigger collection
2788 * of a ring dump etc.).
2789 */
Chris Wilsonc0336662016-05-06 15:40:21 +01002790void i915_handle_error(struct drm_i915_private *dev_priv,
2791 u32 engine_mask,
Mika Kuoppala58174462014-02-25 17:11:26 +02002792 const char *fmt, ...)
Chris Wilson35aed2e2010-05-27 13:18:12 +01002793{
Mika Kuoppala58174462014-02-25 17:11:26 +02002794 va_list args;
2795 char error_msg[80];
Chris Wilson35aed2e2010-05-27 13:18:12 +01002796
Mika Kuoppala58174462014-02-25 17:11:26 +02002797 va_start(args, fmt);
2798 vscnprintf(error_msg, sizeof(error_msg), fmt, args);
2799 va_end(args);
2800
Chris Wilsonc0336662016-05-06 15:40:21 +01002801 i915_capture_error_state(dev_priv, engine_mask, error_msg);
Chris Wilsoneaa14c22016-10-19 13:52:03 +01002802 i915_clear_error_registers(dev_priv);
Jesse Barnes8a905232009-07-11 16:48:03 -04002803
Chris Wilson8af29b02016-09-09 14:11:47 +01002804 if (!engine_mask)
2805 return;
Ben Gamariba1234d2009-09-14 17:48:47 -04002806
Chris Wilson8af29b02016-09-09 14:11:47 +01002807 if (test_and_set_bit(I915_RESET_IN_PROGRESS,
2808 &dev_priv->gpu_error.flags))
2809 return;
2810
2811 /*
2812 * Wakeup waiting processes so that the reset function
2813 * i915_reset_and_wakeup doesn't deadlock trying to grab
2814 * various locks. By bumping the reset counter first, the woken
2815 * processes will see a reset in progress and back off,
2816 * releasing their locks and then wait for the reset completion.
2817 * We must do this for _all_ gpu waiters that might hold locks
2818 * that the reset work needs to acquire.
2819 *
2820 * Note: The wake_up also provides a memory barrier to ensure that the
2821 * waiters see the updated value of the reset flags.
2822 */
2823 i915_error_wake_up(dev_priv);
Ben Gamari11ed50e2009-09-14 17:48:45 -04002824
Chris Wilsonc0336662016-05-06 15:40:21 +01002825 i915_reset_and_wakeup(dev_priv);
Jesse Barnes8a905232009-07-11 16:48:03 -04002826}
2827
Keith Packard42f52ef2008-10-18 19:39:29 -07002828/* Called from drm generic code, passed 'crtc' which
2829 * we use as a pipe index
2830 */
Chris Wilson86e83e32016-10-07 20:49:52 +01002831static int i8xx_enable_vblank(struct drm_device *dev, unsigned int pipe)
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07002832{
Chris Wilsonfac5e232016-07-04 11:34:36 +01002833 struct drm_i915_private *dev_priv = to_i915(dev);
Keith Packarde9d21d72008-10-16 11:31:38 -07002834 unsigned long irqflags;
Jesse Barnes71e0ffa2009-01-08 10:42:15 -08002835
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002836 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Chris Wilson86e83e32016-10-07 20:49:52 +01002837 i915_enable_pipestat(dev_priv, pipe, PIPE_VBLANK_INTERRUPT_STATUS);
2838 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
2839
2840 return 0;
2841}
2842
2843static int i965_enable_vblank(struct drm_device *dev, unsigned int pipe)
2844{
2845 struct drm_i915_private *dev_priv = to_i915(dev);
2846 unsigned long irqflags;
2847
2848 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
2849 i915_enable_pipestat(dev_priv, pipe,
2850 PIPE_START_VBLANK_INTERRUPT_STATUS);
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002851 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
Chris Wilson8692d00e2011-02-05 10:08:21 +00002852
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07002853 return 0;
2854}
2855
Thierry Reding88e72712015-09-24 18:35:31 +02002856static int ironlake_enable_vblank(struct drm_device *dev, unsigned int pipe)
Jesse Barnesf796cf82011-04-07 13:58:17 -07002857{
Chris Wilsonfac5e232016-07-04 11:34:36 +01002858 struct drm_i915_private *dev_priv = to_i915(dev);
Jesse Barnesf796cf82011-04-07 13:58:17 -07002859 unsigned long irqflags;
Tvrtko Ursulin55b8f2a2016-10-14 09:17:22 +01002860 uint32_t bit = INTEL_GEN(dev_priv) >= 7 ?
Chris Wilson86e83e32016-10-07 20:49:52 +01002861 DE_PIPE_VBLANK_IVB(pipe) : DE_PIPE_VBLANK(pipe);
Jesse Barnesf796cf82011-04-07 13:58:17 -07002862
Jesse Barnesf796cf82011-04-07 13:58:17 -07002863 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Ville Syrjäläfbdedaea2015-11-23 18:06:16 +02002864 ilk_enable_display_irq(dev_priv, bit);
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002865 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
2866
2867 return 0;
2868}
2869
Thierry Reding88e72712015-09-24 18:35:31 +02002870static int gen8_enable_vblank(struct drm_device *dev, unsigned int pipe)
Ben Widawskyabd58f02013-11-02 21:07:09 -07002871{
Chris Wilsonfac5e232016-07-04 11:34:36 +01002872 struct drm_i915_private *dev_priv = to_i915(dev);
Ben Widawskyabd58f02013-11-02 21:07:09 -07002873 unsigned long irqflags;
Ben Widawskyabd58f02013-11-02 21:07:09 -07002874
Ben Widawskyabd58f02013-11-02 21:07:09 -07002875 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Ville Syrjälä013d3752015-11-23 18:06:17 +02002876 bdw_enable_pipe_irq(dev_priv, pipe, GEN8_PIPE_VBLANK);
Ben Widawskyabd58f02013-11-02 21:07:09 -07002877 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
Ville Syrjälä013d3752015-11-23 18:06:17 +02002878
Ben Widawskyabd58f02013-11-02 21:07:09 -07002879 return 0;
2880}
2881
Keith Packard42f52ef2008-10-18 19:39:29 -07002882/* Called from drm generic code, passed 'crtc' which
2883 * we use as a pipe index
2884 */
Chris Wilson86e83e32016-10-07 20:49:52 +01002885static void i8xx_disable_vblank(struct drm_device *dev, unsigned int pipe)
2886{
2887 struct drm_i915_private *dev_priv = to_i915(dev);
2888 unsigned long irqflags;
2889
2890 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
2891 i915_disable_pipestat(dev_priv, pipe, PIPE_VBLANK_INTERRUPT_STATUS);
2892 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
2893}
2894
2895static void i965_disable_vblank(struct drm_device *dev, unsigned int pipe)
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07002896{
Chris Wilsonfac5e232016-07-04 11:34:36 +01002897 struct drm_i915_private *dev_priv = to_i915(dev);
Keith Packarde9d21d72008-10-16 11:31:38 -07002898 unsigned long irqflags;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07002899
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002900 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Jesse Barnesf796cf82011-04-07 13:58:17 -07002901 i915_disable_pipestat(dev_priv, pipe,
Imre Deak755e9012014-02-10 18:42:47 +02002902 PIPE_START_VBLANK_INTERRUPT_STATUS);
Jesse Barnesf796cf82011-04-07 13:58:17 -07002903 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
2904}
2905
Thierry Reding88e72712015-09-24 18:35:31 +02002906static void ironlake_disable_vblank(struct drm_device *dev, unsigned int pipe)
Jesse Barnesf796cf82011-04-07 13:58:17 -07002907{
Chris Wilsonfac5e232016-07-04 11:34:36 +01002908 struct drm_i915_private *dev_priv = to_i915(dev);
Jesse Barnesf796cf82011-04-07 13:58:17 -07002909 unsigned long irqflags;
Tvrtko Ursulin55b8f2a2016-10-14 09:17:22 +01002910 uint32_t bit = INTEL_GEN(dev_priv) >= 7 ?
Chris Wilson86e83e32016-10-07 20:49:52 +01002911 DE_PIPE_VBLANK_IVB(pipe) : DE_PIPE_VBLANK(pipe);
Jesse Barnesf796cf82011-04-07 13:58:17 -07002912
2913 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Ville Syrjäläfbdedaea2015-11-23 18:06:16 +02002914 ilk_disable_display_irq(dev_priv, bit);
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002915 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
2916}
2917
Thierry Reding88e72712015-09-24 18:35:31 +02002918static void gen8_disable_vblank(struct drm_device *dev, unsigned int pipe)
Ben Widawskyabd58f02013-11-02 21:07:09 -07002919{
Chris Wilsonfac5e232016-07-04 11:34:36 +01002920 struct drm_i915_private *dev_priv = to_i915(dev);
Ben Widawskyabd58f02013-11-02 21:07:09 -07002921 unsigned long irqflags;
Ben Widawskyabd58f02013-11-02 21:07:09 -07002922
Ben Widawskyabd58f02013-11-02 21:07:09 -07002923 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Ville Syrjälä013d3752015-11-23 18:06:17 +02002924 bdw_disable_pipe_irq(dev_priv, pipe, GEN8_PIPE_VBLANK);
Ben Widawskyabd58f02013-11-02 21:07:09 -07002925 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
2926}
2927
Tvrtko Ursulinb243f532016-11-16 08:55:38 +00002928static void ibx_irq_reset(struct drm_i915_private *dev_priv)
Paulo Zanoni91738a92013-06-05 14:21:51 -03002929{
Tvrtko Ursulin6e266952016-10-13 11:02:53 +01002930 if (HAS_PCH_NOP(dev_priv))
Paulo Zanoni91738a92013-06-05 14:21:51 -03002931 return;
2932
Paulo Zanonif86f3fb2014-04-01 15:37:14 -03002933 GEN5_IRQ_RESET(SDE);
Paulo Zanoni105b1222014-04-01 15:37:17 -03002934
Tvrtko Ursulin6e266952016-10-13 11:02:53 +01002935 if (HAS_PCH_CPT(dev_priv) || HAS_PCH_LPT(dev_priv))
Paulo Zanoni105b1222014-04-01 15:37:17 -03002936 I915_WRITE(SERR_INT, 0xffffffff);
Paulo Zanoni622364b2014-04-01 15:37:22 -03002937}
Paulo Zanoni105b1222014-04-01 15:37:17 -03002938
Paulo Zanoni622364b2014-04-01 15:37:22 -03002939/*
2940 * SDEIER is also touched by the interrupt handler to work around missed PCH
2941 * interrupts. Hence we can't update it after the interrupt handler is enabled -
2942 * instead we unconditionally enable all PCH interrupt sources here, but then
2943 * only unmask them as needed with SDEIMR.
2944 *
2945 * This function needs to be called before interrupts are enabled.
2946 */
2947static void ibx_irq_pre_postinstall(struct drm_device *dev)
2948{
Chris Wilsonfac5e232016-07-04 11:34:36 +01002949 struct drm_i915_private *dev_priv = to_i915(dev);
Paulo Zanoni622364b2014-04-01 15:37:22 -03002950
Tvrtko Ursulin6e266952016-10-13 11:02:53 +01002951 if (HAS_PCH_NOP(dev_priv))
Paulo Zanoni622364b2014-04-01 15:37:22 -03002952 return;
2953
2954 WARN_ON(I915_READ(SDEIER) != 0);
Paulo Zanoni91738a92013-06-05 14:21:51 -03002955 I915_WRITE(SDEIER, 0xffffffff);
2956 POSTING_READ(SDEIER);
2957}
2958
Tvrtko Ursulinb243f532016-11-16 08:55:38 +00002959static void gen5_gt_irq_reset(struct drm_i915_private *dev_priv)
Daniel Vetterd18ea1b2013-07-12 22:43:25 +02002960{
Paulo Zanonif86f3fb2014-04-01 15:37:14 -03002961 GEN5_IRQ_RESET(GT);
Tvrtko Ursulinb243f532016-11-16 08:55:38 +00002962 if (INTEL_GEN(dev_priv) >= 6)
Paulo Zanonif86f3fb2014-04-01 15:37:14 -03002963 GEN5_IRQ_RESET(GEN6_PM);
Daniel Vetterd18ea1b2013-07-12 22:43:25 +02002964}
2965
Ville Syrjälä70591a42014-10-30 19:42:58 +02002966static void vlv_display_irq_reset(struct drm_i915_private *dev_priv)
2967{
2968 enum pipe pipe;
2969
Ville Syrjälä71b8b412016-04-11 16:56:31 +03002970 if (IS_CHERRYVIEW(dev_priv))
2971 I915_WRITE(DPINVGTT, DPINVGTT_STATUS_MASK_CHV);
2972 else
2973 I915_WRITE(DPINVGTT, DPINVGTT_STATUS_MASK);
2974
Ville Syrjäläad22d102016-04-12 18:56:14 +03002975 i915_hotplug_interrupt_update_locked(dev_priv, 0xffffffff, 0);
Ville Syrjälä70591a42014-10-30 19:42:58 +02002976 I915_WRITE(PORT_HOTPLUG_STAT, I915_READ(PORT_HOTPLUG_STAT));
2977
Ville Syrjäläad22d102016-04-12 18:56:14 +03002978 for_each_pipe(dev_priv, pipe) {
2979 I915_WRITE(PIPESTAT(pipe),
2980 PIPE_FIFO_UNDERRUN_STATUS |
2981 PIPESTAT_INT_STATUS_MASK);
2982 dev_priv->pipestat_irq_mask[pipe] = 0;
2983 }
Ville Syrjälä70591a42014-10-30 19:42:58 +02002984
2985 GEN5_IRQ_RESET(VLV_);
Ville Syrjäläad22d102016-04-12 18:56:14 +03002986 dev_priv->irq_mask = ~0;
Ville Syrjälä70591a42014-10-30 19:42:58 +02002987}
2988
Ville Syrjälä8bb61302016-04-12 18:56:44 +03002989static void vlv_display_irq_postinstall(struct drm_i915_private *dev_priv)
2990{
2991 u32 pipestat_mask;
Ville Syrjälä9ab981f2016-04-11 16:56:28 +03002992 u32 enable_mask;
Ville Syrjälä8bb61302016-04-12 18:56:44 +03002993 enum pipe pipe;
Jerome Anandeef57322017-01-25 04:27:49 +05302994 u32 val;
Ville Syrjälä8bb61302016-04-12 18:56:44 +03002995
Ville Syrjälä8bb61302016-04-12 18:56:44 +03002996 pipestat_mask = PLANE_FLIP_DONE_INT_STATUS_VLV |
2997 PIPE_CRC_DONE_INTERRUPT_STATUS;
2998
2999 i915_enable_pipestat(dev_priv, PIPE_A, PIPE_GMBUS_INTERRUPT_STATUS);
3000 for_each_pipe(dev_priv, pipe)
3001 i915_enable_pipestat(dev_priv, pipe, pipestat_mask);
3002
Ville Syrjälä9ab981f2016-04-11 16:56:28 +03003003 enable_mask = I915_DISPLAY_PORT_INTERRUPT |
3004 I915_DISPLAY_PIPE_A_EVENT_INTERRUPT |
3005 I915_DISPLAY_PIPE_B_EVENT_INTERRUPT;
Ville Syrjälä8bb61302016-04-12 18:56:44 +03003006 if (IS_CHERRYVIEW(dev_priv))
Ville Syrjälä9ab981f2016-04-11 16:56:28 +03003007 enable_mask |= I915_DISPLAY_PIPE_C_EVENT_INTERRUPT;
Ville Syrjälä6b7eafc2016-04-11 16:56:29 +03003008
3009 WARN_ON(dev_priv->irq_mask != ~0);
3010
Jerome Anandeef57322017-01-25 04:27:49 +05303011 val = (I915_LPE_PIPE_A_INTERRUPT |
3012 I915_LPE_PIPE_B_INTERRUPT |
3013 I915_LPE_PIPE_C_INTERRUPT);
3014
3015 enable_mask |= val;
3016
Ville Syrjälä9ab981f2016-04-11 16:56:28 +03003017 dev_priv->irq_mask = ~enable_mask;
Ville Syrjälä8bb61302016-04-12 18:56:44 +03003018
Ville Syrjälä9ab981f2016-04-11 16:56:28 +03003019 GEN5_IRQ_INIT(VLV_, dev_priv->irq_mask, enable_mask);
Ville Syrjälä8bb61302016-04-12 18:56:44 +03003020}
3021
3022/* drm_dma.h hooks
3023*/
3024static void ironlake_irq_reset(struct drm_device *dev)
3025{
Chris Wilsonfac5e232016-07-04 11:34:36 +01003026 struct drm_i915_private *dev_priv = to_i915(dev);
Ville Syrjälä8bb61302016-04-12 18:56:44 +03003027
3028 I915_WRITE(HWSTAM, 0xffffffff);
3029
3030 GEN5_IRQ_RESET(DE);
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01003031 if (IS_GEN7(dev_priv))
Ville Syrjälä8bb61302016-04-12 18:56:44 +03003032 I915_WRITE(GEN7_ERR_INT, 0xffffffff);
3033
Tvrtko Ursulinb243f532016-11-16 08:55:38 +00003034 gen5_gt_irq_reset(dev_priv);
Ville Syrjälä8bb61302016-04-12 18:56:44 +03003035
Tvrtko Ursulinb243f532016-11-16 08:55:38 +00003036 ibx_irq_reset(dev_priv);
Ville Syrjälä8bb61302016-04-12 18:56:44 +03003037}
3038
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003039static void valleyview_irq_preinstall(struct drm_device *dev)
3040{
Chris Wilsonfac5e232016-07-04 11:34:36 +01003041 struct drm_i915_private *dev_priv = to_i915(dev);
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003042
Ville Syrjälä34c7b8a2016-04-13 21:19:48 +03003043 I915_WRITE(VLV_MASTER_IER, 0);
3044 POSTING_READ(VLV_MASTER_IER);
3045
Tvrtko Ursulinb243f532016-11-16 08:55:38 +00003046 gen5_gt_irq_reset(dev_priv);
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003047
Ville Syrjäläad22d102016-04-12 18:56:14 +03003048 spin_lock_irq(&dev_priv->irq_lock);
Ville Syrjälä99182712016-04-11 16:56:25 +03003049 if (dev_priv->display_irqs_enabled)
3050 vlv_display_irq_reset(dev_priv);
Ville Syrjäläad22d102016-04-12 18:56:14 +03003051 spin_unlock_irq(&dev_priv->irq_lock);
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003052}
3053
Daniel Vetterd6e3cca2014-05-22 22:18:22 +02003054static void gen8_gt_irq_reset(struct drm_i915_private *dev_priv)
3055{
3056 GEN8_IRQ_RESET_NDX(GT, 0);
3057 GEN8_IRQ_RESET_NDX(GT, 1);
3058 GEN8_IRQ_RESET_NDX(GT, 2);
3059 GEN8_IRQ_RESET_NDX(GT, 3);
3060}
3061
Paulo Zanoni823f6b32014-04-01 15:37:26 -03003062static void gen8_irq_reset(struct drm_device *dev)
Ben Widawskyabd58f02013-11-02 21:07:09 -07003063{
Chris Wilsonfac5e232016-07-04 11:34:36 +01003064 struct drm_i915_private *dev_priv = to_i915(dev);
Ben Widawskyabd58f02013-11-02 21:07:09 -07003065 int pipe;
3066
Ben Widawskyabd58f02013-11-02 21:07:09 -07003067 I915_WRITE(GEN8_MASTER_IRQ, 0);
3068 POSTING_READ(GEN8_MASTER_IRQ);
3069
Daniel Vetterd6e3cca2014-05-22 22:18:22 +02003070 gen8_gt_irq_reset(dev_priv);
Ben Widawskyabd58f02013-11-02 21:07:09 -07003071
Damien Lespiau055e3932014-08-18 13:49:10 +01003072 for_each_pipe(dev_priv, pipe)
Daniel Vetterf458ebb2014-09-30 10:56:39 +02003073 if (intel_display_power_is_enabled(dev_priv,
3074 POWER_DOMAIN_PIPE(pipe)))
Paulo Zanoni813bde42014-07-04 11:50:29 -03003075 GEN8_IRQ_RESET_NDX(DE_PIPE, pipe);
Ben Widawskyabd58f02013-11-02 21:07:09 -07003076
Paulo Zanonif86f3fb2014-04-01 15:37:14 -03003077 GEN5_IRQ_RESET(GEN8_DE_PORT_);
3078 GEN5_IRQ_RESET(GEN8_DE_MISC_);
3079 GEN5_IRQ_RESET(GEN8_PCU_);
Ben Widawskyabd58f02013-11-02 21:07:09 -07003080
Tvrtko Ursulin6e266952016-10-13 11:02:53 +01003081 if (HAS_PCH_SPLIT(dev_priv))
Tvrtko Ursulinb243f532016-11-16 08:55:38 +00003082 ibx_irq_reset(dev_priv);
Ben Widawskyabd58f02013-11-02 21:07:09 -07003083}
Ben Widawskyabd58f02013-11-02 21:07:09 -07003084
Damien Lespiau4c6c03b2015-03-06 18:50:48 +00003085void gen8_irq_power_well_post_enable(struct drm_i915_private *dev_priv,
3086 unsigned int pipe_mask)
Paulo Zanonid49bdb02014-07-04 11:50:31 -03003087{
Paulo Zanoni1180e202014-10-07 18:02:52 -03003088 uint32_t extra_ier = GEN8_PIPE_VBLANK | GEN8_PIPE_FIFO_UNDERRUN;
Ville Syrjälä6831f3e2016-02-19 20:47:31 +02003089 enum pipe pipe;
Paulo Zanonid49bdb02014-07-04 11:50:31 -03003090
Daniel Vetter13321782014-09-15 14:55:29 +02003091 spin_lock_irq(&dev_priv->irq_lock);
Ville Syrjälä6831f3e2016-02-19 20:47:31 +02003092 for_each_pipe_masked(dev_priv, pipe, pipe_mask)
3093 GEN8_IRQ_INIT_NDX(DE_PIPE, pipe,
3094 dev_priv->de_irq_mask[pipe],
3095 ~dev_priv->de_irq_mask[pipe] | extra_ier);
Daniel Vetter13321782014-09-15 14:55:29 +02003096 spin_unlock_irq(&dev_priv->irq_lock);
Paulo Zanonid49bdb02014-07-04 11:50:31 -03003097}
3098
Ville Syrjäläaae8ba82016-02-19 20:47:30 +02003099void gen8_irq_power_well_pre_disable(struct drm_i915_private *dev_priv,
3100 unsigned int pipe_mask)
3101{
Ville Syrjälä6831f3e2016-02-19 20:47:31 +02003102 enum pipe pipe;
3103
Ville Syrjäläaae8ba82016-02-19 20:47:30 +02003104 spin_lock_irq(&dev_priv->irq_lock);
Ville Syrjälä6831f3e2016-02-19 20:47:31 +02003105 for_each_pipe_masked(dev_priv, pipe, pipe_mask)
3106 GEN8_IRQ_RESET_NDX(DE_PIPE, pipe);
Ville Syrjäläaae8ba82016-02-19 20:47:30 +02003107 spin_unlock_irq(&dev_priv->irq_lock);
3108
3109 /* make sure we're done processing display irqs */
Chris Wilson91c8a322016-07-05 10:40:23 +01003110 synchronize_irq(dev_priv->drm.irq);
Ville Syrjäläaae8ba82016-02-19 20:47:30 +02003111}
3112
Ville Syrjälä43f328d2014-04-09 20:40:52 +03003113static void cherryview_irq_preinstall(struct drm_device *dev)
3114{
Chris Wilsonfac5e232016-07-04 11:34:36 +01003115 struct drm_i915_private *dev_priv = to_i915(dev);
Ville Syrjälä43f328d2014-04-09 20:40:52 +03003116
3117 I915_WRITE(GEN8_MASTER_IRQ, 0);
3118 POSTING_READ(GEN8_MASTER_IRQ);
3119
Daniel Vetterd6e3cca2014-05-22 22:18:22 +02003120 gen8_gt_irq_reset(dev_priv);
Ville Syrjälä43f328d2014-04-09 20:40:52 +03003121
3122 GEN5_IRQ_RESET(GEN8_PCU_);
3123
Ville Syrjäläad22d102016-04-12 18:56:14 +03003124 spin_lock_irq(&dev_priv->irq_lock);
Ville Syrjälä99182712016-04-11 16:56:25 +03003125 if (dev_priv->display_irqs_enabled)
3126 vlv_display_irq_reset(dev_priv);
Ville Syrjäläad22d102016-04-12 18:56:14 +03003127 spin_unlock_irq(&dev_priv->irq_lock);
Ville Syrjälä43f328d2014-04-09 20:40:52 +03003128}
3129
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01003130static u32 intel_hpd_enabled_irqs(struct drm_i915_private *dev_priv,
Ville Syrjälä87a02102015-08-27 23:55:57 +03003131 const u32 hpd[HPD_NUM_PINS])
3132{
Ville Syrjälä87a02102015-08-27 23:55:57 +03003133 struct intel_encoder *encoder;
3134 u32 enabled_irqs = 0;
3135
Chris Wilson91c8a322016-07-05 10:40:23 +01003136 for_each_intel_encoder(&dev_priv->drm, encoder)
Ville Syrjälä87a02102015-08-27 23:55:57 +03003137 if (dev_priv->hotplug.stats[encoder->hpd_pin].state == HPD_ENABLED)
3138 enabled_irqs |= hpd[encoder->hpd_pin];
3139
3140 return enabled_irqs;
3141}
3142
Imre Deak1a56b1a2017-01-27 11:39:21 +02003143static void ibx_hpd_detection_setup(struct drm_i915_private *dev_priv)
3144{
3145 u32 hotplug;
3146
3147 /*
3148 * Enable digital hotplug on the PCH, and configure the DP short pulse
3149 * duration to 2ms (which is the minimum in the Display Port spec).
3150 * The pulse duration bits are reserved on LPT+.
3151 */
3152 hotplug = I915_READ(PCH_PORT_HOTPLUG);
3153 hotplug &= ~(PORTB_PULSE_DURATION_MASK |
3154 PORTC_PULSE_DURATION_MASK |
3155 PORTD_PULSE_DURATION_MASK);
3156 hotplug |= PORTB_HOTPLUG_ENABLE | PORTB_PULSE_DURATION_2ms;
3157 hotplug |= PORTC_HOTPLUG_ENABLE | PORTC_PULSE_DURATION_2ms;
3158 hotplug |= PORTD_HOTPLUG_ENABLE | PORTD_PULSE_DURATION_2ms;
3159 /*
3160 * When CPU and PCH are on the same package, port A
3161 * HPD must be enabled in both north and south.
3162 */
3163 if (HAS_PCH_LPT_LP(dev_priv))
3164 hotplug |= PORTA_HOTPLUG_ENABLE;
3165 I915_WRITE(PCH_PORT_HOTPLUG, hotplug);
3166}
3167
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01003168static void ibx_hpd_irq_setup(struct drm_i915_private *dev_priv)
Keith Packard7fe0b972011-09-19 13:31:02 -07003169{
Imre Deak1a56b1a2017-01-27 11:39:21 +02003170 u32 hotplug_irqs, enabled_irqs;
Keith Packard7fe0b972011-09-19 13:31:02 -07003171
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01003172 if (HAS_PCH_IBX(dev_priv)) {
Daniel Vetterfee884e2013-07-04 23:35:21 +02003173 hotplug_irqs = SDE_HOTPLUG_MASK;
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01003174 enabled_irqs = intel_hpd_enabled_irqs(dev_priv, hpd_ibx);
Daniel Vetter82a28bc2013-03-27 15:55:01 +01003175 } else {
Daniel Vetterfee884e2013-07-04 23:35:21 +02003176 hotplug_irqs = SDE_HOTPLUG_MASK_CPT;
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01003177 enabled_irqs = intel_hpd_enabled_irqs(dev_priv, hpd_cpt);
Daniel Vetter82a28bc2013-03-27 15:55:01 +01003178 }
3179
Daniel Vetterfee884e2013-07-04 23:35:21 +02003180 ibx_display_interrupt_update(dev_priv, hotplug_irqs, enabled_irqs);
Daniel Vetter82a28bc2013-03-27 15:55:01 +01003181
Imre Deak1a56b1a2017-01-27 11:39:21 +02003182 ibx_hpd_detection_setup(dev_priv);
Ville Syrjälä6dbf30c2015-08-27 23:56:02 +03003183}
Xiong Zhang26951ca2015-08-17 15:55:50 +08003184
Imre Deak2a57d9c2017-01-27 11:39:18 +02003185static void spt_hpd_detection_setup(struct drm_i915_private *dev_priv)
3186{
3187 u32 hotplug;
3188
3189 /* Enable digital hotplug on the PCH */
3190 hotplug = I915_READ(PCH_PORT_HOTPLUG);
3191 hotplug |= PORTA_HOTPLUG_ENABLE |
3192 PORTB_HOTPLUG_ENABLE |
3193 PORTC_HOTPLUG_ENABLE |
3194 PORTD_HOTPLUG_ENABLE;
3195 I915_WRITE(PCH_PORT_HOTPLUG, hotplug);
3196
3197 hotplug = I915_READ(PCH_PORT_HOTPLUG2);
3198 hotplug |= PORTE_HOTPLUG_ENABLE;
3199 I915_WRITE(PCH_PORT_HOTPLUG2, hotplug);
3200}
3201
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01003202static void spt_hpd_irq_setup(struct drm_i915_private *dev_priv)
Ville Syrjälä6dbf30c2015-08-27 23:56:02 +03003203{
Imre Deak2a57d9c2017-01-27 11:39:18 +02003204 u32 hotplug_irqs, enabled_irqs;
Ville Syrjälä6dbf30c2015-08-27 23:56:02 +03003205
3206 hotplug_irqs = SDE_HOTPLUG_MASK_SPT;
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01003207 enabled_irqs = intel_hpd_enabled_irqs(dev_priv, hpd_spt);
Ville Syrjälä6dbf30c2015-08-27 23:56:02 +03003208
3209 ibx_display_interrupt_update(dev_priv, hotplug_irqs, enabled_irqs);
3210
Imre Deak2a57d9c2017-01-27 11:39:18 +02003211 spt_hpd_detection_setup(dev_priv);
Keith Packard7fe0b972011-09-19 13:31:02 -07003212}
3213
Imre Deak1a56b1a2017-01-27 11:39:21 +02003214static void ilk_hpd_detection_setup(struct drm_i915_private *dev_priv)
3215{
3216 u32 hotplug;
3217
3218 /*
3219 * Enable digital hotplug on the CPU, and configure the DP short pulse
3220 * duration to 2ms (which is the minimum in the Display Port spec)
3221 * The pulse duration bits are reserved on HSW+.
3222 */
3223 hotplug = I915_READ(DIGITAL_PORT_HOTPLUG_CNTRL);
3224 hotplug &= ~DIGITAL_PORTA_PULSE_DURATION_MASK;
3225 hotplug |= DIGITAL_PORTA_HOTPLUG_ENABLE |
3226 DIGITAL_PORTA_PULSE_DURATION_2ms;
3227 I915_WRITE(DIGITAL_PORT_HOTPLUG_CNTRL, hotplug);
3228}
3229
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01003230static void ilk_hpd_irq_setup(struct drm_i915_private *dev_priv)
Ville Syrjäläe4ce95a2015-08-27 23:56:03 +03003231{
Imre Deak1a56b1a2017-01-27 11:39:21 +02003232 u32 hotplug_irqs, enabled_irqs;
Ville Syrjäläe4ce95a2015-08-27 23:56:03 +03003233
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01003234 if (INTEL_GEN(dev_priv) >= 8) {
Ville Syrjälä3a3b3c72015-08-27 23:56:06 +03003235 hotplug_irqs = GEN8_PORT_DP_A_HOTPLUG;
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01003236 enabled_irqs = intel_hpd_enabled_irqs(dev_priv, hpd_bdw);
Ville Syrjälä3a3b3c72015-08-27 23:56:06 +03003237
3238 bdw_update_port_irq(dev_priv, hotplug_irqs, enabled_irqs);
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01003239 } else if (INTEL_GEN(dev_priv) >= 7) {
Ville Syrjälä23bb4cb2015-08-27 23:56:04 +03003240 hotplug_irqs = DE_DP_A_HOTPLUG_IVB;
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01003241 enabled_irqs = intel_hpd_enabled_irqs(dev_priv, hpd_ivb);
Ville Syrjälä3a3b3c72015-08-27 23:56:06 +03003242
3243 ilk_update_display_irq(dev_priv, hotplug_irqs, enabled_irqs);
Ville Syrjälä23bb4cb2015-08-27 23:56:04 +03003244 } else {
3245 hotplug_irqs = DE_DP_A_HOTPLUG;
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01003246 enabled_irqs = intel_hpd_enabled_irqs(dev_priv, hpd_ilk);
Ville Syrjäläe4ce95a2015-08-27 23:56:03 +03003247
Ville Syrjälä3a3b3c72015-08-27 23:56:06 +03003248 ilk_update_display_irq(dev_priv, hotplug_irqs, enabled_irqs);
3249 }
Ville Syrjäläe4ce95a2015-08-27 23:56:03 +03003250
Imre Deak1a56b1a2017-01-27 11:39:21 +02003251 ilk_hpd_detection_setup(dev_priv);
Ville Syrjäläe4ce95a2015-08-27 23:56:03 +03003252
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01003253 ibx_hpd_irq_setup(dev_priv);
Ville Syrjäläe4ce95a2015-08-27 23:56:03 +03003254}
3255
Imre Deak2a57d9c2017-01-27 11:39:18 +02003256static void __bxt_hpd_detection_setup(struct drm_i915_private *dev_priv,
3257 u32 enabled_irqs)
Shashank Sharmae0a20ad2015-03-27 14:54:14 +02003258{
Imre Deak2a57d9c2017-01-27 11:39:18 +02003259 u32 hotplug;
Shashank Sharmae0a20ad2015-03-27 14:54:14 +02003260
Ville Syrjäläa52bb152015-08-27 23:56:11 +03003261 hotplug = I915_READ(PCH_PORT_HOTPLUG);
Imre Deak2a57d9c2017-01-27 11:39:18 +02003262 hotplug |= PORTA_HOTPLUG_ENABLE |
3263 PORTB_HOTPLUG_ENABLE |
3264 PORTC_HOTPLUG_ENABLE;
Shubhangi Shrivastavad252bf62016-03-31 16:11:47 +05303265
3266 DRM_DEBUG_KMS("Invert bit setting: hp_ctl:%x hp_port:%x\n",
3267 hotplug, enabled_irqs);
3268 hotplug &= ~BXT_DDI_HPD_INVERT_MASK;
3269
3270 /*
3271 * For BXT invert bit has to be set based on AOB design
3272 * for HPD detection logic, update it based on VBT fields.
3273 */
Shubhangi Shrivastavad252bf62016-03-31 16:11:47 +05303274 if ((enabled_irqs & BXT_DE_PORT_HP_DDIA) &&
3275 intel_bios_is_port_hpd_inverted(dev_priv, PORT_A))
3276 hotplug |= BXT_DDIA_HPD_INVERT;
3277 if ((enabled_irqs & BXT_DE_PORT_HP_DDIB) &&
3278 intel_bios_is_port_hpd_inverted(dev_priv, PORT_B))
3279 hotplug |= BXT_DDIB_HPD_INVERT;
3280 if ((enabled_irqs & BXT_DE_PORT_HP_DDIC) &&
3281 intel_bios_is_port_hpd_inverted(dev_priv, PORT_C))
3282 hotplug |= BXT_DDIC_HPD_INVERT;
3283
Ville Syrjäläa52bb152015-08-27 23:56:11 +03003284 I915_WRITE(PCH_PORT_HOTPLUG, hotplug);
Shashank Sharmae0a20ad2015-03-27 14:54:14 +02003285}
3286
Imre Deak2a57d9c2017-01-27 11:39:18 +02003287static void bxt_hpd_detection_setup(struct drm_i915_private *dev_priv)
3288{
3289 __bxt_hpd_detection_setup(dev_priv, BXT_DE_PORT_HOTPLUG_MASK);
3290}
3291
3292static void bxt_hpd_irq_setup(struct drm_i915_private *dev_priv)
3293{
3294 u32 hotplug_irqs, enabled_irqs;
3295
3296 enabled_irqs = intel_hpd_enabled_irqs(dev_priv, hpd_bxt);
3297 hotplug_irqs = BXT_DE_PORT_HOTPLUG_MASK;
3298
3299 bdw_update_port_irq(dev_priv, hotplug_irqs, enabled_irqs);
3300
3301 __bxt_hpd_detection_setup(dev_priv, enabled_irqs);
3302}
3303
Paulo Zanonid46da432013-02-08 17:35:15 -02003304static void ibx_irq_postinstall(struct drm_device *dev)
3305{
Chris Wilsonfac5e232016-07-04 11:34:36 +01003306 struct drm_i915_private *dev_priv = to_i915(dev);
Daniel Vetter82a28bc2013-03-27 15:55:01 +01003307 u32 mask;
Paulo Zanonid46da432013-02-08 17:35:15 -02003308
Tvrtko Ursulin6e266952016-10-13 11:02:53 +01003309 if (HAS_PCH_NOP(dev_priv))
Daniel Vetter692a04c2013-05-29 21:43:05 +02003310 return;
3311
Tvrtko Ursulin6e266952016-10-13 11:02:53 +01003312 if (HAS_PCH_IBX(dev_priv))
Daniel Vetter5c673b62014-03-07 20:34:46 +01003313 mask = SDE_GMBUS | SDE_AUX_MASK | SDE_POISON;
Paulo Zanoni105b1222014-04-01 15:37:17 -03003314 else
Daniel Vetter5c673b62014-03-07 20:34:46 +01003315 mask = SDE_GMBUS_CPT | SDE_AUX_MASK_CPT;
Paulo Zanoni86642812013-04-12 17:57:57 -03003316
Ville Syrjäläb51a2842015-09-18 20:03:41 +03003317 gen5_assert_iir_is_zero(dev_priv, SDEIIR);
Paulo Zanonid46da432013-02-08 17:35:15 -02003318 I915_WRITE(SDEIMR, ~mask);
Imre Deak2a57d9c2017-01-27 11:39:18 +02003319
3320 if (HAS_PCH_IBX(dev_priv) || HAS_PCH_CPT(dev_priv) ||
3321 HAS_PCH_LPT(dev_priv))
Imre Deak1a56b1a2017-01-27 11:39:21 +02003322 ibx_hpd_detection_setup(dev_priv);
Imre Deak2a57d9c2017-01-27 11:39:18 +02003323 else
3324 spt_hpd_detection_setup(dev_priv);
Paulo Zanonid46da432013-02-08 17:35:15 -02003325}
3326
Daniel Vetter0a9a8c92013-07-12 22:43:26 +02003327static void gen5_gt_irq_postinstall(struct drm_device *dev)
3328{
Chris Wilsonfac5e232016-07-04 11:34:36 +01003329 struct drm_i915_private *dev_priv = to_i915(dev);
Daniel Vetter0a9a8c92013-07-12 22:43:26 +02003330 u32 pm_irqs, gt_irqs;
3331
3332 pm_irqs = gt_irqs = 0;
3333
3334 dev_priv->gt_irq_mask = ~0;
Tvrtko Ursulin3c9192b2016-10-13 11:03:05 +01003335 if (HAS_L3_DPF(dev_priv)) {
Daniel Vetter0a9a8c92013-07-12 22:43:26 +02003336 /* L3 parity interrupt is always unmasked. */
Tvrtko Ursulin772c2a52016-10-13 11:03:01 +01003337 dev_priv->gt_irq_mask = ~GT_PARITY_ERROR(dev_priv);
3338 gt_irqs |= GT_PARITY_ERROR(dev_priv);
Daniel Vetter0a9a8c92013-07-12 22:43:26 +02003339 }
3340
3341 gt_irqs |= GT_RENDER_USER_INTERRUPT;
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01003342 if (IS_GEN5(dev_priv)) {
Chris Wilsonf8973c22016-07-01 17:23:21 +01003343 gt_irqs |= ILK_BSD_USER_INTERRUPT;
Daniel Vetter0a9a8c92013-07-12 22:43:26 +02003344 } else {
3345 gt_irqs |= GT_BLT_USER_INTERRUPT | GT_BSD_USER_INTERRUPT;
3346 }
3347
Paulo Zanoni35079892014-04-01 15:37:15 -03003348 GEN5_IRQ_INIT(GT, dev_priv->gt_irq_mask, gt_irqs);
Daniel Vetter0a9a8c92013-07-12 22:43:26 +02003349
Tvrtko Ursulinb243f532016-11-16 08:55:38 +00003350 if (INTEL_GEN(dev_priv) >= 6) {
Imre Deak78e68d32014-12-15 18:59:27 +02003351 /*
3352 * RPS interrupts will get enabled/disabled on demand when RPS
3353 * itself is enabled/disabled.
3354 */
Akash Goelf4e9af42016-10-12 21:54:30 +05303355 if (HAS_VEBOX(dev_priv)) {
Daniel Vetter0a9a8c92013-07-12 22:43:26 +02003356 pm_irqs |= PM_VEBOX_USER_INTERRUPT;
Akash Goelf4e9af42016-10-12 21:54:30 +05303357 dev_priv->pm_ier |= PM_VEBOX_USER_INTERRUPT;
3358 }
Daniel Vetter0a9a8c92013-07-12 22:43:26 +02003359
Akash Goelf4e9af42016-10-12 21:54:30 +05303360 dev_priv->pm_imr = 0xffffffff;
3361 GEN5_IRQ_INIT(GEN6_PM, dev_priv->pm_imr, pm_irqs);
Daniel Vetter0a9a8c92013-07-12 22:43:26 +02003362 }
3363}
3364
Jesse Barnesf71d4af2011-06-28 13:00:41 -07003365static int ironlake_irq_postinstall(struct drm_device *dev)
Zhenyu Wang036a4a72009-06-08 14:40:19 +08003366{
Chris Wilsonfac5e232016-07-04 11:34:36 +01003367 struct drm_i915_private *dev_priv = to_i915(dev);
Paulo Zanoni8e76f8d2013-07-12 20:01:56 -03003368 u32 display_mask, extra_mask;
3369
Tvrtko Ursulinb243f532016-11-16 08:55:38 +00003370 if (INTEL_GEN(dev_priv) >= 7) {
Paulo Zanoni8e76f8d2013-07-12 20:01:56 -03003371 display_mask = (DE_MASTER_IRQ_CONTROL | DE_GSE_IVB |
3372 DE_PCH_EVENT_IVB | DE_PLANEC_FLIP_DONE_IVB |
3373 DE_PLANEB_FLIP_DONE_IVB |
Daniel Vetter5c673b62014-03-07 20:34:46 +01003374 DE_PLANEA_FLIP_DONE_IVB | DE_AUX_CHANNEL_A_IVB);
Paulo Zanoni8e76f8d2013-07-12 20:01:56 -03003375 extra_mask = (DE_PIPEC_VBLANK_IVB | DE_PIPEB_VBLANK_IVB |
Ville Syrjälä23bb4cb2015-08-27 23:56:04 +03003376 DE_PIPEA_VBLANK_IVB | DE_ERR_INT_IVB |
3377 DE_DP_A_HOTPLUG_IVB);
Paulo Zanoni8e76f8d2013-07-12 20:01:56 -03003378 } else {
3379 display_mask = (DE_MASTER_IRQ_CONTROL | DE_GSE | DE_PCH_EVENT |
3380 DE_PLANEA_FLIP_DONE | DE_PLANEB_FLIP_DONE |
Daniel Vetter5b3a8562013-10-16 22:55:48 +02003381 DE_AUX_CHANNEL_A |
Daniel Vetter5b3a8562013-10-16 22:55:48 +02003382 DE_PIPEB_CRC_DONE | DE_PIPEA_CRC_DONE |
3383 DE_POISON);
Ville Syrjäläe4ce95a2015-08-27 23:56:03 +03003384 extra_mask = (DE_PIPEA_VBLANK | DE_PIPEB_VBLANK | DE_PCU_EVENT |
3385 DE_PIPEB_FIFO_UNDERRUN | DE_PIPEA_FIFO_UNDERRUN |
3386 DE_DP_A_HOTPLUG);
Paulo Zanoni8e76f8d2013-07-12 20:01:56 -03003387 }
Zhenyu Wang036a4a72009-06-08 14:40:19 +08003388
Chris Wilson1ec14ad2010-12-04 11:30:53 +00003389 dev_priv->irq_mask = ~display_mask;
Zhenyu Wang036a4a72009-06-08 14:40:19 +08003390
Paulo Zanoni0c841212014-04-01 15:37:27 -03003391 I915_WRITE(HWSTAM, 0xeffe);
3392
Paulo Zanoni622364b2014-04-01 15:37:22 -03003393 ibx_irq_pre_postinstall(dev);
3394
Paulo Zanoni35079892014-04-01 15:37:15 -03003395 GEN5_IRQ_INIT(DE, dev_priv->irq_mask, display_mask | extra_mask);
Zhenyu Wang036a4a72009-06-08 14:40:19 +08003396
Daniel Vetter0a9a8c92013-07-12 22:43:26 +02003397 gen5_gt_irq_postinstall(dev);
Zhenyu Wang036a4a72009-06-08 14:40:19 +08003398
Imre Deak1a56b1a2017-01-27 11:39:21 +02003399 ilk_hpd_detection_setup(dev_priv);
3400
Paulo Zanonid46da432013-02-08 17:35:15 -02003401 ibx_irq_postinstall(dev);
Keith Packard7fe0b972011-09-19 13:31:02 -07003402
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +01003403 if (IS_IRONLAKE_M(dev_priv)) {
Daniel Vetter6005ce42013-06-27 13:44:59 +02003404 /* Enable PCU event interrupts
3405 *
3406 * spinlocking not required here for correctness since interrupt
Daniel Vetter4bc9d432013-06-27 13:44:58 +02003407 * setup is guaranteed to run in single-threaded context. But we
3408 * need it to make the assert_spin_locked happy. */
Daniel Vetterd6207432014-09-15 14:55:27 +02003409 spin_lock_irq(&dev_priv->irq_lock);
Ville Syrjäläfbdedaea2015-11-23 18:06:16 +02003410 ilk_enable_display_irq(dev_priv, DE_PCU_EVENT);
Daniel Vetterd6207432014-09-15 14:55:27 +02003411 spin_unlock_irq(&dev_priv->irq_lock);
Jesse Barnesf97108d2010-01-29 11:27:07 -08003412 }
3413
Zhenyu Wang036a4a72009-06-08 14:40:19 +08003414 return 0;
3415}
3416
Imre Deakf8b79e52014-03-04 19:23:07 +02003417void valleyview_enable_display_irqs(struct drm_i915_private *dev_priv)
3418{
Chris Wilson67520412017-03-02 13:28:01 +00003419 lockdep_assert_held(&dev_priv->irq_lock);
Imre Deakf8b79e52014-03-04 19:23:07 +02003420
3421 if (dev_priv->display_irqs_enabled)
3422 return;
3423
3424 dev_priv->display_irqs_enabled = true;
3425
Ville Syrjäläd6c69802016-04-11 16:56:27 +03003426 if (intel_irqs_enabled(dev_priv)) {
3427 vlv_display_irq_reset(dev_priv);
Ville Syrjäläad22d102016-04-12 18:56:14 +03003428 vlv_display_irq_postinstall(dev_priv);
Ville Syrjäläd6c69802016-04-11 16:56:27 +03003429 }
Imre Deakf8b79e52014-03-04 19:23:07 +02003430}
3431
3432void valleyview_disable_display_irqs(struct drm_i915_private *dev_priv)
3433{
Chris Wilson67520412017-03-02 13:28:01 +00003434 lockdep_assert_held(&dev_priv->irq_lock);
Imre Deakf8b79e52014-03-04 19:23:07 +02003435
3436 if (!dev_priv->display_irqs_enabled)
3437 return;
3438
3439 dev_priv->display_irqs_enabled = false;
3440
Imre Deak950eaba2014-09-08 15:21:09 +03003441 if (intel_irqs_enabled(dev_priv))
Ville Syrjäläad22d102016-04-12 18:56:14 +03003442 vlv_display_irq_reset(dev_priv);
Imre Deakf8b79e52014-03-04 19:23:07 +02003443}
3444
Ville Syrjälä0e6c9a92014-10-30 19:43:00 +02003445
3446static int valleyview_irq_postinstall(struct drm_device *dev)
3447{
Chris Wilsonfac5e232016-07-04 11:34:36 +01003448 struct drm_i915_private *dev_priv = to_i915(dev);
Ville Syrjälä0e6c9a92014-10-30 19:43:00 +02003449
Daniel Vetter0a9a8c92013-07-12 22:43:26 +02003450 gen5_gt_irq_postinstall(dev);
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003451
Ville Syrjäläad22d102016-04-12 18:56:14 +03003452 spin_lock_irq(&dev_priv->irq_lock);
Ville Syrjälä99182712016-04-11 16:56:25 +03003453 if (dev_priv->display_irqs_enabled)
3454 vlv_display_irq_postinstall(dev_priv);
Ville Syrjäläad22d102016-04-12 18:56:14 +03003455 spin_unlock_irq(&dev_priv->irq_lock);
3456
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003457 I915_WRITE(VLV_MASTER_IER, MASTER_INTERRUPT_ENABLE);
Ville Syrjälä34c7b8a2016-04-13 21:19:48 +03003458 POSTING_READ(VLV_MASTER_IER);
Daniel Vetter20afbda2012-12-11 14:05:07 +01003459
3460 return 0;
3461}
3462
Ben Widawskyabd58f02013-11-02 21:07:09 -07003463static void gen8_gt_irq_postinstall(struct drm_i915_private *dev_priv)
3464{
Ben Widawskyabd58f02013-11-02 21:07:09 -07003465 /* These are interrupts we'll toggle with the ring mask register */
3466 uint32_t gt_interrupts[] = {
3467 GT_RENDER_USER_INTERRUPT << GEN8_RCS_IRQ_SHIFT |
Oscar Mateo73d477f2014-07-24 17:04:31 +01003468 GT_CONTEXT_SWITCH_INTERRUPT << GEN8_RCS_IRQ_SHIFT |
Oscar Mateo73d477f2014-07-24 17:04:31 +01003469 GT_RENDER_USER_INTERRUPT << GEN8_BCS_IRQ_SHIFT |
3470 GT_CONTEXT_SWITCH_INTERRUPT << GEN8_BCS_IRQ_SHIFT,
Ben Widawskyabd58f02013-11-02 21:07:09 -07003471 GT_RENDER_USER_INTERRUPT << GEN8_VCS1_IRQ_SHIFT |
Oscar Mateo73d477f2014-07-24 17:04:31 +01003472 GT_CONTEXT_SWITCH_INTERRUPT << GEN8_VCS1_IRQ_SHIFT |
3473 GT_RENDER_USER_INTERRUPT << GEN8_VCS2_IRQ_SHIFT |
3474 GT_CONTEXT_SWITCH_INTERRUPT << GEN8_VCS2_IRQ_SHIFT,
Ben Widawskyabd58f02013-11-02 21:07:09 -07003475 0,
Oscar Mateo73d477f2014-07-24 17:04:31 +01003476 GT_RENDER_USER_INTERRUPT << GEN8_VECS_IRQ_SHIFT |
3477 GT_CONTEXT_SWITCH_INTERRUPT << GEN8_VECS_IRQ_SHIFT
Ben Widawskyabd58f02013-11-02 21:07:09 -07003478 };
3479
Tvrtko Ursulin98735732016-04-19 16:46:08 +01003480 if (HAS_L3_DPF(dev_priv))
3481 gt_interrupts[0] |= GT_RENDER_L3_PARITY_ERROR_INTERRUPT;
3482
Akash Goelf4e9af42016-10-12 21:54:30 +05303483 dev_priv->pm_ier = 0x0;
3484 dev_priv->pm_imr = ~dev_priv->pm_ier;
Deepak S9a2d2d82014-08-22 08:32:40 +05303485 GEN8_IRQ_INIT_NDX(GT, 0, ~gt_interrupts[0], gt_interrupts[0]);
3486 GEN8_IRQ_INIT_NDX(GT, 1, ~gt_interrupts[1], gt_interrupts[1]);
Imre Deak78e68d32014-12-15 18:59:27 +02003487 /*
3488 * RPS interrupts will get enabled/disabled on demand when RPS itself
Sagar Arun Kamble26705e22016-10-12 21:54:31 +05303489 * is enabled/disabled. Same wil be the case for GuC interrupts.
Imre Deak78e68d32014-12-15 18:59:27 +02003490 */
Akash Goelf4e9af42016-10-12 21:54:30 +05303491 GEN8_IRQ_INIT_NDX(GT, 2, dev_priv->pm_imr, dev_priv->pm_ier);
Deepak S9a2d2d82014-08-22 08:32:40 +05303492 GEN8_IRQ_INIT_NDX(GT, 3, ~gt_interrupts[3], gt_interrupts[3]);
Ben Widawskyabd58f02013-11-02 21:07:09 -07003493}
3494
3495static void gen8_de_irq_postinstall(struct drm_i915_private *dev_priv)
3496{
Damien Lespiau770de832014-03-20 20:45:01 +00003497 uint32_t de_pipe_masked = GEN8_PIPE_CDCLK_CRC_DONE;
3498 uint32_t de_pipe_enables;
Ville Syrjälä3a3b3c72015-08-27 23:56:06 +03003499 u32 de_port_masked = GEN8_AUX_CHANNEL_A;
3500 u32 de_port_enables;
Ville Syrjälä11825b02016-05-19 12:14:43 +03003501 u32 de_misc_masked = GEN8_DE_MISC_GSE;
Ville Syrjälä3a3b3c72015-08-27 23:56:06 +03003502 enum pipe pipe;
Damien Lespiau770de832014-03-20 20:45:01 +00003503
Rodrigo Vivib4834a52015-09-02 15:19:24 -07003504 if (INTEL_INFO(dev_priv)->gen >= 9) {
Damien Lespiau770de832014-03-20 20:45:01 +00003505 de_pipe_masked |= GEN9_PIPE_PLANE1_FLIP_DONE |
3506 GEN9_DE_PIPE_IRQ_FAULT_ERRORS;
Ville Syrjälä3a3b3c72015-08-27 23:56:06 +03003507 de_port_masked |= GEN9_AUX_CHANNEL_B | GEN9_AUX_CHANNEL_C |
3508 GEN9_AUX_CHANNEL_D;
Ander Conselvan de Oliveiracc3f90f2016-12-02 10:23:49 +02003509 if (IS_GEN9_LP(dev_priv))
Ville Syrjälä3a3b3c72015-08-27 23:56:06 +03003510 de_port_masked |= BXT_DE_PORT_GMBUS;
3511 } else {
Damien Lespiau770de832014-03-20 20:45:01 +00003512 de_pipe_masked |= GEN8_PIPE_PRIMARY_FLIP_DONE |
3513 GEN8_DE_PIPE_IRQ_FAULT_ERRORS;
Ville Syrjälä3a3b3c72015-08-27 23:56:06 +03003514 }
Damien Lespiau770de832014-03-20 20:45:01 +00003515
3516 de_pipe_enables = de_pipe_masked | GEN8_PIPE_VBLANK |
3517 GEN8_PIPE_FIFO_UNDERRUN;
3518
Ville Syrjälä3a3b3c72015-08-27 23:56:06 +03003519 de_port_enables = de_port_masked;
Ander Conselvan de Oliveiracc3f90f2016-12-02 10:23:49 +02003520 if (IS_GEN9_LP(dev_priv))
Ville Syrjäläa52bb152015-08-27 23:56:11 +03003521 de_port_enables |= BXT_DE_PORT_HOTPLUG_MASK;
3522 else if (IS_BROADWELL(dev_priv))
Ville Syrjälä3a3b3c72015-08-27 23:56:06 +03003523 de_port_enables |= GEN8_PORT_DP_A_HOTPLUG;
3524
Daniel Vetter13b3a0a2013-11-07 15:31:52 +01003525 dev_priv->de_irq_mask[PIPE_A] = ~de_pipe_masked;
3526 dev_priv->de_irq_mask[PIPE_B] = ~de_pipe_masked;
3527 dev_priv->de_irq_mask[PIPE_C] = ~de_pipe_masked;
Ben Widawskyabd58f02013-11-02 21:07:09 -07003528
Damien Lespiau055e3932014-08-18 13:49:10 +01003529 for_each_pipe(dev_priv, pipe)
Daniel Vetterf458ebb2014-09-30 10:56:39 +02003530 if (intel_display_power_is_enabled(dev_priv,
Paulo Zanoni813bde42014-07-04 11:50:29 -03003531 POWER_DOMAIN_PIPE(pipe)))
3532 GEN8_IRQ_INIT_NDX(DE_PIPE, pipe,
3533 dev_priv->de_irq_mask[pipe],
3534 de_pipe_enables);
Ben Widawskyabd58f02013-11-02 21:07:09 -07003535
Ville Syrjälä3a3b3c72015-08-27 23:56:06 +03003536 GEN5_IRQ_INIT(GEN8_DE_PORT_, ~de_port_masked, de_port_enables);
Ville Syrjälä11825b02016-05-19 12:14:43 +03003537 GEN5_IRQ_INIT(GEN8_DE_MISC_, ~de_misc_masked, de_misc_masked);
Imre Deak2a57d9c2017-01-27 11:39:18 +02003538
3539 if (IS_GEN9_LP(dev_priv))
3540 bxt_hpd_detection_setup(dev_priv);
Imre Deak1a56b1a2017-01-27 11:39:21 +02003541 else if (IS_BROADWELL(dev_priv))
3542 ilk_hpd_detection_setup(dev_priv);
Ben Widawskyabd58f02013-11-02 21:07:09 -07003543}
3544
3545static int gen8_irq_postinstall(struct drm_device *dev)
3546{
Chris Wilsonfac5e232016-07-04 11:34:36 +01003547 struct drm_i915_private *dev_priv = to_i915(dev);
Ben Widawskyabd58f02013-11-02 21:07:09 -07003548
Tvrtko Ursulin6e266952016-10-13 11:02:53 +01003549 if (HAS_PCH_SPLIT(dev_priv))
Shashank Sharma266ea3d2014-08-22 17:40:42 +05303550 ibx_irq_pre_postinstall(dev);
Paulo Zanoni622364b2014-04-01 15:37:22 -03003551
Ben Widawskyabd58f02013-11-02 21:07:09 -07003552 gen8_gt_irq_postinstall(dev_priv);
3553 gen8_de_irq_postinstall(dev_priv);
3554
Tvrtko Ursulin6e266952016-10-13 11:02:53 +01003555 if (HAS_PCH_SPLIT(dev_priv))
Shashank Sharma266ea3d2014-08-22 17:40:42 +05303556 ibx_irq_postinstall(dev);
Ben Widawskyabd58f02013-11-02 21:07:09 -07003557
Ville Syrjäläe5328c42016-04-13 21:19:47 +03003558 I915_WRITE(GEN8_MASTER_IRQ, GEN8_MASTER_IRQ_CONTROL);
Ben Widawskyabd58f02013-11-02 21:07:09 -07003559 POSTING_READ(GEN8_MASTER_IRQ);
3560
3561 return 0;
3562}
3563
Ville Syrjälä43f328d2014-04-09 20:40:52 +03003564static int cherryview_irq_postinstall(struct drm_device *dev)
3565{
Chris Wilsonfac5e232016-07-04 11:34:36 +01003566 struct drm_i915_private *dev_priv = to_i915(dev);
Ville Syrjälä43f328d2014-04-09 20:40:52 +03003567
Ville Syrjälä43f328d2014-04-09 20:40:52 +03003568 gen8_gt_irq_postinstall(dev_priv);
3569
Ville Syrjäläad22d102016-04-12 18:56:14 +03003570 spin_lock_irq(&dev_priv->irq_lock);
Ville Syrjälä99182712016-04-11 16:56:25 +03003571 if (dev_priv->display_irqs_enabled)
3572 vlv_display_irq_postinstall(dev_priv);
Ville Syrjäläad22d102016-04-12 18:56:14 +03003573 spin_unlock_irq(&dev_priv->irq_lock);
3574
Ville Syrjäläe5328c42016-04-13 21:19:47 +03003575 I915_WRITE(GEN8_MASTER_IRQ, GEN8_MASTER_IRQ_CONTROL);
Ville Syrjälä43f328d2014-04-09 20:40:52 +03003576 POSTING_READ(GEN8_MASTER_IRQ);
3577
3578 return 0;
3579}
3580
Ben Widawskyabd58f02013-11-02 21:07:09 -07003581static void gen8_irq_uninstall(struct drm_device *dev)
3582{
Chris Wilsonfac5e232016-07-04 11:34:36 +01003583 struct drm_i915_private *dev_priv = to_i915(dev);
Ben Widawskyabd58f02013-11-02 21:07:09 -07003584
3585 if (!dev_priv)
3586 return;
3587
Paulo Zanoni823f6b32014-04-01 15:37:26 -03003588 gen8_irq_reset(dev);
Ben Widawskyabd58f02013-11-02 21:07:09 -07003589}
3590
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003591static void valleyview_irq_uninstall(struct drm_device *dev)
3592{
Chris Wilsonfac5e232016-07-04 11:34:36 +01003593 struct drm_i915_private *dev_priv = to_i915(dev);
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003594
3595 if (!dev_priv)
3596 return;
3597
Imre Deak843d0e72014-04-14 20:24:23 +03003598 I915_WRITE(VLV_MASTER_IER, 0);
Ville Syrjälä34c7b8a2016-04-13 21:19:48 +03003599 POSTING_READ(VLV_MASTER_IER);
Imre Deak843d0e72014-04-14 20:24:23 +03003600
Tvrtko Ursulinb243f532016-11-16 08:55:38 +00003601 gen5_gt_irq_reset(dev_priv);
Ville Syrjälä893fce82014-10-30 19:42:56 +02003602
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003603 I915_WRITE(HWSTAM, 0xffffffff);
Imre Deakf8b79e52014-03-04 19:23:07 +02003604
Ville Syrjäläad22d102016-04-12 18:56:14 +03003605 spin_lock_irq(&dev_priv->irq_lock);
Ville Syrjälä99182712016-04-11 16:56:25 +03003606 if (dev_priv->display_irqs_enabled)
3607 vlv_display_irq_reset(dev_priv);
Ville Syrjäläad22d102016-04-12 18:56:14 +03003608 spin_unlock_irq(&dev_priv->irq_lock);
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003609}
3610
Ville Syrjälä43f328d2014-04-09 20:40:52 +03003611static void cherryview_irq_uninstall(struct drm_device *dev)
3612{
Chris Wilsonfac5e232016-07-04 11:34:36 +01003613 struct drm_i915_private *dev_priv = to_i915(dev);
Ville Syrjälä43f328d2014-04-09 20:40:52 +03003614
3615 if (!dev_priv)
3616 return;
3617
3618 I915_WRITE(GEN8_MASTER_IRQ, 0);
3619 POSTING_READ(GEN8_MASTER_IRQ);
3620
Ville Syrjäläa2c30fb2014-10-30 19:42:52 +02003621 gen8_gt_irq_reset(dev_priv);
Ville Syrjälä43f328d2014-04-09 20:40:52 +03003622
Ville Syrjäläa2c30fb2014-10-30 19:42:52 +02003623 GEN5_IRQ_RESET(GEN8_PCU_);
Ville Syrjälä43f328d2014-04-09 20:40:52 +03003624
Ville Syrjäläad22d102016-04-12 18:56:14 +03003625 spin_lock_irq(&dev_priv->irq_lock);
Ville Syrjälä99182712016-04-11 16:56:25 +03003626 if (dev_priv->display_irqs_enabled)
3627 vlv_display_irq_reset(dev_priv);
Ville Syrjäläad22d102016-04-12 18:56:14 +03003628 spin_unlock_irq(&dev_priv->irq_lock);
Ville Syrjälä43f328d2014-04-09 20:40:52 +03003629}
3630
Jesse Barnesf71d4af2011-06-28 13:00:41 -07003631static void ironlake_irq_uninstall(struct drm_device *dev)
Zhenyu Wang036a4a72009-06-08 14:40:19 +08003632{
Chris Wilsonfac5e232016-07-04 11:34:36 +01003633 struct drm_i915_private *dev_priv = to_i915(dev);
Jesse Barnes46979952011-04-07 13:53:55 -07003634
3635 if (!dev_priv)
3636 return;
3637
Paulo Zanonibe30b292014-04-01 15:37:25 -03003638 ironlake_irq_reset(dev);
Zhenyu Wang036a4a72009-06-08 14:40:19 +08003639}
3640
Chris Wilsonc2798b12012-04-22 21:13:57 +01003641static void i8xx_irq_preinstall(struct drm_device * dev)
3642{
Chris Wilsonfac5e232016-07-04 11:34:36 +01003643 struct drm_i915_private *dev_priv = to_i915(dev);
Chris Wilsonc2798b12012-04-22 21:13:57 +01003644 int pipe;
3645
Damien Lespiau055e3932014-08-18 13:49:10 +01003646 for_each_pipe(dev_priv, pipe)
Chris Wilsonc2798b12012-04-22 21:13:57 +01003647 I915_WRITE(PIPESTAT(pipe), 0);
3648 I915_WRITE16(IMR, 0xffff);
3649 I915_WRITE16(IER, 0x0);
3650 POSTING_READ16(IER);
3651}
3652
3653static int i8xx_irq_postinstall(struct drm_device *dev)
3654{
Chris Wilsonfac5e232016-07-04 11:34:36 +01003655 struct drm_i915_private *dev_priv = to_i915(dev);
Chris Wilsonc2798b12012-04-22 21:13:57 +01003656
Chris Wilsonc2798b12012-04-22 21:13:57 +01003657 I915_WRITE16(EMR,
3658 ~(I915_ERROR_PAGE_TABLE | I915_ERROR_MEMORY_REFRESH));
3659
3660 /* Unmask the interrupts that we always want on. */
3661 dev_priv->irq_mask =
3662 ~(I915_DISPLAY_PIPE_A_EVENT_INTERRUPT |
3663 I915_DISPLAY_PIPE_B_EVENT_INTERRUPT |
3664 I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT |
Daniel Vetter37ef01a2015-04-01 13:43:46 +02003665 I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT);
Chris Wilsonc2798b12012-04-22 21:13:57 +01003666 I915_WRITE16(IMR, dev_priv->irq_mask);
3667
3668 I915_WRITE16(IER,
3669 I915_DISPLAY_PIPE_A_EVENT_INTERRUPT |
3670 I915_DISPLAY_PIPE_B_EVENT_INTERRUPT |
Chris Wilsonc2798b12012-04-22 21:13:57 +01003671 I915_USER_INTERRUPT);
3672 POSTING_READ16(IER);
3673
Daniel Vetter379ef822013-10-16 22:55:56 +02003674 /* Interrupt setup is already guaranteed to be single-threaded, this is
3675 * just to make the assert_spin_locked check happy. */
Daniel Vetterd6207432014-09-15 14:55:27 +02003676 spin_lock_irq(&dev_priv->irq_lock);
Imre Deak755e9012014-02-10 18:42:47 +02003677 i915_enable_pipestat(dev_priv, PIPE_A, PIPE_CRC_DONE_INTERRUPT_STATUS);
3678 i915_enable_pipestat(dev_priv, PIPE_B, PIPE_CRC_DONE_INTERRUPT_STATUS);
Daniel Vetterd6207432014-09-15 14:55:27 +02003679 spin_unlock_irq(&dev_priv->irq_lock);
Daniel Vetter379ef822013-10-16 22:55:56 +02003680
Chris Wilsonc2798b12012-04-22 21:13:57 +01003681 return 0;
3682}
3683
Daniel Vetter5a21b662016-05-24 17:13:53 +02003684/*
3685 * Returns true when a page flip has completed.
3686 */
3687static bool i8xx_handle_vblank(struct drm_i915_private *dev_priv,
3688 int plane, int pipe, u32 iir)
3689{
3690 u16 flip_pending = DISPLAY_PLANE_FLIP_PENDING(plane);
3691
3692 if (!intel_pipe_handle_vblank(dev_priv, pipe))
3693 return false;
3694
3695 if ((iir & flip_pending) == 0)
3696 goto check_page_flip;
3697
3698 /* We detect FlipDone by looking for the change in PendingFlip from '1'
3699 * to '0' on the following vblank, i.e. IIR has the Pendingflip
3700 * asserted following the MI_DISPLAY_FLIP, but ISR is deasserted, hence
3701 * the flip is completed (no longer pending). Since this doesn't raise
3702 * an interrupt per se, we watch for the change at vblank.
3703 */
3704 if (I915_READ16(ISR) & flip_pending)
3705 goto check_page_flip;
3706
3707 intel_finish_page_flip_cs(dev_priv, pipe);
3708 return true;
3709
3710check_page_flip:
3711 intel_check_page_flip(dev_priv, pipe);
3712 return false;
3713}
3714
Daniel Vetterff1f5252012-10-02 15:10:55 +02003715static irqreturn_t i8xx_irq_handler(int irq, void *arg)
Chris Wilsonc2798b12012-04-22 21:13:57 +01003716{
Daniel Vetter45a83f82014-05-12 19:17:55 +02003717 struct drm_device *dev = arg;
Chris Wilsonfac5e232016-07-04 11:34:36 +01003718 struct drm_i915_private *dev_priv = to_i915(dev);
Chris Wilsonc2798b12012-04-22 21:13:57 +01003719 u16 iir, new_iir;
3720 u32 pipe_stats[2];
Chris Wilsonc2798b12012-04-22 21:13:57 +01003721 int pipe;
3722 u16 flip_mask =
3723 I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT |
3724 I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT;
Imre Deak1f814da2015-12-16 02:52:19 +02003725 irqreturn_t ret;
Chris Wilsonc2798b12012-04-22 21:13:57 +01003726
Imre Deak2dd2a882015-02-24 11:14:30 +02003727 if (!intel_irqs_enabled(dev_priv))
3728 return IRQ_NONE;
3729
Imre Deak1f814da2015-12-16 02:52:19 +02003730 /* IRQs are synced during runtime_suspend, we don't require a wakeref */
3731 disable_rpm_wakeref_asserts(dev_priv);
3732
3733 ret = IRQ_NONE;
Chris Wilsonc2798b12012-04-22 21:13:57 +01003734 iir = I915_READ16(IIR);
3735 if (iir == 0)
Imre Deak1f814da2015-12-16 02:52:19 +02003736 goto out;
Chris Wilsonc2798b12012-04-22 21:13:57 +01003737
3738 while (iir & ~flip_mask) {
3739 /* Can't rely on pipestat interrupt bit in iir as it might
3740 * have been cleared after the pipestat interrupt was received.
3741 * It doesn't set the bit in iir again, but it still produces
3742 * interrupts (for non-MSI).
3743 */
Daniel Vetter222c7f52014-09-15 14:55:28 +02003744 spin_lock(&dev_priv->irq_lock);
Chris Wilsonc2798b12012-04-22 21:13:57 +01003745 if (iir & I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT)
Daniel Vetteraaecdf62014-11-04 15:52:22 +01003746 DRM_DEBUG("Command parser error, iir 0x%08x\n", iir);
Chris Wilsonc2798b12012-04-22 21:13:57 +01003747
Damien Lespiau055e3932014-08-18 13:49:10 +01003748 for_each_pipe(dev_priv, pipe) {
Ville Syrjäläf0f59a02015-11-18 15:33:26 +02003749 i915_reg_t reg = PIPESTAT(pipe);
Chris Wilsonc2798b12012-04-22 21:13:57 +01003750 pipe_stats[pipe] = I915_READ(reg);
3751
3752 /*
3753 * Clear the PIPE*STAT regs before the IIR
3754 */
Ville Syrjälä2d9d2b02014-01-17 11:44:31 +02003755 if (pipe_stats[pipe] & 0x8000ffff)
Chris Wilsonc2798b12012-04-22 21:13:57 +01003756 I915_WRITE(reg, pipe_stats[pipe]);
Chris Wilsonc2798b12012-04-22 21:13:57 +01003757 }
Daniel Vetter222c7f52014-09-15 14:55:28 +02003758 spin_unlock(&dev_priv->irq_lock);
Chris Wilsonc2798b12012-04-22 21:13:57 +01003759
3760 I915_WRITE16(IIR, iir & ~flip_mask);
3761 new_iir = I915_READ16(IIR); /* Flush posted writes */
3762
Chris Wilsonc2798b12012-04-22 21:13:57 +01003763 if (iir & I915_USER_INTERRUPT)
Akash Goel3b3f1652016-10-13 22:44:48 +05303764 notify_ring(dev_priv->engine[RCS]);
Chris Wilsonc2798b12012-04-22 21:13:57 +01003765
Damien Lespiau055e3932014-08-18 13:49:10 +01003766 for_each_pipe(dev_priv, pipe) {
Daniel Vetter5a21b662016-05-24 17:13:53 +02003767 int plane = pipe;
3768 if (HAS_FBC(dev_priv))
3769 plane = !plane;
3770
3771 if (pipe_stats[pipe] & PIPE_VBLANK_INTERRUPT_STATUS &&
3772 i8xx_handle_vblank(dev_priv, plane, pipe, iir))
3773 flip_mask &= ~DISPLAY_PLANE_FLIP_PENDING(plane);
Chris Wilsonc2798b12012-04-22 21:13:57 +01003774
Daniel Vetter4356d582013-10-16 22:55:55 +02003775 if (pipe_stats[pipe] & PIPE_CRC_DONE_INTERRUPT_STATUS)
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01003776 i9xx_pipe_crc_irq_handler(dev_priv, pipe);
Ville Syrjälä2d9d2b02014-01-17 11:44:31 +02003777
Daniel Vetter1f7247c2014-09-30 10:56:48 +02003778 if (pipe_stats[pipe] & PIPE_FIFO_UNDERRUN_STATUS)
3779 intel_cpu_fifo_underrun_irq_handler(dev_priv,
3780 pipe);
Daniel Vetter4356d582013-10-16 22:55:55 +02003781 }
Chris Wilsonc2798b12012-04-22 21:13:57 +01003782
3783 iir = new_iir;
3784 }
Imre Deak1f814da2015-12-16 02:52:19 +02003785 ret = IRQ_HANDLED;
Chris Wilsonc2798b12012-04-22 21:13:57 +01003786
Imre Deak1f814da2015-12-16 02:52:19 +02003787out:
3788 enable_rpm_wakeref_asserts(dev_priv);
3789
3790 return ret;
Chris Wilsonc2798b12012-04-22 21:13:57 +01003791}
3792
3793static void i8xx_irq_uninstall(struct drm_device * dev)
3794{
Chris Wilsonfac5e232016-07-04 11:34:36 +01003795 struct drm_i915_private *dev_priv = to_i915(dev);
Chris Wilsonc2798b12012-04-22 21:13:57 +01003796 int pipe;
3797
Damien Lespiau055e3932014-08-18 13:49:10 +01003798 for_each_pipe(dev_priv, pipe) {
Chris Wilsonc2798b12012-04-22 21:13:57 +01003799 /* Clear enable bits; then clear status bits */
3800 I915_WRITE(PIPESTAT(pipe), 0);
3801 I915_WRITE(PIPESTAT(pipe), I915_READ(PIPESTAT(pipe)));
3802 }
3803 I915_WRITE16(IMR, 0xffff);
3804 I915_WRITE16(IER, 0x0);
3805 I915_WRITE16(IIR, I915_READ16(IIR));
3806}
3807
Chris Wilsona266c7d2012-04-24 22:59:44 +01003808static void i915_irq_preinstall(struct drm_device * dev)
3809{
Chris Wilsonfac5e232016-07-04 11:34:36 +01003810 struct drm_i915_private *dev_priv = to_i915(dev);
Chris Wilsona266c7d2012-04-24 22:59:44 +01003811 int pipe;
3812
Tvrtko Ursulin56b857a2016-11-07 09:29:20 +00003813 if (I915_HAS_HOTPLUG(dev_priv)) {
Egbert Eich0706f172015-09-23 16:15:27 +02003814 i915_hotplug_interrupt_update(dev_priv, 0xffffffff, 0);
Chris Wilsona266c7d2012-04-24 22:59:44 +01003815 I915_WRITE(PORT_HOTPLUG_STAT, I915_READ(PORT_HOTPLUG_STAT));
3816 }
3817
Chris Wilson00d98eb2012-04-24 22:59:48 +01003818 I915_WRITE16(HWSTAM, 0xeffe);
Damien Lespiau055e3932014-08-18 13:49:10 +01003819 for_each_pipe(dev_priv, pipe)
Chris Wilsona266c7d2012-04-24 22:59:44 +01003820 I915_WRITE(PIPESTAT(pipe), 0);
3821 I915_WRITE(IMR, 0xffffffff);
3822 I915_WRITE(IER, 0x0);
3823 POSTING_READ(IER);
3824}
3825
3826static int i915_irq_postinstall(struct drm_device *dev)
3827{
Chris Wilsonfac5e232016-07-04 11:34:36 +01003828 struct drm_i915_private *dev_priv = to_i915(dev);
Chris Wilson38bde182012-04-24 22:59:50 +01003829 u32 enable_mask;
Chris Wilsona266c7d2012-04-24 22:59:44 +01003830
Chris Wilson38bde182012-04-24 22:59:50 +01003831 I915_WRITE(EMR, ~(I915_ERROR_PAGE_TABLE | I915_ERROR_MEMORY_REFRESH));
3832
3833 /* Unmask the interrupts that we always want on. */
3834 dev_priv->irq_mask =
3835 ~(I915_ASLE_INTERRUPT |
3836 I915_DISPLAY_PIPE_A_EVENT_INTERRUPT |
3837 I915_DISPLAY_PIPE_B_EVENT_INTERRUPT |
3838 I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT |
Daniel Vetter37ef01a2015-04-01 13:43:46 +02003839 I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT);
Chris Wilson38bde182012-04-24 22:59:50 +01003840
3841 enable_mask =
3842 I915_ASLE_INTERRUPT |
3843 I915_DISPLAY_PIPE_A_EVENT_INTERRUPT |
3844 I915_DISPLAY_PIPE_B_EVENT_INTERRUPT |
Chris Wilson38bde182012-04-24 22:59:50 +01003845 I915_USER_INTERRUPT;
3846
Tvrtko Ursulin56b857a2016-11-07 09:29:20 +00003847 if (I915_HAS_HOTPLUG(dev_priv)) {
Egbert Eich0706f172015-09-23 16:15:27 +02003848 i915_hotplug_interrupt_update(dev_priv, 0xffffffff, 0);
Daniel Vetter20afbda2012-12-11 14:05:07 +01003849 POSTING_READ(PORT_HOTPLUG_EN);
3850
Chris Wilsona266c7d2012-04-24 22:59:44 +01003851 /* Enable in IER... */
3852 enable_mask |= I915_DISPLAY_PORT_INTERRUPT;
3853 /* and unmask in IMR */
3854 dev_priv->irq_mask &= ~I915_DISPLAY_PORT_INTERRUPT;
3855 }
3856
Chris Wilsona266c7d2012-04-24 22:59:44 +01003857 I915_WRITE(IMR, dev_priv->irq_mask);
3858 I915_WRITE(IER, enable_mask);
3859 POSTING_READ(IER);
3860
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01003861 i915_enable_asle_pipestat(dev_priv);
Daniel Vetter20afbda2012-12-11 14:05:07 +01003862
Daniel Vetter379ef822013-10-16 22:55:56 +02003863 /* Interrupt setup is already guaranteed to be single-threaded, this is
3864 * just to make the assert_spin_locked check happy. */
Daniel Vetterd6207432014-09-15 14:55:27 +02003865 spin_lock_irq(&dev_priv->irq_lock);
Imre Deak755e9012014-02-10 18:42:47 +02003866 i915_enable_pipestat(dev_priv, PIPE_A, PIPE_CRC_DONE_INTERRUPT_STATUS);
3867 i915_enable_pipestat(dev_priv, PIPE_B, PIPE_CRC_DONE_INTERRUPT_STATUS);
Daniel Vetterd6207432014-09-15 14:55:27 +02003868 spin_unlock_irq(&dev_priv->irq_lock);
Daniel Vetter379ef822013-10-16 22:55:56 +02003869
Daniel Vetter20afbda2012-12-11 14:05:07 +01003870 return 0;
3871}
3872
Daniel Vetter5a21b662016-05-24 17:13:53 +02003873/*
3874 * Returns true when a page flip has completed.
3875 */
3876static bool i915_handle_vblank(struct drm_i915_private *dev_priv,
3877 int plane, int pipe, u32 iir)
3878{
3879 u32 flip_pending = DISPLAY_PLANE_FLIP_PENDING(plane);
3880
3881 if (!intel_pipe_handle_vblank(dev_priv, pipe))
3882 return false;
3883
3884 if ((iir & flip_pending) == 0)
3885 goto check_page_flip;
3886
3887 /* We detect FlipDone by looking for the change in PendingFlip from '1'
3888 * to '0' on the following vblank, i.e. IIR has the Pendingflip
3889 * asserted following the MI_DISPLAY_FLIP, but ISR is deasserted, hence
3890 * the flip is completed (no longer pending). Since this doesn't raise
3891 * an interrupt per se, we watch for the change at vblank.
3892 */
3893 if (I915_READ(ISR) & flip_pending)
3894 goto check_page_flip;
3895
3896 intel_finish_page_flip_cs(dev_priv, pipe);
3897 return true;
3898
3899check_page_flip:
3900 intel_check_page_flip(dev_priv, pipe);
3901 return false;
3902}
3903
Daniel Vetterff1f5252012-10-02 15:10:55 +02003904static irqreturn_t i915_irq_handler(int irq, void *arg)
Chris Wilsona266c7d2012-04-24 22:59:44 +01003905{
Daniel Vetter45a83f82014-05-12 19:17:55 +02003906 struct drm_device *dev = arg;
Chris Wilsonfac5e232016-07-04 11:34:36 +01003907 struct drm_i915_private *dev_priv = to_i915(dev);
Chris Wilson8291ee92012-04-24 22:59:47 +01003908 u32 iir, new_iir, pipe_stats[I915_MAX_PIPES];
Chris Wilson38bde182012-04-24 22:59:50 +01003909 u32 flip_mask =
3910 I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT |
3911 I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT;
Chris Wilson38bde182012-04-24 22:59:50 +01003912 int pipe, ret = IRQ_NONE;
Chris Wilsona266c7d2012-04-24 22:59:44 +01003913
Imre Deak2dd2a882015-02-24 11:14:30 +02003914 if (!intel_irqs_enabled(dev_priv))
3915 return IRQ_NONE;
3916
Imre Deak1f814da2015-12-16 02:52:19 +02003917 /* IRQs are synced during runtime_suspend, we don't require a wakeref */
3918 disable_rpm_wakeref_asserts(dev_priv);
3919
Chris Wilsona266c7d2012-04-24 22:59:44 +01003920 iir = I915_READ(IIR);
Chris Wilson38bde182012-04-24 22:59:50 +01003921 do {
3922 bool irq_received = (iir & ~flip_mask) != 0;
Chris Wilson8291ee92012-04-24 22:59:47 +01003923 bool blc_event = false;
Chris Wilsona266c7d2012-04-24 22:59:44 +01003924
3925 /* Can't rely on pipestat interrupt bit in iir as it might
3926 * have been cleared after the pipestat interrupt was received.
3927 * It doesn't set the bit in iir again, but it still produces
3928 * interrupts (for non-MSI).
3929 */
Daniel Vetter222c7f52014-09-15 14:55:28 +02003930 spin_lock(&dev_priv->irq_lock);
Chris Wilsona266c7d2012-04-24 22:59:44 +01003931 if (iir & I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT)
Daniel Vetteraaecdf62014-11-04 15:52:22 +01003932 DRM_DEBUG("Command parser error, iir 0x%08x\n", iir);
Chris Wilsona266c7d2012-04-24 22:59:44 +01003933
Damien Lespiau055e3932014-08-18 13:49:10 +01003934 for_each_pipe(dev_priv, pipe) {
Ville Syrjäläf0f59a02015-11-18 15:33:26 +02003935 i915_reg_t reg = PIPESTAT(pipe);
Chris Wilsona266c7d2012-04-24 22:59:44 +01003936 pipe_stats[pipe] = I915_READ(reg);
3937
Chris Wilson38bde182012-04-24 22:59:50 +01003938 /* Clear the PIPE*STAT regs before the IIR */
Chris Wilsona266c7d2012-04-24 22:59:44 +01003939 if (pipe_stats[pipe] & 0x8000ffff) {
Chris Wilsona266c7d2012-04-24 22:59:44 +01003940 I915_WRITE(reg, pipe_stats[pipe]);
Chris Wilson38bde182012-04-24 22:59:50 +01003941 irq_received = true;
Chris Wilsona266c7d2012-04-24 22:59:44 +01003942 }
3943 }
Daniel Vetter222c7f52014-09-15 14:55:28 +02003944 spin_unlock(&dev_priv->irq_lock);
Chris Wilsona266c7d2012-04-24 22:59:44 +01003945
3946 if (!irq_received)
3947 break;
3948
Chris Wilsona266c7d2012-04-24 22:59:44 +01003949 /* Consume port. Then clear IIR or we'll miss events */
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01003950 if (I915_HAS_HOTPLUG(dev_priv) &&
Ville Syrjälä1ae3c342016-04-13 21:19:54 +03003951 iir & I915_DISPLAY_PORT_INTERRUPT) {
3952 u32 hotplug_status = i9xx_hpd_irq_ack(dev_priv);
3953 if (hotplug_status)
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01003954 i9xx_hpd_irq_handler(dev_priv, hotplug_status);
Ville Syrjälä1ae3c342016-04-13 21:19:54 +03003955 }
Chris Wilsona266c7d2012-04-24 22:59:44 +01003956
Chris Wilson38bde182012-04-24 22:59:50 +01003957 I915_WRITE(IIR, iir & ~flip_mask);
Chris Wilsona266c7d2012-04-24 22:59:44 +01003958 new_iir = I915_READ(IIR); /* Flush posted writes */
3959
Chris Wilsona266c7d2012-04-24 22:59:44 +01003960 if (iir & I915_USER_INTERRUPT)
Akash Goel3b3f1652016-10-13 22:44:48 +05303961 notify_ring(dev_priv->engine[RCS]);
Chris Wilsona266c7d2012-04-24 22:59:44 +01003962
Damien Lespiau055e3932014-08-18 13:49:10 +01003963 for_each_pipe(dev_priv, pipe) {
Daniel Vetter5a21b662016-05-24 17:13:53 +02003964 int plane = pipe;
3965 if (HAS_FBC(dev_priv))
3966 plane = !plane;
3967
3968 if (pipe_stats[pipe] & PIPE_VBLANK_INTERRUPT_STATUS &&
3969 i915_handle_vblank(dev_priv, plane, pipe, iir))
3970 flip_mask &= ~DISPLAY_PLANE_FLIP_PENDING(plane);
Chris Wilsona266c7d2012-04-24 22:59:44 +01003971
3972 if (pipe_stats[pipe] & PIPE_LEGACY_BLC_EVENT_STATUS)
3973 blc_event = true;
Daniel Vetter4356d582013-10-16 22:55:55 +02003974
3975 if (pipe_stats[pipe] & PIPE_CRC_DONE_INTERRUPT_STATUS)
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01003976 i9xx_pipe_crc_irq_handler(dev_priv, pipe);
Ville Syrjälä2d9d2b02014-01-17 11:44:31 +02003977
Daniel Vetter1f7247c2014-09-30 10:56:48 +02003978 if (pipe_stats[pipe] & PIPE_FIFO_UNDERRUN_STATUS)
3979 intel_cpu_fifo_underrun_irq_handler(dev_priv,
3980 pipe);
Chris Wilsona266c7d2012-04-24 22:59:44 +01003981 }
3982
Chris Wilsona266c7d2012-04-24 22:59:44 +01003983 if (blc_event || (iir & I915_ASLE_INTERRUPT))
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01003984 intel_opregion_asle_intr(dev_priv);
Chris Wilsona266c7d2012-04-24 22:59:44 +01003985
3986 /* With MSI, interrupts are only generated when iir
3987 * transitions from zero to nonzero. If another bit got
3988 * set while we were handling the existing iir bits, then
3989 * we would never get another interrupt.
3990 *
3991 * This is fine on non-MSI as well, as if we hit this path
3992 * we avoid exiting the interrupt handler only to generate
3993 * another one.
3994 *
3995 * Note that for MSI this could cause a stray interrupt report
3996 * if an interrupt landed in the time between writing IIR and
3997 * the posting read. This should be rare enough to never
3998 * trigger the 99% of 100,000 interrupts test for disabling
3999 * stray interrupts.
4000 */
Chris Wilson38bde182012-04-24 22:59:50 +01004001 ret = IRQ_HANDLED;
Chris Wilsona266c7d2012-04-24 22:59:44 +01004002 iir = new_iir;
Chris Wilson38bde182012-04-24 22:59:50 +01004003 } while (iir & ~flip_mask);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004004
Imre Deak1f814da2015-12-16 02:52:19 +02004005 enable_rpm_wakeref_asserts(dev_priv);
4006
Chris Wilsona266c7d2012-04-24 22:59:44 +01004007 return ret;
4008}
4009
4010static void i915_irq_uninstall(struct drm_device * dev)
4011{
Chris Wilsonfac5e232016-07-04 11:34:36 +01004012 struct drm_i915_private *dev_priv = to_i915(dev);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004013 int pipe;
4014
Tvrtko Ursulin56b857a2016-11-07 09:29:20 +00004015 if (I915_HAS_HOTPLUG(dev_priv)) {
Egbert Eich0706f172015-09-23 16:15:27 +02004016 i915_hotplug_interrupt_update(dev_priv, 0xffffffff, 0);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004017 I915_WRITE(PORT_HOTPLUG_STAT, I915_READ(PORT_HOTPLUG_STAT));
4018 }
4019
Chris Wilson00d98eb2012-04-24 22:59:48 +01004020 I915_WRITE16(HWSTAM, 0xffff);
Damien Lespiau055e3932014-08-18 13:49:10 +01004021 for_each_pipe(dev_priv, pipe) {
Chris Wilson55b39752012-04-24 22:59:49 +01004022 /* Clear enable bits; then clear status bits */
Chris Wilsona266c7d2012-04-24 22:59:44 +01004023 I915_WRITE(PIPESTAT(pipe), 0);
Chris Wilson55b39752012-04-24 22:59:49 +01004024 I915_WRITE(PIPESTAT(pipe), I915_READ(PIPESTAT(pipe)));
4025 }
Chris Wilsona266c7d2012-04-24 22:59:44 +01004026 I915_WRITE(IMR, 0xffffffff);
4027 I915_WRITE(IER, 0x0);
4028
Chris Wilsona266c7d2012-04-24 22:59:44 +01004029 I915_WRITE(IIR, I915_READ(IIR));
4030}
4031
4032static void i965_irq_preinstall(struct drm_device * dev)
4033{
Chris Wilsonfac5e232016-07-04 11:34:36 +01004034 struct drm_i915_private *dev_priv = to_i915(dev);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004035 int pipe;
4036
Egbert Eich0706f172015-09-23 16:15:27 +02004037 i915_hotplug_interrupt_update(dev_priv, 0xffffffff, 0);
Chris Wilsonadca4732012-05-11 18:01:31 +01004038 I915_WRITE(PORT_HOTPLUG_STAT, I915_READ(PORT_HOTPLUG_STAT));
Chris Wilsona266c7d2012-04-24 22:59:44 +01004039
4040 I915_WRITE(HWSTAM, 0xeffe);
Damien Lespiau055e3932014-08-18 13:49:10 +01004041 for_each_pipe(dev_priv, pipe)
Chris Wilsona266c7d2012-04-24 22:59:44 +01004042 I915_WRITE(PIPESTAT(pipe), 0);
4043 I915_WRITE(IMR, 0xffffffff);
4044 I915_WRITE(IER, 0x0);
4045 POSTING_READ(IER);
4046}
4047
4048static int i965_irq_postinstall(struct drm_device *dev)
4049{
Chris Wilsonfac5e232016-07-04 11:34:36 +01004050 struct drm_i915_private *dev_priv = to_i915(dev);
Chris Wilsonbbba0a92012-04-24 22:59:51 +01004051 u32 enable_mask;
Chris Wilsona266c7d2012-04-24 22:59:44 +01004052 u32 error_mask;
4053
Chris Wilsona266c7d2012-04-24 22:59:44 +01004054 /* Unmask the interrupts that we always want on. */
Chris Wilsonbbba0a92012-04-24 22:59:51 +01004055 dev_priv->irq_mask = ~(I915_ASLE_INTERRUPT |
Chris Wilsonadca4732012-05-11 18:01:31 +01004056 I915_DISPLAY_PORT_INTERRUPT |
Chris Wilsonbbba0a92012-04-24 22:59:51 +01004057 I915_DISPLAY_PIPE_A_EVENT_INTERRUPT |
4058 I915_DISPLAY_PIPE_B_EVENT_INTERRUPT |
4059 I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT |
4060 I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT |
4061 I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT);
4062
4063 enable_mask = ~dev_priv->irq_mask;
Ville Syrjälä21ad8332013-02-19 15:16:39 +02004064 enable_mask &= ~(I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT |
4065 I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT);
Chris Wilsonbbba0a92012-04-24 22:59:51 +01004066 enable_mask |= I915_USER_INTERRUPT;
4067
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01004068 if (IS_G4X(dev_priv))
Chris Wilsonbbba0a92012-04-24 22:59:51 +01004069 enable_mask |= I915_BSD_USER_INTERRUPT;
Chris Wilsona266c7d2012-04-24 22:59:44 +01004070
Daniel Vetterb79480b2013-06-27 17:52:10 +02004071 /* Interrupt setup is already guaranteed to be single-threaded, this is
4072 * just to make the assert_spin_locked check happy. */
Daniel Vetterd6207432014-09-15 14:55:27 +02004073 spin_lock_irq(&dev_priv->irq_lock);
Imre Deak755e9012014-02-10 18:42:47 +02004074 i915_enable_pipestat(dev_priv, PIPE_A, PIPE_GMBUS_INTERRUPT_STATUS);
4075 i915_enable_pipestat(dev_priv, PIPE_A, PIPE_CRC_DONE_INTERRUPT_STATUS);
4076 i915_enable_pipestat(dev_priv, PIPE_B, PIPE_CRC_DONE_INTERRUPT_STATUS);
Daniel Vetterd6207432014-09-15 14:55:27 +02004077 spin_unlock_irq(&dev_priv->irq_lock);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004078
Chris Wilsona266c7d2012-04-24 22:59:44 +01004079 /*
4080 * Enable some error detection, note the instruction error mask
4081 * bit is reserved, so we leave it masked.
4082 */
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01004083 if (IS_G4X(dev_priv)) {
Chris Wilsona266c7d2012-04-24 22:59:44 +01004084 error_mask = ~(GM45_ERROR_PAGE_TABLE |
4085 GM45_ERROR_MEM_PRIV |
4086 GM45_ERROR_CP_PRIV |
4087 I915_ERROR_MEMORY_REFRESH);
4088 } else {
4089 error_mask = ~(I915_ERROR_PAGE_TABLE |
4090 I915_ERROR_MEMORY_REFRESH);
4091 }
4092 I915_WRITE(EMR, error_mask);
4093
4094 I915_WRITE(IMR, dev_priv->irq_mask);
4095 I915_WRITE(IER, enable_mask);
4096 POSTING_READ(IER);
4097
Egbert Eich0706f172015-09-23 16:15:27 +02004098 i915_hotplug_interrupt_update(dev_priv, 0xffffffff, 0);
Daniel Vetter20afbda2012-12-11 14:05:07 +01004099 POSTING_READ(PORT_HOTPLUG_EN);
4100
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01004101 i915_enable_asle_pipestat(dev_priv);
Daniel Vetter20afbda2012-12-11 14:05:07 +01004102
4103 return 0;
4104}
4105
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01004106static void i915_hpd_irq_setup(struct drm_i915_private *dev_priv)
Daniel Vetter20afbda2012-12-11 14:05:07 +01004107{
Daniel Vetter20afbda2012-12-11 14:05:07 +01004108 u32 hotplug_en;
4109
Chris Wilson67520412017-03-02 13:28:01 +00004110 lockdep_assert_held(&dev_priv->irq_lock);
Daniel Vetterb5ea2d52013-06-27 17:52:15 +02004111
Ville Syrjälä778eb332015-01-09 14:21:13 +02004112 /* Note HDMI and DP share hotplug bits */
4113 /* enable bits are the same for all generations */
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01004114 hotplug_en = intel_hpd_enabled_irqs(dev_priv, hpd_mask_i915);
Ville Syrjälä778eb332015-01-09 14:21:13 +02004115 /* Programming the CRT detection parameters tends
4116 to generate a spurious hotplug event about three
4117 seconds later. So just do it once.
4118 */
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01004119 if (IS_G4X(dev_priv))
Ville Syrjälä778eb332015-01-09 14:21:13 +02004120 hotplug_en |= CRT_HOTPLUG_ACTIVATION_PERIOD_64;
Ville Syrjälä778eb332015-01-09 14:21:13 +02004121 hotplug_en |= CRT_HOTPLUG_VOLTAGE_COMPARE_50;
Chris Wilsona266c7d2012-04-24 22:59:44 +01004122
Ville Syrjälä778eb332015-01-09 14:21:13 +02004123 /* Ignore TV since it's buggy */
Egbert Eich0706f172015-09-23 16:15:27 +02004124 i915_hotplug_interrupt_update_locked(dev_priv,
Jani Nikulaf9e3dc72015-10-21 17:22:43 +03004125 HOTPLUG_INT_EN_MASK |
4126 CRT_HOTPLUG_VOLTAGE_COMPARE_MASK |
4127 CRT_HOTPLUG_ACTIVATION_PERIOD_64,
4128 hotplug_en);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004129}
4130
Daniel Vetterff1f5252012-10-02 15:10:55 +02004131static irqreturn_t i965_irq_handler(int irq, void *arg)
Chris Wilsona266c7d2012-04-24 22:59:44 +01004132{
Daniel Vetter45a83f82014-05-12 19:17:55 +02004133 struct drm_device *dev = arg;
Chris Wilsonfac5e232016-07-04 11:34:36 +01004134 struct drm_i915_private *dev_priv = to_i915(dev);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004135 u32 iir, new_iir;
4136 u32 pipe_stats[I915_MAX_PIPES];
Chris Wilsona266c7d2012-04-24 22:59:44 +01004137 int ret = IRQ_NONE, pipe;
Ville Syrjälä21ad8332013-02-19 15:16:39 +02004138 u32 flip_mask =
4139 I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT |
4140 I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT;
Chris Wilsona266c7d2012-04-24 22:59:44 +01004141
Imre Deak2dd2a882015-02-24 11:14:30 +02004142 if (!intel_irqs_enabled(dev_priv))
4143 return IRQ_NONE;
4144
Imre Deak1f814da2015-12-16 02:52:19 +02004145 /* IRQs are synced during runtime_suspend, we don't require a wakeref */
4146 disable_rpm_wakeref_asserts(dev_priv);
4147
Chris Wilsona266c7d2012-04-24 22:59:44 +01004148 iir = I915_READ(IIR);
4149
Chris Wilsona266c7d2012-04-24 22:59:44 +01004150 for (;;) {
Ville Syrjälä501e01d2014-01-17 11:35:15 +02004151 bool irq_received = (iir & ~flip_mask) != 0;
Chris Wilson2c8ba292012-04-24 22:59:46 +01004152 bool blc_event = false;
4153
Chris Wilsona266c7d2012-04-24 22:59:44 +01004154 /* Can't rely on pipestat interrupt bit in iir as it might
4155 * have been cleared after the pipestat interrupt was received.
4156 * It doesn't set the bit in iir again, but it still produces
4157 * interrupts (for non-MSI).
4158 */
Daniel Vetter222c7f52014-09-15 14:55:28 +02004159 spin_lock(&dev_priv->irq_lock);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004160 if (iir & I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT)
Daniel Vetteraaecdf62014-11-04 15:52:22 +01004161 DRM_DEBUG("Command parser error, iir 0x%08x\n", iir);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004162
Damien Lespiau055e3932014-08-18 13:49:10 +01004163 for_each_pipe(dev_priv, pipe) {
Ville Syrjäläf0f59a02015-11-18 15:33:26 +02004164 i915_reg_t reg = PIPESTAT(pipe);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004165 pipe_stats[pipe] = I915_READ(reg);
4166
4167 /*
4168 * Clear the PIPE*STAT regs before the IIR
4169 */
4170 if (pipe_stats[pipe] & 0x8000ffff) {
Chris Wilsona266c7d2012-04-24 22:59:44 +01004171 I915_WRITE(reg, pipe_stats[pipe]);
Ville Syrjälä501e01d2014-01-17 11:35:15 +02004172 irq_received = true;
Chris Wilsona266c7d2012-04-24 22:59:44 +01004173 }
4174 }
Daniel Vetter222c7f52014-09-15 14:55:28 +02004175 spin_unlock(&dev_priv->irq_lock);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004176
4177 if (!irq_received)
4178 break;
4179
4180 ret = IRQ_HANDLED;
4181
4182 /* Consume port. Then clear IIR or we'll miss events */
Ville Syrjälä1ae3c342016-04-13 21:19:54 +03004183 if (iir & I915_DISPLAY_PORT_INTERRUPT) {
4184 u32 hotplug_status = i9xx_hpd_irq_ack(dev_priv);
4185 if (hotplug_status)
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01004186 i9xx_hpd_irq_handler(dev_priv, hotplug_status);
Ville Syrjälä1ae3c342016-04-13 21:19:54 +03004187 }
Chris Wilsona266c7d2012-04-24 22:59:44 +01004188
Ville Syrjälä21ad8332013-02-19 15:16:39 +02004189 I915_WRITE(IIR, iir & ~flip_mask);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004190 new_iir = I915_READ(IIR); /* Flush posted writes */
4191
Chris Wilsona266c7d2012-04-24 22:59:44 +01004192 if (iir & I915_USER_INTERRUPT)
Akash Goel3b3f1652016-10-13 22:44:48 +05304193 notify_ring(dev_priv->engine[RCS]);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004194 if (iir & I915_BSD_USER_INTERRUPT)
Akash Goel3b3f1652016-10-13 22:44:48 +05304195 notify_ring(dev_priv->engine[VCS]);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004196
Damien Lespiau055e3932014-08-18 13:49:10 +01004197 for_each_pipe(dev_priv, pipe) {
Daniel Vetter5a21b662016-05-24 17:13:53 +02004198 if (pipe_stats[pipe] & PIPE_START_VBLANK_INTERRUPT_STATUS &&
4199 i915_handle_vblank(dev_priv, pipe, pipe, iir))
4200 flip_mask &= ~DISPLAY_PLANE_FLIP_PENDING(pipe);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004201
4202 if (pipe_stats[pipe] & PIPE_LEGACY_BLC_EVENT_STATUS)
4203 blc_event = true;
Daniel Vetter4356d582013-10-16 22:55:55 +02004204
4205 if (pipe_stats[pipe] & PIPE_CRC_DONE_INTERRUPT_STATUS)
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01004206 i9xx_pipe_crc_irq_handler(dev_priv, pipe);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004207
Daniel Vetter1f7247c2014-09-30 10:56:48 +02004208 if (pipe_stats[pipe] & PIPE_FIFO_UNDERRUN_STATUS)
4209 intel_cpu_fifo_underrun_irq_handler(dev_priv, pipe);
Ville Syrjälä2d9d2b02014-01-17 11:44:31 +02004210 }
Chris Wilsona266c7d2012-04-24 22:59:44 +01004211
4212 if (blc_event || (iir & I915_ASLE_INTERRUPT))
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01004213 intel_opregion_asle_intr(dev_priv);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004214
Daniel Vetter515ac2b2012-12-01 13:53:44 +01004215 if (pipe_stats[0] & PIPE_GMBUS_INTERRUPT_STATUS)
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01004216 gmbus_irq_handler(dev_priv);
Daniel Vetter515ac2b2012-12-01 13:53:44 +01004217
Chris Wilsona266c7d2012-04-24 22:59:44 +01004218 /* With MSI, interrupts are only generated when iir
4219 * transitions from zero to nonzero. If another bit got
4220 * set while we were handling the existing iir bits, then
4221 * we would never get another interrupt.
4222 *
4223 * This is fine on non-MSI as well, as if we hit this path
4224 * we avoid exiting the interrupt handler only to generate
4225 * another one.
4226 *
4227 * Note that for MSI this could cause a stray interrupt report
4228 * if an interrupt landed in the time between writing IIR and
4229 * the posting read. This should be rare enough to never
4230 * trigger the 99% of 100,000 interrupts test for disabling
4231 * stray interrupts.
4232 */
4233 iir = new_iir;
4234 }
4235
Imre Deak1f814da2015-12-16 02:52:19 +02004236 enable_rpm_wakeref_asserts(dev_priv);
4237
Chris Wilsona266c7d2012-04-24 22:59:44 +01004238 return ret;
4239}
4240
4241static void i965_irq_uninstall(struct drm_device * dev)
4242{
Chris Wilsonfac5e232016-07-04 11:34:36 +01004243 struct drm_i915_private *dev_priv = to_i915(dev);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004244 int pipe;
4245
4246 if (!dev_priv)
4247 return;
4248
Egbert Eich0706f172015-09-23 16:15:27 +02004249 i915_hotplug_interrupt_update(dev_priv, 0xffffffff, 0);
Chris Wilsonadca4732012-05-11 18:01:31 +01004250 I915_WRITE(PORT_HOTPLUG_STAT, I915_READ(PORT_HOTPLUG_STAT));
Chris Wilsona266c7d2012-04-24 22:59:44 +01004251
4252 I915_WRITE(HWSTAM, 0xffffffff);
Damien Lespiau055e3932014-08-18 13:49:10 +01004253 for_each_pipe(dev_priv, pipe)
Chris Wilsona266c7d2012-04-24 22:59:44 +01004254 I915_WRITE(PIPESTAT(pipe), 0);
4255 I915_WRITE(IMR, 0xffffffff);
4256 I915_WRITE(IER, 0x0);
4257
Damien Lespiau055e3932014-08-18 13:49:10 +01004258 for_each_pipe(dev_priv, pipe)
Chris Wilsona266c7d2012-04-24 22:59:44 +01004259 I915_WRITE(PIPESTAT(pipe),
4260 I915_READ(PIPESTAT(pipe)) & 0x8000ffff);
4261 I915_WRITE(IIR, I915_READ(IIR));
4262}
4263
Daniel Vetterfca52a52014-09-30 10:56:45 +02004264/**
4265 * intel_irq_init - initializes irq support
4266 * @dev_priv: i915 device instance
4267 *
4268 * This function initializes all the irq support including work items, timers
4269 * and all the vtables. It does not setup the interrupt itself though.
4270 */
Daniel Vetterb9632912014-09-30 10:56:44 +02004271void intel_irq_init(struct drm_i915_private *dev_priv)
Jesse Barnesf71d4af2011-06-28 13:00:41 -07004272{
Chris Wilson91c8a322016-07-05 10:40:23 +01004273 struct drm_device *dev = &dev_priv->drm;
Chris Wilson8b2e3262012-04-24 22:59:41 +01004274
Jani Nikula77913b32015-06-18 13:06:16 +03004275 intel_hpd_init_work(dev_priv);
4276
Daniel Vetterc6a828d2012-08-08 23:35:35 +02004277 INIT_WORK(&dev_priv->rps.work, gen6_pm_rps_work);
Daniel Vettera4da4fa2012-11-02 19:55:07 +01004278 INIT_WORK(&dev_priv->l3_parity.error_work, ivybridge_parity_work);
Chris Wilson8b2e3262012-04-24 22:59:41 +01004279
Tvrtko Ursulin4805fe82016-11-04 14:42:46 +00004280 if (HAS_GUC_SCHED(dev_priv))
Sagar Arun Kamble26705e22016-10-12 21:54:31 +05304281 dev_priv->pm_guc_events = GEN9_GUC_TO_HOST_INT_EVENT;
4282
Deepak Sa6706b42014-03-15 20:23:22 +05304283 /* Let's track the enabled rps events */
Wayne Boyer666a4532015-12-09 12:29:35 -08004284 if (IS_VALLEYVIEW(dev_priv))
Ville Syrjälä6c65a582014-08-29 14:14:07 +03004285 /* WaGsvRC0ResidencyMethod:vlv */
Chris Wilson6f4b12f82015-03-18 09:48:23 +00004286 dev_priv->pm_rps_events = GEN6_PM_RP_DOWN_EI_EXPIRED | GEN6_PM_RP_UP_EI_EXPIRED;
Deepak S31685c22014-07-03 17:33:01 -04004287 else
4288 dev_priv->pm_rps_events = GEN6_PM_RPS_EVENTS;
Deepak Sa6706b42014-03-15 20:23:22 +05304289
Sagar Arun Kamble1800ad22016-05-31 13:58:27 +05304290 dev_priv->rps.pm_intr_keep = 0;
4291
4292 /*
4293 * SNB,IVB can while VLV,CHV may hard hang on looping batchbuffer
4294 * if GEN6_PM_UP_EI_EXPIRED is masked.
4295 *
4296 * TODO: verify if this can be reproduced on VLV,CHV.
4297 */
4298 if (INTEL_INFO(dev_priv)->gen <= 7 && !IS_HASWELL(dev_priv))
4299 dev_priv->rps.pm_intr_keep |= GEN6_PM_RP_UP_EI_EXPIRED;
4300
4301 if (INTEL_INFO(dev_priv)->gen >= 8)
Dave Gordonb20e3cf2016-09-12 21:19:35 +01004302 dev_priv->rps.pm_intr_keep |= GEN8_PMINTR_REDIRECT_TO_GUC;
Sagar Arun Kamble1800ad22016-05-31 13:58:27 +05304303
Sagar Arun Kamble9735b042017-03-07 10:22:35 +05304304 /*
4305 * The REDIRECT_TO_GUC bit of the PMINTRMSK register directs all
4306 * (unmasked) PM interrupts to the GuC. All other bits of this
4307 * register *disable* generation of a specific interrupt.
4308 *
4309 * 'pm_intr_keep' indicates bits that are NOT to be set when
4310 * writing to the PM interrupt mask register, i.e. interrupts
4311 * that must not be disabled.
4312 *
4313 * If the GuC is handling these interrupts, then we must not let
4314 * the PM code disable ANY interrupt that the GuC is expecting.
4315 * So for each ENABLED (0) bit in this register, we must SET the
4316 * bit in pm_intr_keep so that it's left enabled for the GuC.
4317 * GuC needs ARAT expired interrupt unmasked hence it is set in
4318 * pm_intr_keep.
4319 *
4320 * Here we CLEAR REDIRECT_TO_GUC bit in pm_intr_keep, which will
4321 * result in the register bit being left SET!
4322 */
4323 if (HAS_GUC_SCHED(dev_priv)) {
4324 dev_priv->rps.pm_intr_keep |= ARAT_EXPIRED_INTRMSK;
4325 dev_priv->rps.pm_intr_keep &= ~GEN8_PMINTR_REDIRECT_TO_GUC;
4326 }
4327
Daniel Vetterb9632912014-09-30 10:56:44 +02004328 if (IS_GEN2(dev_priv)) {
Rodrigo Vivi4194c082016-08-03 10:00:56 -07004329 /* Gen2 doesn't have a hardware frame counter */
Ville Syrjälä4cdb83e2013-10-11 21:52:44 +03004330 dev->max_vblank_count = 0;
Daniel Vetterb9632912014-09-30 10:56:44 +02004331 } else if (IS_G4X(dev_priv) || INTEL_INFO(dev_priv)->gen >= 5) {
Jesse Barnesf71d4af2011-06-28 13:00:41 -07004332 dev->max_vblank_count = 0xffffffff; /* full 32 bit counter */
Ville Syrjäläfd8f5072015-09-18 20:03:42 +03004333 dev->driver->get_vblank_counter = g4x_get_vblank_counter;
Ville Syrjälä391f75e2013-09-25 19:55:26 +03004334 } else {
4335 dev->driver->get_vblank_counter = i915_get_vblank_counter;
4336 dev->max_vblank_count = 0xffffff; /* only 24 bits of frame count */
Jesse Barnesf71d4af2011-06-28 13:00:41 -07004337 }
4338
Ville Syrjälä21da2702014-08-06 14:49:55 +03004339 /*
4340 * Opt out of the vblank disable timer on everything except gen2.
4341 * Gen2 doesn't have a hardware frame counter and so depends on
4342 * vblank interrupts to produce sane vblank seuquence numbers.
4343 */
Daniel Vetterb9632912014-09-30 10:56:44 +02004344 if (!IS_GEN2(dev_priv))
Ville Syrjälä21da2702014-08-06 14:49:55 +03004345 dev->vblank_disable_immediate = true;
4346
Chris Wilson262fd482017-02-15 13:15:47 +00004347 /* Most platforms treat the display irq block as an always-on
4348 * power domain. vlv/chv can disable it at runtime and need
4349 * special care to avoid writing any of the display block registers
4350 * outside of the power domain. We defer setting up the display irqs
4351 * in this case to the runtime pm.
4352 */
4353 dev_priv->display_irqs_enabled = true;
4354 if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv))
4355 dev_priv->display_irqs_enabled = false;
4356
Lyude317eaa92017-02-03 21:18:25 -05004357 dev_priv->hotplug.hpd_storm_threshold = HPD_STORM_DEFAULT_THRESHOLD;
4358
Daniel Vetterf3a5c3f2015-02-13 21:03:44 +01004359 dev->driver->get_vblank_timestamp = i915_get_vblank_timestamp;
4360 dev->driver->get_scanout_position = i915_get_crtc_scanoutpos;
Jesse Barnesf71d4af2011-06-28 13:00:41 -07004361
Daniel Vetterb9632912014-09-30 10:56:44 +02004362 if (IS_CHERRYVIEW(dev_priv)) {
Ville Syrjälä43f328d2014-04-09 20:40:52 +03004363 dev->driver->irq_handler = cherryview_irq_handler;
4364 dev->driver->irq_preinstall = cherryview_irq_preinstall;
4365 dev->driver->irq_postinstall = cherryview_irq_postinstall;
4366 dev->driver->irq_uninstall = cherryview_irq_uninstall;
Chris Wilson86e83e32016-10-07 20:49:52 +01004367 dev->driver->enable_vblank = i965_enable_vblank;
4368 dev->driver->disable_vblank = i965_disable_vblank;
Ville Syrjälä43f328d2014-04-09 20:40:52 +03004369 dev_priv->display.hpd_irq_setup = i915_hpd_irq_setup;
Daniel Vetterb9632912014-09-30 10:56:44 +02004370 } else if (IS_VALLEYVIEW(dev_priv)) {
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07004371 dev->driver->irq_handler = valleyview_irq_handler;
4372 dev->driver->irq_preinstall = valleyview_irq_preinstall;
4373 dev->driver->irq_postinstall = valleyview_irq_postinstall;
4374 dev->driver->irq_uninstall = valleyview_irq_uninstall;
Chris Wilson86e83e32016-10-07 20:49:52 +01004375 dev->driver->enable_vblank = i965_enable_vblank;
4376 dev->driver->disable_vblank = i965_disable_vblank;
Egbert Eichfa00abe2013-02-25 12:06:48 -05004377 dev_priv->display.hpd_irq_setup = i915_hpd_irq_setup;
Daniel Vetterb9632912014-09-30 10:56:44 +02004378 } else if (INTEL_INFO(dev_priv)->gen >= 8) {
Ben Widawskyabd58f02013-11-02 21:07:09 -07004379 dev->driver->irq_handler = gen8_irq_handler;
Daniel Vetter723761b2014-05-22 17:56:34 +02004380 dev->driver->irq_preinstall = gen8_irq_reset;
Ben Widawskyabd58f02013-11-02 21:07:09 -07004381 dev->driver->irq_postinstall = gen8_irq_postinstall;
4382 dev->driver->irq_uninstall = gen8_irq_uninstall;
4383 dev->driver->enable_vblank = gen8_enable_vblank;
4384 dev->driver->disable_vblank = gen8_disable_vblank;
Ander Conselvan de Oliveiracc3f90f2016-12-02 10:23:49 +02004385 if (IS_GEN9_LP(dev_priv))
Shashank Sharmae0a20ad2015-03-27 14:54:14 +02004386 dev_priv->display.hpd_irq_setup = bxt_hpd_irq_setup;
Tvrtko Ursulin6e266952016-10-13 11:02:53 +01004387 else if (HAS_PCH_SPT(dev_priv) || HAS_PCH_KBP(dev_priv))
Ville Syrjälä6dbf30c2015-08-27 23:56:02 +03004388 dev_priv->display.hpd_irq_setup = spt_hpd_irq_setup;
4389 else
Ville Syrjälä3a3b3c72015-08-27 23:56:06 +03004390 dev_priv->display.hpd_irq_setup = ilk_hpd_irq_setup;
Tvrtko Ursulin6e266952016-10-13 11:02:53 +01004391 } else if (HAS_PCH_SPLIT(dev_priv)) {
Jesse Barnesf71d4af2011-06-28 13:00:41 -07004392 dev->driver->irq_handler = ironlake_irq_handler;
Daniel Vetter723761b2014-05-22 17:56:34 +02004393 dev->driver->irq_preinstall = ironlake_irq_reset;
Jesse Barnesf71d4af2011-06-28 13:00:41 -07004394 dev->driver->irq_postinstall = ironlake_irq_postinstall;
4395 dev->driver->irq_uninstall = ironlake_irq_uninstall;
4396 dev->driver->enable_vblank = ironlake_enable_vblank;
4397 dev->driver->disable_vblank = ironlake_disable_vblank;
Ville Syrjälä23bb4cb2015-08-27 23:56:04 +03004398 dev_priv->display.hpd_irq_setup = ilk_hpd_irq_setup;
Jesse Barnesf71d4af2011-06-28 13:00:41 -07004399 } else {
Tvrtko Ursulin7e22dbb2016-05-10 10:57:06 +01004400 if (IS_GEN2(dev_priv)) {
Chris Wilsonc2798b12012-04-22 21:13:57 +01004401 dev->driver->irq_preinstall = i8xx_irq_preinstall;
4402 dev->driver->irq_postinstall = i8xx_irq_postinstall;
4403 dev->driver->irq_handler = i8xx_irq_handler;
4404 dev->driver->irq_uninstall = i8xx_irq_uninstall;
Chris Wilson86e83e32016-10-07 20:49:52 +01004405 dev->driver->enable_vblank = i8xx_enable_vblank;
4406 dev->driver->disable_vblank = i8xx_disable_vblank;
Tvrtko Ursulin7e22dbb2016-05-10 10:57:06 +01004407 } else if (IS_GEN3(dev_priv)) {
Chris Wilsona266c7d2012-04-24 22:59:44 +01004408 dev->driver->irq_preinstall = i915_irq_preinstall;
4409 dev->driver->irq_postinstall = i915_irq_postinstall;
4410 dev->driver->irq_uninstall = i915_irq_uninstall;
4411 dev->driver->irq_handler = i915_irq_handler;
Chris Wilson86e83e32016-10-07 20:49:52 +01004412 dev->driver->enable_vblank = i8xx_enable_vblank;
4413 dev->driver->disable_vblank = i8xx_disable_vblank;
Chris Wilsonc2798b12012-04-22 21:13:57 +01004414 } else {
Chris Wilsona266c7d2012-04-24 22:59:44 +01004415 dev->driver->irq_preinstall = i965_irq_preinstall;
4416 dev->driver->irq_postinstall = i965_irq_postinstall;
4417 dev->driver->irq_uninstall = i965_irq_uninstall;
4418 dev->driver->irq_handler = i965_irq_handler;
Chris Wilson86e83e32016-10-07 20:49:52 +01004419 dev->driver->enable_vblank = i965_enable_vblank;
4420 dev->driver->disable_vblank = i965_disable_vblank;
Chris Wilsonc2798b12012-04-22 21:13:57 +01004421 }
Ville Syrjälä778eb332015-01-09 14:21:13 +02004422 if (I915_HAS_HOTPLUG(dev_priv))
4423 dev_priv->display.hpd_irq_setup = i915_hpd_irq_setup;
Jesse Barnesf71d4af2011-06-28 13:00:41 -07004424 }
4425}
Daniel Vetter20afbda2012-12-11 14:05:07 +01004426
Daniel Vetterfca52a52014-09-30 10:56:45 +02004427/**
Daniel Vetterfca52a52014-09-30 10:56:45 +02004428 * intel_irq_install - enables the hardware interrupt
4429 * @dev_priv: i915 device instance
4430 *
4431 * This function enables the hardware interrupt handling, but leaves the hotplug
4432 * handling still disabled. It is called after intel_irq_init().
4433 *
4434 * In the driver load and resume code we need working interrupts in a few places
4435 * but don't want to deal with the hassle of concurrent probe and hotplug
4436 * workers. Hence the split into this two-stage approach.
4437 */
Daniel Vetter2aeb7d32014-09-30 10:56:43 +02004438int intel_irq_install(struct drm_i915_private *dev_priv)
4439{
4440 /*
4441 * We enable some interrupt sources in our postinstall hooks, so mark
4442 * interrupts as enabled _before_ actually enabling them to avoid
4443 * special cases in our ordering checks.
4444 */
4445 dev_priv->pm.irqs_enabled = true;
4446
Chris Wilson91c8a322016-07-05 10:40:23 +01004447 return drm_irq_install(&dev_priv->drm, dev_priv->drm.pdev->irq);
Daniel Vetter2aeb7d32014-09-30 10:56:43 +02004448}
4449
Daniel Vetterfca52a52014-09-30 10:56:45 +02004450/**
4451 * intel_irq_uninstall - finilizes all irq handling
4452 * @dev_priv: i915 device instance
4453 *
4454 * This stops interrupt and hotplug handling and unregisters and frees all
4455 * resources acquired in the init functions.
4456 */
Daniel Vetter2aeb7d32014-09-30 10:56:43 +02004457void intel_irq_uninstall(struct drm_i915_private *dev_priv)
4458{
Chris Wilson91c8a322016-07-05 10:40:23 +01004459 drm_irq_uninstall(&dev_priv->drm);
Daniel Vetter2aeb7d32014-09-30 10:56:43 +02004460 intel_hpd_cancel_work(dev_priv);
4461 dev_priv->pm.irqs_enabled = false;
4462}
4463
Daniel Vetterfca52a52014-09-30 10:56:45 +02004464/**
4465 * intel_runtime_pm_disable_interrupts - runtime interrupt disabling
4466 * @dev_priv: i915 device instance
4467 *
4468 * This function is used to disable interrupts at runtime, both in the runtime
4469 * pm and the system suspend/resume code.
4470 */
Daniel Vetterb9632912014-09-30 10:56:44 +02004471void intel_runtime_pm_disable_interrupts(struct drm_i915_private *dev_priv)
Paulo Zanonic67a4702013-08-19 13:18:09 -03004472{
Chris Wilson91c8a322016-07-05 10:40:23 +01004473 dev_priv->drm.driver->irq_uninstall(&dev_priv->drm);
Daniel Vetter2aeb7d32014-09-30 10:56:43 +02004474 dev_priv->pm.irqs_enabled = false;
Chris Wilson91c8a322016-07-05 10:40:23 +01004475 synchronize_irq(dev_priv->drm.irq);
Paulo Zanonic67a4702013-08-19 13:18:09 -03004476}
4477
Daniel Vetterfca52a52014-09-30 10:56:45 +02004478/**
4479 * intel_runtime_pm_enable_interrupts - runtime interrupt enabling
4480 * @dev_priv: i915 device instance
4481 *
4482 * This function is used to enable interrupts at runtime, both in the runtime
4483 * pm and the system suspend/resume code.
4484 */
Daniel Vetterb9632912014-09-30 10:56:44 +02004485void intel_runtime_pm_enable_interrupts(struct drm_i915_private *dev_priv)
Paulo Zanonic67a4702013-08-19 13:18:09 -03004486{
Daniel Vetter2aeb7d32014-09-30 10:56:43 +02004487 dev_priv->pm.irqs_enabled = true;
Chris Wilson91c8a322016-07-05 10:40:23 +01004488 dev_priv->drm.driver->irq_preinstall(&dev_priv->drm);
4489 dev_priv->drm.driver->irq_postinstall(&dev_priv->drm);
Paulo Zanonic67a4702013-08-19 13:18:09 -03004490}