vmwgfx_irq.c 7.8 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42
/**************************************************************************
 *
 * Copyright © 2009 VMware, Inc., Palo Alto, CA., USA
 * All Rights Reserved.
 *
 * Permission is hereby granted, free of charge, to any person obtaining a
 * copy of this software and associated documentation files (the
 * "Software"), to deal in the Software without restriction, including
 * without limitation the rights to use, copy, modify, merge, publish,
 * distribute, sub license, and/or sell copies of the Software, and to
 * permit persons to whom the Software is furnished to do so, subject to
 * the following conditions:
 *
 * The above copyright notice and this permission notice (including the
 * next paragraph) shall be included in all copies or substantial portions
 * of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL
 * THE COPYRIGHT HOLDERS, AUTHORS AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM,
 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
 * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
 * USE OR OTHER DEALINGS IN THE SOFTWARE.
 *
 **************************************************************************/

#include "drmP.h"
#include "vmwgfx_drv.h"

#define VMW_FENCE_WRAP (1 << 24)

irqreturn_t vmw_irq_handler(DRM_IRQ_ARGS)
{
	struct drm_device *dev = (struct drm_device *)arg;
	struct vmw_private *dev_priv = vmw_priv(dev);
	uint32_t status;

	spin_lock(&dev_priv->irq_lock);
	status = inl(dev_priv->io_start + VMWGFX_IRQSTATUS_PORT);
	spin_unlock(&dev_priv->irq_lock);

43 44 45 46 47
	if (status & SVGA_IRQFLAG_ANY_FENCE) {
		__le32 __iomem *fifo_mem = dev_priv->mmio_virt;
		uint32_t seqno = ioread32(fifo_mem + SVGA_FIFO_FENCE);

		vmw_fences_update(dev_priv->fman, seqno);
48
		wake_up_all(&dev_priv->fence_queue);
49
	}
50 51 52 53 54 55 56 57 58 59 60
	if (status & SVGA_IRQFLAG_FIFO_PROGRESS)
		wake_up_all(&dev_priv->fifo_queue);

	if (likely(status)) {
		outl(status, dev_priv->io_start + VMWGFX_IRQSTATUS_PORT);
		return IRQ_HANDLED;
	}

	return IRQ_NONE;
}

61
static bool vmw_fifo_idle(struct vmw_private *dev_priv, uint32_t seqno)
62 63 64 65 66 67 68 69 70 71
{
	uint32_t busy;

	mutex_lock(&dev_priv->hw_mutex);
	busy = vmw_read(dev_priv, SVGA_REG_BUSY);
	mutex_unlock(&dev_priv->hw_mutex);

	return (busy == 0);
}

72
void vmw_update_seqno(struct vmw_private *dev_priv,
73 74 75
			 struct vmw_fifo_state *fifo_state)
{
	__le32 __iomem *fifo_mem = dev_priv->mmio_virt;
76
	uint32_t seqno = ioread32(fifo_mem + SVGA_FIFO_FENCE);
77

78 79 80
	if (dev_priv->last_read_seqno != seqno) {
		dev_priv->last_read_seqno = seqno;
		vmw_marker_pull(&fifo_state->marker_queue, seqno);
81
		vmw_fences_update(dev_priv->fman, seqno);
82 83
	}
}
84

85 86
bool vmw_seqno_passed(struct vmw_private *dev_priv,
			 uint32_t seqno)
87 88 89 90
{
	struct vmw_fifo_state *fifo_state;
	bool ret;

91
	if (likely(dev_priv->last_read_seqno - seqno < VMW_FENCE_WRAP))
92 93
		return true;

94
	fifo_state = &dev_priv->fifo;
95 96
	vmw_update_seqno(dev_priv, fifo_state);
	if (likely(dev_priv->last_read_seqno - seqno < VMW_FENCE_WRAP))
97 98 99
		return true;

	if (!(fifo_state->capabilities & SVGA_FIFO_CAP_FENCE) &&
100
	    vmw_fifo_idle(dev_priv, seqno))
101 102 103
		return true;

	/**
104
	 * Then check if the seqno is higher than what we've actually
105 106 107
	 * emitted. Then the fence is stale and signaled.
	 */

108
	ret = ((atomic_read(&dev_priv->marker_seq) - seqno)
109
	       > VMW_FENCE_WRAP);
110 111 112 113 114 115 116

	return ret;
}

int vmw_fallback_wait(struct vmw_private *dev_priv,
		      bool lazy,
		      bool fifo_idle,
117
		      uint32_t seqno,
118 119 120 121 122 123 124 125 126 127 128 129 130
		      bool interruptible,
		      unsigned long timeout)
{
	struct vmw_fifo_state *fifo_state = &dev_priv->fifo;

	uint32_t count = 0;
	uint32_t signal_seq;
	int ret;
	unsigned long end_jiffies = jiffies + timeout;
	bool (*wait_condition)(struct vmw_private *, uint32_t);
	DEFINE_WAIT(__wait);

	wait_condition = (fifo_idle) ? &vmw_fifo_idle :
131
		&vmw_seqno_passed;
132 133 134 135 136 137 138

	/**
	 * Block command submission while waiting for idle.
	 */

	if (fifo_idle)
		down_read(&fifo_state->rwsem);
139
	signal_seq = atomic_read(&dev_priv->marker_seq);
140 141 142 143 144 145
	ret = 0;

	for (;;) {
		prepare_to_wait(&dev_priv->fence_queue, &__wait,
				(interruptible) ?
				TASK_INTERRUPTIBLE : TASK_UNINTERRUPTIBLE);
146
		if (wait_condition(dev_priv, seqno))
147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166
			break;
		if (time_after_eq(jiffies, end_jiffies)) {
			DRM_ERROR("SVGA device lockup.\n");
			break;
		}
		if (lazy)
			schedule_timeout(1);
		else if ((++count & 0x0F) == 0) {
			/**
			 * FIXME: Use schedule_hr_timeout here for
			 * newer kernels and lower CPU utilization.
			 */

			__set_current_state(TASK_RUNNING);
			schedule();
			__set_current_state((interruptible) ?
					    TASK_INTERRUPTIBLE :
					    TASK_UNINTERRUPTIBLE);
		}
		if (interruptible && signal_pending(current)) {
167
			ret = -ERESTARTSYS;
168 169 170 171 172 173 174 175 176 177 178 179 180 181 182
			break;
		}
	}
	finish_wait(&dev_priv->fence_queue, &__wait);
	if (ret == 0 && fifo_idle) {
		__le32 __iomem *fifo_mem = dev_priv->mmio_virt;
		iowrite32(signal_seq, fifo_mem + SVGA_FIFO_FENCE);
	}
	wake_up_all(&dev_priv->fence_queue);
	if (fifo_idle)
		up_read(&fifo_state->rwsem);

	return ret;
}

183
void vmw_seqno_waiter_add(struct vmw_private *dev_priv)
184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199
{
	mutex_lock(&dev_priv->hw_mutex);
	if (dev_priv->fence_queue_waiters++ == 0) {
		unsigned long irq_flags;

		spin_lock_irqsave(&dev_priv->irq_lock, irq_flags);
		outl(SVGA_IRQFLAG_ANY_FENCE,
		     dev_priv->io_start + VMWGFX_IRQSTATUS_PORT);
		vmw_write(dev_priv, SVGA_REG_IRQMASK,
			  vmw_read(dev_priv, SVGA_REG_IRQMASK) |
			  SVGA_IRQFLAG_ANY_FENCE);
		spin_unlock_irqrestore(&dev_priv->irq_lock, irq_flags);
	}
	mutex_unlock(&dev_priv->hw_mutex);
}

200
void vmw_seqno_waiter_remove(struct vmw_private *dev_priv)
201 202 203 204 205 206 207 208 209 210 211 212 213 214
{
	mutex_lock(&dev_priv->hw_mutex);
	if (--dev_priv->fence_queue_waiters == 0) {
		unsigned long irq_flags;

		spin_lock_irqsave(&dev_priv->irq_lock, irq_flags);
		vmw_write(dev_priv, SVGA_REG_IRQMASK,
			  vmw_read(dev_priv, SVGA_REG_IRQMASK) &
			  ~SVGA_IRQFLAG_ANY_FENCE);
		spin_unlock_irqrestore(&dev_priv->irq_lock, irq_flags);
	}
	mutex_unlock(&dev_priv->hw_mutex);
}

215 216 217
int vmw_wait_seqno(struct vmw_private *dev_priv,
		      bool lazy, uint32_t seqno,
		      bool interruptible, unsigned long timeout)
218 219 220 221
{
	long ret;
	struct vmw_fifo_state *fifo = &dev_priv->fifo;

222
	if (likely(dev_priv->last_read_seqno - seqno < VMW_FENCE_WRAP))
223 224
		return 0;

225
	if (likely(vmw_seqno_passed(dev_priv, seqno)))
226 227 228 229 230
		return 0;

	vmw_fifo_ping_host(dev_priv, SVGA_SYNC_GENERIC);

	if (!(fifo->capabilities & SVGA_FIFO_CAP_FENCE))
231
		return vmw_fallback_wait(dev_priv, lazy, true, seqno,
232 233 234
					 interruptible, timeout);

	if (!(dev_priv->capabilities & SVGA_CAP_IRQMASK))
235
		return vmw_fallback_wait(dev_priv, lazy, false, seqno,
236 237
					 interruptible, timeout);

238
	vmw_seqno_waiter_add(dev_priv);
239 240 241 242

	if (interruptible)
		ret = wait_event_interruptible_timeout
		    (dev_priv->fence_queue,
243
		     vmw_seqno_passed(dev_priv, seqno),
244 245 246 247
		     timeout);
	else
		ret = wait_event_timeout
		    (dev_priv->fence_queue,
248
		     vmw_seqno_passed(dev_priv, seqno),
249 250
		     timeout);

251 252
	vmw_seqno_waiter_remove(dev_priv);

253
	if (unlikely(ret == 0))
254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293
		ret = -EBUSY;
	else if (likely(ret > 0))
		ret = 0;

	return ret;
}

void vmw_irq_preinstall(struct drm_device *dev)
{
	struct vmw_private *dev_priv = vmw_priv(dev);
	uint32_t status;

	if (!(dev_priv->capabilities & SVGA_CAP_IRQMASK))
		return;

	spin_lock_init(&dev_priv->irq_lock);
	status = inl(dev_priv->io_start + VMWGFX_IRQSTATUS_PORT);
	outl(status, dev_priv->io_start + VMWGFX_IRQSTATUS_PORT);
}

int vmw_irq_postinstall(struct drm_device *dev)
{
	return 0;
}

void vmw_irq_uninstall(struct drm_device *dev)
{
	struct vmw_private *dev_priv = vmw_priv(dev);
	uint32_t status;

	if (!(dev_priv->capabilities & SVGA_CAP_IRQMASK))
		return;

	mutex_lock(&dev_priv->hw_mutex);
	vmw_write(dev_priv, SVGA_REG_IRQMASK, 0);
	mutex_unlock(&dev_priv->hw_mutex);

	status = inl(dev_priv->io_start + VMWGFX_IRQSTATUS_PORT);
	outl(status, dev_priv->io_start + VMWGFX_IRQSTATUS_PORT);
}