xref: /openbmc/linux/drivers/gpu/drm/i915/i915_irq.c (revision 9035a97a32836d0e456ddafaaf249a844e6e4b5e)
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 
67036a4a7dSZhenyu Wang /* For display hotplug interrupt */
68995b6762SChris Wilson static void
69f2b115e6SAdam Jackson ironlake_enable_display_irq(drm_i915_private_t *dev_priv, u32 mask)
70036a4a7dSZhenyu Wang {
711ec14ad3SChris Wilson 	if ((dev_priv->irq_mask & mask) != 0) {
721ec14ad3SChris Wilson 		dev_priv->irq_mask &= ~mask;
731ec14ad3SChris Wilson 		I915_WRITE(DEIMR, dev_priv->irq_mask);
743143a2bfSChris Wilson 		POSTING_READ(DEIMR);
75036a4a7dSZhenyu Wang 	}
76036a4a7dSZhenyu Wang }
77036a4a7dSZhenyu Wang 
78036a4a7dSZhenyu Wang static inline void
79f2b115e6SAdam Jackson ironlake_disable_display_irq(drm_i915_private_t *dev_priv, u32 mask)
80036a4a7dSZhenyu Wang {
811ec14ad3SChris Wilson 	if ((dev_priv->irq_mask & mask) != mask) {
821ec14ad3SChris Wilson 		dev_priv->irq_mask |= mask;
831ec14ad3SChris Wilson 		I915_WRITE(DEIMR, dev_priv->irq_mask);
843143a2bfSChris Wilson 		POSTING_READ(DEIMR);
85036a4a7dSZhenyu Wang 	}
86036a4a7dSZhenyu Wang }
87036a4a7dSZhenyu Wang 
887c463586SKeith Packard void
897c463586SKeith Packard i915_enable_pipestat(drm_i915_private_t *dev_priv, int pipe, u32 mask)
907c463586SKeith Packard {
917c463586SKeith Packard 	if ((dev_priv->pipestat[pipe] & mask) != mask) {
929db4a9c7SJesse Barnes 		u32 reg = PIPESTAT(pipe);
937c463586SKeith Packard 
947c463586SKeith Packard 		dev_priv->pipestat[pipe] |= mask;
957c463586SKeith Packard 		/* Enable the interrupt, clear any pending status */
967c463586SKeith Packard 		I915_WRITE(reg, dev_priv->pipestat[pipe] | (mask >> 16));
973143a2bfSChris Wilson 		POSTING_READ(reg);
987c463586SKeith Packard 	}
997c463586SKeith Packard }
1007c463586SKeith Packard 
1017c463586SKeith Packard void
1027c463586SKeith Packard i915_disable_pipestat(drm_i915_private_t *dev_priv, int pipe, u32 mask)
1037c463586SKeith Packard {
1047c463586SKeith Packard 	if ((dev_priv->pipestat[pipe] & mask) != 0) {
1059db4a9c7SJesse Barnes 		u32 reg = PIPESTAT(pipe);
1067c463586SKeith Packard 
1077c463586SKeith Packard 		dev_priv->pipestat[pipe] &= ~mask;
1087c463586SKeith Packard 		I915_WRITE(reg, dev_priv->pipestat[pipe]);
1093143a2bfSChris Wilson 		POSTING_READ(reg);
1107c463586SKeith Packard 	}
1117c463586SKeith Packard }
1127c463586SKeith Packard 
113c0e09200SDave Airlie /**
11401c66889SZhao Yakui  * intel_enable_asle - enable ASLE interrupt for OpRegion
11501c66889SZhao Yakui  */
11601c66889SZhao Yakui void intel_enable_asle(struct drm_device *dev)
11701c66889SZhao Yakui {
1181ec14ad3SChris Wilson 	drm_i915_private_t *dev_priv = dev->dev_private;
1191ec14ad3SChris Wilson 	unsigned long irqflags;
1201ec14ad3SChris Wilson 
1211ec14ad3SChris Wilson 	spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
12201c66889SZhao Yakui 
123c619eed4SEric Anholt 	if (HAS_PCH_SPLIT(dev))
124f2b115e6SAdam Jackson 		ironlake_enable_display_irq(dev_priv, DE_GSE);
125edcb49caSZhao Yakui 	else {
12601c66889SZhao Yakui 		i915_enable_pipestat(dev_priv, 1,
127d874bcffSJesse Barnes 				     PIPE_LEGACY_BLC_EVENT_ENABLE);
128a6c45cf0SChris Wilson 		if (INTEL_INFO(dev)->gen >= 4)
129edcb49caSZhao Yakui 			i915_enable_pipestat(dev_priv, 0,
130d874bcffSJesse Barnes 					     PIPE_LEGACY_BLC_EVENT_ENABLE);
131edcb49caSZhao Yakui 	}
1321ec14ad3SChris Wilson 
1331ec14ad3SChris Wilson 	spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
13401c66889SZhao Yakui }
13501c66889SZhao Yakui 
13601c66889SZhao Yakui /**
1370a3e67a4SJesse Barnes  * i915_pipe_enabled - check if a pipe is enabled
1380a3e67a4SJesse Barnes  * @dev: DRM device
1390a3e67a4SJesse Barnes  * @pipe: pipe to check
1400a3e67a4SJesse Barnes  *
1410a3e67a4SJesse Barnes  * Reading certain registers when the pipe is disabled can hang the chip.
1420a3e67a4SJesse Barnes  * Use this routine to make sure the PLL is running and the pipe is active
1430a3e67a4SJesse Barnes  * before reading such registers if unsure.
1440a3e67a4SJesse Barnes  */
1450a3e67a4SJesse Barnes static int
1460a3e67a4SJesse Barnes i915_pipe_enabled(struct drm_device *dev, int pipe)
1470a3e67a4SJesse Barnes {
1480a3e67a4SJesse Barnes 	drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
1495eddb70bSChris Wilson 	return I915_READ(PIPECONF(pipe)) & PIPECONF_ENABLE;
1500a3e67a4SJesse Barnes }
1510a3e67a4SJesse Barnes 
15242f52ef8SKeith Packard /* Called from drm generic code, passed a 'crtc', which
15342f52ef8SKeith Packard  * we use as a pipe index
15442f52ef8SKeith Packard  */
15542f52ef8SKeith Packard u32 i915_get_vblank_counter(struct drm_device *dev, int pipe)
1560a3e67a4SJesse Barnes {
1570a3e67a4SJesse Barnes 	drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
1580a3e67a4SJesse Barnes 	unsigned long high_frame;
1590a3e67a4SJesse Barnes 	unsigned long low_frame;
1605eddb70bSChris Wilson 	u32 high1, high2, low;
1610a3e67a4SJesse Barnes 
1620a3e67a4SJesse Barnes 	if (!i915_pipe_enabled(dev, pipe)) {
16344d98a61SZhao Yakui 		DRM_DEBUG_DRIVER("trying to get vblank count for disabled "
1649db4a9c7SJesse Barnes 				"pipe %c\n", pipe_name(pipe));
1650a3e67a4SJesse Barnes 		return 0;
1660a3e67a4SJesse Barnes 	}
1670a3e67a4SJesse Barnes 
1689db4a9c7SJesse Barnes 	high_frame = PIPEFRAME(pipe);
1699db4a9c7SJesse Barnes 	low_frame = PIPEFRAMEPIXEL(pipe);
1705eddb70bSChris Wilson 
1710a3e67a4SJesse Barnes 	/*
1720a3e67a4SJesse Barnes 	 * High & low register fields aren't synchronized, so make sure
1730a3e67a4SJesse Barnes 	 * we get a low value that's stable across two reads of the high
1740a3e67a4SJesse Barnes 	 * register.
1750a3e67a4SJesse Barnes 	 */
1760a3e67a4SJesse Barnes 	do {
1775eddb70bSChris Wilson 		high1 = I915_READ(high_frame) & PIPE_FRAME_HIGH_MASK;
1785eddb70bSChris Wilson 		low   = I915_READ(low_frame)  & PIPE_FRAME_LOW_MASK;
1795eddb70bSChris Wilson 		high2 = I915_READ(high_frame) & PIPE_FRAME_HIGH_MASK;
1800a3e67a4SJesse Barnes 	} while (high1 != high2);
1810a3e67a4SJesse Barnes 
1825eddb70bSChris Wilson 	high1 >>= PIPE_FRAME_HIGH_SHIFT;
1835eddb70bSChris Wilson 	low >>= PIPE_FRAME_LOW_SHIFT;
1845eddb70bSChris Wilson 	return (high1 << 8) | low;
1850a3e67a4SJesse Barnes }
1860a3e67a4SJesse Barnes 
1879880b7a5SJesse Barnes u32 gm45_get_vblank_counter(struct drm_device *dev, int pipe)
1889880b7a5SJesse Barnes {
1899880b7a5SJesse Barnes 	drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
1909db4a9c7SJesse Barnes 	int reg = PIPE_FRMCOUNT_GM45(pipe);
1919880b7a5SJesse Barnes 
1929880b7a5SJesse Barnes 	if (!i915_pipe_enabled(dev, pipe)) {
19344d98a61SZhao Yakui 		DRM_DEBUG_DRIVER("trying to get vblank count for disabled "
1949db4a9c7SJesse Barnes 				 "pipe %c\n", pipe_name(pipe));
1959880b7a5SJesse Barnes 		return 0;
1969880b7a5SJesse Barnes 	}
1979880b7a5SJesse Barnes 
1989880b7a5SJesse Barnes 	return I915_READ(reg);
1999880b7a5SJesse Barnes }
2009880b7a5SJesse Barnes 
2010af7e4dfSMario Kleiner int i915_get_crtc_scanoutpos(struct drm_device *dev, int pipe,
2020af7e4dfSMario Kleiner 			     int *vpos, int *hpos)
2030af7e4dfSMario Kleiner {
2040af7e4dfSMario Kleiner 	drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
2050af7e4dfSMario Kleiner 	u32 vbl = 0, position = 0;
2060af7e4dfSMario Kleiner 	int vbl_start, vbl_end, htotal, vtotal;
2070af7e4dfSMario Kleiner 	bool in_vbl = true;
2080af7e4dfSMario Kleiner 	int ret = 0;
2090af7e4dfSMario Kleiner 
2100af7e4dfSMario Kleiner 	if (!i915_pipe_enabled(dev, pipe)) {
2110af7e4dfSMario Kleiner 		DRM_DEBUG_DRIVER("trying to get scanoutpos for disabled "
2129db4a9c7SJesse Barnes 				 "pipe %c\n", pipe_name(pipe));
2130af7e4dfSMario Kleiner 		return 0;
2140af7e4dfSMario Kleiner 	}
2150af7e4dfSMario Kleiner 
2160af7e4dfSMario Kleiner 	/* Get vtotal. */
2170af7e4dfSMario Kleiner 	vtotal = 1 + ((I915_READ(VTOTAL(pipe)) >> 16) & 0x1fff);
2180af7e4dfSMario Kleiner 
2190af7e4dfSMario Kleiner 	if (INTEL_INFO(dev)->gen >= 4) {
2200af7e4dfSMario Kleiner 		/* No obvious pixelcount register. Only query vertical
2210af7e4dfSMario Kleiner 		 * scanout position from Display scan line register.
2220af7e4dfSMario Kleiner 		 */
2230af7e4dfSMario Kleiner 		position = I915_READ(PIPEDSL(pipe));
2240af7e4dfSMario Kleiner 
2250af7e4dfSMario Kleiner 		/* Decode into vertical scanout position. Don't have
2260af7e4dfSMario Kleiner 		 * horizontal scanout position.
2270af7e4dfSMario Kleiner 		 */
2280af7e4dfSMario Kleiner 		*vpos = position & 0x1fff;
2290af7e4dfSMario Kleiner 		*hpos = 0;
2300af7e4dfSMario Kleiner 	} else {
2310af7e4dfSMario Kleiner 		/* Have access to pixelcount since start of frame.
2320af7e4dfSMario Kleiner 		 * We can split this into vertical and horizontal
2330af7e4dfSMario Kleiner 		 * scanout position.
2340af7e4dfSMario Kleiner 		 */
2350af7e4dfSMario Kleiner 		position = (I915_READ(PIPEFRAMEPIXEL(pipe)) & PIPE_PIXEL_MASK) >> PIPE_PIXEL_SHIFT;
2360af7e4dfSMario Kleiner 
2370af7e4dfSMario Kleiner 		htotal = 1 + ((I915_READ(HTOTAL(pipe)) >> 16) & 0x1fff);
2380af7e4dfSMario Kleiner 		*vpos = position / htotal;
2390af7e4dfSMario Kleiner 		*hpos = position - (*vpos * htotal);
2400af7e4dfSMario Kleiner 	}
2410af7e4dfSMario Kleiner 
2420af7e4dfSMario Kleiner 	/* Query vblank area. */
2430af7e4dfSMario Kleiner 	vbl = I915_READ(VBLANK(pipe));
2440af7e4dfSMario Kleiner 
2450af7e4dfSMario Kleiner 	/* Test position against vblank region. */
2460af7e4dfSMario Kleiner 	vbl_start = vbl & 0x1fff;
2470af7e4dfSMario Kleiner 	vbl_end = (vbl >> 16) & 0x1fff;
2480af7e4dfSMario Kleiner 
2490af7e4dfSMario Kleiner 	if ((*vpos < vbl_start) || (*vpos > vbl_end))
2500af7e4dfSMario Kleiner 		in_vbl = false;
2510af7e4dfSMario Kleiner 
2520af7e4dfSMario Kleiner 	/* Inside "upper part" of vblank area? Apply corrective offset: */
2530af7e4dfSMario Kleiner 	if (in_vbl && (*vpos >= vbl_start))
2540af7e4dfSMario Kleiner 		*vpos = *vpos - vtotal;
2550af7e4dfSMario Kleiner 
2560af7e4dfSMario Kleiner 	/* Readouts valid? */
2570af7e4dfSMario Kleiner 	if (vbl > 0)
2580af7e4dfSMario Kleiner 		ret |= DRM_SCANOUTPOS_VALID | DRM_SCANOUTPOS_ACCURATE;
2590af7e4dfSMario Kleiner 
2600af7e4dfSMario Kleiner 	/* In vblank? */
2610af7e4dfSMario Kleiner 	if (in_vbl)
2620af7e4dfSMario Kleiner 		ret |= DRM_SCANOUTPOS_INVBL;
2630af7e4dfSMario Kleiner 
2640af7e4dfSMario Kleiner 	return ret;
2650af7e4dfSMario Kleiner }
2660af7e4dfSMario Kleiner 
2674041b853SChris Wilson int i915_get_vblank_timestamp(struct drm_device *dev, int pipe,
2680af7e4dfSMario Kleiner 			      int *max_error,
2690af7e4dfSMario Kleiner 			      struct timeval *vblank_time,
2700af7e4dfSMario Kleiner 			      unsigned flags)
2710af7e4dfSMario Kleiner {
2724041b853SChris Wilson 	struct drm_i915_private *dev_priv = dev->dev_private;
2734041b853SChris Wilson 	struct drm_crtc *crtc;
2740af7e4dfSMario Kleiner 
2754041b853SChris Wilson 	if (pipe < 0 || pipe >= dev_priv->num_pipe) {
2764041b853SChris Wilson 		DRM_ERROR("Invalid crtc %d\n", pipe);
2770af7e4dfSMario Kleiner 		return -EINVAL;
2780af7e4dfSMario Kleiner 	}
2790af7e4dfSMario Kleiner 
2800af7e4dfSMario Kleiner 	/* Get drm_crtc to timestamp: */
2814041b853SChris Wilson 	crtc = intel_get_crtc_for_pipe(dev, pipe);
2824041b853SChris Wilson 	if (crtc == NULL) {
2834041b853SChris Wilson 		DRM_ERROR("Invalid crtc %d\n", pipe);
2844041b853SChris Wilson 		return -EINVAL;
2854041b853SChris Wilson 	}
2864041b853SChris Wilson 
2874041b853SChris Wilson 	if (!crtc->enabled) {
2884041b853SChris Wilson 		DRM_DEBUG_KMS("crtc %d is disabled\n", pipe);
2894041b853SChris Wilson 		return -EBUSY;
2904041b853SChris Wilson 	}
2910af7e4dfSMario Kleiner 
2920af7e4dfSMario Kleiner 	/* Helper routine in DRM core does all the work: */
2934041b853SChris Wilson 	return drm_calc_vbltimestamp_from_scanoutpos(dev, pipe, max_error,
2944041b853SChris Wilson 						     vblank_time, flags,
2954041b853SChris Wilson 						     crtc);
2960af7e4dfSMario Kleiner }
2970af7e4dfSMario Kleiner 
2985ca58282SJesse Barnes /*
2995ca58282SJesse Barnes  * Handle hotplug events outside the interrupt handler proper.
3005ca58282SJesse Barnes  */
3015ca58282SJesse Barnes static void i915_hotplug_work_func(struct work_struct *work)
3025ca58282SJesse Barnes {
3035ca58282SJesse Barnes 	drm_i915_private_t *dev_priv = container_of(work, drm_i915_private_t,
3045ca58282SJesse Barnes 						    hotplug_work);
3055ca58282SJesse Barnes 	struct drm_device *dev = dev_priv->dev;
306c31c4ba3SKeith Packard 	struct drm_mode_config *mode_config = &dev->mode_config;
3074ef69c7aSChris Wilson 	struct intel_encoder *encoder;
3085ca58282SJesse Barnes 
309e67189abSJesse Barnes 	DRM_DEBUG_KMS("running encoder hotplug functions\n");
310e67189abSJesse Barnes 
3114ef69c7aSChris Wilson 	list_for_each_entry(encoder, &mode_config->encoder_list, base.head)
3124ef69c7aSChris Wilson 		if (encoder->hot_plug)
3134ef69c7aSChris Wilson 			encoder->hot_plug(encoder);
314c31c4ba3SKeith Packard 
3155ca58282SJesse Barnes 	/* Just fire off a uevent and let userspace tell us what to do */
316eb1f8e4fSDave Airlie 	drm_helper_hpd_irq_event(dev);
3175ca58282SJesse Barnes }
3185ca58282SJesse Barnes 
319f97108d1SJesse Barnes static void i915_handle_rps_change(struct drm_device *dev)
320f97108d1SJesse Barnes {
321f97108d1SJesse Barnes 	drm_i915_private_t *dev_priv = dev->dev_private;
322b5b72e89SMatthew Garrett 	u32 busy_up, busy_down, max_avg, min_avg;
323f97108d1SJesse Barnes 	u8 new_delay = dev_priv->cur_delay;
324f97108d1SJesse Barnes 
3257648fa99SJesse Barnes 	I915_WRITE16(MEMINTRSTS, MEMINT_EVAL_CHG);
326b5b72e89SMatthew Garrett 	busy_up = I915_READ(RCPREVBSYTUPAVG);
327b5b72e89SMatthew Garrett 	busy_down = I915_READ(RCPREVBSYTDNAVG);
328f97108d1SJesse Barnes 	max_avg = I915_READ(RCBMAXAVG);
329f97108d1SJesse Barnes 	min_avg = I915_READ(RCBMINAVG);
330f97108d1SJesse Barnes 
331f97108d1SJesse Barnes 	/* Handle RCS change request from hw */
332b5b72e89SMatthew Garrett 	if (busy_up > max_avg) {
333f97108d1SJesse Barnes 		if (dev_priv->cur_delay != dev_priv->max_delay)
334f97108d1SJesse Barnes 			new_delay = dev_priv->cur_delay - 1;
335f97108d1SJesse Barnes 		if (new_delay < dev_priv->max_delay)
336f97108d1SJesse Barnes 			new_delay = dev_priv->max_delay;
337b5b72e89SMatthew Garrett 	} else if (busy_down < min_avg) {
338f97108d1SJesse Barnes 		if (dev_priv->cur_delay != dev_priv->min_delay)
339f97108d1SJesse Barnes 			new_delay = dev_priv->cur_delay + 1;
340f97108d1SJesse Barnes 		if (new_delay > dev_priv->min_delay)
341f97108d1SJesse Barnes 			new_delay = dev_priv->min_delay;
342f97108d1SJesse Barnes 	}
343f97108d1SJesse Barnes 
3447648fa99SJesse Barnes 	if (ironlake_set_drps(dev, new_delay))
345f97108d1SJesse Barnes 		dev_priv->cur_delay = new_delay;
346f97108d1SJesse Barnes 
347f97108d1SJesse Barnes 	return;
348f97108d1SJesse Barnes }
349f97108d1SJesse Barnes 
350549f7365SChris Wilson static void notify_ring(struct drm_device *dev,
351549f7365SChris Wilson 			struct intel_ring_buffer *ring)
352549f7365SChris Wilson {
353549f7365SChris Wilson 	struct drm_i915_private *dev_priv = dev->dev_private;
354475553deSChris Wilson 	u32 seqno;
3559862e600SChris Wilson 
356475553deSChris Wilson 	if (ring->obj == NULL)
357475553deSChris Wilson 		return;
358475553deSChris Wilson 
359475553deSChris Wilson 	seqno = ring->get_seqno(ring);
360db53a302SChris Wilson 	trace_i915_gem_request_complete(ring, seqno);
3619862e600SChris Wilson 
3629862e600SChris Wilson 	ring->irq_seqno = seqno;
363549f7365SChris Wilson 	wake_up_all(&ring->irq_queue);
3649862e600SChris Wilson 
365549f7365SChris Wilson 	dev_priv->hangcheck_count = 0;
366549f7365SChris Wilson 	mod_timer(&dev_priv->hangcheck_timer,
367549f7365SChris Wilson 		  jiffies + msecs_to_jiffies(DRM_I915_HANGCHECK_PERIOD));
368549f7365SChris Wilson }
369549f7365SChris Wilson 
3703b8d8d91SJesse Barnes static void gen6_pm_irq_handler(struct drm_device *dev)
3713b8d8d91SJesse Barnes {
3723b8d8d91SJesse Barnes 	drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
3733b8d8d91SJesse Barnes 	u8 new_delay = dev_priv->cur_delay;
3743b8d8d91SJesse Barnes 	u32 pm_iir;
3753b8d8d91SJesse Barnes 
3763b8d8d91SJesse Barnes 	pm_iir = I915_READ(GEN6_PMIIR);
3773b8d8d91SJesse Barnes 	if (!pm_iir)
3783b8d8d91SJesse Barnes 		return;
3793b8d8d91SJesse Barnes 
3803b8d8d91SJesse Barnes 	if (pm_iir & GEN6_PM_RP_UP_THRESHOLD) {
3813b8d8d91SJesse Barnes 		if (dev_priv->cur_delay != dev_priv->max_delay)
3823b8d8d91SJesse Barnes 			new_delay = dev_priv->cur_delay + 1;
3833b8d8d91SJesse Barnes 		if (new_delay > dev_priv->max_delay)
3843b8d8d91SJesse Barnes 			new_delay = dev_priv->max_delay;
3853b8d8d91SJesse Barnes 	} else if (pm_iir & (GEN6_PM_RP_DOWN_THRESHOLD | GEN6_PM_RP_DOWN_TIMEOUT)) {
3863b8d8d91SJesse Barnes 		if (dev_priv->cur_delay != dev_priv->min_delay)
3873b8d8d91SJesse Barnes 			new_delay = dev_priv->cur_delay - 1;
3883b8d8d91SJesse Barnes 		if (new_delay < dev_priv->min_delay) {
3893b8d8d91SJesse Barnes 			new_delay = dev_priv->min_delay;
3903b8d8d91SJesse Barnes 			I915_WRITE(GEN6_RP_INTERRUPT_LIMITS,
3913b8d8d91SJesse Barnes 				   I915_READ(GEN6_RP_INTERRUPT_LIMITS) |
3923b8d8d91SJesse Barnes 				   ((new_delay << 16) & 0x3f0000));
3933b8d8d91SJesse Barnes 		} else {
3943b8d8d91SJesse Barnes 			/* Make sure we continue to get down interrupts
3953b8d8d91SJesse Barnes 			 * until we hit the minimum frequency */
3963b8d8d91SJesse Barnes 			I915_WRITE(GEN6_RP_INTERRUPT_LIMITS,
3973b8d8d91SJesse Barnes 				   I915_READ(GEN6_RP_INTERRUPT_LIMITS) & ~0x3f0000);
3983b8d8d91SJesse Barnes 		}
3993b8d8d91SJesse Barnes 
4003b8d8d91SJesse Barnes 	}
4013b8d8d91SJesse Barnes 
4023b8d8d91SJesse Barnes 	gen6_set_rps(dev, new_delay);
4033b8d8d91SJesse Barnes 	dev_priv->cur_delay = new_delay;
4043b8d8d91SJesse Barnes 
4053b8d8d91SJesse Barnes 	I915_WRITE(GEN6_PMIIR, pm_iir);
4063b8d8d91SJesse Barnes }
4073b8d8d91SJesse Barnes 
408776ad806SJesse Barnes static void pch_irq_handler(struct drm_device *dev)
409776ad806SJesse Barnes {
410776ad806SJesse Barnes 	drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
411776ad806SJesse Barnes 	u32 pch_iir;
4129db4a9c7SJesse Barnes 	int pipe;
413776ad806SJesse Barnes 
414776ad806SJesse Barnes 	pch_iir = I915_READ(SDEIIR);
415776ad806SJesse Barnes 
416776ad806SJesse Barnes 	if (pch_iir & SDE_AUDIO_POWER_MASK)
417776ad806SJesse Barnes 		DRM_DEBUG_DRIVER("PCH audio power change on port %d\n",
418776ad806SJesse Barnes 				 (pch_iir & SDE_AUDIO_POWER_MASK) >>
419776ad806SJesse Barnes 				 SDE_AUDIO_POWER_SHIFT);
420776ad806SJesse Barnes 
421776ad806SJesse Barnes 	if (pch_iir & SDE_GMBUS)
422776ad806SJesse Barnes 		DRM_DEBUG_DRIVER("PCH GMBUS interrupt\n");
423776ad806SJesse Barnes 
424776ad806SJesse Barnes 	if (pch_iir & SDE_AUDIO_HDCP_MASK)
425776ad806SJesse Barnes 		DRM_DEBUG_DRIVER("PCH HDCP audio interrupt\n");
426776ad806SJesse Barnes 
427776ad806SJesse Barnes 	if (pch_iir & SDE_AUDIO_TRANS_MASK)
428776ad806SJesse Barnes 		DRM_DEBUG_DRIVER("PCH transcoder audio interrupt\n");
429776ad806SJesse Barnes 
430776ad806SJesse Barnes 	if (pch_iir & SDE_POISON)
431776ad806SJesse Barnes 		DRM_ERROR("PCH poison interrupt\n");
432776ad806SJesse Barnes 
4339db4a9c7SJesse Barnes 	if (pch_iir & SDE_FDI_MASK)
4349db4a9c7SJesse Barnes 		for_each_pipe(pipe)
4359db4a9c7SJesse Barnes 			DRM_DEBUG_DRIVER("  pipe %c FDI IIR: 0x%08x\n",
4369db4a9c7SJesse Barnes 					 pipe_name(pipe),
4379db4a9c7SJesse Barnes 					 I915_READ(FDI_RX_IIR(pipe)));
438776ad806SJesse Barnes 
439776ad806SJesse Barnes 	if (pch_iir & (SDE_TRANSB_CRC_DONE | SDE_TRANSA_CRC_DONE))
440776ad806SJesse Barnes 		DRM_DEBUG_DRIVER("PCH transcoder CRC done interrupt\n");
441776ad806SJesse Barnes 
442776ad806SJesse Barnes 	if (pch_iir & (SDE_TRANSB_CRC_ERR | SDE_TRANSA_CRC_ERR))
443776ad806SJesse Barnes 		DRM_DEBUG_DRIVER("PCH transcoder CRC error interrupt\n");
444776ad806SJesse Barnes 
445776ad806SJesse Barnes 	if (pch_iir & SDE_TRANSB_FIFO_UNDER)
446776ad806SJesse Barnes 		DRM_DEBUG_DRIVER("PCH transcoder B underrun interrupt\n");
447776ad806SJesse Barnes 	if (pch_iir & SDE_TRANSA_FIFO_UNDER)
448776ad806SJesse Barnes 		DRM_DEBUG_DRIVER("PCH transcoder A underrun interrupt\n");
449776ad806SJesse Barnes }
450776ad806SJesse Barnes 
451995b6762SChris Wilson static irqreturn_t ironlake_irq_handler(struct drm_device *dev)
452036a4a7dSZhenyu Wang {
453036a4a7dSZhenyu Wang 	drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
454036a4a7dSZhenyu Wang 	int ret = IRQ_NONE;
4553b8d8d91SJesse Barnes 	u32 de_iir, gt_iir, de_ier, pch_iir, pm_iir;
4562d7b8366SYuanhan Liu 	u32 hotplug_mask;
457036a4a7dSZhenyu Wang 	struct drm_i915_master_private *master_priv;
458881f47b6SXiang, Haihao 	u32 bsd_usr_interrupt = GT_BSD_USER_INTERRUPT;
459881f47b6SXiang, Haihao 
460881f47b6SXiang, Haihao 	if (IS_GEN6(dev))
461881f47b6SXiang, Haihao 		bsd_usr_interrupt = GT_GEN6_BSD_USER_INTERRUPT;
462036a4a7dSZhenyu Wang 
4632d109a84SZou, Nanhai 	/* disable master interrupt before clearing iir  */
4642d109a84SZou, Nanhai 	de_ier = I915_READ(DEIER);
4652d109a84SZou, Nanhai 	I915_WRITE(DEIER, de_ier & ~DE_MASTER_IRQ_CONTROL);
4663143a2bfSChris Wilson 	POSTING_READ(DEIER);
4672d109a84SZou, Nanhai 
468036a4a7dSZhenyu Wang 	de_iir = I915_READ(DEIIR);
469036a4a7dSZhenyu Wang 	gt_iir = I915_READ(GTIIR);
470c650156aSZhenyu Wang 	pch_iir = I915_READ(SDEIIR);
4713b8d8d91SJesse Barnes 	pm_iir = I915_READ(GEN6_PMIIR);
472036a4a7dSZhenyu Wang 
4733b8d8d91SJesse Barnes 	if (de_iir == 0 && gt_iir == 0 && pch_iir == 0 &&
4743b8d8d91SJesse Barnes 	    (!IS_GEN6(dev) || pm_iir == 0))
475c7c85101SZou Nan hai 		goto done;
476036a4a7dSZhenyu Wang 
4772d7b8366SYuanhan Liu 	if (HAS_PCH_CPT(dev))
4782d7b8366SYuanhan Liu 		hotplug_mask = SDE_HOTPLUG_MASK_CPT;
4792d7b8366SYuanhan Liu 	else
4802d7b8366SYuanhan Liu 		hotplug_mask = SDE_HOTPLUG_MASK;
4812d7b8366SYuanhan Liu 
482036a4a7dSZhenyu Wang 	ret = IRQ_HANDLED;
483036a4a7dSZhenyu Wang 
484036a4a7dSZhenyu Wang 	if (dev->primary->master) {
485036a4a7dSZhenyu Wang 		master_priv = dev->primary->master->driver_priv;
486036a4a7dSZhenyu Wang 		if (master_priv->sarea_priv)
487036a4a7dSZhenyu Wang 			master_priv->sarea_priv->last_dispatch =
488036a4a7dSZhenyu Wang 				READ_BREADCRUMB(dev_priv);
489036a4a7dSZhenyu Wang 	}
490036a4a7dSZhenyu Wang 
491c6df541cSChris Wilson 	if (gt_iir & (GT_USER_INTERRUPT | GT_PIPE_NOTIFY))
4921ec14ad3SChris Wilson 		notify_ring(dev, &dev_priv->ring[RCS]);
493881f47b6SXiang, Haihao 	if (gt_iir & bsd_usr_interrupt)
4941ec14ad3SChris Wilson 		notify_ring(dev, &dev_priv->ring[VCS]);
4951ec14ad3SChris Wilson 	if (gt_iir & GT_BLT_USER_INTERRUPT)
4961ec14ad3SChris Wilson 		notify_ring(dev, &dev_priv->ring[BCS]);
497036a4a7dSZhenyu Wang 
49801c66889SZhao Yakui 	if (de_iir & DE_GSE)
4993b617967SChris Wilson 		intel_opregion_gse_intr(dev);
50001c66889SZhao Yakui 
501f072d2e7SZhenyu Wang 	if (de_iir & DE_PLANEA_FLIP_DONE) {
502013d5aa2SJesse Barnes 		intel_prepare_page_flip(dev, 0);
5032bbda389SChris Wilson 		intel_finish_page_flip_plane(dev, 0);
504013d5aa2SJesse Barnes 	}
505013d5aa2SJesse Barnes 
506f072d2e7SZhenyu Wang 	if (de_iir & DE_PLANEB_FLIP_DONE) {
507f072d2e7SZhenyu Wang 		intel_prepare_page_flip(dev, 1);
5082bbda389SChris Wilson 		intel_finish_page_flip_plane(dev, 1);
509013d5aa2SJesse Barnes 	}
510c062df61SLi Peng 
511f072d2e7SZhenyu Wang 	if (de_iir & DE_PIPEA_VBLANK)
512f072d2e7SZhenyu Wang 		drm_handle_vblank(dev, 0);
513f072d2e7SZhenyu Wang 
514f072d2e7SZhenyu Wang 	if (de_iir & DE_PIPEB_VBLANK)
515f072d2e7SZhenyu Wang 		drm_handle_vblank(dev, 1);
516f072d2e7SZhenyu Wang 
517c650156aSZhenyu Wang 	/* check event from PCH */
518776ad806SJesse Barnes 	if (de_iir & DE_PCH_EVENT) {
519776ad806SJesse Barnes 		if (pch_iir & hotplug_mask)
520c650156aSZhenyu Wang 			queue_work(dev_priv->wq, &dev_priv->hotplug_work);
521776ad806SJesse Barnes 		pch_irq_handler(dev);
522776ad806SJesse Barnes 	}
523c650156aSZhenyu Wang 
524f97108d1SJesse Barnes 	if (de_iir & DE_PCU_EVENT) {
5257648fa99SJesse Barnes 		I915_WRITE16(MEMINTRSTS, I915_READ(MEMINTRSTS));
526f97108d1SJesse Barnes 		i915_handle_rps_change(dev);
527f97108d1SJesse Barnes 	}
528f97108d1SJesse Barnes 
5293b8d8d91SJesse Barnes 	if (IS_GEN6(dev))
5303b8d8d91SJesse Barnes 		gen6_pm_irq_handler(dev);
5313b8d8d91SJesse Barnes 
532c7c85101SZou Nan hai 	/* should clear PCH hotplug event before clear CPU irq */
533c7c85101SZou Nan hai 	I915_WRITE(SDEIIR, pch_iir);
534c7c85101SZou Nan hai 	I915_WRITE(GTIIR, gt_iir);
535c7c85101SZou Nan hai 	I915_WRITE(DEIIR, de_iir);
536036a4a7dSZhenyu Wang 
537c7c85101SZou Nan hai done:
5382d109a84SZou, Nanhai 	I915_WRITE(DEIER, de_ier);
5393143a2bfSChris Wilson 	POSTING_READ(DEIER);
5402d109a84SZou, Nanhai 
541036a4a7dSZhenyu Wang 	return ret;
542036a4a7dSZhenyu Wang }
543036a4a7dSZhenyu Wang 
5448a905236SJesse Barnes /**
5458a905236SJesse Barnes  * i915_error_work_func - do process context error handling work
5468a905236SJesse Barnes  * @work: work struct
5478a905236SJesse Barnes  *
5488a905236SJesse Barnes  * Fire an error uevent so userspace can see that a hang or error
5498a905236SJesse Barnes  * was detected.
5508a905236SJesse Barnes  */
5518a905236SJesse Barnes static void i915_error_work_func(struct work_struct *work)
5528a905236SJesse Barnes {
5538a905236SJesse Barnes 	drm_i915_private_t *dev_priv = container_of(work, drm_i915_private_t,
5548a905236SJesse Barnes 						    error_work);
5558a905236SJesse Barnes 	struct drm_device *dev = dev_priv->dev;
556f316a42cSBen Gamari 	char *error_event[] = { "ERROR=1", NULL };
557f316a42cSBen Gamari 	char *reset_event[] = { "RESET=1", NULL };
558f316a42cSBen Gamari 	char *reset_done_event[] = { "ERROR=0", NULL };
5598a905236SJesse Barnes 
560f316a42cSBen Gamari 	kobject_uevent_env(&dev->primary->kdev.kobj, KOBJ_CHANGE, error_event);
5618a905236SJesse Barnes 
562ba1234d1SBen Gamari 	if (atomic_read(&dev_priv->mm.wedged)) {
56344d98a61SZhao Yakui 		DRM_DEBUG_DRIVER("resetting chip\n");
564f316a42cSBen Gamari 		kobject_uevent_env(&dev->primary->kdev.kobj, KOBJ_CHANGE, reset_event);
565f803aa55SChris Wilson 		if (!i915_reset(dev, GRDOM_RENDER)) {
566ba1234d1SBen Gamari 			atomic_set(&dev_priv->mm.wedged, 0);
567f316a42cSBen Gamari 			kobject_uevent_env(&dev->primary->kdev.kobj, KOBJ_CHANGE, reset_done_event);
568f316a42cSBen Gamari 		}
56930dbf0c0SChris Wilson 		complete_all(&dev_priv->error_completion);
570f316a42cSBen Gamari 	}
5718a905236SJesse Barnes }
5728a905236SJesse Barnes 
5733bd3c932SChris Wilson #ifdef CONFIG_DEBUG_FS
5749df30794SChris Wilson static struct drm_i915_error_object *
575bcfb2e28SChris Wilson i915_error_object_create(struct drm_i915_private *dev_priv,
57605394f39SChris Wilson 			 struct drm_i915_gem_object *src)
5779df30794SChris Wilson {
5789df30794SChris Wilson 	struct drm_i915_error_object *dst;
5799df30794SChris Wilson 	int page, page_count;
580e56660ddSChris Wilson 	u32 reloc_offset;
5819df30794SChris Wilson 
58205394f39SChris Wilson 	if (src == NULL || src->pages == NULL)
5839df30794SChris Wilson 		return NULL;
5849df30794SChris Wilson 
58505394f39SChris Wilson 	page_count = src->base.size / PAGE_SIZE;
5869df30794SChris Wilson 
5879df30794SChris Wilson 	dst = kmalloc(sizeof(*dst) + page_count * sizeof (u32 *), GFP_ATOMIC);
5889df30794SChris Wilson 	if (dst == NULL)
5899df30794SChris Wilson 		return NULL;
5909df30794SChris Wilson 
59105394f39SChris Wilson 	reloc_offset = src->gtt_offset;
5929df30794SChris Wilson 	for (page = 0; page < page_count; page++) {
593788885aeSAndrew Morton 		unsigned long flags;
594e56660ddSChris Wilson 		void __iomem *s;
595e56660ddSChris Wilson 		void *d;
596788885aeSAndrew Morton 
597e56660ddSChris Wilson 		d = kmalloc(PAGE_SIZE, GFP_ATOMIC);
5989df30794SChris Wilson 		if (d == NULL)
5999df30794SChris Wilson 			goto unwind;
600e56660ddSChris Wilson 
601788885aeSAndrew Morton 		local_irq_save(flags);
602e56660ddSChris Wilson 		s = io_mapping_map_atomic_wc(dev_priv->mm.gtt_mapping,
6033e4d3af5SPeter Zijlstra 					     reloc_offset);
604e56660ddSChris Wilson 		memcpy_fromio(d, s, PAGE_SIZE);
6053e4d3af5SPeter Zijlstra 		io_mapping_unmap_atomic(s);
606788885aeSAndrew Morton 		local_irq_restore(flags);
607e56660ddSChris Wilson 
6089df30794SChris Wilson 		dst->pages[page] = d;
609e56660ddSChris Wilson 
610e56660ddSChris Wilson 		reloc_offset += PAGE_SIZE;
6119df30794SChris Wilson 	}
6129df30794SChris Wilson 	dst->page_count = page_count;
61305394f39SChris Wilson 	dst->gtt_offset = src->gtt_offset;
6149df30794SChris Wilson 
6159df30794SChris Wilson 	return dst;
6169df30794SChris Wilson 
6179df30794SChris Wilson unwind:
6189df30794SChris Wilson 	while (page--)
6199df30794SChris Wilson 		kfree(dst->pages[page]);
6209df30794SChris Wilson 	kfree(dst);
6219df30794SChris Wilson 	return NULL;
6229df30794SChris Wilson }
6239df30794SChris Wilson 
6249df30794SChris Wilson static void
6259df30794SChris Wilson i915_error_object_free(struct drm_i915_error_object *obj)
6269df30794SChris Wilson {
6279df30794SChris Wilson 	int page;
6289df30794SChris Wilson 
6299df30794SChris Wilson 	if (obj == NULL)
6309df30794SChris Wilson 		return;
6319df30794SChris Wilson 
6329df30794SChris Wilson 	for (page = 0; page < obj->page_count; page++)
6339df30794SChris Wilson 		kfree(obj->pages[page]);
6349df30794SChris Wilson 
6359df30794SChris Wilson 	kfree(obj);
6369df30794SChris Wilson }
6379df30794SChris Wilson 
6389df30794SChris Wilson static void
6399df30794SChris Wilson i915_error_state_free(struct drm_device *dev,
6409df30794SChris Wilson 		      struct drm_i915_error_state *error)
6419df30794SChris Wilson {
642e2f973d5SChris Wilson 	int i;
643e2f973d5SChris Wilson 
644e2f973d5SChris Wilson 	for (i = 0; i < ARRAY_SIZE(error->batchbuffer); i++)
645e2f973d5SChris Wilson 		i915_error_object_free(error->batchbuffer[i]);
646e2f973d5SChris Wilson 
647e2f973d5SChris Wilson 	for (i = 0; i < ARRAY_SIZE(error->ringbuffer); i++)
648e2f973d5SChris Wilson 		i915_error_object_free(error->ringbuffer[i]);
649e2f973d5SChris Wilson 
6509df30794SChris Wilson 	kfree(error->active_bo);
6516ef3d427SChris Wilson 	kfree(error->overlay);
6529df30794SChris Wilson 	kfree(error);
6539df30794SChris Wilson }
6549df30794SChris Wilson 
655c724e8a9SChris Wilson static u32 capture_bo_list(struct drm_i915_error_buffer *err,
656c724e8a9SChris Wilson 			   int count,
657c724e8a9SChris Wilson 			   struct list_head *head)
658c724e8a9SChris Wilson {
659c724e8a9SChris Wilson 	struct drm_i915_gem_object *obj;
660c724e8a9SChris Wilson 	int i = 0;
661c724e8a9SChris Wilson 
662c724e8a9SChris Wilson 	list_for_each_entry(obj, head, mm_list) {
663c724e8a9SChris Wilson 		err->size = obj->base.size;
664c724e8a9SChris Wilson 		err->name = obj->base.name;
665c724e8a9SChris Wilson 		err->seqno = obj->last_rendering_seqno;
666c724e8a9SChris Wilson 		err->gtt_offset = obj->gtt_offset;
667c724e8a9SChris Wilson 		err->read_domains = obj->base.read_domains;
668c724e8a9SChris Wilson 		err->write_domain = obj->base.write_domain;
669c724e8a9SChris Wilson 		err->fence_reg = obj->fence_reg;
670c724e8a9SChris Wilson 		err->pinned = 0;
671c724e8a9SChris Wilson 		if (obj->pin_count > 0)
672c724e8a9SChris Wilson 			err->pinned = 1;
673c724e8a9SChris Wilson 		if (obj->user_pin_count > 0)
674c724e8a9SChris Wilson 			err->pinned = -1;
675c724e8a9SChris Wilson 		err->tiling = obj->tiling_mode;
676c724e8a9SChris Wilson 		err->dirty = obj->dirty;
677c724e8a9SChris Wilson 		err->purgeable = obj->madv != I915_MADV_WILLNEED;
6783685092bSChris Wilson 		err->ring = obj->ring ? obj->ring->id : 0;
679a779e5abSChris Wilson 		err->agp_type = obj->agp_type == AGP_USER_CACHED_MEMORY;
680c724e8a9SChris Wilson 
681c724e8a9SChris Wilson 		if (++i == count)
682c724e8a9SChris Wilson 			break;
683c724e8a9SChris Wilson 
684c724e8a9SChris Wilson 		err++;
685c724e8a9SChris Wilson 	}
686c724e8a9SChris Wilson 
687c724e8a9SChris Wilson 	return i;
688c724e8a9SChris Wilson }
689c724e8a9SChris Wilson 
690748ebc60SChris Wilson static void i915_gem_record_fences(struct drm_device *dev,
691748ebc60SChris Wilson 				   struct drm_i915_error_state *error)
692748ebc60SChris Wilson {
693748ebc60SChris Wilson 	struct drm_i915_private *dev_priv = dev->dev_private;
694748ebc60SChris Wilson 	int i;
695748ebc60SChris Wilson 
696748ebc60SChris Wilson 	/* Fences */
697748ebc60SChris Wilson 	switch (INTEL_INFO(dev)->gen) {
698748ebc60SChris Wilson 	case 6:
699748ebc60SChris Wilson 		for (i = 0; i < 16; i++)
700748ebc60SChris Wilson 			error->fence[i] = I915_READ64(FENCE_REG_SANDYBRIDGE_0 + (i * 8));
701748ebc60SChris Wilson 		break;
702748ebc60SChris Wilson 	case 5:
703748ebc60SChris Wilson 	case 4:
704748ebc60SChris Wilson 		for (i = 0; i < 16; i++)
705748ebc60SChris Wilson 			error->fence[i] = I915_READ64(FENCE_REG_965_0 + (i * 8));
706748ebc60SChris Wilson 		break;
707748ebc60SChris Wilson 	case 3:
708748ebc60SChris Wilson 		if (IS_I945G(dev) || IS_I945GM(dev) || IS_G33(dev))
709748ebc60SChris Wilson 			for (i = 0; i < 8; i++)
710748ebc60SChris Wilson 				error->fence[i+8] = I915_READ(FENCE_REG_945_8 + (i * 4));
711748ebc60SChris Wilson 	case 2:
712748ebc60SChris Wilson 		for (i = 0; i < 8; i++)
713748ebc60SChris Wilson 			error->fence[i] = I915_READ(FENCE_REG_830_0 + (i * 4));
714748ebc60SChris Wilson 		break;
715748ebc60SChris Wilson 
716748ebc60SChris Wilson 	}
717748ebc60SChris Wilson }
718748ebc60SChris Wilson 
719bcfb2e28SChris Wilson static struct drm_i915_error_object *
720bcfb2e28SChris Wilson i915_error_first_batchbuffer(struct drm_i915_private *dev_priv,
721bcfb2e28SChris Wilson 			     struct intel_ring_buffer *ring)
722bcfb2e28SChris Wilson {
723bcfb2e28SChris Wilson 	struct drm_i915_gem_object *obj;
724bcfb2e28SChris Wilson 	u32 seqno;
725bcfb2e28SChris Wilson 
726bcfb2e28SChris Wilson 	if (!ring->get_seqno)
727bcfb2e28SChris Wilson 		return NULL;
728bcfb2e28SChris Wilson 
729bcfb2e28SChris Wilson 	seqno = ring->get_seqno(ring);
730bcfb2e28SChris Wilson 	list_for_each_entry(obj, &dev_priv->mm.active_list, mm_list) {
731bcfb2e28SChris Wilson 		if (obj->ring != ring)
732bcfb2e28SChris Wilson 			continue;
733bcfb2e28SChris Wilson 
734c37d9a5dSChris Wilson 		if (i915_seqno_passed(seqno, obj->last_rendering_seqno))
735bcfb2e28SChris Wilson 			continue;
736bcfb2e28SChris Wilson 
737bcfb2e28SChris Wilson 		if ((obj->base.read_domains & I915_GEM_DOMAIN_COMMAND) == 0)
738bcfb2e28SChris Wilson 			continue;
739bcfb2e28SChris Wilson 
740bcfb2e28SChris Wilson 		/* We need to copy these to an anonymous buffer as the simplest
741bcfb2e28SChris Wilson 		 * method to avoid being overwritten by userspace.
742bcfb2e28SChris Wilson 		 */
743bcfb2e28SChris Wilson 		return i915_error_object_create(dev_priv, obj);
744bcfb2e28SChris Wilson 	}
745bcfb2e28SChris Wilson 
746bcfb2e28SChris Wilson 	return NULL;
747bcfb2e28SChris Wilson }
748bcfb2e28SChris Wilson 
7498a905236SJesse Barnes /**
7508a905236SJesse Barnes  * i915_capture_error_state - capture an error record for later analysis
7518a905236SJesse Barnes  * @dev: drm device
7528a905236SJesse Barnes  *
7538a905236SJesse Barnes  * Should be called when an error is detected (either a hang or an error
7548a905236SJesse Barnes  * interrupt) to capture error state from the time of the error.  Fills
7558a905236SJesse Barnes  * out a structure which becomes available in debugfs for user level tools
7568a905236SJesse Barnes  * to pick up.
7578a905236SJesse Barnes  */
75863eeaf38SJesse Barnes static void i915_capture_error_state(struct drm_device *dev)
75963eeaf38SJesse Barnes {
76063eeaf38SJesse Barnes 	struct drm_i915_private *dev_priv = dev->dev_private;
76105394f39SChris Wilson 	struct drm_i915_gem_object *obj;
76263eeaf38SJesse Barnes 	struct drm_i915_error_state *error;
76363eeaf38SJesse Barnes 	unsigned long flags;
7649db4a9c7SJesse Barnes 	int i, pipe;
76563eeaf38SJesse Barnes 
76663eeaf38SJesse Barnes 	spin_lock_irqsave(&dev_priv->error_lock, flags);
7679df30794SChris Wilson 	error = dev_priv->first_error;
7689df30794SChris Wilson 	spin_unlock_irqrestore(&dev_priv->error_lock, flags);
7699df30794SChris Wilson 	if (error)
7709df30794SChris Wilson 		return;
77163eeaf38SJesse Barnes 
7729db4a9c7SJesse Barnes 	/* Account for pipe specific data like PIPE*STAT */
77363eeaf38SJesse Barnes 	error = kmalloc(sizeof(*error), GFP_ATOMIC);
77463eeaf38SJesse Barnes 	if (!error) {
7759df30794SChris Wilson 		DRM_DEBUG_DRIVER("out of memory, not capturing error state\n");
7769df30794SChris Wilson 		return;
77763eeaf38SJesse Barnes 	}
77863eeaf38SJesse Barnes 
779b6f7833bSChris Wilson 	DRM_INFO("capturing error event; look for more information in /debug/dri/%d/i915_error_state\n",
780b6f7833bSChris Wilson 		 dev->primary->index);
7812fa772f3SChris Wilson 
7821ec14ad3SChris Wilson 	error->seqno = dev_priv->ring[RCS].get_seqno(&dev_priv->ring[RCS]);
78363eeaf38SJesse Barnes 	error->eir = I915_READ(EIR);
78463eeaf38SJesse Barnes 	error->pgtbl_er = I915_READ(PGTBL_ER);
7859db4a9c7SJesse Barnes 	for_each_pipe(pipe)
7869db4a9c7SJesse Barnes 		error->pipestat[pipe] = I915_READ(PIPESTAT(pipe));
78763eeaf38SJesse Barnes 	error->instpm = I915_READ(INSTPM);
788f406839fSChris Wilson 	error->error = 0;
789f406839fSChris Wilson 	if (INTEL_INFO(dev)->gen >= 6) {
790f406839fSChris Wilson 		error->error = I915_READ(ERROR_GEN6);
791add354ddSChris Wilson 
7921d8f38f4SChris Wilson 		error->bcs_acthd = I915_READ(BCS_ACTHD);
7931d8f38f4SChris Wilson 		error->bcs_ipehr = I915_READ(BCS_IPEHR);
7941d8f38f4SChris Wilson 		error->bcs_ipeir = I915_READ(BCS_IPEIR);
7951d8f38f4SChris Wilson 		error->bcs_instdone = I915_READ(BCS_INSTDONE);
7961d8f38f4SChris Wilson 		error->bcs_seqno = 0;
7971ec14ad3SChris Wilson 		if (dev_priv->ring[BCS].get_seqno)
7981ec14ad3SChris Wilson 			error->bcs_seqno = dev_priv->ring[BCS].get_seqno(&dev_priv->ring[BCS]);
799add354ddSChris Wilson 
800add354ddSChris Wilson 		error->vcs_acthd = I915_READ(VCS_ACTHD);
801add354ddSChris Wilson 		error->vcs_ipehr = I915_READ(VCS_IPEHR);
802add354ddSChris Wilson 		error->vcs_ipeir = I915_READ(VCS_IPEIR);
803add354ddSChris Wilson 		error->vcs_instdone = I915_READ(VCS_INSTDONE);
804add354ddSChris Wilson 		error->vcs_seqno = 0;
8051ec14ad3SChris Wilson 		if (dev_priv->ring[VCS].get_seqno)
8061ec14ad3SChris Wilson 			error->vcs_seqno = dev_priv->ring[VCS].get_seqno(&dev_priv->ring[VCS]);
807f406839fSChris Wilson 	}
808f406839fSChris Wilson 	if (INTEL_INFO(dev)->gen >= 4) {
80963eeaf38SJesse Barnes 		error->ipeir = I915_READ(IPEIR_I965);
81063eeaf38SJesse Barnes 		error->ipehr = I915_READ(IPEHR_I965);
81163eeaf38SJesse Barnes 		error->instdone = I915_READ(INSTDONE_I965);
81263eeaf38SJesse Barnes 		error->instps = I915_READ(INSTPS);
81363eeaf38SJesse Barnes 		error->instdone1 = I915_READ(INSTDONE1);
81463eeaf38SJesse Barnes 		error->acthd = I915_READ(ACTHD_I965);
8159df30794SChris Wilson 		error->bbaddr = I915_READ64(BB_ADDR);
816f406839fSChris Wilson 	} else {
817f406839fSChris Wilson 		error->ipeir = I915_READ(IPEIR);
818f406839fSChris Wilson 		error->ipehr = I915_READ(IPEHR);
819f406839fSChris Wilson 		error->instdone = I915_READ(INSTDONE);
820f406839fSChris Wilson 		error->acthd = I915_READ(ACTHD);
821f406839fSChris Wilson 		error->bbaddr = 0;
8229df30794SChris Wilson 	}
823748ebc60SChris Wilson 	i915_gem_record_fences(dev, error);
8249df30794SChris Wilson 
825e2f973d5SChris Wilson 	/* Record the active batch and ring buffers */
826e2f973d5SChris Wilson 	for (i = 0; i < I915_NUM_RINGS; i++) {
827bcfb2e28SChris Wilson 		error->batchbuffer[i] =
828bcfb2e28SChris Wilson 			i915_error_first_batchbuffer(dev_priv,
829bcfb2e28SChris Wilson 						     &dev_priv->ring[i]);
8309df30794SChris Wilson 
831e2f973d5SChris Wilson 		error->ringbuffer[i] =
832e2f973d5SChris Wilson 			i915_error_object_create(dev_priv,
833e2f973d5SChris Wilson 						 dev_priv->ring[i].obj);
834e2f973d5SChris Wilson 	}
8359df30794SChris Wilson 
836c724e8a9SChris Wilson 	/* Record buffers on the active and pinned lists. */
8379df30794SChris Wilson 	error->active_bo = NULL;
838c724e8a9SChris Wilson 	error->pinned_bo = NULL;
8399df30794SChris Wilson 
840bcfb2e28SChris Wilson 	i = 0;
841bcfb2e28SChris Wilson 	list_for_each_entry(obj, &dev_priv->mm.active_list, mm_list)
842bcfb2e28SChris Wilson 		i++;
843bcfb2e28SChris Wilson 	error->active_bo_count = i;
84405394f39SChris Wilson 	list_for_each_entry(obj, &dev_priv->mm.pinned_list, mm_list)
845bcfb2e28SChris Wilson 		i++;
846bcfb2e28SChris Wilson 	error->pinned_bo_count = i - error->active_bo_count;
847c724e8a9SChris Wilson 
8488e934dbfSChris Wilson 	error->active_bo = NULL;
8498e934dbfSChris Wilson 	error->pinned_bo = NULL;
850bcfb2e28SChris Wilson 	if (i) {
851bcfb2e28SChris Wilson 		error->active_bo = kmalloc(sizeof(*error->active_bo)*i,
8529df30794SChris Wilson 					   GFP_ATOMIC);
853c724e8a9SChris Wilson 		if (error->active_bo)
854c724e8a9SChris Wilson 			error->pinned_bo =
855c724e8a9SChris Wilson 				error->active_bo + error->active_bo_count;
8569df30794SChris Wilson 	}
857c724e8a9SChris Wilson 
858c724e8a9SChris Wilson 	if (error->active_bo)
859c724e8a9SChris Wilson 		error->active_bo_count =
860c724e8a9SChris Wilson 			capture_bo_list(error->active_bo,
861c724e8a9SChris Wilson 					error->active_bo_count,
862c724e8a9SChris Wilson 					&dev_priv->mm.active_list);
863c724e8a9SChris Wilson 
864c724e8a9SChris Wilson 	if (error->pinned_bo)
865c724e8a9SChris Wilson 		error->pinned_bo_count =
866c724e8a9SChris Wilson 			capture_bo_list(error->pinned_bo,
867c724e8a9SChris Wilson 					error->pinned_bo_count,
868c724e8a9SChris Wilson 					&dev_priv->mm.pinned_list);
86963eeaf38SJesse Barnes 
8708a905236SJesse Barnes 	do_gettimeofday(&error->time);
8718a905236SJesse Barnes 
8726ef3d427SChris Wilson 	error->overlay = intel_overlay_capture_error_state(dev);
873c4a1d9e4SChris Wilson 	error->display = intel_display_capture_error_state(dev);
8746ef3d427SChris Wilson 
8759df30794SChris Wilson 	spin_lock_irqsave(&dev_priv->error_lock, flags);
8769df30794SChris Wilson 	if (dev_priv->first_error == NULL) {
87763eeaf38SJesse Barnes 		dev_priv->first_error = error;
8789df30794SChris Wilson 		error = NULL;
8799df30794SChris Wilson 	}
88063eeaf38SJesse Barnes 	spin_unlock_irqrestore(&dev_priv->error_lock, flags);
8819df30794SChris Wilson 
8829df30794SChris Wilson 	if (error)
8839df30794SChris Wilson 		i915_error_state_free(dev, error);
8849df30794SChris Wilson }
8859df30794SChris Wilson 
8869df30794SChris Wilson void i915_destroy_error_state(struct drm_device *dev)
8879df30794SChris Wilson {
8889df30794SChris Wilson 	struct drm_i915_private *dev_priv = dev->dev_private;
8899df30794SChris Wilson 	struct drm_i915_error_state *error;
8909df30794SChris Wilson 
8919df30794SChris Wilson 	spin_lock(&dev_priv->error_lock);
8929df30794SChris Wilson 	error = dev_priv->first_error;
8939df30794SChris Wilson 	dev_priv->first_error = NULL;
8949df30794SChris Wilson 	spin_unlock(&dev_priv->error_lock);
8959df30794SChris Wilson 
8969df30794SChris Wilson 	if (error)
8979df30794SChris Wilson 		i915_error_state_free(dev, error);
89863eeaf38SJesse Barnes }
8993bd3c932SChris Wilson #else
9003bd3c932SChris Wilson #define i915_capture_error_state(x)
9013bd3c932SChris Wilson #endif
90263eeaf38SJesse Barnes 
90335aed2e6SChris Wilson static void i915_report_and_clear_eir(struct drm_device *dev)
904c0e09200SDave Airlie {
9058a905236SJesse Barnes 	struct drm_i915_private *dev_priv = dev->dev_private;
90663eeaf38SJesse Barnes 	u32 eir = I915_READ(EIR);
9079db4a9c7SJesse Barnes 	int pipe;
90863eeaf38SJesse Barnes 
90935aed2e6SChris Wilson 	if (!eir)
91035aed2e6SChris Wilson 		return;
91163eeaf38SJesse Barnes 
91263eeaf38SJesse Barnes 	printk(KERN_ERR "render error detected, EIR: 0x%08x\n",
91363eeaf38SJesse Barnes 	       eir);
9148a905236SJesse Barnes 
9158a905236SJesse Barnes 	if (IS_G4X(dev)) {
9168a905236SJesse Barnes 		if (eir & (GM45_ERROR_MEM_PRIV | GM45_ERROR_CP_PRIV)) {
9178a905236SJesse Barnes 			u32 ipeir = I915_READ(IPEIR_I965);
9188a905236SJesse Barnes 
9198a905236SJesse Barnes 			printk(KERN_ERR "  IPEIR: 0x%08x\n",
9208a905236SJesse Barnes 			       I915_READ(IPEIR_I965));
9218a905236SJesse Barnes 			printk(KERN_ERR "  IPEHR: 0x%08x\n",
9228a905236SJesse Barnes 			       I915_READ(IPEHR_I965));
9238a905236SJesse Barnes 			printk(KERN_ERR "  INSTDONE: 0x%08x\n",
9248a905236SJesse Barnes 			       I915_READ(INSTDONE_I965));
9258a905236SJesse Barnes 			printk(KERN_ERR "  INSTPS: 0x%08x\n",
9268a905236SJesse Barnes 			       I915_READ(INSTPS));
9278a905236SJesse Barnes 			printk(KERN_ERR "  INSTDONE1: 0x%08x\n",
9288a905236SJesse Barnes 			       I915_READ(INSTDONE1));
9298a905236SJesse Barnes 			printk(KERN_ERR "  ACTHD: 0x%08x\n",
9308a905236SJesse Barnes 			       I915_READ(ACTHD_I965));
9318a905236SJesse Barnes 			I915_WRITE(IPEIR_I965, ipeir);
9323143a2bfSChris Wilson 			POSTING_READ(IPEIR_I965);
9338a905236SJesse Barnes 		}
9348a905236SJesse Barnes 		if (eir & GM45_ERROR_PAGE_TABLE) {
9358a905236SJesse Barnes 			u32 pgtbl_err = I915_READ(PGTBL_ER);
9368a905236SJesse Barnes 			printk(KERN_ERR "page table error\n");
9378a905236SJesse Barnes 			printk(KERN_ERR "  PGTBL_ER: 0x%08x\n",
9388a905236SJesse Barnes 			       pgtbl_err);
9398a905236SJesse Barnes 			I915_WRITE(PGTBL_ER, pgtbl_err);
9403143a2bfSChris Wilson 			POSTING_READ(PGTBL_ER);
9418a905236SJesse Barnes 		}
9428a905236SJesse Barnes 	}
9438a905236SJesse Barnes 
944a6c45cf0SChris Wilson 	if (!IS_GEN2(dev)) {
94563eeaf38SJesse Barnes 		if (eir & I915_ERROR_PAGE_TABLE) {
94663eeaf38SJesse Barnes 			u32 pgtbl_err = I915_READ(PGTBL_ER);
94763eeaf38SJesse Barnes 			printk(KERN_ERR "page table error\n");
94863eeaf38SJesse Barnes 			printk(KERN_ERR "  PGTBL_ER: 0x%08x\n",
94963eeaf38SJesse Barnes 			       pgtbl_err);
95063eeaf38SJesse Barnes 			I915_WRITE(PGTBL_ER, pgtbl_err);
9513143a2bfSChris Wilson 			POSTING_READ(PGTBL_ER);
95263eeaf38SJesse Barnes 		}
9538a905236SJesse Barnes 	}
9548a905236SJesse Barnes 
95563eeaf38SJesse Barnes 	if (eir & I915_ERROR_MEMORY_REFRESH) {
9569db4a9c7SJesse Barnes 		printk(KERN_ERR "memory refresh error:\n");
9579db4a9c7SJesse Barnes 		for_each_pipe(pipe)
9589db4a9c7SJesse Barnes 			printk(KERN_ERR "pipe %c stat: 0x%08x\n",
9599db4a9c7SJesse Barnes 			       pipe_name(pipe), I915_READ(PIPESTAT(pipe)));
96063eeaf38SJesse Barnes 		/* pipestat has already been acked */
96163eeaf38SJesse Barnes 	}
96263eeaf38SJesse Barnes 	if (eir & I915_ERROR_INSTRUCTION) {
96363eeaf38SJesse Barnes 		printk(KERN_ERR "instruction error\n");
96463eeaf38SJesse Barnes 		printk(KERN_ERR "  INSTPM: 0x%08x\n",
96563eeaf38SJesse Barnes 		       I915_READ(INSTPM));
966a6c45cf0SChris Wilson 		if (INTEL_INFO(dev)->gen < 4) {
96763eeaf38SJesse Barnes 			u32 ipeir = I915_READ(IPEIR);
96863eeaf38SJesse Barnes 
96963eeaf38SJesse Barnes 			printk(KERN_ERR "  IPEIR: 0x%08x\n",
97063eeaf38SJesse Barnes 			       I915_READ(IPEIR));
97163eeaf38SJesse Barnes 			printk(KERN_ERR "  IPEHR: 0x%08x\n",
97263eeaf38SJesse Barnes 			       I915_READ(IPEHR));
97363eeaf38SJesse Barnes 			printk(KERN_ERR "  INSTDONE: 0x%08x\n",
97463eeaf38SJesse Barnes 			       I915_READ(INSTDONE));
97563eeaf38SJesse Barnes 			printk(KERN_ERR "  ACTHD: 0x%08x\n",
97663eeaf38SJesse Barnes 			       I915_READ(ACTHD));
97763eeaf38SJesse Barnes 			I915_WRITE(IPEIR, ipeir);
9783143a2bfSChris Wilson 			POSTING_READ(IPEIR);
97963eeaf38SJesse Barnes 		} else {
98063eeaf38SJesse Barnes 			u32 ipeir = I915_READ(IPEIR_I965);
98163eeaf38SJesse Barnes 
98263eeaf38SJesse Barnes 			printk(KERN_ERR "  IPEIR: 0x%08x\n",
98363eeaf38SJesse Barnes 			       I915_READ(IPEIR_I965));
98463eeaf38SJesse Barnes 			printk(KERN_ERR "  IPEHR: 0x%08x\n",
98563eeaf38SJesse Barnes 			       I915_READ(IPEHR_I965));
98663eeaf38SJesse Barnes 			printk(KERN_ERR "  INSTDONE: 0x%08x\n",
98763eeaf38SJesse Barnes 			       I915_READ(INSTDONE_I965));
98863eeaf38SJesse Barnes 			printk(KERN_ERR "  INSTPS: 0x%08x\n",
98963eeaf38SJesse Barnes 			       I915_READ(INSTPS));
99063eeaf38SJesse Barnes 			printk(KERN_ERR "  INSTDONE1: 0x%08x\n",
99163eeaf38SJesse Barnes 			       I915_READ(INSTDONE1));
99263eeaf38SJesse Barnes 			printk(KERN_ERR "  ACTHD: 0x%08x\n",
99363eeaf38SJesse Barnes 			       I915_READ(ACTHD_I965));
99463eeaf38SJesse Barnes 			I915_WRITE(IPEIR_I965, ipeir);
9953143a2bfSChris Wilson 			POSTING_READ(IPEIR_I965);
99663eeaf38SJesse Barnes 		}
99763eeaf38SJesse Barnes 	}
99863eeaf38SJesse Barnes 
99963eeaf38SJesse Barnes 	I915_WRITE(EIR, eir);
10003143a2bfSChris Wilson 	POSTING_READ(EIR);
100163eeaf38SJesse Barnes 	eir = I915_READ(EIR);
100263eeaf38SJesse Barnes 	if (eir) {
100363eeaf38SJesse Barnes 		/*
100463eeaf38SJesse Barnes 		 * some errors might have become stuck,
100563eeaf38SJesse Barnes 		 * mask them.
100663eeaf38SJesse Barnes 		 */
100763eeaf38SJesse Barnes 		DRM_ERROR("EIR stuck: 0x%08x, masking\n", eir);
100863eeaf38SJesse Barnes 		I915_WRITE(EMR, I915_READ(EMR) | eir);
100963eeaf38SJesse Barnes 		I915_WRITE(IIR, I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT);
101063eeaf38SJesse Barnes 	}
101135aed2e6SChris Wilson }
101235aed2e6SChris Wilson 
101335aed2e6SChris Wilson /**
101435aed2e6SChris Wilson  * i915_handle_error - handle an error interrupt
101535aed2e6SChris Wilson  * @dev: drm device
101635aed2e6SChris Wilson  *
101735aed2e6SChris Wilson  * Do some basic checking of regsiter state at error interrupt time and
101835aed2e6SChris Wilson  * dump it to the syslog.  Also call i915_capture_error_state() to make
101935aed2e6SChris Wilson  * sure we get a record and make it available in debugfs.  Fire a uevent
102035aed2e6SChris Wilson  * so userspace knows something bad happened (should trigger collection
102135aed2e6SChris Wilson  * of a ring dump etc.).
102235aed2e6SChris Wilson  */
1023527f9e90SChris Wilson void i915_handle_error(struct drm_device *dev, bool wedged)
102435aed2e6SChris Wilson {
102535aed2e6SChris Wilson 	struct drm_i915_private *dev_priv = dev->dev_private;
102635aed2e6SChris Wilson 
102735aed2e6SChris Wilson 	i915_capture_error_state(dev);
102835aed2e6SChris Wilson 	i915_report_and_clear_eir(dev);
10298a905236SJesse Barnes 
1030ba1234d1SBen Gamari 	if (wedged) {
103130dbf0c0SChris Wilson 		INIT_COMPLETION(dev_priv->error_completion);
1032ba1234d1SBen Gamari 		atomic_set(&dev_priv->mm.wedged, 1);
1033ba1234d1SBen Gamari 
103411ed50ecSBen Gamari 		/*
103511ed50ecSBen Gamari 		 * Wakeup waiting processes so they don't hang
103611ed50ecSBen Gamari 		 */
10371ec14ad3SChris Wilson 		wake_up_all(&dev_priv->ring[RCS].irq_queue);
1038f787a5f5SChris Wilson 		if (HAS_BSD(dev))
10391ec14ad3SChris Wilson 			wake_up_all(&dev_priv->ring[VCS].irq_queue);
1040549f7365SChris Wilson 		if (HAS_BLT(dev))
10411ec14ad3SChris Wilson 			wake_up_all(&dev_priv->ring[BCS].irq_queue);
104211ed50ecSBen Gamari 	}
104311ed50ecSBen Gamari 
10449c9fe1f8SEric Anholt 	queue_work(dev_priv->wq, &dev_priv->error_work);
10458a905236SJesse Barnes }
10468a905236SJesse Barnes 
10474e5359cdSSimon Farnsworth static void i915_pageflip_stall_check(struct drm_device *dev, int pipe)
10484e5359cdSSimon Farnsworth {
10494e5359cdSSimon Farnsworth 	drm_i915_private_t *dev_priv = dev->dev_private;
10504e5359cdSSimon Farnsworth 	struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
10514e5359cdSSimon Farnsworth 	struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
105205394f39SChris Wilson 	struct drm_i915_gem_object *obj;
10534e5359cdSSimon Farnsworth 	struct intel_unpin_work *work;
10544e5359cdSSimon Farnsworth 	unsigned long flags;
10554e5359cdSSimon Farnsworth 	bool stall_detected;
10564e5359cdSSimon Farnsworth 
10574e5359cdSSimon Farnsworth 	/* Ignore early vblank irqs */
10584e5359cdSSimon Farnsworth 	if (intel_crtc == NULL)
10594e5359cdSSimon Farnsworth 		return;
10604e5359cdSSimon Farnsworth 
10614e5359cdSSimon Farnsworth 	spin_lock_irqsave(&dev->event_lock, flags);
10624e5359cdSSimon Farnsworth 	work = intel_crtc->unpin_work;
10634e5359cdSSimon Farnsworth 
10644e5359cdSSimon Farnsworth 	if (work == NULL || work->pending || !work->enable_stall_check) {
10654e5359cdSSimon Farnsworth 		/* Either the pending flip IRQ arrived, or we're too early. Don't check */
10664e5359cdSSimon Farnsworth 		spin_unlock_irqrestore(&dev->event_lock, flags);
10674e5359cdSSimon Farnsworth 		return;
10684e5359cdSSimon Farnsworth 	}
10694e5359cdSSimon Farnsworth 
10704e5359cdSSimon Farnsworth 	/* Potential stall - if we see that the flip has happened, assume a missed interrupt */
107105394f39SChris Wilson 	obj = work->pending_flip_obj;
1072a6c45cf0SChris Wilson 	if (INTEL_INFO(dev)->gen >= 4) {
10739db4a9c7SJesse Barnes 		int dspsurf = DSPSURF(intel_crtc->plane);
107405394f39SChris Wilson 		stall_detected = I915_READ(dspsurf) == obj->gtt_offset;
10754e5359cdSSimon Farnsworth 	} else {
10769db4a9c7SJesse Barnes 		int dspaddr = DSPADDR(intel_crtc->plane);
107705394f39SChris Wilson 		stall_detected = I915_READ(dspaddr) == (obj->gtt_offset +
10784e5359cdSSimon Farnsworth 							crtc->y * crtc->fb->pitch +
10794e5359cdSSimon Farnsworth 							crtc->x * crtc->fb->bits_per_pixel/8);
10804e5359cdSSimon Farnsworth 	}
10814e5359cdSSimon Farnsworth 
10824e5359cdSSimon Farnsworth 	spin_unlock_irqrestore(&dev->event_lock, flags);
10834e5359cdSSimon Farnsworth 
10844e5359cdSSimon Farnsworth 	if (stall_detected) {
10854e5359cdSSimon Farnsworth 		DRM_DEBUG_DRIVER("Pageflip stall detected\n");
10864e5359cdSSimon Farnsworth 		intel_prepare_page_flip(dev, intel_crtc->plane);
10874e5359cdSSimon Farnsworth 	}
10884e5359cdSSimon Farnsworth }
10894e5359cdSSimon Farnsworth 
10908a905236SJesse Barnes irqreturn_t i915_driver_irq_handler(DRM_IRQ_ARGS)
10918a905236SJesse Barnes {
10928a905236SJesse Barnes 	struct drm_device *dev = (struct drm_device *) arg;
10938a905236SJesse Barnes 	drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
10948a905236SJesse Barnes 	struct drm_i915_master_private *master_priv;
10958a905236SJesse Barnes 	u32 iir, new_iir;
10969db4a9c7SJesse Barnes 	u32 pipe_stats[I915_MAX_PIPES];
10978a905236SJesse Barnes 	u32 vblank_status;
10988a905236SJesse Barnes 	int vblank = 0;
10998a905236SJesse Barnes 	unsigned long irqflags;
11008a905236SJesse Barnes 	int irq_received;
11019db4a9c7SJesse Barnes 	int ret = IRQ_NONE, pipe;
11029db4a9c7SJesse Barnes 	bool blc_event = false;
11038a905236SJesse Barnes 
11048a905236SJesse Barnes 	atomic_inc(&dev_priv->irq_received);
11058a905236SJesse Barnes 
1106bad720ffSEric Anholt 	if (HAS_PCH_SPLIT(dev))
1107f2b115e6SAdam Jackson 		return ironlake_irq_handler(dev);
11088a905236SJesse Barnes 
11098a905236SJesse Barnes 	iir = I915_READ(IIR);
11108a905236SJesse Barnes 
1111a6c45cf0SChris Wilson 	if (INTEL_INFO(dev)->gen >= 4)
1112d874bcffSJesse Barnes 		vblank_status = PIPE_START_VBLANK_INTERRUPT_STATUS;
1113e25e6601SJesse Barnes 	else
1114d874bcffSJesse Barnes 		vblank_status = PIPE_VBLANK_INTERRUPT_STATUS;
11158a905236SJesse Barnes 
11168a905236SJesse Barnes 	for (;;) {
11178a905236SJesse Barnes 		irq_received = iir != 0;
11188a905236SJesse Barnes 
11198a905236SJesse Barnes 		/* Can't rely on pipestat interrupt bit in iir as it might
11208a905236SJesse Barnes 		 * have been cleared after the pipestat interrupt was received.
11218a905236SJesse Barnes 		 * It doesn't set the bit in iir again, but it still produces
11228a905236SJesse Barnes 		 * interrupts (for non-MSI).
11238a905236SJesse Barnes 		 */
11241ec14ad3SChris Wilson 		spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
11258a905236SJesse Barnes 		if (iir & I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT)
1126ba1234d1SBen Gamari 			i915_handle_error(dev, false);
11278a905236SJesse Barnes 
11289db4a9c7SJesse Barnes 		for_each_pipe(pipe) {
11299db4a9c7SJesse Barnes 			int reg = PIPESTAT(pipe);
11309db4a9c7SJesse Barnes 			pipe_stats[pipe] = I915_READ(reg);
11319db4a9c7SJesse Barnes 
11328a905236SJesse Barnes 			/*
11339db4a9c7SJesse Barnes 			 * Clear the PIPE*STAT regs before the IIR
11348a905236SJesse Barnes 			 */
11359db4a9c7SJesse Barnes 			if (pipe_stats[pipe] & 0x8000ffff) {
11369db4a9c7SJesse Barnes 				if (pipe_stats[pipe] & PIPE_FIFO_UNDERRUN_STATUS)
11379db4a9c7SJesse Barnes 					DRM_DEBUG_DRIVER("pipe %c underrun\n",
11389db4a9c7SJesse Barnes 							 pipe_name(pipe));
11399db4a9c7SJesse Barnes 				I915_WRITE(reg, pipe_stats[pipe]);
11408a905236SJesse Barnes 				irq_received = 1;
11418a905236SJesse Barnes 			}
11428a905236SJesse Barnes 		}
11431ec14ad3SChris Wilson 		spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
11448a905236SJesse Barnes 
11458a905236SJesse Barnes 		if (!irq_received)
11468a905236SJesse Barnes 			break;
11478a905236SJesse Barnes 
11488a905236SJesse Barnes 		ret = IRQ_HANDLED;
11498a905236SJesse Barnes 
11508a905236SJesse Barnes 		/* Consume port.  Then clear IIR or we'll miss events */
11518a905236SJesse Barnes 		if ((I915_HAS_HOTPLUG(dev)) &&
11528a905236SJesse Barnes 		    (iir & I915_DISPLAY_PORT_INTERRUPT)) {
11538a905236SJesse Barnes 			u32 hotplug_status = I915_READ(PORT_HOTPLUG_STAT);
11548a905236SJesse Barnes 
115544d98a61SZhao Yakui 			DRM_DEBUG_DRIVER("hotplug event received, stat 0x%08x\n",
11568a905236SJesse Barnes 				  hotplug_status);
11578a905236SJesse Barnes 			if (hotplug_status & dev_priv->hotplug_supported_mask)
11589c9fe1f8SEric Anholt 				queue_work(dev_priv->wq,
11599c9fe1f8SEric Anholt 					   &dev_priv->hotplug_work);
11608a905236SJesse Barnes 
11618a905236SJesse Barnes 			I915_WRITE(PORT_HOTPLUG_STAT, hotplug_status);
11628a905236SJesse Barnes 			I915_READ(PORT_HOTPLUG_STAT);
116363eeaf38SJesse Barnes 		}
116463eeaf38SJesse Barnes 
1165673a394bSEric Anholt 		I915_WRITE(IIR, iir);
1166cdfbc41fSEric Anholt 		new_iir = I915_READ(IIR); /* Flush posted writes */
11677c463586SKeith Packard 
11687c1c2871SDave Airlie 		if (dev->primary->master) {
11697c1c2871SDave Airlie 			master_priv = dev->primary->master->driver_priv;
11707c1c2871SDave Airlie 			if (master_priv->sarea_priv)
11717c1c2871SDave Airlie 				master_priv->sarea_priv->last_dispatch =
1172c99b058fSKristian Høgsberg 					READ_BREADCRUMB(dev_priv);
11737c1c2871SDave Airlie 		}
11740a3e67a4SJesse Barnes 
1175549f7365SChris Wilson 		if (iir & I915_USER_INTERRUPT)
11761ec14ad3SChris Wilson 			notify_ring(dev, &dev_priv->ring[RCS]);
11771ec14ad3SChris Wilson 		if (iir & I915_BSD_USER_INTERRUPT)
11781ec14ad3SChris Wilson 			notify_ring(dev, &dev_priv->ring[VCS]);
1179d1b851fcSZou Nan hai 
11801afe3e9dSJesse Barnes 		if (iir & I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT) {
11816b95a207SKristian Høgsberg 			intel_prepare_page_flip(dev, 0);
11821afe3e9dSJesse Barnes 			if (dev_priv->flip_pending_is_done)
11831afe3e9dSJesse Barnes 				intel_finish_page_flip_plane(dev, 0);
11841afe3e9dSJesse Barnes 		}
11856b95a207SKristian Høgsberg 
11861afe3e9dSJesse Barnes 		if (iir & I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT) {
118770565d00SJesse Barnes 			intel_prepare_page_flip(dev, 1);
11881afe3e9dSJesse Barnes 			if (dev_priv->flip_pending_is_done)
11891afe3e9dSJesse Barnes 				intel_finish_page_flip_plane(dev, 1);
11901afe3e9dSJesse Barnes 		}
11916b95a207SKristian Høgsberg 
11929db4a9c7SJesse Barnes 		for_each_pipe(pipe) {
11939db4a9c7SJesse Barnes 			if (pipe_stats[pipe] & vblank_status &&
11949db4a9c7SJesse Barnes 			    drm_handle_vblank(dev, pipe)) {
11957c463586SKeith Packard 				vblank++;
11964e5359cdSSimon Farnsworth 				if (!dev_priv->flip_pending_is_done) {
11979db4a9c7SJesse Barnes 					i915_pageflip_stall_check(dev, pipe);
11989db4a9c7SJesse Barnes 					intel_finish_page_flip(dev, pipe);
11997c463586SKeith Packard 				}
12004e5359cdSSimon Farnsworth 			}
12017c463586SKeith Packard 
12029db4a9c7SJesse Barnes 			if (pipe_stats[pipe] & PIPE_LEGACY_BLC_EVENT_STATUS)
12039db4a9c7SJesse Barnes 				blc_event = true;
12044e5359cdSSimon Farnsworth 		}
12057c463586SKeith Packard 
12069db4a9c7SJesse Barnes 
12079db4a9c7SJesse Barnes 		if (blc_event || (iir & I915_ASLE_INTERRUPT))
12083b617967SChris Wilson 			intel_opregion_asle_intr(dev);
12090a3e67a4SJesse Barnes 
1210cdfbc41fSEric Anholt 		/* With MSI, interrupts are only generated when iir
1211cdfbc41fSEric Anholt 		 * transitions from zero to nonzero.  If another bit got
1212cdfbc41fSEric Anholt 		 * set while we were handling the existing iir bits, then
1213cdfbc41fSEric Anholt 		 * we would never get another interrupt.
1214cdfbc41fSEric Anholt 		 *
1215cdfbc41fSEric Anholt 		 * This is fine on non-MSI as well, as if we hit this path
1216cdfbc41fSEric Anholt 		 * we avoid exiting the interrupt handler only to generate
1217cdfbc41fSEric Anholt 		 * another one.
1218cdfbc41fSEric Anholt 		 *
1219cdfbc41fSEric Anholt 		 * Note that for MSI this could cause a stray interrupt report
1220cdfbc41fSEric Anholt 		 * if an interrupt landed in the time between writing IIR and
1221cdfbc41fSEric Anholt 		 * the posting read.  This should be rare enough to never
1222cdfbc41fSEric Anholt 		 * trigger the 99% of 100,000 interrupts test for disabling
1223cdfbc41fSEric Anholt 		 * stray interrupts.
1224cdfbc41fSEric Anholt 		 */
1225cdfbc41fSEric Anholt 		iir = new_iir;
122605eff845SKeith Packard 	}
1227cdfbc41fSEric Anholt 
122805eff845SKeith Packard 	return ret;
1229c0e09200SDave Airlie }
1230c0e09200SDave Airlie 
1231c0e09200SDave Airlie static int i915_emit_irq(struct drm_device * dev)
1232c0e09200SDave Airlie {
1233c0e09200SDave Airlie 	drm_i915_private_t *dev_priv = dev->dev_private;
12347c1c2871SDave Airlie 	struct drm_i915_master_private *master_priv = dev->primary->master->driver_priv;
1235c0e09200SDave Airlie 
1236c0e09200SDave Airlie 	i915_kernel_lost_context(dev);
1237c0e09200SDave Airlie 
123844d98a61SZhao Yakui 	DRM_DEBUG_DRIVER("\n");
1239c0e09200SDave Airlie 
1240c99b058fSKristian Høgsberg 	dev_priv->counter++;
1241c0e09200SDave Airlie 	if (dev_priv->counter > 0x7FFFFFFFUL)
1242c99b058fSKristian Høgsberg 		dev_priv->counter = 1;
12437c1c2871SDave Airlie 	if (master_priv->sarea_priv)
12447c1c2871SDave Airlie 		master_priv->sarea_priv->last_enqueue = dev_priv->counter;
1245c0e09200SDave Airlie 
1246e1f99ce6SChris Wilson 	if (BEGIN_LP_RING(4) == 0) {
1247585fb111SJesse Barnes 		OUT_RING(MI_STORE_DWORD_INDEX);
12480baf823aSKeith Packard 		OUT_RING(I915_BREADCRUMB_INDEX << MI_STORE_DWORD_INDEX_SHIFT);
1249c0e09200SDave Airlie 		OUT_RING(dev_priv->counter);
1250585fb111SJesse Barnes 		OUT_RING(MI_USER_INTERRUPT);
1251c0e09200SDave Airlie 		ADVANCE_LP_RING();
1252e1f99ce6SChris Wilson 	}
1253c0e09200SDave Airlie 
1254c0e09200SDave Airlie 	return dev_priv->counter;
1255c0e09200SDave Airlie }
1256c0e09200SDave Airlie 
1257c0e09200SDave Airlie static int i915_wait_irq(struct drm_device * dev, int irq_nr)
1258c0e09200SDave Airlie {
1259c0e09200SDave Airlie 	drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
12607c1c2871SDave Airlie 	struct drm_i915_master_private *master_priv = dev->primary->master->driver_priv;
1261c0e09200SDave Airlie 	int ret = 0;
12621ec14ad3SChris Wilson 	struct intel_ring_buffer *ring = LP_RING(dev_priv);
1263c0e09200SDave Airlie 
126444d98a61SZhao Yakui 	DRM_DEBUG_DRIVER("irq_nr=%d breadcrumb=%d\n", irq_nr,
1265c0e09200SDave Airlie 		  READ_BREADCRUMB(dev_priv));
1266c0e09200SDave Airlie 
1267ed4cb414SEric Anholt 	if (READ_BREADCRUMB(dev_priv) >= irq_nr) {
12687c1c2871SDave Airlie 		if (master_priv->sarea_priv)
12697c1c2871SDave Airlie 			master_priv->sarea_priv->last_dispatch = READ_BREADCRUMB(dev_priv);
1270c0e09200SDave Airlie 		return 0;
1271ed4cb414SEric Anholt 	}
1272c0e09200SDave Airlie 
12737c1c2871SDave Airlie 	if (master_priv->sarea_priv)
12747c1c2871SDave Airlie 		master_priv->sarea_priv->perf_boxes |= I915_BOX_WAIT;
1275c0e09200SDave Airlie 
1276b13c2b96SChris Wilson 	if (ring->irq_get(ring)) {
12771ec14ad3SChris Wilson 		DRM_WAIT_ON(ret, ring->irq_queue, 3 * DRM_HZ,
1278c0e09200SDave Airlie 			    READ_BREADCRUMB(dev_priv) >= irq_nr);
12791ec14ad3SChris Wilson 		ring->irq_put(ring);
12805a9a8d1aSChris Wilson 	} else if (wait_for(READ_BREADCRUMB(dev_priv) >= irq_nr, 3000))
12815a9a8d1aSChris Wilson 		ret = -EBUSY;
1282c0e09200SDave Airlie 
1283c0e09200SDave Airlie 	if (ret == -EBUSY) {
1284c0e09200SDave Airlie 		DRM_ERROR("EBUSY -- rec: %d emitted: %d\n",
1285c0e09200SDave Airlie 			  READ_BREADCRUMB(dev_priv), (int)dev_priv->counter);
1286c0e09200SDave Airlie 	}
1287c0e09200SDave Airlie 
1288c0e09200SDave Airlie 	return ret;
1289c0e09200SDave Airlie }
1290c0e09200SDave Airlie 
1291c0e09200SDave Airlie /* Needs the lock as it touches the ring.
1292c0e09200SDave Airlie  */
1293c0e09200SDave Airlie int i915_irq_emit(struct drm_device *dev, void *data,
1294c0e09200SDave Airlie 			 struct drm_file *file_priv)
1295c0e09200SDave Airlie {
1296c0e09200SDave Airlie 	drm_i915_private_t *dev_priv = dev->dev_private;
1297c0e09200SDave Airlie 	drm_i915_irq_emit_t *emit = data;
1298c0e09200SDave Airlie 	int result;
1299c0e09200SDave Airlie 
13001ec14ad3SChris Wilson 	if (!dev_priv || !LP_RING(dev_priv)->virtual_start) {
1301c0e09200SDave Airlie 		DRM_ERROR("called with no initialization\n");
1302c0e09200SDave Airlie 		return -EINVAL;
1303c0e09200SDave Airlie 	}
1304299eb93cSEric Anholt 
1305299eb93cSEric Anholt 	RING_LOCK_TEST_WITH_RETURN(dev, file_priv);
1306299eb93cSEric Anholt 
1307546b0974SEric Anholt 	mutex_lock(&dev->struct_mutex);
1308c0e09200SDave Airlie 	result = i915_emit_irq(dev);
1309546b0974SEric Anholt 	mutex_unlock(&dev->struct_mutex);
1310c0e09200SDave Airlie 
1311c0e09200SDave Airlie 	if (DRM_COPY_TO_USER(emit->irq_seq, &result, sizeof(int))) {
1312c0e09200SDave Airlie 		DRM_ERROR("copy_to_user\n");
1313c0e09200SDave Airlie 		return -EFAULT;
1314c0e09200SDave Airlie 	}
1315c0e09200SDave Airlie 
1316c0e09200SDave Airlie 	return 0;
1317c0e09200SDave Airlie }
1318c0e09200SDave Airlie 
1319c0e09200SDave Airlie /* Doesn't need the hardware lock.
1320c0e09200SDave Airlie  */
1321c0e09200SDave Airlie int i915_irq_wait(struct drm_device *dev, void *data,
1322c0e09200SDave Airlie 			 struct drm_file *file_priv)
1323c0e09200SDave Airlie {
1324c0e09200SDave Airlie 	drm_i915_private_t *dev_priv = dev->dev_private;
1325c0e09200SDave Airlie 	drm_i915_irq_wait_t *irqwait = data;
1326c0e09200SDave Airlie 
1327c0e09200SDave Airlie 	if (!dev_priv) {
1328c0e09200SDave Airlie 		DRM_ERROR("called with no initialization\n");
1329c0e09200SDave Airlie 		return -EINVAL;
1330c0e09200SDave Airlie 	}
1331c0e09200SDave Airlie 
1332c0e09200SDave Airlie 	return i915_wait_irq(dev, irqwait->irq_seq);
1333c0e09200SDave Airlie }
1334c0e09200SDave Airlie 
1335b0b544cdSChris Wilson static void i915_vblank_work_func(struct work_struct *work)
1336b0b544cdSChris Wilson {
1337b0b544cdSChris Wilson 	drm_i915_private_t *dev_priv =
1338b0b544cdSChris Wilson 		container_of(work, drm_i915_private_t, vblank_work);
1339b0b544cdSChris Wilson 
1340b0b544cdSChris Wilson 	if (atomic_read(&dev_priv->vblank_enabled)) {
1341b0b544cdSChris Wilson 		if (!dev_priv->vblank_pm_qos.pm_qos_class)
1342b0b544cdSChris Wilson 			pm_qos_add_request(&dev_priv->vblank_pm_qos,
1343b0b544cdSChris Wilson 					   PM_QOS_CPU_DMA_LATENCY,
1344b0b544cdSChris Wilson 					   15); //>=20 won't work
1345b0b544cdSChris Wilson 	} else {
1346b0b544cdSChris Wilson 		if (dev_priv->vblank_pm_qos.pm_qos_class)
1347b0b544cdSChris Wilson 			pm_qos_remove_request(&dev_priv->vblank_pm_qos);
1348b0b544cdSChris Wilson 	}
1349b0b544cdSChris Wilson }
1350b0b544cdSChris Wilson 
135142f52ef8SKeith Packard /* Called from drm generic code, passed 'crtc' which
135242f52ef8SKeith Packard  * we use as a pipe index
135342f52ef8SKeith Packard  */
135442f52ef8SKeith Packard int i915_enable_vblank(struct drm_device *dev, int pipe)
13550a3e67a4SJesse Barnes {
13560a3e67a4SJesse Barnes 	drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
1357e9d21d7fSKeith Packard 	unsigned long irqflags;
135871e0ffa5SJesse Barnes 
13595eddb70bSChris Wilson 	if (!i915_pipe_enabled(dev, pipe))
136071e0ffa5SJesse Barnes 		return -EINVAL;
13610a3e67a4SJesse Barnes 
13621ec14ad3SChris Wilson 	spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
1363bad720ffSEric Anholt 	if (HAS_PCH_SPLIT(dev))
1364c062df61SLi Peng 		ironlake_enable_display_irq(dev_priv, (pipe == 0) ?
1365c062df61SLi Peng 					    DE_PIPEA_VBLANK: DE_PIPEB_VBLANK);
1366a6c45cf0SChris Wilson 	else if (INTEL_INFO(dev)->gen >= 4)
13677c463586SKeith Packard 		i915_enable_pipestat(dev_priv, pipe,
13687c463586SKeith Packard 				     PIPE_START_VBLANK_INTERRUPT_ENABLE);
13690a3e67a4SJesse Barnes 	else
13707c463586SKeith Packard 		i915_enable_pipestat(dev_priv, pipe,
13717c463586SKeith Packard 				     PIPE_VBLANK_INTERRUPT_ENABLE);
13721ec14ad3SChris Wilson 	spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
1373b0b544cdSChris Wilson 
1374b0b544cdSChris Wilson 	/* gen3 platforms have an issue with vsync interrupts not reaching
1375b0b544cdSChris Wilson 	 * cpu during deep c-state sleep (>C1), so we need to install a
1376b0b544cdSChris Wilson 	 * PM QoS handle to prevent C-state starvation of the GPU.
1377b0b544cdSChris Wilson 	 */
1378b0b544cdSChris Wilson 	if (dev_priv->info->gen == 3 && !dev_priv->info->is_g33) {
1379b0b544cdSChris Wilson 		atomic_inc(&dev_priv->vblank_enabled);
1380b0b544cdSChris Wilson 		queue_work(dev_priv->wq, &dev_priv->vblank_work);
1381b0b544cdSChris Wilson 	}
1382b0b544cdSChris Wilson 
13830a3e67a4SJesse Barnes 	return 0;
13840a3e67a4SJesse Barnes }
13850a3e67a4SJesse Barnes 
138642f52ef8SKeith Packard /* Called from drm generic code, passed 'crtc' which
138742f52ef8SKeith Packard  * we use as a pipe index
138842f52ef8SKeith Packard  */
138942f52ef8SKeith Packard void i915_disable_vblank(struct drm_device *dev, int pipe)
13900a3e67a4SJesse Barnes {
13910a3e67a4SJesse Barnes 	drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
1392e9d21d7fSKeith Packard 	unsigned long irqflags;
13930a3e67a4SJesse Barnes 
1394b0b544cdSChris Wilson 	if (dev_priv->info->gen == 3 && !dev_priv->info->is_g33) {
1395b0b544cdSChris Wilson 		atomic_dec(&dev_priv->vblank_enabled);
1396b0b544cdSChris Wilson 		queue_work(dev_priv->wq, &dev_priv->vblank_work);
1397b0b544cdSChris Wilson 	}
1398b0b544cdSChris Wilson 
13991ec14ad3SChris Wilson 	spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
1400bad720ffSEric Anholt 	if (HAS_PCH_SPLIT(dev))
1401c062df61SLi Peng 		ironlake_disable_display_irq(dev_priv, (pipe == 0) ?
1402c062df61SLi Peng 					     DE_PIPEA_VBLANK: DE_PIPEB_VBLANK);
1403c062df61SLi Peng 	else
14047c463586SKeith Packard 		i915_disable_pipestat(dev_priv, pipe,
14057c463586SKeith Packard 				      PIPE_VBLANK_INTERRUPT_ENABLE |
14067c463586SKeith Packard 				      PIPE_START_VBLANK_INTERRUPT_ENABLE);
14071ec14ad3SChris Wilson 	spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
14080a3e67a4SJesse Barnes }
14090a3e67a4SJesse Barnes 
1410c0e09200SDave Airlie /* Set the vblank monitor pipe
1411c0e09200SDave Airlie  */
1412c0e09200SDave Airlie int i915_vblank_pipe_set(struct drm_device *dev, void *data,
1413c0e09200SDave Airlie 			 struct drm_file *file_priv)
1414c0e09200SDave Airlie {
1415c0e09200SDave Airlie 	drm_i915_private_t *dev_priv = dev->dev_private;
1416c0e09200SDave Airlie 
1417c0e09200SDave Airlie 	if (!dev_priv) {
1418c0e09200SDave Airlie 		DRM_ERROR("called with no initialization\n");
1419c0e09200SDave Airlie 		return -EINVAL;
1420c0e09200SDave Airlie 	}
1421c0e09200SDave Airlie 
1422c0e09200SDave Airlie 	return 0;
1423c0e09200SDave Airlie }
1424c0e09200SDave Airlie 
1425c0e09200SDave Airlie int i915_vblank_pipe_get(struct drm_device *dev, void *data,
1426c0e09200SDave Airlie 			 struct drm_file *file_priv)
1427c0e09200SDave Airlie {
1428c0e09200SDave Airlie 	drm_i915_private_t *dev_priv = dev->dev_private;
1429c0e09200SDave Airlie 	drm_i915_vblank_pipe_t *pipe = data;
1430c0e09200SDave Airlie 
1431c0e09200SDave Airlie 	if (!dev_priv) {
1432c0e09200SDave Airlie 		DRM_ERROR("called with no initialization\n");
1433c0e09200SDave Airlie 		return -EINVAL;
1434c0e09200SDave Airlie 	}
1435c0e09200SDave Airlie 
14360a3e67a4SJesse Barnes 	pipe->pipe = DRM_I915_VBLANK_PIPE_A | DRM_I915_VBLANK_PIPE_B;
1437c0e09200SDave Airlie 
1438c0e09200SDave Airlie 	return 0;
1439c0e09200SDave Airlie }
1440c0e09200SDave Airlie 
1441c0e09200SDave Airlie /**
1442c0e09200SDave Airlie  * Schedule buffer swap at given vertical blank.
1443c0e09200SDave Airlie  */
1444c0e09200SDave Airlie int i915_vblank_swap(struct drm_device *dev, void *data,
1445c0e09200SDave Airlie 		     struct drm_file *file_priv)
1446c0e09200SDave Airlie {
1447bd95e0a4SEric Anholt 	/* The delayed swap mechanism was fundamentally racy, and has been
1448bd95e0a4SEric Anholt 	 * removed.  The model was that the client requested a delayed flip/swap
1449bd95e0a4SEric Anholt 	 * from the kernel, then waited for vblank before continuing to perform
1450bd95e0a4SEric Anholt 	 * rendering.  The problem was that the kernel might wake the client
1451bd95e0a4SEric Anholt 	 * up before it dispatched the vblank swap (since the lock has to be
1452bd95e0a4SEric Anholt 	 * held while touching the ringbuffer), in which case the client would
1453bd95e0a4SEric Anholt 	 * clear and start the next frame before the swap occurred, and
1454bd95e0a4SEric Anholt 	 * flicker would occur in addition to likely missing the vblank.
1455bd95e0a4SEric Anholt 	 *
1456bd95e0a4SEric Anholt 	 * In the absence of this ioctl, userland falls back to a correct path
1457bd95e0a4SEric Anholt 	 * of waiting for a vblank, then dispatching the swap on its own.
1458bd95e0a4SEric Anholt 	 * Context switching to userland and back is plenty fast enough for
1459bd95e0a4SEric Anholt 	 * meeting the requirements of vblank swapping.
14600a3e67a4SJesse Barnes 	 */
1461c0e09200SDave Airlie 	return -EINVAL;
1462c0e09200SDave Airlie }
1463c0e09200SDave Airlie 
1464893eead0SChris Wilson static u32
1465893eead0SChris Wilson ring_last_seqno(struct intel_ring_buffer *ring)
1466852835f3SZou Nan hai {
1467893eead0SChris Wilson 	return list_entry(ring->request_list.prev,
1468893eead0SChris Wilson 			  struct drm_i915_gem_request, list)->seqno;
1469893eead0SChris Wilson }
1470893eead0SChris Wilson 
1471893eead0SChris Wilson static bool i915_hangcheck_ring_idle(struct intel_ring_buffer *ring, bool *err)
1472893eead0SChris Wilson {
1473893eead0SChris Wilson 	if (list_empty(&ring->request_list) ||
1474893eead0SChris Wilson 	    i915_seqno_passed(ring->get_seqno(ring), ring_last_seqno(ring))) {
1475893eead0SChris Wilson 		/* Issue a wake-up to catch stuck h/w. */
1476b2223497SChris Wilson 		if (ring->waiting_seqno && waitqueue_active(&ring->irq_queue)) {
1477893eead0SChris Wilson 			DRM_ERROR("Hangcheck timer elapsed... %s idle [waiting on %d, at %d], missed IRQ?\n",
1478893eead0SChris Wilson 				  ring->name,
1479b2223497SChris Wilson 				  ring->waiting_seqno,
1480893eead0SChris Wilson 				  ring->get_seqno(ring));
1481893eead0SChris Wilson 			wake_up_all(&ring->irq_queue);
1482893eead0SChris Wilson 			*err = true;
1483893eead0SChris Wilson 		}
1484893eead0SChris Wilson 		return true;
1485893eead0SChris Wilson 	}
1486893eead0SChris Wilson 	return false;
1487f65d9421SBen Gamari }
1488f65d9421SBen Gamari 
14891ec14ad3SChris Wilson static bool kick_ring(struct intel_ring_buffer *ring)
14901ec14ad3SChris Wilson {
14911ec14ad3SChris Wilson 	struct drm_device *dev = ring->dev;
14921ec14ad3SChris Wilson 	struct drm_i915_private *dev_priv = dev->dev_private;
14931ec14ad3SChris Wilson 	u32 tmp = I915_READ_CTL(ring);
14941ec14ad3SChris Wilson 	if (tmp & RING_WAIT) {
14951ec14ad3SChris Wilson 		DRM_ERROR("Kicking stuck wait on %s\n",
14961ec14ad3SChris Wilson 			  ring->name);
14971ec14ad3SChris Wilson 		I915_WRITE_CTL(ring, tmp);
14981ec14ad3SChris Wilson 		return true;
14991ec14ad3SChris Wilson 	}
15001ec14ad3SChris Wilson 	if (IS_GEN6(dev) &&
15011ec14ad3SChris Wilson 	    (tmp & RING_WAIT_SEMAPHORE)) {
15021ec14ad3SChris Wilson 		DRM_ERROR("Kicking stuck semaphore on %s\n",
15031ec14ad3SChris Wilson 			  ring->name);
15041ec14ad3SChris Wilson 		I915_WRITE_CTL(ring, tmp);
15051ec14ad3SChris Wilson 		return true;
15061ec14ad3SChris Wilson 	}
15071ec14ad3SChris Wilson 	return false;
15081ec14ad3SChris Wilson }
15091ec14ad3SChris Wilson 
1510f65d9421SBen Gamari /**
1511f65d9421SBen Gamari  * This is called when the chip hasn't reported back with completed
1512f65d9421SBen Gamari  * batchbuffers in a long time. The first time this is called we simply record
1513f65d9421SBen Gamari  * ACTHD. If ACTHD hasn't changed by the time the hangcheck timer elapses
1514f65d9421SBen Gamari  * again, we assume the chip is wedged and try to fix it.
1515f65d9421SBen Gamari  */
1516f65d9421SBen Gamari void i915_hangcheck_elapsed(unsigned long data)
1517f65d9421SBen Gamari {
1518f65d9421SBen Gamari 	struct drm_device *dev = (struct drm_device *)data;
1519f65d9421SBen Gamari 	drm_i915_private_t *dev_priv = dev->dev_private;
1520cbb465e7SChris Wilson 	uint32_t acthd, instdone, instdone1;
1521893eead0SChris Wilson 	bool err = false;
1522893eead0SChris Wilson 
1523893eead0SChris Wilson 	/* If all work is done then ACTHD clearly hasn't advanced. */
15241ec14ad3SChris Wilson 	if (i915_hangcheck_ring_idle(&dev_priv->ring[RCS], &err) &&
15251ec14ad3SChris Wilson 	    i915_hangcheck_ring_idle(&dev_priv->ring[VCS], &err) &&
15261ec14ad3SChris Wilson 	    i915_hangcheck_ring_idle(&dev_priv->ring[BCS], &err)) {
1527893eead0SChris Wilson 		dev_priv->hangcheck_count = 0;
1528893eead0SChris Wilson 		if (err)
1529893eead0SChris Wilson 			goto repeat;
1530893eead0SChris Wilson 		return;
1531893eead0SChris Wilson 	}
1532f65d9421SBen Gamari 
1533a6c45cf0SChris Wilson 	if (INTEL_INFO(dev)->gen < 4) {
1534f65d9421SBen Gamari 		acthd = I915_READ(ACTHD);
1535cbb465e7SChris Wilson 		instdone = I915_READ(INSTDONE);
1536cbb465e7SChris Wilson 		instdone1 = 0;
1537cbb465e7SChris Wilson 	} else {
1538f65d9421SBen Gamari 		acthd = I915_READ(ACTHD_I965);
1539cbb465e7SChris Wilson 		instdone = I915_READ(INSTDONE_I965);
1540cbb465e7SChris Wilson 		instdone1 = I915_READ(INSTDONE1);
1541cbb465e7SChris Wilson 	}
1542f65d9421SBen Gamari 
1543cbb465e7SChris Wilson 	if (dev_priv->last_acthd == acthd &&
1544cbb465e7SChris Wilson 	    dev_priv->last_instdone == instdone &&
1545cbb465e7SChris Wilson 	    dev_priv->last_instdone1 == instdone1) {
1546cbb465e7SChris Wilson 		if (dev_priv->hangcheck_count++ > 1) {
1547f65d9421SBen Gamari 			DRM_ERROR("Hangcheck timer elapsed... GPU hung\n");
15488c80b59bSChris Wilson 
15498c80b59bSChris Wilson 			if (!IS_GEN2(dev)) {
15508c80b59bSChris Wilson 				/* Is the chip hanging on a WAIT_FOR_EVENT?
15518c80b59bSChris Wilson 				 * If so we can simply poke the RB_WAIT bit
15528c80b59bSChris Wilson 				 * and break the hang. This should work on
15538c80b59bSChris Wilson 				 * all but the second generation chipsets.
15548c80b59bSChris Wilson 				 */
15551ec14ad3SChris Wilson 
15561ec14ad3SChris Wilson 				if (kick_ring(&dev_priv->ring[RCS]))
1557893eead0SChris Wilson 					goto repeat;
15581ec14ad3SChris Wilson 
15591ec14ad3SChris Wilson 				if (HAS_BSD(dev) &&
15601ec14ad3SChris Wilson 				    kick_ring(&dev_priv->ring[VCS]))
15611ec14ad3SChris Wilson 					goto repeat;
15621ec14ad3SChris Wilson 
15631ec14ad3SChris Wilson 				if (HAS_BLT(dev) &&
15641ec14ad3SChris Wilson 				    kick_ring(&dev_priv->ring[BCS]))
15651ec14ad3SChris Wilson 					goto repeat;
15668c80b59bSChris Wilson 			}
15678c80b59bSChris Wilson 
1568ba1234d1SBen Gamari 			i915_handle_error(dev, true);
1569f65d9421SBen Gamari 			return;
1570f65d9421SBen Gamari 		}
1571cbb465e7SChris Wilson 	} else {
1572cbb465e7SChris Wilson 		dev_priv->hangcheck_count = 0;
1573cbb465e7SChris Wilson 
1574cbb465e7SChris Wilson 		dev_priv->last_acthd = acthd;
1575cbb465e7SChris Wilson 		dev_priv->last_instdone = instdone;
1576cbb465e7SChris Wilson 		dev_priv->last_instdone1 = instdone1;
1577cbb465e7SChris Wilson 	}
1578f65d9421SBen Gamari 
1579893eead0SChris Wilson repeat:
1580f65d9421SBen Gamari 	/* Reset timer case chip hangs without another request being added */
1581b3b079dbSChris Wilson 	mod_timer(&dev_priv->hangcheck_timer,
1582b3b079dbSChris Wilson 		  jiffies + msecs_to_jiffies(DRM_I915_HANGCHECK_PERIOD));
1583f65d9421SBen Gamari }
1584f65d9421SBen Gamari 
1585c0e09200SDave Airlie /* drm_dma.h hooks
1586c0e09200SDave Airlie */
1587f2b115e6SAdam Jackson static void ironlake_irq_preinstall(struct drm_device *dev)
1588036a4a7dSZhenyu Wang {
1589036a4a7dSZhenyu Wang 	drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
1590036a4a7dSZhenyu Wang 
1591036a4a7dSZhenyu Wang 	I915_WRITE(HWSTAM, 0xeffe);
1592036a4a7dSZhenyu Wang 
1593036a4a7dSZhenyu Wang 	/* XXX hotplug from PCH */
1594036a4a7dSZhenyu Wang 
1595036a4a7dSZhenyu Wang 	I915_WRITE(DEIMR, 0xffffffff);
1596036a4a7dSZhenyu Wang 	I915_WRITE(DEIER, 0x0);
15973143a2bfSChris Wilson 	POSTING_READ(DEIER);
1598036a4a7dSZhenyu Wang 
1599036a4a7dSZhenyu Wang 	/* and GT */
1600036a4a7dSZhenyu Wang 	I915_WRITE(GTIMR, 0xffffffff);
1601036a4a7dSZhenyu Wang 	I915_WRITE(GTIER, 0x0);
16023143a2bfSChris Wilson 	POSTING_READ(GTIER);
1603c650156aSZhenyu Wang 
1604c650156aSZhenyu Wang 	/* south display irq */
1605c650156aSZhenyu Wang 	I915_WRITE(SDEIMR, 0xffffffff);
1606c650156aSZhenyu Wang 	I915_WRITE(SDEIER, 0x0);
16073143a2bfSChris Wilson 	POSTING_READ(SDEIER);
1608036a4a7dSZhenyu Wang }
1609036a4a7dSZhenyu Wang 
1610f2b115e6SAdam Jackson static int ironlake_irq_postinstall(struct drm_device *dev)
1611036a4a7dSZhenyu Wang {
1612036a4a7dSZhenyu Wang 	drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
1613036a4a7dSZhenyu Wang 	/* enable kind of interrupts always enabled */
1614013d5aa2SJesse Barnes 	u32 display_mask = DE_MASTER_IRQ_CONTROL | DE_GSE | DE_PCH_EVENT |
1615013d5aa2SJesse Barnes 			   DE_PLANEA_FLIP_DONE | DE_PLANEB_FLIP_DONE;
16161ec14ad3SChris Wilson 	u32 render_irqs;
16172d7b8366SYuanhan Liu 	u32 hotplug_mask;
16189db4a9c7SJesse Barnes 	int pipe;
1619036a4a7dSZhenyu Wang 
16201ec14ad3SChris Wilson 	dev_priv->irq_mask = ~display_mask;
1621036a4a7dSZhenyu Wang 
1622036a4a7dSZhenyu Wang 	/* should always can generate irq */
1623036a4a7dSZhenyu Wang 	I915_WRITE(DEIIR, I915_READ(DEIIR));
16241ec14ad3SChris Wilson 	I915_WRITE(DEIMR, dev_priv->irq_mask);
16251ec14ad3SChris Wilson 	I915_WRITE(DEIER, display_mask | DE_PIPEA_VBLANK | DE_PIPEB_VBLANK);
16263143a2bfSChris Wilson 	POSTING_READ(DEIER);
1627036a4a7dSZhenyu Wang 
16281ec14ad3SChris Wilson 	dev_priv->gt_irq_mask = ~0;
1629036a4a7dSZhenyu Wang 
1630036a4a7dSZhenyu Wang 	I915_WRITE(GTIIR, I915_READ(GTIIR));
16311ec14ad3SChris Wilson 	I915_WRITE(GTIMR, dev_priv->gt_irq_mask);
1632881f47b6SXiang, Haihao 
16331ec14ad3SChris Wilson 	if (IS_GEN6(dev))
16341ec14ad3SChris Wilson 		render_irqs =
16351ec14ad3SChris Wilson 			GT_USER_INTERRUPT |
16361ec14ad3SChris Wilson 			GT_GEN6_BSD_USER_INTERRUPT |
16371ec14ad3SChris Wilson 			GT_BLT_USER_INTERRUPT;
16381ec14ad3SChris Wilson 	else
16391ec14ad3SChris Wilson 		render_irqs =
164088f23b8fSChris Wilson 			GT_USER_INTERRUPT |
1641c6df541cSChris Wilson 			GT_PIPE_NOTIFY |
16421ec14ad3SChris Wilson 			GT_BSD_USER_INTERRUPT;
16431ec14ad3SChris Wilson 	I915_WRITE(GTIER, render_irqs);
16443143a2bfSChris Wilson 	POSTING_READ(GTIER);
1645036a4a7dSZhenyu Wang 
16462d7b8366SYuanhan Liu 	if (HAS_PCH_CPT(dev)) {
1647*9035a97aSChris Wilson 		hotplug_mask = (SDE_CRT_HOTPLUG_CPT |
1648*9035a97aSChris Wilson 				SDE_PORTB_HOTPLUG_CPT |
1649*9035a97aSChris Wilson 				SDE_PORTC_HOTPLUG_CPT |
1650*9035a97aSChris Wilson 				SDE_PORTD_HOTPLUG_CPT);
16512d7b8366SYuanhan Liu 	} else {
1652*9035a97aSChris Wilson 		hotplug_mask = (SDE_CRT_HOTPLUG |
1653*9035a97aSChris Wilson 				SDE_PORTB_HOTPLUG |
1654*9035a97aSChris Wilson 				SDE_PORTC_HOTPLUG |
1655*9035a97aSChris Wilson 				SDE_PORTD_HOTPLUG |
1656*9035a97aSChris Wilson 				SDE_AUX_MASK);
16572d7b8366SYuanhan Liu 	}
16582d7b8366SYuanhan Liu 
16591ec14ad3SChris Wilson 	dev_priv->pch_irq_mask = ~hotplug_mask;
1660c650156aSZhenyu Wang 
1661c650156aSZhenyu Wang 	I915_WRITE(SDEIIR, I915_READ(SDEIIR));
16621ec14ad3SChris Wilson 	I915_WRITE(SDEIMR, dev_priv->pch_irq_mask);
16631ec14ad3SChris Wilson 	I915_WRITE(SDEIER, hotplug_mask);
16643143a2bfSChris Wilson 	POSTING_READ(SDEIER);
1665c650156aSZhenyu Wang 
1666f97108d1SJesse Barnes 	if (IS_IRONLAKE_M(dev)) {
1667f97108d1SJesse Barnes 		/* Clear & enable PCU event interrupts */
1668f97108d1SJesse Barnes 		I915_WRITE(DEIIR, DE_PCU_EVENT);
1669f97108d1SJesse Barnes 		I915_WRITE(DEIER, I915_READ(DEIER) | DE_PCU_EVENT);
1670f97108d1SJesse Barnes 		ironlake_enable_display_irq(dev_priv, DE_PCU_EVENT);
1671f97108d1SJesse Barnes 	}
1672f97108d1SJesse Barnes 
1673036a4a7dSZhenyu Wang 	return 0;
1674036a4a7dSZhenyu Wang }
1675036a4a7dSZhenyu Wang 
1676c0e09200SDave Airlie void i915_driver_irq_preinstall(struct drm_device * dev)
1677c0e09200SDave Airlie {
1678c0e09200SDave Airlie 	drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
16799db4a9c7SJesse Barnes 	int pipe;
1680c0e09200SDave Airlie 
168179e53945SJesse Barnes 	atomic_set(&dev_priv->irq_received, 0);
1682b0b544cdSChris Wilson 	atomic_set(&dev_priv->vblank_enabled, 0);
168379e53945SJesse Barnes 
1684036a4a7dSZhenyu Wang 	INIT_WORK(&dev_priv->hotplug_work, i915_hotplug_work_func);
16858a905236SJesse Barnes 	INIT_WORK(&dev_priv->error_work, i915_error_work_func);
1686b0b544cdSChris Wilson 	INIT_WORK(&dev_priv->vblank_work, i915_vblank_work_func);
1687036a4a7dSZhenyu Wang 
1688bad720ffSEric Anholt 	if (HAS_PCH_SPLIT(dev)) {
1689f2b115e6SAdam Jackson 		ironlake_irq_preinstall(dev);
1690036a4a7dSZhenyu Wang 		return;
1691036a4a7dSZhenyu Wang 	}
1692036a4a7dSZhenyu Wang 
16935ca58282SJesse Barnes 	if (I915_HAS_HOTPLUG(dev)) {
16945ca58282SJesse Barnes 		I915_WRITE(PORT_HOTPLUG_EN, 0);
16955ca58282SJesse Barnes 		I915_WRITE(PORT_HOTPLUG_STAT, I915_READ(PORT_HOTPLUG_STAT));
16965ca58282SJesse Barnes 	}
16975ca58282SJesse Barnes 
16980a3e67a4SJesse Barnes 	I915_WRITE(HWSTAM, 0xeffe);
16999db4a9c7SJesse Barnes 	for_each_pipe(pipe)
17009db4a9c7SJesse Barnes 		I915_WRITE(PIPESTAT(pipe), 0);
17010a3e67a4SJesse Barnes 	I915_WRITE(IMR, 0xffffffff);
1702ed4cb414SEric Anholt 	I915_WRITE(IER, 0x0);
17033143a2bfSChris Wilson 	POSTING_READ(IER);
1704c0e09200SDave Airlie }
1705c0e09200SDave Airlie 
1706b01f2c3aSJesse Barnes /*
1707b01f2c3aSJesse Barnes  * Must be called after intel_modeset_init or hotplug interrupts won't be
1708b01f2c3aSJesse Barnes  * enabled correctly.
1709b01f2c3aSJesse Barnes  */
17100a3e67a4SJesse Barnes int i915_driver_irq_postinstall(struct drm_device *dev)
1711c0e09200SDave Airlie {
1712c0e09200SDave Airlie 	drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
17135ca58282SJesse Barnes 	u32 enable_mask = I915_INTERRUPT_ENABLE_FIX | I915_INTERRUPT_ENABLE_VAR;
171463eeaf38SJesse Barnes 	u32 error_mask;
17150a3e67a4SJesse Barnes 
17161ec14ad3SChris Wilson 	DRM_INIT_WAITQUEUE(&dev_priv->ring[RCS].irq_queue);
1717d1b851fcSZou Nan hai 	if (HAS_BSD(dev))
17181ec14ad3SChris Wilson 		DRM_INIT_WAITQUEUE(&dev_priv->ring[VCS].irq_queue);
1719549f7365SChris Wilson 	if (HAS_BLT(dev))
17201ec14ad3SChris Wilson 		DRM_INIT_WAITQUEUE(&dev_priv->ring[BCS].irq_queue);
1721d1b851fcSZou Nan hai 
17220a3e67a4SJesse Barnes 	dev_priv->vblank_pipe = DRM_I915_VBLANK_PIPE_A | DRM_I915_VBLANK_PIPE_B;
1723ed4cb414SEric Anholt 
1724bad720ffSEric Anholt 	if (HAS_PCH_SPLIT(dev))
1725f2b115e6SAdam Jackson 		return ironlake_irq_postinstall(dev);
1726036a4a7dSZhenyu Wang 
17277c463586SKeith Packard 	/* Unmask the interrupts that we always want on. */
17281ec14ad3SChris Wilson 	dev_priv->irq_mask = ~I915_INTERRUPT_ENABLE_FIX;
17298ee1c3dbSMatthew Garrett 
17307c463586SKeith Packard 	dev_priv->pipestat[0] = 0;
17317c463586SKeith Packard 	dev_priv->pipestat[1] = 0;
17327c463586SKeith Packard 
17335ca58282SJesse Barnes 	if (I915_HAS_HOTPLUG(dev)) {
1734c496fa1fSAdam Jackson 		/* Enable in IER... */
1735c496fa1fSAdam Jackson 		enable_mask |= I915_DISPLAY_PORT_INTERRUPT;
1736c496fa1fSAdam Jackson 		/* and unmask in IMR */
17371ec14ad3SChris Wilson 		dev_priv->irq_mask &= ~I915_DISPLAY_PORT_INTERRUPT;
1738c496fa1fSAdam Jackson 	}
1739c496fa1fSAdam Jackson 
1740c496fa1fSAdam Jackson 	/*
1741c496fa1fSAdam Jackson 	 * Enable some error detection, note the instruction error mask
1742c496fa1fSAdam Jackson 	 * bit is reserved, so we leave it masked.
1743c496fa1fSAdam Jackson 	 */
1744c496fa1fSAdam Jackson 	if (IS_G4X(dev)) {
1745c496fa1fSAdam Jackson 		error_mask = ~(GM45_ERROR_PAGE_TABLE |
1746c496fa1fSAdam Jackson 			       GM45_ERROR_MEM_PRIV |
1747c496fa1fSAdam Jackson 			       GM45_ERROR_CP_PRIV |
1748c496fa1fSAdam Jackson 			       I915_ERROR_MEMORY_REFRESH);
1749c496fa1fSAdam Jackson 	} else {
1750c496fa1fSAdam Jackson 		error_mask = ~(I915_ERROR_PAGE_TABLE |
1751c496fa1fSAdam Jackson 			       I915_ERROR_MEMORY_REFRESH);
1752c496fa1fSAdam Jackson 	}
1753c496fa1fSAdam Jackson 	I915_WRITE(EMR, error_mask);
1754c496fa1fSAdam Jackson 
17551ec14ad3SChris Wilson 	I915_WRITE(IMR, dev_priv->irq_mask);
1756c496fa1fSAdam Jackson 	I915_WRITE(IER, enable_mask);
17573143a2bfSChris Wilson 	POSTING_READ(IER);
1758c496fa1fSAdam Jackson 
1759c496fa1fSAdam Jackson 	if (I915_HAS_HOTPLUG(dev)) {
17605ca58282SJesse Barnes 		u32 hotplug_en = I915_READ(PORT_HOTPLUG_EN);
17615ca58282SJesse Barnes 
1762b01f2c3aSJesse Barnes 		/* Note HDMI and DP share bits */
1763b01f2c3aSJesse Barnes 		if (dev_priv->hotplug_supported_mask & HDMIB_HOTPLUG_INT_STATUS)
1764b01f2c3aSJesse Barnes 			hotplug_en |= HDMIB_HOTPLUG_INT_EN;
1765b01f2c3aSJesse Barnes 		if (dev_priv->hotplug_supported_mask & HDMIC_HOTPLUG_INT_STATUS)
1766b01f2c3aSJesse Barnes 			hotplug_en |= HDMIC_HOTPLUG_INT_EN;
1767b01f2c3aSJesse Barnes 		if (dev_priv->hotplug_supported_mask & HDMID_HOTPLUG_INT_STATUS)
1768b01f2c3aSJesse Barnes 			hotplug_en |= HDMID_HOTPLUG_INT_EN;
1769b01f2c3aSJesse Barnes 		if (dev_priv->hotplug_supported_mask & SDVOC_HOTPLUG_INT_STATUS)
1770b01f2c3aSJesse Barnes 			hotplug_en |= SDVOC_HOTPLUG_INT_EN;
1771b01f2c3aSJesse Barnes 		if (dev_priv->hotplug_supported_mask & SDVOB_HOTPLUG_INT_STATUS)
1772b01f2c3aSJesse Barnes 			hotplug_en |= SDVOB_HOTPLUG_INT_EN;
17732d1c9752SAndy Lutomirski 		if (dev_priv->hotplug_supported_mask & CRT_HOTPLUG_INT_STATUS) {
1774b01f2c3aSJesse Barnes 			hotplug_en |= CRT_HOTPLUG_INT_EN;
17752d1c9752SAndy Lutomirski 
17762d1c9752SAndy Lutomirski 			/* Programming the CRT detection parameters tends
17772d1c9752SAndy Lutomirski 			   to generate a spurious hotplug event about three
17782d1c9752SAndy Lutomirski 			   seconds later.  So just do it once.
17792d1c9752SAndy Lutomirski 			*/
17802d1c9752SAndy Lutomirski 			if (IS_G4X(dev))
17812d1c9752SAndy Lutomirski 				hotplug_en |= CRT_HOTPLUG_ACTIVATION_PERIOD_64;
17822d1c9752SAndy Lutomirski 			hotplug_en |= CRT_HOTPLUG_VOLTAGE_COMPARE_50;
17832d1c9752SAndy Lutomirski 		}
17842d1c9752SAndy Lutomirski 
1785b01f2c3aSJesse Barnes 		/* Ignore TV since it's buggy */
1786b01f2c3aSJesse Barnes 
17875ca58282SJesse Barnes 		I915_WRITE(PORT_HOTPLUG_EN, hotplug_en);
17885ca58282SJesse Barnes 	}
17895ca58282SJesse Barnes 
17903b617967SChris Wilson 	intel_opregion_enable_asle(dev);
17910a3e67a4SJesse Barnes 
17920a3e67a4SJesse Barnes 	return 0;
1793c0e09200SDave Airlie }
1794c0e09200SDave Airlie 
1795f2b115e6SAdam Jackson static void ironlake_irq_uninstall(struct drm_device *dev)
1796036a4a7dSZhenyu Wang {
1797036a4a7dSZhenyu Wang 	drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
1798036a4a7dSZhenyu Wang 	I915_WRITE(HWSTAM, 0xffffffff);
1799036a4a7dSZhenyu Wang 
1800036a4a7dSZhenyu Wang 	I915_WRITE(DEIMR, 0xffffffff);
1801036a4a7dSZhenyu Wang 	I915_WRITE(DEIER, 0x0);
1802036a4a7dSZhenyu Wang 	I915_WRITE(DEIIR, I915_READ(DEIIR));
1803036a4a7dSZhenyu Wang 
1804036a4a7dSZhenyu Wang 	I915_WRITE(GTIMR, 0xffffffff);
1805036a4a7dSZhenyu Wang 	I915_WRITE(GTIER, 0x0);
1806036a4a7dSZhenyu Wang 	I915_WRITE(GTIIR, I915_READ(GTIIR));
1807036a4a7dSZhenyu Wang }
1808036a4a7dSZhenyu Wang 
1809c0e09200SDave Airlie void i915_driver_irq_uninstall(struct drm_device * dev)
1810c0e09200SDave Airlie {
1811c0e09200SDave Airlie 	drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
18129db4a9c7SJesse Barnes 	int pipe;
1813c0e09200SDave Airlie 
1814c0e09200SDave Airlie 	if (!dev_priv)
1815c0e09200SDave Airlie 		return;
1816c0e09200SDave Airlie 
18170a3e67a4SJesse Barnes 	dev_priv->vblank_pipe = 0;
18180a3e67a4SJesse Barnes 
1819bad720ffSEric Anholt 	if (HAS_PCH_SPLIT(dev)) {
1820f2b115e6SAdam Jackson 		ironlake_irq_uninstall(dev);
1821036a4a7dSZhenyu Wang 		return;
1822036a4a7dSZhenyu Wang 	}
1823036a4a7dSZhenyu Wang 
18245ca58282SJesse Barnes 	if (I915_HAS_HOTPLUG(dev)) {
18255ca58282SJesse Barnes 		I915_WRITE(PORT_HOTPLUG_EN, 0);
18265ca58282SJesse Barnes 		I915_WRITE(PORT_HOTPLUG_STAT, I915_READ(PORT_HOTPLUG_STAT));
18275ca58282SJesse Barnes 	}
18285ca58282SJesse Barnes 
18290a3e67a4SJesse Barnes 	I915_WRITE(HWSTAM, 0xffffffff);
18309db4a9c7SJesse Barnes 	for_each_pipe(pipe)
18319db4a9c7SJesse Barnes 		I915_WRITE(PIPESTAT(pipe), 0);
18320a3e67a4SJesse Barnes 	I915_WRITE(IMR, 0xffffffff);
1833ed4cb414SEric Anholt 	I915_WRITE(IER, 0x0);
1834c0e09200SDave Airlie 
18359db4a9c7SJesse Barnes 	for_each_pipe(pipe)
18369db4a9c7SJesse Barnes 		I915_WRITE(PIPESTAT(pipe),
18379db4a9c7SJesse Barnes 			   I915_READ(PIPESTAT(pipe)) & 0x8000ffff);
18387c463586SKeith Packard 	I915_WRITE(IIR, I915_READ(IIR));
1839c0e09200SDave Airlie }
1840