xref: /openbmc/linux/drivers/gpu/drm/i915/i915_irq.c (revision 3685092b717882bb9b6801bf3e4b02a106e3b129)
1c0e09200SDave Airlie /* i915_irq.c -- IRQ support for the I915 -*- linux-c -*-
2c0e09200SDave Airlie  */
3c0e09200SDave Airlie /*
4c0e09200SDave Airlie  * Copyright 2003 Tungsten Graphics, Inc., Cedar Park, Texas.
5c0e09200SDave Airlie  * All Rights Reserved.
6c0e09200SDave Airlie  *
7c0e09200SDave Airlie  * Permission is hereby granted, free of charge, to any person obtaining a
8c0e09200SDave Airlie  * copy of this software and associated documentation files (the
9c0e09200SDave Airlie  * "Software"), to deal in the Software without restriction, including
10c0e09200SDave Airlie  * without limitation the rights to use, copy, modify, merge, publish,
11c0e09200SDave Airlie  * distribute, sub license, and/or sell copies of the Software, and to
12c0e09200SDave Airlie  * permit persons to whom the Software is furnished to do so, subject to
13c0e09200SDave Airlie  * the following conditions:
14c0e09200SDave Airlie  *
15c0e09200SDave Airlie  * The above copyright notice and this permission notice (including the
16c0e09200SDave Airlie  * next paragraph) shall be included in all copies or substantial portions
17c0e09200SDave Airlie  * of the Software.
18c0e09200SDave Airlie  *
19c0e09200SDave Airlie  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
20c0e09200SDave Airlie  * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
21c0e09200SDave Airlie  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
22c0e09200SDave Airlie  * IN NO EVENT SHALL TUNGSTEN GRAPHICS AND/OR ITS SUPPLIERS BE LIABLE FOR
23c0e09200SDave Airlie  * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
24c0e09200SDave Airlie  * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
25c0e09200SDave Airlie  * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
26c0e09200SDave Airlie  *
27c0e09200SDave Airlie  */
28c0e09200SDave Airlie 
2963eeaf38SJesse Barnes #include <linux/sysrq.h>
305a0e3ad6STejun Heo #include <linux/slab.h>
31c0e09200SDave Airlie #include "drmP.h"
32c0e09200SDave Airlie #include "drm.h"
33c0e09200SDave Airlie #include "i915_drm.h"
34c0e09200SDave Airlie #include "i915_drv.h"
351c5d22f7SChris Wilson #include "i915_trace.h"
3679e53945SJesse Barnes #include "intel_drv.h"
37c0e09200SDave Airlie 
38c0e09200SDave Airlie #define MAX_NOPID ((u32)~0)
39c0e09200SDave Airlie 
407c463586SKeith Packard /**
417c463586SKeith Packard  * Interrupts that are always left unmasked.
427c463586SKeith Packard  *
437c463586SKeith Packard  * Since pipe events are edge-triggered from the PIPESTAT register to IIR,
447c463586SKeith Packard  * we leave them always unmasked in IMR and then control enabling them through
457c463586SKeith Packard  * PIPESTAT alone.
467c463586SKeith Packard  */
476b95a207SKristian Høgsberg #define I915_INTERRUPT_ENABLE_FIX			\
486b95a207SKristian Høgsberg 	(I915_ASLE_INTERRUPT |				\
490a3e67a4SJesse Barnes 	 I915_DISPLAY_PIPE_A_EVENT_INTERRUPT |		\
5063eeaf38SJesse Barnes 	 I915_DISPLAY_PIPE_B_EVENT_INTERRUPT |		\
516b95a207SKristian Høgsberg 	 I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT |	\
526b95a207SKristian Høgsberg 	 I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT |	\
5363eeaf38SJesse Barnes 	 I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT)
54ed4cb414SEric Anholt 
557c463586SKeith Packard /** Interrupts that we mask and unmask at runtime. */
56d1b851fcSZou Nan hai #define I915_INTERRUPT_ENABLE_VAR (I915_USER_INTERRUPT | I915_BSD_USER_INTERRUPT)
577c463586SKeith Packard 
5879e53945SJesse Barnes #define I915_PIPE_VBLANK_STATUS	(PIPE_START_VBLANK_INTERRUPT_STATUS |\
5979e53945SJesse Barnes 				 PIPE_VBLANK_INTERRUPT_STATUS)
6079e53945SJesse Barnes 
6179e53945SJesse Barnes #define I915_PIPE_VBLANK_ENABLE	(PIPE_START_VBLANK_INTERRUPT_ENABLE |\
6279e53945SJesse Barnes 				 PIPE_VBLANK_INTERRUPT_ENABLE)
6379e53945SJesse Barnes 
6479e53945SJesse Barnes #define DRM_I915_VBLANK_PIPE_ALL	(DRM_I915_VBLANK_PIPE_A | \
6579e53945SJesse Barnes 					 DRM_I915_VBLANK_PIPE_B)
6679e53945SJesse Barnes 
678ee1c3dbSMatthew Garrett void
68f2b115e6SAdam Jackson ironlake_enable_graphics_irq(drm_i915_private_t *dev_priv, u32 mask)
69036a4a7dSZhenyu Wang {
70036a4a7dSZhenyu Wang 	if ((dev_priv->gt_irq_mask_reg & mask) != 0) {
71036a4a7dSZhenyu Wang 		dev_priv->gt_irq_mask_reg &= ~mask;
72036a4a7dSZhenyu Wang 		I915_WRITE(GTIMR, dev_priv->gt_irq_mask_reg);
733143a2bfSChris Wilson 		POSTING_READ(GTIMR);
74036a4a7dSZhenyu Wang 	}
75036a4a7dSZhenyu Wang }
76036a4a7dSZhenyu Wang 
7762fdfeafSEric Anholt void
78f2b115e6SAdam Jackson ironlake_disable_graphics_irq(drm_i915_private_t *dev_priv, u32 mask)
79036a4a7dSZhenyu Wang {
80036a4a7dSZhenyu Wang 	if ((dev_priv->gt_irq_mask_reg & mask) != mask) {
81036a4a7dSZhenyu Wang 		dev_priv->gt_irq_mask_reg |= mask;
82036a4a7dSZhenyu Wang 		I915_WRITE(GTIMR, dev_priv->gt_irq_mask_reg);
833143a2bfSChris Wilson 		POSTING_READ(GTIMR);
84036a4a7dSZhenyu Wang 	}
85036a4a7dSZhenyu Wang }
86036a4a7dSZhenyu Wang 
87036a4a7dSZhenyu Wang /* For display hotplug interrupt */
88995b6762SChris Wilson static void
89f2b115e6SAdam Jackson ironlake_enable_display_irq(drm_i915_private_t *dev_priv, u32 mask)
90036a4a7dSZhenyu Wang {
91036a4a7dSZhenyu Wang 	if ((dev_priv->irq_mask_reg & mask) != 0) {
92036a4a7dSZhenyu Wang 		dev_priv->irq_mask_reg &= ~mask;
93036a4a7dSZhenyu Wang 		I915_WRITE(DEIMR, dev_priv->irq_mask_reg);
943143a2bfSChris Wilson 		POSTING_READ(DEIMR);
95036a4a7dSZhenyu Wang 	}
96036a4a7dSZhenyu Wang }
97036a4a7dSZhenyu Wang 
98036a4a7dSZhenyu Wang static inline void
99f2b115e6SAdam Jackson ironlake_disable_display_irq(drm_i915_private_t *dev_priv, u32 mask)
100036a4a7dSZhenyu Wang {
101036a4a7dSZhenyu Wang 	if ((dev_priv->irq_mask_reg & mask) != mask) {
102036a4a7dSZhenyu Wang 		dev_priv->irq_mask_reg |= mask;
103036a4a7dSZhenyu Wang 		I915_WRITE(DEIMR, dev_priv->irq_mask_reg);
1043143a2bfSChris Wilson 		POSTING_READ(DEIMR);
105036a4a7dSZhenyu Wang 	}
106036a4a7dSZhenyu Wang }
107036a4a7dSZhenyu Wang 
108036a4a7dSZhenyu Wang void
109ed4cb414SEric Anholt i915_enable_irq(drm_i915_private_t *dev_priv, u32 mask)
110ed4cb414SEric Anholt {
111ed4cb414SEric Anholt 	if ((dev_priv->irq_mask_reg & mask) != 0) {
112ed4cb414SEric Anholt 		dev_priv->irq_mask_reg &= ~mask;
113ed4cb414SEric Anholt 		I915_WRITE(IMR, dev_priv->irq_mask_reg);
1143143a2bfSChris Wilson 		POSTING_READ(IMR);
115ed4cb414SEric Anholt 	}
116ed4cb414SEric Anholt }
117ed4cb414SEric Anholt 
11862fdfeafSEric Anholt void
119ed4cb414SEric Anholt i915_disable_irq(drm_i915_private_t *dev_priv, u32 mask)
120ed4cb414SEric Anholt {
121ed4cb414SEric Anholt 	if ((dev_priv->irq_mask_reg & mask) != mask) {
122ed4cb414SEric Anholt 		dev_priv->irq_mask_reg |= mask;
123ed4cb414SEric Anholt 		I915_WRITE(IMR, dev_priv->irq_mask_reg);
1243143a2bfSChris Wilson 		POSTING_READ(IMR);
125ed4cb414SEric Anholt 	}
126ed4cb414SEric Anholt }
127ed4cb414SEric Anholt 
1287c463586SKeith Packard static inline u32
1297c463586SKeith Packard i915_pipestat(int pipe)
1307c463586SKeith Packard {
1317c463586SKeith Packard 	if (pipe == 0)
1327c463586SKeith Packard 		return PIPEASTAT;
1337c463586SKeith Packard 	if (pipe == 1)
1347c463586SKeith Packard 		return PIPEBSTAT;
1359c84ba4eSAndrew Morton 	BUG();
1367c463586SKeith Packard }
1377c463586SKeith Packard 
1387c463586SKeith Packard void
1397c463586SKeith Packard i915_enable_pipestat(drm_i915_private_t *dev_priv, int pipe, u32 mask)
1407c463586SKeith Packard {
1417c463586SKeith Packard 	if ((dev_priv->pipestat[pipe] & mask) != mask) {
1427c463586SKeith Packard 		u32 reg = i915_pipestat(pipe);
1437c463586SKeith Packard 
1447c463586SKeith Packard 		dev_priv->pipestat[pipe] |= mask;
1457c463586SKeith Packard 		/* Enable the interrupt, clear any pending status */
1467c463586SKeith Packard 		I915_WRITE(reg, dev_priv->pipestat[pipe] | (mask >> 16));
1473143a2bfSChris Wilson 		POSTING_READ(reg);
1487c463586SKeith Packard 	}
1497c463586SKeith Packard }
1507c463586SKeith Packard 
1517c463586SKeith Packard void
1527c463586SKeith Packard i915_disable_pipestat(drm_i915_private_t *dev_priv, int pipe, u32 mask)
1537c463586SKeith Packard {
1547c463586SKeith Packard 	if ((dev_priv->pipestat[pipe] & mask) != 0) {
1557c463586SKeith Packard 		u32 reg = i915_pipestat(pipe);
1567c463586SKeith Packard 
1577c463586SKeith Packard 		dev_priv->pipestat[pipe] &= ~mask;
1587c463586SKeith Packard 		I915_WRITE(reg, dev_priv->pipestat[pipe]);
1593143a2bfSChris Wilson 		POSTING_READ(reg);
1607c463586SKeith Packard 	}
1617c463586SKeith Packard }
1627c463586SKeith Packard 
163c0e09200SDave Airlie /**
16401c66889SZhao Yakui  * intel_enable_asle - enable ASLE interrupt for OpRegion
16501c66889SZhao Yakui  */
16601c66889SZhao Yakui void intel_enable_asle (struct drm_device *dev)
16701c66889SZhao Yakui {
16801c66889SZhao Yakui 	drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
16901c66889SZhao Yakui 
170c619eed4SEric Anholt 	if (HAS_PCH_SPLIT(dev))
171f2b115e6SAdam Jackson 		ironlake_enable_display_irq(dev_priv, DE_GSE);
172edcb49caSZhao Yakui 	else {
17301c66889SZhao Yakui 		i915_enable_pipestat(dev_priv, 1,
174d874bcffSJesse Barnes 				     PIPE_LEGACY_BLC_EVENT_ENABLE);
175a6c45cf0SChris Wilson 		if (INTEL_INFO(dev)->gen >= 4)
176edcb49caSZhao Yakui 			i915_enable_pipestat(dev_priv, 0,
177d874bcffSJesse Barnes 					     PIPE_LEGACY_BLC_EVENT_ENABLE);
178edcb49caSZhao Yakui 	}
17901c66889SZhao Yakui }
18001c66889SZhao Yakui 
18101c66889SZhao Yakui /**
1820a3e67a4SJesse Barnes  * i915_pipe_enabled - check if a pipe is enabled
1830a3e67a4SJesse Barnes  * @dev: DRM device
1840a3e67a4SJesse Barnes  * @pipe: pipe to check
1850a3e67a4SJesse Barnes  *
1860a3e67a4SJesse Barnes  * Reading certain registers when the pipe is disabled can hang the chip.
1870a3e67a4SJesse Barnes  * Use this routine to make sure the PLL is running and the pipe is active
1880a3e67a4SJesse Barnes  * before reading such registers if unsure.
1890a3e67a4SJesse Barnes  */
1900a3e67a4SJesse Barnes static int
1910a3e67a4SJesse Barnes i915_pipe_enabled(struct drm_device *dev, int pipe)
1920a3e67a4SJesse Barnes {
1930a3e67a4SJesse Barnes 	drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
1945eddb70bSChris Wilson 	return I915_READ(PIPECONF(pipe)) & PIPECONF_ENABLE;
1950a3e67a4SJesse Barnes }
1960a3e67a4SJesse Barnes 
19742f52ef8SKeith Packard /* Called from drm generic code, passed a 'crtc', which
19842f52ef8SKeith Packard  * we use as a pipe index
19942f52ef8SKeith Packard  */
20042f52ef8SKeith Packard u32 i915_get_vblank_counter(struct drm_device *dev, int pipe)
2010a3e67a4SJesse Barnes {
2020a3e67a4SJesse Barnes 	drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
2030a3e67a4SJesse Barnes 	unsigned long high_frame;
2040a3e67a4SJesse Barnes 	unsigned long low_frame;
2055eddb70bSChris Wilson 	u32 high1, high2, low;
2060a3e67a4SJesse Barnes 
2070a3e67a4SJesse Barnes 	if (!i915_pipe_enabled(dev, pipe)) {
20844d98a61SZhao Yakui 		DRM_DEBUG_DRIVER("trying to get vblank count for disabled "
20944d98a61SZhao Yakui 				"pipe %d\n", pipe);
2100a3e67a4SJesse Barnes 		return 0;
2110a3e67a4SJesse Barnes 	}
2120a3e67a4SJesse Barnes 
2135eddb70bSChris Wilson 	high_frame = pipe ? PIPEBFRAMEHIGH : PIPEAFRAMEHIGH;
2145eddb70bSChris Wilson 	low_frame = pipe ? PIPEBFRAMEPIXEL : PIPEAFRAMEPIXEL;
2155eddb70bSChris Wilson 
2160a3e67a4SJesse Barnes 	/*
2170a3e67a4SJesse Barnes 	 * High & low register fields aren't synchronized, so make sure
2180a3e67a4SJesse Barnes 	 * we get a low value that's stable across two reads of the high
2190a3e67a4SJesse Barnes 	 * register.
2200a3e67a4SJesse Barnes 	 */
2210a3e67a4SJesse Barnes 	do {
2225eddb70bSChris Wilson 		high1 = I915_READ(high_frame) & PIPE_FRAME_HIGH_MASK;
2235eddb70bSChris Wilson 		low   = I915_READ(low_frame)  & PIPE_FRAME_LOW_MASK;
2245eddb70bSChris Wilson 		high2 = I915_READ(high_frame) & PIPE_FRAME_HIGH_MASK;
2250a3e67a4SJesse Barnes 	} while (high1 != high2);
2260a3e67a4SJesse Barnes 
2275eddb70bSChris Wilson 	high1 >>= PIPE_FRAME_HIGH_SHIFT;
2285eddb70bSChris Wilson 	low >>= PIPE_FRAME_LOW_SHIFT;
2295eddb70bSChris Wilson 	return (high1 << 8) | low;
2300a3e67a4SJesse Barnes }
2310a3e67a4SJesse Barnes 
2329880b7a5SJesse Barnes u32 gm45_get_vblank_counter(struct drm_device *dev, int pipe)
2339880b7a5SJesse Barnes {
2349880b7a5SJesse Barnes 	drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
2359880b7a5SJesse Barnes 	int reg = pipe ? PIPEB_FRMCOUNT_GM45 : PIPEA_FRMCOUNT_GM45;
2369880b7a5SJesse Barnes 
2379880b7a5SJesse Barnes 	if (!i915_pipe_enabled(dev, pipe)) {
23844d98a61SZhao Yakui 		DRM_DEBUG_DRIVER("trying to get vblank count for disabled "
23944d98a61SZhao Yakui 					"pipe %d\n", pipe);
2409880b7a5SJesse Barnes 		return 0;
2419880b7a5SJesse Barnes 	}
2429880b7a5SJesse Barnes 
2439880b7a5SJesse Barnes 	return I915_READ(reg);
2449880b7a5SJesse Barnes }
2459880b7a5SJesse Barnes 
2465ca58282SJesse Barnes /*
2475ca58282SJesse Barnes  * Handle hotplug events outside the interrupt handler proper.
2485ca58282SJesse Barnes  */
2495ca58282SJesse Barnes static void i915_hotplug_work_func(struct work_struct *work)
2505ca58282SJesse Barnes {
2515ca58282SJesse Barnes 	drm_i915_private_t *dev_priv = container_of(work, drm_i915_private_t,
2525ca58282SJesse Barnes 						    hotplug_work);
2535ca58282SJesse Barnes 	struct drm_device *dev = dev_priv->dev;
254c31c4ba3SKeith Packard 	struct drm_mode_config *mode_config = &dev->mode_config;
2554ef69c7aSChris Wilson 	struct intel_encoder *encoder;
2565ca58282SJesse Barnes 
2574ef69c7aSChris Wilson 	list_for_each_entry(encoder, &mode_config->encoder_list, base.head)
2584ef69c7aSChris Wilson 		if (encoder->hot_plug)
2594ef69c7aSChris Wilson 			encoder->hot_plug(encoder);
260c31c4ba3SKeith Packard 
2615ca58282SJesse Barnes 	/* Just fire off a uevent and let userspace tell us what to do */
262eb1f8e4fSDave Airlie 	drm_helper_hpd_irq_event(dev);
2635ca58282SJesse Barnes }
2645ca58282SJesse Barnes 
265f97108d1SJesse Barnes static void i915_handle_rps_change(struct drm_device *dev)
266f97108d1SJesse Barnes {
267f97108d1SJesse Barnes 	drm_i915_private_t *dev_priv = dev->dev_private;
268b5b72e89SMatthew Garrett 	u32 busy_up, busy_down, max_avg, min_avg;
269f97108d1SJesse Barnes 	u8 new_delay = dev_priv->cur_delay;
270f97108d1SJesse Barnes 
2717648fa99SJesse Barnes 	I915_WRITE16(MEMINTRSTS, MEMINT_EVAL_CHG);
272b5b72e89SMatthew Garrett 	busy_up = I915_READ(RCPREVBSYTUPAVG);
273b5b72e89SMatthew Garrett 	busy_down = I915_READ(RCPREVBSYTDNAVG);
274f97108d1SJesse Barnes 	max_avg = I915_READ(RCBMAXAVG);
275f97108d1SJesse Barnes 	min_avg = I915_READ(RCBMINAVG);
276f97108d1SJesse Barnes 
277f97108d1SJesse Barnes 	/* Handle RCS change request from hw */
278b5b72e89SMatthew Garrett 	if (busy_up > max_avg) {
279f97108d1SJesse Barnes 		if (dev_priv->cur_delay != dev_priv->max_delay)
280f97108d1SJesse Barnes 			new_delay = dev_priv->cur_delay - 1;
281f97108d1SJesse Barnes 		if (new_delay < dev_priv->max_delay)
282f97108d1SJesse Barnes 			new_delay = dev_priv->max_delay;
283b5b72e89SMatthew Garrett 	} else if (busy_down < min_avg) {
284f97108d1SJesse Barnes 		if (dev_priv->cur_delay != dev_priv->min_delay)
285f97108d1SJesse Barnes 			new_delay = dev_priv->cur_delay + 1;
286f97108d1SJesse Barnes 		if (new_delay > dev_priv->min_delay)
287f97108d1SJesse Barnes 			new_delay = dev_priv->min_delay;
288f97108d1SJesse Barnes 	}
289f97108d1SJesse Barnes 
2907648fa99SJesse Barnes 	if (ironlake_set_drps(dev, new_delay))
291f97108d1SJesse Barnes 		dev_priv->cur_delay = new_delay;
292f97108d1SJesse Barnes 
293f97108d1SJesse Barnes 	return;
294f97108d1SJesse Barnes }
295f97108d1SJesse Barnes 
296549f7365SChris Wilson static void notify_ring(struct drm_device *dev,
297549f7365SChris Wilson 			struct intel_ring_buffer *ring)
298549f7365SChris Wilson {
299549f7365SChris Wilson 	struct drm_i915_private *dev_priv = dev->dev_private;
30078501eacSChris Wilson 	u32 seqno = ring->get_seqno(ring);
301b2223497SChris Wilson 	ring->irq_seqno = seqno;
302549f7365SChris Wilson 	trace_i915_gem_request_complete(dev, seqno);
303549f7365SChris Wilson 	wake_up_all(&ring->irq_queue);
304549f7365SChris Wilson 	dev_priv->hangcheck_count = 0;
305549f7365SChris Wilson 	mod_timer(&dev_priv->hangcheck_timer,
306549f7365SChris Wilson 		  jiffies + msecs_to_jiffies(DRM_I915_HANGCHECK_PERIOD));
307549f7365SChris Wilson }
308549f7365SChris Wilson 
309995b6762SChris Wilson static irqreturn_t ironlake_irq_handler(struct drm_device *dev)
310036a4a7dSZhenyu Wang {
311036a4a7dSZhenyu Wang 	drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
312036a4a7dSZhenyu Wang 	int ret = IRQ_NONE;
3133ff99164SDave Airlie 	u32 de_iir, gt_iir, de_ier, pch_iir;
3142d7b8366SYuanhan Liu 	u32 hotplug_mask;
315036a4a7dSZhenyu Wang 	struct drm_i915_master_private *master_priv;
316881f47b6SXiang, Haihao 	u32 bsd_usr_interrupt = GT_BSD_USER_INTERRUPT;
317881f47b6SXiang, Haihao 
318881f47b6SXiang, Haihao 	if (IS_GEN6(dev))
319881f47b6SXiang, Haihao 		bsd_usr_interrupt = GT_GEN6_BSD_USER_INTERRUPT;
320036a4a7dSZhenyu Wang 
3212d109a84SZou, Nanhai 	/* disable master interrupt before clearing iir  */
3222d109a84SZou, Nanhai 	de_ier = I915_READ(DEIER);
3232d109a84SZou, Nanhai 	I915_WRITE(DEIER, de_ier & ~DE_MASTER_IRQ_CONTROL);
3243143a2bfSChris Wilson 	POSTING_READ(DEIER);
3252d109a84SZou, Nanhai 
326036a4a7dSZhenyu Wang 	de_iir = I915_READ(DEIIR);
327036a4a7dSZhenyu Wang 	gt_iir = I915_READ(GTIIR);
328c650156aSZhenyu Wang 	pch_iir = I915_READ(SDEIIR);
329036a4a7dSZhenyu Wang 
330c650156aSZhenyu Wang 	if (de_iir == 0 && gt_iir == 0 && pch_iir == 0)
331c7c85101SZou Nan hai 		goto done;
332036a4a7dSZhenyu Wang 
3332d7b8366SYuanhan Liu 	if (HAS_PCH_CPT(dev))
3342d7b8366SYuanhan Liu 		hotplug_mask = SDE_HOTPLUG_MASK_CPT;
3352d7b8366SYuanhan Liu 	else
3362d7b8366SYuanhan Liu 		hotplug_mask = SDE_HOTPLUG_MASK;
3372d7b8366SYuanhan Liu 
338036a4a7dSZhenyu Wang 	ret = IRQ_HANDLED;
339036a4a7dSZhenyu Wang 
340036a4a7dSZhenyu Wang 	if (dev->primary->master) {
341036a4a7dSZhenyu Wang 		master_priv = dev->primary->master->driver_priv;
342036a4a7dSZhenyu Wang 		if (master_priv->sarea_priv)
343036a4a7dSZhenyu Wang 			master_priv->sarea_priv->last_dispatch =
344036a4a7dSZhenyu Wang 				READ_BREADCRUMB(dev_priv);
345036a4a7dSZhenyu Wang 	}
346036a4a7dSZhenyu Wang 
347549f7365SChris Wilson 	if (gt_iir & GT_PIPE_NOTIFY)
348549f7365SChris Wilson 		notify_ring(dev, &dev_priv->render_ring);
349881f47b6SXiang, Haihao 	if (gt_iir & bsd_usr_interrupt)
350549f7365SChris Wilson 		notify_ring(dev, &dev_priv->bsd_ring);
351549f7365SChris Wilson 	if (HAS_BLT(dev) && gt_iir & GT_BLT_USER_INTERRUPT)
352549f7365SChris Wilson 		notify_ring(dev, &dev_priv->blt_ring);
353036a4a7dSZhenyu Wang 
35401c66889SZhao Yakui 	if (de_iir & DE_GSE)
3553b617967SChris Wilson 		intel_opregion_gse_intr(dev);
35601c66889SZhao Yakui 
357f072d2e7SZhenyu Wang 	if (de_iir & DE_PLANEA_FLIP_DONE) {
358013d5aa2SJesse Barnes 		intel_prepare_page_flip(dev, 0);
3592bbda389SChris Wilson 		intel_finish_page_flip_plane(dev, 0);
360013d5aa2SJesse Barnes 	}
361013d5aa2SJesse Barnes 
362f072d2e7SZhenyu Wang 	if (de_iir & DE_PLANEB_FLIP_DONE) {
363f072d2e7SZhenyu Wang 		intel_prepare_page_flip(dev, 1);
3642bbda389SChris Wilson 		intel_finish_page_flip_plane(dev, 1);
365013d5aa2SJesse Barnes 	}
366c062df61SLi Peng 
367f072d2e7SZhenyu Wang 	if (de_iir & DE_PIPEA_VBLANK)
368f072d2e7SZhenyu Wang 		drm_handle_vblank(dev, 0);
369f072d2e7SZhenyu Wang 
370f072d2e7SZhenyu Wang 	if (de_iir & DE_PIPEB_VBLANK)
371f072d2e7SZhenyu Wang 		drm_handle_vblank(dev, 1);
372f072d2e7SZhenyu Wang 
373c650156aSZhenyu Wang 	/* check event from PCH */
3742d7b8366SYuanhan Liu 	if ((de_iir & DE_PCH_EVENT) && (pch_iir & hotplug_mask))
375c650156aSZhenyu Wang 		queue_work(dev_priv->wq, &dev_priv->hotplug_work);
376c650156aSZhenyu Wang 
377f97108d1SJesse Barnes 	if (de_iir & DE_PCU_EVENT) {
3787648fa99SJesse Barnes 		I915_WRITE16(MEMINTRSTS, I915_READ(MEMINTRSTS));
379f97108d1SJesse Barnes 		i915_handle_rps_change(dev);
380f97108d1SJesse Barnes 	}
381f97108d1SJesse Barnes 
382c7c85101SZou Nan hai 	/* should clear PCH hotplug event before clear CPU irq */
383c7c85101SZou Nan hai 	I915_WRITE(SDEIIR, pch_iir);
384c7c85101SZou Nan hai 	I915_WRITE(GTIIR, gt_iir);
385c7c85101SZou Nan hai 	I915_WRITE(DEIIR, de_iir);
386036a4a7dSZhenyu Wang 
387c7c85101SZou Nan hai done:
3882d109a84SZou, Nanhai 	I915_WRITE(DEIER, de_ier);
3893143a2bfSChris Wilson 	POSTING_READ(DEIER);
3902d109a84SZou, Nanhai 
391036a4a7dSZhenyu Wang 	return ret;
392036a4a7dSZhenyu Wang }
393036a4a7dSZhenyu Wang 
3948a905236SJesse Barnes /**
3958a905236SJesse Barnes  * i915_error_work_func - do process context error handling work
3968a905236SJesse Barnes  * @work: work struct
3978a905236SJesse Barnes  *
3988a905236SJesse Barnes  * Fire an error uevent so userspace can see that a hang or error
3998a905236SJesse Barnes  * was detected.
4008a905236SJesse Barnes  */
4018a905236SJesse Barnes static void i915_error_work_func(struct work_struct *work)
4028a905236SJesse Barnes {
4038a905236SJesse Barnes 	drm_i915_private_t *dev_priv = container_of(work, drm_i915_private_t,
4048a905236SJesse Barnes 						    error_work);
4058a905236SJesse Barnes 	struct drm_device *dev = dev_priv->dev;
406f316a42cSBen Gamari 	char *error_event[] = { "ERROR=1", NULL };
407f316a42cSBen Gamari 	char *reset_event[] = { "RESET=1", NULL };
408f316a42cSBen Gamari 	char *reset_done_event[] = { "ERROR=0", NULL };
4098a905236SJesse Barnes 
410f316a42cSBen Gamari 	kobject_uevent_env(&dev->primary->kdev.kobj, KOBJ_CHANGE, error_event);
4118a905236SJesse Barnes 
412ba1234d1SBen Gamari 	if (atomic_read(&dev_priv->mm.wedged)) {
41344d98a61SZhao Yakui 		DRM_DEBUG_DRIVER("resetting chip\n");
414f316a42cSBen Gamari 		kobject_uevent_env(&dev->primary->kdev.kobj, KOBJ_CHANGE, reset_event);
415f803aa55SChris Wilson 		if (!i915_reset(dev, GRDOM_RENDER)) {
416ba1234d1SBen Gamari 			atomic_set(&dev_priv->mm.wedged, 0);
417f316a42cSBen Gamari 			kobject_uevent_env(&dev->primary->kdev.kobj, KOBJ_CHANGE, reset_done_event);
418f316a42cSBen Gamari 		}
41930dbf0c0SChris Wilson 		complete_all(&dev_priv->error_completion);
420f316a42cSBen Gamari 	}
4218a905236SJesse Barnes }
4228a905236SJesse Barnes 
4233bd3c932SChris Wilson #ifdef CONFIG_DEBUG_FS
4249df30794SChris Wilson static struct drm_i915_error_object *
4259df30794SChris Wilson i915_error_object_create(struct drm_device *dev,
4269df30794SChris Wilson 			 struct drm_gem_object *src)
4279df30794SChris Wilson {
428e56660ddSChris Wilson 	drm_i915_private_t *dev_priv = dev->dev_private;
4299df30794SChris Wilson 	struct drm_i915_error_object *dst;
4309df30794SChris Wilson 	struct drm_i915_gem_object *src_priv;
4319df30794SChris Wilson 	int page, page_count;
432e56660ddSChris Wilson 	u32 reloc_offset;
4339df30794SChris Wilson 
4349df30794SChris Wilson 	if (src == NULL)
4359df30794SChris Wilson 		return NULL;
4369df30794SChris Wilson 
43723010e43SDaniel Vetter 	src_priv = to_intel_bo(src);
4389df30794SChris Wilson 	if (src_priv->pages == NULL)
4399df30794SChris Wilson 		return NULL;
4409df30794SChris Wilson 
4419df30794SChris Wilson 	page_count = src->size / PAGE_SIZE;
4429df30794SChris Wilson 
4439df30794SChris Wilson 	dst = kmalloc(sizeof(*dst) + page_count * sizeof (u32 *), GFP_ATOMIC);
4449df30794SChris Wilson 	if (dst == NULL)
4459df30794SChris Wilson 		return NULL;
4469df30794SChris Wilson 
447e56660ddSChris Wilson 	reloc_offset = src_priv->gtt_offset;
4489df30794SChris Wilson 	for (page = 0; page < page_count; page++) {
449788885aeSAndrew Morton 		unsigned long flags;
450e56660ddSChris Wilson 		void __iomem *s;
451e56660ddSChris Wilson 		void *d;
452788885aeSAndrew Morton 
453e56660ddSChris Wilson 		d = kmalloc(PAGE_SIZE, GFP_ATOMIC);
4549df30794SChris Wilson 		if (d == NULL)
4559df30794SChris Wilson 			goto unwind;
456e56660ddSChris Wilson 
457788885aeSAndrew Morton 		local_irq_save(flags);
458e56660ddSChris Wilson 		s = io_mapping_map_atomic_wc(dev_priv->mm.gtt_mapping,
4593e4d3af5SPeter Zijlstra 					     reloc_offset);
460e56660ddSChris Wilson 		memcpy_fromio(d, s, PAGE_SIZE);
4613e4d3af5SPeter Zijlstra 		io_mapping_unmap_atomic(s);
462788885aeSAndrew Morton 		local_irq_restore(flags);
463e56660ddSChris Wilson 
4649df30794SChris Wilson 		dst->pages[page] = d;
465e56660ddSChris Wilson 
466e56660ddSChris Wilson 		reloc_offset += PAGE_SIZE;
4679df30794SChris Wilson 	}
4689df30794SChris Wilson 	dst->page_count = page_count;
4699df30794SChris Wilson 	dst->gtt_offset = src_priv->gtt_offset;
4709df30794SChris Wilson 
4719df30794SChris Wilson 	return dst;
4729df30794SChris Wilson 
4739df30794SChris Wilson unwind:
4749df30794SChris Wilson 	while (page--)
4759df30794SChris Wilson 		kfree(dst->pages[page]);
4769df30794SChris Wilson 	kfree(dst);
4779df30794SChris Wilson 	return NULL;
4789df30794SChris Wilson }
4799df30794SChris Wilson 
4809df30794SChris Wilson static void
4819df30794SChris Wilson i915_error_object_free(struct drm_i915_error_object *obj)
4829df30794SChris Wilson {
4839df30794SChris Wilson 	int page;
4849df30794SChris Wilson 
4859df30794SChris Wilson 	if (obj == NULL)
4869df30794SChris Wilson 		return;
4879df30794SChris Wilson 
4889df30794SChris Wilson 	for (page = 0; page < obj->page_count; page++)
4899df30794SChris Wilson 		kfree(obj->pages[page]);
4909df30794SChris Wilson 
4919df30794SChris Wilson 	kfree(obj);
4929df30794SChris Wilson }
4939df30794SChris Wilson 
4949df30794SChris Wilson static void
4959df30794SChris Wilson i915_error_state_free(struct drm_device *dev,
4969df30794SChris Wilson 		      struct drm_i915_error_state *error)
4979df30794SChris Wilson {
4989df30794SChris Wilson 	i915_error_object_free(error->batchbuffer[0]);
4999df30794SChris Wilson 	i915_error_object_free(error->batchbuffer[1]);
5009df30794SChris Wilson 	i915_error_object_free(error->ringbuffer);
5019df30794SChris Wilson 	kfree(error->active_bo);
5026ef3d427SChris Wilson 	kfree(error->overlay);
5039df30794SChris Wilson 	kfree(error);
5049df30794SChris Wilson }
5059df30794SChris Wilson 
5069df30794SChris Wilson static u32
5079df30794SChris Wilson i915_get_bbaddr(struct drm_device *dev, u32 *ring)
5089df30794SChris Wilson {
5099df30794SChris Wilson 	u32 cmd;
5109df30794SChris Wilson 
5119df30794SChris Wilson 	if (IS_I830(dev) || IS_845G(dev))
5129df30794SChris Wilson 		cmd = MI_BATCH_BUFFER;
513a6c45cf0SChris Wilson 	else if (INTEL_INFO(dev)->gen >= 4)
5149df30794SChris Wilson 		cmd = (MI_BATCH_BUFFER_START | (2 << 6) |
5159df30794SChris Wilson 		       MI_BATCH_NON_SECURE_I965);
5169df30794SChris Wilson 	else
5179df30794SChris Wilson 		cmd = (MI_BATCH_BUFFER_START | (2 << 6));
5189df30794SChris Wilson 
5199df30794SChris Wilson 	return ring[0] == cmd ? ring[1] : 0;
5209df30794SChris Wilson }
5219df30794SChris Wilson 
5229df30794SChris Wilson static u32
5238168bd48SChris Wilson i915_ringbuffer_last_batch(struct drm_device *dev,
5248168bd48SChris Wilson 			   struct intel_ring_buffer *ring)
5259df30794SChris Wilson {
5269df30794SChris Wilson 	struct drm_i915_private *dev_priv = dev->dev_private;
5279df30794SChris Wilson 	u32 head, bbaddr;
5288168bd48SChris Wilson 	u32 *val;
5299df30794SChris Wilson 
5309df30794SChris Wilson 	/* Locate the current position in the ringbuffer and walk back
5319df30794SChris Wilson 	 * to find the most recently dispatched batch buffer.
5329df30794SChris Wilson 	 */
5339df30794SChris Wilson 	bbaddr = 0;
5348168bd48SChris Wilson 	head = I915_READ_HEAD(ring) & HEAD_ADDR;
5358168bd48SChris Wilson 	val = (u32 *)(ring->virtual_start + head);
5369df30794SChris Wilson 
5378168bd48SChris Wilson 	while (--val >= (u32 *)ring->virtual_start) {
5388168bd48SChris Wilson 		bbaddr = i915_get_bbaddr(dev, val);
5399df30794SChris Wilson 		if (bbaddr)
5409df30794SChris Wilson 			break;
5419df30794SChris Wilson 	}
5429df30794SChris Wilson 
5439df30794SChris Wilson 	if (bbaddr == 0) {
5448168bd48SChris Wilson 		val = (u32 *)(ring->virtual_start + ring->size);
5458168bd48SChris Wilson 		while (--val >= (u32 *)ring->virtual_start) {
5468168bd48SChris Wilson 			bbaddr = i915_get_bbaddr(dev, val);
5479df30794SChris Wilson 			if (bbaddr)
5489df30794SChris Wilson 				break;
5499df30794SChris Wilson 		}
5509df30794SChris Wilson 	}
5519df30794SChris Wilson 
5529df30794SChris Wilson 	return bbaddr;
5539df30794SChris Wilson }
5549df30794SChris Wilson 
555c724e8a9SChris Wilson static u32 capture_bo_list(struct drm_i915_error_buffer *err,
556c724e8a9SChris Wilson 			   int count,
557c724e8a9SChris Wilson 			   struct list_head *head)
558c724e8a9SChris Wilson {
559c724e8a9SChris Wilson 	struct drm_i915_gem_object *obj;
560c724e8a9SChris Wilson 	int i = 0;
561c724e8a9SChris Wilson 
562c724e8a9SChris Wilson 	list_for_each_entry(obj, head, mm_list) {
563c724e8a9SChris Wilson 		err->size = obj->base.size;
564c724e8a9SChris Wilson 		err->name = obj->base.name;
565c724e8a9SChris Wilson 		err->seqno = obj->last_rendering_seqno;
566c724e8a9SChris Wilson 		err->gtt_offset = obj->gtt_offset;
567c724e8a9SChris Wilson 		err->read_domains = obj->base.read_domains;
568c724e8a9SChris Wilson 		err->write_domain = obj->base.write_domain;
569c724e8a9SChris Wilson 		err->fence_reg = obj->fence_reg;
570c724e8a9SChris Wilson 		err->pinned = 0;
571c724e8a9SChris Wilson 		if (obj->pin_count > 0)
572c724e8a9SChris Wilson 			err->pinned = 1;
573c724e8a9SChris Wilson 		if (obj->user_pin_count > 0)
574c724e8a9SChris Wilson 			err->pinned = -1;
575c724e8a9SChris Wilson 		err->tiling = obj->tiling_mode;
576c724e8a9SChris Wilson 		err->dirty = obj->dirty;
577c724e8a9SChris Wilson 		err->purgeable = obj->madv != I915_MADV_WILLNEED;
578*3685092bSChris Wilson 		err->ring = obj->ring ? obj->ring->id : 0;
579c724e8a9SChris Wilson 
580c724e8a9SChris Wilson 		if (++i == count)
581c724e8a9SChris Wilson 			break;
582c724e8a9SChris Wilson 
583c724e8a9SChris Wilson 		err++;
584c724e8a9SChris Wilson 	}
585c724e8a9SChris Wilson 
586c724e8a9SChris Wilson 	return i;
587c724e8a9SChris Wilson }
588c724e8a9SChris Wilson 
5898a905236SJesse Barnes /**
5908a905236SJesse Barnes  * i915_capture_error_state - capture an error record for later analysis
5918a905236SJesse Barnes  * @dev: drm device
5928a905236SJesse Barnes  *
5938a905236SJesse Barnes  * Should be called when an error is detected (either a hang or an error
5948a905236SJesse Barnes  * interrupt) to capture error state from the time of the error.  Fills
5958a905236SJesse Barnes  * out a structure which becomes available in debugfs for user level tools
5968a905236SJesse Barnes  * to pick up.
5978a905236SJesse Barnes  */
59863eeaf38SJesse Barnes static void i915_capture_error_state(struct drm_device *dev)
59963eeaf38SJesse Barnes {
60063eeaf38SJesse Barnes 	struct drm_i915_private *dev_priv = dev->dev_private;
6019df30794SChris Wilson 	struct drm_i915_gem_object *obj_priv;
60263eeaf38SJesse Barnes 	struct drm_i915_error_state *error;
6039df30794SChris Wilson 	struct drm_gem_object *batchbuffer[2];
60463eeaf38SJesse Barnes 	unsigned long flags;
6059df30794SChris Wilson 	u32 bbaddr;
6069df30794SChris Wilson 	int count;
60763eeaf38SJesse Barnes 
60863eeaf38SJesse Barnes 	spin_lock_irqsave(&dev_priv->error_lock, flags);
6099df30794SChris Wilson 	error = dev_priv->first_error;
6109df30794SChris Wilson 	spin_unlock_irqrestore(&dev_priv->error_lock, flags);
6119df30794SChris Wilson 	if (error)
6129df30794SChris Wilson 		return;
61363eeaf38SJesse Barnes 
61463eeaf38SJesse Barnes 	error = kmalloc(sizeof(*error), GFP_ATOMIC);
61563eeaf38SJesse Barnes 	if (!error) {
6169df30794SChris Wilson 		DRM_DEBUG_DRIVER("out of memory, not capturing error state\n");
6179df30794SChris Wilson 		return;
61863eeaf38SJesse Barnes 	}
61963eeaf38SJesse Barnes 
6202fa772f3SChris Wilson 	DRM_DEBUG_DRIVER("generating error event\n");
6212fa772f3SChris Wilson 
622f787a5f5SChris Wilson 	error->seqno =
62378501eacSChris Wilson 		dev_priv->render_ring.get_seqno(&dev_priv->render_ring);
62463eeaf38SJesse Barnes 	error->eir = I915_READ(EIR);
62563eeaf38SJesse Barnes 	error->pgtbl_er = I915_READ(PGTBL_ER);
62663eeaf38SJesse Barnes 	error->pipeastat = I915_READ(PIPEASTAT);
62763eeaf38SJesse Barnes 	error->pipebstat = I915_READ(PIPEBSTAT);
62863eeaf38SJesse Barnes 	error->instpm = I915_READ(INSTPM);
629f406839fSChris Wilson 	error->error = 0;
630f406839fSChris Wilson 	if (INTEL_INFO(dev)->gen >= 6) {
631f406839fSChris Wilson 		error->error = I915_READ(ERROR_GEN6);
632add354ddSChris Wilson 
6331d8f38f4SChris Wilson 		error->bcs_acthd = I915_READ(BCS_ACTHD);
6341d8f38f4SChris Wilson 		error->bcs_ipehr = I915_READ(BCS_IPEHR);
6351d8f38f4SChris Wilson 		error->bcs_ipeir = I915_READ(BCS_IPEIR);
6361d8f38f4SChris Wilson 		error->bcs_instdone = I915_READ(BCS_INSTDONE);
6371d8f38f4SChris Wilson 		error->bcs_seqno = 0;
6381d8f38f4SChris Wilson 		if (dev_priv->blt_ring.get_seqno)
6391d8f38f4SChris Wilson 			error->bcs_seqno = dev_priv->blt_ring.get_seqno(&dev_priv->blt_ring);
640add354ddSChris Wilson 
641add354ddSChris Wilson 		error->vcs_acthd = I915_READ(VCS_ACTHD);
642add354ddSChris Wilson 		error->vcs_ipehr = I915_READ(VCS_IPEHR);
643add354ddSChris Wilson 		error->vcs_ipeir = I915_READ(VCS_IPEIR);
644add354ddSChris Wilson 		error->vcs_instdone = I915_READ(VCS_INSTDONE);
645add354ddSChris Wilson 		error->vcs_seqno = 0;
646add354ddSChris Wilson 		if (dev_priv->bsd_ring.get_seqno)
647add354ddSChris Wilson 			error->vcs_seqno = dev_priv->bsd_ring.get_seqno(&dev_priv->bsd_ring);
648f406839fSChris Wilson 	}
649f406839fSChris Wilson 	if (INTEL_INFO(dev)->gen >= 4) {
65063eeaf38SJesse Barnes 		error->ipeir = I915_READ(IPEIR_I965);
65163eeaf38SJesse Barnes 		error->ipehr = I915_READ(IPEHR_I965);
65263eeaf38SJesse Barnes 		error->instdone = I915_READ(INSTDONE_I965);
65363eeaf38SJesse Barnes 		error->instps = I915_READ(INSTPS);
65463eeaf38SJesse Barnes 		error->instdone1 = I915_READ(INSTDONE1);
65563eeaf38SJesse Barnes 		error->acthd = I915_READ(ACTHD_I965);
6569df30794SChris Wilson 		error->bbaddr = I915_READ64(BB_ADDR);
657f406839fSChris Wilson 	} else {
658f406839fSChris Wilson 		error->ipeir = I915_READ(IPEIR);
659f406839fSChris Wilson 		error->ipehr = I915_READ(IPEHR);
660f406839fSChris Wilson 		error->instdone = I915_READ(INSTDONE);
661f406839fSChris Wilson 		error->acthd = I915_READ(ACTHD);
662f406839fSChris Wilson 		error->bbaddr = 0;
6639df30794SChris Wilson 	}
6649df30794SChris Wilson 
6658168bd48SChris Wilson 	bbaddr = i915_ringbuffer_last_batch(dev, &dev_priv->render_ring);
6669df30794SChris Wilson 
6679df30794SChris Wilson 	/* Grab the current batchbuffer, most likely to have crashed. */
6689df30794SChris Wilson 	batchbuffer[0] = NULL;
6699df30794SChris Wilson 	batchbuffer[1] = NULL;
6709df30794SChris Wilson 	count = 0;
67169dc4987SChris Wilson 	list_for_each_entry(obj_priv, &dev_priv->mm.active_list, mm_list) {
672a8089e84SDaniel Vetter 		struct drm_gem_object *obj = &obj_priv->base;
6739df30794SChris Wilson 
6749df30794SChris Wilson 		if (batchbuffer[0] == NULL &&
6759df30794SChris Wilson 		    bbaddr >= obj_priv->gtt_offset &&
6769df30794SChris Wilson 		    bbaddr < obj_priv->gtt_offset + obj->size)
6779df30794SChris Wilson 			batchbuffer[0] = obj;
6789df30794SChris Wilson 
6799df30794SChris Wilson 		if (batchbuffer[1] == NULL &&
6809df30794SChris Wilson 		    error->acthd >= obj_priv->gtt_offset &&
681e56660ddSChris Wilson 		    error->acthd < obj_priv->gtt_offset + obj->size)
6829df30794SChris Wilson 			batchbuffer[1] = obj;
6839df30794SChris Wilson 
6849df30794SChris Wilson 		count++;
6859df30794SChris Wilson 	}
686e56660ddSChris Wilson 	/* Scan the other lists for completeness for those bizarre errors. */
687e56660ddSChris Wilson 	if (batchbuffer[0] == NULL || batchbuffer[1] == NULL) {
68869dc4987SChris Wilson 		list_for_each_entry(obj_priv, &dev_priv->mm.flushing_list, mm_list) {
689e56660ddSChris Wilson 			struct drm_gem_object *obj = &obj_priv->base;
690e56660ddSChris Wilson 
691e56660ddSChris Wilson 			if (batchbuffer[0] == NULL &&
692e56660ddSChris Wilson 			    bbaddr >= obj_priv->gtt_offset &&
693e56660ddSChris Wilson 			    bbaddr < obj_priv->gtt_offset + obj->size)
694e56660ddSChris Wilson 				batchbuffer[0] = obj;
695e56660ddSChris Wilson 
696e56660ddSChris Wilson 			if (batchbuffer[1] == NULL &&
697e56660ddSChris Wilson 			    error->acthd >= obj_priv->gtt_offset &&
698e56660ddSChris Wilson 			    error->acthd < obj_priv->gtt_offset + obj->size)
699e56660ddSChris Wilson 				batchbuffer[1] = obj;
700e56660ddSChris Wilson 
701e56660ddSChris Wilson 			if (batchbuffer[0] && batchbuffer[1])
702e56660ddSChris Wilson 				break;
703e56660ddSChris Wilson 		}
704e56660ddSChris Wilson 	}
705e56660ddSChris Wilson 	if (batchbuffer[0] == NULL || batchbuffer[1] == NULL) {
70669dc4987SChris Wilson 		list_for_each_entry(obj_priv, &dev_priv->mm.inactive_list, mm_list) {
707e56660ddSChris Wilson 			struct drm_gem_object *obj = &obj_priv->base;
708e56660ddSChris Wilson 
709e56660ddSChris Wilson 			if (batchbuffer[0] == NULL &&
710e56660ddSChris Wilson 			    bbaddr >= obj_priv->gtt_offset &&
711e56660ddSChris Wilson 			    bbaddr < obj_priv->gtt_offset + obj->size)
712e56660ddSChris Wilson 				batchbuffer[0] = obj;
713e56660ddSChris Wilson 
714e56660ddSChris Wilson 			if (batchbuffer[1] == NULL &&
715e56660ddSChris Wilson 			    error->acthd >= obj_priv->gtt_offset &&
716e56660ddSChris Wilson 			    error->acthd < obj_priv->gtt_offset + obj->size)
717e56660ddSChris Wilson 				batchbuffer[1] = obj;
718e56660ddSChris Wilson 
719e56660ddSChris Wilson 			if (batchbuffer[0] && batchbuffer[1])
720e56660ddSChris Wilson 				break;
721e56660ddSChris Wilson 		}
722e56660ddSChris Wilson 	}
7239df30794SChris Wilson 
7249df30794SChris Wilson 	/* We need to copy these to an anonymous buffer as the simplest
725139d363bSAndrea Gelmini 	 * method to avoid being overwritten by userspace.
7269df30794SChris Wilson 	 */
7279df30794SChris Wilson 	error->batchbuffer[0] = i915_error_object_create(dev, batchbuffer[0]);
728e56660ddSChris Wilson 	if (batchbuffer[1] != batchbuffer[0])
7299df30794SChris Wilson 		error->batchbuffer[1] = i915_error_object_create(dev, batchbuffer[1]);
730e56660ddSChris Wilson 	else
731e56660ddSChris Wilson 		error->batchbuffer[1] = NULL;
7329df30794SChris Wilson 
7339df30794SChris Wilson 	/* Record the ringbuffer */
7348187a2b7SZou Nan hai 	error->ringbuffer = i915_error_object_create(dev,
7358187a2b7SZou Nan hai 			dev_priv->render_ring.gem_object);
7369df30794SChris Wilson 
737c724e8a9SChris Wilson 	/* Record buffers on the active and pinned lists. */
7389df30794SChris Wilson 	error->active_bo = NULL;
739c724e8a9SChris Wilson 	error->pinned_bo = NULL;
7409df30794SChris Wilson 
741c724e8a9SChris Wilson 	error->active_bo_count = count;
742c724e8a9SChris Wilson 	list_for_each_entry(obj_priv, &dev_priv->mm.pinned_list, mm_list)
743c724e8a9SChris Wilson 		count++;
744c724e8a9SChris Wilson 	error->pinned_bo_count = count - error->active_bo_count;
745c724e8a9SChris Wilson 
746c724e8a9SChris Wilson 	if (count) {
7479df30794SChris Wilson 		error->active_bo = kmalloc(sizeof(*error->active_bo)*count,
7489df30794SChris Wilson 					   GFP_ATOMIC);
749c724e8a9SChris Wilson 		if (error->active_bo)
750c724e8a9SChris Wilson 			error->pinned_bo =
751c724e8a9SChris Wilson 				error->active_bo + error->active_bo_count;
7529df30794SChris Wilson 	}
753c724e8a9SChris Wilson 
754c724e8a9SChris Wilson 	if (error->active_bo)
755c724e8a9SChris Wilson 		error->active_bo_count =
756c724e8a9SChris Wilson 			capture_bo_list(error->active_bo,
757c724e8a9SChris Wilson 					error->active_bo_count,
758c724e8a9SChris Wilson 					&dev_priv->mm.active_list);
759c724e8a9SChris Wilson 
760c724e8a9SChris Wilson 	if (error->pinned_bo)
761c724e8a9SChris Wilson 		error->pinned_bo_count =
762c724e8a9SChris Wilson 			capture_bo_list(error->pinned_bo,
763c724e8a9SChris Wilson 					error->pinned_bo_count,
764c724e8a9SChris Wilson 					&dev_priv->mm.pinned_list);
76563eeaf38SJesse Barnes 
7668a905236SJesse Barnes 	do_gettimeofday(&error->time);
7678a905236SJesse Barnes 
7686ef3d427SChris Wilson 	error->overlay = intel_overlay_capture_error_state(dev);
769c4a1d9e4SChris Wilson 	error->display = intel_display_capture_error_state(dev);
7706ef3d427SChris Wilson 
7719df30794SChris Wilson 	spin_lock_irqsave(&dev_priv->error_lock, flags);
7729df30794SChris Wilson 	if (dev_priv->first_error == NULL) {
77363eeaf38SJesse Barnes 		dev_priv->first_error = error;
7749df30794SChris Wilson 		error = NULL;
7759df30794SChris Wilson 	}
77663eeaf38SJesse Barnes 	spin_unlock_irqrestore(&dev_priv->error_lock, flags);
7779df30794SChris Wilson 
7789df30794SChris Wilson 	if (error)
7799df30794SChris Wilson 		i915_error_state_free(dev, error);
7809df30794SChris Wilson }
7819df30794SChris Wilson 
7829df30794SChris Wilson void i915_destroy_error_state(struct drm_device *dev)
7839df30794SChris Wilson {
7849df30794SChris Wilson 	struct drm_i915_private *dev_priv = dev->dev_private;
7859df30794SChris Wilson 	struct drm_i915_error_state *error;
7869df30794SChris Wilson 
7879df30794SChris Wilson 	spin_lock(&dev_priv->error_lock);
7889df30794SChris Wilson 	error = dev_priv->first_error;
7899df30794SChris Wilson 	dev_priv->first_error = NULL;
7909df30794SChris Wilson 	spin_unlock(&dev_priv->error_lock);
7919df30794SChris Wilson 
7929df30794SChris Wilson 	if (error)
7939df30794SChris Wilson 		i915_error_state_free(dev, error);
79463eeaf38SJesse Barnes }
7953bd3c932SChris Wilson #else
7963bd3c932SChris Wilson #define i915_capture_error_state(x)
7973bd3c932SChris Wilson #endif
79863eeaf38SJesse Barnes 
79935aed2e6SChris Wilson static void i915_report_and_clear_eir(struct drm_device *dev)
800c0e09200SDave Airlie {
8018a905236SJesse Barnes 	struct drm_i915_private *dev_priv = dev->dev_private;
80263eeaf38SJesse Barnes 	u32 eir = I915_READ(EIR);
80363eeaf38SJesse Barnes 
80435aed2e6SChris Wilson 	if (!eir)
80535aed2e6SChris Wilson 		return;
80663eeaf38SJesse Barnes 
80763eeaf38SJesse Barnes 	printk(KERN_ERR "render error detected, EIR: 0x%08x\n",
80863eeaf38SJesse Barnes 	       eir);
8098a905236SJesse Barnes 
8108a905236SJesse Barnes 	if (IS_G4X(dev)) {
8118a905236SJesse Barnes 		if (eir & (GM45_ERROR_MEM_PRIV | GM45_ERROR_CP_PRIV)) {
8128a905236SJesse Barnes 			u32 ipeir = I915_READ(IPEIR_I965);
8138a905236SJesse Barnes 
8148a905236SJesse Barnes 			printk(KERN_ERR "  IPEIR: 0x%08x\n",
8158a905236SJesse Barnes 			       I915_READ(IPEIR_I965));
8168a905236SJesse Barnes 			printk(KERN_ERR "  IPEHR: 0x%08x\n",
8178a905236SJesse Barnes 			       I915_READ(IPEHR_I965));
8188a905236SJesse Barnes 			printk(KERN_ERR "  INSTDONE: 0x%08x\n",
8198a905236SJesse Barnes 			       I915_READ(INSTDONE_I965));
8208a905236SJesse Barnes 			printk(KERN_ERR "  INSTPS: 0x%08x\n",
8218a905236SJesse Barnes 			       I915_READ(INSTPS));
8228a905236SJesse Barnes 			printk(KERN_ERR "  INSTDONE1: 0x%08x\n",
8238a905236SJesse Barnes 			       I915_READ(INSTDONE1));
8248a905236SJesse Barnes 			printk(KERN_ERR "  ACTHD: 0x%08x\n",
8258a905236SJesse Barnes 			       I915_READ(ACTHD_I965));
8268a905236SJesse Barnes 			I915_WRITE(IPEIR_I965, ipeir);
8273143a2bfSChris Wilson 			POSTING_READ(IPEIR_I965);
8288a905236SJesse Barnes 		}
8298a905236SJesse Barnes 		if (eir & GM45_ERROR_PAGE_TABLE) {
8308a905236SJesse Barnes 			u32 pgtbl_err = I915_READ(PGTBL_ER);
8318a905236SJesse Barnes 			printk(KERN_ERR "page table error\n");
8328a905236SJesse Barnes 			printk(KERN_ERR "  PGTBL_ER: 0x%08x\n",
8338a905236SJesse Barnes 			       pgtbl_err);
8348a905236SJesse Barnes 			I915_WRITE(PGTBL_ER, pgtbl_err);
8353143a2bfSChris Wilson 			POSTING_READ(PGTBL_ER);
8368a905236SJesse Barnes 		}
8378a905236SJesse Barnes 	}
8388a905236SJesse Barnes 
839a6c45cf0SChris Wilson 	if (!IS_GEN2(dev)) {
84063eeaf38SJesse Barnes 		if (eir & I915_ERROR_PAGE_TABLE) {
84163eeaf38SJesse Barnes 			u32 pgtbl_err = I915_READ(PGTBL_ER);
84263eeaf38SJesse Barnes 			printk(KERN_ERR "page table error\n");
84363eeaf38SJesse Barnes 			printk(KERN_ERR "  PGTBL_ER: 0x%08x\n",
84463eeaf38SJesse Barnes 			       pgtbl_err);
84563eeaf38SJesse Barnes 			I915_WRITE(PGTBL_ER, pgtbl_err);
8463143a2bfSChris Wilson 			POSTING_READ(PGTBL_ER);
84763eeaf38SJesse Barnes 		}
8488a905236SJesse Barnes 	}
8498a905236SJesse Barnes 
85063eeaf38SJesse Barnes 	if (eir & I915_ERROR_MEMORY_REFRESH) {
85135aed2e6SChris Wilson 		u32 pipea_stats = I915_READ(PIPEASTAT);
85235aed2e6SChris Wilson 		u32 pipeb_stats = I915_READ(PIPEBSTAT);
85335aed2e6SChris Wilson 
85463eeaf38SJesse Barnes 		printk(KERN_ERR "memory refresh error\n");
85563eeaf38SJesse Barnes 		printk(KERN_ERR "PIPEASTAT: 0x%08x\n",
85663eeaf38SJesse Barnes 		       pipea_stats);
85763eeaf38SJesse Barnes 		printk(KERN_ERR "PIPEBSTAT: 0x%08x\n",
85863eeaf38SJesse Barnes 		       pipeb_stats);
85963eeaf38SJesse Barnes 		/* pipestat has already been acked */
86063eeaf38SJesse Barnes 	}
86163eeaf38SJesse Barnes 	if (eir & I915_ERROR_INSTRUCTION) {
86263eeaf38SJesse Barnes 		printk(KERN_ERR "instruction error\n");
86363eeaf38SJesse Barnes 		printk(KERN_ERR "  INSTPM: 0x%08x\n",
86463eeaf38SJesse Barnes 		       I915_READ(INSTPM));
865a6c45cf0SChris Wilson 		if (INTEL_INFO(dev)->gen < 4) {
86663eeaf38SJesse Barnes 			u32 ipeir = I915_READ(IPEIR);
86763eeaf38SJesse Barnes 
86863eeaf38SJesse Barnes 			printk(KERN_ERR "  IPEIR: 0x%08x\n",
86963eeaf38SJesse Barnes 			       I915_READ(IPEIR));
87063eeaf38SJesse Barnes 			printk(KERN_ERR "  IPEHR: 0x%08x\n",
87163eeaf38SJesse Barnes 			       I915_READ(IPEHR));
87263eeaf38SJesse Barnes 			printk(KERN_ERR "  INSTDONE: 0x%08x\n",
87363eeaf38SJesse Barnes 			       I915_READ(INSTDONE));
87463eeaf38SJesse Barnes 			printk(KERN_ERR "  ACTHD: 0x%08x\n",
87563eeaf38SJesse Barnes 			       I915_READ(ACTHD));
87663eeaf38SJesse Barnes 			I915_WRITE(IPEIR, ipeir);
8773143a2bfSChris Wilson 			POSTING_READ(IPEIR);
87863eeaf38SJesse Barnes 		} else {
87963eeaf38SJesse Barnes 			u32 ipeir = I915_READ(IPEIR_I965);
88063eeaf38SJesse Barnes 
88163eeaf38SJesse Barnes 			printk(KERN_ERR "  IPEIR: 0x%08x\n",
88263eeaf38SJesse Barnes 			       I915_READ(IPEIR_I965));
88363eeaf38SJesse Barnes 			printk(KERN_ERR "  IPEHR: 0x%08x\n",
88463eeaf38SJesse Barnes 			       I915_READ(IPEHR_I965));
88563eeaf38SJesse Barnes 			printk(KERN_ERR "  INSTDONE: 0x%08x\n",
88663eeaf38SJesse Barnes 			       I915_READ(INSTDONE_I965));
88763eeaf38SJesse Barnes 			printk(KERN_ERR "  INSTPS: 0x%08x\n",
88863eeaf38SJesse Barnes 			       I915_READ(INSTPS));
88963eeaf38SJesse Barnes 			printk(KERN_ERR "  INSTDONE1: 0x%08x\n",
89063eeaf38SJesse Barnes 			       I915_READ(INSTDONE1));
89163eeaf38SJesse Barnes 			printk(KERN_ERR "  ACTHD: 0x%08x\n",
89263eeaf38SJesse Barnes 			       I915_READ(ACTHD_I965));
89363eeaf38SJesse Barnes 			I915_WRITE(IPEIR_I965, ipeir);
8943143a2bfSChris Wilson 			POSTING_READ(IPEIR_I965);
89563eeaf38SJesse Barnes 		}
89663eeaf38SJesse Barnes 	}
89763eeaf38SJesse Barnes 
89863eeaf38SJesse Barnes 	I915_WRITE(EIR, eir);
8993143a2bfSChris Wilson 	POSTING_READ(EIR);
90063eeaf38SJesse Barnes 	eir = I915_READ(EIR);
90163eeaf38SJesse Barnes 	if (eir) {
90263eeaf38SJesse Barnes 		/*
90363eeaf38SJesse Barnes 		 * some errors might have become stuck,
90463eeaf38SJesse Barnes 		 * mask them.
90563eeaf38SJesse Barnes 		 */
90663eeaf38SJesse Barnes 		DRM_ERROR("EIR stuck: 0x%08x, masking\n", eir);
90763eeaf38SJesse Barnes 		I915_WRITE(EMR, I915_READ(EMR) | eir);
90863eeaf38SJesse Barnes 		I915_WRITE(IIR, I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT);
90963eeaf38SJesse Barnes 	}
91035aed2e6SChris Wilson }
91135aed2e6SChris Wilson 
91235aed2e6SChris Wilson /**
91335aed2e6SChris Wilson  * i915_handle_error - handle an error interrupt
91435aed2e6SChris Wilson  * @dev: drm device
91535aed2e6SChris Wilson  *
91635aed2e6SChris Wilson  * Do some basic checking of regsiter state at error interrupt time and
91735aed2e6SChris Wilson  * dump it to the syslog.  Also call i915_capture_error_state() to make
91835aed2e6SChris Wilson  * sure we get a record and make it available in debugfs.  Fire a uevent
91935aed2e6SChris Wilson  * so userspace knows something bad happened (should trigger collection
92035aed2e6SChris Wilson  * of a ring dump etc.).
92135aed2e6SChris Wilson  */
922527f9e90SChris Wilson void i915_handle_error(struct drm_device *dev, bool wedged)
92335aed2e6SChris Wilson {
92435aed2e6SChris Wilson 	struct drm_i915_private *dev_priv = dev->dev_private;
92535aed2e6SChris Wilson 
92635aed2e6SChris Wilson 	i915_capture_error_state(dev);
92735aed2e6SChris Wilson 	i915_report_and_clear_eir(dev);
9288a905236SJesse Barnes 
929ba1234d1SBen Gamari 	if (wedged) {
93030dbf0c0SChris Wilson 		INIT_COMPLETION(dev_priv->error_completion);
931ba1234d1SBen Gamari 		atomic_set(&dev_priv->mm.wedged, 1);
932ba1234d1SBen Gamari 
93311ed50ecSBen Gamari 		/*
93411ed50ecSBen Gamari 		 * Wakeup waiting processes so they don't hang
93511ed50ecSBen Gamari 		 */
936f787a5f5SChris Wilson 		wake_up_all(&dev_priv->render_ring.irq_queue);
937f787a5f5SChris Wilson 		if (HAS_BSD(dev))
938f787a5f5SChris Wilson 			wake_up_all(&dev_priv->bsd_ring.irq_queue);
939549f7365SChris Wilson 		if (HAS_BLT(dev))
940549f7365SChris Wilson 			wake_up_all(&dev_priv->blt_ring.irq_queue);
94111ed50ecSBen Gamari 	}
94211ed50ecSBen Gamari 
9439c9fe1f8SEric Anholt 	queue_work(dev_priv->wq, &dev_priv->error_work);
9448a905236SJesse Barnes }
9458a905236SJesse Barnes 
9464e5359cdSSimon Farnsworth static void i915_pageflip_stall_check(struct drm_device *dev, int pipe)
9474e5359cdSSimon Farnsworth {
9484e5359cdSSimon Farnsworth 	drm_i915_private_t *dev_priv = dev->dev_private;
9494e5359cdSSimon Farnsworth 	struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
9504e5359cdSSimon Farnsworth 	struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
9514e5359cdSSimon Farnsworth 	struct drm_i915_gem_object *obj_priv;
9524e5359cdSSimon Farnsworth 	struct intel_unpin_work *work;
9534e5359cdSSimon Farnsworth 	unsigned long flags;
9544e5359cdSSimon Farnsworth 	bool stall_detected;
9554e5359cdSSimon Farnsworth 
9564e5359cdSSimon Farnsworth 	/* Ignore early vblank irqs */
9574e5359cdSSimon Farnsworth 	if (intel_crtc == NULL)
9584e5359cdSSimon Farnsworth 		return;
9594e5359cdSSimon Farnsworth 
9604e5359cdSSimon Farnsworth 	spin_lock_irqsave(&dev->event_lock, flags);
9614e5359cdSSimon Farnsworth 	work = intel_crtc->unpin_work;
9624e5359cdSSimon Farnsworth 
9634e5359cdSSimon Farnsworth 	if (work == NULL || work->pending || !work->enable_stall_check) {
9644e5359cdSSimon Farnsworth 		/* Either the pending flip IRQ arrived, or we're too early. Don't check */
9654e5359cdSSimon Farnsworth 		spin_unlock_irqrestore(&dev->event_lock, flags);
9664e5359cdSSimon Farnsworth 		return;
9674e5359cdSSimon Farnsworth 	}
9684e5359cdSSimon Farnsworth 
9694e5359cdSSimon Farnsworth 	/* Potential stall - if we see that the flip has happened, assume a missed interrupt */
9704e5359cdSSimon Farnsworth 	obj_priv = to_intel_bo(work->pending_flip_obj);
971a6c45cf0SChris Wilson 	if (INTEL_INFO(dev)->gen >= 4) {
9724e5359cdSSimon Farnsworth 		int dspsurf = intel_crtc->plane == 0 ? DSPASURF : DSPBSURF;
9734e5359cdSSimon Farnsworth 		stall_detected = I915_READ(dspsurf) == obj_priv->gtt_offset;
9744e5359cdSSimon Farnsworth 	} else {
9754e5359cdSSimon Farnsworth 		int dspaddr = intel_crtc->plane == 0 ? DSPAADDR : DSPBADDR;
9764e5359cdSSimon Farnsworth 		stall_detected = I915_READ(dspaddr) == (obj_priv->gtt_offset +
9774e5359cdSSimon Farnsworth 							crtc->y * crtc->fb->pitch +
9784e5359cdSSimon Farnsworth 							crtc->x * crtc->fb->bits_per_pixel/8);
9794e5359cdSSimon Farnsworth 	}
9804e5359cdSSimon Farnsworth 
9814e5359cdSSimon Farnsworth 	spin_unlock_irqrestore(&dev->event_lock, flags);
9824e5359cdSSimon Farnsworth 
9834e5359cdSSimon Farnsworth 	if (stall_detected) {
9844e5359cdSSimon Farnsworth 		DRM_DEBUG_DRIVER("Pageflip stall detected\n");
9854e5359cdSSimon Farnsworth 		intel_prepare_page_flip(dev, intel_crtc->plane);
9864e5359cdSSimon Farnsworth 	}
9874e5359cdSSimon Farnsworth }
9884e5359cdSSimon Farnsworth 
9898a905236SJesse Barnes irqreturn_t i915_driver_irq_handler(DRM_IRQ_ARGS)
9908a905236SJesse Barnes {
9918a905236SJesse Barnes 	struct drm_device *dev = (struct drm_device *) arg;
9928a905236SJesse Barnes 	drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
9938a905236SJesse Barnes 	struct drm_i915_master_private *master_priv;
9948a905236SJesse Barnes 	u32 iir, new_iir;
9958a905236SJesse Barnes 	u32 pipea_stats, pipeb_stats;
9968a905236SJesse Barnes 	u32 vblank_status;
9978a905236SJesse Barnes 	int vblank = 0;
9988a905236SJesse Barnes 	unsigned long irqflags;
9998a905236SJesse Barnes 	int irq_received;
10008a905236SJesse Barnes 	int ret = IRQ_NONE;
10018a905236SJesse Barnes 
10028a905236SJesse Barnes 	atomic_inc(&dev_priv->irq_received);
10038a905236SJesse Barnes 
1004bad720ffSEric Anholt 	if (HAS_PCH_SPLIT(dev))
1005f2b115e6SAdam Jackson 		return ironlake_irq_handler(dev);
10068a905236SJesse Barnes 
10078a905236SJesse Barnes 	iir = I915_READ(IIR);
10088a905236SJesse Barnes 
1009a6c45cf0SChris Wilson 	if (INTEL_INFO(dev)->gen >= 4)
1010d874bcffSJesse Barnes 		vblank_status = PIPE_START_VBLANK_INTERRUPT_STATUS;
1011e25e6601SJesse Barnes 	else
1012d874bcffSJesse Barnes 		vblank_status = PIPE_VBLANK_INTERRUPT_STATUS;
10138a905236SJesse Barnes 
10148a905236SJesse Barnes 	for (;;) {
10158a905236SJesse Barnes 		irq_received = iir != 0;
10168a905236SJesse Barnes 
10178a905236SJesse Barnes 		/* Can't rely on pipestat interrupt bit in iir as it might
10188a905236SJesse Barnes 		 * have been cleared after the pipestat interrupt was received.
10198a905236SJesse Barnes 		 * It doesn't set the bit in iir again, but it still produces
10208a905236SJesse Barnes 		 * interrupts (for non-MSI).
10218a905236SJesse Barnes 		 */
10228a905236SJesse Barnes 		spin_lock_irqsave(&dev_priv->user_irq_lock, irqflags);
10238a905236SJesse Barnes 		pipea_stats = I915_READ(PIPEASTAT);
10248a905236SJesse Barnes 		pipeb_stats = I915_READ(PIPEBSTAT);
10258a905236SJesse Barnes 
10268a905236SJesse Barnes 		if (iir & I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT)
1027ba1234d1SBen Gamari 			i915_handle_error(dev, false);
10288a905236SJesse Barnes 
10298a905236SJesse Barnes 		/*
10308a905236SJesse Barnes 		 * Clear the PIPE(A|B)STAT regs before the IIR
10318a905236SJesse Barnes 		 */
10328a905236SJesse Barnes 		if (pipea_stats & 0x8000ffff) {
10338a905236SJesse Barnes 			if (pipea_stats &  PIPE_FIFO_UNDERRUN_STATUS)
103444d98a61SZhao Yakui 				DRM_DEBUG_DRIVER("pipe a underrun\n");
10358a905236SJesse Barnes 			I915_WRITE(PIPEASTAT, pipea_stats);
10368a905236SJesse Barnes 			irq_received = 1;
10378a905236SJesse Barnes 		}
10388a905236SJesse Barnes 
10398a905236SJesse Barnes 		if (pipeb_stats & 0x8000ffff) {
10408a905236SJesse Barnes 			if (pipeb_stats &  PIPE_FIFO_UNDERRUN_STATUS)
104144d98a61SZhao Yakui 				DRM_DEBUG_DRIVER("pipe b underrun\n");
10428a905236SJesse Barnes 			I915_WRITE(PIPEBSTAT, pipeb_stats);
10438a905236SJesse Barnes 			irq_received = 1;
10448a905236SJesse Barnes 		}
10458a905236SJesse Barnes 		spin_unlock_irqrestore(&dev_priv->user_irq_lock, irqflags);
10468a905236SJesse Barnes 
10478a905236SJesse Barnes 		if (!irq_received)
10488a905236SJesse Barnes 			break;
10498a905236SJesse Barnes 
10508a905236SJesse Barnes 		ret = IRQ_HANDLED;
10518a905236SJesse Barnes 
10528a905236SJesse Barnes 		/* Consume port.  Then clear IIR or we'll miss events */
10538a905236SJesse Barnes 		if ((I915_HAS_HOTPLUG(dev)) &&
10548a905236SJesse Barnes 		    (iir & I915_DISPLAY_PORT_INTERRUPT)) {
10558a905236SJesse Barnes 			u32 hotplug_status = I915_READ(PORT_HOTPLUG_STAT);
10568a905236SJesse Barnes 
105744d98a61SZhao Yakui 			DRM_DEBUG_DRIVER("hotplug event received, stat 0x%08x\n",
10588a905236SJesse Barnes 				  hotplug_status);
10598a905236SJesse Barnes 			if (hotplug_status & dev_priv->hotplug_supported_mask)
10609c9fe1f8SEric Anholt 				queue_work(dev_priv->wq,
10619c9fe1f8SEric Anholt 					   &dev_priv->hotplug_work);
10628a905236SJesse Barnes 
10638a905236SJesse Barnes 			I915_WRITE(PORT_HOTPLUG_STAT, hotplug_status);
10648a905236SJesse Barnes 			I915_READ(PORT_HOTPLUG_STAT);
106563eeaf38SJesse Barnes 		}
106663eeaf38SJesse Barnes 
1067673a394bSEric Anholt 		I915_WRITE(IIR, iir);
1068cdfbc41fSEric Anholt 		new_iir = I915_READ(IIR); /* Flush posted writes */
10697c463586SKeith Packard 
10707c1c2871SDave Airlie 		if (dev->primary->master) {
10717c1c2871SDave Airlie 			master_priv = dev->primary->master->driver_priv;
10727c1c2871SDave Airlie 			if (master_priv->sarea_priv)
10737c1c2871SDave Airlie 				master_priv->sarea_priv->last_dispatch =
1074c99b058fSKristian Høgsberg 					READ_BREADCRUMB(dev_priv);
10757c1c2871SDave Airlie 		}
10760a3e67a4SJesse Barnes 
1077549f7365SChris Wilson 		if (iir & I915_USER_INTERRUPT)
1078549f7365SChris Wilson 			notify_ring(dev, &dev_priv->render_ring);
1079d1b851fcSZou Nan hai 		if (HAS_BSD(dev) && (iir & I915_BSD_USER_INTERRUPT))
1080549f7365SChris Wilson 			notify_ring(dev, &dev_priv->bsd_ring);
1081d1b851fcSZou Nan hai 
10821afe3e9dSJesse Barnes 		if (iir & I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT) {
10836b95a207SKristian Høgsberg 			intel_prepare_page_flip(dev, 0);
10841afe3e9dSJesse Barnes 			if (dev_priv->flip_pending_is_done)
10851afe3e9dSJesse Barnes 				intel_finish_page_flip_plane(dev, 0);
10861afe3e9dSJesse Barnes 		}
10876b95a207SKristian Høgsberg 
10881afe3e9dSJesse Barnes 		if (iir & I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT) {
108970565d00SJesse Barnes 			intel_prepare_page_flip(dev, 1);
10901afe3e9dSJesse Barnes 			if (dev_priv->flip_pending_is_done)
10911afe3e9dSJesse Barnes 				intel_finish_page_flip_plane(dev, 1);
10921afe3e9dSJesse Barnes 		}
10936b95a207SKristian Høgsberg 
109405eff845SKeith Packard 		if (pipea_stats & vblank_status) {
10957c463586SKeith Packard 			vblank++;
10967c463586SKeith Packard 			drm_handle_vblank(dev, 0);
10974e5359cdSSimon Farnsworth 			if (!dev_priv->flip_pending_is_done) {
10984e5359cdSSimon Farnsworth 				i915_pageflip_stall_check(dev, 0);
10996b95a207SKristian Høgsberg 				intel_finish_page_flip(dev, 0);
11007c463586SKeith Packard 			}
11014e5359cdSSimon Farnsworth 		}
11027c463586SKeith Packard 
110305eff845SKeith Packard 		if (pipeb_stats & vblank_status) {
11047c463586SKeith Packard 			vblank++;
11057c463586SKeith Packard 			drm_handle_vblank(dev, 1);
11064e5359cdSSimon Farnsworth 			if (!dev_priv->flip_pending_is_done) {
11074e5359cdSSimon Farnsworth 				i915_pageflip_stall_check(dev, 1);
11086b95a207SKristian Høgsberg 				intel_finish_page_flip(dev, 1);
11097c463586SKeith Packard 			}
11104e5359cdSSimon Farnsworth 		}
11117c463586SKeith Packard 
1112d874bcffSJesse Barnes 		if ((pipea_stats & PIPE_LEGACY_BLC_EVENT_STATUS) ||
1113d874bcffSJesse Barnes 		    (pipeb_stats & PIPE_LEGACY_BLC_EVENT_STATUS) ||
11147c463586SKeith Packard 		    (iir & I915_ASLE_INTERRUPT))
11153b617967SChris Wilson 			intel_opregion_asle_intr(dev);
11160a3e67a4SJesse Barnes 
1117cdfbc41fSEric Anholt 		/* With MSI, interrupts are only generated when iir
1118cdfbc41fSEric Anholt 		 * transitions from zero to nonzero.  If another bit got
1119cdfbc41fSEric Anholt 		 * set while we were handling the existing iir bits, then
1120cdfbc41fSEric Anholt 		 * we would never get another interrupt.
1121cdfbc41fSEric Anholt 		 *
1122cdfbc41fSEric Anholt 		 * This is fine on non-MSI as well, as if we hit this path
1123cdfbc41fSEric Anholt 		 * we avoid exiting the interrupt handler only to generate
1124cdfbc41fSEric Anholt 		 * another one.
1125cdfbc41fSEric Anholt 		 *
1126cdfbc41fSEric Anholt 		 * Note that for MSI this could cause a stray interrupt report
1127cdfbc41fSEric Anholt 		 * if an interrupt landed in the time between writing IIR and
1128cdfbc41fSEric Anholt 		 * the posting read.  This should be rare enough to never
1129cdfbc41fSEric Anholt 		 * trigger the 99% of 100,000 interrupts test for disabling
1130cdfbc41fSEric Anholt 		 * stray interrupts.
1131cdfbc41fSEric Anholt 		 */
1132cdfbc41fSEric Anholt 		iir = new_iir;
113305eff845SKeith Packard 	}
1134cdfbc41fSEric Anholt 
113505eff845SKeith Packard 	return ret;
1136c0e09200SDave Airlie }
1137c0e09200SDave Airlie 
1138c0e09200SDave Airlie static int i915_emit_irq(struct drm_device * dev)
1139c0e09200SDave Airlie {
1140c0e09200SDave Airlie 	drm_i915_private_t *dev_priv = dev->dev_private;
11417c1c2871SDave Airlie 	struct drm_i915_master_private *master_priv = dev->primary->master->driver_priv;
1142c0e09200SDave Airlie 
1143c0e09200SDave Airlie 	i915_kernel_lost_context(dev);
1144c0e09200SDave Airlie 
114544d98a61SZhao Yakui 	DRM_DEBUG_DRIVER("\n");
1146c0e09200SDave Airlie 
1147c99b058fSKristian Høgsberg 	dev_priv->counter++;
1148c0e09200SDave Airlie 	if (dev_priv->counter > 0x7FFFFFFFUL)
1149c99b058fSKristian Høgsberg 		dev_priv->counter = 1;
11507c1c2871SDave Airlie 	if (master_priv->sarea_priv)
11517c1c2871SDave Airlie 		master_priv->sarea_priv->last_enqueue = dev_priv->counter;
1152c0e09200SDave Airlie 
1153e1f99ce6SChris Wilson 	if (BEGIN_LP_RING(4) == 0) {
1154585fb111SJesse Barnes 		OUT_RING(MI_STORE_DWORD_INDEX);
11550baf823aSKeith Packard 		OUT_RING(I915_BREADCRUMB_INDEX << MI_STORE_DWORD_INDEX_SHIFT);
1156c0e09200SDave Airlie 		OUT_RING(dev_priv->counter);
1157585fb111SJesse Barnes 		OUT_RING(MI_USER_INTERRUPT);
1158c0e09200SDave Airlie 		ADVANCE_LP_RING();
1159e1f99ce6SChris Wilson 	}
1160c0e09200SDave Airlie 
1161c0e09200SDave Airlie 	return dev_priv->counter;
1162c0e09200SDave Airlie }
1163c0e09200SDave Airlie 
11649d34e5dbSChris Wilson void i915_trace_irq_get(struct drm_device *dev, u32 seqno)
11659d34e5dbSChris Wilson {
11669d34e5dbSChris Wilson 	drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
11678187a2b7SZou Nan hai 	struct intel_ring_buffer *render_ring = &dev_priv->render_ring;
11689d34e5dbSChris Wilson 
11699d34e5dbSChris Wilson 	if (dev_priv->trace_irq_seqno == 0)
117078501eacSChris Wilson 		render_ring->user_irq_get(render_ring);
11719d34e5dbSChris Wilson 
11729d34e5dbSChris Wilson 	dev_priv->trace_irq_seqno = seqno;
11739d34e5dbSChris Wilson }
11749d34e5dbSChris Wilson 
1175c0e09200SDave Airlie static int i915_wait_irq(struct drm_device * dev, int irq_nr)
1176c0e09200SDave Airlie {
1177c0e09200SDave Airlie 	drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
11787c1c2871SDave Airlie 	struct drm_i915_master_private *master_priv = dev->primary->master->driver_priv;
1179c0e09200SDave Airlie 	int ret = 0;
11808187a2b7SZou Nan hai 	struct intel_ring_buffer *render_ring = &dev_priv->render_ring;
1181c0e09200SDave Airlie 
118244d98a61SZhao Yakui 	DRM_DEBUG_DRIVER("irq_nr=%d breadcrumb=%d\n", irq_nr,
1183c0e09200SDave Airlie 		  READ_BREADCRUMB(dev_priv));
1184c0e09200SDave Airlie 
1185ed4cb414SEric Anholt 	if (READ_BREADCRUMB(dev_priv) >= irq_nr) {
11867c1c2871SDave Airlie 		if (master_priv->sarea_priv)
11877c1c2871SDave Airlie 			master_priv->sarea_priv->last_dispatch = READ_BREADCRUMB(dev_priv);
1188c0e09200SDave Airlie 		return 0;
1189ed4cb414SEric Anholt 	}
1190c0e09200SDave Airlie 
11917c1c2871SDave Airlie 	if (master_priv->sarea_priv)
11927c1c2871SDave Airlie 		master_priv->sarea_priv->perf_boxes |= I915_BOX_WAIT;
1193c0e09200SDave Airlie 
119478501eacSChris Wilson 	render_ring->user_irq_get(render_ring);
1195852835f3SZou Nan hai 	DRM_WAIT_ON(ret, dev_priv->render_ring.irq_queue, 3 * DRM_HZ,
1196c0e09200SDave Airlie 		    READ_BREADCRUMB(dev_priv) >= irq_nr);
119778501eacSChris Wilson 	render_ring->user_irq_put(render_ring);
1198c0e09200SDave Airlie 
1199c0e09200SDave Airlie 	if (ret == -EBUSY) {
1200c0e09200SDave Airlie 		DRM_ERROR("EBUSY -- rec: %d emitted: %d\n",
1201c0e09200SDave Airlie 			  READ_BREADCRUMB(dev_priv), (int)dev_priv->counter);
1202c0e09200SDave Airlie 	}
1203c0e09200SDave Airlie 
1204c0e09200SDave Airlie 	return ret;
1205c0e09200SDave Airlie }
1206c0e09200SDave Airlie 
1207c0e09200SDave Airlie /* Needs the lock as it touches the ring.
1208c0e09200SDave Airlie  */
1209c0e09200SDave Airlie int i915_irq_emit(struct drm_device *dev, void *data,
1210c0e09200SDave Airlie 			 struct drm_file *file_priv)
1211c0e09200SDave Airlie {
1212c0e09200SDave Airlie 	drm_i915_private_t *dev_priv = dev->dev_private;
1213c0e09200SDave Airlie 	drm_i915_irq_emit_t *emit = data;
1214c0e09200SDave Airlie 	int result;
1215c0e09200SDave Airlie 
1216d3301d86SEric Anholt 	if (!dev_priv || !dev_priv->render_ring.virtual_start) {
1217c0e09200SDave Airlie 		DRM_ERROR("called with no initialization\n");
1218c0e09200SDave Airlie 		return -EINVAL;
1219c0e09200SDave Airlie 	}
1220299eb93cSEric Anholt 
1221299eb93cSEric Anholt 	RING_LOCK_TEST_WITH_RETURN(dev, file_priv);
1222299eb93cSEric Anholt 
1223546b0974SEric Anholt 	mutex_lock(&dev->struct_mutex);
1224c0e09200SDave Airlie 	result = i915_emit_irq(dev);
1225546b0974SEric Anholt 	mutex_unlock(&dev->struct_mutex);
1226c0e09200SDave Airlie 
1227c0e09200SDave Airlie 	if (DRM_COPY_TO_USER(emit->irq_seq, &result, sizeof(int))) {
1228c0e09200SDave Airlie 		DRM_ERROR("copy_to_user\n");
1229c0e09200SDave Airlie 		return -EFAULT;
1230c0e09200SDave Airlie 	}
1231c0e09200SDave Airlie 
1232c0e09200SDave Airlie 	return 0;
1233c0e09200SDave Airlie }
1234c0e09200SDave Airlie 
1235c0e09200SDave Airlie /* Doesn't need the hardware lock.
1236c0e09200SDave Airlie  */
1237c0e09200SDave Airlie int i915_irq_wait(struct drm_device *dev, void *data,
1238c0e09200SDave Airlie 			 struct drm_file *file_priv)
1239c0e09200SDave Airlie {
1240c0e09200SDave Airlie 	drm_i915_private_t *dev_priv = dev->dev_private;
1241c0e09200SDave Airlie 	drm_i915_irq_wait_t *irqwait = data;
1242c0e09200SDave Airlie 
1243c0e09200SDave Airlie 	if (!dev_priv) {
1244c0e09200SDave Airlie 		DRM_ERROR("called with no initialization\n");
1245c0e09200SDave Airlie 		return -EINVAL;
1246c0e09200SDave Airlie 	}
1247c0e09200SDave Airlie 
1248c0e09200SDave Airlie 	return i915_wait_irq(dev, irqwait->irq_seq);
1249c0e09200SDave Airlie }
1250c0e09200SDave Airlie 
125142f52ef8SKeith Packard /* Called from drm generic code, passed 'crtc' which
125242f52ef8SKeith Packard  * we use as a pipe index
125342f52ef8SKeith Packard  */
125442f52ef8SKeith Packard int i915_enable_vblank(struct drm_device *dev, int pipe)
12550a3e67a4SJesse Barnes {
12560a3e67a4SJesse Barnes 	drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
1257e9d21d7fSKeith Packard 	unsigned long irqflags;
125871e0ffa5SJesse Barnes 
12595eddb70bSChris Wilson 	if (!i915_pipe_enabled(dev, pipe))
126071e0ffa5SJesse Barnes 		return -EINVAL;
12610a3e67a4SJesse Barnes 
1262e9d21d7fSKeith Packard 	spin_lock_irqsave(&dev_priv->user_irq_lock, irqflags);
1263bad720ffSEric Anholt 	if (HAS_PCH_SPLIT(dev))
1264c062df61SLi Peng 		ironlake_enable_display_irq(dev_priv, (pipe == 0) ?
1265c062df61SLi Peng 					    DE_PIPEA_VBLANK: DE_PIPEB_VBLANK);
1266a6c45cf0SChris Wilson 	else if (INTEL_INFO(dev)->gen >= 4)
12677c463586SKeith Packard 		i915_enable_pipestat(dev_priv, pipe,
12687c463586SKeith Packard 				     PIPE_START_VBLANK_INTERRUPT_ENABLE);
12690a3e67a4SJesse Barnes 	else
12707c463586SKeith Packard 		i915_enable_pipestat(dev_priv, pipe,
12717c463586SKeith Packard 				     PIPE_VBLANK_INTERRUPT_ENABLE);
1272e9d21d7fSKeith Packard 	spin_unlock_irqrestore(&dev_priv->user_irq_lock, irqflags);
12730a3e67a4SJesse Barnes 	return 0;
12740a3e67a4SJesse Barnes }
12750a3e67a4SJesse Barnes 
127642f52ef8SKeith Packard /* Called from drm generic code, passed 'crtc' which
127742f52ef8SKeith Packard  * we use as a pipe index
127842f52ef8SKeith Packard  */
127942f52ef8SKeith Packard void i915_disable_vblank(struct drm_device *dev, int pipe)
12800a3e67a4SJesse Barnes {
12810a3e67a4SJesse Barnes 	drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
1282e9d21d7fSKeith Packard 	unsigned long irqflags;
12830a3e67a4SJesse Barnes 
1284e9d21d7fSKeith Packard 	spin_lock_irqsave(&dev_priv->user_irq_lock, irqflags);
1285bad720ffSEric Anholt 	if (HAS_PCH_SPLIT(dev))
1286c062df61SLi Peng 		ironlake_disable_display_irq(dev_priv, (pipe == 0) ?
1287c062df61SLi Peng 					     DE_PIPEA_VBLANK: DE_PIPEB_VBLANK);
1288c062df61SLi Peng 	else
12897c463586SKeith Packard 		i915_disable_pipestat(dev_priv, pipe,
12907c463586SKeith Packard 				      PIPE_VBLANK_INTERRUPT_ENABLE |
12917c463586SKeith Packard 				      PIPE_START_VBLANK_INTERRUPT_ENABLE);
1292e9d21d7fSKeith Packard 	spin_unlock_irqrestore(&dev_priv->user_irq_lock, irqflags);
12930a3e67a4SJesse Barnes }
12940a3e67a4SJesse Barnes 
129579e53945SJesse Barnes void i915_enable_interrupt (struct drm_device *dev)
129679e53945SJesse Barnes {
129779e53945SJesse Barnes 	struct drm_i915_private *dev_priv = dev->dev_private;
1298e170b030SZhenyu Wang 
1299bad720ffSEric Anholt 	if (!HAS_PCH_SPLIT(dev))
13003b617967SChris Wilson 		intel_opregion_enable_asle(dev);
130179e53945SJesse Barnes 	dev_priv->irq_enabled = 1;
130279e53945SJesse Barnes }
130379e53945SJesse Barnes 
130479e53945SJesse Barnes 
1305c0e09200SDave Airlie /* Set the vblank monitor pipe
1306c0e09200SDave Airlie  */
1307c0e09200SDave Airlie int i915_vblank_pipe_set(struct drm_device *dev, void *data,
1308c0e09200SDave Airlie 			 struct drm_file *file_priv)
1309c0e09200SDave Airlie {
1310c0e09200SDave Airlie 	drm_i915_private_t *dev_priv = dev->dev_private;
1311c0e09200SDave Airlie 
1312c0e09200SDave Airlie 	if (!dev_priv) {
1313c0e09200SDave Airlie 		DRM_ERROR("called with no initialization\n");
1314c0e09200SDave Airlie 		return -EINVAL;
1315c0e09200SDave Airlie 	}
1316c0e09200SDave Airlie 
1317c0e09200SDave Airlie 	return 0;
1318c0e09200SDave Airlie }
1319c0e09200SDave Airlie 
1320c0e09200SDave Airlie int i915_vblank_pipe_get(struct drm_device *dev, void *data,
1321c0e09200SDave Airlie 			 struct drm_file *file_priv)
1322c0e09200SDave Airlie {
1323c0e09200SDave Airlie 	drm_i915_private_t *dev_priv = dev->dev_private;
1324c0e09200SDave Airlie 	drm_i915_vblank_pipe_t *pipe = data;
1325c0e09200SDave Airlie 
1326c0e09200SDave Airlie 	if (!dev_priv) {
1327c0e09200SDave Airlie 		DRM_ERROR("called with no initialization\n");
1328c0e09200SDave Airlie 		return -EINVAL;
1329c0e09200SDave Airlie 	}
1330c0e09200SDave Airlie 
13310a3e67a4SJesse Barnes 	pipe->pipe = DRM_I915_VBLANK_PIPE_A | DRM_I915_VBLANK_PIPE_B;
1332c0e09200SDave Airlie 
1333c0e09200SDave Airlie 	return 0;
1334c0e09200SDave Airlie }
1335c0e09200SDave Airlie 
1336c0e09200SDave Airlie /**
1337c0e09200SDave Airlie  * Schedule buffer swap at given vertical blank.
1338c0e09200SDave Airlie  */
1339c0e09200SDave Airlie int i915_vblank_swap(struct drm_device *dev, void *data,
1340c0e09200SDave Airlie 		     struct drm_file *file_priv)
1341c0e09200SDave Airlie {
1342bd95e0a4SEric Anholt 	/* The delayed swap mechanism was fundamentally racy, and has been
1343bd95e0a4SEric Anholt 	 * removed.  The model was that the client requested a delayed flip/swap
1344bd95e0a4SEric Anholt 	 * from the kernel, then waited for vblank before continuing to perform
1345bd95e0a4SEric Anholt 	 * rendering.  The problem was that the kernel might wake the client
1346bd95e0a4SEric Anholt 	 * up before it dispatched the vblank swap (since the lock has to be
1347bd95e0a4SEric Anholt 	 * held while touching the ringbuffer), in which case the client would
1348bd95e0a4SEric Anholt 	 * clear and start the next frame before the swap occurred, and
1349bd95e0a4SEric Anholt 	 * flicker would occur in addition to likely missing the vblank.
1350bd95e0a4SEric Anholt 	 *
1351bd95e0a4SEric Anholt 	 * In the absence of this ioctl, userland falls back to a correct path
1352bd95e0a4SEric Anholt 	 * of waiting for a vblank, then dispatching the swap on its own.
1353bd95e0a4SEric Anholt 	 * Context switching to userland and back is plenty fast enough for
1354bd95e0a4SEric Anholt 	 * meeting the requirements of vblank swapping.
13550a3e67a4SJesse Barnes 	 */
1356c0e09200SDave Airlie 	return -EINVAL;
1357c0e09200SDave Airlie }
1358c0e09200SDave Airlie 
1359893eead0SChris Wilson static u32
1360893eead0SChris Wilson ring_last_seqno(struct intel_ring_buffer *ring)
1361852835f3SZou Nan hai {
1362893eead0SChris Wilson 	return list_entry(ring->request_list.prev,
1363893eead0SChris Wilson 			  struct drm_i915_gem_request, list)->seqno;
1364893eead0SChris Wilson }
1365893eead0SChris Wilson 
1366893eead0SChris Wilson static bool i915_hangcheck_ring_idle(struct intel_ring_buffer *ring, bool *err)
1367893eead0SChris Wilson {
1368893eead0SChris Wilson 	if (list_empty(&ring->request_list) ||
1369893eead0SChris Wilson 	    i915_seqno_passed(ring->get_seqno(ring), ring_last_seqno(ring))) {
1370893eead0SChris Wilson 		/* Issue a wake-up to catch stuck h/w. */
1371b2223497SChris Wilson 		if (ring->waiting_seqno && waitqueue_active(&ring->irq_queue)) {
1372893eead0SChris Wilson 			DRM_ERROR("Hangcheck timer elapsed... %s idle [waiting on %d, at %d], missed IRQ?\n",
1373893eead0SChris Wilson 				  ring->name,
1374b2223497SChris Wilson 				  ring->waiting_seqno,
1375893eead0SChris Wilson 				  ring->get_seqno(ring));
1376893eead0SChris Wilson 			wake_up_all(&ring->irq_queue);
1377893eead0SChris Wilson 			*err = true;
1378893eead0SChris Wilson 		}
1379893eead0SChris Wilson 		return true;
1380893eead0SChris Wilson 	}
1381893eead0SChris Wilson 	return false;
1382f65d9421SBen Gamari }
1383f65d9421SBen Gamari 
1384f65d9421SBen Gamari /**
1385f65d9421SBen Gamari  * This is called when the chip hasn't reported back with completed
1386f65d9421SBen Gamari  * batchbuffers in a long time. The first time this is called we simply record
1387f65d9421SBen Gamari  * ACTHD. If ACTHD hasn't changed by the time the hangcheck timer elapses
1388f65d9421SBen Gamari  * again, we assume the chip is wedged and try to fix it.
1389f65d9421SBen Gamari  */
1390f65d9421SBen Gamari void i915_hangcheck_elapsed(unsigned long data)
1391f65d9421SBen Gamari {
1392f65d9421SBen Gamari 	struct drm_device *dev = (struct drm_device *)data;
1393f65d9421SBen Gamari 	drm_i915_private_t *dev_priv = dev->dev_private;
1394cbb465e7SChris Wilson 	uint32_t acthd, instdone, instdone1;
1395893eead0SChris Wilson 	bool err = false;
1396893eead0SChris Wilson 
1397893eead0SChris Wilson 	/* If all work is done then ACTHD clearly hasn't advanced. */
1398893eead0SChris Wilson 	if (i915_hangcheck_ring_idle(&dev_priv->render_ring, &err) &&
1399893eead0SChris Wilson 	    i915_hangcheck_ring_idle(&dev_priv->bsd_ring, &err) &&
1400893eead0SChris Wilson 	    i915_hangcheck_ring_idle(&dev_priv->blt_ring, &err)) {
1401893eead0SChris Wilson 		dev_priv->hangcheck_count = 0;
1402893eead0SChris Wilson 		if (err)
1403893eead0SChris Wilson 			goto repeat;
1404893eead0SChris Wilson 		return;
1405893eead0SChris Wilson 	}
1406f65d9421SBen Gamari 
1407a6c45cf0SChris Wilson 	if (INTEL_INFO(dev)->gen < 4) {
1408f65d9421SBen Gamari 		acthd = I915_READ(ACTHD);
1409cbb465e7SChris Wilson 		instdone = I915_READ(INSTDONE);
1410cbb465e7SChris Wilson 		instdone1 = 0;
1411cbb465e7SChris Wilson 	} else {
1412f65d9421SBen Gamari 		acthd = I915_READ(ACTHD_I965);
1413cbb465e7SChris Wilson 		instdone = I915_READ(INSTDONE_I965);
1414cbb465e7SChris Wilson 		instdone1 = I915_READ(INSTDONE1);
1415cbb465e7SChris Wilson 	}
1416f65d9421SBen Gamari 
1417cbb465e7SChris Wilson 	if (dev_priv->last_acthd == acthd &&
1418cbb465e7SChris Wilson 	    dev_priv->last_instdone == instdone &&
1419cbb465e7SChris Wilson 	    dev_priv->last_instdone1 == instdone1) {
1420cbb465e7SChris Wilson 		if (dev_priv->hangcheck_count++ > 1) {
1421f65d9421SBen Gamari 			DRM_ERROR("Hangcheck timer elapsed... GPU hung\n");
14228c80b59bSChris Wilson 
14238c80b59bSChris Wilson 			if (!IS_GEN2(dev)) {
14248c80b59bSChris Wilson 				/* Is the chip hanging on a WAIT_FOR_EVENT?
14258c80b59bSChris Wilson 				 * If so we can simply poke the RB_WAIT bit
14268c80b59bSChris Wilson 				 * and break the hang. This should work on
14278c80b59bSChris Wilson 				 * all but the second generation chipsets.
14288c80b59bSChris Wilson 				 */
14298168bd48SChris Wilson 				struct intel_ring_buffer *ring = &dev_priv->render_ring;
14308168bd48SChris Wilson 				u32 tmp = I915_READ_CTL(ring);
14318c80b59bSChris Wilson 				if (tmp & RING_WAIT) {
14328168bd48SChris Wilson 					I915_WRITE_CTL(ring, tmp);
1433893eead0SChris Wilson 					goto repeat;
14348c80b59bSChris Wilson 				}
14358c80b59bSChris Wilson 			}
14368c80b59bSChris Wilson 
1437ba1234d1SBen Gamari 			i915_handle_error(dev, true);
1438f65d9421SBen Gamari 			return;
1439f65d9421SBen Gamari 		}
1440cbb465e7SChris Wilson 	} else {
1441cbb465e7SChris Wilson 		dev_priv->hangcheck_count = 0;
1442cbb465e7SChris Wilson 
1443cbb465e7SChris Wilson 		dev_priv->last_acthd = acthd;
1444cbb465e7SChris Wilson 		dev_priv->last_instdone = instdone;
1445cbb465e7SChris Wilson 		dev_priv->last_instdone1 = instdone1;
1446cbb465e7SChris Wilson 	}
1447f65d9421SBen Gamari 
1448893eead0SChris Wilson repeat:
1449f65d9421SBen Gamari 	/* Reset timer case chip hangs without another request being added */
1450b3b079dbSChris Wilson 	mod_timer(&dev_priv->hangcheck_timer,
1451b3b079dbSChris Wilson 		  jiffies + msecs_to_jiffies(DRM_I915_HANGCHECK_PERIOD));
1452f65d9421SBen Gamari }
1453f65d9421SBen Gamari 
1454c0e09200SDave Airlie /* drm_dma.h hooks
1455c0e09200SDave Airlie */
1456f2b115e6SAdam Jackson static void ironlake_irq_preinstall(struct drm_device *dev)
1457036a4a7dSZhenyu Wang {
1458036a4a7dSZhenyu Wang 	drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
1459036a4a7dSZhenyu Wang 
1460036a4a7dSZhenyu Wang 	I915_WRITE(HWSTAM, 0xeffe);
1461036a4a7dSZhenyu Wang 
1462036a4a7dSZhenyu Wang 	/* XXX hotplug from PCH */
1463036a4a7dSZhenyu Wang 
1464036a4a7dSZhenyu Wang 	I915_WRITE(DEIMR, 0xffffffff);
1465036a4a7dSZhenyu Wang 	I915_WRITE(DEIER, 0x0);
14663143a2bfSChris Wilson 	POSTING_READ(DEIER);
1467036a4a7dSZhenyu Wang 
1468036a4a7dSZhenyu Wang 	/* and GT */
1469036a4a7dSZhenyu Wang 	I915_WRITE(GTIMR, 0xffffffff);
1470036a4a7dSZhenyu Wang 	I915_WRITE(GTIER, 0x0);
14713143a2bfSChris Wilson 	POSTING_READ(GTIER);
1472c650156aSZhenyu Wang 
1473c650156aSZhenyu Wang 	/* south display irq */
1474c650156aSZhenyu Wang 	I915_WRITE(SDEIMR, 0xffffffff);
1475c650156aSZhenyu Wang 	I915_WRITE(SDEIER, 0x0);
14763143a2bfSChris Wilson 	POSTING_READ(SDEIER);
1477036a4a7dSZhenyu Wang }
1478036a4a7dSZhenyu Wang 
1479f2b115e6SAdam Jackson static int ironlake_irq_postinstall(struct drm_device *dev)
1480036a4a7dSZhenyu Wang {
1481036a4a7dSZhenyu Wang 	drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
1482036a4a7dSZhenyu Wang 	/* enable kind of interrupts always enabled */
1483013d5aa2SJesse Barnes 	u32 display_mask = DE_MASTER_IRQ_CONTROL | DE_GSE | DE_PCH_EVENT |
1484013d5aa2SJesse Barnes 			   DE_PLANEA_FLIP_DONE | DE_PLANEB_FLIP_DONE;
1485d1b851fcSZou Nan hai 	u32 render_mask = GT_PIPE_NOTIFY | GT_BSD_USER_INTERRUPT;
14862d7b8366SYuanhan Liu 	u32 hotplug_mask;
1487036a4a7dSZhenyu Wang 
1488036a4a7dSZhenyu Wang 	dev_priv->irq_mask_reg = ~display_mask;
1489643ced9bSLi Peng 	dev_priv->de_irq_enable_reg = display_mask | DE_PIPEA_VBLANK | DE_PIPEB_VBLANK;
1490036a4a7dSZhenyu Wang 
1491036a4a7dSZhenyu Wang 	/* should always can generate irq */
1492036a4a7dSZhenyu Wang 	I915_WRITE(DEIIR, I915_READ(DEIIR));
1493036a4a7dSZhenyu Wang 	I915_WRITE(DEIMR, dev_priv->irq_mask_reg);
1494036a4a7dSZhenyu Wang 	I915_WRITE(DEIER, dev_priv->de_irq_enable_reg);
14953143a2bfSChris Wilson 	POSTING_READ(DEIER);
1496036a4a7dSZhenyu Wang 
1497549f7365SChris Wilson 	if (IS_GEN6(dev)) {
1498549f7365SChris Wilson 		render_mask =
1499549f7365SChris Wilson 			GT_PIPE_NOTIFY |
1500549f7365SChris Wilson 			GT_GEN6_BSD_USER_INTERRUPT |
1501549f7365SChris Wilson 			GT_BLT_USER_INTERRUPT;
1502549f7365SChris Wilson 	}
15033fdef020SZhenyu Wang 
1504852835f3SZou Nan hai 	dev_priv->gt_irq_mask_reg = ~render_mask;
1505036a4a7dSZhenyu Wang 	dev_priv->gt_irq_enable_reg = render_mask;
1506036a4a7dSZhenyu Wang 
1507036a4a7dSZhenyu Wang 	I915_WRITE(GTIIR, I915_READ(GTIIR));
1508036a4a7dSZhenyu Wang 	I915_WRITE(GTIMR, dev_priv->gt_irq_mask_reg);
1509881f47b6SXiang, Haihao 	if (IS_GEN6(dev)) {
15103fdef020SZhenyu Wang 		I915_WRITE(GEN6_RENDER_IMR, ~GEN6_RENDER_PIPE_CONTROL_NOTIFY_INTERRUPT);
1511881f47b6SXiang, Haihao 		I915_WRITE(GEN6_BSD_IMR, ~GEN6_BSD_IMR_USER_INTERRUPT);
1512549f7365SChris Wilson 		I915_WRITE(GEN6_BLITTER_IMR, ~GEN6_BLITTER_USER_INTERRUPT);
1513881f47b6SXiang, Haihao 	}
1514881f47b6SXiang, Haihao 
1515036a4a7dSZhenyu Wang 	I915_WRITE(GTIER, dev_priv->gt_irq_enable_reg);
15163143a2bfSChris Wilson 	POSTING_READ(GTIER);
1517036a4a7dSZhenyu Wang 
15182d7b8366SYuanhan Liu 	if (HAS_PCH_CPT(dev)) {
15192d7b8366SYuanhan Liu 		hotplug_mask = SDE_CRT_HOTPLUG_CPT | SDE_PORTB_HOTPLUG_CPT  |
15202d7b8366SYuanhan Liu 			       SDE_PORTC_HOTPLUG_CPT | SDE_PORTD_HOTPLUG_CPT ;
15212d7b8366SYuanhan Liu 	} else {
15222d7b8366SYuanhan Liu 		hotplug_mask = SDE_CRT_HOTPLUG | SDE_PORTB_HOTPLUG |
15232d7b8366SYuanhan Liu 			       SDE_PORTC_HOTPLUG | SDE_PORTD_HOTPLUG;
15242d7b8366SYuanhan Liu 	}
15252d7b8366SYuanhan Liu 
1526c650156aSZhenyu Wang 	dev_priv->pch_irq_mask_reg = ~hotplug_mask;
1527c650156aSZhenyu Wang 	dev_priv->pch_irq_enable_reg = hotplug_mask;
1528c650156aSZhenyu Wang 
1529c650156aSZhenyu Wang 	I915_WRITE(SDEIIR, I915_READ(SDEIIR));
1530c650156aSZhenyu Wang 	I915_WRITE(SDEIMR, dev_priv->pch_irq_mask_reg);
1531c650156aSZhenyu Wang 	I915_WRITE(SDEIER, dev_priv->pch_irq_enable_reg);
15323143a2bfSChris Wilson 	POSTING_READ(SDEIER);
1533c650156aSZhenyu Wang 
1534f97108d1SJesse Barnes 	if (IS_IRONLAKE_M(dev)) {
1535f97108d1SJesse Barnes 		/* Clear & enable PCU event interrupts */
1536f97108d1SJesse Barnes 		I915_WRITE(DEIIR, DE_PCU_EVENT);
1537f97108d1SJesse Barnes 		I915_WRITE(DEIER, I915_READ(DEIER) | DE_PCU_EVENT);
1538f97108d1SJesse Barnes 		ironlake_enable_display_irq(dev_priv, DE_PCU_EVENT);
1539f97108d1SJesse Barnes 	}
1540f97108d1SJesse Barnes 
1541036a4a7dSZhenyu Wang 	return 0;
1542036a4a7dSZhenyu Wang }
1543036a4a7dSZhenyu Wang 
1544c0e09200SDave Airlie void i915_driver_irq_preinstall(struct drm_device * dev)
1545c0e09200SDave Airlie {
1546c0e09200SDave Airlie 	drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
1547c0e09200SDave Airlie 
154879e53945SJesse Barnes 	atomic_set(&dev_priv->irq_received, 0);
154979e53945SJesse Barnes 
1550036a4a7dSZhenyu Wang 	INIT_WORK(&dev_priv->hotplug_work, i915_hotplug_work_func);
15518a905236SJesse Barnes 	INIT_WORK(&dev_priv->error_work, i915_error_work_func);
1552036a4a7dSZhenyu Wang 
1553bad720ffSEric Anholt 	if (HAS_PCH_SPLIT(dev)) {
1554f2b115e6SAdam Jackson 		ironlake_irq_preinstall(dev);
1555036a4a7dSZhenyu Wang 		return;
1556036a4a7dSZhenyu Wang 	}
1557036a4a7dSZhenyu Wang 
15585ca58282SJesse Barnes 	if (I915_HAS_HOTPLUG(dev)) {
15595ca58282SJesse Barnes 		I915_WRITE(PORT_HOTPLUG_EN, 0);
15605ca58282SJesse Barnes 		I915_WRITE(PORT_HOTPLUG_STAT, I915_READ(PORT_HOTPLUG_STAT));
15615ca58282SJesse Barnes 	}
15625ca58282SJesse Barnes 
15630a3e67a4SJesse Barnes 	I915_WRITE(HWSTAM, 0xeffe);
15647c463586SKeith Packard 	I915_WRITE(PIPEASTAT, 0);
15657c463586SKeith Packard 	I915_WRITE(PIPEBSTAT, 0);
15660a3e67a4SJesse Barnes 	I915_WRITE(IMR, 0xffffffff);
1567ed4cb414SEric Anholt 	I915_WRITE(IER, 0x0);
15683143a2bfSChris Wilson 	POSTING_READ(IER);
1569c0e09200SDave Airlie }
1570c0e09200SDave Airlie 
1571b01f2c3aSJesse Barnes /*
1572b01f2c3aSJesse Barnes  * Must be called after intel_modeset_init or hotplug interrupts won't be
1573b01f2c3aSJesse Barnes  * enabled correctly.
1574b01f2c3aSJesse Barnes  */
15750a3e67a4SJesse Barnes int i915_driver_irq_postinstall(struct drm_device *dev)
1576c0e09200SDave Airlie {
1577c0e09200SDave Airlie 	drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
15785ca58282SJesse Barnes 	u32 enable_mask = I915_INTERRUPT_ENABLE_FIX | I915_INTERRUPT_ENABLE_VAR;
157963eeaf38SJesse Barnes 	u32 error_mask;
15800a3e67a4SJesse Barnes 
1581852835f3SZou Nan hai 	DRM_INIT_WAITQUEUE(&dev_priv->render_ring.irq_queue);
1582d1b851fcSZou Nan hai 	if (HAS_BSD(dev))
1583d1b851fcSZou Nan hai 		DRM_INIT_WAITQUEUE(&dev_priv->bsd_ring.irq_queue);
1584549f7365SChris Wilson 	if (HAS_BLT(dev))
1585549f7365SChris Wilson 		DRM_INIT_WAITQUEUE(&dev_priv->blt_ring.irq_queue);
1586d1b851fcSZou Nan hai 
15870a3e67a4SJesse Barnes 	dev_priv->vblank_pipe = DRM_I915_VBLANK_PIPE_A | DRM_I915_VBLANK_PIPE_B;
1588ed4cb414SEric Anholt 
1589bad720ffSEric Anholt 	if (HAS_PCH_SPLIT(dev))
1590f2b115e6SAdam Jackson 		return ironlake_irq_postinstall(dev);
1591036a4a7dSZhenyu Wang 
15927c463586SKeith Packard 	/* Unmask the interrupts that we always want on. */
15937c463586SKeith Packard 	dev_priv->irq_mask_reg = ~I915_INTERRUPT_ENABLE_FIX;
15948ee1c3dbSMatthew Garrett 
15957c463586SKeith Packard 	dev_priv->pipestat[0] = 0;
15967c463586SKeith Packard 	dev_priv->pipestat[1] = 0;
15977c463586SKeith Packard 
15985ca58282SJesse Barnes 	if (I915_HAS_HOTPLUG(dev)) {
1599c496fa1fSAdam Jackson 		/* Enable in IER... */
1600c496fa1fSAdam Jackson 		enable_mask |= I915_DISPLAY_PORT_INTERRUPT;
1601c496fa1fSAdam Jackson 		/* and unmask in IMR */
1602c496fa1fSAdam Jackson 		dev_priv->irq_mask_reg &= ~I915_DISPLAY_PORT_INTERRUPT;
1603c496fa1fSAdam Jackson 	}
1604c496fa1fSAdam Jackson 
1605c496fa1fSAdam Jackson 	/*
1606c496fa1fSAdam Jackson 	 * Enable some error detection, note the instruction error mask
1607c496fa1fSAdam Jackson 	 * bit is reserved, so we leave it masked.
1608c496fa1fSAdam Jackson 	 */
1609c496fa1fSAdam Jackson 	if (IS_G4X(dev)) {
1610c496fa1fSAdam Jackson 		error_mask = ~(GM45_ERROR_PAGE_TABLE |
1611c496fa1fSAdam Jackson 			       GM45_ERROR_MEM_PRIV |
1612c496fa1fSAdam Jackson 			       GM45_ERROR_CP_PRIV |
1613c496fa1fSAdam Jackson 			       I915_ERROR_MEMORY_REFRESH);
1614c496fa1fSAdam Jackson 	} else {
1615c496fa1fSAdam Jackson 		error_mask = ~(I915_ERROR_PAGE_TABLE |
1616c496fa1fSAdam Jackson 			       I915_ERROR_MEMORY_REFRESH);
1617c496fa1fSAdam Jackson 	}
1618c496fa1fSAdam Jackson 	I915_WRITE(EMR, error_mask);
1619c496fa1fSAdam Jackson 
1620c496fa1fSAdam Jackson 	I915_WRITE(IMR, dev_priv->irq_mask_reg);
1621c496fa1fSAdam Jackson 	I915_WRITE(IER, enable_mask);
16223143a2bfSChris Wilson 	POSTING_READ(IER);
1623c496fa1fSAdam Jackson 
1624c496fa1fSAdam Jackson 	if (I915_HAS_HOTPLUG(dev)) {
16255ca58282SJesse Barnes 		u32 hotplug_en = I915_READ(PORT_HOTPLUG_EN);
16265ca58282SJesse Barnes 
1627b01f2c3aSJesse Barnes 		/* Note HDMI and DP share bits */
1628b01f2c3aSJesse Barnes 		if (dev_priv->hotplug_supported_mask & HDMIB_HOTPLUG_INT_STATUS)
1629b01f2c3aSJesse Barnes 			hotplug_en |= HDMIB_HOTPLUG_INT_EN;
1630b01f2c3aSJesse Barnes 		if (dev_priv->hotplug_supported_mask & HDMIC_HOTPLUG_INT_STATUS)
1631b01f2c3aSJesse Barnes 			hotplug_en |= HDMIC_HOTPLUG_INT_EN;
1632b01f2c3aSJesse Barnes 		if (dev_priv->hotplug_supported_mask & HDMID_HOTPLUG_INT_STATUS)
1633b01f2c3aSJesse Barnes 			hotplug_en |= HDMID_HOTPLUG_INT_EN;
1634b01f2c3aSJesse Barnes 		if (dev_priv->hotplug_supported_mask & SDVOC_HOTPLUG_INT_STATUS)
1635b01f2c3aSJesse Barnes 			hotplug_en |= SDVOC_HOTPLUG_INT_EN;
1636b01f2c3aSJesse Barnes 		if (dev_priv->hotplug_supported_mask & SDVOB_HOTPLUG_INT_STATUS)
1637b01f2c3aSJesse Barnes 			hotplug_en |= SDVOB_HOTPLUG_INT_EN;
16382d1c9752SAndy Lutomirski 		if (dev_priv->hotplug_supported_mask & CRT_HOTPLUG_INT_STATUS) {
1639b01f2c3aSJesse Barnes 			hotplug_en |= CRT_HOTPLUG_INT_EN;
16402d1c9752SAndy Lutomirski 
16412d1c9752SAndy Lutomirski 			/* Programming the CRT detection parameters tends
16422d1c9752SAndy Lutomirski 			   to generate a spurious hotplug event about three
16432d1c9752SAndy Lutomirski 			   seconds later.  So just do it once.
16442d1c9752SAndy Lutomirski 			*/
16452d1c9752SAndy Lutomirski 			if (IS_G4X(dev))
16462d1c9752SAndy Lutomirski 				hotplug_en |= CRT_HOTPLUG_ACTIVATION_PERIOD_64;
16472d1c9752SAndy Lutomirski 			hotplug_en |= CRT_HOTPLUG_VOLTAGE_COMPARE_50;
16482d1c9752SAndy Lutomirski 		}
16492d1c9752SAndy Lutomirski 
1650b01f2c3aSJesse Barnes 		/* Ignore TV since it's buggy */
1651b01f2c3aSJesse Barnes 
16525ca58282SJesse Barnes 		I915_WRITE(PORT_HOTPLUG_EN, hotplug_en);
16535ca58282SJesse Barnes 	}
16545ca58282SJesse Barnes 
16553b617967SChris Wilson 	intel_opregion_enable_asle(dev);
16560a3e67a4SJesse Barnes 
16570a3e67a4SJesse Barnes 	return 0;
1658c0e09200SDave Airlie }
1659c0e09200SDave Airlie 
1660f2b115e6SAdam Jackson static void ironlake_irq_uninstall(struct drm_device *dev)
1661036a4a7dSZhenyu Wang {
1662036a4a7dSZhenyu Wang 	drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
1663036a4a7dSZhenyu Wang 	I915_WRITE(HWSTAM, 0xffffffff);
1664036a4a7dSZhenyu Wang 
1665036a4a7dSZhenyu Wang 	I915_WRITE(DEIMR, 0xffffffff);
1666036a4a7dSZhenyu Wang 	I915_WRITE(DEIER, 0x0);
1667036a4a7dSZhenyu Wang 	I915_WRITE(DEIIR, I915_READ(DEIIR));
1668036a4a7dSZhenyu Wang 
1669036a4a7dSZhenyu Wang 	I915_WRITE(GTIMR, 0xffffffff);
1670036a4a7dSZhenyu Wang 	I915_WRITE(GTIER, 0x0);
1671036a4a7dSZhenyu Wang 	I915_WRITE(GTIIR, I915_READ(GTIIR));
1672036a4a7dSZhenyu Wang }
1673036a4a7dSZhenyu Wang 
1674c0e09200SDave Airlie void i915_driver_irq_uninstall(struct drm_device * dev)
1675c0e09200SDave Airlie {
1676c0e09200SDave Airlie 	drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
1677c0e09200SDave Airlie 
1678c0e09200SDave Airlie 	if (!dev_priv)
1679c0e09200SDave Airlie 		return;
1680c0e09200SDave Airlie 
16810a3e67a4SJesse Barnes 	dev_priv->vblank_pipe = 0;
16820a3e67a4SJesse Barnes 
1683bad720ffSEric Anholt 	if (HAS_PCH_SPLIT(dev)) {
1684f2b115e6SAdam Jackson 		ironlake_irq_uninstall(dev);
1685036a4a7dSZhenyu Wang 		return;
1686036a4a7dSZhenyu Wang 	}
1687036a4a7dSZhenyu Wang 
16885ca58282SJesse Barnes 	if (I915_HAS_HOTPLUG(dev)) {
16895ca58282SJesse Barnes 		I915_WRITE(PORT_HOTPLUG_EN, 0);
16905ca58282SJesse Barnes 		I915_WRITE(PORT_HOTPLUG_STAT, I915_READ(PORT_HOTPLUG_STAT));
16915ca58282SJesse Barnes 	}
16925ca58282SJesse Barnes 
16930a3e67a4SJesse Barnes 	I915_WRITE(HWSTAM, 0xffffffff);
16947c463586SKeith Packard 	I915_WRITE(PIPEASTAT, 0);
16957c463586SKeith Packard 	I915_WRITE(PIPEBSTAT, 0);
16960a3e67a4SJesse Barnes 	I915_WRITE(IMR, 0xffffffff);
1697ed4cb414SEric Anholt 	I915_WRITE(IER, 0x0);
1698c0e09200SDave Airlie 
16997c463586SKeith Packard 	I915_WRITE(PIPEASTAT, I915_READ(PIPEASTAT) & 0x8000ffff);
17007c463586SKeith Packard 	I915_WRITE(PIPEBSTAT, I915_READ(PIPEBSTAT) & 0x8000ffff);
17017c463586SKeith Packard 	I915_WRITE(IIR, I915_READ(IIR));
1702c0e09200SDave Airlie }
1703