blob: 0677e87c89d704dcfe2cb23465e52070a5bd8830 [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);
Jani Nikula820da7a2015-11-25 16:47:23 +02002368 } else
2369 DRM_ERROR("The master control interrupt lied (SDE)!\n");
2370
Daniel Vetter92d03a82013-11-07 11:05:43 +01002371 }
2372
Chris Wilsoncb0d2052015-04-07 16:21:04 +01002373 I915_WRITE_FW(GEN8_MASTER_IRQ, GEN8_MASTER_IRQ_CONTROL);
2374 POSTING_READ_FW(GEN8_MASTER_IRQ);
Ben Widawskyabd58f02013-11-02 21:07:09 -07002375
2376 return ret;
2377}
2378
Daniel Vetter17e1df02013-09-08 21:57:13 +02002379static void i915_error_wake_up(struct drm_i915_private *dev_priv,
2380 bool reset_completed)
2381{
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002382 struct intel_engine_cs *ring;
Daniel Vetter17e1df02013-09-08 21:57:13 +02002383 int i;
2384
2385 /*
2386 * Notify all waiters for GPU completion events that reset state has
2387 * been changed, and that they need to restart their wait after
2388 * checking for potential errors (and bail out to drop locks if there is
2389 * a gpu reset pending so that i915_error_work_func can acquire them).
2390 */
2391
2392 /* Wake up __wait_seqno, potentially holding dev->struct_mutex. */
2393 for_each_ring(ring, dev_priv, i)
2394 wake_up_all(&ring->irq_queue);
2395
2396 /* Wake up intel_crtc_wait_for_pending_flips, holding crtc->mutex. */
2397 wake_up_all(&dev_priv->pending_flip_queue);
2398
2399 /*
2400 * Signal tasks blocked in i915_gem_wait_for_error that the pending
2401 * reset state is cleared.
2402 */
2403 if (reset_completed)
2404 wake_up_all(&dev_priv->gpu_error.reset_queue);
2405}
2406
Jesse Barnes8a905232009-07-11 16:48:03 -04002407/**
Mika Kuoppalab8d24a02015-01-28 17:03:14 +02002408 * i915_reset_and_wakeup - do process context error handling work
Javier Martinez Canillas468f9d22015-10-08 09:54:44 +02002409 * @dev: drm device
Jesse Barnes8a905232009-07-11 16:48:03 -04002410 *
2411 * Fire an error uevent so userspace can see that a hang or error
2412 * was detected.
2413 */
Mika Kuoppalab8d24a02015-01-28 17:03:14 +02002414static void i915_reset_and_wakeup(struct drm_device *dev)
Jesse Barnes8a905232009-07-11 16:48:03 -04002415{
Mika Kuoppalab8d24a02015-01-28 17:03:14 +02002416 struct drm_i915_private *dev_priv = to_i915(dev);
2417 struct i915_gpu_error *error = &dev_priv->gpu_error;
Ben Widawskycce723e2013-07-19 09:16:42 -07002418 char *error_event[] = { I915_ERROR_UEVENT "=1", NULL };
2419 char *reset_event[] = { I915_RESET_UEVENT "=1", NULL };
2420 char *reset_done_event[] = { I915_ERROR_UEVENT "=0", NULL };
Daniel Vetter17e1df02013-09-08 21:57:13 +02002421 int ret;
Jesse Barnes8a905232009-07-11 16:48:03 -04002422
Dave Airlie5bdebb12013-10-11 14:07:25 +10002423 kobject_uevent_env(&dev->primary->kdev->kobj, KOBJ_CHANGE, error_event);
Jesse Barnes8a905232009-07-11 16:48:03 -04002424
Daniel Vetter7db0ba22012-12-06 16:23:37 +01002425 /*
2426 * Note that there's only one work item which does gpu resets, so we
2427 * need not worry about concurrent gpu resets potentially incrementing
2428 * error->reset_counter twice. We only need to take care of another
2429 * racing irq/hangcheck declaring the gpu dead for a second time. A
2430 * quick check for that is good enough: schedule_work ensures the
2431 * correct ordering between hang detection and this work item, and since
2432 * the reset in-progress bit is only ever set by code outside of this
2433 * work we don't need to worry about any other races.
2434 */
2435 if (i915_reset_in_progress(error) && !i915_terminally_wedged(error)) {
Chris Wilsonf803aa52010-09-19 12:38:26 +01002436 DRM_DEBUG_DRIVER("resetting chip\n");
Dave Airlie5bdebb12013-10-11 14:07:25 +10002437 kobject_uevent_env(&dev->primary->kdev->kobj, KOBJ_CHANGE,
Daniel Vetter7db0ba22012-12-06 16:23:37 +01002438 reset_event);
Daniel Vetter1f83fee2012-11-15 17:17:22 +01002439
Daniel Vetter17e1df02013-09-08 21:57:13 +02002440 /*
Imre Deakf454c692014-04-23 01:09:04 +03002441 * In most cases it's guaranteed that we get here with an RPM
2442 * reference held, for example because there is a pending GPU
2443 * request that won't finish until the reset is done. This
2444 * isn't the case at least when we get here by doing a
2445 * simulated reset via debugs, so get an RPM reference.
2446 */
2447 intel_runtime_pm_get(dev_priv);
Ville Syrjälä75147472014-11-24 18:28:11 +02002448
2449 intel_prepare_reset(dev);
2450
Imre Deakf454c692014-04-23 01:09:04 +03002451 /*
Daniel Vetter17e1df02013-09-08 21:57:13 +02002452 * All state reset _must_ be completed before we update the
2453 * reset counter, for otherwise waiters might miss the reset
2454 * pending state and not properly drop locks, resulting in
2455 * deadlocks with the reset work.
2456 */
Daniel Vetterf69061b2012-12-06 09:01:42 +01002457 ret = i915_reset(dev);
2458
Ville Syrjälä75147472014-11-24 18:28:11 +02002459 intel_finish_reset(dev);
Daniel Vetter17e1df02013-09-08 21:57:13 +02002460
Imre Deakf454c692014-04-23 01:09:04 +03002461 intel_runtime_pm_put(dev_priv);
2462
Daniel Vetterf69061b2012-12-06 09:01:42 +01002463 if (ret == 0) {
2464 /*
2465 * After all the gem state is reset, increment the reset
2466 * counter and wake up everyone waiting for the reset to
2467 * complete.
2468 *
2469 * Since unlock operations are a one-sided barrier only,
2470 * we need to insert a barrier here to order any seqno
2471 * updates before
2472 * the counter increment.
2473 */
Peter Zijlstra4e857c52014-03-17 18:06:10 +01002474 smp_mb__before_atomic();
Daniel Vetterf69061b2012-12-06 09:01:42 +01002475 atomic_inc(&dev_priv->gpu_error.reset_counter);
2476
Dave Airlie5bdebb12013-10-11 14:07:25 +10002477 kobject_uevent_env(&dev->primary->kdev->kobj,
Daniel Vetterf69061b2012-12-06 09:01:42 +01002478 KOBJ_CHANGE, reset_done_event);
Daniel Vetter1f83fee2012-11-15 17:17:22 +01002479 } else {
Peter Zijlstra805de8f42015-04-24 01:12:32 +02002480 atomic_or(I915_WEDGED, &error->reset_counter);
Ben Gamarif316a422009-09-14 17:48:46 -04002481 }
Daniel Vetter1f83fee2012-11-15 17:17:22 +01002482
Daniel Vetter17e1df02013-09-08 21:57:13 +02002483 /*
2484 * Note: The wake_up also serves as a memory barrier so that
2485 * waiters see the update value of the reset counter atomic_t.
2486 */
2487 i915_error_wake_up(dev_priv, true);
Ben Gamarif316a422009-09-14 17:48:46 -04002488 }
Jesse Barnes8a905232009-07-11 16:48:03 -04002489}
2490
Chris Wilson35aed2e2010-05-27 13:18:12 +01002491static void i915_report_and_clear_eir(struct drm_device *dev)
Jesse Barnes8a905232009-07-11 16:48:03 -04002492{
2493 struct drm_i915_private *dev_priv = dev->dev_private;
Ben Widawskybd9854f2012-08-23 15:18:09 -07002494 uint32_t instdone[I915_NUM_INSTDONE_REG];
Jesse Barnes8a905232009-07-11 16:48:03 -04002495 u32 eir = I915_READ(EIR);
Ben Widawsky050ee912012-08-22 11:32:15 -07002496 int pipe, i;
Jesse Barnes8a905232009-07-11 16:48:03 -04002497
Chris Wilson35aed2e2010-05-27 13:18:12 +01002498 if (!eir)
2499 return;
Jesse Barnes8a905232009-07-11 16:48:03 -04002500
Joe Perchesa70491c2012-03-18 13:00:11 -07002501 pr_err("render error detected, EIR: 0x%08x\n", eir);
Jesse Barnes8a905232009-07-11 16:48:03 -04002502
Ben Widawskybd9854f2012-08-23 15:18:09 -07002503 i915_get_extra_instdone(dev, instdone);
2504
Jesse Barnes8a905232009-07-11 16:48:03 -04002505 if (IS_G4X(dev)) {
2506 if (eir & (GM45_ERROR_MEM_PRIV | GM45_ERROR_CP_PRIV)) {
2507 u32 ipeir = I915_READ(IPEIR_I965);
2508
Joe Perchesa70491c2012-03-18 13:00:11 -07002509 pr_err(" IPEIR: 0x%08x\n", I915_READ(IPEIR_I965));
2510 pr_err(" IPEHR: 0x%08x\n", I915_READ(IPEHR_I965));
Ben Widawsky050ee912012-08-22 11:32:15 -07002511 for (i = 0; i < ARRAY_SIZE(instdone); i++)
2512 pr_err(" INSTDONE_%d: 0x%08x\n", i, instdone[i]);
Joe Perchesa70491c2012-03-18 13:00:11 -07002513 pr_err(" INSTPS: 0x%08x\n", I915_READ(INSTPS));
Joe Perchesa70491c2012-03-18 13:00:11 -07002514 pr_err(" ACTHD: 0x%08x\n", I915_READ(ACTHD_I965));
Jesse Barnes8a905232009-07-11 16:48:03 -04002515 I915_WRITE(IPEIR_I965, ipeir);
Chris Wilson3143a2b2010-11-16 15:55:10 +00002516 POSTING_READ(IPEIR_I965);
Jesse Barnes8a905232009-07-11 16:48:03 -04002517 }
2518 if (eir & GM45_ERROR_PAGE_TABLE) {
2519 u32 pgtbl_err = I915_READ(PGTBL_ER);
Joe Perchesa70491c2012-03-18 13:00:11 -07002520 pr_err("page table error\n");
2521 pr_err(" PGTBL_ER: 0x%08x\n", pgtbl_err);
Jesse Barnes8a905232009-07-11 16:48:03 -04002522 I915_WRITE(PGTBL_ER, pgtbl_err);
Chris Wilson3143a2b2010-11-16 15:55:10 +00002523 POSTING_READ(PGTBL_ER);
Jesse Barnes8a905232009-07-11 16:48:03 -04002524 }
2525 }
2526
Chris Wilsona6c45cf2010-09-17 00:32:17 +01002527 if (!IS_GEN2(dev)) {
Jesse Barnes8a905232009-07-11 16:48:03 -04002528 if (eir & I915_ERROR_PAGE_TABLE) {
2529 u32 pgtbl_err = I915_READ(PGTBL_ER);
Joe Perchesa70491c2012-03-18 13:00:11 -07002530 pr_err("page table error\n");
2531 pr_err(" PGTBL_ER: 0x%08x\n", pgtbl_err);
Jesse Barnes8a905232009-07-11 16:48:03 -04002532 I915_WRITE(PGTBL_ER, pgtbl_err);
Chris Wilson3143a2b2010-11-16 15:55:10 +00002533 POSTING_READ(PGTBL_ER);
Jesse Barnes8a905232009-07-11 16:48:03 -04002534 }
2535 }
2536
2537 if (eir & I915_ERROR_MEMORY_REFRESH) {
Joe Perchesa70491c2012-03-18 13:00:11 -07002538 pr_err("memory refresh error:\n");
Damien Lespiau055e3932014-08-18 13:49:10 +01002539 for_each_pipe(dev_priv, pipe)
Joe Perchesa70491c2012-03-18 13:00:11 -07002540 pr_err("pipe %c stat: 0x%08x\n",
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08002541 pipe_name(pipe), I915_READ(PIPESTAT(pipe)));
Jesse Barnes8a905232009-07-11 16:48:03 -04002542 /* pipestat has already been acked */
2543 }
2544 if (eir & I915_ERROR_INSTRUCTION) {
Joe Perchesa70491c2012-03-18 13:00:11 -07002545 pr_err("instruction error\n");
2546 pr_err(" INSTPM: 0x%08x\n", I915_READ(INSTPM));
Ben Widawsky050ee912012-08-22 11:32:15 -07002547 for (i = 0; i < ARRAY_SIZE(instdone); i++)
2548 pr_err(" INSTDONE_%d: 0x%08x\n", i, instdone[i]);
Chris Wilsona6c45cf2010-09-17 00:32:17 +01002549 if (INTEL_INFO(dev)->gen < 4) {
Jesse Barnes8a905232009-07-11 16:48:03 -04002550 u32 ipeir = I915_READ(IPEIR);
2551
Joe Perchesa70491c2012-03-18 13:00:11 -07002552 pr_err(" IPEIR: 0x%08x\n", I915_READ(IPEIR));
2553 pr_err(" IPEHR: 0x%08x\n", I915_READ(IPEHR));
Joe Perchesa70491c2012-03-18 13:00:11 -07002554 pr_err(" ACTHD: 0x%08x\n", I915_READ(ACTHD));
Jesse Barnes8a905232009-07-11 16:48:03 -04002555 I915_WRITE(IPEIR, ipeir);
Chris Wilson3143a2b2010-11-16 15:55:10 +00002556 POSTING_READ(IPEIR);
Jesse Barnes8a905232009-07-11 16:48:03 -04002557 } else {
2558 u32 ipeir = I915_READ(IPEIR_I965);
2559
Joe Perchesa70491c2012-03-18 13:00:11 -07002560 pr_err(" IPEIR: 0x%08x\n", I915_READ(IPEIR_I965));
2561 pr_err(" IPEHR: 0x%08x\n", I915_READ(IPEHR_I965));
Joe Perchesa70491c2012-03-18 13:00:11 -07002562 pr_err(" INSTPS: 0x%08x\n", I915_READ(INSTPS));
Joe Perchesa70491c2012-03-18 13:00:11 -07002563 pr_err(" ACTHD: 0x%08x\n", I915_READ(ACTHD_I965));
Jesse Barnes8a905232009-07-11 16:48:03 -04002564 I915_WRITE(IPEIR_I965, ipeir);
Chris Wilson3143a2b2010-11-16 15:55:10 +00002565 POSTING_READ(IPEIR_I965);
Jesse Barnes8a905232009-07-11 16:48:03 -04002566 }
2567 }
2568
2569 I915_WRITE(EIR, eir);
Chris Wilson3143a2b2010-11-16 15:55:10 +00002570 POSTING_READ(EIR);
Jesse Barnes8a905232009-07-11 16:48:03 -04002571 eir = I915_READ(EIR);
2572 if (eir) {
2573 /*
2574 * some errors might have become stuck,
2575 * mask them.
2576 */
2577 DRM_ERROR("EIR stuck: 0x%08x, masking\n", eir);
2578 I915_WRITE(EMR, I915_READ(EMR) | eir);
2579 I915_WRITE(IIR, I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT);
2580 }
Chris Wilson35aed2e2010-05-27 13:18:12 +01002581}
2582
2583/**
Mika Kuoppalab8d24a02015-01-28 17:03:14 +02002584 * i915_handle_error - handle a gpu error
Chris Wilson35aed2e2010-05-27 13:18:12 +01002585 * @dev: drm device
2586 *
Javier Martinez Canillasaafd8582015-10-08 09:57:49 +02002587 * Do some basic checking of register state at error time and
Chris Wilson35aed2e2010-05-27 13:18:12 +01002588 * dump it to the syslog. Also call i915_capture_error_state() to make
2589 * sure we get a record and make it available in debugfs. Fire a uevent
2590 * so userspace knows something bad happened (should trigger collection
2591 * of a ring dump etc.).
2592 */
Mika Kuoppala58174462014-02-25 17:11:26 +02002593void i915_handle_error(struct drm_device *dev, bool wedged,
2594 const char *fmt, ...)
Chris Wilson35aed2e2010-05-27 13:18:12 +01002595{
2596 struct drm_i915_private *dev_priv = dev->dev_private;
Mika Kuoppala58174462014-02-25 17:11:26 +02002597 va_list args;
2598 char error_msg[80];
Chris Wilson35aed2e2010-05-27 13:18:12 +01002599
Mika Kuoppala58174462014-02-25 17:11:26 +02002600 va_start(args, fmt);
2601 vscnprintf(error_msg, sizeof(error_msg), fmt, args);
2602 va_end(args);
2603
2604 i915_capture_error_state(dev, wedged, error_msg);
Chris Wilson35aed2e2010-05-27 13:18:12 +01002605 i915_report_and_clear_eir(dev);
Jesse Barnes8a905232009-07-11 16:48:03 -04002606
Ben Gamariba1234d2009-09-14 17:48:47 -04002607 if (wedged) {
Peter Zijlstra805de8f42015-04-24 01:12:32 +02002608 atomic_or(I915_RESET_IN_PROGRESS_FLAG,
Daniel Vetterf69061b2012-12-06 09:01:42 +01002609 &dev_priv->gpu_error.reset_counter);
Ben Gamariba1234d2009-09-14 17:48:47 -04002610
Ben Gamari11ed50e2009-09-14 17:48:45 -04002611 /*
Mika Kuoppalab8d24a02015-01-28 17:03:14 +02002612 * Wakeup waiting processes so that the reset function
2613 * i915_reset_and_wakeup doesn't deadlock trying to grab
2614 * various locks. By bumping the reset counter first, the woken
Daniel Vetter17e1df02013-09-08 21:57:13 +02002615 * processes will see a reset in progress and back off,
2616 * releasing their locks and then wait for the reset completion.
2617 * We must do this for _all_ gpu waiters that might hold locks
2618 * that the reset work needs to acquire.
2619 *
2620 * Note: The wake_up serves as the required memory barrier to
2621 * ensure that the waiters see the updated value of the reset
2622 * counter atomic_t.
Ben Gamari11ed50e2009-09-14 17:48:45 -04002623 */
Daniel Vetter17e1df02013-09-08 21:57:13 +02002624 i915_error_wake_up(dev_priv, false);
Ben Gamari11ed50e2009-09-14 17:48:45 -04002625 }
2626
Mika Kuoppalab8d24a02015-01-28 17:03:14 +02002627 i915_reset_and_wakeup(dev);
Jesse Barnes8a905232009-07-11 16:48:03 -04002628}
2629
Keith Packard42f52ef2008-10-18 19:39:29 -07002630/* Called from drm generic code, passed 'crtc' which
2631 * we use as a pipe index
2632 */
Thierry Reding88e72712015-09-24 18:35:31 +02002633static int i915_enable_vblank(struct drm_device *dev, unsigned int pipe)
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07002634{
Jani Nikula2d1013d2014-03-31 14:27:17 +03002635 struct drm_i915_private *dev_priv = dev->dev_private;
Keith Packarde9d21d72008-10-16 11:31:38 -07002636 unsigned long irqflags;
Jesse Barnes71e0ffa2009-01-08 10:42:15 -08002637
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002638 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Jesse Barnesf796cf82011-04-07 13:58:17 -07002639 if (INTEL_INFO(dev)->gen >= 4)
Keith Packard7c463582008-11-04 02:03:27 -08002640 i915_enable_pipestat(dev_priv, pipe,
Imre Deak755e9012014-02-10 18:42:47 +02002641 PIPE_START_VBLANK_INTERRUPT_STATUS);
Keith Packarde9d21d72008-10-16 11:31:38 -07002642 else
Keith Packard7c463582008-11-04 02:03:27 -08002643 i915_enable_pipestat(dev_priv, pipe,
Imre Deak755e9012014-02-10 18:42:47 +02002644 PIPE_VBLANK_INTERRUPT_STATUS);
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002645 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
Chris Wilson8692d00e2011-02-05 10:08:21 +00002646
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07002647 return 0;
2648}
2649
Thierry Reding88e72712015-09-24 18:35:31 +02002650static int ironlake_enable_vblank(struct drm_device *dev, unsigned int pipe)
Jesse Barnesf796cf82011-04-07 13:58:17 -07002651{
Jani Nikula2d1013d2014-03-31 14:27:17 +03002652 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnesf796cf82011-04-07 13:58:17 -07002653 unsigned long irqflags;
Paulo Zanonib5184212013-07-12 20:00:08 -03002654 uint32_t bit = (INTEL_INFO(dev)->gen >= 7) ? DE_PIPE_VBLANK_IVB(pipe) :
Daniel Vetter40da17c22013-10-21 18:04:36 +02002655 DE_PIPE_VBLANK(pipe);
Jesse Barnesf796cf82011-04-07 13:58:17 -07002656
Jesse Barnesf796cf82011-04-07 13:58:17 -07002657 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Paulo Zanonib5184212013-07-12 20:00:08 -03002658 ironlake_enable_display_irq(dev_priv, bit);
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002659 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
2660
2661 return 0;
2662}
2663
Thierry Reding88e72712015-09-24 18:35:31 +02002664static int valleyview_enable_vblank(struct drm_device *dev, unsigned int pipe)
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002665{
Jani Nikula2d1013d2014-03-31 14:27:17 +03002666 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002667 unsigned long irqflags;
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002668
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002669 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Jesse Barnes31acc7f2012-06-20 10:53:11 -07002670 i915_enable_pipestat(dev_priv, pipe,
Imre Deak755e9012014-02-10 18:42:47 +02002671 PIPE_START_VBLANK_INTERRUPT_STATUS);
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002672 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
2673
2674 return 0;
2675}
2676
Thierry Reding88e72712015-09-24 18:35:31 +02002677static int gen8_enable_vblank(struct drm_device *dev, unsigned int pipe)
Ben Widawskyabd58f02013-11-02 21:07:09 -07002678{
2679 struct drm_i915_private *dev_priv = dev->dev_private;
2680 unsigned long irqflags;
Ben Widawskyabd58f02013-11-02 21:07:09 -07002681
Ben Widawskyabd58f02013-11-02 21:07:09 -07002682 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Daniel Vetter7167d7c2013-11-07 11:05:45 +01002683 dev_priv->de_irq_mask[pipe] &= ~GEN8_PIPE_VBLANK;
2684 I915_WRITE(GEN8_DE_PIPE_IMR(pipe), dev_priv->de_irq_mask[pipe]);
2685 POSTING_READ(GEN8_DE_PIPE_IMR(pipe));
Ben Widawskyabd58f02013-11-02 21:07:09 -07002686 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
2687 return 0;
2688}
2689
Keith Packard42f52ef2008-10-18 19:39:29 -07002690/* Called from drm generic code, passed 'crtc' which
2691 * we use as a pipe index
2692 */
Thierry Reding88e72712015-09-24 18:35:31 +02002693static void i915_disable_vblank(struct drm_device *dev, unsigned int pipe)
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07002694{
Jani Nikula2d1013d2014-03-31 14:27:17 +03002695 struct drm_i915_private *dev_priv = dev->dev_private;
Keith Packarde9d21d72008-10-16 11:31:38 -07002696 unsigned long irqflags;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07002697
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002698 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Jesse Barnesf796cf82011-04-07 13:58:17 -07002699 i915_disable_pipestat(dev_priv, pipe,
Imre Deak755e9012014-02-10 18:42:47 +02002700 PIPE_VBLANK_INTERRUPT_STATUS |
2701 PIPE_START_VBLANK_INTERRUPT_STATUS);
Jesse Barnesf796cf82011-04-07 13:58:17 -07002702 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
2703}
2704
Thierry Reding88e72712015-09-24 18:35:31 +02002705static void ironlake_disable_vblank(struct drm_device *dev, unsigned int pipe)
Jesse Barnesf796cf82011-04-07 13:58:17 -07002706{
Jani Nikula2d1013d2014-03-31 14:27:17 +03002707 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnesf796cf82011-04-07 13:58:17 -07002708 unsigned long irqflags;
Paulo Zanonib5184212013-07-12 20:00:08 -03002709 uint32_t bit = (INTEL_INFO(dev)->gen >= 7) ? DE_PIPE_VBLANK_IVB(pipe) :
Daniel Vetter40da17c22013-10-21 18:04:36 +02002710 DE_PIPE_VBLANK(pipe);
Jesse Barnesf796cf82011-04-07 13:58:17 -07002711
2712 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Paulo Zanonib5184212013-07-12 20:00:08 -03002713 ironlake_disable_display_irq(dev_priv, bit);
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002714 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
2715}
2716
Thierry Reding88e72712015-09-24 18:35:31 +02002717static void valleyview_disable_vblank(struct drm_device *dev, unsigned int pipe)
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002718{
Jani Nikula2d1013d2014-03-31 14:27:17 +03002719 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002720 unsigned long irqflags;
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002721
2722 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Jesse Barnes31acc7f2012-06-20 10:53:11 -07002723 i915_disable_pipestat(dev_priv, pipe,
Imre Deak755e9012014-02-10 18:42:47 +02002724 PIPE_START_VBLANK_INTERRUPT_STATUS);
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002725 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
2726}
2727
Thierry Reding88e72712015-09-24 18:35:31 +02002728static void gen8_disable_vblank(struct drm_device *dev, unsigned int pipe)
Ben Widawskyabd58f02013-11-02 21:07:09 -07002729{
2730 struct drm_i915_private *dev_priv = dev->dev_private;
2731 unsigned long irqflags;
Ben Widawskyabd58f02013-11-02 21:07:09 -07002732
Ben Widawskyabd58f02013-11-02 21:07:09 -07002733 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Daniel Vetter7167d7c2013-11-07 11:05:45 +01002734 dev_priv->de_irq_mask[pipe] |= GEN8_PIPE_VBLANK;
2735 I915_WRITE(GEN8_DE_PIPE_IMR(pipe), dev_priv->de_irq_mask[pipe]);
2736 POSTING_READ(GEN8_DE_PIPE_IMR(pipe));
Ben Widawskyabd58f02013-11-02 21:07:09 -07002737 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
2738}
2739
Chris Wilson9107e9d2013-06-10 11:20:20 +01002740static bool
Tomas Elf94f7bbe2015-07-09 15:30:57 +01002741ring_idle(struct intel_engine_cs *ring, u32 seqno)
Chris Wilson893eead2010-10-27 14:44:35 +01002742{
Chris Wilson9107e9d2013-06-10 11:20:20 +01002743 return (list_empty(&ring->request_list) ||
Tomas Elf94f7bbe2015-07-09 15:30:57 +01002744 i915_seqno_passed(seqno, ring->last_submitted_seqno));
Ben Gamarif65d9422009-09-14 17:48:44 -04002745}
2746
Daniel Vettera028c4b2014-03-15 00:08:56 +01002747static bool
2748ipehr_is_semaphore_wait(struct drm_device *dev, u32 ipehr)
2749{
2750 if (INTEL_INFO(dev)->gen >= 8) {
Rodrigo Vivia6cdb932014-06-30 09:53:39 -07002751 return (ipehr >> 23) == 0x1c;
Daniel Vettera028c4b2014-03-15 00:08:56 +01002752 } else {
2753 ipehr &= ~MI_SEMAPHORE_SYNC_MASK;
2754 return ipehr == (MI_SEMAPHORE_MBOX | MI_SEMAPHORE_COMPARE |
2755 MI_SEMAPHORE_REGISTER);
2756 }
2757}
2758
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002759static struct intel_engine_cs *
Rodrigo Vivia6cdb932014-06-30 09:53:39 -07002760semaphore_wait_to_signaller_ring(struct intel_engine_cs *ring, u32 ipehr, u64 offset)
Daniel Vetter921d42e2014-03-18 10:26:04 +01002761{
2762 struct drm_i915_private *dev_priv = ring->dev->dev_private;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002763 struct intel_engine_cs *signaller;
Daniel Vetter921d42e2014-03-18 10:26:04 +01002764 int i;
2765
2766 if (INTEL_INFO(dev_priv->dev)->gen >= 8) {
Rodrigo Vivia6cdb932014-06-30 09:53:39 -07002767 for_each_ring(signaller, dev_priv, i) {
2768 if (ring == signaller)
2769 continue;
2770
2771 if (offset == signaller->semaphore.signal_ggtt[ring->id])
2772 return signaller;
2773 }
Daniel Vetter921d42e2014-03-18 10:26:04 +01002774 } else {
2775 u32 sync_bits = ipehr & MI_SEMAPHORE_SYNC_MASK;
2776
2777 for_each_ring(signaller, dev_priv, i) {
2778 if(ring == signaller)
2779 continue;
2780
Ben Widawskyebc348b2014-04-29 14:52:28 -07002781 if (sync_bits == signaller->semaphore.mbox.wait[ring->id])
Daniel Vetter921d42e2014-03-18 10:26:04 +01002782 return signaller;
2783 }
2784 }
2785
Rodrigo Vivia6cdb932014-06-30 09:53:39 -07002786 DRM_ERROR("No signaller ring found for ring %i, ipehr 0x%08x, offset 0x%016llx\n",
2787 ring->id, ipehr, offset);
Daniel Vetter921d42e2014-03-18 10:26:04 +01002788
2789 return NULL;
2790}
2791
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002792static struct intel_engine_cs *
2793semaphore_waits_for(struct intel_engine_cs *ring, u32 *seqno)
Chris Wilsona24a11e2013-03-14 17:52:05 +02002794{
2795 struct drm_i915_private *dev_priv = ring->dev->dev_private;
Daniel Vetter88fe4292014-03-15 00:08:55 +01002796 u32 cmd, ipehr, head;
Rodrigo Vivia6cdb932014-06-30 09:53:39 -07002797 u64 offset = 0;
2798 int i, backwards;
Chris Wilsona24a11e2013-03-14 17:52:05 +02002799
Tomas Elf381e8ae2015-10-08 19:31:33 +01002800 /*
2801 * This function does not support execlist mode - any attempt to
2802 * proceed further into this function will result in a kernel panic
2803 * when dereferencing ring->buffer, which is not set up in execlist
2804 * mode.
2805 *
2806 * The correct way of doing it would be to derive the currently
2807 * executing ring buffer from the current context, which is derived
2808 * from the currently running request. Unfortunately, to get the
2809 * current request we would have to grab the struct_mutex before doing
2810 * anything else, which would be ill-advised since some other thread
2811 * might have grabbed it already and managed to hang itself, causing
2812 * the hang checker to deadlock.
2813 *
2814 * Therefore, this function does not support execlist mode in its
2815 * current form. Just return NULL and move on.
2816 */
2817 if (ring->buffer == NULL)
2818 return NULL;
2819
Chris Wilsona24a11e2013-03-14 17:52:05 +02002820 ipehr = I915_READ(RING_IPEHR(ring->mmio_base));
Daniel Vettera028c4b2014-03-15 00:08:56 +01002821 if (!ipehr_is_semaphore_wait(ring->dev, ipehr))
Chris Wilson6274f212013-06-10 11:20:21 +01002822 return NULL;
Chris Wilsona24a11e2013-03-14 17:52:05 +02002823
Daniel Vetter88fe4292014-03-15 00:08:55 +01002824 /*
2825 * HEAD is likely pointing to the dword after the actual command,
2826 * so scan backwards until we find the MBOX. But limit it to just 3
Rodrigo Vivia6cdb932014-06-30 09:53:39 -07002827 * or 4 dwords depending on the semaphore wait command size.
2828 * Note that we don't care about ACTHD here since that might
Daniel Vetter88fe4292014-03-15 00:08:55 +01002829 * point at at batch, and semaphores are always emitted into the
2830 * ringbuffer itself.
Chris Wilsona24a11e2013-03-14 17:52:05 +02002831 */
Daniel Vetter88fe4292014-03-15 00:08:55 +01002832 head = I915_READ_HEAD(ring) & HEAD_ADDR;
Rodrigo Vivia6cdb932014-06-30 09:53:39 -07002833 backwards = (INTEL_INFO(ring->dev)->gen >= 8) ? 5 : 4;
Daniel Vetter88fe4292014-03-15 00:08:55 +01002834
Rodrigo Vivia6cdb932014-06-30 09:53:39 -07002835 for (i = backwards; i; --i) {
Daniel Vetter88fe4292014-03-15 00:08:55 +01002836 /*
2837 * Be paranoid and presume the hw has gone off into the wild -
2838 * our ring is smaller than what the hardware (and hence
2839 * HEAD_ADDR) allows. Also handles wrap-around.
2840 */
Oscar Mateoee1b1e52014-05-22 14:13:35 +01002841 head &= ring->buffer->size - 1;
Daniel Vetter88fe4292014-03-15 00:08:55 +01002842
2843 /* This here seems to blow up */
Oscar Mateoee1b1e52014-05-22 14:13:35 +01002844 cmd = ioread32(ring->buffer->virtual_start + head);
Chris Wilsona24a11e2013-03-14 17:52:05 +02002845 if (cmd == ipehr)
2846 break;
2847
Daniel Vetter88fe4292014-03-15 00:08:55 +01002848 head -= 4;
2849 }
Chris Wilsona24a11e2013-03-14 17:52:05 +02002850
Daniel Vetter88fe4292014-03-15 00:08:55 +01002851 if (!i)
2852 return NULL;
2853
Oscar Mateoee1b1e52014-05-22 14:13:35 +01002854 *seqno = ioread32(ring->buffer->virtual_start + head + 4) + 1;
Rodrigo Vivia6cdb932014-06-30 09:53:39 -07002855 if (INTEL_INFO(ring->dev)->gen >= 8) {
2856 offset = ioread32(ring->buffer->virtual_start + head + 12);
2857 offset <<= 32;
2858 offset = ioread32(ring->buffer->virtual_start + head + 8);
2859 }
2860 return semaphore_wait_to_signaller_ring(ring, ipehr, offset);
Chris Wilsona24a11e2013-03-14 17:52:05 +02002861}
2862
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002863static int semaphore_passed(struct intel_engine_cs *ring)
Chris Wilson6274f212013-06-10 11:20:21 +01002864{
2865 struct drm_i915_private *dev_priv = ring->dev->dev_private;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002866 struct intel_engine_cs *signaller;
Chris Wilsona0d036b2014-07-19 12:40:42 +01002867 u32 seqno;
Chris Wilson6274f212013-06-10 11:20:21 +01002868
Chris Wilson4be17382014-06-06 10:22:29 +01002869 ring->hangcheck.deadlock++;
Chris Wilson6274f212013-06-10 11:20:21 +01002870
2871 signaller = semaphore_waits_for(ring, &seqno);
Chris Wilson4be17382014-06-06 10:22:29 +01002872 if (signaller == NULL)
2873 return -1;
2874
2875 /* Prevent pathological recursion due to driver bugs */
2876 if (signaller->hangcheck.deadlock >= I915_NUM_RINGS)
Chris Wilson6274f212013-06-10 11:20:21 +01002877 return -1;
2878
Chris Wilson4be17382014-06-06 10:22:29 +01002879 if (i915_seqno_passed(signaller->get_seqno(signaller, false), seqno))
2880 return 1;
2881
Chris Wilsona0d036b2014-07-19 12:40:42 +01002882 /* cursory check for an unkickable deadlock */
2883 if (I915_READ_CTL(signaller) & RING_WAIT_SEMAPHORE &&
2884 semaphore_passed(signaller) < 0)
Chris Wilson4be17382014-06-06 10:22:29 +01002885 return -1;
2886
2887 return 0;
Chris Wilson6274f212013-06-10 11:20:21 +01002888}
2889
2890static void semaphore_clear_deadlocks(struct drm_i915_private *dev_priv)
2891{
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002892 struct intel_engine_cs *ring;
Chris Wilson6274f212013-06-10 11:20:21 +01002893 int i;
2894
2895 for_each_ring(ring, dev_priv, i)
Chris Wilson4be17382014-06-06 10:22:29 +01002896 ring->hangcheck.deadlock = 0;
Chris Wilson6274f212013-06-10 11:20:21 +01002897}
2898
Mika Kuoppalaad8beae2013-06-12 12:35:32 +03002899static enum intel_ring_hangcheck_action
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002900ring_stuck(struct intel_engine_cs *ring, u64 acthd)
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002901{
2902 struct drm_device *dev = ring->dev;
2903 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson9107e9d2013-06-10 11:20:20 +01002904 u32 tmp;
2905
Mika Kuoppalaf260fe72014-08-05 17:16:26 +03002906 if (acthd != ring->hangcheck.acthd) {
2907 if (acthd > ring->hangcheck.max_acthd) {
2908 ring->hangcheck.max_acthd = acthd;
2909 return HANGCHECK_ACTIVE;
2910 }
2911
2912 return HANGCHECK_ACTIVE_LOOP;
2913 }
Chris Wilson6274f212013-06-10 11:20:21 +01002914
Chris Wilson9107e9d2013-06-10 11:20:20 +01002915 if (IS_GEN2(dev))
Jani Nikulaf2f4d822013-08-11 12:44:01 +03002916 return HANGCHECK_HUNG;
Chris Wilson9107e9d2013-06-10 11:20:20 +01002917
2918 /* Is the chip hanging on a WAIT_FOR_EVENT?
2919 * If so we can simply poke the RB_WAIT bit
2920 * and break the hang. This should work on
2921 * all but the second generation chipsets.
2922 */
2923 tmp = I915_READ_CTL(ring);
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002924 if (tmp & RING_WAIT) {
Mika Kuoppala58174462014-02-25 17:11:26 +02002925 i915_handle_error(dev, false,
2926 "Kicking stuck wait on %s",
2927 ring->name);
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002928 I915_WRITE_CTL(ring, tmp);
Jani Nikulaf2f4d822013-08-11 12:44:01 +03002929 return HANGCHECK_KICK;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002930 }
Chris Wilsona24a11e2013-03-14 17:52:05 +02002931
Chris Wilson6274f212013-06-10 11:20:21 +01002932 if (INTEL_INFO(dev)->gen >= 6 && tmp & RING_WAIT_SEMAPHORE) {
2933 switch (semaphore_passed(ring)) {
2934 default:
Jani Nikulaf2f4d822013-08-11 12:44:01 +03002935 return HANGCHECK_HUNG;
Chris Wilson6274f212013-06-10 11:20:21 +01002936 case 1:
Mika Kuoppala58174462014-02-25 17:11:26 +02002937 i915_handle_error(dev, false,
2938 "Kicking stuck semaphore on %s",
2939 ring->name);
Chris Wilson6274f212013-06-10 11:20:21 +01002940 I915_WRITE_CTL(ring, tmp);
Jani Nikulaf2f4d822013-08-11 12:44:01 +03002941 return HANGCHECK_KICK;
Chris Wilson6274f212013-06-10 11:20:21 +01002942 case 0:
Jani Nikulaf2f4d822013-08-11 12:44:01 +03002943 return HANGCHECK_WAIT;
Chris Wilson6274f212013-06-10 11:20:21 +01002944 }
Chris Wilson9107e9d2013-06-10 11:20:20 +01002945 }
Mika Kuoppalaed5cbb02013-05-13 16:32:11 +03002946
Jani Nikulaf2f4d822013-08-11 12:44:01 +03002947 return HANGCHECK_HUNG;
Mika Kuoppalaed5cbb02013-05-13 16:32:11 +03002948}
2949
Chris Wilson737b1502015-01-26 18:03:03 +02002950/*
Ben Gamarif65d9422009-09-14 17:48:44 -04002951 * This is called when the chip hasn't reported back with completed
Mika Kuoppala05407ff2013-05-30 09:04:29 +03002952 * batchbuffers in a long time. We keep track per ring seqno progress and
2953 * if there are no progress, hangcheck score for that ring is increased.
2954 * Further, acthd is inspected to see if the ring is stuck. On stuck case
2955 * we kick the ring. If we see no progress on three subsequent calls
2956 * we assume chip is wedged and try to fix it by resetting the chip.
Ben Gamarif65d9422009-09-14 17:48:44 -04002957 */
Chris Wilson737b1502015-01-26 18:03:03 +02002958static void i915_hangcheck_elapsed(struct work_struct *work)
Ben Gamarif65d9422009-09-14 17:48:44 -04002959{
Chris Wilson737b1502015-01-26 18:03:03 +02002960 struct drm_i915_private *dev_priv =
2961 container_of(work, typeof(*dev_priv),
2962 gpu_error.hangcheck_work.work);
2963 struct drm_device *dev = dev_priv->dev;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002964 struct intel_engine_cs *ring;
Chris Wilsonb4519512012-05-11 14:29:30 +01002965 int i;
Mika Kuoppala05407ff2013-05-30 09:04:29 +03002966 int busy_count = 0, rings_hung = 0;
Chris Wilson9107e9d2013-06-10 11:20:20 +01002967 bool stuck[I915_NUM_RINGS] = { 0 };
2968#define BUSY 1
2969#define KICK 5
2970#define HUNG 20
Chris Wilson893eead2010-10-27 14:44:35 +01002971
Jani Nikulad330a952014-01-21 11:24:25 +02002972 if (!i915.enable_hangcheck)
Ben Widawsky3e0dc6b2011-06-29 10:26:42 -07002973 return;
2974
Chris Wilsonb4519512012-05-11 14:29:30 +01002975 for_each_ring(ring, dev_priv, i) {
Chris Wilson50877442014-03-21 12:41:53 +00002976 u64 acthd;
2977 u32 seqno;
Chris Wilson9107e9d2013-06-10 11:20:20 +01002978 bool busy = true;
Chris Wilsonb4519512012-05-11 14:29:30 +01002979
Chris Wilson6274f212013-06-10 11:20:21 +01002980 semaphore_clear_deadlocks(dev_priv);
2981
Mika Kuoppala05407ff2013-05-30 09:04:29 +03002982 seqno = ring->get_seqno(ring, false);
2983 acthd = intel_ring_get_active_head(ring);
Chris Wilsond1e61e72012-04-10 17:00:41 +01002984
Chris Wilson9107e9d2013-06-10 11:20:20 +01002985 if (ring->hangcheck.seqno == seqno) {
Tomas Elf94f7bbe2015-07-09 15:30:57 +01002986 if (ring_idle(ring, seqno)) {
Mika Kuoppalada661462013-09-06 16:03:28 +03002987 ring->hangcheck.action = HANGCHECK_IDLE;
2988
Chris Wilson9107e9d2013-06-10 11:20:20 +01002989 if (waitqueue_active(&ring->irq_queue)) {
2990 /* Issue a wake-up to catch stuck h/w. */
Chris Wilson094f9a52013-09-25 17:34:55 +01002991 if (!test_and_set_bit(ring->id, &dev_priv->gpu_error.missed_irq_rings)) {
Daniel Vetterf4adcd22013-10-28 09:24:13 +01002992 if (!(dev_priv->gpu_error.test_irq_rings & intel_ring_flag(ring)))
2993 DRM_ERROR("Hangcheck timer elapsed... %s idle\n",
2994 ring->name);
2995 else
2996 DRM_INFO("Fake missed irq on %s\n",
2997 ring->name);
Chris Wilson094f9a52013-09-25 17:34:55 +01002998 wake_up_all(&ring->irq_queue);
2999 }
3000 /* Safeguard against driver failure */
3001 ring->hangcheck.score += BUSY;
Chris Wilson9107e9d2013-06-10 11:20:20 +01003002 } else
3003 busy = false;
Mika Kuoppala05407ff2013-05-30 09:04:29 +03003004 } else {
Chris Wilson6274f212013-06-10 11:20:21 +01003005 /* We always increment the hangcheck score
3006 * if the ring is busy and still processing
3007 * the same request, so that no single request
3008 * can run indefinitely (such as a chain of
3009 * batches). The only time we do not increment
3010 * the hangcheck score on this ring, if this
3011 * ring is in a legitimate wait for another
3012 * ring. In that case the waiting ring is a
3013 * victim and we want to be sure we catch the
3014 * right culprit. Then every time we do kick
3015 * the ring, add a small increment to the
3016 * score so that we can catch a batch that is
3017 * being repeatedly kicked and so responsible
3018 * for stalling the machine.
3019 */
Mika Kuoppalaad8beae2013-06-12 12:35:32 +03003020 ring->hangcheck.action = ring_stuck(ring,
3021 acthd);
3022
3023 switch (ring->hangcheck.action) {
Mika Kuoppalada661462013-09-06 16:03:28 +03003024 case HANGCHECK_IDLE:
Jani Nikulaf2f4d822013-08-11 12:44:01 +03003025 case HANGCHECK_WAIT:
Jani Nikulaf2f4d822013-08-11 12:44:01 +03003026 case HANGCHECK_ACTIVE:
Mika Kuoppalaf260fe72014-08-05 17:16:26 +03003027 break;
3028 case HANGCHECK_ACTIVE_LOOP:
Jani Nikulaea04cb32013-08-11 12:44:02 +03003029 ring->hangcheck.score += BUSY;
Chris Wilson6274f212013-06-10 11:20:21 +01003030 break;
Jani Nikulaf2f4d822013-08-11 12:44:01 +03003031 case HANGCHECK_KICK:
Jani Nikulaea04cb32013-08-11 12:44:02 +03003032 ring->hangcheck.score += KICK;
Chris Wilson6274f212013-06-10 11:20:21 +01003033 break;
Jani Nikulaf2f4d822013-08-11 12:44:01 +03003034 case HANGCHECK_HUNG:
Jani Nikulaea04cb32013-08-11 12:44:02 +03003035 ring->hangcheck.score += HUNG;
Chris Wilson6274f212013-06-10 11:20:21 +01003036 stuck[i] = true;
3037 break;
3038 }
Mika Kuoppala05407ff2013-05-30 09:04:29 +03003039 }
Chris Wilson9107e9d2013-06-10 11:20:20 +01003040 } else {
Mika Kuoppalada661462013-09-06 16:03:28 +03003041 ring->hangcheck.action = HANGCHECK_ACTIVE;
3042
Chris Wilson9107e9d2013-06-10 11:20:20 +01003043 /* Gradually reduce the count so that we catch DoS
3044 * attempts across multiple batches.
3045 */
3046 if (ring->hangcheck.score > 0)
3047 ring->hangcheck.score--;
Mika Kuoppalaf260fe72014-08-05 17:16:26 +03003048
3049 ring->hangcheck.acthd = ring->hangcheck.max_acthd = 0;
Chris Wilsond1e61e72012-04-10 17:00:41 +01003050 }
3051
Mika Kuoppala05407ff2013-05-30 09:04:29 +03003052 ring->hangcheck.seqno = seqno;
3053 ring->hangcheck.acthd = acthd;
Chris Wilson9107e9d2013-06-10 11:20:20 +01003054 busy_count += busy;
Chris Wilson893eead2010-10-27 14:44:35 +01003055 }
Eric Anholtb9201c12010-01-08 14:25:16 -08003056
Mika Kuoppala92cab732013-05-24 17:16:07 +03003057 for_each_ring(ring, dev_priv, i) {
Mika Kuoppalab6b0fac2014-01-30 19:04:43 +02003058 if (ring->hangcheck.score >= HANGCHECK_SCORE_RING_HUNG) {
Daniel Vetterb8d88d12013-08-28 10:57:59 +02003059 DRM_INFO("%s on %s\n",
3060 stuck[i] ? "stuck" : "no progress",
3061 ring->name);
Chris Wilsona43adf02013-06-10 11:20:22 +01003062 rings_hung++;
Mika Kuoppala92cab732013-05-24 17:16:07 +03003063 }
3064 }
3065
Mika Kuoppala05407ff2013-05-30 09:04:29 +03003066 if (rings_hung)
Mika Kuoppala58174462014-02-25 17:11:26 +02003067 return i915_handle_error(dev, true, "Ring hung");
Ben Gamarif65d9422009-09-14 17:48:44 -04003068
Mika Kuoppala05407ff2013-05-30 09:04:29 +03003069 if (busy_count)
3070 /* Reset timer case chip hangs without another request
3071 * being added */
Mika Kuoppala10cd45b2013-07-03 17:22:08 +03003072 i915_queue_hangcheck(dev);
3073}
3074
3075void i915_queue_hangcheck(struct drm_device *dev)
3076{
Chris Wilson737b1502015-01-26 18:03:03 +02003077 struct i915_gpu_error *e = &to_i915(dev)->gpu_error;
Chris Wilson672e7b72014-11-19 09:47:19 +00003078
Jani Nikulad330a952014-01-21 11:24:25 +02003079 if (!i915.enable_hangcheck)
Mika Kuoppala10cd45b2013-07-03 17:22:08 +03003080 return;
3081
Chris Wilson737b1502015-01-26 18:03:03 +02003082 /* Don't continually defer the hangcheck so that it is always run at
3083 * least once after work has been scheduled on any ring. Otherwise,
3084 * we will ignore a hung ring if a second ring is kept busy.
3085 */
3086
3087 queue_delayed_work(e->hangcheck_wq, &e->hangcheck_work,
3088 round_jiffies_up_relative(DRM_I915_HANGCHECK_JIFFIES));
Ben Gamarif65d9422009-09-14 17:48:44 -04003089}
3090
Paulo Zanoni1c69eb42014-04-01 15:37:23 -03003091static void ibx_irq_reset(struct drm_device *dev)
Paulo Zanoni91738a92013-06-05 14:21:51 -03003092{
3093 struct drm_i915_private *dev_priv = dev->dev_private;
3094
3095 if (HAS_PCH_NOP(dev))
3096 return;
3097
Paulo Zanonif86f3fb2014-04-01 15:37:14 -03003098 GEN5_IRQ_RESET(SDE);
Paulo Zanoni105b1222014-04-01 15:37:17 -03003099
3100 if (HAS_PCH_CPT(dev) || HAS_PCH_LPT(dev))
3101 I915_WRITE(SERR_INT, 0xffffffff);
Paulo Zanoni622364b2014-04-01 15:37:22 -03003102}
Paulo Zanoni105b1222014-04-01 15:37:17 -03003103
Paulo Zanoni622364b2014-04-01 15:37:22 -03003104/*
3105 * SDEIER is also touched by the interrupt handler to work around missed PCH
3106 * interrupts. Hence we can't update it after the interrupt handler is enabled -
3107 * instead we unconditionally enable all PCH interrupt sources here, but then
3108 * only unmask them as needed with SDEIMR.
3109 *
3110 * This function needs to be called before interrupts are enabled.
3111 */
3112static void ibx_irq_pre_postinstall(struct drm_device *dev)
3113{
3114 struct drm_i915_private *dev_priv = dev->dev_private;
3115
3116 if (HAS_PCH_NOP(dev))
3117 return;
3118
3119 WARN_ON(I915_READ(SDEIER) != 0);
Paulo Zanoni91738a92013-06-05 14:21:51 -03003120 I915_WRITE(SDEIER, 0xffffffff);
3121 POSTING_READ(SDEIER);
3122}
3123
Paulo Zanoni7c4d6642014-04-01 15:37:19 -03003124static void gen5_gt_irq_reset(struct drm_device *dev)
Daniel Vetterd18ea1b2013-07-12 22:43:25 +02003125{
3126 struct drm_i915_private *dev_priv = dev->dev_private;
3127
Paulo Zanonif86f3fb2014-04-01 15:37:14 -03003128 GEN5_IRQ_RESET(GT);
Paulo Zanonia9d356a2014-04-01 15:37:09 -03003129 if (INTEL_INFO(dev)->gen >= 6)
Paulo Zanonif86f3fb2014-04-01 15:37:14 -03003130 GEN5_IRQ_RESET(GEN6_PM);
Daniel Vetterd18ea1b2013-07-12 22:43:25 +02003131}
3132
Linus Torvalds1da177e2005-04-16 15:20:36 -07003133/* drm_dma.h hooks
3134*/
Paulo Zanonibe30b292014-04-01 15:37:25 -03003135static void ironlake_irq_reset(struct drm_device *dev)
Zhenyu Wang036a4a72009-06-08 14:40:19 +08003136{
Jani Nikula2d1013d2014-03-31 14:27:17 +03003137 struct drm_i915_private *dev_priv = dev->dev_private;
Zhenyu Wang036a4a72009-06-08 14:40:19 +08003138
Paulo Zanoni0c841212014-04-01 15:37:27 -03003139 I915_WRITE(HWSTAM, 0xffffffff);
Daniel Vetterbdfcdb62012-01-05 01:05:26 +01003140
Paulo Zanonif86f3fb2014-04-01 15:37:14 -03003141 GEN5_IRQ_RESET(DE);
Paulo Zanonic6d954c2014-04-01 15:37:18 -03003142 if (IS_GEN7(dev))
3143 I915_WRITE(GEN7_ERR_INT, 0xffffffff);
Zhenyu Wang036a4a72009-06-08 14:40:19 +08003144
Paulo Zanoni7c4d6642014-04-01 15:37:19 -03003145 gen5_gt_irq_reset(dev);
Zhenyu Wangc6501562009-11-03 18:57:21 +00003146
Paulo Zanoni1c69eb42014-04-01 15:37:23 -03003147 ibx_irq_reset(dev);
Ben Widawsky7d991632013-05-28 19:22:25 -07003148}
3149
Ville Syrjälä70591a42014-10-30 19:42:58 +02003150static void vlv_display_irq_reset(struct drm_i915_private *dev_priv)
3151{
3152 enum pipe pipe;
3153
Egbert Eich0706f172015-09-23 16:15:27 +02003154 i915_hotplug_interrupt_update(dev_priv, 0xFFFFFFFF, 0);
Ville Syrjälä70591a42014-10-30 19:42:58 +02003155 I915_WRITE(PORT_HOTPLUG_STAT, I915_READ(PORT_HOTPLUG_STAT));
3156
3157 for_each_pipe(dev_priv, pipe)
3158 I915_WRITE(PIPESTAT(pipe), 0xffff);
3159
3160 GEN5_IRQ_RESET(VLV_);
3161}
3162
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003163static void valleyview_irq_preinstall(struct drm_device *dev)
3164{
Jani Nikula2d1013d2014-03-31 14:27:17 +03003165 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003166
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003167 /* VLV magic */
3168 I915_WRITE(VLV_IMR, 0);
3169 I915_WRITE(RING_IMR(RENDER_RING_BASE), 0);
3170 I915_WRITE(RING_IMR(GEN6_BSD_RING_BASE), 0);
3171 I915_WRITE(RING_IMR(BLT_RING_BASE), 0);
3172
Paulo Zanoni7c4d6642014-04-01 15:37:19 -03003173 gen5_gt_irq_reset(dev);
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003174
Ville Syrjälä7c4cde32014-10-30 19:42:51 +02003175 I915_WRITE(DPINVGTT, DPINVGTT_STATUS_MASK);
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003176
Ville Syrjälä70591a42014-10-30 19:42:58 +02003177 vlv_display_irq_reset(dev_priv);
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003178}
3179
Daniel Vetterd6e3cca2014-05-22 22:18:22 +02003180static void gen8_gt_irq_reset(struct drm_i915_private *dev_priv)
3181{
3182 GEN8_IRQ_RESET_NDX(GT, 0);
3183 GEN8_IRQ_RESET_NDX(GT, 1);
3184 GEN8_IRQ_RESET_NDX(GT, 2);
3185 GEN8_IRQ_RESET_NDX(GT, 3);
3186}
3187
Paulo Zanoni823f6b32014-04-01 15:37:26 -03003188static void gen8_irq_reset(struct drm_device *dev)
Ben Widawskyabd58f02013-11-02 21:07:09 -07003189{
3190 struct drm_i915_private *dev_priv = dev->dev_private;
3191 int pipe;
3192
Ben Widawskyabd58f02013-11-02 21:07:09 -07003193 I915_WRITE(GEN8_MASTER_IRQ, 0);
3194 POSTING_READ(GEN8_MASTER_IRQ);
3195
Daniel Vetterd6e3cca2014-05-22 22:18:22 +02003196 gen8_gt_irq_reset(dev_priv);
Ben Widawskyabd58f02013-11-02 21:07:09 -07003197
Damien Lespiau055e3932014-08-18 13:49:10 +01003198 for_each_pipe(dev_priv, pipe)
Daniel Vetterf458ebb2014-09-30 10:56:39 +02003199 if (intel_display_power_is_enabled(dev_priv,
3200 POWER_DOMAIN_PIPE(pipe)))
Paulo Zanoni813bde42014-07-04 11:50:29 -03003201 GEN8_IRQ_RESET_NDX(DE_PIPE, pipe);
Ben Widawskyabd58f02013-11-02 21:07:09 -07003202
Paulo Zanonif86f3fb2014-04-01 15:37:14 -03003203 GEN5_IRQ_RESET(GEN8_DE_PORT_);
3204 GEN5_IRQ_RESET(GEN8_DE_MISC_);
3205 GEN5_IRQ_RESET(GEN8_PCU_);
Ben Widawskyabd58f02013-11-02 21:07:09 -07003206
Shashank Sharma266ea3d2014-08-22 17:40:42 +05303207 if (HAS_PCH_SPLIT(dev))
3208 ibx_irq_reset(dev);
Ben Widawskyabd58f02013-11-02 21:07:09 -07003209}
Ben Widawskyabd58f02013-11-02 21:07:09 -07003210
Damien Lespiau4c6c03b2015-03-06 18:50:48 +00003211void gen8_irq_power_well_post_enable(struct drm_i915_private *dev_priv,
3212 unsigned int pipe_mask)
Paulo Zanonid49bdb02014-07-04 11:50:31 -03003213{
Paulo Zanoni1180e202014-10-07 18:02:52 -03003214 uint32_t extra_ier = GEN8_PIPE_VBLANK | GEN8_PIPE_FIFO_UNDERRUN;
Paulo Zanonid49bdb02014-07-04 11:50:31 -03003215
Daniel Vetter13321782014-09-15 14:55:29 +02003216 spin_lock_irq(&dev_priv->irq_lock);
Damien Lespiaud14c0342015-03-06 18:50:51 +00003217 if (pipe_mask & 1 << PIPE_A)
3218 GEN8_IRQ_INIT_NDX(DE_PIPE, PIPE_A,
3219 dev_priv->de_irq_mask[PIPE_A],
3220 ~dev_priv->de_irq_mask[PIPE_A] | extra_ier);
Damien Lespiau4c6c03b2015-03-06 18:50:48 +00003221 if (pipe_mask & 1 << PIPE_B)
3222 GEN8_IRQ_INIT_NDX(DE_PIPE, PIPE_B,
3223 dev_priv->de_irq_mask[PIPE_B],
3224 ~dev_priv->de_irq_mask[PIPE_B] | extra_ier);
3225 if (pipe_mask & 1 << PIPE_C)
3226 GEN8_IRQ_INIT_NDX(DE_PIPE, PIPE_C,
3227 dev_priv->de_irq_mask[PIPE_C],
3228 ~dev_priv->de_irq_mask[PIPE_C] | extra_ier);
Daniel Vetter13321782014-09-15 14:55:29 +02003229 spin_unlock_irq(&dev_priv->irq_lock);
Paulo Zanonid49bdb02014-07-04 11:50:31 -03003230}
3231
Ville Syrjälä43f328d2014-04-09 20:40:52 +03003232static void cherryview_irq_preinstall(struct drm_device *dev)
3233{
3234 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjälä43f328d2014-04-09 20:40:52 +03003235
3236 I915_WRITE(GEN8_MASTER_IRQ, 0);
3237 POSTING_READ(GEN8_MASTER_IRQ);
3238
Daniel Vetterd6e3cca2014-05-22 22:18:22 +02003239 gen8_gt_irq_reset(dev_priv);
Ville Syrjälä43f328d2014-04-09 20:40:52 +03003240
3241 GEN5_IRQ_RESET(GEN8_PCU_);
3242
Ville Syrjälä43f328d2014-04-09 20:40:52 +03003243 I915_WRITE(DPINVGTT, DPINVGTT_STATUS_MASK_CHV);
3244
Ville Syrjälä70591a42014-10-30 19:42:58 +02003245 vlv_display_irq_reset(dev_priv);
Ville Syrjälä43f328d2014-04-09 20:40:52 +03003246}
3247
Ville Syrjälä87a02102015-08-27 23:55:57 +03003248static u32 intel_hpd_enabled_irqs(struct drm_device *dev,
3249 const u32 hpd[HPD_NUM_PINS])
3250{
3251 struct drm_i915_private *dev_priv = to_i915(dev);
3252 struct intel_encoder *encoder;
3253 u32 enabled_irqs = 0;
3254
3255 for_each_intel_encoder(dev, encoder)
3256 if (dev_priv->hotplug.stats[encoder->hpd_pin].state == HPD_ENABLED)
3257 enabled_irqs |= hpd[encoder->hpd_pin];
3258
3259 return enabled_irqs;
3260}
3261
Daniel Vetter82a28bc2013-03-27 15:55:01 +01003262static void ibx_hpd_irq_setup(struct drm_device *dev)
Keith Packard7fe0b972011-09-19 13:31:02 -07003263{
Jani Nikula2d1013d2014-03-31 14:27:17 +03003264 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjälä87a02102015-08-27 23:55:57 +03003265 u32 hotplug_irqs, hotplug, enabled_irqs;
Keith Packard7fe0b972011-09-19 13:31:02 -07003266
Daniel Vetter82a28bc2013-03-27 15:55:01 +01003267 if (HAS_PCH_IBX(dev)) {
Daniel Vetterfee884e2013-07-04 23:35:21 +02003268 hotplug_irqs = SDE_HOTPLUG_MASK;
Ville Syrjälä87a02102015-08-27 23:55:57 +03003269 enabled_irqs = intel_hpd_enabled_irqs(dev, hpd_ibx);
Daniel Vetter82a28bc2013-03-27 15:55:01 +01003270 } else {
Daniel Vetterfee884e2013-07-04 23:35:21 +02003271 hotplug_irqs = SDE_HOTPLUG_MASK_CPT;
Ville Syrjälä87a02102015-08-27 23:55:57 +03003272 enabled_irqs = intel_hpd_enabled_irqs(dev, hpd_cpt);
Daniel Vetter82a28bc2013-03-27 15:55:01 +01003273 }
3274
Daniel Vetterfee884e2013-07-04 23:35:21 +02003275 ibx_display_interrupt_update(dev_priv, hotplug_irqs, enabled_irqs);
Daniel Vetter82a28bc2013-03-27 15:55:01 +01003276
3277 /*
3278 * Enable digital hotplug on the PCH, and configure the DP short pulse
Ville Syrjälä6dbf30c2015-08-27 23:56:02 +03003279 * duration to 2ms (which is the minimum in the Display Port spec).
3280 * The pulse duration bits are reserved on LPT+.
Daniel Vetter82a28bc2013-03-27 15:55:01 +01003281 */
Keith Packard7fe0b972011-09-19 13:31:02 -07003282 hotplug = I915_READ(PCH_PORT_HOTPLUG);
3283 hotplug &= ~(PORTD_PULSE_DURATION_MASK|PORTC_PULSE_DURATION_MASK|PORTB_PULSE_DURATION_MASK);
3284 hotplug |= PORTD_HOTPLUG_ENABLE | PORTD_PULSE_DURATION_2ms;
3285 hotplug |= PORTC_HOTPLUG_ENABLE | PORTC_PULSE_DURATION_2ms;
3286 hotplug |= PORTB_HOTPLUG_ENABLE | PORTB_PULSE_DURATION_2ms;
Ville Syrjälä0b2eb332015-08-27 23:56:05 +03003287 /*
3288 * When CPU and PCH are on the same package, port A
3289 * HPD must be enabled in both north and south.
3290 */
3291 if (HAS_PCH_LPT_LP(dev))
3292 hotplug |= PORTA_HOTPLUG_ENABLE;
Keith Packard7fe0b972011-09-19 13:31:02 -07003293 I915_WRITE(PCH_PORT_HOTPLUG, hotplug);
Ville Syrjälä6dbf30c2015-08-27 23:56:02 +03003294}
Xiong Zhang26951ca2015-08-17 15:55:50 +08003295
Ville Syrjälä6dbf30c2015-08-27 23:56:02 +03003296static void spt_hpd_irq_setup(struct drm_device *dev)
3297{
3298 struct drm_i915_private *dev_priv = dev->dev_private;
3299 u32 hotplug_irqs, hotplug, enabled_irqs;
3300
3301 hotplug_irqs = SDE_HOTPLUG_MASK_SPT;
3302 enabled_irqs = intel_hpd_enabled_irqs(dev, hpd_spt);
3303
3304 ibx_display_interrupt_update(dev_priv, hotplug_irqs, enabled_irqs);
3305
3306 /* Enable digital hotplug on the PCH */
3307 hotplug = I915_READ(PCH_PORT_HOTPLUG);
3308 hotplug |= PORTD_HOTPLUG_ENABLE | PORTC_HOTPLUG_ENABLE |
Ville Syrjälä74c0b392015-08-27 23:56:07 +03003309 PORTB_HOTPLUG_ENABLE | PORTA_HOTPLUG_ENABLE;
Ville Syrjälä6dbf30c2015-08-27 23:56:02 +03003310 I915_WRITE(PCH_PORT_HOTPLUG, hotplug);
3311
3312 hotplug = I915_READ(PCH_PORT_HOTPLUG2);
3313 hotplug |= PORTE_HOTPLUG_ENABLE;
3314 I915_WRITE(PCH_PORT_HOTPLUG2, hotplug);
Keith Packard7fe0b972011-09-19 13:31:02 -07003315}
3316
Ville Syrjäläe4ce95a2015-08-27 23:56:03 +03003317static void ilk_hpd_irq_setup(struct drm_device *dev)
3318{
3319 struct drm_i915_private *dev_priv = dev->dev_private;
3320 u32 hotplug_irqs, hotplug, enabled_irqs;
3321
Ville Syrjälä3a3b3c72015-08-27 23:56:06 +03003322 if (INTEL_INFO(dev)->gen >= 8) {
3323 hotplug_irqs = GEN8_PORT_DP_A_HOTPLUG;
3324 enabled_irqs = intel_hpd_enabled_irqs(dev, hpd_bdw);
3325
3326 bdw_update_port_irq(dev_priv, hotplug_irqs, enabled_irqs);
3327 } else if (INTEL_INFO(dev)->gen >= 7) {
Ville Syrjälä23bb4cb2015-08-27 23:56:04 +03003328 hotplug_irqs = DE_DP_A_HOTPLUG_IVB;
3329 enabled_irqs = intel_hpd_enabled_irqs(dev, hpd_ivb);
Ville Syrjälä3a3b3c72015-08-27 23:56:06 +03003330
3331 ilk_update_display_irq(dev_priv, hotplug_irqs, enabled_irqs);
Ville Syrjälä23bb4cb2015-08-27 23:56:04 +03003332 } else {
3333 hotplug_irqs = DE_DP_A_HOTPLUG;
3334 enabled_irqs = intel_hpd_enabled_irqs(dev, hpd_ilk);
Ville Syrjäläe4ce95a2015-08-27 23:56:03 +03003335
Ville Syrjälä3a3b3c72015-08-27 23:56:06 +03003336 ilk_update_display_irq(dev_priv, hotplug_irqs, enabled_irqs);
3337 }
Ville Syrjäläe4ce95a2015-08-27 23:56:03 +03003338
3339 /*
3340 * Enable digital hotplug on the CPU, and configure the DP short pulse
3341 * duration to 2ms (which is the minimum in the Display Port spec)
Ville Syrjälä23bb4cb2015-08-27 23:56:04 +03003342 * The pulse duration bits are reserved on HSW+.
Ville Syrjäläe4ce95a2015-08-27 23:56:03 +03003343 */
3344 hotplug = I915_READ(DIGITAL_PORT_HOTPLUG_CNTRL);
3345 hotplug &= ~DIGITAL_PORTA_PULSE_DURATION_MASK;
3346 hotplug |= DIGITAL_PORTA_HOTPLUG_ENABLE | DIGITAL_PORTA_PULSE_DURATION_2ms;
3347 I915_WRITE(DIGITAL_PORT_HOTPLUG_CNTRL, hotplug);
3348
3349 ibx_hpd_irq_setup(dev);
3350}
3351
Shashank Sharmae0a20ad2015-03-27 14:54:14 +02003352static void bxt_hpd_irq_setup(struct drm_device *dev)
3353{
3354 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjäläa52bb152015-08-27 23:56:11 +03003355 u32 hotplug_irqs, hotplug, enabled_irqs;
Shashank Sharmae0a20ad2015-03-27 14:54:14 +02003356
Ville Syrjäläa52bb152015-08-27 23:56:11 +03003357 enabled_irqs = intel_hpd_enabled_irqs(dev, hpd_bxt);
3358 hotplug_irqs = BXT_DE_PORT_HOTPLUG_MASK;
Shashank Sharmae0a20ad2015-03-27 14:54:14 +02003359
Ville Syrjäläa52bb152015-08-27 23:56:11 +03003360 bdw_update_port_irq(dev_priv, hotplug_irqs, enabled_irqs);
Shashank Sharmae0a20ad2015-03-27 14:54:14 +02003361
Ville Syrjäläa52bb152015-08-27 23:56:11 +03003362 hotplug = I915_READ(PCH_PORT_HOTPLUG);
3363 hotplug |= PORTC_HOTPLUG_ENABLE | PORTB_HOTPLUG_ENABLE |
3364 PORTA_HOTPLUG_ENABLE;
3365 I915_WRITE(PCH_PORT_HOTPLUG, hotplug);
Shashank Sharmae0a20ad2015-03-27 14:54:14 +02003366}
3367
Paulo Zanonid46da432013-02-08 17:35:15 -02003368static void ibx_irq_postinstall(struct drm_device *dev)
3369{
Jani Nikula2d1013d2014-03-31 14:27:17 +03003370 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter82a28bc2013-03-27 15:55:01 +01003371 u32 mask;
Paulo Zanonid46da432013-02-08 17:35:15 -02003372
Daniel Vetter692a04c2013-05-29 21:43:05 +02003373 if (HAS_PCH_NOP(dev))
3374 return;
3375
Paulo Zanoni105b1222014-04-01 15:37:17 -03003376 if (HAS_PCH_IBX(dev))
Daniel Vetter5c673b62014-03-07 20:34:46 +01003377 mask = SDE_GMBUS | SDE_AUX_MASK | SDE_POISON;
Paulo Zanoni105b1222014-04-01 15:37:17 -03003378 else
Daniel Vetter5c673b62014-03-07 20:34:46 +01003379 mask = SDE_GMBUS_CPT | SDE_AUX_MASK_CPT;
Paulo Zanoni86642812013-04-12 17:57:57 -03003380
Ville Syrjäläb51a2842015-09-18 20:03:41 +03003381 gen5_assert_iir_is_zero(dev_priv, SDEIIR);
Paulo Zanonid46da432013-02-08 17:35:15 -02003382 I915_WRITE(SDEIMR, ~mask);
Paulo Zanonid46da432013-02-08 17:35:15 -02003383}
3384
Daniel Vetter0a9a8c92013-07-12 22:43:26 +02003385static void gen5_gt_irq_postinstall(struct drm_device *dev)
3386{
3387 struct drm_i915_private *dev_priv = dev->dev_private;
3388 u32 pm_irqs, gt_irqs;
3389
3390 pm_irqs = gt_irqs = 0;
3391
3392 dev_priv->gt_irq_mask = ~0;
Ben Widawsky040d2ba2013-09-19 11:01:40 -07003393 if (HAS_L3_DPF(dev)) {
Daniel Vetter0a9a8c92013-07-12 22:43:26 +02003394 /* L3 parity interrupt is always unmasked. */
Ben Widawsky35a85ac2013-09-19 11:13:41 -07003395 dev_priv->gt_irq_mask = ~GT_PARITY_ERROR(dev);
3396 gt_irqs |= GT_PARITY_ERROR(dev);
Daniel Vetter0a9a8c92013-07-12 22:43:26 +02003397 }
3398
3399 gt_irqs |= GT_RENDER_USER_INTERRUPT;
3400 if (IS_GEN5(dev)) {
3401 gt_irqs |= GT_RENDER_PIPECTL_NOTIFY_INTERRUPT |
3402 ILK_BSD_USER_INTERRUPT;
3403 } else {
3404 gt_irqs |= GT_BLT_USER_INTERRUPT | GT_BSD_USER_INTERRUPT;
3405 }
3406
Paulo Zanoni35079892014-04-01 15:37:15 -03003407 GEN5_IRQ_INIT(GT, dev_priv->gt_irq_mask, gt_irqs);
Daniel Vetter0a9a8c92013-07-12 22:43:26 +02003408
3409 if (INTEL_INFO(dev)->gen >= 6) {
Imre Deak78e68d32014-12-15 18:59:27 +02003410 /*
3411 * RPS interrupts will get enabled/disabled on demand when RPS
3412 * itself is enabled/disabled.
3413 */
Daniel Vetter0a9a8c92013-07-12 22:43:26 +02003414 if (HAS_VEBOX(dev))
3415 pm_irqs |= PM_VEBOX_USER_INTERRUPT;
3416
Paulo Zanoni605cd252013-08-06 18:57:15 -03003417 dev_priv->pm_irq_mask = 0xffffffff;
Paulo Zanoni35079892014-04-01 15:37:15 -03003418 GEN5_IRQ_INIT(GEN6_PM, dev_priv->pm_irq_mask, pm_irqs);
Daniel Vetter0a9a8c92013-07-12 22:43:26 +02003419 }
3420}
3421
Jesse Barnesf71d4af2011-06-28 13:00:41 -07003422static int ironlake_irq_postinstall(struct drm_device *dev)
Zhenyu Wang036a4a72009-06-08 14:40:19 +08003423{
Jani Nikula2d1013d2014-03-31 14:27:17 +03003424 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanoni8e76f8d2013-07-12 20:01:56 -03003425 u32 display_mask, extra_mask;
3426
3427 if (INTEL_INFO(dev)->gen >= 7) {
3428 display_mask = (DE_MASTER_IRQ_CONTROL | DE_GSE_IVB |
3429 DE_PCH_EVENT_IVB | DE_PLANEC_FLIP_DONE_IVB |
3430 DE_PLANEB_FLIP_DONE_IVB |
Daniel Vetter5c673b62014-03-07 20:34:46 +01003431 DE_PLANEA_FLIP_DONE_IVB | DE_AUX_CHANNEL_A_IVB);
Paulo Zanoni8e76f8d2013-07-12 20:01:56 -03003432 extra_mask = (DE_PIPEC_VBLANK_IVB | DE_PIPEB_VBLANK_IVB |
Ville Syrjälä23bb4cb2015-08-27 23:56:04 +03003433 DE_PIPEA_VBLANK_IVB | DE_ERR_INT_IVB |
3434 DE_DP_A_HOTPLUG_IVB);
Paulo Zanoni8e76f8d2013-07-12 20:01:56 -03003435 } else {
3436 display_mask = (DE_MASTER_IRQ_CONTROL | DE_GSE | DE_PCH_EVENT |
3437 DE_PLANEA_FLIP_DONE | DE_PLANEB_FLIP_DONE |
Daniel Vetter5b3a8562013-10-16 22:55:48 +02003438 DE_AUX_CHANNEL_A |
Daniel Vetter5b3a8562013-10-16 22:55:48 +02003439 DE_PIPEB_CRC_DONE | DE_PIPEA_CRC_DONE |
3440 DE_POISON);
Ville Syrjäläe4ce95a2015-08-27 23:56:03 +03003441 extra_mask = (DE_PIPEA_VBLANK | DE_PIPEB_VBLANK | DE_PCU_EVENT |
3442 DE_PIPEB_FIFO_UNDERRUN | DE_PIPEA_FIFO_UNDERRUN |
3443 DE_DP_A_HOTPLUG);
Paulo Zanoni8e76f8d2013-07-12 20:01:56 -03003444 }
Zhenyu Wang036a4a72009-06-08 14:40:19 +08003445
Chris Wilson1ec14ad2010-12-04 11:30:53 +00003446 dev_priv->irq_mask = ~display_mask;
Zhenyu Wang036a4a72009-06-08 14:40:19 +08003447
Paulo Zanoni0c841212014-04-01 15:37:27 -03003448 I915_WRITE(HWSTAM, 0xeffe);
3449
Paulo Zanoni622364b2014-04-01 15:37:22 -03003450 ibx_irq_pre_postinstall(dev);
3451
Paulo Zanoni35079892014-04-01 15:37:15 -03003452 GEN5_IRQ_INIT(DE, dev_priv->irq_mask, display_mask | extra_mask);
Zhenyu Wang036a4a72009-06-08 14:40:19 +08003453
Daniel Vetter0a9a8c92013-07-12 22:43:26 +02003454 gen5_gt_irq_postinstall(dev);
Zhenyu Wang036a4a72009-06-08 14:40:19 +08003455
Paulo Zanonid46da432013-02-08 17:35:15 -02003456 ibx_irq_postinstall(dev);
Keith Packard7fe0b972011-09-19 13:31:02 -07003457
Jesse Barnesf97108d2010-01-29 11:27:07 -08003458 if (IS_IRONLAKE_M(dev)) {
Daniel Vetter6005ce42013-06-27 13:44:59 +02003459 /* Enable PCU event interrupts
3460 *
3461 * spinlocking not required here for correctness since interrupt
Daniel Vetter4bc9d432013-06-27 13:44:58 +02003462 * setup is guaranteed to run in single-threaded context. But we
3463 * need it to make the assert_spin_locked happy. */
Daniel Vetterd6207432014-09-15 14:55:27 +02003464 spin_lock_irq(&dev_priv->irq_lock);
Jesse Barnesf97108d2010-01-29 11:27:07 -08003465 ironlake_enable_display_irq(dev_priv, DE_PCU_EVENT);
Daniel Vetterd6207432014-09-15 14:55:27 +02003466 spin_unlock_irq(&dev_priv->irq_lock);
Jesse Barnesf97108d2010-01-29 11:27:07 -08003467 }
3468
Zhenyu Wang036a4a72009-06-08 14:40:19 +08003469 return 0;
3470}
3471
Imre Deakf8b79e52014-03-04 19:23:07 +02003472static void valleyview_display_irqs_install(struct drm_i915_private *dev_priv)
3473{
3474 u32 pipestat_mask;
3475 u32 iir_mask;
Ville Syrjälä120dda42014-10-30 19:42:57 +02003476 enum pipe pipe;
Imre Deakf8b79e52014-03-04 19:23:07 +02003477
3478 pipestat_mask = PIPESTAT_INT_STATUS_MASK |
3479 PIPE_FIFO_UNDERRUN_STATUS;
3480
Ville Syrjälä120dda42014-10-30 19:42:57 +02003481 for_each_pipe(dev_priv, pipe)
3482 I915_WRITE(PIPESTAT(pipe), pipestat_mask);
Imre Deakf8b79e52014-03-04 19:23:07 +02003483 POSTING_READ(PIPESTAT(PIPE_A));
3484
3485 pipestat_mask = PLANE_FLIP_DONE_INT_STATUS_VLV |
3486 PIPE_CRC_DONE_INTERRUPT_STATUS;
3487
Ville Syrjälä120dda42014-10-30 19:42:57 +02003488 i915_enable_pipestat(dev_priv, PIPE_A, PIPE_GMBUS_INTERRUPT_STATUS);
3489 for_each_pipe(dev_priv, pipe)
3490 i915_enable_pipestat(dev_priv, pipe, pipestat_mask);
Imre Deakf8b79e52014-03-04 19:23:07 +02003491
3492 iir_mask = I915_DISPLAY_PORT_INTERRUPT |
3493 I915_DISPLAY_PIPE_A_EVENT_INTERRUPT |
3494 I915_DISPLAY_PIPE_B_EVENT_INTERRUPT;
Ville Syrjälä120dda42014-10-30 19:42:57 +02003495 if (IS_CHERRYVIEW(dev_priv))
3496 iir_mask |= I915_DISPLAY_PIPE_C_EVENT_INTERRUPT;
Imre Deakf8b79e52014-03-04 19:23:07 +02003497 dev_priv->irq_mask &= ~iir_mask;
3498
3499 I915_WRITE(VLV_IIR, iir_mask);
3500 I915_WRITE(VLV_IIR, iir_mask);
Imre Deakf8b79e52014-03-04 19:23:07 +02003501 I915_WRITE(VLV_IER, ~dev_priv->irq_mask);
Ville Syrjälä76e41862014-10-30 19:42:54 +02003502 I915_WRITE(VLV_IMR, dev_priv->irq_mask);
3503 POSTING_READ(VLV_IMR);
Imre Deakf8b79e52014-03-04 19:23:07 +02003504}
3505
3506static void valleyview_display_irqs_uninstall(struct drm_i915_private *dev_priv)
3507{
3508 u32 pipestat_mask;
3509 u32 iir_mask;
Ville Syrjälä120dda42014-10-30 19:42:57 +02003510 enum pipe pipe;
Imre Deakf8b79e52014-03-04 19:23:07 +02003511
3512 iir_mask = I915_DISPLAY_PORT_INTERRUPT |
3513 I915_DISPLAY_PIPE_A_EVENT_INTERRUPT |
Imre Deak6c7fba02014-03-10 19:44:48 +02003514 I915_DISPLAY_PIPE_B_EVENT_INTERRUPT;
Ville Syrjälä120dda42014-10-30 19:42:57 +02003515 if (IS_CHERRYVIEW(dev_priv))
3516 iir_mask |= I915_DISPLAY_PIPE_C_EVENT_INTERRUPT;
Imre Deakf8b79e52014-03-04 19:23:07 +02003517
3518 dev_priv->irq_mask |= iir_mask;
Imre Deakf8b79e52014-03-04 19:23:07 +02003519 I915_WRITE(VLV_IMR, dev_priv->irq_mask);
Ville Syrjälä76e41862014-10-30 19:42:54 +02003520 I915_WRITE(VLV_IER, ~dev_priv->irq_mask);
Imre Deakf8b79e52014-03-04 19:23:07 +02003521 I915_WRITE(VLV_IIR, iir_mask);
3522 I915_WRITE(VLV_IIR, iir_mask);
3523 POSTING_READ(VLV_IIR);
3524
3525 pipestat_mask = PLANE_FLIP_DONE_INT_STATUS_VLV |
3526 PIPE_CRC_DONE_INTERRUPT_STATUS;
3527
Ville Syrjälä120dda42014-10-30 19:42:57 +02003528 i915_disable_pipestat(dev_priv, PIPE_A, PIPE_GMBUS_INTERRUPT_STATUS);
3529 for_each_pipe(dev_priv, pipe)
3530 i915_disable_pipestat(dev_priv, pipe, pipestat_mask);
Imre Deakf8b79e52014-03-04 19:23:07 +02003531
3532 pipestat_mask = PIPESTAT_INT_STATUS_MASK |
3533 PIPE_FIFO_UNDERRUN_STATUS;
Ville Syrjälä120dda42014-10-30 19:42:57 +02003534
3535 for_each_pipe(dev_priv, pipe)
3536 I915_WRITE(PIPESTAT(pipe), pipestat_mask);
Imre Deakf8b79e52014-03-04 19:23:07 +02003537 POSTING_READ(PIPESTAT(PIPE_A));
3538}
3539
3540void valleyview_enable_display_irqs(struct drm_i915_private *dev_priv)
3541{
3542 assert_spin_locked(&dev_priv->irq_lock);
3543
3544 if (dev_priv->display_irqs_enabled)
3545 return;
3546
3547 dev_priv->display_irqs_enabled = true;
3548
Imre Deak950eaba2014-09-08 15:21:09 +03003549 if (intel_irqs_enabled(dev_priv))
Imre Deakf8b79e52014-03-04 19:23:07 +02003550 valleyview_display_irqs_install(dev_priv);
3551}
3552
3553void valleyview_disable_display_irqs(struct drm_i915_private *dev_priv)
3554{
3555 assert_spin_locked(&dev_priv->irq_lock);
3556
3557 if (!dev_priv->display_irqs_enabled)
3558 return;
3559
3560 dev_priv->display_irqs_enabled = false;
3561
Imre Deak950eaba2014-09-08 15:21:09 +03003562 if (intel_irqs_enabled(dev_priv))
Imre Deakf8b79e52014-03-04 19:23:07 +02003563 valleyview_display_irqs_uninstall(dev_priv);
3564}
3565
Ville Syrjälä0e6c9a92014-10-30 19:43:00 +02003566static void vlv_display_irq_postinstall(struct drm_i915_private *dev_priv)
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003567{
Imre Deakf8b79e52014-03-04 19:23:07 +02003568 dev_priv->irq_mask = ~0;
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003569
Egbert Eich0706f172015-09-23 16:15:27 +02003570 i915_hotplug_interrupt_update(dev_priv, 0xffffffff, 0);
Daniel Vetter20afbda2012-12-11 14:05:07 +01003571 POSTING_READ(PORT_HOTPLUG_EN);
3572
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003573 I915_WRITE(VLV_IIR, 0xffffffff);
Ville Syrjälä76e41862014-10-30 19:42:54 +02003574 I915_WRITE(VLV_IIR, 0xffffffff);
3575 I915_WRITE(VLV_IER, ~dev_priv->irq_mask);
3576 I915_WRITE(VLV_IMR, dev_priv->irq_mask);
3577 POSTING_READ(VLV_IMR);
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003578
Daniel Vetterb79480b2013-06-27 17:52:10 +02003579 /* Interrupt setup is already guaranteed to be single-threaded, this is
3580 * just to make the assert_spin_locked check happy. */
Daniel Vetterd6207432014-09-15 14:55:27 +02003581 spin_lock_irq(&dev_priv->irq_lock);
Imre Deakf8b79e52014-03-04 19:23:07 +02003582 if (dev_priv->display_irqs_enabled)
3583 valleyview_display_irqs_install(dev_priv);
Daniel Vetterd6207432014-09-15 14:55:27 +02003584 spin_unlock_irq(&dev_priv->irq_lock);
Ville Syrjälä0e6c9a92014-10-30 19:43:00 +02003585}
3586
3587static int valleyview_irq_postinstall(struct drm_device *dev)
3588{
3589 struct drm_i915_private *dev_priv = dev->dev_private;
3590
3591 vlv_display_irq_postinstall(dev_priv);
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003592
Daniel Vetter0a9a8c92013-07-12 22:43:26 +02003593 gen5_gt_irq_postinstall(dev);
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003594
3595 /* ack & enable invalid PTE error interrupts */
3596#if 0 /* FIXME: add support to irq handler for checking these bits */
3597 I915_WRITE(DPINVGTT, DPINVGTT_STATUS_MASK);
3598 I915_WRITE(DPINVGTT, DPINVGTT_EN_MASK);
3599#endif
3600
3601 I915_WRITE(VLV_MASTER_IER, MASTER_INTERRUPT_ENABLE);
Daniel Vetter20afbda2012-12-11 14:05:07 +01003602
3603 return 0;
3604}
3605
Ben Widawskyabd58f02013-11-02 21:07:09 -07003606static void gen8_gt_irq_postinstall(struct drm_i915_private *dev_priv)
3607{
Ben Widawskyabd58f02013-11-02 21:07:09 -07003608 /* These are interrupts we'll toggle with the ring mask register */
3609 uint32_t gt_interrupts[] = {
3610 GT_RENDER_USER_INTERRUPT << GEN8_RCS_IRQ_SHIFT |
Oscar Mateo73d477f2014-07-24 17:04:31 +01003611 GT_CONTEXT_SWITCH_INTERRUPT << GEN8_RCS_IRQ_SHIFT |
Ben Widawskyabd58f02013-11-02 21:07:09 -07003612 GT_RENDER_L3_PARITY_ERROR_INTERRUPT |
Oscar Mateo73d477f2014-07-24 17:04:31 +01003613 GT_RENDER_USER_INTERRUPT << GEN8_BCS_IRQ_SHIFT |
3614 GT_CONTEXT_SWITCH_INTERRUPT << GEN8_BCS_IRQ_SHIFT,
Ben Widawskyabd58f02013-11-02 21:07:09 -07003615 GT_RENDER_USER_INTERRUPT << GEN8_VCS1_IRQ_SHIFT |
Oscar Mateo73d477f2014-07-24 17:04:31 +01003616 GT_CONTEXT_SWITCH_INTERRUPT << GEN8_VCS1_IRQ_SHIFT |
3617 GT_RENDER_USER_INTERRUPT << GEN8_VCS2_IRQ_SHIFT |
3618 GT_CONTEXT_SWITCH_INTERRUPT << GEN8_VCS2_IRQ_SHIFT,
Ben Widawskyabd58f02013-11-02 21:07:09 -07003619 0,
Oscar Mateo73d477f2014-07-24 17:04:31 +01003620 GT_RENDER_USER_INTERRUPT << GEN8_VECS_IRQ_SHIFT |
3621 GT_CONTEXT_SWITCH_INTERRUPT << GEN8_VECS_IRQ_SHIFT
Ben Widawskyabd58f02013-11-02 21:07:09 -07003622 };
3623
Ben Widawsky09610212014-05-15 20:58:08 +03003624 dev_priv->pm_irq_mask = 0xffffffff;
Deepak S9a2d2d82014-08-22 08:32:40 +05303625 GEN8_IRQ_INIT_NDX(GT, 0, ~gt_interrupts[0], gt_interrupts[0]);
3626 GEN8_IRQ_INIT_NDX(GT, 1, ~gt_interrupts[1], gt_interrupts[1]);
Imre Deak78e68d32014-12-15 18:59:27 +02003627 /*
3628 * RPS interrupts will get enabled/disabled on demand when RPS itself
3629 * is enabled/disabled.
3630 */
3631 GEN8_IRQ_INIT_NDX(GT, 2, dev_priv->pm_irq_mask, 0);
Deepak S9a2d2d82014-08-22 08:32:40 +05303632 GEN8_IRQ_INIT_NDX(GT, 3, ~gt_interrupts[3], gt_interrupts[3]);
Ben Widawskyabd58f02013-11-02 21:07:09 -07003633}
3634
3635static void gen8_de_irq_postinstall(struct drm_i915_private *dev_priv)
3636{
Damien Lespiau770de832014-03-20 20:45:01 +00003637 uint32_t de_pipe_masked = GEN8_PIPE_CDCLK_CRC_DONE;
3638 uint32_t de_pipe_enables;
Ville Syrjälä3a3b3c72015-08-27 23:56:06 +03003639 u32 de_port_masked = GEN8_AUX_CHANNEL_A;
3640 u32 de_port_enables;
3641 enum pipe pipe;
Damien Lespiau770de832014-03-20 20:45:01 +00003642
Rodrigo Vivib4834a52015-09-02 15:19:24 -07003643 if (INTEL_INFO(dev_priv)->gen >= 9) {
Damien Lespiau770de832014-03-20 20:45:01 +00003644 de_pipe_masked |= GEN9_PIPE_PLANE1_FLIP_DONE |
3645 GEN9_DE_PIPE_IRQ_FAULT_ERRORS;
Ville Syrjälä3a3b3c72015-08-27 23:56:06 +03003646 de_port_masked |= GEN9_AUX_CHANNEL_B | GEN9_AUX_CHANNEL_C |
3647 GEN9_AUX_CHANNEL_D;
Shashank Sharma9e637432014-08-22 17:40:43 +05303648 if (IS_BROXTON(dev_priv))
Ville Syrjälä3a3b3c72015-08-27 23:56:06 +03003649 de_port_masked |= BXT_DE_PORT_GMBUS;
3650 } else {
Damien Lespiau770de832014-03-20 20:45:01 +00003651 de_pipe_masked |= GEN8_PIPE_PRIMARY_FLIP_DONE |
3652 GEN8_DE_PIPE_IRQ_FAULT_ERRORS;
Ville Syrjälä3a3b3c72015-08-27 23:56:06 +03003653 }
Damien Lespiau770de832014-03-20 20:45:01 +00003654
3655 de_pipe_enables = de_pipe_masked | GEN8_PIPE_VBLANK |
3656 GEN8_PIPE_FIFO_UNDERRUN;
3657
Ville Syrjälä3a3b3c72015-08-27 23:56:06 +03003658 de_port_enables = de_port_masked;
Ville Syrjäläa52bb152015-08-27 23:56:11 +03003659 if (IS_BROXTON(dev_priv))
3660 de_port_enables |= BXT_DE_PORT_HOTPLUG_MASK;
3661 else if (IS_BROADWELL(dev_priv))
Ville Syrjälä3a3b3c72015-08-27 23:56:06 +03003662 de_port_enables |= GEN8_PORT_DP_A_HOTPLUG;
3663
Daniel Vetter13b3a0a2013-11-07 15:31:52 +01003664 dev_priv->de_irq_mask[PIPE_A] = ~de_pipe_masked;
3665 dev_priv->de_irq_mask[PIPE_B] = ~de_pipe_masked;
3666 dev_priv->de_irq_mask[PIPE_C] = ~de_pipe_masked;
Ben Widawskyabd58f02013-11-02 21:07:09 -07003667
Damien Lespiau055e3932014-08-18 13:49:10 +01003668 for_each_pipe(dev_priv, pipe)
Daniel Vetterf458ebb2014-09-30 10:56:39 +02003669 if (intel_display_power_is_enabled(dev_priv,
Paulo Zanoni813bde42014-07-04 11:50:29 -03003670 POWER_DOMAIN_PIPE(pipe)))
3671 GEN8_IRQ_INIT_NDX(DE_PIPE, pipe,
3672 dev_priv->de_irq_mask[pipe],
3673 de_pipe_enables);
Ben Widawskyabd58f02013-11-02 21:07:09 -07003674
Ville Syrjälä3a3b3c72015-08-27 23:56:06 +03003675 GEN5_IRQ_INIT(GEN8_DE_PORT_, ~de_port_masked, de_port_enables);
Ben Widawskyabd58f02013-11-02 21:07:09 -07003676}
3677
3678static int gen8_irq_postinstall(struct drm_device *dev)
3679{
3680 struct drm_i915_private *dev_priv = dev->dev_private;
3681
Shashank Sharma266ea3d2014-08-22 17:40:42 +05303682 if (HAS_PCH_SPLIT(dev))
3683 ibx_irq_pre_postinstall(dev);
Paulo Zanoni622364b2014-04-01 15:37:22 -03003684
Ben Widawskyabd58f02013-11-02 21:07:09 -07003685 gen8_gt_irq_postinstall(dev_priv);
3686 gen8_de_irq_postinstall(dev_priv);
3687
Shashank Sharma266ea3d2014-08-22 17:40:42 +05303688 if (HAS_PCH_SPLIT(dev))
3689 ibx_irq_postinstall(dev);
Ben Widawskyabd58f02013-11-02 21:07:09 -07003690
3691 I915_WRITE(GEN8_MASTER_IRQ, DE_MASTER_IRQ_CONTROL);
3692 POSTING_READ(GEN8_MASTER_IRQ);
3693
3694 return 0;
3695}
3696
Ville Syrjälä43f328d2014-04-09 20:40:52 +03003697static int cherryview_irq_postinstall(struct drm_device *dev)
3698{
3699 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjälä43f328d2014-04-09 20:40:52 +03003700
Ville Syrjäläc2b66792014-10-30 19:43:02 +02003701 vlv_display_irq_postinstall(dev_priv);
Ville Syrjälä43f328d2014-04-09 20:40:52 +03003702
3703 gen8_gt_irq_postinstall(dev_priv);
3704
3705 I915_WRITE(GEN8_MASTER_IRQ, MASTER_INTERRUPT_ENABLE);
3706 POSTING_READ(GEN8_MASTER_IRQ);
3707
3708 return 0;
3709}
3710
Ben Widawskyabd58f02013-11-02 21:07:09 -07003711static void gen8_irq_uninstall(struct drm_device *dev)
3712{
3713 struct drm_i915_private *dev_priv = dev->dev_private;
Ben Widawskyabd58f02013-11-02 21:07:09 -07003714
3715 if (!dev_priv)
3716 return;
3717
Paulo Zanoni823f6b32014-04-01 15:37:26 -03003718 gen8_irq_reset(dev);
Ben Widawskyabd58f02013-11-02 21:07:09 -07003719}
3720
Ville Syrjälä8ea0be42014-10-30 19:42:59 +02003721static void vlv_display_irq_uninstall(struct drm_i915_private *dev_priv)
3722{
3723 /* Interrupt setup is already guaranteed to be single-threaded, this is
3724 * just to make the assert_spin_locked check happy. */
3725 spin_lock_irq(&dev_priv->irq_lock);
3726 if (dev_priv->display_irqs_enabled)
3727 valleyview_display_irqs_uninstall(dev_priv);
3728 spin_unlock_irq(&dev_priv->irq_lock);
3729
3730 vlv_display_irq_reset(dev_priv);
3731
Imre Deakc352d1b2014-11-20 16:05:55 +02003732 dev_priv->irq_mask = ~0;
Ville Syrjälä8ea0be42014-10-30 19:42:59 +02003733}
3734
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003735static void valleyview_irq_uninstall(struct drm_device *dev)
3736{
Jani Nikula2d1013d2014-03-31 14:27:17 +03003737 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003738
3739 if (!dev_priv)
3740 return;
3741
Imre Deak843d0e72014-04-14 20:24:23 +03003742 I915_WRITE(VLV_MASTER_IER, 0);
3743
Ville Syrjälä893fce82014-10-30 19:42:56 +02003744 gen5_gt_irq_reset(dev);
3745
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003746 I915_WRITE(HWSTAM, 0xffffffff);
Imre Deakf8b79e52014-03-04 19:23:07 +02003747
Ville Syrjälä8ea0be42014-10-30 19:42:59 +02003748 vlv_display_irq_uninstall(dev_priv);
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003749}
3750
Ville Syrjälä43f328d2014-04-09 20:40:52 +03003751static void cherryview_irq_uninstall(struct drm_device *dev)
3752{
3753 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjälä43f328d2014-04-09 20:40:52 +03003754
3755 if (!dev_priv)
3756 return;
3757
3758 I915_WRITE(GEN8_MASTER_IRQ, 0);
3759 POSTING_READ(GEN8_MASTER_IRQ);
3760
Ville Syrjäläa2c30fb2014-10-30 19:42:52 +02003761 gen8_gt_irq_reset(dev_priv);
Ville Syrjälä43f328d2014-04-09 20:40:52 +03003762
Ville Syrjäläa2c30fb2014-10-30 19:42:52 +02003763 GEN5_IRQ_RESET(GEN8_PCU_);
Ville Syrjälä43f328d2014-04-09 20:40:52 +03003764
Ville Syrjäläc2b66792014-10-30 19:43:02 +02003765 vlv_display_irq_uninstall(dev_priv);
Ville Syrjälä43f328d2014-04-09 20:40:52 +03003766}
3767
Jesse Barnesf71d4af2011-06-28 13:00:41 -07003768static void ironlake_irq_uninstall(struct drm_device *dev)
Zhenyu Wang036a4a72009-06-08 14:40:19 +08003769{
Jani Nikula2d1013d2014-03-31 14:27:17 +03003770 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes46979952011-04-07 13:53:55 -07003771
3772 if (!dev_priv)
3773 return;
3774
Paulo Zanonibe30b292014-04-01 15:37:25 -03003775 ironlake_irq_reset(dev);
Zhenyu Wang036a4a72009-06-08 14:40:19 +08003776}
3777
Chris Wilsonc2798b12012-04-22 21:13:57 +01003778static void i8xx_irq_preinstall(struct drm_device * dev)
3779{
Jani Nikula2d1013d2014-03-31 14:27:17 +03003780 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsonc2798b12012-04-22 21:13:57 +01003781 int pipe;
3782
Damien Lespiau055e3932014-08-18 13:49:10 +01003783 for_each_pipe(dev_priv, pipe)
Chris Wilsonc2798b12012-04-22 21:13:57 +01003784 I915_WRITE(PIPESTAT(pipe), 0);
3785 I915_WRITE16(IMR, 0xffff);
3786 I915_WRITE16(IER, 0x0);
3787 POSTING_READ16(IER);
3788}
3789
3790static int i8xx_irq_postinstall(struct drm_device *dev)
3791{
Jani Nikula2d1013d2014-03-31 14:27:17 +03003792 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsonc2798b12012-04-22 21:13:57 +01003793
Chris Wilsonc2798b12012-04-22 21:13:57 +01003794 I915_WRITE16(EMR,
3795 ~(I915_ERROR_PAGE_TABLE | I915_ERROR_MEMORY_REFRESH));
3796
3797 /* Unmask the interrupts that we always want on. */
3798 dev_priv->irq_mask =
3799 ~(I915_DISPLAY_PIPE_A_EVENT_INTERRUPT |
3800 I915_DISPLAY_PIPE_B_EVENT_INTERRUPT |
3801 I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT |
Daniel Vetter37ef01a2015-04-01 13:43:46 +02003802 I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT);
Chris Wilsonc2798b12012-04-22 21:13:57 +01003803 I915_WRITE16(IMR, dev_priv->irq_mask);
3804
3805 I915_WRITE16(IER,
3806 I915_DISPLAY_PIPE_A_EVENT_INTERRUPT |
3807 I915_DISPLAY_PIPE_B_EVENT_INTERRUPT |
Chris Wilsonc2798b12012-04-22 21:13:57 +01003808 I915_USER_INTERRUPT);
3809 POSTING_READ16(IER);
3810
Daniel Vetter379ef822013-10-16 22:55:56 +02003811 /* Interrupt setup is already guaranteed to be single-threaded, this is
3812 * just to make the assert_spin_locked check happy. */
Daniel Vetterd6207432014-09-15 14:55:27 +02003813 spin_lock_irq(&dev_priv->irq_lock);
Imre Deak755e9012014-02-10 18:42:47 +02003814 i915_enable_pipestat(dev_priv, PIPE_A, PIPE_CRC_DONE_INTERRUPT_STATUS);
3815 i915_enable_pipestat(dev_priv, PIPE_B, PIPE_CRC_DONE_INTERRUPT_STATUS);
Daniel Vetterd6207432014-09-15 14:55:27 +02003816 spin_unlock_irq(&dev_priv->irq_lock);
Daniel Vetter379ef822013-10-16 22:55:56 +02003817
Chris Wilsonc2798b12012-04-22 21:13:57 +01003818 return 0;
3819}
3820
Ville Syrjälä90a72f82013-02-19 23:16:44 +02003821/*
3822 * Returns true when a page flip has completed.
3823 */
3824static bool i8xx_handle_vblank(struct drm_device *dev,
Ville Syrjälä1f1c2e22013-11-28 17:30:01 +02003825 int plane, int pipe, u32 iir)
Ville Syrjälä90a72f82013-02-19 23:16:44 +02003826{
Jani Nikula2d1013d2014-03-31 14:27:17 +03003827 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjälä1f1c2e22013-11-28 17:30:01 +02003828 u16 flip_pending = DISPLAY_PLANE_FLIP_PENDING(plane);
Ville Syrjälä90a72f82013-02-19 23:16:44 +02003829
Ville Syrjälä8d7849d2014-04-29 13:35:46 +03003830 if (!intel_pipe_handle_vblank(dev, pipe))
Ville Syrjälä90a72f82013-02-19 23:16:44 +02003831 return false;
3832
3833 if ((iir & flip_pending) == 0)
Chris Wilsond6bbafa2014-09-05 07:13:24 +01003834 goto check_page_flip;
Ville Syrjälä90a72f82013-02-19 23:16:44 +02003835
Ville Syrjälä90a72f82013-02-19 23:16:44 +02003836 /* We detect FlipDone by looking for the change in PendingFlip from '1'
3837 * to '0' on the following vblank, i.e. IIR has the Pendingflip
3838 * asserted following the MI_DISPLAY_FLIP, but ISR is deasserted, hence
3839 * the flip is completed (no longer pending). Since this doesn't raise
3840 * an interrupt per se, we watch for the change at vblank.
3841 */
3842 if (I915_READ16(ISR) & flip_pending)
Chris Wilsond6bbafa2014-09-05 07:13:24 +01003843 goto check_page_flip;
Ville Syrjälä90a72f82013-02-19 23:16:44 +02003844
Ville Syrjälä7d475592014-12-17 23:08:03 +02003845 intel_prepare_page_flip(dev, plane);
Ville Syrjälä90a72f82013-02-19 23:16:44 +02003846 intel_finish_page_flip(dev, pipe);
Ville Syrjälä90a72f82013-02-19 23:16:44 +02003847 return true;
Chris Wilsond6bbafa2014-09-05 07:13:24 +01003848
3849check_page_flip:
3850 intel_check_page_flip(dev, pipe);
3851 return false;
Ville Syrjälä90a72f82013-02-19 23:16:44 +02003852}
3853
Daniel Vetterff1f5252012-10-02 15:10:55 +02003854static irqreturn_t i8xx_irq_handler(int irq, void *arg)
Chris Wilsonc2798b12012-04-22 21:13:57 +01003855{
Daniel Vetter45a83f82014-05-12 19:17:55 +02003856 struct drm_device *dev = arg;
Jani Nikula2d1013d2014-03-31 14:27:17 +03003857 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsonc2798b12012-04-22 21:13:57 +01003858 u16 iir, new_iir;
3859 u32 pipe_stats[2];
Chris Wilsonc2798b12012-04-22 21:13:57 +01003860 int pipe;
3861 u16 flip_mask =
3862 I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT |
3863 I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT;
3864
Imre Deak2dd2a882015-02-24 11:14:30 +02003865 if (!intel_irqs_enabled(dev_priv))
3866 return IRQ_NONE;
3867
Chris Wilsonc2798b12012-04-22 21:13:57 +01003868 iir = I915_READ16(IIR);
3869 if (iir == 0)
3870 return IRQ_NONE;
3871
3872 while (iir & ~flip_mask) {
3873 /* Can't rely on pipestat interrupt bit in iir as it might
3874 * have been cleared after the pipestat interrupt was received.
3875 * It doesn't set the bit in iir again, but it still produces
3876 * interrupts (for non-MSI).
3877 */
Daniel Vetter222c7f52014-09-15 14:55:28 +02003878 spin_lock(&dev_priv->irq_lock);
Chris Wilsonc2798b12012-04-22 21:13:57 +01003879 if (iir & I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT)
Daniel Vetteraaecdf62014-11-04 15:52:22 +01003880 DRM_DEBUG("Command parser error, iir 0x%08x\n", iir);
Chris Wilsonc2798b12012-04-22 21:13:57 +01003881
Damien Lespiau055e3932014-08-18 13:49:10 +01003882 for_each_pipe(dev_priv, pipe) {
Ville Syrjäläf0f59a02015-11-18 15:33:26 +02003883 i915_reg_t reg = PIPESTAT(pipe);
Chris Wilsonc2798b12012-04-22 21:13:57 +01003884 pipe_stats[pipe] = I915_READ(reg);
3885
3886 /*
3887 * Clear the PIPE*STAT regs before the IIR
3888 */
Ville Syrjälä2d9d2b02014-01-17 11:44:31 +02003889 if (pipe_stats[pipe] & 0x8000ffff)
Chris Wilsonc2798b12012-04-22 21:13:57 +01003890 I915_WRITE(reg, pipe_stats[pipe]);
Chris Wilsonc2798b12012-04-22 21:13:57 +01003891 }
Daniel Vetter222c7f52014-09-15 14:55:28 +02003892 spin_unlock(&dev_priv->irq_lock);
Chris Wilsonc2798b12012-04-22 21:13:57 +01003893
3894 I915_WRITE16(IIR, iir & ~flip_mask);
3895 new_iir = I915_READ16(IIR); /* Flush posted writes */
3896
Chris Wilsonc2798b12012-04-22 21:13:57 +01003897 if (iir & I915_USER_INTERRUPT)
Chris Wilson74cdb332015-04-07 16:21:05 +01003898 notify_ring(&dev_priv->ring[RCS]);
Chris Wilsonc2798b12012-04-22 21:13:57 +01003899
Damien Lespiau055e3932014-08-18 13:49:10 +01003900 for_each_pipe(dev_priv, pipe) {
Ville Syrjälä1f1c2e22013-11-28 17:30:01 +02003901 int plane = pipe;
Daniel Vetter3a77c4c2014-01-10 08:50:12 +01003902 if (HAS_FBC(dev))
Ville Syrjälä1f1c2e22013-11-28 17:30:01 +02003903 plane = !plane;
3904
Daniel Vetter4356d582013-10-16 22:55:55 +02003905 if (pipe_stats[pipe] & PIPE_VBLANK_INTERRUPT_STATUS &&
Ville Syrjälä1f1c2e22013-11-28 17:30:01 +02003906 i8xx_handle_vblank(dev, plane, pipe, iir))
3907 flip_mask &= ~DISPLAY_PLANE_FLIP_PENDING(plane);
Chris Wilsonc2798b12012-04-22 21:13:57 +01003908
Daniel Vetter4356d582013-10-16 22:55:55 +02003909 if (pipe_stats[pipe] & PIPE_CRC_DONE_INTERRUPT_STATUS)
Daniel Vetter277de952013-10-18 16:37:07 +02003910 i9xx_pipe_crc_irq_handler(dev, pipe);
Ville Syrjälä2d9d2b02014-01-17 11:44:31 +02003911
Daniel Vetter1f7247c2014-09-30 10:56:48 +02003912 if (pipe_stats[pipe] & PIPE_FIFO_UNDERRUN_STATUS)
3913 intel_cpu_fifo_underrun_irq_handler(dev_priv,
3914 pipe);
Daniel Vetter4356d582013-10-16 22:55:55 +02003915 }
Chris Wilsonc2798b12012-04-22 21:13:57 +01003916
3917 iir = new_iir;
3918 }
3919
3920 return IRQ_HANDLED;
3921}
3922
3923static void i8xx_irq_uninstall(struct drm_device * dev)
3924{
Jani Nikula2d1013d2014-03-31 14:27:17 +03003925 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsonc2798b12012-04-22 21:13:57 +01003926 int pipe;
3927
Damien Lespiau055e3932014-08-18 13:49:10 +01003928 for_each_pipe(dev_priv, pipe) {
Chris Wilsonc2798b12012-04-22 21:13:57 +01003929 /* Clear enable bits; then clear status bits */
3930 I915_WRITE(PIPESTAT(pipe), 0);
3931 I915_WRITE(PIPESTAT(pipe), I915_READ(PIPESTAT(pipe)));
3932 }
3933 I915_WRITE16(IMR, 0xffff);
3934 I915_WRITE16(IER, 0x0);
3935 I915_WRITE16(IIR, I915_READ16(IIR));
3936}
3937
Chris Wilsona266c7d2012-04-24 22:59:44 +01003938static void i915_irq_preinstall(struct drm_device * dev)
3939{
Jani Nikula2d1013d2014-03-31 14:27:17 +03003940 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsona266c7d2012-04-24 22:59:44 +01003941 int pipe;
3942
Chris Wilsona266c7d2012-04-24 22:59:44 +01003943 if (I915_HAS_HOTPLUG(dev)) {
Egbert Eich0706f172015-09-23 16:15:27 +02003944 i915_hotplug_interrupt_update(dev_priv, 0xffffffff, 0);
Chris Wilsona266c7d2012-04-24 22:59:44 +01003945 I915_WRITE(PORT_HOTPLUG_STAT, I915_READ(PORT_HOTPLUG_STAT));
3946 }
3947
Chris Wilson00d98eb2012-04-24 22:59:48 +01003948 I915_WRITE16(HWSTAM, 0xeffe);
Damien Lespiau055e3932014-08-18 13:49:10 +01003949 for_each_pipe(dev_priv, pipe)
Chris Wilsona266c7d2012-04-24 22:59:44 +01003950 I915_WRITE(PIPESTAT(pipe), 0);
3951 I915_WRITE(IMR, 0xffffffff);
3952 I915_WRITE(IER, 0x0);
3953 POSTING_READ(IER);
3954}
3955
3956static int i915_irq_postinstall(struct drm_device *dev)
3957{
Jani Nikula2d1013d2014-03-31 14:27:17 +03003958 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson38bde182012-04-24 22:59:50 +01003959 u32 enable_mask;
Chris Wilsona266c7d2012-04-24 22:59:44 +01003960
Chris Wilson38bde182012-04-24 22:59:50 +01003961 I915_WRITE(EMR, ~(I915_ERROR_PAGE_TABLE | I915_ERROR_MEMORY_REFRESH));
3962
3963 /* Unmask the interrupts that we always want on. */
3964 dev_priv->irq_mask =
3965 ~(I915_ASLE_INTERRUPT |
3966 I915_DISPLAY_PIPE_A_EVENT_INTERRUPT |
3967 I915_DISPLAY_PIPE_B_EVENT_INTERRUPT |
3968 I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT |
Daniel Vetter37ef01a2015-04-01 13:43:46 +02003969 I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT);
Chris Wilson38bde182012-04-24 22:59:50 +01003970
3971 enable_mask =
3972 I915_ASLE_INTERRUPT |
3973 I915_DISPLAY_PIPE_A_EVENT_INTERRUPT |
3974 I915_DISPLAY_PIPE_B_EVENT_INTERRUPT |
Chris Wilson38bde182012-04-24 22:59:50 +01003975 I915_USER_INTERRUPT;
3976
Chris Wilsona266c7d2012-04-24 22:59:44 +01003977 if (I915_HAS_HOTPLUG(dev)) {
Egbert Eich0706f172015-09-23 16:15:27 +02003978 i915_hotplug_interrupt_update(dev_priv, 0xffffffff, 0);
Daniel Vetter20afbda2012-12-11 14:05:07 +01003979 POSTING_READ(PORT_HOTPLUG_EN);
3980
Chris Wilsona266c7d2012-04-24 22:59:44 +01003981 /* Enable in IER... */
3982 enable_mask |= I915_DISPLAY_PORT_INTERRUPT;
3983 /* and unmask in IMR */
3984 dev_priv->irq_mask &= ~I915_DISPLAY_PORT_INTERRUPT;
3985 }
3986
Chris Wilsona266c7d2012-04-24 22:59:44 +01003987 I915_WRITE(IMR, dev_priv->irq_mask);
3988 I915_WRITE(IER, enable_mask);
3989 POSTING_READ(IER);
3990
Jani Nikulaf49e38d2013-04-29 13:02:54 +03003991 i915_enable_asle_pipestat(dev);
Daniel Vetter20afbda2012-12-11 14:05:07 +01003992
Daniel Vetter379ef822013-10-16 22:55:56 +02003993 /* Interrupt setup is already guaranteed to be single-threaded, this is
3994 * just to make the assert_spin_locked check happy. */
Daniel Vetterd6207432014-09-15 14:55:27 +02003995 spin_lock_irq(&dev_priv->irq_lock);
Imre Deak755e9012014-02-10 18:42:47 +02003996 i915_enable_pipestat(dev_priv, PIPE_A, PIPE_CRC_DONE_INTERRUPT_STATUS);
3997 i915_enable_pipestat(dev_priv, PIPE_B, PIPE_CRC_DONE_INTERRUPT_STATUS);
Daniel Vetterd6207432014-09-15 14:55:27 +02003998 spin_unlock_irq(&dev_priv->irq_lock);
Daniel Vetter379ef822013-10-16 22:55:56 +02003999
Daniel Vetter20afbda2012-12-11 14:05:07 +01004000 return 0;
4001}
4002
Ville Syrjälä90a72f82013-02-19 23:16:44 +02004003/*
4004 * Returns true when a page flip has completed.
4005 */
4006static bool i915_handle_vblank(struct drm_device *dev,
4007 int plane, int pipe, u32 iir)
4008{
Jani Nikula2d1013d2014-03-31 14:27:17 +03004009 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjälä90a72f82013-02-19 23:16:44 +02004010 u32 flip_pending = DISPLAY_PLANE_FLIP_PENDING(plane);
4011
Ville Syrjälä8d7849d2014-04-29 13:35:46 +03004012 if (!intel_pipe_handle_vblank(dev, pipe))
Ville Syrjälä90a72f82013-02-19 23:16:44 +02004013 return false;
4014
4015 if ((iir & flip_pending) == 0)
Chris Wilsond6bbafa2014-09-05 07:13:24 +01004016 goto check_page_flip;
Ville Syrjälä90a72f82013-02-19 23:16:44 +02004017
Ville Syrjälä90a72f82013-02-19 23:16:44 +02004018 /* We detect FlipDone by looking for the change in PendingFlip from '1'
4019 * to '0' on the following vblank, i.e. IIR has the Pendingflip
4020 * asserted following the MI_DISPLAY_FLIP, but ISR is deasserted, hence
4021 * the flip is completed (no longer pending). Since this doesn't raise
4022 * an interrupt per se, we watch for the change at vblank.
4023 */
4024 if (I915_READ(ISR) & flip_pending)
Chris Wilsond6bbafa2014-09-05 07:13:24 +01004025 goto check_page_flip;
Ville Syrjälä90a72f82013-02-19 23:16:44 +02004026
Ville Syrjälä7d475592014-12-17 23:08:03 +02004027 intel_prepare_page_flip(dev, plane);
Ville Syrjälä90a72f82013-02-19 23:16:44 +02004028 intel_finish_page_flip(dev, pipe);
Ville Syrjälä90a72f82013-02-19 23:16:44 +02004029 return true;
Chris Wilsond6bbafa2014-09-05 07:13:24 +01004030
4031check_page_flip:
4032 intel_check_page_flip(dev, pipe);
4033 return false;
Ville Syrjälä90a72f82013-02-19 23:16:44 +02004034}
4035
Daniel Vetterff1f5252012-10-02 15:10:55 +02004036static irqreturn_t i915_irq_handler(int irq, void *arg)
Chris Wilsona266c7d2012-04-24 22:59:44 +01004037{
Daniel Vetter45a83f82014-05-12 19:17:55 +02004038 struct drm_device *dev = arg;
Jani Nikula2d1013d2014-03-31 14:27:17 +03004039 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson8291ee92012-04-24 22:59:47 +01004040 u32 iir, new_iir, pipe_stats[I915_MAX_PIPES];
Chris Wilson38bde182012-04-24 22:59:50 +01004041 u32 flip_mask =
4042 I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT |
4043 I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT;
Chris Wilson38bde182012-04-24 22:59:50 +01004044 int pipe, ret = IRQ_NONE;
Chris Wilsona266c7d2012-04-24 22:59:44 +01004045
Imre Deak2dd2a882015-02-24 11:14:30 +02004046 if (!intel_irqs_enabled(dev_priv))
4047 return IRQ_NONE;
4048
Chris Wilsona266c7d2012-04-24 22:59:44 +01004049 iir = I915_READ(IIR);
Chris Wilson38bde182012-04-24 22:59:50 +01004050 do {
4051 bool irq_received = (iir & ~flip_mask) != 0;
Chris Wilson8291ee92012-04-24 22:59:47 +01004052 bool blc_event = false;
Chris Wilsona266c7d2012-04-24 22:59:44 +01004053
4054 /* Can't rely on pipestat interrupt bit in iir as it might
4055 * have been cleared after the pipestat interrupt was received.
4056 * It doesn't set the bit in iir again, but it still produces
4057 * interrupts (for non-MSI).
4058 */
Daniel Vetter222c7f52014-09-15 14:55:28 +02004059 spin_lock(&dev_priv->irq_lock);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004060 if (iir & I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT)
Daniel Vetteraaecdf62014-11-04 15:52:22 +01004061 DRM_DEBUG("Command parser error, iir 0x%08x\n", iir);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004062
Damien Lespiau055e3932014-08-18 13:49:10 +01004063 for_each_pipe(dev_priv, pipe) {
Ville Syrjäläf0f59a02015-11-18 15:33:26 +02004064 i915_reg_t reg = PIPESTAT(pipe);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004065 pipe_stats[pipe] = I915_READ(reg);
4066
Chris Wilson38bde182012-04-24 22:59:50 +01004067 /* Clear the PIPE*STAT regs before the IIR */
Chris Wilsona266c7d2012-04-24 22:59:44 +01004068 if (pipe_stats[pipe] & 0x8000ffff) {
Chris Wilsona266c7d2012-04-24 22:59:44 +01004069 I915_WRITE(reg, pipe_stats[pipe]);
Chris Wilson38bde182012-04-24 22:59:50 +01004070 irq_received = true;
Chris Wilsona266c7d2012-04-24 22:59:44 +01004071 }
4072 }
Daniel Vetter222c7f52014-09-15 14:55:28 +02004073 spin_unlock(&dev_priv->irq_lock);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004074
4075 if (!irq_received)
4076 break;
4077
Chris Wilsona266c7d2012-04-24 22:59:44 +01004078 /* Consume port. Then clear IIR or we'll miss events */
Ville Syrjälä16c6c562014-04-01 10:54:36 +03004079 if (I915_HAS_HOTPLUG(dev) &&
4080 iir & I915_DISPLAY_PORT_INTERRUPT)
4081 i9xx_hpd_irq_handler(dev);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004082
Chris Wilson38bde182012-04-24 22:59:50 +01004083 I915_WRITE(IIR, iir & ~flip_mask);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004084 new_iir = I915_READ(IIR); /* Flush posted writes */
4085
Chris Wilsona266c7d2012-04-24 22:59:44 +01004086 if (iir & I915_USER_INTERRUPT)
Chris Wilson74cdb332015-04-07 16:21:05 +01004087 notify_ring(&dev_priv->ring[RCS]);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004088
Damien Lespiau055e3932014-08-18 13:49:10 +01004089 for_each_pipe(dev_priv, pipe) {
Chris Wilson38bde182012-04-24 22:59:50 +01004090 int plane = pipe;
Daniel Vetter3a77c4c2014-01-10 08:50:12 +01004091 if (HAS_FBC(dev))
Chris Wilson38bde182012-04-24 22:59:50 +01004092 plane = !plane;
Ville Syrjälä5e2032d2013-02-19 15:16:38 +02004093
Ville Syrjälä90a72f82013-02-19 23:16:44 +02004094 if (pipe_stats[pipe] & PIPE_VBLANK_INTERRUPT_STATUS &&
4095 i915_handle_vblank(dev, plane, pipe, iir))
4096 flip_mask &= ~DISPLAY_PLANE_FLIP_PENDING(plane);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004097
4098 if (pipe_stats[pipe] & PIPE_LEGACY_BLC_EVENT_STATUS)
4099 blc_event = true;
Daniel Vetter4356d582013-10-16 22:55:55 +02004100
4101 if (pipe_stats[pipe] & PIPE_CRC_DONE_INTERRUPT_STATUS)
Daniel Vetter277de952013-10-18 16:37:07 +02004102 i9xx_pipe_crc_irq_handler(dev, pipe);
Ville Syrjälä2d9d2b02014-01-17 11:44:31 +02004103
Daniel Vetter1f7247c2014-09-30 10:56:48 +02004104 if (pipe_stats[pipe] & PIPE_FIFO_UNDERRUN_STATUS)
4105 intel_cpu_fifo_underrun_irq_handler(dev_priv,
4106 pipe);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004107 }
4108
Chris Wilsona266c7d2012-04-24 22:59:44 +01004109 if (blc_event || (iir & I915_ASLE_INTERRUPT))
4110 intel_opregion_asle_intr(dev);
4111
4112 /* With MSI, interrupts are only generated when iir
4113 * transitions from zero to nonzero. If another bit got
4114 * set while we were handling the existing iir bits, then
4115 * we would never get another interrupt.
4116 *
4117 * This is fine on non-MSI as well, as if we hit this path
4118 * we avoid exiting the interrupt handler only to generate
4119 * another one.
4120 *
4121 * Note that for MSI this could cause a stray interrupt report
4122 * if an interrupt landed in the time between writing IIR and
4123 * the posting read. This should be rare enough to never
4124 * trigger the 99% of 100,000 interrupts test for disabling
4125 * stray interrupts.
4126 */
Chris Wilson38bde182012-04-24 22:59:50 +01004127 ret = IRQ_HANDLED;
Chris Wilsona266c7d2012-04-24 22:59:44 +01004128 iir = new_iir;
Chris Wilson38bde182012-04-24 22:59:50 +01004129 } while (iir & ~flip_mask);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004130
4131 return ret;
4132}
4133
4134static void i915_irq_uninstall(struct drm_device * dev)
4135{
Jani Nikula2d1013d2014-03-31 14:27:17 +03004136 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsona266c7d2012-04-24 22:59:44 +01004137 int pipe;
4138
Chris Wilsona266c7d2012-04-24 22:59:44 +01004139 if (I915_HAS_HOTPLUG(dev)) {
Egbert Eich0706f172015-09-23 16:15:27 +02004140 i915_hotplug_interrupt_update(dev_priv, 0xffffffff, 0);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004141 I915_WRITE(PORT_HOTPLUG_STAT, I915_READ(PORT_HOTPLUG_STAT));
4142 }
4143
Chris Wilson00d98eb2012-04-24 22:59:48 +01004144 I915_WRITE16(HWSTAM, 0xffff);
Damien Lespiau055e3932014-08-18 13:49:10 +01004145 for_each_pipe(dev_priv, pipe) {
Chris Wilson55b39752012-04-24 22:59:49 +01004146 /* Clear enable bits; then clear status bits */
Chris Wilsona266c7d2012-04-24 22:59:44 +01004147 I915_WRITE(PIPESTAT(pipe), 0);
Chris Wilson55b39752012-04-24 22:59:49 +01004148 I915_WRITE(PIPESTAT(pipe), I915_READ(PIPESTAT(pipe)));
4149 }
Chris Wilsona266c7d2012-04-24 22:59:44 +01004150 I915_WRITE(IMR, 0xffffffff);
4151 I915_WRITE(IER, 0x0);
4152
Chris Wilsona266c7d2012-04-24 22:59:44 +01004153 I915_WRITE(IIR, I915_READ(IIR));
4154}
4155
4156static void i965_irq_preinstall(struct drm_device * dev)
4157{
Jani Nikula2d1013d2014-03-31 14:27:17 +03004158 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsona266c7d2012-04-24 22:59:44 +01004159 int pipe;
4160
Egbert Eich0706f172015-09-23 16:15:27 +02004161 i915_hotplug_interrupt_update(dev_priv, 0xffffffff, 0);
Chris Wilsonadca4732012-05-11 18:01:31 +01004162 I915_WRITE(PORT_HOTPLUG_STAT, I915_READ(PORT_HOTPLUG_STAT));
Chris Wilsona266c7d2012-04-24 22:59:44 +01004163
4164 I915_WRITE(HWSTAM, 0xeffe);
Damien Lespiau055e3932014-08-18 13:49:10 +01004165 for_each_pipe(dev_priv, pipe)
Chris Wilsona266c7d2012-04-24 22:59:44 +01004166 I915_WRITE(PIPESTAT(pipe), 0);
4167 I915_WRITE(IMR, 0xffffffff);
4168 I915_WRITE(IER, 0x0);
4169 POSTING_READ(IER);
4170}
4171
4172static int i965_irq_postinstall(struct drm_device *dev)
4173{
Jani Nikula2d1013d2014-03-31 14:27:17 +03004174 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsonbbba0a92012-04-24 22:59:51 +01004175 u32 enable_mask;
Chris Wilsona266c7d2012-04-24 22:59:44 +01004176 u32 error_mask;
4177
Chris Wilsona266c7d2012-04-24 22:59:44 +01004178 /* Unmask the interrupts that we always want on. */
Chris Wilsonbbba0a92012-04-24 22:59:51 +01004179 dev_priv->irq_mask = ~(I915_ASLE_INTERRUPT |
Chris Wilsonadca4732012-05-11 18:01:31 +01004180 I915_DISPLAY_PORT_INTERRUPT |
Chris Wilsonbbba0a92012-04-24 22:59:51 +01004181 I915_DISPLAY_PIPE_A_EVENT_INTERRUPT |
4182 I915_DISPLAY_PIPE_B_EVENT_INTERRUPT |
4183 I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT |
4184 I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT |
4185 I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT);
4186
4187 enable_mask = ~dev_priv->irq_mask;
Ville Syrjälä21ad8332013-02-19 15:16:39 +02004188 enable_mask &= ~(I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT |
4189 I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT);
Chris Wilsonbbba0a92012-04-24 22:59:51 +01004190 enable_mask |= I915_USER_INTERRUPT;
4191
4192 if (IS_G4X(dev))
4193 enable_mask |= I915_BSD_USER_INTERRUPT;
Chris Wilsona266c7d2012-04-24 22:59:44 +01004194
Daniel Vetterb79480b2013-06-27 17:52:10 +02004195 /* Interrupt setup is already guaranteed to be single-threaded, this is
4196 * just to make the assert_spin_locked check happy. */
Daniel Vetterd6207432014-09-15 14:55:27 +02004197 spin_lock_irq(&dev_priv->irq_lock);
Imre Deak755e9012014-02-10 18:42:47 +02004198 i915_enable_pipestat(dev_priv, PIPE_A, PIPE_GMBUS_INTERRUPT_STATUS);
4199 i915_enable_pipestat(dev_priv, PIPE_A, PIPE_CRC_DONE_INTERRUPT_STATUS);
4200 i915_enable_pipestat(dev_priv, PIPE_B, PIPE_CRC_DONE_INTERRUPT_STATUS);
Daniel Vetterd6207432014-09-15 14:55:27 +02004201 spin_unlock_irq(&dev_priv->irq_lock);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004202
Chris Wilsona266c7d2012-04-24 22:59:44 +01004203 /*
4204 * Enable some error detection, note the instruction error mask
4205 * bit is reserved, so we leave it masked.
4206 */
4207 if (IS_G4X(dev)) {
4208 error_mask = ~(GM45_ERROR_PAGE_TABLE |
4209 GM45_ERROR_MEM_PRIV |
4210 GM45_ERROR_CP_PRIV |
4211 I915_ERROR_MEMORY_REFRESH);
4212 } else {
4213 error_mask = ~(I915_ERROR_PAGE_TABLE |
4214 I915_ERROR_MEMORY_REFRESH);
4215 }
4216 I915_WRITE(EMR, error_mask);
4217
4218 I915_WRITE(IMR, dev_priv->irq_mask);
4219 I915_WRITE(IER, enable_mask);
4220 POSTING_READ(IER);
4221
Egbert Eich0706f172015-09-23 16:15:27 +02004222 i915_hotplug_interrupt_update(dev_priv, 0xffffffff, 0);
Daniel Vetter20afbda2012-12-11 14:05:07 +01004223 POSTING_READ(PORT_HOTPLUG_EN);
4224
Jani Nikulaf49e38d2013-04-29 13:02:54 +03004225 i915_enable_asle_pipestat(dev);
Daniel Vetter20afbda2012-12-11 14:05:07 +01004226
4227 return 0;
4228}
4229
Egbert Eichbac56d52013-02-25 12:06:51 -05004230static void i915_hpd_irq_setup(struct drm_device *dev)
Daniel Vetter20afbda2012-12-11 14:05:07 +01004231{
Jani Nikula2d1013d2014-03-31 14:27:17 +03004232 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter20afbda2012-12-11 14:05:07 +01004233 u32 hotplug_en;
4234
Daniel Vetterb5ea2d52013-06-27 17:52:15 +02004235 assert_spin_locked(&dev_priv->irq_lock);
4236
Ville Syrjälä778eb332015-01-09 14:21:13 +02004237 /* Note HDMI and DP share hotplug bits */
4238 /* enable bits are the same for all generations */
Egbert Eich0706f172015-09-23 16:15:27 +02004239 hotplug_en = intel_hpd_enabled_irqs(dev, hpd_mask_i915);
Ville Syrjälä778eb332015-01-09 14:21:13 +02004240 /* Programming the CRT detection parameters tends
4241 to generate a spurious hotplug event about three
4242 seconds later. So just do it once.
4243 */
4244 if (IS_G4X(dev))
4245 hotplug_en |= CRT_HOTPLUG_ACTIVATION_PERIOD_64;
Ville Syrjälä778eb332015-01-09 14:21:13 +02004246 hotplug_en |= CRT_HOTPLUG_VOLTAGE_COMPARE_50;
Chris Wilsona266c7d2012-04-24 22:59:44 +01004247
Ville Syrjälä778eb332015-01-09 14:21:13 +02004248 /* Ignore TV since it's buggy */
Egbert Eich0706f172015-09-23 16:15:27 +02004249 i915_hotplug_interrupt_update_locked(dev_priv,
Jani Nikulaf9e3dc72015-10-21 17:22:43 +03004250 HOTPLUG_INT_EN_MASK |
4251 CRT_HOTPLUG_VOLTAGE_COMPARE_MASK |
4252 CRT_HOTPLUG_ACTIVATION_PERIOD_64,
4253 hotplug_en);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004254}
4255
Daniel Vetterff1f5252012-10-02 15:10:55 +02004256static irqreturn_t i965_irq_handler(int irq, void *arg)
Chris Wilsona266c7d2012-04-24 22:59:44 +01004257{
Daniel Vetter45a83f82014-05-12 19:17:55 +02004258 struct drm_device *dev = arg;
Jani Nikula2d1013d2014-03-31 14:27:17 +03004259 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsona266c7d2012-04-24 22:59:44 +01004260 u32 iir, new_iir;
4261 u32 pipe_stats[I915_MAX_PIPES];
Chris Wilsona266c7d2012-04-24 22:59:44 +01004262 int ret = IRQ_NONE, pipe;
Ville Syrjälä21ad8332013-02-19 15:16:39 +02004263 u32 flip_mask =
4264 I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT |
4265 I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT;
Chris Wilsona266c7d2012-04-24 22:59:44 +01004266
Imre Deak2dd2a882015-02-24 11:14:30 +02004267 if (!intel_irqs_enabled(dev_priv))
4268 return IRQ_NONE;
4269
Chris Wilsona266c7d2012-04-24 22:59:44 +01004270 iir = I915_READ(IIR);
4271
Chris Wilsona266c7d2012-04-24 22:59:44 +01004272 for (;;) {
Ville Syrjälä501e01d2014-01-17 11:35:15 +02004273 bool irq_received = (iir & ~flip_mask) != 0;
Chris Wilson2c8ba292012-04-24 22:59:46 +01004274 bool blc_event = false;
4275
Chris Wilsona266c7d2012-04-24 22:59:44 +01004276 /* Can't rely on pipestat interrupt bit in iir as it might
4277 * have been cleared after the pipestat interrupt was received.
4278 * It doesn't set the bit in iir again, but it still produces
4279 * interrupts (for non-MSI).
4280 */
Daniel Vetter222c7f52014-09-15 14:55:28 +02004281 spin_lock(&dev_priv->irq_lock);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004282 if (iir & I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT)
Daniel Vetteraaecdf62014-11-04 15:52:22 +01004283 DRM_DEBUG("Command parser error, iir 0x%08x\n", iir);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004284
Damien Lespiau055e3932014-08-18 13:49:10 +01004285 for_each_pipe(dev_priv, pipe) {
Ville Syrjäläf0f59a02015-11-18 15:33:26 +02004286 i915_reg_t reg = PIPESTAT(pipe);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004287 pipe_stats[pipe] = I915_READ(reg);
4288
4289 /*
4290 * Clear the PIPE*STAT regs before the IIR
4291 */
4292 if (pipe_stats[pipe] & 0x8000ffff) {
Chris Wilsona266c7d2012-04-24 22:59:44 +01004293 I915_WRITE(reg, pipe_stats[pipe]);
Ville Syrjälä501e01d2014-01-17 11:35:15 +02004294 irq_received = true;
Chris Wilsona266c7d2012-04-24 22:59:44 +01004295 }
4296 }
Daniel Vetter222c7f52014-09-15 14:55:28 +02004297 spin_unlock(&dev_priv->irq_lock);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004298
4299 if (!irq_received)
4300 break;
4301
4302 ret = IRQ_HANDLED;
4303
4304 /* Consume port. Then clear IIR or we'll miss events */
Ville Syrjälä16c6c562014-04-01 10:54:36 +03004305 if (iir & I915_DISPLAY_PORT_INTERRUPT)
4306 i9xx_hpd_irq_handler(dev);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004307
Ville Syrjälä21ad8332013-02-19 15:16:39 +02004308 I915_WRITE(IIR, iir & ~flip_mask);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004309 new_iir = I915_READ(IIR); /* Flush posted writes */
4310
Chris Wilsona266c7d2012-04-24 22:59:44 +01004311 if (iir & I915_USER_INTERRUPT)
Chris Wilson74cdb332015-04-07 16:21:05 +01004312 notify_ring(&dev_priv->ring[RCS]);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004313 if (iir & I915_BSD_USER_INTERRUPT)
Chris Wilson74cdb332015-04-07 16:21:05 +01004314 notify_ring(&dev_priv->ring[VCS]);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004315
Damien Lespiau055e3932014-08-18 13:49:10 +01004316 for_each_pipe(dev_priv, pipe) {
Chris Wilson2c8ba292012-04-24 22:59:46 +01004317 if (pipe_stats[pipe] & PIPE_START_VBLANK_INTERRUPT_STATUS &&
Ville Syrjälä90a72f82013-02-19 23:16:44 +02004318 i915_handle_vblank(dev, pipe, pipe, iir))
4319 flip_mask &= ~DISPLAY_PLANE_FLIP_PENDING(pipe);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004320
4321 if (pipe_stats[pipe] & PIPE_LEGACY_BLC_EVENT_STATUS)
4322 blc_event = true;
Daniel Vetter4356d582013-10-16 22:55:55 +02004323
4324 if (pipe_stats[pipe] & PIPE_CRC_DONE_INTERRUPT_STATUS)
Daniel Vetter277de952013-10-18 16:37:07 +02004325 i9xx_pipe_crc_irq_handler(dev, pipe);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004326
Daniel Vetter1f7247c2014-09-30 10:56:48 +02004327 if (pipe_stats[pipe] & PIPE_FIFO_UNDERRUN_STATUS)
4328 intel_cpu_fifo_underrun_irq_handler(dev_priv, pipe);
Ville Syrjälä2d9d2b02014-01-17 11:44:31 +02004329 }
Chris Wilsona266c7d2012-04-24 22:59:44 +01004330
4331 if (blc_event || (iir & I915_ASLE_INTERRUPT))
4332 intel_opregion_asle_intr(dev);
4333
Daniel Vetter515ac2b2012-12-01 13:53:44 +01004334 if (pipe_stats[0] & PIPE_GMBUS_INTERRUPT_STATUS)
4335 gmbus_irq_handler(dev);
4336
Chris Wilsona266c7d2012-04-24 22:59:44 +01004337 /* With MSI, interrupts are only generated when iir
4338 * transitions from zero to nonzero. If another bit got
4339 * set while we were handling the existing iir bits, then
4340 * we would never get another interrupt.
4341 *
4342 * This is fine on non-MSI as well, as if we hit this path
4343 * we avoid exiting the interrupt handler only to generate
4344 * another one.
4345 *
4346 * Note that for MSI this could cause a stray interrupt report
4347 * if an interrupt landed in the time between writing IIR and
4348 * the posting read. This should be rare enough to never
4349 * trigger the 99% of 100,000 interrupts test for disabling
4350 * stray interrupts.
4351 */
4352 iir = new_iir;
4353 }
4354
4355 return ret;
4356}
4357
4358static void i965_irq_uninstall(struct drm_device * dev)
4359{
Jani Nikula2d1013d2014-03-31 14:27:17 +03004360 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsona266c7d2012-04-24 22:59:44 +01004361 int pipe;
4362
4363 if (!dev_priv)
4364 return;
4365
Egbert Eich0706f172015-09-23 16:15:27 +02004366 i915_hotplug_interrupt_update(dev_priv, 0xffffffff, 0);
Chris Wilsonadca4732012-05-11 18:01:31 +01004367 I915_WRITE(PORT_HOTPLUG_STAT, I915_READ(PORT_HOTPLUG_STAT));
Chris Wilsona266c7d2012-04-24 22:59:44 +01004368
4369 I915_WRITE(HWSTAM, 0xffffffff);
Damien Lespiau055e3932014-08-18 13:49:10 +01004370 for_each_pipe(dev_priv, pipe)
Chris Wilsona266c7d2012-04-24 22:59:44 +01004371 I915_WRITE(PIPESTAT(pipe), 0);
4372 I915_WRITE(IMR, 0xffffffff);
4373 I915_WRITE(IER, 0x0);
4374
Damien Lespiau055e3932014-08-18 13:49:10 +01004375 for_each_pipe(dev_priv, pipe)
Chris Wilsona266c7d2012-04-24 22:59:44 +01004376 I915_WRITE(PIPESTAT(pipe),
4377 I915_READ(PIPESTAT(pipe)) & 0x8000ffff);
4378 I915_WRITE(IIR, I915_READ(IIR));
4379}
4380
Daniel Vetterfca52a52014-09-30 10:56:45 +02004381/**
4382 * intel_irq_init - initializes irq support
4383 * @dev_priv: i915 device instance
4384 *
4385 * This function initializes all the irq support including work items, timers
4386 * and all the vtables. It does not setup the interrupt itself though.
4387 */
Daniel Vetterb9632912014-09-30 10:56:44 +02004388void intel_irq_init(struct drm_i915_private *dev_priv)
Jesse Barnesf71d4af2011-06-28 13:00:41 -07004389{
Daniel Vetterb9632912014-09-30 10:56:44 +02004390 struct drm_device *dev = dev_priv->dev;
Chris Wilson8b2e3262012-04-24 22:59:41 +01004391
Jani Nikula77913b32015-06-18 13:06:16 +03004392 intel_hpd_init_work(dev_priv);
4393
Daniel Vetterc6a828d2012-08-08 23:35:35 +02004394 INIT_WORK(&dev_priv->rps.work, gen6_pm_rps_work);
Daniel Vettera4da4fa2012-11-02 19:55:07 +01004395 INIT_WORK(&dev_priv->l3_parity.error_work, ivybridge_parity_work);
Chris Wilson8b2e3262012-04-24 22:59:41 +01004396
Deepak Sa6706b42014-03-15 20:23:22 +05304397 /* Let's track the enabled rps events */
Daniel Vetterb9632912014-09-30 10:56:44 +02004398 if (IS_VALLEYVIEW(dev_priv) && !IS_CHERRYVIEW(dev_priv))
Ville Syrjälä6c65a582014-08-29 14:14:07 +03004399 /* WaGsvRC0ResidencyMethod:vlv */
Chris Wilson6f4b12f82015-03-18 09:48:23 +00004400 dev_priv->pm_rps_events = GEN6_PM_RP_DOWN_EI_EXPIRED | GEN6_PM_RP_UP_EI_EXPIRED;
Deepak S31685c22014-07-03 17:33:01 -04004401 else
4402 dev_priv->pm_rps_events = GEN6_PM_RPS_EVENTS;
Deepak Sa6706b42014-03-15 20:23:22 +05304403
Chris Wilson737b1502015-01-26 18:03:03 +02004404 INIT_DELAYED_WORK(&dev_priv->gpu_error.hangcheck_work,
4405 i915_hangcheck_elapsed);
Daniel Vetter61bac782012-12-01 21:03:21 +01004406
Tomas Janousek97a19a22012-12-08 13:48:13 +01004407 pm_qos_add_request(&dev_priv->pm_qos, PM_QOS_CPU_DMA_LATENCY, PM_QOS_DEFAULT_VALUE);
Daniel Vetter9ee32fea2012-12-01 13:53:48 +01004408
Daniel Vetterb9632912014-09-30 10:56:44 +02004409 if (IS_GEN2(dev_priv)) {
Ville Syrjälä4cdb83e2013-10-11 21:52:44 +03004410 dev->max_vblank_count = 0;
4411 dev->driver->get_vblank_counter = i8xx_get_vblank_counter;
Daniel Vetterb9632912014-09-30 10:56:44 +02004412 } else if (IS_G4X(dev_priv) || INTEL_INFO(dev_priv)->gen >= 5) {
Jesse Barnesf71d4af2011-06-28 13:00:41 -07004413 dev->max_vblank_count = 0xffffffff; /* full 32 bit counter */
Ville Syrjäläfd8f5072015-09-18 20:03:42 +03004414 dev->driver->get_vblank_counter = g4x_get_vblank_counter;
Ville Syrjälä391f75e2013-09-25 19:55:26 +03004415 } else {
4416 dev->driver->get_vblank_counter = i915_get_vblank_counter;
4417 dev->max_vblank_count = 0xffffff; /* only 24 bits of frame count */
Jesse Barnesf71d4af2011-06-28 13:00:41 -07004418 }
4419
Ville Syrjälä21da2702014-08-06 14:49:55 +03004420 /*
4421 * Opt out of the vblank disable timer on everything except gen2.
4422 * Gen2 doesn't have a hardware frame counter and so depends on
4423 * vblank interrupts to produce sane vblank seuquence numbers.
4424 */
Daniel Vetterb9632912014-09-30 10:56:44 +02004425 if (!IS_GEN2(dev_priv))
Ville Syrjälä21da2702014-08-06 14:49:55 +03004426 dev->vblank_disable_immediate = true;
4427
Daniel Vetterf3a5c3f2015-02-13 21:03:44 +01004428 dev->driver->get_vblank_timestamp = i915_get_vblank_timestamp;
4429 dev->driver->get_scanout_position = i915_get_crtc_scanoutpos;
Jesse Barnesf71d4af2011-06-28 13:00:41 -07004430
Daniel Vetterb9632912014-09-30 10:56:44 +02004431 if (IS_CHERRYVIEW(dev_priv)) {
Ville Syrjälä43f328d2014-04-09 20:40:52 +03004432 dev->driver->irq_handler = cherryview_irq_handler;
4433 dev->driver->irq_preinstall = cherryview_irq_preinstall;
4434 dev->driver->irq_postinstall = cherryview_irq_postinstall;
4435 dev->driver->irq_uninstall = cherryview_irq_uninstall;
4436 dev->driver->enable_vblank = valleyview_enable_vblank;
4437 dev->driver->disable_vblank = valleyview_disable_vblank;
4438 dev_priv->display.hpd_irq_setup = i915_hpd_irq_setup;
Daniel Vetterb9632912014-09-30 10:56:44 +02004439 } else if (IS_VALLEYVIEW(dev_priv)) {
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07004440 dev->driver->irq_handler = valleyview_irq_handler;
4441 dev->driver->irq_preinstall = valleyview_irq_preinstall;
4442 dev->driver->irq_postinstall = valleyview_irq_postinstall;
4443 dev->driver->irq_uninstall = valleyview_irq_uninstall;
4444 dev->driver->enable_vblank = valleyview_enable_vblank;
4445 dev->driver->disable_vblank = valleyview_disable_vblank;
Egbert Eichfa00abe2013-02-25 12:06:48 -05004446 dev_priv->display.hpd_irq_setup = i915_hpd_irq_setup;
Daniel Vetterb9632912014-09-30 10:56:44 +02004447 } else if (INTEL_INFO(dev_priv)->gen >= 8) {
Ben Widawskyabd58f02013-11-02 21:07:09 -07004448 dev->driver->irq_handler = gen8_irq_handler;
Daniel Vetter723761b2014-05-22 17:56:34 +02004449 dev->driver->irq_preinstall = gen8_irq_reset;
Ben Widawskyabd58f02013-11-02 21:07:09 -07004450 dev->driver->irq_postinstall = gen8_irq_postinstall;
4451 dev->driver->irq_uninstall = gen8_irq_uninstall;
4452 dev->driver->enable_vblank = gen8_enable_vblank;
4453 dev->driver->disable_vblank = gen8_disable_vblank;
Ville Syrjälä6dbf30c2015-08-27 23:56:02 +03004454 if (IS_BROXTON(dev))
Shashank Sharmae0a20ad2015-03-27 14:54:14 +02004455 dev_priv->display.hpd_irq_setup = bxt_hpd_irq_setup;
Ville Syrjälä6dbf30c2015-08-27 23:56:02 +03004456 else if (HAS_PCH_SPT(dev))
4457 dev_priv->display.hpd_irq_setup = spt_hpd_irq_setup;
4458 else
Ville Syrjälä3a3b3c72015-08-27 23:56:06 +03004459 dev_priv->display.hpd_irq_setup = ilk_hpd_irq_setup;
Jesse Barnesf71d4af2011-06-28 13:00:41 -07004460 } else if (HAS_PCH_SPLIT(dev)) {
4461 dev->driver->irq_handler = ironlake_irq_handler;
Daniel Vetter723761b2014-05-22 17:56:34 +02004462 dev->driver->irq_preinstall = ironlake_irq_reset;
Jesse Barnesf71d4af2011-06-28 13:00:41 -07004463 dev->driver->irq_postinstall = ironlake_irq_postinstall;
4464 dev->driver->irq_uninstall = ironlake_irq_uninstall;
4465 dev->driver->enable_vblank = ironlake_enable_vblank;
4466 dev->driver->disable_vblank = ironlake_disable_vblank;
Ville Syrjälä23bb4cb2015-08-27 23:56:04 +03004467 dev_priv->display.hpd_irq_setup = ilk_hpd_irq_setup;
Jesse Barnesf71d4af2011-06-28 13:00:41 -07004468 } else {
Daniel Vetterb9632912014-09-30 10:56:44 +02004469 if (INTEL_INFO(dev_priv)->gen == 2) {
Chris Wilsonc2798b12012-04-22 21:13:57 +01004470 dev->driver->irq_preinstall = i8xx_irq_preinstall;
4471 dev->driver->irq_postinstall = i8xx_irq_postinstall;
4472 dev->driver->irq_handler = i8xx_irq_handler;
4473 dev->driver->irq_uninstall = i8xx_irq_uninstall;
Daniel Vetterb9632912014-09-30 10:56:44 +02004474 } else if (INTEL_INFO(dev_priv)->gen == 3) {
Chris Wilsona266c7d2012-04-24 22:59:44 +01004475 dev->driver->irq_preinstall = i915_irq_preinstall;
4476 dev->driver->irq_postinstall = i915_irq_postinstall;
4477 dev->driver->irq_uninstall = i915_irq_uninstall;
4478 dev->driver->irq_handler = i915_irq_handler;
Chris Wilsonc2798b12012-04-22 21:13:57 +01004479 } else {
Chris Wilsona266c7d2012-04-24 22:59:44 +01004480 dev->driver->irq_preinstall = i965_irq_preinstall;
4481 dev->driver->irq_postinstall = i965_irq_postinstall;
4482 dev->driver->irq_uninstall = i965_irq_uninstall;
4483 dev->driver->irq_handler = i965_irq_handler;
Chris Wilsonc2798b12012-04-22 21:13:57 +01004484 }
Ville Syrjälä778eb332015-01-09 14:21:13 +02004485 if (I915_HAS_HOTPLUG(dev_priv))
4486 dev_priv->display.hpd_irq_setup = i915_hpd_irq_setup;
Jesse Barnesf71d4af2011-06-28 13:00:41 -07004487 dev->driver->enable_vblank = i915_enable_vblank;
4488 dev->driver->disable_vblank = i915_disable_vblank;
4489 }
4490}
Daniel Vetter20afbda2012-12-11 14:05:07 +01004491
Daniel Vetterfca52a52014-09-30 10:56:45 +02004492/**
Daniel Vetterfca52a52014-09-30 10:56:45 +02004493 * intel_irq_install - enables the hardware interrupt
4494 * @dev_priv: i915 device instance
4495 *
4496 * This function enables the hardware interrupt handling, but leaves the hotplug
4497 * handling still disabled. It is called after intel_irq_init().
4498 *
4499 * In the driver load and resume code we need working interrupts in a few places
4500 * but don't want to deal with the hassle of concurrent probe and hotplug
4501 * workers. Hence the split into this two-stage approach.
4502 */
Daniel Vetter2aeb7d32014-09-30 10:56:43 +02004503int intel_irq_install(struct drm_i915_private *dev_priv)
4504{
4505 /*
4506 * We enable some interrupt sources in our postinstall hooks, so mark
4507 * interrupts as enabled _before_ actually enabling them to avoid
4508 * special cases in our ordering checks.
4509 */
4510 dev_priv->pm.irqs_enabled = true;
4511
4512 return drm_irq_install(dev_priv->dev, dev_priv->dev->pdev->irq);
4513}
4514
Daniel Vetterfca52a52014-09-30 10:56:45 +02004515/**
4516 * intel_irq_uninstall - finilizes all irq handling
4517 * @dev_priv: i915 device instance
4518 *
4519 * This stops interrupt and hotplug handling and unregisters and frees all
4520 * resources acquired in the init functions.
4521 */
Daniel Vetter2aeb7d32014-09-30 10:56:43 +02004522void intel_irq_uninstall(struct drm_i915_private *dev_priv)
4523{
4524 drm_irq_uninstall(dev_priv->dev);
4525 intel_hpd_cancel_work(dev_priv);
4526 dev_priv->pm.irqs_enabled = false;
4527}
4528
Daniel Vetterfca52a52014-09-30 10:56:45 +02004529/**
4530 * intel_runtime_pm_disable_interrupts - runtime interrupt disabling
4531 * @dev_priv: i915 device instance
4532 *
4533 * This function is used to disable interrupts at runtime, both in the runtime
4534 * pm and the system suspend/resume code.
4535 */
Daniel Vetterb9632912014-09-30 10:56:44 +02004536void intel_runtime_pm_disable_interrupts(struct drm_i915_private *dev_priv)
Paulo Zanonic67a4702013-08-19 13:18:09 -03004537{
Daniel Vetterb9632912014-09-30 10:56:44 +02004538 dev_priv->dev->driver->irq_uninstall(dev_priv->dev);
Daniel Vetter2aeb7d32014-09-30 10:56:43 +02004539 dev_priv->pm.irqs_enabled = false;
Imre Deak2dd2a882015-02-24 11:14:30 +02004540 synchronize_irq(dev_priv->dev->irq);
Paulo Zanonic67a4702013-08-19 13:18:09 -03004541}
4542
Daniel Vetterfca52a52014-09-30 10:56:45 +02004543/**
4544 * intel_runtime_pm_enable_interrupts - runtime interrupt enabling
4545 * @dev_priv: i915 device instance
4546 *
4547 * This function is used to enable interrupts at runtime, both in the runtime
4548 * pm and the system suspend/resume code.
4549 */
Daniel Vetterb9632912014-09-30 10:56:44 +02004550void intel_runtime_pm_enable_interrupts(struct drm_i915_private *dev_priv)
Paulo Zanonic67a4702013-08-19 13:18:09 -03004551{
Daniel Vetter2aeb7d32014-09-30 10:56:43 +02004552 dev_priv->pm.irqs_enabled = true;
Daniel Vetterb9632912014-09-30 10:56:44 +02004553 dev_priv->dev->driver->irq_preinstall(dev_priv->dev);
4554 dev_priv->dev->driver->irq_postinstall(dev_priv->dev);
Paulo Zanonic67a4702013-08-19 13:18:09 -03004555}