blob: 671f76ccd8df6ed02287d5b5dd2d011460fe5698 [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);
173
Egbert Eich0706f172015-09-23 16:15:27 +0200174/* For display hotplug interrupt */
175static inline void
176i915_hotplug_interrupt_update_locked(struct drm_i915_private *dev_priv,
177 uint32_t mask,
178 uint32_t bits)
179{
180 uint32_t val;
181
182 assert_spin_locked(&dev_priv->irq_lock);
183 WARN_ON(bits & ~mask);
184
185 val = I915_READ(PORT_HOTPLUG_EN);
186 val &= ~mask;
187 val |= bits;
188 I915_WRITE(PORT_HOTPLUG_EN, val);
189}
190
191/**
192 * i915_hotplug_interrupt_update - update hotplug interrupt enable
193 * @dev_priv: driver private
194 * @mask: bits to update
195 * @bits: bits to enable
196 * NOTE: the HPD enable bits are modified both inside and outside
197 * of an interrupt context. To avoid that read-modify-write cycles
198 * interfer, these bits are protected by a spinlock. Since this
199 * function is usually not called from a context where the lock is
200 * held already, this function acquires the lock itself. A non-locking
201 * version is also available.
202 */
203void i915_hotplug_interrupt_update(struct drm_i915_private *dev_priv,
204 uint32_t mask,
205 uint32_t bits)
206{
207 spin_lock_irq(&dev_priv->irq_lock);
208 i915_hotplug_interrupt_update_locked(dev_priv, mask, bits);
209 spin_unlock_irq(&dev_priv->irq_lock);
210}
211
Ville Syrjäläd9dc34f12015-08-27 23:55:58 +0300212/**
213 * ilk_update_display_irq - update DEIMR
214 * @dev_priv: driver private
215 * @interrupt_mask: mask of interrupt bits to update
216 * @enabled_irq_mask: mask of interrupt bits to enable
217 */
218static void ilk_update_display_irq(struct drm_i915_private *dev_priv,
219 uint32_t interrupt_mask,
220 uint32_t enabled_irq_mask)
Zhenyu Wang036a4a72009-06-08 14:40:19 +0800221{
Ville Syrjäläd9dc34f12015-08-27 23:55:58 +0300222 uint32_t new_val;
223
Daniel Vetter4bc9d432013-06-27 13:44:58 +0200224 assert_spin_locked(&dev_priv->irq_lock);
225
Ville Syrjäläd9dc34f12015-08-27 23:55:58 +0300226 WARN_ON(enabled_irq_mask & ~interrupt_mask);
227
Jesse Barnes9df7575f2014-06-20 09:29:20 -0700228 if (WARN_ON(!intel_irqs_enabled(dev_priv)))
Paulo Zanonic67a4702013-08-19 13:18:09 -0300229 return;
Paulo Zanonic67a4702013-08-19 13:18:09 -0300230
Ville Syrjäläd9dc34f12015-08-27 23:55:58 +0300231 new_val = dev_priv->irq_mask;
232 new_val &= ~interrupt_mask;
233 new_val |= (~enabled_irq_mask & interrupt_mask);
234
235 if (new_val != dev_priv->irq_mask) {
236 dev_priv->irq_mask = new_val;
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000237 I915_WRITE(DEIMR, dev_priv->irq_mask);
Chris Wilson3143a2b2010-11-16 15:55:10 +0000238 POSTING_READ(DEIMR);
Zhenyu Wang036a4a72009-06-08 14:40:19 +0800239 }
240}
241
Daniel Vetter47339cd2014-09-30 10:56:46 +0200242void
Ville Syrjäläd9dc34f12015-08-27 23:55:58 +0300243ironlake_enable_display_irq(struct drm_i915_private *dev_priv, u32 mask)
244{
245 ilk_update_display_irq(dev_priv, mask, mask);
246}
247
248void
Jani Nikula2d1013d2014-03-31 14:27:17 +0300249ironlake_disable_display_irq(struct drm_i915_private *dev_priv, u32 mask)
Zhenyu Wang036a4a72009-06-08 14:40:19 +0800250{
Ville Syrjäläd9dc34f12015-08-27 23:55:58 +0300251 ilk_update_display_irq(dev_priv, mask, 0);
Zhenyu Wang036a4a72009-06-08 14:40:19 +0800252}
253
Paulo Zanoni43eaea12013-08-06 18:57:12 -0300254/**
255 * ilk_update_gt_irq - update GTIMR
256 * @dev_priv: driver private
257 * @interrupt_mask: mask of interrupt bits to update
258 * @enabled_irq_mask: mask of interrupt bits to enable
259 */
260static void ilk_update_gt_irq(struct drm_i915_private *dev_priv,
261 uint32_t interrupt_mask,
262 uint32_t enabled_irq_mask)
263{
264 assert_spin_locked(&dev_priv->irq_lock);
265
Daniel Vetter15a17aa2014-12-08 16:30:00 +0100266 WARN_ON(enabled_irq_mask & ~interrupt_mask);
267
Jesse Barnes9df7575f2014-06-20 09:29:20 -0700268 if (WARN_ON(!intel_irqs_enabled(dev_priv)))
Paulo Zanonic67a4702013-08-19 13:18:09 -0300269 return;
Paulo Zanonic67a4702013-08-19 13:18:09 -0300270
Paulo Zanoni43eaea12013-08-06 18:57:12 -0300271 dev_priv->gt_irq_mask &= ~interrupt_mask;
272 dev_priv->gt_irq_mask |= (~enabled_irq_mask & interrupt_mask);
273 I915_WRITE(GTIMR, dev_priv->gt_irq_mask);
274 POSTING_READ(GTIMR);
275}
276
Daniel Vetter480c8032014-07-16 09:49:40 +0200277void gen5_enable_gt_irq(struct drm_i915_private *dev_priv, uint32_t mask)
Paulo Zanoni43eaea12013-08-06 18:57:12 -0300278{
279 ilk_update_gt_irq(dev_priv, mask, mask);
280}
281
Daniel Vetter480c8032014-07-16 09:49:40 +0200282void gen5_disable_gt_irq(struct drm_i915_private *dev_priv, uint32_t mask)
Paulo Zanoni43eaea12013-08-06 18:57:12 -0300283{
284 ilk_update_gt_irq(dev_priv, mask, 0);
285}
286
Ville Syrjäläf0f59a02015-11-18 15:33:26 +0200287static i915_reg_t gen6_pm_iir(struct drm_i915_private *dev_priv)
Imre Deakb900b942014-11-05 20:48:48 +0200288{
289 return INTEL_INFO(dev_priv)->gen >= 8 ? GEN8_GT_IIR(2) : GEN6_PMIIR;
290}
291
Ville Syrjäläf0f59a02015-11-18 15:33:26 +0200292static i915_reg_t gen6_pm_imr(struct drm_i915_private *dev_priv)
Imre Deaka72fbc32014-11-05 20:48:31 +0200293{
294 return INTEL_INFO(dev_priv)->gen >= 8 ? GEN8_GT_IMR(2) : GEN6_PMIMR;
295}
296
Ville Syrjäläf0f59a02015-11-18 15:33:26 +0200297static i915_reg_t gen6_pm_ier(struct drm_i915_private *dev_priv)
Imre Deakb900b942014-11-05 20:48:48 +0200298{
299 return INTEL_INFO(dev_priv)->gen >= 8 ? GEN8_GT_IER(2) : GEN6_PMIER;
300}
301
Paulo Zanoniedbfdb42013-08-06 18:57:13 -0300302/**
303 * snb_update_pm_irq - update GEN6_PMIMR
304 * @dev_priv: driver private
305 * @interrupt_mask: mask of interrupt bits to update
306 * @enabled_irq_mask: mask of interrupt bits to enable
307 */
308static void snb_update_pm_irq(struct drm_i915_private *dev_priv,
309 uint32_t interrupt_mask,
310 uint32_t enabled_irq_mask)
311{
Paulo Zanoni605cd252013-08-06 18:57:15 -0300312 uint32_t new_val;
Paulo Zanoniedbfdb42013-08-06 18:57:13 -0300313
Daniel Vetter15a17aa2014-12-08 16:30:00 +0100314 WARN_ON(enabled_irq_mask & ~interrupt_mask);
315
Paulo Zanoniedbfdb42013-08-06 18:57:13 -0300316 assert_spin_locked(&dev_priv->irq_lock);
317
Paulo Zanoni605cd252013-08-06 18:57:15 -0300318 new_val = dev_priv->pm_irq_mask;
Paulo Zanonif52ecbc2013-08-06 18:57:14 -0300319 new_val &= ~interrupt_mask;
320 new_val |= (~enabled_irq_mask & interrupt_mask);
321
Paulo Zanoni605cd252013-08-06 18:57:15 -0300322 if (new_val != dev_priv->pm_irq_mask) {
323 dev_priv->pm_irq_mask = new_val;
Imre Deaka72fbc32014-11-05 20:48:31 +0200324 I915_WRITE(gen6_pm_imr(dev_priv), dev_priv->pm_irq_mask);
325 POSTING_READ(gen6_pm_imr(dev_priv));
Paulo Zanonif52ecbc2013-08-06 18:57:14 -0300326 }
Paulo Zanoniedbfdb42013-08-06 18:57:13 -0300327}
328
Daniel Vetter480c8032014-07-16 09:49:40 +0200329void gen6_enable_pm_irq(struct drm_i915_private *dev_priv, uint32_t mask)
Paulo Zanoniedbfdb42013-08-06 18:57:13 -0300330{
Imre Deak9939fba2014-11-20 23:01:47 +0200331 if (WARN_ON(!intel_irqs_enabled(dev_priv)))
332 return;
333
Paulo Zanoniedbfdb42013-08-06 18:57:13 -0300334 snb_update_pm_irq(dev_priv, mask, mask);
335}
336
Imre Deak9939fba2014-11-20 23:01:47 +0200337static void __gen6_disable_pm_irq(struct drm_i915_private *dev_priv,
338 uint32_t mask)
339{
340 snb_update_pm_irq(dev_priv, mask, 0);
341}
342
Daniel Vetter480c8032014-07-16 09:49:40 +0200343void gen6_disable_pm_irq(struct drm_i915_private *dev_priv, uint32_t mask)
Paulo Zanoniedbfdb42013-08-06 18:57:13 -0300344{
Imre Deak9939fba2014-11-20 23:01:47 +0200345 if (WARN_ON(!intel_irqs_enabled(dev_priv)))
346 return;
347
348 __gen6_disable_pm_irq(dev_priv, mask);
Paulo Zanoniedbfdb42013-08-06 18:57:13 -0300349}
350
Imre Deak3cc134e2014-11-19 15:30:03 +0200351void gen6_reset_rps_interrupts(struct drm_device *dev)
352{
353 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjäläf0f59a02015-11-18 15:33:26 +0200354 i915_reg_t reg = gen6_pm_iir(dev_priv);
Imre Deak3cc134e2014-11-19 15:30:03 +0200355
356 spin_lock_irq(&dev_priv->irq_lock);
357 I915_WRITE(reg, dev_priv->pm_rps_events);
358 I915_WRITE(reg, dev_priv->pm_rps_events);
359 POSTING_READ(reg);
Imre Deak096fad92015-03-23 19:11:35 +0200360 dev_priv->rps.pm_iir = 0;
Imre Deak3cc134e2014-11-19 15:30:03 +0200361 spin_unlock_irq(&dev_priv->irq_lock);
362}
363
Imre Deakb900b942014-11-05 20:48:48 +0200364void gen6_enable_rps_interrupts(struct drm_device *dev)
365{
366 struct drm_i915_private *dev_priv = dev->dev_private;
367
368 spin_lock_irq(&dev_priv->irq_lock);
Imre Deak78e68d32014-12-15 18:59:27 +0200369
Imre Deakb900b942014-11-05 20:48:48 +0200370 WARN_ON(dev_priv->rps.pm_iir);
Imre Deak3cc134e2014-11-19 15:30:03 +0200371 WARN_ON(I915_READ(gen6_pm_iir(dev_priv)) & dev_priv->pm_rps_events);
Imre Deakd4d70aa2014-11-19 15:30:04 +0200372 dev_priv->rps.interrupts_enabled = true;
Imre Deak78e68d32014-12-15 18:59:27 +0200373 I915_WRITE(gen6_pm_ier(dev_priv), I915_READ(gen6_pm_ier(dev_priv)) |
374 dev_priv->pm_rps_events);
Imre Deakb900b942014-11-05 20:48:48 +0200375 gen6_enable_pm_irq(dev_priv, dev_priv->pm_rps_events);
Imre Deak78e68d32014-12-15 18:59:27 +0200376
Imre Deakb900b942014-11-05 20:48:48 +0200377 spin_unlock_irq(&dev_priv->irq_lock);
378}
379
Imre Deak59d02a12014-12-19 19:33:26 +0200380u32 gen6_sanitize_rps_pm_mask(struct drm_i915_private *dev_priv, u32 mask)
381{
382 /*
Imre Deakf24eeb12014-12-19 19:33:27 +0200383 * SNB,IVB can while VLV,CHV may hard hang on looping batchbuffer
Imre Deak59d02a12014-12-19 19:33:26 +0200384 * if GEN6_PM_UP_EI_EXPIRED is masked.
Imre Deakf24eeb12014-12-19 19:33:27 +0200385 *
386 * TODO: verify if this can be reproduced on VLV,CHV.
Imre Deak59d02a12014-12-19 19:33:26 +0200387 */
388 if (INTEL_INFO(dev_priv)->gen <= 7 && !IS_HASWELL(dev_priv))
389 mask &= ~GEN6_PM_RP_UP_EI_EXPIRED;
390
391 if (INTEL_INFO(dev_priv)->gen >= 8)
392 mask &= ~GEN8_PMINTR_REDIRECT_TO_NON_DISP;
393
394 return mask;
395}
396
Imre Deakb900b942014-11-05 20:48:48 +0200397void gen6_disable_rps_interrupts(struct drm_device *dev)
398{
399 struct drm_i915_private *dev_priv = dev->dev_private;
400
Imre Deakd4d70aa2014-11-19 15:30:04 +0200401 spin_lock_irq(&dev_priv->irq_lock);
402 dev_priv->rps.interrupts_enabled = false;
403 spin_unlock_irq(&dev_priv->irq_lock);
404
405 cancel_work_sync(&dev_priv->rps.work);
406
Imre Deak9939fba2014-11-20 23:01:47 +0200407 spin_lock_irq(&dev_priv->irq_lock);
408
Imre Deak59d02a12014-12-19 19:33:26 +0200409 I915_WRITE(GEN6_PMINTRMSK, gen6_sanitize_rps_pm_mask(dev_priv, ~0));
Imre Deak9939fba2014-11-20 23:01:47 +0200410
411 __gen6_disable_pm_irq(dev_priv, dev_priv->pm_rps_events);
Imre Deakb900b942014-11-05 20:48:48 +0200412 I915_WRITE(gen6_pm_ier(dev_priv), I915_READ(gen6_pm_ier(dev_priv)) &
413 ~dev_priv->pm_rps_events);
Imre Deak58072cc2015-03-23 19:11:34 +0200414
415 spin_unlock_irq(&dev_priv->irq_lock);
416
417 synchronize_irq(dev->irq);
Imre Deakb900b942014-11-05 20:48:48 +0200418}
419
Ben Widawsky09610212014-05-15 20:58:08 +0300420/**
Ville Syrjälä3a3b3c72015-08-27 23:56:06 +0300421 * bdw_update_port_irq - update DE port interrupt
422 * @dev_priv: driver private
423 * @interrupt_mask: mask of interrupt bits to update
424 * @enabled_irq_mask: mask of interrupt bits to enable
425 */
426static void bdw_update_port_irq(struct drm_i915_private *dev_priv,
427 uint32_t interrupt_mask,
428 uint32_t enabled_irq_mask)
429{
430 uint32_t new_val;
431 uint32_t old_val;
432
433 assert_spin_locked(&dev_priv->irq_lock);
434
435 WARN_ON(enabled_irq_mask & ~interrupt_mask);
436
437 if (WARN_ON(!intel_irqs_enabled(dev_priv)))
438 return;
439
440 old_val = I915_READ(GEN8_DE_PORT_IMR);
441
442 new_val = old_val;
443 new_val &= ~interrupt_mask;
444 new_val |= (~enabled_irq_mask & interrupt_mask);
445
446 if (new_val != old_val) {
447 I915_WRITE(GEN8_DE_PORT_IMR, new_val);
448 POSTING_READ(GEN8_DE_PORT_IMR);
449 }
450}
451
452/**
Daniel Vetterfee884e2013-07-04 23:35:21 +0200453 * ibx_display_interrupt_update - update SDEIMR
454 * @dev_priv: driver private
455 * @interrupt_mask: mask of interrupt bits to update
456 * @enabled_irq_mask: mask of interrupt bits to enable
457 */
Daniel Vetter47339cd2014-09-30 10:56:46 +0200458void ibx_display_interrupt_update(struct drm_i915_private *dev_priv,
459 uint32_t interrupt_mask,
460 uint32_t enabled_irq_mask)
Daniel Vetterfee884e2013-07-04 23:35:21 +0200461{
462 uint32_t sdeimr = I915_READ(SDEIMR);
463 sdeimr &= ~interrupt_mask;
464 sdeimr |= (~enabled_irq_mask & interrupt_mask);
465
Daniel Vetter15a17aa2014-12-08 16:30:00 +0100466 WARN_ON(enabled_irq_mask & ~interrupt_mask);
467
Daniel Vetterfee884e2013-07-04 23:35:21 +0200468 assert_spin_locked(&dev_priv->irq_lock);
469
Jesse Barnes9df7575f2014-06-20 09:29:20 -0700470 if (WARN_ON(!intel_irqs_enabled(dev_priv)))
Paulo Zanonic67a4702013-08-19 13:18:09 -0300471 return;
Paulo Zanonic67a4702013-08-19 13:18:09 -0300472
Daniel Vetterfee884e2013-07-04 23:35:21 +0200473 I915_WRITE(SDEIMR, sdeimr);
474 POSTING_READ(SDEIMR);
475}
Paulo Zanoni86642812013-04-12 17:57:57 -0300476
Daniel Vetterb5ea6422014-03-02 21:18:00 +0100477static void
Imre Deak755e9012014-02-10 18:42:47 +0200478__i915_enable_pipestat(struct drm_i915_private *dev_priv, enum pipe pipe,
479 u32 enable_mask, u32 status_mask)
Keith Packard7c463582008-11-04 02:03:27 -0800480{
Ville Syrjäläf0f59a02015-11-18 15:33:26 +0200481 i915_reg_t reg = PIPESTAT(pipe);
Imre Deak755e9012014-02-10 18:42:47 +0200482 u32 pipestat = I915_READ(reg) & PIPESTAT_INT_ENABLE_MASK;
Keith Packard7c463582008-11-04 02:03:27 -0800483
Daniel Vetterb79480b2013-06-27 17:52:10 +0200484 assert_spin_locked(&dev_priv->irq_lock);
Daniel Vetterd518ce52014-08-27 10:43:37 +0200485 WARN_ON(!intel_irqs_enabled(dev_priv));
Daniel Vetterb79480b2013-06-27 17:52:10 +0200486
Ville Syrjälä04feced2014-04-03 13:28:33 +0300487 if (WARN_ONCE(enable_mask & ~PIPESTAT_INT_ENABLE_MASK ||
488 status_mask & ~PIPESTAT_INT_STATUS_MASK,
489 "pipe %c: enable_mask=0x%x, status_mask=0x%x\n",
490 pipe_name(pipe), enable_mask, status_mask))
Imre Deak755e9012014-02-10 18:42:47 +0200491 return;
492
493 if ((pipestat & enable_mask) == enable_mask)
Ville Syrjälä46c06a32013-02-20 21:16:18 +0200494 return;
495
Imre Deak91d181d2014-02-10 18:42:49 +0200496 dev_priv->pipestat_irq_mask[pipe] |= status_mask;
497
Ville Syrjälä46c06a32013-02-20 21:16:18 +0200498 /* Enable the interrupt, clear any pending status */
Imre Deak755e9012014-02-10 18:42:47 +0200499 pipestat |= enable_mask | status_mask;
Ville Syrjälä46c06a32013-02-20 21:16:18 +0200500 I915_WRITE(reg, pipestat);
501 POSTING_READ(reg);
Keith Packard7c463582008-11-04 02:03:27 -0800502}
503
Daniel Vetterb5ea6422014-03-02 21:18:00 +0100504static void
Imre Deak755e9012014-02-10 18:42:47 +0200505__i915_disable_pipestat(struct drm_i915_private *dev_priv, enum pipe pipe,
506 u32 enable_mask, u32 status_mask)
Keith Packard7c463582008-11-04 02:03:27 -0800507{
Ville Syrjäläf0f59a02015-11-18 15:33:26 +0200508 i915_reg_t reg = PIPESTAT(pipe);
Imre Deak755e9012014-02-10 18:42:47 +0200509 u32 pipestat = I915_READ(reg) & PIPESTAT_INT_ENABLE_MASK;
Keith Packard7c463582008-11-04 02:03:27 -0800510
Daniel Vetterb79480b2013-06-27 17:52:10 +0200511 assert_spin_locked(&dev_priv->irq_lock);
Daniel Vetterd518ce52014-08-27 10:43:37 +0200512 WARN_ON(!intel_irqs_enabled(dev_priv));
Daniel Vetterb79480b2013-06-27 17:52:10 +0200513
Ville Syrjälä04feced2014-04-03 13:28:33 +0300514 if (WARN_ONCE(enable_mask & ~PIPESTAT_INT_ENABLE_MASK ||
515 status_mask & ~PIPESTAT_INT_STATUS_MASK,
516 "pipe %c: enable_mask=0x%x, status_mask=0x%x\n",
517 pipe_name(pipe), enable_mask, status_mask))
Ville Syrjälä46c06a32013-02-20 21:16:18 +0200518 return;
519
Imre Deak755e9012014-02-10 18:42:47 +0200520 if ((pipestat & enable_mask) == 0)
521 return;
522
Imre Deak91d181d2014-02-10 18:42:49 +0200523 dev_priv->pipestat_irq_mask[pipe] &= ~status_mask;
524
Imre Deak755e9012014-02-10 18:42:47 +0200525 pipestat &= ~enable_mask;
Ville Syrjälä46c06a32013-02-20 21:16:18 +0200526 I915_WRITE(reg, pipestat);
527 POSTING_READ(reg);
Keith Packard7c463582008-11-04 02:03:27 -0800528}
529
Imre Deak10c59c52014-02-10 18:42:48 +0200530static u32 vlv_get_pipestat_enable_mask(struct drm_device *dev, u32 status_mask)
531{
532 u32 enable_mask = status_mask << 16;
533
534 /*
Ville Syrjälä724a6902014-04-09 13:28:48 +0300535 * On pipe A we don't support the PSR interrupt yet,
536 * on pipe B and C the same bit MBZ.
Imre Deak10c59c52014-02-10 18:42:48 +0200537 */
538 if (WARN_ON_ONCE(status_mask & PIPE_A_PSR_STATUS_VLV))
539 return 0;
Ville Syrjälä724a6902014-04-09 13:28:48 +0300540 /*
541 * On pipe B and C we don't support the PSR interrupt yet, on pipe
542 * A the same bit is for perf counters which we don't use either.
543 */
544 if (WARN_ON_ONCE(status_mask & PIPE_B_PSR_STATUS_VLV))
545 return 0;
Imre Deak10c59c52014-02-10 18:42:48 +0200546
547 enable_mask &= ~(PIPE_FIFO_UNDERRUN_STATUS |
548 SPRITE0_FLIP_DONE_INT_EN_VLV |
549 SPRITE1_FLIP_DONE_INT_EN_VLV);
550 if (status_mask & SPRITE0_FLIP_DONE_INT_STATUS_VLV)
551 enable_mask |= SPRITE0_FLIP_DONE_INT_EN_VLV;
552 if (status_mask & SPRITE1_FLIP_DONE_INT_STATUS_VLV)
553 enable_mask |= SPRITE1_FLIP_DONE_INT_EN_VLV;
554
555 return enable_mask;
556}
557
Imre Deak755e9012014-02-10 18:42:47 +0200558void
559i915_enable_pipestat(struct drm_i915_private *dev_priv, enum pipe pipe,
560 u32 status_mask)
561{
562 u32 enable_mask;
563
Imre Deak10c59c52014-02-10 18:42:48 +0200564 if (IS_VALLEYVIEW(dev_priv->dev))
565 enable_mask = vlv_get_pipestat_enable_mask(dev_priv->dev,
566 status_mask);
567 else
568 enable_mask = status_mask << 16;
Imre Deak755e9012014-02-10 18:42:47 +0200569 __i915_enable_pipestat(dev_priv, pipe, enable_mask, status_mask);
570}
571
572void
573i915_disable_pipestat(struct drm_i915_private *dev_priv, enum pipe pipe,
574 u32 status_mask)
575{
576 u32 enable_mask;
577
Imre Deak10c59c52014-02-10 18:42:48 +0200578 if (IS_VALLEYVIEW(dev_priv->dev))
579 enable_mask = vlv_get_pipestat_enable_mask(dev_priv->dev,
580 status_mask);
581 else
582 enable_mask = status_mask << 16;
Imre Deak755e9012014-02-10 18:42:47 +0200583 __i915_disable_pipestat(dev_priv, pipe, enable_mask, status_mask);
584}
585
=?utf-8?q?Michel_D=C3=A4nzer?=a6b54f32006-10-24 23:37:43 +1000586/**
Jani Nikulaf49e38d2013-04-29 13:02:54 +0300587 * i915_enable_asle_pipestat - enable ASLE pipestat for OpRegion
Javier Martinez Canillas468f9d22015-10-08 09:54:44 +0200588 * @dev: drm device
Zhao Yakui01c66882009-10-28 05:10:00 +0000589 */
Jani Nikulaf49e38d2013-04-29 13:02:54 +0300590static void i915_enable_asle_pipestat(struct drm_device *dev)
Zhao Yakui01c66882009-10-28 05:10:00 +0000591{
Jani Nikula2d1013d2014-03-31 14:27:17 +0300592 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000593
Jani Nikulaf49e38d2013-04-29 13:02:54 +0300594 if (!dev_priv->opregion.asle || !IS_MOBILE(dev))
595 return;
596
Daniel Vetter13321782014-09-15 14:55:29 +0200597 spin_lock_irq(&dev_priv->irq_lock);
Zhao Yakui01c66882009-10-28 05:10:00 +0000598
Imre Deak755e9012014-02-10 18:42:47 +0200599 i915_enable_pipestat(dev_priv, PIPE_B, PIPE_LEGACY_BLC_EVENT_STATUS);
Jani Nikulaf8987802013-04-29 13:02:53 +0300600 if (INTEL_INFO(dev)->gen >= 4)
Daniel Vetter3b6c42e2013-10-21 18:04:35 +0200601 i915_enable_pipestat(dev_priv, PIPE_A,
Imre Deak755e9012014-02-10 18:42:47 +0200602 PIPE_LEGACY_BLC_EVENT_STATUS);
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000603
Daniel Vetter13321782014-09-15 14:55:29 +0200604 spin_unlock_irq(&dev_priv->irq_lock);
Zhao Yakui01c66882009-10-28 05:10:00 +0000605}
606
Ville Syrjäläf75f3742014-05-15 20:20:36 +0300607/*
608 * This timing diagram depicts the video signal in and
609 * around the vertical blanking period.
610 *
611 * Assumptions about the fictitious mode used in this example:
612 * vblank_start >= 3
613 * vsync_start = vblank_start + 1
614 * vsync_end = vblank_start + 2
615 * vtotal = vblank_start + 3
616 *
617 * start of vblank:
618 * latch double buffered registers
619 * increment frame counter (ctg+)
620 * generate start of vblank interrupt (gen4+)
621 * |
622 * | frame start:
623 * | generate frame start interrupt (aka. vblank interrupt) (gmch)
624 * | may be shifted forward 1-3 extra lines via PIPECONF
625 * | |
626 * | | start of vsync:
627 * | | generate vsync interrupt
628 * | | |
629 * ___xxxx___ ___xxxx___ ___xxxx___ ___xxxx___ ___xxxx___ ___xxxx
630 * . \hs/ . \hs/ \hs/ \hs/ . \hs/
631 * ----va---> <-----------------vb--------------------> <--------va-------------
632 * | | <----vs-----> |
633 * -vbs-----> <---vbs+1---> <---vbs+2---> <-----0-----> <-----1-----> <-----2--- (scanline counter gen2)
634 * -vbs-2---> <---vbs-1---> <---vbs-----> <---vbs+1---> <---vbs+2---> <-----0--- (scanline counter gen3+)
635 * -vbs-2---> <---vbs-2---> <---vbs-1---> <---vbs-----> <---vbs+1---> <---vbs+2- (scanline counter hsw+ hdmi)
636 * | | |
637 * last visible pixel first visible pixel
638 * | increment frame counter (gen3/4)
639 * pixel counter = vblank_start * htotal pixel counter = 0 (gen3/4)
640 *
641 * x = horizontal active
642 * _ = horizontal blanking
643 * hs = horizontal sync
644 * va = vertical active
645 * vb = vertical blanking
646 * vs = vertical sync
647 * vbs = vblank_start (number)
648 *
649 * Summary:
650 * - most events happen at the start of horizontal sync
651 * - frame start happens at the start of horizontal blank, 1-4 lines
652 * (depending on PIPECONF settings) after the start of vblank
653 * - gen3/4 pixel and frame counter are synchronized with the start
654 * of horizontal active on the first line of vertical active
655 */
656
Thierry Reding88e72712015-09-24 18:35:31 +0200657static u32 i8xx_get_vblank_counter(struct drm_device *dev, unsigned int pipe)
Ville Syrjälä4cdb83e2013-10-11 21:52:44 +0300658{
659 /* Gen2 doesn't have a hardware frame counter */
660 return 0;
661}
662
Keith Packard42f52ef2008-10-18 19:39:29 -0700663/* Called from drm generic code, passed a 'crtc', which
664 * we use as a pipe index
665 */
Thierry Reding88e72712015-09-24 18:35:31 +0200666static u32 i915_get_vblank_counter(struct drm_device *dev, unsigned int pipe)
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700667{
Jani Nikula2d1013d2014-03-31 14:27:17 +0300668 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjäläf0f59a02015-11-18 15:33:26 +0200669 i915_reg_t high_frame, low_frame;
Ville Syrjälä0b2a8e02014-04-29 13:35:50 +0300670 u32 high1, high2, low, pixel, vbl_start, hsync_start, htotal;
Daniel Vetterf3a5c3f2015-02-13 21:03:44 +0100671 struct intel_crtc *intel_crtc =
672 to_intel_crtc(dev_priv->pipe_to_crtc_mapping[pipe]);
Maarten Lankhorstfc467a222015-06-01 12:50:07 +0200673 const struct drm_display_mode *mode = &intel_crtc->base.hwmode;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700674
Daniel Vetterf3a5c3f2015-02-13 21:03:44 +0100675 htotal = mode->crtc_htotal;
676 hsync_start = mode->crtc_hsync_start;
677 vbl_start = mode->crtc_vblank_start;
678 if (mode->flags & DRM_MODE_FLAG_INTERLACE)
679 vbl_start = DIV_ROUND_UP(vbl_start, 2);
Ville Syrjälä391f75e2013-09-25 19:55:26 +0300680
Ville Syrjälä0b2a8e02014-04-29 13:35:50 +0300681 /* Convert to pixel count */
682 vbl_start *= htotal;
683
684 /* Start of vblank event occurs at start of hsync */
685 vbl_start -= htotal - hsync_start;
686
Jesse Barnes9db4a9c2011-02-07 12:26:52 -0800687 high_frame = PIPEFRAME(pipe);
688 low_frame = PIPEFRAMEPIXEL(pipe);
Chris Wilson5eddb702010-09-11 13:48:45 +0100689
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700690 /*
691 * High & low register fields aren't synchronized, so make sure
692 * we get a low value that's stable across two reads of the high
693 * register.
694 */
695 do {
Chris Wilson5eddb702010-09-11 13:48:45 +0100696 high1 = I915_READ(high_frame) & PIPE_FRAME_HIGH_MASK;
Ville Syrjälä391f75e2013-09-25 19:55:26 +0300697 low = I915_READ(low_frame);
Chris Wilson5eddb702010-09-11 13:48:45 +0100698 high2 = I915_READ(high_frame) & PIPE_FRAME_HIGH_MASK;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700699 } while (high1 != high2);
700
Chris Wilson5eddb702010-09-11 13:48:45 +0100701 high1 >>= PIPE_FRAME_HIGH_SHIFT;
Ville Syrjälä391f75e2013-09-25 19:55:26 +0300702 pixel = low & PIPE_PIXEL_MASK;
Chris Wilson5eddb702010-09-11 13:48:45 +0100703 low >>= PIPE_FRAME_LOW_SHIFT;
Ville Syrjälä391f75e2013-09-25 19:55:26 +0300704
705 /*
706 * The frame counter increments at beginning of active.
707 * Cook up a vblank counter by also checking the pixel
708 * counter against vblank start.
709 */
Ville Syrjäläedc08d02013-11-06 13:56:27 -0200710 return (((high1 << 8) | low) + (pixel >= vbl_start)) & 0xffffff;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700711}
712
Dave Airlie974e59b2015-10-30 09:45:33 +1000713static u32 g4x_get_vblank_counter(struct drm_device *dev, unsigned int pipe)
Jesse Barnes9880b7a2009-02-06 10:22:41 -0800714{
Jani Nikula2d1013d2014-03-31 14:27:17 +0300715 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes9880b7a2009-02-06 10:22:41 -0800716
Ville Syrjälä649636e2015-09-22 19:50:01 +0300717 return I915_READ(PIPE_FRMCOUNT_G4X(pipe));
Jesse Barnes9880b7a2009-02-06 10:22:41 -0800718}
719
Ville Syrjälä75aa3f62015-10-22 15:34:56 +0300720/* I915_READ_FW, only for fast reads of display block, no need for forcewake etc. */
Ville Syrjäläa225f072014-04-29 13:35:45 +0300721static int __intel_get_crtc_scanline(struct intel_crtc *crtc)
722{
723 struct drm_device *dev = crtc->base.dev;
724 struct drm_i915_private *dev_priv = dev->dev_private;
Maarten Lankhorstfc467a222015-06-01 12:50:07 +0200725 const struct drm_display_mode *mode = &crtc->base.hwmode;
Ville Syrjäläa225f072014-04-29 13:35:45 +0300726 enum pipe pipe = crtc->pipe;
Ville Syrjälä80715b22014-05-15 20:23:23 +0300727 int position, vtotal;
Ville Syrjäläa225f072014-04-29 13:35:45 +0300728
Ville Syrjälä80715b22014-05-15 20:23:23 +0300729 vtotal = mode->crtc_vtotal;
Ville Syrjäläa225f072014-04-29 13:35:45 +0300730 if (mode->flags & DRM_MODE_FLAG_INTERLACE)
731 vtotal /= 2;
732
733 if (IS_GEN2(dev))
Ville Syrjälä75aa3f62015-10-22 15:34:56 +0300734 position = I915_READ_FW(PIPEDSL(pipe)) & DSL_LINEMASK_GEN2;
Ville Syrjäläa225f072014-04-29 13:35:45 +0300735 else
Ville Syrjälä75aa3f62015-10-22 15:34:56 +0300736 position = I915_READ_FW(PIPEDSL(pipe)) & DSL_LINEMASK_GEN3;
Ville Syrjäläa225f072014-04-29 13:35:45 +0300737
738 /*
Jesse Barnes41b578f2015-09-22 12:15:54 -0700739 * On HSW, the DSL reg (0x70000) appears to return 0 if we
740 * read it just before the start of vblank. So try it again
741 * so we don't accidentally end up spanning a vblank frame
742 * increment, causing the pipe_update_end() code to squak at us.
743 *
744 * The nature of this problem means we can't simply check the ISR
745 * bit and return the vblank start value; nor can we use the scanline
746 * debug register in the transcoder as it appears to have the same
747 * problem. We may need to extend this to include other platforms,
748 * but so far testing only shows the problem on HSW.
749 */
Maarten Lankhorstb2916812015-11-03 08:31:41 +0100750 if (HAS_DDI(dev) && !position) {
Jesse Barnes41b578f2015-09-22 12:15:54 -0700751 int i, temp;
752
753 for (i = 0; i < 100; i++) {
754 udelay(1);
755 temp = __raw_i915_read32(dev_priv, PIPEDSL(pipe)) &
756 DSL_LINEMASK_GEN3;
757 if (temp != position) {
758 position = temp;
759 break;
760 }
761 }
762 }
763
764 /*
Ville Syrjälä80715b22014-05-15 20:23:23 +0300765 * See update_scanline_offset() for the details on the
766 * scanline_offset adjustment.
Ville Syrjäläa225f072014-04-29 13:35:45 +0300767 */
Ville Syrjälä80715b22014-05-15 20:23:23 +0300768 return (position + crtc->scanline_offset) % vtotal;
Ville Syrjäläa225f072014-04-29 13:35:45 +0300769}
770
Thierry Reding88e72712015-09-24 18:35:31 +0200771static int i915_get_crtc_scanoutpos(struct drm_device *dev, unsigned int pipe,
Ville Syrjäläabca9e42013-10-28 20:50:48 +0200772 unsigned int flags, int *vpos, int *hpos,
Ville Syrjälä3bb403b2015-09-14 22:43:44 +0300773 ktime_t *stime, ktime_t *etime,
774 const struct drm_display_mode *mode)
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100775{
Ville Syrjäläc2baf4b2013-09-23 14:48:50 +0300776 struct drm_i915_private *dev_priv = dev->dev_private;
777 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
778 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Ville Syrjälä3aa18df2013-10-11 19:10:32 +0300779 int position;
Ville Syrjälä78e8fc62014-04-29 13:35:44 +0300780 int vbl_start, vbl_end, hsync_start, htotal, vtotal;
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100781 bool in_vbl = true;
782 int ret = 0;
Mario Kleinerad3543e2013-10-30 05:13:08 +0100783 unsigned long irqflags;
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100784
Maarten Lankhorstfc467a222015-06-01 12:50:07 +0200785 if (WARN_ON(!mode->crtc_clock)) {
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100786 DRM_DEBUG_DRIVER("trying to get scanoutpos for disabled "
Jesse Barnes9db4a9c2011-02-07 12:26:52 -0800787 "pipe %c\n", pipe_name(pipe));
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100788 return 0;
789 }
790
Ville Syrjäläc2baf4b2013-09-23 14:48:50 +0300791 htotal = mode->crtc_htotal;
Ville Syrjälä78e8fc62014-04-29 13:35:44 +0300792 hsync_start = mode->crtc_hsync_start;
Ville Syrjäläc2baf4b2013-09-23 14:48:50 +0300793 vtotal = mode->crtc_vtotal;
794 vbl_start = mode->crtc_vblank_start;
795 vbl_end = mode->crtc_vblank_end;
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100796
Ville Syrjäläd31faf62013-10-28 16:31:41 +0200797 if (mode->flags & DRM_MODE_FLAG_INTERLACE) {
798 vbl_start = DIV_ROUND_UP(vbl_start, 2);
799 vbl_end /= 2;
800 vtotal /= 2;
801 }
802
Ville Syrjäläc2baf4b2013-09-23 14:48:50 +0300803 ret |= DRM_SCANOUTPOS_VALID | DRM_SCANOUTPOS_ACCURATE;
804
Mario Kleinerad3543e2013-10-30 05:13:08 +0100805 /*
806 * Lock uncore.lock, as we will do multiple timing critical raw
807 * register reads, potentially with preemption disabled, so the
808 * following code must not block on uncore.lock.
809 */
810 spin_lock_irqsave(&dev_priv->uncore.lock, irqflags);
Ville Syrjälä78e8fc62014-04-29 13:35:44 +0300811
Mario Kleinerad3543e2013-10-30 05:13:08 +0100812 /* preempt_disable_rt() should go right here in PREEMPT_RT patchset. */
813
814 /* Get optional system timestamp before query. */
815 if (stime)
816 *stime = ktime_get();
817
Ville Syrjälä7c06b082013-10-11 21:52:43 +0300818 if (IS_GEN2(dev) || IS_G4X(dev) || INTEL_INFO(dev)->gen >= 5) {
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100819 /* No obvious pixelcount register. Only query vertical
820 * scanout position from Display scan line register.
821 */
Ville Syrjäläa225f072014-04-29 13:35:45 +0300822 position = __intel_get_crtc_scanline(intel_crtc);
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100823 } else {
824 /* Have access to pixelcount since start of frame.
825 * We can split this into vertical and horizontal
826 * scanout position.
827 */
Ville Syrjälä75aa3f62015-10-22 15:34:56 +0300828 position = (I915_READ_FW(PIPEFRAMEPIXEL(pipe)) & PIPE_PIXEL_MASK) >> PIPE_PIXEL_SHIFT;
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100829
Ville Syrjälä3aa18df2013-10-11 19:10:32 +0300830 /* convert to pixel counts */
831 vbl_start *= htotal;
832 vbl_end *= htotal;
833 vtotal *= htotal;
Ville Syrjälä78e8fc62014-04-29 13:35:44 +0300834
835 /*
Ville Syrjälä7e78f1cb2014-04-29 13:35:49 +0300836 * In interlaced modes, the pixel counter counts all pixels,
837 * so one field will have htotal more pixels. In order to avoid
838 * the reported position from jumping backwards when the pixel
839 * counter is beyond the length of the shorter field, just
840 * clamp the position the length of the shorter field. This
841 * matches how the scanline counter based position works since
842 * the scanline counter doesn't count the two half lines.
843 */
844 if (position >= vtotal)
845 position = vtotal - 1;
846
847 /*
Ville Syrjälä78e8fc62014-04-29 13:35:44 +0300848 * Start of vblank interrupt is triggered at start of hsync,
849 * just prior to the first active line of vblank. However we
850 * consider lines to start at the leading edge of horizontal
851 * active. So, should we get here before we've crossed into
852 * the horizontal active of the first line in vblank, we would
853 * not set the DRM_SCANOUTPOS_INVBL flag. In order to fix that,
854 * always add htotal-hsync_start to the current pixel position.
855 */
856 position = (position + htotal - hsync_start) % vtotal;
Ville Syrjälä3aa18df2013-10-11 19:10:32 +0300857 }
858
Mario Kleinerad3543e2013-10-30 05:13:08 +0100859 /* Get optional system timestamp after query. */
860 if (etime)
861 *etime = ktime_get();
862
863 /* preempt_enable_rt() should go right here in PREEMPT_RT patchset. */
864
865 spin_unlock_irqrestore(&dev_priv->uncore.lock, irqflags);
866
Ville Syrjälä3aa18df2013-10-11 19:10:32 +0300867 in_vbl = position >= vbl_start && position < vbl_end;
868
869 /*
870 * While in vblank, position will be negative
871 * counting up towards 0 at vbl_end. And outside
872 * vblank, position will be positive counting
873 * up since vbl_end.
874 */
875 if (position >= vbl_start)
876 position -= vbl_end;
877 else
878 position += vtotal - vbl_end;
879
Ville Syrjälä7c06b082013-10-11 21:52:43 +0300880 if (IS_GEN2(dev) || IS_G4X(dev) || INTEL_INFO(dev)->gen >= 5) {
Ville Syrjälä3aa18df2013-10-11 19:10:32 +0300881 *vpos = position;
882 *hpos = 0;
883 } else {
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100884 *vpos = position / htotal;
885 *hpos = position - (*vpos * htotal);
886 }
887
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100888 /* In vblank? */
889 if (in_vbl)
Daniel Vetter3d3cbd82014-09-10 17:36:11 +0200890 ret |= DRM_SCANOUTPOS_IN_VBLANK;
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100891
892 return ret;
893}
894
Ville Syrjäläa225f072014-04-29 13:35:45 +0300895int intel_get_crtc_scanline(struct intel_crtc *crtc)
896{
897 struct drm_i915_private *dev_priv = crtc->base.dev->dev_private;
898 unsigned long irqflags;
899 int position;
900
901 spin_lock_irqsave(&dev_priv->uncore.lock, irqflags);
902 position = __intel_get_crtc_scanline(crtc);
903 spin_unlock_irqrestore(&dev_priv->uncore.lock, irqflags);
904
905 return position;
906}
907
Thierry Reding88e72712015-09-24 18:35:31 +0200908static int i915_get_vblank_timestamp(struct drm_device *dev, unsigned int pipe,
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100909 int *max_error,
910 struct timeval *vblank_time,
911 unsigned flags)
912{
Chris Wilson4041b852011-01-22 10:07:56 +0000913 struct drm_crtc *crtc;
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100914
Thierry Reding88e72712015-09-24 18:35:31 +0200915 if (pipe >= INTEL_INFO(dev)->num_pipes) {
916 DRM_ERROR("Invalid crtc %u\n", pipe);
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100917 return -EINVAL;
918 }
919
920 /* Get drm_crtc to timestamp: */
Chris Wilson4041b852011-01-22 10:07:56 +0000921 crtc = intel_get_crtc_for_pipe(dev, pipe);
922 if (crtc == NULL) {
Thierry Reding88e72712015-09-24 18:35:31 +0200923 DRM_ERROR("Invalid crtc %u\n", pipe);
Chris Wilson4041b852011-01-22 10:07:56 +0000924 return -EINVAL;
925 }
926
Maarten Lankhorstfc467a222015-06-01 12:50:07 +0200927 if (!crtc->hwmode.crtc_clock) {
Thierry Reding88e72712015-09-24 18:35:31 +0200928 DRM_DEBUG_KMS("crtc %u is disabled\n", pipe);
Chris Wilson4041b852011-01-22 10:07:56 +0000929 return -EBUSY;
930 }
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100931
932 /* Helper routine in DRM core does all the work: */
Chris Wilson4041b852011-01-22 10:07:56 +0000933 return drm_calc_vbltimestamp_from_scanoutpos(dev, pipe, max_error,
934 vblank_time, flags,
Maarten Lankhorstfc467a222015-06-01 12:50:07 +0200935 &crtc->hwmode);
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100936}
937
Daniel Vetterd0ecd7e2013-07-04 23:35:25 +0200938static void ironlake_rps_change_irq_handler(struct drm_device *dev)
Jesse Barnesf97108d2010-01-29 11:27:07 -0800939{
Jani Nikula2d1013d2014-03-31 14:27:17 +0300940 struct drm_i915_private *dev_priv = dev->dev_private;
Matthew Garrettb5b72e82010-02-02 18:30:47 +0000941 u32 busy_up, busy_down, max_avg, min_avg;
Daniel Vetter92703882012-08-09 16:46:01 +0200942 u8 new_delay;
Daniel Vetter92703882012-08-09 16:46:01 +0200943
Daniel Vetterd0ecd7e2013-07-04 23:35:25 +0200944 spin_lock(&mchdev_lock);
Jesse Barnesf97108d2010-01-29 11:27:07 -0800945
Daniel Vetter73edd18f2012-08-08 23:35:37 +0200946 I915_WRITE16(MEMINTRSTS, I915_READ(MEMINTRSTS));
947
Daniel Vetter20e4d402012-08-08 23:35:39 +0200948 new_delay = dev_priv->ips.cur_delay;
Daniel Vetter92703882012-08-09 16:46:01 +0200949
Jesse Barnes7648fa92010-05-20 14:28:11 -0700950 I915_WRITE16(MEMINTRSTS, MEMINT_EVAL_CHG);
Matthew Garrettb5b72e82010-02-02 18:30:47 +0000951 busy_up = I915_READ(RCPREVBSYTUPAVG);
952 busy_down = I915_READ(RCPREVBSYTDNAVG);
Jesse Barnesf97108d2010-01-29 11:27:07 -0800953 max_avg = I915_READ(RCBMAXAVG);
954 min_avg = I915_READ(RCBMINAVG);
955
956 /* Handle RCS change request from hw */
Matthew Garrettb5b72e82010-02-02 18:30:47 +0000957 if (busy_up > max_avg) {
Daniel Vetter20e4d402012-08-08 23:35:39 +0200958 if (dev_priv->ips.cur_delay != dev_priv->ips.max_delay)
959 new_delay = dev_priv->ips.cur_delay - 1;
960 if (new_delay < dev_priv->ips.max_delay)
961 new_delay = dev_priv->ips.max_delay;
Matthew Garrettb5b72e82010-02-02 18:30:47 +0000962 } else if (busy_down < min_avg) {
Daniel Vetter20e4d402012-08-08 23:35:39 +0200963 if (dev_priv->ips.cur_delay != dev_priv->ips.min_delay)
964 new_delay = dev_priv->ips.cur_delay + 1;
965 if (new_delay > dev_priv->ips.min_delay)
966 new_delay = dev_priv->ips.min_delay;
Jesse Barnesf97108d2010-01-29 11:27:07 -0800967 }
968
Jesse Barnes7648fa92010-05-20 14:28:11 -0700969 if (ironlake_set_drps(dev, new_delay))
Daniel Vetter20e4d402012-08-08 23:35:39 +0200970 dev_priv->ips.cur_delay = new_delay;
Jesse Barnesf97108d2010-01-29 11:27:07 -0800971
Daniel Vetterd0ecd7e2013-07-04 23:35:25 +0200972 spin_unlock(&mchdev_lock);
Daniel Vetter92703882012-08-09 16:46:01 +0200973
Jesse Barnesf97108d2010-01-29 11:27:07 -0800974 return;
975}
976
Chris Wilson74cdb332015-04-07 16:21:05 +0100977static void notify_ring(struct intel_engine_cs *ring)
Chris Wilson549f7362010-10-19 11:19:32 +0100978{
Oscar Mateo93b0a4e2014-05-22 14:13:36 +0100979 if (!intel_ring_initialized(ring))
Chris Wilson475553d2011-01-20 09:52:56 +0000980 return;
981
John Harrisonbcfcc8b2014-12-05 13:49:36 +0000982 trace_i915_gem_request_notify(ring);
Chris Wilson9862e602011-01-04 22:22:17 +0000983
Chris Wilson549f7362010-10-19 11:19:32 +0100984 wake_up_all(&ring->irq_queue);
Chris Wilson549f7362010-10-19 11:19:32 +0100985}
986
Chris Wilson43cf3bf2015-03-18 09:48:22 +0000987static void vlv_c0_read(struct drm_i915_private *dev_priv,
988 struct intel_rps_ei *ei)
Deepak S31685c22014-07-03 17:33:01 -0400989{
Chris Wilson43cf3bf2015-03-18 09:48:22 +0000990 ei->cz_clock = vlv_punit_read(dev_priv, PUNIT_REG_CZ_TIMESTAMP);
991 ei->render_c0 = I915_READ(VLV_RENDER_C0_COUNT);
992 ei->media_c0 = I915_READ(VLV_MEDIA_C0_COUNT);
Deepak S31685c22014-07-03 17:33:01 -0400993}
994
Chris Wilson43cf3bf2015-03-18 09:48:22 +0000995static bool vlv_c0_above(struct drm_i915_private *dev_priv,
996 const struct intel_rps_ei *old,
997 const struct intel_rps_ei *now,
998 int threshold)
Deepak S31685c22014-07-03 17:33:01 -0400999{
Chris Wilson43cf3bf2015-03-18 09:48:22 +00001000 u64 time, c0;
Ville Syrjälä7bad74d2015-09-24 23:29:20 +03001001 unsigned int mul = 100;
Deepak S31685c22014-07-03 17:33:01 -04001002
Chris Wilson43cf3bf2015-03-18 09:48:22 +00001003 if (old->cz_clock == 0)
1004 return false;
Deepak S31685c22014-07-03 17:33:01 -04001005
Ville Syrjälä7bad74d2015-09-24 23:29:20 +03001006 if (I915_READ(VLV_COUNTER_CONTROL) & VLV_COUNT_RANGE_HIGH)
1007 mul <<= 8;
1008
Chris Wilson43cf3bf2015-03-18 09:48:22 +00001009 time = now->cz_clock - old->cz_clock;
Ville Syrjälä7bad74d2015-09-24 23:29:20 +03001010 time *= threshold * dev_priv->czclk_freq;
Deepak S31685c22014-07-03 17:33:01 -04001011
Chris Wilson43cf3bf2015-03-18 09:48:22 +00001012 /* Workload can be split between render + media, e.g. SwapBuffers
1013 * being blitted in X after being rendered in mesa. To account for
1014 * this we need to combine both engines into our activity counter.
1015 */
1016 c0 = now->render_c0 - old->render_c0;
1017 c0 += now->media_c0 - old->media_c0;
Ville Syrjälä7bad74d2015-09-24 23:29:20 +03001018 c0 *= mul * VLV_CZ_CLOCK_TO_MILLI_SEC;
Deepak S31685c22014-07-03 17:33:01 -04001019
Chris Wilson43cf3bf2015-03-18 09:48:22 +00001020 return c0 >= time;
1021}
Deepak S31685c22014-07-03 17:33:01 -04001022
Chris Wilson43cf3bf2015-03-18 09:48:22 +00001023void gen6_rps_reset_ei(struct drm_i915_private *dev_priv)
1024{
1025 vlv_c0_read(dev_priv, &dev_priv->rps.down_ei);
1026 dev_priv->rps.up_ei = dev_priv->rps.down_ei;
Chris Wilson43cf3bf2015-03-18 09:48:22 +00001027}
1028
1029static u32 vlv_wa_c0_ei(struct drm_i915_private *dev_priv, u32 pm_iir)
1030{
1031 struct intel_rps_ei now;
1032 u32 events = 0;
1033
Chris Wilson6f4b12f82015-03-18 09:48:23 +00001034 if ((pm_iir & (GEN6_PM_RP_DOWN_EI_EXPIRED | GEN6_PM_RP_UP_EI_EXPIRED)) == 0)
Chris Wilson43cf3bf2015-03-18 09:48:22 +00001035 return 0;
1036
1037 vlv_c0_read(dev_priv, &now);
1038 if (now.cz_clock == 0)
1039 return 0;
Deepak S31685c22014-07-03 17:33:01 -04001040
Chris Wilson43cf3bf2015-03-18 09:48:22 +00001041 if (pm_iir & GEN6_PM_RP_DOWN_EI_EXPIRED) {
1042 if (!vlv_c0_above(dev_priv,
1043 &dev_priv->rps.down_ei, &now,
Chris Wilson8fb55192015-04-07 16:20:28 +01001044 dev_priv->rps.down_threshold))
Chris Wilson43cf3bf2015-03-18 09:48:22 +00001045 events |= GEN6_PM_RP_DOWN_THRESHOLD;
1046 dev_priv->rps.down_ei = now;
Deepak S31685c22014-07-03 17:33:01 -04001047 }
1048
Chris Wilson43cf3bf2015-03-18 09:48:22 +00001049 if (pm_iir & GEN6_PM_RP_UP_EI_EXPIRED) {
1050 if (vlv_c0_above(dev_priv,
1051 &dev_priv->rps.up_ei, &now,
Chris Wilson8fb55192015-04-07 16:20:28 +01001052 dev_priv->rps.up_threshold))
Chris Wilson43cf3bf2015-03-18 09:48:22 +00001053 events |= GEN6_PM_RP_UP_THRESHOLD;
1054 dev_priv->rps.up_ei = now;
1055 }
1056
1057 return events;
Deepak S31685c22014-07-03 17:33:01 -04001058}
1059
Chris Wilsonf5a4c672015-04-27 13:41:23 +01001060static bool any_waiters(struct drm_i915_private *dev_priv)
1061{
1062 struct intel_engine_cs *ring;
1063 int i;
1064
1065 for_each_ring(ring, dev_priv, i)
1066 if (ring->irq_refcount)
1067 return true;
1068
1069 return false;
1070}
1071
Ben Widawsky4912d042011-04-25 11:25:20 -07001072static void gen6_pm_rps_work(struct work_struct *work)
Jesse Barnes3b8d8d92010-12-17 14:19:02 -08001073{
Jani Nikula2d1013d2014-03-31 14:27:17 +03001074 struct drm_i915_private *dev_priv =
1075 container_of(work, struct drm_i915_private, rps.work);
Chris Wilson8d3afd72015-05-21 21:01:47 +01001076 bool client_boost;
1077 int new_delay, adj, min, max;
Paulo Zanoniedbfdb42013-08-06 18:57:13 -03001078 u32 pm_iir;
Jesse Barnes3b8d8d92010-12-17 14:19:02 -08001079
Daniel Vetter59cdb632013-07-04 23:35:28 +02001080 spin_lock_irq(&dev_priv->irq_lock);
Imre Deakd4d70aa2014-11-19 15:30:04 +02001081 /* Speed up work cancelation during disabling rps interrupts. */
1082 if (!dev_priv->rps.interrupts_enabled) {
1083 spin_unlock_irq(&dev_priv->irq_lock);
1084 return;
1085 }
Daniel Vetterc6a828d2012-08-08 23:35:35 +02001086 pm_iir = dev_priv->rps.pm_iir;
1087 dev_priv->rps.pm_iir = 0;
Imre Deaka72fbc32014-11-05 20:48:31 +02001088 /* Make sure not to corrupt PMIMR state used by ringbuffer on GEN6 */
1089 gen6_enable_pm_irq(dev_priv, dev_priv->pm_rps_events);
Chris Wilson8d3afd72015-05-21 21:01:47 +01001090 client_boost = dev_priv->rps.client_boost;
1091 dev_priv->rps.client_boost = false;
Daniel Vetter59cdb632013-07-04 23:35:28 +02001092 spin_unlock_irq(&dev_priv->irq_lock);
Ben Widawsky4912d042011-04-25 11:25:20 -07001093
Paulo Zanoni60611c12013-08-15 11:50:01 -03001094 /* Make sure we didn't queue anything we're not going to process. */
Deepak Sa6706b42014-03-15 20:23:22 +05301095 WARN_ON(pm_iir & ~dev_priv->pm_rps_events);
Paulo Zanoni60611c12013-08-15 11:50:01 -03001096
Chris Wilson8d3afd72015-05-21 21:01:47 +01001097 if ((pm_iir & dev_priv->pm_rps_events) == 0 && !client_boost)
Jesse Barnes3b8d8d92010-12-17 14:19:02 -08001098 return;
1099
Jesse Barnes4fc688c2012-11-02 11:14:01 -07001100 mutex_lock(&dev_priv->rps.hw_lock);
Chris Wilson7b9e0ae2012-04-28 08:56:39 +01001101
Chris Wilson43cf3bf2015-03-18 09:48:22 +00001102 pm_iir |= vlv_wa_c0_ei(dev_priv, pm_iir);
1103
Chris Wilsondd75fdc2013-09-25 17:34:57 +01001104 adj = dev_priv->rps.last_adj;
Chris Wilsonedcf2842015-04-07 16:20:29 +01001105 new_delay = dev_priv->rps.cur_freq;
Chris Wilson8d3afd72015-05-21 21:01:47 +01001106 min = dev_priv->rps.min_freq_softlimit;
1107 max = dev_priv->rps.max_freq_softlimit;
1108
1109 if (client_boost) {
1110 new_delay = dev_priv->rps.max_freq_softlimit;
1111 adj = 0;
1112 } else if (pm_iir & GEN6_PM_RP_UP_THRESHOLD) {
Chris Wilsondd75fdc2013-09-25 17:34:57 +01001113 if (adj > 0)
1114 adj *= 2;
Chris Wilsonedcf2842015-04-07 16:20:29 +01001115 else /* CHV needs even encode values */
1116 adj = IS_CHERRYVIEW(dev_priv) ? 2 : 1;
Ville Syrjälä74250342013-06-25 21:38:11 +03001117 /*
1118 * For better performance, jump directly
1119 * to RPe if we're below it.
1120 */
Chris Wilsonedcf2842015-04-07 16:20:29 +01001121 if (new_delay < dev_priv->rps.efficient_freq - adj) {
Ben Widawskyb39fb292014-03-19 18:31:11 -07001122 new_delay = dev_priv->rps.efficient_freq;
Chris Wilsonedcf2842015-04-07 16:20:29 +01001123 adj = 0;
1124 }
Chris Wilsonf5a4c672015-04-27 13:41:23 +01001125 } else if (any_waiters(dev_priv)) {
1126 adj = 0;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01001127 } else if (pm_iir & GEN6_PM_RP_DOWN_TIMEOUT) {
Ben Widawskyb39fb292014-03-19 18:31:11 -07001128 if (dev_priv->rps.cur_freq > dev_priv->rps.efficient_freq)
1129 new_delay = dev_priv->rps.efficient_freq;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01001130 else
Ben Widawskyb39fb292014-03-19 18:31:11 -07001131 new_delay = dev_priv->rps.min_freq_softlimit;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01001132 adj = 0;
1133 } else if (pm_iir & GEN6_PM_RP_DOWN_THRESHOLD) {
1134 if (adj < 0)
1135 adj *= 2;
Chris Wilsonedcf2842015-04-07 16:20:29 +01001136 else /* CHV needs even encode values */
1137 adj = IS_CHERRYVIEW(dev_priv) ? -2 : -1;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01001138 } else { /* unknown event */
Chris Wilsonedcf2842015-04-07 16:20:29 +01001139 adj = 0;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01001140 }
Jesse Barnes3b8d8d92010-12-17 14:19:02 -08001141
Chris Wilsonedcf2842015-04-07 16:20:29 +01001142 dev_priv->rps.last_adj = adj;
1143
Ben Widawsky79249632012-09-07 19:43:42 -07001144 /* sysfs frequency interfaces may have snuck in while servicing the
1145 * interrupt
1146 */
Chris Wilsonedcf2842015-04-07 16:20:29 +01001147 new_delay += adj;
Chris Wilson8d3afd72015-05-21 21:01:47 +01001148 new_delay = clamp_t(int, new_delay, min, max);
Deepak S27544362014-01-27 21:35:05 +05301149
Ville Syrjäläffe02b42015-02-02 19:09:50 +02001150 intel_set_rps(dev_priv->dev, new_delay);
Jesse Barnes3b8d8d92010-12-17 14:19:02 -08001151
Jesse Barnes4fc688c2012-11-02 11:14:01 -07001152 mutex_unlock(&dev_priv->rps.hw_lock);
Jesse Barnes3b8d8d92010-12-17 14:19:02 -08001153}
1154
Ben Widawskye3689192012-05-25 16:56:22 -07001155
1156/**
1157 * ivybridge_parity_work - Workqueue called when a parity error interrupt
1158 * occurred.
1159 * @work: workqueue struct
1160 *
1161 * Doesn't actually do anything except notify userspace. As a consequence of
1162 * this event, userspace should try to remap the bad rows since statistically
1163 * it is likely the same row is more likely to go bad again.
1164 */
1165static void ivybridge_parity_work(struct work_struct *work)
1166{
Jani Nikula2d1013d2014-03-31 14:27:17 +03001167 struct drm_i915_private *dev_priv =
1168 container_of(work, struct drm_i915_private, l3_parity.error_work);
Ben Widawskye3689192012-05-25 16:56:22 -07001169 u32 error_status, row, bank, subbank;
Ben Widawsky35a85ac2013-09-19 11:13:41 -07001170 char *parity_event[6];
Ben Widawskye3689192012-05-25 16:56:22 -07001171 uint32_t misccpctl;
Ben Widawsky35a85ac2013-09-19 11:13:41 -07001172 uint8_t slice = 0;
Ben Widawskye3689192012-05-25 16:56:22 -07001173
1174 /* We must turn off DOP level clock gating to access the L3 registers.
1175 * In order to prevent a get/put style interface, acquire struct mutex
1176 * any time we access those registers.
1177 */
1178 mutex_lock(&dev_priv->dev->struct_mutex);
1179
Ben Widawsky35a85ac2013-09-19 11:13:41 -07001180 /* If we've screwed up tracking, just let the interrupt fire again */
1181 if (WARN_ON(!dev_priv->l3_parity.which_slice))
1182 goto out;
1183
Ben Widawskye3689192012-05-25 16:56:22 -07001184 misccpctl = I915_READ(GEN7_MISCCPCTL);
1185 I915_WRITE(GEN7_MISCCPCTL, misccpctl & ~GEN7_DOP_CLOCK_GATE_ENABLE);
1186 POSTING_READ(GEN7_MISCCPCTL);
1187
Ben Widawsky35a85ac2013-09-19 11:13:41 -07001188 while ((slice = ffs(dev_priv->l3_parity.which_slice)) != 0) {
Ville Syrjäläf0f59a02015-11-18 15:33:26 +02001189 i915_reg_t reg;
Ben Widawskye3689192012-05-25 16:56:22 -07001190
Ben Widawsky35a85ac2013-09-19 11:13:41 -07001191 slice--;
1192 if (WARN_ON_ONCE(slice >= NUM_L3_SLICES(dev_priv->dev)))
1193 break;
1194
1195 dev_priv->l3_parity.which_slice &= ~(1<<slice);
1196
Ville Syrjälä6fa1c5f2015-11-04 23:20:02 +02001197 reg = GEN7_L3CDERRST1(slice);
Ben Widawsky35a85ac2013-09-19 11:13:41 -07001198
1199 error_status = I915_READ(reg);
1200 row = GEN7_PARITY_ERROR_ROW(error_status);
1201 bank = GEN7_PARITY_ERROR_BANK(error_status);
1202 subbank = GEN7_PARITY_ERROR_SUBBANK(error_status);
1203
1204 I915_WRITE(reg, GEN7_PARITY_ERROR_VALID | GEN7_L3CDERRST1_ENABLE);
1205 POSTING_READ(reg);
1206
1207 parity_event[0] = I915_L3_PARITY_UEVENT "=1";
1208 parity_event[1] = kasprintf(GFP_KERNEL, "ROW=%d", row);
1209 parity_event[2] = kasprintf(GFP_KERNEL, "BANK=%d", bank);
1210 parity_event[3] = kasprintf(GFP_KERNEL, "SUBBANK=%d", subbank);
1211 parity_event[4] = kasprintf(GFP_KERNEL, "SLICE=%d", slice);
1212 parity_event[5] = NULL;
1213
Dave Airlie5bdebb12013-10-11 14:07:25 +10001214 kobject_uevent_env(&dev_priv->dev->primary->kdev->kobj,
Ben Widawsky35a85ac2013-09-19 11:13:41 -07001215 KOBJ_CHANGE, parity_event);
1216
1217 DRM_DEBUG("Parity error: Slice = %d, Row = %d, Bank = %d, Sub bank = %d.\n",
1218 slice, row, bank, subbank);
1219
1220 kfree(parity_event[4]);
1221 kfree(parity_event[3]);
1222 kfree(parity_event[2]);
1223 kfree(parity_event[1]);
1224 }
Ben Widawskye3689192012-05-25 16:56:22 -07001225
1226 I915_WRITE(GEN7_MISCCPCTL, misccpctl);
1227
Ben Widawsky35a85ac2013-09-19 11:13:41 -07001228out:
1229 WARN_ON(dev_priv->l3_parity.which_slice);
Daniel Vetter4cb21832014-09-15 14:55:26 +02001230 spin_lock_irq(&dev_priv->irq_lock);
Daniel Vetter480c8032014-07-16 09:49:40 +02001231 gen5_enable_gt_irq(dev_priv, GT_PARITY_ERROR(dev_priv->dev));
Daniel Vetter4cb21832014-09-15 14:55:26 +02001232 spin_unlock_irq(&dev_priv->irq_lock);
Ben Widawskye3689192012-05-25 16:56:22 -07001233
1234 mutex_unlock(&dev_priv->dev->struct_mutex);
Ben Widawskye3689192012-05-25 16:56:22 -07001235}
1236
Ben Widawsky35a85ac2013-09-19 11:13:41 -07001237static void ivybridge_parity_error_irq_handler(struct drm_device *dev, u32 iir)
Ben Widawskye3689192012-05-25 16:56:22 -07001238{
Jani Nikula2d1013d2014-03-31 14:27:17 +03001239 struct drm_i915_private *dev_priv = dev->dev_private;
Ben Widawskye3689192012-05-25 16:56:22 -07001240
Ben Widawsky040d2ba2013-09-19 11:01:40 -07001241 if (!HAS_L3_DPF(dev))
Ben Widawskye3689192012-05-25 16:56:22 -07001242 return;
1243
Daniel Vetterd0ecd7e2013-07-04 23:35:25 +02001244 spin_lock(&dev_priv->irq_lock);
Daniel Vetter480c8032014-07-16 09:49:40 +02001245 gen5_disable_gt_irq(dev_priv, GT_PARITY_ERROR(dev));
Daniel Vetterd0ecd7e2013-07-04 23:35:25 +02001246 spin_unlock(&dev_priv->irq_lock);
Ben Widawskye3689192012-05-25 16:56:22 -07001247
Ben Widawsky35a85ac2013-09-19 11:13:41 -07001248 iir &= GT_PARITY_ERROR(dev);
1249 if (iir & GT_RENDER_L3_PARITY_ERROR_INTERRUPT_S1)
1250 dev_priv->l3_parity.which_slice |= 1 << 1;
1251
1252 if (iir & GT_RENDER_L3_PARITY_ERROR_INTERRUPT)
1253 dev_priv->l3_parity.which_slice |= 1 << 0;
1254
Daniel Vettera4da4fa2012-11-02 19:55:07 +01001255 queue_work(dev_priv->wq, &dev_priv->l3_parity.error_work);
Ben Widawskye3689192012-05-25 16:56:22 -07001256}
1257
Paulo Zanonif1af8fc2013-07-12 19:56:30 -03001258static void ilk_gt_irq_handler(struct drm_device *dev,
1259 struct drm_i915_private *dev_priv,
1260 u32 gt_iir)
1261{
1262 if (gt_iir &
1263 (GT_RENDER_USER_INTERRUPT | GT_RENDER_PIPECTL_NOTIFY_INTERRUPT))
Chris Wilson74cdb332015-04-07 16:21:05 +01001264 notify_ring(&dev_priv->ring[RCS]);
Paulo Zanonif1af8fc2013-07-12 19:56:30 -03001265 if (gt_iir & ILK_BSD_USER_INTERRUPT)
Chris Wilson74cdb332015-04-07 16:21:05 +01001266 notify_ring(&dev_priv->ring[VCS]);
Paulo Zanonif1af8fc2013-07-12 19:56:30 -03001267}
1268
Daniel Vettere7b4c6b2012-03-30 20:24:35 +02001269static void snb_gt_irq_handler(struct drm_device *dev,
1270 struct drm_i915_private *dev_priv,
1271 u32 gt_iir)
1272{
1273
Ben Widawskycc609d52013-05-28 19:22:29 -07001274 if (gt_iir &
1275 (GT_RENDER_USER_INTERRUPT | GT_RENDER_PIPECTL_NOTIFY_INTERRUPT))
Chris Wilson74cdb332015-04-07 16:21:05 +01001276 notify_ring(&dev_priv->ring[RCS]);
Ben Widawskycc609d52013-05-28 19:22:29 -07001277 if (gt_iir & GT_BSD_USER_INTERRUPT)
Chris Wilson74cdb332015-04-07 16:21:05 +01001278 notify_ring(&dev_priv->ring[VCS]);
Ben Widawskycc609d52013-05-28 19:22:29 -07001279 if (gt_iir & GT_BLT_USER_INTERRUPT)
Chris Wilson74cdb332015-04-07 16:21:05 +01001280 notify_ring(&dev_priv->ring[BCS]);
Daniel Vettere7b4c6b2012-03-30 20:24:35 +02001281
Ben Widawskycc609d52013-05-28 19:22:29 -07001282 if (gt_iir & (GT_BLT_CS_ERROR_INTERRUPT |
1283 GT_BSD_CS_ERROR_INTERRUPT |
Daniel Vetteraaecdf62014-11-04 15:52:22 +01001284 GT_RENDER_CS_MASTER_ERROR_INTERRUPT))
1285 DRM_DEBUG("Command parser error, gt_iir 0x%08x\n", gt_iir);
Ben Widawskye3689192012-05-25 16:56:22 -07001286
Ben Widawsky35a85ac2013-09-19 11:13:41 -07001287 if (gt_iir & GT_PARITY_ERROR(dev))
1288 ivybridge_parity_error_irq_handler(dev, gt_iir);
Daniel Vettere7b4c6b2012-03-30 20:24:35 +02001289}
1290
Nick Hoathfbcc1a02015-10-20 10:23:52 +01001291static __always_inline void
Daniel Vettere4ba99b2015-10-21 10:20:33 +02001292gen8_cs_irq_handler(struct intel_engine_cs *ring, u32 iir, int test_shift)
Nick Hoathfbcc1a02015-10-20 10:23:52 +01001293{
1294 if (iir & (GT_RENDER_USER_INTERRUPT << test_shift))
1295 notify_ring(ring);
1296 if (iir & (GT_CONTEXT_SWITCH_INTERRUPT << test_shift))
1297 intel_lrc_irq_handler(ring);
1298}
1299
Chris Wilson74cdb332015-04-07 16:21:05 +01001300static irqreturn_t gen8_gt_irq_handler(struct drm_i915_private *dev_priv,
Ben Widawskyabd58f02013-11-02 21:07:09 -07001301 u32 master_ctl)
1302{
Ben Widawskyabd58f02013-11-02 21:07:09 -07001303 irqreturn_t ret = IRQ_NONE;
1304
1305 if (master_ctl & (GEN8_GT_RCS_IRQ | GEN8_GT_BCS_IRQ)) {
Nick Hoath5dd280b2015-10-20 10:23:51 +01001306 u32 iir = I915_READ_FW(GEN8_GT_IIR(0));
1307 if (iir) {
1308 I915_WRITE_FW(GEN8_GT_IIR(0), iir);
Ben Widawskyabd58f02013-11-02 21:07:09 -07001309 ret = IRQ_HANDLED;
Thomas Daniele981e7b2014-07-24 17:04:39 +01001310
Nick Hoathfbcc1a02015-10-20 10:23:52 +01001311 gen8_cs_irq_handler(&dev_priv->ring[RCS],
1312 iir, GEN8_RCS_IRQ_SHIFT);
Thomas Daniele981e7b2014-07-24 17:04:39 +01001313
Nick Hoathfbcc1a02015-10-20 10:23:52 +01001314 gen8_cs_irq_handler(&dev_priv->ring[BCS],
1315 iir, GEN8_BCS_IRQ_SHIFT);
Ben Widawskyabd58f02013-11-02 21:07:09 -07001316 } else
1317 DRM_ERROR("The master control interrupt lied (GT0)!\n");
1318 }
1319
Zhao Yakui85f9b5f2014-04-17 10:37:38 +08001320 if (master_ctl & (GEN8_GT_VCS1_IRQ | GEN8_GT_VCS2_IRQ)) {
Nick Hoath5dd280b2015-10-20 10:23:51 +01001321 u32 iir = I915_READ_FW(GEN8_GT_IIR(1));
1322 if (iir) {
1323 I915_WRITE_FW(GEN8_GT_IIR(1), iir);
Ben Widawskyabd58f02013-11-02 21:07:09 -07001324 ret = IRQ_HANDLED;
Thomas Daniele981e7b2014-07-24 17:04:39 +01001325
Nick Hoathfbcc1a02015-10-20 10:23:52 +01001326 gen8_cs_irq_handler(&dev_priv->ring[VCS],
1327 iir, GEN8_VCS1_IRQ_SHIFT);
Thomas Daniele981e7b2014-07-24 17:04:39 +01001328
Nick Hoathfbcc1a02015-10-20 10:23:52 +01001329 gen8_cs_irq_handler(&dev_priv->ring[VCS2],
1330 iir, GEN8_VCS2_IRQ_SHIFT);
Ben Widawskyabd58f02013-11-02 21:07:09 -07001331 } else
1332 DRM_ERROR("The master control interrupt lied (GT1)!\n");
1333 }
1334
Chris Wilson74cdb332015-04-07 16:21:05 +01001335 if (master_ctl & GEN8_GT_VECS_IRQ) {
Nick Hoath5dd280b2015-10-20 10:23:51 +01001336 u32 iir = I915_READ_FW(GEN8_GT_IIR(3));
1337 if (iir) {
1338 I915_WRITE_FW(GEN8_GT_IIR(3), iir);
Chris Wilson74cdb332015-04-07 16:21:05 +01001339 ret = IRQ_HANDLED;
1340
Nick Hoathfbcc1a02015-10-20 10:23:52 +01001341 gen8_cs_irq_handler(&dev_priv->ring[VECS],
1342 iir, GEN8_VECS_IRQ_SHIFT);
Chris Wilson74cdb332015-04-07 16:21:05 +01001343 } else
1344 DRM_ERROR("The master control interrupt lied (GT3)!\n");
1345 }
1346
Ben Widawsky09610212014-05-15 20:58:08 +03001347 if (master_ctl & GEN8_GT_PM_IRQ) {
Nick Hoath5dd280b2015-10-20 10:23:51 +01001348 u32 iir = I915_READ_FW(GEN8_GT_IIR(2));
1349 if (iir & dev_priv->pm_rps_events) {
Chris Wilsoncb0d2052015-04-07 16:21:04 +01001350 I915_WRITE_FW(GEN8_GT_IIR(2),
Nick Hoath5dd280b2015-10-20 10:23:51 +01001351 iir & dev_priv->pm_rps_events);
Oscar Mateo38cc46d2014-06-16 16:10:59 +01001352 ret = IRQ_HANDLED;
Nick Hoath5dd280b2015-10-20 10:23:51 +01001353 gen6_rps_irq_handler(dev_priv, iir);
Ben Widawsky09610212014-05-15 20:58:08 +03001354 } else
1355 DRM_ERROR("The master control interrupt lied (PM)!\n");
1356 }
1357
Ben Widawskyabd58f02013-11-02 21:07:09 -07001358 return ret;
1359}
1360
Imre Deak63c88d22015-07-20 14:43:39 -07001361static bool bxt_port_hotplug_long_detect(enum port port, u32 val)
1362{
1363 switch (port) {
1364 case PORT_A:
Ville Syrjälä195baa02015-08-27 23:56:00 +03001365 return val & PORTA_HOTPLUG_LONG_DETECT;
Imre Deak63c88d22015-07-20 14:43:39 -07001366 case PORT_B:
1367 return val & PORTB_HOTPLUG_LONG_DETECT;
1368 case PORT_C:
1369 return val & PORTC_HOTPLUG_LONG_DETECT;
Imre Deak63c88d22015-07-20 14:43:39 -07001370 default:
1371 return false;
1372 }
1373}
1374
Ville Syrjälä6dbf30c2015-08-27 23:56:02 +03001375static bool spt_port_hotplug2_long_detect(enum port port, u32 val)
1376{
1377 switch (port) {
1378 case PORT_E:
1379 return val & PORTE_HOTPLUG_LONG_DETECT;
1380 default:
1381 return false;
1382 }
1383}
1384
Ville Syrjälä74c0b392015-08-27 23:56:07 +03001385static bool spt_port_hotplug_long_detect(enum port port, u32 val)
1386{
1387 switch (port) {
1388 case PORT_A:
1389 return val & PORTA_HOTPLUG_LONG_DETECT;
1390 case PORT_B:
1391 return val & PORTB_HOTPLUG_LONG_DETECT;
1392 case PORT_C:
1393 return val & PORTC_HOTPLUG_LONG_DETECT;
1394 case PORT_D:
1395 return val & PORTD_HOTPLUG_LONG_DETECT;
1396 default:
1397 return false;
1398 }
1399}
1400
Ville Syrjäläe4ce95a2015-08-27 23:56:03 +03001401static bool ilk_port_hotplug_long_detect(enum port port, u32 val)
1402{
1403 switch (port) {
1404 case PORT_A:
1405 return val & DIGITAL_PORTA_HOTPLUG_LONG_DETECT;
1406 default:
1407 return false;
1408 }
1409}
1410
Jani Nikula676574d2015-05-28 15:43:53 +03001411static bool pch_port_hotplug_long_detect(enum port port, u32 val)
Dave Airlie13cf5502014-06-18 11:29:35 +10001412{
1413 switch (port) {
Dave Airlie13cf5502014-06-18 11:29:35 +10001414 case PORT_B:
Jani Nikula676574d2015-05-28 15:43:53 +03001415 return val & PORTB_HOTPLUG_LONG_DETECT;
Dave Airlie13cf5502014-06-18 11:29:35 +10001416 case PORT_C:
Jani Nikula676574d2015-05-28 15:43:53 +03001417 return val & PORTC_HOTPLUG_LONG_DETECT;
Dave Airlie13cf5502014-06-18 11:29:35 +10001418 case PORT_D:
Jani Nikula676574d2015-05-28 15:43:53 +03001419 return val & PORTD_HOTPLUG_LONG_DETECT;
1420 default:
1421 return false;
Dave Airlie13cf5502014-06-18 11:29:35 +10001422 }
1423}
1424
Jani Nikula676574d2015-05-28 15:43:53 +03001425static bool i9xx_port_hotplug_long_detect(enum port port, u32 val)
Dave Airlie13cf5502014-06-18 11:29:35 +10001426{
1427 switch (port) {
Dave Airlie13cf5502014-06-18 11:29:35 +10001428 case PORT_B:
Jani Nikula676574d2015-05-28 15:43:53 +03001429 return val & PORTB_HOTPLUG_INT_LONG_PULSE;
Dave Airlie13cf5502014-06-18 11:29:35 +10001430 case PORT_C:
Jani Nikula676574d2015-05-28 15:43:53 +03001431 return val & PORTC_HOTPLUG_INT_LONG_PULSE;
Dave Airlie13cf5502014-06-18 11:29:35 +10001432 case PORT_D:
Jani Nikula676574d2015-05-28 15:43:53 +03001433 return val & PORTD_HOTPLUG_INT_LONG_PULSE;
1434 default:
1435 return false;
Dave Airlie13cf5502014-06-18 11:29:35 +10001436 }
1437}
1438
Ville Syrjälä42db67d2015-08-28 21:26:27 +03001439/*
1440 * Get a bit mask of pins that have triggered, and which ones may be long.
1441 * This can be called multiple times with the same masks to accumulate
1442 * hotplug detection results from several registers.
1443 *
1444 * Note that the caller is expected to zero out the masks initially.
1445 */
Imre Deakfd63e2a2015-07-21 15:32:44 -07001446static void intel_get_hpd_pins(u32 *pin_mask, u32 *long_mask,
Jani Nikula8c841e52015-06-18 13:06:17 +03001447 u32 hotplug_trigger, u32 dig_hotplug_reg,
Imre Deakfd63e2a2015-07-21 15:32:44 -07001448 const u32 hpd[HPD_NUM_PINS],
1449 bool long_pulse_detect(enum port port, u32 val))
Jani Nikula676574d2015-05-28 15:43:53 +03001450{
Jani Nikula8c841e52015-06-18 13:06:17 +03001451 enum port port;
Jani Nikula676574d2015-05-28 15:43:53 +03001452 int i;
1453
Jani Nikula676574d2015-05-28 15:43:53 +03001454 for_each_hpd_pin(i) {
Jani Nikula8c841e52015-06-18 13:06:17 +03001455 if ((hpd[i] & hotplug_trigger) == 0)
1456 continue;
Jani Nikula676574d2015-05-28 15:43:53 +03001457
Jani Nikula8c841e52015-06-18 13:06:17 +03001458 *pin_mask |= BIT(i);
1459
Imre Deakcc24fcd2015-07-21 15:32:45 -07001460 if (!intel_hpd_pin_to_port(i, &port))
1461 continue;
1462
Imre Deakfd63e2a2015-07-21 15:32:44 -07001463 if (long_pulse_detect(port, dig_hotplug_reg))
Jani Nikula8c841e52015-06-18 13:06:17 +03001464 *long_mask |= BIT(i);
Jani Nikula676574d2015-05-28 15:43:53 +03001465 }
1466
1467 DRM_DEBUG_DRIVER("hotplug event received, stat 0x%08x, dig 0x%08x, pins 0x%08x\n",
1468 hotplug_trigger, dig_hotplug_reg, *pin_mask);
1469
1470}
1471
Daniel Vetter515ac2b2012-12-01 13:53:44 +01001472static void gmbus_irq_handler(struct drm_device *dev)
1473{
Jani Nikula2d1013d2014-03-31 14:27:17 +03001474 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter28c70f12012-12-01 13:53:45 +01001475
Daniel Vetter28c70f12012-12-01 13:53:45 +01001476 wake_up_all(&dev_priv->gmbus_wait_queue);
Daniel Vetter515ac2b2012-12-01 13:53:44 +01001477}
1478
Daniel Vetterce99c252012-12-01 13:53:47 +01001479static void dp_aux_irq_handler(struct drm_device *dev)
1480{
Jani Nikula2d1013d2014-03-31 14:27:17 +03001481 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter9ee32fea2012-12-01 13:53:48 +01001482
Daniel Vetter9ee32fea2012-12-01 13:53:48 +01001483 wake_up_all(&dev_priv->gmbus_wait_queue);
Daniel Vetterce99c252012-12-01 13:53:47 +01001484}
1485
Shuang He8bf1e9f2013-10-15 18:55:27 +01001486#if defined(CONFIG_DEBUG_FS)
Daniel Vetter277de952013-10-18 16:37:07 +02001487static void display_pipe_crc_irq_handler(struct drm_device *dev, enum pipe pipe,
1488 uint32_t crc0, uint32_t crc1,
1489 uint32_t crc2, uint32_t crc3,
1490 uint32_t crc4)
Shuang He8bf1e9f2013-10-15 18:55:27 +01001491{
1492 struct drm_i915_private *dev_priv = dev->dev_private;
1493 struct intel_pipe_crc *pipe_crc = &dev_priv->pipe_crc[pipe];
1494 struct intel_pipe_crc_entry *entry;
Damien Lespiauac2300d2013-10-15 18:55:30 +01001495 int head, tail;
Damien Lespiaub2c88f52013-10-15 18:55:29 +01001496
Damien Lespiaud538bbd2013-10-21 14:29:30 +01001497 spin_lock(&pipe_crc->lock);
1498
Damien Lespiau0c912c72013-10-15 18:55:37 +01001499 if (!pipe_crc->entries) {
Damien Lespiaud538bbd2013-10-21 14:29:30 +01001500 spin_unlock(&pipe_crc->lock);
Daniel Vetter34273622014-11-26 16:29:04 +01001501 DRM_DEBUG_KMS("spurious interrupt\n");
Damien Lespiau0c912c72013-10-15 18:55:37 +01001502 return;
1503 }
1504
Damien Lespiaud538bbd2013-10-21 14:29:30 +01001505 head = pipe_crc->head;
1506 tail = pipe_crc->tail;
Damien Lespiaub2c88f52013-10-15 18:55:29 +01001507
1508 if (CIRC_SPACE(head, tail, INTEL_PIPE_CRC_ENTRIES_NR) < 1) {
Damien Lespiaud538bbd2013-10-21 14:29:30 +01001509 spin_unlock(&pipe_crc->lock);
Damien Lespiaub2c88f52013-10-15 18:55:29 +01001510 DRM_ERROR("CRC buffer overflowing\n");
1511 return;
1512 }
1513
1514 entry = &pipe_crc->entries[head];
Shuang He8bf1e9f2013-10-15 18:55:27 +01001515
Daniel Vetter8bc5e952013-10-16 22:55:49 +02001516 entry->frame = dev->driver->get_vblank_counter(dev, pipe);
Daniel Vettereba94eb2013-10-16 22:55:46 +02001517 entry->crc[0] = crc0;
1518 entry->crc[1] = crc1;
1519 entry->crc[2] = crc2;
1520 entry->crc[3] = crc3;
1521 entry->crc[4] = crc4;
Damien Lespiaub2c88f52013-10-15 18:55:29 +01001522
1523 head = (head + 1) & (INTEL_PIPE_CRC_ENTRIES_NR - 1);
Damien Lespiaud538bbd2013-10-21 14:29:30 +01001524 pipe_crc->head = head;
1525
1526 spin_unlock(&pipe_crc->lock);
Damien Lespiau07144422013-10-15 18:55:40 +01001527
1528 wake_up_interruptible(&pipe_crc->wq);
Shuang He8bf1e9f2013-10-15 18:55:27 +01001529}
Daniel Vetter277de952013-10-18 16:37:07 +02001530#else
1531static inline void
1532display_pipe_crc_irq_handler(struct drm_device *dev, enum pipe pipe,
1533 uint32_t crc0, uint32_t crc1,
1534 uint32_t crc2, uint32_t crc3,
1535 uint32_t crc4) {}
1536#endif
Daniel Vettereba94eb2013-10-16 22:55:46 +02001537
Daniel Vetter277de952013-10-18 16:37:07 +02001538
1539static void hsw_pipe_crc_irq_handler(struct drm_device *dev, enum pipe pipe)
Daniel Vetter5a69b892013-10-16 22:55:52 +02001540{
1541 struct drm_i915_private *dev_priv = dev->dev_private;
1542
Daniel Vetter277de952013-10-18 16:37:07 +02001543 display_pipe_crc_irq_handler(dev, pipe,
1544 I915_READ(PIPE_CRC_RES_1_IVB(pipe)),
1545 0, 0, 0, 0);
Daniel Vetter5a69b892013-10-16 22:55:52 +02001546}
1547
Daniel Vetter277de952013-10-18 16:37:07 +02001548static void ivb_pipe_crc_irq_handler(struct drm_device *dev, enum pipe pipe)
Daniel Vettereba94eb2013-10-16 22:55:46 +02001549{
1550 struct drm_i915_private *dev_priv = dev->dev_private;
1551
Daniel Vetter277de952013-10-18 16:37:07 +02001552 display_pipe_crc_irq_handler(dev, pipe,
1553 I915_READ(PIPE_CRC_RES_1_IVB(pipe)),
1554 I915_READ(PIPE_CRC_RES_2_IVB(pipe)),
1555 I915_READ(PIPE_CRC_RES_3_IVB(pipe)),
1556 I915_READ(PIPE_CRC_RES_4_IVB(pipe)),
1557 I915_READ(PIPE_CRC_RES_5_IVB(pipe)));
Daniel Vettereba94eb2013-10-16 22:55:46 +02001558}
Daniel Vetter5b3a8562013-10-16 22:55:48 +02001559
Daniel Vetter277de952013-10-18 16:37:07 +02001560static void i9xx_pipe_crc_irq_handler(struct drm_device *dev, enum pipe pipe)
Daniel Vetter5b3a8562013-10-16 22:55:48 +02001561{
1562 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter0b5c5ed2013-10-16 22:55:53 +02001563 uint32_t res1, res2;
1564
1565 if (INTEL_INFO(dev)->gen >= 3)
1566 res1 = I915_READ(PIPE_CRC_RES_RES1_I915(pipe));
1567 else
1568 res1 = 0;
1569
1570 if (INTEL_INFO(dev)->gen >= 5 || IS_G4X(dev))
1571 res2 = I915_READ(PIPE_CRC_RES_RES2_G4X(pipe));
1572 else
1573 res2 = 0;
Daniel Vetter5b3a8562013-10-16 22:55:48 +02001574
Daniel Vetter277de952013-10-18 16:37:07 +02001575 display_pipe_crc_irq_handler(dev, pipe,
1576 I915_READ(PIPE_CRC_RES_RED(pipe)),
1577 I915_READ(PIPE_CRC_RES_GREEN(pipe)),
1578 I915_READ(PIPE_CRC_RES_BLUE(pipe)),
1579 res1, res2);
Daniel Vetter5b3a8562013-10-16 22:55:48 +02001580}
Shuang He8bf1e9f2013-10-15 18:55:27 +01001581
Paulo Zanoni1403c0d2013-08-15 11:51:32 -03001582/* The RPS events need forcewake, so we add them to a work queue and mask their
1583 * IMR bits until the work is done. Other interrupts can be processed without
1584 * the work queue. */
1585static void gen6_rps_irq_handler(struct drm_i915_private *dev_priv, u32 pm_iir)
Ben Widawskybaf02a12013-05-28 19:22:24 -07001586{
Deepak Sa6706b42014-03-15 20:23:22 +05301587 if (pm_iir & dev_priv->pm_rps_events) {
Daniel Vetter59cdb632013-07-04 23:35:28 +02001588 spin_lock(&dev_priv->irq_lock);
Daniel Vetter480c8032014-07-16 09:49:40 +02001589 gen6_disable_pm_irq(dev_priv, pm_iir & dev_priv->pm_rps_events);
Imre Deakd4d70aa2014-11-19 15:30:04 +02001590 if (dev_priv->rps.interrupts_enabled) {
1591 dev_priv->rps.pm_iir |= pm_iir & dev_priv->pm_rps_events;
1592 queue_work(dev_priv->wq, &dev_priv->rps.work);
1593 }
Daniel Vetter59cdb632013-07-04 23:35:28 +02001594 spin_unlock(&dev_priv->irq_lock);
Ben Widawskybaf02a12013-05-28 19:22:24 -07001595 }
Ben Widawskybaf02a12013-05-28 19:22:24 -07001596
Imre Deakc9a9a262014-11-05 20:48:37 +02001597 if (INTEL_INFO(dev_priv)->gen >= 8)
1598 return;
1599
Paulo Zanoni1403c0d2013-08-15 11:51:32 -03001600 if (HAS_VEBOX(dev_priv->dev)) {
1601 if (pm_iir & PM_VEBOX_USER_INTERRUPT)
Chris Wilson74cdb332015-04-07 16:21:05 +01001602 notify_ring(&dev_priv->ring[VECS]);
Ben Widawsky12638c52013-05-28 19:22:31 -07001603
Daniel Vetteraaecdf62014-11-04 15:52:22 +01001604 if (pm_iir & PM_VEBOX_CS_ERROR_INTERRUPT)
1605 DRM_DEBUG("Command parser error, pm_iir 0x%08x\n", pm_iir);
Ben Widawsky12638c52013-05-28 19:22:31 -07001606 }
Ben Widawskybaf02a12013-05-28 19:22:24 -07001607}
1608
Ville Syrjälä8d7849d2014-04-29 13:35:46 +03001609static bool intel_pipe_handle_vblank(struct drm_device *dev, enum pipe pipe)
1610{
Ville Syrjälä8d7849d2014-04-29 13:35:46 +03001611 if (!drm_handle_vblank(dev, pipe))
1612 return false;
1613
Ville Syrjälä8d7849d2014-04-29 13:35:46 +03001614 return true;
1615}
1616
Imre Deakc1874ed2014-02-04 21:35:46 +02001617static void valleyview_pipestat_irq_handler(struct drm_device *dev, u32 iir)
1618{
1619 struct drm_i915_private *dev_priv = dev->dev_private;
Imre Deak91d181d2014-02-10 18:42:49 +02001620 u32 pipe_stats[I915_MAX_PIPES] = { };
Imre Deakc1874ed2014-02-04 21:35:46 +02001621 int pipe;
1622
Imre Deak58ead0d2014-02-04 21:35:47 +02001623 spin_lock(&dev_priv->irq_lock);
Damien Lespiau055e3932014-08-18 13:49:10 +01001624 for_each_pipe(dev_priv, pipe) {
Ville Syrjäläf0f59a02015-11-18 15:33:26 +02001625 i915_reg_t reg;
Daniel Vetterbbb5eeb2014-02-12 17:55:36 +01001626 u32 mask, iir_bit = 0;
Imre Deak91d181d2014-02-10 18:42:49 +02001627
Daniel Vetterbbb5eeb2014-02-12 17:55:36 +01001628 /*
1629 * PIPESTAT bits get signalled even when the interrupt is
1630 * disabled with the mask bits, and some of the status bits do
1631 * not generate interrupts at all (like the underrun bit). Hence
1632 * we need to be careful that we only handle what we want to
1633 * handle.
1634 */
Daniel Vetter0f239f42014-09-30 10:56:49 +02001635
1636 /* fifo underruns are filterered in the underrun handler. */
1637 mask = PIPE_FIFO_UNDERRUN_STATUS;
Daniel Vetterbbb5eeb2014-02-12 17:55:36 +01001638
1639 switch (pipe) {
1640 case PIPE_A:
1641 iir_bit = I915_DISPLAY_PIPE_A_EVENT_INTERRUPT;
1642 break;
1643 case PIPE_B:
1644 iir_bit = I915_DISPLAY_PIPE_B_EVENT_INTERRUPT;
1645 break;
Ville Syrjälä3278f672014-04-09 13:28:49 +03001646 case PIPE_C:
1647 iir_bit = I915_DISPLAY_PIPE_C_EVENT_INTERRUPT;
1648 break;
Daniel Vetterbbb5eeb2014-02-12 17:55:36 +01001649 }
1650 if (iir & iir_bit)
1651 mask |= dev_priv->pipestat_irq_mask[pipe];
1652
1653 if (!mask)
Imre Deak91d181d2014-02-10 18:42:49 +02001654 continue;
1655
1656 reg = PIPESTAT(pipe);
Daniel Vetterbbb5eeb2014-02-12 17:55:36 +01001657 mask |= PIPESTAT_INT_ENABLE_MASK;
1658 pipe_stats[pipe] = I915_READ(reg) & mask;
Imre Deakc1874ed2014-02-04 21:35:46 +02001659
1660 /*
1661 * Clear the PIPE*STAT regs before the IIR
1662 */
Imre Deak91d181d2014-02-10 18:42:49 +02001663 if (pipe_stats[pipe] & (PIPE_FIFO_UNDERRUN_STATUS |
1664 PIPESTAT_INT_STATUS_MASK))
Imre Deakc1874ed2014-02-04 21:35:46 +02001665 I915_WRITE(reg, pipe_stats[pipe]);
1666 }
Imre Deak58ead0d2014-02-04 21:35:47 +02001667 spin_unlock(&dev_priv->irq_lock);
Imre Deakc1874ed2014-02-04 21:35:46 +02001668
Damien Lespiau055e3932014-08-18 13:49:10 +01001669 for_each_pipe(dev_priv, pipe) {
Chris Wilsond6bbafa2014-09-05 07:13:24 +01001670 if (pipe_stats[pipe] & PIPE_START_VBLANK_INTERRUPT_STATUS &&
1671 intel_pipe_handle_vblank(dev, pipe))
1672 intel_check_page_flip(dev, pipe);
Imre Deakc1874ed2014-02-04 21:35:46 +02001673
Imre Deak579a9b02014-02-04 21:35:48 +02001674 if (pipe_stats[pipe] & PLANE_FLIP_DONE_INT_STATUS_VLV) {
Imre Deakc1874ed2014-02-04 21:35:46 +02001675 intel_prepare_page_flip(dev, pipe);
1676 intel_finish_page_flip(dev, pipe);
1677 }
1678
1679 if (pipe_stats[pipe] & PIPE_CRC_DONE_INTERRUPT_STATUS)
1680 i9xx_pipe_crc_irq_handler(dev, pipe);
1681
Daniel Vetter1f7247c2014-09-30 10:56:48 +02001682 if (pipe_stats[pipe] & PIPE_FIFO_UNDERRUN_STATUS)
1683 intel_cpu_fifo_underrun_irq_handler(dev_priv, pipe);
Imre Deakc1874ed2014-02-04 21:35:46 +02001684 }
1685
1686 if (pipe_stats[0] & PIPE_GMBUS_INTERRUPT_STATUS)
1687 gmbus_irq_handler(dev);
1688}
1689
Ville Syrjälä16c6c562014-04-01 10:54:36 +03001690static void i9xx_hpd_irq_handler(struct drm_device *dev)
1691{
1692 struct drm_i915_private *dev_priv = dev->dev_private;
1693 u32 hotplug_status = I915_READ(PORT_HOTPLUG_STAT);
Ville Syrjälä42db67d2015-08-28 21:26:27 +03001694 u32 pin_mask = 0, long_mask = 0;
Ville Syrjälä16c6c562014-04-01 10:54:36 +03001695
Jani Nikula0d2e4292015-05-27 15:03:39 +03001696 if (!hotplug_status)
1697 return;
Ville Syrjälä16c6c562014-04-01 10:54:36 +03001698
Jani Nikula0d2e4292015-05-27 15:03:39 +03001699 I915_WRITE(PORT_HOTPLUG_STAT, hotplug_status);
1700 /*
1701 * Make sure hotplug status is cleared before we clear IIR, or else we
1702 * may miss hotplug events.
1703 */
1704 POSTING_READ(PORT_HOTPLUG_STAT);
Ville Syrjälä16c6c562014-04-01 10:54:36 +03001705
Jani Nikula0d2e4292015-05-27 15:03:39 +03001706 if (IS_G4X(dev) || IS_VALLEYVIEW(dev)) {
1707 u32 hotplug_trigger = hotplug_status & HOTPLUG_INT_STATUS_G4X;
Oscar Mateo3ff60f82014-06-16 16:10:58 +01001708
Ville Syrjälä58f2cf22015-08-28 22:59:08 +03001709 if (hotplug_trigger) {
1710 intel_get_hpd_pins(&pin_mask, &long_mask, hotplug_trigger,
1711 hotplug_trigger, hpd_status_g4x,
1712 i9xx_port_hotplug_long_detect);
1713
1714 intel_hpd_irq_handler(dev, pin_mask, long_mask);
1715 }
Jani Nikula369712e2015-05-27 15:03:40 +03001716
1717 if (hotplug_status & DP_AUX_CHANNEL_MASK_INT_STATUS_G4X)
1718 dp_aux_irq_handler(dev);
Jani Nikula0d2e4292015-05-27 15:03:39 +03001719 } else {
1720 u32 hotplug_trigger = hotplug_status & HOTPLUG_INT_STATUS_I915;
Oscar Mateo3ff60f82014-06-16 16:10:58 +01001721
Ville Syrjälä58f2cf22015-08-28 22:59:08 +03001722 if (hotplug_trigger) {
1723 intel_get_hpd_pins(&pin_mask, &long_mask, hotplug_trigger,
Daniel Vetter44cc6c02015-09-30 08:47:41 +02001724 hotplug_trigger, hpd_status_i915,
Ville Syrjälä58f2cf22015-08-28 22:59:08 +03001725 i9xx_port_hotplug_long_detect);
Ville Syrjälä58f2cf22015-08-28 22:59:08 +03001726 intel_hpd_irq_handler(dev, pin_mask, long_mask);
1727 }
Ville Syrjälä16c6c562014-04-01 10:54:36 +03001728 }
Ville Syrjälä16c6c562014-04-01 10:54:36 +03001729}
1730
Daniel Vetterff1f5252012-10-02 15:10:55 +02001731static irqreturn_t valleyview_irq_handler(int irq, void *arg)
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07001732{
Daniel Vetter45a83f82014-05-12 19:17:55 +02001733 struct drm_device *dev = arg;
Jani Nikula2d1013d2014-03-31 14:27:17 +03001734 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07001735 u32 iir, gt_iir, pm_iir;
1736 irqreturn_t ret = IRQ_NONE;
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07001737
Imre Deak2dd2a882015-02-24 11:14:30 +02001738 if (!intel_irqs_enabled(dev_priv))
1739 return IRQ_NONE;
1740
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07001741 while (true) {
Oscar Mateo3ff60f82014-06-16 16:10:58 +01001742 /* Find, clear, then process each source of interrupt */
1743
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07001744 gt_iir = I915_READ(GTIIR);
Oscar Mateo3ff60f82014-06-16 16:10:58 +01001745 if (gt_iir)
1746 I915_WRITE(GTIIR, gt_iir);
1747
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07001748 pm_iir = I915_READ(GEN6_PMIIR);
Oscar Mateo3ff60f82014-06-16 16:10:58 +01001749 if (pm_iir)
1750 I915_WRITE(GEN6_PMIIR, pm_iir);
1751
1752 iir = I915_READ(VLV_IIR);
1753 if (iir) {
1754 /* Consume port before clearing IIR or we'll miss events */
1755 if (iir & I915_DISPLAY_PORT_INTERRUPT)
1756 i9xx_hpd_irq_handler(dev);
1757 I915_WRITE(VLV_IIR, iir);
1758 }
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07001759
1760 if (gt_iir == 0 && pm_iir == 0 && iir == 0)
1761 goto out;
1762
1763 ret = IRQ_HANDLED;
1764
Oscar Mateo3ff60f82014-06-16 16:10:58 +01001765 if (gt_iir)
1766 snb_gt_irq_handler(dev, dev_priv, gt_iir);
Paulo Zanoni60611c12013-08-15 11:50:01 -03001767 if (pm_iir)
Daniel Vetterd0ecd7e2013-07-04 23:35:25 +02001768 gen6_rps_irq_handler(dev_priv, pm_iir);
Oscar Mateo3ff60f82014-06-16 16:10:58 +01001769 /* Call regardless, as some status bits might not be
1770 * signalled in iir */
1771 valleyview_pipestat_irq_handler(dev, iir);
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07001772 }
1773
1774out:
1775 return ret;
1776}
1777
Ville Syrjälä43f328d2014-04-09 20:40:52 +03001778static irqreturn_t cherryview_irq_handler(int irq, void *arg)
1779{
Daniel Vetter45a83f82014-05-12 19:17:55 +02001780 struct drm_device *dev = arg;
Ville Syrjälä43f328d2014-04-09 20:40:52 +03001781 struct drm_i915_private *dev_priv = dev->dev_private;
1782 u32 master_ctl, iir;
1783 irqreturn_t ret = IRQ_NONE;
Ville Syrjälä43f328d2014-04-09 20:40:52 +03001784
Imre Deak2dd2a882015-02-24 11:14:30 +02001785 if (!intel_irqs_enabled(dev_priv))
1786 return IRQ_NONE;
1787
Ville Syrjälä8e5fd592014-04-09 13:28:50 +03001788 for (;;) {
1789 master_ctl = I915_READ(GEN8_MASTER_IRQ) & ~GEN8_MASTER_IRQ_CONTROL;
1790 iir = I915_READ(VLV_IIR);
Ville Syrjälä3278f672014-04-09 13:28:49 +03001791
Ville Syrjälä8e5fd592014-04-09 13:28:50 +03001792 if (master_ctl == 0 && iir == 0)
1793 break;
Ville Syrjälä43f328d2014-04-09 20:40:52 +03001794
Oscar Mateo27b6c122014-06-16 16:11:00 +01001795 ret = IRQ_HANDLED;
1796
Ville Syrjälä8e5fd592014-04-09 13:28:50 +03001797 I915_WRITE(GEN8_MASTER_IRQ, 0);
Ville Syrjälä43f328d2014-04-09 20:40:52 +03001798
Oscar Mateo27b6c122014-06-16 16:11:00 +01001799 /* Find, clear, then process each source of interrupt */
1800
1801 if (iir) {
1802 /* Consume port before clearing IIR or we'll miss events */
1803 if (iir & I915_DISPLAY_PORT_INTERRUPT)
1804 i9xx_hpd_irq_handler(dev);
1805 I915_WRITE(VLV_IIR, iir);
1806 }
1807
Chris Wilson74cdb332015-04-07 16:21:05 +01001808 gen8_gt_irq_handler(dev_priv, master_ctl);
Ville Syrjälä43f328d2014-04-09 20:40:52 +03001809
Oscar Mateo27b6c122014-06-16 16:11:00 +01001810 /* Call regardless, as some status bits might not be
1811 * signalled in iir */
Ville Syrjälä8e5fd592014-04-09 13:28:50 +03001812 valleyview_pipestat_irq_handler(dev, iir);
Ville Syrjälä43f328d2014-04-09 20:40:52 +03001813
Ville Syrjälä8e5fd592014-04-09 13:28:50 +03001814 I915_WRITE(GEN8_MASTER_IRQ, DE_MASTER_IRQ_CONTROL);
1815 POSTING_READ(GEN8_MASTER_IRQ);
Ville Syrjälä43f328d2014-04-09 20:40:52 +03001816 }
1817
Ville Syrjälä43f328d2014-04-09 20:40:52 +03001818 return ret;
1819}
1820
Ville Syrjälä40e56412015-08-27 23:56:10 +03001821static void ibx_hpd_irq_handler(struct drm_device *dev, u32 hotplug_trigger,
1822 const u32 hpd[HPD_NUM_PINS])
1823{
1824 struct drm_i915_private *dev_priv = to_i915(dev);
1825 u32 dig_hotplug_reg, pin_mask = 0, long_mask = 0;
1826
Jani Nikula6a39d7c2015-11-25 16:47:22 +02001827 /*
1828 * Somehow the PCH doesn't seem to really ack the interrupt to the CPU
1829 * unless we touch the hotplug register, even if hotplug_trigger is
1830 * zero. Not acking leads to "The master control interrupt lied (SDE)!"
1831 * errors.
1832 */
Ville Syrjälä40e56412015-08-27 23:56:10 +03001833 dig_hotplug_reg = I915_READ(PCH_PORT_HOTPLUG);
Jani Nikula6a39d7c2015-11-25 16:47:22 +02001834 if (!hotplug_trigger) {
1835 u32 mask = PORTA_HOTPLUG_STATUS_MASK |
1836 PORTD_HOTPLUG_STATUS_MASK |
1837 PORTC_HOTPLUG_STATUS_MASK |
1838 PORTB_HOTPLUG_STATUS_MASK;
1839 dig_hotplug_reg &= ~mask;
1840 }
1841
Ville Syrjälä40e56412015-08-27 23:56:10 +03001842 I915_WRITE(PCH_PORT_HOTPLUG, dig_hotplug_reg);
Jani Nikula6a39d7c2015-11-25 16:47:22 +02001843 if (!hotplug_trigger)
1844 return;
Ville Syrjälä40e56412015-08-27 23:56:10 +03001845
1846 intel_get_hpd_pins(&pin_mask, &long_mask, hotplug_trigger,
1847 dig_hotplug_reg, hpd,
1848 pch_port_hotplug_long_detect);
1849
1850 intel_hpd_irq_handler(dev, pin_mask, long_mask);
1851}
1852
Adam Jackson23e81d62012-06-06 15:45:44 -04001853static void ibx_irq_handler(struct drm_device *dev, u32 pch_iir)
Jesse Barnes776ad802011-01-04 15:09:39 -08001854{
Jani Nikula2d1013d2014-03-31 14:27:17 +03001855 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001856 int pipe;
Egbert Eichb543fb02013-04-16 13:36:54 +02001857 u32 hotplug_trigger = pch_iir & SDE_HOTPLUG_MASK;
Jesse Barnes776ad802011-01-04 15:09:39 -08001858
Jani Nikula6a39d7c2015-11-25 16:47:22 +02001859 ibx_hpd_irq_handler(dev, hotplug_trigger, hpd_ibx);
Daniel Vetter91d131d2013-06-27 17:52:14 +02001860
Ville Syrjäläcfc33bf2013-04-17 17:48:48 +03001861 if (pch_iir & SDE_AUDIO_POWER_MASK) {
1862 int port = ffs((pch_iir & SDE_AUDIO_POWER_MASK) >>
1863 SDE_AUDIO_POWER_SHIFT);
Jesse Barnes776ad802011-01-04 15:09:39 -08001864 DRM_DEBUG_DRIVER("PCH audio power change on port %d\n",
Ville Syrjäläcfc33bf2013-04-17 17:48:48 +03001865 port_name(port));
1866 }
Jesse Barnes776ad802011-01-04 15:09:39 -08001867
Daniel Vetterce99c252012-12-01 13:53:47 +01001868 if (pch_iir & SDE_AUX_MASK)
1869 dp_aux_irq_handler(dev);
1870
Jesse Barnes776ad802011-01-04 15:09:39 -08001871 if (pch_iir & SDE_GMBUS)
Daniel Vetter515ac2b2012-12-01 13:53:44 +01001872 gmbus_irq_handler(dev);
Jesse Barnes776ad802011-01-04 15:09:39 -08001873
1874 if (pch_iir & SDE_AUDIO_HDCP_MASK)
1875 DRM_DEBUG_DRIVER("PCH HDCP audio interrupt\n");
1876
1877 if (pch_iir & SDE_AUDIO_TRANS_MASK)
1878 DRM_DEBUG_DRIVER("PCH transcoder audio interrupt\n");
1879
1880 if (pch_iir & SDE_POISON)
1881 DRM_ERROR("PCH poison interrupt\n");
1882
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001883 if (pch_iir & SDE_FDI_MASK)
Damien Lespiau055e3932014-08-18 13:49:10 +01001884 for_each_pipe(dev_priv, pipe)
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001885 DRM_DEBUG_DRIVER(" pipe %c FDI IIR: 0x%08x\n",
1886 pipe_name(pipe),
1887 I915_READ(FDI_RX_IIR(pipe)));
Jesse Barnes776ad802011-01-04 15:09:39 -08001888
1889 if (pch_iir & (SDE_TRANSB_CRC_DONE | SDE_TRANSA_CRC_DONE))
1890 DRM_DEBUG_DRIVER("PCH transcoder CRC done interrupt\n");
1891
1892 if (pch_iir & (SDE_TRANSB_CRC_ERR | SDE_TRANSA_CRC_ERR))
1893 DRM_DEBUG_DRIVER("PCH transcoder CRC error interrupt\n");
1894
Jesse Barnes776ad802011-01-04 15:09:39 -08001895 if (pch_iir & SDE_TRANSA_FIFO_UNDER)
Daniel Vetter1f7247c2014-09-30 10:56:48 +02001896 intel_pch_fifo_underrun_irq_handler(dev_priv, TRANSCODER_A);
Paulo Zanoni86642812013-04-12 17:57:57 -03001897
1898 if (pch_iir & SDE_TRANSB_FIFO_UNDER)
Daniel Vetter1f7247c2014-09-30 10:56:48 +02001899 intel_pch_fifo_underrun_irq_handler(dev_priv, TRANSCODER_B);
Paulo Zanoni86642812013-04-12 17:57:57 -03001900}
1901
1902static void ivb_err_int_handler(struct drm_device *dev)
1903{
1904 struct drm_i915_private *dev_priv = dev->dev_private;
1905 u32 err_int = I915_READ(GEN7_ERR_INT);
Daniel Vetter5a69b892013-10-16 22:55:52 +02001906 enum pipe pipe;
Paulo Zanoni86642812013-04-12 17:57:57 -03001907
Paulo Zanonide032bf2013-04-12 17:57:58 -03001908 if (err_int & ERR_INT_POISON)
1909 DRM_ERROR("Poison interrupt\n");
1910
Damien Lespiau055e3932014-08-18 13:49:10 +01001911 for_each_pipe(dev_priv, pipe) {
Daniel Vetter1f7247c2014-09-30 10:56:48 +02001912 if (err_int & ERR_INT_FIFO_UNDERRUN(pipe))
1913 intel_cpu_fifo_underrun_irq_handler(dev_priv, pipe);
Paulo Zanoni86642812013-04-12 17:57:57 -03001914
Daniel Vetter5a69b892013-10-16 22:55:52 +02001915 if (err_int & ERR_INT_PIPE_CRC_DONE(pipe)) {
1916 if (IS_IVYBRIDGE(dev))
Daniel Vetter277de952013-10-18 16:37:07 +02001917 ivb_pipe_crc_irq_handler(dev, pipe);
Daniel Vetter5a69b892013-10-16 22:55:52 +02001918 else
Daniel Vetter277de952013-10-18 16:37:07 +02001919 hsw_pipe_crc_irq_handler(dev, pipe);
Daniel Vetter5a69b892013-10-16 22:55:52 +02001920 }
1921 }
Shuang He8bf1e9f2013-10-15 18:55:27 +01001922
Paulo Zanoni86642812013-04-12 17:57:57 -03001923 I915_WRITE(GEN7_ERR_INT, err_int);
1924}
1925
1926static void cpt_serr_int_handler(struct drm_device *dev)
1927{
1928 struct drm_i915_private *dev_priv = dev->dev_private;
1929 u32 serr_int = I915_READ(SERR_INT);
1930
Paulo Zanonide032bf2013-04-12 17:57:58 -03001931 if (serr_int & SERR_INT_POISON)
1932 DRM_ERROR("PCH poison interrupt\n");
1933
Paulo Zanoni86642812013-04-12 17:57:57 -03001934 if (serr_int & SERR_INT_TRANS_A_FIFO_UNDERRUN)
Daniel Vetter1f7247c2014-09-30 10:56:48 +02001935 intel_pch_fifo_underrun_irq_handler(dev_priv, TRANSCODER_A);
Paulo Zanoni86642812013-04-12 17:57:57 -03001936
1937 if (serr_int & SERR_INT_TRANS_B_FIFO_UNDERRUN)
Daniel Vetter1f7247c2014-09-30 10:56:48 +02001938 intel_pch_fifo_underrun_irq_handler(dev_priv, TRANSCODER_B);
Paulo Zanoni86642812013-04-12 17:57:57 -03001939
1940 if (serr_int & SERR_INT_TRANS_C_FIFO_UNDERRUN)
Daniel Vetter1f7247c2014-09-30 10:56:48 +02001941 intel_pch_fifo_underrun_irq_handler(dev_priv, TRANSCODER_C);
Paulo Zanoni86642812013-04-12 17:57:57 -03001942
1943 I915_WRITE(SERR_INT, serr_int);
Jesse Barnes776ad802011-01-04 15:09:39 -08001944}
1945
Adam Jackson23e81d62012-06-06 15:45:44 -04001946static void cpt_irq_handler(struct drm_device *dev, u32 pch_iir)
1947{
Jani Nikula2d1013d2014-03-31 14:27:17 +03001948 struct drm_i915_private *dev_priv = dev->dev_private;
Adam Jackson23e81d62012-06-06 15:45:44 -04001949 int pipe;
Ville Syrjälä6dbf30c2015-08-27 23:56:02 +03001950 u32 hotplug_trigger = pch_iir & SDE_HOTPLUG_MASK_CPT;
Adam Jackson23e81d62012-06-06 15:45:44 -04001951
Jani Nikula6a39d7c2015-11-25 16:47:22 +02001952 ibx_hpd_irq_handler(dev, hotplug_trigger, hpd_cpt);
Daniel Vetter91d131d2013-06-27 17:52:14 +02001953
Ville Syrjäläcfc33bf2013-04-17 17:48:48 +03001954 if (pch_iir & SDE_AUDIO_POWER_MASK_CPT) {
1955 int port = ffs((pch_iir & SDE_AUDIO_POWER_MASK_CPT) >>
1956 SDE_AUDIO_POWER_SHIFT_CPT);
1957 DRM_DEBUG_DRIVER("PCH audio power change on port %c\n",
1958 port_name(port));
1959 }
Adam Jackson23e81d62012-06-06 15:45:44 -04001960
1961 if (pch_iir & SDE_AUX_MASK_CPT)
Daniel Vetterce99c252012-12-01 13:53:47 +01001962 dp_aux_irq_handler(dev);
Adam Jackson23e81d62012-06-06 15:45:44 -04001963
1964 if (pch_iir & SDE_GMBUS_CPT)
Daniel Vetter515ac2b2012-12-01 13:53:44 +01001965 gmbus_irq_handler(dev);
Adam Jackson23e81d62012-06-06 15:45:44 -04001966
1967 if (pch_iir & SDE_AUDIO_CP_REQ_CPT)
1968 DRM_DEBUG_DRIVER("Audio CP request interrupt\n");
1969
1970 if (pch_iir & SDE_AUDIO_CP_CHG_CPT)
1971 DRM_DEBUG_DRIVER("Audio CP change interrupt\n");
1972
1973 if (pch_iir & SDE_FDI_MASK_CPT)
Damien Lespiau055e3932014-08-18 13:49:10 +01001974 for_each_pipe(dev_priv, pipe)
Adam Jackson23e81d62012-06-06 15:45:44 -04001975 DRM_DEBUG_DRIVER(" pipe %c FDI IIR: 0x%08x\n",
1976 pipe_name(pipe),
1977 I915_READ(FDI_RX_IIR(pipe)));
Paulo Zanoni86642812013-04-12 17:57:57 -03001978
1979 if (pch_iir & SDE_ERROR_CPT)
1980 cpt_serr_int_handler(dev);
Adam Jackson23e81d62012-06-06 15:45:44 -04001981}
1982
Ville Syrjälä6dbf30c2015-08-27 23:56:02 +03001983static void spt_irq_handler(struct drm_device *dev, u32 pch_iir)
1984{
1985 struct drm_i915_private *dev_priv = dev->dev_private;
1986 u32 hotplug_trigger = pch_iir & SDE_HOTPLUG_MASK_SPT &
1987 ~SDE_PORTE_HOTPLUG_SPT;
1988 u32 hotplug2_trigger = pch_iir & SDE_PORTE_HOTPLUG_SPT;
1989 u32 pin_mask = 0, long_mask = 0;
1990
1991 if (hotplug_trigger) {
1992 u32 dig_hotplug_reg;
1993
1994 dig_hotplug_reg = I915_READ(PCH_PORT_HOTPLUG);
1995 I915_WRITE(PCH_PORT_HOTPLUG, dig_hotplug_reg);
1996
1997 intel_get_hpd_pins(&pin_mask, &long_mask, hotplug_trigger,
1998 dig_hotplug_reg, hpd_spt,
Ville Syrjälä74c0b392015-08-27 23:56:07 +03001999 spt_port_hotplug_long_detect);
Ville Syrjälä6dbf30c2015-08-27 23:56:02 +03002000 }
2001
2002 if (hotplug2_trigger) {
2003 u32 dig_hotplug_reg;
2004
2005 dig_hotplug_reg = I915_READ(PCH_PORT_HOTPLUG2);
2006 I915_WRITE(PCH_PORT_HOTPLUG2, dig_hotplug_reg);
2007
2008 intel_get_hpd_pins(&pin_mask, &long_mask, hotplug2_trigger,
2009 dig_hotplug_reg, hpd_spt,
2010 spt_port_hotplug2_long_detect);
2011 }
2012
2013 if (pin_mask)
2014 intel_hpd_irq_handler(dev, pin_mask, long_mask);
2015
2016 if (pch_iir & SDE_GMBUS_CPT)
2017 gmbus_irq_handler(dev);
2018}
2019
Ville Syrjälä40e56412015-08-27 23:56:10 +03002020static void ilk_hpd_irq_handler(struct drm_device *dev, u32 hotplug_trigger,
2021 const u32 hpd[HPD_NUM_PINS])
2022{
2023 struct drm_i915_private *dev_priv = to_i915(dev);
2024 u32 dig_hotplug_reg, pin_mask = 0, long_mask = 0;
2025
2026 dig_hotplug_reg = I915_READ(DIGITAL_PORT_HOTPLUG_CNTRL);
2027 I915_WRITE(DIGITAL_PORT_HOTPLUG_CNTRL, dig_hotplug_reg);
2028
2029 intel_get_hpd_pins(&pin_mask, &long_mask, hotplug_trigger,
2030 dig_hotplug_reg, hpd,
2031 ilk_port_hotplug_long_detect);
2032
2033 intel_hpd_irq_handler(dev, pin_mask, long_mask);
2034}
2035
Paulo Zanonic008bc62013-07-12 16:35:10 -03002036static void ilk_display_irq_handler(struct drm_device *dev, u32 de_iir)
2037{
2038 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter40da17c22013-10-21 18:04:36 +02002039 enum pipe pipe;
Ville Syrjäläe4ce95a2015-08-27 23:56:03 +03002040 u32 hotplug_trigger = de_iir & DE_DP_A_HOTPLUG;
2041
Ville Syrjälä40e56412015-08-27 23:56:10 +03002042 if (hotplug_trigger)
2043 ilk_hpd_irq_handler(dev, hotplug_trigger, hpd_ilk);
Paulo Zanonic008bc62013-07-12 16:35:10 -03002044
2045 if (de_iir & DE_AUX_CHANNEL_A)
2046 dp_aux_irq_handler(dev);
2047
2048 if (de_iir & DE_GSE)
2049 intel_opregion_asle_intr(dev);
2050
Paulo Zanonic008bc62013-07-12 16:35:10 -03002051 if (de_iir & DE_POISON)
2052 DRM_ERROR("Poison interrupt\n");
2053
Damien Lespiau055e3932014-08-18 13:49:10 +01002054 for_each_pipe(dev_priv, pipe) {
Chris Wilsond6bbafa2014-09-05 07:13:24 +01002055 if (de_iir & DE_PIPE_VBLANK(pipe) &&
2056 intel_pipe_handle_vblank(dev, pipe))
2057 intel_check_page_flip(dev, pipe);
Paulo Zanonic008bc62013-07-12 16:35:10 -03002058
Daniel Vetter40da17c22013-10-21 18:04:36 +02002059 if (de_iir & DE_PIPE_FIFO_UNDERRUN(pipe))
Daniel Vetter1f7247c2014-09-30 10:56:48 +02002060 intel_cpu_fifo_underrun_irq_handler(dev_priv, pipe);
Paulo Zanonic008bc62013-07-12 16:35:10 -03002061
Daniel Vetter40da17c22013-10-21 18:04:36 +02002062 if (de_iir & DE_PIPE_CRC_DONE(pipe))
2063 i9xx_pipe_crc_irq_handler(dev, pipe);
Daniel Vetter5b3a8562013-10-16 22:55:48 +02002064
Daniel Vetter40da17c22013-10-21 18:04:36 +02002065 /* plane/pipes map 1:1 on ilk+ */
2066 if (de_iir & DE_PLANE_FLIP_DONE(pipe)) {
2067 intel_prepare_page_flip(dev, pipe);
2068 intel_finish_page_flip_plane(dev, pipe);
2069 }
Paulo Zanonic008bc62013-07-12 16:35:10 -03002070 }
2071
2072 /* check event from PCH */
2073 if (de_iir & DE_PCH_EVENT) {
2074 u32 pch_iir = I915_READ(SDEIIR);
2075
2076 if (HAS_PCH_CPT(dev))
2077 cpt_irq_handler(dev, pch_iir);
2078 else
2079 ibx_irq_handler(dev, pch_iir);
2080
2081 /* should clear PCH hotplug event before clear CPU irq */
2082 I915_WRITE(SDEIIR, pch_iir);
2083 }
2084
2085 if (IS_GEN5(dev) && de_iir & DE_PCU_EVENT)
2086 ironlake_rps_change_irq_handler(dev);
2087}
2088
Paulo Zanoni9719fb92013-07-12 16:35:11 -03002089static void ivb_display_irq_handler(struct drm_device *dev, u32 de_iir)
2090{
2091 struct drm_i915_private *dev_priv = dev->dev_private;
Damien Lespiau07d27e22014-03-03 17:31:46 +00002092 enum pipe pipe;
Ville Syrjälä23bb4cb2015-08-27 23:56:04 +03002093 u32 hotplug_trigger = de_iir & DE_DP_A_HOTPLUG_IVB;
2094
Ville Syrjälä40e56412015-08-27 23:56:10 +03002095 if (hotplug_trigger)
2096 ilk_hpd_irq_handler(dev, hotplug_trigger, hpd_ivb);
Paulo Zanoni9719fb92013-07-12 16:35:11 -03002097
2098 if (de_iir & DE_ERR_INT_IVB)
2099 ivb_err_int_handler(dev);
2100
2101 if (de_iir & DE_AUX_CHANNEL_A_IVB)
2102 dp_aux_irq_handler(dev);
2103
2104 if (de_iir & DE_GSE_IVB)
2105 intel_opregion_asle_intr(dev);
2106
Damien Lespiau055e3932014-08-18 13:49:10 +01002107 for_each_pipe(dev_priv, pipe) {
Chris Wilsond6bbafa2014-09-05 07:13:24 +01002108 if (de_iir & (DE_PIPE_VBLANK_IVB(pipe)) &&
2109 intel_pipe_handle_vblank(dev, pipe))
2110 intel_check_page_flip(dev, pipe);
Daniel Vetter40da17c22013-10-21 18:04:36 +02002111
2112 /* plane/pipes map 1:1 on ilk+ */
Damien Lespiau07d27e22014-03-03 17:31:46 +00002113 if (de_iir & DE_PLANE_FLIP_DONE_IVB(pipe)) {
2114 intel_prepare_page_flip(dev, pipe);
2115 intel_finish_page_flip_plane(dev, pipe);
Paulo Zanoni9719fb92013-07-12 16:35:11 -03002116 }
2117 }
2118
2119 /* check event from PCH */
2120 if (!HAS_PCH_NOP(dev) && (de_iir & DE_PCH_EVENT_IVB)) {
2121 u32 pch_iir = I915_READ(SDEIIR);
2122
2123 cpt_irq_handler(dev, pch_iir);
2124
2125 /* clear PCH hotplug event before clear CPU irq */
2126 I915_WRITE(SDEIIR, pch_iir);
2127 }
2128}
2129
Oscar Mateo72c90f62014-06-16 16:10:57 +01002130/*
2131 * To handle irqs with the minimum potential races with fresh interrupts, we:
2132 * 1 - Disable Master Interrupt Control.
2133 * 2 - Find the source(s) of the interrupt.
2134 * 3 - Clear the Interrupt Identity bits (IIR).
2135 * 4 - Process the interrupt(s) that had bits set in the IIRs.
2136 * 5 - Re-enable Master Interrupt Control.
2137 */
Paulo Zanonif1af8fc2013-07-12 19:56:30 -03002138static irqreturn_t ironlake_irq_handler(int irq, void *arg)
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002139{
Daniel Vetter45a83f82014-05-12 19:17:55 +02002140 struct drm_device *dev = arg;
Jani Nikula2d1013d2014-03-31 14:27:17 +03002141 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanonif1af8fc2013-07-12 19:56:30 -03002142 u32 de_iir, gt_iir, de_ier, sde_ier = 0;
Chris Wilson0e434062012-05-09 21:45:44 +01002143 irqreturn_t ret = IRQ_NONE;
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002144
Imre Deak2dd2a882015-02-24 11:14:30 +02002145 if (!intel_irqs_enabled(dev_priv))
2146 return IRQ_NONE;
2147
Paulo Zanoni86642812013-04-12 17:57:57 -03002148 /* We get interrupts on unclaimed registers, so check for this before we
2149 * do any I915_{READ,WRITE}. */
Chris Wilson907b28c2013-07-19 20:36:52 +01002150 intel_uncore_check_errors(dev);
Paulo Zanoni86642812013-04-12 17:57:57 -03002151
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002152 /* disable master interrupt before clearing iir */
2153 de_ier = I915_READ(DEIER);
2154 I915_WRITE(DEIER, de_ier & ~DE_MASTER_IRQ_CONTROL);
Paulo Zanoni23a78512013-07-12 16:35:14 -03002155 POSTING_READ(DEIER);
Chris Wilson0e434062012-05-09 21:45:44 +01002156
Paulo Zanoni44498ae2013-02-22 17:05:28 -03002157 /* Disable south interrupts. We'll only write to SDEIIR once, so further
2158 * interrupts will will be stored on its back queue, and then we'll be
2159 * able to process them after we restore SDEIER (as soon as we restore
2160 * it, we'll get an interrupt if SDEIIR still has something to process
2161 * due to its back queue). */
Ben Widawskyab5c6082013-04-05 13:12:41 -07002162 if (!HAS_PCH_NOP(dev)) {
2163 sde_ier = I915_READ(SDEIER);
2164 I915_WRITE(SDEIER, 0);
2165 POSTING_READ(SDEIER);
2166 }
Paulo Zanoni44498ae2013-02-22 17:05:28 -03002167
Oscar Mateo72c90f62014-06-16 16:10:57 +01002168 /* Find, clear, then process each source of interrupt */
2169
Chris Wilson0e434062012-05-09 21:45:44 +01002170 gt_iir = I915_READ(GTIIR);
2171 if (gt_iir) {
Oscar Mateo72c90f62014-06-16 16:10:57 +01002172 I915_WRITE(GTIIR, gt_iir);
2173 ret = IRQ_HANDLED;
Paulo Zanonid8fc8a42013-07-19 18:57:55 -03002174 if (INTEL_INFO(dev)->gen >= 6)
Paulo Zanonif1af8fc2013-07-12 19:56:30 -03002175 snb_gt_irq_handler(dev, dev_priv, gt_iir);
Paulo Zanonid8fc8a42013-07-19 18:57:55 -03002176 else
2177 ilk_gt_irq_handler(dev, dev_priv, gt_iir);
Chris Wilson0e434062012-05-09 21:45:44 +01002178 }
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002179
2180 de_iir = I915_READ(DEIIR);
Chris Wilson0e434062012-05-09 21:45:44 +01002181 if (de_iir) {
Oscar Mateo72c90f62014-06-16 16:10:57 +01002182 I915_WRITE(DEIIR, de_iir);
2183 ret = IRQ_HANDLED;
Paulo Zanonif1af8fc2013-07-12 19:56:30 -03002184 if (INTEL_INFO(dev)->gen >= 7)
2185 ivb_display_irq_handler(dev, de_iir);
2186 else
2187 ilk_display_irq_handler(dev, de_iir);
Chris Wilson0e434062012-05-09 21:45:44 +01002188 }
2189
Paulo Zanonif1af8fc2013-07-12 19:56:30 -03002190 if (INTEL_INFO(dev)->gen >= 6) {
2191 u32 pm_iir = I915_READ(GEN6_PMIIR);
2192 if (pm_iir) {
Paulo Zanonif1af8fc2013-07-12 19:56:30 -03002193 I915_WRITE(GEN6_PMIIR, pm_iir);
2194 ret = IRQ_HANDLED;
Oscar Mateo72c90f62014-06-16 16:10:57 +01002195 gen6_rps_irq_handler(dev_priv, pm_iir);
Paulo Zanonif1af8fc2013-07-12 19:56:30 -03002196 }
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002197 }
2198
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002199 I915_WRITE(DEIER, de_ier);
2200 POSTING_READ(DEIER);
Ben Widawskyab5c6082013-04-05 13:12:41 -07002201 if (!HAS_PCH_NOP(dev)) {
2202 I915_WRITE(SDEIER, sde_ier);
2203 POSTING_READ(SDEIER);
2204 }
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002205
2206 return ret;
2207}
2208
Ville Syrjälä40e56412015-08-27 23:56:10 +03002209static void bxt_hpd_irq_handler(struct drm_device *dev, u32 hotplug_trigger,
2210 const u32 hpd[HPD_NUM_PINS])
Shashank Sharmad04a4922014-08-22 17:40:41 +05302211{
Ville Syrjäläcebd87a2015-08-27 23:56:09 +03002212 struct drm_i915_private *dev_priv = to_i915(dev);
2213 u32 dig_hotplug_reg, pin_mask = 0, long_mask = 0;
Shashank Sharmad04a4922014-08-22 17:40:41 +05302214
Ville Syrjäläa52bb152015-08-27 23:56:11 +03002215 dig_hotplug_reg = I915_READ(PCH_PORT_HOTPLUG);
2216 I915_WRITE(PCH_PORT_HOTPLUG, dig_hotplug_reg);
Shashank Sharmad04a4922014-08-22 17:40:41 +05302217
Ville Syrjäläcebd87a2015-08-27 23:56:09 +03002218 intel_get_hpd_pins(&pin_mask, &long_mask, hotplug_trigger,
Ville Syrjälä40e56412015-08-27 23:56:10 +03002219 dig_hotplug_reg, hpd,
Ville Syrjäläcebd87a2015-08-27 23:56:09 +03002220 bxt_port_hotplug_long_detect);
Ville Syrjälä40e56412015-08-27 23:56:10 +03002221
Jani Nikula475c2e32015-05-28 15:43:54 +03002222 intel_hpd_irq_handler(dev, pin_mask, long_mask);
Shashank Sharmad04a4922014-08-22 17:40:41 +05302223}
2224
Ben Widawskyabd58f02013-11-02 21:07:09 -07002225static irqreturn_t gen8_irq_handler(int irq, void *arg)
2226{
2227 struct drm_device *dev = arg;
2228 struct drm_i915_private *dev_priv = dev->dev_private;
2229 u32 master_ctl;
2230 irqreturn_t ret = IRQ_NONE;
2231 uint32_t tmp = 0;
Daniel Vetterc42664c2013-11-07 11:05:40 +01002232 enum pipe pipe;
Jesse Barnes88e04702014-11-13 17:51:48 +00002233 u32 aux_mask = GEN8_AUX_CHANNEL_A;
2234
Imre Deak2dd2a882015-02-24 11:14:30 +02002235 if (!intel_irqs_enabled(dev_priv))
2236 return IRQ_NONE;
2237
Rodrigo Vivib4834a52015-09-02 15:19:24 -07002238 if (INTEL_INFO(dev_priv)->gen >= 9)
Jesse Barnes88e04702014-11-13 17:51:48 +00002239 aux_mask |= GEN9_AUX_CHANNEL_B | GEN9_AUX_CHANNEL_C |
2240 GEN9_AUX_CHANNEL_D;
Ben Widawskyabd58f02013-11-02 21:07:09 -07002241
Chris Wilsoncb0d2052015-04-07 16:21:04 +01002242 master_ctl = I915_READ_FW(GEN8_MASTER_IRQ);
Ben Widawskyabd58f02013-11-02 21:07:09 -07002243 master_ctl &= ~GEN8_MASTER_IRQ_CONTROL;
2244 if (!master_ctl)
2245 return IRQ_NONE;
2246
Chris Wilsoncb0d2052015-04-07 16:21:04 +01002247 I915_WRITE_FW(GEN8_MASTER_IRQ, 0);
Ben Widawskyabd58f02013-11-02 21:07:09 -07002248
Oscar Mateo38cc46d2014-06-16 16:10:59 +01002249 /* Find, clear, then process each source of interrupt */
2250
Chris Wilson74cdb332015-04-07 16:21:05 +01002251 ret = gen8_gt_irq_handler(dev_priv, master_ctl);
Ben Widawskyabd58f02013-11-02 21:07:09 -07002252
2253 if (master_ctl & GEN8_DE_MISC_IRQ) {
2254 tmp = I915_READ(GEN8_DE_MISC_IIR);
Ben Widawskyabd58f02013-11-02 21:07:09 -07002255 if (tmp) {
2256 I915_WRITE(GEN8_DE_MISC_IIR, tmp);
2257 ret = IRQ_HANDLED;
Oscar Mateo38cc46d2014-06-16 16:10:59 +01002258 if (tmp & GEN8_DE_MISC_GSE)
2259 intel_opregion_asle_intr(dev);
2260 else
2261 DRM_ERROR("Unexpected DE Misc interrupt\n");
Ben Widawskyabd58f02013-11-02 21:07:09 -07002262 }
Oscar Mateo38cc46d2014-06-16 16:10:59 +01002263 else
2264 DRM_ERROR("The master control interrupt lied (DE MISC)!\n");
Ben Widawskyabd58f02013-11-02 21:07:09 -07002265 }
2266
Daniel Vetter6d766f02013-11-07 14:49:55 +01002267 if (master_ctl & GEN8_DE_PORT_IRQ) {
2268 tmp = I915_READ(GEN8_DE_PORT_IIR);
Daniel Vetter6d766f02013-11-07 14:49:55 +01002269 if (tmp) {
Shashank Sharmad04a4922014-08-22 17:40:41 +05302270 bool found = false;
Ville Syrjäläcebd87a2015-08-27 23:56:09 +03002271 u32 hotplug_trigger = 0;
2272
2273 if (IS_BROXTON(dev_priv))
2274 hotplug_trigger = tmp & BXT_DE_PORT_HOTPLUG_MASK;
2275 else if (IS_BROADWELL(dev_priv))
2276 hotplug_trigger = tmp & GEN8_PORT_DP_A_HOTPLUG;
Shashank Sharmad04a4922014-08-22 17:40:41 +05302277
Daniel Vetter6d766f02013-11-07 14:49:55 +01002278 I915_WRITE(GEN8_DE_PORT_IIR, tmp);
2279 ret = IRQ_HANDLED;
Jesse Barnes88e04702014-11-13 17:51:48 +00002280
Shashank Sharmad04a4922014-08-22 17:40:41 +05302281 if (tmp & aux_mask) {
Oscar Mateo38cc46d2014-06-16 16:10:59 +01002282 dp_aux_irq_handler(dev);
Shashank Sharmad04a4922014-08-22 17:40:41 +05302283 found = true;
2284 }
2285
Ville Syrjälä40e56412015-08-27 23:56:10 +03002286 if (hotplug_trigger) {
2287 if (IS_BROXTON(dev))
2288 bxt_hpd_irq_handler(dev, hotplug_trigger, hpd_bxt);
2289 else
2290 ilk_hpd_irq_handler(dev, hotplug_trigger, hpd_bdw);
Shashank Sharmad04a4922014-08-22 17:40:41 +05302291 found = true;
2292 }
2293
Shashank Sharma9e637432014-08-22 17:40:43 +05302294 if (IS_BROXTON(dev) && (tmp & BXT_DE_PORT_GMBUS)) {
2295 gmbus_irq_handler(dev);
2296 found = true;
2297 }
2298
Shashank Sharmad04a4922014-08-22 17:40:41 +05302299 if (!found)
Oscar Mateo38cc46d2014-06-16 16:10:59 +01002300 DRM_ERROR("Unexpected DE Port interrupt\n");
Daniel Vetter6d766f02013-11-07 14:49:55 +01002301 }
Oscar Mateo38cc46d2014-06-16 16:10:59 +01002302 else
2303 DRM_ERROR("The master control interrupt lied (DE PORT)!\n");
Daniel Vetter6d766f02013-11-07 14:49:55 +01002304 }
2305
Damien Lespiau055e3932014-08-18 13:49:10 +01002306 for_each_pipe(dev_priv, pipe) {
Damien Lespiau770de832014-03-20 20:45:01 +00002307 uint32_t pipe_iir, flip_done = 0, fault_errors = 0;
Ben Widawskyabd58f02013-11-02 21:07:09 -07002308
Daniel Vetterc42664c2013-11-07 11:05:40 +01002309 if (!(master_ctl & GEN8_DE_PIPE_IRQ(pipe)))
2310 continue;
Ben Widawskyabd58f02013-11-02 21:07:09 -07002311
Daniel Vetterc42664c2013-11-07 11:05:40 +01002312 pipe_iir = I915_READ(GEN8_DE_PIPE_IIR(pipe));
Daniel Vetterc42664c2013-11-07 11:05:40 +01002313 if (pipe_iir) {
2314 ret = IRQ_HANDLED;
2315 I915_WRITE(GEN8_DE_PIPE_IIR(pipe), pipe_iir);
Damien Lespiau770de832014-03-20 20:45:01 +00002316
Chris Wilsond6bbafa2014-09-05 07:13:24 +01002317 if (pipe_iir & GEN8_PIPE_VBLANK &&
2318 intel_pipe_handle_vblank(dev, pipe))
2319 intel_check_page_flip(dev, pipe);
Oscar Mateo38cc46d2014-06-16 16:10:59 +01002320
Rodrigo Vivib4834a52015-09-02 15:19:24 -07002321 if (INTEL_INFO(dev_priv)->gen >= 9)
Damien Lespiau770de832014-03-20 20:45:01 +00002322 flip_done = pipe_iir & GEN9_PIPE_PLANE1_FLIP_DONE;
2323 else
2324 flip_done = pipe_iir & GEN8_PIPE_PRIMARY_FLIP_DONE;
2325
2326 if (flip_done) {
Oscar Mateo38cc46d2014-06-16 16:10:59 +01002327 intel_prepare_page_flip(dev, pipe);
2328 intel_finish_page_flip_plane(dev, pipe);
2329 }
2330
2331 if (pipe_iir & GEN8_PIPE_CDCLK_CRC_DONE)
2332 hsw_pipe_crc_irq_handler(dev, pipe);
2333
Daniel Vetter1f7247c2014-09-30 10:56:48 +02002334 if (pipe_iir & GEN8_PIPE_FIFO_UNDERRUN)
2335 intel_cpu_fifo_underrun_irq_handler(dev_priv,
2336 pipe);
Oscar Mateo38cc46d2014-06-16 16:10:59 +01002337
Damien Lespiau770de832014-03-20 20:45:01 +00002338
Rodrigo Vivib4834a52015-09-02 15:19:24 -07002339 if (INTEL_INFO(dev_priv)->gen >= 9)
Damien Lespiau770de832014-03-20 20:45:01 +00002340 fault_errors = pipe_iir & GEN9_DE_PIPE_IRQ_FAULT_ERRORS;
2341 else
2342 fault_errors = pipe_iir & GEN8_DE_PIPE_IRQ_FAULT_ERRORS;
2343
2344 if (fault_errors)
Oscar Mateo38cc46d2014-06-16 16:10:59 +01002345 DRM_ERROR("Fault errors on pipe %c\n: 0x%08x",
2346 pipe_name(pipe),
2347 pipe_iir & GEN8_DE_PIPE_IRQ_FAULT_ERRORS);
Daniel Vetterc42664c2013-11-07 11:05:40 +01002348 } else
Ben Widawskyabd58f02013-11-02 21:07:09 -07002349 DRM_ERROR("The master control interrupt lied (DE PIPE)!\n");
2350 }
2351
Shashank Sharma266ea3d2014-08-22 17:40:42 +05302352 if (HAS_PCH_SPLIT(dev) && !HAS_PCH_NOP(dev) &&
2353 master_ctl & GEN8_DE_PCH_IRQ) {
Daniel Vetter92d03a82013-11-07 11:05:43 +01002354 /*
2355 * FIXME(BDW): Assume for now that the new interrupt handling
2356 * scheme also closed the SDE interrupt handling race we've seen
2357 * on older pch-split platforms. But this needs testing.
2358 */
2359 u32 pch_iir = I915_READ(SDEIIR);
Daniel Vetter92d03a82013-11-07 11:05:43 +01002360 if (pch_iir) {
2361 I915_WRITE(SDEIIR, pch_iir);
2362 ret = IRQ_HANDLED;
Ville Syrjälä6dbf30c2015-08-27 23:56:02 +03002363
2364 if (HAS_PCH_SPT(dev_priv))
2365 spt_irq_handler(dev, pch_iir);
2366 else
2367 cpt_irq_handler(dev, pch_iir);
Daniel Vetter97e5ed12015-10-23 10:56:12 +02002368 } else {
2369 /*
2370 * Like on previous PCH there seems to be something
2371 * fishy going on with forwarding PCH interrupts.
2372 */
2373 DRM_DEBUG_DRIVER("The master control interrupt lied (SDE)!\n");
2374 }
Daniel Vetter92d03a82013-11-07 11:05:43 +01002375 }
2376
Chris Wilsoncb0d2052015-04-07 16:21:04 +01002377 I915_WRITE_FW(GEN8_MASTER_IRQ, GEN8_MASTER_IRQ_CONTROL);
2378 POSTING_READ_FW(GEN8_MASTER_IRQ);
Ben Widawskyabd58f02013-11-02 21:07:09 -07002379
2380 return ret;
2381}
2382
Daniel Vetter17e1df02013-09-08 21:57:13 +02002383static void i915_error_wake_up(struct drm_i915_private *dev_priv,
2384 bool reset_completed)
2385{
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002386 struct intel_engine_cs *ring;
Daniel Vetter17e1df02013-09-08 21:57:13 +02002387 int i;
2388
2389 /*
2390 * Notify all waiters for GPU completion events that reset state has
2391 * been changed, and that they need to restart their wait after
2392 * checking for potential errors (and bail out to drop locks if there is
2393 * a gpu reset pending so that i915_error_work_func can acquire them).
2394 */
2395
2396 /* Wake up __wait_seqno, potentially holding dev->struct_mutex. */
2397 for_each_ring(ring, dev_priv, i)
2398 wake_up_all(&ring->irq_queue);
2399
2400 /* Wake up intel_crtc_wait_for_pending_flips, holding crtc->mutex. */
2401 wake_up_all(&dev_priv->pending_flip_queue);
2402
2403 /*
2404 * Signal tasks blocked in i915_gem_wait_for_error that the pending
2405 * reset state is cleared.
2406 */
2407 if (reset_completed)
2408 wake_up_all(&dev_priv->gpu_error.reset_queue);
2409}
2410
Jesse Barnes8a905232009-07-11 16:48:03 -04002411/**
Mika Kuoppalab8d24a02015-01-28 17:03:14 +02002412 * i915_reset_and_wakeup - do process context error handling work
Javier Martinez Canillas468f9d22015-10-08 09:54:44 +02002413 * @dev: drm device
Jesse Barnes8a905232009-07-11 16:48:03 -04002414 *
2415 * Fire an error uevent so userspace can see that a hang or error
2416 * was detected.
2417 */
Mika Kuoppalab8d24a02015-01-28 17:03:14 +02002418static void i915_reset_and_wakeup(struct drm_device *dev)
Jesse Barnes8a905232009-07-11 16:48:03 -04002419{
Mika Kuoppalab8d24a02015-01-28 17:03:14 +02002420 struct drm_i915_private *dev_priv = to_i915(dev);
2421 struct i915_gpu_error *error = &dev_priv->gpu_error;
Ben Widawskycce723e2013-07-19 09:16:42 -07002422 char *error_event[] = { I915_ERROR_UEVENT "=1", NULL };
2423 char *reset_event[] = { I915_RESET_UEVENT "=1", NULL };
2424 char *reset_done_event[] = { I915_ERROR_UEVENT "=0", NULL };
Daniel Vetter17e1df02013-09-08 21:57:13 +02002425 int ret;
Jesse Barnes8a905232009-07-11 16:48:03 -04002426
Dave Airlie5bdebb12013-10-11 14:07:25 +10002427 kobject_uevent_env(&dev->primary->kdev->kobj, KOBJ_CHANGE, error_event);
Jesse Barnes8a905232009-07-11 16:48:03 -04002428
Daniel Vetter7db0ba22012-12-06 16:23:37 +01002429 /*
2430 * Note that there's only one work item which does gpu resets, so we
2431 * need not worry about concurrent gpu resets potentially incrementing
2432 * error->reset_counter twice. We only need to take care of another
2433 * racing irq/hangcheck declaring the gpu dead for a second time. A
2434 * quick check for that is good enough: schedule_work ensures the
2435 * correct ordering between hang detection and this work item, and since
2436 * the reset in-progress bit is only ever set by code outside of this
2437 * work we don't need to worry about any other races.
2438 */
2439 if (i915_reset_in_progress(error) && !i915_terminally_wedged(error)) {
Chris Wilsonf803aa52010-09-19 12:38:26 +01002440 DRM_DEBUG_DRIVER("resetting chip\n");
Dave Airlie5bdebb12013-10-11 14:07:25 +10002441 kobject_uevent_env(&dev->primary->kdev->kobj, KOBJ_CHANGE,
Daniel Vetter7db0ba22012-12-06 16:23:37 +01002442 reset_event);
Daniel Vetter1f83fee2012-11-15 17:17:22 +01002443
Daniel Vetter17e1df02013-09-08 21:57:13 +02002444 /*
Imre Deakf454c692014-04-23 01:09:04 +03002445 * In most cases it's guaranteed that we get here with an RPM
2446 * reference held, for example because there is a pending GPU
2447 * request that won't finish until the reset is done. This
2448 * isn't the case at least when we get here by doing a
2449 * simulated reset via debugs, so get an RPM reference.
2450 */
2451 intel_runtime_pm_get(dev_priv);
Ville Syrjälä75147472014-11-24 18:28:11 +02002452
2453 intel_prepare_reset(dev);
2454
Imre Deakf454c692014-04-23 01:09:04 +03002455 /*
Daniel Vetter17e1df02013-09-08 21:57:13 +02002456 * All state reset _must_ be completed before we update the
2457 * reset counter, for otherwise waiters might miss the reset
2458 * pending state and not properly drop locks, resulting in
2459 * deadlocks with the reset work.
2460 */
Daniel Vetterf69061b2012-12-06 09:01:42 +01002461 ret = i915_reset(dev);
2462
Ville Syrjälä75147472014-11-24 18:28:11 +02002463 intel_finish_reset(dev);
Daniel Vetter17e1df02013-09-08 21:57:13 +02002464
Imre Deakf454c692014-04-23 01:09:04 +03002465 intel_runtime_pm_put(dev_priv);
2466
Daniel Vetterf69061b2012-12-06 09:01:42 +01002467 if (ret == 0) {
2468 /*
2469 * After all the gem state is reset, increment the reset
2470 * counter and wake up everyone waiting for the reset to
2471 * complete.
2472 *
2473 * Since unlock operations are a one-sided barrier only,
2474 * we need to insert a barrier here to order any seqno
2475 * updates before
2476 * the counter increment.
2477 */
Peter Zijlstra4e857c52014-03-17 18:06:10 +01002478 smp_mb__before_atomic();
Daniel Vetterf69061b2012-12-06 09:01:42 +01002479 atomic_inc(&dev_priv->gpu_error.reset_counter);
2480
Dave Airlie5bdebb12013-10-11 14:07:25 +10002481 kobject_uevent_env(&dev->primary->kdev->kobj,
Daniel Vetterf69061b2012-12-06 09:01:42 +01002482 KOBJ_CHANGE, reset_done_event);
Daniel Vetter1f83fee2012-11-15 17:17:22 +01002483 } else {
Peter Zijlstra805de8f42015-04-24 01:12:32 +02002484 atomic_or(I915_WEDGED, &error->reset_counter);
Ben Gamarif316a422009-09-14 17:48:46 -04002485 }
Daniel Vetter1f83fee2012-11-15 17:17:22 +01002486
Daniel Vetter17e1df02013-09-08 21:57:13 +02002487 /*
2488 * Note: The wake_up also serves as a memory barrier so that
2489 * waiters see the update value of the reset counter atomic_t.
2490 */
2491 i915_error_wake_up(dev_priv, true);
Ben Gamarif316a422009-09-14 17:48:46 -04002492 }
Jesse Barnes8a905232009-07-11 16:48:03 -04002493}
2494
Chris Wilson35aed2e2010-05-27 13:18:12 +01002495static void i915_report_and_clear_eir(struct drm_device *dev)
Jesse Barnes8a905232009-07-11 16:48:03 -04002496{
2497 struct drm_i915_private *dev_priv = dev->dev_private;
Ben Widawskybd9854f2012-08-23 15:18:09 -07002498 uint32_t instdone[I915_NUM_INSTDONE_REG];
Jesse Barnes8a905232009-07-11 16:48:03 -04002499 u32 eir = I915_READ(EIR);
Ben Widawsky050ee912012-08-22 11:32:15 -07002500 int pipe, i;
Jesse Barnes8a905232009-07-11 16:48:03 -04002501
Chris Wilson35aed2e2010-05-27 13:18:12 +01002502 if (!eir)
2503 return;
Jesse Barnes8a905232009-07-11 16:48:03 -04002504
Joe Perchesa70491c2012-03-18 13:00:11 -07002505 pr_err("render error detected, EIR: 0x%08x\n", eir);
Jesse Barnes8a905232009-07-11 16:48:03 -04002506
Ben Widawskybd9854f2012-08-23 15:18:09 -07002507 i915_get_extra_instdone(dev, instdone);
2508
Jesse Barnes8a905232009-07-11 16:48:03 -04002509 if (IS_G4X(dev)) {
2510 if (eir & (GM45_ERROR_MEM_PRIV | GM45_ERROR_CP_PRIV)) {
2511 u32 ipeir = I915_READ(IPEIR_I965);
2512
Joe Perchesa70491c2012-03-18 13:00:11 -07002513 pr_err(" IPEIR: 0x%08x\n", I915_READ(IPEIR_I965));
2514 pr_err(" IPEHR: 0x%08x\n", I915_READ(IPEHR_I965));
Ben Widawsky050ee912012-08-22 11:32:15 -07002515 for (i = 0; i < ARRAY_SIZE(instdone); i++)
2516 pr_err(" INSTDONE_%d: 0x%08x\n", i, instdone[i]);
Joe Perchesa70491c2012-03-18 13:00:11 -07002517 pr_err(" INSTPS: 0x%08x\n", I915_READ(INSTPS));
Joe Perchesa70491c2012-03-18 13:00:11 -07002518 pr_err(" ACTHD: 0x%08x\n", I915_READ(ACTHD_I965));
Jesse Barnes8a905232009-07-11 16:48:03 -04002519 I915_WRITE(IPEIR_I965, ipeir);
Chris Wilson3143a2b2010-11-16 15:55:10 +00002520 POSTING_READ(IPEIR_I965);
Jesse Barnes8a905232009-07-11 16:48:03 -04002521 }
2522 if (eir & GM45_ERROR_PAGE_TABLE) {
2523 u32 pgtbl_err = I915_READ(PGTBL_ER);
Joe Perchesa70491c2012-03-18 13:00:11 -07002524 pr_err("page table error\n");
2525 pr_err(" PGTBL_ER: 0x%08x\n", pgtbl_err);
Jesse Barnes8a905232009-07-11 16:48:03 -04002526 I915_WRITE(PGTBL_ER, pgtbl_err);
Chris Wilson3143a2b2010-11-16 15:55:10 +00002527 POSTING_READ(PGTBL_ER);
Jesse Barnes8a905232009-07-11 16:48:03 -04002528 }
2529 }
2530
Chris Wilsona6c45cf2010-09-17 00:32:17 +01002531 if (!IS_GEN2(dev)) {
Jesse Barnes8a905232009-07-11 16:48:03 -04002532 if (eir & I915_ERROR_PAGE_TABLE) {
2533 u32 pgtbl_err = I915_READ(PGTBL_ER);
Joe Perchesa70491c2012-03-18 13:00:11 -07002534 pr_err("page table error\n");
2535 pr_err(" PGTBL_ER: 0x%08x\n", pgtbl_err);
Jesse Barnes8a905232009-07-11 16:48:03 -04002536 I915_WRITE(PGTBL_ER, pgtbl_err);
Chris Wilson3143a2b2010-11-16 15:55:10 +00002537 POSTING_READ(PGTBL_ER);
Jesse Barnes8a905232009-07-11 16:48:03 -04002538 }
2539 }
2540
2541 if (eir & I915_ERROR_MEMORY_REFRESH) {
Joe Perchesa70491c2012-03-18 13:00:11 -07002542 pr_err("memory refresh error:\n");
Damien Lespiau055e3932014-08-18 13:49:10 +01002543 for_each_pipe(dev_priv, pipe)
Joe Perchesa70491c2012-03-18 13:00:11 -07002544 pr_err("pipe %c stat: 0x%08x\n",
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08002545 pipe_name(pipe), I915_READ(PIPESTAT(pipe)));
Jesse Barnes8a905232009-07-11 16:48:03 -04002546 /* pipestat has already been acked */
2547 }
2548 if (eir & I915_ERROR_INSTRUCTION) {
Joe Perchesa70491c2012-03-18 13:00:11 -07002549 pr_err("instruction error\n");
2550 pr_err(" INSTPM: 0x%08x\n", I915_READ(INSTPM));
Ben Widawsky050ee912012-08-22 11:32:15 -07002551 for (i = 0; i < ARRAY_SIZE(instdone); i++)
2552 pr_err(" INSTDONE_%d: 0x%08x\n", i, instdone[i]);
Chris Wilsona6c45cf2010-09-17 00:32:17 +01002553 if (INTEL_INFO(dev)->gen < 4) {
Jesse Barnes8a905232009-07-11 16:48:03 -04002554 u32 ipeir = I915_READ(IPEIR);
2555
Joe Perchesa70491c2012-03-18 13:00:11 -07002556 pr_err(" IPEIR: 0x%08x\n", I915_READ(IPEIR));
2557 pr_err(" IPEHR: 0x%08x\n", I915_READ(IPEHR));
Joe Perchesa70491c2012-03-18 13:00:11 -07002558 pr_err(" ACTHD: 0x%08x\n", I915_READ(ACTHD));
Jesse Barnes8a905232009-07-11 16:48:03 -04002559 I915_WRITE(IPEIR, ipeir);
Chris Wilson3143a2b2010-11-16 15:55:10 +00002560 POSTING_READ(IPEIR);
Jesse Barnes8a905232009-07-11 16:48:03 -04002561 } else {
2562 u32 ipeir = I915_READ(IPEIR_I965);
2563
Joe Perchesa70491c2012-03-18 13:00:11 -07002564 pr_err(" IPEIR: 0x%08x\n", I915_READ(IPEIR_I965));
2565 pr_err(" IPEHR: 0x%08x\n", I915_READ(IPEHR_I965));
Joe Perchesa70491c2012-03-18 13:00:11 -07002566 pr_err(" INSTPS: 0x%08x\n", I915_READ(INSTPS));
Joe Perchesa70491c2012-03-18 13:00:11 -07002567 pr_err(" ACTHD: 0x%08x\n", I915_READ(ACTHD_I965));
Jesse Barnes8a905232009-07-11 16:48:03 -04002568 I915_WRITE(IPEIR_I965, ipeir);
Chris Wilson3143a2b2010-11-16 15:55:10 +00002569 POSTING_READ(IPEIR_I965);
Jesse Barnes8a905232009-07-11 16:48:03 -04002570 }
2571 }
2572
2573 I915_WRITE(EIR, eir);
Chris Wilson3143a2b2010-11-16 15:55:10 +00002574 POSTING_READ(EIR);
Jesse Barnes8a905232009-07-11 16:48:03 -04002575 eir = I915_READ(EIR);
2576 if (eir) {
2577 /*
2578 * some errors might have become stuck,
2579 * mask them.
2580 */
2581 DRM_ERROR("EIR stuck: 0x%08x, masking\n", eir);
2582 I915_WRITE(EMR, I915_READ(EMR) | eir);
2583 I915_WRITE(IIR, I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT);
2584 }
Chris Wilson35aed2e2010-05-27 13:18:12 +01002585}
2586
2587/**
Mika Kuoppalab8d24a02015-01-28 17:03:14 +02002588 * i915_handle_error - handle a gpu error
Chris Wilson35aed2e2010-05-27 13:18:12 +01002589 * @dev: drm device
2590 *
Javier Martinez Canillasaafd8582015-10-08 09:57:49 +02002591 * Do some basic checking of register state at error time and
Chris Wilson35aed2e2010-05-27 13:18:12 +01002592 * dump it to the syslog. Also call i915_capture_error_state() to make
2593 * sure we get a record and make it available in debugfs. Fire a uevent
2594 * so userspace knows something bad happened (should trigger collection
2595 * of a ring dump etc.).
2596 */
Mika Kuoppala58174462014-02-25 17:11:26 +02002597void i915_handle_error(struct drm_device *dev, bool wedged,
2598 const char *fmt, ...)
Chris Wilson35aed2e2010-05-27 13:18:12 +01002599{
2600 struct drm_i915_private *dev_priv = dev->dev_private;
Mika Kuoppala58174462014-02-25 17:11:26 +02002601 va_list args;
2602 char error_msg[80];
Chris Wilson35aed2e2010-05-27 13:18:12 +01002603
Mika Kuoppala58174462014-02-25 17:11:26 +02002604 va_start(args, fmt);
2605 vscnprintf(error_msg, sizeof(error_msg), fmt, args);
2606 va_end(args);
2607
2608 i915_capture_error_state(dev, wedged, error_msg);
Chris Wilson35aed2e2010-05-27 13:18:12 +01002609 i915_report_and_clear_eir(dev);
Jesse Barnes8a905232009-07-11 16:48:03 -04002610
Ben Gamariba1234d2009-09-14 17:48:47 -04002611 if (wedged) {
Peter Zijlstra805de8f42015-04-24 01:12:32 +02002612 atomic_or(I915_RESET_IN_PROGRESS_FLAG,
Daniel Vetterf69061b2012-12-06 09:01:42 +01002613 &dev_priv->gpu_error.reset_counter);
Ben Gamariba1234d2009-09-14 17:48:47 -04002614
Ben Gamari11ed50e2009-09-14 17:48:45 -04002615 /*
Mika Kuoppalab8d24a02015-01-28 17:03:14 +02002616 * Wakeup waiting processes so that the reset function
2617 * i915_reset_and_wakeup doesn't deadlock trying to grab
2618 * various locks. By bumping the reset counter first, the woken
Daniel Vetter17e1df02013-09-08 21:57:13 +02002619 * processes will see a reset in progress and back off,
2620 * releasing their locks and then wait for the reset completion.
2621 * We must do this for _all_ gpu waiters that might hold locks
2622 * that the reset work needs to acquire.
2623 *
2624 * Note: The wake_up serves as the required memory barrier to
2625 * ensure that the waiters see the updated value of the reset
2626 * counter atomic_t.
Ben Gamari11ed50e2009-09-14 17:48:45 -04002627 */
Daniel Vetter17e1df02013-09-08 21:57:13 +02002628 i915_error_wake_up(dev_priv, false);
Ben Gamari11ed50e2009-09-14 17:48:45 -04002629 }
2630
Mika Kuoppalab8d24a02015-01-28 17:03:14 +02002631 i915_reset_and_wakeup(dev);
Jesse Barnes8a905232009-07-11 16:48:03 -04002632}
2633
Keith Packard42f52ef2008-10-18 19:39:29 -07002634/* Called from drm generic code, passed 'crtc' which
2635 * we use as a pipe index
2636 */
Thierry Reding88e72712015-09-24 18:35:31 +02002637static int i915_enable_vblank(struct drm_device *dev, unsigned int pipe)
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07002638{
Jani Nikula2d1013d2014-03-31 14:27:17 +03002639 struct drm_i915_private *dev_priv = dev->dev_private;
Keith Packarde9d21d72008-10-16 11:31:38 -07002640 unsigned long irqflags;
Jesse Barnes71e0ffa2009-01-08 10:42:15 -08002641
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002642 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Jesse Barnesf796cf82011-04-07 13:58:17 -07002643 if (INTEL_INFO(dev)->gen >= 4)
Keith Packard7c463582008-11-04 02:03:27 -08002644 i915_enable_pipestat(dev_priv, pipe,
Imre Deak755e9012014-02-10 18:42:47 +02002645 PIPE_START_VBLANK_INTERRUPT_STATUS);
Keith Packarde9d21d72008-10-16 11:31:38 -07002646 else
Keith Packard7c463582008-11-04 02:03:27 -08002647 i915_enable_pipestat(dev_priv, pipe,
Imre Deak755e9012014-02-10 18:42:47 +02002648 PIPE_VBLANK_INTERRUPT_STATUS);
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002649 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
Chris Wilson8692d00e2011-02-05 10:08:21 +00002650
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07002651 return 0;
2652}
2653
Thierry Reding88e72712015-09-24 18:35:31 +02002654static int ironlake_enable_vblank(struct drm_device *dev, unsigned int pipe)
Jesse Barnesf796cf82011-04-07 13:58:17 -07002655{
Jani Nikula2d1013d2014-03-31 14:27:17 +03002656 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnesf796cf82011-04-07 13:58:17 -07002657 unsigned long irqflags;
Paulo Zanonib5184212013-07-12 20:00:08 -03002658 uint32_t bit = (INTEL_INFO(dev)->gen >= 7) ? DE_PIPE_VBLANK_IVB(pipe) :
Daniel Vetter40da17c22013-10-21 18:04:36 +02002659 DE_PIPE_VBLANK(pipe);
Jesse Barnesf796cf82011-04-07 13:58:17 -07002660
Jesse Barnesf796cf82011-04-07 13:58:17 -07002661 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Paulo Zanonib5184212013-07-12 20:00:08 -03002662 ironlake_enable_display_irq(dev_priv, bit);
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002663 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
2664
2665 return 0;
2666}
2667
Thierry Reding88e72712015-09-24 18:35:31 +02002668static int valleyview_enable_vblank(struct drm_device *dev, unsigned int pipe)
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002669{
Jani Nikula2d1013d2014-03-31 14:27:17 +03002670 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002671 unsigned long irqflags;
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002672
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002673 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Jesse Barnes31acc7f2012-06-20 10:53:11 -07002674 i915_enable_pipestat(dev_priv, pipe,
Imre Deak755e9012014-02-10 18:42:47 +02002675 PIPE_START_VBLANK_INTERRUPT_STATUS);
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002676 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
2677
2678 return 0;
2679}
2680
Thierry Reding88e72712015-09-24 18:35:31 +02002681static int gen8_enable_vblank(struct drm_device *dev, unsigned int pipe)
Ben Widawskyabd58f02013-11-02 21:07:09 -07002682{
2683 struct drm_i915_private *dev_priv = dev->dev_private;
2684 unsigned long irqflags;
Ben Widawskyabd58f02013-11-02 21:07:09 -07002685
Ben Widawskyabd58f02013-11-02 21:07:09 -07002686 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Daniel Vetter7167d7c2013-11-07 11:05:45 +01002687 dev_priv->de_irq_mask[pipe] &= ~GEN8_PIPE_VBLANK;
2688 I915_WRITE(GEN8_DE_PIPE_IMR(pipe), dev_priv->de_irq_mask[pipe]);
2689 POSTING_READ(GEN8_DE_PIPE_IMR(pipe));
Ben Widawskyabd58f02013-11-02 21:07:09 -07002690 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
2691 return 0;
2692}
2693
Keith Packard42f52ef2008-10-18 19:39:29 -07002694/* Called from drm generic code, passed 'crtc' which
2695 * we use as a pipe index
2696 */
Thierry Reding88e72712015-09-24 18:35:31 +02002697static void i915_disable_vblank(struct drm_device *dev, unsigned int pipe)
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07002698{
Jani Nikula2d1013d2014-03-31 14:27:17 +03002699 struct drm_i915_private *dev_priv = dev->dev_private;
Keith Packarde9d21d72008-10-16 11:31:38 -07002700 unsigned long irqflags;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07002701
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002702 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Jesse Barnesf796cf82011-04-07 13:58:17 -07002703 i915_disable_pipestat(dev_priv, pipe,
Imre Deak755e9012014-02-10 18:42:47 +02002704 PIPE_VBLANK_INTERRUPT_STATUS |
2705 PIPE_START_VBLANK_INTERRUPT_STATUS);
Jesse Barnesf796cf82011-04-07 13:58:17 -07002706 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
2707}
2708
Thierry Reding88e72712015-09-24 18:35:31 +02002709static void ironlake_disable_vblank(struct drm_device *dev, unsigned int pipe)
Jesse Barnesf796cf82011-04-07 13:58:17 -07002710{
Jani Nikula2d1013d2014-03-31 14:27:17 +03002711 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnesf796cf82011-04-07 13:58:17 -07002712 unsigned long irqflags;
Paulo Zanonib5184212013-07-12 20:00:08 -03002713 uint32_t bit = (INTEL_INFO(dev)->gen >= 7) ? DE_PIPE_VBLANK_IVB(pipe) :
Daniel Vetter40da17c22013-10-21 18:04:36 +02002714 DE_PIPE_VBLANK(pipe);
Jesse Barnesf796cf82011-04-07 13:58:17 -07002715
2716 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Paulo Zanonib5184212013-07-12 20:00:08 -03002717 ironlake_disable_display_irq(dev_priv, bit);
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002718 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
2719}
2720
Thierry Reding88e72712015-09-24 18:35:31 +02002721static void valleyview_disable_vblank(struct drm_device *dev, unsigned int pipe)
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002722{
Jani Nikula2d1013d2014-03-31 14:27:17 +03002723 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002724 unsigned long irqflags;
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002725
2726 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Jesse Barnes31acc7f2012-06-20 10:53:11 -07002727 i915_disable_pipestat(dev_priv, pipe,
Imre Deak755e9012014-02-10 18:42:47 +02002728 PIPE_START_VBLANK_INTERRUPT_STATUS);
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002729 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
2730}
2731
Thierry Reding88e72712015-09-24 18:35:31 +02002732static void gen8_disable_vblank(struct drm_device *dev, unsigned int pipe)
Ben Widawskyabd58f02013-11-02 21:07:09 -07002733{
2734 struct drm_i915_private *dev_priv = dev->dev_private;
2735 unsigned long irqflags;
Ben Widawskyabd58f02013-11-02 21:07:09 -07002736
Ben Widawskyabd58f02013-11-02 21:07:09 -07002737 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Daniel Vetter7167d7c2013-11-07 11:05:45 +01002738 dev_priv->de_irq_mask[pipe] |= GEN8_PIPE_VBLANK;
2739 I915_WRITE(GEN8_DE_PIPE_IMR(pipe), dev_priv->de_irq_mask[pipe]);
2740 POSTING_READ(GEN8_DE_PIPE_IMR(pipe));
Ben Widawskyabd58f02013-11-02 21:07:09 -07002741 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
2742}
2743
Chris Wilson9107e9d2013-06-10 11:20:20 +01002744static bool
Tomas Elf94f7bbe2015-07-09 15:30:57 +01002745ring_idle(struct intel_engine_cs *ring, u32 seqno)
Chris Wilson893eead2010-10-27 14:44:35 +01002746{
Chris Wilson9107e9d2013-06-10 11:20:20 +01002747 return (list_empty(&ring->request_list) ||
Tomas Elf94f7bbe2015-07-09 15:30:57 +01002748 i915_seqno_passed(seqno, ring->last_submitted_seqno));
Ben Gamarif65d9422009-09-14 17:48:44 -04002749}
2750
Daniel Vettera028c4b2014-03-15 00:08:56 +01002751static bool
2752ipehr_is_semaphore_wait(struct drm_device *dev, u32 ipehr)
2753{
2754 if (INTEL_INFO(dev)->gen >= 8) {
Rodrigo Vivia6cdb932014-06-30 09:53:39 -07002755 return (ipehr >> 23) == 0x1c;
Daniel Vettera028c4b2014-03-15 00:08:56 +01002756 } else {
2757 ipehr &= ~MI_SEMAPHORE_SYNC_MASK;
2758 return ipehr == (MI_SEMAPHORE_MBOX | MI_SEMAPHORE_COMPARE |
2759 MI_SEMAPHORE_REGISTER);
2760 }
2761}
2762
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002763static struct intel_engine_cs *
Rodrigo Vivia6cdb932014-06-30 09:53:39 -07002764semaphore_wait_to_signaller_ring(struct intel_engine_cs *ring, u32 ipehr, u64 offset)
Daniel Vetter921d42e2014-03-18 10:26:04 +01002765{
2766 struct drm_i915_private *dev_priv = ring->dev->dev_private;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002767 struct intel_engine_cs *signaller;
Daniel Vetter921d42e2014-03-18 10:26:04 +01002768 int i;
2769
2770 if (INTEL_INFO(dev_priv->dev)->gen >= 8) {
Rodrigo Vivia6cdb932014-06-30 09:53:39 -07002771 for_each_ring(signaller, dev_priv, i) {
2772 if (ring == signaller)
2773 continue;
2774
2775 if (offset == signaller->semaphore.signal_ggtt[ring->id])
2776 return signaller;
2777 }
Daniel Vetter921d42e2014-03-18 10:26:04 +01002778 } else {
2779 u32 sync_bits = ipehr & MI_SEMAPHORE_SYNC_MASK;
2780
2781 for_each_ring(signaller, dev_priv, i) {
2782 if(ring == signaller)
2783 continue;
2784
Ben Widawskyebc348b2014-04-29 14:52:28 -07002785 if (sync_bits == signaller->semaphore.mbox.wait[ring->id])
Daniel Vetter921d42e2014-03-18 10:26:04 +01002786 return signaller;
2787 }
2788 }
2789
Rodrigo Vivia6cdb932014-06-30 09:53:39 -07002790 DRM_ERROR("No signaller ring found for ring %i, ipehr 0x%08x, offset 0x%016llx\n",
2791 ring->id, ipehr, offset);
Daniel Vetter921d42e2014-03-18 10:26:04 +01002792
2793 return NULL;
2794}
2795
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002796static struct intel_engine_cs *
2797semaphore_waits_for(struct intel_engine_cs *ring, u32 *seqno)
Chris Wilsona24a11e2013-03-14 17:52:05 +02002798{
2799 struct drm_i915_private *dev_priv = ring->dev->dev_private;
Daniel Vetter88fe4292014-03-15 00:08:55 +01002800 u32 cmd, ipehr, head;
Rodrigo Vivia6cdb932014-06-30 09:53:39 -07002801 u64 offset = 0;
2802 int i, backwards;
Chris Wilsona24a11e2013-03-14 17:52:05 +02002803
Tomas Elf381e8ae2015-10-08 19:31:33 +01002804 /*
2805 * This function does not support execlist mode - any attempt to
2806 * proceed further into this function will result in a kernel panic
2807 * when dereferencing ring->buffer, which is not set up in execlist
2808 * mode.
2809 *
2810 * The correct way of doing it would be to derive the currently
2811 * executing ring buffer from the current context, which is derived
2812 * from the currently running request. Unfortunately, to get the
2813 * current request we would have to grab the struct_mutex before doing
2814 * anything else, which would be ill-advised since some other thread
2815 * might have grabbed it already and managed to hang itself, causing
2816 * the hang checker to deadlock.
2817 *
2818 * Therefore, this function does not support execlist mode in its
2819 * current form. Just return NULL and move on.
2820 */
2821 if (ring->buffer == NULL)
2822 return NULL;
2823
Chris Wilsona24a11e2013-03-14 17:52:05 +02002824 ipehr = I915_READ(RING_IPEHR(ring->mmio_base));
Daniel Vettera028c4b2014-03-15 00:08:56 +01002825 if (!ipehr_is_semaphore_wait(ring->dev, ipehr))
Chris Wilson6274f212013-06-10 11:20:21 +01002826 return NULL;
Chris Wilsona24a11e2013-03-14 17:52:05 +02002827
Daniel Vetter88fe4292014-03-15 00:08:55 +01002828 /*
2829 * HEAD is likely pointing to the dword after the actual command,
2830 * so scan backwards until we find the MBOX. But limit it to just 3
Rodrigo Vivia6cdb932014-06-30 09:53:39 -07002831 * or 4 dwords depending on the semaphore wait command size.
2832 * Note that we don't care about ACTHD here since that might
Daniel Vetter88fe4292014-03-15 00:08:55 +01002833 * point at at batch, and semaphores are always emitted into the
2834 * ringbuffer itself.
Chris Wilsona24a11e2013-03-14 17:52:05 +02002835 */
Daniel Vetter88fe4292014-03-15 00:08:55 +01002836 head = I915_READ_HEAD(ring) & HEAD_ADDR;
Rodrigo Vivia6cdb932014-06-30 09:53:39 -07002837 backwards = (INTEL_INFO(ring->dev)->gen >= 8) ? 5 : 4;
Daniel Vetter88fe4292014-03-15 00:08:55 +01002838
Rodrigo Vivia6cdb932014-06-30 09:53:39 -07002839 for (i = backwards; i; --i) {
Daniel Vetter88fe4292014-03-15 00:08:55 +01002840 /*
2841 * Be paranoid and presume the hw has gone off into the wild -
2842 * our ring is smaller than what the hardware (and hence
2843 * HEAD_ADDR) allows. Also handles wrap-around.
2844 */
Oscar Mateoee1b1e52014-05-22 14:13:35 +01002845 head &= ring->buffer->size - 1;
Daniel Vetter88fe4292014-03-15 00:08:55 +01002846
2847 /* This here seems to blow up */
Oscar Mateoee1b1e52014-05-22 14:13:35 +01002848 cmd = ioread32(ring->buffer->virtual_start + head);
Chris Wilsona24a11e2013-03-14 17:52:05 +02002849 if (cmd == ipehr)
2850 break;
2851
Daniel Vetter88fe4292014-03-15 00:08:55 +01002852 head -= 4;
2853 }
Chris Wilsona24a11e2013-03-14 17:52:05 +02002854
Daniel Vetter88fe4292014-03-15 00:08:55 +01002855 if (!i)
2856 return NULL;
2857
Oscar Mateoee1b1e52014-05-22 14:13:35 +01002858 *seqno = ioread32(ring->buffer->virtual_start + head + 4) + 1;
Rodrigo Vivia6cdb932014-06-30 09:53:39 -07002859 if (INTEL_INFO(ring->dev)->gen >= 8) {
2860 offset = ioread32(ring->buffer->virtual_start + head + 12);
2861 offset <<= 32;
2862 offset = ioread32(ring->buffer->virtual_start + head + 8);
2863 }
2864 return semaphore_wait_to_signaller_ring(ring, ipehr, offset);
Chris Wilsona24a11e2013-03-14 17:52:05 +02002865}
2866
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002867static int semaphore_passed(struct intel_engine_cs *ring)
Chris Wilson6274f212013-06-10 11:20:21 +01002868{
2869 struct drm_i915_private *dev_priv = ring->dev->dev_private;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002870 struct intel_engine_cs *signaller;
Chris Wilsona0d036b2014-07-19 12:40:42 +01002871 u32 seqno;
Chris Wilson6274f212013-06-10 11:20:21 +01002872
Chris Wilson4be17382014-06-06 10:22:29 +01002873 ring->hangcheck.deadlock++;
Chris Wilson6274f212013-06-10 11:20:21 +01002874
2875 signaller = semaphore_waits_for(ring, &seqno);
Chris Wilson4be17382014-06-06 10:22:29 +01002876 if (signaller == NULL)
2877 return -1;
2878
2879 /* Prevent pathological recursion due to driver bugs */
2880 if (signaller->hangcheck.deadlock >= I915_NUM_RINGS)
Chris Wilson6274f212013-06-10 11:20:21 +01002881 return -1;
2882
Chris Wilson4be17382014-06-06 10:22:29 +01002883 if (i915_seqno_passed(signaller->get_seqno(signaller, false), seqno))
2884 return 1;
2885
Chris Wilsona0d036b2014-07-19 12:40:42 +01002886 /* cursory check for an unkickable deadlock */
2887 if (I915_READ_CTL(signaller) & RING_WAIT_SEMAPHORE &&
2888 semaphore_passed(signaller) < 0)
Chris Wilson4be17382014-06-06 10:22:29 +01002889 return -1;
2890
2891 return 0;
Chris Wilson6274f212013-06-10 11:20:21 +01002892}
2893
2894static void semaphore_clear_deadlocks(struct drm_i915_private *dev_priv)
2895{
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002896 struct intel_engine_cs *ring;
Chris Wilson6274f212013-06-10 11:20:21 +01002897 int i;
2898
2899 for_each_ring(ring, dev_priv, i)
Chris Wilson4be17382014-06-06 10:22:29 +01002900 ring->hangcheck.deadlock = 0;
Chris Wilson6274f212013-06-10 11:20:21 +01002901}
2902
Mika Kuoppalaad8beae2013-06-12 12:35:32 +03002903static enum intel_ring_hangcheck_action
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002904ring_stuck(struct intel_engine_cs *ring, u64 acthd)
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002905{
2906 struct drm_device *dev = ring->dev;
2907 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson9107e9d2013-06-10 11:20:20 +01002908 u32 tmp;
2909
Mika Kuoppalaf260fe72014-08-05 17:16:26 +03002910 if (acthd != ring->hangcheck.acthd) {
2911 if (acthd > ring->hangcheck.max_acthd) {
2912 ring->hangcheck.max_acthd = acthd;
2913 return HANGCHECK_ACTIVE;
2914 }
2915
2916 return HANGCHECK_ACTIVE_LOOP;
2917 }
Chris Wilson6274f212013-06-10 11:20:21 +01002918
Chris Wilson9107e9d2013-06-10 11:20:20 +01002919 if (IS_GEN2(dev))
Jani Nikulaf2f4d822013-08-11 12:44:01 +03002920 return HANGCHECK_HUNG;
Chris Wilson9107e9d2013-06-10 11:20:20 +01002921
2922 /* Is the chip hanging on a WAIT_FOR_EVENT?
2923 * If so we can simply poke the RB_WAIT bit
2924 * and break the hang. This should work on
2925 * all but the second generation chipsets.
2926 */
2927 tmp = I915_READ_CTL(ring);
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002928 if (tmp & RING_WAIT) {
Mika Kuoppala58174462014-02-25 17:11:26 +02002929 i915_handle_error(dev, false,
2930 "Kicking stuck wait on %s",
2931 ring->name);
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002932 I915_WRITE_CTL(ring, tmp);
Jani Nikulaf2f4d822013-08-11 12:44:01 +03002933 return HANGCHECK_KICK;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002934 }
Chris Wilsona24a11e2013-03-14 17:52:05 +02002935
Chris Wilson6274f212013-06-10 11:20:21 +01002936 if (INTEL_INFO(dev)->gen >= 6 && tmp & RING_WAIT_SEMAPHORE) {
2937 switch (semaphore_passed(ring)) {
2938 default:
Jani Nikulaf2f4d822013-08-11 12:44:01 +03002939 return HANGCHECK_HUNG;
Chris Wilson6274f212013-06-10 11:20:21 +01002940 case 1:
Mika Kuoppala58174462014-02-25 17:11:26 +02002941 i915_handle_error(dev, false,
2942 "Kicking stuck semaphore on %s",
2943 ring->name);
Chris Wilson6274f212013-06-10 11:20:21 +01002944 I915_WRITE_CTL(ring, tmp);
Jani Nikulaf2f4d822013-08-11 12:44:01 +03002945 return HANGCHECK_KICK;
Chris Wilson6274f212013-06-10 11:20:21 +01002946 case 0:
Jani Nikulaf2f4d822013-08-11 12:44:01 +03002947 return HANGCHECK_WAIT;
Chris Wilson6274f212013-06-10 11:20:21 +01002948 }
Chris Wilson9107e9d2013-06-10 11:20:20 +01002949 }
Mika Kuoppalaed5cbb02013-05-13 16:32:11 +03002950
Jani Nikulaf2f4d822013-08-11 12:44:01 +03002951 return HANGCHECK_HUNG;
Mika Kuoppalaed5cbb02013-05-13 16:32:11 +03002952}
2953
Chris Wilson737b1502015-01-26 18:03:03 +02002954/*
Ben Gamarif65d9422009-09-14 17:48:44 -04002955 * This is called when the chip hasn't reported back with completed
Mika Kuoppala05407ff2013-05-30 09:04:29 +03002956 * batchbuffers in a long time. We keep track per ring seqno progress and
2957 * if there are no progress, hangcheck score for that ring is increased.
2958 * Further, acthd is inspected to see if the ring is stuck. On stuck case
2959 * we kick the ring. If we see no progress on three subsequent calls
2960 * we assume chip is wedged and try to fix it by resetting the chip.
Ben Gamarif65d9422009-09-14 17:48:44 -04002961 */
Chris Wilson737b1502015-01-26 18:03:03 +02002962static void i915_hangcheck_elapsed(struct work_struct *work)
Ben Gamarif65d9422009-09-14 17:48:44 -04002963{
Chris Wilson737b1502015-01-26 18:03:03 +02002964 struct drm_i915_private *dev_priv =
2965 container_of(work, typeof(*dev_priv),
2966 gpu_error.hangcheck_work.work);
2967 struct drm_device *dev = dev_priv->dev;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002968 struct intel_engine_cs *ring;
Chris Wilsonb4519512012-05-11 14:29:30 +01002969 int i;
Mika Kuoppala05407ff2013-05-30 09:04:29 +03002970 int busy_count = 0, rings_hung = 0;
Chris Wilson9107e9d2013-06-10 11:20:20 +01002971 bool stuck[I915_NUM_RINGS] = { 0 };
2972#define BUSY 1
2973#define KICK 5
2974#define HUNG 20
Chris Wilson893eead2010-10-27 14:44:35 +01002975
Jani Nikulad330a952014-01-21 11:24:25 +02002976 if (!i915.enable_hangcheck)
Ben Widawsky3e0dc6b2011-06-29 10:26:42 -07002977 return;
2978
Chris Wilsonb4519512012-05-11 14:29:30 +01002979 for_each_ring(ring, dev_priv, i) {
Chris Wilson50877442014-03-21 12:41:53 +00002980 u64 acthd;
2981 u32 seqno;
Chris Wilson9107e9d2013-06-10 11:20:20 +01002982 bool busy = true;
Chris Wilsonb4519512012-05-11 14:29:30 +01002983
Chris Wilson6274f212013-06-10 11:20:21 +01002984 semaphore_clear_deadlocks(dev_priv);
2985
Mika Kuoppala05407ff2013-05-30 09:04:29 +03002986 seqno = ring->get_seqno(ring, false);
2987 acthd = intel_ring_get_active_head(ring);
Chris Wilsond1e61e72012-04-10 17:00:41 +01002988
Chris Wilson9107e9d2013-06-10 11:20:20 +01002989 if (ring->hangcheck.seqno == seqno) {
Tomas Elf94f7bbe2015-07-09 15:30:57 +01002990 if (ring_idle(ring, seqno)) {
Mika Kuoppalada661462013-09-06 16:03:28 +03002991 ring->hangcheck.action = HANGCHECK_IDLE;
2992
Chris Wilson9107e9d2013-06-10 11:20:20 +01002993 if (waitqueue_active(&ring->irq_queue)) {
2994 /* Issue a wake-up to catch stuck h/w. */
Chris Wilson094f9a52013-09-25 17:34:55 +01002995 if (!test_and_set_bit(ring->id, &dev_priv->gpu_error.missed_irq_rings)) {
Daniel Vetterf4adcd22013-10-28 09:24:13 +01002996 if (!(dev_priv->gpu_error.test_irq_rings & intel_ring_flag(ring)))
2997 DRM_ERROR("Hangcheck timer elapsed... %s idle\n",
2998 ring->name);
2999 else
3000 DRM_INFO("Fake missed irq on %s\n",
3001 ring->name);
Chris Wilson094f9a52013-09-25 17:34:55 +01003002 wake_up_all(&ring->irq_queue);
3003 }
3004 /* Safeguard against driver failure */
3005 ring->hangcheck.score += BUSY;
Chris Wilson9107e9d2013-06-10 11:20:20 +01003006 } else
3007 busy = false;
Mika Kuoppala05407ff2013-05-30 09:04:29 +03003008 } else {
Chris Wilson6274f212013-06-10 11:20:21 +01003009 /* We always increment the hangcheck score
3010 * if the ring is busy and still processing
3011 * the same request, so that no single request
3012 * can run indefinitely (such as a chain of
3013 * batches). The only time we do not increment
3014 * the hangcheck score on this ring, if this
3015 * ring is in a legitimate wait for another
3016 * ring. In that case the waiting ring is a
3017 * victim and we want to be sure we catch the
3018 * right culprit. Then every time we do kick
3019 * the ring, add a small increment to the
3020 * score so that we can catch a batch that is
3021 * being repeatedly kicked and so responsible
3022 * for stalling the machine.
3023 */
Mika Kuoppalaad8beae2013-06-12 12:35:32 +03003024 ring->hangcheck.action = ring_stuck(ring,
3025 acthd);
3026
3027 switch (ring->hangcheck.action) {
Mika Kuoppalada661462013-09-06 16:03:28 +03003028 case HANGCHECK_IDLE:
Jani Nikulaf2f4d822013-08-11 12:44:01 +03003029 case HANGCHECK_WAIT:
Jani Nikulaf2f4d822013-08-11 12:44:01 +03003030 case HANGCHECK_ACTIVE:
Mika Kuoppalaf260fe72014-08-05 17:16:26 +03003031 break;
3032 case HANGCHECK_ACTIVE_LOOP:
Jani Nikulaea04cb32013-08-11 12:44:02 +03003033 ring->hangcheck.score += BUSY;
Chris Wilson6274f212013-06-10 11:20:21 +01003034 break;
Jani Nikulaf2f4d822013-08-11 12:44:01 +03003035 case HANGCHECK_KICK:
Jani Nikulaea04cb32013-08-11 12:44:02 +03003036 ring->hangcheck.score += KICK;
Chris Wilson6274f212013-06-10 11:20:21 +01003037 break;
Jani Nikulaf2f4d822013-08-11 12:44:01 +03003038 case HANGCHECK_HUNG:
Jani Nikulaea04cb32013-08-11 12:44:02 +03003039 ring->hangcheck.score += HUNG;
Chris Wilson6274f212013-06-10 11:20:21 +01003040 stuck[i] = true;
3041 break;
3042 }
Mika Kuoppala05407ff2013-05-30 09:04:29 +03003043 }
Chris Wilson9107e9d2013-06-10 11:20:20 +01003044 } else {
Mika Kuoppalada661462013-09-06 16:03:28 +03003045 ring->hangcheck.action = HANGCHECK_ACTIVE;
3046
Chris Wilson9107e9d2013-06-10 11:20:20 +01003047 /* Gradually reduce the count so that we catch DoS
3048 * attempts across multiple batches.
3049 */
3050 if (ring->hangcheck.score > 0)
3051 ring->hangcheck.score--;
Mika Kuoppalaf260fe72014-08-05 17:16:26 +03003052
3053 ring->hangcheck.acthd = ring->hangcheck.max_acthd = 0;
Chris Wilsond1e61e72012-04-10 17:00:41 +01003054 }
3055
Mika Kuoppala05407ff2013-05-30 09:04:29 +03003056 ring->hangcheck.seqno = seqno;
3057 ring->hangcheck.acthd = acthd;
Chris Wilson9107e9d2013-06-10 11:20:20 +01003058 busy_count += busy;
Chris Wilson893eead2010-10-27 14:44:35 +01003059 }
Eric Anholtb9201c12010-01-08 14:25:16 -08003060
Mika Kuoppala92cab732013-05-24 17:16:07 +03003061 for_each_ring(ring, dev_priv, i) {
Mika Kuoppalab6b0fac2014-01-30 19:04:43 +02003062 if (ring->hangcheck.score >= HANGCHECK_SCORE_RING_HUNG) {
Daniel Vetterb8d88d12013-08-28 10:57:59 +02003063 DRM_INFO("%s on %s\n",
3064 stuck[i] ? "stuck" : "no progress",
3065 ring->name);
Chris Wilsona43adf02013-06-10 11:20:22 +01003066 rings_hung++;
Mika Kuoppala92cab732013-05-24 17:16:07 +03003067 }
3068 }
3069
Mika Kuoppala05407ff2013-05-30 09:04:29 +03003070 if (rings_hung)
Mika Kuoppala58174462014-02-25 17:11:26 +02003071 return i915_handle_error(dev, true, "Ring hung");
Ben Gamarif65d9422009-09-14 17:48:44 -04003072
Mika Kuoppala05407ff2013-05-30 09:04:29 +03003073 if (busy_count)
3074 /* Reset timer case chip hangs without another request
3075 * being added */
Mika Kuoppala10cd45b2013-07-03 17:22:08 +03003076 i915_queue_hangcheck(dev);
3077}
3078
3079void i915_queue_hangcheck(struct drm_device *dev)
3080{
Chris Wilson737b1502015-01-26 18:03:03 +02003081 struct i915_gpu_error *e = &to_i915(dev)->gpu_error;
Chris Wilson672e7b72014-11-19 09:47:19 +00003082
Jani Nikulad330a952014-01-21 11:24:25 +02003083 if (!i915.enable_hangcheck)
Mika Kuoppala10cd45b2013-07-03 17:22:08 +03003084 return;
3085
Chris Wilson737b1502015-01-26 18:03:03 +02003086 /* Don't continually defer the hangcheck so that it is always run at
3087 * least once after work has been scheduled on any ring. Otherwise,
3088 * we will ignore a hung ring if a second ring is kept busy.
3089 */
3090
3091 queue_delayed_work(e->hangcheck_wq, &e->hangcheck_work,
3092 round_jiffies_up_relative(DRM_I915_HANGCHECK_JIFFIES));
Ben Gamarif65d9422009-09-14 17:48:44 -04003093}
3094
Paulo Zanoni1c69eb42014-04-01 15:37:23 -03003095static void ibx_irq_reset(struct drm_device *dev)
Paulo Zanoni91738a92013-06-05 14:21:51 -03003096{
3097 struct drm_i915_private *dev_priv = dev->dev_private;
3098
3099 if (HAS_PCH_NOP(dev))
3100 return;
3101
Paulo Zanonif86f3fb2014-04-01 15:37:14 -03003102 GEN5_IRQ_RESET(SDE);
Paulo Zanoni105b1222014-04-01 15:37:17 -03003103
3104 if (HAS_PCH_CPT(dev) || HAS_PCH_LPT(dev))
3105 I915_WRITE(SERR_INT, 0xffffffff);
Paulo Zanoni622364b2014-04-01 15:37:22 -03003106}
Paulo Zanoni105b1222014-04-01 15:37:17 -03003107
Paulo Zanoni622364b2014-04-01 15:37:22 -03003108/*
3109 * SDEIER is also touched by the interrupt handler to work around missed PCH
3110 * interrupts. Hence we can't update it after the interrupt handler is enabled -
3111 * instead we unconditionally enable all PCH interrupt sources here, but then
3112 * only unmask them as needed with SDEIMR.
3113 *
3114 * This function needs to be called before interrupts are enabled.
3115 */
3116static void ibx_irq_pre_postinstall(struct drm_device *dev)
3117{
3118 struct drm_i915_private *dev_priv = dev->dev_private;
3119
3120 if (HAS_PCH_NOP(dev))
3121 return;
3122
3123 WARN_ON(I915_READ(SDEIER) != 0);
Paulo Zanoni91738a92013-06-05 14:21:51 -03003124 I915_WRITE(SDEIER, 0xffffffff);
3125 POSTING_READ(SDEIER);
3126}
3127
Paulo Zanoni7c4d6642014-04-01 15:37:19 -03003128static void gen5_gt_irq_reset(struct drm_device *dev)
Daniel Vetterd18ea1b2013-07-12 22:43:25 +02003129{
3130 struct drm_i915_private *dev_priv = dev->dev_private;
3131
Paulo Zanonif86f3fb2014-04-01 15:37:14 -03003132 GEN5_IRQ_RESET(GT);
Paulo Zanonia9d356a2014-04-01 15:37:09 -03003133 if (INTEL_INFO(dev)->gen >= 6)
Paulo Zanonif86f3fb2014-04-01 15:37:14 -03003134 GEN5_IRQ_RESET(GEN6_PM);
Daniel Vetterd18ea1b2013-07-12 22:43:25 +02003135}
3136
Linus Torvalds1da177e2005-04-16 15:20:36 -07003137/* drm_dma.h hooks
3138*/
Paulo Zanonibe30b292014-04-01 15:37:25 -03003139static void ironlake_irq_reset(struct drm_device *dev)
Zhenyu Wang036a4a72009-06-08 14:40:19 +08003140{
Jani Nikula2d1013d2014-03-31 14:27:17 +03003141 struct drm_i915_private *dev_priv = dev->dev_private;
Zhenyu Wang036a4a72009-06-08 14:40:19 +08003142
Paulo Zanoni0c841212014-04-01 15:37:27 -03003143 I915_WRITE(HWSTAM, 0xffffffff);
Daniel Vetterbdfcdb62012-01-05 01:05:26 +01003144
Paulo Zanonif86f3fb2014-04-01 15:37:14 -03003145 GEN5_IRQ_RESET(DE);
Paulo Zanonic6d954c2014-04-01 15:37:18 -03003146 if (IS_GEN7(dev))
3147 I915_WRITE(GEN7_ERR_INT, 0xffffffff);
Zhenyu Wang036a4a72009-06-08 14:40:19 +08003148
Paulo Zanoni7c4d6642014-04-01 15:37:19 -03003149 gen5_gt_irq_reset(dev);
Zhenyu Wangc6501562009-11-03 18:57:21 +00003150
Paulo Zanoni1c69eb42014-04-01 15:37:23 -03003151 ibx_irq_reset(dev);
Ben Widawsky7d991632013-05-28 19:22:25 -07003152}
3153
Ville Syrjälä70591a42014-10-30 19:42:58 +02003154static void vlv_display_irq_reset(struct drm_i915_private *dev_priv)
3155{
3156 enum pipe pipe;
3157
Egbert Eich0706f172015-09-23 16:15:27 +02003158 i915_hotplug_interrupt_update(dev_priv, 0xFFFFFFFF, 0);
Ville Syrjälä70591a42014-10-30 19:42:58 +02003159 I915_WRITE(PORT_HOTPLUG_STAT, I915_READ(PORT_HOTPLUG_STAT));
3160
3161 for_each_pipe(dev_priv, pipe)
3162 I915_WRITE(PIPESTAT(pipe), 0xffff);
3163
3164 GEN5_IRQ_RESET(VLV_);
3165}
3166
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003167static void valleyview_irq_preinstall(struct drm_device *dev)
3168{
Jani Nikula2d1013d2014-03-31 14:27:17 +03003169 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003170
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003171 /* VLV magic */
3172 I915_WRITE(VLV_IMR, 0);
3173 I915_WRITE(RING_IMR(RENDER_RING_BASE), 0);
3174 I915_WRITE(RING_IMR(GEN6_BSD_RING_BASE), 0);
3175 I915_WRITE(RING_IMR(BLT_RING_BASE), 0);
3176
Paulo Zanoni7c4d6642014-04-01 15:37:19 -03003177 gen5_gt_irq_reset(dev);
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003178
Ville Syrjälä7c4cde32014-10-30 19:42:51 +02003179 I915_WRITE(DPINVGTT, DPINVGTT_STATUS_MASK);
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003180
Ville Syrjälä70591a42014-10-30 19:42:58 +02003181 vlv_display_irq_reset(dev_priv);
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003182}
3183
Daniel Vetterd6e3cca2014-05-22 22:18:22 +02003184static void gen8_gt_irq_reset(struct drm_i915_private *dev_priv)
3185{
3186 GEN8_IRQ_RESET_NDX(GT, 0);
3187 GEN8_IRQ_RESET_NDX(GT, 1);
3188 GEN8_IRQ_RESET_NDX(GT, 2);
3189 GEN8_IRQ_RESET_NDX(GT, 3);
3190}
3191
Paulo Zanoni823f6b32014-04-01 15:37:26 -03003192static void gen8_irq_reset(struct drm_device *dev)
Ben Widawskyabd58f02013-11-02 21:07:09 -07003193{
3194 struct drm_i915_private *dev_priv = dev->dev_private;
3195 int pipe;
3196
Ben Widawskyabd58f02013-11-02 21:07:09 -07003197 I915_WRITE(GEN8_MASTER_IRQ, 0);
3198 POSTING_READ(GEN8_MASTER_IRQ);
3199
Daniel Vetterd6e3cca2014-05-22 22:18:22 +02003200 gen8_gt_irq_reset(dev_priv);
Ben Widawskyabd58f02013-11-02 21:07:09 -07003201
Damien Lespiau055e3932014-08-18 13:49:10 +01003202 for_each_pipe(dev_priv, pipe)
Daniel Vetterf458ebb2014-09-30 10:56:39 +02003203 if (intel_display_power_is_enabled(dev_priv,
3204 POWER_DOMAIN_PIPE(pipe)))
Paulo Zanoni813bde42014-07-04 11:50:29 -03003205 GEN8_IRQ_RESET_NDX(DE_PIPE, pipe);
Ben Widawskyabd58f02013-11-02 21:07:09 -07003206
Paulo Zanonif86f3fb2014-04-01 15:37:14 -03003207 GEN5_IRQ_RESET(GEN8_DE_PORT_);
3208 GEN5_IRQ_RESET(GEN8_DE_MISC_);
3209 GEN5_IRQ_RESET(GEN8_PCU_);
Ben Widawskyabd58f02013-11-02 21:07:09 -07003210
Shashank Sharma266ea3d2014-08-22 17:40:42 +05303211 if (HAS_PCH_SPLIT(dev))
3212 ibx_irq_reset(dev);
Ben Widawskyabd58f02013-11-02 21:07:09 -07003213}
Ben Widawskyabd58f02013-11-02 21:07:09 -07003214
Damien Lespiau4c6c03b2015-03-06 18:50:48 +00003215void gen8_irq_power_well_post_enable(struct drm_i915_private *dev_priv,
3216 unsigned int pipe_mask)
Paulo Zanonid49bdb02014-07-04 11:50:31 -03003217{
Paulo Zanoni1180e202014-10-07 18:02:52 -03003218 uint32_t extra_ier = GEN8_PIPE_VBLANK | GEN8_PIPE_FIFO_UNDERRUN;
Paulo Zanonid49bdb02014-07-04 11:50:31 -03003219
Daniel Vetter13321782014-09-15 14:55:29 +02003220 spin_lock_irq(&dev_priv->irq_lock);
Damien Lespiaud14c0342015-03-06 18:50:51 +00003221 if (pipe_mask & 1 << PIPE_A)
3222 GEN8_IRQ_INIT_NDX(DE_PIPE, PIPE_A,
3223 dev_priv->de_irq_mask[PIPE_A],
3224 ~dev_priv->de_irq_mask[PIPE_A] | extra_ier);
Damien Lespiau4c6c03b2015-03-06 18:50:48 +00003225 if (pipe_mask & 1 << PIPE_B)
3226 GEN8_IRQ_INIT_NDX(DE_PIPE, PIPE_B,
3227 dev_priv->de_irq_mask[PIPE_B],
3228 ~dev_priv->de_irq_mask[PIPE_B] | extra_ier);
3229 if (pipe_mask & 1 << PIPE_C)
3230 GEN8_IRQ_INIT_NDX(DE_PIPE, PIPE_C,
3231 dev_priv->de_irq_mask[PIPE_C],
3232 ~dev_priv->de_irq_mask[PIPE_C] | extra_ier);
Daniel Vetter13321782014-09-15 14:55:29 +02003233 spin_unlock_irq(&dev_priv->irq_lock);
Paulo Zanonid49bdb02014-07-04 11:50:31 -03003234}
3235
Ville Syrjälä43f328d2014-04-09 20:40:52 +03003236static void cherryview_irq_preinstall(struct drm_device *dev)
3237{
3238 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjälä43f328d2014-04-09 20:40:52 +03003239
3240 I915_WRITE(GEN8_MASTER_IRQ, 0);
3241 POSTING_READ(GEN8_MASTER_IRQ);
3242
Daniel Vetterd6e3cca2014-05-22 22:18:22 +02003243 gen8_gt_irq_reset(dev_priv);
Ville Syrjälä43f328d2014-04-09 20:40:52 +03003244
3245 GEN5_IRQ_RESET(GEN8_PCU_);
3246
Ville Syrjälä43f328d2014-04-09 20:40:52 +03003247 I915_WRITE(DPINVGTT, DPINVGTT_STATUS_MASK_CHV);
3248
Ville Syrjälä70591a42014-10-30 19:42:58 +02003249 vlv_display_irq_reset(dev_priv);
Ville Syrjälä43f328d2014-04-09 20:40:52 +03003250}
3251
Ville Syrjälä87a02102015-08-27 23:55:57 +03003252static u32 intel_hpd_enabled_irqs(struct drm_device *dev,
3253 const u32 hpd[HPD_NUM_PINS])
3254{
3255 struct drm_i915_private *dev_priv = to_i915(dev);
3256 struct intel_encoder *encoder;
3257 u32 enabled_irqs = 0;
3258
3259 for_each_intel_encoder(dev, encoder)
3260 if (dev_priv->hotplug.stats[encoder->hpd_pin].state == HPD_ENABLED)
3261 enabled_irqs |= hpd[encoder->hpd_pin];
3262
3263 return enabled_irqs;
3264}
3265
Daniel Vetter82a28bc2013-03-27 15:55:01 +01003266static void ibx_hpd_irq_setup(struct drm_device *dev)
Keith Packard7fe0b972011-09-19 13:31:02 -07003267{
Jani Nikula2d1013d2014-03-31 14:27:17 +03003268 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjälä87a02102015-08-27 23:55:57 +03003269 u32 hotplug_irqs, hotplug, enabled_irqs;
Keith Packard7fe0b972011-09-19 13:31:02 -07003270
Daniel Vetter82a28bc2013-03-27 15:55:01 +01003271 if (HAS_PCH_IBX(dev)) {
Daniel Vetterfee884e2013-07-04 23:35:21 +02003272 hotplug_irqs = SDE_HOTPLUG_MASK;
Ville Syrjälä87a02102015-08-27 23:55:57 +03003273 enabled_irqs = intel_hpd_enabled_irqs(dev, hpd_ibx);
Daniel Vetter82a28bc2013-03-27 15:55:01 +01003274 } else {
Daniel Vetterfee884e2013-07-04 23:35:21 +02003275 hotplug_irqs = SDE_HOTPLUG_MASK_CPT;
Ville Syrjälä87a02102015-08-27 23:55:57 +03003276 enabled_irqs = intel_hpd_enabled_irqs(dev, hpd_cpt);
Daniel Vetter82a28bc2013-03-27 15:55:01 +01003277 }
3278
Daniel Vetterfee884e2013-07-04 23:35:21 +02003279 ibx_display_interrupt_update(dev_priv, hotplug_irqs, enabled_irqs);
Daniel Vetter82a28bc2013-03-27 15:55:01 +01003280
3281 /*
3282 * Enable digital hotplug on the PCH, and configure the DP short pulse
Ville Syrjälä6dbf30c2015-08-27 23:56:02 +03003283 * duration to 2ms (which is the minimum in the Display Port spec).
3284 * The pulse duration bits are reserved on LPT+.
Daniel Vetter82a28bc2013-03-27 15:55:01 +01003285 */
Keith Packard7fe0b972011-09-19 13:31:02 -07003286 hotplug = I915_READ(PCH_PORT_HOTPLUG);
3287 hotplug &= ~(PORTD_PULSE_DURATION_MASK|PORTC_PULSE_DURATION_MASK|PORTB_PULSE_DURATION_MASK);
3288 hotplug |= PORTD_HOTPLUG_ENABLE | PORTD_PULSE_DURATION_2ms;
3289 hotplug |= PORTC_HOTPLUG_ENABLE | PORTC_PULSE_DURATION_2ms;
3290 hotplug |= PORTB_HOTPLUG_ENABLE | PORTB_PULSE_DURATION_2ms;
Ville Syrjälä0b2eb332015-08-27 23:56:05 +03003291 /*
3292 * When CPU and PCH are on the same package, port A
3293 * HPD must be enabled in both north and south.
3294 */
3295 if (HAS_PCH_LPT_LP(dev))
3296 hotplug |= PORTA_HOTPLUG_ENABLE;
Keith Packard7fe0b972011-09-19 13:31:02 -07003297 I915_WRITE(PCH_PORT_HOTPLUG, hotplug);
Ville Syrjälä6dbf30c2015-08-27 23:56:02 +03003298}
Xiong Zhang26951ca2015-08-17 15:55:50 +08003299
Ville Syrjälä6dbf30c2015-08-27 23:56:02 +03003300static void spt_hpd_irq_setup(struct drm_device *dev)
3301{
3302 struct drm_i915_private *dev_priv = dev->dev_private;
3303 u32 hotplug_irqs, hotplug, enabled_irqs;
3304
3305 hotplug_irqs = SDE_HOTPLUG_MASK_SPT;
3306 enabled_irqs = intel_hpd_enabled_irqs(dev, hpd_spt);
3307
3308 ibx_display_interrupt_update(dev_priv, hotplug_irqs, enabled_irqs);
3309
3310 /* Enable digital hotplug on the PCH */
3311 hotplug = I915_READ(PCH_PORT_HOTPLUG);
3312 hotplug |= PORTD_HOTPLUG_ENABLE | PORTC_HOTPLUG_ENABLE |
Ville Syrjälä74c0b392015-08-27 23:56:07 +03003313 PORTB_HOTPLUG_ENABLE | PORTA_HOTPLUG_ENABLE;
Ville Syrjälä6dbf30c2015-08-27 23:56:02 +03003314 I915_WRITE(PCH_PORT_HOTPLUG, hotplug);
3315
3316 hotplug = I915_READ(PCH_PORT_HOTPLUG2);
3317 hotplug |= PORTE_HOTPLUG_ENABLE;
3318 I915_WRITE(PCH_PORT_HOTPLUG2, hotplug);
Keith Packard7fe0b972011-09-19 13:31:02 -07003319}
3320
Ville Syrjäläe4ce95a2015-08-27 23:56:03 +03003321static void ilk_hpd_irq_setup(struct drm_device *dev)
3322{
3323 struct drm_i915_private *dev_priv = dev->dev_private;
3324 u32 hotplug_irqs, hotplug, enabled_irqs;
3325
Ville Syrjälä3a3b3c72015-08-27 23:56:06 +03003326 if (INTEL_INFO(dev)->gen >= 8) {
3327 hotplug_irqs = GEN8_PORT_DP_A_HOTPLUG;
3328 enabled_irqs = intel_hpd_enabled_irqs(dev, hpd_bdw);
3329
3330 bdw_update_port_irq(dev_priv, hotplug_irqs, enabled_irqs);
3331 } else if (INTEL_INFO(dev)->gen >= 7) {
Ville Syrjälä23bb4cb2015-08-27 23:56:04 +03003332 hotplug_irqs = DE_DP_A_HOTPLUG_IVB;
3333 enabled_irqs = intel_hpd_enabled_irqs(dev, hpd_ivb);
Ville Syrjälä3a3b3c72015-08-27 23:56:06 +03003334
3335 ilk_update_display_irq(dev_priv, hotplug_irqs, enabled_irqs);
Ville Syrjälä23bb4cb2015-08-27 23:56:04 +03003336 } else {
3337 hotplug_irqs = DE_DP_A_HOTPLUG;
3338 enabled_irqs = intel_hpd_enabled_irqs(dev, hpd_ilk);
Ville Syrjäläe4ce95a2015-08-27 23:56:03 +03003339
Ville Syrjälä3a3b3c72015-08-27 23:56:06 +03003340 ilk_update_display_irq(dev_priv, hotplug_irqs, enabled_irqs);
3341 }
Ville Syrjäläe4ce95a2015-08-27 23:56:03 +03003342
3343 /*
3344 * Enable digital hotplug on the CPU, and configure the DP short pulse
3345 * duration to 2ms (which is the minimum in the Display Port spec)
Ville Syrjälä23bb4cb2015-08-27 23:56:04 +03003346 * The pulse duration bits are reserved on HSW+.
Ville Syrjäläe4ce95a2015-08-27 23:56:03 +03003347 */
3348 hotplug = I915_READ(DIGITAL_PORT_HOTPLUG_CNTRL);
3349 hotplug &= ~DIGITAL_PORTA_PULSE_DURATION_MASK;
3350 hotplug |= DIGITAL_PORTA_HOTPLUG_ENABLE | DIGITAL_PORTA_PULSE_DURATION_2ms;
3351 I915_WRITE(DIGITAL_PORT_HOTPLUG_CNTRL, hotplug);
3352
3353 ibx_hpd_irq_setup(dev);
3354}
3355
Shashank Sharmae0a20ad2015-03-27 14:54:14 +02003356static void bxt_hpd_irq_setup(struct drm_device *dev)
3357{
3358 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjäläa52bb152015-08-27 23:56:11 +03003359 u32 hotplug_irqs, hotplug, enabled_irqs;
Shashank Sharmae0a20ad2015-03-27 14:54:14 +02003360
Ville Syrjäläa52bb152015-08-27 23:56:11 +03003361 enabled_irqs = intel_hpd_enabled_irqs(dev, hpd_bxt);
3362 hotplug_irqs = BXT_DE_PORT_HOTPLUG_MASK;
Shashank Sharmae0a20ad2015-03-27 14:54:14 +02003363
Ville Syrjäläa52bb152015-08-27 23:56:11 +03003364 bdw_update_port_irq(dev_priv, hotplug_irqs, enabled_irqs);
Shashank Sharmae0a20ad2015-03-27 14:54:14 +02003365
Ville Syrjäläa52bb152015-08-27 23:56:11 +03003366 hotplug = I915_READ(PCH_PORT_HOTPLUG);
3367 hotplug |= PORTC_HOTPLUG_ENABLE | PORTB_HOTPLUG_ENABLE |
3368 PORTA_HOTPLUG_ENABLE;
3369 I915_WRITE(PCH_PORT_HOTPLUG, hotplug);
Shashank Sharmae0a20ad2015-03-27 14:54:14 +02003370}
3371
Paulo Zanonid46da432013-02-08 17:35:15 -02003372static void ibx_irq_postinstall(struct drm_device *dev)
3373{
Jani Nikula2d1013d2014-03-31 14:27:17 +03003374 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter82a28bc2013-03-27 15:55:01 +01003375 u32 mask;
Paulo Zanonid46da432013-02-08 17:35:15 -02003376
Daniel Vetter692a04c2013-05-29 21:43:05 +02003377 if (HAS_PCH_NOP(dev))
3378 return;
3379
Paulo Zanoni105b1222014-04-01 15:37:17 -03003380 if (HAS_PCH_IBX(dev))
Daniel Vetter5c673b62014-03-07 20:34:46 +01003381 mask = SDE_GMBUS | SDE_AUX_MASK | SDE_POISON;
Paulo Zanoni105b1222014-04-01 15:37:17 -03003382 else
Daniel Vetter5c673b62014-03-07 20:34:46 +01003383 mask = SDE_GMBUS_CPT | SDE_AUX_MASK_CPT;
Paulo Zanoni86642812013-04-12 17:57:57 -03003384
Ville Syrjäläb51a2842015-09-18 20:03:41 +03003385 gen5_assert_iir_is_zero(dev_priv, SDEIIR);
Paulo Zanonid46da432013-02-08 17:35:15 -02003386 I915_WRITE(SDEIMR, ~mask);
Paulo Zanonid46da432013-02-08 17:35:15 -02003387}
3388
Daniel Vetter0a9a8c92013-07-12 22:43:26 +02003389static void gen5_gt_irq_postinstall(struct drm_device *dev)
3390{
3391 struct drm_i915_private *dev_priv = dev->dev_private;
3392 u32 pm_irqs, gt_irqs;
3393
3394 pm_irqs = gt_irqs = 0;
3395
3396 dev_priv->gt_irq_mask = ~0;
Ben Widawsky040d2ba2013-09-19 11:01:40 -07003397 if (HAS_L3_DPF(dev)) {
Daniel Vetter0a9a8c92013-07-12 22:43:26 +02003398 /* L3 parity interrupt is always unmasked. */
Ben Widawsky35a85ac2013-09-19 11:13:41 -07003399 dev_priv->gt_irq_mask = ~GT_PARITY_ERROR(dev);
3400 gt_irqs |= GT_PARITY_ERROR(dev);
Daniel Vetter0a9a8c92013-07-12 22:43:26 +02003401 }
3402
3403 gt_irqs |= GT_RENDER_USER_INTERRUPT;
3404 if (IS_GEN5(dev)) {
3405 gt_irqs |= GT_RENDER_PIPECTL_NOTIFY_INTERRUPT |
3406 ILK_BSD_USER_INTERRUPT;
3407 } else {
3408 gt_irqs |= GT_BLT_USER_INTERRUPT | GT_BSD_USER_INTERRUPT;
3409 }
3410
Paulo Zanoni35079892014-04-01 15:37:15 -03003411 GEN5_IRQ_INIT(GT, dev_priv->gt_irq_mask, gt_irqs);
Daniel Vetter0a9a8c92013-07-12 22:43:26 +02003412
3413 if (INTEL_INFO(dev)->gen >= 6) {
Imre Deak78e68d32014-12-15 18:59:27 +02003414 /*
3415 * RPS interrupts will get enabled/disabled on demand when RPS
3416 * itself is enabled/disabled.
3417 */
Daniel Vetter0a9a8c92013-07-12 22:43:26 +02003418 if (HAS_VEBOX(dev))
3419 pm_irqs |= PM_VEBOX_USER_INTERRUPT;
3420
Paulo Zanoni605cd252013-08-06 18:57:15 -03003421 dev_priv->pm_irq_mask = 0xffffffff;
Paulo Zanoni35079892014-04-01 15:37:15 -03003422 GEN5_IRQ_INIT(GEN6_PM, dev_priv->pm_irq_mask, pm_irqs);
Daniel Vetter0a9a8c92013-07-12 22:43:26 +02003423 }
3424}
3425
Jesse Barnesf71d4af2011-06-28 13:00:41 -07003426static int ironlake_irq_postinstall(struct drm_device *dev)
Zhenyu Wang036a4a72009-06-08 14:40:19 +08003427{
Jani Nikula2d1013d2014-03-31 14:27:17 +03003428 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanoni8e76f8d2013-07-12 20:01:56 -03003429 u32 display_mask, extra_mask;
3430
3431 if (INTEL_INFO(dev)->gen >= 7) {
3432 display_mask = (DE_MASTER_IRQ_CONTROL | DE_GSE_IVB |
3433 DE_PCH_EVENT_IVB | DE_PLANEC_FLIP_DONE_IVB |
3434 DE_PLANEB_FLIP_DONE_IVB |
Daniel Vetter5c673b62014-03-07 20:34:46 +01003435 DE_PLANEA_FLIP_DONE_IVB | DE_AUX_CHANNEL_A_IVB);
Paulo Zanoni8e76f8d2013-07-12 20:01:56 -03003436 extra_mask = (DE_PIPEC_VBLANK_IVB | DE_PIPEB_VBLANK_IVB |
Ville Syrjälä23bb4cb2015-08-27 23:56:04 +03003437 DE_PIPEA_VBLANK_IVB | DE_ERR_INT_IVB |
3438 DE_DP_A_HOTPLUG_IVB);
Paulo Zanoni8e76f8d2013-07-12 20:01:56 -03003439 } else {
3440 display_mask = (DE_MASTER_IRQ_CONTROL | DE_GSE | DE_PCH_EVENT |
3441 DE_PLANEA_FLIP_DONE | DE_PLANEB_FLIP_DONE |
Daniel Vetter5b3a8562013-10-16 22:55:48 +02003442 DE_AUX_CHANNEL_A |
Daniel Vetter5b3a8562013-10-16 22:55:48 +02003443 DE_PIPEB_CRC_DONE | DE_PIPEA_CRC_DONE |
3444 DE_POISON);
Ville Syrjäläe4ce95a2015-08-27 23:56:03 +03003445 extra_mask = (DE_PIPEA_VBLANK | DE_PIPEB_VBLANK | DE_PCU_EVENT |
3446 DE_PIPEB_FIFO_UNDERRUN | DE_PIPEA_FIFO_UNDERRUN |
3447 DE_DP_A_HOTPLUG);
Paulo Zanoni8e76f8d2013-07-12 20:01:56 -03003448 }
Zhenyu Wang036a4a72009-06-08 14:40:19 +08003449
Chris Wilson1ec14ad2010-12-04 11:30:53 +00003450 dev_priv->irq_mask = ~display_mask;
Zhenyu Wang036a4a72009-06-08 14:40:19 +08003451
Paulo Zanoni0c841212014-04-01 15:37:27 -03003452 I915_WRITE(HWSTAM, 0xeffe);
3453
Paulo Zanoni622364b2014-04-01 15:37:22 -03003454 ibx_irq_pre_postinstall(dev);
3455
Paulo Zanoni35079892014-04-01 15:37:15 -03003456 GEN5_IRQ_INIT(DE, dev_priv->irq_mask, display_mask | extra_mask);
Zhenyu Wang036a4a72009-06-08 14:40:19 +08003457
Daniel Vetter0a9a8c92013-07-12 22:43:26 +02003458 gen5_gt_irq_postinstall(dev);
Zhenyu Wang036a4a72009-06-08 14:40:19 +08003459
Paulo Zanonid46da432013-02-08 17:35:15 -02003460 ibx_irq_postinstall(dev);
Keith Packard7fe0b972011-09-19 13:31:02 -07003461
Jesse Barnesf97108d2010-01-29 11:27:07 -08003462 if (IS_IRONLAKE_M(dev)) {
Daniel Vetter6005ce42013-06-27 13:44:59 +02003463 /* Enable PCU event interrupts
3464 *
3465 * spinlocking not required here for correctness since interrupt
Daniel Vetter4bc9d432013-06-27 13:44:58 +02003466 * setup is guaranteed to run in single-threaded context. But we
3467 * need it to make the assert_spin_locked happy. */
Daniel Vetterd6207432014-09-15 14:55:27 +02003468 spin_lock_irq(&dev_priv->irq_lock);
Jesse Barnesf97108d2010-01-29 11:27:07 -08003469 ironlake_enable_display_irq(dev_priv, DE_PCU_EVENT);
Daniel Vetterd6207432014-09-15 14:55:27 +02003470 spin_unlock_irq(&dev_priv->irq_lock);
Jesse Barnesf97108d2010-01-29 11:27:07 -08003471 }
3472
Zhenyu Wang036a4a72009-06-08 14:40:19 +08003473 return 0;
3474}
3475
Imre Deakf8b79e52014-03-04 19:23:07 +02003476static void valleyview_display_irqs_install(struct drm_i915_private *dev_priv)
3477{
3478 u32 pipestat_mask;
3479 u32 iir_mask;
Ville Syrjälä120dda42014-10-30 19:42:57 +02003480 enum pipe pipe;
Imre Deakf8b79e52014-03-04 19:23:07 +02003481
3482 pipestat_mask = PIPESTAT_INT_STATUS_MASK |
3483 PIPE_FIFO_UNDERRUN_STATUS;
3484
Ville Syrjälä120dda42014-10-30 19:42:57 +02003485 for_each_pipe(dev_priv, pipe)
3486 I915_WRITE(PIPESTAT(pipe), pipestat_mask);
Imre Deakf8b79e52014-03-04 19:23:07 +02003487 POSTING_READ(PIPESTAT(PIPE_A));
3488
3489 pipestat_mask = PLANE_FLIP_DONE_INT_STATUS_VLV |
3490 PIPE_CRC_DONE_INTERRUPT_STATUS;
3491
Ville Syrjälä120dda42014-10-30 19:42:57 +02003492 i915_enable_pipestat(dev_priv, PIPE_A, PIPE_GMBUS_INTERRUPT_STATUS);
3493 for_each_pipe(dev_priv, pipe)
3494 i915_enable_pipestat(dev_priv, pipe, pipestat_mask);
Imre Deakf8b79e52014-03-04 19:23:07 +02003495
3496 iir_mask = I915_DISPLAY_PORT_INTERRUPT |
3497 I915_DISPLAY_PIPE_A_EVENT_INTERRUPT |
3498 I915_DISPLAY_PIPE_B_EVENT_INTERRUPT;
Ville Syrjälä120dda42014-10-30 19:42:57 +02003499 if (IS_CHERRYVIEW(dev_priv))
3500 iir_mask |= I915_DISPLAY_PIPE_C_EVENT_INTERRUPT;
Imre Deakf8b79e52014-03-04 19:23:07 +02003501 dev_priv->irq_mask &= ~iir_mask;
3502
3503 I915_WRITE(VLV_IIR, iir_mask);
3504 I915_WRITE(VLV_IIR, iir_mask);
Imre Deakf8b79e52014-03-04 19:23:07 +02003505 I915_WRITE(VLV_IER, ~dev_priv->irq_mask);
Ville Syrjälä76e41862014-10-30 19:42:54 +02003506 I915_WRITE(VLV_IMR, dev_priv->irq_mask);
3507 POSTING_READ(VLV_IMR);
Imre Deakf8b79e52014-03-04 19:23:07 +02003508}
3509
3510static void valleyview_display_irqs_uninstall(struct drm_i915_private *dev_priv)
3511{
3512 u32 pipestat_mask;
3513 u32 iir_mask;
Ville Syrjälä120dda42014-10-30 19:42:57 +02003514 enum pipe pipe;
Imre Deakf8b79e52014-03-04 19:23:07 +02003515
3516 iir_mask = I915_DISPLAY_PORT_INTERRUPT |
3517 I915_DISPLAY_PIPE_A_EVENT_INTERRUPT |
Imre Deak6c7fba02014-03-10 19:44:48 +02003518 I915_DISPLAY_PIPE_B_EVENT_INTERRUPT;
Ville Syrjälä120dda42014-10-30 19:42:57 +02003519 if (IS_CHERRYVIEW(dev_priv))
3520 iir_mask |= I915_DISPLAY_PIPE_C_EVENT_INTERRUPT;
Imre Deakf8b79e52014-03-04 19:23:07 +02003521
3522 dev_priv->irq_mask |= iir_mask;
Imre Deakf8b79e52014-03-04 19:23:07 +02003523 I915_WRITE(VLV_IMR, dev_priv->irq_mask);
Ville Syrjälä76e41862014-10-30 19:42:54 +02003524 I915_WRITE(VLV_IER, ~dev_priv->irq_mask);
Imre Deakf8b79e52014-03-04 19:23:07 +02003525 I915_WRITE(VLV_IIR, iir_mask);
3526 I915_WRITE(VLV_IIR, iir_mask);
3527 POSTING_READ(VLV_IIR);
3528
3529 pipestat_mask = PLANE_FLIP_DONE_INT_STATUS_VLV |
3530 PIPE_CRC_DONE_INTERRUPT_STATUS;
3531
Ville Syrjälä120dda42014-10-30 19:42:57 +02003532 i915_disable_pipestat(dev_priv, PIPE_A, PIPE_GMBUS_INTERRUPT_STATUS);
3533 for_each_pipe(dev_priv, pipe)
3534 i915_disable_pipestat(dev_priv, pipe, pipestat_mask);
Imre Deakf8b79e52014-03-04 19:23:07 +02003535
3536 pipestat_mask = PIPESTAT_INT_STATUS_MASK |
3537 PIPE_FIFO_UNDERRUN_STATUS;
Ville Syrjälä120dda42014-10-30 19:42:57 +02003538
3539 for_each_pipe(dev_priv, pipe)
3540 I915_WRITE(PIPESTAT(pipe), pipestat_mask);
Imre Deakf8b79e52014-03-04 19:23:07 +02003541 POSTING_READ(PIPESTAT(PIPE_A));
3542}
3543
3544void valleyview_enable_display_irqs(struct drm_i915_private *dev_priv)
3545{
3546 assert_spin_locked(&dev_priv->irq_lock);
3547
3548 if (dev_priv->display_irqs_enabled)
3549 return;
3550
3551 dev_priv->display_irqs_enabled = true;
3552
Imre Deak950eaba2014-09-08 15:21:09 +03003553 if (intel_irqs_enabled(dev_priv))
Imre Deakf8b79e52014-03-04 19:23:07 +02003554 valleyview_display_irqs_install(dev_priv);
3555}
3556
3557void valleyview_disable_display_irqs(struct drm_i915_private *dev_priv)
3558{
3559 assert_spin_locked(&dev_priv->irq_lock);
3560
3561 if (!dev_priv->display_irqs_enabled)
3562 return;
3563
3564 dev_priv->display_irqs_enabled = false;
3565
Imre Deak950eaba2014-09-08 15:21:09 +03003566 if (intel_irqs_enabled(dev_priv))
Imre Deakf8b79e52014-03-04 19:23:07 +02003567 valleyview_display_irqs_uninstall(dev_priv);
3568}
3569
Ville Syrjälä0e6c9a92014-10-30 19:43:00 +02003570static void vlv_display_irq_postinstall(struct drm_i915_private *dev_priv)
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003571{
Imre Deakf8b79e52014-03-04 19:23:07 +02003572 dev_priv->irq_mask = ~0;
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003573
Egbert Eich0706f172015-09-23 16:15:27 +02003574 i915_hotplug_interrupt_update(dev_priv, 0xffffffff, 0);
Daniel Vetter20afbda2012-12-11 14:05:07 +01003575 POSTING_READ(PORT_HOTPLUG_EN);
3576
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003577 I915_WRITE(VLV_IIR, 0xffffffff);
Ville Syrjälä76e41862014-10-30 19:42:54 +02003578 I915_WRITE(VLV_IIR, 0xffffffff);
3579 I915_WRITE(VLV_IER, ~dev_priv->irq_mask);
3580 I915_WRITE(VLV_IMR, dev_priv->irq_mask);
3581 POSTING_READ(VLV_IMR);
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003582
Daniel Vetterb79480b2013-06-27 17:52:10 +02003583 /* Interrupt setup is already guaranteed to be single-threaded, this is
3584 * just to make the assert_spin_locked check happy. */
Daniel Vetterd6207432014-09-15 14:55:27 +02003585 spin_lock_irq(&dev_priv->irq_lock);
Imre Deakf8b79e52014-03-04 19:23:07 +02003586 if (dev_priv->display_irqs_enabled)
3587 valleyview_display_irqs_install(dev_priv);
Daniel Vetterd6207432014-09-15 14:55:27 +02003588 spin_unlock_irq(&dev_priv->irq_lock);
Ville Syrjälä0e6c9a92014-10-30 19:43:00 +02003589}
3590
3591static int valleyview_irq_postinstall(struct drm_device *dev)
3592{
3593 struct drm_i915_private *dev_priv = dev->dev_private;
3594
3595 vlv_display_irq_postinstall(dev_priv);
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003596
Daniel Vetter0a9a8c92013-07-12 22:43:26 +02003597 gen5_gt_irq_postinstall(dev);
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003598
3599 /* ack & enable invalid PTE error interrupts */
3600#if 0 /* FIXME: add support to irq handler for checking these bits */
3601 I915_WRITE(DPINVGTT, DPINVGTT_STATUS_MASK);
3602 I915_WRITE(DPINVGTT, DPINVGTT_EN_MASK);
3603#endif
3604
3605 I915_WRITE(VLV_MASTER_IER, MASTER_INTERRUPT_ENABLE);
Daniel Vetter20afbda2012-12-11 14:05:07 +01003606
3607 return 0;
3608}
3609
Ben Widawskyabd58f02013-11-02 21:07:09 -07003610static void gen8_gt_irq_postinstall(struct drm_i915_private *dev_priv)
3611{
Ben Widawskyabd58f02013-11-02 21:07:09 -07003612 /* These are interrupts we'll toggle with the ring mask register */
3613 uint32_t gt_interrupts[] = {
3614 GT_RENDER_USER_INTERRUPT << GEN8_RCS_IRQ_SHIFT |
Oscar Mateo73d477f2014-07-24 17:04:31 +01003615 GT_CONTEXT_SWITCH_INTERRUPT << GEN8_RCS_IRQ_SHIFT |
Ben Widawskyabd58f02013-11-02 21:07:09 -07003616 GT_RENDER_L3_PARITY_ERROR_INTERRUPT |
Oscar Mateo73d477f2014-07-24 17:04:31 +01003617 GT_RENDER_USER_INTERRUPT << GEN8_BCS_IRQ_SHIFT |
3618 GT_CONTEXT_SWITCH_INTERRUPT << GEN8_BCS_IRQ_SHIFT,
Ben Widawskyabd58f02013-11-02 21:07:09 -07003619 GT_RENDER_USER_INTERRUPT << GEN8_VCS1_IRQ_SHIFT |
Oscar Mateo73d477f2014-07-24 17:04:31 +01003620 GT_CONTEXT_SWITCH_INTERRUPT << GEN8_VCS1_IRQ_SHIFT |
3621 GT_RENDER_USER_INTERRUPT << GEN8_VCS2_IRQ_SHIFT |
3622 GT_CONTEXT_SWITCH_INTERRUPT << GEN8_VCS2_IRQ_SHIFT,
Ben Widawskyabd58f02013-11-02 21:07:09 -07003623 0,
Oscar Mateo73d477f2014-07-24 17:04:31 +01003624 GT_RENDER_USER_INTERRUPT << GEN8_VECS_IRQ_SHIFT |
3625 GT_CONTEXT_SWITCH_INTERRUPT << GEN8_VECS_IRQ_SHIFT
Ben Widawskyabd58f02013-11-02 21:07:09 -07003626 };
3627
Ben Widawsky09610212014-05-15 20:58:08 +03003628 dev_priv->pm_irq_mask = 0xffffffff;
Deepak S9a2d2d82014-08-22 08:32:40 +05303629 GEN8_IRQ_INIT_NDX(GT, 0, ~gt_interrupts[0], gt_interrupts[0]);
3630 GEN8_IRQ_INIT_NDX(GT, 1, ~gt_interrupts[1], gt_interrupts[1]);
Imre Deak78e68d32014-12-15 18:59:27 +02003631 /*
3632 * RPS interrupts will get enabled/disabled on demand when RPS itself
3633 * is enabled/disabled.
3634 */
3635 GEN8_IRQ_INIT_NDX(GT, 2, dev_priv->pm_irq_mask, 0);
Deepak S9a2d2d82014-08-22 08:32:40 +05303636 GEN8_IRQ_INIT_NDX(GT, 3, ~gt_interrupts[3], gt_interrupts[3]);
Ben Widawskyabd58f02013-11-02 21:07:09 -07003637}
3638
3639static void gen8_de_irq_postinstall(struct drm_i915_private *dev_priv)
3640{
Damien Lespiau770de832014-03-20 20:45:01 +00003641 uint32_t de_pipe_masked = GEN8_PIPE_CDCLK_CRC_DONE;
3642 uint32_t de_pipe_enables;
Ville Syrjälä3a3b3c72015-08-27 23:56:06 +03003643 u32 de_port_masked = GEN8_AUX_CHANNEL_A;
3644 u32 de_port_enables;
3645 enum pipe pipe;
Damien Lespiau770de832014-03-20 20:45:01 +00003646
Rodrigo Vivib4834a52015-09-02 15:19:24 -07003647 if (INTEL_INFO(dev_priv)->gen >= 9) {
Damien Lespiau770de832014-03-20 20:45:01 +00003648 de_pipe_masked |= GEN9_PIPE_PLANE1_FLIP_DONE |
3649 GEN9_DE_PIPE_IRQ_FAULT_ERRORS;
Ville Syrjälä3a3b3c72015-08-27 23:56:06 +03003650 de_port_masked |= GEN9_AUX_CHANNEL_B | GEN9_AUX_CHANNEL_C |
3651 GEN9_AUX_CHANNEL_D;
Shashank Sharma9e637432014-08-22 17:40:43 +05303652 if (IS_BROXTON(dev_priv))
Ville Syrjälä3a3b3c72015-08-27 23:56:06 +03003653 de_port_masked |= BXT_DE_PORT_GMBUS;
3654 } else {
Damien Lespiau770de832014-03-20 20:45:01 +00003655 de_pipe_masked |= GEN8_PIPE_PRIMARY_FLIP_DONE |
3656 GEN8_DE_PIPE_IRQ_FAULT_ERRORS;
Ville Syrjälä3a3b3c72015-08-27 23:56:06 +03003657 }
Damien Lespiau770de832014-03-20 20:45:01 +00003658
3659 de_pipe_enables = de_pipe_masked | GEN8_PIPE_VBLANK |
3660 GEN8_PIPE_FIFO_UNDERRUN;
3661
Ville Syrjälä3a3b3c72015-08-27 23:56:06 +03003662 de_port_enables = de_port_masked;
Ville Syrjäläa52bb152015-08-27 23:56:11 +03003663 if (IS_BROXTON(dev_priv))
3664 de_port_enables |= BXT_DE_PORT_HOTPLUG_MASK;
3665 else if (IS_BROADWELL(dev_priv))
Ville Syrjälä3a3b3c72015-08-27 23:56:06 +03003666 de_port_enables |= GEN8_PORT_DP_A_HOTPLUG;
3667
Daniel Vetter13b3a0a2013-11-07 15:31:52 +01003668 dev_priv->de_irq_mask[PIPE_A] = ~de_pipe_masked;
3669 dev_priv->de_irq_mask[PIPE_B] = ~de_pipe_masked;
3670 dev_priv->de_irq_mask[PIPE_C] = ~de_pipe_masked;
Ben Widawskyabd58f02013-11-02 21:07:09 -07003671
Damien Lespiau055e3932014-08-18 13:49:10 +01003672 for_each_pipe(dev_priv, pipe)
Daniel Vetterf458ebb2014-09-30 10:56:39 +02003673 if (intel_display_power_is_enabled(dev_priv,
Paulo Zanoni813bde42014-07-04 11:50:29 -03003674 POWER_DOMAIN_PIPE(pipe)))
3675 GEN8_IRQ_INIT_NDX(DE_PIPE, pipe,
3676 dev_priv->de_irq_mask[pipe],
3677 de_pipe_enables);
Ben Widawskyabd58f02013-11-02 21:07:09 -07003678
Ville Syrjälä3a3b3c72015-08-27 23:56:06 +03003679 GEN5_IRQ_INIT(GEN8_DE_PORT_, ~de_port_masked, de_port_enables);
Ben Widawskyabd58f02013-11-02 21:07:09 -07003680}
3681
3682static int gen8_irq_postinstall(struct drm_device *dev)
3683{
3684 struct drm_i915_private *dev_priv = dev->dev_private;
3685
Shashank Sharma266ea3d2014-08-22 17:40:42 +05303686 if (HAS_PCH_SPLIT(dev))
3687 ibx_irq_pre_postinstall(dev);
Paulo Zanoni622364b2014-04-01 15:37:22 -03003688
Ben Widawskyabd58f02013-11-02 21:07:09 -07003689 gen8_gt_irq_postinstall(dev_priv);
3690 gen8_de_irq_postinstall(dev_priv);
3691
Shashank Sharma266ea3d2014-08-22 17:40:42 +05303692 if (HAS_PCH_SPLIT(dev))
3693 ibx_irq_postinstall(dev);
Ben Widawskyabd58f02013-11-02 21:07:09 -07003694
3695 I915_WRITE(GEN8_MASTER_IRQ, DE_MASTER_IRQ_CONTROL);
3696 POSTING_READ(GEN8_MASTER_IRQ);
3697
3698 return 0;
3699}
3700
Ville Syrjälä43f328d2014-04-09 20:40:52 +03003701static int cherryview_irq_postinstall(struct drm_device *dev)
3702{
3703 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjälä43f328d2014-04-09 20:40:52 +03003704
Ville Syrjäläc2b66792014-10-30 19:43:02 +02003705 vlv_display_irq_postinstall(dev_priv);
Ville Syrjälä43f328d2014-04-09 20:40:52 +03003706
3707 gen8_gt_irq_postinstall(dev_priv);
3708
3709 I915_WRITE(GEN8_MASTER_IRQ, MASTER_INTERRUPT_ENABLE);
3710 POSTING_READ(GEN8_MASTER_IRQ);
3711
3712 return 0;
3713}
3714
Ben Widawskyabd58f02013-11-02 21:07:09 -07003715static void gen8_irq_uninstall(struct drm_device *dev)
3716{
3717 struct drm_i915_private *dev_priv = dev->dev_private;
Ben Widawskyabd58f02013-11-02 21:07:09 -07003718
3719 if (!dev_priv)
3720 return;
3721
Paulo Zanoni823f6b32014-04-01 15:37:26 -03003722 gen8_irq_reset(dev);
Ben Widawskyabd58f02013-11-02 21:07:09 -07003723}
3724
Ville Syrjälä8ea0be42014-10-30 19:42:59 +02003725static void vlv_display_irq_uninstall(struct drm_i915_private *dev_priv)
3726{
3727 /* Interrupt setup is already guaranteed to be single-threaded, this is
3728 * just to make the assert_spin_locked check happy. */
3729 spin_lock_irq(&dev_priv->irq_lock);
3730 if (dev_priv->display_irqs_enabled)
3731 valleyview_display_irqs_uninstall(dev_priv);
3732 spin_unlock_irq(&dev_priv->irq_lock);
3733
3734 vlv_display_irq_reset(dev_priv);
3735
Imre Deakc352d1b2014-11-20 16:05:55 +02003736 dev_priv->irq_mask = ~0;
Ville Syrjälä8ea0be42014-10-30 19:42:59 +02003737}
3738
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003739static void valleyview_irq_uninstall(struct drm_device *dev)
3740{
Jani Nikula2d1013d2014-03-31 14:27:17 +03003741 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003742
3743 if (!dev_priv)
3744 return;
3745
Imre Deak843d0e72014-04-14 20:24:23 +03003746 I915_WRITE(VLV_MASTER_IER, 0);
3747
Ville Syrjälä893fce82014-10-30 19:42:56 +02003748 gen5_gt_irq_reset(dev);
3749
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003750 I915_WRITE(HWSTAM, 0xffffffff);
Imre Deakf8b79e52014-03-04 19:23:07 +02003751
Ville Syrjälä8ea0be42014-10-30 19:42:59 +02003752 vlv_display_irq_uninstall(dev_priv);
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003753}
3754
Ville Syrjälä43f328d2014-04-09 20:40:52 +03003755static void cherryview_irq_uninstall(struct drm_device *dev)
3756{
3757 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjälä43f328d2014-04-09 20:40:52 +03003758
3759 if (!dev_priv)
3760 return;
3761
3762 I915_WRITE(GEN8_MASTER_IRQ, 0);
3763 POSTING_READ(GEN8_MASTER_IRQ);
3764
Ville Syrjäläa2c30fb2014-10-30 19:42:52 +02003765 gen8_gt_irq_reset(dev_priv);
Ville Syrjälä43f328d2014-04-09 20:40:52 +03003766
Ville Syrjäläa2c30fb2014-10-30 19:42:52 +02003767 GEN5_IRQ_RESET(GEN8_PCU_);
Ville Syrjälä43f328d2014-04-09 20:40:52 +03003768
Ville Syrjäläc2b66792014-10-30 19:43:02 +02003769 vlv_display_irq_uninstall(dev_priv);
Ville Syrjälä43f328d2014-04-09 20:40:52 +03003770}
3771
Jesse Barnesf71d4af2011-06-28 13:00:41 -07003772static void ironlake_irq_uninstall(struct drm_device *dev)
Zhenyu Wang036a4a72009-06-08 14:40:19 +08003773{
Jani Nikula2d1013d2014-03-31 14:27:17 +03003774 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes46979952011-04-07 13:53:55 -07003775
3776 if (!dev_priv)
3777 return;
3778
Paulo Zanonibe30b292014-04-01 15:37:25 -03003779 ironlake_irq_reset(dev);
Zhenyu Wang036a4a72009-06-08 14:40:19 +08003780}
3781
Chris Wilsonc2798b12012-04-22 21:13:57 +01003782static void i8xx_irq_preinstall(struct drm_device * dev)
3783{
Jani Nikula2d1013d2014-03-31 14:27:17 +03003784 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsonc2798b12012-04-22 21:13:57 +01003785 int pipe;
3786
Damien Lespiau055e3932014-08-18 13:49:10 +01003787 for_each_pipe(dev_priv, pipe)
Chris Wilsonc2798b12012-04-22 21:13:57 +01003788 I915_WRITE(PIPESTAT(pipe), 0);
3789 I915_WRITE16(IMR, 0xffff);
3790 I915_WRITE16(IER, 0x0);
3791 POSTING_READ16(IER);
3792}
3793
3794static int i8xx_irq_postinstall(struct drm_device *dev)
3795{
Jani Nikula2d1013d2014-03-31 14:27:17 +03003796 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsonc2798b12012-04-22 21:13:57 +01003797
Chris Wilsonc2798b12012-04-22 21:13:57 +01003798 I915_WRITE16(EMR,
3799 ~(I915_ERROR_PAGE_TABLE | I915_ERROR_MEMORY_REFRESH));
3800
3801 /* Unmask the interrupts that we always want on. */
3802 dev_priv->irq_mask =
3803 ~(I915_DISPLAY_PIPE_A_EVENT_INTERRUPT |
3804 I915_DISPLAY_PIPE_B_EVENT_INTERRUPT |
3805 I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT |
Daniel Vetter37ef01a2015-04-01 13:43:46 +02003806 I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT);
Chris Wilsonc2798b12012-04-22 21:13:57 +01003807 I915_WRITE16(IMR, dev_priv->irq_mask);
3808
3809 I915_WRITE16(IER,
3810 I915_DISPLAY_PIPE_A_EVENT_INTERRUPT |
3811 I915_DISPLAY_PIPE_B_EVENT_INTERRUPT |
Chris Wilsonc2798b12012-04-22 21:13:57 +01003812 I915_USER_INTERRUPT);
3813 POSTING_READ16(IER);
3814
Daniel Vetter379ef822013-10-16 22:55:56 +02003815 /* Interrupt setup is already guaranteed to be single-threaded, this is
3816 * just to make the assert_spin_locked check happy. */
Daniel Vetterd6207432014-09-15 14:55:27 +02003817 spin_lock_irq(&dev_priv->irq_lock);
Imre Deak755e9012014-02-10 18:42:47 +02003818 i915_enable_pipestat(dev_priv, PIPE_A, PIPE_CRC_DONE_INTERRUPT_STATUS);
3819 i915_enable_pipestat(dev_priv, PIPE_B, PIPE_CRC_DONE_INTERRUPT_STATUS);
Daniel Vetterd6207432014-09-15 14:55:27 +02003820 spin_unlock_irq(&dev_priv->irq_lock);
Daniel Vetter379ef822013-10-16 22:55:56 +02003821
Chris Wilsonc2798b12012-04-22 21:13:57 +01003822 return 0;
3823}
3824
Ville Syrjälä90a72f82013-02-19 23:16:44 +02003825/*
3826 * Returns true when a page flip has completed.
3827 */
3828static bool i8xx_handle_vblank(struct drm_device *dev,
Ville Syrjälä1f1c2e22013-11-28 17:30:01 +02003829 int plane, int pipe, u32 iir)
Ville Syrjälä90a72f82013-02-19 23:16:44 +02003830{
Jani Nikula2d1013d2014-03-31 14:27:17 +03003831 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjälä1f1c2e22013-11-28 17:30:01 +02003832 u16 flip_pending = DISPLAY_PLANE_FLIP_PENDING(plane);
Ville Syrjälä90a72f82013-02-19 23:16:44 +02003833
Ville Syrjälä8d7849d2014-04-29 13:35:46 +03003834 if (!intel_pipe_handle_vblank(dev, pipe))
Ville Syrjälä90a72f82013-02-19 23:16:44 +02003835 return false;
3836
3837 if ((iir & flip_pending) == 0)
Chris Wilsond6bbafa2014-09-05 07:13:24 +01003838 goto check_page_flip;
Ville Syrjälä90a72f82013-02-19 23:16:44 +02003839
Ville Syrjälä90a72f82013-02-19 23:16:44 +02003840 /* We detect FlipDone by looking for the change in PendingFlip from '1'
3841 * to '0' on the following vblank, i.e. IIR has the Pendingflip
3842 * asserted following the MI_DISPLAY_FLIP, but ISR is deasserted, hence
3843 * the flip is completed (no longer pending). Since this doesn't raise
3844 * an interrupt per se, we watch for the change at vblank.
3845 */
3846 if (I915_READ16(ISR) & flip_pending)
Chris Wilsond6bbafa2014-09-05 07:13:24 +01003847 goto check_page_flip;
Ville Syrjälä90a72f82013-02-19 23:16:44 +02003848
Ville Syrjälä7d475592014-12-17 23:08:03 +02003849 intel_prepare_page_flip(dev, plane);
Ville Syrjälä90a72f82013-02-19 23:16:44 +02003850 intel_finish_page_flip(dev, pipe);
Ville Syrjälä90a72f82013-02-19 23:16:44 +02003851 return true;
Chris Wilsond6bbafa2014-09-05 07:13:24 +01003852
3853check_page_flip:
3854 intel_check_page_flip(dev, pipe);
3855 return false;
Ville Syrjälä90a72f82013-02-19 23:16:44 +02003856}
3857
Daniel Vetterff1f5252012-10-02 15:10:55 +02003858static irqreturn_t i8xx_irq_handler(int irq, void *arg)
Chris Wilsonc2798b12012-04-22 21:13:57 +01003859{
Daniel Vetter45a83f82014-05-12 19:17:55 +02003860 struct drm_device *dev = arg;
Jani Nikula2d1013d2014-03-31 14:27:17 +03003861 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsonc2798b12012-04-22 21:13:57 +01003862 u16 iir, new_iir;
3863 u32 pipe_stats[2];
Chris Wilsonc2798b12012-04-22 21:13:57 +01003864 int pipe;
3865 u16 flip_mask =
3866 I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT |
3867 I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT;
3868
Imre Deak2dd2a882015-02-24 11:14:30 +02003869 if (!intel_irqs_enabled(dev_priv))
3870 return IRQ_NONE;
3871
Chris Wilsonc2798b12012-04-22 21:13:57 +01003872 iir = I915_READ16(IIR);
3873 if (iir == 0)
3874 return IRQ_NONE;
3875
3876 while (iir & ~flip_mask) {
3877 /* Can't rely on pipestat interrupt bit in iir as it might
3878 * have been cleared after the pipestat interrupt was received.
3879 * It doesn't set the bit in iir again, but it still produces
3880 * interrupts (for non-MSI).
3881 */
Daniel Vetter222c7f52014-09-15 14:55:28 +02003882 spin_lock(&dev_priv->irq_lock);
Chris Wilsonc2798b12012-04-22 21:13:57 +01003883 if (iir & I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT)
Daniel Vetteraaecdf62014-11-04 15:52:22 +01003884 DRM_DEBUG("Command parser error, iir 0x%08x\n", iir);
Chris Wilsonc2798b12012-04-22 21:13:57 +01003885
Damien Lespiau055e3932014-08-18 13:49:10 +01003886 for_each_pipe(dev_priv, pipe) {
Ville Syrjäläf0f59a02015-11-18 15:33:26 +02003887 i915_reg_t reg = PIPESTAT(pipe);
Chris Wilsonc2798b12012-04-22 21:13:57 +01003888 pipe_stats[pipe] = I915_READ(reg);
3889
3890 /*
3891 * Clear the PIPE*STAT regs before the IIR
3892 */
Ville Syrjälä2d9d2b02014-01-17 11:44:31 +02003893 if (pipe_stats[pipe] & 0x8000ffff)
Chris Wilsonc2798b12012-04-22 21:13:57 +01003894 I915_WRITE(reg, pipe_stats[pipe]);
Chris Wilsonc2798b12012-04-22 21:13:57 +01003895 }
Daniel Vetter222c7f52014-09-15 14:55:28 +02003896 spin_unlock(&dev_priv->irq_lock);
Chris Wilsonc2798b12012-04-22 21:13:57 +01003897
3898 I915_WRITE16(IIR, iir & ~flip_mask);
3899 new_iir = I915_READ16(IIR); /* Flush posted writes */
3900
Chris Wilsonc2798b12012-04-22 21:13:57 +01003901 if (iir & I915_USER_INTERRUPT)
Chris Wilson74cdb332015-04-07 16:21:05 +01003902 notify_ring(&dev_priv->ring[RCS]);
Chris Wilsonc2798b12012-04-22 21:13:57 +01003903
Damien Lespiau055e3932014-08-18 13:49:10 +01003904 for_each_pipe(dev_priv, pipe) {
Ville Syrjälä1f1c2e22013-11-28 17:30:01 +02003905 int plane = pipe;
Daniel Vetter3a77c4c2014-01-10 08:50:12 +01003906 if (HAS_FBC(dev))
Ville Syrjälä1f1c2e22013-11-28 17:30:01 +02003907 plane = !plane;
3908
Daniel Vetter4356d582013-10-16 22:55:55 +02003909 if (pipe_stats[pipe] & PIPE_VBLANK_INTERRUPT_STATUS &&
Ville Syrjälä1f1c2e22013-11-28 17:30:01 +02003910 i8xx_handle_vblank(dev, plane, pipe, iir))
3911 flip_mask &= ~DISPLAY_PLANE_FLIP_PENDING(plane);
Chris Wilsonc2798b12012-04-22 21:13:57 +01003912
Daniel Vetter4356d582013-10-16 22:55:55 +02003913 if (pipe_stats[pipe] & PIPE_CRC_DONE_INTERRUPT_STATUS)
Daniel Vetter277de952013-10-18 16:37:07 +02003914 i9xx_pipe_crc_irq_handler(dev, pipe);
Ville Syrjälä2d9d2b02014-01-17 11:44:31 +02003915
Daniel Vetter1f7247c2014-09-30 10:56:48 +02003916 if (pipe_stats[pipe] & PIPE_FIFO_UNDERRUN_STATUS)
3917 intel_cpu_fifo_underrun_irq_handler(dev_priv,
3918 pipe);
Daniel Vetter4356d582013-10-16 22:55:55 +02003919 }
Chris Wilsonc2798b12012-04-22 21:13:57 +01003920
3921 iir = new_iir;
3922 }
3923
3924 return IRQ_HANDLED;
3925}
3926
3927static void i8xx_irq_uninstall(struct drm_device * dev)
3928{
Jani Nikula2d1013d2014-03-31 14:27:17 +03003929 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsonc2798b12012-04-22 21:13:57 +01003930 int pipe;
3931
Damien Lespiau055e3932014-08-18 13:49:10 +01003932 for_each_pipe(dev_priv, pipe) {
Chris Wilsonc2798b12012-04-22 21:13:57 +01003933 /* Clear enable bits; then clear status bits */
3934 I915_WRITE(PIPESTAT(pipe), 0);
3935 I915_WRITE(PIPESTAT(pipe), I915_READ(PIPESTAT(pipe)));
3936 }
3937 I915_WRITE16(IMR, 0xffff);
3938 I915_WRITE16(IER, 0x0);
3939 I915_WRITE16(IIR, I915_READ16(IIR));
3940}
3941
Chris Wilsona266c7d2012-04-24 22:59:44 +01003942static void i915_irq_preinstall(struct drm_device * dev)
3943{
Jani Nikula2d1013d2014-03-31 14:27:17 +03003944 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsona266c7d2012-04-24 22:59:44 +01003945 int pipe;
3946
Chris Wilsona266c7d2012-04-24 22:59:44 +01003947 if (I915_HAS_HOTPLUG(dev)) {
Egbert Eich0706f172015-09-23 16:15:27 +02003948 i915_hotplug_interrupt_update(dev_priv, 0xffffffff, 0);
Chris Wilsona266c7d2012-04-24 22:59:44 +01003949 I915_WRITE(PORT_HOTPLUG_STAT, I915_READ(PORT_HOTPLUG_STAT));
3950 }
3951
Chris Wilson00d98eb2012-04-24 22:59:48 +01003952 I915_WRITE16(HWSTAM, 0xeffe);
Damien Lespiau055e3932014-08-18 13:49:10 +01003953 for_each_pipe(dev_priv, pipe)
Chris Wilsona266c7d2012-04-24 22:59:44 +01003954 I915_WRITE(PIPESTAT(pipe), 0);
3955 I915_WRITE(IMR, 0xffffffff);
3956 I915_WRITE(IER, 0x0);
3957 POSTING_READ(IER);
3958}
3959
3960static int i915_irq_postinstall(struct drm_device *dev)
3961{
Jani Nikula2d1013d2014-03-31 14:27:17 +03003962 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson38bde182012-04-24 22:59:50 +01003963 u32 enable_mask;
Chris Wilsona266c7d2012-04-24 22:59:44 +01003964
Chris Wilson38bde182012-04-24 22:59:50 +01003965 I915_WRITE(EMR, ~(I915_ERROR_PAGE_TABLE | I915_ERROR_MEMORY_REFRESH));
3966
3967 /* Unmask the interrupts that we always want on. */
3968 dev_priv->irq_mask =
3969 ~(I915_ASLE_INTERRUPT |
3970 I915_DISPLAY_PIPE_A_EVENT_INTERRUPT |
3971 I915_DISPLAY_PIPE_B_EVENT_INTERRUPT |
3972 I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT |
Daniel Vetter37ef01a2015-04-01 13:43:46 +02003973 I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT);
Chris Wilson38bde182012-04-24 22:59:50 +01003974
3975 enable_mask =
3976 I915_ASLE_INTERRUPT |
3977 I915_DISPLAY_PIPE_A_EVENT_INTERRUPT |
3978 I915_DISPLAY_PIPE_B_EVENT_INTERRUPT |
Chris Wilson38bde182012-04-24 22:59:50 +01003979 I915_USER_INTERRUPT;
3980
Chris Wilsona266c7d2012-04-24 22:59:44 +01003981 if (I915_HAS_HOTPLUG(dev)) {
Egbert Eich0706f172015-09-23 16:15:27 +02003982 i915_hotplug_interrupt_update(dev_priv, 0xffffffff, 0);
Daniel Vetter20afbda2012-12-11 14:05:07 +01003983 POSTING_READ(PORT_HOTPLUG_EN);
3984
Chris Wilsona266c7d2012-04-24 22:59:44 +01003985 /* Enable in IER... */
3986 enable_mask |= I915_DISPLAY_PORT_INTERRUPT;
3987 /* and unmask in IMR */
3988 dev_priv->irq_mask &= ~I915_DISPLAY_PORT_INTERRUPT;
3989 }
3990
Chris Wilsona266c7d2012-04-24 22:59:44 +01003991 I915_WRITE(IMR, dev_priv->irq_mask);
3992 I915_WRITE(IER, enable_mask);
3993 POSTING_READ(IER);
3994
Jani Nikulaf49e38d2013-04-29 13:02:54 +03003995 i915_enable_asle_pipestat(dev);
Daniel Vetter20afbda2012-12-11 14:05:07 +01003996
Daniel Vetter379ef822013-10-16 22:55:56 +02003997 /* Interrupt setup is already guaranteed to be single-threaded, this is
3998 * just to make the assert_spin_locked check happy. */
Daniel Vetterd6207432014-09-15 14:55:27 +02003999 spin_lock_irq(&dev_priv->irq_lock);
Imre Deak755e9012014-02-10 18:42:47 +02004000 i915_enable_pipestat(dev_priv, PIPE_A, PIPE_CRC_DONE_INTERRUPT_STATUS);
4001 i915_enable_pipestat(dev_priv, PIPE_B, PIPE_CRC_DONE_INTERRUPT_STATUS);
Daniel Vetterd6207432014-09-15 14:55:27 +02004002 spin_unlock_irq(&dev_priv->irq_lock);
Daniel Vetter379ef822013-10-16 22:55:56 +02004003
Daniel Vetter20afbda2012-12-11 14:05:07 +01004004 return 0;
4005}
4006
Ville Syrjälä90a72f82013-02-19 23:16:44 +02004007/*
4008 * Returns true when a page flip has completed.
4009 */
4010static bool i915_handle_vblank(struct drm_device *dev,
4011 int plane, int pipe, u32 iir)
4012{
Jani Nikula2d1013d2014-03-31 14:27:17 +03004013 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjälä90a72f82013-02-19 23:16:44 +02004014 u32 flip_pending = DISPLAY_PLANE_FLIP_PENDING(plane);
4015
Ville Syrjälä8d7849d2014-04-29 13:35:46 +03004016 if (!intel_pipe_handle_vblank(dev, pipe))
Ville Syrjälä90a72f82013-02-19 23:16:44 +02004017 return false;
4018
4019 if ((iir & flip_pending) == 0)
Chris Wilsond6bbafa2014-09-05 07:13:24 +01004020 goto check_page_flip;
Ville Syrjälä90a72f82013-02-19 23:16:44 +02004021
Ville Syrjälä90a72f82013-02-19 23:16:44 +02004022 /* We detect FlipDone by looking for the change in PendingFlip from '1'
4023 * to '0' on the following vblank, i.e. IIR has the Pendingflip
4024 * asserted following the MI_DISPLAY_FLIP, but ISR is deasserted, hence
4025 * the flip is completed (no longer pending). Since this doesn't raise
4026 * an interrupt per se, we watch for the change at vblank.
4027 */
4028 if (I915_READ(ISR) & flip_pending)
Chris Wilsond6bbafa2014-09-05 07:13:24 +01004029 goto check_page_flip;
Ville Syrjälä90a72f82013-02-19 23:16:44 +02004030
Ville Syrjälä7d475592014-12-17 23:08:03 +02004031 intel_prepare_page_flip(dev, plane);
Ville Syrjälä90a72f82013-02-19 23:16:44 +02004032 intel_finish_page_flip(dev, pipe);
Ville Syrjälä90a72f82013-02-19 23:16:44 +02004033 return true;
Chris Wilsond6bbafa2014-09-05 07:13:24 +01004034
4035check_page_flip:
4036 intel_check_page_flip(dev, pipe);
4037 return false;
Ville Syrjälä90a72f82013-02-19 23:16:44 +02004038}
4039
Daniel Vetterff1f5252012-10-02 15:10:55 +02004040static irqreturn_t i915_irq_handler(int irq, void *arg)
Chris Wilsona266c7d2012-04-24 22:59:44 +01004041{
Daniel Vetter45a83f82014-05-12 19:17:55 +02004042 struct drm_device *dev = arg;
Jani Nikula2d1013d2014-03-31 14:27:17 +03004043 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson8291ee92012-04-24 22:59:47 +01004044 u32 iir, new_iir, pipe_stats[I915_MAX_PIPES];
Chris Wilson38bde182012-04-24 22:59:50 +01004045 u32 flip_mask =
4046 I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT |
4047 I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT;
Chris Wilson38bde182012-04-24 22:59:50 +01004048 int pipe, ret = IRQ_NONE;
Chris Wilsona266c7d2012-04-24 22:59:44 +01004049
Imre Deak2dd2a882015-02-24 11:14:30 +02004050 if (!intel_irqs_enabled(dev_priv))
4051 return IRQ_NONE;
4052
Chris Wilsona266c7d2012-04-24 22:59:44 +01004053 iir = I915_READ(IIR);
Chris Wilson38bde182012-04-24 22:59:50 +01004054 do {
4055 bool irq_received = (iir & ~flip_mask) != 0;
Chris Wilson8291ee92012-04-24 22:59:47 +01004056 bool blc_event = false;
Chris Wilsona266c7d2012-04-24 22:59:44 +01004057
4058 /* Can't rely on pipestat interrupt bit in iir as it might
4059 * have been cleared after the pipestat interrupt was received.
4060 * It doesn't set the bit in iir again, but it still produces
4061 * interrupts (for non-MSI).
4062 */
Daniel Vetter222c7f52014-09-15 14:55:28 +02004063 spin_lock(&dev_priv->irq_lock);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004064 if (iir & I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT)
Daniel Vetteraaecdf62014-11-04 15:52:22 +01004065 DRM_DEBUG("Command parser error, iir 0x%08x\n", iir);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004066
Damien Lespiau055e3932014-08-18 13:49:10 +01004067 for_each_pipe(dev_priv, pipe) {
Ville Syrjäläf0f59a02015-11-18 15:33:26 +02004068 i915_reg_t reg = PIPESTAT(pipe);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004069 pipe_stats[pipe] = I915_READ(reg);
4070
Chris Wilson38bde182012-04-24 22:59:50 +01004071 /* Clear the PIPE*STAT regs before the IIR */
Chris Wilsona266c7d2012-04-24 22:59:44 +01004072 if (pipe_stats[pipe] & 0x8000ffff) {
Chris Wilsona266c7d2012-04-24 22:59:44 +01004073 I915_WRITE(reg, pipe_stats[pipe]);
Chris Wilson38bde182012-04-24 22:59:50 +01004074 irq_received = true;
Chris Wilsona266c7d2012-04-24 22:59:44 +01004075 }
4076 }
Daniel Vetter222c7f52014-09-15 14:55:28 +02004077 spin_unlock(&dev_priv->irq_lock);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004078
4079 if (!irq_received)
4080 break;
4081
Chris Wilsona266c7d2012-04-24 22:59:44 +01004082 /* Consume port. Then clear IIR or we'll miss events */
Ville Syrjälä16c6c562014-04-01 10:54:36 +03004083 if (I915_HAS_HOTPLUG(dev) &&
4084 iir & I915_DISPLAY_PORT_INTERRUPT)
4085 i9xx_hpd_irq_handler(dev);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004086
Chris Wilson38bde182012-04-24 22:59:50 +01004087 I915_WRITE(IIR, iir & ~flip_mask);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004088 new_iir = I915_READ(IIR); /* Flush posted writes */
4089
Chris Wilsona266c7d2012-04-24 22:59:44 +01004090 if (iir & I915_USER_INTERRUPT)
Chris Wilson74cdb332015-04-07 16:21:05 +01004091 notify_ring(&dev_priv->ring[RCS]);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004092
Damien Lespiau055e3932014-08-18 13:49:10 +01004093 for_each_pipe(dev_priv, pipe) {
Chris Wilson38bde182012-04-24 22:59:50 +01004094 int plane = pipe;
Daniel Vetter3a77c4c2014-01-10 08:50:12 +01004095 if (HAS_FBC(dev))
Chris Wilson38bde182012-04-24 22:59:50 +01004096 plane = !plane;
Ville Syrjälä5e2032d2013-02-19 15:16:38 +02004097
Ville Syrjälä90a72f82013-02-19 23:16:44 +02004098 if (pipe_stats[pipe] & PIPE_VBLANK_INTERRUPT_STATUS &&
4099 i915_handle_vblank(dev, plane, pipe, iir))
4100 flip_mask &= ~DISPLAY_PLANE_FLIP_PENDING(plane);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004101
4102 if (pipe_stats[pipe] & PIPE_LEGACY_BLC_EVENT_STATUS)
4103 blc_event = true;
Daniel Vetter4356d582013-10-16 22:55:55 +02004104
4105 if (pipe_stats[pipe] & PIPE_CRC_DONE_INTERRUPT_STATUS)
Daniel Vetter277de952013-10-18 16:37:07 +02004106 i9xx_pipe_crc_irq_handler(dev, pipe);
Ville Syrjälä2d9d2b02014-01-17 11:44:31 +02004107
Daniel Vetter1f7247c2014-09-30 10:56:48 +02004108 if (pipe_stats[pipe] & PIPE_FIFO_UNDERRUN_STATUS)
4109 intel_cpu_fifo_underrun_irq_handler(dev_priv,
4110 pipe);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004111 }
4112
Chris Wilsona266c7d2012-04-24 22:59:44 +01004113 if (blc_event || (iir & I915_ASLE_INTERRUPT))
4114 intel_opregion_asle_intr(dev);
4115
4116 /* With MSI, interrupts are only generated when iir
4117 * transitions from zero to nonzero. If another bit got
4118 * set while we were handling the existing iir bits, then
4119 * we would never get another interrupt.
4120 *
4121 * This is fine on non-MSI as well, as if we hit this path
4122 * we avoid exiting the interrupt handler only to generate
4123 * another one.
4124 *
4125 * Note that for MSI this could cause a stray interrupt report
4126 * if an interrupt landed in the time between writing IIR and
4127 * the posting read. This should be rare enough to never
4128 * trigger the 99% of 100,000 interrupts test for disabling
4129 * stray interrupts.
4130 */
Chris Wilson38bde182012-04-24 22:59:50 +01004131 ret = IRQ_HANDLED;
Chris Wilsona266c7d2012-04-24 22:59:44 +01004132 iir = new_iir;
Chris Wilson38bde182012-04-24 22:59:50 +01004133 } while (iir & ~flip_mask);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004134
4135 return ret;
4136}
4137
4138static void i915_irq_uninstall(struct drm_device * dev)
4139{
Jani Nikula2d1013d2014-03-31 14:27:17 +03004140 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsona266c7d2012-04-24 22:59:44 +01004141 int pipe;
4142
Chris Wilsona266c7d2012-04-24 22:59:44 +01004143 if (I915_HAS_HOTPLUG(dev)) {
Egbert Eich0706f172015-09-23 16:15:27 +02004144 i915_hotplug_interrupt_update(dev_priv, 0xffffffff, 0);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004145 I915_WRITE(PORT_HOTPLUG_STAT, I915_READ(PORT_HOTPLUG_STAT));
4146 }
4147
Chris Wilson00d98eb2012-04-24 22:59:48 +01004148 I915_WRITE16(HWSTAM, 0xffff);
Damien Lespiau055e3932014-08-18 13:49:10 +01004149 for_each_pipe(dev_priv, pipe) {
Chris Wilson55b39752012-04-24 22:59:49 +01004150 /* Clear enable bits; then clear status bits */
Chris Wilsona266c7d2012-04-24 22:59:44 +01004151 I915_WRITE(PIPESTAT(pipe), 0);
Chris Wilson55b39752012-04-24 22:59:49 +01004152 I915_WRITE(PIPESTAT(pipe), I915_READ(PIPESTAT(pipe)));
4153 }
Chris Wilsona266c7d2012-04-24 22:59:44 +01004154 I915_WRITE(IMR, 0xffffffff);
4155 I915_WRITE(IER, 0x0);
4156
Chris Wilsona266c7d2012-04-24 22:59:44 +01004157 I915_WRITE(IIR, I915_READ(IIR));
4158}
4159
4160static void i965_irq_preinstall(struct drm_device * dev)
4161{
Jani Nikula2d1013d2014-03-31 14:27:17 +03004162 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsona266c7d2012-04-24 22:59:44 +01004163 int pipe;
4164
Egbert Eich0706f172015-09-23 16:15:27 +02004165 i915_hotplug_interrupt_update(dev_priv, 0xffffffff, 0);
Chris Wilsonadca4732012-05-11 18:01:31 +01004166 I915_WRITE(PORT_HOTPLUG_STAT, I915_READ(PORT_HOTPLUG_STAT));
Chris Wilsona266c7d2012-04-24 22:59:44 +01004167
4168 I915_WRITE(HWSTAM, 0xeffe);
Damien Lespiau055e3932014-08-18 13:49:10 +01004169 for_each_pipe(dev_priv, pipe)
Chris Wilsona266c7d2012-04-24 22:59:44 +01004170 I915_WRITE(PIPESTAT(pipe), 0);
4171 I915_WRITE(IMR, 0xffffffff);
4172 I915_WRITE(IER, 0x0);
4173 POSTING_READ(IER);
4174}
4175
4176static int i965_irq_postinstall(struct drm_device *dev)
4177{
Jani Nikula2d1013d2014-03-31 14:27:17 +03004178 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsonbbba0a92012-04-24 22:59:51 +01004179 u32 enable_mask;
Chris Wilsona266c7d2012-04-24 22:59:44 +01004180 u32 error_mask;
4181
Chris Wilsona266c7d2012-04-24 22:59:44 +01004182 /* Unmask the interrupts that we always want on. */
Chris Wilsonbbba0a92012-04-24 22:59:51 +01004183 dev_priv->irq_mask = ~(I915_ASLE_INTERRUPT |
Chris Wilsonadca4732012-05-11 18:01:31 +01004184 I915_DISPLAY_PORT_INTERRUPT |
Chris Wilsonbbba0a92012-04-24 22:59:51 +01004185 I915_DISPLAY_PIPE_A_EVENT_INTERRUPT |
4186 I915_DISPLAY_PIPE_B_EVENT_INTERRUPT |
4187 I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT |
4188 I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT |
4189 I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT);
4190
4191 enable_mask = ~dev_priv->irq_mask;
Ville Syrjälä21ad8332013-02-19 15:16:39 +02004192 enable_mask &= ~(I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT |
4193 I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT);
Chris Wilsonbbba0a92012-04-24 22:59:51 +01004194 enable_mask |= I915_USER_INTERRUPT;
4195
4196 if (IS_G4X(dev))
4197 enable_mask |= I915_BSD_USER_INTERRUPT;
Chris Wilsona266c7d2012-04-24 22:59:44 +01004198
Daniel Vetterb79480b2013-06-27 17:52:10 +02004199 /* Interrupt setup is already guaranteed to be single-threaded, this is
4200 * just to make the assert_spin_locked check happy. */
Daniel Vetterd6207432014-09-15 14:55:27 +02004201 spin_lock_irq(&dev_priv->irq_lock);
Imre Deak755e9012014-02-10 18:42:47 +02004202 i915_enable_pipestat(dev_priv, PIPE_A, PIPE_GMBUS_INTERRUPT_STATUS);
4203 i915_enable_pipestat(dev_priv, PIPE_A, PIPE_CRC_DONE_INTERRUPT_STATUS);
4204 i915_enable_pipestat(dev_priv, PIPE_B, PIPE_CRC_DONE_INTERRUPT_STATUS);
Daniel Vetterd6207432014-09-15 14:55:27 +02004205 spin_unlock_irq(&dev_priv->irq_lock);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004206
Chris Wilsona266c7d2012-04-24 22:59:44 +01004207 /*
4208 * Enable some error detection, note the instruction error mask
4209 * bit is reserved, so we leave it masked.
4210 */
4211 if (IS_G4X(dev)) {
4212 error_mask = ~(GM45_ERROR_PAGE_TABLE |
4213 GM45_ERROR_MEM_PRIV |
4214 GM45_ERROR_CP_PRIV |
4215 I915_ERROR_MEMORY_REFRESH);
4216 } else {
4217 error_mask = ~(I915_ERROR_PAGE_TABLE |
4218 I915_ERROR_MEMORY_REFRESH);
4219 }
4220 I915_WRITE(EMR, error_mask);
4221
4222 I915_WRITE(IMR, dev_priv->irq_mask);
4223 I915_WRITE(IER, enable_mask);
4224 POSTING_READ(IER);
4225
Egbert Eich0706f172015-09-23 16:15:27 +02004226 i915_hotplug_interrupt_update(dev_priv, 0xffffffff, 0);
Daniel Vetter20afbda2012-12-11 14:05:07 +01004227 POSTING_READ(PORT_HOTPLUG_EN);
4228
Jani Nikulaf49e38d2013-04-29 13:02:54 +03004229 i915_enable_asle_pipestat(dev);
Daniel Vetter20afbda2012-12-11 14:05:07 +01004230
4231 return 0;
4232}
4233
Egbert Eichbac56d52013-02-25 12:06:51 -05004234static void i915_hpd_irq_setup(struct drm_device *dev)
Daniel Vetter20afbda2012-12-11 14:05:07 +01004235{
Jani Nikula2d1013d2014-03-31 14:27:17 +03004236 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter20afbda2012-12-11 14:05:07 +01004237 u32 hotplug_en;
4238
Daniel Vetterb5ea2d52013-06-27 17:52:15 +02004239 assert_spin_locked(&dev_priv->irq_lock);
4240
Ville Syrjälä778eb332015-01-09 14:21:13 +02004241 /* Note HDMI and DP share hotplug bits */
4242 /* enable bits are the same for all generations */
Egbert Eich0706f172015-09-23 16:15:27 +02004243 hotplug_en = intel_hpd_enabled_irqs(dev, hpd_mask_i915);
Ville Syrjälä778eb332015-01-09 14:21:13 +02004244 /* Programming the CRT detection parameters tends
4245 to generate a spurious hotplug event about three
4246 seconds later. So just do it once.
4247 */
4248 if (IS_G4X(dev))
4249 hotplug_en |= CRT_HOTPLUG_ACTIVATION_PERIOD_64;
Ville Syrjälä778eb332015-01-09 14:21:13 +02004250 hotplug_en |= CRT_HOTPLUG_VOLTAGE_COMPARE_50;
Chris Wilsona266c7d2012-04-24 22:59:44 +01004251
Ville Syrjälä778eb332015-01-09 14:21:13 +02004252 /* Ignore TV since it's buggy */
Egbert Eich0706f172015-09-23 16:15:27 +02004253 i915_hotplug_interrupt_update_locked(dev_priv,
Jani Nikulaf9e3dc72015-10-21 17:22:43 +03004254 HOTPLUG_INT_EN_MASK |
4255 CRT_HOTPLUG_VOLTAGE_COMPARE_MASK |
4256 CRT_HOTPLUG_ACTIVATION_PERIOD_64,
4257 hotplug_en);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004258}
4259
Daniel Vetterff1f5252012-10-02 15:10:55 +02004260static irqreturn_t i965_irq_handler(int irq, void *arg)
Chris Wilsona266c7d2012-04-24 22:59:44 +01004261{
Daniel Vetter45a83f82014-05-12 19:17:55 +02004262 struct drm_device *dev = arg;
Jani Nikula2d1013d2014-03-31 14:27:17 +03004263 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsona266c7d2012-04-24 22:59:44 +01004264 u32 iir, new_iir;
4265 u32 pipe_stats[I915_MAX_PIPES];
Chris Wilsona266c7d2012-04-24 22:59:44 +01004266 int ret = IRQ_NONE, pipe;
Ville Syrjälä21ad8332013-02-19 15:16:39 +02004267 u32 flip_mask =
4268 I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT |
4269 I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT;
Chris Wilsona266c7d2012-04-24 22:59:44 +01004270
Imre Deak2dd2a882015-02-24 11:14:30 +02004271 if (!intel_irqs_enabled(dev_priv))
4272 return IRQ_NONE;
4273
Chris Wilsona266c7d2012-04-24 22:59:44 +01004274 iir = I915_READ(IIR);
4275
Chris Wilsona266c7d2012-04-24 22:59:44 +01004276 for (;;) {
Ville Syrjälä501e01d2014-01-17 11:35:15 +02004277 bool irq_received = (iir & ~flip_mask) != 0;
Chris Wilson2c8ba292012-04-24 22:59:46 +01004278 bool blc_event = false;
4279
Chris Wilsona266c7d2012-04-24 22:59:44 +01004280 /* Can't rely on pipestat interrupt bit in iir as it might
4281 * have been cleared after the pipestat interrupt was received.
4282 * It doesn't set the bit in iir again, but it still produces
4283 * interrupts (for non-MSI).
4284 */
Daniel Vetter222c7f52014-09-15 14:55:28 +02004285 spin_lock(&dev_priv->irq_lock);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004286 if (iir & I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT)
Daniel Vetteraaecdf62014-11-04 15:52:22 +01004287 DRM_DEBUG("Command parser error, iir 0x%08x\n", iir);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004288
Damien Lespiau055e3932014-08-18 13:49:10 +01004289 for_each_pipe(dev_priv, pipe) {
Ville Syrjäläf0f59a02015-11-18 15:33:26 +02004290 i915_reg_t reg = PIPESTAT(pipe);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004291 pipe_stats[pipe] = I915_READ(reg);
4292
4293 /*
4294 * Clear the PIPE*STAT regs before the IIR
4295 */
4296 if (pipe_stats[pipe] & 0x8000ffff) {
Chris Wilsona266c7d2012-04-24 22:59:44 +01004297 I915_WRITE(reg, pipe_stats[pipe]);
Ville Syrjälä501e01d2014-01-17 11:35:15 +02004298 irq_received = true;
Chris Wilsona266c7d2012-04-24 22:59:44 +01004299 }
4300 }
Daniel Vetter222c7f52014-09-15 14:55:28 +02004301 spin_unlock(&dev_priv->irq_lock);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004302
4303 if (!irq_received)
4304 break;
4305
4306 ret = IRQ_HANDLED;
4307
4308 /* Consume port. Then clear IIR or we'll miss events */
Ville Syrjälä16c6c562014-04-01 10:54:36 +03004309 if (iir & I915_DISPLAY_PORT_INTERRUPT)
4310 i9xx_hpd_irq_handler(dev);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004311
Ville Syrjälä21ad8332013-02-19 15:16:39 +02004312 I915_WRITE(IIR, iir & ~flip_mask);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004313 new_iir = I915_READ(IIR); /* Flush posted writes */
4314
Chris Wilsona266c7d2012-04-24 22:59:44 +01004315 if (iir & I915_USER_INTERRUPT)
Chris Wilson74cdb332015-04-07 16:21:05 +01004316 notify_ring(&dev_priv->ring[RCS]);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004317 if (iir & I915_BSD_USER_INTERRUPT)
Chris Wilson74cdb332015-04-07 16:21:05 +01004318 notify_ring(&dev_priv->ring[VCS]);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004319
Damien Lespiau055e3932014-08-18 13:49:10 +01004320 for_each_pipe(dev_priv, pipe) {
Chris Wilson2c8ba292012-04-24 22:59:46 +01004321 if (pipe_stats[pipe] & PIPE_START_VBLANK_INTERRUPT_STATUS &&
Ville Syrjälä90a72f82013-02-19 23:16:44 +02004322 i915_handle_vblank(dev, pipe, pipe, iir))
4323 flip_mask &= ~DISPLAY_PLANE_FLIP_PENDING(pipe);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004324
4325 if (pipe_stats[pipe] & PIPE_LEGACY_BLC_EVENT_STATUS)
4326 blc_event = true;
Daniel Vetter4356d582013-10-16 22:55:55 +02004327
4328 if (pipe_stats[pipe] & PIPE_CRC_DONE_INTERRUPT_STATUS)
Daniel Vetter277de952013-10-18 16:37:07 +02004329 i9xx_pipe_crc_irq_handler(dev, pipe);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004330
Daniel Vetter1f7247c2014-09-30 10:56:48 +02004331 if (pipe_stats[pipe] & PIPE_FIFO_UNDERRUN_STATUS)
4332 intel_cpu_fifo_underrun_irq_handler(dev_priv, pipe);
Ville Syrjälä2d9d2b02014-01-17 11:44:31 +02004333 }
Chris Wilsona266c7d2012-04-24 22:59:44 +01004334
4335 if (blc_event || (iir & I915_ASLE_INTERRUPT))
4336 intel_opregion_asle_intr(dev);
4337
Daniel Vetter515ac2b2012-12-01 13:53:44 +01004338 if (pipe_stats[0] & PIPE_GMBUS_INTERRUPT_STATUS)
4339 gmbus_irq_handler(dev);
4340
Chris Wilsona266c7d2012-04-24 22:59:44 +01004341 /* With MSI, interrupts are only generated when iir
4342 * transitions from zero to nonzero. If another bit got
4343 * set while we were handling the existing iir bits, then
4344 * we would never get another interrupt.
4345 *
4346 * This is fine on non-MSI as well, as if we hit this path
4347 * we avoid exiting the interrupt handler only to generate
4348 * another one.
4349 *
4350 * Note that for MSI this could cause a stray interrupt report
4351 * if an interrupt landed in the time between writing IIR and
4352 * the posting read. This should be rare enough to never
4353 * trigger the 99% of 100,000 interrupts test for disabling
4354 * stray interrupts.
4355 */
4356 iir = new_iir;
4357 }
4358
4359 return ret;
4360}
4361
4362static void i965_irq_uninstall(struct drm_device * dev)
4363{
Jani Nikula2d1013d2014-03-31 14:27:17 +03004364 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsona266c7d2012-04-24 22:59:44 +01004365 int pipe;
4366
4367 if (!dev_priv)
4368 return;
4369
Egbert Eich0706f172015-09-23 16:15:27 +02004370 i915_hotplug_interrupt_update(dev_priv, 0xffffffff, 0);
Chris Wilsonadca4732012-05-11 18:01:31 +01004371 I915_WRITE(PORT_HOTPLUG_STAT, I915_READ(PORT_HOTPLUG_STAT));
Chris Wilsona266c7d2012-04-24 22:59:44 +01004372
4373 I915_WRITE(HWSTAM, 0xffffffff);
Damien Lespiau055e3932014-08-18 13:49:10 +01004374 for_each_pipe(dev_priv, pipe)
Chris Wilsona266c7d2012-04-24 22:59:44 +01004375 I915_WRITE(PIPESTAT(pipe), 0);
4376 I915_WRITE(IMR, 0xffffffff);
4377 I915_WRITE(IER, 0x0);
4378
Damien Lespiau055e3932014-08-18 13:49:10 +01004379 for_each_pipe(dev_priv, pipe)
Chris Wilsona266c7d2012-04-24 22:59:44 +01004380 I915_WRITE(PIPESTAT(pipe),
4381 I915_READ(PIPESTAT(pipe)) & 0x8000ffff);
4382 I915_WRITE(IIR, I915_READ(IIR));
4383}
4384
Daniel Vetterfca52a52014-09-30 10:56:45 +02004385/**
4386 * intel_irq_init - initializes irq support
4387 * @dev_priv: i915 device instance
4388 *
4389 * This function initializes all the irq support including work items, timers
4390 * and all the vtables. It does not setup the interrupt itself though.
4391 */
Daniel Vetterb9632912014-09-30 10:56:44 +02004392void intel_irq_init(struct drm_i915_private *dev_priv)
Jesse Barnesf71d4af2011-06-28 13:00:41 -07004393{
Daniel Vetterb9632912014-09-30 10:56:44 +02004394 struct drm_device *dev = dev_priv->dev;
Chris Wilson8b2e3262012-04-24 22:59:41 +01004395
Jani Nikula77913b32015-06-18 13:06:16 +03004396 intel_hpd_init_work(dev_priv);
4397
Daniel Vetterc6a828d2012-08-08 23:35:35 +02004398 INIT_WORK(&dev_priv->rps.work, gen6_pm_rps_work);
Daniel Vettera4da4fa2012-11-02 19:55:07 +01004399 INIT_WORK(&dev_priv->l3_parity.error_work, ivybridge_parity_work);
Chris Wilson8b2e3262012-04-24 22:59:41 +01004400
Deepak Sa6706b42014-03-15 20:23:22 +05304401 /* Let's track the enabled rps events */
Daniel Vetterb9632912014-09-30 10:56:44 +02004402 if (IS_VALLEYVIEW(dev_priv) && !IS_CHERRYVIEW(dev_priv))
Ville Syrjälä6c65a582014-08-29 14:14:07 +03004403 /* WaGsvRC0ResidencyMethod:vlv */
Chris Wilson6f4b12f82015-03-18 09:48:23 +00004404 dev_priv->pm_rps_events = GEN6_PM_RP_DOWN_EI_EXPIRED | GEN6_PM_RP_UP_EI_EXPIRED;
Deepak S31685c22014-07-03 17:33:01 -04004405 else
4406 dev_priv->pm_rps_events = GEN6_PM_RPS_EVENTS;
Deepak Sa6706b42014-03-15 20:23:22 +05304407
Chris Wilson737b1502015-01-26 18:03:03 +02004408 INIT_DELAYED_WORK(&dev_priv->gpu_error.hangcheck_work,
4409 i915_hangcheck_elapsed);
Daniel Vetter61bac782012-12-01 21:03:21 +01004410
Tomas Janousek97a19a22012-12-08 13:48:13 +01004411 pm_qos_add_request(&dev_priv->pm_qos, PM_QOS_CPU_DMA_LATENCY, PM_QOS_DEFAULT_VALUE);
Daniel Vetter9ee32fea2012-12-01 13:53:48 +01004412
Daniel Vetterb9632912014-09-30 10:56:44 +02004413 if (IS_GEN2(dev_priv)) {
Ville Syrjälä4cdb83e2013-10-11 21:52:44 +03004414 dev->max_vblank_count = 0;
4415 dev->driver->get_vblank_counter = i8xx_get_vblank_counter;
Daniel Vetterb9632912014-09-30 10:56:44 +02004416 } else if (IS_G4X(dev_priv) || INTEL_INFO(dev_priv)->gen >= 5) {
Jesse Barnesf71d4af2011-06-28 13:00:41 -07004417 dev->max_vblank_count = 0xffffffff; /* full 32 bit counter */
Ville Syrjäläfd8f5072015-09-18 20:03:42 +03004418 dev->driver->get_vblank_counter = g4x_get_vblank_counter;
Ville Syrjälä391f75e2013-09-25 19:55:26 +03004419 } else {
4420 dev->driver->get_vblank_counter = i915_get_vblank_counter;
4421 dev->max_vblank_count = 0xffffff; /* only 24 bits of frame count */
Jesse Barnesf71d4af2011-06-28 13:00:41 -07004422 }
4423
Ville Syrjälä21da2702014-08-06 14:49:55 +03004424 /*
4425 * Opt out of the vblank disable timer on everything except gen2.
4426 * Gen2 doesn't have a hardware frame counter and so depends on
4427 * vblank interrupts to produce sane vblank seuquence numbers.
4428 */
Daniel Vetterb9632912014-09-30 10:56:44 +02004429 if (!IS_GEN2(dev_priv))
Ville Syrjälä21da2702014-08-06 14:49:55 +03004430 dev->vblank_disable_immediate = true;
4431
Daniel Vetterf3a5c3f2015-02-13 21:03:44 +01004432 dev->driver->get_vblank_timestamp = i915_get_vblank_timestamp;
4433 dev->driver->get_scanout_position = i915_get_crtc_scanoutpos;
Jesse Barnesf71d4af2011-06-28 13:00:41 -07004434
Daniel Vetterb9632912014-09-30 10:56:44 +02004435 if (IS_CHERRYVIEW(dev_priv)) {
Ville Syrjälä43f328d2014-04-09 20:40:52 +03004436 dev->driver->irq_handler = cherryview_irq_handler;
4437 dev->driver->irq_preinstall = cherryview_irq_preinstall;
4438 dev->driver->irq_postinstall = cherryview_irq_postinstall;
4439 dev->driver->irq_uninstall = cherryview_irq_uninstall;
4440 dev->driver->enable_vblank = valleyview_enable_vblank;
4441 dev->driver->disable_vblank = valleyview_disable_vblank;
4442 dev_priv->display.hpd_irq_setup = i915_hpd_irq_setup;
Daniel Vetterb9632912014-09-30 10:56:44 +02004443 } else if (IS_VALLEYVIEW(dev_priv)) {
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07004444 dev->driver->irq_handler = valleyview_irq_handler;
4445 dev->driver->irq_preinstall = valleyview_irq_preinstall;
4446 dev->driver->irq_postinstall = valleyview_irq_postinstall;
4447 dev->driver->irq_uninstall = valleyview_irq_uninstall;
4448 dev->driver->enable_vblank = valleyview_enable_vblank;
4449 dev->driver->disable_vblank = valleyview_disable_vblank;
Egbert Eichfa00abe2013-02-25 12:06:48 -05004450 dev_priv->display.hpd_irq_setup = i915_hpd_irq_setup;
Daniel Vetterb9632912014-09-30 10:56:44 +02004451 } else if (INTEL_INFO(dev_priv)->gen >= 8) {
Ben Widawskyabd58f02013-11-02 21:07:09 -07004452 dev->driver->irq_handler = gen8_irq_handler;
Daniel Vetter723761b2014-05-22 17:56:34 +02004453 dev->driver->irq_preinstall = gen8_irq_reset;
Ben Widawskyabd58f02013-11-02 21:07:09 -07004454 dev->driver->irq_postinstall = gen8_irq_postinstall;
4455 dev->driver->irq_uninstall = gen8_irq_uninstall;
4456 dev->driver->enable_vblank = gen8_enable_vblank;
4457 dev->driver->disable_vblank = gen8_disable_vblank;
Ville Syrjälä6dbf30c2015-08-27 23:56:02 +03004458 if (IS_BROXTON(dev))
Shashank Sharmae0a20ad2015-03-27 14:54:14 +02004459 dev_priv->display.hpd_irq_setup = bxt_hpd_irq_setup;
Ville Syrjälä6dbf30c2015-08-27 23:56:02 +03004460 else if (HAS_PCH_SPT(dev))
4461 dev_priv->display.hpd_irq_setup = spt_hpd_irq_setup;
4462 else
Ville Syrjälä3a3b3c72015-08-27 23:56:06 +03004463 dev_priv->display.hpd_irq_setup = ilk_hpd_irq_setup;
Jesse Barnesf71d4af2011-06-28 13:00:41 -07004464 } else if (HAS_PCH_SPLIT(dev)) {
4465 dev->driver->irq_handler = ironlake_irq_handler;
Daniel Vetter723761b2014-05-22 17:56:34 +02004466 dev->driver->irq_preinstall = ironlake_irq_reset;
Jesse Barnesf71d4af2011-06-28 13:00:41 -07004467 dev->driver->irq_postinstall = ironlake_irq_postinstall;
4468 dev->driver->irq_uninstall = ironlake_irq_uninstall;
4469 dev->driver->enable_vblank = ironlake_enable_vblank;
4470 dev->driver->disable_vblank = ironlake_disable_vblank;
Ville Syrjälä23bb4cb2015-08-27 23:56:04 +03004471 dev_priv->display.hpd_irq_setup = ilk_hpd_irq_setup;
Jesse Barnesf71d4af2011-06-28 13:00:41 -07004472 } else {
Daniel Vetterb9632912014-09-30 10:56:44 +02004473 if (INTEL_INFO(dev_priv)->gen == 2) {
Chris Wilsonc2798b12012-04-22 21:13:57 +01004474 dev->driver->irq_preinstall = i8xx_irq_preinstall;
4475 dev->driver->irq_postinstall = i8xx_irq_postinstall;
4476 dev->driver->irq_handler = i8xx_irq_handler;
4477 dev->driver->irq_uninstall = i8xx_irq_uninstall;
Daniel Vetterb9632912014-09-30 10:56:44 +02004478 } else if (INTEL_INFO(dev_priv)->gen == 3) {
Chris Wilsona266c7d2012-04-24 22:59:44 +01004479 dev->driver->irq_preinstall = i915_irq_preinstall;
4480 dev->driver->irq_postinstall = i915_irq_postinstall;
4481 dev->driver->irq_uninstall = i915_irq_uninstall;
4482 dev->driver->irq_handler = i915_irq_handler;
Chris Wilsonc2798b12012-04-22 21:13:57 +01004483 } else {
Chris Wilsona266c7d2012-04-24 22:59:44 +01004484 dev->driver->irq_preinstall = i965_irq_preinstall;
4485 dev->driver->irq_postinstall = i965_irq_postinstall;
4486 dev->driver->irq_uninstall = i965_irq_uninstall;
4487 dev->driver->irq_handler = i965_irq_handler;
Chris Wilsonc2798b12012-04-22 21:13:57 +01004488 }
Ville Syrjälä778eb332015-01-09 14:21:13 +02004489 if (I915_HAS_HOTPLUG(dev_priv))
4490 dev_priv->display.hpd_irq_setup = i915_hpd_irq_setup;
Jesse Barnesf71d4af2011-06-28 13:00:41 -07004491 dev->driver->enable_vblank = i915_enable_vblank;
4492 dev->driver->disable_vblank = i915_disable_vblank;
4493 }
4494}
Daniel Vetter20afbda2012-12-11 14:05:07 +01004495
Daniel Vetterfca52a52014-09-30 10:56:45 +02004496/**
Daniel Vetterfca52a52014-09-30 10:56:45 +02004497 * intel_irq_install - enables the hardware interrupt
4498 * @dev_priv: i915 device instance
4499 *
4500 * This function enables the hardware interrupt handling, but leaves the hotplug
4501 * handling still disabled. It is called after intel_irq_init().
4502 *
4503 * In the driver load and resume code we need working interrupts in a few places
4504 * but don't want to deal with the hassle of concurrent probe and hotplug
4505 * workers. Hence the split into this two-stage approach.
4506 */
Daniel Vetter2aeb7d32014-09-30 10:56:43 +02004507int intel_irq_install(struct drm_i915_private *dev_priv)
4508{
4509 /*
4510 * We enable some interrupt sources in our postinstall hooks, so mark
4511 * interrupts as enabled _before_ actually enabling them to avoid
4512 * special cases in our ordering checks.
4513 */
4514 dev_priv->pm.irqs_enabled = true;
4515
4516 return drm_irq_install(dev_priv->dev, dev_priv->dev->pdev->irq);
4517}
4518
Daniel Vetterfca52a52014-09-30 10:56:45 +02004519/**
4520 * intel_irq_uninstall - finilizes all irq handling
4521 * @dev_priv: i915 device instance
4522 *
4523 * This stops interrupt and hotplug handling and unregisters and frees all
4524 * resources acquired in the init functions.
4525 */
Daniel Vetter2aeb7d32014-09-30 10:56:43 +02004526void intel_irq_uninstall(struct drm_i915_private *dev_priv)
4527{
4528 drm_irq_uninstall(dev_priv->dev);
4529 intel_hpd_cancel_work(dev_priv);
4530 dev_priv->pm.irqs_enabled = false;
4531}
4532
Daniel Vetterfca52a52014-09-30 10:56:45 +02004533/**
4534 * intel_runtime_pm_disable_interrupts - runtime interrupt disabling
4535 * @dev_priv: i915 device instance
4536 *
4537 * This function is used to disable interrupts at runtime, both in the runtime
4538 * pm and the system suspend/resume code.
4539 */
Daniel Vetterb9632912014-09-30 10:56:44 +02004540void intel_runtime_pm_disable_interrupts(struct drm_i915_private *dev_priv)
Paulo Zanonic67a4702013-08-19 13:18:09 -03004541{
Daniel Vetterb9632912014-09-30 10:56:44 +02004542 dev_priv->dev->driver->irq_uninstall(dev_priv->dev);
Daniel Vetter2aeb7d32014-09-30 10:56:43 +02004543 dev_priv->pm.irqs_enabled = false;
Imre Deak2dd2a882015-02-24 11:14:30 +02004544 synchronize_irq(dev_priv->dev->irq);
Paulo Zanonic67a4702013-08-19 13:18:09 -03004545}
4546
Daniel Vetterfca52a52014-09-30 10:56:45 +02004547/**
4548 * intel_runtime_pm_enable_interrupts - runtime interrupt enabling
4549 * @dev_priv: i915 device instance
4550 *
4551 * This function is used to enable interrupts at runtime, both in the runtime
4552 * pm and the system suspend/resume code.
4553 */
Daniel Vetterb9632912014-09-30 10:56:44 +02004554void intel_runtime_pm_enable_interrupts(struct drm_i915_private *dev_priv)
Paulo Zanonic67a4702013-08-19 13:18:09 -03004555{
Daniel Vetter2aeb7d32014-09-30 10:56:43 +02004556 dev_priv->pm.irqs_enabled = true;
Daniel Vetterb9632912014-09-30 10:56:44 +02004557 dev_priv->dev->driver->irq_preinstall(dev_priv->dev);
4558 dev_priv->dev->driver->irq_postinstall(dev_priv->dev);
Paulo Zanonic67a4702013-08-19 13:18:09 -03004559}