blob: 6a4f389ff2f51cb9ac25e8a3f2a90a2add35bfc8 [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
Egbert Eiche5868a32013-02-28 04:17:12 -050040static const u32 hpd_ibx[] = {
41 [HPD_CRT] = SDE_CRT_HOTPLUG,
42 [HPD_SDVO_B] = SDE_SDVOB_HOTPLUG,
43 [HPD_PORT_B] = SDE_PORTB_HOTPLUG,
44 [HPD_PORT_C] = SDE_PORTC_HOTPLUG,
45 [HPD_PORT_D] = SDE_PORTD_HOTPLUG
46};
47
48static const u32 hpd_cpt[] = {
49 [HPD_CRT] = SDE_CRT_HOTPLUG_CPT,
Daniel Vetter73c352a2013-03-26 22:38:43 +010050 [HPD_SDVO_B] = SDE_SDVOB_HOTPLUG_CPT,
Egbert Eiche5868a32013-02-28 04:17:12 -050051 [HPD_PORT_B] = SDE_PORTB_HOTPLUG_CPT,
52 [HPD_PORT_C] = SDE_PORTC_HOTPLUG_CPT,
53 [HPD_PORT_D] = SDE_PORTD_HOTPLUG_CPT
54};
55
56static const u32 hpd_mask_i915[] = {
57 [HPD_CRT] = CRT_HOTPLUG_INT_EN,
58 [HPD_SDVO_B] = SDVOB_HOTPLUG_INT_EN,
59 [HPD_SDVO_C] = SDVOC_HOTPLUG_INT_EN,
60 [HPD_PORT_B] = PORTB_HOTPLUG_INT_EN,
61 [HPD_PORT_C] = PORTC_HOTPLUG_INT_EN,
62 [HPD_PORT_D] = PORTD_HOTPLUG_INT_EN
63};
64
Daniel Vetter704cfb82013-12-18 09:08:43 +010065static const u32 hpd_status_g4x[] = {
Egbert Eiche5868a32013-02-28 04:17:12 -050066 [HPD_CRT] = CRT_HOTPLUG_INT_STATUS,
67 [HPD_SDVO_B] = SDVOB_HOTPLUG_INT_STATUS_G4X,
68 [HPD_SDVO_C] = SDVOC_HOTPLUG_INT_STATUS_G4X,
69 [HPD_PORT_B] = PORTB_HOTPLUG_INT_STATUS,
70 [HPD_PORT_C] = PORTC_HOTPLUG_INT_STATUS,
71 [HPD_PORT_D] = PORTD_HOTPLUG_INT_STATUS
72};
73
Egbert Eiche5868a32013-02-28 04:17:12 -050074static const u32 hpd_status_i915[] = { /* i915 and valleyview are the same */
75 [HPD_CRT] = CRT_HOTPLUG_INT_STATUS,
76 [HPD_SDVO_B] = SDVOB_HOTPLUG_INT_STATUS_I915,
77 [HPD_SDVO_C] = SDVOC_HOTPLUG_INT_STATUS_I915,
78 [HPD_PORT_B] = PORTB_HOTPLUG_INT_STATUS,
79 [HPD_PORT_C] = PORTC_HOTPLUG_INT_STATUS,
80 [HPD_PORT_D] = PORTD_HOTPLUG_INT_STATUS
81};
82
Paulo Zanoni5c502442014-04-01 15:37:11 -030083/* IIR can theoretically queue up two events. Be paranoid. */
Paulo Zanonif86f3fb2014-04-01 15:37:14 -030084#define GEN8_IRQ_RESET_NDX(type, which) do { \
Paulo Zanoni5c502442014-04-01 15:37:11 -030085 I915_WRITE(GEN8_##type##_IMR(which), 0xffffffff); \
86 POSTING_READ(GEN8_##type##_IMR(which)); \
87 I915_WRITE(GEN8_##type##_IER(which), 0); \
88 I915_WRITE(GEN8_##type##_IIR(which), 0xffffffff); \
89 POSTING_READ(GEN8_##type##_IIR(which)); \
90 I915_WRITE(GEN8_##type##_IIR(which), 0xffffffff); \
91 POSTING_READ(GEN8_##type##_IIR(which)); \
92} while (0)
93
Paulo Zanonif86f3fb2014-04-01 15:37:14 -030094#define GEN5_IRQ_RESET(type) do { \
Paulo Zanonia9d356a2014-04-01 15:37:09 -030095 I915_WRITE(type##IMR, 0xffffffff); \
Paulo Zanoni5c502442014-04-01 15:37:11 -030096 POSTING_READ(type##IMR); \
Paulo Zanonia9d356a2014-04-01 15:37:09 -030097 I915_WRITE(type##IER, 0); \
Paulo Zanoni5c502442014-04-01 15:37:11 -030098 I915_WRITE(type##IIR, 0xffffffff); \
99 POSTING_READ(type##IIR); \
100 I915_WRITE(type##IIR, 0xffffffff); \
101 POSTING_READ(type##IIR); \
Paulo Zanonia9d356a2014-04-01 15:37:09 -0300102} while (0)
103
Paulo Zanoni337ba012014-04-01 15:37:16 -0300104/*
105 * We should clear IMR at preinstall/uninstall, and just check at postinstall.
106 */
107#define GEN5_ASSERT_IIR_IS_ZERO(reg) do { \
108 u32 val = I915_READ(reg); \
109 if (val) { \
110 WARN(1, "Interrupt register 0x%x is not zero: 0x%08x\n", \
111 (reg), val); \
112 I915_WRITE((reg), 0xffffffff); \
113 POSTING_READ(reg); \
114 I915_WRITE((reg), 0xffffffff); \
115 POSTING_READ(reg); \
116 } \
117} while (0)
118
Paulo Zanoni35079892014-04-01 15:37:15 -0300119#define GEN8_IRQ_INIT_NDX(type, which, imr_val, ier_val) do { \
Paulo Zanoni337ba012014-04-01 15:37:16 -0300120 GEN5_ASSERT_IIR_IS_ZERO(GEN8_##type##_IIR(which)); \
Paulo Zanoni35079892014-04-01 15:37:15 -0300121 I915_WRITE(GEN8_##type##_IMR(which), (imr_val)); \
122 I915_WRITE(GEN8_##type##_IER(which), (ier_val)); \
123 POSTING_READ(GEN8_##type##_IER(which)); \
124} while (0)
125
126#define GEN5_IRQ_INIT(type, imr_val, ier_val) do { \
Paulo Zanoni337ba012014-04-01 15:37:16 -0300127 GEN5_ASSERT_IIR_IS_ZERO(type##IIR); \
Paulo Zanoni35079892014-04-01 15:37:15 -0300128 I915_WRITE(type##IMR, (imr_val)); \
129 I915_WRITE(type##IER, (ier_val)); \
130 POSTING_READ(type##IER); \
131} while (0)
132
Zhenyu Wang036a4a72009-06-08 14:40:19 +0800133/* For display hotplug interrupt */
Chris Wilson995b6762010-08-20 13:23:26 +0100134static void
Jani Nikula2d1013d2014-03-31 14:27:17 +0300135ironlake_enable_display_irq(struct drm_i915_private *dev_priv, u32 mask)
Zhenyu Wang036a4a72009-06-08 14:40:19 +0800136{
Daniel Vetter4bc9d432013-06-27 13:44:58 +0200137 assert_spin_locked(&dev_priv->irq_lock);
138
Jesse Barnes9df7575f2014-06-20 09:29:20 -0700139 if (WARN_ON(!intel_irqs_enabled(dev_priv)))
Paulo Zanonic67a4702013-08-19 13:18:09 -0300140 return;
Paulo Zanonic67a4702013-08-19 13:18:09 -0300141
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000142 if ((dev_priv->irq_mask & mask) != 0) {
143 dev_priv->irq_mask &= ~mask;
144 I915_WRITE(DEIMR, dev_priv->irq_mask);
Chris Wilson3143a2b2010-11-16 15:55:10 +0000145 POSTING_READ(DEIMR);
Zhenyu Wang036a4a72009-06-08 14:40:19 +0800146 }
147}
148
Paulo Zanoni0ff98002013-02-22 17:05:31 -0300149static void
Jani Nikula2d1013d2014-03-31 14:27:17 +0300150ironlake_disable_display_irq(struct drm_i915_private *dev_priv, u32 mask)
Zhenyu Wang036a4a72009-06-08 14:40:19 +0800151{
Daniel Vetter4bc9d432013-06-27 13:44:58 +0200152 assert_spin_locked(&dev_priv->irq_lock);
153
Paulo Zanoni06ffc772014-07-17 17:43:46 -0300154 if (WARN_ON(!intel_irqs_enabled(dev_priv)))
Paulo Zanonic67a4702013-08-19 13:18:09 -0300155 return;
Paulo Zanonic67a4702013-08-19 13:18:09 -0300156
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000157 if ((dev_priv->irq_mask & mask) != mask) {
158 dev_priv->irq_mask |= mask;
159 I915_WRITE(DEIMR, dev_priv->irq_mask);
Chris Wilson3143a2b2010-11-16 15:55:10 +0000160 POSTING_READ(DEIMR);
Zhenyu Wang036a4a72009-06-08 14:40:19 +0800161 }
162}
163
Paulo Zanoni43eaea12013-08-06 18:57:12 -0300164/**
165 * ilk_update_gt_irq - update GTIMR
166 * @dev_priv: driver private
167 * @interrupt_mask: mask of interrupt bits to update
168 * @enabled_irq_mask: mask of interrupt bits to enable
169 */
170static void ilk_update_gt_irq(struct drm_i915_private *dev_priv,
171 uint32_t interrupt_mask,
172 uint32_t enabled_irq_mask)
173{
174 assert_spin_locked(&dev_priv->irq_lock);
175
Jesse Barnes9df7575f2014-06-20 09:29:20 -0700176 if (WARN_ON(!intel_irqs_enabled(dev_priv)))
Paulo Zanonic67a4702013-08-19 13:18:09 -0300177 return;
Paulo Zanonic67a4702013-08-19 13:18:09 -0300178
Paulo Zanoni43eaea12013-08-06 18:57:12 -0300179 dev_priv->gt_irq_mask &= ~interrupt_mask;
180 dev_priv->gt_irq_mask |= (~enabled_irq_mask & interrupt_mask);
181 I915_WRITE(GTIMR, dev_priv->gt_irq_mask);
182 POSTING_READ(GTIMR);
183}
184
Daniel Vetter480c8032014-07-16 09:49:40 +0200185void gen5_enable_gt_irq(struct drm_i915_private *dev_priv, uint32_t mask)
Paulo Zanoni43eaea12013-08-06 18:57:12 -0300186{
187 ilk_update_gt_irq(dev_priv, mask, mask);
188}
189
Daniel Vetter480c8032014-07-16 09:49:40 +0200190void gen5_disable_gt_irq(struct drm_i915_private *dev_priv, uint32_t mask)
Paulo Zanoni43eaea12013-08-06 18:57:12 -0300191{
192 ilk_update_gt_irq(dev_priv, mask, 0);
193}
194
Paulo Zanoniedbfdb42013-08-06 18:57:13 -0300195/**
196 * snb_update_pm_irq - update GEN6_PMIMR
197 * @dev_priv: driver private
198 * @interrupt_mask: mask of interrupt bits to update
199 * @enabled_irq_mask: mask of interrupt bits to enable
200 */
201static void snb_update_pm_irq(struct drm_i915_private *dev_priv,
202 uint32_t interrupt_mask,
203 uint32_t enabled_irq_mask)
204{
Paulo Zanoni605cd252013-08-06 18:57:15 -0300205 uint32_t new_val;
Paulo Zanoniedbfdb42013-08-06 18:57:13 -0300206
207 assert_spin_locked(&dev_priv->irq_lock);
208
Jesse Barnes9df7575f2014-06-20 09:29:20 -0700209 if (WARN_ON(!intel_irqs_enabled(dev_priv)))
Paulo Zanonic67a4702013-08-19 13:18:09 -0300210 return;
Paulo Zanonic67a4702013-08-19 13:18:09 -0300211
Paulo Zanoni605cd252013-08-06 18:57:15 -0300212 new_val = dev_priv->pm_irq_mask;
Paulo Zanonif52ecbc2013-08-06 18:57:14 -0300213 new_val &= ~interrupt_mask;
214 new_val |= (~enabled_irq_mask & interrupt_mask);
215
Paulo Zanoni605cd252013-08-06 18:57:15 -0300216 if (new_val != dev_priv->pm_irq_mask) {
217 dev_priv->pm_irq_mask = new_val;
218 I915_WRITE(GEN6_PMIMR, dev_priv->pm_irq_mask);
Paulo Zanonif52ecbc2013-08-06 18:57:14 -0300219 POSTING_READ(GEN6_PMIMR);
220 }
Paulo Zanoniedbfdb42013-08-06 18:57:13 -0300221}
222
Daniel Vetter480c8032014-07-16 09:49:40 +0200223void gen6_enable_pm_irq(struct drm_i915_private *dev_priv, uint32_t mask)
Paulo Zanoniedbfdb42013-08-06 18:57:13 -0300224{
225 snb_update_pm_irq(dev_priv, mask, mask);
226}
227
Daniel Vetter480c8032014-07-16 09:49:40 +0200228void gen6_disable_pm_irq(struct drm_i915_private *dev_priv, uint32_t mask)
Paulo Zanoniedbfdb42013-08-06 18:57:13 -0300229{
230 snb_update_pm_irq(dev_priv, mask, 0);
231}
232
Paulo Zanoni86642812013-04-12 17:57:57 -0300233static bool ivb_can_enable_err_int(struct drm_device *dev)
234{
235 struct drm_i915_private *dev_priv = dev->dev_private;
236 struct intel_crtc *crtc;
237 enum pipe pipe;
238
Daniel Vetter4bc9d432013-06-27 13:44:58 +0200239 assert_spin_locked(&dev_priv->irq_lock);
240
Damien Lespiau055e3932014-08-18 13:49:10 +0100241 for_each_pipe(dev_priv, pipe) {
Paulo Zanoni86642812013-04-12 17:57:57 -0300242 crtc = to_intel_crtc(dev_priv->pipe_to_crtc_mapping[pipe]);
243
244 if (crtc->cpu_fifo_underrun_disabled)
245 return false;
246 }
247
248 return true;
249}
250
Ben Widawsky09610212014-05-15 20:58:08 +0300251/**
252 * bdw_update_pm_irq - update GT interrupt 2
253 * @dev_priv: driver private
254 * @interrupt_mask: mask of interrupt bits to update
255 * @enabled_irq_mask: mask of interrupt bits to enable
256 *
257 * Copied from the snb function, updated with relevant register offsets
258 */
259static void bdw_update_pm_irq(struct drm_i915_private *dev_priv,
260 uint32_t interrupt_mask,
261 uint32_t enabled_irq_mask)
262{
263 uint32_t new_val;
264
265 assert_spin_locked(&dev_priv->irq_lock);
266
Jesse Barnes9df7575f2014-06-20 09:29:20 -0700267 if (WARN_ON(!intel_irqs_enabled(dev_priv)))
Ben Widawsky09610212014-05-15 20:58:08 +0300268 return;
269
270 new_val = dev_priv->pm_irq_mask;
271 new_val &= ~interrupt_mask;
272 new_val |= (~enabled_irq_mask & interrupt_mask);
273
274 if (new_val != dev_priv->pm_irq_mask) {
275 dev_priv->pm_irq_mask = new_val;
276 I915_WRITE(GEN8_GT_IMR(2), dev_priv->pm_irq_mask);
277 POSTING_READ(GEN8_GT_IMR(2));
278 }
279}
280
Daniel Vetter480c8032014-07-16 09:49:40 +0200281void gen8_enable_pm_irq(struct drm_i915_private *dev_priv, uint32_t mask)
Ben Widawsky09610212014-05-15 20:58:08 +0300282{
283 bdw_update_pm_irq(dev_priv, mask, mask);
284}
285
Daniel Vetter480c8032014-07-16 09:49:40 +0200286void gen8_disable_pm_irq(struct drm_i915_private *dev_priv, uint32_t mask)
Ben Widawsky09610212014-05-15 20:58:08 +0300287{
288 bdw_update_pm_irq(dev_priv, mask, 0);
289}
290
Paulo Zanoni86642812013-04-12 17:57:57 -0300291static bool cpt_can_enable_serr_int(struct drm_device *dev)
292{
293 struct drm_i915_private *dev_priv = dev->dev_private;
294 enum pipe pipe;
295 struct intel_crtc *crtc;
296
Daniel Vetterfee884e2013-07-04 23:35:21 +0200297 assert_spin_locked(&dev_priv->irq_lock);
298
Damien Lespiau055e3932014-08-18 13:49:10 +0100299 for_each_pipe(dev_priv, pipe) {
Paulo Zanoni86642812013-04-12 17:57:57 -0300300 crtc = to_intel_crtc(dev_priv->pipe_to_crtc_mapping[pipe]);
301
302 if (crtc->pch_fifo_underrun_disabled)
303 return false;
304 }
305
306 return true;
307}
308
Ville Syrjälä56b80e12014-05-16 19:40:22 +0300309void i9xx_check_fifo_underruns(struct drm_device *dev)
310{
311 struct drm_i915_private *dev_priv = dev->dev_private;
312 struct intel_crtc *crtc;
313 unsigned long flags;
314
315 spin_lock_irqsave(&dev_priv->irq_lock, flags);
316
317 for_each_intel_crtc(dev, crtc) {
318 u32 reg = PIPESTAT(crtc->pipe);
319 u32 pipestat;
320
321 if (crtc->cpu_fifo_underrun_disabled)
322 continue;
323
324 pipestat = I915_READ(reg) & 0xffff0000;
325 if ((pipestat & PIPE_FIFO_UNDERRUN_STATUS) == 0)
326 continue;
327
328 I915_WRITE(reg, pipestat | PIPE_FIFO_UNDERRUN_STATUS);
329 POSTING_READ(reg);
330
331 DRM_ERROR("pipe %c underrun\n", pipe_name(crtc->pipe));
332 }
333
334 spin_unlock_irqrestore(&dev_priv->irq_lock, flags);
335}
336
Ville Syrjäläe69abff2014-05-16 19:40:21 +0300337static void i9xx_set_fifo_underrun_reporting(struct drm_device *dev,
Daniel Vetter2ae2a502014-05-22 17:56:32 +0200338 enum pipe pipe,
339 bool enable, bool old)
Ville Syrjälä2d9d2b02014-01-17 11:44:31 +0200340{
341 struct drm_i915_private *dev_priv = dev->dev_private;
342 u32 reg = PIPESTAT(pipe);
Ville Syrjäläe69abff2014-05-16 19:40:21 +0300343 u32 pipestat = I915_READ(reg) & 0xffff0000;
Ville Syrjälä2d9d2b02014-01-17 11:44:31 +0200344
345 assert_spin_locked(&dev_priv->irq_lock);
346
Ville Syrjäläe69abff2014-05-16 19:40:21 +0300347 if (enable) {
348 I915_WRITE(reg, pipestat | PIPE_FIFO_UNDERRUN_STATUS);
349 POSTING_READ(reg);
350 } else {
Daniel Vetter2ae2a502014-05-22 17:56:32 +0200351 if (old && pipestat & PIPE_FIFO_UNDERRUN_STATUS)
Ville Syrjäläe69abff2014-05-16 19:40:21 +0300352 DRM_ERROR("pipe %c underrun\n", pipe_name(pipe));
353 }
Ville Syrjälä2d9d2b02014-01-17 11:44:31 +0200354}
355
Paulo Zanoni86642812013-04-12 17:57:57 -0300356static void ironlake_set_fifo_underrun_reporting(struct drm_device *dev,
357 enum pipe pipe, bool enable)
358{
359 struct drm_i915_private *dev_priv = dev->dev_private;
360 uint32_t bit = (pipe == PIPE_A) ? DE_PIPEA_FIFO_UNDERRUN :
361 DE_PIPEB_FIFO_UNDERRUN;
362
363 if (enable)
364 ironlake_enable_display_irq(dev_priv, bit);
365 else
366 ironlake_disable_display_irq(dev_priv, bit);
367}
368
369static void ivybridge_set_fifo_underrun_reporting(struct drm_device *dev,
Daniel Vetter2ae2a502014-05-22 17:56:32 +0200370 enum pipe pipe,
371 bool enable, bool old)
Paulo Zanoni86642812013-04-12 17:57:57 -0300372{
373 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanoni86642812013-04-12 17:57:57 -0300374 if (enable) {
Daniel Vetter7336df62013-07-09 22:59:16 +0200375 I915_WRITE(GEN7_ERR_INT, ERR_INT_FIFO_UNDERRUN(pipe));
376
Paulo Zanoni86642812013-04-12 17:57:57 -0300377 if (!ivb_can_enable_err_int(dev))
378 return;
379
Paulo Zanoni86642812013-04-12 17:57:57 -0300380 ironlake_enable_display_irq(dev_priv, DE_ERR_INT_IVB);
381 } else {
382 ironlake_disable_display_irq(dev_priv, DE_ERR_INT_IVB);
Daniel Vetter7336df62013-07-09 22:59:16 +0200383
Daniel Vetter2ae2a502014-05-22 17:56:32 +0200384 if (old &&
385 I915_READ(GEN7_ERR_INT) & ERR_INT_FIFO_UNDERRUN(pipe)) {
Ville Syrjälä823c6902014-05-16 19:40:23 +0300386 DRM_ERROR("uncleared fifo underrun on pipe %c\n",
387 pipe_name(pipe));
Daniel Vetter7336df62013-07-09 22:59:16 +0200388 }
Paulo Zanoni86642812013-04-12 17:57:57 -0300389 }
390}
391
Daniel Vetter38d83c962013-11-07 11:05:46 +0100392static void broadwell_set_fifo_underrun_reporting(struct drm_device *dev,
393 enum pipe pipe, bool enable)
394{
395 struct drm_i915_private *dev_priv = dev->dev_private;
396
397 assert_spin_locked(&dev_priv->irq_lock);
398
399 if (enable)
400 dev_priv->de_irq_mask[pipe] &= ~GEN8_PIPE_FIFO_UNDERRUN;
401 else
402 dev_priv->de_irq_mask[pipe] |= GEN8_PIPE_FIFO_UNDERRUN;
403 I915_WRITE(GEN8_DE_PIPE_IMR(pipe), dev_priv->de_irq_mask[pipe]);
404 POSTING_READ(GEN8_DE_PIPE_IMR(pipe));
405}
406
Daniel Vetterfee884e2013-07-04 23:35:21 +0200407/**
408 * ibx_display_interrupt_update - update SDEIMR
409 * @dev_priv: driver private
410 * @interrupt_mask: mask of interrupt bits to update
411 * @enabled_irq_mask: mask of interrupt bits to enable
412 */
413static void ibx_display_interrupt_update(struct drm_i915_private *dev_priv,
414 uint32_t interrupt_mask,
415 uint32_t enabled_irq_mask)
416{
417 uint32_t sdeimr = I915_READ(SDEIMR);
418 sdeimr &= ~interrupt_mask;
419 sdeimr |= (~enabled_irq_mask & interrupt_mask);
420
421 assert_spin_locked(&dev_priv->irq_lock);
422
Jesse Barnes9df7575f2014-06-20 09:29:20 -0700423 if (WARN_ON(!intel_irqs_enabled(dev_priv)))
Paulo Zanonic67a4702013-08-19 13:18:09 -0300424 return;
Paulo Zanonic67a4702013-08-19 13:18:09 -0300425
Daniel Vetterfee884e2013-07-04 23:35:21 +0200426 I915_WRITE(SDEIMR, sdeimr);
427 POSTING_READ(SDEIMR);
428}
429#define ibx_enable_display_interrupt(dev_priv, bits) \
430 ibx_display_interrupt_update((dev_priv), (bits), (bits))
431#define ibx_disable_display_interrupt(dev_priv, bits) \
432 ibx_display_interrupt_update((dev_priv), (bits), 0)
433
Daniel Vetterde280752013-07-04 23:35:24 +0200434static void ibx_set_fifo_underrun_reporting(struct drm_device *dev,
435 enum transcoder pch_transcoder,
Paulo Zanoni86642812013-04-12 17:57:57 -0300436 bool enable)
437{
Paulo Zanoni86642812013-04-12 17:57:57 -0300438 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterde280752013-07-04 23:35:24 +0200439 uint32_t bit = (pch_transcoder == TRANSCODER_A) ?
440 SDE_TRANSA_FIFO_UNDER : SDE_TRANSB_FIFO_UNDER;
Paulo Zanoni86642812013-04-12 17:57:57 -0300441
442 if (enable)
Daniel Vetterfee884e2013-07-04 23:35:21 +0200443 ibx_enable_display_interrupt(dev_priv, bit);
Paulo Zanoni86642812013-04-12 17:57:57 -0300444 else
Daniel Vetterfee884e2013-07-04 23:35:21 +0200445 ibx_disable_display_interrupt(dev_priv, bit);
Paulo Zanoni86642812013-04-12 17:57:57 -0300446}
447
448static void cpt_set_fifo_underrun_reporting(struct drm_device *dev,
449 enum transcoder pch_transcoder,
Daniel Vetter2ae2a502014-05-22 17:56:32 +0200450 bool enable, bool old)
Paulo Zanoni86642812013-04-12 17:57:57 -0300451{
452 struct drm_i915_private *dev_priv = dev->dev_private;
453
454 if (enable) {
Daniel Vetter1dd246f2013-07-10 08:30:23 +0200455 I915_WRITE(SERR_INT,
456 SERR_INT_TRANS_FIFO_UNDERRUN(pch_transcoder));
457
Paulo Zanoni86642812013-04-12 17:57:57 -0300458 if (!cpt_can_enable_serr_int(dev))
459 return;
460
Daniel Vetterfee884e2013-07-04 23:35:21 +0200461 ibx_enable_display_interrupt(dev_priv, SDE_ERROR_CPT);
Paulo Zanoni86642812013-04-12 17:57:57 -0300462 } else {
Daniel Vetterfee884e2013-07-04 23:35:21 +0200463 ibx_disable_display_interrupt(dev_priv, SDE_ERROR_CPT);
Daniel Vetter1dd246f2013-07-10 08:30:23 +0200464
Daniel Vetter2ae2a502014-05-22 17:56:32 +0200465 if (old && I915_READ(SERR_INT) &
466 SERR_INT_TRANS_FIFO_UNDERRUN(pch_transcoder)) {
Ville Syrjälä823c6902014-05-16 19:40:23 +0300467 DRM_ERROR("uncleared pch fifo underrun on pch transcoder %c\n",
468 transcoder_name(pch_transcoder));
Daniel Vetter1dd246f2013-07-10 08:30:23 +0200469 }
Paulo Zanoni86642812013-04-12 17:57:57 -0300470 }
Paulo Zanoni86642812013-04-12 17:57:57 -0300471}
472
473/**
474 * intel_set_cpu_fifo_underrun_reporting - enable/disable FIFO underrun messages
475 * @dev: drm device
476 * @pipe: pipe
477 * @enable: true if we want to report FIFO underrun errors, false otherwise
478 *
479 * This function makes us disable or enable CPU fifo underruns for a specific
480 * pipe. Notice that on some Gens (e.g. IVB, HSW), disabling FIFO underrun
481 * reporting for one pipe may also disable all the other CPU error interruts for
482 * the other pipes, due to the fact that there's just one interrupt mask/enable
483 * bit for all the pipes.
484 *
485 * Returns the previous state of underrun reporting.
486 */
Daniel Vetterc5ab3bc2014-05-14 15:40:34 +0200487static bool __intel_set_cpu_fifo_underrun_reporting(struct drm_device *dev,
488 enum pipe pipe, bool enable)
Paulo Zanoni86642812013-04-12 17:57:57 -0300489{
490 struct drm_i915_private *dev_priv = dev->dev_private;
491 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
492 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetter2ae2a502014-05-22 17:56:32 +0200493 bool old;
Paulo Zanoni86642812013-04-12 17:57:57 -0300494
Imre Deak77961eb2014-03-05 16:20:56 +0200495 assert_spin_locked(&dev_priv->irq_lock);
496
Daniel Vetter2ae2a502014-05-22 17:56:32 +0200497 old = !intel_crtc->cpu_fifo_underrun_disabled;
Paulo Zanoni86642812013-04-12 17:57:57 -0300498 intel_crtc->cpu_fifo_underrun_disabled = !enable;
499
Ville Syrjäläa3ed6aa2014-09-03 14:09:52 +0300500 if (HAS_GMCH_DISPLAY(dev))
Daniel Vetter2ae2a502014-05-22 17:56:32 +0200501 i9xx_set_fifo_underrun_reporting(dev, pipe, enable, old);
Ville Syrjälä2d9d2b02014-01-17 11:44:31 +0200502 else if (IS_GEN5(dev) || IS_GEN6(dev))
Paulo Zanoni86642812013-04-12 17:57:57 -0300503 ironlake_set_fifo_underrun_reporting(dev, pipe, enable);
504 else if (IS_GEN7(dev))
Daniel Vetter2ae2a502014-05-22 17:56:32 +0200505 ivybridge_set_fifo_underrun_reporting(dev, pipe, enable, old);
Daniel Vetter38d83c962013-11-07 11:05:46 +0100506 else if (IS_GEN8(dev))
507 broadwell_set_fifo_underrun_reporting(dev, pipe, enable);
Paulo Zanoni86642812013-04-12 17:57:57 -0300508
Daniel Vetter2ae2a502014-05-22 17:56:32 +0200509 return old;
Imre Deakf88d42f2014-03-04 19:23:09 +0200510}
511
512bool intel_set_cpu_fifo_underrun_reporting(struct drm_device *dev,
513 enum pipe pipe, bool enable)
514{
515 struct drm_i915_private *dev_priv = dev->dev_private;
516 unsigned long flags;
517 bool ret;
518
519 spin_lock_irqsave(&dev_priv->irq_lock, flags);
520 ret = __intel_set_cpu_fifo_underrun_reporting(dev, pipe, enable);
Paulo Zanoni86642812013-04-12 17:57:57 -0300521 spin_unlock_irqrestore(&dev_priv->irq_lock, flags);
Imre Deakf88d42f2014-03-04 19:23:09 +0200522
Paulo Zanoni86642812013-04-12 17:57:57 -0300523 return ret;
524}
525
Imre Deak91d181d2014-02-10 18:42:49 +0200526static bool __cpu_fifo_underrun_reporting_enabled(struct drm_device *dev,
527 enum pipe pipe)
528{
529 struct drm_i915_private *dev_priv = dev->dev_private;
530 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
531 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
532
533 return !intel_crtc->cpu_fifo_underrun_disabled;
534}
535
Paulo Zanoni86642812013-04-12 17:57:57 -0300536/**
537 * intel_set_pch_fifo_underrun_reporting - enable/disable FIFO underrun messages
538 * @dev: drm device
539 * @pch_transcoder: the PCH transcoder (same as pipe on IVB and older)
540 * @enable: true if we want to report FIFO underrun errors, false otherwise
541 *
542 * This function makes us disable or enable PCH fifo underruns for a specific
543 * PCH transcoder. Notice that on some PCHs (e.g. CPT/PPT), disabling FIFO
544 * underrun reporting for one transcoder may also disable all the other PCH
545 * error interruts for the other transcoders, due to the fact that there's just
546 * one interrupt mask/enable bit for all the transcoders.
547 *
548 * Returns the previous state of underrun reporting.
549 */
550bool intel_set_pch_fifo_underrun_reporting(struct drm_device *dev,
551 enum transcoder pch_transcoder,
552 bool enable)
553{
554 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterde280752013-07-04 23:35:24 +0200555 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pch_transcoder];
556 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Paulo Zanoni86642812013-04-12 17:57:57 -0300557 unsigned long flags;
Daniel Vetter2ae2a502014-05-22 17:56:32 +0200558 bool old;
Paulo Zanoni86642812013-04-12 17:57:57 -0300559
Daniel Vetterde280752013-07-04 23:35:24 +0200560 /*
561 * NOTE: Pre-LPT has a fixed cpu pipe -> pch transcoder mapping, but LPT
562 * has only one pch transcoder A that all pipes can use. To avoid racy
563 * pch transcoder -> pipe lookups from interrupt code simply store the
564 * underrun statistics in crtc A. Since we never expose this anywhere
565 * nor use it outside of the fifo underrun code here using the "wrong"
566 * crtc on LPT won't cause issues.
567 */
Paulo Zanoni86642812013-04-12 17:57:57 -0300568
569 spin_lock_irqsave(&dev_priv->irq_lock, flags);
570
Daniel Vetter2ae2a502014-05-22 17:56:32 +0200571 old = !intel_crtc->pch_fifo_underrun_disabled;
Paulo Zanoni86642812013-04-12 17:57:57 -0300572 intel_crtc->pch_fifo_underrun_disabled = !enable;
573
574 if (HAS_PCH_IBX(dev))
Daniel Vetterde280752013-07-04 23:35:24 +0200575 ibx_set_fifo_underrun_reporting(dev, pch_transcoder, enable);
Paulo Zanoni86642812013-04-12 17:57:57 -0300576 else
Daniel Vetter2ae2a502014-05-22 17:56:32 +0200577 cpt_set_fifo_underrun_reporting(dev, pch_transcoder, enable, old);
Paulo Zanoni86642812013-04-12 17:57:57 -0300578
Paulo Zanoni86642812013-04-12 17:57:57 -0300579 spin_unlock_irqrestore(&dev_priv->irq_lock, flags);
Daniel Vetter2ae2a502014-05-22 17:56:32 +0200580 return old;
Paulo Zanoni86642812013-04-12 17:57:57 -0300581}
582
583
Daniel Vetterb5ea6422014-03-02 21:18:00 +0100584static void
Imre Deak755e9012014-02-10 18:42:47 +0200585__i915_enable_pipestat(struct drm_i915_private *dev_priv, enum pipe pipe,
586 u32 enable_mask, u32 status_mask)
Keith Packard7c463582008-11-04 02:03:27 -0800587{
Ville Syrjälä46c06a32013-02-20 21:16:18 +0200588 u32 reg = PIPESTAT(pipe);
Imre Deak755e9012014-02-10 18:42:47 +0200589 u32 pipestat = I915_READ(reg) & PIPESTAT_INT_ENABLE_MASK;
Keith Packard7c463582008-11-04 02:03:27 -0800590
Daniel Vetterb79480b2013-06-27 17:52:10 +0200591 assert_spin_locked(&dev_priv->irq_lock);
Daniel Vetterd518ce52014-08-27 10:43:37 +0200592 WARN_ON(!intel_irqs_enabled(dev_priv));
Daniel Vetterb79480b2013-06-27 17:52:10 +0200593
Ville Syrjälä04feced2014-04-03 13:28:33 +0300594 if (WARN_ONCE(enable_mask & ~PIPESTAT_INT_ENABLE_MASK ||
595 status_mask & ~PIPESTAT_INT_STATUS_MASK,
596 "pipe %c: enable_mask=0x%x, status_mask=0x%x\n",
597 pipe_name(pipe), enable_mask, status_mask))
Imre Deak755e9012014-02-10 18:42:47 +0200598 return;
599
600 if ((pipestat & enable_mask) == enable_mask)
Ville Syrjälä46c06a32013-02-20 21:16:18 +0200601 return;
602
Imre Deak91d181d2014-02-10 18:42:49 +0200603 dev_priv->pipestat_irq_mask[pipe] |= status_mask;
604
Ville Syrjälä46c06a32013-02-20 21:16:18 +0200605 /* Enable the interrupt, clear any pending status */
Imre Deak755e9012014-02-10 18:42:47 +0200606 pipestat |= enable_mask | status_mask;
Ville Syrjälä46c06a32013-02-20 21:16:18 +0200607 I915_WRITE(reg, pipestat);
608 POSTING_READ(reg);
Keith Packard7c463582008-11-04 02:03:27 -0800609}
610
Daniel Vetterb5ea6422014-03-02 21:18:00 +0100611static void
Imre Deak755e9012014-02-10 18:42:47 +0200612__i915_disable_pipestat(struct drm_i915_private *dev_priv, enum pipe pipe,
613 u32 enable_mask, u32 status_mask)
Keith Packard7c463582008-11-04 02:03:27 -0800614{
Ville Syrjälä46c06a32013-02-20 21:16:18 +0200615 u32 reg = PIPESTAT(pipe);
Imre Deak755e9012014-02-10 18:42:47 +0200616 u32 pipestat = I915_READ(reg) & PIPESTAT_INT_ENABLE_MASK;
Keith Packard7c463582008-11-04 02:03:27 -0800617
Daniel Vetterb79480b2013-06-27 17:52:10 +0200618 assert_spin_locked(&dev_priv->irq_lock);
Daniel Vetterd518ce52014-08-27 10:43:37 +0200619 WARN_ON(!intel_irqs_enabled(dev_priv));
Daniel Vetterb79480b2013-06-27 17:52:10 +0200620
Ville Syrjälä04feced2014-04-03 13:28:33 +0300621 if (WARN_ONCE(enable_mask & ~PIPESTAT_INT_ENABLE_MASK ||
622 status_mask & ~PIPESTAT_INT_STATUS_MASK,
623 "pipe %c: enable_mask=0x%x, status_mask=0x%x\n",
624 pipe_name(pipe), enable_mask, status_mask))
Ville Syrjälä46c06a32013-02-20 21:16:18 +0200625 return;
626
Imre Deak755e9012014-02-10 18:42:47 +0200627 if ((pipestat & enable_mask) == 0)
628 return;
629
Imre Deak91d181d2014-02-10 18:42:49 +0200630 dev_priv->pipestat_irq_mask[pipe] &= ~status_mask;
631
Imre Deak755e9012014-02-10 18:42:47 +0200632 pipestat &= ~enable_mask;
Ville Syrjälä46c06a32013-02-20 21:16:18 +0200633 I915_WRITE(reg, pipestat);
634 POSTING_READ(reg);
Keith Packard7c463582008-11-04 02:03:27 -0800635}
636
Imre Deak10c59c52014-02-10 18:42:48 +0200637static u32 vlv_get_pipestat_enable_mask(struct drm_device *dev, u32 status_mask)
638{
639 u32 enable_mask = status_mask << 16;
640
641 /*
Ville Syrjälä724a6902014-04-09 13:28:48 +0300642 * On pipe A we don't support the PSR interrupt yet,
643 * on pipe B and C the same bit MBZ.
Imre Deak10c59c52014-02-10 18:42:48 +0200644 */
645 if (WARN_ON_ONCE(status_mask & PIPE_A_PSR_STATUS_VLV))
646 return 0;
Ville Syrjälä724a6902014-04-09 13:28:48 +0300647 /*
648 * On pipe B and C we don't support the PSR interrupt yet, on pipe
649 * A the same bit is for perf counters which we don't use either.
650 */
651 if (WARN_ON_ONCE(status_mask & PIPE_B_PSR_STATUS_VLV))
652 return 0;
Imre Deak10c59c52014-02-10 18:42:48 +0200653
654 enable_mask &= ~(PIPE_FIFO_UNDERRUN_STATUS |
655 SPRITE0_FLIP_DONE_INT_EN_VLV |
656 SPRITE1_FLIP_DONE_INT_EN_VLV);
657 if (status_mask & SPRITE0_FLIP_DONE_INT_STATUS_VLV)
658 enable_mask |= SPRITE0_FLIP_DONE_INT_EN_VLV;
659 if (status_mask & SPRITE1_FLIP_DONE_INT_STATUS_VLV)
660 enable_mask |= SPRITE1_FLIP_DONE_INT_EN_VLV;
661
662 return enable_mask;
663}
664
Imre Deak755e9012014-02-10 18:42:47 +0200665void
666i915_enable_pipestat(struct drm_i915_private *dev_priv, enum pipe pipe,
667 u32 status_mask)
668{
669 u32 enable_mask;
670
Imre Deak10c59c52014-02-10 18:42:48 +0200671 if (IS_VALLEYVIEW(dev_priv->dev))
672 enable_mask = vlv_get_pipestat_enable_mask(dev_priv->dev,
673 status_mask);
674 else
675 enable_mask = status_mask << 16;
Imre Deak755e9012014-02-10 18:42:47 +0200676 __i915_enable_pipestat(dev_priv, pipe, enable_mask, status_mask);
677}
678
679void
680i915_disable_pipestat(struct drm_i915_private *dev_priv, enum pipe pipe,
681 u32 status_mask)
682{
683 u32 enable_mask;
684
Imre Deak10c59c52014-02-10 18:42:48 +0200685 if (IS_VALLEYVIEW(dev_priv->dev))
686 enable_mask = vlv_get_pipestat_enable_mask(dev_priv->dev,
687 status_mask);
688 else
689 enable_mask = status_mask << 16;
Imre Deak755e9012014-02-10 18:42:47 +0200690 __i915_disable_pipestat(dev_priv, pipe, enable_mask, status_mask);
691}
692
=?utf-8?q?Michel_D=C3=A4nzer?=a6b54f32006-10-24 23:37:43 +1000693/**
Jani Nikulaf49e38d2013-04-29 13:02:54 +0300694 * i915_enable_asle_pipestat - enable ASLE pipestat for OpRegion
Zhao Yakui01c66882009-10-28 05:10:00 +0000695 */
Jani Nikulaf49e38d2013-04-29 13:02:54 +0300696static void i915_enable_asle_pipestat(struct drm_device *dev)
Zhao Yakui01c66882009-10-28 05:10:00 +0000697{
Jani Nikula2d1013d2014-03-31 14:27:17 +0300698 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000699 unsigned long irqflags;
700
Jani Nikulaf49e38d2013-04-29 13:02:54 +0300701 if (!dev_priv->opregion.asle || !IS_MOBILE(dev))
702 return;
703
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000704 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Zhao Yakui01c66882009-10-28 05:10:00 +0000705
Imre Deak755e9012014-02-10 18:42:47 +0200706 i915_enable_pipestat(dev_priv, PIPE_B, PIPE_LEGACY_BLC_EVENT_STATUS);
Jani Nikulaf8987802013-04-29 13:02:53 +0300707 if (INTEL_INFO(dev)->gen >= 4)
Daniel Vetter3b6c42e2013-10-21 18:04:35 +0200708 i915_enable_pipestat(dev_priv, PIPE_A,
Imre Deak755e9012014-02-10 18:42:47 +0200709 PIPE_LEGACY_BLC_EVENT_STATUS);
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000710
711 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
Zhao Yakui01c66882009-10-28 05:10:00 +0000712}
713
714/**
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700715 * i915_pipe_enabled - check if a pipe is enabled
716 * @dev: DRM device
717 * @pipe: pipe to check
718 *
719 * Reading certain registers when the pipe is disabled can hang the chip.
720 * Use this routine to make sure the PLL is running and the pipe is active
721 * before reading such registers if unsure.
722 */
723static int
724i915_pipe_enabled(struct drm_device *dev, int pipe)
725{
Jani Nikula2d1013d2014-03-31 14:27:17 +0300726 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanoni702e7a52012-10-23 18:29:59 -0200727
Daniel Vettera01025a2013-05-22 00:50:23 +0200728 if (drm_core_check_feature(dev, DRIVER_MODESET)) {
729 /* Locking is horribly broken here, but whatever. */
730 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
731 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Paulo Zanoni71f8ba62013-05-03 12:15:39 -0300732
Daniel Vettera01025a2013-05-22 00:50:23 +0200733 return intel_crtc->active;
734 } else {
735 return I915_READ(PIPECONF(pipe)) & PIPECONF_ENABLE;
736 }
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700737}
738
Ville Syrjäläf75f3742014-05-15 20:20:36 +0300739/*
740 * This timing diagram depicts the video signal in and
741 * around the vertical blanking period.
742 *
743 * Assumptions about the fictitious mode used in this example:
744 * vblank_start >= 3
745 * vsync_start = vblank_start + 1
746 * vsync_end = vblank_start + 2
747 * vtotal = vblank_start + 3
748 *
749 * start of vblank:
750 * latch double buffered registers
751 * increment frame counter (ctg+)
752 * generate start of vblank interrupt (gen4+)
753 * |
754 * | frame start:
755 * | generate frame start interrupt (aka. vblank interrupt) (gmch)
756 * | may be shifted forward 1-3 extra lines via PIPECONF
757 * | |
758 * | | start of vsync:
759 * | | generate vsync interrupt
760 * | | |
761 * ___xxxx___ ___xxxx___ ___xxxx___ ___xxxx___ ___xxxx___ ___xxxx
762 * . \hs/ . \hs/ \hs/ \hs/ . \hs/
763 * ----va---> <-----------------vb--------------------> <--------va-------------
764 * | | <----vs-----> |
765 * -vbs-----> <---vbs+1---> <---vbs+2---> <-----0-----> <-----1-----> <-----2--- (scanline counter gen2)
766 * -vbs-2---> <---vbs-1---> <---vbs-----> <---vbs+1---> <---vbs+2---> <-----0--- (scanline counter gen3+)
767 * -vbs-2---> <---vbs-2---> <---vbs-1---> <---vbs-----> <---vbs+1---> <---vbs+2- (scanline counter hsw+ hdmi)
768 * | | |
769 * last visible pixel first visible pixel
770 * | increment frame counter (gen3/4)
771 * pixel counter = vblank_start * htotal pixel counter = 0 (gen3/4)
772 *
773 * x = horizontal active
774 * _ = horizontal blanking
775 * hs = horizontal sync
776 * va = vertical active
777 * vb = vertical blanking
778 * vs = vertical sync
779 * vbs = vblank_start (number)
780 *
781 * Summary:
782 * - most events happen at the start of horizontal sync
783 * - frame start happens at the start of horizontal blank, 1-4 lines
784 * (depending on PIPECONF settings) after the start of vblank
785 * - gen3/4 pixel and frame counter are synchronized with the start
786 * of horizontal active on the first line of vertical active
787 */
788
Ville Syrjälä4cdb83e2013-10-11 21:52:44 +0300789static u32 i8xx_get_vblank_counter(struct drm_device *dev, int pipe)
790{
791 /* Gen2 doesn't have a hardware frame counter */
792 return 0;
793}
794
Keith Packard42f52ef2008-10-18 19:39:29 -0700795/* Called from drm generic code, passed a 'crtc', which
796 * we use as a pipe index
797 */
Jesse Barnesf71d4af2011-06-28 13:00:41 -0700798static u32 i915_get_vblank_counter(struct drm_device *dev, int pipe)
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700799{
Jani Nikula2d1013d2014-03-31 14:27:17 +0300800 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700801 unsigned long high_frame;
802 unsigned long low_frame;
Ville Syrjälä0b2a8e02014-04-29 13:35:50 +0300803 u32 high1, high2, low, pixel, vbl_start, hsync_start, htotal;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700804
805 if (!i915_pipe_enabled(dev, pipe)) {
Zhao Yakui44d98a62009-10-09 11:39:40 +0800806 DRM_DEBUG_DRIVER("trying to get vblank count for disabled "
Jesse Barnes9db4a9c2011-02-07 12:26:52 -0800807 "pipe %c\n", pipe_name(pipe));
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700808 return 0;
809 }
810
Ville Syrjälä391f75e2013-09-25 19:55:26 +0300811 if (drm_core_check_feature(dev, DRIVER_MODESET)) {
812 struct intel_crtc *intel_crtc =
813 to_intel_crtc(dev_priv->pipe_to_crtc_mapping[pipe]);
814 const struct drm_display_mode *mode =
815 &intel_crtc->config.adjusted_mode;
816
Ville Syrjälä0b2a8e02014-04-29 13:35:50 +0300817 htotal = mode->crtc_htotal;
818 hsync_start = mode->crtc_hsync_start;
819 vbl_start = mode->crtc_vblank_start;
820 if (mode->flags & DRM_MODE_FLAG_INTERLACE)
821 vbl_start = DIV_ROUND_UP(vbl_start, 2);
Ville Syrjälä391f75e2013-09-25 19:55:26 +0300822 } else {
Daniel Vettera2d213d2014-02-07 16:34:05 +0100823 enum transcoder cpu_transcoder = (enum transcoder) pipe;
Ville Syrjälä391f75e2013-09-25 19:55:26 +0300824
825 htotal = ((I915_READ(HTOTAL(cpu_transcoder)) >> 16) & 0x1fff) + 1;
Ville Syrjälä0b2a8e02014-04-29 13:35:50 +0300826 hsync_start = (I915_READ(HSYNC(cpu_transcoder)) & 0x1fff) + 1;
Ville Syrjälä391f75e2013-09-25 19:55:26 +0300827 vbl_start = (I915_READ(VBLANK(cpu_transcoder)) & 0x1fff) + 1;
Ville Syrjälä0b2a8e02014-04-29 13:35:50 +0300828 if ((I915_READ(PIPECONF(cpu_transcoder)) &
829 PIPECONF_INTERLACE_MASK) != PIPECONF_PROGRESSIVE)
830 vbl_start = DIV_ROUND_UP(vbl_start, 2);
Ville Syrjälä391f75e2013-09-25 19:55:26 +0300831 }
832
Ville Syrjälä0b2a8e02014-04-29 13:35:50 +0300833 /* Convert to pixel count */
834 vbl_start *= htotal;
835
836 /* Start of vblank event occurs at start of hsync */
837 vbl_start -= htotal - hsync_start;
838
Jesse Barnes9db4a9c2011-02-07 12:26:52 -0800839 high_frame = PIPEFRAME(pipe);
840 low_frame = PIPEFRAMEPIXEL(pipe);
Chris Wilson5eddb702010-09-11 13:48:45 +0100841
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700842 /*
843 * High & low register fields aren't synchronized, so make sure
844 * we get a low value that's stable across two reads of the high
845 * register.
846 */
847 do {
Chris Wilson5eddb702010-09-11 13:48:45 +0100848 high1 = I915_READ(high_frame) & PIPE_FRAME_HIGH_MASK;
Ville Syrjälä391f75e2013-09-25 19:55:26 +0300849 low = I915_READ(low_frame);
Chris Wilson5eddb702010-09-11 13:48:45 +0100850 high2 = I915_READ(high_frame) & PIPE_FRAME_HIGH_MASK;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700851 } while (high1 != high2);
852
Chris Wilson5eddb702010-09-11 13:48:45 +0100853 high1 >>= PIPE_FRAME_HIGH_SHIFT;
Ville Syrjälä391f75e2013-09-25 19:55:26 +0300854 pixel = low & PIPE_PIXEL_MASK;
Chris Wilson5eddb702010-09-11 13:48:45 +0100855 low >>= PIPE_FRAME_LOW_SHIFT;
Ville Syrjälä391f75e2013-09-25 19:55:26 +0300856
857 /*
858 * The frame counter increments at beginning of active.
859 * Cook up a vblank counter by also checking the pixel
860 * counter against vblank start.
861 */
Ville Syrjäläedc08d02013-11-06 13:56:27 -0200862 return (((high1 << 8) | low) + (pixel >= vbl_start)) & 0xffffff;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700863}
864
Jesse Barnesf71d4af2011-06-28 13:00:41 -0700865static u32 gm45_get_vblank_counter(struct drm_device *dev, int pipe)
Jesse Barnes9880b7a2009-02-06 10:22:41 -0800866{
Jani Nikula2d1013d2014-03-31 14:27:17 +0300867 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes9db4a9c2011-02-07 12:26:52 -0800868 int reg = PIPE_FRMCOUNT_GM45(pipe);
Jesse Barnes9880b7a2009-02-06 10:22:41 -0800869
870 if (!i915_pipe_enabled(dev, pipe)) {
Zhao Yakui44d98a62009-10-09 11:39:40 +0800871 DRM_DEBUG_DRIVER("trying to get vblank count for disabled "
Jesse Barnes9db4a9c2011-02-07 12:26:52 -0800872 "pipe %c\n", pipe_name(pipe));
Jesse Barnes9880b7a2009-02-06 10:22:41 -0800873 return 0;
874 }
875
876 return I915_READ(reg);
877}
878
Mario Kleinerad3543e2013-10-30 05:13:08 +0100879/* raw reads, only for fast reads of display block, no need for forcewake etc. */
880#define __raw_i915_read32(dev_priv__, reg__) readl((dev_priv__)->regs + (reg__))
Mario Kleinerad3543e2013-10-30 05:13:08 +0100881
Ville Syrjäläa225f072014-04-29 13:35:45 +0300882static int __intel_get_crtc_scanline(struct intel_crtc *crtc)
883{
884 struct drm_device *dev = crtc->base.dev;
885 struct drm_i915_private *dev_priv = dev->dev_private;
886 const struct drm_display_mode *mode = &crtc->config.adjusted_mode;
887 enum pipe pipe = crtc->pipe;
Ville Syrjälä80715b22014-05-15 20:23:23 +0300888 int position, vtotal;
Ville Syrjäläa225f072014-04-29 13:35:45 +0300889
Ville Syrjälä80715b22014-05-15 20:23:23 +0300890 vtotal = mode->crtc_vtotal;
Ville Syrjäläa225f072014-04-29 13:35:45 +0300891 if (mode->flags & DRM_MODE_FLAG_INTERLACE)
892 vtotal /= 2;
893
894 if (IS_GEN2(dev))
895 position = __raw_i915_read32(dev_priv, PIPEDSL(pipe)) & DSL_LINEMASK_GEN2;
896 else
897 position = __raw_i915_read32(dev_priv, PIPEDSL(pipe)) & DSL_LINEMASK_GEN3;
898
899 /*
Ville Syrjälä80715b22014-05-15 20:23:23 +0300900 * See update_scanline_offset() for the details on the
901 * scanline_offset adjustment.
Ville Syrjäläa225f072014-04-29 13:35:45 +0300902 */
Ville Syrjälä80715b22014-05-15 20:23:23 +0300903 return (position + crtc->scanline_offset) % vtotal;
Ville Syrjäläa225f072014-04-29 13:35:45 +0300904}
905
Jesse Barnesf71d4af2011-06-28 13:00:41 -0700906static int i915_get_crtc_scanoutpos(struct drm_device *dev, int pipe,
Ville Syrjäläabca9e42013-10-28 20:50:48 +0200907 unsigned int flags, int *vpos, int *hpos,
908 ktime_t *stime, ktime_t *etime)
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100909{
Ville Syrjäläc2baf4b2013-09-23 14:48:50 +0300910 struct drm_i915_private *dev_priv = dev->dev_private;
911 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
912 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
913 const struct drm_display_mode *mode = &intel_crtc->config.adjusted_mode;
Ville Syrjälä3aa18df2013-10-11 19:10:32 +0300914 int position;
Ville Syrjälä78e8fc62014-04-29 13:35:44 +0300915 int vbl_start, vbl_end, hsync_start, htotal, vtotal;
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100916 bool in_vbl = true;
917 int ret = 0;
Mario Kleinerad3543e2013-10-30 05:13:08 +0100918 unsigned long irqflags;
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100919
Ville Syrjäläc2baf4b2013-09-23 14:48:50 +0300920 if (!intel_crtc->active) {
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100921 DRM_DEBUG_DRIVER("trying to get scanoutpos for disabled "
Jesse Barnes9db4a9c2011-02-07 12:26:52 -0800922 "pipe %c\n", pipe_name(pipe));
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100923 return 0;
924 }
925
Ville Syrjäläc2baf4b2013-09-23 14:48:50 +0300926 htotal = mode->crtc_htotal;
Ville Syrjälä78e8fc62014-04-29 13:35:44 +0300927 hsync_start = mode->crtc_hsync_start;
Ville Syrjäläc2baf4b2013-09-23 14:48:50 +0300928 vtotal = mode->crtc_vtotal;
929 vbl_start = mode->crtc_vblank_start;
930 vbl_end = mode->crtc_vblank_end;
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100931
Ville Syrjäläd31faf62013-10-28 16:31:41 +0200932 if (mode->flags & DRM_MODE_FLAG_INTERLACE) {
933 vbl_start = DIV_ROUND_UP(vbl_start, 2);
934 vbl_end /= 2;
935 vtotal /= 2;
936 }
937
Ville Syrjäläc2baf4b2013-09-23 14:48:50 +0300938 ret |= DRM_SCANOUTPOS_VALID | DRM_SCANOUTPOS_ACCURATE;
939
Mario Kleinerad3543e2013-10-30 05:13:08 +0100940 /*
941 * Lock uncore.lock, as we will do multiple timing critical raw
942 * register reads, potentially with preemption disabled, so the
943 * following code must not block on uncore.lock.
944 */
945 spin_lock_irqsave(&dev_priv->uncore.lock, irqflags);
Ville Syrjälä78e8fc62014-04-29 13:35:44 +0300946
Mario Kleinerad3543e2013-10-30 05:13:08 +0100947 /* preempt_disable_rt() should go right here in PREEMPT_RT patchset. */
948
949 /* Get optional system timestamp before query. */
950 if (stime)
951 *stime = ktime_get();
952
Ville Syrjälä7c06b082013-10-11 21:52:43 +0300953 if (IS_GEN2(dev) || IS_G4X(dev) || INTEL_INFO(dev)->gen >= 5) {
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100954 /* No obvious pixelcount register. Only query vertical
955 * scanout position from Display scan line register.
956 */
Ville Syrjäläa225f072014-04-29 13:35:45 +0300957 position = __intel_get_crtc_scanline(intel_crtc);
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100958 } else {
959 /* Have access to pixelcount since start of frame.
960 * We can split this into vertical and horizontal
961 * scanout position.
962 */
Mario Kleinerad3543e2013-10-30 05:13:08 +0100963 position = (__raw_i915_read32(dev_priv, PIPEFRAMEPIXEL(pipe)) & PIPE_PIXEL_MASK) >> PIPE_PIXEL_SHIFT;
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100964
Ville Syrjälä3aa18df2013-10-11 19:10:32 +0300965 /* convert to pixel counts */
966 vbl_start *= htotal;
967 vbl_end *= htotal;
968 vtotal *= htotal;
Ville Syrjälä78e8fc62014-04-29 13:35:44 +0300969
970 /*
Ville Syrjälä7e78f1cb2014-04-29 13:35:49 +0300971 * In interlaced modes, the pixel counter counts all pixels,
972 * so one field will have htotal more pixels. In order to avoid
973 * the reported position from jumping backwards when the pixel
974 * counter is beyond the length of the shorter field, just
975 * clamp the position the length of the shorter field. This
976 * matches how the scanline counter based position works since
977 * the scanline counter doesn't count the two half lines.
978 */
979 if (position >= vtotal)
980 position = vtotal - 1;
981
982 /*
Ville Syrjälä78e8fc62014-04-29 13:35:44 +0300983 * Start of vblank interrupt is triggered at start of hsync,
984 * just prior to the first active line of vblank. However we
985 * consider lines to start at the leading edge of horizontal
986 * active. So, should we get here before we've crossed into
987 * the horizontal active of the first line in vblank, we would
988 * not set the DRM_SCANOUTPOS_INVBL flag. In order to fix that,
989 * always add htotal-hsync_start to the current pixel position.
990 */
991 position = (position + htotal - hsync_start) % vtotal;
Ville Syrjälä3aa18df2013-10-11 19:10:32 +0300992 }
993
Mario Kleinerad3543e2013-10-30 05:13:08 +0100994 /* Get optional system timestamp after query. */
995 if (etime)
996 *etime = ktime_get();
997
998 /* preempt_enable_rt() should go right here in PREEMPT_RT patchset. */
999
1000 spin_unlock_irqrestore(&dev_priv->uncore.lock, irqflags);
1001
Ville Syrjälä3aa18df2013-10-11 19:10:32 +03001002 in_vbl = position >= vbl_start && position < vbl_end;
1003
1004 /*
1005 * While in vblank, position will be negative
1006 * counting up towards 0 at vbl_end. And outside
1007 * vblank, position will be positive counting
1008 * up since vbl_end.
1009 */
1010 if (position >= vbl_start)
1011 position -= vbl_end;
1012 else
1013 position += vtotal - vbl_end;
1014
Ville Syrjälä7c06b082013-10-11 21:52:43 +03001015 if (IS_GEN2(dev) || IS_G4X(dev) || INTEL_INFO(dev)->gen >= 5) {
Ville Syrjälä3aa18df2013-10-11 19:10:32 +03001016 *vpos = position;
1017 *hpos = 0;
1018 } else {
Mario Kleiner0af7e4d2010-12-08 04:07:19 +01001019 *vpos = position / htotal;
1020 *hpos = position - (*vpos * htotal);
1021 }
1022
Mario Kleiner0af7e4d2010-12-08 04:07:19 +01001023 /* In vblank? */
1024 if (in_vbl)
Daniel Vetter3d3cbd82014-09-10 17:36:11 +02001025 ret |= DRM_SCANOUTPOS_IN_VBLANK;
Mario Kleiner0af7e4d2010-12-08 04:07:19 +01001026
1027 return ret;
1028}
1029
Ville Syrjäläa225f072014-04-29 13:35:45 +03001030int intel_get_crtc_scanline(struct intel_crtc *crtc)
1031{
1032 struct drm_i915_private *dev_priv = crtc->base.dev->dev_private;
1033 unsigned long irqflags;
1034 int position;
1035
1036 spin_lock_irqsave(&dev_priv->uncore.lock, irqflags);
1037 position = __intel_get_crtc_scanline(crtc);
1038 spin_unlock_irqrestore(&dev_priv->uncore.lock, irqflags);
1039
1040 return position;
1041}
1042
Jesse Barnesf71d4af2011-06-28 13:00:41 -07001043static int i915_get_vblank_timestamp(struct drm_device *dev, int pipe,
Mario Kleiner0af7e4d2010-12-08 04:07:19 +01001044 int *max_error,
1045 struct timeval *vblank_time,
1046 unsigned flags)
1047{
Chris Wilson4041b852011-01-22 10:07:56 +00001048 struct drm_crtc *crtc;
Mario Kleiner0af7e4d2010-12-08 04:07:19 +01001049
Ben Widawsky7eb552a2013-03-13 14:05:41 -07001050 if (pipe < 0 || pipe >= INTEL_INFO(dev)->num_pipes) {
Chris Wilson4041b852011-01-22 10:07:56 +00001051 DRM_ERROR("Invalid crtc %d\n", pipe);
Mario Kleiner0af7e4d2010-12-08 04:07:19 +01001052 return -EINVAL;
1053 }
1054
1055 /* Get drm_crtc to timestamp: */
Chris Wilson4041b852011-01-22 10:07:56 +00001056 crtc = intel_get_crtc_for_pipe(dev, pipe);
1057 if (crtc == NULL) {
1058 DRM_ERROR("Invalid crtc %d\n", pipe);
1059 return -EINVAL;
1060 }
1061
1062 if (!crtc->enabled) {
1063 DRM_DEBUG_KMS("crtc %d is disabled\n", pipe);
1064 return -EBUSY;
1065 }
Mario Kleiner0af7e4d2010-12-08 04:07:19 +01001066
1067 /* Helper routine in DRM core does all the work: */
Chris Wilson4041b852011-01-22 10:07:56 +00001068 return drm_calc_vbltimestamp_from_scanoutpos(dev, pipe, max_error,
1069 vblank_time, flags,
Ville Syrjälä7da903e2013-10-26 17:57:31 +03001070 crtc,
1071 &to_intel_crtc(crtc)->config.adjusted_mode);
Mario Kleiner0af7e4d2010-12-08 04:07:19 +01001072}
1073
Jani Nikula67c347f2013-09-17 14:26:34 +03001074static bool intel_hpd_irq_event(struct drm_device *dev,
1075 struct drm_connector *connector)
Egbert Eich321a1b32013-04-11 16:00:26 +02001076{
1077 enum drm_connector_status old_status;
1078
1079 WARN_ON(!mutex_is_locked(&dev->mode_config.mutex));
1080 old_status = connector->status;
1081
1082 connector->status = connector->funcs->detect(connector, false);
Jani Nikula67c347f2013-09-17 14:26:34 +03001083 if (old_status == connector->status)
1084 return false;
1085
1086 DRM_DEBUG_KMS("[CONNECTOR:%d:%s] status updated from %s to %s\n",
Egbert Eich321a1b32013-04-11 16:00:26 +02001087 connector->base.id,
Jani Nikulac23cc412014-06-03 14:56:17 +03001088 connector->name,
Jani Nikula67c347f2013-09-17 14:26:34 +03001089 drm_get_connector_status_name(old_status),
1090 drm_get_connector_status_name(connector->status));
1091
1092 return true;
Egbert Eich321a1b32013-04-11 16:00:26 +02001093}
1094
Dave Airlie13cf5502014-06-18 11:29:35 +10001095static void i915_digport_work_func(struct work_struct *work)
1096{
1097 struct drm_i915_private *dev_priv =
1098 container_of(work, struct drm_i915_private, dig_port_work);
Dave Airlie13cf5502014-06-18 11:29:35 +10001099 u32 long_port_mask, short_port_mask;
1100 struct intel_digital_port *intel_dig_port;
1101 int i, ret;
1102 u32 old_bits = 0;
1103
Daniel Vetter4cb21832014-09-15 14:55:26 +02001104 spin_lock_irq(&dev_priv->irq_lock);
Dave Airlie13cf5502014-06-18 11:29:35 +10001105 long_port_mask = dev_priv->long_hpd_port_mask;
1106 dev_priv->long_hpd_port_mask = 0;
1107 short_port_mask = dev_priv->short_hpd_port_mask;
1108 dev_priv->short_hpd_port_mask = 0;
Daniel Vetter4cb21832014-09-15 14:55:26 +02001109 spin_unlock_irq(&dev_priv->irq_lock);
Dave Airlie13cf5502014-06-18 11:29:35 +10001110
1111 for (i = 0; i < I915_MAX_PORTS; i++) {
1112 bool valid = false;
1113 bool long_hpd = false;
1114 intel_dig_port = dev_priv->hpd_irq_port[i];
1115 if (!intel_dig_port || !intel_dig_port->hpd_pulse)
1116 continue;
1117
1118 if (long_port_mask & (1 << i)) {
1119 valid = true;
1120 long_hpd = true;
1121 } else if (short_port_mask & (1 << i))
1122 valid = true;
1123
1124 if (valid) {
1125 ret = intel_dig_port->hpd_pulse(intel_dig_port, long_hpd);
1126 if (ret == true) {
1127 /* if we get true fallback to old school hpd */
1128 old_bits |= (1 << intel_dig_port->base.hpd_pin);
1129 }
1130 }
1131 }
1132
1133 if (old_bits) {
Daniel Vetter4cb21832014-09-15 14:55:26 +02001134 spin_lock_irq(&dev_priv->irq_lock);
Dave Airlie13cf5502014-06-18 11:29:35 +10001135 dev_priv->hpd_event_bits |= old_bits;
Daniel Vetter4cb21832014-09-15 14:55:26 +02001136 spin_unlock_irq(&dev_priv->irq_lock);
Dave Airlie13cf5502014-06-18 11:29:35 +10001137 schedule_work(&dev_priv->hotplug_work);
1138 }
1139}
1140
Jesse Barnes5ca58282009-03-31 14:11:15 -07001141/*
1142 * Handle hotplug events outside the interrupt handler proper.
1143 */
Egbert Eichac4c16c2013-04-16 13:36:58 +02001144#define I915_REENABLE_HOTPLUG_DELAY (2*60*1000)
1145
Jesse Barnes5ca58282009-03-31 14:11:15 -07001146static void i915_hotplug_work_func(struct work_struct *work)
1147{
Jani Nikula2d1013d2014-03-31 14:27:17 +03001148 struct drm_i915_private *dev_priv =
1149 container_of(work, struct drm_i915_private, hotplug_work);
Jesse Barnes5ca58282009-03-31 14:11:15 -07001150 struct drm_device *dev = dev_priv->dev;
Keith Packardc31c4ba2009-05-06 11:48:58 -07001151 struct drm_mode_config *mode_config = &dev->mode_config;
Egbert Eichcd569ae2013-04-16 13:36:57 +02001152 struct intel_connector *intel_connector;
1153 struct intel_encoder *intel_encoder;
1154 struct drm_connector *connector;
Egbert Eichcd569ae2013-04-16 13:36:57 +02001155 bool hpd_disabled = false;
Egbert Eich321a1b32013-04-11 16:00:26 +02001156 bool changed = false;
Egbert Eich142e2392013-04-11 15:57:57 +02001157 u32 hpd_event_bits;
Jesse Barnes5ca58282009-03-31 14:11:15 -07001158
Keith Packarda65e34c2011-07-25 10:04:56 -07001159 mutex_lock(&mode_config->mutex);
Jesse Barnese67189ab2011-02-11 14:44:51 -08001160 DRM_DEBUG_KMS("running encoder hotplug functions\n");
1161
Daniel Vetter4cb21832014-09-15 14:55:26 +02001162 spin_lock_irq(&dev_priv->irq_lock);
Egbert Eich142e2392013-04-11 15:57:57 +02001163
1164 hpd_event_bits = dev_priv->hpd_event_bits;
1165 dev_priv->hpd_event_bits = 0;
Egbert Eichcd569ae2013-04-16 13:36:57 +02001166 list_for_each_entry(connector, &mode_config->connector_list, head) {
1167 intel_connector = to_intel_connector(connector);
Dave Airlie36cd7442014-05-02 13:44:18 +10001168 if (!intel_connector->encoder)
1169 continue;
Egbert Eichcd569ae2013-04-16 13:36:57 +02001170 intel_encoder = intel_connector->encoder;
1171 if (intel_encoder->hpd_pin > HPD_NONE &&
1172 dev_priv->hpd_stats[intel_encoder->hpd_pin].hpd_mark == HPD_MARK_DISABLED &&
1173 connector->polled == DRM_CONNECTOR_POLL_HPD) {
1174 DRM_INFO("HPD interrupt storm detected on connector %s: "
1175 "switching from hotplug detection to polling\n",
Jani Nikulac23cc412014-06-03 14:56:17 +03001176 connector->name);
Egbert Eichcd569ae2013-04-16 13:36:57 +02001177 dev_priv->hpd_stats[intel_encoder->hpd_pin].hpd_mark = HPD_DISABLED;
1178 connector->polled = DRM_CONNECTOR_POLL_CONNECT
1179 | DRM_CONNECTOR_POLL_DISCONNECT;
1180 hpd_disabled = true;
1181 }
Egbert Eich142e2392013-04-11 15:57:57 +02001182 if (hpd_event_bits & (1 << intel_encoder->hpd_pin)) {
1183 DRM_DEBUG_KMS("Connector %s (pin %i) received hotplug event.\n",
Jani Nikulac23cc412014-06-03 14:56:17 +03001184 connector->name, intel_encoder->hpd_pin);
Egbert Eich142e2392013-04-11 15:57:57 +02001185 }
Egbert Eichcd569ae2013-04-16 13:36:57 +02001186 }
1187 /* if there were no outputs to poll, poll was disabled,
1188 * therefore make sure it's enabled when disabling HPD on
1189 * some connectors */
Egbert Eichac4c16c2013-04-16 13:36:58 +02001190 if (hpd_disabled) {
Egbert Eichcd569ae2013-04-16 13:36:57 +02001191 drm_kms_helper_poll_enable(dev);
Imre Deak63237512014-08-18 15:37:02 +03001192 mod_delayed_work(system_wq, &dev_priv->hotplug_reenable_work,
1193 msecs_to_jiffies(I915_REENABLE_HOTPLUG_DELAY));
Egbert Eichac4c16c2013-04-16 13:36:58 +02001194 }
Egbert Eichcd569ae2013-04-16 13:36:57 +02001195
Daniel Vetter4cb21832014-09-15 14:55:26 +02001196 spin_unlock_irq(&dev_priv->irq_lock);
Egbert Eichcd569ae2013-04-16 13:36:57 +02001197
Egbert Eich321a1b32013-04-11 16:00:26 +02001198 list_for_each_entry(connector, &mode_config->connector_list, head) {
1199 intel_connector = to_intel_connector(connector);
Dave Airlie36cd7442014-05-02 13:44:18 +10001200 if (!intel_connector->encoder)
1201 continue;
Egbert Eich321a1b32013-04-11 16:00:26 +02001202 intel_encoder = intel_connector->encoder;
1203 if (hpd_event_bits & (1 << intel_encoder->hpd_pin)) {
1204 if (intel_encoder->hot_plug)
1205 intel_encoder->hot_plug(intel_encoder);
1206 if (intel_hpd_irq_event(dev, connector))
1207 changed = true;
1208 }
1209 }
Keith Packard40ee3382011-07-28 15:31:19 -07001210 mutex_unlock(&mode_config->mutex);
1211
Egbert Eich321a1b32013-04-11 16:00:26 +02001212 if (changed)
1213 drm_kms_helper_hotplug_event(dev);
Jesse Barnes5ca58282009-03-31 14:11:15 -07001214}
1215
Daniel Vetterd0ecd7e2013-07-04 23:35:25 +02001216static void ironlake_rps_change_irq_handler(struct drm_device *dev)
Jesse Barnesf97108d2010-01-29 11:27:07 -08001217{
Jani Nikula2d1013d2014-03-31 14:27:17 +03001218 struct drm_i915_private *dev_priv = dev->dev_private;
Matthew Garrettb5b72e82010-02-02 18:30:47 +00001219 u32 busy_up, busy_down, max_avg, min_avg;
Daniel Vetter92703882012-08-09 16:46:01 +02001220 u8 new_delay;
Daniel Vetter92703882012-08-09 16:46:01 +02001221
Daniel Vetterd0ecd7e2013-07-04 23:35:25 +02001222 spin_lock(&mchdev_lock);
Jesse Barnesf97108d2010-01-29 11:27:07 -08001223
Daniel Vetter73edd18f2012-08-08 23:35:37 +02001224 I915_WRITE16(MEMINTRSTS, I915_READ(MEMINTRSTS));
1225
Daniel Vetter20e4d402012-08-08 23:35:39 +02001226 new_delay = dev_priv->ips.cur_delay;
Daniel Vetter92703882012-08-09 16:46:01 +02001227
Jesse Barnes7648fa92010-05-20 14:28:11 -07001228 I915_WRITE16(MEMINTRSTS, MEMINT_EVAL_CHG);
Matthew Garrettb5b72e82010-02-02 18:30:47 +00001229 busy_up = I915_READ(RCPREVBSYTUPAVG);
1230 busy_down = I915_READ(RCPREVBSYTDNAVG);
Jesse Barnesf97108d2010-01-29 11:27:07 -08001231 max_avg = I915_READ(RCBMAXAVG);
1232 min_avg = I915_READ(RCBMINAVG);
1233
1234 /* Handle RCS change request from hw */
Matthew Garrettb5b72e82010-02-02 18:30:47 +00001235 if (busy_up > max_avg) {
Daniel Vetter20e4d402012-08-08 23:35:39 +02001236 if (dev_priv->ips.cur_delay != dev_priv->ips.max_delay)
1237 new_delay = dev_priv->ips.cur_delay - 1;
1238 if (new_delay < dev_priv->ips.max_delay)
1239 new_delay = dev_priv->ips.max_delay;
Matthew Garrettb5b72e82010-02-02 18:30:47 +00001240 } else if (busy_down < min_avg) {
Daniel Vetter20e4d402012-08-08 23:35:39 +02001241 if (dev_priv->ips.cur_delay != dev_priv->ips.min_delay)
1242 new_delay = dev_priv->ips.cur_delay + 1;
1243 if (new_delay > dev_priv->ips.min_delay)
1244 new_delay = dev_priv->ips.min_delay;
Jesse Barnesf97108d2010-01-29 11:27:07 -08001245 }
1246
Jesse Barnes7648fa92010-05-20 14:28:11 -07001247 if (ironlake_set_drps(dev, new_delay))
Daniel Vetter20e4d402012-08-08 23:35:39 +02001248 dev_priv->ips.cur_delay = new_delay;
Jesse Barnesf97108d2010-01-29 11:27:07 -08001249
Daniel Vetterd0ecd7e2013-07-04 23:35:25 +02001250 spin_unlock(&mchdev_lock);
Daniel Vetter92703882012-08-09 16:46:01 +02001251
Jesse Barnesf97108d2010-01-29 11:27:07 -08001252 return;
1253}
1254
Chris Wilson549f7362010-10-19 11:19:32 +01001255static void notify_ring(struct drm_device *dev,
Oscar Mateoa4872ba2014-05-22 14:13:33 +01001256 struct intel_engine_cs *ring)
Chris Wilson549f7362010-10-19 11:19:32 +01001257{
Oscar Mateo93b0a4e2014-05-22 14:13:36 +01001258 if (!intel_ring_initialized(ring))
Chris Wilson475553d2011-01-20 09:52:56 +00001259 return;
1260
Chris Wilson814e9b52013-09-23 17:33:19 -03001261 trace_i915_gem_request_complete(ring);
Chris Wilson9862e602011-01-04 22:22:17 +00001262
Sourab Gupta84c33a62014-06-02 16:47:17 +05301263 if (drm_core_check_feature(dev, DRIVER_MODESET))
1264 intel_notify_mmio_flip(ring);
1265
Chris Wilson549f7362010-10-19 11:19:32 +01001266 wake_up_all(&ring->irq_queue);
Mika Kuoppala10cd45b2013-07-03 17:22:08 +03001267 i915_queue_hangcheck(dev);
Chris Wilson549f7362010-10-19 11:19:32 +01001268}
1269
Deepak S31685c22014-07-03 17:33:01 -04001270static u32 vlv_c0_residency(struct drm_i915_private *dev_priv,
Chris Wilsonbf225f22014-07-10 20:31:18 +01001271 struct intel_rps_ei *rps_ei)
Deepak S31685c22014-07-03 17:33:01 -04001272{
1273 u32 cz_ts, cz_freq_khz;
1274 u32 render_count, media_count;
1275 u32 elapsed_render, elapsed_media, elapsed_time;
1276 u32 residency = 0;
1277
1278 cz_ts = vlv_punit_read(dev_priv, PUNIT_REG_CZ_TIMESTAMP);
1279 cz_freq_khz = DIV_ROUND_CLOSEST(dev_priv->mem_freq * 1000, 4);
1280
1281 render_count = I915_READ(VLV_RENDER_C0_COUNT_REG);
1282 media_count = I915_READ(VLV_MEDIA_C0_COUNT_REG);
1283
Chris Wilsonbf225f22014-07-10 20:31:18 +01001284 if (rps_ei->cz_clock == 0) {
1285 rps_ei->cz_clock = cz_ts;
1286 rps_ei->render_c0 = render_count;
1287 rps_ei->media_c0 = media_count;
Deepak S31685c22014-07-03 17:33:01 -04001288
1289 return dev_priv->rps.cur_freq;
1290 }
1291
Chris Wilsonbf225f22014-07-10 20:31:18 +01001292 elapsed_time = cz_ts - rps_ei->cz_clock;
1293 rps_ei->cz_clock = cz_ts;
Deepak S31685c22014-07-03 17:33:01 -04001294
Chris Wilsonbf225f22014-07-10 20:31:18 +01001295 elapsed_render = render_count - rps_ei->render_c0;
1296 rps_ei->render_c0 = render_count;
Deepak S31685c22014-07-03 17:33:01 -04001297
Chris Wilsonbf225f22014-07-10 20:31:18 +01001298 elapsed_media = media_count - rps_ei->media_c0;
1299 rps_ei->media_c0 = media_count;
Deepak S31685c22014-07-03 17:33:01 -04001300
1301 /* Convert all the counters into common unit of milli sec */
1302 elapsed_time /= VLV_CZ_CLOCK_TO_MILLI_SEC;
1303 elapsed_render /= cz_freq_khz;
1304 elapsed_media /= cz_freq_khz;
1305
1306 /*
1307 * Calculate overall C0 residency percentage
1308 * only if elapsed time is non zero
1309 */
1310 if (elapsed_time) {
1311 residency =
1312 ((max(elapsed_render, elapsed_media) * 100)
1313 / elapsed_time);
1314 }
1315
1316 return residency;
1317}
1318
1319/**
1320 * vlv_calc_delay_from_C0_counters - Increase/Decrease freq based on GPU
1321 * busy-ness calculated from C0 counters of render & media power wells
1322 * @dev_priv: DRM device private
1323 *
1324 */
Damien Lespiau4fa79042014-08-08 19:25:57 +01001325static int vlv_calc_delay_from_C0_counters(struct drm_i915_private *dev_priv)
Deepak S31685c22014-07-03 17:33:01 -04001326{
1327 u32 residency_C0_up = 0, residency_C0_down = 0;
Damien Lespiau4fa79042014-08-08 19:25:57 +01001328 int new_delay, adj;
Deepak S31685c22014-07-03 17:33:01 -04001329
1330 dev_priv->rps.ei_interrupt_count++;
1331
1332 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
1333
1334
Chris Wilsonbf225f22014-07-10 20:31:18 +01001335 if (dev_priv->rps.up_ei.cz_clock == 0) {
1336 vlv_c0_residency(dev_priv, &dev_priv->rps.up_ei);
1337 vlv_c0_residency(dev_priv, &dev_priv->rps.down_ei);
Deepak S31685c22014-07-03 17:33:01 -04001338 return dev_priv->rps.cur_freq;
1339 }
1340
1341
1342 /*
1343 * To down throttle, C0 residency should be less than down threshold
1344 * for continous EI intervals. So calculate down EI counters
1345 * once in VLV_INT_COUNT_FOR_DOWN_EI
1346 */
1347 if (dev_priv->rps.ei_interrupt_count == VLV_INT_COUNT_FOR_DOWN_EI) {
1348
1349 dev_priv->rps.ei_interrupt_count = 0;
1350
1351 residency_C0_down = vlv_c0_residency(dev_priv,
Chris Wilsonbf225f22014-07-10 20:31:18 +01001352 &dev_priv->rps.down_ei);
Deepak S31685c22014-07-03 17:33:01 -04001353 } else {
1354 residency_C0_up = vlv_c0_residency(dev_priv,
Chris Wilsonbf225f22014-07-10 20:31:18 +01001355 &dev_priv->rps.up_ei);
Deepak S31685c22014-07-03 17:33:01 -04001356 }
1357
1358 new_delay = dev_priv->rps.cur_freq;
1359
1360 adj = dev_priv->rps.last_adj;
1361 /* C0 residency is greater than UP threshold. Increase Frequency */
1362 if (residency_C0_up >= VLV_RP_UP_EI_THRESHOLD) {
1363 if (adj > 0)
1364 adj *= 2;
1365 else
1366 adj = 1;
1367
1368 if (dev_priv->rps.cur_freq < dev_priv->rps.max_freq_softlimit)
1369 new_delay = dev_priv->rps.cur_freq + adj;
1370
1371 /*
1372 * For better performance, jump directly
1373 * to RPe if we're below it.
1374 */
1375 if (new_delay < dev_priv->rps.efficient_freq)
1376 new_delay = dev_priv->rps.efficient_freq;
1377
1378 } else if (!dev_priv->rps.ei_interrupt_count &&
1379 (residency_C0_down < VLV_RP_DOWN_EI_THRESHOLD)) {
1380 if (adj < 0)
1381 adj *= 2;
1382 else
1383 adj = -1;
1384 /*
1385 * This means, C0 residency is less than down threshold over
1386 * a period of VLV_INT_COUNT_FOR_DOWN_EI. So, reduce the freq
1387 */
1388 if (dev_priv->rps.cur_freq > dev_priv->rps.min_freq_softlimit)
1389 new_delay = dev_priv->rps.cur_freq + adj;
1390 }
1391
1392 return new_delay;
1393}
1394
Ben Widawsky4912d042011-04-25 11:25:20 -07001395static void gen6_pm_rps_work(struct work_struct *work)
Jesse Barnes3b8d8d92010-12-17 14:19:02 -08001396{
Jani Nikula2d1013d2014-03-31 14:27:17 +03001397 struct drm_i915_private *dev_priv =
1398 container_of(work, struct drm_i915_private, rps.work);
Paulo Zanoniedbfdb42013-08-06 18:57:13 -03001399 u32 pm_iir;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01001400 int new_delay, adj;
Jesse Barnes3b8d8d92010-12-17 14:19:02 -08001401
Daniel Vetter59cdb632013-07-04 23:35:28 +02001402 spin_lock_irq(&dev_priv->irq_lock);
Daniel Vetterc6a828d2012-08-08 23:35:35 +02001403 pm_iir = dev_priv->rps.pm_iir;
1404 dev_priv->rps.pm_iir = 0;
Damien Lespiau6af257c2014-07-15 09:17:41 +02001405 if (INTEL_INFO(dev_priv->dev)->gen >= 8)
Daniel Vetter480c8032014-07-16 09:49:40 +02001406 gen8_enable_pm_irq(dev_priv, dev_priv->pm_rps_events);
Ben Widawsky09610212014-05-15 20:58:08 +03001407 else {
1408 /* Make sure not to corrupt PMIMR state used by ringbuffer */
Daniel Vetter480c8032014-07-16 09:49:40 +02001409 gen6_enable_pm_irq(dev_priv, dev_priv->pm_rps_events);
Ben Widawsky09610212014-05-15 20:58:08 +03001410 }
Daniel Vetter59cdb632013-07-04 23:35:28 +02001411 spin_unlock_irq(&dev_priv->irq_lock);
Ben Widawsky4912d042011-04-25 11:25:20 -07001412
Paulo Zanoni60611c12013-08-15 11:50:01 -03001413 /* Make sure we didn't queue anything we're not going to process. */
Deepak Sa6706b42014-03-15 20:23:22 +05301414 WARN_ON(pm_iir & ~dev_priv->pm_rps_events);
Paulo Zanoni60611c12013-08-15 11:50:01 -03001415
Deepak Sa6706b42014-03-15 20:23:22 +05301416 if ((pm_iir & dev_priv->pm_rps_events) == 0)
Jesse Barnes3b8d8d92010-12-17 14:19:02 -08001417 return;
1418
Jesse Barnes4fc688c2012-11-02 11:14:01 -07001419 mutex_lock(&dev_priv->rps.hw_lock);
Chris Wilson7b9e0ae2012-04-28 08:56:39 +01001420
Chris Wilsondd75fdc2013-09-25 17:34:57 +01001421 adj = dev_priv->rps.last_adj;
Ville Syrjälä74250342013-06-25 21:38:11 +03001422 if (pm_iir & GEN6_PM_RP_UP_THRESHOLD) {
Chris Wilsondd75fdc2013-09-25 17:34:57 +01001423 if (adj > 0)
1424 adj *= 2;
Deepak S13a56602014-05-23 21:00:21 +05301425 else {
1426 /* CHV needs even encode values */
1427 adj = IS_CHERRYVIEW(dev_priv->dev) ? 2 : 1;
1428 }
Ben Widawskyb39fb292014-03-19 18:31:11 -07001429 new_delay = dev_priv->rps.cur_freq + adj;
Ville Syrjälä74250342013-06-25 21:38:11 +03001430
1431 /*
1432 * For better performance, jump directly
1433 * to RPe if we're below it.
1434 */
Ben Widawskyb39fb292014-03-19 18:31:11 -07001435 if (new_delay < dev_priv->rps.efficient_freq)
1436 new_delay = dev_priv->rps.efficient_freq;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01001437 } else if (pm_iir & GEN6_PM_RP_DOWN_TIMEOUT) {
Ben Widawskyb39fb292014-03-19 18:31:11 -07001438 if (dev_priv->rps.cur_freq > dev_priv->rps.efficient_freq)
1439 new_delay = dev_priv->rps.efficient_freq;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01001440 else
Ben Widawskyb39fb292014-03-19 18:31:11 -07001441 new_delay = dev_priv->rps.min_freq_softlimit;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01001442 adj = 0;
Deepak S31685c22014-07-03 17:33:01 -04001443 } else if (pm_iir & GEN6_PM_RP_UP_EI_EXPIRED) {
1444 new_delay = vlv_calc_delay_from_C0_counters(dev_priv);
Chris Wilsondd75fdc2013-09-25 17:34:57 +01001445 } else if (pm_iir & GEN6_PM_RP_DOWN_THRESHOLD) {
1446 if (adj < 0)
1447 adj *= 2;
Deepak S13a56602014-05-23 21:00:21 +05301448 else {
1449 /* CHV needs even encode values */
1450 adj = IS_CHERRYVIEW(dev_priv->dev) ? -2 : -1;
1451 }
Ben Widawskyb39fb292014-03-19 18:31:11 -07001452 new_delay = dev_priv->rps.cur_freq + adj;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01001453 } else { /* unknown event */
Ben Widawskyb39fb292014-03-19 18:31:11 -07001454 new_delay = dev_priv->rps.cur_freq;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01001455 }
Jesse Barnes3b8d8d92010-12-17 14:19:02 -08001456
Ben Widawsky79249632012-09-07 19:43:42 -07001457 /* sysfs frequency interfaces may have snuck in while servicing the
1458 * interrupt
1459 */
Ville Syrjälä1272e7b2013-11-07 19:57:49 +02001460 new_delay = clamp_t(int, new_delay,
Ben Widawskyb39fb292014-03-19 18:31:11 -07001461 dev_priv->rps.min_freq_softlimit,
1462 dev_priv->rps.max_freq_softlimit);
Deepak S27544362014-01-27 21:35:05 +05301463
Ben Widawskyb39fb292014-03-19 18:31:11 -07001464 dev_priv->rps.last_adj = new_delay - dev_priv->rps.cur_freq;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01001465
1466 if (IS_VALLEYVIEW(dev_priv->dev))
1467 valleyview_set_rps(dev_priv->dev, new_delay);
1468 else
1469 gen6_set_rps(dev_priv->dev, new_delay);
Jesse Barnes3b8d8d92010-12-17 14:19:02 -08001470
Jesse Barnes4fc688c2012-11-02 11:14:01 -07001471 mutex_unlock(&dev_priv->rps.hw_lock);
Jesse Barnes3b8d8d92010-12-17 14:19:02 -08001472}
1473
Ben Widawskye3689192012-05-25 16:56:22 -07001474
1475/**
1476 * ivybridge_parity_work - Workqueue called when a parity error interrupt
1477 * occurred.
1478 * @work: workqueue struct
1479 *
1480 * Doesn't actually do anything except notify userspace. As a consequence of
1481 * this event, userspace should try to remap the bad rows since statistically
1482 * it is likely the same row is more likely to go bad again.
1483 */
1484static void ivybridge_parity_work(struct work_struct *work)
1485{
Jani Nikula2d1013d2014-03-31 14:27:17 +03001486 struct drm_i915_private *dev_priv =
1487 container_of(work, struct drm_i915_private, l3_parity.error_work);
Ben Widawskye3689192012-05-25 16:56:22 -07001488 u32 error_status, row, bank, subbank;
Ben Widawsky35a85ac2013-09-19 11:13:41 -07001489 char *parity_event[6];
Ben Widawskye3689192012-05-25 16:56:22 -07001490 uint32_t misccpctl;
Ben Widawsky35a85ac2013-09-19 11:13:41 -07001491 uint8_t slice = 0;
Ben Widawskye3689192012-05-25 16:56:22 -07001492
1493 /* We must turn off DOP level clock gating to access the L3 registers.
1494 * In order to prevent a get/put style interface, acquire struct mutex
1495 * any time we access those registers.
1496 */
1497 mutex_lock(&dev_priv->dev->struct_mutex);
1498
Ben Widawsky35a85ac2013-09-19 11:13:41 -07001499 /* If we've screwed up tracking, just let the interrupt fire again */
1500 if (WARN_ON(!dev_priv->l3_parity.which_slice))
1501 goto out;
1502
Ben Widawskye3689192012-05-25 16:56:22 -07001503 misccpctl = I915_READ(GEN7_MISCCPCTL);
1504 I915_WRITE(GEN7_MISCCPCTL, misccpctl & ~GEN7_DOP_CLOCK_GATE_ENABLE);
1505 POSTING_READ(GEN7_MISCCPCTL);
1506
Ben Widawsky35a85ac2013-09-19 11:13:41 -07001507 while ((slice = ffs(dev_priv->l3_parity.which_slice)) != 0) {
1508 u32 reg;
Ben Widawskye3689192012-05-25 16:56:22 -07001509
Ben Widawsky35a85ac2013-09-19 11:13:41 -07001510 slice--;
1511 if (WARN_ON_ONCE(slice >= NUM_L3_SLICES(dev_priv->dev)))
1512 break;
1513
1514 dev_priv->l3_parity.which_slice &= ~(1<<slice);
1515
1516 reg = GEN7_L3CDERRST1 + (slice * 0x200);
1517
1518 error_status = I915_READ(reg);
1519 row = GEN7_PARITY_ERROR_ROW(error_status);
1520 bank = GEN7_PARITY_ERROR_BANK(error_status);
1521 subbank = GEN7_PARITY_ERROR_SUBBANK(error_status);
1522
1523 I915_WRITE(reg, GEN7_PARITY_ERROR_VALID | GEN7_L3CDERRST1_ENABLE);
1524 POSTING_READ(reg);
1525
1526 parity_event[0] = I915_L3_PARITY_UEVENT "=1";
1527 parity_event[1] = kasprintf(GFP_KERNEL, "ROW=%d", row);
1528 parity_event[2] = kasprintf(GFP_KERNEL, "BANK=%d", bank);
1529 parity_event[3] = kasprintf(GFP_KERNEL, "SUBBANK=%d", subbank);
1530 parity_event[4] = kasprintf(GFP_KERNEL, "SLICE=%d", slice);
1531 parity_event[5] = NULL;
1532
Dave Airlie5bdebb12013-10-11 14:07:25 +10001533 kobject_uevent_env(&dev_priv->dev->primary->kdev->kobj,
Ben Widawsky35a85ac2013-09-19 11:13:41 -07001534 KOBJ_CHANGE, parity_event);
1535
1536 DRM_DEBUG("Parity error: Slice = %d, Row = %d, Bank = %d, Sub bank = %d.\n",
1537 slice, row, bank, subbank);
1538
1539 kfree(parity_event[4]);
1540 kfree(parity_event[3]);
1541 kfree(parity_event[2]);
1542 kfree(parity_event[1]);
1543 }
Ben Widawskye3689192012-05-25 16:56:22 -07001544
1545 I915_WRITE(GEN7_MISCCPCTL, misccpctl);
1546
Ben Widawsky35a85ac2013-09-19 11:13:41 -07001547out:
1548 WARN_ON(dev_priv->l3_parity.which_slice);
Daniel Vetter4cb21832014-09-15 14:55:26 +02001549 spin_lock_irq(&dev_priv->irq_lock);
Daniel Vetter480c8032014-07-16 09:49:40 +02001550 gen5_enable_gt_irq(dev_priv, GT_PARITY_ERROR(dev_priv->dev));
Daniel Vetter4cb21832014-09-15 14:55:26 +02001551 spin_unlock_irq(&dev_priv->irq_lock);
Ben Widawskye3689192012-05-25 16:56:22 -07001552
1553 mutex_unlock(&dev_priv->dev->struct_mutex);
Ben Widawskye3689192012-05-25 16:56:22 -07001554}
1555
Ben Widawsky35a85ac2013-09-19 11:13:41 -07001556static void ivybridge_parity_error_irq_handler(struct drm_device *dev, u32 iir)
Ben Widawskye3689192012-05-25 16:56:22 -07001557{
Jani Nikula2d1013d2014-03-31 14:27:17 +03001558 struct drm_i915_private *dev_priv = dev->dev_private;
Ben Widawskye3689192012-05-25 16:56:22 -07001559
Ben Widawsky040d2ba2013-09-19 11:01:40 -07001560 if (!HAS_L3_DPF(dev))
Ben Widawskye3689192012-05-25 16:56:22 -07001561 return;
1562
Daniel Vetterd0ecd7e2013-07-04 23:35:25 +02001563 spin_lock(&dev_priv->irq_lock);
Daniel Vetter480c8032014-07-16 09:49:40 +02001564 gen5_disable_gt_irq(dev_priv, GT_PARITY_ERROR(dev));
Daniel Vetterd0ecd7e2013-07-04 23:35:25 +02001565 spin_unlock(&dev_priv->irq_lock);
Ben Widawskye3689192012-05-25 16:56:22 -07001566
Ben Widawsky35a85ac2013-09-19 11:13:41 -07001567 iir &= GT_PARITY_ERROR(dev);
1568 if (iir & GT_RENDER_L3_PARITY_ERROR_INTERRUPT_S1)
1569 dev_priv->l3_parity.which_slice |= 1 << 1;
1570
1571 if (iir & GT_RENDER_L3_PARITY_ERROR_INTERRUPT)
1572 dev_priv->l3_parity.which_slice |= 1 << 0;
1573
Daniel Vettera4da4fa2012-11-02 19:55:07 +01001574 queue_work(dev_priv->wq, &dev_priv->l3_parity.error_work);
Ben Widawskye3689192012-05-25 16:56:22 -07001575}
1576
Paulo Zanonif1af8fc2013-07-12 19:56:30 -03001577static void ilk_gt_irq_handler(struct drm_device *dev,
1578 struct drm_i915_private *dev_priv,
1579 u32 gt_iir)
1580{
1581 if (gt_iir &
1582 (GT_RENDER_USER_INTERRUPT | GT_RENDER_PIPECTL_NOTIFY_INTERRUPT))
1583 notify_ring(dev, &dev_priv->ring[RCS]);
1584 if (gt_iir & ILK_BSD_USER_INTERRUPT)
1585 notify_ring(dev, &dev_priv->ring[VCS]);
1586}
1587
Daniel Vettere7b4c6b2012-03-30 20:24:35 +02001588static void snb_gt_irq_handler(struct drm_device *dev,
1589 struct drm_i915_private *dev_priv,
1590 u32 gt_iir)
1591{
1592
Ben Widawskycc609d52013-05-28 19:22:29 -07001593 if (gt_iir &
1594 (GT_RENDER_USER_INTERRUPT | GT_RENDER_PIPECTL_NOTIFY_INTERRUPT))
Daniel Vettere7b4c6b2012-03-30 20:24:35 +02001595 notify_ring(dev, &dev_priv->ring[RCS]);
Ben Widawskycc609d52013-05-28 19:22:29 -07001596 if (gt_iir & GT_BSD_USER_INTERRUPT)
Daniel Vettere7b4c6b2012-03-30 20:24:35 +02001597 notify_ring(dev, &dev_priv->ring[VCS]);
Ben Widawskycc609d52013-05-28 19:22:29 -07001598 if (gt_iir & GT_BLT_USER_INTERRUPT)
Daniel Vettere7b4c6b2012-03-30 20:24:35 +02001599 notify_ring(dev, &dev_priv->ring[BCS]);
1600
Ben Widawskycc609d52013-05-28 19:22:29 -07001601 if (gt_iir & (GT_BLT_CS_ERROR_INTERRUPT |
1602 GT_BSD_CS_ERROR_INTERRUPT |
1603 GT_RENDER_CS_MASTER_ERROR_INTERRUPT)) {
Mika Kuoppala58174462014-02-25 17:11:26 +02001604 i915_handle_error(dev, false, "GT error interrupt 0x%08x",
1605 gt_iir);
Daniel Vettere7b4c6b2012-03-30 20:24:35 +02001606 }
Ben Widawskye3689192012-05-25 16:56:22 -07001607
Ben Widawsky35a85ac2013-09-19 11:13:41 -07001608 if (gt_iir & GT_PARITY_ERROR(dev))
1609 ivybridge_parity_error_irq_handler(dev, gt_iir);
Daniel Vettere7b4c6b2012-03-30 20:24:35 +02001610}
1611
Ben Widawsky09610212014-05-15 20:58:08 +03001612static void gen8_rps_irq_handler(struct drm_i915_private *dev_priv, u32 pm_iir)
1613{
1614 if ((pm_iir & dev_priv->pm_rps_events) == 0)
1615 return;
1616
1617 spin_lock(&dev_priv->irq_lock);
1618 dev_priv->rps.pm_iir |= pm_iir & dev_priv->pm_rps_events;
Daniel Vetter480c8032014-07-16 09:49:40 +02001619 gen8_disable_pm_irq(dev_priv, pm_iir & dev_priv->pm_rps_events);
Ben Widawsky09610212014-05-15 20:58:08 +03001620 spin_unlock(&dev_priv->irq_lock);
1621
1622 queue_work(dev_priv->wq, &dev_priv->rps.work);
1623}
1624
Ben Widawskyabd58f02013-11-02 21:07:09 -07001625static irqreturn_t gen8_gt_irq_handler(struct drm_device *dev,
1626 struct drm_i915_private *dev_priv,
1627 u32 master_ctl)
1628{
Thomas Daniele981e7b2014-07-24 17:04:39 +01001629 struct intel_engine_cs *ring;
Ben Widawskyabd58f02013-11-02 21:07:09 -07001630 u32 rcs, bcs, vcs;
1631 uint32_t tmp = 0;
1632 irqreturn_t ret = IRQ_NONE;
1633
1634 if (master_ctl & (GEN8_GT_RCS_IRQ | GEN8_GT_BCS_IRQ)) {
1635 tmp = I915_READ(GEN8_GT_IIR(0));
1636 if (tmp) {
Oscar Mateo38cc46d2014-06-16 16:10:59 +01001637 I915_WRITE(GEN8_GT_IIR(0), tmp);
Ben Widawskyabd58f02013-11-02 21:07:09 -07001638 ret = IRQ_HANDLED;
Thomas Daniele981e7b2014-07-24 17:04:39 +01001639
Ben Widawskyabd58f02013-11-02 21:07:09 -07001640 rcs = tmp >> GEN8_RCS_IRQ_SHIFT;
Thomas Daniele981e7b2014-07-24 17:04:39 +01001641 ring = &dev_priv->ring[RCS];
Ben Widawskyabd58f02013-11-02 21:07:09 -07001642 if (rcs & GT_RENDER_USER_INTERRUPT)
Thomas Daniele981e7b2014-07-24 17:04:39 +01001643 notify_ring(dev, ring);
1644 if (rcs & GT_CONTEXT_SWITCH_INTERRUPT)
1645 intel_execlists_handle_ctx_events(ring);
1646
1647 bcs = tmp >> GEN8_BCS_IRQ_SHIFT;
1648 ring = &dev_priv->ring[BCS];
Ben Widawskyabd58f02013-11-02 21:07:09 -07001649 if (bcs & GT_RENDER_USER_INTERRUPT)
Thomas Daniele981e7b2014-07-24 17:04:39 +01001650 notify_ring(dev, ring);
1651 if (bcs & GT_CONTEXT_SWITCH_INTERRUPT)
1652 intel_execlists_handle_ctx_events(ring);
Ben Widawskyabd58f02013-11-02 21:07:09 -07001653 } else
1654 DRM_ERROR("The master control interrupt lied (GT0)!\n");
1655 }
1656
Zhao Yakui85f9b5f2014-04-17 10:37:38 +08001657 if (master_ctl & (GEN8_GT_VCS1_IRQ | GEN8_GT_VCS2_IRQ)) {
Ben Widawskyabd58f02013-11-02 21:07:09 -07001658 tmp = I915_READ(GEN8_GT_IIR(1));
1659 if (tmp) {
Oscar Mateo38cc46d2014-06-16 16:10:59 +01001660 I915_WRITE(GEN8_GT_IIR(1), tmp);
Ben Widawskyabd58f02013-11-02 21:07:09 -07001661 ret = IRQ_HANDLED;
Thomas Daniele981e7b2014-07-24 17:04:39 +01001662
Ben Widawskyabd58f02013-11-02 21:07:09 -07001663 vcs = tmp >> GEN8_VCS1_IRQ_SHIFT;
Thomas Daniele981e7b2014-07-24 17:04:39 +01001664 ring = &dev_priv->ring[VCS];
Ben Widawskyabd58f02013-11-02 21:07:09 -07001665 if (vcs & GT_RENDER_USER_INTERRUPT)
Thomas Daniele981e7b2014-07-24 17:04:39 +01001666 notify_ring(dev, ring);
Oscar Mateo73d477f2014-07-24 17:04:31 +01001667 if (vcs & GT_CONTEXT_SWITCH_INTERRUPT)
Thomas Daniele981e7b2014-07-24 17:04:39 +01001668 intel_execlists_handle_ctx_events(ring);
1669
Zhao Yakui85f9b5f2014-04-17 10:37:38 +08001670 vcs = tmp >> GEN8_VCS2_IRQ_SHIFT;
Thomas Daniele981e7b2014-07-24 17:04:39 +01001671 ring = &dev_priv->ring[VCS2];
Zhao Yakui85f9b5f2014-04-17 10:37:38 +08001672 if (vcs & GT_RENDER_USER_INTERRUPT)
Thomas Daniele981e7b2014-07-24 17:04:39 +01001673 notify_ring(dev, ring);
Oscar Mateo73d477f2014-07-24 17:04:31 +01001674 if (vcs & GT_CONTEXT_SWITCH_INTERRUPT)
Thomas Daniele981e7b2014-07-24 17:04:39 +01001675 intel_execlists_handle_ctx_events(ring);
Ben Widawskyabd58f02013-11-02 21:07:09 -07001676 } else
1677 DRM_ERROR("The master control interrupt lied (GT1)!\n");
1678 }
1679
Ben Widawsky09610212014-05-15 20:58:08 +03001680 if (master_ctl & GEN8_GT_PM_IRQ) {
1681 tmp = I915_READ(GEN8_GT_IIR(2));
1682 if (tmp & dev_priv->pm_rps_events) {
Ben Widawsky09610212014-05-15 20:58:08 +03001683 I915_WRITE(GEN8_GT_IIR(2),
1684 tmp & dev_priv->pm_rps_events);
Oscar Mateo38cc46d2014-06-16 16:10:59 +01001685 ret = IRQ_HANDLED;
1686 gen8_rps_irq_handler(dev_priv, tmp);
Ben Widawsky09610212014-05-15 20:58:08 +03001687 } else
1688 DRM_ERROR("The master control interrupt lied (PM)!\n");
1689 }
1690
Ben Widawskyabd58f02013-11-02 21:07:09 -07001691 if (master_ctl & GEN8_GT_VECS_IRQ) {
1692 tmp = I915_READ(GEN8_GT_IIR(3));
1693 if (tmp) {
Oscar Mateo38cc46d2014-06-16 16:10:59 +01001694 I915_WRITE(GEN8_GT_IIR(3), tmp);
Ben Widawskyabd58f02013-11-02 21:07:09 -07001695 ret = IRQ_HANDLED;
Thomas Daniele981e7b2014-07-24 17:04:39 +01001696
Ben Widawskyabd58f02013-11-02 21:07:09 -07001697 vcs = tmp >> GEN8_VECS_IRQ_SHIFT;
Thomas Daniele981e7b2014-07-24 17:04:39 +01001698 ring = &dev_priv->ring[VECS];
Ben Widawskyabd58f02013-11-02 21:07:09 -07001699 if (vcs & GT_RENDER_USER_INTERRUPT)
Thomas Daniele981e7b2014-07-24 17:04:39 +01001700 notify_ring(dev, ring);
Oscar Mateo73d477f2014-07-24 17:04:31 +01001701 if (vcs & GT_CONTEXT_SWITCH_INTERRUPT)
Thomas Daniele981e7b2014-07-24 17:04:39 +01001702 intel_execlists_handle_ctx_events(ring);
Ben Widawskyabd58f02013-11-02 21:07:09 -07001703 } else
1704 DRM_ERROR("The master control interrupt lied (GT3)!\n");
1705 }
1706
1707 return ret;
1708}
1709
Egbert Eichb543fb02013-04-16 13:36:54 +02001710#define HPD_STORM_DETECT_PERIOD 1000
1711#define HPD_STORM_THRESHOLD 5
1712
Dave Airlie13cf5502014-06-18 11:29:35 +10001713static int ilk_port_to_hotplug_shift(enum port port)
1714{
1715 switch (port) {
1716 case PORT_A:
1717 case PORT_E:
1718 default:
1719 return -1;
1720 case PORT_B:
1721 return 0;
1722 case PORT_C:
1723 return 8;
1724 case PORT_D:
1725 return 16;
1726 }
1727}
1728
1729static int g4x_port_to_hotplug_shift(enum port port)
1730{
1731 switch (port) {
1732 case PORT_A:
1733 case PORT_E:
1734 default:
1735 return -1;
1736 case PORT_B:
1737 return 17;
1738 case PORT_C:
1739 return 19;
1740 case PORT_D:
1741 return 21;
1742 }
1743}
1744
1745static inline enum port get_port_from_pin(enum hpd_pin pin)
1746{
1747 switch (pin) {
1748 case HPD_PORT_B:
1749 return PORT_B;
1750 case HPD_PORT_C:
1751 return PORT_C;
1752 case HPD_PORT_D:
1753 return PORT_D;
1754 default:
1755 return PORT_A; /* no hpd */
1756 }
1757}
1758
Daniel Vetter10a504d2013-06-27 17:52:12 +02001759static inline void intel_hpd_irq_handler(struct drm_device *dev,
Daniel Vetter22062db2013-06-27 17:52:11 +02001760 u32 hotplug_trigger,
Dave Airlie13cf5502014-06-18 11:29:35 +10001761 u32 dig_hotplug_reg,
Daniel Vetter22062db2013-06-27 17:52:11 +02001762 const u32 *hpd)
Egbert Eichb543fb02013-04-16 13:36:54 +02001763{
Jani Nikula2d1013d2014-03-31 14:27:17 +03001764 struct drm_i915_private *dev_priv = dev->dev_private;
Egbert Eichb543fb02013-04-16 13:36:54 +02001765 int i;
Dave Airlie13cf5502014-06-18 11:29:35 +10001766 enum port port;
Daniel Vetter10a504d2013-06-27 17:52:12 +02001767 bool storm_detected = false;
Dave Airlie13cf5502014-06-18 11:29:35 +10001768 bool queue_dig = false, queue_hp = false;
1769 u32 dig_shift;
1770 u32 dig_port_mask = 0;
Egbert Eichb543fb02013-04-16 13:36:54 +02001771
Daniel Vetter91d131d2013-06-27 17:52:14 +02001772 if (!hotplug_trigger)
1773 return;
1774
Dave Airlie13cf5502014-06-18 11:29:35 +10001775 DRM_DEBUG_DRIVER("hotplug event received, stat 0x%08x, dig 0x%08x\n",
1776 hotplug_trigger, dig_hotplug_reg);
Imre Deakcc9bd492014-01-16 19:56:54 +02001777
Daniel Vetterb5ea2d52013-06-27 17:52:15 +02001778 spin_lock(&dev_priv->irq_lock);
Egbert Eichb543fb02013-04-16 13:36:54 +02001779 for (i = 1; i < HPD_NUM_PINS; i++) {
Dave Airlie13cf5502014-06-18 11:29:35 +10001780 if (!(hpd[i] & hotplug_trigger))
1781 continue;
Egbert Eich821450c2013-04-16 13:36:55 +02001782
Dave Airlie13cf5502014-06-18 11:29:35 +10001783 port = get_port_from_pin(i);
1784 if (port && dev_priv->hpd_irq_port[port]) {
1785 bool long_hpd;
1786
1787 if (IS_G4X(dev)) {
1788 dig_shift = g4x_port_to_hotplug_shift(port);
1789 long_hpd = (hotplug_trigger >> dig_shift) & PORTB_HOTPLUG_LONG_DETECT;
1790 } else {
1791 dig_shift = ilk_port_to_hotplug_shift(port);
1792 long_hpd = (dig_hotplug_reg >> dig_shift) & PORTB_HOTPLUG_LONG_DETECT;
1793 }
1794
Ville Syrjälä26fbb772014-08-11 18:37:37 +03001795 DRM_DEBUG_DRIVER("digital hpd port %c - %s\n",
1796 port_name(port),
1797 long_hpd ? "long" : "short");
Dave Airlie13cf5502014-06-18 11:29:35 +10001798 /* for long HPD pulses we want to have the digital queue happen,
1799 but we still want HPD storm detection to function. */
1800 if (long_hpd) {
1801 dev_priv->long_hpd_port_mask |= (1 << port);
1802 dig_port_mask |= hpd[i];
1803 } else {
1804 /* for short HPD just trigger the digital queue */
1805 dev_priv->short_hpd_port_mask |= (1 << port);
1806 hotplug_trigger &= ~hpd[i];
1807 }
1808 queue_dig = true;
1809 }
1810 }
1811
1812 for (i = 1; i < HPD_NUM_PINS; i++) {
Daniel Vetter3ff04a162014-04-24 12:03:17 +02001813 if (hpd[i] & hotplug_trigger &&
1814 dev_priv->hpd_stats[i].hpd_mark == HPD_DISABLED) {
1815 /*
1816 * On GMCH platforms the interrupt mask bits only
1817 * prevent irq generation, not the setting of the
1818 * hotplug bits itself. So only WARN about unexpected
1819 * interrupts on saner platforms.
1820 */
1821 WARN_ONCE(INTEL_INFO(dev)->gen >= 5 && !IS_VALLEYVIEW(dev),
1822 "Received HPD interrupt (0x%08x) on pin %d (0x%08x) although disabled\n",
1823 hotplug_trigger, i, hpd[i]);
1824
1825 continue;
1826 }
Egbert Eichb8f102e2013-07-26 14:14:24 +02001827
Egbert Eichb543fb02013-04-16 13:36:54 +02001828 if (!(hpd[i] & hotplug_trigger) ||
1829 dev_priv->hpd_stats[i].hpd_mark != HPD_ENABLED)
1830 continue;
1831
Dave Airlie13cf5502014-06-18 11:29:35 +10001832 if (!(dig_port_mask & hpd[i])) {
1833 dev_priv->hpd_event_bits |= (1 << i);
1834 queue_hp = true;
1835 }
1836
Egbert Eichb543fb02013-04-16 13:36:54 +02001837 if (!time_in_range(jiffies, dev_priv->hpd_stats[i].hpd_last_jiffies,
1838 dev_priv->hpd_stats[i].hpd_last_jiffies
1839 + msecs_to_jiffies(HPD_STORM_DETECT_PERIOD))) {
1840 dev_priv->hpd_stats[i].hpd_last_jiffies = jiffies;
1841 dev_priv->hpd_stats[i].hpd_cnt = 0;
Egbert Eichb8f102e2013-07-26 14:14:24 +02001842 DRM_DEBUG_KMS("Received HPD interrupt on PIN %d - cnt: 0\n", i);
Egbert Eichb543fb02013-04-16 13:36:54 +02001843 } else if (dev_priv->hpd_stats[i].hpd_cnt > HPD_STORM_THRESHOLD) {
1844 dev_priv->hpd_stats[i].hpd_mark = HPD_MARK_DISABLED;
Egbert Eich142e2392013-04-11 15:57:57 +02001845 dev_priv->hpd_event_bits &= ~(1 << i);
Egbert Eichb543fb02013-04-16 13:36:54 +02001846 DRM_DEBUG_KMS("HPD interrupt storm detected on PIN %d\n", i);
Daniel Vetter10a504d2013-06-27 17:52:12 +02001847 storm_detected = true;
Egbert Eichb543fb02013-04-16 13:36:54 +02001848 } else {
1849 dev_priv->hpd_stats[i].hpd_cnt++;
Egbert Eichb8f102e2013-07-26 14:14:24 +02001850 DRM_DEBUG_KMS("Received HPD interrupt on PIN %d - cnt: %d\n", i,
1851 dev_priv->hpd_stats[i].hpd_cnt);
Egbert Eichb543fb02013-04-16 13:36:54 +02001852 }
1853 }
1854
Daniel Vetter10a504d2013-06-27 17:52:12 +02001855 if (storm_detected)
1856 dev_priv->display.hpd_irq_setup(dev);
Daniel Vetterb5ea2d52013-06-27 17:52:15 +02001857 spin_unlock(&dev_priv->irq_lock);
Daniel Vetter5876fa02013-06-27 17:52:13 +02001858
Daniel Vetter645416f2013-09-02 16:22:25 +02001859 /*
1860 * Our hotplug handler can grab modeset locks (by calling down into the
1861 * fb helpers). Hence it must not be run on our own dev-priv->wq work
1862 * queue for otherwise the flush_work in the pageflip code will
1863 * deadlock.
1864 */
Dave Airlie13cf5502014-06-18 11:29:35 +10001865 if (queue_dig)
Dave Airlie0e32b392014-05-02 14:02:48 +10001866 queue_work(dev_priv->dp_wq, &dev_priv->dig_port_work);
Dave Airlie13cf5502014-06-18 11:29:35 +10001867 if (queue_hp)
1868 schedule_work(&dev_priv->hotplug_work);
Egbert Eichb543fb02013-04-16 13:36:54 +02001869}
1870
Daniel Vetter515ac2b2012-12-01 13:53:44 +01001871static void gmbus_irq_handler(struct drm_device *dev)
1872{
Jani Nikula2d1013d2014-03-31 14:27:17 +03001873 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter28c70f12012-12-01 13:53:45 +01001874
Daniel Vetter28c70f12012-12-01 13:53:45 +01001875 wake_up_all(&dev_priv->gmbus_wait_queue);
Daniel Vetter515ac2b2012-12-01 13:53:44 +01001876}
1877
Daniel Vetterce99c252012-12-01 13:53:47 +01001878static void dp_aux_irq_handler(struct drm_device *dev)
1879{
Jani Nikula2d1013d2014-03-31 14:27:17 +03001880 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter9ee32fea2012-12-01 13:53:48 +01001881
Daniel Vetter9ee32fea2012-12-01 13:53:48 +01001882 wake_up_all(&dev_priv->gmbus_wait_queue);
Daniel Vetterce99c252012-12-01 13:53:47 +01001883}
1884
Shuang He8bf1e9f2013-10-15 18:55:27 +01001885#if defined(CONFIG_DEBUG_FS)
Daniel Vetter277de952013-10-18 16:37:07 +02001886static void display_pipe_crc_irq_handler(struct drm_device *dev, enum pipe pipe,
1887 uint32_t crc0, uint32_t crc1,
1888 uint32_t crc2, uint32_t crc3,
1889 uint32_t crc4)
Shuang He8bf1e9f2013-10-15 18:55:27 +01001890{
1891 struct drm_i915_private *dev_priv = dev->dev_private;
1892 struct intel_pipe_crc *pipe_crc = &dev_priv->pipe_crc[pipe];
1893 struct intel_pipe_crc_entry *entry;
Damien Lespiauac2300d2013-10-15 18:55:30 +01001894 int head, tail;
Damien Lespiaub2c88f52013-10-15 18:55:29 +01001895
Damien Lespiaud538bbd2013-10-21 14:29:30 +01001896 spin_lock(&pipe_crc->lock);
1897
Damien Lespiau0c912c72013-10-15 18:55:37 +01001898 if (!pipe_crc->entries) {
Damien Lespiaud538bbd2013-10-21 14:29:30 +01001899 spin_unlock(&pipe_crc->lock);
Damien Lespiau0c912c72013-10-15 18:55:37 +01001900 DRM_ERROR("spurious interrupt\n");
1901 return;
1902 }
1903
Damien Lespiaud538bbd2013-10-21 14:29:30 +01001904 head = pipe_crc->head;
1905 tail = pipe_crc->tail;
Damien Lespiaub2c88f52013-10-15 18:55:29 +01001906
1907 if (CIRC_SPACE(head, tail, INTEL_PIPE_CRC_ENTRIES_NR) < 1) {
Damien Lespiaud538bbd2013-10-21 14:29:30 +01001908 spin_unlock(&pipe_crc->lock);
Damien Lespiaub2c88f52013-10-15 18:55:29 +01001909 DRM_ERROR("CRC buffer overflowing\n");
1910 return;
1911 }
1912
1913 entry = &pipe_crc->entries[head];
Shuang He8bf1e9f2013-10-15 18:55:27 +01001914
Daniel Vetter8bc5e952013-10-16 22:55:49 +02001915 entry->frame = dev->driver->get_vblank_counter(dev, pipe);
Daniel Vettereba94eb2013-10-16 22:55:46 +02001916 entry->crc[0] = crc0;
1917 entry->crc[1] = crc1;
1918 entry->crc[2] = crc2;
1919 entry->crc[3] = crc3;
1920 entry->crc[4] = crc4;
Damien Lespiaub2c88f52013-10-15 18:55:29 +01001921
1922 head = (head + 1) & (INTEL_PIPE_CRC_ENTRIES_NR - 1);
Damien Lespiaud538bbd2013-10-21 14:29:30 +01001923 pipe_crc->head = head;
1924
1925 spin_unlock(&pipe_crc->lock);
Damien Lespiau07144422013-10-15 18:55:40 +01001926
1927 wake_up_interruptible(&pipe_crc->wq);
Shuang He8bf1e9f2013-10-15 18:55:27 +01001928}
Daniel Vetter277de952013-10-18 16:37:07 +02001929#else
1930static inline void
1931display_pipe_crc_irq_handler(struct drm_device *dev, enum pipe pipe,
1932 uint32_t crc0, uint32_t crc1,
1933 uint32_t crc2, uint32_t crc3,
1934 uint32_t crc4) {}
1935#endif
Daniel Vettereba94eb2013-10-16 22:55:46 +02001936
Daniel Vetter277de952013-10-18 16:37:07 +02001937
1938static void hsw_pipe_crc_irq_handler(struct drm_device *dev, enum pipe pipe)
Daniel Vetter5a69b892013-10-16 22:55:52 +02001939{
1940 struct drm_i915_private *dev_priv = dev->dev_private;
1941
Daniel Vetter277de952013-10-18 16:37:07 +02001942 display_pipe_crc_irq_handler(dev, pipe,
1943 I915_READ(PIPE_CRC_RES_1_IVB(pipe)),
1944 0, 0, 0, 0);
Daniel Vetter5a69b892013-10-16 22:55:52 +02001945}
1946
Daniel Vetter277de952013-10-18 16:37:07 +02001947static void ivb_pipe_crc_irq_handler(struct drm_device *dev, enum pipe pipe)
Daniel Vettereba94eb2013-10-16 22:55:46 +02001948{
1949 struct drm_i915_private *dev_priv = dev->dev_private;
1950
Daniel Vetter277de952013-10-18 16:37:07 +02001951 display_pipe_crc_irq_handler(dev, pipe,
1952 I915_READ(PIPE_CRC_RES_1_IVB(pipe)),
1953 I915_READ(PIPE_CRC_RES_2_IVB(pipe)),
1954 I915_READ(PIPE_CRC_RES_3_IVB(pipe)),
1955 I915_READ(PIPE_CRC_RES_4_IVB(pipe)),
1956 I915_READ(PIPE_CRC_RES_5_IVB(pipe)));
Daniel Vettereba94eb2013-10-16 22:55:46 +02001957}
Daniel Vetter5b3a8562013-10-16 22:55:48 +02001958
Daniel Vetter277de952013-10-18 16:37:07 +02001959static void i9xx_pipe_crc_irq_handler(struct drm_device *dev, enum pipe pipe)
Daniel Vetter5b3a8562013-10-16 22:55:48 +02001960{
1961 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter0b5c5ed2013-10-16 22:55:53 +02001962 uint32_t res1, res2;
1963
1964 if (INTEL_INFO(dev)->gen >= 3)
1965 res1 = I915_READ(PIPE_CRC_RES_RES1_I915(pipe));
1966 else
1967 res1 = 0;
1968
1969 if (INTEL_INFO(dev)->gen >= 5 || IS_G4X(dev))
1970 res2 = I915_READ(PIPE_CRC_RES_RES2_G4X(pipe));
1971 else
1972 res2 = 0;
Daniel Vetter5b3a8562013-10-16 22:55:48 +02001973
Daniel Vetter277de952013-10-18 16:37:07 +02001974 display_pipe_crc_irq_handler(dev, pipe,
1975 I915_READ(PIPE_CRC_RES_RED(pipe)),
1976 I915_READ(PIPE_CRC_RES_GREEN(pipe)),
1977 I915_READ(PIPE_CRC_RES_BLUE(pipe)),
1978 res1, res2);
Daniel Vetter5b3a8562013-10-16 22:55:48 +02001979}
Shuang He8bf1e9f2013-10-15 18:55:27 +01001980
Daisy Sunc76bb612014-08-11 11:08:38 -07001981void gen8_flip_interrupt(struct drm_device *dev)
1982{
1983 struct drm_i915_private *dev_priv = dev->dev_private;
1984
1985 if (!dev_priv->rps.is_bdw_sw_turbo)
1986 return;
1987
1988 if(atomic_read(&dev_priv->rps.sw_turbo.flip_received)) {
1989 mod_timer(&dev_priv->rps.sw_turbo.flip_timer,
1990 usecs_to_jiffies(dev_priv->rps.sw_turbo.timeout) + jiffies);
1991 }
1992 else {
1993 dev_priv->rps.sw_turbo.flip_timer.expires =
1994 usecs_to_jiffies(dev_priv->rps.sw_turbo.timeout) + jiffies;
1995 add_timer(&dev_priv->rps.sw_turbo.flip_timer);
1996 atomic_set(&dev_priv->rps.sw_turbo.flip_received, true);
1997 }
1998
1999 bdw_software_turbo(dev);
2000}
2001
Paulo Zanoni1403c0d2013-08-15 11:51:32 -03002002/* The RPS events need forcewake, so we add them to a work queue and mask their
2003 * IMR bits until the work is done. Other interrupts can be processed without
2004 * the work queue. */
2005static void gen6_rps_irq_handler(struct drm_i915_private *dev_priv, u32 pm_iir)
Ben Widawskybaf02a12013-05-28 19:22:24 -07002006{
Deepak Sa6706b42014-03-15 20:23:22 +05302007 if (pm_iir & dev_priv->pm_rps_events) {
Daniel Vetter59cdb632013-07-04 23:35:28 +02002008 spin_lock(&dev_priv->irq_lock);
Deepak Sa6706b42014-03-15 20:23:22 +05302009 dev_priv->rps.pm_iir |= pm_iir & dev_priv->pm_rps_events;
Daniel Vetter480c8032014-07-16 09:49:40 +02002010 gen6_disable_pm_irq(dev_priv, pm_iir & dev_priv->pm_rps_events);
Daniel Vetter59cdb632013-07-04 23:35:28 +02002011 spin_unlock(&dev_priv->irq_lock);
Daniel Vetter2adbee62013-07-04 23:35:27 +02002012
2013 queue_work(dev_priv->wq, &dev_priv->rps.work);
Ben Widawskybaf02a12013-05-28 19:22:24 -07002014 }
Ben Widawskybaf02a12013-05-28 19:22:24 -07002015
Paulo Zanoni1403c0d2013-08-15 11:51:32 -03002016 if (HAS_VEBOX(dev_priv->dev)) {
2017 if (pm_iir & PM_VEBOX_USER_INTERRUPT)
2018 notify_ring(dev_priv->dev, &dev_priv->ring[VECS]);
Ben Widawsky12638c52013-05-28 19:22:31 -07002019
Paulo Zanoni1403c0d2013-08-15 11:51:32 -03002020 if (pm_iir & PM_VEBOX_CS_ERROR_INTERRUPT) {
Mika Kuoppala58174462014-02-25 17:11:26 +02002021 i915_handle_error(dev_priv->dev, false,
2022 "VEBOX CS error interrupt 0x%08x",
2023 pm_iir);
Paulo Zanoni1403c0d2013-08-15 11:51:32 -03002024 }
Ben Widawsky12638c52013-05-28 19:22:31 -07002025 }
Ben Widawskybaf02a12013-05-28 19:22:24 -07002026}
2027
Ville Syrjälä8d7849d2014-04-29 13:35:46 +03002028static bool intel_pipe_handle_vblank(struct drm_device *dev, enum pipe pipe)
2029{
Ville Syrjälä8d7849d2014-04-29 13:35:46 +03002030 if (!drm_handle_vblank(dev, pipe))
2031 return false;
2032
Ville Syrjälä8d7849d2014-04-29 13:35:46 +03002033 return true;
2034}
2035
Imre Deakc1874ed2014-02-04 21:35:46 +02002036static void valleyview_pipestat_irq_handler(struct drm_device *dev, u32 iir)
2037{
2038 struct drm_i915_private *dev_priv = dev->dev_private;
Imre Deak91d181d2014-02-10 18:42:49 +02002039 u32 pipe_stats[I915_MAX_PIPES] = { };
Imre Deakc1874ed2014-02-04 21:35:46 +02002040 int pipe;
2041
Imre Deak58ead0d2014-02-04 21:35:47 +02002042 spin_lock(&dev_priv->irq_lock);
Damien Lespiau055e3932014-08-18 13:49:10 +01002043 for_each_pipe(dev_priv, pipe) {
Imre Deak91d181d2014-02-10 18:42:49 +02002044 int reg;
Daniel Vetterbbb5eeb2014-02-12 17:55:36 +01002045 u32 mask, iir_bit = 0;
Imre Deak91d181d2014-02-10 18:42:49 +02002046
Daniel Vetterbbb5eeb2014-02-12 17:55:36 +01002047 /*
2048 * PIPESTAT bits get signalled even when the interrupt is
2049 * disabled with the mask bits, and some of the status bits do
2050 * not generate interrupts at all (like the underrun bit). Hence
2051 * we need to be careful that we only handle what we want to
2052 * handle.
2053 */
2054 mask = 0;
2055 if (__cpu_fifo_underrun_reporting_enabled(dev, pipe))
2056 mask |= PIPE_FIFO_UNDERRUN_STATUS;
2057
2058 switch (pipe) {
2059 case PIPE_A:
2060 iir_bit = I915_DISPLAY_PIPE_A_EVENT_INTERRUPT;
2061 break;
2062 case PIPE_B:
2063 iir_bit = I915_DISPLAY_PIPE_B_EVENT_INTERRUPT;
2064 break;
Ville Syrjälä3278f672014-04-09 13:28:49 +03002065 case PIPE_C:
2066 iir_bit = I915_DISPLAY_PIPE_C_EVENT_INTERRUPT;
2067 break;
Daniel Vetterbbb5eeb2014-02-12 17:55:36 +01002068 }
2069 if (iir & iir_bit)
2070 mask |= dev_priv->pipestat_irq_mask[pipe];
2071
2072 if (!mask)
Imre Deak91d181d2014-02-10 18:42:49 +02002073 continue;
2074
2075 reg = PIPESTAT(pipe);
Daniel Vetterbbb5eeb2014-02-12 17:55:36 +01002076 mask |= PIPESTAT_INT_ENABLE_MASK;
2077 pipe_stats[pipe] = I915_READ(reg) & mask;
Imre Deakc1874ed2014-02-04 21:35:46 +02002078
2079 /*
2080 * Clear the PIPE*STAT regs before the IIR
2081 */
Imre Deak91d181d2014-02-10 18:42:49 +02002082 if (pipe_stats[pipe] & (PIPE_FIFO_UNDERRUN_STATUS |
2083 PIPESTAT_INT_STATUS_MASK))
Imre Deakc1874ed2014-02-04 21:35:46 +02002084 I915_WRITE(reg, pipe_stats[pipe]);
2085 }
Imre Deak58ead0d2014-02-04 21:35:47 +02002086 spin_unlock(&dev_priv->irq_lock);
Imre Deakc1874ed2014-02-04 21:35:46 +02002087
Damien Lespiau055e3932014-08-18 13:49:10 +01002088 for_each_pipe(dev_priv, pipe) {
Chris Wilsond6bbafa2014-09-05 07:13:24 +01002089 if (pipe_stats[pipe] & PIPE_START_VBLANK_INTERRUPT_STATUS &&
2090 intel_pipe_handle_vblank(dev, pipe))
2091 intel_check_page_flip(dev, pipe);
Imre Deakc1874ed2014-02-04 21:35:46 +02002092
Imre Deak579a9b02014-02-04 21:35:48 +02002093 if (pipe_stats[pipe] & PLANE_FLIP_DONE_INT_STATUS_VLV) {
Imre Deakc1874ed2014-02-04 21:35:46 +02002094 intel_prepare_page_flip(dev, pipe);
2095 intel_finish_page_flip(dev, pipe);
2096 }
2097
2098 if (pipe_stats[pipe] & PIPE_CRC_DONE_INTERRUPT_STATUS)
2099 i9xx_pipe_crc_irq_handler(dev, pipe);
2100
2101 if (pipe_stats[pipe] & PIPE_FIFO_UNDERRUN_STATUS &&
2102 intel_set_cpu_fifo_underrun_reporting(dev, pipe, false))
2103 DRM_ERROR("pipe %c underrun\n", pipe_name(pipe));
2104 }
2105
2106 if (pipe_stats[0] & PIPE_GMBUS_INTERRUPT_STATUS)
2107 gmbus_irq_handler(dev);
2108}
2109
Ville Syrjälä16c6c562014-04-01 10:54:36 +03002110static void i9xx_hpd_irq_handler(struct drm_device *dev)
2111{
2112 struct drm_i915_private *dev_priv = dev->dev_private;
2113 u32 hotplug_status = I915_READ(PORT_HOTPLUG_STAT);
2114
Oscar Mateo3ff60f82014-06-16 16:10:58 +01002115 if (hotplug_status) {
2116 I915_WRITE(PORT_HOTPLUG_STAT, hotplug_status);
2117 /*
2118 * Make sure hotplug status is cleared before we clear IIR, or else we
2119 * may miss hotplug events.
2120 */
2121 POSTING_READ(PORT_HOTPLUG_STAT);
Ville Syrjälä16c6c562014-04-01 10:54:36 +03002122
Oscar Mateo3ff60f82014-06-16 16:10:58 +01002123 if (IS_G4X(dev)) {
2124 u32 hotplug_trigger = hotplug_status & HOTPLUG_INT_STATUS_G4X;
Ville Syrjälä16c6c562014-04-01 10:54:36 +03002125
Dave Airlie13cf5502014-06-18 11:29:35 +10002126 intel_hpd_irq_handler(dev, hotplug_trigger, 0, hpd_status_g4x);
Oscar Mateo3ff60f82014-06-16 16:10:58 +01002127 } else {
2128 u32 hotplug_trigger = hotplug_status & HOTPLUG_INT_STATUS_I915;
2129
Dave Airlie13cf5502014-06-18 11:29:35 +10002130 intel_hpd_irq_handler(dev, hotplug_trigger, 0, hpd_status_i915);
Oscar Mateo3ff60f82014-06-16 16:10:58 +01002131 }
2132
2133 if ((IS_G4X(dev) || IS_VALLEYVIEW(dev)) &&
2134 hotplug_status & DP_AUX_CHANNEL_MASK_INT_STATUS_G4X)
2135 dp_aux_irq_handler(dev);
Ville Syrjälä16c6c562014-04-01 10:54:36 +03002136 }
Ville Syrjälä16c6c562014-04-01 10:54:36 +03002137}
2138
Daniel Vetterff1f5252012-10-02 15:10:55 +02002139static irqreturn_t valleyview_irq_handler(int irq, void *arg)
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002140{
Daniel Vetter45a83f82014-05-12 19:17:55 +02002141 struct drm_device *dev = arg;
Jani Nikula2d1013d2014-03-31 14:27:17 +03002142 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002143 u32 iir, gt_iir, pm_iir;
2144 irqreturn_t ret = IRQ_NONE;
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002145
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002146 while (true) {
Oscar Mateo3ff60f82014-06-16 16:10:58 +01002147 /* Find, clear, then process each source of interrupt */
2148
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002149 gt_iir = I915_READ(GTIIR);
Oscar Mateo3ff60f82014-06-16 16:10:58 +01002150 if (gt_iir)
2151 I915_WRITE(GTIIR, gt_iir);
2152
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002153 pm_iir = I915_READ(GEN6_PMIIR);
Oscar Mateo3ff60f82014-06-16 16:10:58 +01002154 if (pm_iir)
2155 I915_WRITE(GEN6_PMIIR, pm_iir);
2156
2157 iir = I915_READ(VLV_IIR);
2158 if (iir) {
2159 /* Consume port before clearing IIR or we'll miss events */
2160 if (iir & I915_DISPLAY_PORT_INTERRUPT)
2161 i9xx_hpd_irq_handler(dev);
2162 I915_WRITE(VLV_IIR, iir);
2163 }
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002164
2165 if (gt_iir == 0 && pm_iir == 0 && iir == 0)
2166 goto out;
2167
2168 ret = IRQ_HANDLED;
2169
Oscar Mateo3ff60f82014-06-16 16:10:58 +01002170 if (gt_iir)
2171 snb_gt_irq_handler(dev, dev_priv, gt_iir);
Paulo Zanoni60611c12013-08-15 11:50:01 -03002172 if (pm_iir)
Daniel Vetterd0ecd7e2013-07-04 23:35:25 +02002173 gen6_rps_irq_handler(dev_priv, pm_iir);
Oscar Mateo3ff60f82014-06-16 16:10:58 +01002174 /* Call regardless, as some status bits might not be
2175 * signalled in iir */
2176 valleyview_pipestat_irq_handler(dev, iir);
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002177 }
2178
2179out:
2180 return ret;
2181}
2182
Ville Syrjälä43f328d2014-04-09 20:40:52 +03002183static irqreturn_t cherryview_irq_handler(int irq, void *arg)
2184{
Daniel Vetter45a83f82014-05-12 19:17:55 +02002185 struct drm_device *dev = arg;
Ville Syrjälä43f328d2014-04-09 20:40:52 +03002186 struct drm_i915_private *dev_priv = dev->dev_private;
2187 u32 master_ctl, iir;
2188 irqreturn_t ret = IRQ_NONE;
Ville Syrjälä43f328d2014-04-09 20:40:52 +03002189
Ville Syrjälä8e5fd592014-04-09 13:28:50 +03002190 for (;;) {
2191 master_ctl = I915_READ(GEN8_MASTER_IRQ) & ~GEN8_MASTER_IRQ_CONTROL;
2192 iir = I915_READ(VLV_IIR);
Ville Syrjälä3278f672014-04-09 13:28:49 +03002193
Ville Syrjälä8e5fd592014-04-09 13:28:50 +03002194 if (master_ctl == 0 && iir == 0)
2195 break;
Ville Syrjälä43f328d2014-04-09 20:40:52 +03002196
Oscar Mateo27b6c122014-06-16 16:11:00 +01002197 ret = IRQ_HANDLED;
2198
Ville Syrjälä8e5fd592014-04-09 13:28:50 +03002199 I915_WRITE(GEN8_MASTER_IRQ, 0);
Ville Syrjälä43f328d2014-04-09 20:40:52 +03002200
Oscar Mateo27b6c122014-06-16 16:11:00 +01002201 /* Find, clear, then process each source of interrupt */
2202
2203 if (iir) {
2204 /* Consume port before clearing IIR or we'll miss events */
2205 if (iir & I915_DISPLAY_PORT_INTERRUPT)
2206 i9xx_hpd_irq_handler(dev);
2207 I915_WRITE(VLV_IIR, iir);
2208 }
2209
Ville Syrjälä8e5fd592014-04-09 13:28:50 +03002210 gen8_gt_irq_handler(dev, dev_priv, master_ctl);
Ville Syrjälä43f328d2014-04-09 20:40:52 +03002211
Oscar Mateo27b6c122014-06-16 16:11:00 +01002212 /* Call regardless, as some status bits might not be
2213 * signalled in iir */
Ville Syrjälä8e5fd592014-04-09 13:28:50 +03002214 valleyview_pipestat_irq_handler(dev, iir);
Ville Syrjälä43f328d2014-04-09 20:40:52 +03002215
Ville Syrjälä8e5fd592014-04-09 13:28:50 +03002216 I915_WRITE(GEN8_MASTER_IRQ, DE_MASTER_IRQ_CONTROL);
2217 POSTING_READ(GEN8_MASTER_IRQ);
Ville Syrjälä43f328d2014-04-09 20:40:52 +03002218 }
2219
Ville Syrjälä43f328d2014-04-09 20:40:52 +03002220 return ret;
2221}
2222
Adam Jackson23e81d62012-06-06 15:45:44 -04002223static void ibx_irq_handler(struct drm_device *dev, u32 pch_iir)
Jesse Barnes776ad802011-01-04 15:09:39 -08002224{
Jani Nikula2d1013d2014-03-31 14:27:17 +03002225 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08002226 int pipe;
Egbert Eichb543fb02013-04-16 13:36:54 +02002227 u32 hotplug_trigger = pch_iir & SDE_HOTPLUG_MASK;
Dave Airlie13cf5502014-06-18 11:29:35 +10002228 u32 dig_hotplug_reg;
Jesse Barnes776ad802011-01-04 15:09:39 -08002229
Dave Airlie13cf5502014-06-18 11:29:35 +10002230 dig_hotplug_reg = I915_READ(PCH_PORT_HOTPLUG);
2231 I915_WRITE(PCH_PORT_HOTPLUG, dig_hotplug_reg);
2232
2233 intel_hpd_irq_handler(dev, hotplug_trigger, dig_hotplug_reg, hpd_ibx);
Daniel Vetter91d131d2013-06-27 17:52:14 +02002234
Ville Syrjäläcfc33bf2013-04-17 17:48:48 +03002235 if (pch_iir & SDE_AUDIO_POWER_MASK) {
2236 int port = ffs((pch_iir & SDE_AUDIO_POWER_MASK) >>
2237 SDE_AUDIO_POWER_SHIFT);
Jesse Barnes776ad802011-01-04 15:09:39 -08002238 DRM_DEBUG_DRIVER("PCH audio power change on port %d\n",
Ville Syrjäläcfc33bf2013-04-17 17:48:48 +03002239 port_name(port));
2240 }
Jesse Barnes776ad802011-01-04 15:09:39 -08002241
Daniel Vetterce99c252012-12-01 13:53:47 +01002242 if (pch_iir & SDE_AUX_MASK)
2243 dp_aux_irq_handler(dev);
2244
Jesse Barnes776ad802011-01-04 15:09:39 -08002245 if (pch_iir & SDE_GMBUS)
Daniel Vetter515ac2b2012-12-01 13:53:44 +01002246 gmbus_irq_handler(dev);
Jesse Barnes776ad802011-01-04 15:09:39 -08002247
2248 if (pch_iir & SDE_AUDIO_HDCP_MASK)
2249 DRM_DEBUG_DRIVER("PCH HDCP audio interrupt\n");
2250
2251 if (pch_iir & SDE_AUDIO_TRANS_MASK)
2252 DRM_DEBUG_DRIVER("PCH transcoder audio interrupt\n");
2253
2254 if (pch_iir & SDE_POISON)
2255 DRM_ERROR("PCH poison interrupt\n");
2256
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08002257 if (pch_iir & SDE_FDI_MASK)
Damien Lespiau055e3932014-08-18 13:49:10 +01002258 for_each_pipe(dev_priv, pipe)
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08002259 DRM_DEBUG_DRIVER(" pipe %c FDI IIR: 0x%08x\n",
2260 pipe_name(pipe),
2261 I915_READ(FDI_RX_IIR(pipe)));
Jesse Barnes776ad802011-01-04 15:09:39 -08002262
2263 if (pch_iir & (SDE_TRANSB_CRC_DONE | SDE_TRANSA_CRC_DONE))
2264 DRM_DEBUG_DRIVER("PCH transcoder CRC done interrupt\n");
2265
2266 if (pch_iir & (SDE_TRANSB_CRC_ERR | SDE_TRANSA_CRC_ERR))
2267 DRM_DEBUG_DRIVER("PCH transcoder CRC error interrupt\n");
2268
Jesse Barnes776ad802011-01-04 15:09:39 -08002269 if (pch_iir & SDE_TRANSA_FIFO_UNDER)
Paulo Zanoni86642812013-04-12 17:57:57 -03002270 if (intel_set_pch_fifo_underrun_reporting(dev, TRANSCODER_A,
2271 false))
Ville Syrjäläfc2c8072014-01-17 11:44:32 +02002272 DRM_ERROR("PCH transcoder A FIFO underrun\n");
Paulo Zanoni86642812013-04-12 17:57:57 -03002273
2274 if (pch_iir & SDE_TRANSB_FIFO_UNDER)
2275 if (intel_set_pch_fifo_underrun_reporting(dev, TRANSCODER_B,
2276 false))
Ville Syrjäläfc2c8072014-01-17 11:44:32 +02002277 DRM_ERROR("PCH transcoder B FIFO underrun\n");
Paulo Zanoni86642812013-04-12 17:57:57 -03002278}
2279
2280static void ivb_err_int_handler(struct drm_device *dev)
2281{
2282 struct drm_i915_private *dev_priv = dev->dev_private;
2283 u32 err_int = I915_READ(GEN7_ERR_INT);
Daniel Vetter5a69b892013-10-16 22:55:52 +02002284 enum pipe pipe;
Paulo Zanoni86642812013-04-12 17:57:57 -03002285
Paulo Zanonide032bf2013-04-12 17:57:58 -03002286 if (err_int & ERR_INT_POISON)
2287 DRM_ERROR("Poison interrupt\n");
2288
Damien Lespiau055e3932014-08-18 13:49:10 +01002289 for_each_pipe(dev_priv, pipe) {
Daniel Vetter5a69b892013-10-16 22:55:52 +02002290 if (err_int & ERR_INT_FIFO_UNDERRUN(pipe)) {
2291 if (intel_set_cpu_fifo_underrun_reporting(dev, pipe,
2292 false))
Ville Syrjäläfc2c8072014-01-17 11:44:32 +02002293 DRM_ERROR("Pipe %c FIFO underrun\n",
2294 pipe_name(pipe));
Daniel Vetter5a69b892013-10-16 22:55:52 +02002295 }
Paulo Zanoni86642812013-04-12 17:57:57 -03002296
Daniel Vetter5a69b892013-10-16 22:55:52 +02002297 if (err_int & ERR_INT_PIPE_CRC_DONE(pipe)) {
2298 if (IS_IVYBRIDGE(dev))
Daniel Vetter277de952013-10-18 16:37:07 +02002299 ivb_pipe_crc_irq_handler(dev, pipe);
Daniel Vetter5a69b892013-10-16 22:55:52 +02002300 else
Daniel Vetter277de952013-10-18 16:37:07 +02002301 hsw_pipe_crc_irq_handler(dev, pipe);
Daniel Vetter5a69b892013-10-16 22:55:52 +02002302 }
2303 }
Shuang He8bf1e9f2013-10-15 18:55:27 +01002304
Paulo Zanoni86642812013-04-12 17:57:57 -03002305 I915_WRITE(GEN7_ERR_INT, err_int);
2306}
2307
2308static void cpt_serr_int_handler(struct drm_device *dev)
2309{
2310 struct drm_i915_private *dev_priv = dev->dev_private;
2311 u32 serr_int = I915_READ(SERR_INT);
2312
Paulo Zanonide032bf2013-04-12 17:57:58 -03002313 if (serr_int & SERR_INT_POISON)
2314 DRM_ERROR("PCH poison interrupt\n");
2315
Paulo Zanoni86642812013-04-12 17:57:57 -03002316 if (serr_int & SERR_INT_TRANS_A_FIFO_UNDERRUN)
2317 if (intel_set_pch_fifo_underrun_reporting(dev, TRANSCODER_A,
2318 false))
Ville Syrjäläfc2c8072014-01-17 11:44:32 +02002319 DRM_ERROR("PCH transcoder A FIFO underrun\n");
Paulo Zanoni86642812013-04-12 17:57:57 -03002320
2321 if (serr_int & SERR_INT_TRANS_B_FIFO_UNDERRUN)
2322 if (intel_set_pch_fifo_underrun_reporting(dev, TRANSCODER_B,
2323 false))
Ville Syrjäläfc2c8072014-01-17 11:44:32 +02002324 DRM_ERROR("PCH transcoder B FIFO underrun\n");
Paulo Zanoni86642812013-04-12 17:57:57 -03002325
2326 if (serr_int & SERR_INT_TRANS_C_FIFO_UNDERRUN)
2327 if (intel_set_pch_fifo_underrun_reporting(dev, TRANSCODER_C,
2328 false))
Ville Syrjäläfc2c8072014-01-17 11:44:32 +02002329 DRM_ERROR("PCH transcoder C FIFO underrun\n");
Paulo Zanoni86642812013-04-12 17:57:57 -03002330
2331 I915_WRITE(SERR_INT, serr_int);
Jesse Barnes776ad802011-01-04 15:09:39 -08002332}
2333
Adam Jackson23e81d62012-06-06 15:45:44 -04002334static void cpt_irq_handler(struct drm_device *dev, u32 pch_iir)
2335{
Jani Nikula2d1013d2014-03-31 14:27:17 +03002336 struct drm_i915_private *dev_priv = dev->dev_private;
Adam Jackson23e81d62012-06-06 15:45:44 -04002337 int pipe;
Egbert Eichb543fb02013-04-16 13:36:54 +02002338 u32 hotplug_trigger = pch_iir & SDE_HOTPLUG_MASK_CPT;
Dave Airlie13cf5502014-06-18 11:29:35 +10002339 u32 dig_hotplug_reg;
Adam Jackson23e81d62012-06-06 15:45:44 -04002340
Dave Airlie13cf5502014-06-18 11:29:35 +10002341 dig_hotplug_reg = I915_READ(PCH_PORT_HOTPLUG);
2342 I915_WRITE(PCH_PORT_HOTPLUG, dig_hotplug_reg);
2343
2344 intel_hpd_irq_handler(dev, hotplug_trigger, dig_hotplug_reg, hpd_cpt);
Daniel Vetter91d131d2013-06-27 17:52:14 +02002345
Ville Syrjäläcfc33bf2013-04-17 17:48:48 +03002346 if (pch_iir & SDE_AUDIO_POWER_MASK_CPT) {
2347 int port = ffs((pch_iir & SDE_AUDIO_POWER_MASK_CPT) >>
2348 SDE_AUDIO_POWER_SHIFT_CPT);
2349 DRM_DEBUG_DRIVER("PCH audio power change on port %c\n",
2350 port_name(port));
2351 }
Adam Jackson23e81d62012-06-06 15:45:44 -04002352
2353 if (pch_iir & SDE_AUX_MASK_CPT)
Daniel Vetterce99c252012-12-01 13:53:47 +01002354 dp_aux_irq_handler(dev);
Adam Jackson23e81d62012-06-06 15:45:44 -04002355
2356 if (pch_iir & SDE_GMBUS_CPT)
Daniel Vetter515ac2b2012-12-01 13:53:44 +01002357 gmbus_irq_handler(dev);
Adam Jackson23e81d62012-06-06 15:45:44 -04002358
2359 if (pch_iir & SDE_AUDIO_CP_REQ_CPT)
2360 DRM_DEBUG_DRIVER("Audio CP request interrupt\n");
2361
2362 if (pch_iir & SDE_AUDIO_CP_CHG_CPT)
2363 DRM_DEBUG_DRIVER("Audio CP change interrupt\n");
2364
2365 if (pch_iir & SDE_FDI_MASK_CPT)
Damien Lespiau055e3932014-08-18 13:49:10 +01002366 for_each_pipe(dev_priv, pipe)
Adam Jackson23e81d62012-06-06 15:45:44 -04002367 DRM_DEBUG_DRIVER(" pipe %c FDI IIR: 0x%08x\n",
2368 pipe_name(pipe),
2369 I915_READ(FDI_RX_IIR(pipe)));
Paulo Zanoni86642812013-04-12 17:57:57 -03002370
2371 if (pch_iir & SDE_ERROR_CPT)
2372 cpt_serr_int_handler(dev);
Adam Jackson23e81d62012-06-06 15:45:44 -04002373}
2374
Paulo Zanonic008bc62013-07-12 16:35:10 -03002375static void ilk_display_irq_handler(struct drm_device *dev, u32 de_iir)
2376{
2377 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter40da17c2013-10-21 18:04:36 +02002378 enum pipe pipe;
Paulo Zanonic008bc62013-07-12 16:35:10 -03002379
2380 if (de_iir & DE_AUX_CHANNEL_A)
2381 dp_aux_irq_handler(dev);
2382
2383 if (de_iir & DE_GSE)
2384 intel_opregion_asle_intr(dev);
2385
Paulo Zanonic008bc62013-07-12 16:35:10 -03002386 if (de_iir & DE_POISON)
2387 DRM_ERROR("Poison interrupt\n");
2388
Damien Lespiau055e3932014-08-18 13:49:10 +01002389 for_each_pipe(dev_priv, pipe) {
Chris Wilsond6bbafa2014-09-05 07:13:24 +01002390 if (de_iir & DE_PIPE_VBLANK(pipe) &&
2391 intel_pipe_handle_vblank(dev, pipe))
2392 intel_check_page_flip(dev, pipe);
Paulo Zanonic008bc62013-07-12 16:35:10 -03002393
Daniel Vetter40da17c2013-10-21 18:04:36 +02002394 if (de_iir & DE_PIPE_FIFO_UNDERRUN(pipe))
2395 if (intel_set_cpu_fifo_underrun_reporting(dev, pipe, false))
Ville Syrjäläfc2c8072014-01-17 11:44:32 +02002396 DRM_ERROR("Pipe %c FIFO underrun\n",
2397 pipe_name(pipe));
Paulo Zanonic008bc62013-07-12 16:35:10 -03002398
Daniel Vetter40da17c2013-10-21 18:04:36 +02002399 if (de_iir & DE_PIPE_CRC_DONE(pipe))
2400 i9xx_pipe_crc_irq_handler(dev, pipe);
Daniel Vetter5b3a8562013-10-16 22:55:48 +02002401
Daniel Vetter40da17c2013-10-21 18:04:36 +02002402 /* plane/pipes map 1:1 on ilk+ */
2403 if (de_iir & DE_PLANE_FLIP_DONE(pipe)) {
2404 intel_prepare_page_flip(dev, pipe);
2405 intel_finish_page_flip_plane(dev, pipe);
2406 }
Paulo Zanonic008bc62013-07-12 16:35:10 -03002407 }
2408
2409 /* check event from PCH */
2410 if (de_iir & DE_PCH_EVENT) {
2411 u32 pch_iir = I915_READ(SDEIIR);
2412
2413 if (HAS_PCH_CPT(dev))
2414 cpt_irq_handler(dev, pch_iir);
2415 else
2416 ibx_irq_handler(dev, pch_iir);
2417
2418 /* should clear PCH hotplug event before clear CPU irq */
2419 I915_WRITE(SDEIIR, pch_iir);
2420 }
2421
2422 if (IS_GEN5(dev) && de_iir & DE_PCU_EVENT)
2423 ironlake_rps_change_irq_handler(dev);
2424}
2425
Paulo Zanoni9719fb92013-07-12 16:35:11 -03002426static void ivb_display_irq_handler(struct drm_device *dev, u32 de_iir)
2427{
2428 struct drm_i915_private *dev_priv = dev->dev_private;
Damien Lespiau07d27e22014-03-03 17:31:46 +00002429 enum pipe pipe;
Paulo Zanoni9719fb92013-07-12 16:35:11 -03002430
2431 if (de_iir & DE_ERR_INT_IVB)
2432 ivb_err_int_handler(dev);
2433
2434 if (de_iir & DE_AUX_CHANNEL_A_IVB)
2435 dp_aux_irq_handler(dev);
2436
2437 if (de_iir & DE_GSE_IVB)
2438 intel_opregion_asle_intr(dev);
2439
Damien Lespiau055e3932014-08-18 13:49:10 +01002440 for_each_pipe(dev_priv, pipe) {
Chris Wilsond6bbafa2014-09-05 07:13:24 +01002441 if (de_iir & (DE_PIPE_VBLANK_IVB(pipe)) &&
2442 intel_pipe_handle_vblank(dev, pipe))
2443 intel_check_page_flip(dev, pipe);
Daniel Vetter40da17c2013-10-21 18:04:36 +02002444
2445 /* plane/pipes map 1:1 on ilk+ */
Damien Lespiau07d27e22014-03-03 17:31:46 +00002446 if (de_iir & DE_PLANE_FLIP_DONE_IVB(pipe)) {
2447 intel_prepare_page_flip(dev, pipe);
2448 intel_finish_page_flip_plane(dev, pipe);
Paulo Zanoni9719fb92013-07-12 16:35:11 -03002449 }
2450 }
2451
2452 /* check event from PCH */
2453 if (!HAS_PCH_NOP(dev) && (de_iir & DE_PCH_EVENT_IVB)) {
2454 u32 pch_iir = I915_READ(SDEIIR);
2455
2456 cpt_irq_handler(dev, pch_iir);
2457
2458 /* clear PCH hotplug event before clear CPU irq */
2459 I915_WRITE(SDEIIR, pch_iir);
2460 }
2461}
2462
Oscar Mateo72c90f62014-06-16 16:10:57 +01002463/*
2464 * To handle irqs with the minimum potential races with fresh interrupts, we:
2465 * 1 - Disable Master Interrupt Control.
2466 * 2 - Find the source(s) of the interrupt.
2467 * 3 - Clear the Interrupt Identity bits (IIR).
2468 * 4 - Process the interrupt(s) that had bits set in the IIRs.
2469 * 5 - Re-enable Master Interrupt Control.
2470 */
Paulo Zanonif1af8fc2013-07-12 19:56:30 -03002471static irqreturn_t ironlake_irq_handler(int irq, void *arg)
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002472{
Daniel Vetter45a83f82014-05-12 19:17:55 +02002473 struct drm_device *dev = arg;
Jani Nikula2d1013d2014-03-31 14:27:17 +03002474 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanonif1af8fc2013-07-12 19:56:30 -03002475 u32 de_iir, gt_iir, de_ier, sde_ier = 0;
Chris Wilson0e434062012-05-09 21:45:44 +01002476 irqreturn_t ret = IRQ_NONE;
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002477
Paulo Zanoni86642812013-04-12 17:57:57 -03002478 /* We get interrupts on unclaimed registers, so check for this before we
2479 * do any I915_{READ,WRITE}. */
Chris Wilson907b28c2013-07-19 20:36:52 +01002480 intel_uncore_check_errors(dev);
Paulo Zanoni86642812013-04-12 17:57:57 -03002481
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002482 /* disable master interrupt before clearing iir */
2483 de_ier = I915_READ(DEIER);
2484 I915_WRITE(DEIER, de_ier & ~DE_MASTER_IRQ_CONTROL);
Paulo Zanoni23a78512013-07-12 16:35:14 -03002485 POSTING_READ(DEIER);
Chris Wilson0e434062012-05-09 21:45:44 +01002486
Paulo Zanoni44498ae2013-02-22 17:05:28 -03002487 /* Disable south interrupts. We'll only write to SDEIIR once, so further
2488 * interrupts will will be stored on its back queue, and then we'll be
2489 * able to process them after we restore SDEIER (as soon as we restore
2490 * it, we'll get an interrupt if SDEIIR still has something to process
2491 * due to its back queue). */
Ben Widawskyab5c6082013-04-05 13:12:41 -07002492 if (!HAS_PCH_NOP(dev)) {
2493 sde_ier = I915_READ(SDEIER);
2494 I915_WRITE(SDEIER, 0);
2495 POSTING_READ(SDEIER);
2496 }
Paulo Zanoni44498ae2013-02-22 17:05:28 -03002497
Oscar Mateo72c90f62014-06-16 16:10:57 +01002498 /* Find, clear, then process each source of interrupt */
2499
Chris Wilson0e434062012-05-09 21:45:44 +01002500 gt_iir = I915_READ(GTIIR);
2501 if (gt_iir) {
Oscar Mateo72c90f62014-06-16 16:10:57 +01002502 I915_WRITE(GTIIR, gt_iir);
2503 ret = IRQ_HANDLED;
Paulo Zanonid8fc8a42013-07-19 18:57:55 -03002504 if (INTEL_INFO(dev)->gen >= 6)
Paulo Zanonif1af8fc2013-07-12 19:56:30 -03002505 snb_gt_irq_handler(dev, dev_priv, gt_iir);
Paulo Zanonid8fc8a42013-07-19 18:57:55 -03002506 else
2507 ilk_gt_irq_handler(dev, dev_priv, gt_iir);
Chris Wilson0e434062012-05-09 21:45:44 +01002508 }
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002509
2510 de_iir = I915_READ(DEIIR);
Chris Wilson0e434062012-05-09 21:45:44 +01002511 if (de_iir) {
Oscar Mateo72c90f62014-06-16 16:10:57 +01002512 I915_WRITE(DEIIR, de_iir);
2513 ret = IRQ_HANDLED;
Paulo Zanonif1af8fc2013-07-12 19:56:30 -03002514 if (INTEL_INFO(dev)->gen >= 7)
2515 ivb_display_irq_handler(dev, de_iir);
2516 else
2517 ilk_display_irq_handler(dev, de_iir);
Chris Wilson0e434062012-05-09 21:45:44 +01002518 }
2519
Paulo Zanonif1af8fc2013-07-12 19:56:30 -03002520 if (INTEL_INFO(dev)->gen >= 6) {
2521 u32 pm_iir = I915_READ(GEN6_PMIIR);
2522 if (pm_iir) {
Paulo Zanonif1af8fc2013-07-12 19:56:30 -03002523 I915_WRITE(GEN6_PMIIR, pm_iir);
2524 ret = IRQ_HANDLED;
Oscar Mateo72c90f62014-06-16 16:10:57 +01002525 gen6_rps_irq_handler(dev_priv, pm_iir);
Paulo Zanonif1af8fc2013-07-12 19:56:30 -03002526 }
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002527 }
2528
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002529 I915_WRITE(DEIER, de_ier);
2530 POSTING_READ(DEIER);
Ben Widawskyab5c6082013-04-05 13:12:41 -07002531 if (!HAS_PCH_NOP(dev)) {
2532 I915_WRITE(SDEIER, sde_ier);
2533 POSTING_READ(SDEIER);
2534 }
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002535
2536 return ret;
2537}
2538
Ben Widawskyabd58f02013-11-02 21:07:09 -07002539static irqreturn_t gen8_irq_handler(int irq, void *arg)
2540{
2541 struct drm_device *dev = arg;
2542 struct drm_i915_private *dev_priv = dev->dev_private;
2543 u32 master_ctl;
2544 irqreturn_t ret = IRQ_NONE;
2545 uint32_t tmp = 0;
Daniel Vetterc42664c2013-11-07 11:05:40 +01002546 enum pipe pipe;
Ben Widawskyabd58f02013-11-02 21:07:09 -07002547
Ben Widawskyabd58f02013-11-02 21:07:09 -07002548 master_ctl = I915_READ(GEN8_MASTER_IRQ);
2549 master_ctl &= ~GEN8_MASTER_IRQ_CONTROL;
2550 if (!master_ctl)
2551 return IRQ_NONE;
2552
2553 I915_WRITE(GEN8_MASTER_IRQ, 0);
2554 POSTING_READ(GEN8_MASTER_IRQ);
2555
Oscar Mateo38cc46d2014-06-16 16:10:59 +01002556 /* Find, clear, then process each source of interrupt */
2557
Ben Widawskyabd58f02013-11-02 21:07:09 -07002558 ret = gen8_gt_irq_handler(dev, dev_priv, master_ctl);
2559
2560 if (master_ctl & GEN8_DE_MISC_IRQ) {
2561 tmp = I915_READ(GEN8_DE_MISC_IIR);
Ben Widawskyabd58f02013-11-02 21:07:09 -07002562 if (tmp) {
2563 I915_WRITE(GEN8_DE_MISC_IIR, tmp);
2564 ret = IRQ_HANDLED;
Oscar Mateo38cc46d2014-06-16 16:10:59 +01002565 if (tmp & GEN8_DE_MISC_GSE)
2566 intel_opregion_asle_intr(dev);
2567 else
2568 DRM_ERROR("Unexpected DE Misc interrupt\n");
Ben Widawskyabd58f02013-11-02 21:07:09 -07002569 }
Oscar Mateo38cc46d2014-06-16 16:10:59 +01002570 else
2571 DRM_ERROR("The master control interrupt lied (DE MISC)!\n");
Ben Widawskyabd58f02013-11-02 21:07:09 -07002572 }
2573
Daniel Vetter6d766f02013-11-07 14:49:55 +01002574 if (master_ctl & GEN8_DE_PORT_IRQ) {
2575 tmp = I915_READ(GEN8_DE_PORT_IIR);
Daniel Vetter6d766f02013-11-07 14:49:55 +01002576 if (tmp) {
2577 I915_WRITE(GEN8_DE_PORT_IIR, tmp);
2578 ret = IRQ_HANDLED;
Oscar Mateo38cc46d2014-06-16 16:10:59 +01002579 if (tmp & GEN8_AUX_CHANNEL_A)
2580 dp_aux_irq_handler(dev);
2581 else
2582 DRM_ERROR("Unexpected DE Port interrupt\n");
Daniel Vetter6d766f02013-11-07 14:49:55 +01002583 }
Oscar Mateo38cc46d2014-06-16 16:10:59 +01002584 else
2585 DRM_ERROR("The master control interrupt lied (DE PORT)!\n");
Daniel Vetter6d766f02013-11-07 14:49:55 +01002586 }
2587
Damien Lespiau055e3932014-08-18 13:49:10 +01002588 for_each_pipe(dev_priv, pipe) {
Daniel Vetterc42664c2013-11-07 11:05:40 +01002589 uint32_t pipe_iir;
Ben Widawskyabd58f02013-11-02 21:07:09 -07002590
Daniel Vetterc42664c2013-11-07 11:05:40 +01002591 if (!(master_ctl & GEN8_DE_PIPE_IRQ(pipe)))
2592 continue;
Ben Widawskyabd58f02013-11-02 21:07:09 -07002593
Daniel Vetterc42664c2013-11-07 11:05:40 +01002594 pipe_iir = I915_READ(GEN8_DE_PIPE_IIR(pipe));
Daniel Vetterc42664c2013-11-07 11:05:40 +01002595 if (pipe_iir) {
2596 ret = IRQ_HANDLED;
2597 I915_WRITE(GEN8_DE_PIPE_IIR(pipe), pipe_iir);
Chris Wilsond6bbafa2014-09-05 07:13:24 +01002598 if (pipe_iir & GEN8_PIPE_VBLANK &&
2599 intel_pipe_handle_vblank(dev, pipe))
2600 intel_check_page_flip(dev, pipe);
Oscar Mateo38cc46d2014-06-16 16:10:59 +01002601
2602 if (pipe_iir & GEN8_PIPE_PRIMARY_FLIP_DONE) {
2603 intel_prepare_page_flip(dev, pipe);
2604 intel_finish_page_flip_plane(dev, pipe);
2605 }
2606
2607 if (pipe_iir & GEN8_PIPE_CDCLK_CRC_DONE)
2608 hsw_pipe_crc_irq_handler(dev, pipe);
2609
2610 if (pipe_iir & GEN8_PIPE_FIFO_UNDERRUN) {
2611 if (intel_set_cpu_fifo_underrun_reporting(dev, pipe,
2612 false))
2613 DRM_ERROR("Pipe %c FIFO underrun\n",
2614 pipe_name(pipe));
2615 }
2616
2617 if (pipe_iir & GEN8_DE_PIPE_IRQ_FAULT_ERRORS) {
2618 DRM_ERROR("Fault errors on pipe %c\n: 0x%08x",
2619 pipe_name(pipe),
2620 pipe_iir & GEN8_DE_PIPE_IRQ_FAULT_ERRORS);
2621 }
Daniel Vetterc42664c2013-11-07 11:05:40 +01002622 } else
Ben Widawskyabd58f02013-11-02 21:07:09 -07002623 DRM_ERROR("The master control interrupt lied (DE PIPE)!\n");
2624 }
2625
Daniel Vetter92d03a82013-11-07 11:05:43 +01002626 if (!HAS_PCH_NOP(dev) && master_ctl & GEN8_DE_PCH_IRQ) {
2627 /*
2628 * FIXME(BDW): Assume for now that the new interrupt handling
2629 * scheme also closed the SDE interrupt handling race we've seen
2630 * on older pch-split platforms. But this needs testing.
2631 */
2632 u32 pch_iir = I915_READ(SDEIIR);
Daniel Vetter92d03a82013-11-07 11:05:43 +01002633 if (pch_iir) {
2634 I915_WRITE(SDEIIR, pch_iir);
2635 ret = IRQ_HANDLED;
Oscar Mateo38cc46d2014-06-16 16:10:59 +01002636 cpt_irq_handler(dev, pch_iir);
2637 } else
2638 DRM_ERROR("The master control interrupt lied (SDE)!\n");
2639
Daniel Vetter92d03a82013-11-07 11:05:43 +01002640 }
2641
Ben Widawskyabd58f02013-11-02 21:07:09 -07002642 I915_WRITE(GEN8_MASTER_IRQ, GEN8_MASTER_IRQ_CONTROL);
2643 POSTING_READ(GEN8_MASTER_IRQ);
2644
2645 return ret;
2646}
2647
Daniel Vetter17e1df02013-09-08 21:57:13 +02002648static void i915_error_wake_up(struct drm_i915_private *dev_priv,
2649 bool reset_completed)
2650{
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002651 struct intel_engine_cs *ring;
Daniel Vetter17e1df02013-09-08 21:57:13 +02002652 int i;
2653
2654 /*
2655 * Notify all waiters for GPU completion events that reset state has
2656 * been changed, and that they need to restart their wait after
2657 * checking for potential errors (and bail out to drop locks if there is
2658 * a gpu reset pending so that i915_error_work_func can acquire them).
2659 */
2660
2661 /* Wake up __wait_seqno, potentially holding dev->struct_mutex. */
2662 for_each_ring(ring, dev_priv, i)
2663 wake_up_all(&ring->irq_queue);
2664
2665 /* Wake up intel_crtc_wait_for_pending_flips, holding crtc->mutex. */
2666 wake_up_all(&dev_priv->pending_flip_queue);
2667
2668 /*
2669 * Signal tasks blocked in i915_gem_wait_for_error that the pending
2670 * reset state is cleared.
2671 */
2672 if (reset_completed)
2673 wake_up_all(&dev_priv->gpu_error.reset_queue);
2674}
2675
Jesse Barnes8a905232009-07-11 16:48:03 -04002676/**
2677 * i915_error_work_func - do process context error handling work
2678 * @work: work struct
2679 *
2680 * Fire an error uevent so userspace can see that a hang or error
2681 * was detected.
2682 */
2683static void i915_error_work_func(struct work_struct *work)
2684{
Daniel Vetter1f83fee2012-11-15 17:17:22 +01002685 struct i915_gpu_error *error = container_of(work, struct i915_gpu_error,
2686 work);
Jani Nikula2d1013d2014-03-31 14:27:17 +03002687 struct drm_i915_private *dev_priv =
2688 container_of(error, struct drm_i915_private, gpu_error);
Jesse Barnes8a905232009-07-11 16:48:03 -04002689 struct drm_device *dev = dev_priv->dev;
Ben Widawskycce723e2013-07-19 09:16:42 -07002690 char *error_event[] = { I915_ERROR_UEVENT "=1", NULL };
2691 char *reset_event[] = { I915_RESET_UEVENT "=1", NULL };
2692 char *reset_done_event[] = { I915_ERROR_UEVENT "=0", NULL };
Daniel Vetter17e1df02013-09-08 21:57:13 +02002693 int ret;
Jesse Barnes8a905232009-07-11 16:48:03 -04002694
Dave Airlie5bdebb12013-10-11 14:07:25 +10002695 kobject_uevent_env(&dev->primary->kdev->kobj, KOBJ_CHANGE, error_event);
Jesse Barnes8a905232009-07-11 16:48:03 -04002696
Daniel Vetter7db0ba22012-12-06 16:23:37 +01002697 /*
2698 * Note that there's only one work item which does gpu resets, so we
2699 * need not worry about concurrent gpu resets potentially incrementing
2700 * error->reset_counter twice. We only need to take care of another
2701 * racing irq/hangcheck declaring the gpu dead for a second time. A
2702 * quick check for that is good enough: schedule_work ensures the
2703 * correct ordering between hang detection and this work item, and since
2704 * the reset in-progress bit is only ever set by code outside of this
2705 * work we don't need to worry about any other races.
2706 */
2707 if (i915_reset_in_progress(error) && !i915_terminally_wedged(error)) {
Chris Wilsonf803aa52010-09-19 12:38:26 +01002708 DRM_DEBUG_DRIVER("resetting chip\n");
Dave Airlie5bdebb12013-10-11 14:07:25 +10002709 kobject_uevent_env(&dev->primary->kdev->kobj, KOBJ_CHANGE,
Daniel Vetter7db0ba22012-12-06 16:23:37 +01002710 reset_event);
Daniel Vetter1f83fee2012-11-15 17:17:22 +01002711
Daniel Vetter17e1df02013-09-08 21:57:13 +02002712 /*
Imre Deakf454c692014-04-23 01:09:04 +03002713 * In most cases it's guaranteed that we get here with an RPM
2714 * reference held, for example because there is a pending GPU
2715 * request that won't finish until the reset is done. This
2716 * isn't the case at least when we get here by doing a
2717 * simulated reset via debugs, so get an RPM reference.
2718 */
2719 intel_runtime_pm_get(dev_priv);
2720 /*
Daniel Vetter17e1df02013-09-08 21:57:13 +02002721 * All state reset _must_ be completed before we update the
2722 * reset counter, for otherwise waiters might miss the reset
2723 * pending state and not properly drop locks, resulting in
2724 * deadlocks with the reset work.
2725 */
Daniel Vetterf69061b2012-12-06 09:01:42 +01002726 ret = i915_reset(dev);
2727
Daniel Vetter17e1df02013-09-08 21:57:13 +02002728 intel_display_handle_reset(dev);
2729
Imre Deakf454c692014-04-23 01:09:04 +03002730 intel_runtime_pm_put(dev_priv);
2731
Daniel Vetterf69061b2012-12-06 09:01:42 +01002732 if (ret == 0) {
2733 /*
2734 * After all the gem state is reset, increment the reset
2735 * counter and wake up everyone waiting for the reset to
2736 * complete.
2737 *
2738 * Since unlock operations are a one-sided barrier only,
2739 * we need to insert a barrier here to order any seqno
2740 * updates before
2741 * the counter increment.
2742 */
Peter Zijlstra4e857c52014-03-17 18:06:10 +01002743 smp_mb__before_atomic();
Daniel Vetterf69061b2012-12-06 09:01:42 +01002744 atomic_inc(&dev_priv->gpu_error.reset_counter);
2745
Dave Airlie5bdebb12013-10-11 14:07:25 +10002746 kobject_uevent_env(&dev->primary->kdev->kobj,
Daniel Vetterf69061b2012-12-06 09:01:42 +01002747 KOBJ_CHANGE, reset_done_event);
Daniel Vetter1f83fee2012-11-15 17:17:22 +01002748 } else {
Mika Kuoppala2ac0f452013-11-12 14:44:19 +02002749 atomic_set_mask(I915_WEDGED, &error->reset_counter);
Ben Gamarif316a422009-09-14 17:48:46 -04002750 }
Daniel Vetter1f83fee2012-11-15 17:17:22 +01002751
Daniel Vetter17e1df02013-09-08 21:57:13 +02002752 /*
2753 * Note: The wake_up also serves as a memory barrier so that
2754 * waiters see the update value of the reset counter atomic_t.
2755 */
2756 i915_error_wake_up(dev_priv, true);
Ben Gamarif316a422009-09-14 17:48:46 -04002757 }
Jesse Barnes8a905232009-07-11 16:48:03 -04002758}
2759
Chris Wilson35aed2e2010-05-27 13:18:12 +01002760static void i915_report_and_clear_eir(struct drm_device *dev)
Jesse Barnes8a905232009-07-11 16:48:03 -04002761{
2762 struct drm_i915_private *dev_priv = dev->dev_private;
Ben Widawskybd9854f2012-08-23 15:18:09 -07002763 uint32_t instdone[I915_NUM_INSTDONE_REG];
Jesse Barnes8a905232009-07-11 16:48:03 -04002764 u32 eir = I915_READ(EIR);
Ben Widawsky050ee912012-08-22 11:32:15 -07002765 int pipe, i;
Jesse Barnes8a905232009-07-11 16:48:03 -04002766
Chris Wilson35aed2e2010-05-27 13:18:12 +01002767 if (!eir)
2768 return;
Jesse Barnes8a905232009-07-11 16:48:03 -04002769
Joe Perchesa70491c2012-03-18 13:00:11 -07002770 pr_err("render error detected, EIR: 0x%08x\n", eir);
Jesse Barnes8a905232009-07-11 16:48:03 -04002771
Ben Widawskybd9854f2012-08-23 15:18:09 -07002772 i915_get_extra_instdone(dev, instdone);
2773
Jesse Barnes8a905232009-07-11 16:48:03 -04002774 if (IS_G4X(dev)) {
2775 if (eir & (GM45_ERROR_MEM_PRIV | GM45_ERROR_CP_PRIV)) {
2776 u32 ipeir = I915_READ(IPEIR_I965);
2777
Joe Perchesa70491c2012-03-18 13:00:11 -07002778 pr_err(" IPEIR: 0x%08x\n", I915_READ(IPEIR_I965));
2779 pr_err(" IPEHR: 0x%08x\n", I915_READ(IPEHR_I965));
Ben Widawsky050ee912012-08-22 11:32:15 -07002780 for (i = 0; i < ARRAY_SIZE(instdone); i++)
2781 pr_err(" INSTDONE_%d: 0x%08x\n", i, instdone[i]);
Joe Perchesa70491c2012-03-18 13:00:11 -07002782 pr_err(" INSTPS: 0x%08x\n", I915_READ(INSTPS));
Joe Perchesa70491c2012-03-18 13:00:11 -07002783 pr_err(" ACTHD: 0x%08x\n", I915_READ(ACTHD_I965));
Jesse Barnes8a905232009-07-11 16:48:03 -04002784 I915_WRITE(IPEIR_I965, ipeir);
Chris Wilson3143a2b2010-11-16 15:55:10 +00002785 POSTING_READ(IPEIR_I965);
Jesse Barnes8a905232009-07-11 16:48:03 -04002786 }
2787 if (eir & GM45_ERROR_PAGE_TABLE) {
2788 u32 pgtbl_err = I915_READ(PGTBL_ER);
Joe Perchesa70491c2012-03-18 13:00:11 -07002789 pr_err("page table error\n");
2790 pr_err(" PGTBL_ER: 0x%08x\n", pgtbl_err);
Jesse Barnes8a905232009-07-11 16:48:03 -04002791 I915_WRITE(PGTBL_ER, pgtbl_err);
Chris Wilson3143a2b2010-11-16 15:55:10 +00002792 POSTING_READ(PGTBL_ER);
Jesse Barnes8a905232009-07-11 16:48:03 -04002793 }
2794 }
2795
Chris Wilsona6c45cf2010-09-17 00:32:17 +01002796 if (!IS_GEN2(dev)) {
Jesse Barnes8a905232009-07-11 16:48:03 -04002797 if (eir & I915_ERROR_PAGE_TABLE) {
2798 u32 pgtbl_err = I915_READ(PGTBL_ER);
Joe Perchesa70491c2012-03-18 13:00:11 -07002799 pr_err("page table error\n");
2800 pr_err(" PGTBL_ER: 0x%08x\n", pgtbl_err);
Jesse Barnes8a905232009-07-11 16:48:03 -04002801 I915_WRITE(PGTBL_ER, pgtbl_err);
Chris Wilson3143a2b2010-11-16 15:55:10 +00002802 POSTING_READ(PGTBL_ER);
Jesse Barnes8a905232009-07-11 16:48:03 -04002803 }
2804 }
2805
2806 if (eir & I915_ERROR_MEMORY_REFRESH) {
Joe Perchesa70491c2012-03-18 13:00:11 -07002807 pr_err("memory refresh error:\n");
Damien Lespiau055e3932014-08-18 13:49:10 +01002808 for_each_pipe(dev_priv, pipe)
Joe Perchesa70491c2012-03-18 13:00:11 -07002809 pr_err("pipe %c stat: 0x%08x\n",
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08002810 pipe_name(pipe), I915_READ(PIPESTAT(pipe)));
Jesse Barnes8a905232009-07-11 16:48:03 -04002811 /* pipestat has already been acked */
2812 }
2813 if (eir & I915_ERROR_INSTRUCTION) {
Joe Perchesa70491c2012-03-18 13:00:11 -07002814 pr_err("instruction error\n");
2815 pr_err(" INSTPM: 0x%08x\n", I915_READ(INSTPM));
Ben Widawsky050ee912012-08-22 11:32:15 -07002816 for (i = 0; i < ARRAY_SIZE(instdone); i++)
2817 pr_err(" INSTDONE_%d: 0x%08x\n", i, instdone[i]);
Chris Wilsona6c45cf2010-09-17 00:32:17 +01002818 if (INTEL_INFO(dev)->gen < 4) {
Jesse Barnes8a905232009-07-11 16:48:03 -04002819 u32 ipeir = I915_READ(IPEIR);
2820
Joe Perchesa70491c2012-03-18 13:00:11 -07002821 pr_err(" IPEIR: 0x%08x\n", I915_READ(IPEIR));
2822 pr_err(" IPEHR: 0x%08x\n", I915_READ(IPEHR));
Joe Perchesa70491c2012-03-18 13:00:11 -07002823 pr_err(" ACTHD: 0x%08x\n", I915_READ(ACTHD));
Jesse Barnes8a905232009-07-11 16:48:03 -04002824 I915_WRITE(IPEIR, ipeir);
Chris Wilson3143a2b2010-11-16 15:55:10 +00002825 POSTING_READ(IPEIR);
Jesse Barnes8a905232009-07-11 16:48:03 -04002826 } else {
2827 u32 ipeir = I915_READ(IPEIR_I965);
2828
Joe Perchesa70491c2012-03-18 13:00:11 -07002829 pr_err(" IPEIR: 0x%08x\n", I915_READ(IPEIR_I965));
2830 pr_err(" IPEHR: 0x%08x\n", I915_READ(IPEHR_I965));
Joe Perchesa70491c2012-03-18 13:00:11 -07002831 pr_err(" INSTPS: 0x%08x\n", I915_READ(INSTPS));
Joe Perchesa70491c2012-03-18 13:00:11 -07002832 pr_err(" ACTHD: 0x%08x\n", I915_READ(ACTHD_I965));
Jesse Barnes8a905232009-07-11 16:48:03 -04002833 I915_WRITE(IPEIR_I965, ipeir);
Chris Wilson3143a2b2010-11-16 15:55:10 +00002834 POSTING_READ(IPEIR_I965);
Jesse Barnes8a905232009-07-11 16:48:03 -04002835 }
2836 }
2837
2838 I915_WRITE(EIR, eir);
Chris Wilson3143a2b2010-11-16 15:55:10 +00002839 POSTING_READ(EIR);
Jesse Barnes8a905232009-07-11 16:48:03 -04002840 eir = I915_READ(EIR);
2841 if (eir) {
2842 /*
2843 * some errors might have become stuck,
2844 * mask them.
2845 */
2846 DRM_ERROR("EIR stuck: 0x%08x, masking\n", eir);
2847 I915_WRITE(EMR, I915_READ(EMR) | eir);
2848 I915_WRITE(IIR, I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT);
2849 }
Chris Wilson35aed2e2010-05-27 13:18:12 +01002850}
2851
2852/**
2853 * i915_handle_error - handle an error interrupt
2854 * @dev: drm device
2855 *
2856 * Do some basic checking of regsiter state at error interrupt time and
2857 * dump it to the syslog. Also call i915_capture_error_state() to make
2858 * sure we get a record and make it available in debugfs. Fire a uevent
2859 * so userspace knows something bad happened (should trigger collection
2860 * of a ring dump etc.).
2861 */
Mika Kuoppala58174462014-02-25 17:11:26 +02002862void i915_handle_error(struct drm_device *dev, bool wedged,
2863 const char *fmt, ...)
Chris Wilson35aed2e2010-05-27 13:18:12 +01002864{
2865 struct drm_i915_private *dev_priv = dev->dev_private;
Mika Kuoppala58174462014-02-25 17:11:26 +02002866 va_list args;
2867 char error_msg[80];
Chris Wilson35aed2e2010-05-27 13:18:12 +01002868
Mika Kuoppala58174462014-02-25 17:11:26 +02002869 va_start(args, fmt);
2870 vscnprintf(error_msg, sizeof(error_msg), fmt, args);
2871 va_end(args);
2872
2873 i915_capture_error_state(dev, wedged, error_msg);
Chris Wilson35aed2e2010-05-27 13:18:12 +01002874 i915_report_and_clear_eir(dev);
Jesse Barnes8a905232009-07-11 16:48:03 -04002875
Ben Gamariba1234d2009-09-14 17:48:47 -04002876 if (wedged) {
Daniel Vetterf69061b2012-12-06 09:01:42 +01002877 atomic_set_mask(I915_RESET_IN_PROGRESS_FLAG,
2878 &dev_priv->gpu_error.reset_counter);
Ben Gamariba1234d2009-09-14 17:48:47 -04002879
Ben Gamari11ed50e2009-09-14 17:48:45 -04002880 /*
Daniel Vetter17e1df02013-09-08 21:57:13 +02002881 * Wakeup waiting processes so that the reset work function
2882 * i915_error_work_func doesn't deadlock trying to grab various
2883 * locks. By bumping the reset counter first, the woken
2884 * processes will see a reset in progress and back off,
2885 * releasing their locks and then wait for the reset completion.
2886 * We must do this for _all_ gpu waiters that might hold locks
2887 * that the reset work needs to acquire.
2888 *
2889 * Note: The wake_up serves as the required memory barrier to
2890 * ensure that the waiters see the updated value of the reset
2891 * counter atomic_t.
Ben Gamari11ed50e2009-09-14 17:48:45 -04002892 */
Daniel Vetter17e1df02013-09-08 21:57:13 +02002893 i915_error_wake_up(dev_priv, false);
Ben Gamari11ed50e2009-09-14 17:48:45 -04002894 }
2895
Daniel Vetter122f46b2013-09-04 17:36:14 +02002896 /*
2897 * Our reset work can grab modeset locks (since it needs to reset the
2898 * state of outstanding pagelips). Hence it must not be run on our own
2899 * dev-priv->wq work queue for otherwise the flush_work in the pageflip
2900 * code will deadlock.
2901 */
2902 schedule_work(&dev_priv->gpu_error.work);
Jesse Barnes8a905232009-07-11 16:48:03 -04002903}
2904
Keith Packard42f52ef2008-10-18 19:39:29 -07002905/* Called from drm generic code, passed 'crtc' which
2906 * we use as a pipe index
2907 */
Jesse Barnesf71d4af2011-06-28 13:00:41 -07002908static int i915_enable_vblank(struct drm_device *dev, int pipe)
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07002909{
Jani Nikula2d1013d2014-03-31 14:27:17 +03002910 struct drm_i915_private *dev_priv = dev->dev_private;
Keith Packarde9d21d72008-10-16 11:31:38 -07002911 unsigned long irqflags;
Jesse Barnes71e0ffa2009-01-08 10:42:15 -08002912
Chris Wilson5eddb702010-09-11 13:48:45 +01002913 if (!i915_pipe_enabled(dev, pipe))
Jesse Barnes71e0ffa2009-01-08 10:42:15 -08002914 return -EINVAL;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07002915
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002916 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Jesse Barnesf796cf82011-04-07 13:58:17 -07002917 if (INTEL_INFO(dev)->gen >= 4)
Keith Packard7c463582008-11-04 02:03:27 -08002918 i915_enable_pipestat(dev_priv, pipe,
Imre Deak755e9012014-02-10 18:42:47 +02002919 PIPE_START_VBLANK_INTERRUPT_STATUS);
Keith Packarde9d21d72008-10-16 11:31:38 -07002920 else
Keith Packard7c463582008-11-04 02:03:27 -08002921 i915_enable_pipestat(dev_priv, pipe,
Imre Deak755e9012014-02-10 18:42:47 +02002922 PIPE_VBLANK_INTERRUPT_STATUS);
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002923 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
Chris Wilson8692d00e2011-02-05 10:08:21 +00002924
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07002925 return 0;
2926}
2927
Jesse Barnesf71d4af2011-06-28 13:00:41 -07002928static int ironlake_enable_vblank(struct drm_device *dev, int pipe)
Jesse Barnesf796cf82011-04-07 13:58:17 -07002929{
Jani Nikula2d1013d2014-03-31 14:27:17 +03002930 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnesf796cf82011-04-07 13:58:17 -07002931 unsigned long irqflags;
Paulo Zanonib5184212013-07-12 20:00:08 -03002932 uint32_t bit = (INTEL_INFO(dev)->gen >= 7) ? DE_PIPE_VBLANK_IVB(pipe) :
Daniel Vetter40da17c2013-10-21 18:04:36 +02002933 DE_PIPE_VBLANK(pipe);
Jesse Barnesf796cf82011-04-07 13:58:17 -07002934
2935 if (!i915_pipe_enabled(dev, pipe))
2936 return -EINVAL;
2937
2938 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Paulo Zanonib5184212013-07-12 20:00:08 -03002939 ironlake_enable_display_irq(dev_priv, bit);
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002940 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
2941
2942 return 0;
2943}
2944
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002945static int valleyview_enable_vblank(struct drm_device *dev, int pipe)
2946{
Jani Nikula2d1013d2014-03-31 14:27:17 +03002947 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002948 unsigned long irqflags;
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002949
2950 if (!i915_pipe_enabled(dev, pipe))
2951 return -EINVAL;
2952
2953 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Jesse Barnes31acc7f2012-06-20 10:53:11 -07002954 i915_enable_pipestat(dev_priv, pipe,
Imre Deak755e9012014-02-10 18:42:47 +02002955 PIPE_START_VBLANK_INTERRUPT_STATUS);
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002956 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
2957
2958 return 0;
2959}
2960
Ben Widawskyabd58f02013-11-02 21:07:09 -07002961static int gen8_enable_vblank(struct drm_device *dev, int pipe)
2962{
2963 struct drm_i915_private *dev_priv = dev->dev_private;
2964 unsigned long irqflags;
Ben Widawskyabd58f02013-11-02 21:07:09 -07002965
2966 if (!i915_pipe_enabled(dev, pipe))
2967 return -EINVAL;
2968
2969 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Daniel Vetter7167d7c2013-11-07 11:05:45 +01002970 dev_priv->de_irq_mask[pipe] &= ~GEN8_PIPE_VBLANK;
2971 I915_WRITE(GEN8_DE_PIPE_IMR(pipe), dev_priv->de_irq_mask[pipe]);
2972 POSTING_READ(GEN8_DE_PIPE_IMR(pipe));
Ben Widawskyabd58f02013-11-02 21:07:09 -07002973 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
2974 return 0;
2975}
2976
Keith Packard42f52ef2008-10-18 19:39:29 -07002977/* Called from drm generic code, passed 'crtc' which
2978 * we use as a pipe index
2979 */
Jesse Barnesf71d4af2011-06-28 13:00:41 -07002980static void i915_disable_vblank(struct drm_device *dev, int pipe)
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07002981{
Jani Nikula2d1013d2014-03-31 14:27:17 +03002982 struct drm_i915_private *dev_priv = dev->dev_private;
Keith Packarde9d21d72008-10-16 11:31:38 -07002983 unsigned long irqflags;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07002984
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002985 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Jesse Barnesf796cf82011-04-07 13:58:17 -07002986 i915_disable_pipestat(dev_priv, pipe,
Imre Deak755e9012014-02-10 18:42:47 +02002987 PIPE_VBLANK_INTERRUPT_STATUS |
2988 PIPE_START_VBLANK_INTERRUPT_STATUS);
Jesse Barnesf796cf82011-04-07 13:58:17 -07002989 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
2990}
2991
Jesse Barnesf71d4af2011-06-28 13:00:41 -07002992static void ironlake_disable_vblank(struct drm_device *dev, int pipe)
Jesse Barnesf796cf82011-04-07 13:58:17 -07002993{
Jani Nikula2d1013d2014-03-31 14:27:17 +03002994 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnesf796cf82011-04-07 13:58:17 -07002995 unsigned long irqflags;
Paulo Zanonib5184212013-07-12 20:00:08 -03002996 uint32_t bit = (INTEL_INFO(dev)->gen >= 7) ? DE_PIPE_VBLANK_IVB(pipe) :
Daniel Vetter40da17c2013-10-21 18:04:36 +02002997 DE_PIPE_VBLANK(pipe);
Jesse Barnesf796cf82011-04-07 13:58:17 -07002998
2999 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Paulo Zanonib5184212013-07-12 20:00:08 -03003000 ironlake_disable_display_irq(dev_priv, bit);
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07003001 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
3002}
3003
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003004static void valleyview_disable_vblank(struct drm_device *dev, int pipe)
3005{
Jani Nikula2d1013d2014-03-31 14:27:17 +03003006 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003007 unsigned long irqflags;
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003008
3009 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Jesse Barnes31acc7f2012-06-20 10:53:11 -07003010 i915_disable_pipestat(dev_priv, pipe,
Imre Deak755e9012014-02-10 18:42:47 +02003011 PIPE_START_VBLANK_INTERRUPT_STATUS);
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003012 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
3013}
3014
Ben Widawskyabd58f02013-11-02 21:07:09 -07003015static void gen8_disable_vblank(struct drm_device *dev, int pipe)
3016{
3017 struct drm_i915_private *dev_priv = dev->dev_private;
3018 unsigned long irqflags;
Ben Widawskyabd58f02013-11-02 21:07:09 -07003019
3020 if (!i915_pipe_enabled(dev, pipe))
3021 return;
3022
3023 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Daniel Vetter7167d7c2013-11-07 11:05:45 +01003024 dev_priv->de_irq_mask[pipe] |= GEN8_PIPE_VBLANK;
3025 I915_WRITE(GEN8_DE_PIPE_IMR(pipe), dev_priv->de_irq_mask[pipe]);
3026 POSTING_READ(GEN8_DE_PIPE_IMR(pipe));
Ben Widawskyabd58f02013-11-02 21:07:09 -07003027 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
3028}
3029
Chris Wilson893eead2010-10-27 14:44:35 +01003030static u32
Oscar Mateoa4872ba2014-05-22 14:13:33 +01003031ring_last_seqno(struct intel_engine_cs *ring)
Zou Nan hai852835f2010-05-21 09:08:56 +08003032{
Chris Wilson893eead2010-10-27 14:44:35 +01003033 return list_entry(ring->request_list.prev,
3034 struct drm_i915_gem_request, list)->seqno;
3035}
3036
Chris Wilson9107e9d2013-06-10 11:20:20 +01003037static bool
Oscar Mateoa4872ba2014-05-22 14:13:33 +01003038ring_idle(struct intel_engine_cs *ring, u32 seqno)
Chris Wilson893eead2010-10-27 14:44:35 +01003039{
Chris Wilson9107e9d2013-06-10 11:20:20 +01003040 return (list_empty(&ring->request_list) ||
3041 i915_seqno_passed(seqno, ring_last_seqno(ring)));
Ben Gamarif65d9422009-09-14 17:48:44 -04003042}
3043
Daniel Vettera028c4b2014-03-15 00:08:56 +01003044static bool
3045ipehr_is_semaphore_wait(struct drm_device *dev, u32 ipehr)
3046{
3047 if (INTEL_INFO(dev)->gen >= 8) {
Rodrigo Vivia6cdb932014-06-30 09:53:39 -07003048 return (ipehr >> 23) == 0x1c;
Daniel Vettera028c4b2014-03-15 00:08:56 +01003049 } else {
3050 ipehr &= ~MI_SEMAPHORE_SYNC_MASK;
3051 return ipehr == (MI_SEMAPHORE_MBOX | MI_SEMAPHORE_COMPARE |
3052 MI_SEMAPHORE_REGISTER);
3053 }
3054}
3055
Oscar Mateoa4872ba2014-05-22 14:13:33 +01003056static struct intel_engine_cs *
Rodrigo Vivia6cdb932014-06-30 09:53:39 -07003057semaphore_wait_to_signaller_ring(struct intel_engine_cs *ring, u32 ipehr, u64 offset)
Daniel Vetter921d42e2014-03-18 10:26:04 +01003058{
3059 struct drm_i915_private *dev_priv = ring->dev->dev_private;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01003060 struct intel_engine_cs *signaller;
Daniel Vetter921d42e2014-03-18 10:26:04 +01003061 int i;
3062
3063 if (INTEL_INFO(dev_priv->dev)->gen >= 8) {
Rodrigo Vivia6cdb932014-06-30 09:53:39 -07003064 for_each_ring(signaller, dev_priv, i) {
3065 if (ring == signaller)
3066 continue;
3067
3068 if (offset == signaller->semaphore.signal_ggtt[ring->id])
3069 return signaller;
3070 }
Daniel Vetter921d42e2014-03-18 10:26:04 +01003071 } else {
3072 u32 sync_bits = ipehr & MI_SEMAPHORE_SYNC_MASK;
3073
3074 for_each_ring(signaller, dev_priv, i) {
3075 if(ring == signaller)
3076 continue;
3077
Ben Widawskyebc348b2014-04-29 14:52:28 -07003078 if (sync_bits == signaller->semaphore.mbox.wait[ring->id])
Daniel Vetter921d42e2014-03-18 10:26:04 +01003079 return signaller;
3080 }
3081 }
3082
Rodrigo Vivia6cdb932014-06-30 09:53:39 -07003083 DRM_ERROR("No signaller ring found for ring %i, ipehr 0x%08x, offset 0x%016llx\n",
3084 ring->id, ipehr, offset);
Daniel Vetter921d42e2014-03-18 10:26:04 +01003085
3086 return NULL;
3087}
3088
Oscar Mateoa4872ba2014-05-22 14:13:33 +01003089static struct intel_engine_cs *
3090semaphore_waits_for(struct intel_engine_cs *ring, u32 *seqno)
Chris Wilsona24a11e2013-03-14 17:52:05 +02003091{
3092 struct drm_i915_private *dev_priv = ring->dev->dev_private;
Daniel Vetter88fe4292014-03-15 00:08:55 +01003093 u32 cmd, ipehr, head;
Rodrigo Vivia6cdb932014-06-30 09:53:39 -07003094 u64 offset = 0;
3095 int i, backwards;
Chris Wilsona24a11e2013-03-14 17:52:05 +02003096
3097 ipehr = I915_READ(RING_IPEHR(ring->mmio_base));
Daniel Vettera028c4b2014-03-15 00:08:56 +01003098 if (!ipehr_is_semaphore_wait(ring->dev, ipehr))
Chris Wilson6274f212013-06-10 11:20:21 +01003099 return NULL;
Chris Wilsona24a11e2013-03-14 17:52:05 +02003100
Daniel Vetter88fe4292014-03-15 00:08:55 +01003101 /*
3102 * HEAD is likely pointing to the dword after the actual command,
3103 * so scan backwards until we find the MBOX. But limit it to just 3
Rodrigo Vivia6cdb932014-06-30 09:53:39 -07003104 * or 4 dwords depending on the semaphore wait command size.
3105 * Note that we don't care about ACTHD here since that might
Daniel Vetter88fe4292014-03-15 00:08:55 +01003106 * point at at batch, and semaphores are always emitted into the
3107 * ringbuffer itself.
Chris Wilsona24a11e2013-03-14 17:52:05 +02003108 */
Daniel Vetter88fe4292014-03-15 00:08:55 +01003109 head = I915_READ_HEAD(ring) & HEAD_ADDR;
Rodrigo Vivia6cdb932014-06-30 09:53:39 -07003110 backwards = (INTEL_INFO(ring->dev)->gen >= 8) ? 5 : 4;
Daniel Vetter88fe4292014-03-15 00:08:55 +01003111
Rodrigo Vivia6cdb932014-06-30 09:53:39 -07003112 for (i = backwards; i; --i) {
Daniel Vetter88fe4292014-03-15 00:08:55 +01003113 /*
3114 * Be paranoid and presume the hw has gone off into the wild -
3115 * our ring is smaller than what the hardware (and hence
3116 * HEAD_ADDR) allows. Also handles wrap-around.
3117 */
Oscar Mateoee1b1e52014-05-22 14:13:35 +01003118 head &= ring->buffer->size - 1;
Daniel Vetter88fe4292014-03-15 00:08:55 +01003119
3120 /* This here seems to blow up */
Oscar Mateoee1b1e52014-05-22 14:13:35 +01003121 cmd = ioread32(ring->buffer->virtual_start + head);
Chris Wilsona24a11e2013-03-14 17:52:05 +02003122 if (cmd == ipehr)
3123 break;
3124
Daniel Vetter88fe4292014-03-15 00:08:55 +01003125 head -= 4;
3126 }
Chris Wilsona24a11e2013-03-14 17:52:05 +02003127
Daniel Vetter88fe4292014-03-15 00:08:55 +01003128 if (!i)
3129 return NULL;
3130
Oscar Mateoee1b1e52014-05-22 14:13:35 +01003131 *seqno = ioread32(ring->buffer->virtual_start + head + 4) + 1;
Rodrigo Vivia6cdb932014-06-30 09:53:39 -07003132 if (INTEL_INFO(ring->dev)->gen >= 8) {
3133 offset = ioread32(ring->buffer->virtual_start + head + 12);
3134 offset <<= 32;
3135 offset = ioread32(ring->buffer->virtual_start + head + 8);
3136 }
3137 return semaphore_wait_to_signaller_ring(ring, ipehr, offset);
Chris Wilsona24a11e2013-03-14 17:52:05 +02003138}
3139
Oscar Mateoa4872ba2014-05-22 14:13:33 +01003140static int semaphore_passed(struct intel_engine_cs *ring)
Chris Wilson6274f212013-06-10 11:20:21 +01003141{
3142 struct drm_i915_private *dev_priv = ring->dev->dev_private;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01003143 struct intel_engine_cs *signaller;
Chris Wilsona0d036b2014-07-19 12:40:42 +01003144 u32 seqno;
Chris Wilson6274f212013-06-10 11:20:21 +01003145
Chris Wilson4be17382014-06-06 10:22:29 +01003146 ring->hangcheck.deadlock++;
Chris Wilson6274f212013-06-10 11:20:21 +01003147
3148 signaller = semaphore_waits_for(ring, &seqno);
Chris Wilson4be17382014-06-06 10:22:29 +01003149 if (signaller == NULL)
3150 return -1;
3151
3152 /* Prevent pathological recursion due to driver bugs */
3153 if (signaller->hangcheck.deadlock >= I915_NUM_RINGS)
Chris Wilson6274f212013-06-10 11:20:21 +01003154 return -1;
3155
Chris Wilson4be17382014-06-06 10:22:29 +01003156 if (i915_seqno_passed(signaller->get_seqno(signaller, false), seqno))
3157 return 1;
3158
Chris Wilsona0d036b2014-07-19 12:40:42 +01003159 /* cursory check for an unkickable deadlock */
3160 if (I915_READ_CTL(signaller) & RING_WAIT_SEMAPHORE &&
3161 semaphore_passed(signaller) < 0)
Chris Wilson4be17382014-06-06 10:22:29 +01003162 return -1;
3163
3164 return 0;
Chris Wilson6274f212013-06-10 11:20:21 +01003165}
3166
3167static void semaphore_clear_deadlocks(struct drm_i915_private *dev_priv)
3168{
Oscar Mateoa4872ba2014-05-22 14:13:33 +01003169 struct intel_engine_cs *ring;
Chris Wilson6274f212013-06-10 11:20:21 +01003170 int i;
3171
3172 for_each_ring(ring, dev_priv, i)
Chris Wilson4be17382014-06-06 10:22:29 +01003173 ring->hangcheck.deadlock = 0;
Chris Wilson6274f212013-06-10 11:20:21 +01003174}
3175
Mika Kuoppalaad8beae2013-06-12 12:35:32 +03003176static enum intel_ring_hangcheck_action
Oscar Mateoa4872ba2014-05-22 14:13:33 +01003177ring_stuck(struct intel_engine_cs *ring, u64 acthd)
Chris Wilson1ec14ad2010-12-04 11:30:53 +00003178{
3179 struct drm_device *dev = ring->dev;
3180 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson9107e9d2013-06-10 11:20:20 +01003181 u32 tmp;
3182
Mika Kuoppalaf260fe72014-08-05 17:16:26 +03003183 if (acthd != ring->hangcheck.acthd) {
3184 if (acthd > ring->hangcheck.max_acthd) {
3185 ring->hangcheck.max_acthd = acthd;
3186 return HANGCHECK_ACTIVE;
3187 }
3188
3189 return HANGCHECK_ACTIVE_LOOP;
3190 }
Chris Wilson6274f212013-06-10 11:20:21 +01003191
Chris Wilson9107e9d2013-06-10 11:20:20 +01003192 if (IS_GEN2(dev))
Jani Nikulaf2f4d822013-08-11 12:44:01 +03003193 return HANGCHECK_HUNG;
Chris Wilson9107e9d2013-06-10 11:20:20 +01003194
3195 /* Is the chip hanging on a WAIT_FOR_EVENT?
3196 * If so we can simply poke the RB_WAIT bit
3197 * and break the hang. This should work on
3198 * all but the second generation chipsets.
3199 */
3200 tmp = I915_READ_CTL(ring);
Chris Wilson1ec14ad2010-12-04 11:30:53 +00003201 if (tmp & RING_WAIT) {
Mika Kuoppala58174462014-02-25 17:11:26 +02003202 i915_handle_error(dev, false,
3203 "Kicking stuck wait on %s",
3204 ring->name);
Chris Wilson1ec14ad2010-12-04 11:30:53 +00003205 I915_WRITE_CTL(ring, tmp);
Jani Nikulaf2f4d822013-08-11 12:44:01 +03003206 return HANGCHECK_KICK;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00003207 }
Chris Wilsona24a11e2013-03-14 17:52:05 +02003208
Chris Wilson6274f212013-06-10 11:20:21 +01003209 if (INTEL_INFO(dev)->gen >= 6 && tmp & RING_WAIT_SEMAPHORE) {
3210 switch (semaphore_passed(ring)) {
3211 default:
Jani Nikulaf2f4d822013-08-11 12:44:01 +03003212 return HANGCHECK_HUNG;
Chris Wilson6274f212013-06-10 11:20:21 +01003213 case 1:
Mika Kuoppala58174462014-02-25 17:11:26 +02003214 i915_handle_error(dev, false,
3215 "Kicking stuck semaphore on %s",
3216 ring->name);
Chris Wilson6274f212013-06-10 11:20:21 +01003217 I915_WRITE_CTL(ring, tmp);
Jani Nikulaf2f4d822013-08-11 12:44:01 +03003218 return HANGCHECK_KICK;
Chris Wilson6274f212013-06-10 11:20:21 +01003219 case 0:
Jani Nikulaf2f4d822013-08-11 12:44:01 +03003220 return HANGCHECK_WAIT;
Chris Wilson6274f212013-06-10 11:20:21 +01003221 }
Chris Wilson9107e9d2013-06-10 11:20:20 +01003222 }
Mika Kuoppalaed5cbb02013-05-13 16:32:11 +03003223
Jani Nikulaf2f4d822013-08-11 12:44:01 +03003224 return HANGCHECK_HUNG;
Mika Kuoppalaed5cbb02013-05-13 16:32:11 +03003225}
3226
Ben Gamarif65d9422009-09-14 17:48:44 -04003227/**
3228 * This is called when the chip hasn't reported back with completed
Mika Kuoppala05407ff2013-05-30 09:04:29 +03003229 * batchbuffers in a long time. We keep track per ring seqno progress and
3230 * if there are no progress, hangcheck score for that ring is increased.
3231 * Further, acthd is inspected to see if the ring is stuck. On stuck case
3232 * we kick the ring. If we see no progress on three subsequent calls
3233 * we assume chip is wedged and try to fix it by resetting the chip.
Ben Gamarif65d9422009-09-14 17:48:44 -04003234 */
Damien Lespiaua658b5d2013-08-08 22:28:56 +01003235static void i915_hangcheck_elapsed(unsigned long data)
Ben Gamarif65d9422009-09-14 17:48:44 -04003236{
3237 struct drm_device *dev = (struct drm_device *)data;
Jani Nikula2d1013d2014-03-31 14:27:17 +03003238 struct drm_i915_private *dev_priv = dev->dev_private;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01003239 struct intel_engine_cs *ring;
Chris Wilsonb4519512012-05-11 14:29:30 +01003240 int i;
Mika Kuoppala05407ff2013-05-30 09:04:29 +03003241 int busy_count = 0, rings_hung = 0;
Chris Wilson9107e9d2013-06-10 11:20:20 +01003242 bool stuck[I915_NUM_RINGS] = { 0 };
3243#define BUSY 1
3244#define KICK 5
3245#define HUNG 20
Chris Wilson893eead2010-10-27 14:44:35 +01003246
Jani Nikulad330a952014-01-21 11:24:25 +02003247 if (!i915.enable_hangcheck)
Ben Widawsky3e0dc6b2011-06-29 10:26:42 -07003248 return;
3249
Chris Wilsonb4519512012-05-11 14:29:30 +01003250 for_each_ring(ring, dev_priv, i) {
Chris Wilson50877442014-03-21 12:41:53 +00003251 u64 acthd;
3252 u32 seqno;
Chris Wilson9107e9d2013-06-10 11:20:20 +01003253 bool busy = true;
Chris Wilsonb4519512012-05-11 14:29:30 +01003254
Chris Wilson6274f212013-06-10 11:20:21 +01003255 semaphore_clear_deadlocks(dev_priv);
3256
Mika Kuoppala05407ff2013-05-30 09:04:29 +03003257 seqno = ring->get_seqno(ring, false);
3258 acthd = intel_ring_get_active_head(ring);
Chris Wilsond1e61e72012-04-10 17:00:41 +01003259
Chris Wilson9107e9d2013-06-10 11:20:20 +01003260 if (ring->hangcheck.seqno == seqno) {
3261 if (ring_idle(ring, seqno)) {
Mika Kuoppalada661462013-09-06 16:03:28 +03003262 ring->hangcheck.action = HANGCHECK_IDLE;
3263
Chris Wilson9107e9d2013-06-10 11:20:20 +01003264 if (waitqueue_active(&ring->irq_queue)) {
3265 /* Issue a wake-up to catch stuck h/w. */
Chris Wilson094f9a52013-09-25 17:34:55 +01003266 if (!test_and_set_bit(ring->id, &dev_priv->gpu_error.missed_irq_rings)) {
Daniel Vetterf4adcd22013-10-28 09:24:13 +01003267 if (!(dev_priv->gpu_error.test_irq_rings & intel_ring_flag(ring)))
3268 DRM_ERROR("Hangcheck timer elapsed... %s idle\n",
3269 ring->name);
3270 else
3271 DRM_INFO("Fake missed irq on %s\n",
3272 ring->name);
Chris Wilson094f9a52013-09-25 17:34:55 +01003273 wake_up_all(&ring->irq_queue);
3274 }
3275 /* Safeguard against driver failure */
3276 ring->hangcheck.score += BUSY;
Chris Wilson9107e9d2013-06-10 11:20:20 +01003277 } else
3278 busy = false;
Mika Kuoppala05407ff2013-05-30 09:04:29 +03003279 } else {
Chris Wilson6274f212013-06-10 11:20:21 +01003280 /* We always increment the hangcheck score
3281 * if the ring is busy and still processing
3282 * the same request, so that no single request
3283 * can run indefinitely (such as a chain of
3284 * batches). The only time we do not increment
3285 * the hangcheck score on this ring, if this
3286 * ring is in a legitimate wait for another
3287 * ring. In that case the waiting ring is a
3288 * victim and we want to be sure we catch the
3289 * right culprit. Then every time we do kick
3290 * the ring, add a small increment to the
3291 * score so that we can catch a batch that is
3292 * being repeatedly kicked and so responsible
3293 * for stalling the machine.
3294 */
Mika Kuoppalaad8beae2013-06-12 12:35:32 +03003295 ring->hangcheck.action = ring_stuck(ring,
3296 acthd);
3297
3298 switch (ring->hangcheck.action) {
Mika Kuoppalada661462013-09-06 16:03:28 +03003299 case HANGCHECK_IDLE:
Jani Nikulaf2f4d822013-08-11 12:44:01 +03003300 case HANGCHECK_WAIT:
Jani Nikulaf2f4d822013-08-11 12:44:01 +03003301 case HANGCHECK_ACTIVE:
Mika Kuoppalaf260fe72014-08-05 17:16:26 +03003302 break;
3303 case HANGCHECK_ACTIVE_LOOP:
Jani Nikulaea04cb32013-08-11 12:44:02 +03003304 ring->hangcheck.score += BUSY;
Chris Wilson6274f212013-06-10 11:20:21 +01003305 break;
Jani Nikulaf2f4d822013-08-11 12:44:01 +03003306 case HANGCHECK_KICK:
Jani Nikulaea04cb32013-08-11 12:44:02 +03003307 ring->hangcheck.score += KICK;
Chris Wilson6274f212013-06-10 11:20:21 +01003308 break;
Jani Nikulaf2f4d822013-08-11 12:44:01 +03003309 case HANGCHECK_HUNG:
Jani Nikulaea04cb32013-08-11 12:44:02 +03003310 ring->hangcheck.score += HUNG;
Chris Wilson6274f212013-06-10 11:20:21 +01003311 stuck[i] = true;
3312 break;
3313 }
Mika Kuoppala05407ff2013-05-30 09:04:29 +03003314 }
Chris Wilson9107e9d2013-06-10 11:20:20 +01003315 } else {
Mika Kuoppalada661462013-09-06 16:03:28 +03003316 ring->hangcheck.action = HANGCHECK_ACTIVE;
3317
Chris Wilson9107e9d2013-06-10 11:20:20 +01003318 /* Gradually reduce the count so that we catch DoS
3319 * attempts across multiple batches.
3320 */
3321 if (ring->hangcheck.score > 0)
3322 ring->hangcheck.score--;
Mika Kuoppalaf260fe72014-08-05 17:16:26 +03003323
3324 ring->hangcheck.acthd = ring->hangcheck.max_acthd = 0;
Chris Wilsond1e61e72012-04-10 17:00:41 +01003325 }
3326
Mika Kuoppala05407ff2013-05-30 09:04:29 +03003327 ring->hangcheck.seqno = seqno;
3328 ring->hangcheck.acthd = acthd;
Chris Wilson9107e9d2013-06-10 11:20:20 +01003329 busy_count += busy;
Chris Wilson893eead2010-10-27 14:44:35 +01003330 }
Eric Anholtb9201c12010-01-08 14:25:16 -08003331
Mika Kuoppala92cab732013-05-24 17:16:07 +03003332 for_each_ring(ring, dev_priv, i) {
Mika Kuoppalab6b0fac2014-01-30 19:04:43 +02003333 if (ring->hangcheck.score >= HANGCHECK_SCORE_RING_HUNG) {
Daniel Vetterb8d88d12013-08-28 10:57:59 +02003334 DRM_INFO("%s on %s\n",
3335 stuck[i] ? "stuck" : "no progress",
3336 ring->name);
Chris Wilsona43adf02013-06-10 11:20:22 +01003337 rings_hung++;
Mika Kuoppala92cab732013-05-24 17:16:07 +03003338 }
3339 }
3340
Mika Kuoppala05407ff2013-05-30 09:04:29 +03003341 if (rings_hung)
Mika Kuoppala58174462014-02-25 17:11:26 +02003342 return i915_handle_error(dev, true, "Ring hung");
Ben Gamarif65d9422009-09-14 17:48:44 -04003343
Mika Kuoppala05407ff2013-05-30 09:04:29 +03003344 if (busy_count)
3345 /* Reset timer case chip hangs without another request
3346 * being added */
Mika Kuoppala10cd45b2013-07-03 17:22:08 +03003347 i915_queue_hangcheck(dev);
3348}
3349
3350void i915_queue_hangcheck(struct drm_device *dev)
3351{
3352 struct drm_i915_private *dev_priv = dev->dev_private;
Jani Nikulad330a952014-01-21 11:24:25 +02003353 if (!i915.enable_hangcheck)
Mika Kuoppala10cd45b2013-07-03 17:22:08 +03003354 return;
3355
3356 mod_timer(&dev_priv->gpu_error.hangcheck_timer,
3357 round_jiffies_up(jiffies + DRM_I915_HANGCHECK_JIFFIES));
Ben Gamarif65d9422009-09-14 17:48:44 -04003358}
3359
Paulo Zanoni1c69eb42014-04-01 15:37:23 -03003360static void ibx_irq_reset(struct drm_device *dev)
Paulo Zanoni91738a92013-06-05 14:21:51 -03003361{
3362 struct drm_i915_private *dev_priv = dev->dev_private;
3363
3364 if (HAS_PCH_NOP(dev))
3365 return;
3366
Paulo Zanonif86f3fb2014-04-01 15:37:14 -03003367 GEN5_IRQ_RESET(SDE);
Paulo Zanoni105b1222014-04-01 15:37:17 -03003368
3369 if (HAS_PCH_CPT(dev) || HAS_PCH_LPT(dev))
3370 I915_WRITE(SERR_INT, 0xffffffff);
Paulo Zanoni622364b2014-04-01 15:37:22 -03003371}
Paulo Zanoni105b1222014-04-01 15:37:17 -03003372
Paulo Zanoni622364b2014-04-01 15:37:22 -03003373/*
3374 * SDEIER is also touched by the interrupt handler to work around missed PCH
3375 * interrupts. Hence we can't update it after the interrupt handler is enabled -
3376 * instead we unconditionally enable all PCH interrupt sources here, but then
3377 * only unmask them as needed with SDEIMR.
3378 *
3379 * This function needs to be called before interrupts are enabled.
3380 */
3381static void ibx_irq_pre_postinstall(struct drm_device *dev)
3382{
3383 struct drm_i915_private *dev_priv = dev->dev_private;
3384
3385 if (HAS_PCH_NOP(dev))
3386 return;
3387
3388 WARN_ON(I915_READ(SDEIER) != 0);
Paulo Zanoni91738a92013-06-05 14:21:51 -03003389 I915_WRITE(SDEIER, 0xffffffff);
3390 POSTING_READ(SDEIER);
3391}
3392
Paulo Zanoni7c4d6642014-04-01 15:37:19 -03003393static void gen5_gt_irq_reset(struct drm_device *dev)
Daniel Vetterd18ea1b2013-07-12 22:43:25 +02003394{
3395 struct drm_i915_private *dev_priv = dev->dev_private;
3396
Paulo Zanonif86f3fb2014-04-01 15:37:14 -03003397 GEN5_IRQ_RESET(GT);
Paulo Zanonia9d356a2014-04-01 15:37:09 -03003398 if (INTEL_INFO(dev)->gen >= 6)
Paulo Zanonif86f3fb2014-04-01 15:37:14 -03003399 GEN5_IRQ_RESET(GEN6_PM);
Daniel Vetterd18ea1b2013-07-12 22:43:25 +02003400}
3401
Linus Torvalds1da177e2005-04-16 15:20:36 -07003402/* drm_dma.h hooks
3403*/
Paulo Zanonibe30b292014-04-01 15:37:25 -03003404static void ironlake_irq_reset(struct drm_device *dev)
Zhenyu Wang036a4a72009-06-08 14:40:19 +08003405{
Jani Nikula2d1013d2014-03-31 14:27:17 +03003406 struct drm_i915_private *dev_priv = dev->dev_private;
Zhenyu Wang036a4a72009-06-08 14:40:19 +08003407
Paulo Zanoni0c841212014-04-01 15:37:27 -03003408 I915_WRITE(HWSTAM, 0xffffffff);
Daniel Vetterbdfcdb62012-01-05 01:05:26 +01003409
Paulo Zanonif86f3fb2014-04-01 15:37:14 -03003410 GEN5_IRQ_RESET(DE);
Paulo Zanonic6d954c2014-04-01 15:37:18 -03003411 if (IS_GEN7(dev))
3412 I915_WRITE(GEN7_ERR_INT, 0xffffffff);
Zhenyu Wang036a4a72009-06-08 14:40:19 +08003413
Paulo Zanoni7c4d6642014-04-01 15:37:19 -03003414 gen5_gt_irq_reset(dev);
Zhenyu Wangc6501562009-11-03 18:57:21 +00003415
Paulo Zanoni1c69eb42014-04-01 15:37:23 -03003416 ibx_irq_reset(dev);
Ben Widawsky7d991632013-05-28 19:22:25 -07003417}
3418
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003419static void valleyview_irq_preinstall(struct drm_device *dev)
3420{
Jani Nikula2d1013d2014-03-31 14:27:17 +03003421 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003422 int pipe;
3423
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003424 /* VLV magic */
3425 I915_WRITE(VLV_IMR, 0);
3426 I915_WRITE(RING_IMR(RENDER_RING_BASE), 0);
3427 I915_WRITE(RING_IMR(GEN6_BSD_RING_BASE), 0);
3428 I915_WRITE(RING_IMR(BLT_RING_BASE), 0);
3429
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003430 /* and GT */
3431 I915_WRITE(GTIIR, I915_READ(GTIIR));
3432 I915_WRITE(GTIIR, I915_READ(GTIIR));
Daniel Vetterd18ea1b2013-07-12 22:43:25 +02003433
Paulo Zanoni7c4d6642014-04-01 15:37:19 -03003434 gen5_gt_irq_reset(dev);
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003435
3436 I915_WRITE(DPINVGTT, 0xff);
3437
3438 I915_WRITE(PORT_HOTPLUG_EN, 0);
3439 I915_WRITE(PORT_HOTPLUG_STAT, I915_READ(PORT_HOTPLUG_STAT));
Damien Lespiau055e3932014-08-18 13:49:10 +01003440 for_each_pipe(dev_priv, pipe)
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003441 I915_WRITE(PIPESTAT(pipe), 0xffff);
3442 I915_WRITE(VLV_IIR, 0xffffffff);
3443 I915_WRITE(VLV_IMR, 0xffffffff);
3444 I915_WRITE(VLV_IER, 0x0);
3445 POSTING_READ(VLV_IER);
3446}
3447
Daniel Vetterd6e3cca2014-05-22 22:18:22 +02003448static void gen8_gt_irq_reset(struct drm_i915_private *dev_priv)
3449{
3450 GEN8_IRQ_RESET_NDX(GT, 0);
3451 GEN8_IRQ_RESET_NDX(GT, 1);
3452 GEN8_IRQ_RESET_NDX(GT, 2);
3453 GEN8_IRQ_RESET_NDX(GT, 3);
3454}
3455
Paulo Zanoni823f6b32014-04-01 15:37:26 -03003456static void gen8_irq_reset(struct drm_device *dev)
Ben Widawskyabd58f02013-11-02 21:07:09 -07003457{
3458 struct drm_i915_private *dev_priv = dev->dev_private;
3459 int pipe;
3460
Ben Widawskyabd58f02013-11-02 21:07:09 -07003461 I915_WRITE(GEN8_MASTER_IRQ, 0);
3462 POSTING_READ(GEN8_MASTER_IRQ);
3463
Daniel Vetterd6e3cca2014-05-22 22:18:22 +02003464 gen8_gt_irq_reset(dev_priv);
Ben Widawskyabd58f02013-11-02 21:07:09 -07003465
Damien Lespiau055e3932014-08-18 13:49:10 +01003466 for_each_pipe(dev_priv, pipe)
Paulo Zanoni813bde42014-07-04 11:50:29 -03003467 if (intel_display_power_enabled(dev_priv,
3468 POWER_DOMAIN_PIPE(pipe)))
3469 GEN8_IRQ_RESET_NDX(DE_PIPE, pipe);
Ben Widawskyabd58f02013-11-02 21:07:09 -07003470
Paulo Zanonif86f3fb2014-04-01 15:37:14 -03003471 GEN5_IRQ_RESET(GEN8_DE_PORT_);
3472 GEN5_IRQ_RESET(GEN8_DE_MISC_);
3473 GEN5_IRQ_RESET(GEN8_PCU_);
Ben Widawskyabd58f02013-11-02 21:07:09 -07003474
Paulo Zanoni1c69eb42014-04-01 15:37:23 -03003475 ibx_irq_reset(dev);
Ben Widawskyabd58f02013-11-02 21:07:09 -07003476}
Ben Widawskyabd58f02013-11-02 21:07:09 -07003477
Paulo Zanonid49bdb02014-07-04 11:50:31 -03003478void gen8_irq_power_well_post_enable(struct drm_i915_private *dev_priv)
3479{
3480 unsigned long irqflags;
3481
3482 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
3483 GEN8_IRQ_INIT_NDX(DE_PIPE, PIPE_B, dev_priv->de_irq_mask[PIPE_B],
3484 ~dev_priv->de_irq_mask[PIPE_B]);
3485 GEN8_IRQ_INIT_NDX(DE_PIPE, PIPE_C, dev_priv->de_irq_mask[PIPE_C],
3486 ~dev_priv->de_irq_mask[PIPE_C]);
3487 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
3488}
3489
Ville Syrjälä43f328d2014-04-09 20:40:52 +03003490static void cherryview_irq_preinstall(struct drm_device *dev)
3491{
3492 struct drm_i915_private *dev_priv = dev->dev_private;
3493 int pipe;
3494
3495 I915_WRITE(GEN8_MASTER_IRQ, 0);
3496 POSTING_READ(GEN8_MASTER_IRQ);
3497
Daniel Vetterd6e3cca2014-05-22 22:18:22 +02003498 gen8_gt_irq_reset(dev_priv);
Ville Syrjälä43f328d2014-04-09 20:40:52 +03003499
3500 GEN5_IRQ_RESET(GEN8_PCU_);
3501
3502 POSTING_READ(GEN8_PCU_IIR);
3503
3504 I915_WRITE(DPINVGTT, DPINVGTT_STATUS_MASK_CHV);
3505
3506 I915_WRITE(PORT_HOTPLUG_EN, 0);
3507 I915_WRITE(PORT_HOTPLUG_STAT, I915_READ(PORT_HOTPLUG_STAT));
3508
Damien Lespiau055e3932014-08-18 13:49:10 +01003509 for_each_pipe(dev_priv, pipe)
Ville Syrjälä43f328d2014-04-09 20:40:52 +03003510 I915_WRITE(PIPESTAT(pipe), 0xffff);
3511
3512 I915_WRITE(VLV_IMR, 0xffffffff);
3513 I915_WRITE(VLV_IER, 0x0);
3514 I915_WRITE(VLV_IIR, 0xffffffff);
3515 POSTING_READ(VLV_IIR);
3516}
3517
Daniel Vetter82a28bc2013-03-27 15:55:01 +01003518static void ibx_hpd_irq_setup(struct drm_device *dev)
Keith Packard7fe0b972011-09-19 13:31:02 -07003519{
Jani Nikula2d1013d2014-03-31 14:27:17 +03003520 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter82a28bc2013-03-27 15:55:01 +01003521 struct intel_encoder *intel_encoder;
Daniel Vetterfee884e2013-07-04 23:35:21 +02003522 u32 hotplug_irqs, hotplug, enabled_irqs = 0;
Keith Packard7fe0b972011-09-19 13:31:02 -07003523
Daniel Vetter82a28bc2013-03-27 15:55:01 +01003524 if (HAS_PCH_IBX(dev)) {
Daniel Vetterfee884e2013-07-04 23:35:21 +02003525 hotplug_irqs = SDE_HOTPLUG_MASK;
Damien Lespiaub2784e12014-08-05 11:29:37 +01003526 for_each_intel_encoder(dev, intel_encoder)
Egbert Eichcd569ae2013-04-16 13:36:57 +02003527 if (dev_priv->hpd_stats[intel_encoder->hpd_pin].hpd_mark == HPD_ENABLED)
Daniel Vetterfee884e2013-07-04 23:35:21 +02003528 enabled_irqs |= hpd_ibx[intel_encoder->hpd_pin];
Daniel Vetter82a28bc2013-03-27 15:55:01 +01003529 } else {
Daniel Vetterfee884e2013-07-04 23:35:21 +02003530 hotplug_irqs = SDE_HOTPLUG_MASK_CPT;
Damien Lespiaub2784e12014-08-05 11:29:37 +01003531 for_each_intel_encoder(dev, intel_encoder)
Egbert Eichcd569ae2013-04-16 13:36:57 +02003532 if (dev_priv->hpd_stats[intel_encoder->hpd_pin].hpd_mark == HPD_ENABLED)
Daniel Vetterfee884e2013-07-04 23:35:21 +02003533 enabled_irqs |= hpd_cpt[intel_encoder->hpd_pin];
Daniel Vetter82a28bc2013-03-27 15:55:01 +01003534 }
3535
Daniel Vetterfee884e2013-07-04 23:35:21 +02003536 ibx_display_interrupt_update(dev_priv, hotplug_irqs, enabled_irqs);
Daniel Vetter82a28bc2013-03-27 15:55:01 +01003537
3538 /*
3539 * Enable digital hotplug on the PCH, and configure the DP short pulse
3540 * duration to 2ms (which is the minimum in the Display Port spec)
3541 *
3542 * This register is the same on all known PCH chips.
3543 */
Keith Packard7fe0b972011-09-19 13:31:02 -07003544 hotplug = I915_READ(PCH_PORT_HOTPLUG);
3545 hotplug &= ~(PORTD_PULSE_DURATION_MASK|PORTC_PULSE_DURATION_MASK|PORTB_PULSE_DURATION_MASK);
3546 hotplug |= PORTD_HOTPLUG_ENABLE | PORTD_PULSE_DURATION_2ms;
3547 hotplug |= PORTC_HOTPLUG_ENABLE | PORTC_PULSE_DURATION_2ms;
3548 hotplug |= PORTB_HOTPLUG_ENABLE | PORTB_PULSE_DURATION_2ms;
3549 I915_WRITE(PCH_PORT_HOTPLUG, hotplug);
3550}
3551
Paulo Zanonid46da432013-02-08 17:35:15 -02003552static void ibx_irq_postinstall(struct drm_device *dev)
3553{
Jani Nikula2d1013d2014-03-31 14:27:17 +03003554 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter82a28bc2013-03-27 15:55:01 +01003555 u32 mask;
Paulo Zanonid46da432013-02-08 17:35:15 -02003556
Daniel Vetter692a04c2013-05-29 21:43:05 +02003557 if (HAS_PCH_NOP(dev))
3558 return;
3559
Paulo Zanoni105b1222014-04-01 15:37:17 -03003560 if (HAS_PCH_IBX(dev))
Daniel Vetter5c673b62014-03-07 20:34:46 +01003561 mask = SDE_GMBUS | SDE_AUX_MASK | SDE_POISON;
Paulo Zanoni105b1222014-04-01 15:37:17 -03003562 else
Daniel Vetter5c673b62014-03-07 20:34:46 +01003563 mask = SDE_GMBUS_CPT | SDE_AUX_MASK_CPT;
Paulo Zanoni86642812013-04-12 17:57:57 -03003564
Paulo Zanoni337ba012014-04-01 15:37:16 -03003565 GEN5_ASSERT_IIR_IS_ZERO(SDEIIR);
Paulo Zanonid46da432013-02-08 17:35:15 -02003566 I915_WRITE(SDEIMR, ~mask);
Paulo Zanonid46da432013-02-08 17:35:15 -02003567}
3568
Daniel Vetter0a9a8c92013-07-12 22:43:26 +02003569static void gen5_gt_irq_postinstall(struct drm_device *dev)
3570{
3571 struct drm_i915_private *dev_priv = dev->dev_private;
3572 u32 pm_irqs, gt_irqs;
3573
3574 pm_irqs = gt_irqs = 0;
3575
3576 dev_priv->gt_irq_mask = ~0;
Ben Widawsky040d2ba2013-09-19 11:01:40 -07003577 if (HAS_L3_DPF(dev)) {
Daniel Vetter0a9a8c92013-07-12 22:43:26 +02003578 /* L3 parity interrupt is always unmasked. */
Ben Widawsky35a85ac2013-09-19 11:13:41 -07003579 dev_priv->gt_irq_mask = ~GT_PARITY_ERROR(dev);
3580 gt_irqs |= GT_PARITY_ERROR(dev);
Daniel Vetter0a9a8c92013-07-12 22:43:26 +02003581 }
3582
3583 gt_irqs |= GT_RENDER_USER_INTERRUPT;
3584 if (IS_GEN5(dev)) {
3585 gt_irqs |= GT_RENDER_PIPECTL_NOTIFY_INTERRUPT |
3586 ILK_BSD_USER_INTERRUPT;
3587 } else {
3588 gt_irqs |= GT_BLT_USER_INTERRUPT | GT_BSD_USER_INTERRUPT;
3589 }
3590
Paulo Zanoni35079892014-04-01 15:37:15 -03003591 GEN5_IRQ_INIT(GT, dev_priv->gt_irq_mask, gt_irqs);
Daniel Vetter0a9a8c92013-07-12 22:43:26 +02003592
3593 if (INTEL_INFO(dev)->gen >= 6) {
Deepak Sa6706b42014-03-15 20:23:22 +05303594 pm_irqs |= dev_priv->pm_rps_events;
Daniel Vetter0a9a8c92013-07-12 22:43:26 +02003595
3596 if (HAS_VEBOX(dev))
3597 pm_irqs |= PM_VEBOX_USER_INTERRUPT;
3598
Paulo Zanoni605cd252013-08-06 18:57:15 -03003599 dev_priv->pm_irq_mask = 0xffffffff;
Paulo Zanoni35079892014-04-01 15:37:15 -03003600 GEN5_IRQ_INIT(GEN6_PM, dev_priv->pm_irq_mask, pm_irqs);
Daniel Vetter0a9a8c92013-07-12 22:43:26 +02003601 }
3602}
3603
Jesse Barnesf71d4af2011-06-28 13:00:41 -07003604static int ironlake_irq_postinstall(struct drm_device *dev)
Zhenyu Wang036a4a72009-06-08 14:40:19 +08003605{
Jani Nikula2d1013d2014-03-31 14:27:17 +03003606 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanoni8e76f8d2013-07-12 20:01:56 -03003607 u32 display_mask, extra_mask;
3608
3609 if (INTEL_INFO(dev)->gen >= 7) {
3610 display_mask = (DE_MASTER_IRQ_CONTROL | DE_GSE_IVB |
3611 DE_PCH_EVENT_IVB | DE_PLANEC_FLIP_DONE_IVB |
3612 DE_PLANEB_FLIP_DONE_IVB |
Daniel Vetter5c673b62014-03-07 20:34:46 +01003613 DE_PLANEA_FLIP_DONE_IVB | DE_AUX_CHANNEL_A_IVB);
Paulo Zanoni8e76f8d2013-07-12 20:01:56 -03003614 extra_mask = (DE_PIPEC_VBLANK_IVB | DE_PIPEB_VBLANK_IVB |
Daniel Vetter5c673b62014-03-07 20:34:46 +01003615 DE_PIPEA_VBLANK_IVB | DE_ERR_INT_IVB);
Paulo Zanoni8e76f8d2013-07-12 20:01:56 -03003616 } else {
3617 display_mask = (DE_MASTER_IRQ_CONTROL | DE_GSE | DE_PCH_EVENT |
3618 DE_PLANEA_FLIP_DONE | DE_PLANEB_FLIP_DONE |
Daniel Vetter5b3a8562013-10-16 22:55:48 +02003619 DE_AUX_CHANNEL_A |
Daniel Vetter5b3a8562013-10-16 22:55:48 +02003620 DE_PIPEB_CRC_DONE | DE_PIPEA_CRC_DONE |
3621 DE_POISON);
Daniel Vetter5c673b62014-03-07 20:34:46 +01003622 extra_mask = DE_PIPEA_VBLANK | DE_PIPEB_VBLANK | DE_PCU_EVENT |
3623 DE_PIPEB_FIFO_UNDERRUN | DE_PIPEA_FIFO_UNDERRUN;
Paulo Zanoni8e76f8d2013-07-12 20:01:56 -03003624 }
Zhenyu Wang036a4a72009-06-08 14:40:19 +08003625
Chris Wilson1ec14ad2010-12-04 11:30:53 +00003626 dev_priv->irq_mask = ~display_mask;
Zhenyu Wang036a4a72009-06-08 14:40:19 +08003627
Paulo Zanoni0c841212014-04-01 15:37:27 -03003628 I915_WRITE(HWSTAM, 0xeffe);
3629
Paulo Zanoni622364b2014-04-01 15:37:22 -03003630 ibx_irq_pre_postinstall(dev);
3631
Paulo Zanoni35079892014-04-01 15:37:15 -03003632 GEN5_IRQ_INIT(DE, dev_priv->irq_mask, display_mask | extra_mask);
Zhenyu Wang036a4a72009-06-08 14:40:19 +08003633
Daniel Vetter0a9a8c92013-07-12 22:43:26 +02003634 gen5_gt_irq_postinstall(dev);
Zhenyu Wang036a4a72009-06-08 14:40:19 +08003635
Paulo Zanonid46da432013-02-08 17:35:15 -02003636 ibx_irq_postinstall(dev);
Keith Packard7fe0b972011-09-19 13:31:02 -07003637
Jesse Barnesf97108d2010-01-29 11:27:07 -08003638 if (IS_IRONLAKE_M(dev)) {
Daniel Vetter6005ce42013-06-27 13:44:59 +02003639 /* Enable PCU event interrupts
3640 *
3641 * spinlocking not required here for correctness since interrupt
Daniel Vetter4bc9d432013-06-27 13:44:58 +02003642 * setup is guaranteed to run in single-threaded context. But we
3643 * need it to make the assert_spin_locked happy. */
Daniel Vetterd6207432014-09-15 14:55:27 +02003644 spin_lock_irq(&dev_priv->irq_lock);
Jesse Barnesf97108d2010-01-29 11:27:07 -08003645 ironlake_enable_display_irq(dev_priv, DE_PCU_EVENT);
Daniel Vetterd6207432014-09-15 14:55:27 +02003646 spin_unlock_irq(&dev_priv->irq_lock);
Jesse Barnesf97108d2010-01-29 11:27:07 -08003647 }
3648
Zhenyu Wang036a4a72009-06-08 14:40:19 +08003649 return 0;
3650}
3651
Imre Deakf8b79e52014-03-04 19:23:07 +02003652static void valleyview_display_irqs_install(struct drm_i915_private *dev_priv)
3653{
3654 u32 pipestat_mask;
3655 u32 iir_mask;
3656
3657 pipestat_mask = PIPESTAT_INT_STATUS_MASK |
3658 PIPE_FIFO_UNDERRUN_STATUS;
3659
3660 I915_WRITE(PIPESTAT(PIPE_A), pipestat_mask);
3661 I915_WRITE(PIPESTAT(PIPE_B), pipestat_mask);
3662 POSTING_READ(PIPESTAT(PIPE_A));
3663
3664 pipestat_mask = PLANE_FLIP_DONE_INT_STATUS_VLV |
3665 PIPE_CRC_DONE_INTERRUPT_STATUS;
3666
3667 i915_enable_pipestat(dev_priv, PIPE_A, pipestat_mask |
3668 PIPE_GMBUS_INTERRUPT_STATUS);
3669 i915_enable_pipestat(dev_priv, PIPE_B, pipestat_mask);
3670
3671 iir_mask = I915_DISPLAY_PORT_INTERRUPT |
3672 I915_DISPLAY_PIPE_A_EVENT_INTERRUPT |
3673 I915_DISPLAY_PIPE_B_EVENT_INTERRUPT;
3674 dev_priv->irq_mask &= ~iir_mask;
3675
3676 I915_WRITE(VLV_IIR, iir_mask);
3677 I915_WRITE(VLV_IIR, iir_mask);
3678 I915_WRITE(VLV_IMR, dev_priv->irq_mask);
3679 I915_WRITE(VLV_IER, ~dev_priv->irq_mask);
3680 POSTING_READ(VLV_IER);
3681}
3682
3683static void valleyview_display_irqs_uninstall(struct drm_i915_private *dev_priv)
3684{
3685 u32 pipestat_mask;
3686 u32 iir_mask;
3687
3688 iir_mask = I915_DISPLAY_PORT_INTERRUPT |
3689 I915_DISPLAY_PIPE_A_EVENT_INTERRUPT |
Imre Deak6c7fba02014-03-10 19:44:48 +02003690 I915_DISPLAY_PIPE_B_EVENT_INTERRUPT;
Imre Deakf8b79e52014-03-04 19:23:07 +02003691
3692 dev_priv->irq_mask |= iir_mask;
3693 I915_WRITE(VLV_IER, ~dev_priv->irq_mask);
3694 I915_WRITE(VLV_IMR, dev_priv->irq_mask);
3695 I915_WRITE(VLV_IIR, iir_mask);
3696 I915_WRITE(VLV_IIR, iir_mask);
3697 POSTING_READ(VLV_IIR);
3698
3699 pipestat_mask = PLANE_FLIP_DONE_INT_STATUS_VLV |
3700 PIPE_CRC_DONE_INTERRUPT_STATUS;
3701
3702 i915_disable_pipestat(dev_priv, PIPE_A, pipestat_mask |
3703 PIPE_GMBUS_INTERRUPT_STATUS);
3704 i915_disable_pipestat(dev_priv, PIPE_B, pipestat_mask);
3705
3706 pipestat_mask = PIPESTAT_INT_STATUS_MASK |
3707 PIPE_FIFO_UNDERRUN_STATUS;
3708 I915_WRITE(PIPESTAT(PIPE_A), pipestat_mask);
3709 I915_WRITE(PIPESTAT(PIPE_B), pipestat_mask);
3710 POSTING_READ(PIPESTAT(PIPE_A));
3711}
3712
3713void valleyview_enable_display_irqs(struct drm_i915_private *dev_priv)
3714{
3715 assert_spin_locked(&dev_priv->irq_lock);
3716
3717 if (dev_priv->display_irqs_enabled)
3718 return;
3719
3720 dev_priv->display_irqs_enabled = true;
3721
Imre Deak950eaba2014-09-08 15:21:09 +03003722 if (intel_irqs_enabled(dev_priv))
Imre Deakf8b79e52014-03-04 19:23:07 +02003723 valleyview_display_irqs_install(dev_priv);
3724}
3725
3726void valleyview_disable_display_irqs(struct drm_i915_private *dev_priv)
3727{
3728 assert_spin_locked(&dev_priv->irq_lock);
3729
3730 if (!dev_priv->display_irqs_enabled)
3731 return;
3732
3733 dev_priv->display_irqs_enabled = false;
3734
Imre Deak950eaba2014-09-08 15:21:09 +03003735 if (intel_irqs_enabled(dev_priv))
Imre Deakf8b79e52014-03-04 19:23:07 +02003736 valleyview_display_irqs_uninstall(dev_priv);
3737}
3738
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003739static int valleyview_irq_postinstall(struct drm_device *dev)
3740{
Jani Nikula2d1013d2014-03-31 14:27:17 +03003741 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003742
Imre Deakf8b79e52014-03-04 19:23:07 +02003743 dev_priv->irq_mask = ~0;
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003744
Daniel Vetter20afbda2012-12-11 14:05:07 +01003745 I915_WRITE(PORT_HOTPLUG_EN, 0);
3746 POSTING_READ(PORT_HOTPLUG_EN);
3747
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003748 I915_WRITE(VLV_IMR, dev_priv->irq_mask);
Imre Deakf8b79e52014-03-04 19:23:07 +02003749 I915_WRITE(VLV_IER, ~dev_priv->irq_mask);
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003750 I915_WRITE(VLV_IIR, 0xffffffff);
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003751 POSTING_READ(VLV_IER);
3752
Daniel Vetterb79480b2013-06-27 17:52:10 +02003753 /* Interrupt setup is already guaranteed to be single-threaded, this is
3754 * just to make the assert_spin_locked check happy. */
Daniel Vetterd6207432014-09-15 14:55:27 +02003755 spin_lock_irq(&dev_priv->irq_lock);
Imre Deakf8b79e52014-03-04 19:23:07 +02003756 if (dev_priv->display_irqs_enabled)
3757 valleyview_display_irqs_install(dev_priv);
Daniel Vetterd6207432014-09-15 14:55:27 +02003758 spin_unlock_irq(&dev_priv->irq_lock);
Jesse Barnes31acc7f2012-06-20 10:53:11 -07003759
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003760 I915_WRITE(VLV_IIR, 0xffffffff);
3761 I915_WRITE(VLV_IIR, 0xffffffff);
3762
Daniel Vetter0a9a8c92013-07-12 22:43:26 +02003763 gen5_gt_irq_postinstall(dev);
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003764
3765 /* ack & enable invalid PTE error interrupts */
3766#if 0 /* FIXME: add support to irq handler for checking these bits */
3767 I915_WRITE(DPINVGTT, DPINVGTT_STATUS_MASK);
3768 I915_WRITE(DPINVGTT, DPINVGTT_EN_MASK);
3769#endif
3770
3771 I915_WRITE(VLV_MASTER_IER, MASTER_INTERRUPT_ENABLE);
Daniel Vetter20afbda2012-12-11 14:05:07 +01003772
3773 return 0;
3774}
3775
Ben Widawskyabd58f02013-11-02 21:07:09 -07003776static void gen8_gt_irq_postinstall(struct drm_i915_private *dev_priv)
3777{
Ben Widawskyabd58f02013-11-02 21:07:09 -07003778 /* These are interrupts we'll toggle with the ring mask register */
3779 uint32_t gt_interrupts[] = {
3780 GT_RENDER_USER_INTERRUPT << GEN8_RCS_IRQ_SHIFT |
Oscar Mateo73d477f2014-07-24 17:04:31 +01003781 GT_CONTEXT_SWITCH_INTERRUPT << GEN8_RCS_IRQ_SHIFT |
Ben Widawskyabd58f02013-11-02 21:07:09 -07003782 GT_RENDER_L3_PARITY_ERROR_INTERRUPT |
Oscar Mateo73d477f2014-07-24 17:04:31 +01003783 GT_RENDER_USER_INTERRUPT << GEN8_BCS_IRQ_SHIFT |
3784 GT_CONTEXT_SWITCH_INTERRUPT << GEN8_BCS_IRQ_SHIFT,
Ben Widawskyabd58f02013-11-02 21:07:09 -07003785 GT_RENDER_USER_INTERRUPT << GEN8_VCS1_IRQ_SHIFT |
Oscar Mateo73d477f2014-07-24 17:04:31 +01003786 GT_CONTEXT_SWITCH_INTERRUPT << GEN8_VCS1_IRQ_SHIFT |
3787 GT_RENDER_USER_INTERRUPT << GEN8_VCS2_IRQ_SHIFT |
3788 GT_CONTEXT_SWITCH_INTERRUPT << GEN8_VCS2_IRQ_SHIFT,
Ben Widawskyabd58f02013-11-02 21:07:09 -07003789 0,
Oscar Mateo73d477f2014-07-24 17:04:31 +01003790 GT_RENDER_USER_INTERRUPT << GEN8_VECS_IRQ_SHIFT |
3791 GT_CONTEXT_SWITCH_INTERRUPT << GEN8_VECS_IRQ_SHIFT
Ben Widawskyabd58f02013-11-02 21:07:09 -07003792 };
3793
Ben Widawsky09610212014-05-15 20:58:08 +03003794 dev_priv->pm_irq_mask = 0xffffffff;
Deepak S9a2d2d82014-08-22 08:32:40 +05303795 GEN8_IRQ_INIT_NDX(GT, 0, ~gt_interrupts[0], gt_interrupts[0]);
3796 GEN8_IRQ_INIT_NDX(GT, 1, ~gt_interrupts[1], gt_interrupts[1]);
3797 GEN8_IRQ_INIT_NDX(GT, 2, dev_priv->pm_irq_mask, dev_priv->pm_rps_events);
3798 GEN8_IRQ_INIT_NDX(GT, 3, ~gt_interrupts[3], gt_interrupts[3]);
Ben Widawskyabd58f02013-11-02 21:07:09 -07003799}
3800
3801static void gen8_de_irq_postinstall(struct drm_i915_private *dev_priv)
3802{
Damien Lespiaud0e1f1c2014-04-08 01:22:44 +01003803 uint32_t de_pipe_masked = GEN8_PIPE_PRIMARY_FLIP_DONE |
Daniel Vetter13b3a0a2013-11-07 15:31:52 +01003804 GEN8_PIPE_CDCLK_CRC_DONE |
Daniel Vetter13b3a0a2013-11-07 15:31:52 +01003805 GEN8_DE_PIPE_IRQ_FAULT_ERRORS;
Daniel Vetter5c673b62014-03-07 20:34:46 +01003806 uint32_t de_pipe_enables = de_pipe_masked | GEN8_PIPE_VBLANK |
3807 GEN8_PIPE_FIFO_UNDERRUN;
Ben Widawskyabd58f02013-11-02 21:07:09 -07003808 int pipe;
Daniel Vetter13b3a0a2013-11-07 15:31:52 +01003809 dev_priv->de_irq_mask[PIPE_A] = ~de_pipe_masked;
3810 dev_priv->de_irq_mask[PIPE_B] = ~de_pipe_masked;
3811 dev_priv->de_irq_mask[PIPE_C] = ~de_pipe_masked;
Ben Widawskyabd58f02013-11-02 21:07:09 -07003812
Damien Lespiau055e3932014-08-18 13:49:10 +01003813 for_each_pipe(dev_priv, pipe)
Paulo Zanoni813bde42014-07-04 11:50:29 -03003814 if (intel_display_power_enabled(dev_priv,
3815 POWER_DOMAIN_PIPE(pipe)))
3816 GEN8_IRQ_INIT_NDX(DE_PIPE, pipe,
3817 dev_priv->de_irq_mask[pipe],
3818 de_pipe_enables);
Ben Widawskyabd58f02013-11-02 21:07:09 -07003819
Paulo Zanoni35079892014-04-01 15:37:15 -03003820 GEN5_IRQ_INIT(GEN8_DE_PORT_, ~GEN8_AUX_CHANNEL_A, GEN8_AUX_CHANNEL_A);
Ben Widawskyabd58f02013-11-02 21:07:09 -07003821}
3822
3823static int gen8_irq_postinstall(struct drm_device *dev)
3824{
3825 struct drm_i915_private *dev_priv = dev->dev_private;
3826
Paulo Zanoni622364b2014-04-01 15:37:22 -03003827 ibx_irq_pre_postinstall(dev);
3828
Ben Widawskyabd58f02013-11-02 21:07:09 -07003829 gen8_gt_irq_postinstall(dev_priv);
3830 gen8_de_irq_postinstall(dev_priv);
3831
3832 ibx_irq_postinstall(dev);
3833
3834 I915_WRITE(GEN8_MASTER_IRQ, DE_MASTER_IRQ_CONTROL);
3835 POSTING_READ(GEN8_MASTER_IRQ);
3836
3837 return 0;
3838}
3839
Ville Syrjälä43f328d2014-04-09 20:40:52 +03003840static int cherryview_irq_postinstall(struct drm_device *dev)
3841{
3842 struct drm_i915_private *dev_priv = dev->dev_private;
3843 u32 enable_mask = I915_DISPLAY_PORT_INTERRUPT |
3844 I915_DISPLAY_PIPE_A_EVENT_INTERRUPT |
Ville Syrjälä43f328d2014-04-09 20:40:52 +03003845 I915_DISPLAY_PIPE_B_EVENT_INTERRUPT |
Ville Syrjälä3278f672014-04-09 13:28:49 +03003846 I915_DISPLAY_PIPE_C_EVENT_INTERRUPT;
3847 u32 pipestat_enable = PLANE_FLIP_DONE_INT_STATUS_VLV |
3848 PIPE_CRC_DONE_INTERRUPT_STATUS;
Ville Syrjälä43f328d2014-04-09 20:40:52 +03003849 int pipe;
3850
3851 /*
3852 * Leave vblank interrupts masked initially. enable/disable will
3853 * toggle them based on usage.
3854 */
Ville Syrjälä3278f672014-04-09 13:28:49 +03003855 dev_priv->irq_mask = ~enable_mask;
Ville Syrjälä43f328d2014-04-09 20:40:52 +03003856
Damien Lespiau055e3932014-08-18 13:49:10 +01003857 for_each_pipe(dev_priv, pipe)
Ville Syrjälä43f328d2014-04-09 20:40:52 +03003858 I915_WRITE(PIPESTAT(pipe), 0xffff);
3859
Daniel Vetterd6207432014-09-15 14:55:27 +02003860 spin_lock_irq(&dev_priv->irq_lock);
Ville Syrjälä3278f672014-04-09 13:28:49 +03003861 i915_enable_pipestat(dev_priv, PIPE_A, PIPE_GMBUS_INTERRUPT_STATUS);
Damien Lespiau055e3932014-08-18 13:49:10 +01003862 for_each_pipe(dev_priv, pipe)
Ville Syrjälä43f328d2014-04-09 20:40:52 +03003863 i915_enable_pipestat(dev_priv, pipe, pipestat_enable);
Daniel Vetterd6207432014-09-15 14:55:27 +02003864 spin_unlock_irq(&dev_priv->irq_lock);
Ville Syrjälä43f328d2014-04-09 20:40:52 +03003865
3866 I915_WRITE(VLV_IIR, 0xffffffff);
3867 I915_WRITE(VLV_IMR, dev_priv->irq_mask);
3868 I915_WRITE(VLV_IER, enable_mask);
3869
3870 gen8_gt_irq_postinstall(dev_priv);
3871
3872 I915_WRITE(GEN8_MASTER_IRQ, MASTER_INTERRUPT_ENABLE);
3873 POSTING_READ(GEN8_MASTER_IRQ);
3874
3875 return 0;
3876}
3877
Ben Widawskyabd58f02013-11-02 21:07:09 -07003878static void gen8_irq_uninstall(struct drm_device *dev)
3879{
3880 struct drm_i915_private *dev_priv = dev->dev_private;
Ben Widawskyabd58f02013-11-02 21:07:09 -07003881
3882 if (!dev_priv)
3883 return;
3884
Paulo Zanoni823f6b32014-04-01 15:37:26 -03003885 gen8_irq_reset(dev);
Ben Widawskyabd58f02013-11-02 21:07:09 -07003886}
3887
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003888static void valleyview_irq_uninstall(struct drm_device *dev)
3889{
Jani Nikula2d1013d2014-03-31 14:27:17 +03003890 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003891 int pipe;
3892
3893 if (!dev_priv)
3894 return;
3895
Imre Deak843d0e72014-04-14 20:24:23 +03003896 I915_WRITE(VLV_MASTER_IER, 0);
3897
Damien Lespiau055e3932014-08-18 13:49:10 +01003898 for_each_pipe(dev_priv, pipe)
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003899 I915_WRITE(PIPESTAT(pipe), 0xffff);
3900
3901 I915_WRITE(HWSTAM, 0xffffffff);
3902 I915_WRITE(PORT_HOTPLUG_EN, 0);
3903 I915_WRITE(PORT_HOTPLUG_STAT, I915_READ(PORT_HOTPLUG_STAT));
Imre Deakf8b79e52014-03-04 19:23:07 +02003904
Daniel Vetterd6207432014-09-15 14:55:27 +02003905 /* Interrupt setup is already guaranteed to be single-threaded, this is
3906 * just to make the assert_spin_locked check happy. */
3907 spin_lock_irq(&dev_priv->irq_lock);
Imre Deakf8b79e52014-03-04 19:23:07 +02003908 if (dev_priv->display_irqs_enabled)
3909 valleyview_display_irqs_uninstall(dev_priv);
Daniel Vetterd6207432014-09-15 14:55:27 +02003910 spin_unlock_irq(&dev_priv->irq_lock);
Imre Deakf8b79e52014-03-04 19:23:07 +02003911
3912 dev_priv->irq_mask = 0;
3913
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003914 I915_WRITE(VLV_IIR, 0xffffffff);
3915 I915_WRITE(VLV_IMR, 0xffffffff);
3916 I915_WRITE(VLV_IER, 0x0);
3917 POSTING_READ(VLV_IER);
3918}
3919
Ville Syrjälä43f328d2014-04-09 20:40:52 +03003920static void cherryview_irq_uninstall(struct drm_device *dev)
3921{
3922 struct drm_i915_private *dev_priv = dev->dev_private;
3923 int pipe;
3924
3925 if (!dev_priv)
3926 return;
3927
3928 I915_WRITE(GEN8_MASTER_IRQ, 0);
3929 POSTING_READ(GEN8_MASTER_IRQ);
3930
3931#define GEN8_IRQ_FINI_NDX(type, which) \
3932do { \
3933 I915_WRITE(GEN8_##type##_IMR(which), 0xffffffff); \
3934 I915_WRITE(GEN8_##type##_IER(which), 0); \
3935 I915_WRITE(GEN8_##type##_IIR(which), 0xffffffff); \
3936 POSTING_READ(GEN8_##type##_IIR(which)); \
3937 I915_WRITE(GEN8_##type##_IIR(which), 0xffffffff); \
3938} while (0)
3939
3940#define GEN8_IRQ_FINI(type) \
3941do { \
3942 I915_WRITE(GEN8_##type##_IMR, 0xffffffff); \
3943 I915_WRITE(GEN8_##type##_IER, 0); \
3944 I915_WRITE(GEN8_##type##_IIR, 0xffffffff); \
3945 POSTING_READ(GEN8_##type##_IIR); \
3946 I915_WRITE(GEN8_##type##_IIR, 0xffffffff); \
3947} while (0)
3948
3949 GEN8_IRQ_FINI_NDX(GT, 0);
3950 GEN8_IRQ_FINI_NDX(GT, 1);
3951 GEN8_IRQ_FINI_NDX(GT, 2);
3952 GEN8_IRQ_FINI_NDX(GT, 3);
3953
3954 GEN8_IRQ_FINI(PCU);
3955
3956#undef GEN8_IRQ_FINI
3957#undef GEN8_IRQ_FINI_NDX
3958
3959 I915_WRITE(PORT_HOTPLUG_EN, 0);
3960 I915_WRITE(PORT_HOTPLUG_STAT, I915_READ(PORT_HOTPLUG_STAT));
3961
Damien Lespiau055e3932014-08-18 13:49:10 +01003962 for_each_pipe(dev_priv, pipe)
Ville Syrjälä43f328d2014-04-09 20:40:52 +03003963 I915_WRITE(PIPESTAT(pipe), 0xffff);
3964
3965 I915_WRITE(VLV_IMR, 0xffffffff);
3966 I915_WRITE(VLV_IER, 0x0);
3967 I915_WRITE(VLV_IIR, 0xffffffff);
3968 POSTING_READ(VLV_IIR);
3969}
3970
Jesse Barnesf71d4af2011-06-28 13:00:41 -07003971static void ironlake_irq_uninstall(struct drm_device *dev)
Zhenyu Wang036a4a72009-06-08 14:40:19 +08003972{
Jani Nikula2d1013d2014-03-31 14:27:17 +03003973 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes46979952011-04-07 13:53:55 -07003974
3975 if (!dev_priv)
3976 return;
3977
Paulo Zanonibe30b292014-04-01 15:37:25 -03003978 ironlake_irq_reset(dev);
Zhenyu Wang036a4a72009-06-08 14:40:19 +08003979}
3980
Chris Wilsonc2798b12012-04-22 21:13:57 +01003981static void i8xx_irq_preinstall(struct drm_device * dev)
3982{
Jani Nikula2d1013d2014-03-31 14:27:17 +03003983 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsonc2798b12012-04-22 21:13:57 +01003984 int pipe;
3985
Damien Lespiau055e3932014-08-18 13:49:10 +01003986 for_each_pipe(dev_priv, pipe)
Chris Wilsonc2798b12012-04-22 21:13:57 +01003987 I915_WRITE(PIPESTAT(pipe), 0);
3988 I915_WRITE16(IMR, 0xffff);
3989 I915_WRITE16(IER, 0x0);
3990 POSTING_READ16(IER);
3991}
3992
3993static int i8xx_irq_postinstall(struct drm_device *dev)
3994{
Jani Nikula2d1013d2014-03-31 14:27:17 +03003995 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsonc2798b12012-04-22 21:13:57 +01003996
Chris Wilsonc2798b12012-04-22 21:13:57 +01003997 I915_WRITE16(EMR,
3998 ~(I915_ERROR_PAGE_TABLE | I915_ERROR_MEMORY_REFRESH));
3999
4000 /* Unmask the interrupts that we always want on. */
4001 dev_priv->irq_mask =
4002 ~(I915_DISPLAY_PIPE_A_EVENT_INTERRUPT |
4003 I915_DISPLAY_PIPE_B_EVENT_INTERRUPT |
4004 I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT |
4005 I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT |
4006 I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT);
4007 I915_WRITE16(IMR, dev_priv->irq_mask);
4008
4009 I915_WRITE16(IER,
4010 I915_DISPLAY_PIPE_A_EVENT_INTERRUPT |
4011 I915_DISPLAY_PIPE_B_EVENT_INTERRUPT |
4012 I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT |
4013 I915_USER_INTERRUPT);
4014 POSTING_READ16(IER);
4015
Daniel Vetter379ef822013-10-16 22:55:56 +02004016 /* Interrupt setup is already guaranteed to be single-threaded, this is
4017 * just to make the assert_spin_locked check happy. */
Daniel Vetterd6207432014-09-15 14:55:27 +02004018 spin_lock_irq(&dev_priv->irq_lock);
Imre Deak755e9012014-02-10 18:42:47 +02004019 i915_enable_pipestat(dev_priv, PIPE_A, PIPE_CRC_DONE_INTERRUPT_STATUS);
4020 i915_enable_pipestat(dev_priv, PIPE_B, PIPE_CRC_DONE_INTERRUPT_STATUS);
Daniel Vetterd6207432014-09-15 14:55:27 +02004021 spin_unlock_irq(&dev_priv->irq_lock);
Daniel Vetter379ef822013-10-16 22:55:56 +02004022
Chris Wilsonc2798b12012-04-22 21:13:57 +01004023 return 0;
4024}
4025
Ville Syrjälä90a72f82013-02-19 23:16:44 +02004026/*
4027 * Returns true when a page flip has completed.
4028 */
4029static bool i8xx_handle_vblank(struct drm_device *dev,
Ville Syrjälä1f1c2e22013-11-28 17:30:01 +02004030 int plane, int pipe, u32 iir)
Ville Syrjälä90a72f82013-02-19 23:16:44 +02004031{
Jani Nikula2d1013d2014-03-31 14:27:17 +03004032 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjälä1f1c2e22013-11-28 17:30:01 +02004033 u16 flip_pending = DISPLAY_PLANE_FLIP_PENDING(plane);
Ville Syrjälä90a72f82013-02-19 23:16:44 +02004034
Ville Syrjälä8d7849d2014-04-29 13:35:46 +03004035 if (!intel_pipe_handle_vblank(dev, pipe))
Ville Syrjälä90a72f82013-02-19 23:16:44 +02004036 return false;
4037
4038 if ((iir & flip_pending) == 0)
Chris Wilsond6bbafa2014-09-05 07:13:24 +01004039 goto check_page_flip;
Ville Syrjälä90a72f82013-02-19 23:16:44 +02004040
Ville Syrjälä1f1c2e22013-11-28 17:30:01 +02004041 intel_prepare_page_flip(dev, plane);
Ville Syrjälä90a72f82013-02-19 23:16:44 +02004042
4043 /* We detect FlipDone by looking for the change in PendingFlip from '1'
4044 * to '0' on the following vblank, i.e. IIR has the Pendingflip
4045 * asserted following the MI_DISPLAY_FLIP, but ISR is deasserted, hence
4046 * the flip is completed (no longer pending). Since this doesn't raise
4047 * an interrupt per se, we watch for the change at vblank.
4048 */
4049 if (I915_READ16(ISR) & flip_pending)
Chris Wilsond6bbafa2014-09-05 07:13:24 +01004050 goto check_page_flip;
Ville Syrjälä90a72f82013-02-19 23:16:44 +02004051
4052 intel_finish_page_flip(dev, pipe);
Ville Syrjälä90a72f82013-02-19 23:16:44 +02004053 return true;
Chris Wilsond6bbafa2014-09-05 07:13:24 +01004054
4055check_page_flip:
4056 intel_check_page_flip(dev, pipe);
4057 return false;
Ville Syrjälä90a72f82013-02-19 23:16:44 +02004058}
4059
Daniel Vetterff1f5252012-10-02 15:10:55 +02004060static irqreturn_t i8xx_irq_handler(int irq, void *arg)
Chris Wilsonc2798b12012-04-22 21:13:57 +01004061{
Daniel Vetter45a83f82014-05-12 19:17:55 +02004062 struct drm_device *dev = arg;
Jani Nikula2d1013d2014-03-31 14:27:17 +03004063 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsonc2798b12012-04-22 21:13:57 +01004064 u16 iir, new_iir;
4065 u32 pipe_stats[2];
Chris Wilsonc2798b12012-04-22 21:13:57 +01004066 int pipe;
4067 u16 flip_mask =
4068 I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT |
4069 I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT;
4070
Chris Wilsonc2798b12012-04-22 21:13:57 +01004071 iir = I915_READ16(IIR);
4072 if (iir == 0)
4073 return IRQ_NONE;
4074
4075 while (iir & ~flip_mask) {
4076 /* Can't rely on pipestat interrupt bit in iir as it might
4077 * have been cleared after the pipestat interrupt was received.
4078 * It doesn't set the bit in iir again, but it still produces
4079 * interrupts (for non-MSI).
4080 */
Daniel Vetter222c7f52014-09-15 14:55:28 +02004081 spin_lock(&dev_priv->irq_lock);
Chris Wilsonc2798b12012-04-22 21:13:57 +01004082 if (iir & I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT)
Mika Kuoppala58174462014-02-25 17:11:26 +02004083 i915_handle_error(dev, false,
4084 "Command parser error, iir 0x%08x",
4085 iir);
Chris Wilsonc2798b12012-04-22 21:13:57 +01004086
Damien Lespiau055e3932014-08-18 13:49:10 +01004087 for_each_pipe(dev_priv, pipe) {
Chris Wilsonc2798b12012-04-22 21:13:57 +01004088 int reg = PIPESTAT(pipe);
4089 pipe_stats[pipe] = I915_READ(reg);
4090
4091 /*
4092 * Clear the PIPE*STAT regs before the IIR
4093 */
Ville Syrjälä2d9d2b02014-01-17 11:44:31 +02004094 if (pipe_stats[pipe] & 0x8000ffff)
Chris Wilsonc2798b12012-04-22 21:13:57 +01004095 I915_WRITE(reg, pipe_stats[pipe]);
Chris Wilsonc2798b12012-04-22 21:13:57 +01004096 }
Daniel Vetter222c7f52014-09-15 14:55:28 +02004097 spin_unlock(&dev_priv->irq_lock);
Chris Wilsonc2798b12012-04-22 21:13:57 +01004098
4099 I915_WRITE16(IIR, iir & ~flip_mask);
4100 new_iir = I915_READ16(IIR); /* Flush posted writes */
4101
Daniel Vetterd05c6172012-04-26 23:28:09 +02004102 i915_update_dri1_breadcrumb(dev);
Chris Wilsonc2798b12012-04-22 21:13:57 +01004103
4104 if (iir & I915_USER_INTERRUPT)
4105 notify_ring(dev, &dev_priv->ring[RCS]);
4106
Damien Lespiau055e3932014-08-18 13:49:10 +01004107 for_each_pipe(dev_priv, pipe) {
Ville Syrjälä1f1c2e22013-11-28 17:30:01 +02004108 int plane = pipe;
Daniel Vetter3a77c4c2014-01-10 08:50:12 +01004109 if (HAS_FBC(dev))
Ville Syrjälä1f1c2e22013-11-28 17:30:01 +02004110 plane = !plane;
4111
Daniel Vetter4356d582013-10-16 22:55:55 +02004112 if (pipe_stats[pipe] & PIPE_VBLANK_INTERRUPT_STATUS &&
Ville Syrjälä1f1c2e22013-11-28 17:30:01 +02004113 i8xx_handle_vblank(dev, plane, pipe, iir))
4114 flip_mask &= ~DISPLAY_PLANE_FLIP_PENDING(plane);
Chris Wilsonc2798b12012-04-22 21:13:57 +01004115
Daniel Vetter4356d582013-10-16 22:55:55 +02004116 if (pipe_stats[pipe] & PIPE_CRC_DONE_INTERRUPT_STATUS)
Daniel Vetter277de952013-10-18 16:37:07 +02004117 i9xx_pipe_crc_irq_handler(dev, pipe);
Ville Syrjälä2d9d2b02014-01-17 11:44:31 +02004118
4119 if (pipe_stats[pipe] & PIPE_FIFO_UNDERRUN_STATUS &&
4120 intel_set_cpu_fifo_underrun_reporting(dev, pipe, false))
Ville Syrjäläfc2c8072014-01-17 11:44:32 +02004121 DRM_ERROR("pipe %c underrun\n", pipe_name(pipe));
Daniel Vetter4356d582013-10-16 22:55:55 +02004122 }
Chris Wilsonc2798b12012-04-22 21:13:57 +01004123
4124 iir = new_iir;
4125 }
4126
4127 return IRQ_HANDLED;
4128}
4129
4130static void i8xx_irq_uninstall(struct drm_device * dev)
4131{
Jani Nikula2d1013d2014-03-31 14:27:17 +03004132 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsonc2798b12012-04-22 21:13:57 +01004133 int pipe;
4134
Damien Lespiau055e3932014-08-18 13:49:10 +01004135 for_each_pipe(dev_priv, pipe) {
Chris Wilsonc2798b12012-04-22 21:13:57 +01004136 /* Clear enable bits; then clear status bits */
4137 I915_WRITE(PIPESTAT(pipe), 0);
4138 I915_WRITE(PIPESTAT(pipe), I915_READ(PIPESTAT(pipe)));
4139 }
4140 I915_WRITE16(IMR, 0xffff);
4141 I915_WRITE16(IER, 0x0);
4142 I915_WRITE16(IIR, I915_READ16(IIR));
4143}
4144
Chris Wilsona266c7d2012-04-24 22:59:44 +01004145static void i915_irq_preinstall(struct drm_device * dev)
4146{
Jani Nikula2d1013d2014-03-31 14:27:17 +03004147 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsona266c7d2012-04-24 22:59:44 +01004148 int pipe;
4149
Chris Wilsona266c7d2012-04-24 22:59:44 +01004150 if (I915_HAS_HOTPLUG(dev)) {
4151 I915_WRITE(PORT_HOTPLUG_EN, 0);
4152 I915_WRITE(PORT_HOTPLUG_STAT, I915_READ(PORT_HOTPLUG_STAT));
4153 }
4154
Chris Wilson00d98eb2012-04-24 22:59:48 +01004155 I915_WRITE16(HWSTAM, 0xeffe);
Damien Lespiau055e3932014-08-18 13:49:10 +01004156 for_each_pipe(dev_priv, pipe)
Chris Wilsona266c7d2012-04-24 22:59:44 +01004157 I915_WRITE(PIPESTAT(pipe), 0);
4158 I915_WRITE(IMR, 0xffffffff);
4159 I915_WRITE(IER, 0x0);
4160 POSTING_READ(IER);
4161}
4162
4163static int i915_irq_postinstall(struct drm_device *dev)
4164{
Jani Nikula2d1013d2014-03-31 14:27:17 +03004165 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson38bde182012-04-24 22:59:50 +01004166 u32 enable_mask;
Chris Wilsona266c7d2012-04-24 22:59:44 +01004167
Chris Wilson38bde182012-04-24 22:59:50 +01004168 I915_WRITE(EMR, ~(I915_ERROR_PAGE_TABLE | I915_ERROR_MEMORY_REFRESH));
4169
4170 /* Unmask the interrupts that we always want on. */
4171 dev_priv->irq_mask =
4172 ~(I915_ASLE_INTERRUPT |
4173 I915_DISPLAY_PIPE_A_EVENT_INTERRUPT |
4174 I915_DISPLAY_PIPE_B_EVENT_INTERRUPT |
4175 I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT |
4176 I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT |
4177 I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT);
4178
4179 enable_mask =
4180 I915_ASLE_INTERRUPT |
4181 I915_DISPLAY_PIPE_A_EVENT_INTERRUPT |
4182 I915_DISPLAY_PIPE_B_EVENT_INTERRUPT |
4183 I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT |
4184 I915_USER_INTERRUPT;
4185
Chris Wilsona266c7d2012-04-24 22:59:44 +01004186 if (I915_HAS_HOTPLUG(dev)) {
Daniel Vetter20afbda2012-12-11 14:05:07 +01004187 I915_WRITE(PORT_HOTPLUG_EN, 0);
4188 POSTING_READ(PORT_HOTPLUG_EN);
4189
Chris Wilsona266c7d2012-04-24 22:59:44 +01004190 /* Enable in IER... */
4191 enable_mask |= I915_DISPLAY_PORT_INTERRUPT;
4192 /* and unmask in IMR */
4193 dev_priv->irq_mask &= ~I915_DISPLAY_PORT_INTERRUPT;
4194 }
4195
Chris Wilsona266c7d2012-04-24 22:59:44 +01004196 I915_WRITE(IMR, dev_priv->irq_mask);
4197 I915_WRITE(IER, enable_mask);
4198 POSTING_READ(IER);
4199
Jani Nikulaf49e38d2013-04-29 13:02:54 +03004200 i915_enable_asle_pipestat(dev);
Daniel Vetter20afbda2012-12-11 14:05:07 +01004201
Daniel Vetter379ef822013-10-16 22:55:56 +02004202 /* Interrupt setup is already guaranteed to be single-threaded, this is
4203 * just to make the assert_spin_locked check happy. */
Daniel Vetterd6207432014-09-15 14:55:27 +02004204 spin_lock_irq(&dev_priv->irq_lock);
Imre Deak755e9012014-02-10 18:42:47 +02004205 i915_enable_pipestat(dev_priv, PIPE_A, PIPE_CRC_DONE_INTERRUPT_STATUS);
4206 i915_enable_pipestat(dev_priv, PIPE_B, PIPE_CRC_DONE_INTERRUPT_STATUS);
Daniel Vetterd6207432014-09-15 14:55:27 +02004207 spin_unlock_irq(&dev_priv->irq_lock);
Daniel Vetter379ef822013-10-16 22:55:56 +02004208
Daniel Vetter20afbda2012-12-11 14:05:07 +01004209 return 0;
4210}
4211
Ville Syrjälä90a72f82013-02-19 23:16:44 +02004212/*
4213 * Returns true when a page flip has completed.
4214 */
4215static bool i915_handle_vblank(struct drm_device *dev,
4216 int plane, int pipe, u32 iir)
4217{
Jani Nikula2d1013d2014-03-31 14:27:17 +03004218 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjälä90a72f82013-02-19 23:16:44 +02004219 u32 flip_pending = DISPLAY_PLANE_FLIP_PENDING(plane);
4220
Ville Syrjälä8d7849d2014-04-29 13:35:46 +03004221 if (!intel_pipe_handle_vblank(dev, pipe))
Ville Syrjälä90a72f82013-02-19 23:16:44 +02004222 return false;
4223
4224 if ((iir & flip_pending) == 0)
Chris Wilsond6bbafa2014-09-05 07:13:24 +01004225 goto check_page_flip;
Ville Syrjälä90a72f82013-02-19 23:16:44 +02004226
4227 intel_prepare_page_flip(dev, plane);
4228
4229 /* We detect FlipDone by looking for the change in PendingFlip from '1'
4230 * to '0' on the following vblank, i.e. IIR has the Pendingflip
4231 * asserted following the MI_DISPLAY_FLIP, but ISR is deasserted, hence
4232 * the flip is completed (no longer pending). Since this doesn't raise
4233 * an interrupt per se, we watch for the change at vblank.
4234 */
4235 if (I915_READ(ISR) & flip_pending)
Chris Wilsond6bbafa2014-09-05 07:13:24 +01004236 goto check_page_flip;
Ville Syrjälä90a72f82013-02-19 23:16:44 +02004237
4238 intel_finish_page_flip(dev, pipe);
Ville Syrjälä90a72f82013-02-19 23:16:44 +02004239 return true;
Chris Wilsond6bbafa2014-09-05 07:13:24 +01004240
4241check_page_flip:
4242 intel_check_page_flip(dev, pipe);
4243 return false;
Ville Syrjälä90a72f82013-02-19 23:16:44 +02004244}
4245
Daniel Vetterff1f5252012-10-02 15:10:55 +02004246static irqreturn_t i915_irq_handler(int irq, void *arg)
Chris Wilsona266c7d2012-04-24 22:59:44 +01004247{
Daniel Vetter45a83f82014-05-12 19:17:55 +02004248 struct drm_device *dev = arg;
Jani Nikula2d1013d2014-03-31 14:27:17 +03004249 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson8291ee92012-04-24 22:59:47 +01004250 u32 iir, new_iir, pipe_stats[I915_MAX_PIPES];
Chris Wilson38bde182012-04-24 22:59:50 +01004251 u32 flip_mask =
4252 I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT |
4253 I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT;
Chris Wilson38bde182012-04-24 22:59:50 +01004254 int pipe, ret = IRQ_NONE;
Chris Wilsona266c7d2012-04-24 22:59:44 +01004255
Chris Wilsona266c7d2012-04-24 22:59:44 +01004256 iir = I915_READ(IIR);
Chris Wilson38bde182012-04-24 22:59:50 +01004257 do {
4258 bool irq_received = (iir & ~flip_mask) != 0;
Chris Wilson8291ee92012-04-24 22:59:47 +01004259 bool blc_event = false;
Chris Wilsona266c7d2012-04-24 22:59:44 +01004260
4261 /* Can't rely on pipestat interrupt bit in iir as it might
4262 * have been cleared after the pipestat interrupt was received.
4263 * It doesn't set the bit in iir again, but it still produces
4264 * interrupts (for non-MSI).
4265 */
Daniel Vetter222c7f52014-09-15 14:55:28 +02004266 spin_lock(&dev_priv->irq_lock);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004267 if (iir & I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT)
Mika Kuoppala58174462014-02-25 17:11:26 +02004268 i915_handle_error(dev, false,
4269 "Command parser error, iir 0x%08x",
4270 iir);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004271
Damien Lespiau055e3932014-08-18 13:49:10 +01004272 for_each_pipe(dev_priv, pipe) {
Chris Wilsona266c7d2012-04-24 22:59:44 +01004273 int reg = PIPESTAT(pipe);
4274 pipe_stats[pipe] = I915_READ(reg);
4275
Chris Wilson38bde182012-04-24 22:59:50 +01004276 /* Clear the PIPE*STAT regs before the IIR */
Chris Wilsona266c7d2012-04-24 22:59:44 +01004277 if (pipe_stats[pipe] & 0x8000ffff) {
Chris Wilsona266c7d2012-04-24 22:59:44 +01004278 I915_WRITE(reg, pipe_stats[pipe]);
Chris Wilson38bde182012-04-24 22:59:50 +01004279 irq_received = true;
Chris Wilsona266c7d2012-04-24 22:59:44 +01004280 }
4281 }
Daniel Vetter222c7f52014-09-15 14:55:28 +02004282 spin_unlock(&dev_priv->irq_lock);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004283
4284 if (!irq_received)
4285 break;
4286
Chris Wilsona266c7d2012-04-24 22:59:44 +01004287 /* Consume port. Then clear IIR or we'll miss events */
Ville Syrjälä16c6c562014-04-01 10:54:36 +03004288 if (I915_HAS_HOTPLUG(dev) &&
4289 iir & I915_DISPLAY_PORT_INTERRUPT)
4290 i9xx_hpd_irq_handler(dev);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004291
Chris Wilson38bde182012-04-24 22:59:50 +01004292 I915_WRITE(IIR, iir & ~flip_mask);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004293 new_iir = I915_READ(IIR); /* Flush posted writes */
4294
Chris Wilsona266c7d2012-04-24 22:59:44 +01004295 if (iir & I915_USER_INTERRUPT)
4296 notify_ring(dev, &dev_priv->ring[RCS]);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004297
Damien Lespiau055e3932014-08-18 13:49:10 +01004298 for_each_pipe(dev_priv, pipe) {
Chris Wilson38bde182012-04-24 22:59:50 +01004299 int plane = pipe;
Daniel Vetter3a77c4c2014-01-10 08:50:12 +01004300 if (HAS_FBC(dev))
Chris Wilson38bde182012-04-24 22:59:50 +01004301 plane = !plane;
Ville Syrjälä5e2032d2013-02-19 15:16:38 +02004302
Ville Syrjälä90a72f82013-02-19 23:16:44 +02004303 if (pipe_stats[pipe] & PIPE_VBLANK_INTERRUPT_STATUS &&
4304 i915_handle_vblank(dev, plane, pipe, iir))
4305 flip_mask &= ~DISPLAY_PLANE_FLIP_PENDING(plane);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004306
4307 if (pipe_stats[pipe] & PIPE_LEGACY_BLC_EVENT_STATUS)
4308 blc_event = true;
Daniel Vetter4356d582013-10-16 22:55:55 +02004309
4310 if (pipe_stats[pipe] & PIPE_CRC_DONE_INTERRUPT_STATUS)
Daniel Vetter277de952013-10-18 16:37:07 +02004311 i9xx_pipe_crc_irq_handler(dev, pipe);
Ville Syrjälä2d9d2b02014-01-17 11:44:31 +02004312
4313 if (pipe_stats[pipe] & PIPE_FIFO_UNDERRUN_STATUS &&
4314 intel_set_cpu_fifo_underrun_reporting(dev, pipe, false))
Ville Syrjäläfc2c8072014-01-17 11:44:32 +02004315 DRM_ERROR("pipe %c underrun\n", pipe_name(pipe));
Chris Wilsona266c7d2012-04-24 22:59:44 +01004316 }
4317
Chris Wilsona266c7d2012-04-24 22:59:44 +01004318 if (blc_event || (iir & I915_ASLE_INTERRUPT))
4319 intel_opregion_asle_intr(dev);
4320
4321 /* With MSI, interrupts are only generated when iir
4322 * transitions from zero to nonzero. If another bit got
4323 * set while we were handling the existing iir bits, then
4324 * we would never get another interrupt.
4325 *
4326 * This is fine on non-MSI as well, as if we hit this path
4327 * we avoid exiting the interrupt handler only to generate
4328 * another one.
4329 *
4330 * Note that for MSI this could cause a stray interrupt report
4331 * if an interrupt landed in the time between writing IIR and
4332 * the posting read. This should be rare enough to never
4333 * trigger the 99% of 100,000 interrupts test for disabling
4334 * stray interrupts.
4335 */
Chris Wilson38bde182012-04-24 22:59:50 +01004336 ret = IRQ_HANDLED;
Chris Wilsona266c7d2012-04-24 22:59:44 +01004337 iir = new_iir;
Chris Wilson38bde182012-04-24 22:59:50 +01004338 } while (iir & ~flip_mask);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004339
Daniel Vetterd05c6172012-04-26 23:28:09 +02004340 i915_update_dri1_breadcrumb(dev);
Chris Wilson8291ee92012-04-24 22:59:47 +01004341
Chris Wilsona266c7d2012-04-24 22:59:44 +01004342 return ret;
4343}
4344
4345static void i915_irq_uninstall(struct drm_device * dev)
4346{
Jani Nikula2d1013d2014-03-31 14:27:17 +03004347 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsona266c7d2012-04-24 22:59:44 +01004348 int pipe;
4349
Chris Wilsona266c7d2012-04-24 22:59:44 +01004350 if (I915_HAS_HOTPLUG(dev)) {
4351 I915_WRITE(PORT_HOTPLUG_EN, 0);
4352 I915_WRITE(PORT_HOTPLUG_STAT, I915_READ(PORT_HOTPLUG_STAT));
4353 }
4354
Chris Wilson00d98eb2012-04-24 22:59:48 +01004355 I915_WRITE16(HWSTAM, 0xffff);
Damien Lespiau055e3932014-08-18 13:49:10 +01004356 for_each_pipe(dev_priv, pipe) {
Chris Wilson55b39752012-04-24 22:59:49 +01004357 /* Clear enable bits; then clear status bits */
Chris Wilsona266c7d2012-04-24 22:59:44 +01004358 I915_WRITE(PIPESTAT(pipe), 0);
Chris Wilson55b39752012-04-24 22:59:49 +01004359 I915_WRITE(PIPESTAT(pipe), I915_READ(PIPESTAT(pipe)));
4360 }
Chris Wilsona266c7d2012-04-24 22:59:44 +01004361 I915_WRITE(IMR, 0xffffffff);
4362 I915_WRITE(IER, 0x0);
4363
Chris Wilsona266c7d2012-04-24 22:59:44 +01004364 I915_WRITE(IIR, I915_READ(IIR));
4365}
4366
4367static void i965_irq_preinstall(struct drm_device * dev)
4368{
Jani Nikula2d1013d2014-03-31 14:27:17 +03004369 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsona266c7d2012-04-24 22:59:44 +01004370 int pipe;
4371
Chris Wilsonadca4732012-05-11 18:01:31 +01004372 I915_WRITE(PORT_HOTPLUG_EN, 0);
4373 I915_WRITE(PORT_HOTPLUG_STAT, I915_READ(PORT_HOTPLUG_STAT));
Chris Wilsona266c7d2012-04-24 22:59:44 +01004374
4375 I915_WRITE(HWSTAM, 0xeffe);
Damien Lespiau055e3932014-08-18 13:49:10 +01004376 for_each_pipe(dev_priv, pipe)
Chris Wilsona266c7d2012-04-24 22:59:44 +01004377 I915_WRITE(PIPESTAT(pipe), 0);
4378 I915_WRITE(IMR, 0xffffffff);
4379 I915_WRITE(IER, 0x0);
4380 POSTING_READ(IER);
4381}
4382
4383static int i965_irq_postinstall(struct drm_device *dev)
4384{
Jani Nikula2d1013d2014-03-31 14:27:17 +03004385 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsonbbba0a92012-04-24 22:59:51 +01004386 u32 enable_mask;
Chris Wilsona266c7d2012-04-24 22:59:44 +01004387 u32 error_mask;
4388
Chris Wilsona266c7d2012-04-24 22:59:44 +01004389 /* Unmask the interrupts that we always want on. */
Chris Wilsonbbba0a92012-04-24 22:59:51 +01004390 dev_priv->irq_mask = ~(I915_ASLE_INTERRUPT |
Chris Wilsonadca4732012-05-11 18:01:31 +01004391 I915_DISPLAY_PORT_INTERRUPT |
Chris Wilsonbbba0a92012-04-24 22:59:51 +01004392 I915_DISPLAY_PIPE_A_EVENT_INTERRUPT |
4393 I915_DISPLAY_PIPE_B_EVENT_INTERRUPT |
4394 I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT |
4395 I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT |
4396 I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT);
4397
4398 enable_mask = ~dev_priv->irq_mask;
Ville Syrjälä21ad8332013-02-19 15:16:39 +02004399 enable_mask &= ~(I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT |
4400 I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT);
Chris Wilsonbbba0a92012-04-24 22:59:51 +01004401 enable_mask |= I915_USER_INTERRUPT;
4402
4403 if (IS_G4X(dev))
4404 enable_mask |= I915_BSD_USER_INTERRUPT;
Chris Wilsona266c7d2012-04-24 22:59:44 +01004405
Daniel Vetterb79480b2013-06-27 17:52:10 +02004406 /* Interrupt setup is already guaranteed to be single-threaded, this is
4407 * just to make the assert_spin_locked check happy. */
Daniel Vetterd6207432014-09-15 14:55:27 +02004408 spin_lock_irq(&dev_priv->irq_lock);
Imre Deak755e9012014-02-10 18:42:47 +02004409 i915_enable_pipestat(dev_priv, PIPE_A, PIPE_GMBUS_INTERRUPT_STATUS);
4410 i915_enable_pipestat(dev_priv, PIPE_A, PIPE_CRC_DONE_INTERRUPT_STATUS);
4411 i915_enable_pipestat(dev_priv, PIPE_B, PIPE_CRC_DONE_INTERRUPT_STATUS);
Daniel Vetterd6207432014-09-15 14:55:27 +02004412 spin_unlock_irq(&dev_priv->irq_lock);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004413
Chris Wilsona266c7d2012-04-24 22:59:44 +01004414 /*
4415 * Enable some error detection, note the instruction error mask
4416 * bit is reserved, so we leave it masked.
4417 */
4418 if (IS_G4X(dev)) {
4419 error_mask = ~(GM45_ERROR_PAGE_TABLE |
4420 GM45_ERROR_MEM_PRIV |
4421 GM45_ERROR_CP_PRIV |
4422 I915_ERROR_MEMORY_REFRESH);
4423 } else {
4424 error_mask = ~(I915_ERROR_PAGE_TABLE |
4425 I915_ERROR_MEMORY_REFRESH);
4426 }
4427 I915_WRITE(EMR, error_mask);
4428
4429 I915_WRITE(IMR, dev_priv->irq_mask);
4430 I915_WRITE(IER, enable_mask);
4431 POSTING_READ(IER);
4432
Daniel Vetter20afbda2012-12-11 14:05:07 +01004433 I915_WRITE(PORT_HOTPLUG_EN, 0);
4434 POSTING_READ(PORT_HOTPLUG_EN);
4435
Jani Nikulaf49e38d2013-04-29 13:02:54 +03004436 i915_enable_asle_pipestat(dev);
Daniel Vetter20afbda2012-12-11 14:05:07 +01004437
4438 return 0;
4439}
4440
Egbert Eichbac56d52013-02-25 12:06:51 -05004441static void i915_hpd_irq_setup(struct drm_device *dev)
Daniel Vetter20afbda2012-12-11 14:05:07 +01004442{
Jani Nikula2d1013d2014-03-31 14:27:17 +03004443 struct drm_i915_private *dev_priv = dev->dev_private;
Egbert Eichcd569ae2013-04-16 13:36:57 +02004444 struct intel_encoder *intel_encoder;
Daniel Vetter20afbda2012-12-11 14:05:07 +01004445 u32 hotplug_en;
4446
Daniel Vetterb5ea2d52013-06-27 17:52:15 +02004447 assert_spin_locked(&dev_priv->irq_lock);
4448
Egbert Eichbac56d52013-02-25 12:06:51 -05004449 if (I915_HAS_HOTPLUG(dev)) {
4450 hotplug_en = I915_READ(PORT_HOTPLUG_EN);
4451 hotplug_en &= ~HOTPLUG_INT_EN_MASK;
4452 /* Note HDMI and DP share hotplug bits */
Egbert Eiche5868a32013-02-28 04:17:12 -05004453 /* enable bits are the same for all generations */
Damien Lespiaub2784e12014-08-05 11:29:37 +01004454 for_each_intel_encoder(dev, intel_encoder)
Egbert Eichcd569ae2013-04-16 13:36:57 +02004455 if (dev_priv->hpd_stats[intel_encoder->hpd_pin].hpd_mark == HPD_ENABLED)
4456 hotplug_en |= hpd_mask_i915[intel_encoder->hpd_pin];
Egbert Eichbac56d52013-02-25 12:06:51 -05004457 /* Programming the CRT detection parameters tends
4458 to generate a spurious hotplug event about three
4459 seconds later. So just do it once.
4460 */
4461 if (IS_G4X(dev))
4462 hotplug_en |= CRT_HOTPLUG_ACTIVATION_PERIOD_64;
Daniel Vetter85fc95b2013-03-27 15:47:11 +01004463 hotplug_en &= ~CRT_HOTPLUG_VOLTAGE_COMPARE_MASK;
Egbert Eichbac56d52013-02-25 12:06:51 -05004464 hotplug_en |= CRT_HOTPLUG_VOLTAGE_COMPARE_50;
Chris Wilsona266c7d2012-04-24 22:59:44 +01004465
Egbert Eichbac56d52013-02-25 12:06:51 -05004466 /* Ignore TV since it's buggy */
4467 I915_WRITE(PORT_HOTPLUG_EN, hotplug_en);
4468 }
Chris Wilsona266c7d2012-04-24 22:59:44 +01004469}
4470
Daniel Vetterff1f5252012-10-02 15:10:55 +02004471static irqreturn_t i965_irq_handler(int irq, void *arg)
Chris Wilsona266c7d2012-04-24 22:59:44 +01004472{
Daniel Vetter45a83f82014-05-12 19:17:55 +02004473 struct drm_device *dev = arg;
Jani Nikula2d1013d2014-03-31 14:27:17 +03004474 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsona266c7d2012-04-24 22:59:44 +01004475 u32 iir, new_iir;
4476 u32 pipe_stats[I915_MAX_PIPES];
Chris Wilsona266c7d2012-04-24 22:59:44 +01004477 int ret = IRQ_NONE, pipe;
Ville Syrjälä21ad8332013-02-19 15:16:39 +02004478 u32 flip_mask =
4479 I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT |
4480 I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT;
Chris Wilsona266c7d2012-04-24 22:59:44 +01004481
Chris Wilsona266c7d2012-04-24 22:59:44 +01004482 iir = I915_READ(IIR);
4483
Chris Wilsona266c7d2012-04-24 22:59:44 +01004484 for (;;) {
Ville Syrjälä501e01d2014-01-17 11:35:15 +02004485 bool irq_received = (iir & ~flip_mask) != 0;
Chris Wilson2c8ba292012-04-24 22:59:46 +01004486 bool blc_event = false;
4487
Chris Wilsona266c7d2012-04-24 22:59:44 +01004488 /* Can't rely on pipestat interrupt bit in iir as it might
4489 * have been cleared after the pipestat interrupt was received.
4490 * It doesn't set the bit in iir again, but it still produces
4491 * interrupts (for non-MSI).
4492 */
Daniel Vetter222c7f52014-09-15 14:55:28 +02004493 spin_lock(&dev_priv->irq_lock);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004494 if (iir & I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT)
Mika Kuoppala58174462014-02-25 17:11:26 +02004495 i915_handle_error(dev, false,
4496 "Command parser error, iir 0x%08x",
4497 iir);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004498
Damien Lespiau055e3932014-08-18 13:49:10 +01004499 for_each_pipe(dev_priv, pipe) {
Chris Wilsona266c7d2012-04-24 22:59:44 +01004500 int reg = PIPESTAT(pipe);
4501 pipe_stats[pipe] = I915_READ(reg);
4502
4503 /*
4504 * Clear the PIPE*STAT regs before the IIR
4505 */
4506 if (pipe_stats[pipe] & 0x8000ffff) {
Chris Wilsona266c7d2012-04-24 22:59:44 +01004507 I915_WRITE(reg, pipe_stats[pipe]);
Ville Syrjälä501e01d2014-01-17 11:35:15 +02004508 irq_received = true;
Chris Wilsona266c7d2012-04-24 22:59:44 +01004509 }
4510 }
Daniel Vetter222c7f52014-09-15 14:55:28 +02004511 spin_unlock(&dev_priv->irq_lock);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004512
4513 if (!irq_received)
4514 break;
4515
4516 ret = IRQ_HANDLED;
4517
4518 /* Consume port. Then clear IIR or we'll miss events */
Ville Syrjälä16c6c562014-04-01 10:54:36 +03004519 if (iir & I915_DISPLAY_PORT_INTERRUPT)
4520 i9xx_hpd_irq_handler(dev);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004521
Ville Syrjälä21ad8332013-02-19 15:16:39 +02004522 I915_WRITE(IIR, iir & ~flip_mask);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004523 new_iir = I915_READ(IIR); /* Flush posted writes */
4524
Chris Wilsona266c7d2012-04-24 22:59:44 +01004525 if (iir & I915_USER_INTERRUPT)
4526 notify_ring(dev, &dev_priv->ring[RCS]);
4527 if (iir & I915_BSD_USER_INTERRUPT)
4528 notify_ring(dev, &dev_priv->ring[VCS]);
4529
Damien Lespiau055e3932014-08-18 13:49:10 +01004530 for_each_pipe(dev_priv, pipe) {
Chris Wilson2c8ba292012-04-24 22:59:46 +01004531 if (pipe_stats[pipe] & PIPE_START_VBLANK_INTERRUPT_STATUS &&
Ville Syrjälä90a72f82013-02-19 23:16:44 +02004532 i915_handle_vblank(dev, pipe, pipe, iir))
4533 flip_mask &= ~DISPLAY_PLANE_FLIP_PENDING(pipe);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004534
4535 if (pipe_stats[pipe] & PIPE_LEGACY_BLC_EVENT_STATUS)
4536 blc_event = true;
Daniel Vetter4356d582013-10-16 22:55:55 +02004537
4538 if (pipe_stats[pipe] & PIPE_CRC_DONE_INTERRUPT_STATUS)
Daniel Vetter277de952013-10-18 16:37:07 +02004539 i9xx_pipe_crc_irq_handler(dev, pipe);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004540
Ville Syrjälä2d9d2b02014-01-17 11:44:31 +02004541 if (pipe_stats[pipe] & PIPE_FIFO_UNDERRUN_STATUS &&
4542 intel_set_cpu_fifo_underrun_reporting(dev, pipe, false))
Ville Syrjäläfc2c8072014-01-17 11:44:32 +02004543 DRM_ERROR("pipe %c underrun\n", pipe_name(pipe));
Ville Syrjälä2d9d2b02014-01-17 11:44:31 +02004544 }
Chris Wilsona266c7d2012-04-24 22:59:44 +01004545
4546 if (blc_event || (iir & I915_ASLE_INTERRUPT))
4547 intel_opregion_asle_intr(dev);
4548
Daniel Vetter515ac2b2012-12-01 13:53:44 +01004549 if (pipe_stats[0] & PIPE_GMBUS_INTERRUPT_STATUS)
4550 gmbus_irq_handler(dev);
4551
Chris Wilsona266c7d2012-04-24 22:59:44 +01004552 /* With MSI, interrupts are only generated when iir
4553 * transitions from zero to nonzero. If another bit got
4554 * set while we were handling the existing iir bits, then
4555 * we would never get another interrupt.
4556 *
4557 * This is fine on non-MSI as well, as if we hit this path
4558 * we avoid exiting the interrupt handler only to generate
4559 * another one.
4560 *
4561 * Note that for MSI this could cause a stray interrupt report
4562 * if an interrupt landed in the time between writing IIR and
4563 * the posting read. This should be rare enough to never
4564 * trigger the 99% of 100,000 interrupts test for disabling
4565 * stray interrupts.
4566 */
4567 iir = new_iir;
4568 }
4569
Daniel Vetterd05c6172012-04-26 23:28:09 +02004570 i915_update_dri1_breadcrumb(dev);
Chris Wilson2c8ba292012-04-24 22:59:46 +01004571
Chris Wilsona266c7d2012-04-24 22:59:44 +01004572 return ret;
4573}
4574
4575static void i965_irq_uninstall(struct drm_device * dev)
4576{
Jani Nikula2d1013d2014-03-31 14:27:17 +03004577 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsona266c7d2012-04-24 22:59:44 +01004578 int pipe;
4579
4580 if (!dev_priv)
4581 return;
4582
Chris Wilsonadca4732012-05-11 18:01:31 +01004583 I915_WRITE(PORT_HOTPLUG_EN, 0);
4584 I915_WRITE(PORT_HOTPLUG_STAT, I915_READ(PORT_HOTPLUG_STAT));
Chris Wilsona266c7d2012-04-24 22:59:44 +01004585
4586 I915_WRITE(HWSTAM, 0xffffffff);
Damien Lespiau055e3932014-08-18 13:49:10 +01004587 for_each_pipe(dev_priv, pipe)
Chris Wilsona266c7d2012-04-24 22:59:44 +01004588 I915_WRITE(PIPESTAT(pipe), 0);
4589 I915_WRITE(IMR, 0xffffffff);
4590 I915_WRITE(IER, 0x0);
4591
Damien Lespiau055e3932014-08-18 13:49:10 +01004592 for_each_pipe(dev_priv, pipe)
Chris Wilsona266c7d2012-04-24 22:59:44 +01004593 I915_WRITE(PIPESTAT(pipe),
4594 I915_READ(PIPESTAT(pipe)) & 0x8000ffff);
4595 I915_WRITE(IIR, I915_READ(IIR));
4596}
4597
Daniel Vetter4cb21832014-09-15 14:55:26 +02004598static void intel_hpd_irq_reenable_work(struct work_struct *work)
Egbert Eichac4c16c2013-04-16 13:36:58 +02004599{
Imre Deak63237512014-08-18 15:37:02 +03004600 struct drm_i915_private *dev_priv =
4601 container_of(work, typeof(*dev_priv),
4602 hotplug_reenable_work.work);
Egbert Eichac4c16c2013-04-16 13:36:58 +02004603 struct drm_device *dev = dev_priv->dev;
4604 struct drm_mode_config *mode_config = &dev->mode_config;
Egbert Eichac4c16c2013-04-16 13:36:58 +02004605 int i;
4606
Imre Deak63237512014-08-18 15:37:02 +03004607 intel_runtime_pm_get(dev_priv);
4608
Daniel Vetter4cb21832014-09-15 14:55:26 +02004609 spin_lock_irq(&dev_priv->irq_lock);
Egbert Eichac4c16c2013-04-16 13:36:58 +02004610 for (i = (HPD_NONE + 1); i < HPD_NUM_PINS; i++) {
4611 struct drm_connector *connector;
4612
4613 if (dev_priv->hpd_stats[i].hpd_mark != HPD_DISABLED)
4614 continue;
4615
4616 dev_priv->hpd_stats[i].hpd_mark = HPD_ENABLED;
4617
4618 list_for_each_entry(connector, &mode_config->connector_list, head) {
4619 struct intel_connector *intel_connector = to_intel_connector(connector);
4620
4621 if (intel_connector->encoder->hpd_pin == i) {
4622 if (connector->polled != intel_connector->polled)
4623 DRM_DEBUG_DRIVER("Reenabling HPD on connector %s\n",
Jani Nikulac23cc412014-06-03 14:56:17 +03004624 connector->name);
Egbert Eichac4c16c2013-04-16 13:36:58 +02004625 connector->polled = intel_connector->polled;
4626 if (!connector->polled)
4627 connector->polled = DRM_CONNECTOR_POLL_HPD;
4628 }
4629 }
4630 }
4631 if (dev_priv->display.hpd_irq_setup)
4632 dev_priv->display.hpd_irq_setup(dev);
Daniel Vetter4cb21832014-09-15 14:55:26 +02004633 spin_unlock_irq(&dev_priv->irq_lock);
Imre Deak63237512014-08-18 15:37:02 +03004634
4635 intel_runtime_pm_put(dev_priv);
Egbert Eichac4c16c2013-04-16 13:36:58 +02004636}
4637
Jesse Barnesf71d4af2011-06-28 13:00:41 -07004638void intel_irq_init(struct drm_device *dev)
4639{
Chris Wilson8b2e3262012-04-24 22:59:41 +01004640 struct drm_i915_private *dev_priv = dev->dev_private;
4641
4642 INIT_WORK(&dev_priv->hotplug_work, i915_hotplug_work_func);
Dave Airlie13cf5502014-06-18 11:29:35 +10004643 INIT_WORK(&dev_priv->dig_port_work, i915_digport_work_func);
Daniel Vetter99584db2012-11-14 17:14:04 +01004644 INIT_WORK(&dev_priv->gpu_error.work, i915_error_work_func);
Daniel Vetterc6a828d2012-08-08 23:35:35 +02004645 INIT_WORK(&dev_priv->rps.work, gen6_pm_rps_work);
Daniel Vettera4da4fa2012-11-02 19:55:07 +01004646 INIT_WORK(&dev_priv->l3_parity.error_work, ivybridge_parity_work);
Chris Wilson8b2e3262012-04-24 22:59:41 +01004647
Deepak Sa6706b42014-03-15 20:23:22 +05304648 /* Let's track the enabled rps events */
Ville Syrjälä6c65a582014-08-29 14:14:07 +03004649 if (IS_VALLEYVIEW(dev) && !IS_CHERRYVIEW(dev))
4650 /* WaGsvRC0ResidencyMethod:vlv */
Deepak S31685c22014-07-03 17:33:01 -04004651 dev_priv->pm_rps_events = GEN6_PM_RP_UP_EI_EXPIRED;
4652 else
4653 dev_priv->pm_rps_events = GEN6_PM_RPS_EVENTS;
Deepak Sa6706b42014-03-15 20:23:22 +05304654
Daniel Vetter99584db2012-11-14 17:14:04 +01004655 setup_timer(&dev_priv->gpu_error.hangcheck_timer,
4656 i915_hangcheck_elapsed,
Daniel Vetter61bac782012-12-01 21:03:21 +01004657 (unsigned long) dev);
Imre Deak63237512014-08-18 15:37:02 +03004658 INIT_DELAYED_WORK(&dev_priv->hotplug_reenable_work,
Daniel Vetter4cb21832014-09-15 14:55:26 +02004659 intel_hpd_irq_reenable_work);
Daniel Vetter61bac782012-12-01 21:03:21 +01004660
Tomas Janousek97a19a22012-12-08 13:48:13 +01004661 pm_qos_add_request(&dev_priv->pm_qos, PM_QOS_CPU_DMA_LATENCY, PM_QOS_DEFAULT_VALUE);
Daniel Vetter9ee32fea2012-12-01 13:53:48 +01004662
Jesse Barnes95f25be2014-06-20 09:29:22 -07004663 /* Haven't installed the IRQ handler yet */
4664 dev_priv->pm._irqs_disabled = true;
4665
Ville Syrjälä4cdb83e2013-10-11 21:52:44 +03004666 if (IS_GEN2(dev)) {
4667 dev->max_vblank_count = 0;
4668 dev->driver->get_vblank_counter = i8xx_get_vblank_counter;
4669 } else if (IS_G4X(dev) || INTEL_INFO(dev)->gen >= 5) {
Jesse Barnesf71d4af2011-06-28 13:00:41 -07004670 dev->max_vblank_count = 0xffffffff; /* full 32 bit counter */
4671 dev->driver->get_vblank_counter = gm45_get_vblank_counter;
Ville Syrjälä391f75e2013-09-25 19:55:26 +03004672 } else {
4673 dev->driver->get_vblank_counter = i915_get_vblank_counter;
4674 dev->max_vblank_count = 0xffffff; /* only 24 bits of frame count */
Jesse Barnesf71d4af2011-06-28 13:00:41 -07004675 }
4676
Ville Syrjälä21da2702014-08-06 14:49:55 +03004677 /*
4678 * Opt out of the vblank disable timer on everything except gen2.
4679 * Gen2 doesn't have a hardware frame counter and so depends on
4680 * vblank interrupts to produce sane vblank seuquence numbers.
4681 */
4682 if (!IS_GEN2(dev))
4683 dev->vblank_disable_immediate = true;
4684
Ville Syrjäläc2baf4b2013-09-23 14:48:50 +03004685 if (drm_core_check_feature(dev, DRIVER_MODESET)) {
Keith Packardc3613de2011-08-12 17:05:54 -07004686 dev->driver->get_vblank_timestamp = i915_get_vblank_timestamp;
Ville Syrjäläc2baf4b2013-09-23 14:48:50 +03004687 dev->driver->get_scanout_position = i915_get_crtc_scanoutpos;
4688 }
Jesse Barnesf71d4af2011-06-28 13:00:41 -07004689
Ville Syrjälä43f328d2014-04-09 20:40:52 +03004690 if (IS_CHERRYVIEW(dev)) {
4691 dev->driver->irq_handler = cherryview_irq_handler;
4692 dev->driver->irq_preinstall = cherryview_irq_preinstall;
4693 dev->driver->irq_postinstall = cherryview_irq_postinstall;
4694 dev->driver->irq_uninstall = cherryview_irq_uninstall;
4695 dev->driver->enable_vblank = valleyview_enable_vblank;
4696 dev->driver->disable_vblank = valleyview_disable_vblank;
4697 dev_priv->display.hpd_irq_setup = i915_hpd_irq_setup;
4698 } else if (IS_VALLEYVIEW(dev)) {
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07004699 dev->driver->irq_handler = valleyview_irq_handler;
4700 dev->driver->irq_preinstall = valleyview_irq_preinstall;
4701 dev->driver->irq_postinstall = valleyview_irq_postinstall;
4702 dev->driver->irq_uninstall = valleyview_irq_uninstall;
4703 dev->driver->enable_vblank = valleyview_enable_vblank;
4704 dev->driver->disable_vblank = valleyview_disable_vblank;
Egbert Eichfa00abe2013-02-25 12:06:48 -05004705 dev_priv->display.hpd_irq_setup = i915_hpd_irq_setup;
Ben Widawskyabd58f02013-11-02 21:07:09 -07004706 } else if (IS_GEN8(dev)) {
4707 dev->driver->irq_handler = gen8_irq_handler;
Daniel Vetter723761b2014-05-22 17:56:34 +02004708 dev->driver->irq_preinstall = gen8_irq_reset;
Ben Widawskyabd58f02013-11-02 21:07:09 -07004709 dev->driver->irq_postinstall = gen8_irq_postinstall;
4710 dev->driver->irq_uninstall = gen8_irq_uninstall;
4711 dev->driver->enable_vblank = gen8_enable_vblank;
4712 dev->driver->disable_vblank = gen8_disable_vblank;
4713 dev_priv->display.hpd_irq_setup = ibx_hpd_irq_setup;
Jesse Barnesf71d4af2011-06-28 13:00:41 -07004714 } else if (HAS_PCH_SPLIT(dev)) {
4715 dev->driver->irq_handler = ironlake_irq_handler;
Daniel Vetter723761b2014-05-22 17:56:34 +02004716 dev->driver->irq_preinstall = ironlake_irq_reset;
Jesse Barnesf71d4af2011-06-28 13:00:41 -07004717 dev->driver->irq_postinstall = ironlake_irq_postinstall;
4718 dev->driver->irq_uninstall = ironlake_irq_uninstall;
4719 dev->driver->enable_vblank = ironlake_enable_vblank;
4720 dev->driver->disable_vblank = ironlake_disable_vblank;
Daniel Vetter82a28bc2013-03-27 15:55:01 +01004721 dev_priv->display.hpd_irq_setup = ibx_hpd_irq_setup;
Jesse Barnesf71d4af2011-06-28 13:00:41 -07004722 } else {
Chris Wilsonc2798b12012-04-22 21:13:57 +01004723 if (INTEL_INFO(dev)->gen == 2) {
4724 dev->driver->irq_preinstall = i8xx_irq_preinstall;
4725 dev->driver->irq_postinstall = i8xx_irq_postinstall;
4726 dev->driver->irq_handler = i8xx_irq_handler;
4727 dev->driver->irq_uninstall = i8xx_irq_uninstall;
Chris Wilsona266c7d2012-04-24 22:59:44 +01004728 } else if (INTEL_INFO(dev)->gen == 3) {
4729 dev->driver->irq_preinstall = i915_irq_preinstall;
4730 dev->driver->irq_postinstall = i915_irq_postinstall;
4731 dev->driver->irq_uninstall = i915_irq_uninstall;
4732 dev->driver->irq_handler = i915_irq_handler;
Daniel Vetter20afbda2012-12-11 14:05:07 +01004733 dev_priv->display.hpd_irq_setup = i915_hpd_irq_setup;
Chris Wilsonc2798b12012-04-22 21:13:57 +01004734 } else {
Chris Wilsona266c7d2012-04-24 22:59:44 +01004735 dev->driver->irq_preinstall = i965_irq_preinstall;
4736 dev->driver->irq_postinstall = i965_irq_postinstall;
4737 dev->driver->irq_uninstall = i965_irq_uninstall;
4738 dev->driver->irq_handler = i965_irq_handler;
Egbert Eichbac56d52013-02-25 12:06:51 -05004739 dev_priv->display.hpd_irq_setup = i915_hpd_irq_setup;
Chris Wilsonc2798b12012-04-22 21:13:57 +01004740 }
Jesse Barnesf71d4af2011-06-28 13:00:41 -07004741 dev->driver->enable_vblank = i915_enable_vblank;
4742 dev->driver->disable_vblank = i915_disable_vblank;
4743 }
4744}
Daniel Vetter20afbda2012-12-11 14:05:07 +01004745
4746void intel_hpd_init(struct drm_device *dev)
4747{
4748 struct drm_i915_private *dev_priv = dev->dev_private;
Egbert Eich821450c2013-04-16 13:36:55 +02004749 struct drm_mode_config *mode_config = &dev->mode_config;
4750 struct drm_connector *connector;
4751 int i;
Daniel Vetter20afbda2012-12-11 14:05:07 +01004752
Egbert Eich821450c2013-04-16 13:36:55 +02004753 for (i = 1; i < HPD_NUM_PINS; i++) {
4754 dev_priv->hpd_stats[i].hpd_cnt = 0;
4755 dev_priv->hpd_stats[i].hpd_mark = HPD_ENABLED;
4756 }
4757 list_for_each_entry(connector, &mode_config->connector_list, head) {
4758 struct intel_connector *intel_connector = to_intel_connector(connector);
4759 connector->polled = intel_connector->polled;
Dave Airlie0e32b392014-05-02 14:02:48 +10004760 if (connector->encoder && !connector->polled && I915_HAS_HOTPLUG(dev) && intel_connector->encoder->hpd_pin > HPD_NONE)
4761 connector->polled = DRM_CONNECTOR_POLL_HPD;
4762 if (intel_connector->mst_port)
Egbert Eich821450c2013-04-16 13:36:55 +02004763 connector->polled = DRM_CONNECTOR_POLL_HPD;
4764 }
Daniel Vetterb5ea2d52013-06-27 17:52:15 +02004765
4766 /* Interrupt setup is already guaranteed to be single-threaded, this is
4767 * just to make the assert_spin_locked checks happy. */
Daniel Vetterd6207432014-09-15 14:55:27 +02004768 spin_lock_irq(&dev_priv->irq_lock);
Daniel Vetter20afbda2012-12-11 14:05:07 +01004769 if (dev_priv->display.hpd_irq_setup)
4770 dev_priv->display.hpd_irq_setup(dev);
Daniel Vetterd6207432014-09-15 14:55:27 +02004771 spin_unlock_irq(&dev_priv->irq_lock);
Daniel Vetter20afbda2012-12-11 14:05:07 +01004772}
Paulo Zanonic67a4702013-08-19 13:18:09 -03004773
Paulo Zanoni5d584b22014-03-07 20:08:15 -03004774/* Disable interrupts so we can allow runtime PM. */
Paulo Zanoni730488b2014-03-07 20:12:32 -03004775void intel_runtime_pm_disable_interrupts(struct drm_device *dev)
Paulo Zanonic67a4702013-08-19 13:18:09 -03004776{
4777 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanonic67a4702013-08-19 13:18:09 -03004778
Paulo Zanoni730488b2014-03-07 20:12:32 -03004779 dev->driver->irq_uninstall(dev);
Jesse Barnes9df7575f2014-06-20 09:29:20 -07004780 dev_priv->pm._irqs_disabled = true;
Paulo Zanonic67a4702013-08-19 13:18:09 -03004781}
4782
Paulo Zanoni5d584b22014-03-07 20:08:15 -03004783/* Restore interrupts so we can recover from runtime PM. */
Paulo Zanoni730488b2014-03-07 20:12:32 -03004784void intel_runtime_pm_restore_interrupts(struct drm_device *dev)
Paulo Zanonic67a4702013-08-19 13:18:09 -03004785{
4786 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanonic67a4702013-08-19 13:18:09 -03004787
Jesse Barnes9df7575f2014-06-20 09:29:20 -07004788 dev_priv->pm._irqs_disabled = false;
Paulo Zanoni730488b2014-03-07 20:12:32 -03004789 dev->driver->irq_preinstall(dev);
4790 dev->driver->irq_postinstall(dev);
Paulo Zanonic67a4702013-08-19 13:18:09 -03004791}