Dave Airlie | 0d6aa60 | 2006-01-02 20:14:23 +1100 | [diff] [blame] | 1 | /* i915_irq.c -- IRQ support for the I915 -*- linux-c -*- |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | */ |
Dave Airlie | 0d6aa60 | 2006-01-02 20:14:23 +1100 | [diff] [blame] | 3 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4 | * Copyright 2003 Tungsten Graphics, Inc., Cedar Park, Texas. |
| 5 | * All Rights Reserved. |
Dave Airlie | bc54fd1 | 2005-06-23 22:46:46 +1000 | [diff] [blame] | 6 | * |
| 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 Airlie | 0d6aa60 | 2006-01-02 20:14:23 +1100 | [diff] [blame] | 27 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 28 | |
Joe Perches | a70491c | 2012-03-18 13:00:11 -0700 | [diff] [blame] | 29 | #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt |
| 30 | |
Jesse Barnes | 63eeaf3 | 2009-06-18 16:56:52 -0700 | [diff] [blame] | 31 | #include <linux/sysrq.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 32 | #include <linux/slab.h> |
Damien Lespiau | b2c88f5 | 2013-10-15 18:55:29 +0100 | [diff] [blame] | 33 | #include <linux/circ_buf.h> |
David Howells | 760285e | 2012-10-02 18:01:07 +0100 | [diff] [blame] | 34 | #include <drm/drmP.h> |
| 35 | #include <drm/i915_drm.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 36 | #include "i915_drv.h" |
Chris Wilson | 1c5d22f | 2009-08-25 11:15:50 +0100 | [diff] [blame] | 37 | #include "i915_trace.h" |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 38 | #include "intel_drv.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 39 | |
Daniel Vetter | fca52a5 | 2014-09-30 10:56:45 +0200 | [diff] [blame] | 40 | /** |
| 41 | * DOC: interrupt handling |
| 42 | * |
| 43 | * These functions provide the basic support for enabling and disabling the |
| 44 | * interrupt handling support. There's a lot more functionality in i915_irq.c |
| 45 | * and related files, but that will be described in separate chapters. |
| 46 | */ |
| 47 | |
Ville Syrjälä | 7c7e10d | 2015-01-09 14:21:12 +0200 | [diff] [blame] | 48 | static const u32 hpd_ibx[HPD_NUM_PINS] = { |
Egbert Eich | e5868a3 | 2013-02-28 04:17:12 -0500 | [diff] [blame] | 49 | [HPD_CRT] = SDE_CRT_HOTPLUG, |
| 50 | [HPD_SDVO_B] = SDE_SDVOB_HOTPLUG, |
| 51 | [HPD_PORT_B] = SDE_PORTB_HOTPLUG, |
| 52 | [HPD_PORT_C] = SDE_PORTC_HOTPLUG, |
| 53 | [HPD_PORT_D] = SDE_PORTD_HOTPLUG |
| 54 | }; |
| 55 | |
Ville Syrjälä | 7c7e10d | 2015-01-09 14:21:12 +0200 | [diff] [blame] | 56 | static const u32 hpd_cpt[HPD_NUM_PINS] = { |
Egbert Eich | e5868a3 | 2013-02-28 04:17:12 -0500 | [diff] [blame] | 57 | [HPD_CRT] = SDE_CRT_HOTPLUG_CPT, |
Daniel Vetter | 73c352a | 2013-03-26 22:38:43 +0100 | [diff] [blame] | 58 | [HPD_SDVO_B] = SDE_SDVOB_HOTPLUG_CPT, |
Egbert Eich | e5868a3 | 2013-02-28 04:17:12 -0500 | [diff] [blame] | 59 | [HPD_PORT_B] = SDE_PORTB_HOTPLUG_CPT, |
| 60 | [HPD_PORT_C] = SDE_PORTC_HOTPLUG_CPT, |
| 61 | [HPD_PORT_D] = SDE_PORTD_HOTPLUG_CPT |
| 62 | }; |
| 63 | |
Ville Syrjälä | 7c7e10d | 2015-01-09 14:21:12 +0200 | [diff] [blame] | 64 | static const u32 hpd_mask_i915[HPD_NUM_PINS] = { |
Egbert Eich | e5868a3 | 2013-02-28 04:17:12 -0500 | [diff] [blame] | 65 | [HPD_CRT] = CRT_HOTPLUG_INT_EN, |
| 66 | [HPD_SDVO_B] = SDVOB_HOTPLUG_INT_EN, |
| 67 | [HPD_SDVO_C] = SDVOC_HOTPLUG_INT_EN, |
| 68 | [HPD_PORT_B] = PORTB_HOTPLUG_INT_EN, |
| 69 | [HPD_PORT_C] = PORTC_HOTPLUG_INT_EN, |
| 70 | [HPD_PORT_D] = PORTD_HOTPLUG_INT_EN |
| 71 | }; |
| 72 | |
Ville Syrjälä | 7c7e10d | 2015-01-09 14:21:12 +0200 | [diff] [blame] | 73 | static const u32 hpd_status_g4x[HPD_NUM_PINS] = { |
Egbert Eich | e5868a3 | 2013-02-28 04:17:12 -0500 | [diff] [blame] | 74 | [HPD_CRT] = CRT_HOTPLUG_INT_STATUS, |
| 75 | [HPD_SDVO_B] = SDVOB_HOTPLUG_INT_STATUS_G4X, |
| 76 | [HPD_SDVO_C] = SDVOC_HOTPLUG_INT_STATUS_G4X, |
| 77 | [HPD_PORT_B] = PORTB_HOTPLUG_INT_STATUS, |
| 78 | [HPD_PORT_C] = PORTC_HOTPLUG_INT_STATUS, |
| 79 | [HPD_PORT_D] = PORTD_HOTPLUG_INT_STATUS |
| 80 | }; |
| 81 | |
Ville Syrjälä | 4bca26d | 2015-05-11 20:49:10 +0300 | [diff] [blame] | 82 | static const u32 hpd_status_i915[HPD_NUM_PINS] = { |
Egbert Eich | e5868a3 | 2013-02-28 04:17:12 -0500 | [diff] [blame] | 83 | [HPD_CRT] = CRT_HOTPLUG_INT_STATUS, |
| 84 | [HPD_SDVO_B] = SDVOB_HOTPLUG_INT_STATUS_I915, |
| 85 | [HPD_SDVO_C] = SDVOC_HOTPLUG_INT_STATUS_I915, |
| 86 | [HPD_PORT_B] = PORTB_HOTPLUG_INT_STATUS, |
| 87 | [HPD_PORT_C] = PORTC_HOTPLUG_INT_STATUS, |
| 88 | [HPD_PORT_D] = PORTD_HOTPLUG_INT_STATUS |
| 89 | }; |
| 90 | |
Shashank Sharma | e0a20ad | 2015-03-27 14:54:14 +0200 | [diff] [blame] | 91 | /* BXT hpd list */ |
| 92 | static const u32 hpd_bxt[HPD_NUM_PINS] = { |
| 93 | [HPD_PORT_B] = BXT_DE_PORT_HP_DDIB, |
| 94 | [HPD_PORT_C] = BXT_DE_PORT_HP_DDIC |
| 95 | }; |
| 96 | |
Paulo Zanoni | 5c50244 | 2014-04-01 15:37:11 -0300 | [diff] [blame] | 97 | /* IIR can theoretically queue up two events. Be paranoid. */ |
Paulo Zanoni | f86f3fb | 2014-04-01 15:37:14 -0300 | [diff] [blame] | 98 | #define GEN8_IRQ_RESET_NDX(type, which) do { \ |
Paulo Zanoni | 5c50244 | 2014-04-01 15:37:11 -0300 | [diff] [blame] | 99 | I915_WRITE(GEN8_##type##_IMR(which), 0xffffffff); \ |
| 100 | POSTING_READ(GEN8_##type##_IMR(which)); \ |
| 101 | I915_WRITE(GEN8_##type##_IER(which), 0); \ |
| 102 | I915_WRITE(GEN8_##type##_IIR(which), 0xffffffff); \ |
| 103 | POSTING_READ(GEN8_##type##_IIR(which)); \ |
| 104 | I915_WRITE(GEN8_##type##_IIR(which), 0xffffffff); \ |
| 105 | POSTING_READ(GEN8_##type##_IIR(which)); \ |
| 106 | } while (0) |
| 107 | |
Paulo Zanoni | f86f3fb | 2014-04-01 15:37:14 -0300 | [diff] [blame] | 108 | #define GEN5_IRQ_RESET(type) do { \ |
Paulo Zanoni | a9d356a | 2014-04-01 15:37:09 -0300 | [diff] [blame] | 109 | I915_WRITE(type##IMR, 0xffffffff); \ |
Paulo Zanoni | 5c50244 | 2014-04-01 15:37:11 -0300 | [diff] [blame] | 110 | POSTING_READ(type##IMR); \ |
Paulo Zanoni | a9d356a | 2014-04-01 15:37:09 -0300 | [diff] [blame] | 111 | I915_WRITE(type##IER, 0); \ |
Paulo Zanoni | 5c50244 | 2014-04-01 15:37:11 -0300 | [diff] [blame] | 112 | I915_WRITE(type##IIR, 0xffffffff); \ |
| 113 | POSTING_READ(type##IIR); \ |
| 114 | I915_WRITE(type##IIR, 0xffffffff); \ |
| 115 | POSTING_READ(type##IIR); \ |
Paulo Zanoni | a9d356a | 2014-04-01 15:37:09 -0300 | [diff] [blame] | 116 | } while (0) |
| 117 | |
Paulo Zanoni | 337ba01 | 2014-04-01 15:37:16 -0300 | [diff] [blame] | 118 | /* |
| 119 | * We should clear IMR at preinstall/uninstall, and just check at postinstall. |
| 120 | */ |
| 121 | #define GEN5_ASSERT_IIR_IS_ZERO(reg) do { \ |
| 122 | u32 val = I915_READ(reg); \ |
| 123 | if (val) { \ |
| 124 | WARN(1, "Interrupt register 0x%x is not zero: 0x%08x\n", \ |
| 125 | (reg), val); \ |
| 126 | I915_WRITE((reg), 0xffffffff); \ |
| 127 | POSTING_READ(reg); \ |
| 128 | I915_WRITE((reg), 0xffffffff); \ |
| 129 | POSTING_READ(reg); \ |
| 130 | } \ |
| 131 | } while (0) |
| 132 | |
Paulo Zanoni | 3507989 | 2014-04-01 15:37:15 -0300 | [diff] [blame] | 133 | #define GEN8_IRQ_INIT_NDX(type, which, imr_val, ier_val) do { \ |
Paulo Zanoni | 337ba01 | 2014-04-01 15:37:16 -0300 | [diff] [blame] | 134 | GEN5_ASSERT_IIR_IS_ZERO(GEN8_##type##_IIR(which)); \ |
Paulo Zanoni | 3507989 | 2014-04-01 15:37:15 -0300 | [diff] [blame] | 135 | I915_WRITE(GEN8_##type##_IER(which), (ier_val)); \ |
Ville Syrjälä | 7d1bd539 | 2014-10-30 19:42:50 +0200 | [diff] [blame] | 136 | I915_WRITE(GEN8_##type##_IMR(which), (imr_val)); \ |
| 137 | POSTING_READ(GEN8_##type##_IMR(which)); \ |
Paulo Zanoni | 3507989 | 2014-04-01 15:37:15 -0300 | [diff] [blame] | 138 | } while (0) |
| 139 | |
| 140 | #define GEN5_IRQ_INIT(type, imr_val, ier_val) do { \ |
Paulo Zanoni | 337ba01 | 2014-04-01 15:37:16 -0300 | [diff] [blame] | 141 | GEN5_ASSERT_IIR_IS_ZERO(type##IIR); \ |
Paulo Zanoni | 3507989 | 2014-04-01 15:37:15 -0300 | [diff] [blame] | 142 | I915_WRITE(type##IER, (ier_val)); \ |
Ville Syrjälä | 7d1bd539 | 2014-10-30 19:42:50 +0200 | [diff] [blame] | 143 | I915_WRITE(type##IMR, (imr_val)); \ |
| 144 | POSTING_READ(type##IMR); \ |
Paulo Zanoni | 3507989 | 2014-04-01 15:37:15 -0300 | [diff] [blame] | 145 | } while (0) |
| 146 | |
Imre Deak | c9a9a26 | 2014-11-05 20:48:37 +0200 | [diff] [blame] | 147 | static void gen6_rps_irq_handler(struct drm_i915_private *dev_priv, u32 pm_iir); |
| 148 | |
Zhenyu Wang | 036a4a7 | 2009-06-08 14:40:19 +0800 | [diff] [blame] | 149 | /* For display hotplug interrupt */ |
Daniel Vetter | 47339cd | 2014-09-30 10:56:46 +0200 | [diff] [blame] | 150 | void |
Jani Nikula | 2d1013d | 2014-03-31 14:27:17 +0300 | [diff] [blame] | 151 | ironlake_enable_display_irq(struct drm_i915_private *dev_priv, u32 mask) |
Zhenyu Wang | 036a4a7 | 2009-06-08 14:40:19 +0800 | [diff] [blame] | 152 | { |
Daniel Vetter | 4bc9d43 | 2013-06-27 13:44:58 +0200 | [diff] [blame] | 153 | assert_spin_locked(&dev_priv->irq_lock); |
| 154 | |
Jesse Barnes | 9df7575f | 2014-06-20 09:29:20 -0700 | [diff] [blame] | 155 | if (WARN_ON(!intel_irqs_enabled(dev_priv))) |
Paulo Zanoni | c67a470 | 2013-08-19 13:18:09 -0300 | [diff] [blame] | 156 | return; |
Paulo Zanoni | c67a470 | 2013-08-19 13:18:09 -0300 | [diff] [blame] | 157 | |
Chris Wilson | 1ec14ad | 2010-12-04 11:30:53 +0000 | [diff] [blame] | 158 | if ((dev_priv->irq_mask & mask) != 0) { |
| 159 | dev_priv->irq_mask &= ~mask; |
| 160 | I915_WRITE(DEIMR, dev_priv->irq_mask); |
Chris Wilson | 3143a2b | 2010-11-16 15:55:10 +0000 | [diff] [blame] | 161 | POSTING_READ(DEIMR); |
Zhenyu Wang | 036a4a7 | 2009-06-08 14:40:19 +0800 | [diff] [blame] | 162 | } |
| 163 | } |
| 164 | |
Daniel Vetter | 47339cd | 2014-09-30 10:56:46 +0200 | [diff] [blame] | 165 | void |
Jani Nikula | 2d1013d | 2014-03-31 14:27:17 +0300 | [diff] [blame] | 166 | ironlake_disable_display_irq(struct drm_i915_private *dev_priv, u32 mask) |
Zhenyu Wang | 036a4a7 | 2009-06-08 14:40:19 +0800 | [diff] [blame] | 167 | { |
Daniel Vetter | 4bc9d43 | 2013-06-27 13:44:58 +0200 | [diff] [blame] | 168 | assert_spin_locked(&dev_priv->irq_lock); |
| 169 | |
Paulo Zanoni | 06ffc77 | 2014-07-17 17:43:46 -0300 | [diff] [blame] | 170 | if (WARN_ON(!intel_irqs_enabled(dev_priv))) |
Paulo Zanoni | c67a470 | 2013-08-19 13:18:09 -0300 | [diff] [blame] | 171 | return; |
Paulo Zanoni | c67a470 | 2013-08-19 13:18:09 -0300 | [diff] [blame] | 172 | |
Chris Wilson | 1ec14ad | 2010-12-04 11:30:53 +0000 | [diff] [blame] | 173 | if ((dev_priv->irq_mask & mask) != mask) { |
| 174 | dev_priv->irq_mask |= mask; |
| 175 | I915_WRITE(DEIMR, dev_priv->irq_mask); |
Chris Wilson | 3143a2b | 2010-11-16 15:55:10 +0000 | [diff] [blame] | 176 | POSTING_READ(DEIMR); |
Zhenyu Wang | 036a4a7 | 2009-06-08 14:40:19 +0800 | [diff] [blame] | 177 | } |
| 178 | } |
| 179 | |
Paulo Zanoni | 43eaea1 | 2013-08-06 18:57:12 -0300 | [diff] [blame] | 180 | /** |
| 181 | * ilk_update_gt_irq - update GTIMR |
| 182 | * @dev_priv: driver private |
| 183 | * @interrupt_mask: mask of interrupt bits to update |
| 184 | * @enabled_irq_mask: mask of interrupt bits to enable |
| 185 | */ |
| 186 | static void ilk_update_gt_irq(struct drm_i915_private *dev_priv, |
| 187 | uint32_t interrupt_mask, |
| 188 | uint32_t enabled_irq_mask) |
| 189 | { |
| 190 | assert_spin_locked(&dev_priv->irq_lock); |
| 191 | |
Daniel Vetter | 15a17aa | 2014-12-08 16:30:00 +0100 | [diff] [blame] | 192 | WARN_ON(enabled_irq_mask & ~interrupt_mask); |
| 193 | |
Jesse Barnes | 9df7575f | 2014-06-20 09:29:20 -0700 | [diff] [blame] | 194 | if (WARN_ON(!intel_irqs_enabled(dev_priv))) |
Paulo Zanoni | c67a470 | 2013-08-19 13:18:09 -0300 | [diff] [blame] | 195 | return; |
Paulo Zanoni | c67a470 | 2013-08-19 13:18:09 -0300 | [diff] [blame] | 196 | |
Paulo Zanoni | 43eaea1 | 2013-08-06 18:57:12 -0300 | [diff] [blame] | 197 | dev_priv->gt_irq_mask &= ~interrupt_mask; |
| 198 | dev_priv->gt_irq_mask |= (~enabled_irq_mask & interrupt_mask); |
| 199 | I915_WRITE(GTIMR, dev_priv->gt_irq_mask); |
| 200 | POSTING_READ(GTIMR); |
| 201 | } |
| 202 | |
Daniel Vetter | 480c803 | 2014-07-16 09:49:40 +0200 | [diff] [blame] | 203 | void gen5_enable_gt_irq(struct drm_i915_private *dev_priv, uint32_t mask) |
Paulo Zanoni | 43eaea1 | 2013-08-06 18:57:12 -0300 | [diff] [blame] | 204 | { |
| 205 | ilk_update_gt_irq(dev_priv, mask, mask); |
| 206 | } |
| 207 | |
Daniel Vetter | 480c803 | 2014-07-16 09:49:40 +0200 | [diff] [blame] | 208 | void gen5_disable_gt_irq(struct drm_i915_private *dev_priv, uint32_t mask) |
Paulo Zanoni | 43eaea1 | 2013-08-06 18:57:12 -0300 | [diff] [blame] | 209 | { |
| 210 | ilk_update_gt_irq(dev_priv, mask, 0); |
| 211 | } |
| 212 | |
Imre Deak | b900b94 | 2014-11-05 20:48:48 +0200 | [diff] [blame] | 213 | static u32 gen6_pm_iir(struct drm_i915_private *dev_priv) |
| 214 | { |
| 215 | return INTEL_INFO(dev_priv)->gen >= 8 ? GEN8_GT_IIR(2) : GEN6_PMIIR; |
| 216 | } |
| 217 | |
Imre Deak | a72fbc3 | 2014-11-05 20:48:31 +0200 | [diff] [blame] | 218 | static u32 gen6_pm_imr(struct drm_i915_private *dev_priv) |
| 219 | { |
| 220 | return INTEL_INFO(dev_priv)->gen >= 8 ? GEN8_GT_IMR(2) : GEN6_PMIMR; |
| 221 | } |
| 222 | |
Imre Deak | b900b94 | 2014-11-05 20:48:48 +0200 | [diff] [blame] | 223 | static u32 gen6_pm_ier(struct drm_i915_private *dev_priv) |
| 224 | { |
| 225 | return INTEL_INFO(dev_priv)->gen >= 8 ? GEN8_GT_IER(2) : GEN6_PMIER; |
| 226 | } |
| 227 | |
Paulo Zanoni | edbfdb4 | 2013-08-06 18:57:13 -0300 | [diff] [blame] | 228 | /** |
| 229 | * snb_update_pm_irq - update GEN6_PMIMR |
| 230 | * @dev_priv: driver private |
| 231 | * @interrupt_mask: mask of interrupt bits to update |
| 232 | * @enabled_irq_mask: mask of interrupt bits to enable |
| 233 | */ |
| 234 | static void snb_update_pm_irq(struct drm_i915_private *dev_priv, |
| 235 | uint32_t interrupt_mask, |
| 236 | uint32_t enabled_irq_mask) |
| 237 | { |
Paulo Zanoni | 605cd25 | 2013-08-06 18:57:15 -0300 | [diff] [blame] | 238 | uint32_t new_val; |
Paulo Zanoni | edbfdb4 | 2013-08-06 18:57:13 -0300 | [diff] [blame] | 239 | |
Daniel Vetter | 15a17aa | 2014-12-08 16:30:00 +0100 | [diff] [blame] | 240 | WARN_ON(enabled_irq_mask & ~interrupt_mask); |
| 241 | |
Paulo Zanoni | edbfdb4 | 2013-08-06 18:57:13 -0300 | [diff] [blame] | 242 | assert_spin_locked(&dev_priv->irq_lock); |
| 243 | |
Paulo Zanoni | 605cd25 | 2013-08-06 18:57:15 -0300 | [diff] [blame] | 244 | new_val = dev_priv->pm_irq_mask; |
Paulo Zanoni | f52ecbc | 2013-08-06 18:57:14 -0300 | [diff] [blame] | 245 | new_val &= ~interrupt_mask; |
| 246 | new_val |= (~enabled_irq_mask & interrupt_mask); |
| 247 | |
Paulo Zanoni | 605cd25 | 2013-08-06 18:57:15 -0300 | [diff] [blame] | 248 | if (new_val != dev_priv->pm_irq_mask) { |
| 249 | dev_priv->pm_irq_mask = new_val; |
Imre Deak | a72fbc3 | 2014-11-05 20:48:31 +0200 | [diff] [blame] | 250 | I915_WRITE(gen6_pm_imr(dev_priv), dev_priv->pm_irq_mask); |
| 251 | POSTING_READ(gen6_pm_imr(dev_priv)); |
Paulo Zanoni | f52ecbc | 2013-08-06 18:57:14 -0300 | [diff] [blame] | 252 | } |
Paulo Zanoni | edbfdb4 | 2013-08-06 18:57:13 -0300 | [diff] [blame] | 253 | } |
| 254 | |
Daniel Vetter | 480c803 | 2014-07-16 09:49:40 +0200 | [diff] [blame] | 255 | void gen6_enable_pm_irq(struct drm_i915_private *dev_priv, uint32_t mask) |
Paulo Zanoni | edbfdb4 | 2013-08-06 18:57:13 -0300 | [diff] [blame] | 256 | { |
Imre Deak | 9939fba | 2014-11-20 23:01:47 +0200 | [diff] [blame] | 257 | if (WARN_ON(!intel_irqs_enabled(dev_priv))) |
| 258 | return; |
| 259 | |
Paulo Zanoni | edbfdb4 | 2013-08-06 18:57:13 -0300 | [diff] [blame] | 260 | snb_update_pm_irq(dev_priv, mask, mask); |
| 261 | } |
| 262 | |
Imre Deak | 9939fba | 2014-11-20 23:01:47 +0200 | [diff] [blame] | 263 | static void __gen6_disable_pm_irq(struct drm_i915_private *dev_priv, |
| 264 | uint32_t mask) |
| 265 | { |
| 266 | snb_update_pm_irq(dev_priv, mask, 0); |
| 267 | } |
| 268 | |
Daniel Vetter | 480c803 | 2014-07-16 09:49:40 +0200 | [diff] [blame] | 269 | void gen6_disable_pm_irq(struct drm_i915_private *dev_priv, uint32_t mask) |
Paulo Zanoni | edbfdb4 | 2013-08-06 18:57:13 -0300 | [diff] [blame] | 270 | { |
Imre Deak | 9939fba | 2014-11-20 23:01:47 +0200 | [diff] [blame] | 271 | if (WARN_ON(!intel_irqs_enabled(dev_priv))) |
| 272 | return; |
| 273 | |
| 274 | __gen6_disable_pm_irq(dev_priv, mask); |
Paulo Zanoni | edbfdb4 | 2013-08-06 18:57:13 -0300 | [diff] [blame] | 275 | } |
| 276 | |
Imre Deak | 3cc134e | 2014-11-19 15:30:03 +0200 | [diff] [blame] | 277 | void gen6_reset_rps_interrupts(struct drm_device *dev) |
| 278 | { |
| 279 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 280 | uint32_t reg = gen6_pm_iir(dev_priv); |
| 281 | |
| 282 | spin_lock_irq(&dev_priv->irq_lock); |
| 283 | I915_WRITE(reg, dev_priv->pm_rps_events); |
| 284 | I915_WRITE(reg, dev_priv->pm_rps_events); |
| 285 | POSTING_READ(reg); |
Imre Deak | 096fad9 | 2015-03-23 19:11:35 +0200 | [diff] [blame] | 286 | dev_priv->rps.pm_iir = 0; |
Imre Deak | 3cc134e | 2014-11-19 15:30:03 +0200 | [diff] [blame] | 287 | spin_unlock_irq(&dev_priv->irq_lock); |
| 288 | } |
| 289 | |
Imre Deak | b900b94 | 2014-11-05 20:48:48 +0200 | [diff] [blame] | 290 | void gen6_enable_rps_interrupts(struct drm_device *dev) |
| 291 | { |
| 292 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 293 | |
| 294 | spin_lock_irq(&dev_priv->irq_lock); |
Imre Deak | 78e68d3 | 2014-12-15 18:59:27 +0200 | [diff] [blame] | 295 | |
Imre Deak | b900b94 | 2014-11-05 20:48:48 +0200 | [diff] [blame] | 296 | WARN_ON(dev_priv->rps.pm_iir); |
Imre Deak | 3cc134e | 2014-11-19 15:30:03 +0200 | [diff] [blame] | 297 | WARN_ON(I915_READ(gen6_pm_iir(dev_priv)) & dev_priv->pm_rps_events); |
Imre Deak | d4d70aa | 2014-11-19 15:30:04 +0200 | [diff] [blame] | 298 | dev_priv->rps.interrupts_enabled = true; |
Imre Deak | 78e68d3 | 2014-12-15 18:59:27 +0200 | [diff] [blame] | 299 | I915_WRITE(gen6_pm_ier(dev_priv), I915_READ(gen6_pm_ier(dev_priv)) | |
| 300 | dev_priv->pm_rps_events); |
Imre Deak | b900b94 | 2014-11-05 20:48:48 +0200 | [diff] [blame] | 301 | gen6_enable_pm_irq(dev_priv, dev_priv->pm_rps_events); |
Imre Deak | 78e68d3 | 2014-12-15 18:59:27 +0200 | [diff] [blame] | 302 | |
Imre Deak | b900b94 | 2014-11-05 20:48:48 +0200 | [diff] [blame] | 303 | spin_unlock_irq(&dev_priv->irq_lock); |
| 304 | } |
| 305 | |
Imre Deak | 59d02a1 | 2014-12-19 19:33:26 +0200 | [diff] [blame] | 306 | u32 gen6_sanitize_rps_pm_mask(struct drm_i915_private *dev_priv, u32 mask) |
| 307 | { |
| 308 | /* |
Imre Deak | f24eeb1 | 2014-12-19 19:33:27 +0200 | [diff] [blame] | 309 | * SNB,IVB can while VLV,CHV may hard hang on looping batchbuffer |
Imre Deak | 59d02a1 | 2014-12-19 19:33:26 +0200 | [diff] [blame] | 310 | * if GEN6_PM_UP_EI_EXPIRED is masked. |
Imre Deak | f24eeb1 | 2014-12-19 19:33:27 +0200 | [diff] [blame] | 311 | * |
| 312 | * TODO: verify if this can be reproduced on VLV,CHV. |
Imre Deak | 59d02a1 | 2014-12-19 19:33:26 +0200 | [diff] [blame] | 313 | */ |
| 314 | if (INTEL_INFO(dev_priv)->gen <= 7 && !IS_HASWELL(dev_priv)) |
| 315 | mask &= ~GEN6_PM_RP_UP_EI_EXPIRED; |
| 316 | |
| 317 | if (INTEL_INFO(dev_priv)->gen >= 8) |
| 318 | mask &= ~GEN8_PMINTR_REDIRECT_TO_NON_DISP; |
| 319 | |
| 320 | return mask; |
| 321 | } |
| 322 | |
Imre Deak | b900b94 | 2014-11-05 20:48:48 +0200 | [diff] [blame] | 323 | void gen6_disable_rps_interrupts(struct drm_device *dev) |
| 324 | { |
| 325 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 326 | |
Imre Deak | d4d70aa | 2014-11-19 15:30:04 +0200 | [diff] [blame] | 327 | spin_lock_irq(&dev_priv->irq_lock); |
| 328 | dev_priv->rps.interrupts_enabled = false; |
| 329 | spin_unlock_irq(&dev_priv->irq_lock); |
| 330 | |
| 331 | cancel_work_sync(&dev_priv->rps.work); |
| 332 | |
Imre Deak | 9939fba | 2014-11-20 23:01:47 +0200 | [diff] [blame] | 333 | spin_lock_irq(&dev_priv->irq_lock); |
| 334 | |
Imre Deak | 59d02a1 | 2014-12-19 19:33:26 +0200 | [diff] [blame] | 335 | I915_WRITE(GEN6_PMINTRMSK, gen6_sanitize_rps_pm_mask(dev_priv, ~0)); |
Imre Deak | 9939fba | 2014-11-20 23:01:47 +0200 | [diff] [blame] | 336 | |
| 337 | __gen6_disable_pm_irq(dev_priv, dev_priv->pm_rps_events); |
Imre Deak | b900b94 | 2014-11-05 20:48:48 +0200 | [diff] [blame] | 338 | I915_WRITE(gen6_pm_ier(dev_priv), I915_READ(gen6_pm_ier(dev_priv)) & |
| 339 | ~dev_priv->pm_rps_events); |
Imre Deak | 58072cc | 2015-03-23 19:11:34 +0200 | [diff] [blame] | 340 | |
| 341 | spin_unlock_irq(&dev_priv->irq_lock); |
| 342 | |
| 343 | synchronize_irq(dev->irq); |
Imre Deak | b900b94 | 2014-11-05 20:48:48 +0200 | [diff] [blame] | 344 | } |
| 345 | |
Ben Widawsky | 0961021 | 2014-05-15 20:58:08 +0300 | [diff] [blame] | 346 | /** |
Daniel Vetter | fee884e | 2013-07-04 23:35:21 +0200 | [diff] [blame] | 347 | * ibx_display_interrupt_update - update SDEIMR |
| 348 | * @dev_priv: driver private |
| 349 | * @interrupt_mask: mask of interrupt bits to update |
| 350 | * @enabled_irq_mask: mask of interrupt bits to enable |
| 351 | */ |
Daniel Vetter | 47339cd | 2014-09-30 10:56:46 +0200 | [diff] [blame] | 352 | void ibx_display_interrupt_update(struct drm_i915_private *dev_priv, |
| 353 | uint32_t interrupt_mask, |
| 354 | uint32_t enabled_irq_mask) |
Daniel Vetter | fee884e | 2013-07-04 23:35:21 +0200 | [diff] [blame] | 355 | { |
| 356 | uint32_t sdeimr = I915_READ(SDEIMR); |
| 357 | sdeimr &= ~interrupt_mask; |
| 358 | sdeimr |= (~enabled_irq_mask & interrupt_mask); |
| 359 | |
Daniel Vetter | 15a17aa | 2014-12-08 16:30:00 +0100 | [diff] [blame] | 360 | WARN_ON(enabled_irq_mask & ~interrupt_mask); |
| 361 | |
Daniel Vetter | fee884e | 2013-07-04 23:35:21 +0200 | [diff] [blame] | 362 | assert_spin_locked(&dev_priv->irq_lock); |
| 363 | |
Jesse Barnes | 9df7575f | 2014-06-20 09:29:20 -0700 | [diff] [blame] | 364 | if (WARN_ON(!intel_irqs_enabled(dev_priv))) |
Paulo Zanoni | c67a470 | 2013-08-19 13:18:09 -0300 | [diff] [blame] | 365 | return; |
Paulo Zanoni | c67a470 | 2013-08-19 13:18:09 -0300 | [diff] [blame] | 366 | |
Daniel Vetter | fee884e | 2013-07-04 23:35:21 +0200 | [diff] [blame] | 367 | I915_WRITE(SDEIMR, sdeimr); |
| 368 | POSTING_READ(SDEIMR); |
| 369 | } |
Paulo Zanoni | 8664281 | 2013-04-12 17:57:57 -0300 | [diff] [blame] | 370 | |
Daniel Vetter | b5ea642 | 2014-03-02 21:18:00 +0100 | [diff] [blame] | 371 | static void |
Imre Deak | 755e901 | 2014-02-10 18:42:47 +0200 | [diff] [blame] | 372 | __i915_enable_pipestat(struct drm_i915_private *dev_priv, enum pipe pipe, |
| 373 | u32 enable_mask, u32 status_mask) |
Keith Packard | 7c46358 | 2008-11-04 02:03:27 -0800 | [diff] [blame] | 374 | { |
Ville Syrjälä | 46c06a3 | 2013-02-20 21:16:18 +0200 | [diff] [blame] | 375 | u32 reg = PIPESTAT(pipe); |
Imre Deak | 755e901 | 2014-02-10 18:42:47 +0200 | [diff] [blame] | 376 | u32 pipestat = I915_READ(reg) & PIPESTAT_INT_ENABLE_MASK; |
Keith Packard | 7c46358 | 2008-11-04 02:03:27 -0800 | [diff] [blame] | 377 | |
Daniel Vetter | b79480b | 2013-06-27 17:52:10 +0200 | [diff] [blame] | 378 | assert_spin_locked(&dev_priv->irq_lock); |
Daniel Vetter | d518ce5 | 2014-08-27 10:43:37 +0200 | [diff] [blame] | 379 | WARN_ON(!intel_irqs_enabled(dev_priv)); |
Daniel Vetter | b79480b | 2013-06-27 17:52:10 +0200 | [diff] [blame] | 380 | |
Ville Syrjälä | 04feced | 2014-04-03 13:28:33 +0300 | [diff] [blame] | 381 | if (WARN_ONCE(enable_mask & ~PIPESTAT_INT_ENABLE_MASK || |
| 382 | status_mask & ~PIPESTAT_INT_STATUS_MASK, |
| 383 | "pipe %c: enable_mask=0x%x, status_mask=0x%x\n", |
| 384 | pipe_name(pipe), enable_mask, status_mask)) |
Imre Deak | 755e901 | 2014-02-10 18:42:47 +0200 | [diff] [blame] | 385 | return; |
| 386 | |
| 387 | if ((pipestat & enable_mask) == enable_mask) |
Ville Syrjälä | 46c06a3 | 2013-02-20 21:16:18 +0200 | [diff] [blame] | 388 | return; |
| 389 | |
Imre Deak | 91d181d | 2014-02-10 18:42:49 +0200 | [diff] [blame] | 390 | dev_priv->pipestat_irq_mask[pipe] |= status_mask; |
| 391 | |
Ville Syrjälä | 46c06a3 | 2013-02-20 21:16:18 +0200 | [diff] [blame] | 392 | /* Enable the interrupt, clear any pending status */ |
Imre Deak | 755e901 | 2014-02-10 18:42:47 +0200 | [diff] [blame] | 393 | pipestat |= enable_mask | status_mask; |
Ville Syrjälä | 46c06a3 | 2013-02-20 21:16:18 +0200 | [diff] [blame] | 394 | I915_WRITE(reg, pipestat); |
| 395 | POSTING_READ(reg); |
Keith Packard | 7c46358 | 2008-11-04 02:03:27 -0800 | [diff] [blame] | 396 | } |
| 397 | |
Daniel Vetter | b5ea642 | 2014-03-02 21:18:00 +0100 | [diff] [blame] | 398 | static void |
Imre Deak | 755e901 | 2014-02-10 18:42:47 +0200 | [diff] [blame] | 399 | __i915_disable_pipestat(struct drm_i915_private *dev_priv, enum pipe pipe, |
| 400 | u32 enable_mask, u32 status_mask) |
Keith Packard | 7c46358 | 2008-11-04 02:03:27 -0800 | [diff] [blame] | 401 | { |
Ville Syrjälä | 46c06a3 | 2013-02-20 21:16:18 +0200 | [diff] [blame] | 402 | u32 reg = PIPESTAT(pipe); |
Imre Deak | 755e901 | 2014-02-10 18:42:47 +0200 | [diff] [blame] | 403 | u32 pipestat = I915_READ(reg) & PIPESTAT_INT_ENABLE_MASK; |
Keith Packard | 7c46358 | 2008-11-04 02:03:27 -0800 | [diff] [blame] | 404 | |
Daniel Vetter | b79480b | 2013-06-27 17:52:10 +0200 | [diff] [blame] | 405 | assert_spin_locked(&dev_priv->irq_lock); |
Daniel Vetter | d518ce5 | 2014-08-27 10:43:37 +0200 | [diff] [blame] | 406 | WARN_ON(!intel_irqs_enabled(dev_priv)); |
Daniel Vetter | b79480b | 2013-06-27 17:52:10 +0200 | [diff] [blame] | 407 | |
Ville Syrjälä | 04feced | 2014-04-03 13:28:33 +0300 | [diff] [blame] | 408 | if (WARN_ONCE(enable_mask & ~PIPESTAT_INT_ENABLE_MASK || |
| 409 | status_mask & ~PIPESTAT_INT_STATUS_MASK, |
| 410 | "pipe %c: enable_mask=0x%x, status_mask=0x%x\n", |
| 411 | pipe_name(pipe), enable_mask, status_mask)) |
Ville Syrjälä | 46c06a3 | 2013-02-20 21:16:18 +0200 | [diff] [blame] | 412 | return; |
| 413 | |
Imre Deak | 755e901 | 2014-02-10 18:42:47 +0200 | [diff] [blame] | 414 | if ((pipestat & enable_mask) == 0) |
| 415 | return; |
| 416 | |
Imre Deak | 91d181d | 2014-02-10 18:42:49 +0200 | [diff] [blame] | 417 | dev_priv->pipestat_irq_mask[pipe] &= ~status_mask; |
| 418 | |
Imre Deak | 755e901 | 2014-02-10 18:42:47 +0200 | [diff] [blame] | 419 | pipestat &= ~enable_mask; |
Ville Syrjälä | 46c06a3 | 2013-02-20 21:16:18 +0200 | [diff] [blame] | 420 | I915_WRITE(reg, pipestat); |
| 421 | POSTING_READ(reg); |
Keith Packard | 7c46358 | 2008-11-04 02:03:27 -0800 | [diff] [blame] | 422 | } |
| 423 | |
Imre Deak | 10c59c5 | 2014-02-10 18:42:48 +0200 | [diff] [blame] | 424 | static u32 vlv_get_pipestat_enable_mask(struct drm_device *dev, u32 status_mask) |
| 425 | { |
| 426 | u32 enable_mask = status_mask << 16; |
| 427 | |
| 428 | /* |
Ville Syrjälä | 724a690 | 2014-04-09 13:28:48 +0300 | [diff] [blame] | 429 | * On pipe A we don't support the PSR interrupt yet, |
| 430 | * on pipe B and C the same bit MBZ. |
Imre Deak | 10c59c5 | 2014-02-10 18:42:48 +0200 | [diff] [blame] | 431 | */ |
| 432 | if (WARN_ON_ONCE(status_mask & PIPE_A_PSR_STATUS_VLV)) |
| 433 | return 0; |
Ville Syrjälä | 724a690 | 2014-04-09 13:28:48 +0300 | [diff] [blame] | 434 | /* |
| 435 | * On pipe B and C we don't support the PSR interrupt yet, on pipe |
| 436 | * A the same bit is for perf counters which we don't use either. |
| 437 | */ |
| 438 | if (WARN_ON_ONCE(status_mask & PIPE_B_PSR_STATUS_VLV)) |
| 439 | return 0; |
Imre Deak | 10c59c5 | 2014-02-10 18:42:48 +0200 | [diff] [blame] | 440 | |
| 441 | enable_mask &= ~(PIPE_FIFO_UNDERRUN_STATUS | |
| 442 | SPRITE0_FLIP_DONE_INT_EN_VLV | |
| 443 | SPRITE1_FLIP_DONE_INT_EN_VLV); |
| 444 | if (status_mask & SPRITE0_FLIP_DONE_INT_STATUS_VLV) |
| 445 | enable_mask |= SPRITE0_FLIP_DONE_INT_EN_VLV; |
| 446 | if (status_mask & SPRITE1_FLIP_DONE_INT_STATUS_VLV) |
| 447 | enable_mask |= SPRITE1_FLIP_DONE_INT_EN_VLV; |
| 448 | |
| 449 | return enable_mask; |
| 450 | } |
| 451 | |
Imre Deak | 755e901 | 2014-02-10 18:42:47 +0200 | [diff] [blame] | 452 | void |
| 453 | i915_enable_pipestat(struct drm_i915_private *dev_priv, enum pipe pipe, |
| 454 | u32 status_mask) |
| 455 | { |
| 456 | u32 enable_mask; |
| 457 | |
Imre Deak | 10c59c5 | 2014-02-10 18:42:48 +0200 | [diff] [blame] | 458 | if (IS_VALLEYVIEW(dev_priv->dev)) |
| 459 | enable_mask = vlv_get_pipestat_enable_mask(dev_priv->dev, |
| 460 | status_mask); |
| 461 | else |
| 462 | enable_mask = status_mask << 16; |
Imre Deak | 755e901 | 2014-02-10 18:42:47 +0200 | [diff] [blame] | 463 | __i915_enable_pipestat(dev_priv, pipe, enable_mask, status_mask); |
| 464 | } |
| 465 | |
| 466 | void |
| 467 | i915_disable_pipestat(struct drm_i915_private *dev_priv, enum pipe pipe, |
| 468 | u32 status_mask) |
| 469 | { |
| 470 | u32 enable_mask; |
| 471 | |
Imre Deak | 10c59c5 | 2014-02-10 18:42:48 +0200 | [diff] [blame] | 472 | if (IS_VALLEYVIEW(dev_priv->dev)) |
| 473 | enable_mask = vlv_get_pipestat_enable_mask(dev_priv->dev, |
| 474 | status_mask); |
| 475 | else |
| 476 | enable_mask = status_mask << 16; |
Imre Deak | 755e901 | 2014-02-10 18:42:47 +0200 | [diff] [blame] | 477 | __i915_disable_pipestat(dev_priv, pipe, enable_mask, status_mask); |
| 478 | } |
| 479 | |
=?utf-8?q?Michel_D=C3=A4nzer?= | a6b54f3 | 2006-10-24 23:37:43 +1000 | [diff] [blame] | 480 | /** |
Jani Nikula | f49e38d | 2013-04-29 13:02:54 +0300 | [diff] [blame] | 481 | * i915_enable_asle_pipestat - enable ASLE pipestat for OpRegion |
Zhao Yakui | 01c6688 | 2009-10-28 05:10:00 +0000 | [diff] [blame] | 482 | */ |
Jani Nikula | f49e38d | 2013-04-29 13:02:54 +0300 | [diff] [blame] | 483 | static void i915_enable_asle_pipestat(struct drm_device *dev) |
Zhao Yakui | 01c6688 | 2009-10-28 05:10:00 +0000 | [diff] [blame] | 484 | { |
Jani Nikula | 2d1013d | 2014-03-31 14:27:17 +0300 | [diff] [blame] | 485 | struct drm_i915_private *dev_priv = dev->dev_private; |
Chris Wilson | 1ec14ad | 2010-12-04 11:30:53 +0000 | [diff] [blame] | 486 | |
Jani Nikula | f49e38d | 2013-04-29 13:02:54 +0300 | [diff] [blame] | 487 | if (!dev_priv->opregion.asle || !IS_MOBILE(dev)) |
| 488 | return; |
| 489 | |
Daniel Vetter | 1332178 | 2014-09-15 14:55:29 +0200 | [diff] [blame] | 490 | spin_lock_irq(&dev_priv->irq_lock); |
Zhao Yakui | 01c6688 | 2009-10-28 05:10:00 +0000 | [diff] [blame] | 491 | |
Imre Deak | 755e901 | 2014-02-10 18:42:47 +0200 | [diff] [blame] | 492 | i915_enable_pipestat(dev_priv, PIPE_B, PIPE_LEGACY_BLC_EVENT_STATUS); |
Jani Nikula | f898780 | 2013-04-29 13:02:53 +0300 | [diff] [blame] | 493 | if (INTEL_INFO(dev)->gen >= 4) |
Daniel Vetter | 3b6c42e | 2013-10-21 18:04:35 +0200 | [diff] [blame] | 494 | i915_enable_pipestat(dev_priv, PIPE_A, |
Imre Deak | 755e901 | 2014-02-10 18:42:47 +0200 | [diff] [blame] | 495 | PIPE_LEGACY_BLC_EVENT_STATUS); |
Chris Wilson | 1ec14ad | 2010-12-04 11:30:53 +0000 | [diff] [blame] | 496 | |
Daniel Vetter | 1332178 | 2014-09-15 14:55:29 +0200 | [diff] [blame] | 497 | spin_unlock_irq(&dev_priv->irq_lock); |
Zhao Yakui | 01c6688 | 2009-10-28 05:10:00 +0000 | [diff] [blame] | 498 | } |
| 499 | |
Ville Syrjälä | f75f374 | 2014-05-15 20:20:36 +0300 | [diff] [blame] | 500 | /* |
| 501 | * This timing diagram depicts the video signal in and |
| 502 | * around the vertical blanking period. |
| 503 | * |
| 504 | * Assumptions about the fictitious mode used in this example: |
| 505 | * vblank_start >= 3 |
| 506 | * vsync_start = vblank_start + 1 |
| 507 | * vsync_end = vblank_start + 2 |
| 508 | * vtotal = vblank_start + 3 |
| 509 | * |
| 510 | * start of vblank: |
| 511 | * latch double buffered registers |
| 512 | * increment frame counter (ctg+) |
| 513 | * generate start of vblank interrupt (gen4+) |
| 514 | * | |
| 515 | * | frame start: |
| 516 | * | generate frame start interrupt (aka. vblank interrupt) (gmch) |
| 517 | * | may be shifted forward 1-3 extra lines via PIPECONF |
| 518 | * | | |
| 519 | * | | start of vsync: |
| 520 | * | | generate vsync interrupt |
| 521 | * | | | |
| 522 | * ___xxxx___ ___xxxx___ ___xxxx___ ___xxxx___ ___xxxx___ ___xxxx |
| 523 | * . \hs/ . \hs/ \hs/ \hs/ . \hs/ |
| 524 | * ----va---> <-----------------vb--------------------> <--------va------------- |
| 525 | * | | <----vs-----> | |
| 526 | * -vbs-----> <---vbs+1---> <---vbs+2---> <-----0-----> <-----1-----> <-----2--- (scanline counter gen2) |
| 527 | * -vbs-2---> <---vbs-1---> <---vbs-----> <---vbs+1---> <---vbs+2---> <-----0--- (scanline counter gen3+) |
| 528 | * -vbs-2---> <---vbs-2---> <---vbs-1---> <---vbs-----> <---vbs+1---> <---vbs+2- (scanline counter hsw+ hdmi) |
| 529 | * | | | |
| 530 | * last visible pixel first visible pixel |
| 531 | * | increment frame counter (gen3/4) |
| 532 | * pixel counter = vblank_start * htotal pixel counter = 0 (gen3/4) |
| 533 | * |
| 534 | * x = horizontal active |
| 535 | * _ = horizontal blanking |
| 536 | * hs = horizontal sync |
| 537 | * va = vertical active |
| 538 | * vb = vertical blanking |
| 539 | * vs = vertical sync |
| 540 | * vbs = vblank_start (number) |
| 541 | * |
| 542 | * Summary: |
| 543 | * - most events happen at the start of horizontal sync |
| 544 | * - frame start happens at the start of horizontal blank, 1-4 lines |
| 545 | * (depending on PIPECONF settings) after the start of vblank |
| 546 | * - gen3/4 pixel and frame counter are synchronized with the start |
| 547 | * of horizontal active on the first line of vertical active |
| 548 | */ |
| 549 | |
Ville Syrjälä | 4cdb83e | 2013-10-11 21:52:44 +0300 | [diff] [blame] | 550 | static u32 i8xx_get_vblank_counter(struct drm_device *dev, int pipe) |
| 551 | { |
| 552 | /* Gen2 doesn't have a hardware frame counter */ |
| 553 | return 0; |
| 554 | } |
| 555 | |
Keith Packard | 42f52ef | 2008-10-18 19:39:29 -0700 | [diff] [blame] | 556 | /* Called from drm generic code, passed a 'crtc', which |
| 557 | * we use as a pipe index |
| 558 | */ |
Jesse Barnes | f71d4af | 2011-06-28 13:00:41 -0700 | [diff] [blame] | 559 | static u32 i915_get_vblank_counter(struct drm_device *dev, int pipe) |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 560 | { |
Jani Nikula | 2d1013d | 2014-03-31 14:27:17 +0300 | [diff] [blame] | 561 | struct drm_i915_private *dev_priv = dev->dev_private; |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 562 | unsigned long high_frame; |
| 563 | unsigned long low_frame; |
Ville Syrjälä | 0b2a8e0 | 2014-04-29 13:35:50 +0300 | [diff] [blame] | 564 | u32 high1, high2, low, pixel, vbl_start, hsync_start, htotal; |
Daniel Vetter | f3a5c3f | 2015-02-13 21:03:44 +0100 | [diff] [blame] | 565 | struct intel_crtc *intel_crtc = |
| 566 | to_intel_crtc(dev_priv->pipe_to_crtc_mapping[pipe]); |
Maarten Lankhorst | fc467a22 | 2015-06-01 12:50:07 +0200 | [diff] [blame] | 567 | const struct drm_display_mode *mode = &intel_crtc->base.hwmode; |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 568 | |
Daniel Vetter | f3a5c3f | 2015-02-13 21:03:44 +0100 | [diff] [blame] | 569 | htotal = mode->crtc_htotal; |
| 570 | hsync_start = mode->crtc_hsync_start; |
| 571 | vbl_start = mode->crtc_vblank_start; |
| 572 | if (mode->flags & DRM_MODE_FLAG_INTERLACE) |
| 573 | vbl_start = DIV_ROUND_UP(vbl_start, 2); |
Ville Syrjälä | 391f75e | 2013-09-25 19:55:26 +0300 | [diff] [blame] | 574 | |
Ville Syrjälä | 0b2a8e0 | 2014-04-29 13:35:50 +0300 | [diff] [blame] | 575 | /* Convert to pixel count */ |
| 576 | vbl_start *= htotal; |
| 577 | |
| 578 | /* Start of vblank event occurs at start of hsync */ |
| 579 | vbl_start -= htotal - hsync_start; |
| 580 | |
Jesse Barnes | 9db4a9c | 2011-02-07 12:26:52 -0800 | [diff] [blame] | 581 | high_frame = PIPEFRAME(pipe); |
| 582 | low_frame = PIPEFRAMEPIXEL(pipe); |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 583 | |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 584 | /* |
| 585 | * High & low register fields aren't synchronized, so make sure |
| 586 | * we get a low value that's stable across two reads of the high |
| 587 | * register. |
| 588 | */ |
| 589 | do { |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 590 | high1 = I915_READ(high_frame) & PIPE_FRAME_HIGH_MASK; |
Ville Syrjälä | 391f75e | 2013-09-25 19:55:26 +0300 | [diff] [blame] | 591 | low = I915_READ(low_frame); |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 592 | high2 = I915_READ(high_frame) & PIPE_FRAME_HIGH_MASK; |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 593 | } while (high1 != high2); |
| 594 | |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 595 | high1 >>= PIPE_FRAME_HIGH_SHIFT; |
Ville Syrjälä | 391f75e | 2013-09-25 19:55:26 +0300 | [diff] [blame] | 596 | pixel = low & PIPE_PIXEL_MASK; |
Chris Wilson | 5eddb70 | 2010-09-11 13:48:45 +0100 | [diff] [blame] | 597 | low >>= PIPE_FRAME_LOW_SHIFT; |
Ville Syrjälä | 391f75e | 2013-09-25 19:55:26 +0300 | [diff] [blame] | 598 | |
| 599 | /* |
| 600 | * The frame counter increments at beginning of active. |
| 601 | * Cook up a vblank counter by also checking the pixel |
| 602 | * counter against vblank start. |
| 603 | */ |
Ville Syrjälä | edc08d0 | 2013-11-06 13:56:27 -0200 | [diff] [blame] | 604 | return (((high1 << 8) | low) + (pixel >= vbl_start)) & 0xffffff; |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 605 | } |
| 606 | |
Jesse Barnes | f71d4af | 2011-06-28 13:00:41 -0700 | [diff] [blame] | 607 | static u32 gm45_get_vblank_counter(struct drm_device *dev, int pipe) |
Jesse Barnes | 9880b7a | 2009-02-06 10:22:41 -0800 | [diff] [blame] | 608 | { |
Jani Nikula | 2d1013d | 2014-03-31 14:27:17 +0300 | [diff] [blame] | 609 | struct drm_i915_private *dev_priv = dev->dev_private; |
Jesse Barnes | 9db4a9c | 2011-02-07 12:26:52 -0800 | [diff] [blame] | 610 | int reg = PIPE_FRMCOUNT_GM45(pipe); |
Jesse Barnes | 9880b7a | 2009-02-06 10:22:41 -0800 | [diff] [blame] | 611 | |
Jesse Barnes | 9880b7a | 2009-02-06 10:22:41 -0800 | [diff] [blame] | 612 | return I915_READ(reg); |
| 613 | } |
| 614 | |
Mario Kleiner | ad3543e | 2013-10-30 05:13:08 +0100 | [diff] [blame] | 615 | /* raw reads, only for fast reads of display block, no need for forcewake etc. */ |
| 616 | #define __raw_i915_read32(dev_priv__, reg__) readl((dev_priv__)->regs + (reg__)) |
Mario Kleiner | ad3543e | 2013-10-30 05:13:08 +0100 | [diff] [blame] | 617 | |
Ville Syrjälä | a225f07 | 2014-04-29 13:35:45 +0300 | [diff] [blame] | 618 | static int __intel_get_crtc_scanline(struct intel_crtc *crtc) |
| 619 | { |
| 620 | struct drm_device *dev = crtc->base.dev; |
| 621 | struct drm_i915_private *dev_priv = dev->dev_private; |
Maarten Lankhorst | fc467a22 | 2015-06-01 12:50:07 +0200 | [diff] [blame] | 622 | const struct drm_display_mode *mode = &crtc->base.hwmode; |
Ville Syrjälä | a225f07 | 2014-04-29 13:35:45 +0300 | [diff] [blame] | 623 | enum pipe pipe = crtc->pipe; |
Ville Syrjälä | 80715b2 | 2014-05-15 20:23:23 +0300 | [diff] [blame] | 624 | int position, vtotal; |
Ville Syrjälä | a225f07 | 2014-04-29 13:35:45 +0300 | [diff] [blame] | 625 | |
Ville Syrjälä | 80715b2 | 2014-05-15 20:23:23 +0300 | [diff] [blame] | 626 | vtotal = mode->crtc_vtotal; |
Ville Syrjälä | a225f07 | 2014-04-29 13:35:45 +0300 | [diff] [blame] | 627 | if (mode->flags & DRM_MODE_FLAG_INTERLACE) |
| 628 | vtotal /= 2; |
| 629 | |
| 630 | if (IS_GEN2(dev)) |
| 631 | position = __raw_i915_read32(dev_priv, PIPEDSL(pipe)) & DSL_LINEMASK_GEN2; |
| 632 | else |
| 633 | position = __raw_i915_read32(dev_priv, PIPEDSL(pipe)) & DSL_LINEMASK_GEN3; |
| 634 | |
| 635 | /* |
Ville Syrjälä | 80715b2 | 2014-05-15 20:23:23 +0300 | [diff] [blame] | 636 | * See update_scanline_offset() for the details on the |
| 637 | * scanline_offset adjustment. |
Ville Syrjälä | a225f07 | 2014-04-29 13:35:45 +0300 | [diff] [blame] | 638 | */ |
Ville Syrjälä | 80715b2 | 2014-05-15 20:23:23 +0300 | [diff] [blame] | 639 | return (position + crtc->scanline_offset) % vtotal; |
Ville Syrjälä | a225f07 | 2014-04-29 13:35:45 +0300 | [diff] [blame] | 640 | } |
| 641 | |
Jesse Barnes | f71d4af | 2011-06-28 13:00:41 -0700 | [diff] [blame] | 642 | static int i915_get_crtc_scanoutpos(struct drm_device *dev, int pipe, |
Ville Syrjälä | abca9e4 | 2013-10-28 20:50:48 +0200 | [diff] [blame] | 643 | unsigned int flags, int *vpos, int *hpos, |
| 644 | ktime_t *stime, ktime_t *etime) |
Mario Kleiner | 0af7e4d | 2010-12-08 04:07:19 +0100 | [diff] [blame] | 645 | { |
Ville Syrjälä | c2baf4b | 2013-09-23 14:48:50 +0300 | [diff] [blame] | 646 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 647 | struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe]; |
| 648 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
Maarten Lankhorst | fc467a22 | 2015-06-01 12:50:07 +0200 | [diff] [blame] | 649 | const struct drm_display_mode *mode = &intel_crtc->base.hwmode; |
Ville Syrjälä | 3aa18df | 2013-10-11 19:10:32 +0300 | [diff] [blame] | 650 | int position; |
Ville Syrjälä | 78e8fc6 | 2014-04-29 13:35:44 +0300 | [diff] [blame] | 651 | int vbl_start, vbl_end, hsync_start, htotal, vtotal; |
Mario Kleiner | 0af7e4d | 2010-12-08 04:07:19 +0100 | [diff] [blame] | 652 | bool in_vbl = true; |
| 653 | int ret = 0; |
Mario Kleiner | ad3543e | 2013-10-30 05:13:08 +0100 | [diff] [blame] | 654 | unsigned long irqflags; |
Mario Kleiner | 0af7e4d | 2010-12-08 04:07:19 +0100 | [diff] [blame] | 655 | |
Maarten Lankhorst | fc467a22 | 2015-06-01 12:50:07 +0200 | [diff] [blame] | 656 | if (WARN_ON(!mode->crtc_clock)) { |
Mario Kleiner | 0af7e4d | 2010-12-08 04:07:19 +0100 | [diff] [blame] | 657 | DRM_DEBUG_DRIVER("trying to get scanoutpos for disabled " |
Jesse Barnes | 9db4a9c | 2011-02-07 12:26:52 -0800 | [diff] [blame] | 658 | "pipe %c\n", pipe_name(pipe)); |
Mario Kleiner | 0af7e4d | 2010-12-08 04:07:19 +0100 | [diff] [blame] | 659 | return 0; |
| 660 | } |
| 661 | |
Ville Syrjälä | c2baf4b | 2013-09-23 14:48:50 +0300 | [diff] [blame] | 662 | htotal = mode->crtc_htotal; |
Ville Syrjälä | 78e8fc6 | 2014-04-29 13:35:44 +0300 | [diff] [blame] | 663 | hsync_start = mode->crtc_hsync_start; |
Ville Syrjälä | c2baf4b | 2013-09-23 14:48:50 +0300 | [diff] [blame] | 664 | vtotal = mode->crtc_vtotal; |
| 665 | vbl_start = mode->crtc_vblank_start; |
| 666 | vbl_end = mode->crtc_vblank_end; |
Mario Kleiner | 0af7e4d | 2010-12-08 04:07:19 +0100 | [diff] [blame] | 667 | |
Ville Syrjälä | d31faf6 | 2013-10-28 16:31:41 +0200 | [diff] [blame] | 668 | if (mode->flags & DRM_MODE_FLAG_INTERLACE) { |
| 669 | vbl_start = DIV_ROUND_UP(vbl_start, 2); |
| 670 | vbl_end /= 2; |
| 671 | vtotal /= 2; |
| 672 | } |
| 673 | |
Ville Syrjälä | c2baf4b | 2013-09-23 14:48:50 +0300 | [diff] [blame] | 674 | ret |= DRM_SCANOUTPOS_VALID | DRM_SCANOUTPOS_ACCURATE; |
| 675 | |
Mario Kleiner | ad3543e | 2013-10-30 05:13:08 +0100 | [diff] [blame] | 676 | /* |
| 677 | * Lock uncore.lock, as we will do multiple timing critical raw |
| 678 | * register reads, potentially with preemption disabled, so the |
| 679 | * following code must not block on uncore.lock. |
| 680 | */ |
| 681 | spin_lock_irqsave(&dev_priv->uncore.lock, irqflags); |
Ville Syrjälä | 78e8fc6 | 2014-04-29 13:35:44 +0300 | [diff] [blame] | 682 | |
Mario Kleiner | ad3543e | 2013-10-30 05:13:08 +0100 | [diff] [blame] | 683 | /* preempt_disable_rt() should go right here in PREEMPT_RT patchset. */ |
| 684 | |
| 685 | /* Get optional system timestamp before query. */ |
| 686 | if (stime) |
| 687 | *stime = ktime_get(); |
| 688 | |
Ville Syrjälä | 7c06b08 | 2013-10-11 21:52:43 +0300 | [diff] [blame] | 689 | if (IS_GEN2(dev) || IS_G4X(dev) || INTEL_INFO(dev)->gen >= 5) { |
Mario Kleiner | 0af7e4d | 2010-12-08 04:07:19 +0100 | [diff] [blame] | 690 | /* No obvious pixelcount register. Only query vertical |
| 691 | * scanout position from Display scan line register. |
| 692 | */ |
Ville Syrjälä | a225f07 | 2014-04-29 13:35:45 +0300 | [diff] [blame] | 693 | position = __intel_get_crtc_scanline(intel_crtc); |
Mario Kleiner | 0af7e4d | 2010-12-08 04:07:19 +0100 | [diff] [blame] | 694 | } else { |
| 695 | /* Have access to pixelcount since start of frame. |
| 696 | * We can split this into vertical and horizontal |
| 697 | * scanout position. |
| 698 | */ |
Mario Kleiner | ad3543e | 2013-10-30 05:13:08 +0100 | [diff] [blame] | 699 | position = (__raw_i915_read32(dev_priv, PIPEFRAMEPIXEL(pipe)) & PIPE_PIXEL_MASK) >> PIPE_PIXEL_SHIFT; |
Mario Kleiner | 0af7e4d | 2010-12-08 04:07:19 +0100 | [diff] [blame] | 700 | |
Ville Syrjälä | 3aa18df | 2013-10-11 19:10:32 +0300 | [diff] [blame] | 701 | /* convert to pixel counts */ |
| 702 | vbl_start *= htotal; |
| 703 | vbl_end *= htotal; |
| 704 | vtotal *= htotal; |
Ville Syrjälä | 78e8fc6 | 2014-04-29 13:35:44 +0300 | [diff] [blame] | 705 | |
| 706 | /* |
Ville Syrjälä | 7e78f1cb | 2014-04-29 13:35:49 +0300 | [diff] [blame] | 707 | * In interlaced modes, the pixel counter counts all pixels, |
| 708 | * so one field will have htotal more pixels. In order to avoid |
| 709 | * the reported position from jumping backwards when the pixel |
| 710 | * counter is beyond the length of the shorter field, just |
| 711 | * clamp the position the length of the shorter field. This |
| 712 | * matches how the scanline counter based position works since |
| 713 | * the scanline counter doesn't count the two half lines. |
| 714 | */ |
| 715 | if (position >= vtotal) |
| 716 | position = vtotal - 1; |
| 717 | |
| 718 | /* |
Ville Syrjälä | 78e8fc6 | 2014-04-29 13:35:44 +0300 | [diff] [blame] | 719 | * Start of vblank interrupt is triggered at start of hsync, |
| 720 | * just prior to the first active line of vblank. However we |
| 721 | * consider lines to start at the leading edge of horizontal |
| 722 | * active. So, should we get here before we've crossed into |
| 723 | * the horizontal active of the first line in vblank, we would |
| 724 | * not set the DRM_SCANOUTPOS_INVBL flag. In order to fix that, |
| 725 | * always add htotal-hsync_start to the current pixel position. |
| 726 | */ |
| 727 | position = (position + htotal - hsync_start) % vtotal; |
Ville Syrjälä | 3aa18df | 2013-10-11 19:10:32 +0300 | [diff] [blame] | 728 | } |
| 729 | |
Mario Kleiner | ad3543e | 2013-10-30 05:13:08 +0100 | [diff] [blame] | 730 | /* Get optional system timestamp after query. */ |
| 731 | if (etime) |
| 732 | *etime = ktime_get(); |
| 733 | |
| 734 | /* preempt_enable_rt() should go right here in PREEMPT_RT patchset. */ |
| 735 | |
| 736 | spin_unlock_irqrestore(&dev_priv->uncore.lock, irqflags); |
| 737 | |
Ville Syrjälä | 3aa18df | 2013-10-11 19:10:32 +0300 | [diff] [blame] | 738 | in_vbl = position >= vbl_start && position < vbl_end; |
| 739 | |
| 740 | /* |
| 741 | * While in vblank, position will be negative |
| 742 | * counting up towards 0 at vbl_end. And outside |
| 743 | * vblank, position will be positive counting |
| 744 | * up since vbl_end. |
| 745 | */ |
| 746 | if (position >= vbl_start) |
| 747 | position -= vbl_end; |
| 748 | else |
| 749 | position += vtotal - vbl_end; |
| 750 | |
Ville Syrjälä | 7c06b08 | 2013-10-11 21:52:43 +0300 | [diff] [blame] | 751 | if (IS_GEN2(dev) || IS_G4X(dev) || INTEL_INFO(dev)->gen >= 5) { |
Ville Syrjälä | 3aa18df | 2013-10-11 19:10:32 +0300 | [diff] [blame] | 752 | *vpos = position; |
| 753 | *hpos = 0; |
| 754 | } else { |
Mario Kleiner | 0af7e4d | 2010-12-08 04:07:19 +0100 | [diff] [blame] | 755 | *vpos = position / htotal; |
| 756 | *hpos = position - (*vpos * htotal); |
| 757 | } |
| 758 | |
Mario Kleiner | 0af7e4d | 2010-12-08 04:07:19 +0100 | [diff] [blame] | 759 | /* In vblank? */ |
| 760 | if (in_vbl) |
Daniel Vetter | 3d3cbd8 | 2014-09-10 17:36:11 +0200 | [diff] [blame] | 761 | ret |= DRM_SCANOUTPOS_IN_VBLANK; |
Mario Kleiner | 0af7e4d | 2010-12-08 04:07:19 +0100 | [diff] [blame] | 762 | |
| 763 | return ret; |
| 764 | } |
| 765 | |
Ville Syrjälä | a225f07 | 2014-04-29 13:35:45 +0300 | [diff] [blame] | 766 | int intel_get_crtc_scanline(struct intel_crtc *crtc) |
| 767 | { |
| 768 | struct drm_i915_private *dev_priv = crtc->base.dev->dev_private; |
| 769 | unsigned long irqflags; |
| 770 | int position; |
| 771 | |
| 772 | spin_lock_irqsave(&dev_priv->uncore.lock, irqflags); |
| 773 | position = __intel_get_crtc_scanline(crtc); |
| 774 | spin_unlock_irqrestore(&dev_priv->uncore.lock, irqflags); |
| 775 | |
| 776 | return position; |
| 777 | } |
| 778 | |
Jesse Barnes | f71d4af | 2011-06-28 13:00:41 -0700 | [diff] [blame] | 779 | static int i915_get_vblank_timestamp(struct drm_device *dev, int pipe, |
Mario Kleiner | 0af7e4d | 2010-12-08 04:07:19 +0100 | [diff] [blame] | 780 | int *max_error, |
| 781 | struct timeval *vblank_time, |
| 782 | unsigned flags) |
| 783 | { |
Chris Wilson | 4041b85 | 2011-01-22 10:07:56 +0000 | [diff] [blame] | 784 | struct drm_crtc *crtc; |
Mario Kleiner | 0af7e4d | 2010-12-08 04:07:19 +0100 | [diff] [blame] | 785 | |
Ben Widawsky | 7eb552a | 2013-03-13 14:05:41 -0700 | [diff] [blame] | 786 | if (pipe < 0 || pipe >= INTEL_INFO(dev)->num_pipes) { |
Chris Wilson | 4041b85 | 2011-01-22 10:07:56 +0000 | [diff] [blame] | 787 | DRM_ERROR("Invalid crtc %d\n", pipe); |
Mario Kleiner | 0af7e4d | 2010-12-08 04:07:19 +0100 | [diff] [blame] | 788 | return -EINVAL; |
| 789 | } |
| 790 | |
| 791 | /* Get drm_crtc to timestamp: */ |
Chris Wilson | 4041b85 | 2011-01-22 10:07:56 +0000 | [diff] [blame] | 792 | crtc = intel_get_crtc_for_pipe(dev, pipe); |
| 793 | if (crtc == NULL) { |
| 794 | DRM_ERROR("Invalid crtc %d\n", pipe); |
| 795 | return -EINVAL; |
| 796 | } |
| 797 | |
Maarten Lankhorst | fc467a22 | 2015-06-01 12:50:07 +0200 | [diff] [blame] | 798 | if (!crtc->hwmode.crtc_clock) { |
Chris Wilson | 4041b85 | 2011-01-22 10:07:56 +0000 | [diff] [blame] | 799 | DRM_DEBUG_KMS("crtc %d is disabled\n", pipe); |
| 800 | return -EBUSY; |
| 801 | } |
Mario Kleiner | 0af7e4d | 2010-12-08 04:07:19 +0100 | [diff] [blame] | 802 | |
| 803 | /* Helper routine in DRM core does all the work: */ |
Chris Wilson | 4041b85 | 2011-01-22 10:07:56 +0000 | [diff] [blame] | 804 | return drm_calc_vbltimestamp_from_scanoutpos(dev, pipe, max_error, |
| 805 | vblank_time, flags, |
Ville Syrjälä | 7da903e | 2013-10-26 17:57:31 +0300 | [diff] [blame] | 806 | crtc, |
Maarten Lankhorst | fc467a22 | 2015-06-01 12:50:07 +0200 | [diff] [blame] | 807 | &crtc->hwmode); |
Mario Kleiner | 0af7e4d | 2010-12-08 04:07:19 +0100 | [diff] [blame] | 808 | } |
| 809 | |
Daniel Vetter | d0ecd7e | 2013-07-04 23:35:25 +0200 | [diff] [blame] | 810 | static void ironlake_rps_change_irq_handler(struct drm_device *dev) |
Jesse Barnes | f97108d | 2010-01-29 11:27:07 -0800 | [diff] [blame] | 811 | { |
Jani Nikula | 2d1013d | 2014-03-31 14:27:17 +0300 | [diff] [blame] | 812 | struct drm_i915_private *dev_priv = dev->dev_private; |
Matthew Garrett | b5b72e8 | 2010-02-02 18:30:47 +0000 | [diff] [blame] | 813 | u32 busy_up, busy_down, max_avg, min_avg; |
Daniel Vetter | 9270388 | 2012-08-09 16:46:01 +0200 | [diff] [blame] | 814 | u8 new_delay; |
Daniel Vetter | 9270388 | 2012-08-09 16:46:01 +0200 | [diff] [blame] | 815 | |
Daniel Vetter | d0ecd7e | 2013-07-04 23:35:25 +0200 | [diff] [blame] | 816 | spin_lock(&mchdev_lock); |
Jesse Barnes | f97108d | 2010-01-29 11:27:07 -0800 | [diff] [blame] | 817 | |
Daniel Vetter | 73edd18f | 2012-08-08 23:35:37 +0200 | [diff] [blame] | 818 | I915_WRITE16(MEMINTRSTS, I915_READ(MEMINTRSTS)); |
| 819 | |
Daniel Vetter | 20e4d40 | 2012-08-08 23:35:39 +0200 | [diff] [blame] | 820 | new_delay = dev_priv->ips.cur_delay; |
Daniel Vetter | 9270388 | 2012-08-09 16:46:01 +0200 | [diff] [blame] | 821 | |
Jesse Barnes | 7648fa9 | 2010-05-20 14:28:11 -0700 | [diff] [blame] | 822 | I915_WRITE16(MEMINTRSTS, MEMINT_EVAL_CHG); |
Matthew Garrett | b5b72e8 | 2010-02-02 18:30:47 +0000 | [diff] [blame] | 823 | busy_up = I915_READ(RCPREVBSYTUPAVG); |
| 824 | busy_down = I915_READ(RCPREVBSYTDNAVG); |
Jesse Barnes | f97108d | 2010-01-29 11:27:07 -0800 | [diff] [blame] | 825 | max_avg = I915_READ(RCBMAXAVG); |
| 826 | min_avg = I915_READ(RCBMINAVG); |
| 827 | |
| 828 | /* Handle RCS change request from hw */ |
Matthew Garrett | b5b72e8 | 2010-02-02 18:30:47 +0000 | [diff] [blame] | 829 | if (busy_up > max_avg) { |
Daniel Vetter | 20e4d40 | 2012-08-08 23:35:39 +0200 | [diff] [blame] | 830 | if (dev_priv->ips.cur_delay != dev_priv->ips.max_delay) |
| 831 | new_delay = dev_priv->ips.cur_delay - 1; |
| 832 | if (new_delay < dev_priv->ips.max_delay) |
| 833 | new_delay = dev_priv->ips.max_delay; |
Matthew Garrett | b5b72e8 | 2010-02-02 18:30:47 +0000 | [diff] [blame] | 834 | } else if (busy_down < min_avg) { |
Daniel Vetter | 20e4d40 | 2012-08-08 23:35:39 +0200 | [diff] [blame] | 835 | if (dev_priv->ips.cur_delay != dev_priv->ips.min_delay) |
| 836 | new_delay = dev_priv->ips.cur_delay + 1; |
| 837 | if (new_delay > dev_priv->ips.min_delay) |
| 838 | new_delay = dev_priv->ips.min_delay; |
Jesse Barnes | f97108d | 2010-01-29 11:27:07 -0800 | [diff] [blame] | 839 | } |
| 840 | |
Jesse Barnes | 7648fa9 | 2010-05-20 14:28:11 -0700 | [diff] [blame] | 841 | if (ironlake_set_drps(dev, new_delay)) |
Daniel Vetter | 20e4d40 | 2012-08-08 23:35:39 +0200 | [diff] [blame] | 842 | dev_priv->ips.cur_delay = new_delay; |
Jesse Barnes | f97108d | 2010-01-29 11:27:07 -0800 | [diff] [blame] | 843 | |
Daniel Vetter | d0ecd7e | 2013-07-04 23:35:25 +0200 | [diff] [blame] | 844 | spin_unlock(&mchdev_lock); |
Daniel Vetter | 9270388 | 2012-08-09 16:46:01 +0200 | [diff] [blame] | 845 | |
Jesse Barnes | f97108d | 2010-01-29 11:27:07 -0800 | [diff] [blame] | 846 | return; |
| 847 | } |
| 848 | |
Chris Wilson | 74cdb33 | 2015-04-07 16:21:05 +0100 | [diff] [blame] | 849 | static void notify_ring(struct intel_engine_cs *ring) |
Chris Wilson | 549f736 | 2010-10-19 11:19:32 +0100 | [diff] [blame] | 850 | { |
Oscar Mateo | 93b0a4e | 2014-05-22 14:13:36 +0100 | [diff] [blame] | 851 | if (!intel_ring_initialized(ring)) |
Chris Wilson | 475553d | 2011-01-20 09:52:56 +0000 | [diff] [blame] | 852 | return; |
| 853 | |
John Harrison | bcfcc8b | 2014-12-05 13:49:36 +0000 | [diff] [blame] | 854 | trace_i915_gem_request_notify(ring); |
Chris Wilson | 9862e60 | 2011-01-04 22:22:17 +0000 | [diff] [blame] | 855 | |
Chris Wilson | 549f736 | 2010-10-19 11:19:32 +0100 | [diff] [blame] | 856 | wake_up_all(&ring->irq_queue); |
Chris Wilson | 549f736 | 2010-10-19 11:19:32 +0100 | [diff] [blame] | 857 | } |
| 858 | |
Chris Wilson | 43cf3bf | 2015-03-18 09:48:22 +0000 | [diff] [blame] | 859 | static void vlv_c0_read(struct drm_i915_private *dev_priv, |
| 860 | struct intel_rps_ei *ei) |
Deepak S | 31685c2 | 2014-07-03 17:33:01 -0400 | [diff] [blame] | 861 | { |
Chris Wilson | 43cf3bf | 2015-03-18 09:48:22 +0000 | [diff] [blame] | 862 | ei->cz_clock = vlv_punit_read(dev_priv, PUNIT_REG_CZ_TIMESTAMP); |
| 863 | ei->render_c0 = I915_READ(VLV_RENDER_C0_COUNT); |
| 864 | ei->media_c0 = I915_READ(VLV_MEDIA_C0_COUNT); |
Deepak S | 31685c2 | 2014-07-03 17:33:01 -0400 | [diff] [blame] | 865 | } |
| 866 | |
Chris Wilson | 43cf3bf | 2015-03-18 09:48:22 +0000 | [diff] [blame] | 867 | static bool vlv_c0_above(struct drm_i915_private *dev_priv, |
| 868 | const struct intel_rps_ei *old, |
| 869 | const struct intel_rps_ei *now, |
| 870 | int threshold) |
Deepak S | 31685c2 | 2014-07-03 17:33:01 -0400 | [diff] [blame] | 871 | { |
Chris Wilson | 43cf3bf | 2015-03-18 09:48:22 +0000 | [diff] [blame] | 872 | u64 time, c0; |
Deepak S | 31685c2 | 2014-07-03 17:33:01 -0400 | [diff] [blame] | 873 | |
Chris Wilson | 43cf3bf | 2015-03-18 09:48:22 +0000 | [diff] [blame] | 874 | if (old->cz_clock == 0) |
| 875 | return false; |
Deepak S | 31685c2 | 2014-07-03 17:33:01 -0400 | [diff] [blame] | 876 | |
Chris Wilson | 43cf3bf | 2015-03-18 09:48:22 +0000 | [diff] [blame] | 877 | time = now->cz_clock - old->cz_clock; |
| 878 | time *= threshold * dev_priv->mem_freq; |
Deepak S | 31685c2 | 2014-07-03 17:33:01 -0400 | [diff] [blame] | 879 | |
Chris Wilson | 43cf3bf | 2015-03-18 09:48:22 +0000 | [diff] [blame] | 880 | /* Workload can be split between render + media, e.g. SwapBuffers |
| 881 | * being blitted in X after being rendered in mesa. To account for |
| 882 | * this we need to combine both engines into our activity counter. |
| 883 | */ |
| 884 | c0 = now->render_c0 - old->render_c0; |
| 885 | c0 += now->media_c0 - old->media_c0; |
| 886 | c0 *= 100 * VLV_CZ_CLOCK_TO_MILLI_SEC * 4 / 1000; |
Deepak S | 31685c2 | 2014-07-03 17:33:01 -0400 | [diff] [blame] | 887 | |
Chris Wilson | 43cf3bf | 2015-03-18 09:48:22 +0000 | [diff] [blame] | 888 | return c0 >= time; |
| 889 | } |
Deepak S | 31685c2 | 2014-07-03 17:33:01 -0400 | [diff] [blame] | 890 | |
Chris Wilson | 43cf3bf | 2015-03-18 09:48:22 +0000 | [diff] [blame] | 891 | void gen6_rps_reset_ei(struct drm_i915_private *dev_priv) |
| 892 | { |
| 893 | vlv_c0_read(dev_priv, &dev_priv->rps.down_ei); |
| 894 | dev_priv->rps.up_ei = dev_priv->rps.down_ei; |
Chris Wilson | 43cf3bf | 2015-03-18 09:48:22 +0000 | [diff] [blame] | 895 | } |
| 896 | |
| 897 | static u32 vlv_wa_c0_ei(struct drm_i915_private *dev_priv, u32 pm_iir) |
| 898 | { |
| 899 | struct intel_rps_ei now; |
| 900 | u32 events = 0; |
| 901 | |
Chris Wilson | 6f4b12f8 | 2015-03-18 09:48:23 +0000 | [diff] [blame] | 902 | if ((pm_iir & (GEN6_PM_RP_DOWN_EI_EXPIRED | GEN6_PM_RP_UP_EI_EXPIRED)) == 0) |
Chris Wilson | 43cf3bf | 2015-03-18 09:48:22 +0000 | [diff] [blame] | 903 | return 0; |
| 904 | |
| 905 | vlv_c0_read(dev_priv, &now); |
| 906 | if (now.cz_clock == 0) |
| 907 | return 0; |
Deepak S | 31685c2 | 2014-07-03 17:33:01 -0400 | [diff] [blame] | 908 | |
Chris Wilson | 43cf3bf | 2015-03-18 09:48:22 +0000 | [diff] [blame] | 909 | if (pm_iir & GEN6_PM_RP_DOWN_EI_EXPIRED) { |
| 910 | if (!vlv_c0_above(dev_priv, |
| 911 | &dev_priv->rps.down_ei, &now, |
Chris Wilson | 8fb5519 | 2015-04-07 16:20:28 +0100 | [diff] [blame] | 912 | dev_priv->rps.down_threshold)) |
Chris Wilson | 43cf3bf | 2015-03-18 09:48:22 +0000 | [diff] [blame] | 913 | events |= GEN6_PM_RP_DOWN_THRESHOLD; |
| 914 | dev_priv->rps.down_ei = now; |
Deepak S | 31685c2 | 2014-07-03 17:33:01 -0400 | [diff] [blame] | 915 | } |
| 916 | |
Chris Wilson | 43cf3bf | 2015-03-18 09:48:22 +0000 | [diff] [blame] | 917 | if (pm_iir & GEN6_PM_RP_UP_EI_EXPIRED) { |
| 918 | if (vlv_c0_above(dev_priv, |
| 919 | &dev_priv->rps.up_ei, &now, |
Chris Wilson | 8fb5519 | 2015-04-07 16:20:28 +0100 | [diff] [blame] | 920 | dev_priv->rps.up_threshold)) |
Chris Wilson | 43cf3bf | 2015-03-18 09:48:22 +0000 | [diff] [blame] | 921 | events |= GEN6_PM_RP_UP_THRESHOLD; |
| 922 | dev_priv->rps.up_ei = now; |
| 923 | } |
| 924 | |
| 925 | return events; |
Deepak S | 31685c2 | 2014-07-03 17:33:01 -0400 | [diff] [blame] | 926 | } |
| 927 | |
Chris Wilson | f5a4c67 | 2015-04-27 13:41:23 +0100 | [diff] [blame] | 928 | static bool any_waiters(struct drm_i915_private *dev_priv) |
| 929 | { |
| 930 | struct intel_engine_cs *ring; |
| 931 | int i; |
| 932 | |
| 933 | for_each_ring(ring, dev_priv, i) |
| 934 | if (ring->irq_refcount) |
| 935 | return true; |
| 936 | |
| 937 | return false; |
| 938 | } |
| 939 | |
Ben Widawsky | 4912d04 | 2011-04-25 11:25:20 -0700 | [diff] [blame] | 940 | static void gen6_pm_rps_work(struct work_struct *work) |
Jesse Barnes | 3b8d8d9 | 2010-12-17 14:19:02 -0800 | [diff] [blame] | 941 | { |
Jani Nikula | 2d1013d | 2014-03-31 14:27:17 +0300 | [diff] [blame] | 942 | struct drm_i915_private *dev_priv = |
| 943 | container_of(work, struct drm_i915_private, rps.work); |
Chris Wilson | 8d3afd7 | 2015-05-21 21:01:47 +0100 | [diff] [blame] | 944 | bool client_boost; |
| 945 | int new_delay, adj, min, max; |
Paulo Zanoni | edbfdb4 | 2013-08-06 18:57:13 -0300 | [diff] [blame] | 946 | u32 pm_iir; |
Jesse Barnes | 3b8d8d9 | 2010-12-17 14:19:02 -0800 | [diff] [blame] | 947 | |
Daniel Vetter | 59cdb63 | 2013-07-04 23:35:28 +0200 | [diff] [blame] | 948 | spin_lock_irq(&dev_priv->irq_lock); |
Imre Deak | d4d70aa | 2014-11-19 15:30:04 +0200 | [diff] [blame] | 949 | /* Speed up work cancelation during disabling rps interrupts. */ |
| 950 | if (!dev_priv->rps.interrupts_enabled) { |
| 951 | spin_unlock_irq(&dev_priv->irq_lock); |
| 952 | return; |
| 953 | } |
Daniel Vetter | c6a828d | 2012-08-08 23:35:35 +0200 | [diff] [blame] | 954 | pm_iir = dev_priv->rps.pm_iir; |
| 955 | dev_priv->rps.pm_iir = 0; |
Imre Deak | a72fbc3 | 2014-11-05 20:48:31 +0200 | [diff] [blame] | 956 | /* Make sure not to corrupt PMIMR state used by ringbuffer on GEN6 */ |
| 957 | gen6_enable_pm_irq(dev_priv, dev_priv->pm_rps_events); |
Chris Wilson | 8d3afd7 | 2015-05-21 21:01:47 +0100 | [diff] [blame] | 958 | client_boost = dev_priv->rps.client_boost; |
| 959 | dev_priv->rps.client_boost = false; |
Daniel Vetter | 59cdb63 | 2013-07-04 23:35:28 +0200 | [diff] [blame] | 960 | spin_unlock_irq(&dev_priv->irq_lock); |
Ben Widawsky | 4912d04 | 2011-04-25 11:25:20 -0700 | [diff] [blame] | 961 | |
Paulo Zanoni | 60611c1 | 2013-08-15 11:50:01 -0300 | [diff] [blame] | 962 | /* Make sure we didn't queue anything we're not going to process. */ |
Deepak S | a6706b4 | 2014-03-15 20:23:22 +0530 | [diff] [blame] | 963 | WARN_ON(pm_iir & ~dev_priv->pm_rps_events); |
Paulo Zanoni | 60611c1 | 2013-08-15 11:50:01 -0300 | [diff] [blame] | 964 | |
Chris Wilson | 8d3afd7 | 2015-05-21 21:01:47 +0100 | [diff] [blame] | 965 | if ((pm_iir & dev_priv->pm_rps_events) == 0 && !client_boost) |
Jesse Barnes | 3b8d8d9 | 2010-12-17 14:19:02 -0800 | [diff] [blame] | 966 | return; |
| 967 | |
Jesse Barnes | 4fc688c | 2012-11-02 11:14:01 -0700 | [diff] [blame] | 968 | mutex_lock(&dev_priv->rps.hw_lock); |
Chris Wilson | 7b9e0ae | 2012-04-28 08:56:39 +0100 | [diff] [blame] | 969 | |
Chris Wilson | 43cf3bf | 2015-03-18 09:48:22 +0000 | [diff] [blame] | 970 | pm_iir |= vlv_wa_c0_ei(dev_priv, pm_iir); |
| 971 | |
Chris Wilson | dd75fdc | 2013-09-25 17:34:57 +0100 | [diff] [blame] | 972 | adj = dev_priv->rps.last_adj; |
Chris Wilson | edcf284 | 2015-04-07 16:20:29 +0100 | [diff] [blame] | 973 | new_delay = dev_priv->rps.cur_freq; |
Chris Wilson | 8d3afd7 | 2015-05-21 21:01:47 +0100 | [diff] [blame] | 974 | min = dev_priv->rps.min_freq_softlimit; |
| 975 | max = dev_priv->rps.max_freq_softlimit; |
| 976 | |
| 977 | if (client_boost) { |
| 978 | new_delay = dev_priv->rps.max_freq_softlimit; |
| 979 | adj = 0; |
| 980 | } else if (pm_iir & GEN6_PM_RP_UP_THRESHOLD) { |
Chris Wilson | dd75fdc | 2013-09-25 17:34:57 +0100 | [diff] [blame] | 981 | if (adj > 0) |
| 982 | adj *= 2; |
Chris Wilson | edcf284 | 2015-04-07 16:20:29 +0100 | [diff] [blame] | 983 | else /* CHV needs even encode values */ |
| 984 | adj = IS_CHERRYVIEW(dev_priv) ? 2 : 1; |
Ville Syrjälä | 7425034 | 2013-06-25 21:38:11 +0300 | [diff] [blame] | 985 | /* |
| 986 | * For better performance, jump directly |
| 987 | * to RPe if we're below it. |
| 988 | */ |
Chris Wilson | edcf284 | 2015-04-07 16:20:29 +0100 | [diff] [blame] | 989 | if (new_delay < dev_priv->rps.efficient_freq - adj) { |
Ben Widawsky | b39fb29 | 2014-03-19 18:31:11 -0700 | [diff] [blame] | 990 | new_delay = dev_priv->rps.efficient_freq; |
Chris Wilson | edcf284 | 2015-04-07 16:20:29 +0100 | [diff] [blame] | 991 | adj = 0; |
| 992 | } |
Chris Wilson | f5a4c67 | 2015-04-27 13:41:23 +0100 | [diff] [blame] | 993 | } else if (any_waiters(dev_priv)) { |
| 994 | adj = 0; |
Chris Wilson | dd75fdc | 2013-09-25 17:34:57 +0100 | [diff] [blame] | 995 | } else if (pm_iir & GEN6_PM_RP_DOWN_TIMEOUT) { |
Ben Widawsky | b39fb29 | 2014-03-19 18:31:11 -0700 | [diff] [blame] | 996 | if (dev_priv->rps.cur_freq > dev_priv->rps.efficient_freq) |
| 997 | new_delay = dev_priv->rps.efficient_freq; |
Chris Wilson | dd75fdc | 2013-09-25 17:34:57 +0100 | [diff] [blame] | 998 | else |
Ben Widawsky | b39fb29 | 2014-03-19 18:31:11 -0700 | [diff] [blame] | 999 | new_delay = dev_priv->rps.min_freq_softlimit; |
Chris Wilson | dd75fdc | 2013-09-25 17:34:57 +0100 | [diff] [blame] | 1000 | adj = 0; |
| 1001 | } else if (pm_iir & GEN6_PM_RP_DOWN_THRESHOLD) { |
| 1002 | if (adj < 0) |
| 1003 | adj *= 2; |
Chris Wilson | edcf284 | 2015-04-07 16:20:29 +0100 | [diff] [blame] | 1004 | else /* CHV needs even encode values */ |
| 1005 | adj = IS_CHERRYVIEW(dev_priv) ? -2 : -1; |
Chris Wilson | dd75fdc | 2013-09-25 17:34:57 +0100 | [diff] [blame] | 1006 | } else { /* unknown event */ |
Chris Wilson | edcf284 | 2015-04-07 16:20:29 +0100 | [diff] [blame] | 1007 | adj = 0; |
Chris Wilson | dd75fdc | 2013-09-25 17:34:57 +0100 | [diff] [blame] | 1008 | } |
Jesse Barnes | 3b8d8d9 | 2010-12-17 14:19:02 -0800 | [diff] [blame] | 1009 | |
Chris Wilson | edcf284 | 2015-04-07 16:20:29 +0100 | [diff] [blame] | 1010 | dev_priv->rps.last_adj = adj; |
| 1011 | |
Ben Widawsky | 7924963 | 2012-09-07 19:43:42 -0700 | [diff] [blame] | 1012 | /* sysfs frequency interfaces may have snuck in while servicing the |
| 1013 | * interrupt |
| 1014 | */ |
Chris Wilson | edcf284 | 2015-04-07 16:20:29 +0100 | [diff] [blame] | 1015 | new_delay += adj; |
Chris Wilson | 8d3afd7 | 2015-05-21 21:01:47 +0100 | [diff] [blame] | 1016 | new_delay = clamp_t(int, new_delay, min, max); |
Deepak S | 2754436 | 2014-01-27 21:35:05 +0530 | [diff] [blame] | 1017 | |
Ville Syrjälä | ffe02b4 | 2015-02-02 19:09:50 +0200 | [diff] [blame] | 1018 | intel_set_rps(dev_priv->dev, new_delay); |
Jesse Barnes | 3b8d8d9 | 2010-12-17 14:19:02 -0800 | [diff] [blame] | 1019 | |
Jesse Barnes | 4fc688c | 2012-11-02 11:14:01 -0700 | [diff] [blame] | 1020 | mutex_unlock(&dev_priv->rps.hw_lock); |
Jesse Barnes | 3b8d8d9 | 2010-12-17 14:19:02 -0800 | [diff] [blame] | 1021 | } |
| 1022 | |
Ben Widawsky | e368919 | 2012-05-25 16:56:22 -0700 | [diff] [blame] | 1023 | |
| 1024 | /** |
| 1025 | * ivybridge_parity_work - Workqueue called when a parity error interrupt |
| 1026 | * occurred. |
| 1027 | * @work: workqueue struct |
| 1028 | * |
| 1029 | * Doesn't actually do anything except notify userspace. As a consequence of |
| 1030 | * this event, userspace should try to remap the bad rows since statistically |
| 1031 | * it is likely the same row is more likely to go bad again. |
| 1032 | */ |
| 1033 | static void ivybridge_parity_work(struct work_struct *work) |
| 1034 | { |
Jani Nikula | 2d1013d | 2014-03-31 14:27:17 +0300 | [diff] [blame] | 1035 | struct drm_i915_private *dev_priv = |
| 1036 | container_of(work, struct drm_i915_private, l3_parity.error_work); |
Ben Widawsky | e368919 | 2012-05-25 16:56:22 -0700 | [diff] [blame] | 1037 | u32 error_status, row, bank, subbank; |
Ben Widawsky | 35a85ac | 2013-09-19 11:13:41 -0700 | [diff] [blame] | 1038 | char *parity_event[6]; |
Ben Widawsky | e368919 | 2012-05-25 16:56:22 -0700 | [diff] [blame] | 1039 | uint32_t misccpctl; |
Ben Widawsky | 35a85ac | 2013-09-19 11:13:41 -0700 | [diff] [blame] | 1040 | uint8_t slice = 0; |
Ben Widawsky | e368919 | 2012-05-25 16:56:22 -0700 | [diff] [blame] | 1041 | |
| 1042 | /* We must turn off DOP level clock gating to access the L3 registers. |
| 1043 | * In order to prevent a get/put style interface, acquire struct mutex |
| 1044 | * any time we access those registers. |
| 1045 | */ |
| 1046 | mutex_lock(&dev_priv->dev->struct_mutex); |
| 1047 | |
Ben Widawsky | 35a85ac | 2013-09-19 11:13:41 -0700 | [diff] [blame] | 1048 | /* If we've screwed up tracking, just let the interrupt fire again */ |
| 1049 | if (WARN_ON(!dev_priv->l3_parity.which_slice)) |
| 1050 | goto out; |
| 1051 | |
Ben Widawsky | e368919 | 2012-05-25 16:56:22 -0700 | [diff] [blame] | 1052 | misccpctl = I915_READ(GEN7_MISCCPCTL); |
| 1053 | I915_WRITE(GEN7_MISCCPCTL, misccpctl & ~GEN7_DOP_CLOCK_GATE_ENABLE); |
| 1054 | POSTING_READ(GEN7_MISCCPCTL); |
| 1055 | |
Ben Widawsky | 35a85ac | 2013-09-19 11:13:41 -0700 | [diff] [blame] | 1056 | while ((slice = ffs(dev_priv->l3_parity.which_slice)) != 0) { |
| 1057 | u32 reg; |
Ben Widawsky | e368919 | 2012-05-25 16:56:22 -0700 | [diff] [blame] | 1058 | |
Ben Widawsky | 35a85ac | 2013-09-19 11:13:41 -0700 | [diff] [blame] | 1059 | slice--; |
| 1060 | if (WARN_ON_ONCE(slice >= NUM_L3_SLICES(dev_priv->dev))) |
| 1061 | break; |
| 1062 | |
| 1063 | dev_priv->l3_parity.which_slice &= ~(1<<slice); |
| 1064 | |
| 1065 | reg = GEN7_L3CDERRST1 + (slice * 0x200); |
| 1066 | |
| 1067 | error_status = I915_READ(reg); |
| 1068 | row = GEN7_PARITY_ERROR_ROW(error_status); |
| 1069 | bank = GEN7_PARITY_ERROR_BANK(error_status); |
| 1070 | subbank = GEN7_PARITY_ERROR_SUBBANK(error_status); |
| 1071 | |
| 1072 | I915_WRITE(reg, GEN7_PARITY_ERROR_VALID | GEN7_L3CDERRST1_ENABLE); |
| 1073 | POSTING_READ(reg); |
| 1074 | |
| 1075 | parity_event[0] = I915_L3_PARITY_UEVENT "=1"; |
| 1076 | parity_event[1] = kasprintf(GFP_KERNEL, "ROW=%d", row); |
| 1077 | parity_event[2] = kasprintf(GFP_KERNEL, "BANK=%d", bank); |
| 1078 | parity_event[3] = kasprintf(GFP_KERNEL, "SUBBANK=%d", subbank); |
| 1079 | parity_event[4] = kasprintf(GFP_KERNEL, "SLICE=%d", slice); |
| 1080 | parity_event[5] = NULL; |
| 1081 | |
Dave Airlie | 5bdebb1 | 2013-10-11 14:07:25 +1000 | [diff] [blame] | 1082 | kobject_uevent_env(&dev_priv->dev->primary->kdev->kobj, |
Ben Widawsky | 35a85ac | 2013-09-19 11:13:41 -0700 | [diff] [blame] | 1083 | KOBJ_CHANGE, parity_event); |
| 1084 | |
| 1085 | DRM_DEBUG("Parity error: Slice = %d, Row = %d, Bank = %d, Sub bank = %d.\n", |
| 1086 | slice, row, bank, subbank); |
| 1087 | |
| 1088 | kfree(parity_event[4]); |
| 1089 | kfree(parity_event[3]); |
| 1090 | kfree(parity_event[2]); |
| 1091 | kfree(parity_event[1]); |
| 1092 | } |
Ben Widawsky | e368919 | 2012-05-25 16:56:22 -0700 | [diff] [blame] | 1093 | |
| 1094 | I915_WRITE(GEN7_MISCCPCTL, misccpctl); |
| 1095 | |
Ben Widawsky | 35a85ac | 2013-09-19 11:13:41 -0700 | [diff] [blame] | 1096 | out: |
| 1097 | WARN_ON(dev_priv->l3_parity.which_slice); |
Daniel Vetter | 4cb2183 | 2014-09-15 14:55:26 +0200 | [diff] [blame] | 1098 | spin_lock_irq(&dev_priv->irq_lock); |
Daniel Vetter | 480c803 | 2014-07-16 09:49:40 +0200 | [diff] [blame] | 1099 | gen5_enable_gt_irq(dev_priv, GT_PARITY_ERROR(dev_priv->dev)); |
Daniel Vetter | 4cb2183 | 2014-09-15 14:55:26 +0200 | [diff] [blame] | 1100 | spin_unlock_irq(&dev_priv->irq_lock); |
Ben Widawsky | e368919 | 2012-05-25 16:56:22 -0700 | [diff] [blame] | 1101 | |
| 1102 | mutex_unlock(&dev_priv->dev->struct_mutex); |
Ben Widawsky | e368919 | 2012-05-25 16:56:22 -0700 | [diff] [blame] | 1103 | } |
| 1104 | |
Ben Widawsky | 35a85ac | 2013-09-19 11:13:41 -0700 | [diff] [blame] | 1105 | static void ivybridge_parity_error_irq_handler(struct drm_device *dev, u32 iir) |
Ben Widawsky | e368919 | 2012-05-25 16:56:22 -0700 | [diff] [blame] | 1106 | { |
Jani Nikula | 2d1013d | 2014-03-31 14:27:17 +0300 | [diff] [blame] | 1107 | struct drm_i915_private *dev_priv = dev->dev_private; |
Ben Widawsky | e368919 | 2012-05-25 16:56:22 -0700 | [diff] [blame] | 1108 | |
Ben Widawsky | 040d2ba | 2013-09-19 11:01:40 -0700 | [diff] [blame] | 1109 | if (!HAS_L3_DPF(dev)) |
Ben Widawsky | e368919 | 2012-05-25 16:56:22 -0700 | [diff] [blame] | 1110 | return; |
| 1111 | |
Daniel Vetter | d0ecd7e | 2013-07-04 23:35:25 +0200 | [diff] [blame] | 1112 | spin_lock(&dev_priv->irq_lock); |
Daniel Vetter | 480c803 | 2014-07-16 09:49:40 +0200 | [diff] [blame] | 1113 | gen5_disable_gt_irq(dev_priv, GT_PARITY_ERROR(dev)); |
Daniel Vetter | d0ecd7e | 2013-07-04 23:35:25 +0200 | [diff] [blame] | 1114 | spin_unlock(&dev_priv->irq_lock); |
Ben Widawsky | e368919 | 2012-05-25 16:56:22 -0700 | [diff] [blame] | 1115 | |
Ben Widawsky | 35a85ac | 2013-09-19 11:13:41 -0700 | [diff] [blame] | 1116 | iir &= GT_PARITY_ERROR(dev); |
| 1117 | if (iir & GT_RENDER_L3_PARITY_ERROR_INTERRUPT_S1) |
| 1118 | dev_priv->l3_parity.which_slice |= 1 << 1; |
| 1119 | |
| 1120 | if (iir & GT_RENDER_L3_PARITY_ERROR_INTERRUPT) |
| 1121 | dev_priv->l3_parity.which_slice |= 1 << 0; |
| 1122 | |
Daniel Vetter | a4da4fa | 2012-11-02 19:55:07 +0100 | [diff] [blame] | 1123 | queue_work(dev_priv->wq, &dev_priv->l3_parity.error_work); |
Ben Widawsky | e368919 | 2012-05-25 16:56:22 -0700 | [diff] [blame] | 1124 | } |
| 1125 | |
Paulo Zanoni | f1af8fc | 2013-07-12 19:56:30 -0300 | [diff] [blame] | 1126 | static void ilk_gt_irq_handler(struct drm_device *dev, |
| 1127 | struct drm_i915_private *dev_priv, |
| 1128 | u32 gt_iir) |
| 1129 | { |
| 1130 | if (gt_iir & |
| 1131 | (GT_RENDER_USER_INTERRUPT | GT_RENDER_PIPECTL_NOTIFY_INTERRUPT)) |
Chris Wilson | 74cdb33 | 2015-04-07 16:21:05 +0100 | [diff] [blame] | 1132 | notify_ring(&dev_priv->ring[RCS]); |
Paulo Zanoni | f1af8fc | 2013-07-12 19:56:30 -0300 | [diff] [blame] | 1133 | if (gt_iir & ILK_BSD_USER_INTERRUPT) |
Chris Wilson | 74cdb33 | 2015-04-07 16:21:05 +0100 | [diff] [blame] | 1134 | notify_ring(&dev_priv->ring[VCS]); |
Paulo Zanoni | f1af8fc | 2013-07-12 19:56:30 -0300 | [diff] [blame] | 1135 | } |
| 1136 | |
Daniel Vetter | e7b4c6b | 2012-03-30 20:24:35 +0200 | [diff] [blame] | 1137 | static void snb_gt_irq_handler(struct drm_device *dev, |
| 1138 | struct drm_i915_private *dev_priv, |
| 1139 | u32 gt_iir) |
| 1140 | { |
| 1141 | |
Ben Widawsky | cc609d5 | 2013-05-28 19:22:29 -0700 | [diff] [blame] | 1142 | if (gt_iir & |
| 1143 | (GT_RENDER_USER_INTERRUPT | GT_RENDER_PIPECTL_NOTIFY_INTERRUPT)) |
Chris Wilson | 74cdb33 | 2015-04-07 16:21:05 +0100 | [diff] [blame] | 1144 | notify_ring(&dev_priv->ring[RCS]); |
Ben Widawsky | cc609d5 | 2013-05-28 19:22:29 -0700 | [diff] [blame] | 1145 | if (gt_iir & GT_BSD_USER_INTERRUPT) |
Chris Wilson | 74cdb33 | 2015-04-07 16:21:05 +0100 | [diff] [blame] | 1146 | notify_ring(&dev_priv->ring[VCS]); |
Ben Widawsky | cc609d5 | 2013-05-28 19:22:29 -0700 | [diff] [blame] | 1147 | if (gt_iir & GT_BLT_USER_INTERRUPT) |
Chris Wilson | 74cdb33 | 2015-04-07 16:21:05 +0100 | [diff] [blame] | 1148 | notify_ring(&dev_priv->ring[BCS]); |
Daniel Vetter | e7b4c6b | 2012-03-30 20:24:35 +0200 | [diff] [blame] | 1149 | |
Ben Widawsky | cc609d5 | 2013-05-28 19:22:29 -0700 | [diff] [blame] | 1150 | if (gt_iir & (GT_BLT_CS_ERROR_INTERRUPT | |
| 1151 | GT_BSD_CS_ERROR_INTERRUPT | |
Daniel Vetter | aaecdf6 | 2014-11-04 15:52:22 +0100 | [diff] [blame] | 1152 | GT_RENDER_CS_MASTER_ERROR_INTERRUPT)) |
| 1153 | DRM_DEBUG("Command parser error, gt_iir 0x%08x\n", gt_iir); |
Ben Widawsky | e368919 | 2012-05-25 16:56:22 -0700 | [diff] [blame] | 1154 | |
Ben Widawsky | 35a85ac | 2013-09-19 11:13:41 -0700 | [diff] [blame] | 1155 | if (gt_iir & GT_PARITY_ERROR(dev)) |
| 1156 | ivybridge_parity_error_irq_handler(dev, gt_iir); |
Daniel Vetter | e7b4c6b | 2012-03-30 20:24:35 +0200 | [diff] [blame] | 1157 | } |
| 1158 | |
Chris Wilson | 74cdb33 | 2015-04-07 16:21:05 +0100 | [diff] [blame] | 1159 | static irqreturn_t gen8_gt_irq_handler(struct drm_i915_private *dev_priv, |
Ben Widawsky | abd58f0 | 2013-11-02 21:07:09 -0700 | [diff] [blame] | 1160 | u32 master_ctl) |
| 1161 | { |
Ben Widawsky | abd58f0 | 2013-11-02 21:07:09 -0700 | [diff] [blame] | 1162 | irqreturn_t ret = IRQ_NONE; |
| 1163 | |
| 1164 | if (master_ctl & (GEN8_GT_RCS_IRQ | GEN8_GT_BCS_IRQ)) { |
Chris Wilson | 74cdb33 | 2015-04-07 16:21:05 +0100 | [diff] [blame] | 1165 | u32 tmp = I915_READ_FW(GEN8_GT_IIR(0)); |
Ben Widawsky | abd58f0 | 2013-11-02 21:07:09 -0700 | [diff] [blame] | 1166 | if (tmp) { |
Chris Wilson | cb0d205 | 2015-04-07 16:21:04 +0100 | [diff] [blame] | 1167 | I915_WRITE_FW(GEN8_GT_IIR(0), tmp); |
Ben Widawsky | abd58f0 | 2013-11-02 21:07:09 -0700 | [diff] [blame] | 1168 | ret = IRQ_HANDLED; |
Thomas Daniel | e981e7b | 2014-07-24 17:04:39 +0100 | [diff] [blame] | 1169 | |
Chris Wilson | 74cdb33 | 2015-04-07 16:21:05 +0100 | [diff] [blame] | 1170 | if (tmp & (GT_CONTEXT_SWITCH_INTERRUPT << GEN8_RCS_IRQ_SHIFT)) |
| 1171 | intel_lrc_irq_handler(&dev_priv->ring[RCS]); |
| 1172 | if (tmp & (GT_RENDER_USER_INTERRUPT << GEN8_RCS_IRQ_SHIFT)) |
| 1173 | notify_ring(&dev_priv->ring[RCS]); |
Thomas Daniel | e981e7b | 2014-07-24 17:04:39 +0100 | [diff] [blame] | 1174 | |
Chris Wilson | 74cdb33 | 2015-04-07 16:21:05 +0100 | [diff] [blame] | 1175 | if (tmp & (GT_CONTEXT_SWITCH_INTERRUPT << GEN8_BCS_IRQ_SHIFT)) |
| 1176 | intel_lrc_irq_handler(&dev_priv->ring[BCS]); |
| 1177 | if (tmp & (GT_RENDER_USER_INTERRUPT << GEN8_BCS_IRQ_SHIFT)) |
| 1178 | notify_ring(&dev_priv->ring[BCS]); |
Ben Widawsky | abd58f0 | 2013-11-02 21:07:09 -0700 | [diff] [blame] | 1179 | } else |
| 1180 | DRM_ERROR("The master control interrupt lied (GT0)!\n"); |
| 1181 | } |
| 1182 | |
Zhao Yakui | 85f9b5f | 2014-04-17 10:37:38 +0800 | [diff] [blame] | 1183 | if (master_ctl & (GEN8_GT_VCS1_IRQ | GEN8_GT_VCS2_IRQ)) { |
Chris Wilson | 74cdb33 | 2015-04-07 16:21:05 +0100 | [diff] [blame] | 1184 | u32 tmp = I915_READ_FW(GEN8_GT_IIR(1)); |
Ben Widawsky | abd58f0 | 2013-11-02 21:07:09 -0700 | [diff] [blame] | 1185 | if (tmp) { |
Chris Wilson | cb0d205 | 2015-04-07 16:21:04 +0100 | [diff] [blame] | 1186 | I915_WRITE_FW(GEN8_GT_IIR(1), tmp); |
Ben Widawsky | abd58f0 | 2013-11-02 21:07:09 -0700 | [diff] [blame] | 1187 | ret = IRQ_HANDLED; |
Thomas Daniel | e981e7b | 2014-07-24 17:04:39 +0100 | [diff] [blame] | 1188 | |
Chris Wilson | 74cdb33 | 2015-04-07 16:21:05 +0100 | [diff] [blame] | 1189 | if (tmp & (GT_CONTEXT_SWITCH_INTERRUPT << GEN8_VCS1_IRQ_SHIFT)) |
| 1190 | intel_lrc_irq_handler(&dev_priv->ring[VCS]); |
| 1191 | if (tmp & (GT_RENDER_USER_INTERRUPT << GEN8_VCS1_IRQ_SHIFT)) |
| 1192 | notify_ring(&dev_priv->ring[VCS]); |
Thomas Daniel | e981e7b | 2014-07-24 17:04:39 +0100 | [diff] [blame] | 1193 | |
Chris Wilson | 74cdb33 | 2015-04-07 16:21:05 +0100 | [diff] [blame] | 1194 | if (tmp & (GT_CONTEXT_SWITCH_INTERRUPT << GEN8_VCS2_IRQ_SHIFT)) |
| 1195 | intel_lrc_irq_handler(&dev_priv->ring[VCS2]); |
| 1196 | if (tmp & (GT_RENDER_USER_INTERRUPT << GEN8_VCS2_IRQ_SHIFT)) |
| 1197 | notify_ring(&dev_priv->ring[VCS2]); |
Ben Widawsky | abd58f0 | 2013-11-02 21:07:09 -0700 | [diff] [blame] | 1198 | } else |
| 1199 | DRM_ERROR("The master control interrupt lied (GT1)!\n"); |
| 1200 | } |
| 1201 | |
Chris Wilson | 74cdb33 | 2015-04-07 16:21:05 +0100 | [diff] [blame] | 1202 | if (master_ctl & GEN8_GT_VECS_IRQ) { |
| 1203 | u32 tmp = I915_READ_FW(GEN8_GT_IIR(3)); |
| 1204 | if (tmp) { |
| 1205 | I915_WRITE_FW(GEN8_GT_IIR(3), tmp); |
| 1206 | ret = IRQ_HANDLED; |
| 1207 | |
| 1208 | if (tmp & (GT_CONTEXT_SWITCH_INTERRUPT << GEN8_VECS_IRQ_SHIFT)) |
| 1209 | intel_lrc_irq_handler(&dev_priv->ring[VECS]); |
| 1210 | if (tmp & (GT_RENDER_USER_INTERRUPT << GEN8_VECS_IRQ_SHIFT)) |
| 1211 | notify_ring(&dev_priv->ring[VECS]); |
| 1212 | } else |
| 1213 | DRM_ERROR("The master control interrupt lied (GT3)!\n"); |
| 1214 | } |
| 1215 | |
Ben Widawsky | 0961021 | 2014-05-15 20:58:08 +0300 | [diff] [blame] | 1216 | if (master_ctl & GEN8_GT_PM_IRQ) { |
Chris Wilson | 74cdb33 | 2015-04-07 16:21:05 +0100 | [diff] [blame] | 1217 | u32 tmp = I915_READ_FW(GEN8_GT_IIR(2)); |
Ben Widawsky | 0961021 | 2014-05-15 20:58:08 +0300 | [diff] [blame] | 1218 | if (tmp & dev_priv->pm_rps_events) { |
Chris Wilson | cb0d205 | 2015-04-07 16:21:04 +0100 | [diff] [blame] | 1219 | I915_WRITE_FW(GEN8_GT_IIR(2), |
| 1220 | tmp & dev_priv->pm_rps_events); |
Oscar Mateo | 38cc46d | 2014-06-16 16:10:59 +0100 | [diff] [blame] | 1221 | ret = IRQ_HANDLED; |
Imre Deak | c9a9a26 | 2014-11-05 20:48:37 +0200 | [diff] [blame] | 1222 | gen6_rps_irq_handler(dev_priv, tmp); |
Ben Widawsky | 0961021 | 2014-05-15 20:58:08 +0300 | [diff] [blame] | 1223 | } else |
| 1224 | DRM_ERROR("The master control interrupt lied (PM)!\n"); |
| 1225 | } |
| 1226 | |
Ben Widawsky | abd58f0 | 2013-11-02 21:07:09 -0700 | [diff] [blame] | 1227 | return ret; |
| 1228 | } |
| 1229 | |
Jani Nikula | 676574d | 2015-05-28 15:43:53 +0300 | [diff] [blame] | 1230 | static bool pch_port_hotplug_long_detect(enum port port, u32 val) |
Dave Airlie | 13cf550 | 2014-06-18 11:29:35 +1000 | [diff] [blame] | 1231 | { |
| 1232 | switch (port) { |
Dave Airlie | 13cf550 | 2014-06-18 11:29:35 +1000 | [diff] [blame] | 1233 | case PORT_B: |
Jani Nikula | 676574d | 2015-05-28 15:43:53 +0300 | [diff] [blame] | 1234 | return val & PORTB_HOTPLUG_LONG_DETECT; |
Dave Airlie | 13cf550 | 2014-06-18 11:29:35 +1000 | [diff] [blame] | 1235 | case PORT_C: |
Jani Nikula | 676574d | 2015-05-28 15:43:53 +0300 | [diff] [blame] | 1236 | return val & PORTC_HOTPLUG_LONG_DETECT; |
Dave Airlie | 13cf550 | 2014-06-18 11:29:35 +1000 | [diff] [blame] | 1237 | case PORT_D: |
Jani Nikula | 676574d | 2015-05-28 15:43:53 +0300 | [diff] [blame] | 1238 | return val & PORTD_HOTPLUG_LONG_DETECT; |
| 1239 | default: |
| 1240 | return false; |
Dave Airlie | 13cf550 | 2014-06-18 11:29:35 +1000 | [diff] [blame] | 1241 | } |
| 1242 | } |
| 1243 | |
Jani Nikula | 676574d | 2015-05-28 15:43:53 +0300 | [diff] [blame] | 1244 | static bool i9xx_port_hotplug_long_detect(enum port port, u32 val) |
Dave Airlie | 13cf550 | 2014-06-18 11:29:35 +1000 | [diff] [blame] | 1245 | { |
| 1246 | switch (port) { |
Dave Airlie | 13cf550 | 2014-06-18 11:29:35 +1000 | [diff] [blame] | 1247 | case PORT_B: |
Jani Nikula | 676574d | 2015-05-28 15:43:53 +0300 | [diff] [blame] | 1248 | return val & PORTB_HOTPLUG_INT_LONG_PULSE; |
Dave Airlie | 13cf550 | 2014-06-18 11:29:35 +1000 | [diff] [blame] | 1249 | case PORT_C: |
Jani Nikula | 676574d | 2015-05-28 15:43:53 +0300 | [diff] [blame] | 1250 | return val & PORTC_HOTPLUG_INT_LONG_PULSE; |
Dave Airlie | 13cf550 | 2014-06-18 11:29:35 +1000 | [diff] [blame] | 1251 | case PORT_D: |
Jani Nikula | 676574d | 2015-05-28 15:43:53 +0300 | [diff] [blame] | 1252 | return val & PORTD_HOTPLUG_INT_LONG_PULSE; |
| 1253 | default: |
| 1254 | return false; |
Dave Airlie | 13cf550 | 2014-06-18 11:29:35 +1000 | [diff] [blame] | 1255 | } |
| 1256 | } |
| 1257 | |
Jani Nikula | 676574d | 2015-05-28 15:43:53 +0300 | [diff] [blame] | 1258 | /* Get a bit mask of pins that have triggered, and which ones may be long. */ |
| 1259 | static void pch_get_hpd_pins(u32 *pin_mask, u32 *long_mask, |
Jani Nikula | 8c841e5 | 2015-06-18 13:06:17 +0300 | [diff] [blame^] | 1260 | u32 hotplug_trigger, u32 dig_hotplug_reg, |
| 1261 | const u32 hpd[HPD_NUM_PINS]) |
Jani Nikula | 676574d | 2015-05-28 15:43:53 +0300 | [diff] [blame] | 1262 | { |
Jani Nikula | 8c841e5 | 2015-06-18 13:06:17 +0300 | [diff] [blame^] | 1263 | enum port port; |
Jani Nikula | 676574d | 2015-05-28 15:43:53 +0300 | [diff] [blame] | 1264 | int i; |
| 1265 | |
| 1266 | *pin_mask = 0; |
| 1267 | *long_mask = 0; |
| 1268 | |
| 1269 | if (!hotplug_trigger) |
| 1270 | return; |
| 1271 | |
| 1272 | for_each_hpd_pin(i) { |
Jani Nikula | 8c841e5 | 2015-06-18 13:06:17 +0300 | [diff] [blame^] | 1273 | if ((hpd[i] & hotplug_trigger) == 0) |
| 1274 | continue; |
Jani Nikula | 676574d | 2015-05-28 15:43:53 +0300 | [diff] [blame] | 1275 | |
Jani Nikula | 8c841e5 | 2015-06-18 13:06:17 +0300 | [diff] [blame^] | 1276 | *pin_mask |= BIT(i); |
| 1277 | |
| 1278 | port = intel_hpd_pin_to_port(i); |
| 1279 | if (pch_port_hotplug_long_detect(port, dig_hotplug_reg)) |
| 1280 | *long_mask |= BIT(i); |
Jani Nikula | 676574d | 2015-05-28 15:43:53 +0300 | [diff] [blame] | 1281 | } |
| 1282 | |
| 1283 | DRM_DEBUG_DRIVER("hotplug event received, stat 0x%08x, dig 0x%08x, pins 0x%08x\n", |
| 1284 | hotplug_trigger, dig_hotplug_reg, *pin_mask); |
| 1285 | |
| 1286 | } |
| 1287 | |
| 1288 | /* Get a bit mask of pins that have triggered, and which ones may be long. */ |
| 1289 | static void i9xx_get_hpd_pins(u32 *pin_mask, u32 *long_mask, |
| 1290 | u32 hotplug_trigger, const u32 hpd[HPD_NUM_PINS]) |
| 1291 | { |
Jani Nikula | 8c841e5 | 2015-06-18 13:06:17 +0300 | [diff] [blame^] | 1292 | enum port port; |
Jani Nikula | 676574d | 2015-05-28 15:43:53 +0300 | [diff] [blame] | 1293 | int i; |
| 1294 | |
| 1295 | *pin_mask = 0; |
| 1296 | *long_mask = 0; |
| 1297 | |
| 1298 | if (!hotplug_trigger) |
| 1299 | return; |
| 1300 | |
| 1301 | for_each_hpd_pin(i) { |
Jani Nikula | 8c841e5 | 2015-06-18 13:06:17 +0300 | [diff] [blame^] | 1302 | if ((hpd[i] & hotplug_trigger) == 0) |
| 1303 | continue; |
Jani Nikula | 676574d | 2015-05-28 15:43:53 +0300 | [diff] [blame] | 1304 | |
Jani Nikula | 8c841e5 | 2015-06-18 13:06:17 +0300 | [diff] [blame^] | 1305 | *pin_mask |= BIT(i); |
| 1306 | |
| 1307 | port = intel_hpd_pin_to_port(i); |
| 1308 | if (i9xx_port_hotplug_long_detect(port, hotplug_trigger)) |
| 1309 | *long_mask |= BIT(i); |
Jani Nikula | 676574d | 2015-05-28 15:43:53 +0300 | [diff] [blame] | 1310 | } |
| 1311 | |
| 1312 | DRM_DEBUG_DRIVER("hotplug event received, stat 0x%08x, pins 0x%08x\n", |
| 1313 | hotplug_trigger, *pin_mask); |
| 1314 | } |
| 1315 | |
Daniel Vetter | 515ac2b | 2012-12-01 13:53:44 +0100 | [diff] [blame] | 1316 | static void gmbus_irq_handler(struct drm_device *dev) |
| 1317 | { |
Jani Nikula | 2d1013d | 2014-03-31 14:27:17 +0300 | [diff] [blame] | 1318 | struct drm_i915_private *dev_priv = dev->dev_private; |
Daniel Vetter | 28c70f1 | 2012-12-01 13:53:45 +0100 | [diff] [blame] | 1319 | |
Daniel Vetter | 28c70f1 | 2012-12-01 13:53:45 +0100 | [diff] [blame] | 1320 | wake_up_all(&dev_priv->gmbus_wait_queue); |
Daniel Vetter | 515ac2b | 2012-12-01 13:53:44 +0100 | [diff] [blame] | 1321 | } |
| 1322 | |
Daniel Vetter | ce99c25 | 2012-12-01 13:53:47 +0100 | [diff] [blame] | 1323 | static void dp_aux_irq_handler(struct drm_device *dev) |
| 1324 | { |
Jani Nikula | 2d1013d | 2014-03-31 14:27:17 +0300 | [diff] [blame] | 1325 | struct drm_i915_private *dev_priv = dev->dev_private; |
Daniel Vetter | 9ee32fea | 2012-12-01 13:53:48 +0100 | [diff] [blame] | 1326 | |
Daniel Vetter | 9ee32fea | 2012-12-01 13:53:48 +0100 | [diff] [blame] | 1327 | wake_up_all(&dev_priv->gmbus_wait_queue); |
Daniel Vetter | ce99c25 | 2012-12-01 13:53:47 +0100 | [diff] [blame] | 1328 | } |
| 1329 | |
Shuang He | 8bf1e9f | 2013-10-15 18:55:27 +0100 | [diff] [blame] | 1330 | #if defined(CONFIG_DEBUG_FS) |
Daniel Vetter | 277de95 | 2013-10-18 16:37:07 +0200 | [diff] [blame] | 1331 | static void display_pipe_crc_irq_handler(struct drm_device *dev, enum pipe pipe, |
| 1332 | uint32_t crc0, uint32_t crc1, |
| 1333 | uint32_t crc2, uint32_t crc3, |
| 1334 | uint32_t crc4) |
Shuang He | 8bf1e9f | 2013-10-15 18:55:27 +0100 | [diff] [blame] | 1335 | { |
| 1336 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 1337 | struct intel_pipe_crc *pipe_crc = &dev_priv->pipe_crc[pipe]; |
| 1338 | struct intel_pipe_crc_entry *entry; |
Damien Lespiau | ac2300d | 2013-10-15 18:55:30 +0100 | [diff] [blame] | 1339 | int head, tail; |
Damien Lespiau | b2c88f5 | 2013-10-15 18:55:29 +0100 | [diff] [blame] | 1340 | |
Damien Lespiau | d538bbd | 2013-10-21 14:29:30 +0100 | [diff] [blame] | 1341 | spin_lock(&pipe_crc->lock); |
| 1342 | |
Damien Lespiau | 0c912c7 | 2013-10-15 18:55:37 +0100 | [diff] [blame] | 1343 | if (!pipe_crc->entries) { |
Damien Lespiau | d538bbd | 2013-10-21 14:29:30 +0100 | [diff] [blame] | 1344 | spin_unlock(&pipe_crc->lock); |
Daniel Vetter | 3427362 | 2014-11-26 16:29:04 +0100 | [diff] [blame] | 1345 | DRM_DEBUG_KMS("spurious interrupt\n"); |
Damien Lespiau | 0c912c7 | 2013-10-15 18:55:37 +0100 | [diff] [blame] | 1346 | return; |
| 1347 | } |
| 1348 | |
Damien Lespiau | d538bbd | 2013-10-21 14:29:30 +0100 | [diff] [blame] | 1349 | head = pipe_crc->head; |
| 1350 | tail = pipe_crc->tail; |
Damien Lespiau | b2c88f5 | 2013-10-15 18:55:29 +0100 | [diff] [blame] | 1351 | |
| 1352 | if (CIRC_SPACE(head, tail, INTEL_PIPE_CRC_ENTRIES_NR) < 1) { |
Damien Lespiau | d538bbd | 2013-10-21 14:29:30 +0100 | [diff] [blame] | 1353 | spin_unlock(&pipe_crc->lock); |
Damien Lespiau | b2c88f5 | 2013-10-15 18:55:29 +0100 | [diff] [blame] | 1354 | DRM_ERROR("CRC buffer overflowing\n"); |
| 1355 | return; |
| 1356 | } |
| 1357 | |
| 1358 | entry = &pipe_crc->entries[head]; |
Shuang He | 8bf1e9f | 2013-10-15 18:55:27 +0100 | [diff] [blame] | 1359 | |
Daniel Vetter | 8bc5e95 | 2013-10-16 22:55:49 +0200 | [diff] [blame] | 1360 | entry->frame = dev->driver->get_vblank_counter(dev, pipe); |
Daniel Vetter | eba94eb | 2013-10-16 22:55:46 +0200 | [diff] [blame] | 1361 | entry->crc[0] = crc0; |
| 1362 | entry->crc[1] = crc1; |
| 1363 | entry->crc[2] = crc2; |
| 1364 | entry->crc[3] = crc3; |
| 1365 | entry->crc[4] = crc4; |
Damien Lespiau | b2c88f5 | 2013-10-15 18:55:29 +0100 | [diff] [blame] | 1366 | |
| 1367 | head = (head + 1) & (INTEL_PIPE_CRC_ENTRIES_NR - 1); |
Damien Lespiau | d538bbd | 2013-10-21 14:29:30 +0100 | [diff] [blame] | 1368 | pipe_crc->head = head; |
| 1369 | |
| 1370 | spin_unlock(&pipe_crc->lock); |
Damien Lespiau | 0714442 | 2013-10-15 18:55:40 +0100 | [diff] [blame] | 1371 | |
| 1372 | wake_up_interruptible(&pipe_crc->wq); |
Shuang He | 8bf1e9f | 2013-10-15 18:55:27 +0100 | [diff] [blame] | 1373 | } |
Daniel Vetter | 277de95 | 2013-10-18 16:37:07 +0200 | [diff] [blame] | 1374 | #else |
| 1375 | static inline void |
| 1376 | display_pipe_crc_irq_handler(struct drm_device *dev, enum pipe pipe, |
| 1377 | uint32_t crc0, uint32_t crc1, |
| 1378 | uint32_t crc2, uint32_t crc3, |
| 1379 | uint32_t crc4) {} |
| 1380 | #endif |
Daniel Vetter | eba94eb | 2013-10-16 22:55:46 +0200 | [diff] [blame] | 1381 | |
Daniel Vetter | 277de95 | 2013-10-18 16:37:07 +0200 | [diff] [blame] | 1382 | |
| 1383 | static void hsw_pipe_crc_irq_handler(struct drm_device *dev, enum pipe pipe) |
Daniel Vetter | 5a69b89 | 2013-10-16 22:55:52 +0200 | [diff] [blame] | 1384 | { |
| 1385 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 1386 | |
Daniel Vetter | 277de95 | 2013-10-18 16:37:07 +0200 | [diff] [blame] | 1387 | display_pipe_crc_irq_handler(dev, pipe, |
| 1388 | I915_READ(PIPE_CRC_RES_1_IVB(pipe)), |
| 1389 | 0, 0, 0, 0); |
Daniel Vetter | 5a69b89 | 2013-10-16 22:55:52 +0200 | [diff] [blame] | 1390 | } |
| 1391 | |
Daniel Vetter | 277de95 | 2013-10-18 16:37:07 +0200 | [diff] [blame] | 1392 | static void ivb_pipe_crc_irq_handler(struct drm_device *dev, enum pipe pipe) |
Daniel Vetter | eba94eb | 2013-10-16 22:55:46 +0200 | [diff] [blame] | 1393 | { |
| 1394 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 1395 | |
Daniel Vetter | 277de95 | 2013-10-18 16:37:07 +0200 | [diff] [blame] | 1396 | display_pipe_crc_irq_handler(dev, pipe, |
| 1397 | I915_READ(PIPE_CRC_RES_1_IVB(pipe)), |
| 1398 | I915_READ(PIPE_CRC_RES_2_IVB(pipe)), |
| 1399 | I915_READ(PIPE_CRC_RES_3_IVB(pipe)), |
| 1400 | I915_READ(PIPE_CRC_RES_4_IVB(pipe)), |
| 1401 | I915_READ(PIPE_CRC_RES_5_IVB(pipe))); |
Daniel Vetter | eba94eb | 2013-10-16 22:55:46 +0200 | [diff] [blame] | 1402 | } |
Daniel Vetter | 5b3a856 | 2013-10-16 22:55:48 +0200 | [diff] [blame] | 1403 | |
Daniel Vetter | 277de95 | 2013-10-18 16:37:07 +0200 | [diff] [blame] | 1404 | static void i9xx_pipe_crc_irq_handler(struct drm_device *dev, enum pipe pipe) |
Daniel Vetter | 5b3a856 | 2013-10-16 22:55:48 +0200 | [diff] [blame] | 1405 | { |
| 1406 | struct drm_i915_private *dev_priv = dev->dev_private; |
Daniel Vetter | 0b5c5ed | 2013-10-16 22:55:53 +0200 | [diff] [blame] | 1407 | uint32_t res1, res2; |
| 1408 | |
| 1409 | if (INTEL_INFO(dev)->gen >= 3) |
| 1410 | res1 = I915_READ(PIPE_CRC_RES_RES1_I915(pipe)); |
| 1411 | else |
| 1412 | res1 = 0; |
| 1413 | |
| 1414 | if (INTEL_INFO(dev)->gen >= 5 || IS_G4X(dev)) |
| 1415 | res2 = I915_READ(PIPE_CRC_RES_RES2_G4X(pipe)); |
| 1416 | else |
| 1417 | res2 = 0; |
Daniel Vetter | 5b3a856 | 2013-10-16 22:55:48 +0200 | [diff] [blame] | 1418 | |
Daniel Vetter | 277de95 | 2013-10-18 16:37:07 +0200 | [diff] [blame] | 1419 | display_pipe_crc_irq_handler(dev, pipe, |
| 1420 | I915_READ(PIPE_CRC_RES_RED(pipe)), |
| 1421 | I915_READ(PIPE_CRC_RES_GREEN(pipe)), |
| 1422 | I915_READ(PIPE_CRC_RES_BLUE(pipe)), |
| 1423 | res1, res2); |
Daniel Vetter | 5b3a856 | 2013-10-16 22:55:48 +0200 | [diff] [blame] | 1424 | } |
Shuang He | 8bf1e9f | 2013-10-15 18:55:27 +0100 | [diff] [blame] | 1425 | |
Paulo Zanoni | 1403c0d | 2013-08-15 11:51:32 -0300 | [diff] [blame] | 1426 | /* The RPS events need forcewake, so we add them to a work queue and mask their |
| 1427 | * IMR bits until the work is done. Other interrupts can be processed without |
| 1428 | * the work queue. */ |
| 1429 | static void gen6_rps_irq_handler(struct drm_i915_private *dev_priv, u32 pm_iir) |
Ben Widawsky | baf02a1 | 2013-05-28 19:22:24 -0700 | [diff] [blame] | 1430 | { |
Deepak S | a6706b4 | 2014-03-15 20:23:22 +0530 | [diff] [blame] | 1431 | if (pm_iir & dev_priv->pm_rps_events) { |
Daniel Vetter | 59cdb63 | 2013-07-04 23:35:28 +0200 | [diff] [blame] | 1432 | spin_lock(&dev_priv->irq_lock); |
Daniel Vetter | 480c803 | 2014-07-16 09:49:40 +0200 | [diff] [blame] | 1433 | gen6_disable_pm_irq(dev_priv, pm_iir & dev_priv->pm_rps_events); |
Imre Deak | d4d70aa | 2014-11-19 15:30:04 +0200 | [diff] [blame] | 1434 | if (dev_priv->rps.interrupts_enabled) { |
| 1435 | dev_priv->rps.pm_iir |= pm_iir & dev_priv->pm_rps_events; |
| 1436 | queue_work(dev_priv->wq, &dev_priv->rps.work); |
| 1437 | } |
Daniel Vetter | 59cdb63 | 2013-07-04 23:35:28 +0200 | [diff] [blame] | 1438 | spin_unlock(&dev_priv->irq_lock); |
Ben Widawsky | baf02a1 | 2013-05-28 19:22:24 -0700 | [diff] [blame] | 1439 | } |
Ben Widawsky | baf02a1 | 2013-05-28 19:22:24 -0700 | [diff] [blame] | 1440 | |
Imre Deak | c9a9a26 | 2014-11-05 20:48:37 +0200 | [diff] [blame] | 1441 | if (INTEL_INFO(dev_priv)->gen >= 8) |
| 1442 | return; |
| 1443 | |
Paulo Zanoni | 1403c0d | 2013-08-15 11:51:32 -0300 | [diff] [blame] | 1444 | if (HAS_VEBOX(dev_priv->dev)) { |
| 1445 | if (pm_iir & PM_VEBOX_USER_INTERRUPT) |
Chris Wilson | 74cdb33 | 2015-04-07 16:21:05 +0100 | [diff] [blame] | 1446 | notify_ring(&dev_priv->ring[VECS]); |
Ben Widawsky | 12638c5 | 2013-05-28 19:22:31 -0700 | [diff] [blame] | 1447 | |
Daniel Vetter | aaecdf6 | 2014-11-04 15:52:22 +0100 | [diff] [blame] | 1448 | if (pm_iir & PM_VEBOX_CS_ERROR_INTERRUPT) |
| 1449 | DRM_DEBUG("Command parser error, pm_iir 0x%08x\n", pm_iir); |
Ben Widawsky | 12638c5 | 2013-05-28 19:22:31 -0700 | [diff] [blame] | 1450 | } |
Ben Widawsky | baf02a1 | 2013-05-28 19:22:24 -0700 | [diff] [blame] | 1451 | } |
| 1452 | |
Ville Syrjälä | 8d7849d | 2014-04-29 13:35:46 +0300 | [diff] [blame] | 1453 | static bool intel_pipe_handle_vblank(struct drm_device *dev, enum pipe pipe) |
| 1454 | { |
Ville Syrjälä | 8d7849d | 2014-04-29 13:35:46 +0300 | [diff] [blame] | 1455 | if (!drm_handle_vblank(dev, pipe)) |
| 1456 | return false; |
| 1457 | |
Ville Syrjälä | 8d7849d | 2014-04-29 13:35:46 +0300 | [diff] [blame] | 1458 | return true; |
| 1459 | } |
| 1460 | |
Imre Deak | c1874ed | 2014-02-04 21:35:46 +0200 | [diff] [blame] | 1461 | static void valleyview_pipestat_irq_handler(struct drm_device *dev, u32 iir) |
| 1462 | { |
| 1463 | struct drm_i915_private *dev_priv = dev->dev_private; |
Imre Deak | 91d181d | 2014-02-10 18:42:49 +0200 | [diff] [blame] | 1464 | u32 pipe_stats[I915_MAX_PIPES] = { }; |
Imre Deak | c1874ed | 2014-02-04 21:35:46 +0200 | [diff] [blame] | 1465 | int pipe; |
| 1466 | |
Imre Deak | 58ead0d | 2014-02-04 21:35:47 +0200 | [diff] [blame] | 1467 | spin_lock(&dev_priv->irq_lock); |
Damien Lespiau | 055e393 | 2014-08-18 13:49:10 +0100 | [diff] [blame] | 1468 | for_each_pipe(dev_priv, pipe) { |
Imre Deak | 91d181d | 2014-02-10 18:42:49 +0200 | [diff] [blame] | 1469 | int reg; |
Daniel Vetter | bbb5eeb | 2014-02-12 17:55:36 +0100 | [diff] [blame] | 1470 | u32 mask, iir_bit = 0; |
Imre Deak | 91d181d | 2014-02-10 18:42:49 +0200 | [diff] [blame] | 1471 | |
Daniel Vetter | bbb5eeb | 2014-02-12 17:55:36 +0100 | [diff] [blame] | 1472 | /* |
| 1473 | * PIPESTAT bits get signalled even when the interrupt is |
| 1474 | * disabled with the mask bits, and some of the status bits do |
| 1475 | * not generate interrupts at all (like the underrun bit). Hence |
| 1476 | * we need to be careful that we only handle what we want to |
| 1477 | * handle. |
| 1478 | */ |
Daniel Vetter | 0f239f4 | 2014-09-30 10:56:49 +0200 | [diff] [blame] | 1479 | |
| 1480 | /* fifo underruns are filterered in the underrun handler. */ |
| 1481 | mask = PIPE_FIFO_UNDERRUN_STATUS; |
Daniel Vetter | bbb5eeb | 2014-02-12 17:55:36 +0100 | [diff] [blame] | 1482 | |
| 1483 | switch (pipe) { |
| 1484 | case PIPE_A: |
| 1485 | iir_bit = I915_DISPLAY_PIPE_A_EVENT_INTERRUPT; |
| 1486 | break; |
| 1487 | case PIPE_B: |
| 1488 | iir_bit = I915_DISPLAY_PIPE_B_EVENT_INTERRUPT; |
| 1489 | break; |
Ville Syrjälä | 3278f67 | 2014-04-09 13:28:49 +0300 | [diff] [blame] | 1490 | case PIPE_C: |
| 1491 | iir_bit = I915_DISPLAY_PIPE_C_EVENT_INTERRUPT; |
| 1492 | break; |
Daniel Vetter | bbb5eeb | 2014-02-12 17:55:36 +0100 | [diff] [blame] | 1493 | } |
| 1494 | if (iir & iir_bit) |
| 1495 | mask |= dev_priv->pipestat_irq_mask[pipe]; |
| 1496 | |
| 1497 | if (!mask) |
Imre Deak | 91d181d | 2014-02-10 18:42:49 +0200 | [diff] [blame] | 1498 | continue; |
| 1499 | |
| 1500 | reg = PIPESTAT(pipe); |
Daniel Vetter | bbb5eeb | 2014-02-12 17:55:36 +0100 | [diff] [blame] | 1501 | mask |= PIPESTAT_INT_ENABLE_MASK; |
| 1502 | pipe_stats[pipe] = I915_READ(reg) & mask; |
Imre Deak | c1874ed | 2014-02-04 21:35:46 +0200 | [diff] [blame] | 1503 | |
| 1504 | /* |
| 1505 | * Clear the PIPE*STAT regs before the IIR |
| 1506 | */ |
Imre Deak | 91d181d | 2014-02-10 18:42:49 +0200 | [diff] [blame] | 1507 | if (pipe_stats[pipe] & (PIPE_FIFO_UNDERRUN_STATUS | |
| 1508 | PIPESTAT_INT_STATUS_MASK)) |
Imre Deak | c1874ed | 2014-02-04 21:35:46 +0200 | [diff] [blame] | 1509 | I915_WRITE(reg, pipe_stats[pipe]); |
| 1510 | } |
Imre Deak | 58ead0d | 2014-02-04 21:35:47 +0200 | [diff] [blame] | 1511 | spin_unlock(&dev_priv->irq_lock); |
Imre Deak | c1874ed | 2014-02-04 21:35:46 +0200 | [diff] [blame] | 1512 | |
Damien Lespiau | 055e393 | 2014-08-18 13:49:10 +0100 | [diff] [blame] | 1513 | for_each_pipe(dev_priv, pipe) { |
Chris Wilson | d6bbafa | 2014-09-05 07:13:24 +0100 | [diff] [blame] | 1514 | if (pipe_stats[pipe] & PIPE_START_VBLANK_INTERRUPT_STATUS && |
| 1515 | intel_pipe_handle_vblank(dev, pipe)) |
| 1516 | intel_check_page_flip(dev, pipe); |
Imre Deak | c1874ed | 2014-02-04 21:35:46 +0200 | [diff] [blame] | 1517 | |
Imre Deak | 579a9b0 | 2014-02-04 21:35:48 +0200 | [diff] [blame] | 1518 | if (pipe_stats[pipe] & PLANE_FLIP_DONE_INT_STATUS_VLV) { |
Imre Deak | c1874ed | 2014-02-04 21:35:46 +0200 | [diff] [blame] | 1519 | intel_prepare_page_flip(dev, pipe); |
| 1520 | intel_finish_page_flip(dev, pipe); |
| 1521 | } |
| 1522 | |
| 1523 | if (pipe_stats[pipe] & PIPE_CRC_DONE_INTERRUPT_STATUS) |
| 1524 | i9xx_pipe_crc_irq_handler(dev, pipe); |
| 1525 | |
Daniel Vetter | 1f7247c | 2014-09-30 10:56:48 +0200 | [diff] [blame] | 1526 | if (pipe_stats[pipe] & PIPE_FIFO_UNDERRUN_STATUS) |
| 1527 | intel_cpu_fifo_underrun_irq_handler(dev_priv, pipe); |
Imre Deak | c1874ed | 2014-02-04 21:35:46 +0200 | [diff] [blame] | 1528 | } |
| 1529 | |
| 1530 | if (pipe_stats[0] & PIPE_GMBUS_INTERRUPT_STATUS) |
| 1531 | gmbus_irq_handler(dev); |
| 1532 | } |
| 1533 | |
Ville Syrjälä | 16c6c56 | 2014-04-01 10:54:36 +0300 | [diff] [blame] | 1534 | static void i9xx_hpd_irq_handler(struct drm_device *dev) |
| 1535 | { |
| 1536 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 1537 | u32 hotplug_status = I915_READ(PORT_HOTPLUG_STAT); |
Jani Nikula | 676574d | 2015-05-28 15:43:53 +0300 | [diff] [blame] | 1538 | u32 pin_mask, long_mask; |
Ville Syrjälä | 16c6c56 | 2014-04-01 10:54:36 +0300 | [diff] [blame] | 1539 | |
Jani Nikula | 0d2e429 | 2015-05-27 15:03:39 +0300 | [diff] [blame] | 1540 | if (!hotplug_status) |
| 1541 | return; |
Ville Syrjälä | 16c6c56 | 2014-04-01 10:54:36 +0300 | [diff] [blame] | 1542 | |
Jani Nikula | 0d2e429 | 2015-05-27 15:03:39 +0300 | [diff] [blame] | 1543 | I915_WRITE(PORT_HOTPLUG_STAT, hotplug_status); |
| 1544 | /* |
| 1545 | * Make sure hotplug status is cleared before we clear IIR, or else we |
| 1546 | * may miss hotplug events. |
| 1547 | */ |
| 1548 | POSTING_READ(PORT_HOTPLUG_STAT); |
Ville Syrjälä | 16c6c56 | 2014-04-01 10:54:36 +0300 | [diff] [blame] | 1549 | |
Jani Nikula | 0d2e429 | 2015-05-27 15:03:39 +0300 | [diff] [blame] | 1550 | if (IS_G4X(dev) || IS_VALLEYVIEW(dev)) { |
| 1551 | u32 hotplug_trigger = hotplug_status & HOTPLUG_INT_STATUS_G4X; |
Oscar Mateo | 3ff60f8 | 2014-06-16 16:10:58 +0100 | [diff] [blame] | 1552 | |
Jani Nikula | 676574d | 2015-05-28 15:43:53 +0300 | [diff] [blame] | 1553 | i9xx_get_hpd_pins(&pin_mask, &long_mask, hotplug_trigger, hpd_status_g4x); |
| 1554 | intel_hpd_irq_handler(dev, pin_mask, long_mask); |
Jani Nikula | 369712e | 2015-05-27 15:03:40 +0300 | [diff] [blame] | 1555 | |
| 1556 | if (hotplug_status & DP_AUX_CHANNEL_MASK_INT_STATUS_G4X) |
| 1557 | dp_aux_irq_handler(dev); |
Jani Nikula | 0d2e429 | 2015-05-27 15:03:39 +0300 | [diff] [blame] | 1558 | } else { |
| 1559 | u32 hotplug_trigger = hotplug_status & HOTPLUG_INT_STATUS_I915; |
Oscar Mateo | 3ff60f8 | 2014-06-16 16:10:58 +0100 | [diff] [blame] | 1560 | |
Jani Nikula | 676574d | 2015-05-28 15:43:53 +0300 | [diff] [blame] | 1561 | i9xx_get_hpd_pins(&pin_mask, &long_mask, hotplug_trigger, hpd_status_i915); |
| 1562 | intel_hpd_irq_handler(dev, pin_mask, long_mask); |
Ville Syrjälä | 16c6c56 | 2014-04-01 10:54:36 +0300 | [diff] [blame] | 1563 | } |
Ville Syrjälä | 16c6c56 | 2014-04-01 10:54:36 +0300 | [diff] [blame] | 1564 | } |
| 1565 | |
Daniel Vetter | ff1f525 | 2012-10-02 15:10:55 +0200 | [diff] [blame] | 1566 | static irqreturn_t valleyview_irq_handler(int irq, void *arg) |
Jesse Barnes | 7e231dbe | 2012-03-28 13:39:38 -0700 | [diff] [blame] | 1567 | { |
Daniel Vetter | 45a83f8 | 2014-05-12 19:17:55 +0200 | [diff] [blame] | 1568 | struct drm_device *dev = arg; |
Jani Nikula | 2d1013d | 2014-03-31 14:27:17 +0300 | [diff] [blame] | 1569 | struct drm_i915_private *dev_priv = dev->dev_private; |
Jesse Barnes | 7e231dbe | 2012-03-28 13:39:38 -0700 | [diff] [blame] | 1570 | u32 iir, gt_iir, pm_iir; |
| 1571 | irqreturn_t ret = IRQ_NONE; |
Jesse Barnes | 7e231dbe | 2012-03-28 13:39:38 -0700 | [diff] [blame] | 1572 | |
Imre Deak | 2dd2a88 | 2015-02-24 11:14:30 +0200 | [diff] [blame] | 1573 | if (!intel_irqs_enabled(dev_priv)) |
| 1574 | return IRQ_NONE; |
| 1575 | |
Jesse Barnes | 7e231dbe | 2012-03-28 13:39:38 -0700 | [diff] [blame] | 1576 | while (true) { |
Oscar Mateo | 3ff60f8 | 2014-06-16 16:10:58 +0100 | [diff] [blame] | 1577 | /* Find, clear, then process each source of interrupt */ |
| 1578 | |
Jesse Barnes | 7e231dbe | 2012-03-28 13:39:38 -0700 | [diff] [blame] | 1579 | gt_iir = I915_READ(GTIIR); |
Oscar Mateo | 3ff60f8 | 2014-06-16 16:10:58 +0100 | [diff] [blame] | 1580 | if (gt_iir) |
| 1581 | I915_WRITE(GTIIR, gt_iir); |
| 1582 | |
Jesse Barnes | 7e231dbe | 2012-03-28 13:39:38 -0700 | [diff] [blame] | 1583 | pm_iir = I915_READ(GEN6_PMIIR); |
Oscar Mateo | 3ff60f8 | 2014-06-16 16:10:58 +0100 | [diff] [blame] | 1584 | if (pm_iir) |
| 1585 | I915_WRITE(GEN6_PMIIR, pm_iir); |
| 1586 | |
| 1587 | iir = I915_READ(VLV_IIR); |
| 1588 | if (iir) { |
| 1589 | /* Consume port before clearing IIR or we'll miss events */ |
| 1590 | if (iir & I915_DISPLAY_PORT_INTERRUPT) |
| 1591 | i9xx_hpd_irq_handler(dev); |
| 1592 | I915_WRITE(VLV_IIR, iir); |
| 1593 | } |
Jesse Barnes | 7e231dbe | 2012-03-28 13:39:38 -0700 | [diff] [blame] | 1594 | |
| 1595 | if (gt_iir == 0 && pm_iir == 0 && iir == 0) |
| 1596 | goto out; |
| 1597 | |
| 1598 | ret = IRQ_HANDLED; |
| 1599 | |
Oscar Mateo | 3ff60f8 | 2014-06-16 16:10:58 +0100 | [diff] [blame] | 1600 | if (gt_iir) |
| 1601 | snb_gt_irq_handler(dev, dev_priv, gt_iir); |
Paulo Zanoni | 60611c1 | 2013-08-15 11:50:01 -0300 | [diff] [blame] | 1602 | if (pm_iir) |
Daniel Vetter | d0ecd7e | 2013-07-04 23:35:25 +0200 | [diff] [blame] | 1603 | gen6_rps_irq_handler(dev_priv, pm_iir); |
Oscar Mateo | 3ff60f8 | 2014-06-16 16:10:58 +0100 | [diff] [blame] | 1604 | /* Call regardless, as some status bits might not be |
| 1605 | * signalled in iir */ |
| 1606 | valleyview_pipestat_irq_handler(dev, iir); |
Jesse Barnes | 7e231dbe | 2012-03-28 13:39:38 -0700 | [diff] [blame] | 1607 | } |
| 1608 | |
| 1609 | out: |
| 1610 | return ret; |
| 1611 | } |
| 1612 | |
Ville Syrjälä | 43f328d | 2014-04-09 20:40:52 +0300 | [diff] [blame] | 1613 | static irqreturn_t cherryview_irq_handler(int irq, void *arg) |
| 1614 | { |
Daniel Vetter | 45a83f8 | 2014-05-12 19:17:55 +0200 | [diff] [blame] | 1615 | struct drm_device *dev = arg; |
Ville Syrjälä | 43f328d | 2014-04-09 20:40:52 +0300 | [diff] [blame] | 1616 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 1617 | u32 master_ctl, iir; |
| 1618 | irqreturn_t ret = IRQ_NONE; |
Ville Syrjälä | 43f328d | 2014-04-09 20:40:52 +0300 | [diff] [blame] | 1619 | |
Imre Deak | 2dd2a88 | 2015-02-24 11:14:30 +0200 | [diff] [blame] | 1620 | if (!intel_irqs_enabled(dev_priv)) |
| 1621 | return IRQ_NONE; |
| 1622 | |
Ville Syrjälä | 8e5fd59 | 2014-04-09 13:28:50 +0300 | [diff] [blame] | 1623 | for (;;) { |
| 1624 | master_ctl = I915_READ(GEN8_MASTER_IRQ) & ~GEN8_MASTER_IRQ_CONTROL; |
| 1625 | iir = I915_READ(VLV_IIR); |
Ville Syrjälä | 3278f67 | 2014-04-09 13:28:49 +0300 | [diff] [blame] | 1626 | |
Ville Syrjälä | 8e5fd59 | 2014-04-09 13:28:50 +0300 | [diff] [blame] | 1627 | if (master_ctl == 0 && iir == 0) |
| 1628 | break; |
Ville Syrjälä | 43f328d | 2014-04-09 20:40:52 +0300 | [diff] [blame] | 1629 | |
Oscar Mateo | 27b6c12 | 2014-06-16 16:11:00 +0100 | [diff] [blame] | 1630 | ret = IRQ_HANDLED; |
| 1631 | |
Ville Syrjälä | 8e5fd59 | 2014-04-09 13:28:50 +0300 | [diff] [blame] | 1632 | I915_WRITE(GEN8_MASTER_IRQ, 0); |
Ville Syrjälä | 43f328d | 2014-04-09 20:40:52 +0300 | [diff] [blame] | 1633 | |
Oscar Mateo | 27b6c12 | 2014-06-16 16:11:00 +0100 | [diff] [blame] | 1634 | /* Find, clear, then process each source of interrupt */ |
| 1635 | |
| 1636 | if (iir) { |
| 1637 | /* Consume port before clearing IIR or we'll miss events */ |
| 1638 | if (iir & I915_DISPLAY_PORT_INTERRUPT) |
| 1639 | i9xx_hpd_irq_handler(dev); |
| 1640 | I915_WRITE(VLV_IIR, iir); |
| 1641 | } |
| 1642 | |
Chris Wilson | 74cdb33 | 2015-04-07 16:21:05 +0100 | [diff] [blame] | 1643 | gen8_gt_irq_handler(dev_priv, master_ctl); |
Ville Syrjälä | 43f328d | 2014-04-09 20:40:52 +0300 | [diff] [blame] | 1644 | |
Oscar Mateo | 27b6c12 | 2014-06-16 16:11:00 +0100 | [diff] [blame] | 1645 | /* Call regardless, as some status bits might not be |
| 1646 | * signalled in iir */ |
Ville Syrjälä | 8e5fd59 | 2014-04-09 13:28:50 +0300 | [diff] [blame] | 1647 | valleyview_pipestat_irq_handler(dev, iir); |
Ville Syrjälä | 43f328d | 2014-04-09 20:40:52 +0300 | [diff] [blame] | 1648 | |
Ville Syrjälä | 8e5fd59 | 2014-04-09 13:28:50 +0300 | [diff] [blame] | 1649 | I915_WRITE(GEN8_MASTER_IRQ, DE_MASTER_IRQ_CONTROL); |
| 1650 | POSTING_READ(GEN8_MASTER_IRQ); |
Ville Syrjälä | 43f328d | 2014-04-09 20:40:52 +0300 | [diff] [blame] | 1651 | } |
| 1652 | |
Ville Syrjälä | 43f328d | 2014-04-09 20:40:52 +0300 | [diff] [blame] | 1653 | return ret; |
| 1654 | } |
| 1655 | |
Adam Jackson | 23e81d6 | 2012-06-06 15:45:44 -0400 | [diff] [blame] | 1656 | static void ibx_irq_handler(struct drm_device *dev, u32 pch_iir) |
Jesse Barnes | 776ad80 | 2011-01-04 15:09:39 -0800 | [diff] [blame] | 1657 | { |
Jani Nikula | 2d1013d | 2014-03-31 14:27:17 +0300 | [diff] [blame] | 1658 | struct drm_i915_private *dev_priv = dev->dev_private; |
Jesse Barnes | 9db4a9c | 2011-02-07 12:26:52 -0800 | [diff] [blame] | 1659 | int pipe; |
Egbert Eich | b543fb0 | 2013-04-16 13:36:54 +0200 | [diff] [blame] | 1660 | u32 hotplug_trigger = pch_iir & SDE_HOTPLUG_MASK; |
Dave Airlie | 13cf550 | 2014-06-18 11:29:35 +1000 | [diff] [blame] | 1661 | u32 dig_hotplug_reg; |
Jani Nikula | 676574d | 2015-05-28 15:43:53 +0300 | [diff] [blame] | 1662 | u32 pin_mask, long_mask; |
Jesse Barnes | 776ad80 | 2011-01-04 15:09:39 -0800 | [diff] [blame] | 1663 | |
Dave Airlie | 13cf550 | 2014-06-18 11:29:35 +1000 | [diff] [blame] | 1664 | dig_hotplug_reg = I915_READ(PCH_PORT_HOTPLUG); |
| 1665 | I915_WRITE(PCH_PORT_HOTPLUG, dig_hotplug_reg); |
| 1666 | |
Jani Nikula | 676574d | 2015-05-28 15:43:53 +0300 | [diff] [blame] | 1667 | pch_get_hpd_pins(&pin_mask, &long_mask, hotplug_trigger, dig_hotplug_reg, hpd_ibx); |
| 1668 | intel_hpd_irq_handler(dev, pin_mask, long_mask); |
Daniel Vetter | 91d131d | 2013-06-27 17:52:14 +0200 | [diff] [blame] | 1669 | |
Ville Syrjälä | cfc33bf | 2013-04-17 17:48:48 +0300 | [diff] [blame] | 1670 | if (pch_iir & SDE_AUDIO_POWER_MASK) { |
| 1671 | int port = ffs((pch_iir & SDE_AUDIO_POWER_MASK) >> |
| 1672 | SDE_AUDIO_POWER_SHIFT); |
Jesse Barnes | 776ad80 | 2011-01-04 15:09:39 -0800 | [diff] [blame] | 1673 | DRM_DEBUG_DRIVER("PCH audio power change on port %d\n", |
Ville Syrjälä | cfc33bf | 2013-04-17 17:48:48 +0300 | [diff] [blame] | 1674 | port_name(port)); |
| 1675 | } |
Jesse Barnes | 776ad80 | 2011-01-04 15:09:39 -0800 | [diff] [blame] | 1676 | |
Daniel Vetter | ce99c25 | 2012-12-01 13:53:47 +0100 | [diff] [blame] | 1677 | if (pch_iir & SDE_AUX_MASK) |
| 1678 | dp_aux_irq_handler(dev); |
| 1679 | |
Jesse Barnes | 776ad80 | 2011-01-04 15:09:39 -0800 | [diff] [blame] | 1680 | if (pch_iir & SDE_GMBUS) |
Daniel Vetter | 515ac2b | 2012-12-01 13:53:44 +0100 | [diff] [blame] | 1681 | gmbus_irq_handler(dev); |
Jesse Barnes | 776ad80 | 2011-01-04 15:09:39 -0800 | [diff] [blame] | 1682 | |
| 1683 | if (pch_iir & SDE_AUDIO_HDCP_MASK) |
| 1684 | DRM_DEBUG_DRIVER("PCH HDCP audio interrupt\n"); |
| 1685 | |
| 1686 | if (pch_iir & SDE_AUDIO_TRANS_MASK) |
| 1687 | DRM_DEBUG_DRIVER("PCH transcoder audio interrupt\n"); |
| 1688 | |
| 1689 | if (pch_iir & SDE_POISON) |
| 1690 | DRM_ERROR("PCH poison interrupt\n"); |
| 1691 | |
Jesse Barnes | 9db4a9c | 2011-02-07 12:26:52 -0800 | [diff] [blame] | 1692 | if (pch_iir & SDE_FDI_MASK) |
Damien Lespiau | 055e393 | 2014-08-18 13:49:10 +0100 | [diff] [blame] | 1693 | for_each_pipe(dev_priv, pipe) |
Jesse Barnes | 9db4a9c | 2011-02-07 12:26:52 -0800 | [diff] [blame] | 1694 | DRM_DEBUG_DRIVER(" pipe %c FDI IIR: 0x%08x\n", |
| 1695 | pipe_name(pipe), |
| 1696 | I915_READ(FDI_RX_IIR(pipe))); |
Jesse Barnes | 776ad80 | 2011-01-04 15:09:39 -0800 | [diff] [blame] | 1697 | |
| 1698 | if (pch_iir & (SDE_TRANSB_CRC_DONE | SDE_TRANSA_CRC_DONE)) |
| 1699 | DRM_DEBUG_DRIVER("PCH transcoder CRC done interrupt\n"); |
| 1700 | |
| 1701 | if (pch_iir & (SDE_TRANSB_CRC_ERR | SDE_TRANSA_CRC_ERR)) |
| 1702 | DRM_DEBUG_DRIVER("PCH transcoder CRC error interrupt\n"); |
| 1703 | |
Jesse Barnes | 776ad80 | 2011-01-04 15:09:39 -0800 | [diff] [blame] | 1704 | if (pch_iir & SDE_TRANSA_FIFO_UNDER) |
Daniel Vetter | 1f7247c | 2014-09-30 10:56:48 +0200 | [diff] [blame] | 1705 | intel_pch_fifo_underrun_irq_handler(dev_priv, TRANSCODER_A); |
Paulo Zanoni | 8664281 | 2013-04-12 17:57:57 -0300 | [diff] [blame] | 1706 | |
| 1707 | if (pch_iir & SDE_TRANSB_FIFO_UNDER) |
Daniel Vetter | 1f7247c | 2014-09-30 10:56:48 +0200 | [diff] [blame] | 1708 | intel_pch_fifo_underrun_irq_handler(dev_priv, TRANSCODER_B); |
Paulo Zanoni | 8664281 | 2013-04-12 17:57:57 -0300 | [diff] [blame] | 1709 | } |
| 1710 | |
| 1711 | static void ivb_err_int_handler(struct drm_device *dev) |
| 1712 | { |
| 1713 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 1714 | u32 err_int = I915_READ(GEN7_ERR_INT); |
Daniel Vetter | 5a69b89 | 2013-10-16 22:55:52 +0200 | [diff] [blame] | 1715 | enum pipe pipe; |
Paulo Zanoni | 8664281 | 2013-04-12 17:57:57 -0300 | [diff] [blame] | 1716 | |
Paulo Zanoni | de032bf | 2013-04-12 17:57:58 -0300 | [diff] [blame] | 1717 | if (err_int & ERR_INT_POISON) |
| 1718 | DRM_ERROR("Poison interrupt\n"); |
| 1719 | |
Damien Lespiau | 055e393 | 2014-08-18 13:49:10 +0100 | [diff] [blame] | 1720 | for_each_pipe(dev_priv, pipe) { |
Daniel Vetter | 1f7247c | 2014-09-30 10:56:48 +0200 | [diff] [blame] | 1721 | if (err_int & ERR_INT_FIFO_UNDERRUN(pipe)) |
| 1722 | intel_cpu_fifo_underrun_irq_handler(dev_priv, pipe); |
Paulo Zanoni | 8664281 | 2013-04-12 17:57:57 -0300 | [diff] [blame] | 1723 | |
Daniel Vetter | 5a69b89 | 2013-10-16 22:55:52 +0200 | [diff] [blame] | 1724 | if (err_int & ERR_INT_PIPE_CRC_DONE(pipe)) { |
| 1725 | if (IS_IVYBRIDGE(dev)) |
Daniel Vetter | 277de95 | 2013-10-18 16:37:07 +0200 | [diff] [blame] | 1726 | ivb_pipe_crc_irq_handler(dev, pipe); |
Daniel Vetter | 5a69b89 | 2013-10-16 22:55:52 +0200 | [diff] [blame] | 1727 | else |
Daniel Vetter | 277de95 | 2013-10-18 16:37:07 +0200 | [diff] [blame] | 1728 | hsw_pipe_crc_irq_handler(dev, pipe); |
Daniel Vetter | 5a69b89 | 2013-10-16 22:55:52 +0200 | [diff] [blame] | 1729 | } |
| 1730 | } |
Shuang He | 8bf1e9f | 2013-10-15 18:55:27 +0100 | [diff] [blame] | 1731 | |
Paulo Zanoni | 8664281 | 2013-04-12 17:57:57 -0300 | [diff] [blame] | 1732 | I915_WRITE(GEN7_ERR_INT, err_int); |
| 1733 | } |
| 1734 | |
| 1735 | static void cpt_serr_int_handler(struct drm_device *dev) |
| 1736 | { |
| 1737 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 1738 | u32 serr_int = I915_READ(SERR_INT); |
| 1739 | |
Paulo Zanoni | de032bf | 2013-04-12 17:57:58 -0300 | [diff] [blame] | 1740 | if (serr_int & SERR_INT_POISON) |
| 1741 | DRM_ERROR("PCH poison interrupt\n"); |
| 1742 | |
Paulo Zanoni | 8664281 | 2013-04-12 17:57:57 -0300 | [diff] [blame] | 1743 | if (serr_int & SERR_INT_TRANS_A_FIFO_UNDERRUN) |
Daniel Vetter | 1f7247c | 2014-09-30 10:56:48 +0200 | [diff] [blame] | 1744 | intel_pch_fifo_underrun_irq_handler(dev_priv, TRANSCODER_A); |
Paulo Zanoni | 8664281 | 2013-04-12 17:57:57 -0300 | [diff] [blame] | 1745 | |
| 1746 | if (serr_int & SERR_INT_TRANS_B_FIFO_UNDERRUN) |
Daniel Vetter | 1f7247c | 2014-09-30 10:56:48 +0200 | [diff] [blame] | 1747 | intel_pch_fifo_underrun_irq_handler(dev_priv, TRANSCODER_B); |
Paulo Zanoni | 8664281 | 2013-04-12 17:57:57 -0300 | [diff] [blame] | 1748 | |
| 1749 | if (serr_int & SERR_INT_TRANS_C_FIFO_UNDERRUN) |
Daniel Vetter | 1f7247c | 2014-09-30 10:56:48 +0200 | [diff] [blame] | 1750 | intel_pch_fifo_underrun_irq_handler(dev_priv, TRANSCODER_C); |
Paulo Zanoni | 8664281 | 2013-04-12 17:57:57 -0300 | [diff] [blame] | 1751 | |
| 1752 | I915_WRITE(SERR_INT, serr_int); |
Jesse Barnes | 776ad80 | 2011-01-04 15:09:39 -0800 | [diff] [blame] | 1753 | } |
| 1754 | |
Adam Jackson | 23e81d6 | 2012-06-06 15:45:44 -0400 | [diff] [blame] | 1755 | static void cpt_irq_handler(struct drm_device *dev, u32 pch_iir) |
| 1756 | { |
Jani Nikula | 2d1013d | 2014-03-31 14:27:17 +0300 | [diff] [blame] | 1757 | struct drm_i915_private *dev_priv = dev->dev_private; |
Adam Jackson | 23e81d6 | 2012-06-06 15:45:44 -0400 | [diff] [blame] | 1758 | int pipe; |
Egbert Eich | b543fb0 | 2013-04-16 13:36:54 +0200 | [diff] [blame] | 1759 | u32 hotplug_trigger = pch_iir & SDE_HOTPLUG_MASK_CPT; |
Dave Airlie | 13cf550 | 2014-06-18 11:29:35 +1000 | [diff] [blame] | 1760 | u32 dig_hotplug_reg; |
Jani Nikula | 676574d | 2015-05-28 15:43:53 +0300 | [diff] [blame] | 1761 | u32 pin_mask, long_mask; |
Adam Jackson | 23e81d6 | 2012-06-06 15:45:44 -0400 | [diff] [blame] | 1762 | |
Dave Airlie | 13cf550 | 2014-06-18 11:29:35 +1000 | [diff] [blame] | 1763 | dig_hotplug_reg = I915_READ(PCH_PORT_HOTPLUG); |
| 1764 | I915_WRITE(PCH_PORT_HOTPLUG, dig_hotplug_reg); |
| 1765 | |
Jani Nikula | 676574d | 2015-05-28 15:43:53 +0300 | [diff] [blame] | 1766 | pch_get_hpd_pins(&pin_mask, &long_mask, hotplug_trigger, dig_hotplug_reg, hpd_cpt); |
| 1767 | intel_hpd_irq_handler(dev, pin_mask, long_mask); |
Daniel Vetter | 91d131d | 2013-06-27 17:52:14 +0200 | [diff] [blame] | 1768 | |
Ville Syrjälä | cfc33bf | 2013-04-17 17:48:48 +0300 | [diff] [blame] | 1769 | if (pch_iir & SDE_AUDIO_POWER_MASK_CPT) { |
| 1770 | int port = ffs((pch_iir & SDE_AUDIO_POWER_MASK_CPT) >> |
| 1771 | SDE_AUDIO_POWER_SHIFT_CPT); |
| 1772 | DRM_DEBUG_DRIVER("PCH audio power change on port %c\n", |
| 1773 | port_name(port)); |
| 1774 | } |
Adam Jackson | 23e81d6 | 2012-06-06 15:45:44 -0400 | [diff] [blame] | 1775 | |
| 1776 | if (pch_iir & SDE_AUX_MASK_CPT) |
Daniel Vetter | ce99c25 | 2012-12-01 13:53:47 +0100 | [diff] [blame] | 1777 | dp_aux_irq_handler(dev); |
Adam Jackson | 23e81d6 | 2012-06-06 15:45:44 -0400 | [diff] [blame] | 1778 | |
| 1779 | if (pch_iir & SDE_GMBUS_CPT) |
Daniel Vetter | 515ac2b | 2012-12-01 13:53:44 +0100 | [diff] [blame] | 1780 | gmbus_irq_handler(dev); |
Adam Jackson | 23e81d6 | 2012-06-06 15:45:44 -0400 | [diff] [blame] | 1781 | |
| 1782 | if (pch_iir & SDE_AUDIO_CP_REQ_CPT) |
| 1783 | DRM_DEBUG_DRIVER("Audio CP request interrupt\n"); |
| 1784 | |
| 1785 | if (pch_iir & SDE_AUDIO_CP_CHG_CPT) |
| 1786 | DRM_DEBUG_DRIVER("Audio CP change interrupt\n"); |
| 1787 | |
| 1788 | if (pch_iir & SDE_FDI_MASK_CPT) |
Damien Lespiau | 055e393 | 2014-08-18 13:49:10 +0100 | [diff] [blame] | 1789 | for_each_pipe(dev_priv, pipe) |
Adam Jackson | 23e81d6 | 2012-06-06 15:45:44 -0400 | [diff] [blame] | 1790 | DRM_DEBUG_DRIVER(" pipe %c FDI IIR: 0x%08x\n", |
| 1791 | pipe_name(pipe), |
| 1792 | I915_READ(FDI_RX_IIR(pipe))); |
Paulo Zanoni | 8664281 | 2013-04-12 17:57:57 -0300 | [diff] [blame] | 1793 | |
| 1794 | if (pch_iir & SDE_ERROR_CPT) |
| 1795 | cpt_serr_int_handler(dev); |
Adam Jackson | 23e81d6 | 2012-06-06 15:45:44 -0400 | [diff] [blame] | 1796 | } |
| 1797 | |
Paulo Zanoni | c008bc6 | 2013-07-12 16:35:10 -0300 | [diff] [blame] | 1798 | static void ilk_display_irq_handler(struct drm_device *dev, u32 de_iir) |
| 1799 | { |
| 1800 | struct drm_i915_private *dev_priv = dev->dev_private; |
Daniel Vetter | 40da17c | 2013-10-21 18:04:36 +0200 | [diff] [blame] | 1801 | enum pipe pipe; |
Paulo Zanoni | c008bc6 | 2013-07-12 16:35:10 -0300 | [diff] [blame] | 1802 | |
| 1803 | if (de_iir & DE_AUX_CHANNEL_A) |
| 1804 | dp_aux_irq_handler(dev); |
| 1805 | |
| 1806 | if (de_iir & DE_GSE) |
| 1807 | intel_opregion_asle_intr(dev); |
| 1808 | |
Paulo Zanoni | c008bc6 | 2013-07-12 16:35:10 -0300 | [diff] [blame] | 1809 | if (de_iir & DE_POISON) |
| 1810 | DRM_ERROR("Poison interrupt\n"); |
| 1811 | |
Damien Lespiau | 055e393 | 2014-08-18 13:49:10 +0100 | [diff] [blame] | 1812 | for_each_pipe(dev_priv, pipe) { |
Chris Wilson | d6bbafa | 2014-09-05 07:13:24 +0100 | [diff] [blame] | 1813 | if (de_iir & DE_PIPE_VBLANK(pipe) && |
| 1814 | intel_pipe_handle_vblank(dev, pipe)) |
| 1815 | intel_check_page_flip(dev, pipe); |
Paulo Zanoni | c008bc6 | 2013-07-12 16:35:10 -0300 | [diff] [blame] | 1816 | |
Daniel Vetter | 40da17c | 2013-10-21 18:04:36 +0200 | [diff] [blame] | 1817 | if (de_iir & DE_PIPE_FIFO_UNDERRUN(pipe)) |
Daniel Vetter | 1f7247c | 2014-09-30 10:56:48 +0200 | [diff] [blame] | 1818 | intel_cpu_fifo_underrun_irq_handler(dev_priv, pipe); |
Paulo Zanoni | c008bc6 | 2013-07-12 16:35:10 -0300 | [diff] [blame] | 1819 | |
Daniel Vetter | 40da17c | 2013-10-21 18:04:36 +0200 | [diff] [blame] | 1820 | if (de_iir & DE_PIPE_CRC_DONE(pipe)) |
| 1821 | i9xx_pipe_crc_irq_handler(dev, pipe); |
Daniel Vetter | 5b3a856 | 2013-10-16 22:55:48 +0200 | [diff] [blame] | 1822 | |
Daniel Vetter | 40da17c | 2013-10-21 18:04:36 +0200 | [diff] [blame] | 1823 | /* plane/pipes map 1:1 on ilk+ */ |
| 1824 | if (de_iir & DE_PLANE_FLIP_DONE(pipe)) { |
| 1825 | intel_prepare_page_flip(dev, pipe); |
| 1826 | intel_finish_page_flip_plane(dev, pipe); |
| 1827 | } |
Paulo Zanoni | c008bc6 | 2013-07-12 16:35:10 -0300 | [diff] [blame] | 1828 | } |
| 1829 | |
| 1830 | /* check event from PCH */ |
| 1831 | if (de_iir & DE_PCH_EVENT) { |
| 1832 | u32 pch_iir = I915_READ(SDEIIR); |
| 1833 | |
| 1834 | if (HAS_PCH_CPT(dev)) |
| 1835 | cpt_irq_handler(dev, pch_iir); |
| 1836 | else |
| 1837 | ibx_irq_handler(dev, pch_iir); |
| 1838 | |
| 1839 | /* should clear PCH hotplug event before clear CPU irq */ |
| 1840 | I915_WRITE(SDEIIR, pch_iir); |
| 1841 | } |
| 1842 | |
| 1843 | if (IS_GEN5(dev) && de_iir & DE_PCU_EVENT) |
| 1844 | ironlake_rps_change_irq_handler(dev); |
| 1845 | } |
| 1846 | |
Paulo Zanoni | 9719fb9 | 2013-07-12 16:35:11 -0300 | [diff] [blame] | 1847 | static void ivb_display_irq_handler(struct drm_device *dev, u32 de_iir) |
| 1848 | { |
| 1849 | struct drm_i915_private *dev_priv = dev->dev_private; |
Damien Lespiau | 07d27e2 | 2014-03-03 17:31:46 +0000 | [diff] [blame] | 1850 | enum pipe pipe; |
Paulo Zanoni | 9719fb9 | 2013-07-12 16:35:11 -0300 | [diff] [blame] | 1851 | |
| 1852 | if (de_iir & DE_ERR_INT_IVB) |
| 1853 | ivb_err_int_handler(dev); |
| 1854 | |
| 1855 | if (de_iir & DE_AUX_CHANNEL_A_IVB) |
| 1856 | dp_aux_irq_handler(dev); |
| 1857 | |
| 1858 | if (de_iir & DE_GSE_IVB) |
| 1859 | intel_opregion_asle_intr(dev); |
| 1860 | |
Damien Lespiau | 055e393 | 2014-08-18 13:49:10 +0100 | [diff] [blame] | 1861 | for_each_pipe(dev_priv, pipe) { |
Chris Wilson | d6bbafa | 2014-09-05 07:13:24 +0100 | [diff] [blame] | 1862 | if (de_iir & (DE_PIPE_VBLANK_IVB(pipe)) && |
| 1863 | intel_pipe_handle_vblank(dev, pipe)) |
| 1864 | intel_check_page_flip(dev, pipe); |
Daniel Vetter | 40da17c | 2013-10-21 18:04:36 +0200 | [diff] [blame] | 1865 | |
| 1866 | /* plane/pipes map 1:1 on ilk+ */ |
Damien Lespiau | 07d27e2 | 2014-03-03 17:31:46 +0000 | [diff] [blame] | 1867 | if (de_iir & DE_PLANE_FLIP_DONE_IVB(pipe)) { |
| 1868 | intel_prepare_page_flip(dev, pipe); |
| 1869 | intel_finish_page_flip_plane(dev, pipe); |
Paulo Zanoni | 9719fb9 | 2013-07-12 16:35:11 -0300 | [diff] [blame] | 1870 | } |
| 1871 | } |
| 1872 | |
| 1873 | /* check event from PCH */ |
| 1874 | if (!HAS_PCH_NOP(dev) && (de_iir & DE_PCH_EVENT_IVB)) { |
| 1875 | u32 pch_iir = I915_READ(SDEIIR); |
| 1876 | |
| 1877 | cpt_irq_handler(dev, pch_iir); |
| 1878 | |
| 1879 | /* clear PCH hotplug event before clear CPU irq */ |
| 1880 | I915_WRITE(SDEIIR, pch_iir); |
| 1881 | } |
| 1882 | } |
| 1883 | |
Oscar Mateo | 72c90f6 | 2014-06-16 16:10:57 +0100 | [diff] [blame] | 1884 | /* |
| 1885 | * To handle irqs with the minimum potential races with fresh interrupts, we: |
| 1886 | * 1 - Disable Master Interrupt Control. |
| 1887 | * 2 - Find the source(s) of the interrupt. |
| 1888 | * 3 - Clear the Interrupt Identity bits (IIR). |
| 1889 | * 4 - Process the interrupt(s) that had bits set in the IIRs. |
| 1890 | * 5 - Re-enable Master Interrupt Control. |
| 1891 | */ |
Paulo Zanoni | f1af8fc | 2013-07-12 19:56:30 -0300 | [diff] [blame] | 1892 | static irqreturn_t ironlake_irq_handler(int irq, void *arg) |
Jesse Barnes | b1f14ad | 2011-04-06 12:13:38 -0700 | [diff] [blame] | 1893 | { |
Daniel Vetter | 45a83f8 | 2014-05-12 19:17:55 +0200 | [diff] [blame] | 1894 | struct drm_device *dev = arg; |
Jani Nikula | 2d1013d | 2014-03-31 14:27:17 +0300 | [diff] [blame] | 1895 | struct drm_i915_private *dev_priv = dev->dev_private; |
Paulo Zanoni | f1af8fc | 2013-07-12 19:56:30 -0300 | [diff] [blame] | 1896 | u32 de_iir, gt_iir, de_ier, sde_ier = 0; |
Chris Wilson | 0e43406 | 2012-05-09 21:45:44 +0100 | [diff] [blame] | 1897 | irqreturn_t ret = IRQ_NONE; |
Jesse Barnes | b1f14ad | 2011-04-06 12:13:38 -0700 | [diff] [blame] | 1898 | |
Imre Deak | 2dd2a88 | 2015-02-24 11:14:30 +0200 | [diff] [blame] | 1899 | if (!intel_irqs_enabled(dev_priv)) |
| 1900 | return IRQ_NONE; |
| 1901 | |
Paulo Zanoni | 8664281 | 2013-04-12 17:57:57 -0300 | [diff] [blame] | 1902 | /* We get interrupts on unclaimed registers, so check for this before we |
| 1903 | * do any I915_{READ,WRITE}. */ |
Chris Wilson | 907b28c | 2013-07-19 20:36:52 +0100 | [diff] [blame] | 1904 | intel_uncore_check_errors(dev); |
Paulo Zanoni | 8664281 | 2013-04-12 17:57:57 -0300 | [diff] [blame] | 1905 | |
Jesse Barnes | b1f14ad | 2011-04-06 12:13:38 -0700 | [diff] [blame] | 1906 | /* disable master interrupt before clearing iir */ |
| 1907 | de_ier = I915_READ(DEIER); |
| 1908 | I915_WRITE(DEIER, de_ier & ~DE_MASTER_IRQ_CONTROL); |
Paulo Zanoni | 23a7851 | 2013-07-12 16:35:14 -0300 | [diff] [blame] | 1909 | POSTING_READ(DEIER); |
Chris Wilson | 0e43406 | 2012-05-09 21:45:44 +0100 | [diff] [blame] | 1910 | |
Paulo Zanoni | 44498ae | 2013-02-22 17:05:28 -0300 | [diff] [blame] | 1911 | /* Disable south interrupts. We'll only write to SDEIIR once, so further |
| 1912 | * interrupts will will be stored on its back queue, and then we'll be |
| 1913 | * able to process them after we restore SDEIER (as soon as we restore |
| 1914 | * it, we'll get an interrupt if SDEIIR still has something to process |
| 1915 | * due to its back queue). */ |
Ben Widawsky | ab5c608 | 2013-04-05 13:12:41 -0700 | [diff] [blame] | 1916 | if (!HAS_PCH_NOP(dev)) { |
| 1917 | sde_ier = I915_READ(SDEIER); |
| 1918 | I915_WRITE(SDEIER, 0); |
| 1919 | POSTING_READ(SDEIER); |
| 1920 | } |
Paulo Zanoni | 44498ae | 2013-02-22 17:05:28 -0300 | [diff] [blame] | 1921 | |
Oscar Mateo | 72c90f6 | 2014-06-16 16:10:57 +0100 | [diff] [blame] | 1922 | /* Find, clear, then process each source of interrupt */ |
| 1923 | |
Chris Wilson | 0e43406 | 2012-05-09 21:45:44 +0100 | [diff] [blame] | 1924 | gt_iir = I915_READ(GTIIR); |
| 1925 | if (gt_iir) { |
Oscar Mateo | 72c90f6 | 2014-06-16 16:10:57 +0100 | [diff] [blame] | 1926 | I915_WRITE(GTIIR, gt_iir); |
| 1927 | ret = IRQ_HANDLED; |
Paulo Zanoni | d8fc8a4 | 2013-07-19 18:57:55 -0300 | [diff] [blame] | 1928 | if (INTEL_INFO(dev)->gen >= 6) |
Paulo Zanoni | f1af8fc | 2013-07-12 19:56:30 -0300 | [diff] [blame] | 1929 | snb_gt_irq_handler(dev, dev_priv, gt_iir); |
Paulo Zanoni | d8fc8a4 | 2013-07-19 18:57:55 -0300 | [diff] [blame] | 1930 | else |
| 1931 | ilk_gt_irq_handler(dev, dev_priv, gt_iir); |
Chris Wilson | 0e43406 | 2012-05-09 21:45:44 +0100 | [diff] [blame] | 1932 | } |
Jesse Barnes | b1f14ad | 2011-04-06 12:13:38 -0700 | [diff] [blame] | 1933 | |
| 1934 | de_iir = I915_READ(DEIIR); |
Chris Wilson | 0e43406 | 2012-05-09 21:45:44 +0100 | [diff] [blame] | 1935 | if (de_iir) { |
Oscar Mateo | 72c90f6 | 2014-06-16 16:10:57 +0100 | [diff] [blame] | 1936 | I915_WRITE(DEIIR, de_iir); |
| 1937 | ret = IRQ_HANDLED; |
Paulo Zanoni | f1af8fc | 2013-07-12 19:56:30 -0300 | [diff] [blame] | 1938 | if (INTEL_INFO(dev)->gen >= 7) |
| 1939 | ivb_display_irq_handler(dev, de_iir); |
| 1940 | else |
| 1941 | ilk_display_irq_handler(dev, de_iir); |
Chris Wilson | 0e43406 | 2012-05-09 21:45:44 +0100 | [diff] [blame] | 1942 | } |
| 1943 | |
Paulo Zanoni | f1af8fc | 2013-07-12 19:56:30 -0300 | [diff] [blame] | 1944 | if (INTEL_INFO(dev)->gen >= 6) { |
| 1945 | u32 pm_iir = I915_READ(GEN6_PMIIR); |
| 1946 | if (pm_iir) { |
Paulo Zanoni | f1af8fc | 2013-07-12 19:56:30 -0300 | [diff] [blame] | 1947 | I915_WRITE(GEN6_PMIIR, pm_iir); |
| 1948 | ret = IRQ_HANDLED; |
Oscar Mateo | 72c90f6 | 2014-06-16 16:10:57 +0100 | [diff] [blame] | 1949 | gen6_rps_irq_handler(dev_priv, pm_iir); |
Paulo Zanoni | f1af8fc | 2013-07-12 19:56:30 -0300 | [diff] [blame] | 1950 | } |
Jesse Barnes | b1f14ad | 2011-04-06 12:13:38 -0700 | [diff] [blame] | 1951 | } |
| 1952 | |
Jesse Barnes | b1f14ad | 2011-04-06 12:13:38 -0700 | [diff] [blame] | 1953 | I915_WRITE(DEIER, de_ier); |
| 1954 | POSTING_READ(DEIER); |
Ben Widawsky | ab5c608 | 2013-04-05 13:12:41 -0700 | [diff] [blame] | 1955 | if (!HAS_PCH_NOP(dev)) { |
| 1956 | I915_WRITE(SDEIER, sde_ier); |
| 1957 | POSTING_READ(SDEIER); |
| 1958 | } |
Jesse Barnes | b1f14ad | 2011-04-06 12:13:38 -0700 | [diff] [blame] | 1959 | |
| 1960 | return ret; |
| 1961 | } |
| 1962 | |
Shashank Sharma | d04a492 | 2014-08-22 17:40:41 +0530 | [diff] [blame] | 1963 | static void bxt_hpd_handler(struct drm_device *dev, uint32_t iir_status) |
| 1964 | { |
| 1965 | struct drm_i915_private *dev_priv = dev->dev_private; |
Jani Nikula | 676574d | 2015-05-28 15:43:53 +0300 | [diff] [blame] | 1966 | u32 hp_control, hp_trigger; |
| 1967 | u32 pin_mask, long_mask; |
Shashank Sharma | d04a492 | 2014-08-22 17:40:41 +0530 | [diff] [blame] | 1968 | |
| 1969 | /* Get the status */ |
| 1970 | hp_trigger = iir_status & BXT_DE_PORT_HOTPLUG_MASK; |
| 1971 | hp_control = I915_READ(BXT_HOTPLUG_CTL); |
| 1972 | |
| 1973 | /* Hotplug not enabled ? */ |
| 1974 | if (!(hp_control & BXT_HOTPLUG_CTL_MASK)) { |
| 1975 | DRM_ERROR("Interrupt when HPD disabled\n"); |
| 1976 | return; |
| 1977 | } |
| 1978 | |
Shashank Sharma | d04a492 | 2014-08-22 17:40:41 +0530 | [diff] [blame] | 1979 | /* Clear sticky bits in hpd status */ |
| 1980 | I915_WRITE(BXT_HOTPLUG_CTL, hp_control); |
Jani Nikula | 475c2e3 | 2015-05-28 15:43:54 +0300 | [diff] [blame] | 1981 | |
| 1982 | pch_get_hpd_pins(&pin_mask, &long_mask, hp_trigger, hp_control, hpd_bxt); |
| 1983 | intel_hpd_irq_handler(dev, pin_mask, long_mask); |
Shashank Sharma | d04a492 | 2014-08-22 17:40:41 +0530 | [diff] [blame] | 1984 | } |
| 1985 | |
Ben Widawsky | abd58f0 | 2013-11-02 21:07:09 -0700 | [diff] [blame] | 1986 | static irqreturn_t gen8_irq_handler(int irq, void *arg) |
| 1987 | { |
| 1988 | struct drm_device *dev = arg; |
| 1989 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 1990 | u32 master_ctl; |
| 1991 | irqreturn_t ret = IRQ_NONE; |
| 1992 | uint32_t tmp = 0; |
Daniel Vetter | c42664c | 2013-11-07 11:05:40 +0100 | [diff] [blame] | 1993 | enum pipe pipe; |
Jesse Barnes | 88e0470 | 2014-11-13 17:51:48 +0000 | [diff] [blame] | 1994 | u32 aux_mask = GEN8_AUX_CHANNEL_A; |
| 1995 | |
Imre Deak | 2dd2a88 | 2015-02-24 11:14:30 +0200 | [diff] [blame] | 1996 | if (!intel_irqs_enabled(dev_priv)) |
| 1997 | return IRQ_NONE; |
| 1998 | |
Jesse Barnes | 88e0470 | 2014-11-13 17:51:48 +0000 | [diff] [blame] | 1999 | if (IS_GEN9(dev)) |
| 2000 | aux_mask |= GEN9_AUX_CHANNEL_B | GEN9_AUX_CHANNEL_C | |
| 2001 | GEN9_AUX_CHANNEL_D; |
Ben Widawsky | abd58f0 | 2013-11-02 21:07:09 -0700 | [diff] [blame] | 2002 | |
Chris Wilson | cb0d205 | 2015-04-07 16:21:04 +0100 | [diff] [blame] | 2003 | master_ctl = I915_READ_FW(GEN8_MASTER_IRQ); |
Ben Widawsky | abd58f0 | 2013-11-02 21:07:09 -0700 | [diff] [blame] | 2004 | master_ctl &= ~GEN8_MASTER_IRQ_CONTROL; |
| 2005 | if (!master_ctl) |
| 2006 | return IRQ_NONE; |
| 2007 | |
Chris Wilson | cb0d205 | 2015-04-07 16:21:04 +0100 | [diff] [blame] | 2008 | I915_WRITE_FW(GEN8_MASTER_IRQ, 0); |
Ben Widawsky | abd58f0 | 2013-11-02 21:07:09 -0700 | [diff] [blame] | 2009 | |
Oscar Mateo | 38cc46d | 2014-06-16 16:10:59 +0100 | [diff] [blame] | 2010 | /* Find, clear, then process each source of interrupt */ |
| 2011 | |
Chris Wilson | 74cdb33 | 2015-04-07 16:21:05 +0100 | [diff] [blame] | 2012 | ret = gen8_gt_irq_handler(dev_priv, master_ctl); |
Ben Widawsky | abd58f0 | 2013-11-02 21:07:09 -0700 | [diff] [blame] | 2013 | |
| 2014 | if (master_ctl & GEN8_DE_MISC_IRQ) { |
| 2015 | tmp = I915_READ(GEN8_DE_MISC_IIR); |
Ben Widawsky | abd58f0 | 2013-11-02 21:07:09 -0700 | [diff] [blame] | 2016 | if (tmp) { |
| 2017 | I915_WRITE(GEN8_DE_MISC_IIR, tmp); |
| 2018 | ret = IRQ_HANDLED; |
Oscar Mateo | 38cc46d | 2014-06-16 16:10:59 +0100 | [diff] [blame] | 2019 | if (tmp & GEN8_DE_MISC_GSE) |
| 2020 | intel_opregion_asle_intr(dev); |
| 2021 | else |
| 2022 | DRM_ERROR("Unexpected DE Misc interrupt\n"); |
Ben Widawsky | abd58f0 | 2013-11-02 21:07:09 -0700 | [diff] [blame] | 2023 | } |
Oscar Mateo | 38cc46d | 2014-06-16 16:10:59 +0100 | [diff] [blame] | 2024 | else |
| 2025 | DRM_ERROR("The master control interrupt lied (DE MISC)!\n"); |
Ben Widawsky | abd58f0 | 2013-11-02 21:07:09 -0700 | [diff] [blame] | 2026 | } |
| 2027 | |
Daniel Vetter | 6d766f0 | 2013-11-07 14:49:55 +0100 | [diff] [blame] | 2028 | if (master_ctl & GEN8_DE_PORT_IRQ) { |
| 2029 | tmp = I915_READ(GEN8_DE_PORT_IIR); |
Daniel Vetter | 6d766f0 | 2013-11-07 14:49:55 +0100 | [diff] [blame] | 2030 | if (tmp) { |
Shashank Sharma | d04a492 | 2014-08-22 17:40:41 +0530 | [diff] [blame] | 2031 | bool found = false; |
| 2032 | |
Daniel Vetter | 6d766f0 | 2013-11-07 14:49:55 +0100 | [diff] [blame] | 2033 | I915_WRITE(GEN8_DE_PORT_IIR, tmp); |
| 2034 | ret = IRQ_HANDLED; |
Jesse Barnes | 88e0470 | 2014-11-13 17:51:48 +0000 | [diff] [blame] | 2035 | |
Shashank Sharma | d04a492 | 2014-08-22 17:40:41 +0530 | [diff] [blame] | 2036 | if (tmp & aux_mask) { |
Oscar Mateo | 38cc46d | 2014-06-16 16:10:59 +0100 | [diff] [blame] | 2037 | dp_aux_irq_handler(dev); |
Shashank Sharma | d04a492 | 2014-08-22 17:40:41 +0530 | [diff] [blame] | 2038 | found = true; |
| 2039 | } |
| 2040 | |
| 2041 | if (IS_BROXTON(dev) && tmp & BXT_DE_PORT_HOTPLUG_MASK) { |
| 2042 | bxt_hpd_handler(dev, tmp); |
| 2043 | found = true; |
| 2044 | } |
| 2045 | |
Shashank Sharma | 9e63743 | 2014-08-22 17:40:43 +0530 | [diff] [blame] | 2046 | if (IS_BROXTON(dev) && (tmp & BXT_DE_PORT_GMBUS)) { |
| 2047 | gmbus_irq_handler(dev); |
| 2048 | found = true; |
| 2049 | } |
| 2050 | |
Shashank Sharma | d04a492 | 2014-08-22 17:40:41 +0530 | [diff] [blame] | 2051 | if (!found) |
Oscar Mateo | 38cc46d | 2014-06-16 16:10:59 +0100 | [diff] [blame] | 2052 | DRM_ERROR("Unexpected DE Port interrupt\n"); |
Daniel Vetter | 6d766f0 | 2013-11-07 14:49:55 +0100 | [diff] [blame] | 2053 | } |
Oscar Mateo | 38cc46d | 2014-06-16 16:10:59 +0100 | [diff] [blame] | 2054 | else |
| 2055 | DRM_ERROR("The master control interrupt lied (DE PORT)!\n"); |
Daniel Vetter | 6d766f0 | 2013-11-07 14:49:55 +0100 | [diff] [blame] | 2056 | } |
| 2057 | |
Damien Lespiau | 055e393 | 2014-08-18 13:49:10 +0100 | [diff] [blame] | 2058 | for_each_pipe(dev_priv, pipe) { |
Damien Lespiau | 770de83 | 2014-03-20 20:45:01 +0000 | [diff] [blame] | 2059 | uint32_t pipe_iir, flip_done = 0, fault_errors = 0; |
Ben Widawsky | abd58f0 | 2013-11-02 21:07:09 -0700 | [diff] [blame] | 2060 | |
Daniel Vetter | c42664c | 2013-11-07 11:05:40 +0100 | [diff] [blame] | 2061 | if (!(master_ctl & GEN8_DE_PIPE_IRQ(pipe))) |
| 2062 | continue; |
Ben Widawsky | abd58f0 | 2013-11-02 21:07:09 -0700 | [diff] [blame] | 2063 | |
Daniel Vetter | c42664c | 2013-11-07 11:05:40 +0100 | [diff] [blame] | 2064 | pipe_iir = I915_READ(GEN8_DE_PIPE_IIR(pipe)); |
Daniel Vetter | c42664c | 2013-11-07 11:05:40 +0100 | [diff] [blame] | 2065 | if (pipe_iir) { |
| 2066 | ret = IRQ_HANDLED; |
| 2067 | I915_WRITE(GEN8_DE_PIPE_IIR(pipe), pipe_iir); |
Damien Lespiau | 770de83 | 2014-03-20 20:45:01 +0000 | [diff] [blame] | 2068 | |
Chris Wilson | d6bbafa | 2014-09-05 07:13:24 +0100 | [diff] [blame] | 2069 | if (pipe_iir & GEN8_PIPE_VBLANK && |
| 2070 | intel_pipe_handle_vblank(dev, pipe)) |
| 2071 | intel_check_page_flip(dev, pipe); |
Oscar Mateo | 38cc46d | 2014-06-16 16:10:59 +0100 | [diff] [blame] | 2072 | |
Damien Lespiau | 770de83 | 2014-03-20 20:45:01 +0000 | [diff] [blame] | 2073 | if (IS_GEN9(dev)) |
| 2074 | flip_done = pipe_iir & GEN9_PIPE_PLANE1_FLIP_DONE; |
| 2075 | else |
| 2076 | flip_done = pipe_iir & GEN8_PIPE_PRIMARY_FLIP_DONE; |
| 2077 | |
| 2078 | if (flip_done) { |
Oscar Mateo | 38cc46d | 2014-06-16 16:10:59 +0100 | [diff] [blame] | 2079 | intel_prepare_page_flip(dev, pipe); |
| 2080 | intel_finish_page_flip_plane(dev, pipe); |
| 2081 | } |
| 2082 | |
| 2083 | if (pipe_iir & GEN8_PIPE_CDCLK_CRC_DONE) |
| 2084 | hsw_pipe_crc_irq_handler(dev, pipe); |
| 2085 | |
Daniel Vetter | 1f7247c | 2014-09-30 10:56:48 +0200 | [diff] [blame] | 2086 | if (pipe_iir & GEN8_PIPE_FIFO_UNDERRUN) |
| 2087 | intel_cpu_fifo_underrun_irq_handler(dev_priv, |
| 2088 | pipe); |
Oscar Mateo | 38cc46d | 2014-06-16 16:10:59 +0100 | [diff] [blame] | 2089 | |
Damien Lespiau | 770de83 | 2014-03-20 20:45:01 +0000 | [diff] [blame] | 2090 | |
| 2091 | if (IS_GEN9(dev)) |
| 2092 | fault_errors = pipe_iir & GEN9_DE_PIPE_IRQ_FAULT_ERRORS; |
| 2093 | else |
| 2094 | fault_errors = pipe_iir & GEN8_DE_PIPE_IRQ_FAULT_ERRORS; |
| 2095 | |
| 2096 | if (fault_errors) |
Oscar Mateo | 38cc46d | 2014-06-16 16:10:59 +0100 | [diff] [blame] | 2097 | DRM_ERROR("Fault errors on pipe %c\n: 0x%08x", |
| 2098 | pipe_name(pipe), |
| 2099 | pipe_iir & GEN8_DE_PIPE_IRQ_FAULT_ERRORS); |
Daniel Vetter | c42664c | 2013-11-07 11:05:40 +0100 | [diff] [blame] | 2100 | } else |
Ben Widawsky | abd58f0 | 2013-11-02 21:07:09 -0700 | [diff] [blame] | 2101 | DRM_ERROR("The master control interrupt lied (DE PIPE)!\n"); |
| 2102 | } |
| 2103 | |
Shashank Sharma | 266ea3d | 2014-08-22 17:40:42 +0530 | [diff] [blame] | 2104 | if (HAS_PCH_SPLIT(dev) && !HAS_PCH_NOP(dev) && |
| 2105 | master_ctl & GEN8_DE_PCH_IRQ) { |
Daniel Vetter | 92d03a8 | 2013-11-07 11:05:43 +0100 | [diff] [blame] | 2106 | /* |
| 2107 | * FIXME(BDW): Assume for now that the new interrupt handling |
| 2108 | * scheme also closed the SDE interrupt handling race we've seen |
| 2109 | * on older pch-split platforms. But this needs testing. |
| 2110 | */ |
| 2111 | u32 pch_iir = I915_READ(SDEIIR); |
Daniel Vetter | 92d03a8 | 2013-11-07 11:05:43 +0100 | [diff] [blame] | 2112 | if (pch_iir) { |
| 2113 | I915_WRITE(SDEIIR, pch_iir); |
| 2114 | ret = IRQ_HANDLED; |
Oscar Mateo | 38cc46d | 2014-06-16 16:10:59 +0100 | [diff] [blame] | 2115 | cpt_irq_handler(dev, pch_iir); |
| 2116 | } else |
| 2117 | DRM_ERROR("The master control interrupt lied (SDE)!\n"); |
| 2118 | |
Daniel Vetter | 92d03a8 | 2013-11-07 11:05:43 +0100 | [diff] [blame] | 2119 | } |
| 2120 | |
Chris Wilson | cb0d205 | 2015-04-07 16:21:04 +0100 | [diff] [blame] | 2121 | I915_WRITE_FW(GEN8_MASTER_IRQ, GEN8_MASTER_IRQ_CONTROL); |
| 2122 | POSTING_READ_FW(GEN8_MASTER_IRQ); |
Ben Widawsky | abd58f0 | 2013-11-02 21:07:09 -0700 | [diff] [blame] | 2123 | |
| 2124 | return ret; |
| 2125 | } |
| 2126 | |
Daniel Vetter | 17e1df0 | 2013-09-08 21:57:13 +0200 | [diff] [blame] | 2127 | static void i915_error_wake_up(struct drm_i915_private *dev_priv, |
| 2128 | bool reset_completed) |
| 2129 | { |
Oscar Mateo | a4872ba | 2014-05-22 14:13:33 +0100 | [diff] [blame] | 2130 | struct intel_engine_cs *ring; |
Daniel Vetter | 17e1df0 | 2013-09-08 21:57:13 +0200 | [diff] [blame] | 2131 | int i; |
| 2132 | |
| 2133 | /* |
| 2134 | * Notify all waiters for GPU completion events that reset state has |
| 2135 | * been changed, and that they need to restart their wait after |
| 2136 | * checking for potential errors (and bail out to drop locks if there is |
| 2137 | * a gpu reset pending so that i915_error_work_func can acquire them). |
| 2138 | */ |
| 2139 | |
| 2140 | /* Wake up __wait_seqno, potentially holding dev->struct_mutex. */ |
| 2141 | for_each_ring(ring, dev_priv, i) |
| 2142 | wake_up_all(&ring->irq_queue); |
| 2143 | |
| 2144 | /* Wake up intel_crtc_wait_for_pending_flips, holding crtc->mutex. */ |
| 2145 | wake_up_all(&dev_priv->pending_flip_queue); |
| 2146 | |
| 2147 | /* |
| 2148 | * Signal tasks blocked in i915_gem_wait_for_error that the pending |
| 2149 | * reset state is cleared. |
| 2150 | */ |
| 2151 | if (reset_completed) |
| 2152 | wake_up_all(&dev_priv->gpu_error.reset_queue); |
| 2153 | } |
| 2154 | |
Jesse Barnes | 8a90523 | 2009-07-11 16:48:03 -0400 | [diff] [blame] | 2155 | /** |
Mika Kuoppala | b8d24a0 | 2015-01-28 17:03:14 +0200 | [diff] [blame] | 2156 | * i915_reset_and_wakeup - do process context error handling work |
Jesse Barnes | 8a90523 | 2009-07-11 16:48:03 -0400 | [diff] [blame] | 2157 | * |
| 2158 | * Fire an error uevent so userspace can see that a hang or error |
| 2159 | * was detected. |
| 2160 | */ |
Mika Kuoppala | b8d24a0 | 2015-01-28 17:03:14 +0200 | [diff] [blame] | 2161 | static void i915_reset_and_wakeup(struct drm_device *dev) |
Jesse Barnes | 8a90523 | 2009-07-11 16:48:03 -0400 | [diff] [blame] | 2162 | { |
Mika Kuoppala | b8d24a0 | 2015-01-28 17:03:14 +0200 | [diff] [blame] | 2163 | struct drm_i915_private *dev_priv = to_i915(dev); |
| 2164 | struct i915_gpu_error *error = &dev_priv->gpu_error; |
Ben Widawsky | cce723e | 2013-07-19 09:16:42 -0700 | [diff] [blame] | 2165 | char *error_event[] = { I915_ERROR_UEVENT "=1", NULL }; |
| 2166 | char *reset_event[] = { I915_RESET_UEVENT "=1", NULL }; |
| 2167 | char *reset_done_event[] = { I915_ERROR_UEVENT "=0", NULL }; |
Daniel Vetter | 17e1df0 | 2013-09-08 21:57:13 +0200 | [diff] [blame] | 2168 | int ret; |
Jesse Barnes | 8a90523 | 2009-07-11 16:48:03 -0400 | [diff] [blame] | 2169 | |
Dave Airlie | 5bdebb1 | 2013-10-11 14:07:25 +1000 | [diff] [blame] | 2170 | kobject_uevent_env(&dev->primary->kdev->kobj, KOBJ_CHANGE, error_event); |
Jesse Barnes | 8a90523 | 2009-07-11 16:48:03 -0400 | [diff] [blame] | 2171 | |
Daniel Vetter | 7db0ba2 | 2012-12-06 16:23:37 +0100 | [diff] [blame] | 2172 | /* |
| 2173 | * Note that there's only one work item which does gpu resets, so we |
| 2174 | * need not worry about concurrent gpu resets potentially incrementing |
| 2175 | * error->reset_counter twice. We only need to take care of another |
| 2176 | * racing irq/hangcheck declaring the gpu dead for a second time. A |
| 2177 | * quick check for that is good enough: schedule_work ensures the |
| 2178 | * correct ordering between hang detection and this work item, and since |
| 2179 | * the reset in-progress bit is only ever set by code outside of this |
| 2180 | * work we don't need to worry about any other races. |
| 2181 | */ |
| 2182 | if (i915_reset_in_progress(error) && !i915_terminally_wedged(error)) { |
Chris Wilson | f803aa5 | 2010-09-19 12:38:26 +0100 | [diff] [blame] | 2183 | DRM_DEBUG_DRIVER("resetting chip\n"); |
Dave Airlie | 5bdebb1 | 2013-10-11 14:07:25 +1000 | [diff] [blame] | 2184 | kobject_uevent_env(&dev->primary->kdev->kobj, KOBJ_CHANGE, |
Daniel Vetter | 7db0ba2 | 2012-12-06 16:23:37 +0100 | [diff] [blame] | 2185 | reset_event); |
Daniel Vetter | 1f83fee | 2012-11-15 17:17:22 +0100 | [diff] [blame] | 2186 | |
Daniel Vetter | 17e1df0 | 2013-09-08 21:57:13 +0200 | [diff] [blame] | 2187 | /* |
Imre Deak | f454c69 | 2014-04-23 01:09:04 +0300 | [diff] [blame] | 2188 | * In most cases it's guaranteed that we get here with an RPM |
| 2189 | * reference held, for example because there is a pending GPU |
| 2190 | * request that won't finish until the reset is done. This |
| 2191 | * isn't the case at least when we get here by doing a |
| 2192 | * simulated reset via debugs, so get an RPM reference. |
| 2193 | */ |
| 2194 | intel_runtime_pm_get(dev_priv); |
Ville Syrjälä | 7514747 | 2014-11-24 18:28:11 +0200 | [diff] [blame] | 2195 | |
| 2196 | intel_prepare_reset(dev); |
| 2197 | |
Imre Deak | f454c69 | 2014-04-23 01:09:04 +0300 | [diff] [blame] | 2198 | /* |
Daniel Vetter | 17e1df0 | 2013-09-08 21:57:13 +0200 | [diff] [blame] | 2199 | * All state reset _must_ be completed before we update the |
| 2200 | * reset counter, for otherwise waiters might miss the reset |
| 2201 | * pending state and not properly drop locks, resulting in |
| 2202 | * deadlocks with the reset work. |
| 2203 | */ |
Daniel Vetter | f69061b | 2012-12-06 09:01:42 +0100 | [diff] [blame] | 2204 | ret = i915_reset(dev); |
| 2205 | |
Ville Syrjälä | 7514747 | 2014-11-24 18:28:11 +0200 | [diff] [blame] | 2206 | intel_finish_reset(dev); |
Daniel Vetter | 17e1df0 | 2013-09-08 21:57:13 +0200 | [diff] [blame] | 2207 | |
Imre Deak | f454c69 | 2014-04-23 01:09:04 +0300 | [diff] [blame] | 2208 | intel_runtime_pm_put(dev_priv); |
| 2209 | |
Daniel Vetter | f69061b | 2012-12-06 09:01:42 +0100 | [diff] [blame] | 2210 | if (ret == 0) { |
| 2211 | /* |
| 2212 | * After all the gem state is reset, increment the reset |
| 2213 | * counter and wake up everyone waiting for the reset to |
| 2214 | * complete. |
| 2215 | * |
| 2216 | * Since unlock operations are a one-sided barrier only, |
| 2217 | * we need to insert a barrier here to order any seqno |
| 2218 | * updates before |
| 2219 | * the counter increment. |
| 2220 | */ |
Peter Zijlstra | 4e857c5 | 2014-03-17 18:06:10 +0100 | [diff] [blame] | 2221 | smp_mb__before_atomic(); |
Daniel Vetter | f69061b | 2012-12-06 09:01:42 +0100 | [diff] [blame] | 2222 | atomic_inc(&dev_priv->gpu_error.reset_counter); |
| 2223 | |
Dave Airlie | 5bdebb1 | 2013-10-11 14:07:25 +1000 | [diff] [blame] | 2224 | kobject_uevent_env(&dev->primary->kdev->kobj, |
Daniel Vetter | f69061b | 2012-12-06 09:01:42 +0100 | [diff] [blame] | 2225 | KOBJ_CHANGE, reset_done_event); |
Daniel Vetter | 1f83fee | 2012-11-15 17:17:22 +0100 | [diff] [blame] | 2226 | } else { |
Mika Kuoppala | 2ac0f45 | 2013-11-12 14:44:19 +0200 | [diff] [blame] | 2227 | atomic_set_mask(I915_WEDGED, &error->reset_counter); |
Ben Gamari | f316a42 | 2009-09-14 17:48:46 -0400 | [diff] [blame] | 2228 | } |
Daniel Vetter | 1f83fee | 2012-11-15 17:17:22 +0100 | [diff] [blame] | 2229 | |
Daniel Vetter | 17e1df0 | 2013-09-08 21:57:13 +0200 | [diff] [blame] | 2230 | /* |
| 2231 | * Note: The wake_up also serves as a memory barrier so that |
| 2232 | * waiters see the update value of the reset counter atomic_t. |
| 2233 | */ |
| 2234 | i915_error_wake_up(dev_priv, true); |
Ben Gamari | f316a42 | 2009-09-14 17:48:46 -0400 | [diff] [blame] | 2235 | } |
Jesse Barnes | 8a90523 | 2009-07-11 16:48:03 -0400 | [diff] [blame] | 2236 | } |
| 2237 | |
Chris Wilson | 35aed2e | 2010-05-27 13:18:12 +0100 | [diff] [blame] | 2238 | static void i915_report_and_clear_eir(struct drm_device *dev) |
Jesse Barnes | 8a90523 | 2009-07-11 16:48:03 -0400 | [diff] [blame] | 2239 | { |
| 2240 | struct drm_i915_private *dev_priv = dev->dev_private; |
Ben Widawsky | bd9854f | 2012-08-23 15:18:09 -0700 | [diff] [blame] | 2241 | uint32_t instdone[I915_NUM_INSTDONE_REG]; |
Jesse Barnes | 8a90523 | 2009-07-11 16:48:03 -0400 | [diff] [blame] | 2242 | u32 eir = I915_READ(EIR); |
Ben Widawsky | 050ee91 | 2012-08-22 11:32:15 -0700 | [diff] [blame] | 2243 | int pipe, i; |
Jesse Barnes | 8a90523 | 2009-07-11 16:48:03 -0400 | [diff] [blame] | 2244 | |
Chris Wilson | 35aed2e | 2010-05-27 13:18:12 +0100 | [diff] [blame] | 2245 | if (!eir) |
| 2246 | return; |
Jesse Barnes | 8a90523 | 2009-07-11 16:48:03 -0400 | [diff] [blame] | 2247 | |
Joe Perches | a70491c | 2012-03-18 13:00:11 -0700 | [diff] [blame] | 2248 | pr_err("render error detected, EIR: 0x%08x\n", eir); |
Jesse Barnes | 8a90523 | 2009-07-11 16:48:03 -0400 | [diff] [blame] | 2249 | |
Ben Widawsky | bd9854f | 2012-08-23 15:18:09 -0700 | [diff] [blame] | 2250 | i915_get_extra_instdone(dev, instdone); |
| 2251 | |
Jesse Barnes | 8a90523 | 2009-07-11 16:48:03 -0400 | [diff] [blame] | 2252 | if (IS_G4X(dev)) { |
| 2253 | if (eir & (GM45_ERROR_MEM_PRIV | GM45_ERROR_CP_PRIV)) { |
| 2254 | u32 ipeir = I915_READ(IPEIR_I965); |
| 2255 | |
Joe Perches | a70491c | 2012-03-18 13:00:11 -0700 | [diff] [blame] | 2256 | pr_err(" IPEIR: 0x%08x\n", I915_READ(IPEIR_I965)); |
| 2257 | pr_err(" IPEHR: 0x%08x\n", I915_READ(IPEHR_I965)); |
Ben Widawsky | 050ee91 | 2012-08-22 11:32:15 -0700 | [diff] [blame] | 2258 | for (i = 0; i < ARRAY_SIZE(instdone); i++) |
| 2259 | pr_err(" INSTDONE_%d: 0x%08x\n", i, instdone[i]); |
Joe Perches | a70491c | 2012-03-18 13:00:11 -0700 | [diff] [blame] | 2260 | pr_err(" INSTPS: 0x%08x\n", I915_READ(INSTPS)); |
Joe Perches | a70491c | 2012-03-18 13:00:11 -0700 | [diff] [blame] | 2261 | pr_err(" ACTHD: 0x%08x\n", I915_READ(ACTHD_I965)); |
Jesse Barnes | 8a90523 | 2009-07-11 16:48:03 -0400 | [diff] [blame] | 2262 | I915_WRITE(IPEIR_I965, ipeir); |
Chris Wilson | 3143a2b | 2010-11-16 15:55:10 +0000 | [diff] [blame] | 2263 | POSTING_READ(IPEIR_I965); |
Jesse Barnes | 8a90523 | 2009-07-11 16:48:03 -0400 | [diff] [blame] | 2264 | } |
| 2265 | if (eir & GM45_ERROR_PAGE_TABLE) { |
| 2266 | u32 pgtbl_err = I915_READ(PGTBL_ER); |
Joe Perches | a70491c | 2012-03-18 13:00:11 -0700 | [diff] [blame] | 2267 | pr_err("page table error\n"); |
| 2268 | pr_err(" PGTBL_ER: 0x%08x\n", pgtbl_err); |
Jesse Barnes | 8a90523 | 2009-07-11 16:48:03 -0400 | [diff] [blame] | 2269 | I915_WRITE(PGTBL_ER, pgtbl_err); |
Chris Wilson | 3143a2b | 2010-11-16 15:55:10 +0000 | [diff] [blame] | 2270 | POSTING_READ(PGTBL_ER); |
Jesse Barnes | 8a90523 | 2009-07-11 16:48:03 -0400 | [diff] [blame] | 2271 | } |
| 2272 | } |
| 2273 | |
Chris Wilson | a6c45cf | 2010-09-17 00:32:17 +0100 | [diff] [blame] | 2274 | if (!IS_GEN2(dev)) { |
Jesse Barnes | 8a90523 | 2009-07-11 16:48:03 -0400 | [diff] [blame] | 2275 | if (eir & I915_ERROR_PAGE_TABLE) { |
| 2276 | u32 pgtbl_err = I915_READ(PGTBL_ER); |
Joe Perches | a70491c | 2012-03-18 13:00:11 -0700 | [diff] [blame] | 2277 | pr_err("page table error\n"); |
| 2278 | pr_err(" PGTBL_ER: 0x%08x\n", pgtbl_err); |
Jesse Barnes | 8a90523 | 2009-07-11 16:48:03 -0400 | [diff] [blame] | 2279 | I915_WRITE(PGTBL_ER, pgtbl_err); |
Chris Wilson | 3143a2b | 2010-11-16 15:55:10 +0000 | [diff] [blame] | 2280 | POSTING_READ(PGTBL_ER); |
Jesse Barnes | 8a90523 | 2009-07-11 16:48:03 -0400 | [diff] [blame] | 2281 | } |
| 2282 | } |
| 2283 | |
| 2284 | if (eir & I915_ERROR_MEMORY_REFRESH) { |
Joe Perches | a70491c | 2012-03-18 13:00:11 -0700 | [diff] [blame] | 2285 | pr_err("memory refresh error:\n"); |
Damien Lespiau | 055e393 | 2014-08-18 13:49:10 +0100 | [diff] [blame] | 2286 | for_each_pipe(dev_priv, pipe) |
Joe Perches | a70491c | 2012-03-18 13:00:11 -0700 | [diff] [blame] | 2287 | pr_err("pipe %c stat: 0x%08x\n", |
Jesse Barnes | 9db4a9c | 2011-02-07 12:26:52 -0800 | [diff] [blame] | 2288 | pipe_name(pipe), I915_READ(PIPESTAT(pipe))); |
Jesse Barnes | 8a90523 | 2009-07-11 16:48:03 -0400 | [diff] [blame] | 2289 | /* pipestat has already been acked */ |
| 2290 | } |
| 2291 | if (eir & I915_ERROR_INSTRUCTION) { |
Joe Perches | a70491c | 2012-03-18 13:00:11 -0700 | [diff] [blame] | 2292 | pr_err("instruction error\n"); |
| 2293 | pr_err(" INSTPM: 0x%08x\n", I915_READ(INSTPM)); |
Ben Widawsky | 050ee91 | 2012-08-22 11:32:15 -0700 | [diff] [blame] | 2294 | for (i = 0; i < ARRAY_SIZE(instdone); i++) |
| 2295 | pr_err(" INSTDONE_%d: 0x%08x\n", i, instdone[i]); |
Chris Wilson | a6c45cf | 2010-09-17 00:32:17 +0100 | [diff] [blame] | 2296 | if (INTEL_INFO(dev)->gen < 4) { |
Jesse Barnes | 8a90523 | 2009-07-11 16:48:03 -0400 | [diff] [blame] | 2297 | u32 ipeir = I915_READ(IPEIR); |
| 2298 | |
Joe Perches | a70491c | 2012-03-18 13:00:11 -0700 | [diff] [blame] | 2299 | pr_err(" IPEIR: 0x%08x\n", I915_READ(IPEIR)); |
| 2300 | pr_err(" IPEHR: 0x%08x\n", I915_READ(IPEHR)); |
Joe Perches | a70491c | 2012-03-18 13:00:11 -0700 | [diff] [blame] | 2301 | pr_err(" ACTHD: 0x%08x\n", I915_READ(ACTHD)); |
Jesse Barnes | 8a90523 | 2009-07-11 16:48:03 -0400 | [diff] [blame] | 2302 | I915_WRITE(IPEIR, ipeir); |
Chris Wilson | 3143a2b | 2010-11-16 15:55:10 +0000 | [diff] [blame] | 2303 | POSTING_READ(IPEIR); |
Jesse Barnes | 8a90523 | 2009-07-11 16:48:03 -0400 | [diff] [blame] | 2304 | } else { |
| 2305 | u32 ipeir = I915_READ(IPEIR_I965); |
| 2306 | |
Joe Perches | a70491c | 2012-03-18 13:00:11 -0700 | [diff] [blame] | 2307 | pr_err(" IPEIR: 0x%08x\n", I915_READ(IPEIR_I965)); |
| 2308 | pr_err(" IPEHR: 0x%08x\n", I915_READ(IPEHR_I965)); |
Joe Perches | a70491c | 2012-03-18 13:00:11 -0700 | [diff] [blame] | 2309 | pr_err(" INSTPS: 0x%08x\n", I915_READ(INSTPS)); |
Joe Perches | a70491c | 2012-03-18 13:00:11 -0700 | [diff] [blame] | 2310 | pr_err(" ACTHD: 0x%08x\n", I915_READ(ACTHD_I965)); |
Jesse Barnes | 8a90523 | 2009-07-11 16:48:03 -0400 | [diff] [blame] | 2311 | I915_WRITE(IPEIR_I965, ipeir); |
Chris Wilson | 3143a2b | 2010-11-16 15:55:10 +0000 | [diff] [blame] | 2312 | POSTING_READ(IPEIR_I965); |
Jesse Barnes | 8a90523 | 2009-07-11 16:48:03 -0400 | [diff] [blame] | 2313 | } |
| 2314 | } |
| 2315 | |
| 2316 | I915_WRITE(EIR, eir); |
Chris Wilson | 3143a2b | 2010-11-16 15:55:10 +0000 | [diff] [blame] | 2317 | POSTING_READ(EIR); |
Jesse Barnes | 8a90523 | 2009-07-11 16:48:03 -0400 | [diff] [blame] | 2318 | eir = I915_READ(EIR); |
| 2319 | if (eir) { |
| 2320 | /* |
| 2321 | * some errors might have become stuck, |
| 2322 | * mask them. |
| 2323 | */ |
| 2324 | DRM_ERROR("EIR stuck: 0x%08x, masking\n", eir); |
| 2325 | I915_WRITE(EMR, I915_READ(EMR) | eir); |
| 2326 | I915_WRITE(IIR, I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT); |
| 2327 | } |
Chris Wilson | 35aed2e | 2010-05-27 13:18:12 +0100 | [diff] [blame] | 2328 | } |
| 2329 | |
| 2330 | /** |
Mika Kuoppala | b8d24a0 | 2015-01-28 17:03:14 +0200 | [diff] [blame] | 2331 | * i915_handle_error - handle a gpu error |
Chris Wilson | 35aed2e | 2010-05-27 13:18:12 +0100 | [diff] [blame] | 2332 | * @dev: drm device |
| 2333 | * |
Mika Kuoppala | b8d24a0 | 2015-01-28 17:03:14 +0200 | [diff] [blame] | 2334 | * Do some basic checking of regsiter state at error time and |
Chris Wilson | 35aed2e | 2010-05-27 13:18:12 +0100 | [diff] [blame] | 2335 | * dump it to the syslog. Also call i915_capture_error_state() to make |
| 2336 | * sure we get a record and make it available in debugfs. Fire a uevent |
| 2337 | * so userspace knows something bad happened (should trigger collection |
| 2338 | * of a ring dump etc.). |
| 2339 | */ |
Mika Kuoppala | 5817446 | 2014-02-25 17:11:26 +0200 | [diff] [blame] | 2340 | void i915_handle_error(struct drm_device *dev, bool wedged, |
| 2341 | const char *fmt, ...) |
Chris Wilson | 35aed2e | 2010-05-27 13:18:12 +0100 | [diff] [blame] | 2342 | { |
| 2343 | struct drm_i915_private *dev_priv = dev->dev_private; |
Mika Kuoppala | 5817446 | 2014-02-25 17:11:26 +0200 | [diff] [blame] | 2344 | va_list args; |
| 2345 | char error_msg[80]; |
Chris Wilson | 35aed2e | 2010-05-27 13:18:12 +0100 | [diff] [blame] | 2346 | |
Mika Kuoppala | 5817446 | 2014-02-25 17:11:26 +0200 | [diff] [blame] | 2347 | va_start(args, fmt); |
| 2348 | vscnprintf(error_msg, sizeof(error_msg), fmt, args); |
| 2349 | va_end(args); |
| 2350 | |
| 2351 | i915_capture_error_state(dev, wedged, error_msg); |
Chris Wilson | 35aed2e | 2010-05-27 13:18:12 +0100 | [diff] [blame] | 2352 | i915_report_and_clear_eir(dev); |
Jesse Barnes | 8a90523 | 2009-07-11 16:48:03 -0400 | [diff] [blame] | 2353 | |
Ben Gamari | ba1234d | 2009-09-14 17:48:47 -0400 | [diff] [blame] | 2354 | if (wedged) { |
Daniel Vetter | f69061b | 2012-12-06 09:01:42 +0100 | [diff] [blame] | 2355 | atomic_set_mask(I915_RESET_IN_PROGRESS_FLAG, |
| 2356 | &dev_priv->gpu_error.reset_counter); |
Ben Gamari | ba1234d | 2009-09-14 17:48:47 -0400 | [diff] [blame] | 2357 | |
Ben Gamari | 11ed50e | 2009-09-14 17:48:45 -0400 | [diff] [blame] | 2358 | /* |
Mika Kuoppala | b8d24a0 | 2015-01-28 17:03:14 +0200 | [diff] [blame] | 2359 | * Wakeup waiting processes so that the reset function |
| 2360 | * i915_reset_and_wakeup doesn't deadlock trying to grab |
| 2361 | * various locks. By bumping the reset counter first, the woken |
Daniel Vetter | 17e1df0 | 2013-09-08 21:57:13 +0200 | [diff] [blame] | 2362 | * processes will see a reset in progress and back off, |
| 2363 | * releasing their locks and then wait for the reset completion. |
| 2364 | * We must do this for _all_ gpu waiters that might hold locks |
| 2365 | * that the reset work needs to acquire. |
| 2366 | * |
| 2367 | * Note: The wake_up serves as the required memory barrier to |
| 2368 | * ensure that the waiters see the updated value of the reset |
| 2369 | * counter atomic_t. |
Ben Gamari | 11ed50e | 2009-09-14 17:48:45 -0400 | [diff] [blame] | 2370 | */ |
Daniel Vetter | 17e1df0 | 2013-09-08 21:57:13 +0200 | [diff] [blame] | 2371 | i915_error_wake_up(dev_priv, false); |
Ben Gamari | 11ed50e | 2009-09-14 17:48:45 -0400 | [diff] [blame] | 2372 | } |
| 2373 | |
Mika Kuoppala | b8d24a0 | 2015-01-28 17:03:14 +0200 | [diff] [blame] | 2374 | i915_reset_and_wakeup(dev); |
Jesse Barnes | 8a90523 | 2009-07-11 16:48:03 -0400 | [diff] [blame] | 2375 | } |
| 2376 | |
Keith Packard | 42f52ef | 2008-10-18 19:39:29 -0700 | [diff] [blame] | 2377 | /* Called from drm generic code, passed 'crtc' which |
| 2378 | * we use as a pipe index |
| 2379 | */ |
Jesse Barnes | f71d4af | 2011-06-28 13:00:41 -0700 | [diff] [blame] | 2380 | static int i915_enable_vblank(struct drm_device *dev, int pipe) |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 2381 | { |
Jani Nikula | 2d1013d | 2014-03-31 14:27:17 +0300 | [diff] [blame] | 2382 | struct drm_i915_private *dev_priv = dev->dev_private; |
Keith Packard | e9d21d7 | 2008-10-16 11:31:38 -0700 | [diff] [blame] | 2383 | unsigned long irqflags; |
Jesse Barnes | 71e0ffa | 2009-01-08 10:42:15 -0800 | [diff] [blame] | 2384 | |
Chris Wilson | 1ec14ad | 2010-12-04 11:30:53 +0000 | [diff] [blame] | 2385 | spin_lock_irqsave(&dev_priv->irq_lock, irqflags); |
Jesse Barnes | f796cf8 | 2011-04-07 13:58:17 -0700 | [diff] [blame] | 2386 | if (INTEL_INFO(dev)->gen >= 4) |
Keith Packard | 7c46358 | 2008-11-04 02:03:27 -0800 | [diff] [blame] | 2387 | i915_enable_pipestat(dev_priv, pipe, |
Imre Deak | 755e901 | 2014-02-10 18:42:47 +0200 | [diff] [blame] | 2388 | PIPE_START_VBLANK_INTERRUPT_STATUS); |
Keith Packard | e9d21d7 | 2008-10-16 11:31:38 -0700 | [diff] [blame] | 2389 | else |
Keith Packard | 7c46358 | 2008-11-04 02:03:27 -0800 | [diff] [blame] | 2390 | i915_enable_pipestat(dev_priv, pipe, |
Imre Deak | 755e901 | 2014-02-10 18:42:47 +0200 | [diff] [blame] | 2391 | PIPE_VBLANK_INTERRUPT_STATUS); |
Chris Wilson | 1ec14ad | 2010-12-04 11:30:53 +0000 | [diff] [blame] | 2392 | spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags); |
Chris Wilson | 8692d00e | 2011-02-05 10:08:21 +0000 | [diff] [blame] | 2393 | |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 2394 | return 0; |
| 2395 | } |
| 2396 | |
Jesse Barnes | f71d4af | 2011-06-28 13:00:41 -0700 | [diff] [blame] | 2397 | static int ironlake_enable_vblank(struct drm_device *dev, int pipe) |
Jesse Barnes | f796cf8 | 2011-04-07 13:58:17 -0700 | [diff] [blame] | 2398 | { |
Jani Nikula | 2d1013d | 2014-03-31 14:27:17 +0300 | [diff] [blame] | 2399 | struct drm_i915_private *dev_priv = dev->dev_private; |
Jesse Barnes | f796cf8 | 2011-04-07 13:58:17 -0700 | [diff] [blame] | 2400 | unsigned long irqflags; |
Paulo Zanoni | b518421 | 2013-07-12 20:00:08 -0300 | [diff] [blame] | 2401 | uint32_t bit = (INTEL_INFO(dev)->gen >= 7) ? DE_PIPE_VBLANK_IVB(pipe) : |
Daniel Vetter | 40da17c | 2013-10-21 18:04:36 +0200 | [diff] [blame] | 2402 | DE_PIPE_VBLANK(pipe); |
Jesse Barnes | f796cf8 | 2011-04-07 13:58:17 -0700 | [diff] [blame] | 2403 | |
Jesse Barnes | f796cf8 | 2011-04-07 13:58:17 -0700 | [diff] [blame] | 2404 | spin_lock_irqsave(&dev_priv->irq_lock, irqflags); |
Paulo Zanoni | b518421 | 2013-07-12 20:00:08 -0300 | [diff] [blame] | 2405 | ironlake_enable_display_irq(dev_priv, bit); |
Jesse Barnes | b1f14ad | 2011-04-06 12:13:38 -0700 | [diff] [blame] | 2406 | spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags); |
| 2407 | |
| 2408 | return 0; |
| 2409 | } |
| 2410 | |
Jesse Barnes | 7e231dbe | 2012-03-28 13:39:38 -0700 | [diff] [blame] | 2411 | static int valleyview_enable_vblank(struct drm_device *dev, int pipe) |
| 2412 | { |
Jani Nikula | 2d1013d | 2014-03-31 14:27:17 +0300 | [diff] [blame] | 2413 | struct drm_i915_private *dev_priv = dev->dev_private; |
Jesse Barnes | 7e231dbe | 2012-03-28 13:39:38 -0700 | [diff] [blame] | 2414 | unsigned long irqflags; |
Jesse Barnes | 7e231dbe | 2012-03-28 13:39:38 -0700 | [diff] [blame] | 2415 | |
Jesse Barnes | 7e231dbe | 2012-03-28 13:39:38 -0700 | [diff] [blame] | 2416 | spin_lock_irqsave(&dev_priv->irq_lock, irqflags); |
Jesse Barnes | 31acc7f | 2012-06-20 10:53:11 -0700 | [diff] [blame] | 2417 | i915_enable_pipestat(dev_priv, pipe, |
Imre Deak | 755e901 | 2014-02-10 18:42:47 +0200 | [diff] [blame] | 2418 | PIPE_START_VBLANK_INTERRUPT_STATUS); |
Jesse Barnes | 7e231dbe | 2012-03-28 13:39:38 -0700 | [diff] [blame] | 2419 | spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags); |
| 2420 | |
| 2421 | return 0; |
| 2422 | } |
| 2423 | |
Ben Widawsky | abd58f0 | 2013-11-02 21:07:09 -0700 | [diff] [blame] | 2424 | static int gen8_enable_vblank(struct drm_device *dev, int pipe) |
| 2425 | { |
| 2426 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 2427 | unsigned long irqflags; |
Ben Widawsky | abd58f0 | 2013-11-02 21:07:09 -0700 | [diff] [blame] | 2428 | |
Ben Widawsky | abd58f0 | 2013-11-02 21:07:09 -0700 | [diff] [blame] | 2429 | spin_lock_irqsave(&dev_priv->irq_lock, irqflags); |
Daniel Vetter | 7167d7c | 2013-11-07 11:05:45 +0100 | [diff] [blame] | 2430 | dev_priv->de_irq_mask[pipe] &= ~GEN8_PIPE_VBLANK; |
| 2431 | I915_WRITE(GEN8_DE_PIPE_IMR(pipe), dev_priv->de_irq_mask[pipe]); |
| 2432 | POSTING_READ(GEN8_DE_PIPE_IMR(pipe)); |
Ben Widawsky | abd58f0 | 2013-11-02 21:07:09 -0700 | [diff] [blame] | 2433 | spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags); |
| 2434 | return 0; |
| 2435 | } |
| 2436 | |
Keith Packard | 42f52ef | 2008-10-18 19:39:29 -0700 | [diff] [blame] | 2437 | /* Called from drm generic code, passed 'crtc' which |
| 2438 | * we use as a pipe index |
| 2439 | */ |
Jesse Barnes | f71d4af | 2011-06-28 13:00:41 -0700 | [diff] [blame] | 2440 | static void i915_disable_vblank(struct drm_device *dev, int pipe) |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 2441 | { |
Jani Nikula | 2d1013d | 2014-03-31 14:27:17 +0300 | [diff] [blame] | 2442 | struct drm_i915_private *dev_priv = dev->dev_private; |
Keith Packard | e9d21d7 | 2008-10-16 11:31:38 -0700 | [diff] [blame] | 2443 | unsigned long irqflags; |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 2444 | |
Chris Wilson | 1ec14ad | 2010-12-04 11:30:53 +0000 | [diff] [blame] | 2445 | spin_lock_irqsave(&dev_priv->irq_lock, irqflags); |
Jesse Barnes | f796cf8 | 2011-04-07 13:58:17 -0700 | [diff] [blame] | 2446 | i915_disable_pipestat(dev_priv, pipe, |
Imre Deak | 755e901 | 2014-02-10 18:42:47 +0200 | [diff] [blame] | 2447 | PIPE_VBLANK_INTERRUPT_STATUS | |
| 2448 | PIPE_START_VBLANK_INTERRUPT_STATUS); |
Jesse Barnes | f796cf8 | 2011-04-07 13:58:17 -0700 | [diff] [blame] | 2449 | spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags); |
| 2450 | } |
| 2451 | |
Jesse Barnes | f71d4af | 2011-06-28 13:00:41 -0700 | [diff] [blame] | 2452 | static void ironlake_disable_vblank(struct drm_device *dev, int pipe) |
Jesse Barnes | f796cf8 | 2011-04-07 13:58:17 -0700 | [diff] [blame] | 2453 | { |
Jani Nikula | 2d1013d | 2014-03-31 14:27:17 +0300 | [diff] [blame] | 2454 | struct drm_i915_private *dev_priv = dev->dev_private; |
Jesse Barnes | f796cf8 | 2011-04-07 13:58:17 -0700 | [diff] [blame] | 2455 | unsigned long irqflags; |
Paulo Zanoni | b518421 | 2013-07-12 20:00:08 -0300 | [diff] [blame] | 2456 | uint32_t bit = (INTEL_INFO(dev)->gen >= 7) ? DE_PIPE_VBLANK_IVB(pipe) : |
Daniel Vetter | 40da17c | 2013-10-21 18:04:36 +0200 | [diff] [blame] | 2457 | DE_PIPE_VBLANK(pipe); |
Jesse Barnes | f796cf8 | 2011-04-07 13:58:17 -0700 | [diff] [blame] | 2458 | |
| 2459 | spin_lock_irqsave(&dev_priv->irq_lock, irqflags); |
Paulo Zanoni | b518421 | 2013-07-12 20:00:08 -0300 | [diff] [blame] | 2460 | ironlake_disable_display_irq(dev_priv, bit); |
Jesse Barnes | b1f14ad | 2011-04-06 12:13:38 -0700 | [diff] [blame] | 2461 | spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags); |
| 2462 | } |
| 2463 | |
Jesse Barnes | 7e231dbe | 2012-03-28 13:39:38 -0700 | [diff] [blame] | 2464 | static void valleyview_disable_vblank(struct drm_device *dev, int pipe) |
| 2465 | { |
Jani Nikula | 2d1013d | 2014-03-31 14:27:17 +0300 | [diff] [blame] | 2466 | struct drm_i915_private *dev_priv = dev->dev_private; |
Jesse Barnes | 7e231dbe | 2012-03-28 13:39:38 -0700 | [diff] [blame] | 2467 | unsigned long irqflags; |
Jesse Barnes | 7e231dbe | 2012-03-28 13:39:38 -0700 | [diff] [blame] | 2468 | |
| 2469 | spin_lock_irqsave(&dev_priv->irq_lock, irqflags); |
Jesse Barnes | 31acc7f | 2012-06-20 10:53:11 -0700 | [diff] [blame] | 2470 | i915_disable_pipestat(dev_priv, pipe, |
Imre Deak | 755e901 | 2014-02-10 18:42:47 +0200 | [diff] [blame] | 2471 | PIPE_START_VBLANK_INTERRUPT_STATUS); |
Jesse Barnes | 7e231dbe | 2012-03-28 13:39:38 -0700 | [diff] [blame] | 2472 | spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags); |
| 2473 | } |
| 2474 | |
Ben Widawsky | abd58f0 | 2013-11-02 21:07:09 -0700 | [diff] [blame] | 2475 | static void gen8_disable_vblank(struct drm_device *dev, int pipe) |
| 2476 | { |
| 2477 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 2478 | unsigned long irqflags; |
Ben Widawsky | abd58f0 | 2013-11-02 21:07:09 -0700 | [diff] [blame] | 2479 | |
Ben Widawsky | abd58f0 | 2013-11-02 21:07:09 -0700 | [diff] [blame] | 2480 | spin_lock_irqsave(&dev_priv->irq_lock, irqflags); |
Daniel Vetter | 7167d7c | 2013-11-07 11:05:45 +0100 | [diff] [blame] | 2481 | dev_priv->de_irq_mask[pipe] |= GEN8_PIPE_VBLANK; |
| 2482 | I915_WRITE(GEN8_DE_PIPE_IMR(pipe), dev_priv->de_irq_mask[pipe]); |
| 2483 | POSTING_READ(GEN8_DE_PIPE_IMR(pipe)); |
Ben Widawsky | abd58f0 | 2013-11-02 21:07:09 -0700 | [diff] [blame] | 2484 | spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags); |
| 2485 | } |
| 2486 | |
John Harrison | 44cdd6d | 2014-11-24 18:49:40 +0000 | [diff] [blame] | 2487 | static struct drm_i915_gem_request * |
| 2488 | ring_last_request(struct intel_engine_cs *ring) |
Zou Nan hai | 852835f | 2010-05-21 09:08:56 +0800 | [diff] [blame] | 2489 | { |
Chris Wilson | 893eead | 2010-10-27 14:44:35 +0100 | [diff] [blame] | 2490 | return list_entry(ring->request_list.prev, |
John Harrison | 44cdd6d | 2014-11-24 18:49:40 +0000 | [diff] [blame] | 2491 | struct drm_i915_gem_request, list); |
Chris Wilson | 893eead | 2010-10-27 14:44:35 +0100 | [diff] [blame] | 2492 | } |
| 2493 | |
Chris Wilson | 9107e9d | 2013-06-10 11:20:20 +0100 | [diff] [blame] | 2494 | static bool |
John Harrison | 44cdd6d | 2014-11-24 18:49:40 +0000 | [diff] [blame] | 2495 | ring_idle(struct intel_engine_cs *ring) |
Chris Wilson | 893eead | 2010-10-27 14:44:35 +0100 | [diff] [blame] | 2496 | { |
Chris Wilson | 9107e9d | 2013-06-10 11:20:20 +0100 | [diff] [blame] | 2497 | return (list_empty(&ring->request_list) || |
John Harrison | 1b5a433 | 2014-11-24 18:49:42 +0000 | [diff] [blame] | 2498 | i915_gem_request_completed(ring_last_request(ring), false)); |
Ben Gamari | f65d942 | 2009-09-14 17:48:44 -0400 | [diff] [blame] | 2499 | } |
| 2500 | |
Daniel Vetter | a028c4b | 2014-03-15 00:08:56 +0100 | [diff] [blame] | 2501 | static bool |
| 2502 | ipehr_is_semaphore_wait(struct drm_device *dev, u32 ipehr) |
| 2503 | { |
| 2504 | if (INTEL_INFO(dev)->gen >= 8) { |
Rodrigo Vivi | a6cdb93 | 2014-06-30 09:53:39 -0700 | [diff] [blame] | 2505 | return (ipehr >> 23) == 0x1c; |
Daniel Vetter | a028c4b | 2014-03-15 00:08:56 +0100 | [diff] [blame] | 2506 | } else { |
| 2507 | ipehr &= ~MI_SEMAPHORE_SYNC_MASK; |
| 2508 | return ipehr == (MI_SEMAPHORE_MBOX | MI_SEMAPHORE_COMPARE | |
| 2509 | MI_SEMAPHORE_REGISTER); |
| 2510 | } |
| 2511 | } |
| 2512 | |
Oscar Mateo | a4872ba | 2014-05-22 14:13:33 +0100 | [diff] [blame] | 2513 | static struct intel_engine_cs * |
Rodrigo Vivi | a6cdb93 | 2014-06-30 09:53:39 -0700 | [diff] [blame] | 2514 | semaphore_wait_to_signaller_ring(struct intel_engine_cs *ring, u32 ipehr, u64 offset) |
Daniel Vetter | 921d42e | 2014-03-18 10:26:04 +0100 | [diff] [blame] | 2515 | { |
| 2516 | struct drm_i915_private *dev_priv = ring->dev->dev_private; |
Oscar Mateo | a4872ba | 2014-05-22 14:13:33 +0100 | [diff] [blame] | 2517 | struct intel_engine_cs *signaller; |
Daniel Vetter | 921d42e | 2014-03-18 10:26:04 +0100 | [diff] [blame] | 2518 | int i; |
| 2519 | |
| 2520 | if (INTEL_INFO(dev_priv->dev)->gen >= 8) { |
Rodrigo Vivi | a6cdb93 | 2014-06-30 09:53:39 -0700 | [diff] [blame] | 2521 | for_each_ring(signaller, dev_priv, i) { |
| 2522 | if (ring == signaller) |
| 2523 | continue; |
| 2524 | |
| 2525 | if (offset == signaller->semaphore.signal_ggtt[ring->id]) |
| 2526 | return signaller; |
| 2527 | } |
Daniel Vetter | 921d42e | 2014-03-18 10:26:04 +0100 | [diff] [blame] | 2528 | } else { |
| 2529 | u32 sync_bits = ipehr & MI_SEMAPHORE_SYNC_MASK; |
| 2530 | |
| 2531 | for_each_ring(signaller, dev_priv, i) { |
| 2532 | if(ring == signaller) |
| 2533 | continue; |
| 2534 | |
Ben Widawsky | ebc348b | 2014-04-29 14:52:28 -0700 | [diff] [blame] | 2535 | if (sync_bits == signaller->semaphore.mbox.wait[ring->id]) |
Daniel Vetter | 921d42e | 2014-03-18 10:26:04 +0100 | [diff] [blame] | 2536 | return signaller; |
| 2537 | } |
| 2538 | } |
| 2539 | |
Rodrigo Vivi | a6cdb93 | 2014-06-30 09:53:39 -0700 | [diff] [blame] | 2540 | DRM_ERROR("No signaller ring found for ring %i, ipehr 0x%08x, offset 0x%016llx\n", |
| 2541 | ring->id, ipehr, offset); |
Daniel Vetter | 921d42e | 2014-03-18 10:26:04 +0100 | [diff] [blame] | 2542 | |
| 2543 | return NULL; |
| 2544 | } |
| 2545 | |
Oscar Mateo | a4872ba | 2014-05-22 14:13:33 +0100 | [diff] [blame] | 2546 | static struct intel_engine_cs * |
| 2547 | semaphore_waits_for(struct intel_engine_cs *ring, u32 *seqno) |
Chris Wilson | a24a11e | 2013-03-14 17:52:05 +0200 | [diff] [blame] | 2548 | { |
| 2549 | struct drm_i915_private *dev_priv = ring->dev->dev_private; |
Daniel Vetter | 88fe429 | 2014-03-15 00:08:55 +0100 | [diff] [blame] | 2550 | u32 cmd, ipehr, head; |
Rodrigo Vivi | a6cdb93 | 2014-06-30 09:53:39 -0700 | [diff] [blame] | 2551 | u64 offset = 0; |
| 2552 | int i, backwards; |
Chris Wilson | a24a11e | 2013-03-14 17:52:05 +0200 | [diff] [blame] | 2553 | |
| 2554 | ipehr = I915_READ(RING_IPEHR(ring->mmio_base)); |
Daniel Vetter | a028c4b | 2014-03-15 00:08:56 +0100 | [diff] [blame] | 2555 | if (!ipehr_is_semaphore_wait(ring->dev, ipehr)) |
Chris Wilson | 6274f21 | 2013-06-10 11:20:21 +0100 | [diff] [blame] | 2556 | return NULL; |
Chris Wilson | a24a11e | 2013-03-14 17:52:05 +0200 | [diff] [blame] | 2557 | |
Daniel Vetter | 88fe429 | 2014-03-15 00:08:55 +0100 | [diff] [blame] | 2558 | /* |
| 2559 | * HEAD is likely pointing to the dword after the actual command, |
| 2560 | * so scan backwards until we find the MBOX. But limit it to just 3 |
Rodrigo Vivi | a6cdb93 | 2014-06-30 09:53:39 -0700 | [diff] [blame] | 2561 | * or 4 dwords depending on the semaphore wait command size. |
| 2562 | * Note that we don't care about ACTHD here since that might |
Daniel Vetter | 88fe429 | 2014-03-15 00:08:55 +0100 | [diff] [blame] | 2563 | * point at at batch, and semaphores are always emitted into the |
| 2564 | * ringbuffer itself. |
Chris Wilson | a24a11e | 2013-03-14 17:52:05 +0200 | [diff] [blame] | 2565 | */ |
Daniel Vetter | 88fe429 | 2014-03-15 00:08:55 +0100 | [diff] [blame] | 2566 | head = I915_READ_HEAD(ring) & HEAD_ADDR; |
Rodrigo Vivi | a6cdb93 | 2014-06-30 09:53:39 -0700 | [diff] [blame] | 2567 | backwards = (INTEL_INFO(ring->dev)->gen >= 8) ? 5 : 4; |
Daniel Vetter | 88fe429 | 2014-03-15 00:08:55 +0100 | [diff] [blame] | 2568 | |
Rodrigo Vivi | a6cdb93 | 2014-06-30 09:53:39 -0700 | [diff] [blame] | 2569 | for (i = backwards; i; --i) { |
Daniel Vetter | 88fe429 | 2014-03-15 00:08:55 +0100 | [diff] [blame] | 2570 | /* |
| 2571 | * Be paranoid and presume the hw has gone off into the wild - |
| 2572 | * our ring is smaller than what the hardware (and hence |
| 2573 | * HEAD_ADDR) allows. Also handles wrap-around. |
| 2574 | */ |
Oscar Mateo | ee1b1e5 | 2014-05-22 14:13:35 +0100 | [diff] [blame] | 2575 | head &= ring->buffer->size - 1; |
Daniel Vetter | 88fe429 | 2014-03-15 00:08:55 +0100 | [diff] [blame] | 2576 | |
| 2577 | /* This here seems to blow up */ |
Oscar Mateo | ee1b1e5 | 2014-05-22 14:13:35 +0100 | [diff] [blame] | 2578 | cmd = ioread32(ring->buffer->virtual_start + head); |
Chris Wilson | a24a11e | 2013-03-14 17:52:05 +0200 | [diff] [blame] | 2579 | if (cmd == ipehr) |
| 2580 | break; |
| 2581 | |
Daniel Vetter | 88fe429 | 2014-03-15 00:08:55 +0100 | [diff] [blame] | 2582 | head -= 4; |
| 2583 | } |
Chris Wilson | a24a11e | 2013-03-14 17:52:05 +0200 | [diff] [blame] | 2584 | |
Daniel Vetter | 88fe429 | 2014-03-15 00:08:55 +0100 | [diff] [blame] | 2585 | if (!i) |
| 2586 | return NULL; |
| 2587 | |
Oscar Mateo | ee1b1e5 | 2014-05-22 14:13:35 +0100 | [diff] [blame] | 2588 | *seqno = ioread32(ring->buffer->virtual_start + head + 4) + 1; |
Rodrigo Vivi | a6cdb93 | 2014-06-30 09:53:39 -0700 | [diff] [blame] | 2589 | if (INTEL_INFO(ring->dev)->gen >= 8) { |
| 2590 | offset = ioread32(ring->buffer->virtual_start + head + 12); |
| 2591 | offset <<= 32; |
| 2592 | offset = ioread32(ring->buffer->virtual_start + head + 8); |
| 2593 | } |
| 2594 | return semaphore_wait_to_signaller_ring(ring, ipehr, offset); |
Chris Wilson | a24a11e | 2013-03-14 17:52:05 +0200 | [diff] [blame] | 2595 | } |
| 2596 | |
Oscar Mateo | a4872ba | 2014-05-22 14:13:33 +0100 | [diff] [blame] | 2597 | static int semaphore_passed(struct intel_engine_cs *ring) |
Chris Wilson | 6274f21 | 2013-06-10 11:20:21 +0100 | [diff] [blame] | 2598 | { |
| 2599 | struct drm_i915_private *dev_priv = ring->dev->dev_private; |
Oscar Mateo | a4872ba | 2014-05-22 14:13:33 +0100 | [diff] [blame] | 2600 | struct intel_engine_cs *signaller; |
Chris Wilson | a0d036b | 2014-07-19 12:40:42 +0100 | [diff] [blame] | 2601 | u32 seqno; |
Chris Wilson | 6274f21 | 2013-06-10 11:20:21 +0100 | [diff] [blame] | 2602 | |
Chris Wilson | 4be1738 | 2014-06-06 10:22:29 +0100 | [diff] [blame] | 2603 | ring->hangcheck.deadlock++; |
Chris Wilson | 6274f21 | 2013-06-10 11:20:21 +0100 | [diff] [blame] | 2604 | |
| 2605 | signaller = semaphore_waits_for(ring, &seqno); |
Chris Wilson | 4be1738 | 2014-06-06 10:22:29 +0100 | [diff] [blame] | 2606 | if (signaller == NULL) |
| 2607 | return -1; |
| 2608 | |
| 2609 | /* Prevent pathological recursion due to driver bugs */ |
| 2610 | if (signaller->hangcheck.deadlock >= I915_NUM_RINGS) |
Chris Wilson | 6274f21 | 2013-06-10 11:20:21 +0100 | [diff] [blame] | 2611 | return -1; |
| 2612 | |
Chris Wilson | 4be1738 | 2014-06-06 10:22:29 +0100 | [diff] [blame] | 2613 | if (i915_seqno_passed(signaller->get_seqno(signaller, false), seqno)) |
| 2614 | return 1; |
| 2615 | |
Chris Wilson | a0d036b | 2014-07-19 12:40:42 +0100 | [diff] [blame] | 2616 | /* cursory check for an unkickable deadlock */ |
| 2617 | if (I915_READ_CTL(signaller) & RING_WAIT_SEMAPHORE && |
| 2618 | semaphore_passed(signaller) < 0) |
Chris Wilson | 4be1738 | 2014-06-06 10:22:29 +0100 | [diff] [blame] | 2619 | return -1; |
| 2620 | |
| 2621 | return 0; |
Chris Wilson | 6274f21 | 2013-06-10 11:20:21 +0100 | [diff] [blame] | 2622 | } |
| 2623 | |
| 2624 | static void semaphore_clear_deadlocks(struct drm_i915_private *dev_priv) |
| 2625 | { |
Oscar Mateo | a4872ba | 2014-05-22 14:13:33 +0100 | [diff] [blame] | 2626 | struct intel_engine_cs *ring; |
Chris Wilson | 6274f21 | 2013-06-10 11:20:21 +0100 | [diff] [blame] | 2627 | int i; |
| 2628 | |
| 2629 | for_each_ring(ring, dev_priv, i) |
Chris Wilson | 4be1738 | 2014-06-06 10:22:29 +0100 | [diff] [blame] | 2630 | ring->hangcheck.deadlock = 0; |
Chris Wilson | 6274f21 | 2013-06-10 11:20:21 +0100 | [diff] [blame] | 2631 | } |
| 2632 | |
Mika Kuoppala | ad8beae | 2013-06-12 12:35:32 +0300 | [diff] [blame] | 2633 | static enum intel_ring_hangcheck_action |
Oscar Mateo | a4872ba | 2014-05-22 14:13:33 +0100 | [diff] [blame] | 2634 | ring_stuck(struct intel_engine_cs *ring, u64 acthd) |
Chris Wilson | 1ec14ad | 2010-12-04 11:30:53 +0000 | [diff] [blame] | 2635 | { |
| 2636 | struct drm_device *dev = ring->dev; |
| 2637 | struct drm_i915_private *dev_priv = dev->dev_private; |
Chris Wilson | 9107e9d | 2013-06-10 11:20:20 +0100 | [diff] [blame] | 2638 | u32 tmp; |
| 2639 | |
Mika Kuoppala | f260fe7 | 2014-08-05 17:16:26 +0300 | [diff] [blame] | 2640 | if (acthd != ring->hangcheck.acthd) { |
| 2641 | if (acthd > ring->hangcheck.max_acthd) { |
| 2642 | ring->hangcheck.max_acthd = acthd; |
| 2643 | return HANGCHECK_ACTIVE; |
| 2644 | } |
| 2645 | |
| 2646 | return HANGCHECK_ACTIVE_LOOP; |
| 2647 | } |
Chris Wilson | 6274f21 | 2013-06-10 11:20:21 +0100 | [diff] [blame] | 2648 | |
Chris Wilson | 9107e9d | 2013-06-10 11:20:20 +0100 | [diff] [blame] | 2649 | if (IS_GEN2(dev)) |
Jani Nikula | f2f4d82 | 2013-08-11 12:44:01 +0300 | [diff] [blame] | 2650 | return HANGCHECK_HUNG; |
Chris Wilson | 9107e9d | 2013-06-10 11:20:20 +0100 | [diff] [blame] | 2651 | |
| 2652 | /* Is the chip hanging on a WAIT_FOR_EVENT? |
| 2653 | * If so we can simply poke the RB_WAIT bit |
| 2654 | * and break the hang. This should work on |
| 2655 | * all but the second generation chipsets. |
| 2656 | */ |
| 2657 | tmp = I915_READ_CTL(ring); |
Chris Wilson | 1ec14ad | 2010-12-04 11:30:53 +0000 | [diff] [blame] | 2658 | if (tmp & RING_WAIT) { |
Mika Kuoppala | 5817446 | 2014-02-25 17:11:26 +0200 | [diff] [blame] | 2659 | i915_handle_error(dev, false, |
| 2660 | "Kicking stuck wait on %s", |
| 2661 | ring->name); |
Chris Wilson | 1ec14ad | 2010-12-04 11:30:53 +0000 | [diff] [blame] | 2662 | I915_WRITE_CTL(ring, tmp); |
Jani Nikula | f2f4d82 | 2013-08-11 12:44:01 +0300 | [diff] [blame] | 2663 | return HANGCHECK_KICK; |
Chris Wilson | 1ec14ad | 2010-12-04 11:30:53 +0000 | [diff] [blame] | 2664 | } |
Chris Wilson | a24a11e | 2013-03-14 17:52:05 +0200 | [diff] [blame] | 2665 | |
Chris Wilson | 6274f21 | 2013-06-10 11:20:21 +0100 | [diff] [blame] | 2666 | if (INTEL_INFO(dev)->gen >= 6 && tmp & RING_WAIT_SEMAPHORE) { |
| 2667 | switch (semaphore_passed(ring)) { |
| 2668 | default: |
Jani Nikula | f2f4d82 | 2013-08-11 12:44:01 +0300 | [diff] [blame] | 2669 | return HANGCHECK_HUNG; |
Chris Wilson | 6274f21 | 2013-06-10 11:20:21 +0100 | [diff] [blame] | 2670 | case 1: |
Mika Kuoppala | 5817446 | 2014-02-25 17:11:26 +0200 | [diff] [blame] | 2671 | i915_handle_error(dev, false, |
| 2672 | "Kicking stuck semaphore on %s", |
| 2673 | ring->name); |
Chris Wilson | 6274f21 | 2013-06-10 11:20:21 +0100 | [diff] [blame] | 2674 | I915_WRITE_CTL(ring, tmp); |
Jani Nikula | f2f4d82 | 2013-08-11 12:44:01 +0300 | [diff] [blame] | 2675 | return HANGCHECK_KICK; |
Chris Wilson | 6274f21 | 2013-06-10 11:20:21 +0100 | [diff] [blame] | 2676 | case 0: |
Jani Nikula | f2f4d82 | 2013-08-11 12:44:01 +0300 | [diff] [blame] | 2677 | return HANGCHECK_WAIT; |
Chris Wilson | 6274f21 | 2013-06-10 11:20:21 +0100 | [diff] [blame] | 2678 | } |
Chris Wilson | 9107e9d | 2013-06-10 11:20:20 +0100 | [diff] [blame] | 2679 | } |
Mika Kuoppala | ed5cbb0 | 2013-05-13 16:32:11 +0300 | [diff] [blame] | 2680 | |
Jani Nikula | f2f4d82 | 2013-08-11 12:44:01 +0300 | [diff] [blame] | 2681 | return HANGCHECK_HUNG; |
Mika Kuoppala | ed5cbb0 | 2013-05-13 16:32:11 +0300 | [diff] [blame] | 2682 | } |
| 2683 | |
Chris Wilson | 737b150 | 2015-01-26 18:03:03 +0200 | [diff] [blame] | 2684 | /* |
Ben Gamari | f65d942 | 2009-09-14 17:48:44 -0400 | [diff] [blame] | 2685 | * This is called when the chip hasn't reported back with completed |
Mika Kuoppala | 05407ff | 2013-05-30 09:04:29 +0300 | [diff] [blame] | 2686 | * batchbuffers in a long time. We keep track per ring seqno progress and |
| 2687 | * if there are no progress, hangcheck score for that ring is increased. |
| 2688 | * Further, acthd is inspected to see if the ring is stuck. On stuck case |
| 2689 | * we kick the ring. If we see no progress on three subsequent calls |
| 2690 | * we assume chip is wedged and try to fix it by resetting the chip. |
Ben Gamari | f65d942 | 2009-09-14 17:48:44 -0400 | [diff] [blame] | 2691 | */ |
Chris Wilson | 737b150 | 2015-01-26 18:03:03 +0200 | [diff] [blame] | 2692 | static void i915_hangcheck_elapsed(struct work_struct *work) |
Ben Gamari | f65d942 | 2009-09-14 17:48:44 -0400 | [diff] [blame] | 2693 | { |
Chris Wilson | 737b150 | 2015-01-26 18:03:03 +0200 | [diff] [blame] | 2694 | struct drm_i915_private *dev_priv = |
| 2695 | container_of(work, typeof(*dev_priv), |
| 2696 | gpu_error.hangcheck_work.work); |
| 2697 | struct drm_device *dev = dev_priv->dev; |
Oscar Mateo | a4872ba | 2014-05-22 14:13:33 +0100 | [diff] [blame] | 2698 | struct intel_engine_cs *ring; |
Chris Wilson | b451951 | 2012-05-11 14:29:30 +0100 | [diff] [blame] | 2699 | int i; |
Mika Kuoppala | 05407ff | 2013-05-30 09:04:29 +0300 | [diff] [blame] | 2700 | int busy_count = 0, rings_hung = 0; |
Chris Wilson | 9107e9d | 2013-06-10 11:20:20 +0100 | [diff] [blame] | 2701 | bool stuck[I915_NUM_RINGS] = { 0 }; |
| 2702 | #define BUSY 1 |
| 2703 | #define KICK 5 |
| 2704 | #define HUNG 20 |
Chris Wilson | 893eead | 2010-10-27 14:44:35 +0100 | [diff] [blame] | 2705 | |
Jani Nikula | d330a95 | 2014-01-21 11:24:25 +0200 | [diff] [blame] | 2706 | if (!i915.enable_hangcheck) |
Ben Widawsky | 3e0dc6b | 2011-06-29 10:26:42 -0700 | [diff] [blame] | 2707 | return; |
| 2708 | |
Chris Wilson | b451951 | 2012-05-11 14:29:30 +0100 | [diff] [blame] | 2709 | for_each_ring(ring, dev_priv, i) { |
Chris Wilson | 5087744 | 2014-03-21 12:41:53 +0000 | [diff] [blame] | 2710 | u64 acthd; |
| 2711 | u32 seqno; |
Chris Wilson | 9107e9d | 2013-06-10 11:20:20 +0100 | [diff] [blame] | 2712 | bool busy = true; |
Chris Wilson | b451951 | 2012-05-11 14:29:30 +0100 | [diff] [blame] | 2713 | |
Chris Wilson | 6274f21 | 2013-06-10 11:20:21 +0100 | [diff] [blame] | 2714 | semaphore_clear_deadlocks(dev_priv); |
| 2715 | |
Mika Kuoppala | 05407ff | 2013-05-30 09:04:29 +0300 | [diff] [blame] | 2716 | seqno = ring->get_seqno(ring, false); |
| 2717 | acthd = intel_ring_get_active_head(ring); |
Chris Wilson | d1e61e7 | 2012-04-10 17:00:41 +0100 | [diff] [blame] | 2718 | |
Chris Wilson | 9107e9d | 2013-06-10 11:20:20 +0100 | [diff] [blame] | 2719 | if (ring->hangcheck.seqno == seqno) { |
John Harrison | 44cdd6d | 2014-11-24 18:49:40 +0000 | [diff] [blame] | 2720 | if (ring_idle(ring)) { |
Mika Kuoppala | da66146 | 2013-09-06 16:03:28 +0300 | [diff] [blame] | 2721 | ring->hangcheck.action = HANGCHECK_IDLE; |
| 2722 | |
Chris Wilson | 9107e9d | 2013-06-10 11:20:20 +0100 | [diff] [blame] | 2723 | if (waitqueue_active(&ring->irq_queue)) { |
| 2724 | /* Issue a wake-up to catch stuck h/w. */ |
Chris Wilson | 094f9a5 | 2013-09-25 17:34:55 +0100 | [diff] [blame] | 2725 | if (!test_and_set_bit(ring->id, &dev_priv->gpu_error.missed_irq_rings)) { |
Daniel Vetter | f4adcd2 | 2013-10-28 09:24:13 +0100 | [diff] [blame] | 2726 | if (!(dev_priv->gpu_error.test_irq_rings & intel_ring_flag(ring))) |
| 2727 | DRM_ERROR("Hangcheck timer elapsed... %s idle\n", |
| 2728 | ring->name); |
| 2729 | else |
| 2730 | DRM_INFO("Fake missed irq on %s\n", |
| 2731 | ring->name); |
Chris Wilson | 094f9a5 | 2013-09-25 17:34:55 +0100 | [diff] [blame] | 2732 | wake_up_all(&ring->irq_queue); |
| 2733 | } |
| 2734 | /* Safeguard against driver failure */ |
| 2735 | ring->hangcheck.score += BUSY; |
Chris Wilson | 9107e9d | 2013-06-10 11:20:20 +0100 | [diff] [blame] | 2736 | } else |
| 2737 | busy = false; |
Mika Kuoppala | 05407ff | 2013-05-30 09:04:29 +0300 | [diff] [blame] | 2738 | } else { |
Chris Wilson | 6274f21 | 2013-06-10 11:20:21 +0100 | [diff] [blame] | 2739 | /* We always increment the hangcheck score |
| 2740 | * if the ring is busy and still processing |
| 2741 | * the same request, so that no single request |
| 2742 | * can run indefinitely (such as a chain of |
| 2743 | * batches). The only time we do not increment |
| 2744 | * the hangcheck score on this ring, if this |
| 2745 | * ring is in a legitimate wait for another |
| 2746 | * ring. In that case the waiting ring is a |
| 2747 | * victim and we want to be sure we catch the |
| 2748 | * right culprit. Then every time we do kick |
| 2749 | * the ring, add a small increment to the |
| 2750 | * score so that we can catch a batch that is |
| 2751 | * being repeatedly kicked and so responsible |
| 2752 | * for stalling the machine. |
| 2753 | */ |
Mika Kuoppala | ad8beae | 2013-06-12 12:35:32 +0300 | [diff] [blame] | 2754 | ring->hangcheck.action = ring_stuck(ring, |
| 2755 | acthd); |
| 2756 | |
| 2757 | switch (ring->hangcheck.action) { |
Mika Kuoppala | da66146 | 2013-09-06 16:03:28 +0300 | [diff] [blame] | 2758 | case HANGCHECK_IDLE: |
Jani Nikula | f2f4d82 | 2013-08-11 12:44:01 +0300 | [diff] [blame] | 2759 | case HANGCHECK_WAIT: |
Jani Nikula | f2f4d82 | 2013-08-11 12:44:01 +0300 | [diff] [blame] | 2760 | case HANGCHECK_ACTIVE: |
Mika Kuoppala | f260fe7 | 2014-08-05 17:16:26 +0300 | [diff] [blame] | 2761 | break; |
| 2762 | case HANGCHECK_ACTIVE_LOOP: |
Jani Nikula | ea04cb3 | 2013-08-11 12:44:02 +0300 | [diff] [blame] | 2763 | ring->hangcheck.score += BUSY; |
Chris Wilson | 6274f21 | 2013-06-10 11:20:21 +0100 | [diff] [blame] | 2764 | break; |
Jani Nikula | f2f4d82 | 2013-08-11 12:44:01 +0300 | [diff] [blame] | 2765 | case HANGCHECK_KICK: |
Jani Nikula | ea04cb3 | 2013-08-11 12:44:02 +0300 | [diff] [blame] | 2766 | ring->hangcheck.score += KICK; |
Chris Wilson | 6274f21 | 2013-06-10 11:20:21 +0100 | [diff] [blame] | 2767 | break; |
Jani Nikula | f2f4d82 | 2013-08-11 12:44:01 +0300 | [diff] [blame] | 2768 | case HANGCHECK_HUNG: |
Jani Nikula | ea04cb3 | 2013-08-11 12:44:02 +0300 | [diff] [blame] | 2769 | ring->hangcheck.score += HUNG; |
Chris Wilson | 6274f21 | 2013-06-10 11:20:21 +0100 | [diff] [blame] | 2770 | stuck[i] = true; |
| 2771 | break; |
| 2772 | } |
Mika Kuoppala | 05407ff | 2013-05-30 09:04:29 +0300 | [diff] [blame] | 2773 | } |
Chris Wilson | 9107e9d | 2013-06-10 11:20:20 +0100 | [diff] [blame] | 2774 | } else { |
Mika Kuoppala | da66146 | 2013-09-06 16:03:28 +0300 | [diff] [blame] | 2775 | ring->hangcheck.action = HANGCHECK_ACTIVE; |
| 2776 | |
Chris Wilson | 9107e9d | 2013-06-10 11:20:20 +0100 | [diff] [blame] | 2777 | /* Gradually reduce the count so that we catch DoS |
| 2778 | * attempts across multiple batches. |
| 2779 | */ |
| 2780 | if (ring->hangcheck.score > 0) |
| 2781 | ring->hangcheck.score--; |
Mika Kuoppala | f260fe7 | 2014-08-05 17:16:26 +0300 | [diff] [blame] | 2782 | |
| 2783 | ring->hangcheck.acthd = ring->hangcheck.max_acthd = 0; |
Chris Wilson | d1e61e7 | 2012-04-10 17:00:41 +0100 | [diff] [blame] | 2784 | } |
| 2785 | |
Mika Kuoppala | 05407ff | 2013-05-30 09:04:29 +0300 | [diff] [blame] | 2786 | ring->hangcheck.seqno = seqno; |
| 2787 | ring->hangcheck.acthd = acthd; |
Chris Wilson | 9107e9d | 2013-06-10 11:20:20 +0100 | [diff] [blame] | 2788 | busy_count += busy; |
Chris Wilson | 893eead | 2010-10-27 14:44:35 +0100 | [diff] [blame] | 2789 | } |
Eric Anholt | b9201c1 | 2010-01-08 14:25:16 -0800 | [diff] [blame] | 2790 | |
Mika Kuoppala | 92cab73 | 2013-05-24 17:16:07 +0300 | [diff] [blame] | 2791 | for_each_ring(ring, dev_priv, i) { |
Mika Kuoppala | b6b0fac | 2014-01-30 19:04:43 +0200 | [diff] [blame] | 2792 | if (ring->hangcheck.score >= HANGCHECK_SCORE_RING_HUNG) { |
Daniel Vetter | b8d88d1 | 2013-08-28 10:57:59 +0200 | [diff] [blame] | 2793 | DRM_INFO("%s on %s\n", |
| 2794 | stuck[i] ? "stuck" : "no progress", |
| 2795 | ring->name); |
Chris Wilson | a43adf0 | 2013-06-10 11:20:22 +0100 | [diff] [blame] | 2796 | rings_hung++; |
Mika Kuoppala | 92cab73 | 2013-05-24 17:16:07 +0300 | [diff] [blame] | 2797 | } |
| 2798 | } |
| 2799 | |
Mika Kuoppala | 05407ff | 2013-05-30 09:04:29 +0300 | [diff] [blame] | 2800 | if (rings_hung) |
Mika Kuoppala | 5817446 | 2014-02-25 17:11:26 +0200 | [diff] [blame] | 2801 | return i915_handle_error(dev, true, "Ring hung"); |
Ben Gamari | f65d942 | 2009-09-14 17:48:44 -0400 | [diff] [blame] | 2802 | |
Mika Kuoppala | 05407ff | 2013-05-30 09:04:29 +0300 | [diff] [blame] | 2803 | if (busy_count) |
| 2804 | /* Reset timer case chip hangs without another request |
| 2805 | * being added */ |
Mika Kuoppala | 10cd45b | 2013-07-03 17:22:08 +0300 | [diff] [blame] | 2806 | i915_queue_hangcheck(dev); |
| 2807 | } |
| 2808 | |
| 2809 | void i915_queue_hangcheck(struct drm_device *dev) |
| 2810 | { |
Chris Wilson | 737b150 | 2015-01-26 18:03:03 +0200 | [diff] [blame] | 2811 | struct i915_gpu_error *e = &to_i915(dev)->gpu_error; |
Chris Wilson | 672e7b7 | 2014-11-19 09:47:19 +0000 | [diff] [blame] | 2812 | |
Jani Nikula | d330a95 | 2014-01-21 11:24:25 +0200 | [diff] [blame] | 2813 | if (!i915.enable_hangcheck) |
Mika Kuoppala | 10cd45b | 2013-07-03 17:22:08 +0300 | [diff] [blame] | 2814 | return; |
| 2815 | |
Chris Wilson | 737b150 | 2015-01-26 18:03:03 +0200 | [diff] [blame] | 2816 | /* Don't continually defer the hangcheck so that it is always run at |
| 2817 | * least once after work has been scheduled on any ring. Otherwise, |
| 2818 | * we will ignore a hung ring if a second ring is kept busy. |
| 2819 | */ |
| 2820 | |
| 2821 | queue_delayed_work(e->hangcheck_wq, &e->hangcheck_work, |
| 2822 | round_jiffies_up_relative(DRM_I915_HANGCHECK_JIFFIES)); |
Ben Gamari | f65d942 | 2009-09-14 17:48:44 -0400 | [diff] [blame] | 2823 | } |
| 2824 | |
Paulo Zanoni | 1c69eb4 | 2014-04-01 15:37:23 -0300 | [diff] [blame] | 2825 | static void ibx_irq_reset(struct drm_device *dev) |
Paulo Zanoni | 91738a9 | 2013-06-05 14:21:51 -0300 | [diff] [blame] | 2826 | { |
| 2827 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 2828 | |
| 2829 | if (HAS_PCH_NOP(dev)) |
| 2830 | return; |
| 2831 | |
Paulo Zanoni | f86f3fb | 2014-04-01 15:37:14 -0300 | [diff] [blame] | 2832 | GEN5_IRQ_RESET(SDE); |
Paulo Zanoni | 105b122 | 2014-04-01 15:37:17 -0300 | [diff] [blame] | 2833 | |
| 2834 | if (HAS_PCH_CPT(dev) || HAS_PCH_LPT(dev)) |
| 2835 | I915_WRITE(SERR_INT, 0xffffffff); |
Paulo Zanoni | 622364b | 2014-04-01 15:37:22 -0300 | [diff] [blame] | 2836 | } |
Paulo Zanoni | 105b122 | 2014-04-01 15:37:17 -0300 | [diff] [blame] | 2837 | |
Paulo Zanoni | 622364b | 2014-04-01 15:37:22 -0300 | [diff] [blame] | 2838 | /* |
| 2839 | * SDEIER is also touched by the interrupt handler to work around missed PCH |
| 2840 | * interrupts. Hence we can't update it after the interrupt handler is enabled - |
| 2841 | * instead we unconditionally enable all PCH interrupt sources here, but then |
| 2842 | * only unmask them as needed with SDEIMR. |
| 2843 | * |
| 2844 | * This function needs to be called before interrupts are enabled. |
| 2845 | */ |
| 2846 | static void ibx_irq_pre_postinstall(struct drm_device *dev) |
| 2847 | { |
| 2848 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 2849 | |
| 2850 | if (HAS_PCH_NOP(dev)) |
| 2851 | return; |
| 2852 | |
| 2853 | WARN_ON(I915_READ(SDEIER) != 0); |
Paulo Zanoni | 91738a9 | 2013-06-05 14:21:51 -0300 | [diff] [blame] | 2854 | I915_WRITE(SDEIER, 0xffffffff); |
| 2855 | POSTING_READ(SDEIER); |
| 2856 | } |
| 2857 | |
Paulo Zanoni | 7c4d664 | 2014-04-01 15:37:19 -0300 | [diff] [blame] | 2858 | static void gen5_gt_irq_reset(struct drm_device *dev) |
Daniel Vetter | d18ea1b | 2013-07-12 22:43:25 +0200 | [diff] [blame] | 2859 | { |
| 2860 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 2861 | |
Paulo Zanoni | f86f3fb | 2014-04-01 15:37:14 -0300 | [diff] [blame] | 2862 | GEN5_IRQ_RESET(GT); |
Paulo Zanoni | a9d356a | 2014-04-01 15:37:09 -0300 | [diff] [blame] | 2863 | if (INTEL_INFO(dev)->gen >= 6) |
Paulo Zanoni | f86f3fb | 2014-04-01 15:37:14 -0300 | [diff] [blame] | 2864 | GEN5_IRQ_RESET(GEN6_PM); |
Daniel Vetter | d18ea1b | 2013-07-12 22:43:25 +0200 | [diff] [blame] | 2865 | } |
| 2866 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2867 | /* drm_dma.h hooks |
| 2868 | */ |
Paulo Zanoni | be30b29 | 2014-04-01 15:37:25 -0300 | [diff] [blame] | 2869 | static void ironlake_irq_reset(struct drm_device *dev) |
Zhenyu Wang | 036a4a7 | 2009-06-08 14:40:19 +0800 | [diff] [blame] | 2870 | { |
Jani Nikula | 2d1013d | 2014-03-31 14:27:17 +0300 | [diff] [blame] | 2871 | struct drm_i915_private *dev_priv = dev->dev_private; |
Zhenyu Wang | 036a4a7 | 2009-06-08 14:40:19 +0800 | [diff] [blame] | 2872 | |
Paulo Zanoni | 0c84121 | 2014-04-01 15:37:27 -0300 | [diff] [blame] | 2873 | I915_WRITE(HWSTAM, 0xffffffff); |
Daniel Vetter | bdfcdb6 | 2012-01-05 01:05:26 +0100 | [diff] [blame] | 2874 | |
Paulo Zanoni | f86f3fb | 2014-04-01 15:37:14 -0300 | [diff] [blame] | 2875 | GEN5_IRQ_RESET(DE); |
Paulo Zanoni | c6d954c | 2014-04-01 15:37:18 -0300 | [diff] [blame] | 2876 | if (IS_GEN7(dev)) |
| 2877 | I915_WRITE(GEN7_ERR_INT, 0xffffffff); |
Zhenyu Wang | 036a4a7 | 2009-06-08 14:40:19 +0800 | [diff] [blame] | 2878 | |
Paulo Zanoni | 7c4d664 | 2014-04-01 15:37:19 -0300 | [diff] [blame] | 2879 | gen5_gt_irq_reset(dev); |
Zhenyu Wang | c650156 | 2009-11-03 18:57:21 +0000 | [diff] [blame] | 2880 | |
Paulo Zanoni | 1c69eb4 | 2014-04-01 15:37:23 -0300 | [diff] [blame] | 2881 | ibx_irq_reset(dev); |
Ben Widawsky | 7d99163 | 2013-05-28 19:22:25 -0700 | [diff] [blame] | 2882 | } |
| 2883 | |
Ville Syrjälä | 70591a4 | 2014-10-30 19:42:58 +0200 | [diff] [blame] | 2884 | static void vlv_display_irq_reset(struct drm_i915_private *dev_priv) |
| 2885 | { |
| 2886 | enum pipe pipe; |
| 2887 | |
| 2888 | I915_WRITE(PORT_HOTPLUG_EN, 0); |
| 2889 | I915_WRITE(PORT_HOTPLUG_STAT, I915_READ(PORT_HOTPLUG_STAT)); |
| 2890 | |
| 2891 | for_each_pipe(dev_priv, pipe) |
| 2892 | I915_WRITE(PIPESTAT(pipe), 0xffff); |
| 2893 | |
| 2894 | GEN5_IRQ_RESET(VLV_); |
| 2895 | } |
| 2896 | |
Jesse Barnes | 7e231dbe | 2012-03-28 13:39:38 -0700 | [diff] [blame] | 2897 | static void valleyview_irq_preinstall(struct drm_device *dev) |
| 2898 | { |
Jani Nikula | 2d1013d | 2014-03-31 14:27:17 +0300 | [diff] [blame] | 2899 | struct drm_i915_private *dev_priv = dev->dev_private; |
Jesse Barnes | 7e231dbe | 2012-03-28 13:39:38 -0700 | [diff] [blame] | 2900 | |
Jesse Barnes | 7e231dbe | 2012-03-28 13:39:38 -0700 | [diff] [blame] | 2901 | /* VLV magic */ |
| 2902 | I915_WRITE(VLV_IMR, 0); |
| 2903 | I915_WRITE(RING_IMR(RENDER_RING_BASE), 0); |
| 2904 | I915_WRITE(RING_IMR(GEN6_BSD_RING_BASE), 0); |
| 2905 | I915_WRITE(RING_IMR(BLT_RING_BASE), 0); |
| 2906 | |
Paulo Zanoni | 7c4d664 | 2014-04-01 15:37:19 -0300 | [diff] [blame] | 2907 | gen5_gt_irq_reset(dev); |
Jesse Barnes | 7e231dbe | 2012-03-28 13:39:38 -0700 | [diff] [blame] | 2908 | |
Ville Syrjälä | 7c4cde3 | 2014-10-30 19:42:51 +0200 | [diff] [blame] | 2909 | I915_WRITE(DPINVGTT, DPINVGTT_STATUS_MASK); |
Jesse Barnes | 7e231dbe | 2012-03-28 13:39:38 -0700 | [diff] [blame] | 2910 | |
Ville Syrjälä | 70591a4 | 2014-10-30 19:42:58 +0200 | [diff] [blame] | 2911 | vlv_display_irq_reset(dev_priv); |
Jesse Barnes | 7e231dbe | 2012-03-28 13:39:38 -0700 | [diff] [blame] | 2912 | } |
| 2913 | |
Daniel Vetter | d6e3cca | 2014-05-22 22:18:22 +0200 | [diff] [blame] | 2914 | static void gen8_gt_irq_reset(struct drm_i915_private *dev_priv) |
| 2915 | { |
| 2916 | GEN8_IRQ_RESET_NDX(GT, 0); |
| 2917 | GEN8_IRQ_RESET_NDX(GT, 1); |
| 2918 | GEN8_IRQ_RESET_NDX(GT, 2); |
| 2919 | GEN8_IRQ_RESET_NDX(GT, 3); |
| 2920 | } |
| 2921 | |
Paulo Zanoni | 823f6b3 | 2014-04-01 15:37:26 -0300 | [diff] [blame] | 2922 | static void gen8_irq_reset(struct drm_device *dev) |
Ben Widawsky | abd58f0 | 2013-11-02 21:07:09 -0700 | [diff] [blame] | 2923 | { |
| 2924 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 2925 | int pipe; |
| 2926 | |
Ben Widawsky | abd58f0 | 2013-11-02 21:07:09 -0700 | [diff] [blame] | 2927 | I915_WRITE(GEN8_MASTER_IRQ, 0); |
| 2928 | POSTING_READ(GEN8_MASTER_IRQ); |
| 2929 | |
Daniel Vetter | d6e3cca | 2014-05-22 22:18:22 +0200 | [diff] [blame] | 2930 | gen8_gt_irq_reset(dev_priv); |
Ben Widawsky | abd58f0 | 2013-11-02 21:07:09 -0700 | [diff] [blame] | 2931 | |
Damien Lespiau | 055e393 | 2014-08-18 13:49:10 +0100 | [diff] [blame] | 2932 | for_each_pipe(dev_priv, pipe) |
Daniel Vetter | f458ebb | 2014-09-30 10:56:39 +0200 | [diff] [blame] | 2933 | if (intel_display_power_is_enabled(dev_priv, |
| 2934 | POWER_DOMAIN_PIPE(pipe))) |
Paulo Zanoni | 813bde4 | 2014-07-04 11:50:29 -0300 | [diff] [blame] | 2935 | GEN8_IRQ_RESET_NDX(DE_PIPE, pipe); |
Ben Widawsky | abd58f0 | 2013-11-02 21:07:09 -0700 | [diff] [blame] | 2936 | |
Paulo Zanoni | f86f3fb | 2014-04-01 15:37:14 -0300 | [diff] [blame] | 2937 | GEN5_IRQ_RESET(GEN8_DE_PORT_); |
| 2938 | GEN5_IRQ_RESET(GEN8_DE_MISC_); |
| 2939 | GEN5_IRQ_RESET(GEN8_PCU_); |
Ben Widawsky | abd58f0 | 2013-11-02 21:07:09 -0700 | [diff] [blame] | 2940 | |
Shashank Sharma | 266ea3d | 2014-08-22 17:40:42 +0530 | [diff] [blame] | 2941 | if (HAS_PCH_SPLIT(dev)) |
| 2942 | ibx_irq_reset(dev); |
Ben Widawsky | abd58f0 | 2013-11-02 21:07:09 -0700 | [diff] [blame] | 2943 | } |
Ben Widawsky | abd58f0 | 2013-11-02 21:07:09 -0700 | [diff] [blame] | 2944 | |
Damien Lespiau | 4c6c03b | 2015-03-06 18:50:48 +0000 | [diff] [blame] | 2945 | void gen8_irq_power_well_post_enable(struct drm_i915_private *dev_priv, |
| 2946 | unsigned int pipe_mask) |
Paulo Zanoni | d49bdb0 | 2014-07-04 11:50:31 -0300 | [diff] [blame] | 2947 | { |
Paulo Zanoni | 1180e20 | 2014-10-07 18:02:52 -0300 | [diff] [blame] | 2948 | uint32_t extra_ier = GEN8_PIPE_VBLANK | GEN8_PIPE_FIFO_UNDERRUN; |
Paulo Zanoni | d49bdb0 | 2014-07-04 11:50:31 -0300 | [diff] [blame] | 2949 | |
Daniel Vetter | 1332178 | 2014-09-15 14:55:29 +0200 | [diff] [blame] | 2950 | spin_lock_irq(&dev_priv->irq_lock); |
Damien Lespiau | d14c034 | 2015-03-06 18:50:51 +0000 | [diff] [blame] | 2951 | if (pipe_mask & 1 << PIPE_A) |
| 2952 | GEN8_IRQ_INIT_NDX(DE_PIPE, PIPE_A, |
| 2953 | dev_priv->de_irq_mask[PIPE_A], |
| 2954 | ~dev_priv->de_irq_mask[PIPE_A] | extra_ier); |
Damien Lespiau | 4c6c03b | 2015-03-06 18:50:48 +0000 | [diff] [blame] | 2955 | if (pipe_mask & 1 << PIPE_B) |
| 2956 | GEN8_IRQ_INIT_NDX(DE_PIPE, PIPE_B, |
| 2957 | dev_priv->de_irq_mask[PIPE_B], |
| 2958 | ~dev_priv->de_irq_mask[PIPE_B] | extra_ier); |
| 2959 | if (pipe_mask & 1 << PIPE_C) |
| 2960 | GEN8_IRQ_INIT_NDX(DE_PIPE, PIPE_C, |
| 2961 | dev_priv->de_irq_mask[PIPE_C], |
| 2962 | ~dev_priv->de_irq_mask[PIPE_C] | extra_ier); |
Daniel Vetter | 1332178 | 2014-09-15 14:55:29 +0200 | [diff] [blame] | 2963 | spin_unlock_irq(&dev_priv->irq_lock); |
Paulo Zanoni | d49bdb0 | 2014-07-04 11:50:31 -0300 | [diff] [blame] | 2964 | } |
| 2965 | |
Ville Syrjälä | 43f328d | 2014-04-09 20:40:52 +0300 | [diff] [blame] | 2966 | static void cherryview_irq_preinstall(struct drm_device *dev) |
| 2967 | { |
| 2968 | struct drm_i915_private *dev_priv = dev->dev_private; |
Ville Syrjälä | 43f328d | 2014-04-09 20:40:52 +0300 | [diff] [blame] | 2969 | |
| 2970 | I915_WRITE(GEN8_MASTER_IRQ, 0); |
| 2971 | POSTING_READ(GEN8_MASTER_IRQ); |
| 2972 | |
Daniel Vetter | d6e3cca | 2014-05-22 22:18:22 +0200 | [diff] [blame] | 2973 | gen8_gt_irq_reset(dev_priv); |
Ville Syrjälä | 43f328d | 2014-04-09 20:40:52 +0300 | [diff] [blame] | 2974 | |
| 2975 | GEN5_IRQ_RESET(GEN8_PCU_); |
| 2976 | |
Ville Syrjälä | 43f328d | 2014-04-09 20:40:52 +0300 | [diff] [blame] | 2977 | I915_WRITE(DPINVGTT, DPINVGTT_STATUS_MASK_CHV); |
| 2978 | |
Ville Syrjälä | 70591a4 | 2014-10-30 19:42:58 +0200 | [diff] [blame] | 2979 | vlv_display_irq_reset(dev_priv); |
Ville Syrjälä | 43f328d | 2014-04-09 20:40:52 +0300 | [diff] [blame] | 2980 | } |
| 2981 | |
Daniel Vetter | 82a28bc | 2013-03-27 15:55:01 +0100 | [diff] [blame] | 2982 | static void ibx_hpd_irq_setup(struct drm_device *dev) |
Keith Packard | 7fe0b97 | 2011-09-19 13:31:02 -0700 | [diff] [blame] | 2983 | { |
Jani Nikula | 2d1013d | 2014-03-31 14:27:17 +0300 | [diff] [blame] | 2984 | struct drm_i915_private *dev_priv = dev->dev_private; |
Daniel Vetter | 82a28bc | 2013-03-27 15:55:01 +0100 | [diff] [blame] | 2985 | struct intel_encoder *intel_encoder; |
Daniel Vetter | fee884e | 2013-07-04 23:35:21 +0200 | [diff] [blame] | 2986 | u32 hotplug_irqs, hotplug, enabled_irqs = 0; |
Keith Packard | 7fe0b97 | 2011-09-19 13:31:02 -0700 | [diff] [blame] | 2987 | |
Daniel Vetter | 82a28bc | 2013-03-27 15:55:01 +0100 | [diff] [blame] | 2988 | if (HAS_PCH_IBX(dev)) { |
Daniel Vetter | fee884e | 2013-07-04 23:35:21 +0200 | [diff] [blame] | 2989 | hotplug_irqs = SDE_HOTPLUG_MASK; |
Damien Lespiau | b2784e1 | 2014-08-05 11:29:37 +0100 | [diff] [blame] | 2990 | for_each_intel_encoder(dev, intel_encoder) |
Jani Nikula | 5fcece8 | 2015-05-27 15:03:42 +0300 | [diff] [blame] | 2991 | if (dev_priv->hotplug.stats[intel_encoder->hpd_pin].state == HPD_ENABLED) |
Daniel Vetter | fee884e | 2013-07-04 23:35:21 +0200 | [diff] [blame] | 2992 | enabled_irqs |= hpd_ibx[intel_encoder->hpd_pin]; |
Daniel Vetter | 82a28bc | 2013-03-27 15:55:01 +0100 | [diff] [blame] | 2993 | } else { |
Daniel Vetter | fee884e | 2013-07-04 23:35:21 +0200 | [diff] [blame] | 2994 | hotplug_irqs = SDE_HOTPLUG_MASK_CPT; |
Damien Lespiau | b2784e1 | 2014-08-05 11:29:37 +0100 | [diff] [blame] | 2995 | for_each_intel_encoder(dev, intel_encoder) |
Jani Nikula | 5fcece8 | 2015-05-27 15:03:42 +0300 | [diff] [blame] | 2996 | if (dev_priv->hotplug.stats[intel_encoder->hpd_pin].state == HPD_ENABLED) |
Daniel Vetter | fee884e | 2013-07-04 23:35:21 +0200 | [diff] [blame] | 2997 | enabled_irqs |= hpd_cpt[intel_encoder->hpd_pin]; |
Daniel Vetter | 82a28bc | 2013-03-27 15:55:01 +0100 | [diff] [blame] | 2998 | } |
| 2999 | |
Daniel Vetter | fee884e | 2013-07-04 23:35:21 +0200 | [diff] [blame] | 3000 | ibx_display_interrupt_update(dev_priv, hotplug_irqs, enabled_irqs); |
Daniel Vetter | 82a28bc | 2013-03-27 15:55:01 +0100 | [diff] [blame] | 3001 | |
| 3002 | /* |
| 3003 | * Enable digital hotplug on the PCH, and configure the DP short pulse |
| 3004 | * duration to 2ms (which is the minimum in the Display Port spec) |
| 3005 | * |
| 3006 | * This register is the same on all known PCH chips. |
| 3007 | */ |
Keith Packard | 7fe0b97 | 2011-09-19 13:31:02 -0700 | [diff] [blame] | 3008 | hotplug = I915_READ(PCH_PORT_HOTPLUG); |
| 3009 | hotplug &= ~(PORTD_PULSE_DURATION_MASK|PORTC_PULSE_DURATION_MASK|PORTB_PULSE_DURATION_MASK); |
| 3010 | hotplug |= PORTD_HOTPLUG_ENABLE | PORTD_PULSE_DURATION_2ms; |
| 3011 | hotplug |= PORTC_HOTPLUG_ENABLE | PORTC_PULSE_DURATION_2ms; |
| 3012 | hotplug |= PORTB_HOTPLUG_ENABLE | PORTB_PULSE_DURATION_2ms; |
| 3013 | I915_WRITE(PCH_PORT_HOTPLUG, hotplug); |
| 3014 | } |
| 3015 | |
Shashank Sharma | e0a20ad | 2015-03-27 14:54:14 +0200 | [diff] [blame] | 3016 | static void bxt_hpd_irq_setup(struct drm_device *dev) |
| 3017 | { |
| 3018 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 3019 | struct intel_encoder *intel_encoder; |
| 3020 | u32 hotplug_port = 0; |
| 3021 | u32 hotplug_ctrl; |
| 3022 | |
| 3023 | /* Now, enable HPD */ |
| 3024 | for_each_intel_encoder(dev, intel_encoder) { |
Jani Nikula | 5fcece8 | 2015-05-27 15:03:42 +0300 | [diff] [blame] | 3025 | if (dev_priv->hotplug.stats[intel_encoder->hpd_pin].state |
Shashank Sharma | e0a20ad | 2015-03-27 14:54:14 +0200 | [diff] [blame] | 3026 | == HPD_ENABLED) |
| 3027 | hotplug_port |= hpd_bxt[intel_encoder->hpd_pin]; |
| 3028 | } |
| 3029 | |
| 3030 | /* Mask all HPD control bits */ |
| 3031 | hotplug_ctrl = I915_READ(BXT_HOTPLUG_CTL) & ~BXT_HOTPLUG_CTL_MASK; |
| 3032 | |
| 3033 | /* Enable requested port in hotplug control */ |
| 3034 | /* TODO: implement (short) HPD support on port A */ |
| 3035 | WARN_ON_ONCE(hotplug_port & BXT_DE_PORT_HP_DDIA); |
| 3036 | if (hotplug_port & BXT_DE_PORT_HP_DDIB) |
| 3037 | hotplug_ctrl |= BXT_DDIB_HPD_ENABLE; |
| 3038 | if (hotplug_port & BXT_DE_PORT_HP_DDIC) |
| 3039 | hotplug_ctrl |= BXT_DDIC_HPD_ENABLE; |
| 3040 | I915_WRITE(BXT_HOTPLUG_CTL, hotplug_ctrl); |
| 3041 | |
| 3042 | /* Unmask DDI hotplug in IMR */ |
| 3043 | hotplug_ctrl = I915_READ(GEN8_DE_PORT_IMR) & ~hotplug_port; |
| 3044 | I915_WRITE(GEN8_DE_PORT_IMR, hotplug_ctrl); |
| 3045 | |
| 3046 | /* Enable DDI hotplug in IER */ |
| 3047 | hotplug_ctrl = I915_READ(GEN8_DE_PORT_IER) | hotplug_port; |
| 3048 | I915_WRITE(GEN8_DE_PORT_IER, hotplug_ctrl); |
| 3049 | POSTING_READ(GEN8_DE_PORT_IER); |
| 3050 | } |
| 3051 | |
Paulo Zanoni | d46da43 | 2013-02-08 17:35:15 -0200 | [diff] [blame] | 3052 | static void ibx_irq_postinstall(struct drm_device *dev) |
| 3053 | { |
Jani Nikula | 2d1013d | 2014-03-31 14:27:17 +0300 | [diff] [blame] | 3054 | struct drm_i915_private *dev_priv = dev->dev_private; |
Daniel Vetter | 82a28bc | 2013-03-27 15:55:01 +0100 | [diff] [blame] | 3055 | u32 mask; |
Paulo Zanoni | d46da43 | 2013-02-08 17:35:15 -0200 | [diff] [blame] | 3056 | |
Daniel Vetter | 692a04c | 2013-05-29 21:43:05 +0200 | [diff] [blame] | 3057 | if (HAS_PCH_NOP(dev)) |
| 3058 | return; |
| 3059 | |
Paulo Zanoni | 105b122 | 2014-04-01 15:37:17 -0300 | [diff] [blame] | 3060 | if (HAS_PCH_IBX(dev)) |
Daniel Vetter | 5c673b6 | 2014-03-07 20:34:46 +0100 | [diff] [blame] | 3061 | mask = SDE_GMBUS | SDE_AUX_MASK | SDE_POISON; |
Paulo Zanoni | 105b122 | 2014-04-01 15:37:17 -0300 | [diff] [blame] | 3062 | else |
Daniel Vetter | 5c673b6 | 2014-03-07 20:34:46 +0100 | [diff] [blame] | 3063 | mask = SDE_GMBUS_CPT | SDE_AUX_MASK_CPT; |
Paulo Zanoni | 8664281 | 2013-04-12 17:57:57 -0300 | [diff] [blame] | 3064 | |
Paulo Zanoni | 337ba01 | 2014-04-01 15:37:16 -0300 | [diff] [blame] | 3065 | GEN5_ASSERT_IIR_IS_ZERO(SDEIIR); |
Paulo Zanoni | d46da43 | 2013-02-08 17:35:15 -0200 | [diff] [blame] | 3066 | I915_WRITE(SDEIMR, ~mask); |
Paulo Zanoni | d46da43 | 2013-02-08 17:35:15 -0200 | [diff] [blame] | 3067 | } |
| 3068 | |
Daniel Vetter | 0a9a8c9 | 2013-07-12 22:43:26 +0200 | [diff] [blame] | 3069 | static void gen5_gt_irq_postinstall(struct drm_device *dev) |
| 3070 | { |
| 3071 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 3072 | u32 pm_irqs, gt_irqs; |
| 3073 | |
| 3074 | pm_irqs = gt_irqs = 0; |
| 3075 | |
| 3076 | dev_priv->gt_irq_mask = ~0; |
Ben Widawsky | 040d2ba | 2013-09-19 11:01:40 -0700 | [diff] [blame] | 3077 | if (HAS_L3_DPF(dev)) { |
Daniel Vetter | 0a9a8c9 | 2013-07-12 22:43:26 +0200 | [diff] [blame] | 3078 | /* L3 parity interrupt is always unmasked. */ |
Ben Widawsky | 35a85ac | 2013-09-19 11:13:41 -0700 | [diff] [blame] | 3079 | dev_priv->gt_irq_mask = ~GT_PARITY_ERROR(dev); |
| 3080 | gt_irqs |= GT_PARITY_ERROR(dev); |
Daniel Vetter | 0a9a8c9 | 2013-07-12 22:43:26 +0200 | [diff] [blame] | 3081 | } |
| 3082 | |
| 3083 | gt_irqs |= GT_RENDER_USER_INTERRUPT; |
| 3084 | if (IS_GEN5(dev)) { |
| 3085 | gt_irqs |= GT_RENDER_PIPECTL_NOTIFY_INTERRUPT | |
| 3086 | ILK_BSD_USER_INTERRUPT; |
| 3087 | } else { |
| 3088 | gt_irqs |= GT_BLT_USER_INTERRUPT | GT_BSD_USER_INTERRUPT; |
| 3089 | } |
| 3090 | |
Paulo Zanoni | 3507989 | 2014-04-01 15:37:15 -0300 | [diff] [blame] | 3091 | GEN5_IRQ_INIT(GT, dev_priv->gt_irq_mask, gt_irqs); |
Daniel Vetter | 0a9a8c9 | 2013-07-12 22:43:26 +0200 | [diff] [blame] | 3092 | |
| 3093 | if (INTEL_INFO(dev)->gen >= 6) { |
Imre Deak | 78e68d3 | 2014-12-15 18:59:27 +0200 | [diff] [blame] | 3094 | /* |
| 3095 | * RPS interrupts will get enabled/disabled on demand when RPS |
| 3096 | * itself is enabled/disabled. |
| 3097 | */ |
Daniel Vetter | 0a9a8c9 | 2013-07-12 22:43:26 +0200 | [diff] [blame] | 3098 | if (HAS_VEBOX(dev)) |
| 3099 | pm_irqs |= PM_VEBOX_USER_INTERRUPT; |
| 3100 | |
Paulo Zanoni | 605cd25 | 2013-08-06 18:57:15 -0300 | [diff] [blame] | 3101 | dev_priv->pm_irq_mask = 0xffffffff; |
Paulo Zanoni | 3507989 | 2014-04-01 15:37:15 -0300 | [diff] [blame] | 3102 | GEN5_IRQ_INIT(GEN6_PM, dev_priv->pm_irq_mask, pm_irqs); |
Daniel Vetter | 0a9a8c9 | 2013-07-12 22:43:26 +0200 | [diff] [blame] | 3103 | } |
| 3104 | } |
| 3105 | |
Jesse Barnes | f71d4af | 2011-06-28 13:00:41 -0700 | [diff] [blame] | 3106 | static int ironlake_irq_postinstall(struct drm_device *dev) |
Zhenyu Wang | 036a4a7 | 2009-06-08 14:40:19 +0800 | [diff] [blame] | 3107 | { |
Jani Nikula | 2d1013d | 2014-03-31 14:27:17 +0300 | [diff] [blame] | 3108 | struct drm_i915_private *dev_priv = dev->dev_private; |
Paulo Zanoni | 8e76f8d | 2013-07-12 20:01:56 -0300 | [diff] [blame] | 3109 | u32 display_mask, extra_mask; |
| 3110 | |
| 3111 | if (INTEL_INFO(dev)->gen >= 7) { |
| 3112 | display_mask = (DE_MASTER_IRQ_CONTROL | DE_GSE_IVB | |
| 3113 | DE_PCH_EVENT_IVB | DE_PLANEC_FLIP_DONE_IVB | |
| 3114 | DE_PLANEB_FLIP_DONE_IVB | |
Daniel Vetter | 5c673b6 | 2014-03-07 20:34:46 +0100 | [diff] [blame] | 3115 | DE_PLANEA_FLIP_DONE_IVB | DE_AUX_CHANNEL_A_IVB); |
Paulo Zanoni | 8e76f8d | 2013-07-12 20:01:56 -0300 | [diff] [blame] | 3116 | extra_mask = (DE_PIPEC_VBLANK_IVB | DE_PIPEB_VBLANK_IVB | |
Daniel Vetter | 5c673b6 | 2014-03-07 20:34:46 +0100 | [diff] [blame] | 3117 | DE_PIPEA_VBLANK_IVB | DE_ERR_INT_IVB); |
Paulo Zanoni | 8e76f8d | 2013-07-12 20:01:56 -0300 | [diff] [blame] | 3118 | } else { |
| 3119 | display_mask = (DE_MASTER_IRQ_CONTROL | DE_GSE | DE_PCH_EVENT | |
| 3120 | DE_PLANEA_FLIP_DONE | DE_PLANEB_FLIP_DONE | |
Daniel Vetter | 5b3a856 | 2013-10-16 22:55:48 +0200 | [diff] [blame] | 3121 | DE_AUX_CHANNEL_A | |
Daniel Vetter | 5b3a856 | 2013-10-16 22:55:48 +0200 | [diff] [blame] | 3122 | DE_PIPEB_CRC_DONE | DE_PIPEA_CRC_DONE | |
| 3123 | DE_POISON); |
Daniel Vetter | 5c673b6 | 2014-03-07 20:34:46 +0100 | [diff] [blame] | 3124 | extra_mask = DE_PIPEA_VBLANK | DE_PIPEB_VBLANK | DE_PCU_EVENT | |
| 3125 | DE_PIPEB_FIFO_UNDERRUN | DE_PIPEA_FIFO_UNDERRUN; |
Paulo Zanoni | 8e76f8d | 2013-07-12 20:01:56 -0300 | [diff] [blame] | 3126 | } |
Zhenyu Wang | 036a4a7 | 2009-06-08 14:40:19 +0800 | [diff] [blame] | 3127 | |
Chris Wilson | 1ec14ad | 2010-12-04 11:30:53 +0000 | [diff] [blame] | 3128 | dev_priv->irq_mask = ~display_mask; |
Zhenyu Wang | 036a4a7 | 2009-06-08 14:40:19 +0800 | [diff] [blame] | 3129 | |
Paulo Zanoni | 0c84121 | 2014-04-01 15:37:27 -0300 | [diff] [blame] | 3130 | I915_WRITE(HWSTAM, 0xeffe); |
| 3131 | |
Paulo Zanoni | 622364b | 2014-04-01 15:37:22 -0300 | [diff] [blame] | 3132 | ibx_irq_pre_postinstall(dev); |
| 3133 | |
Paulo Zanoni | 3507989 | 2014-04-01 15:37:15 -0300 | [diff] [blame] | 3134 | GEN5_IRQ_INIT(DE, dev_priv->irq_mask, display_mask | extra_mask); |
Zhenyu Wang | 036a4a7 | 2009-06-08 14:40:19 +0800 | [diff] [blame] | 3135 | |
Daniel Vetter | 0a9a8c9 | 2013-07-12 22:43:26 +0200 | [diff] [blame] | 3136 | gen5_gt_irq_postinstall(dev); |
Zhenyu Wang | 036a4a7 | 2009-06-08 14:40:19 +0800 | [diff] [blame] | 3137 | |
Paulo Zanoni | d46da43 | 2013-02-08 17:35:15 -0200 | [diff] [blame] | 3138 | ibx_irq_postinstall(dev); |
Keith Packard | 7fe0b97 | 2011-09-19 13:31:02 -0700 | [diff] [blame] | 3139 | |
Jesse Barnes | f97108d | 2010-01-29 11:27:07 -0800 | [diff] [blame] | 3140 | if (IS_IRONLAKE_M(dev)) { |
Daniel Vetter | 6005ce4 | 2013-06-27 13:44:59 +0200 | [diff] [blame] | 3141 | /* Enable PCU event interrupts |
| 3142 | * |
| 3143 | * spinlocking not required here for correctness since interrupt |
Daniel Vetter | 4bc9d43 | 2013-06-27 13:44:58 +0200 | [diff] [blame] | 3144 | * setup is guaranteed to run in single-threaded context. But we |
| 3145 | * need it to make the assert_spin_locked happy. */ |
Daniel Vetter | d620743 | 2014-09-15 14:55:27 +0200 | [diff] [blame] | 3146 | spin_lock_irq(&dev_priv->irq_lock); |
Jesse Barnes | f97108d | 2010-01-29 11:27:07 -0800 | [diff] [blame] | 3147 | ironlake_enable_display_irq(dev_priv, DE_PCU_EVENT); |
Daniel Vetter | d620743 | 2014-09-15 14:55:27 +0200 | [diff] [blame] | 3148 | spin_unlock_irq(&dev_priv->irq_lock); |
Jesse Barnes | f97108d | 2010-01-29 11:27:07 -0800 | [diff] [blame] | 3149 | } |
| 3150 | |
Zhenyu Wang | 036a4a7 | 2009-06-08 14:40:19 +0800 | [diff] [blame] | 3151 | return 0; |
| 3152 | } |
| 3153 | |
Imre Deak | f8b79e5 | 2014-03-04 19:23:07 +0200 | [diff] [blame] | 3154 | static void valleyview_display_irqs_install(struct drm_i915_private *dev_priv) |
| 3155 | { |
| 3156 | u32 pipestat_mask; |
| 3157 | u32 iir_mask; |
Ville Syrjälä | 120dda4 | 2014-10-30 19:42:57 +0200 | [diff] [blame] | 3158 | enum pipe pipe; |
Imre Deak | f8b79e5 | 2014-03-04 19:23:07 +0200 | [diff] [blame] | 3159 | |
| 3160 | pipestat_mask = PIPESTAT_INT_STATUS_MASK | |
| 3161 | PIPE_FIFO_UNDERRUN_STATUS; |
| 3162 | |
Ville Syrjälä | 120dda4 | 2014-10-30 19:42:57 +0200 | [diff] [blame] | 3163 | for_each_pipe(dev_priv, pipe) |
| 3164 | I915_WRITE(PIPESTAT(pipe), pipestat_mask); |
Imre Deak | f8b79e5 | 2014-03-04 19:23:07 +0200 | [diff] [blame] | 3165 | POSTING_READ(PIPESTAT(PIPE_A)); |
| 3166 | |
| 3167 | pipestat_mask = PLANE_FLIP_DONE_INT_STATUS_VLV | |
| 3168 | PIPE_CRC_DONE_INTERRUPT_STATUS; |
| 3169 | |
Ville Syrjälä | 120dda4 | 2014-10-30 19:42:57 +0200 | [diff] [blame] | 3170 | i915_enable_pipestat(dev_priv, PIPE_A, PIPE_GMBUS_INTERRUPT_STATUS); |
| 3171 | for_each_pipe(dev_priv, pipe) |
| 3172 | i915_enable_pipestat(dev_priv, pipe, pipestat_mask); |
Imre Deak | f8b79e5 | 2014-03-04 19:23:07 +0200 | [diff] [blame] | 3173 | |
| 3174 | iir_mask = I915_DISPLAY_PORT_INTERRUPT | |
| 3175 | I915_DISPLAY_PIPE_A_EVENT_INTERRUPT | |
| 3176 | I915_DISPLAY_PIPE_B_EVENT_INTERRUPT; |
Ville Syrjälä | 120dda4 | 2014-10-30 19:42:57 +0200 | [diff] [blame] | 3177 | if (IS_CHERRYVIEW(dev_priv)) |
| 3178 | iir_mask |= I915_DISPLAY_PIPE_C_EVENT_INTERRUPT; |
Imre Deak | f8b79e5 | 2014-03-04 19:23:07 +0200 | [diff] [blame] | 3179 | dev_priv->irq_mask &= ~iir_mask; |
| 3180 | |
| 3181 | I915_WRITE(VLV_IIR, iir_mask); |
| 3182 | I915_WRITE(VLV_IIR, iir_mask); |
Imre Deak | f8b79e5 | 2014-03-04 19:23:07 +0200 | [diff] [blame] | 3183 | I915_WRITE(VLV_IER, ~dev_priv->irq_mask); |
Ville Syrjälä | 76e4186 | 2014-10-30 19:42:54 +0200 | [diff] [blame] | 3184 | I915_WRITE(VLV_IMR, dev_priv->irq_mask); |
| 3185 | POSTING_READ(VLV_IMR); |
Imre Deak | f8b79e5 | 2014-03-04 19:23:07 +0200 | [diff] [blame] | 3186 | } |
| 3187 | |
| 3188 | static void valleyview_display_irqs_uninstall(struct drm_i915_private *dev_priv) |
| 3189 | { |
| 3190 | u32 pipestat_mask; |
| 3191 | u32 iir_mask; |
Ville Syrjälä | 120dda4 | 2014-10-30 19:42:57 +0200 | [diff] [blame] | 3192 | enum pipe pipe; |
Imre Deak | f8b79e5 | 2014-03-04 19:23:07 +0200 | [diff] [blame] | 3193 | |
| 3194 | iir_mask = I915_DISPLAY_PORT_INTERRUPT | |
| 3195 | I915_DISPLAY_PIPE_A_EVENT_INTERRUPT | |
Imre Deak | 6c7fba0 | 2014-03-10 19:44:48 +0200 | [diff] [blame] | 3196 | I915_DISPLAY_PIPE_B_EVENT_INTERRUPT; |
Ville Syrjälä | 120dda4 | 2014-10-30 19:42:57 +0200 | [diff] [blame] | 3197 | if (IS_CHERRYVIEW(dev_priv)) |
| 3198 | iir_mask |= I915_DISPLAY_PIPE_C_EVENT_INTERRUPT; |
Imre Deak | f8b79e5 | 2014-03-04 19:23:07 +0200 | [diff] [blame] | 3199 | |
| 3200 | dev_priv->irq_mask |= iir_mask; |
Imre Deak | f8b79e5 | 2014-03-04 19:23:07 +0200 | [diff] [blame] | 3201 | I915_WRITE(VLV_IMR, dev_priv->irq_mask); |
Ville Syrjälä | 76e4186 | 2014-10-30 19:42:54 +0200 | [diff] [blame] | 3202 | I915_WRITE(VLV_IER, ~dev_priv->irq_mask); |
Imre Deak | f8b79e5 | 2014-03-04 19:23:07 +0200 | [diff] [blame] | 3203 | I915_WRITE(VLV_IIR, iir_mask); |
| 3204 | I915_WRITE(VLV_IIR, iir_mask); |
| 3205 | POSTING_READ(VLV_IIR); |
| 3206 | |
| 3207 | pipestat_mask = PLANE_FLIP_DONE_INT_STATUS_VLV | |
| 3208 | PIPE_CRC_DONE_INTERRUPT_STATUS; |
| 3209 | |
Ville Syrjälä | 120dda4 | 2014-10-30 19:42:57 +0200 | [diff] [blame] | 3210 | i915_disable_pipestat(dev_priv, PIPE_A, PIPE_GMBUS_INTERRUPT_STATUS); |
| 3211 | for_each_pipe(dev_priv, pipe) |
| 3212 | i915_disable_pipestat(dev_priv, pipe, pipestat_mask); |
Imre Deak | f8b79e5 | 2014-03-04 19:23:07 +0200 | [diff] [blame] | 3213 | |
| 3214 | pipestat_mask = PIPESTAT_INT_STATUS_MASK | |
| 3215 | PIPE_FIFO_UNDERRUN_STATUS; |
Ville Syrjälä | 120dda4 | 2014-10-30 19:42:57 +0200 | [diff] [blame] | 3216 | |
| 3217 | for_each_pipe(dev_priv, pipe) |
| 3218 | I915_WRITE(PIPESTAT(pipe), pipestat_mask); |
Imre Deak | f8b79e5 | 2014-03-04 19:23:07 +0200 | [diff] [blame] | 3219 | POSTING_READ(PIPESTAT(PIPE_A)); |
| 3220 | } |
| 3221 | |
| 3222 | void valleyview_enable_display_irqs(struct drm_i915_private *dev_priv) |
| 3223 | { |
| 3224 | assert_spin_locked(&dev_priv->irq_lock); |
| 3225 | |
| 3226 | if (dev_priv->display_irqs_enabled) |
| 3227 | return; |
| 3228 | |
| 3229 | dev_priv->display_irqs_enabled = true; |
| 3230 | |
Imre Deak | 950eaba | 2014-09-08 15:21:09 +0300 | [diff] [blame] | 3231 | if (intel_irqs_enabled(dev_priv)) |
Imre Deak | f8b79e5 | 2014-03-04 19:23:07 +0200 | [diff] [blame] | 3232 | valleyview_display_irqs_install(dev_priv); |
| 3233 | } |
| 3234 | |
| 3235 | void valleyview_disable_display_irqs(struct drm_i915_private *dev_priv) |
| 3236 | { |
| 3237 | assert_spin_locked(&dev_priv->irq_lock); |
| 3238 | |
| 3239 | if (!dev_priv->display_irqs_enabled) |
| 3240 | return; |
| 3241 | |
| 3242 | dev_priv->display_irqs_enabled = false; |
| 3243 | |
Imre Deak | 950eaba | 2014-09-08 15:21:09 +0300 | [diff] [blame] | 3244 | if (intel_irqs_enabled(dev_priv)) |
Imre Deak | f8b79e5 | 2014-03-04 19:23:07 +0200 | [diff] [blame] | 3245 | valleyview_display_irqs_uninstall(dev_priv); |
| 3246 | } |
| 3247 | |
Ville Syrjälä | 0e6c9a9 | 2014-10-30 19:43:00 +0200 | [diff] [blame] | 3248 | static void vlv_display_irq_postinstall(struct drm_i915_private *dev_priv) |
Jesse Barnes | 7e231dbe | 2012-03-28 13:39:38 -0700 | [diff] [blame] | 3249 | { |
Imre Deak | f8b79e5 | 2014-03-04 19:23:07 +0200 | [diff] [blame] | 3250 | dev_priv->irq_mask = ~0; |
Jesse Barnes | 7e231dbe | 2012-03-28 13:39:38 -0700 | [diff] [blame] | 3251 | |
Daniel Vetter | 20afbda | 2012-12-11 14:05:07 +0100 | [diff] [blame] | 3252 | I915_WRITE(PORT_HOTPLUG_EN, 0); |
| 3253 | POSTING_READ(PORT_HOTPLUG_EN); |
| 3254 | |
Jesse Barnes | 7e231dbe | 2012-03-28 13:39:38 -0700 | [diff] [blame] | 3255 | I915_WRITE(VLV_IIR, 0xffffffff); |
Ville Syrjälä | 76e4186 | 2014-10-30 19:42:54 +0200 | [diff] [blame] | 3256 | I915_WRITE(VLV_IIR, 0xffffffff); |
| 3257 | I915_WRITE(VLV_IER, ~dev_priv->irq_mask); |
| 3258 | I915_WRITE(VLV_IMR, dev_priv->irq_mask); |
| 3259 | POSTING_READ(VLV_IMR); |
Jesse Barnes | 7e231dbe | 2012-03-28 13:39:38 -0700 | [diff] [blame] | 3260 | |
Daniel Vetter | b79480b | 2013-06-27 17:52:10 +0200 | [diff] [blame] | 3261 | /* Interrupt setup is already guaranteed to be single-threaded, this is |
| 3262 | * just to make the assert_spin_locked check happy. */ |
Daniel Vetter | d620743 | 2014-09-15 14:55:27 +0200 | [diff] [blame] | 3263 | spin_lock_irq(&dev_priv->irq_lock); |
Imre Deak | f8b79e5 | 2014-03-04 19:23:07 +0200 | [diff] [blame] | 3264 | if (dev_priv->display_irqs_enabled) |
| 3265 | valleyview_display_irqs_install(dev_priv); |
Daniel Vetter | d620743 | 2014-09-15 14:55:27 +0200 | [diff] [blame] | 3266 | spin_unlock_irq(&dev_priv->irq_lock); |
Ville Syrjälä | 0e6c9a9 | 2014-10-30 19:43:00 +0200 | [diff] [blame] | 3267 | } |
| 3268 | |
| 3269 | static int valleyview_irq_postinstall(struct drm_device *dev) |
| 3270 | { |
| 3271 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 3272 | |
| 3273 | vlv_display_irq_postinstall(dev_priv); |
Jesse Barnes | 7e231dbe | 2012-03-28 13:39:38 -0700 | [diff] [blame] | 3274 | |
Daniel Vetter | 0a9a8c9 | 2013-07-12 22:43:26 +0200 | [diff] [blame] | 3275 | gen5_gt_irq_postinstall(dev); |
Jesse Barnes | 7e231dbe | 2012-03-28 13:39:38 -0700 | [diff] [blame] | 3276 | |
| 3277 | /* ack & enable invalid PTE error interrupts */ |
| 3278 | #if 0 /* FIXME: add support to irq handler for checking these bits */ |
| 3279 | I915_WRITE(DPINVGTT, DPINVGTT_STATUS_MASK); |
| 3280 | I915_WRITE(DPINVGTT, DPINVGTT_EN_MASK); |
| 3281 | #endif |
| 3282 | |
| 3283 | I915_WRITE(VLV_MASTER_IER, MASTER_INTERRUPT_ENABLE); |
Daniel Vetter | 20afbda | 2012-12-11 14:05:07 +0100 | [diff] [blame] | 3284 | |
| 3285 | return 0; |
| 3286 | } |
| 3287 | |
Ben Widawsky | abd58f0 | 2013-11-02 21:07:09 -0700 | [diff] [blame] | 3288 | static void gen8_gt_irq_postinstall(struct drm_i915_private *dev_priv) |
| 3289 | { |
Ben Widawsky | abd58f0 | 2013-11-02 21:07:09 -0700 | [diff] [blame] | 3290 | /* These are interrupts we'll toggle with the ring mask register */ |
| 3291 | uint32_t gt_interrupts[] = { |
| 3292 | GT_RENDER_USER_INTERRUPT << GEN8_RCS_IRQ_SHIFT | |
Oscar Mateo | 73d477f | 2014-07-24 17:04:31 +0100 | [diff] [blame] | 3293 | GT_CONTEXT_SWITCH_INTERRUPT << GEN8_RCS_IRQ_SHIFT | |
Ben Widawsky | abd58f0 | 2013-11-02 21:07:09 -0700 | [diff] [blame] | 3294 | GT_RENDER_L3_PARITY_ERROR_INTERRUPT | |
Oscar Mateo | 73d477f | 2014-07-24 17:04:31 +0100 | [diff] [blame] | 3295 | GT_RENDER_USER_INTERRUPT << GEN8_BCS_IRQ_SHIFT | |
| 3296 | GT_CONTEXT_SWITCH_INTERRUPT << GEN8_BCS_IRQ_SHIFT, |
Ben Widawsky | abd58f0 | 2013-11-02 21:07:09 -0700 | [diff] [blame] | 3297 | GT_RENDER_USER_INTERRUPT << GEN8_VCS1_IRQ_SHIFT | |
Oscar Mateo | 73d477f | 2014-07-24 17:04:31 +0100 | [diff] [blame] | 3298 | GT_CONTEXT_SWITCH_INTERRUPT << GEN8_VCS1_IRQ_SHIFT | |
| 3299 | GT_RENDER_USER_INTERRUPT << GEN8_VCS2_IRQ_SHIFT | |
| 3300 | GT_CONTEXT_SWITCH_INTERRUPT << GEN8_VCS2_IRQ_SHIFT, |
Ben Widawsky | abd58f0 | 2013-11-02 21:07:09 -0700 | [diff] [blame] | 3301 | 0, |
Oscar Mateo | 73d477f | 2014-07-24 17:04:31 +0100 | [diff] [blame] | 3302 | GT_RENDER_USER_INTERRUPT << GEN8_VECS_IRQ_SHIFT | |
| 3303 | GT_CONTEXT_SWITCH_INTERRUPT << GEN8_VECS_IRQ_SHIFT |
Ben Widawsky | abd58f0 | 2013-11-02 21:07:09 -0700 | [diff] [blame] | 3304 | }; |
| 3305 | |
Ben Widawsky | 0961021 | 2014-05-15 20:58:08 +0300 | [diff] [blame] | 3306 | dev_priv->pm_irq_mask = 0xffffffff; |
Deepak S | 9a2d2d8 | 2014-08-22 08:32:40 +0530 | [diff] [blame] | 3307 | GEN8_IRQ_INIT_NDX(GT, 0, ~gt_interrupts[0], gt_interrupts[0]); |
| 3308 | GEN8_IRQ_INIT_NDX(GT, 1, ~gt_interrupts[1], gt_interrupts[1]); |
Imre Deak | 78e68d3 | 2014-12-15 18:59:27 +0200 | [diff] [blame] | 3309 | /* |
| 3310 | * RPS interrupts will get enabled/disabled on demand when RPS itself |
| 3311 | * is enabled/disabled. |
| 3312 | */ |
| 3313 | GEN8_IRQ_INIT_NDX(GT, 2, dev_priv->pm_irq_mask, 0); |
Deepak S | 9a2d2d8 | 2014-08-22 08:32:40 +0530 | [diff] [blame] | 3314 | GEN8_IRQ_INIT_NDX(GT, 3, ~gt_interrupts[3], gt_interrupts[3]); |
Ben Widawsky | abd58f0 | 2013-11-02 21:07:09 -0700 | [diff] [blame] | 3315 | } |
| 3316 | |
| 3317 | static void gen8_de_irq_postinstall(struct drm_i915_private *dev_priv) |
| 3318 | { |
Damien Lespiau | 770de83 | 2014-03-20 20:45:01 +0000 | [diff] [blame] | 3319 | uint32_t de_pipe_masked = GEN8_PIPE_CDCLK_CRC_DONE; |
| 3320 | uint32_t de_pipe_enables; |
Ben Widawsky | abd58f0 | 2013-11-02 21:07:09 -0700 | [diff] [blame] | 3321 | int pipe; |
Shashank Sharma | 9e63743 | 2014-08-22 17:40:43 +0530 | [diff] [blame] | 3322 | u32 de_port_en = GEN8_AUX_CHANNEL_A; |
Damien Lespiau | 770de83 | 2014-03-20 20:45:01 +0000 | [diff] [blame] | 3323 | |
Jesse Barnes | 88e0470 | 2014-11-13 17:51:48 +0000 | [diff] [blame] | 3324 | if (IS_GEN9(dev_priv)) { |
Damien Lespiau | 770de83 | 2014-03-20 20:45:01 +0000 | [diff] [blame] | 3325 | de_pipe_masked |= GEN9_PIPE_PLANE1_FLIP_DONE | |
| 3326 | GEN9_DE_PIPE_IRQ_FAULT_ERRORS; |
Shashank Sharma | 9e63743 | 2014-08-22 17:40:43 +0530 | [diff] [blame] | 3327 | de_port_en |= GEN9_AUX_CHANNEL_B | GEN9_AUX_CHANNEL_C | |
Jesse Barnes | 88e0470 | 2014-11-13 17:51:48 +0000 | [diff] [blame] | 3328 | GEN9_AUX_CHANNEL_D; |
Shashank Sharma | 9e63743 | 2014-08-22 17:40:43 +0530 | [diff] [blame] | 3329 | |
| 3330 | if (IS_BROXTON(dev_priv)) |
| 3331 | de_port_en |= BXT_DE_PORT_GMBUS; |
Jesse Barnes | 88e0470 | 2014-11-13 17:51:48 +0000 | [diff] [blame] | 3332 | } else |
Damien Lespiau | 770de83 | 2014-03-20 20:45:01 +0000 | [diff] [blame] | 3333 | de_pipe_masked |= GEN8_PIPE_PRIMARY_FLIP_DONE | |
| 3334 | GEN8_DE_PIPE_IRQ_FAULT_ERRORS; |
| 3335 | |
| 3336 | de_pipe_enables = de_pipe_masked | GEN8_PIPE_VBLANK | |
| 3337 | GEN8_PIPE_FIFO_UNDERRUN; |
| 3338 | |
Daniel Vetter | 13b3a0a | 2013-11-07 15:31:52 +0100 | [diff] [blame] | 3339 | dev_priv->de_irq_mask[PIPE_A] = ~de_pipe_masked; |
| 3340 | dev_priv->de_irq_mask[PIPE_B] = ~de_pipe_masked; |
| 3341 | dev_priv->de_irq_mask[PIPE_C] = ~de_pipe_masked; |
Ben Widawsky | abd58f0 | 2013-11-02 21:07:09 -0700 | [diff] [blame] | 3342 | |
Damien Lespiau | 055e393 | 2014-08-18 13:49:10 +0100 | [diff] [blame] | 3343 | for_each_pipe(dev_priv, pipe) |
Daniel Vetter | f458ebb | 2014-09-30 10:56:39 +0200 | [diff] [blame] | 3344 | if (intel_display_power_is_enabled(dev_priv, |
Paulo Zanoni | 813bde4 | 2014-07-04 11:50:29 -0300 | [diff] [blame] | 3345 | POWER_DOMAIN_PIPE(pipe))) |
| 3346 | GEN8_IRQ_INIT_NDX(DE_PIPE, pipe, |
| 3347 | dev_priv->de_irq_mask[pipe], |
| 3348 | de_pipe_enables); |
Ben Widawsky | abd58f0 | 2013-11-02 21:07:09 -0700 | [diff] [blame] | 3349 | |
Shashank Sharma | 9e63743 | 2014-08-22 17:40:43 +0530 | [diff] [blame] | 3350 | GEN5_IRQ_INIT(GEN8_DE_PORT_, ~de_port_en, de_port_en); |
Ben Widawsky | abd58f0 | 2013-11-02 21:07:09 -0700 | [diff] [blame] | 3351 | } |
| 3352 | |
| 3353 | static int gen8_irq_postinstall(struct drm_device *dev) |
| 3354 | { |
| 3355 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 3356 | |
Shashank Sharma | 266ea3d | 2014-08-22 17:40:42 +0530 | [diff] [blame] | 3357 | if (HAS_PCH_SPLIT(dev)) |
| 3358 | ibx_irq_pre_postinstall(dev); |
Paulo Zanoni | 622364b | 2014-04-01 15:37:22 -0300 | [diff] [blame] | 3359 | |
Ben Widawsky | abd58f0 | 2013-11-02 21:07:09 -0700 | [diff] [blame] | 3360 | gen8_gt_irq_postinstall(dev_priv); |
| 3361 | gen8_de_irq_postinstall(dev_priv); |
| 3362 | |
Shashank Sharma | 266ea3d | 2014-08-22 17:40:42 +0530 | [diff] [blame] | 3363 | if (HAS_PCH_SPLIT(dev)) |
| 3364 | ibx_irq_postinstall(dev); |
Ben Widawsky | abd58f0 | 2013-11-02 21:07:09 -0700 | [diff] [blame] | 3365 | |
| 3366 | I915_WRITE(GEN8_MASTER_IRQ, DE_MASTER_IRQ_CONTROL); |
| 3367 | POSTING_READ(GEN8_MASTER_IRQ); |
| 3368 | |
| 3369 | return 0; |
| 3370 | } |
| 3371 | |
Ville Syrjälä | 43f328d | 2014-04-09 20:40:52 +0300 | [diff] [blame] | 3372 | static int cherryview_irq_postinstall(struct drm_device *dev) |
| 3373 | { |
| 3374 | struct drm_i915_private *dev_priv = dev->dev_private; |
Ville Syrjälä | 43f328d | 2014-04-09 20:40:52 +0300 | [diff] [blame] | 3375 | |
Ville Syrjälä | c2b6679 | 2014-10-30 19:43:02 +0200 | [diff] [blame] | 3376 | vlv_display_irq_postinstall(dev_priv); |
Ville Syrjälä | 43f328d | 2014-04-09 20:40:52 +0300 | [diff] [blame] | 3377 | |
| 3378 | gen8_gt_irq_postinstall(dev_priv); |
| 3379 | |
| 3380 | I915_WRITE(GEN8_MASTER_IRQ, MASTER_INTERRUPT_ENABLE); |
| 3381 | POSTING_READ(GEN8_MASTER_IRQ); |
| 3382 | |
| 3383 | return 0; |
| 3384 | } |
| 3385 | |
Ben Widawsky | abd58f0 | 2013-11-02 21:07:09 -0700 | [diff] [blame] | 3386 | static void gen8_irq_uninstall(struct drm_device *dev) |
| 3387 | { |
| 3388 | struct drm_i915_private *dev_priv = dev->dev_private; |
Ben Widawsky | abd58f0 | 2013-11-02 21:07:09 -0700 | [diff] [blame] | 3389 | |
| 3390 | if (!dev_priv) |
| 3391 | return; |
| 3392 | |
Paulo Zanoni | 823f6b3 | 2014-04-01 15:37:26 -0300 | [diff] [blame] | 3393 | gen8_irq_reset(dev); |
Ben Widawsky | abd58f0 | 2013-11-02 21:07:09 -0700 | [diff] [blame] | 3394 | } |
| 3395 | |
Ville Syrjälä | 8ea0be4 | 2014-10-30 19:42:59 +0200 | [diff] [blame] | 3396 | static void vlv_display_irq_uninstall(struct drm_i915_private *dev_priv) |
| 3397 | { |
| 3398 | /* Interrupt setup is already guaranteed to be single-threaded, this is |
| 3399 | * just to make the assert_spin_locked check happy. */ |
| 3400 | spin_lock_irq(&dev_priv->irq_lock); |
| 3401 | if (dev_priv->display_irqs_enabled) |
| 3402 | valleyview_display_irqs_uninstall(dev_priv); |
| 3403 | spin_unlock_irq(&dev_priv->irq_lock); |
| 3404 | |
| 3405 | vlv_display_irq_reset(dev_priv); |
| 3406 | |
Imre Deak | c352d1b | 2014-11-20 16:05:55 +0200 | [diff] [blame] | 3407 | dev_priv->irq_mask = ~0; |
Ville Syrjälä | 8ea0be4 | 2014-10-30 19:42:59 +0200 | [diff] [blame] | 3408 | } |
| 3409 | |
Jesse Barnes | 7e231dbe | 2012-03-28 13:39:38 -0700 | [diff] [blame] | 3410 | static void valleyview_irq_uninstall(struct drm_device *dev) |
| 3411 | { |
Jani Nikula | 2d1013d | 2014-03-31 14:27:17 +0300 | [diff] [blame] | 3412 | struct drm_i915_private *dev_priv = dev->dev_private; |
Jesse Barnes | 7e231dbe | 2012-03-28 13:39:38 -0700 | [diff] [blame] | 3413 | |
| 3414 | if (!dev_priv) |
| 3415 | return; |
| 3416 | |
Imre Deak | 843d0e7 | 2014-04-14 20:24:23 +0300 | [diff] [blame] | 3417 | I915_WRITE(VLV_MASTER_IER, 0); |
| 3418 | |
Ville Syrjälä | 893fce8 | 2014-10-30 19:42:56 +0200 | [diff] [blame] | 3419 | gen5_gt_irq_reset(dev); |
| 3420 | |
Jesse Barnes | 7e231dbe | 2012-03-28 13:39:38 -0700 | [diff] [blame] | 3421 | I915_WRITE(HWSTAM, 0xffffffff); |
Imre Deak | f8b79e5 | 2014-03-04 19:23:07 +0200 | [diff] [blame] | 3422 | |
Ville Syrjälä | 8ea0be4 | 2014-10-30 19:42:59 +0200 | [diff] [blame] | 3423 | vlv_display_irq_uninstall(dev_priv); |
Jesse Barnes | 7e231dbe | 2012-03-28 13:39:38 -0700 | [diff] [blame] | 3424 | } |
| 3425 | |
Ville Syrjälä | 43f328d | 2014-04-09 20:40:52 +0300 | [diff] [blame] | 3426 | static void cherryview_irq_uninstall(struct drm_device *dev) |
| 3427 | { |
| 3428 | struct drm_i915_private *dev_priv = dev->dev_private; |
Ville Syrjälä | 43f328d | 2014-04-09 20:40:52 +0300 | [diff] [blame] | 3429 | |
| 3430 | if (!dev_priv) |
| 3431 | return; |
| 3432 | |
| 3433 | I915_WRITE(GEN8_MASTER_IRQ, 0); |
| 3434 | POSTING_READ(GEN8_MASTER_IRQ); |
| 3435 | |
Ville Syrjälä | a2c30fb | 2014-10-30 19:42:52 +0200 | [diff] [blame] | 3436 | gen8_gt_irq_reset(dev_priv); |
Ville Syrjälä | 43f328d | 2014-04-09 20:40:52 +0300 | [diff] [blame] | 3437 | |
Ville Syrjälä | a2c30fb | 2014-10-30 19:42:52 +0200 | [diff] [blame] | 3438 | GEN5_IRQ_RESET(GEN8_PCU_); |
Ville Syrjälä | 43f328d | 2014-04-09 20:40:52 +0300 | [diff] [blame] | 3439 | |
Ville Syrjälä | c2b6679 | 2014-10-30 19:43:02 +0200 | [diff] [blame] | 3440 | vlv_display_irq_uninstall(dev_priv); |
Ville Syrjälä | 43f328d | 2014-04-09 20:40:52 +0300 | [diff] [blame] | 3441 | } |
| 3442 | |
Jesse Barnes | f71d4af | 2011-06-28 13:00:41 -0700 | [diff] [blame] | 3443 | static void ironlake_irq_uninstall(struct drm_device *dev) |
Zhenyu Wang | 036a4a7 | 2009-06-08 14:40:19 +0800 | [diff] [blame] | 3444 | { |
Jani Nikula | 2d1013d | 2014-03-31 14:27:17 +0300 | [diff] [blame] | 3445 | struct drm_i915_private *dev_priv = dev->dev_private; |
Jesse Barnes | 4697995 | 2011-04-07 13:53:55 -0700 | [diff] [blame] | 3446 | |
| 3447 | if (!dev_priv) |
| 3448 | return; |
| 3449 | |
Paulo Zanoni | be30b29 | 2014-04-01 15:37:25 -0300 | [diff] [blame] | 3450 | ironlake_irq_reset(dev); |
Zhenyu Wang | 036a4a7 | 2009-06-08 14:40:19 +0800 | [diff] [blame] | 3451 | } |
| 3452 | |
Chris Wilson | c2798b1 | 2012-04-22 21:13:57 +0100 | [diff] [blame] | 3453 | static void i8xx_irq_preinstall(struct drm_device * dev) |
| 3454 | { |
Jani Nikula | 2d1013d | 2014-03-31 14:27:17 +0300 | [diff] [blame] | 3455 | struct drm_i915_private *dev_priv = dev->dev_private; |
Chris Wilson | c2798b1 | 2012-04-22 21:13:57 +0100 | [diff] [blame] | 3456 | int pipe; |
| 3457 | |
Damien Lespiau | 055e393 | 2014-08-18 13:49:10 +0100 | [diff] [blame] | 3458 | for_each_pipe(dev_priv, pipe) |
Chris Wilson | c2798b1 | 2012-04-22 21:13:57 +0100 | [diff] [blame] | 3459 | I915_WRITE(PIPESTAT(pipe), 0); |
| 3460 | I915_WRITE16(IMR, 0xffff); |
| 3461 | I915_WRITE16(IER, 0x0); |
| 3462 | POSTING_READ16(IER); |
| 3463 | } |
| 3464 | |
| 3465 | static int i8xx_irq_postinstall(struct drm_device *dev) |
| 3466 | { |
Jani Nikula | 2d1013d | 2014-03-31 14:27:17 +0300 | [diff] [blame] | 3467 | struct drm_i915_private *dev_priv = dev->dev_private; |
Chris Wilson | c2798b1 | 2012-04-22 21:13:57 +0100 | [diff] [blame] | 3468 | |
Chris Wilson | c2798b1 | 2012-04-22 21:13:57 +0100 | [diff] [blame] | 3469 | I915_WRITE16(EMR, |
| 3470 | ~(I915_ERROR_PAGE_TABLE | I915_ERROR_MEMORY_REFRESH)); |
| 3471 | |
| 3472 | /* Unmask the interrupts that we always want on. */ |
| 3473 | dev_priv->irq_mask = |
| 3474 | ~(I915_DISPLAY_PIPE_A_EVENT_INTERRUPT | |
| 3475 | I915_DISPLAY_PIPE_B_EVENT_INTERRUPT | |
| 3476 | I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT | |
Daniel Vetter | 37ef01a | 2015-04-01 13:43:46 +0200 | [diff] [blame] | 3477 | I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT); |
Chris Wilson | c2798b1 | 2012-04-22 21:13:57 +0100 | [diff] [blame] | 3478 | I915_WRITE16(IMR, dev_priv->irq_mask); |
| 3479 | |
| 3480 | I915_WRITE16(IER, |
| 3481 | I915_DISPLAY_PIPE_A_EVENT_INTERRUPT | |
| 3482 | I915_DISPLAY_PIPE_B_EVENT_INTERRUPT | |
Chris Wilson | c2798b1 | 2012-04-22 21:13:57 +0100 | [diff] [blame] | 3483 | I915_USER_INTERRUPT); |
| 3484 | POSTING_READ16(IER); |
| 3485 | |
Daniel Vetter | 379ef82 | 2013-10-16 22:55:56 +0200 | [diff] [blame] | 3486 | /* Interrupt setup is already guaranteed to be single-threaded, this is |
| 3487 | * just to make the assert_spin_locked check happy. */ |
Daniel Vetter | d620743 | 2014-09-15 14:55:27 +0200 | [diff] [blame] | 3488 | spin_lock_irq(&dev_priv->irq_lock); |
Imre Deak | 755e901 | 2014-02-10 18:42:47 +0200 | [diff] [blame] | 3489 | i915_enable_pipestat(dev_priv, PIPE_A, PIPE_CRC_DONE_INTERRUPT_STATUS); |
| 3490 | i915_enable_pipestat(dev_priv, PIPE_B, PIPE_CRC_DONE_INTERRUPT_STATUS); |
Daniel Vetter | d620743 | 2014-09-15 14:55:27 +0200 | [diff] [blame] | 3491 | spin_unlock_irq(&dev_priv->irq_lock); |
Daniel Vetter | 379ef82 | 2013-10-16 22:55:56 +0200 | [diff] [blame] | 3492 | |
Chris Wilson | c2798b1 | 2012-04-22 21:13:57 +0100 | [diff] [blame] | 3493 | return 0; |
| 3494 | } |
| 3495 | |
Ville Syrjälä | 90a72f8 | 2013-02-19 23:16:44 +0200 | [diff] [blame] | 3496 | /* |
| 3497 | * Returns true when a page flip has completed. |
| 3498 | */ |
| 3499 | static bool i8xx_handle_vblank(struct drm_device *dev, |
Ville Syrjälä | 1f1c2e2 | 2013-11-28 17:30:01 +0200 | [diff] [blame] | 3500 | int plane, int pipe, u32 iir) |
Ville Syrjälä | 90a72f8 | 2013-02-19 23:16:44 +0200 | [diff] [blame] | 3501 | { |
Jani Nikula | 2d1013d | 2014-03-31 14:27:17 +0300 | [diff] [blame] | 3502 | struct drm_i915_private *dev_priv = dev->dev_private; |
Ville Syrjälä | 1f1c2e2 | 2013-11-28 17:30:01 +0200 | [diff] [blame] | 3503 | u16 flip_pending = DISPLAY_PLANE_FLIP_PENDING(plane); |
Ville Syrjälä | 90a72f8 | 2013-02-19 23:16:44 +0200 | [diff] [blame] | 3504 | |
Ville Syrjälä | 8d7849d | 2014-04-29 13:35:46 +0300 | [diff] [blame] | 3505 | if (!intel_pipe_handle_vblank(dev, pipe)) |
Ville Syrjälä | 90a72f8 | 2013-02-19 23:16:44 +0200 | [diff] [blame] | 3506 | return false; |
| 3507 | |
| 3508 | if ((iir & flip_pending) == 0) |
Chris Wilson | d6bbafa | 2014-09-05 07:13:24 +0100 | [diff] [blame] | 3509 | goto check_page_flip; |
Ville Syrjälä | 90a72f8 | 2013-02-19 23:16:44 +0200 | [diff] [blame] | 3510 | |
Ville Syrjälä | 90a72f8 | 2013-02-19 23:16:44 +0200 | [diff] [blame] | 3511 | /* We detect FlipDone by looking for the change in PendingFlip from '1' |
| 3512 | * to '0' on the following vblank, i.e. IIR has the Pendingflip |
| 3513 | * asserted following the MI_DISPLAY_FLIP, but ISR is deasserted, hence |
| 3514 | * the flip is completed (no longer pending). Since this doesn't raise |
| 3515 | * an interrupt per se, we watch for the change at vblank. |
| 3516 | */ |
| 3517 | if (I915_READ16(ISR) & flip_pending) |
Chris Wilson | d6bbafa | 2014-09-05 07:13:24 +0100 | [diff] [blame] | 3518 | goto check_page_flip; |
Ville Syrjälä | 90a72f8 | 2013-02-19 23:16:44 +0200 | [diff] [blame] | 3519 | |
Ville Syrjälä | 7d47559 | 2014-12-17 23:08:03 +0200 | [diff] [blame] | 3520 | intel_prepare_page_flip(dev, plane); |
Ville Syrjälä | 90a72f8 | 2013-02-19 23:16:44 +0200 | [diff] [blame] | 3521 | intel_finish_page_flip(dev, pipe); |
Ville Syrjälä | 90a72f8 | 2013-02-19 23:16:44 +0200 | [diff] [blame] | 3522 | return true; |
Chris Wilson | d6bbafa | 2014-09-05 07:13:24 +0100 | [diff] [blame] | 3523 | |
| 3524 | check_page_flip: |
| 3525 | intel_check_page_flip(dev, pipe); |
| 3526 | return false; |
Ville Syrjälä | 90a72f8 | 2013-02-19 23:16:44 +0200 | [diff] [blame] | 3527 | } |
| 3528 | |
Daniel Vetter | ff1f525 | 2012-10-02 15:10:55 +0200 | [diff] [blame] | 3529 | static irqreturn_t i8xx_irq_handler(int irq, void *arg) |
Chris Wilson | c2798b1 | 2012-04-22 21:13:57 +0100 | [diff] [blame] | 3530 | { |
Daniel Vetter | 45a83f8 | 2014-05-12 19:17:55 +0200 | [diff] [blame] | 3531 | struct drm_device *dev = arg; |
Jani Nikula | 2d1013d | 2014-03-31 14:27:17 +0300 | [diff] [blame] | 3532 | struct drm_i915_private *dev_priv = dev->dev_private; |
Chris Wilson | c2798b1 | 2012-04-22 21:13:57 +0100 | [diff] [blame] | 3533 | u16 iir, new_iir; |
| 3534 | u32 pipe_stats[2]; |
Chris Wilson | c2798b1 | 2012-04-22 21:13:57 +0100 | [diff] [blame] | 3535 | int pipe; |
| 3536 | u16 flip_mask = |
| 3537 | I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT | |
| 3538 | I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT; |
| 3539 | |
Imre Deak | 2dd2a88 | 2015-02-24 11:14:30 +0200 | [diff] [blame] | 3540 | if (!intel_irqs_enabled(dev_priv)) |
| 3541 | return IRQ_NONE; |
| 3542 | |
Chris Wilson | c2798b1 | 2012-04-22 21:13:57 +0100 | [diff] [blame] | 3543 | iir = I915_READ16(IIR); |
| 3544 | if (iir == 0) |
| 3545 | return IRQ_NONE; |
| 3546 | |
| 3547 | while (iir & ~flip_mask) { |
| 3548 | /* Can't rely on pipestat interrupt bit in iir as it might |
| 3549 | * have been cleared after the pipestat interrupt was received. |
| 3550 | * It doesn't set the bit in iir again, but it still produces |
| 3551 | * interrupts (for non-MSI). |
| 3552 | */ |
Daniel Vetter | 222c7f5 | 2014-09-15 14:55:28 +0200 | [diff] [blame] | 3553 | spin_lock(&dev_priv->irq_lock); |
Chris Wilson | c2798b1 | 2012-04-22 21:13:57 +0100 | [diff] [blame] | 3554 | if (iir & I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT) |
Daniel Vetter | aaecdf6 | 2014-11-04 15:52:22 +0100 | [diff] [blame] | 3555 | DRM_DEBUG("Command parser error, iir 0x%08x\n", iir); |
Chris Wilson | c2798b1 | 2012-04-22 21:13:57 +0100 | [diff] [blame] | 3556 | |
Damien Lespiau | 055e393 | 2014-08-18 13:49:10 +0100 | [diff] [blame] | 3557 | for_each_pipe(dev_priv, pipe) { |
Chris Wilson | c2798b1 | 2012-04-22 21:13:57 +0100 | [diff] [blame] | 3558 | int reg = PIPESTAT(pipe); |
| 3559 | pipe_stats[pipe] = I915_READ(reg); |
| 3560 | |
| 3561 | /* |
| 3562 | * Clear the PIPE*STAT regs before the IIR |
| 3563 | */ |
Ville Syrjälä | 2d9d2b0 | 2014-01-17 11:44:31 +0200 | [diff] [blame] | 3564 | if (pipe_stats[pipe] & 0x8000ffff) |
Chris Wilson | c2798b1 | 2012-04-22 21:13:57 +0100 | [diff] [blame] | 3565 | I915_WRITE(reg, pipe_stats[pipe]); |
Chris Wilson | c2798b1 | 2012-04-22 21:13:57 +0100 | [diff] [blame] | 3566 | } |
Daniel Vetter | 222c7f5 | 2014-09-15 14:55:28 +0200 | [diff] [blame] | 3567 | spin_unlock(&dev_priv->irq_lock); |
Chris Wilson | c2798b1 | 2012-04-22 21:13:57 +0100 | [diff] [blame] | 3568 | |
| 3569 | I915_WRITE16(IIR, iir & ~flip_mask); |
| 3570 | new_iir = I915_READ16(IIR); /* Flush posted writes */ |
| 3571 | |
Chris Wilson | c2798b1 | 2012-04-22 21:13:57 +0100 | [diff] [blame] | 3572 | if (iir & I915_USER_INTERRUPT) |
Chris Wilson | 74cdb33 | 2015-04-07 16:21:05 +0100 | [diff] [blame] | 3573 | notify_ring(&dev_priv->ring[RCS]); |
Chris Wilson | c2798b1 | 2012-04-22 21:13:57 +0100 | [diff] [blame] | 3574 | |
Damien Lespiau | 055e393 | 2014-08-18 13:49:10 +0100 | [diff] [blame] | 3575 | for_each_pipe(dev_priv, pipe) { |
Ville Syrjälä | 1f1c2e2 | 2013-11-28 17:30:01 +0200 | [diff] [blame] | 3576 | int plane = pipe; |
Daniel Vetter | 3a77c4c | 2014-01-10 08:50:12 +0100 | [diff] [blame] | 3577 | if (HAS_FBC(dev)) |
Ville Syrjälä | 1f1c2e2 | 2013-11-28 17:30:01 +0200 | [diff] [blame] | 3578 | plane = !plane; |
| 3579 | |
Daniel Vetter | 4356d58 | 2013-10-16 22:55:55 +0200 | [diff] [blame] | 3580 | if (pipe_stats[pipe] & PIPE_VBLANK_INTERRUPT_STATUS && |
Ville Syrjälä | 1f1c2e2 | 2013-11-28 17:30:01 +0200 | [diff] [blame] | 3581 | i8xx_handle_vblank(dev, plane, pipe, iir)) |
| 3582 | flip_mask &= ~DISPLAY_PLANE_FLIP_PENDING(plane); |
Chris Wilson | c2798b1 | 2012-04-22 21:13:57 +0100 | [diff] [blame] | 3583 | |
Daniel Vetter | 4356d58 | 2013-10-16 22:55:55 +0200 | [diff] [blame] | 3584 | if (pipe_stats[pipe] & PIPE_CRC_DONE_INTERRUPT_STATUS) |
Daniel Vetter | 277de95 | 2013-10-18 16:37:07 +0200 | [diff] [blame] | 3585 | i9xx_pipe_crc_irq_handler(dev, pipe); |
Ville Syrjälä | 2d9d2b0 | 2014-01-17 11:44:31 +0200 | [diff] [blame] | 3586 | |
Daniel Vetter | 1f7247c | 2014-09-30 10:56:48 +0200 | [diff] [blame] | 3587 | if (pipe_stats[pipe] & PIPE_FIFO_UNDERRUN_STATUS) |
| 3588 | intel_cpu_fifo_underrun_irq_handler(dev_priv, |
| 3589 | pipe); |
Daniel Vetter | 4356d58 | 2013-10-16 22:55:55 +0200 | [diff] [blame] | 3590 | } |
Chris Wilson | c2798b1 | 2012-04-22 21:13:57 +0100 | [diff] [blame] | 3591 | |
| 3592 | iir = new_iir; |
| 3593 | } |
| 3594 | |
| 3595 | return IRQ_HANDLED; |
| 3596 | } |
| 3597 | |
| 3598 | static void i8xx_irq_uninstall(struct drm_device * dev) |
| 3599 | { |
Jani Nikula | 2d1013d | 2014-03-31 14:27:17 +0300 | [diff] [blame] | 3600 | struct drm_i915_private *dev_priv = dev->dev_private; |
Chris Wilson | c2798b1 | 2012-04-22 21:13:57 +0100 | [diff] [blame] | 3601 | int pipe; |
| 3602 | |
Damien Lespiau | 055e393 | 2014-08-18 13:49:10 +0100 | [diff] [blame] | 3603 | for_each_pipe(dev_priv, pipe) { |
Chris Wilson | c2798b1 | 2012-04-22 21:13:57 +0100 | [diff] [blame] | 3604 | /* Clear enable bits; then clear status bits */ |
| 3605 | I915_WRITE(PIPESTAT(pipe), 0); |
| 3606 | I915_WRITE(PIPESTAT(pipe), I915_READ(PIPESTAT(pipe))); |
| 3607 | } |
| 3608 | I915_WRITE16(IMR, 0xffff); |
| 3609 | I915_WRITE16(IER, 0x0); |
| 3610 | I915_WRITE16(IIR, I915_READ16(IIR)); |
| 3611 | } |
| 3612 | |
Chris Wilson | a266c7d | 2012-04-24 22:59:44 +0100 | [diff] [blame] | 3613 | static void i915_irq_preinstall(struct drm_device * dev) |
| 3614 | { |
Jani Nikula | 2d1013d | 2014-03-31 14:27:17 +0300 | [diff] [blame] | 3615 | struct drm_i915_private *dev_priv = dev->dev_private; |
Chris Wilson | a266c7d | 2012-04-24 22:59:44 +0100 | [diff] [blame] | 3616 | int pipe; |
| 3617 | |
Chris Wilson | a266c7d | 2012-04-24 22:59:44 +0100 | [diff] [blame] | 3618 | if (I915_HAS_HOTPLUG(dev)) { |
| 3619 | I915_WRITE(PORT_HOTPLUG_EN, 0); |
| 3620 | I915_WRITE(PORT_HOTPLUG_STAT, I915_READ(PORT_HOTPLUG_STAT)); |
| 3621 | } |
| 3622 | |
Chris Wilson | 00d98eb | 2012-04-24 22:59:48 +0100 | [diff] [blame] | 3623 | I915_WRITE16(HWSTAM, 0xeffe); |
Damien Lespiau | 055e393 | 2014-08-18 13:49:10 +0100 | [diff] [blame] | 3624 | for_each_pipe(dev_priv, pipe) |
Chris Wilson | a266c7d | 2012-04-24 22:59:44 +0100 | [diff] [blame] | 3625 | I915_WRITE(PIPESTAT(pipe), 0); |
| 3626 | I915_WRITE(IMR, 0xffffffff); |
| 3627 | I915_WRITE(IER, 0x0); |
| 3628 | POSTING_READ(IER); |
| 3629 | } |
| 3630 | |
| 3631 | static int i915_irq_postinstall(struct drm_device *dev) |
| 3632 | { |
Jani Nikula | 2d1013d | 2014-03-31 14:27:17 +0300 | [diff] [blame] | 3633 | struct drm_i915_private *dev_priv = dev->dev_private; |
Chris Wilson | 38bde18 | 2012-04-24 22:59:50 +0100 | [diff] [blame] | 3634 | u32 enable_mask; |
Chris Wilson | a266c7d | 2012-04-24 22:59:44 +0100 | [diff] [blame] | 3635 | |
Chris Wilson | 38bde18 | 2012-04-24 22:59:50 +0100 | [diff] [blame] | 3636 | I915_WRITE(EMR, ~(I915_ERROR_PAGE_TABLE | I915_ERROR_MEMORY_REFRESH)); |
| 3637 | |
| 3638 | /* Unmask the interrupts that we always want on. */ |
| 3639 | dev_priv->irq_mask = |
| 3640 | ~(I915_ASLE_INTERRUPT | |
| 3641 | I915_DISPLAY_PIPE_A_EVENT_INTERRUPT | |
| 3642 | I915_DISPLAY_PIPE_B_EVENT_INTERRUPT | |
| 3643 | I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT | |
Daniel Vetter | 37ef01a | 2015-04-01 13:43:46 +0200 | [diff] [blame] | 3644 | I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT); |
Chris Wilson | 38bde18 | 2012-04-24 22:59:50 +0100 | [diff] [blame] | 3645 | |
| 3646 | enable_mask = |
| 3647 | I915_ASLE_INTERRUPT | |
| 3648 | I915_DISPLAY_PIPE_A_EVENT_INTERRUPT | |
| 3649 | I915_DISPLAY_PIPE_B_EVENT_INTERRUPT | |
Chris Wilson | 38bde18 | 2012-04-24 22:59:50 +0100 | [diff] [blame] | 3650 | I915_USER_INTERRUPT; |
| 3651 | |
Chris Wilson | a266c7d | 2012-04-24 22:59:44 +0100 | [diff] [blame] | 3652 | if (I915_HAS_HOTPLUG(dev)) { |
Daniel Vetter | 20afbda | 2012-12-11 14:05:07 +0100 | [diff] [blame] | 3653 | I915_WRITE(PORT_HOTPLUG_EN, 0); |
| 3654 | POSTING_READ(PORT_HOTPLUG_EN); |
| 3655 | |
Chris Wilson | a266c7d | 2012-04-24 22:59:44 +0100 | [diff] [blame] | 3656 | /* Enable in IER... */ |
| 3657 | enable_mask |= I915_DISPLAY_PORT_INTERRUPT; |
| 3658 | /* and unmask in IMR */ |
| 3659 | dev_priv->irq_mask &= ~I915_DISPLAY_PORT_INTERRUPT; |
| 3660 | } |
| 3661 | |
Chris Wilson | a266c7d | 2012-04-24 22:59:44 +0100 | [diff] [blame] | 3662 | I915_WRITE(IMR, dev_priv->irq_mask); |
| 3663 | I915_WRITE(IER, enable_mask); |
| 3664 | POSTING_READ(IER); |
| 3665 | |
Jani Nikula | f49e38d | 2013-04-29 13:02:54 +0300 | [diff] [blame] | 3666 | i915_enable_asle_pipestat(dev); |
Daniel Vetter | 20afbda | 2012-12-11 14:05:07 +0100 | [diff] [blame] | 3667 | |
Daniel Vetter | 379ef82 | 2013-10-16 22:55:56 +0200 | [diff] [blame] | 3668 | /* Interrupt setup is already guaranteed to be single-threaded, this is |
| 3669 | * just to make the assert_spin_locked check happy. */ |
Daniel Vetter | d620743 | 2014-09-15 14:55:27 +0200 | [diff] [blame] | 3670 | spin_lock_irq(&dev_priv->irq_lock); |
Imre Deak | 755e901 | 2014-02-10 18:42:47 +0200 | [diff] [blame] | 3671 | i915_enable_pipestat(dev_priv, PIPE_A, PIPE_CRC_DONE_INTERRUPT_STATUS); |
| 3672 | i915_enable_pipestat(dev_priv, PIPE_B, PIPE_CRC_DONE_INTERRUPT_STATUS); |
Daniel Vetter | d620743 | 2014-09-15 14:55:27 +0200 | [diff] [blame] | 3673 | spin_unlock_irq(&dev_priv->irq_lock); |
Daniel Vetter | 379ef82 | 2013-10-16 22:55:56 +0200 | [diff] [blame] | 3674 | |
Daniel Vetter | 20afbda | 2012-12-11 14:05:07 +0100 | [diff] [blame] | 3675 | return 0; |
| 3676 | } |
| 3677 | |
Ville Syrjälä | 90a72f8 | 2013-02-19 23:16:44 +0200 | [diff] [blame] | 3678 | /* |
| 3679 | * Returns true when a page flip has completed. |
| 3680 | */ |
| 3681 | static bool i915_handle_vblank(struct drm_device *dev, |
| 3682 | int plane, int pipe, u32 iir) |
| 3683 | { |
Jani Nikula | 2d1013d | 2014-03-31 14:27:17 +0300 | [diff] [blame] | 3684 | struct drm_i915_private *dev_priv = dev->dev_private; |
Ville Syrjälä | 90a72f8 | 2013-02-19 23:16:44 +0200 | [diff] [blame] | 3685 | u32 flip_pending = DISPLAY_PLANE_FLIP_PENDING(plane); |
| 3686 | |
Ville Syrjälä | 8d7849d | 2014-04-29 13:35:46 +0300 | [diff] [blame] | 3687 | if (!intel_pipe_handle_vblank(dev, pipe)) |
Ville Syrjälä | 90a72f8 | 2013-02-19 23:16:44 +0200 | [diff] [blame] | 3688 | return false; |
| 3689 | |
| 3690 | if ((iir & flip_pending) == 0) |
Chris Wilson | d6bbafa | 2014-09-05 07:13:24 +0100 | [diff] [blame] | 3691 | goto check_page_flip; |
Ville Syrjälä | 90a72f8 | 2013-02-19 23:16:44 +0200 | [diff] [blame] | 3692 | |
Ville Syrjälä | 90a72f8 | 2013-02-19 23:16:44 +0200 | [diff] [blame] | 3693 | /* We detect FlipDone by looking for the change in PendingFlip from '1' |
| 3694 | * to '0' on the following vblank, i.e. IIR has the Pendingflip |
| 3695 | * asserted following the MI_DISPLAY_FLIP, but ISR is deasserted, hence |
| 3696 | * the flip is completed (no longer pending). Since this doesn't raise |
| 3697 | * an interrupt per se, we watch for the change at vblank. |
| 3698 | */ |
| 3699 | if (I915_READ(ISR) & flip_pending) |
Chris Wilson | d6bbafa | 2014-09-05 07:13:24 +0100 | [diff] [blame] | 3700 | goto check_page_flip; |
Ville Syrjälä | 90a72f8 | 2013-02-19 23:16:44 +0200 | [diff] [blame] | 3701 | |
Ville Syrjälä | 7d47559 | 2014-12-17 23:08:03 +0200 | [diff] [blame] | 3702 | intel_prepare_page_flip(dev, plane); |
Ville Syrjälä | 90a72f8 | 2013-02-19 23:16:44 +0200 | [diff] [blame] | 3703 | intel_finish_page_flip(dev, pipe); |
Ville Syrjälä | 90a72f8 | 2013-02-19 23:16:44 +0200 | [diff] [blame] | 3704 | return true; |
Chris Wilson | d6bbafa | 2014-09-05 07:13:24 +0100 | [diff] [blame] | 3705 | |
| 3706 | check_page_flip: |
| 3707 | intel_check_page_flip(dev, pipe); |
| 3708 | return false; |
Ville Syrjälä | 90a72f8 | 2013-02-19 23:16:44 +0200 | [diff] [blame] | 3709 | } |
| 3710 | |
Daniel Vetter | ff1f525 | 2012-10-02 15:10:55 +0200 | [diff] [blame] | 3711 | static irqreturn_t i915_irq_handler(int irq, void *arg) |
Chris Wilson | a266c7d | 2012-04-24 22:59:44 +0100 | [diff] [blame] | 3712 | { |
Daniel Vetter | 45a83f8 | 2014-05-12 19:17:55 +0200 | [diff] [blame] | 3713 | struct drm_device *dev = arg; |
Jani Nikula | 2d1013d | 2014-03-31 14:27:17 +0300 | [diff] [blame] | 3714 | struct drm_i915_private *dev_priv = dev->dev_private; |
Chris Wilson | 8291ee9 | 2012-04-24 22:59:47 +0100 | [diff] [blame] | 3715 | u32 iir, new_iir, pipe_stats[I915_MAX_PIPES]; |
Chris Wilson | 38bde18 | 2012-04-24 22:59:50 +0100 | [diff] [blame] | 3716 | u32 flip_mask = |
| 3717 | I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT | |
| 3718 | I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT; |
Chris Wilson | 38bde18 | 2012-04-24 22:59:50 +0100 | [diff] [blame] | 3719 | int pipe, ret = IRQ_NONE; |
Chris Wilson | a266c7d | 2012-04-24 22:59:44 +0100 | [diff] [blame] | 3720 | |
Imre Deak | 2dd2a88 | 2015-02-24 11:14:30 +0200 | [diff] [blame] | 3721 | if (!intel_irqs_enabled(dev_priv)) |
| 3722 | return IRQ_NONE; |
| 3723 | |
Chris Wilson | a266c7d | 2012-04-24 22:59:44 +0100 | [diff] [blame] | 3724 | iir = I915_READ(IIR); |
Chris Wilson | 38bde18 | 2012-04-24 22:59:50 +0100 | [diff] [blame] | 3725 | do { |
| 3726 | bool irq_received = (iir & ~flip_mask) != 0; |
Chris Wilson | 8291ee9 | 2012-04-24 22:59:47 +0100 | [diff] [blame] | 3727 | bool blc_event = false; |
Chris Wilson | a266c7d | 2012-04-24 22:59:44 +0100 | [diff] [blame] | 3728 | |
| 3729 | /* Can't rely on pipestat interrupt bit in iir as it might |
| 3730 | * have been cleared after the pipestat interrupt was received. |
| 3731 | * It doesn't set the bit in iir again, but it still produces |
| 3732 | * interrupts (for non-MSI). |
| 3733 | */ |
Daniel Vetter | 222c7f5 | 2014-09-15 14:55:28 +0200 | [diff] [blame] | 3734 | spin_lock(&dev_priv->irq_lock); |
Chris Wilson | a266c7d | 2012-04-24 22:59:44 +0100 | [diff] [blame] | 3735 | if (iir & I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT) |
Daniel Vetter | aaecdf6 | 2014-11-04 15:52:22 +0100 | [diff] [blame] | 3736 | DRM_DEBUG("Command parser error, iir 0x%08x\n", iir); |
Chris Wilson | a266c7d | 2012-04-24 22:59:44 +0100 | [diff] [blame] | 3737 | |
Damien Lespiau | 055e393 | 2014-08-18 13:49:10 +0100 | [diff] [blame] | 3738 | for_each_pipe(dev_priv, pipe) { |
Chris Wilson | a266c7d | 2012-04-24 22:59:44 +0100 | [diff] [blame] | 3739 | int reg = PIPESTAT(pipe); |
| 3740 | pipe_stats[pipe] = I915_READ(reg); |
| 3741 | |
Chris Wilson | 38bde18 | 2012-04-24 22:59:50 +0100 | [diff] [blame] | 3742 | /* Clear the PIPE*STAT regs before the IIR */ |
Chris Wilson | a266c7d | 2012-04-24 22:59:44 +0100 | [diff] [blame] | 3743 | if (pipe_stats[pipe] & 0x8000ffff) { |
Chris Wilson | a266c7d | 2012-04-24 22:59:44 +0100 | [diff] [blame] | 3744 | I915_WRITE(reg, pipe_stats[pipe]); |
Chris Wilson | 38bde18 | 2012-04-24 22:59:50 +0100 | [diff] [blame] | 3745 | irq_received = true; |
Chris Wilson | a266c7d | 2012-04-24 22:59:44 +0100 | [diff] [blame] | 3746 | } |
| 3747 | } |
Daniel Vetter | 222c7f5 | 2014-09-15 14:55:28 +0200 | [diff] [blame] | 3748 | spin_unlock(&dev_priv->irq_lock); |
Chris Wilson | a266c7d | 2012-04-24 22:59:44 +0100 | [diff] [blame] | 3749 | |
| 3750 | if (!irq_received) |
| 3751 | break; |
| 3752 | |
Chris Wilson | a266c7d | 2012-04-24 22:59:44 +0100 | [diff] [blame] | 3753 | /* Consume port. Then clear IIR or we'll miss events */ |
Ville Syrjälä | 16c6c56 | 2014-04-01 10:54:36 +0300 | [diff] [blame] | 3754 | if (I915_HAS_HOTPLUG(dev) && |
| 3755 | iir & I915_DISPLAY_PORT_INTERRUPT) |
| 3756 | i9xx_hpd_irq_handler(dev); |
Chris Wilson | a266c7d | 2012-04-24 22:59:44 +0100 | [diff] [blame] | 3757 | |
Chris Wilson | 38bde18 | 2012-04-24 22:59:50 +0100 | [diff] [blame] | 3758 | I915_WRITE(IIR, iir & ~flip_mask); |
Chris Wilson | a266c7d | 2012-04-24 22:59:44 +0100 | [diff] [blame] | 3759 | new_iir = I915_READ(IIR); /* Flush posted writes */ |
| 3760 | |
Chris Wilson | a266c7d | 2012-04-24 22:59:44 +0100 | [diff] [blame] | 3761 | if (iir & I915_USER_INTERRUPT) |
Chris Wilson | 74cdb33 | 2015-04-07 16:21:05 +0100 | [diff] [blame] | 3762 | notify_ring(&dev_priv->ring[RCS]); |
Chris Wilson | a266c7d | 2012-04-24 22:59:44 +0100 | [diff] [blame] | 3763 | |
Damien Lespiau | 055e393 | 2014-08-18 13:49:10 +0100 | [diff] [blame] | 3764 | for_each_pipe(dev_priv, pipe) { |
Chris Wilson | 38bde18 | 2012-04-24 22:59:50 +0100 | [diff] [blame] | 3765 | int plane = pipe; |
Daniel Vetter | 3a77c4c | 2014-01-10 08:50:12 +0100 | [diff] [blame] | 3766 | if (HAS_FBC(dev)) |
Chris Wilson | 38bde18 | 2012-04-24 22:59:50 +0100 | [diff] [blame] | 3767 | plane = !plane; |
Ville Syrjälä | 5e2032d | 2013-02-19 15:16:38 +0200 | [diff] [blame] | 3768 | |
Ville Syrjälä | 90a72f8 | 2013-02-19 23:16:44 +0200 | [diff] [blame] | 3769 | if (pipe_stats[pipe] & PIPE_VBLANK_INTERRUPT_STATUS && |
| 3770 | i915_handle_vblank(dev, plane, pipe, iir)) |
| 3771 | flip_mask &= ~DISPLAY_PLANE_FLIP_PENDING(plane); |
Chris Wilson | a266c7d | 2012-04-24 22:59:44 +0100 | [diff] [blame] | 3772 | |
| 3773 | if (pipe_stats[pipe] & PIPE_LEGACY_BLC_EVENT_STATUS) |
| 3774 | blc_event = true; |
Daniel Vetter | 4356d58 | 2013-10-16 22:55:55 +0200 | [diff] [blame] | 3775 | |
| 3776 | if (pipe_stats[pipe] & PIPE_CRC_DONE_INTERRUPT_STATUS) |
Daniel Vetter | 277de95 | 2013-10-18 16:37:07 +0200 | [diff] [blame] | 3777 | i9xx_pipe_crc_irq_handler(dev, pipe); |
Ville Syrjälä | 2d9d2b0 | 2014-01-17 11:44:31 +0200 | [diff] [blame] | 3778 | |
Daniel Vetter | 1f7247c | 2014-09-30 10:56:48 +0200 | [diff] [blame] | 3779 | if (pipe_stats[pipe] & PIPE_FIFO_UNDERRUN_STATUS) |
| 3780 | intel_cpu_fifo_underrun_irq_handler(dev_priv, |
| 3781 | pipe); |
Chris Wilson | a266c7d | 2012-04-24 22:59:44 +0100 | [diff] [blame] | 3782 | } |
| 3783 | |
Chris Wilson | a266c7d | 2012-04-24 22:59:44 +0100 | [diff] [blame] | 3784 | if (blc_event || (iir & I915_ASLE_INTERRUPT)) |
| 3785 | intel_opregion_asle_intr(dev); |
| 3786 | |
| 3787 | /* With MSI, interrupts are only generated when iir |
| 3788 | * transitions from zero to nonzero. If another bit got |
| 3789 | * set while we were handling the existing iir bits, then |
| 3790 | * we would never get another interrupt. |
| 3791 | * |
| 3792 | * This is fine on non-MSI as well, as if we hit this path |
| 3793 | * we avoid exiting the interrupt handler only to generate |
| 3794 | * another one. |
| 3795 | * |
| 3796 | * Note that for MSI this could cause a stray interrupt report |
| 3797 | * if an interrupt landed in the time between writing IIR and |
| 3798 | * the posting read. This should be rare enough to never |
| 3799 | * trigger the 99% of 100,000 interrupts test for disabling |
| 3800 | * stray interrupts. |
| 3801 | */ |
Chris Wilson | 38bde18 | 2012-04-24 22:59:50 +0100 | [diff] [blame] | 3802 | ret = IRQ_HANDLED; |
Chris Wilson | a266c7d | 2012-04-24 22:59:44 +0100 | [diff] [blame] | 3803 | iir = new_iir; |
Chris Wilson | 38bde18 | 2012-04-24 22:59:50 +0100 | [diff] [blame] | 3804 | } while (iir & ~flip_mask); |
Chris Wilson | a266c7d | 2012-04-24 22:59:44 +0100 | [diff] [blame] | 3805 | |
| 3806 | return ret; |
| 3807 | } |
| 3808 | |
| 3809 | static void i915_irq_uninstall(struct drm_device * dev) |
| 3810 | { |
Jani Nikula | 2d1013d | 2014-03-31 14:27:17 +0300 | [diff] [blame] | 3811 | struct drm_i915_private *dev_priv = dev->dev_private; |
Chris Wilson | a266c7d | 2012-04-24 22:59:44 +0100 | [diff] [blame] | 3812 | int pipe; |
| 3813 | |
Chris Wilson | a266c7d | 2012-04-24 22:59:44 +0100 | [diff] [blame] | 3814 | if (I915_HAS_HOTPLUG(dev)) { |
| 3815 | I915_WRITE(PORT_HOTPLUG_EN, 0); |
| 3816 | I915_WRITE(PORT_HOTPLUG_STAT, I915_READ(PORT_HOTPLUG_STAT)); |
| 3817 | } |
| 3818 | |
Chris Wilson | 00d98eb | 2012-04-24 22:59:48 +0100 | [diff] [blame] | 3819 | I915_WRITE16(HWSTAM, 0xffff); |
Damien Lespiau | 055e393 | 2014-08-18 13:49:10 +0100 | [diff] [blame] | 3820 | for_each_pipe(dev_priv, pipe) { |
Chris Wilson | 55b3975 | 2012-04-24 22:59:49 +0100 | [diff] [blame] | 3821 | /* Clear enable bits; then clear status bits */ |
Chris Wilson | a266c7d | 2012-04-24 22:59:44 +0100 | [diff] [blame] | 3822 | I915_WRITE(PIPESTAT(pipe), 0); |
Chris Wilson | 55b3975 | 2012-04-24 22:59:49 +0100 | [diff] [blame] | 3823 | I915_WRITE(PIPESTAT(pipe), I915_READ(PIPESTAT(pipe))); |
| 3824 | } |
Chris Wilson | a266c7d | 2012-04-24 22:59:44 +0100 | [diff] [blame] | 3825 | I915_WRITE(IMR, 0xffffffff); |
| 3826 | I915_WRITE(IER, 0x0); |
| 3827 | |
Chris Wilson | a266c7d | 2012-04-24 22:59:44 +0100 | [diff] [blame] | 3828 | I915_WRITE(IIR, I915_READ(IIR)); |
| 3829 | } |
| 3830 | |
| 3831 | static void i965_irq_preinstall(struct drm_device * dev) |
| 3832 | { |
Jani Nikula | 2d1013d | 2014-03-31 14:27:17 +0300 | [diff] [blame] | 3833 | struct drm_i915_private *dev_priv = dev->dev_private; |
Chris Wilson | a266c7d | 2012-04-24 22:59:44 +0100 | [diff] [blame] | 3834 | int pipe; |
| 3835 | |
Chris Wilson | adca473 | 2012-05-11 18:01:31 +0100 | [diff] [blame] | 3836 | I915_WRITE(PORT_HOTPLUG_EN, 0); |
| 3837 | I915_WRITE(PORT_HOTPLUG_STAT, I915_READ(PORT_HOTPLUG_STAT)); |
Chris Wilson | a266c7d | 2012-04-24 22:59:44 +0100 | [diff] [blame] | 3838 | |
| 3839 | I915_WRITE(HWSTAM, 0xeffe); |
Damien Lespiau | 055e393 | 2014-08-18 13:49:10 +0100 | [diff] [blame] | 3840 | for_each_pipe(dev_priv, pipe) |
Chris Wilson | a266c7d | 2012-04-24 22:59:44 +0100 | [diff] [blame] | 3841 | I915_WRITE(PIPESTAT(pipe), 0); |
| 3842 | I915_WRITE(IMR, 0xffffffff); |
| 3843 | I915_WRITE(IER, 0x0); |
| 3844 | POSTING_READ(IER); |
| 3845 | } |
| 3846 | |
| 3847 | static int i965_irq_postinstall(struct drm_device *dev) |
| 3848 | { |
Jani Nikula | 2d1013d | 2014-03-31 14:27:17 +0300 | [diff] [blame] | 3849 | struct drm_i915_private *dev_priv = dev->dev_private; |
Chris Wilson | bbba0a9 | 2012-04-24 22:59:51 +0100 | [diff] [blame] | 3850 | u32 enable_mask; |
Chris Wilson | a266c7d | 2012-04-24 22:59:44 +0100 | [diff] [blame] | 3851 | u32 error_mask; |
| 3852 | |
Chris Wilson | a266c7d | 2012-04-24 22:59:44 +0100 | [diff] [blame] | 3853 | /* Unmask the interrupts that we always want on. */ |
Chris Wilson | bbba0a9 | 2012-04-24 22:59:51 +0100 | [diff] [blame] | 3854 | dev_priv->irq_mask = ~(I915_ASLE_INTERRUPT | |
Chris Wilson | adca473 | 2012-05-11 18:01:31 +0100 | [diff] [blame] | 3855 | I915_DISPLAY_PORT_INTERRUPT | |
Chris Wilson | bbba0a9 | 2012-04-24 22:59:51 +0100 | [diff] [blame] | 3856 | I915_DISPLAY_PIPE_A_EVENT_INTERRUPT | |
| 3857 | I915_DISPLAY_PIPE_B_EVENT_INTERRUPT | |
| 3858 | I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT | |
| 3859 | I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT | |
| 3860 | I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT); |
| 3861 | |
| 3862 | enable_mask = ~dev_priv->irq_mask; |
Ville Syrjälä | 21ad833 | 2013-02-19 15:16:39 +0200 | [diff] [blame] | 3863 | enable_mask &= ~(I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT | |
| 3864 | I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT); |
Chris Wilson | bbba0a9 | 2012-04-24 22:59:51 +0100 | [diff] [blame] | 3865 | enable_mask |= I915_USER_INTERRUPT; |
| 3866 | |
| 3867 | if (IS_G4X(dev)) |
| 3868 | enable_mask |= I915_BSD_USER_INTERRUPT; |
Chris Wilson | a266c7d | 2012-04-24 22:59:44 +0100 | [diff] [blame] | 3869 | |
Daniel Vetter | b79480b | 2013-06-27 17:52:10 +0200 | [diff] [blame] | 3870 | /* Interrupt setup is already guaranteed to be single-threaded, this is |
| 3871 | * just to make the assert_spin_locked check happy. */ |
Daniel Vetter | d620743 | 2014-09-15 14:55:27 +0200 | [diff] [blame] | 3872 | spin_lock_irq(&dev_priv->irq_lock); |
Imre Deak | 755e901 | 2014-02-10 18:42:47 +0200 | [diff] [blame] | 3873 | i915_enable_pipestat(dev_priv, PIPE_A, PIPE_GMBUS_INTERRUPT_STATUS); |
| 3874 | i915_enable_pipestat(dev_priv, PIPE_A, PIPE_CRC_DONE_INTERRUPT_STATUS); |
| 3875 | i915_enable_pipestat(dev_priv, PIPE_B, PIPE_CRC_DONE_INTERRUPT_STATUS); |
Daniel Vetter | d620743 | 2014-09-15 14:55:27 +0200 | [diff] [blame] | 3876 | spin_unlock_irq(&dev_priv->irq_lock); |
Chris Wilson | a266c7d | 2012-04-24 22:59:44 +0100 | [diff] [blame] | 3877 | |
Chris Wilson | a266c7d | 2012-04-24 22:59:44 +0100 | [diff] [blame] | 3878 | /* |
| 3879 | * Enable some error detection, note the instruction error mask |
| 3880 | * bit is reserved, so we leave it masked. |
| 3881 | */ |
| 3882 | if (IS_G4X(dev)) { |
| 3883 | error_mask = ~(GM45_ERROR_PAGE_TABLE | |
| 3884 | GM45_ERROR_MEM_PRIV | |
| 3885 | GM45_ERROR_CP_PRIV | |
| 3886 | I915_ERROR_MEMORY_REFRESH); |
| 3887 | } else { |
| 3888 | error_mask = ~(I915_ERROR_PAGE_TABLE | |
| 3889 | I915_ERROR_MEMORY_REFRESH); |
| 3890 | } |
| 3891 | I915_WRITE(EMR, error_mask); |
| 3892 | |
| 3893 | I915_WRITE(IMR, dev_priv->irq_mask); |
| 3894 | I915_WRITE(IER, enable_mask); |
| 3895 | POSTING_READ(IER); |
| 3896 | |
Daniel Vetter | 20afbda | 2012-12-11 14:05:07 +0100 | [diff] [blame] | 3897 | I915_WRITE(PORT_HOTPLUG_EN, 0); |
| 3898 | POSTING_READ(PORT_HOTPLUG_EN); |
| 3899 | |
Jani Nikula | f49e38d | 2013-04-29 13:02:54 +0300 | [diff] [blame] | 3900 | i915_enable_asle_pipestat(dev); |
Daniel Vetter | 20afbda | 2012-12-11 14:05:07 +0100 | [diff] [blame] | 3901 | |
| 3902 | return 0; |
| 3903 | } |
| 3904 | |
Egbert Eich | bac56d5 | 2013-02-25 12:06:51 -0500 | [diff] [blame] | 3905 | static void i915_hpd_irq_setup(struct drm_device *dev) |
Daniel Vetter | 20afbda | 2012-12-11 14:05:07 +0100 | [diff] [blame] | 3906 | { |
Jani Nikula | 2d1013d | 2014-03-31 14:27:17 +0300 | [diff] [blame] | 3907 | struct drm_i915_private *dev_priv = dev->dev_private; |
Egbert Eich | cd569ae | 2013-04-16 13:36:57 +0200 | [diff] [blame] | 3908 | struct intel_encoder *intel_encoder; |
Daniel Vetter | 20afbda | 2012-12-11 14:05:07 +0100 | [diff] [blame] | 3909 | u32 hotplug_en; |
| 3910 | |
Daniel Vetter | b5ea2d5 | 2013-06-27 17:52:15 +0200 | [diff] [blame] | 3911 | assert_spin_locked(&dev_priv->irq_lock); |
| 3912 | |
Ville Syrjälä | 778eb33 | 2015-01-09 14:21:13 +0200 | [diff] [blame] | 3913 | hotplug_en = I915_READ(PORT_HOTPLUG_EN); |
| 3914 | hotplug_en &= ~HOTPLUG_INT_EN_MASK; |
| 3915 | /* Note HDMI and DP share hotplug bits */ |
| 3916 | /* enable bits are the same for all generations */ |
| 3917 | for_each_intel_encoder(dev, intel_encoder) |
Jani Nikula | 5fcece8 | 2015-05-27 15:03:42 +0300 | [diff] [blame] | 3918 | if (dev_priv->hotplug.stats[intel_encoder->hpd_pin].state == HPD_ENABLED) |
Ville Syrjälä | 778eb33 | 2015-01-09 14:21:13 +0200 | [diff] [blame] | 3919 | hotplug_en |= hpd_mask_i915[intel_encoder->hpd_pin]; |
| 3920 | /* Programming the CRT detection parameters tends |
| 3921 | to generate a spurious hotplug event about three |
| 3922 | seconds later. So just do it once. |
| 3923 | */ |
| 3924 | if (IS_G4X(dev)) |
| 3925 | hotplug_en |= CRT_HOTPLUG_ACTIVATION_PERIOD_64; |
| 3926 | hotplug_en &= ~CRT_HOTPLUG_VOLTAGE_COMPARE_MASK; |
| 3927 | hotplug_en |= CRT_HOTPLUG_VOLTAGE_COMPARE_50; |
Chris Wilson | a266c7d | 2012-04-24 22:59:44 +0100 | [diff] [blame] | 3928 | |
Ville Syrjälä | 778eb33 | 2015-01-09 14:21:13 +0200 | [diff] [blame] | 3929 | /* Ignore TV since it's buggy */ |
| 3930 | I915_WRITE(PORT_HOTPLUG_EN, hotplug_en); |
Chris Wilson | a266c7d | 2012-04-24 22:59:44 +0100 | [diff] [blame] | 3931 | } |
| 3932 | |
Daniel Vetter | ff1f525 | 2012-10-02 15:10:55 +0200 | [diff] [blame] | 3933 | static irqreturn_t i965_irq_handler(int irq, void *arg) |
Chris Wilson | a266c7d | 2012-04-24 22:59:44 +0100 | [diff] [blame] | 3934 | { |
Daniel Vetter | 45a83f8 | 2014-05-12 19:17:55 +0200 | [diff] [blame] | 3935 | struct drm_device *dev = arg; |
Jani Nikula | 2d1013d | 2014-03-31 14:27:17 +0300 | [diff] [blame] | 3936 | struct drm_i915_private *dev_priv = dev->dev_private; |
Chris Wilson | a266c7d | 2012-04-24 22:59:44 +0100 | [diff] [blame] | 3937 | u32 iir, new_iir; |
| 3938 | u32 pipe_stats[I915_MAX_PIPES]; |
Chris Wilson | a266c7d | 2012-04-24 22:59:44 +0100 | [diff] [blame] | 3939 | int ret = IRQ_NONE, pipe; |
Ville Syrjälä | 21ad833 | 2013-02-19 15:16:39 +0200 | [diff] [blame] | 3940 | u32 flip_mask = |
| 3941 | I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT | |
| 3942 | I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT; |
Chris Wilson | a266c7d | 2012-04-24 22:59:44 +0100 | [diff] [blame] | 3943 | |
Imre Deak | 2dd2a88 | 2015-02-24 11:14:30 +0200 | [diff] [blame] | 3944 | if (!intel_irqs_enabled(dev_priv)) |
| 3945 | return IRQ_NONE; |
| 3946 | |
Chris Wilson | a266c7d | 2012-04-24 22:59:44 +0100 | [diff] [blame] | 3947 | iir = I915_READ(IIR); |
| 3948 | |
Chris Wilson | a266c7d | 2012-04-24 22:59:44 +0100 | [diff] [blame] | 3949 | for (;;) { |
Ville Syrjälä | 501e01d | 2014-01-17 11:35:15 +0200 | [diff] [blame] | 3950 | bool irq_received = (iir & ~flip_mask) != 0; |
Chris Wilson | 2c8ba29 | 2012-04-24 22:59:46 +0100 | [diff] [blame] | 3951 | bool blc_event = false; |
| 3952 | |
Chris Wilson | a266c7d | 2012-04-24 22:59:44 +0100 | [diff] [blame] | 3953 | /* Can't rely on pipestat interrupt bit in iir as it might |
| 3954 | * have been cleared after the pipestat interrupt was received. |
| 3955 | * It doesn't set the bit in iir again, but it still produces |
| 3956 | * interrupts (for non-MSI). |
| 3957 | */ |
Daniel Vetter | 222c7f5 | 2014-09-15 14:55:28 +0200 | [diff] [blame] | 3958 | spin_lock(&dev_priv->irq_lock); |
Chris Wilson | a266c7d | 2012-04-24 22:59:44 +0100 | [diff] [blame] | 3959 | if (iir & I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT) |
Daniel Vetter | aaecdf6 | 2014-11-04 15:52:22 +0100 | [diff] [blame] | 3960 | DRM_DEBUG("Command parser error, iir 0x%08x\n", iir); |
Chris Wilson | a266c7d | 2012-04-24 22:59:44 +0100 | [diff] [blame] | 3961 | |
Damien Lespiau | 055e393 | 2014-08-18 13:49:10 +0100 | [diff] [blame] | 3962 | for_each_pipe(dev_priv, pipe) { |
Chris Wilson | a266c7d | 2012-04-24 22:59:44 +0100 | [diff] [blame] | 3963 | int reg = PIPESTAT(pipe); |
| 3964 | pipe_stats[pipe] = I915_READ(reg); |
| 3965 | |
| 3966 | /* |
| 3967 | * Clear the PIPE*STAT regs before the IIR |
| 3968 | */ |
| 3969 | if (pipe_stats[pipe] & 0x8000ffff) { |
Chris Wilson | a266c7d | 2012-04-24 22:59:44 +0100 | [diff] [blame] | 3970 | I915_WRITE(reg, pipe_stats[pipe]); |
Ville Syrjälä | 501e01d | 2014-01-17 11:35:15 +0200 | [diff] [blame] | 3971 | irq_received = true; |
Chris Wilson | a266c7d | 2012-04-24 22:59:44 +0100 | [diff] [blame] | 3972 | } |
| 3973 | } |
Daniel Vetter | 222c7f5 | 2014-09-15 14:55:28 +0200 | [diff] [blame] | 3974 | spin_unlock(&dev_priv->irq_lock); |
Chris Wilson | a266c7d | 2012-04-24 22:59:44 +0100 | [diff] [blame] | 3975 | |
| 3976 | if (!irq_received) |
| 3977 | break; |
| 3978 | |
| 3979 | ret = IRQ_HANDLED; |
| 3980 | |
| 3981 | /* Consume port. Then clear IIR or we'll miss events */ |
Ville Syrjälä | 16c6c56 | 2014-04-01 10:54:36 +0300 | [diff] [blame] | 3982 | if (iir & I915_DISPLAY_PORT_INTERRUPT) |
| 3983 | i9xx_hpd_irq_handler(dev); |
Chris Wilson | a266c7d | 2012-04-24 22:59:44 +0100 | [diff] [blame] | 3984 | |
Ville Syrjälä | 21ad833 | 2013-02-19 15:16:39 +0200 | [diff] [blame] | 3985 | I915_WRITE(IIR, iir & ~flip_mask); |
Chris Wilson | a266c7d | 2012-04-24 22:59:44 +0100 | [diff] [blame] | 3986 | new_iir = I915_READ(IIR); /* Flush posted writes */ |
| 3987 | |
Chris Wilson | a266c7d | 2012-04-24 22:59:44 +0100 | [diff] [blame] | 3988 | if (iir & I915_USER_INTERRUPT) |
Chris Wilson | 74cdb33 | 2015-04-07 16:21:05 +0100 | [diff] [blame] | 3989 | notify_ring(&dev_priv->ring[RCS]); |
Chris Wilson | a266c7d | 2012-04-24 22:59:44 +0100 | [diff] [blame] | 3990 | if (iir & I915_BSD_USER_INTERRUPT) |
Chris Wilson | 74cdb33 | 2015-04-07 16:21:05 +0100 | [diff] [blame] | 3991 | notify_ring(&dev_priv->ring[VCS]); |
Chris Wilson | a266c7d | 2012-04-24 22:59:44 +0100 | [diff] [blame] | 3992 | |
Damien Lespiau | 055e393 | 2014-08-18 13:49:10 +0100 | [diff] [blame] | 3993 | for_each_pipe(dev_priv, pipe) { |
Chris Wilson | 2c8ba29 | 2012-04-24 22:59:46 +0100 | [diff] [blame] | 3994 | if (pipe_stats[pipe] & PIPE_START_VBLANK_INTERRUPT_STATUS && |
Ville Syrjälä | 90a72f8 | 2013-02-19 23:16:44 +0200 | [diff] [blame] | 3995 | i915_handle_vblank(dev, pipe, pipe, iir)) |
| 3996 | flip_mask &= ~DISPLAY_PLANE_FLIP_PENDING(pipe); |
Chris Wilson | a266c7d | 2012-04-24 22:59:44 +0100 | [diff] [blame] | 3997 | |
| 3998 | if (pipe_stats[pipe] & PIPE_LEGACY_BLC_EVENT_STATUS) |
| 3999 | blc_event = true; |
Daniel Vetter | 4356d58 | 2013-10-16 22:55:55 +0200 | [diff] [blame] | 4000 | |
| 4001 | if (pipe_stats[pipe] & PIPE_CRC_DONE_INTERRUPT_STATUS) |
Daniel Vetter | 277de95 | 2013-10-18 16:37:07 +0200 | [diff] [blame] | 4002 | i9xx_pipe_crc_irq_handler(dev, pipe); |
Chris Wilson | a266c7d | 2012-04-24 22:59:44 +0100 | [diff] [blame] | 4003 | |
Daniel Vetter | 1f7247c | 2014-09-30 10:56:48 +0200 | [diff] [blame] | 4004 | if (pipe_stats[pipe] & PIPE_FIFO_UNDERRUN_STATUS) |
| 4005 | intel_cpu_fifo_underrun_irq_handler(dev_priv, pipe); |
Ville Syrjälä | 2d9d2b0 | 2014-01-17 11:44:31 +0200 | [diff] [blame] | 4006 | } |
Chris Wilson | a266c7d | 2012-04-24 22:59:44 +0100 | [diff] [blame] | 4007 | |
| 4008 | if (blc_event || (iir & I915_ASLE_INTERRUPT)) |
| 4009 | intel_opregion_asle_intr(dev); |
| 4010 | |
Daniel Vetter | 515ac2b | 2012-12-01 13:53:44 +0100 | [diff] [blame] | 4011 | if (pipe_stats[0] & PIPE_GMBUS_INTERRUPT_STATUS) |
| 4012 | gmbus_irq_handler(dev); |
| 4013 | |
Chris Wilson | a266c7d | 2012-04-24 22:59:44 +0100 | [diff] [blame] | 4014 | /* With MSI, interrupts are only generated when iir |
| 4015 | * transitions from zero to nonzero. If another bit got |
| 4016 | * set while we were handling the existing iir bits, then |
| 4017 | * we would never get another interrupt. |
| 4018 | * |
| 4019 | * This is fine on non-MSI as well, as if we hit this path |
| 4020 | * we avoid exiting the interrupt handler only to generate |
| 4021 | * another one. |
| 4022 | * |
| 4023 | * Note that for MSI this could cause a stray interrupt report |
| 4024 | * if an interrupt landed in the time between writing IIR and |
| 4025 | * the posting read. This should be rare enough to never |
| 4026 | * trigger the 99% of 100,000 interrupts test for disabling |
| 4027 | * stray interrupts. |
| 4028 | */ |
| 4029 | iir = new_iir; |
| 4030 | } |
| 4031 | |
| 4032 | return ret; |
| 4033 | } |
| 4034 | |
| 4035 | static void i965_irq_uninstall(struct drm_device * dev) |
| 4036 | { |
Jani Nikula | 2d1013d | 2014-03-31 14:27:17 +0300 | [diff] [blame] | 4037 | struct drm_i915_private *dev_priv = dev->dev_private; |
Chris Wilson | a266c7d | 2012-04-24 22:59:44 +0100 | [diff] [blame] | 4038 | int pipe; |
| 4039 | |
| 4040 | if (!dev_priv) |
| 4041 | return; |
| 4042 | |
Chris Wilson | adca473 | 2012-05-11 18:01:31 +0100 | [diff] [blame] | 4043 | I915_WRITE(PORT_HOTPLUG_EN, 0); |
| 4044 | I915_WRITE(PORT_HOTPLUG_STAT, I915_READ(PORT_HOTPLUG_STAT)); |
Chris Wilson | a266c7d | 2012-04-24 22:59:44 +0100 | [diff] [blame] | 4045 | |
| 4046 | I915_WRITE(HWSTAM, 0xffffffff); |
Damien Lespiau | 055e393 | 2014-08-18 13:49:10 +0100 | [diff] [blame] | 4047 | for_each_pipe(dev_priv, pipe) |
Chris Wilson | a266c7d | 2012-04-24 22:59:44 +0100 | [diff] [blame] | 4048 | I915_WRITE(PIPESTAT(pipe), 0); |
| 4049 | I915_WRITE(IMR, 0xffffffff); |
| 4050 | I915_WRITE(IER, 0x0); |
| 4051 | |
Damien Lespiau | 055e393 | 2014-08-18 13:49:10 +0100 | [diff] [blame] | 4052 | for_each_pipe(dev_priv, pipe) |
Chris Wilson | a266c7d | 2012-04-24 22:59:44 +0100 | [diff] [blame] | 4053 | I915_WRITE(PIPESTAT(pipe), |
| 4054 | I915_READ(PIPESTAT(pipe)) & 0x8000ffff); |
| 4055 | I915_WRITE(IIR, I915_READ(IIR)); |
| 4056 | } |
| 4057 | |
Daniel Vetter | fca52a5 | 2014-09-30 10:56:45 +0200 | [diff] [blame] | 4058 | /** |
| 4059 | * intel_irq_init - initializes irq support |
| 4060 | * @dev_priv: i915 device instance |
| 4061 | * |
| 4062 | * This function initializes all the irq support including work items, timers |
| 4063 | * and all the vtables. It does not setup the interrupt itself though. |
| 4064 | */ |
Daniel Vetter | b963291 | 2014-09-30 10:56:44 +0200 | [diff] [blame] | 4065 | void intel_irq_init(struct drm_i915_private *dev_priv) |
Jesse Barnes | f71d4af | 2011-06-28 13:00:41 -0700 | [diff] [blame] | 4066 | { |
Daniel Vetter | b963291 | 2014-09-30 10:56:44 +0200 | [diff] [blame] | 4067 | struct drm_device *dev = dev_priv->dev; |
Chris Wilson | 8b2e326 | 2012-04-24 22:59:41 +0100 | [diff] [blame] | 4068 | |
Jani Nikula | 77913b3 | 2015-06-18 13:06:16 +0300 | [diff] [blame] | 4069 | intel_hpd_init_work(dev_priv); |
| 4070 | |
Daniel Vetter | c6a828d | 2012-08-08 23:35:35 +0200 | [diff] [blame] | 4071 | INIT_WORK(&dev_priv->rps.work, gen6_pm_rps_work); |
Daniel Vetter | a4da4fa | 2012-11-02 19:55:07 +0100 | [diff] [blame] | 4072 | INIT_WORK(&dev_priv->l3_parity.error_work, ivybridge_parity_work); |
Chris Wilson | 8b2e326 | 2012-04-24 22:59:41 +0100 | [diff] [blame] | 4073 | |
Deepak S | a6706b4 | 2014-03-15 20:23:22 +0530 | [diff] [blame] | 4074 | /* Let's track the enabled rps events */ |
Daniel Vetter | b963291 | 2014-09-30 10:56:44 +0200 | [diff] [blame] | 4075 | if (IS_VALLEYVIEW(dev_priv) && !IS_CHERRYVIEW(dev_priv)) |
Ville Syrjälä | 6c65a58 | 2014-08-29 14:14:07 +0300 | [diff] [blame] | 4076 | /* WaGsvRC0ResidencyMethod:vlv */ |
Chris Wilson | 6f4b12f8 | 2015-03-18 09:48:23 +0000 | [diff] [blame] | 4077 | dev_priv->pm_rps_events = GEN6_PM_RP_DOWN_EI_EXPIRED | GEN6_PM_RP_UP_EI_EXPIRED; |
Deepak S | 31685c2 | 2014-07-03 17:33:01 -0400 | [diff] [blame] | 4078 | else |
| 4079 | dev_priv->pm_rps_events = GEN6_PM_RPS_EVENTS; |
Deepak S | a6706b4 | 2014-03-15 20:23:22 +0530 | [diff] [blame] | 4080 | |
Chris Wilson | 737b150 | 2015-01-26 18:03:03 +0200 | [diff] [blame] | 4081 | INIT_DELAYED_WORK(&dev_priv->gpu_error.hangcheck_work, |
| 4082 | i915_hangcheck_elapsed); |
Daniel Vetter | 61bac78 | 2012-12-01 21:03:21 +0100 | [diff] [blame] | 4083 | |
Tomas Janousek | 97a19a2 | 2012-12-08 13:48:13 +0100 | [diff] [blame] | 4084 | pm_qos_add_request(&dev_priv->pm_qos, PM_QOS_CPU_DMA_LATENCY, PM_QOS_DEFAULT_VALUE); |
Daniel Vetter | 9ee32fea | 2012-12-01 13:53:48 +0100 | [diff] [blame] | 4085 | |
Daniel Vetter | b963291 | 2014-09-30 10:56:44 +0200 | [diff] [blame] | 4086 | if (IS_GEN2(dev_priv)) { |
Ville Syrjälä | 4cdb83e | 2013-10-11 21:52:44 +0300 | [diff] [blame] | 4087 | dev->max_vblank_count = 0; |
| 4088 | dev->driver->get_vblank_counter = i8xx_get_vblank_counter; |
Daniel Vetter | b963291 | 2014-09-30 10:56:44 +0200 | [diff] [blame] | 4089 | } else if (IS_G4X(dev_priv) || INTEL_INFO(dev_priv)->gen >= 5) { |
Jesse Barnes | f71d4af | 2011-06-28 13:00:41 -0700 | [diff] [blame] | 4090 | dev->max_vblank_count = 0xffffffff; /* full 32 bit counter */ |
| 4091 | dev->driver->get_vblank_counter = gm45_get_vblank_counter; |
Ville Syrjälä | 391f75e | 2013-09-25 19:55:26 +0300 | [diff] [blame] | 4092 | } else { |
| 4093 | dev->driver->get_vblank_counter = i915_get_vblank_counter; |
| 4094 | dev->max_vblank_count = 0xffffff; /* only 24 bits of frame count */ |
Jesse Barnes | f71d4af | 2011-06-28 13:00:41 -0700 | [diff] [blame] | 4095 | } |
| 4096 | |
Ville Syrjälä | 21da270 | 2014-08-06 14:49:55 +0300 | [diff] [blame] | 4097 | /* |
| 4098 | * Opt out of the vblank disable timer on everything except gen2. |
| 4099 | * Gen2 doesn't have a hardware frame counter and so depends on |
| 4100 | * vblank interrupts to produce sane vblank seuquence numbers. |
| 4101 | */ |
Daniel Vetter | b963291 | 2014-09-30 10:56:44 +0200 | [diff] [blame] | 4102 | if (!IS_GEN2(dev_priv)) |
Ville Syrjälä | 21da270 | 2014-08-06 14:49:55 +0300 | [diff] [blame] | 4103 | dev->vblank_disable_immediate = true; |
| 4104 | |
Daniel Vetter | f3a5c3f | 2015-02-13 21:03:44 +0100 | [diff] [blame] | 4105 | dev->driver->get_vblank_timestamp = i915_get_vblank_timestamp; |
| 4106 | dev->driver->get_scanout_position = i915_get_crtc_scanoutpos; |
Jesse Barnes | f71d4af | 2011-06-28 13:00:41 -0700 | [diff] [blame] | 4107 | |
Daniel Vetter | b963291 | 2014-09-30 10:56:44 +0200 | [diff] [blame] | 4108 | if (IS_CHERRYVIEW(dev_priv)) { |
Ville Syrjälä | 43f328d | 2014-04-09 20:40:52 +0300 | [diff] [blame] | 4109 | dev->driver->irq_handler = cherryview_irq_handler; |
| 4110 | dev->driver->irq_preinstall = cherryview_irq_preinstall; |
| 4111 | dev->driver->irq_postinstall = cherryview_irq_postinstall; |
| 4112 | dev->driver->irq_uninstall = cherryview_irq_uninstall; |
| 4113 | dev->driver->enable_vblank = valleyview_enable_vblank; |
| 4114 | dev->driver->disable_vblank = valleyview_disable_vblank; |
| 4115 | dev_priv->display.hpd_irq_setup = i915_hpd_irq_setup; |
Daniel Vetter | b963291 | 2014-09-30 10:56:44 +0200 | [diff] [blame] | 4116 | } else if (IS_VALLEYVIEW(dev_priv)) { |
Jesse Barnes | 7e231dbe | 2012-03-28 13:39:38 -0700 | [diff] [blame] | 4117 | dev->driver->irq_handler = valleyview_irq_handler; |
| 4118 | dev->driver->irq_preinstall = valleyview_irq_preinstall; |
| 4119 | dev->driver->irq_postinstall = valleyview_irq_postinstall; |
| 4120 | dev->driver->irq_uninstall = valleyview_irq_uninstall; |
| 4121 | dev->driver->enable_vblank = valleyview_enable_vblank; |
| 4122 | dev->driver->disable_vblank = valleyview_disable_vblank; |
Egbert Eich | fa00abe | 2013-02-25 12:06:48 -0500 | [diff] [blame] | 4123 | dev_priv->display.hpd_irq_setup = i915_hpd_irq_setup; |
Daniel Vetter | b963291 | 2014-09-30 10:56:44 +0200 | [diff] [blame] | 4124 | } else if (INTEL_INFO(dev_priv)->gen >= 8) { |
Ben Widawsky | abd58f0 | 2013-11-02 21:07:09 -0700 | [diff] [blame] | 4125 | dev->driver->irq_handler = gen8_irq_handler; |
Daniel Vetter | 723761b | 2014-05-22 17:56:34 +0200 | [diff] [blame] | 4126 | dev->driver->irq_preinstall = gen8_irq_reset; |
Ben Widawsky | abd58f0 | 2013-11-02 21:07:09 -0700 | [diff] [blame] | 4127 | dev->driver->irq_postinstall = gen8_irq_postinstall; |
| 4128 | dev->driver->irq_uninstall = gen8_irq_uninstall; |
| 4129 | dev->driver->enable_vblank = gen8_enable_vblank; |
| 4130 | dev->driver->disable_vblank = gen8_disable_vblank; |
Shashank Sharma | e0a20ad | 2015-03-27 14:54:14 +0200 | [diff] [blame] | 4131 | if (HAS_PCH_SPLIT(dev)) |
| 4132 | dev_priv->display.hpd_irq_setup = ibx_hpd_irq_setup; |
| 4133 | else |
| 4134 | dev_priv->display.hpd_irq_setup = bxt_hpd_irq_setup; |
Jesse Barnes | f71d4af | 2011-06-28 13:00:41 -0700 | [diff] [blame] | 4135 | } else if (HAS_PCH_SPLIT(dev)) { |
| 4136 | dev->driver->irq_handler = ironlake_irq_handler; |
Daniel Vetter | 723761b | 2014-05-22 17:56:34 +0200 | [diff] [blame] | 4137 | dev->driver->irq_preinstall = ironlake_irq_reset; |
Jesse Barnes | f71d4af | 2011-06-28 13:00:41 -0700 | [diff] [blame] | 4138 | dev->driver->irq_postinstall = ironlake_irq_postinstall; |
| 4139 | dev->driver->irq_uninstall = ironlake_irq_uninstall; |
| 4140 | dev->driver->enable_vblank = ironlake_enable_vblank; |
| 4141 | dev->driver->disable_vblank = ironlake_disable_vblank; |
Daniel Vetter | 82a28bc | 2013-03-27 15:55:01 +0100 | [diff] [blame] | 4142 | dev_priv->display.hpd_irq_setup = ibx_hpd_irq_setup; |
Jesse Barnes | f71d4af | 2011-06-28 13:00:41 -0700 | [diff] [blame] | 4143 | } else { |
Daniel Vetter | b963291 | 2014-09-30 10:56:44 +0200 | [diff] [blame] | 4144 | if (INTEL_INFO(dev_priv)->gen == 2) { |
Chris Wilson | c2798b1 | 2012-04-22 21:13:57 +0100 | [diff] [blame] | 4145 | dev->driver->irq_preinstall = i8xx_irq_preinstall; |
| 4146 | dev->driver->irq_postinstall = i8xx_irq_postinstall; |
| 4147 | dev->driver->irq_handler = i8xx_irq_handler; |
| 4148 | dev->driver->irq_uninstall = i8xx_irq_uninstall; |
Daniel Vetter | b963291 | 2014-09-30 10:56:44 +0200 | [diff] [blame] | 4149 | } else if (INTEL_INFO(dev_priv)->gen == 3) { |
Chris Wilson | a266c7d | 2012-04-24 22:59:44 +0100 | [diff] [blame] | 4150 | dev->driver->irq_preinstall = i915_irq_preinstall; |
| 4151 | dev->driver->irq_postinstall = i915_irq_postinstall; |
| 4152 | dev->driver->irq_uninstall = i915_irq_uninstall; |
| 4153 | dev->driver->irq_handler = i915_irq_handler; |
Chris Wilson | c2798b1 | 2012-04-22 21:13:57 +0100 | [diff] [blame] | 4154 | } else { |
Chris Wilson | a266c7d | 2012-04-24 22:59:44 +0100 | [diff] [blame] | 4155 | dev->driver->irq_preinstall = i965_irq_preinstall; |
| 4156 | dev->driver->irq_postinstall = i965_irq_postinstall; |
| 4157 | dev->driver->irq_uninstall = i965_irq_uninstall; |
| 4158 | dev->driver->irq_handler = i965_irq_handler; |
Chris Wilson | c2798b1 | 2012-04-22 21:13:57 +0100 | [diff] [blame] | 4159 | } |
Ville Syrjälä | 778eb33 | 2015-01-09 14:21:13 +0200 | [diff] [blame] | 4160 | if (I915_HAS_HOTPLUG(dev_priv)) |
| 4161 | dev_priv->display.hpd_irq_setup = i915_hpd_irq_setup; |
Jesse Barnes | f71d4af | 2011-06-28 13:00:41 -0700 | [diff] [blame] | 4162 | dev->driver->enable_vblank = i915_enable_vblank; |
| 4163 | dev->driver->disable_vblank = i915_disable_vblank; |
| 4164 | } |
| 4165 | } |
Daniel Vetter | 20afbda | 2012-12-11 14:05:07 +0100 | [diff] [blame] | 4166 | |
Daniel Vetter | fca52a5 | 2014-09-30 10:56:45 +0200 | [diff] [blame] | 4167 | /** |
Daniel Vetter | fca52a5 | 2014-09-30 10:56:45 +0200 | [diff] [blame] | 4168 | * intel_irq_install - enables the hardware interrupt |
| 4169 | * @dev_priv: i915 device instance |
| 4170 | * |
| 4171 | * This function enables the hardware interrupt handling, but leaves the hotplug |
| 4172 | * handling still disabled. It is called after intel_irq_init(). |
| 4173 | * |
| 4174 | * In the driver load and resume code we need working interrupts in a few places |
| 4175 | * but don't want to deal with the hassle of concurrent probe and hotplug |
| 4176 | * workers. Hence the split into this two-stage approach. |
| 4177 | */ |
Daniel Vetter | 2aeb7d3 | 2014-09-30 10:56:43 +0200 | [diff] [blame] | 4178 | int intel_irq_install(struct drm_i915_private *dev_priv) |
| 4179 | { |
| 4180 | /* |
| 4181 | * We enable some interrupt sources in our postinstall hooks, so mark |
| 4182 | * interrupts as enabled _before_ actually enabling them to avoid |
| 4183 | * special cases in our ordering checks. |
| 4184 | */ |
| 4185 | dev_priv->pm.irqs_enabled = true; |
| 4186 | |
| 4187 | return drm_irq_install(dev_priv->dev, dev_priv->dev->pdev->irq); |
| 4188 | } |
| 4189 | |
Daniel Vetter | fca52a5 | 2014-09-30 10:56:45 +0200 | [diff] [blame] | 4190 | /** |
| 4191 | * intel_irq_uninstall - finilizes all irq handling |
| 4192 | * @dev_priv: i915 device instance |
| 4193 | * |
| 4194 | * This stops interrupt and hotplug handling and unregisters and frees all |
| 4195 | * resources acquired in the init functions. |
| 4196 | */ |
Daniel Vetter | 2aeb7d3 | 2014-09-30 10:56:43 +0200 | [diff] [blame] | 4197 | void intel_irq_uninstall(struct drm_i915_private *dev_priv) |
| 4198 | { |
| 4199 | drm_irq_uninstall(dev_priv->dev); |
| 4200 | intel_hpd_cancel_work(dev_priv); |
| 4201 | dev_priv->pm.irqs_enabled = false; |
| 4202 | } |
| 4203 | |
Daniel Vetter | fca52a5 | 2014-09-30 10:56:45 +0200 | [diff] [blame] | 4204 | /** |
| 4205 | * intel_runtime_pm_disable_interrupts - runtime interrupt disabling |
| 4206 | * @dev_priv: i915 device instance |
| 4207 | * |
| 4208 | * This function is used to disable interrupts at runtime, both in the runtime |
| 4209 | * pm and the system suspend/resume code. |
| 4210 | */ |
Daniel Vetter | b963291 | 2014-09-30 10:56:44 +0200 | [diff] [blame] | 4211 | void intel_runtime_pm_disable_interrupts(struct drm_i915_private *dev_priv) |
Paulo Zanoni | c67a470 | 2013-08-19 13:18:09 -0300 | [diff] [blame] | 4212 | { |
Daniel Vetter | b963291 | 2014-09-30 10:56:44 +0200 | [diff] [blame] | 4213 | dev_priv->dev->driver->irq_uninstall(dev_priv->dev); |
Daniel Vetter | 2aeb7d3 | 2014-09-30 10:56:43 +0200 | [diff] [blame] | 4214 | dev_priv->pm.irqs_enabled = false; |
Imre Deak | 2dd2a88 | 2015-02-24 11:14:30 +0200 | [diff] [blame] | 4215 | synchronize_irq(dev_priv->dev->irq); |
Paulo Zanoni | c67a470 | 2013-08-19 13:18:09 -0300 | [diff] [blame] | 4216 | } |
| 4217 | |
Daniel Vetter | fca52a5 | 2014-09-30 10:56:45 +0200 | [diff] [blame] | 4218 | /** |
| 4219 | * intel_runtime_pm_enable_interrupts - runtime interrupt enabling |
| 4220 | * @dev_priv: i915 device instance |
| 4221 | * |
| 4222 | * This function is used to enable interrupts at runtime, both in the runtime |
| 4223 | * pm and the system suspend/resume code. |
| 4224 | */ |
Daniel Vetter | b963291 | 2014-09-30 10:56:44 +0200 | [diff] [blame] | 4225 | void intel_runtime_pm_enable_interrupts(struct drm_i915_private *dev_priv) |
Paulo Zanoni | c67a470 | 2013-08-19 13:18:09 -0300 | [diff] [blame] | 4226 | { |
Daniel Vetter | 2aeb7d3 | 2014-09-30 10:56:43 +0200 | [diff] [blame] | 4227 | dev_priv->pm.irqs_enabled = true; |
Daniel Vetter | b963291 | 2014-09-30 10:56:44 +0200 | [diff] [blame] | 4228 | dev_priv->dev->driver->irq_preinstall(dev_priv->dev); |
| 4229 | dev_priv->dev->driver->irq_postinstall(dev_priv->dev); |
Paulo Zanoni | c67a470 | 2013-08-19 13:18:09 -0300 | [diff] [blame] | 4230 | } |