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