gamma_dma.c 22.2 KB
Newer Older
Linus Torvalds's avatar
Linus Torvalds committed
1 2 3 4 5 6 7 8 9 10 11 12 13
/* gamma_dma.c -- DMA support for GMX 2000 -*- linux-c -*-
 * Created: Fri Mar 19 14:30:16 1999 by faith@precisioninsight.com
 *
 * Copyright 1999 Precision Insight, Inc., Cedar Park, Texas.
 * Copyright 2000 VA Linux Systems, Inc., Sunnyvale, California.
 * 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, sublicense,
 * 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:
Linus Torvalds's avatar
Linus Torvalds committed
14
 *
Linus Torvalds's avatar
Linus Torvalds committed
15 16 17
 * The above copyright notice and this permission notice (including the next
 * paragraph) shall be included in all copies or substantial portions of the
 * Software.
Linus Torvalds's avatar
Linus Torvalds committed
18
 *
Linus Torvalds's avatar
Linus Torvalds committed
19 20 21 22 23 24 25
 * 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 NONINFRINGEMENT.  IN NO EVENT SHALL
 * PRECISION INSIGHT 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.
Linus Torvalds's avatar
Linus Torvalds committed
26
 *
Linus Torvalds's avatar
Linus Torvalds committed
27 28 29 30 31
 * Authors:
 *    Rickard E. (Rik) Faith <faith@valinux.com>
 *
 */

Linus Torvalds's avatar
Linus Torvalds committed
32
#include "gamma.h"
Linus Torvalds's avatar
Linus Torvalds committed
33
#include "drmP.h"
34 35
#include "drm.h"
#include "gamma_drm.h"
Linus Torvalds's avatar
Linus Torvalds committed
36 37 38
#include "gamma_drv.h"

#include <linux/interrupt.h>	/* For task queue support */
Linus Torvalds's avatar
Linus Torvalds committed
39
#include <linux/delay.h>
Linus Torvalds's avatar
Linus Torvalds committed
40 41 42 43

static inline void gamma_dma_dispatch(drm_device_t *dev, unsigned long address,
				      unsigned long length)
{
Linus Torvalds's avatar
Linus Torvalds committed
44
	drm_gamma_private_t *dev_priv =
45 46
				(drm_gamma_private_t *)dev->dev_private;
	mb();
47 48 49
	while ( GAMMA_READ(GAMMA_INFIFOSPACE) < 2)
		cpu_relax();

50
	GAMMA_WRITE(GAMMA_DMAADDRESS, address);
51 52 53 54

	while (GAMMA_READ(GAMMA_GCOMMANDSTATUS) != 4)
		cpu_relax();

Linus Torvalds's avatar
Linus Torvalds committed
55 56 57
	GAMMA_WRITE(GAMMA_DMACOUNT, length / 4);
}

Linus Torvalds's avatar
Linus Torvalds committed
58
void gamma_dma_quiescent_single(drm_device_t *dev)
Linus Torvalds's avatar
Linus Torvalds committed
59
{
Linus Torvalds's avatar
Linus Torvalds committed
60
	drm_gamma_private_t *dev_priv =
61
				(drm_gamma_private_t *)dev->dev_private;
62 63
	while (GAMMA_READ(GAMMA_DMACOUNT))
		cpu_relax();
Linus Torvalds's avatar
Linus Torvalds committed
64

65 66
	while (GAMMA_READ(GAMMA_INFIFOSPACE) < 2)
		cpu_relax();
Linus Torvalds's avatar
Linus Torvalds committed
67 68 69

	GAMMA_WRITE(GAMMA_FILTERMODE, 1 << 10);
	GAMMA_WRITE(GAMMA_SYNC, 0);
Linus Torvalds's avatar
Linus Torvalds committed
70

Linus Torvalds's avatar
Linus Torvalds committed
71 72
	do {
		while (!GAMMA_READ(GAMMA_OUTFIFOWORDS))
73
			cpu_relax();
Linus Torvalds's avatar
Linus Torvalds committed
74 75 76
	} while (GAMMA_READ(GAMMA_OUTPUTFIFO) != GAMMA_SYNC_TAG);
}

Linus Torvalds's avatar
Linus Torvalds committed
77
void gamma_dma_quiescent_dual(drm_device_t *dev)
Linus Torvalds's avatar
Linus Torvalds committed
78
{
Linus Torvalds's avatar
Linus Torvalds committed
79
	drm_gamma_private_t *dev_priv =
80
				(drm_gamma_private_t *)dev->dev_private;
81 82
	while (GAMMA_READ(GAMMA_DMACOUNT))
		cpu_relax();
Linus Torvalds's avatar
Linus Torvalds committed
83

84 85
	while (GAMMA_READ(GAMMA_INFIFOSPACE) < 3)
		cpu_relax();
Linus Torvalds's avatar
Linus Torvalds committed
86 87 88 89

	GAMMA_WRITE(GAMMA_BROADCASTMASK, 3);
	GAMMA_WRITE(GAMMA_FILTERMODE, 1 << 10);
	GAMMA_WRITE(GAMMA_SYNC, 0);
Linus Torvalds's avatar
Linus Torvalds committed
90

91
	/* Read from first MX */
Linus Torvalds's avatar
Linus Torvalds committed
92
	do {
93 94
		while (!GAMMA_READ(GAMMA_OUTFIFOWORDS))
			cpu_relax();
Linus Torvalds's avatar
Linus Torvalds committed
95
	} while (GAMMA_READ(GAMMA_OUTPUTFIFO) != GAMMA_SYNC_TAG);
Linus Torvalds's avatar
Linus Torvalds committed
96

97
	/* Read from second MX */
Linus Torvalds's avatar
Linus Torvalds committed
98
	do {
99 100
		while (!GAMMA_READ(GAMMA_OUTFIFOWORDS + 0x10000))
			cpu_relax();
Linus Torvalds's avatar
Linus Torvalds committed
101 102 103
	} while (GAMMA_READ(GAMMA_OUTPUTFIFO + 0x10000) != GAMMA_SYNC_TAG);
}

Linus Torvalds's avatar
Linus Torvalds committed
104
void gamma_dma_ready(drm_device_t *dev)
Linus Torvalds's avatar
Linus Torvalds committed
105
{
Linus Torvalds's avatar
Linus Torvalds committed
106
	drm_gamma_private_t *dev_priv =
107
				(drm_gamma_private_t *)dev->dev_private;
108 109
	while (GAMMA_READ(GAMMA_DMACOUNT))
		cpu_relax();
Linus Torvalds's avatar
Linus Torvalds committed
110 111 112 113
}

static inline int gamma_dma_is_ready(drm_device_t *dev)
{
Linus Torvalds's avatar
Linus Torvalds committed
114
	drm_gamma_private_t *dev_priv =
115
				(drm_gamma_private_t *)dev->dev_private;
116
	return (!GAMMA_READ(GAMMA_DMACOUNT));
Linus Torvalds's avatar
Linus Torvalds committed
117 118
}

119
irqreturn_t gamma_dma_service( DRM_IRQ_ARGS )
Linus Torvalds's avatar
Linus Torvalds committed
120
{
121
	drm_device_t	 *dev = (drm_device_t *)arg;
122
	drm_device_dma_t *dma = dev->dma;
Linus Torvalds's avatar
Linus Torvalds committed
123
	drm_gamma_private_t *dev_priv =
124
				(drm_gamma_private_t *)dev->dev_private;
Linus Torvalds's avatar
Linus Torvalds committed
125

126
	/* FIXME: should check whether we're actually interested in the interrupt? */
Linus Torvalds's avatar
Linus Torvalds committed
127
	atomic_inc(&dev->counts[6]); /* _DRM_STAT_IRQ */
128

129 130 131
	while (GAMMA_READ(GAMMA_INFIFOSPACE) < 3)
		cpu_relax();

Linus Torvalds's avatar
Linus Torvalds committed
132 133 134 135 136
	GAMMA_WRITE(GAMMA_GDELAYTIMER, 0xc350/2); /* 0x05S */
	GAMMA_WRITE(GAMMA_GCOMMANDINTFLAGS, 8);
	GAMMA_WRITE(GAMMA_GINTFLAGS, 0x2001);
	if (gamma_dma_is_ready(dev)) {
				/* Free previous buffer */
137 138
		if (test_and_set_bit(0, &dev->dma_flag))
			return IRQ_HANDLED;
Linus Torvalds's avatar
Linus Torvalds committed
139
		if (dma->this_buffer) {
Linus Torvalds's avatar
Linus Torvalds committed
140
			gamma_free_buffer(dev, dma->this_buffer);
Linus Torvalds's avatar
Linus Torvalds committed
141 142 143 144
			dma->this_buffer = NULL;
		}
		clear_bit(0, &dev->dma_flag);

145
		/* Dispatch new buffer */
146
		schedule_work(&dev->work);
Linus Torvalds's avatar
Linus Torvalds committed
147
	}
148
	return IRQ_HANDLED;
Linus Torvalds's avatar
Linus Torvalds committed
149 150 151 152 153 154 155 156 157 158 159
}

/* Only called by gamma_dma_schedule. */
static int gamma_do_dma(drm_device_t *dev, int locked)
{
	unsigned long	 address;
	unsigned long	 length;
	drm_buf_t	 *buf;
	int		 retcode = 0;
	drm_device_dma_t *dma = dev->dma;

Linus Torvalds's avatar
Linus Torvalds committed
160 161
	if (test_and_set_bit(0, &dev->dma_flag)) return -EBUSY;

Linus Torvalds's avatar
Linus Torvalds committed
162 163 164 165 166 167 168 169

	if (!dma->next_buffer) {
		DRM_ERROR("No next_buffer\n");
		clear_bit(0, &dev->dma_flag);
		return -EINVAL;
	}

	buf	= dma->next_buffer;
170 171 172
	/* WE NOW ARE ON LOGICAL PAGES!! - using page table setup in dma_init */
	/* So we pass the buffer index value into the physical page offset */
	address = buf->idx << 12;
Linus Torvalds's avatar
Linus Torvalds committed
173 174 175 176 177 178
	length	= buf->used;

	DRM_DEBUG("context %d, buffer %d (%ld bytes)\n",
		  buf->context, buf->idx, length);

	if (buf->list == DRM_LIST_RECLAIM) {
Linus Torvalds's avatar
Linus Torvalds committed
179 180
		gamma_clear_next_buffer(dev);
		gamma_free_buffer(dev, buf);
Linus Torvalds's avatar
Linus Torvalds committed
181 182 183 184 185 186
		clear_bit(0, &dev->dma_flag);
		return -EINVAL;
	}

	if (!length) {
		DRM_ERROR("0 length buffer\n");
Linus Torvalds's avatar
Linus Torvalds committed
187 188
		gamma_clear_next_buffer(dev);
		gamma_free_buffer(dev, buf);
Linus Torvalds's avatar
Linus Torvalds committed
189 190 191
		clear_bit(0, &dev->dma_flag);
		return 0;
	}
Linus Torvalds's avatar
Linus Torvalds committed
192

Linus Torvalds's avatar
Linus Torvalds committed
193 194 195 196 197 198 199 200 201
	if (!gamma_dma_is_ready(dev)) {
		clear_bit(0, &dev->dma_flag);
		return -EBUSY;
	}

	if (buf->while_locked) {
		if (!_DRM_LOCK_IS_HELD(dev->lock.hw_lock->lock)) {
			DRM_ERROR("Dispatching buffer %d from pid %d"
				  " \"while locked\", but no lock held\n",
202
				  buf->idx, current->pid);
Linus Torvalds's avatar
Linus Torvalds committed
203 204
		}
	} else {
Linus Torvalds's avatar
Linus Torvalds committed
205
		if (!locked && !gamma_lock_take(&dev->lock.hw_lock->lock,
Linus Torvalds's avatar
Linus Torvalds committed
206 207 208 209 210 211 212 213 214 215
					      DRM_KERNEL_CONTEXT)) {
			clear_bit(0, &dev->dma_flag);
			return -EBUSY;
		}
	}

	if (dev->last_context != buf->context
	    && !(dev->queuelist[buf->context]->flags
		 & _DRM_CONTEXT_PRESERVED)) {
				/* PRE: dev->last_context != buf->context */
Linus Torvalds's avatar
Linus Torvalds committed
216 217 218 219
		if (DRM(context_switch)(dev, dev->last_context,
					buf->context)) {
			DRM(clear_next_buffer)(dev);
			DRM(free_buffer)(dev, buf);
Linus Torvalds's avatar
Linus Torvalds committed
220 221 222
		}
		retcode = -EBUSY;
		goto cleanup;
Linus Torvalds's avatar
Linus Torvalds committed
223

Linus Torvalds's avatar
Linus Torvalds committed
224 225 226 227 228 229 230
				/* POST: we will wait for the context
				   switch and will dispatch on a later call
				   when dev->last_context == buf->context.
				   NOTE WE HOLD THE LOCK THROUGHOUT THIS
				   TIME! */
	}

Linus Torvalds's avatar
Linus Torvalds committed
231
	gamma_clear_next_buffer(dev);
Linus Torvalds's avatar
Linus Torvalds committed
232 233 234 235
	buf->pending	 = 1;
	buf->waiting	 = 0;
	buf->list	 = DRM_LIST_PEND;

236 237 238
	/* WE NOW ARE ON LOGICAL PAGES!!! - overriding address */
	address = buf->idx << 12;

Linus Torvalds's avatar
Linus Torvalds committed
239
	gamma_dma_dispatch(dev, address, length);
Linus Torvalds's avatar
Linus Torvalds committed
240
	gamma_free_buffer(dev, dma->this_buffer);
Linus Torvalds's avatar
Linus Torvalds committed
241 242
	dma->this_buffer = buf;

Linus Torvalds's avatar
Linus Torvalds committed
243 244
	atomic_inc(&dev->counts[7]); /* _DRM_STAT_DMA */
	atomic_add(length, &dev->counts[8]); /* _DRM_STAT_PRIMARY */
Linus Torvalds's avatar
Linus Torvalds committed
245 246

	if (!buf->while_locked && !dev->context_flag && !locked) {
Linus Torvalds's avatar
Linus Torvalds committed
247
		if (gamma_lock_free(dev, &dev->lock.hw_lock->lock,
Linus Torvalds's avatar
Linus Torvalds committed
248 249 250 251 252 253 254 255 256 257 258 259
				  DRM_KERNEL_CONTEXT)) {
			DRM_ERROR("\n");
		}
	}
cleanup:

	clear_bit(0, &dev->dma_flag);


	return retcode;
}

Linus Torvalds's avatar
Linus Torvalds committed
260
static void gamma_dma_timer_bh(unsigned long dev)
Linus Torvalds's avatar
Linus Torvalds committed
261 262 263 264
{
	gamma_dma_schedule((drm_device_t *)dev, 0);
}

Linus Torvalds's avatar
Linus Torvalds committed
265
void gamma_dma_immediate_bh(void *dev)
Linus Torvalds's avatar
Linus Torvalds committed
266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282
{
	gamma_dma_schedule(dev, 0);
}

int gamma_dma_schedule(drm_device_t *dev, int locked)
{
	int		 next;
	drm_queue_t	 *q;
	drm_buf_t	 *buf;
	int		 retcode   = 0;
	int		 processed = 0;
	int		 missed;
	int		 expire	   = 20;
	drm_device_dma_t *dma	   = dev->dma;

	if (test_and_set_bit(0, &dev->interrupt_flag)) {
				/* Not reentrant */
Linus Torvalds's avatar
Linus Torvalds committed
283
		atomic_inc(&dev->counts[10]); /* _DRM_STAT_MISSED */
Linus Torvalds's avatar
Linus Torvalds committed
284 285
		return -EBUSY;
	}
Linus Torvalds's avatar
Linus Torvalds committed
286
	missed = atomic_read(&dev->counts[10]);
Linus Torvalds's avatar
Linus Torvalds committed
287 288 289 290 291 292 293 294 295 296 297 298 299


again:
	if (dev->context_flag) {
		clear_bit(0, &dev->interrupt_flag);
		return -EBUSY;
	}
	if (dma->next_buffer) {
				/* Unsent buffer that was previously
				   selected, but that couldn't be sent
				   because the lock could not be obtained
				   or the DMA engine wasn't ready.  Try
				   again. */
Linus Torvalds's avatar
Linus Torvalds committed
300
		if (!(retcode = gamma_do_dma(dev, locked))) ++processed;
Linus Torvalds's avatar
Linus Torvalds committed
301 302
	} else {
		do {
Linus Torvalds's avatar
Linus Torvalds committed
303
			next = gamma_select_queue(dev, gamma_dma_timer_bh);
Linus Torvalds's avatar
Linus Torvalds committed
304 305
			if (next >= 0) {
				q   = dev->queuelist[next];
Linus Torvalds's avatar
Linus Torvalds committed
306
				buf = gamma_waitlist_get(&q->waitlist);
Linus Torvalds's avatar
Linus Torvalds committed
307 308 309
				dma->next_buffer = buf;
				dma->next_queue	 = q;
				if (buf && buf->list == DRM_LIST_RECLAIM) {
Linus Torvalds's avatar
Linus Torvalds committed
310 311
					gamma_clear_next_buffer(dev);
					gamma_free_buffer(dev, buf);
Linus Torvalds's avatar
Linus Torvalds committed
312 313 314 315 316 317 318 319 320 321 322
				}
			}
		} while (next >= 0 && !dma->next_buffer);
		if (dma->next_buffer) {
			if (!(retcode = gamma_do_dma(dev, locked))) {
				++processed;
			}
		}
	}

	if (--expire) {
Linus Torvalds's avatar
Linus Torvalds committed
323
		if (missed != atomic_read(&dev->counts[10])) {
Linus Torvalds's avatar
Linus Torvalds committed
324 325 326 327 328 329 330
			if (gamma_dma_is_ready(dev)) goto again;
		}
		if (processed && gamma_dma_is_ready(dev)) {
			processed = 0;
			goto again;
		}
	}
Linus Torvalds's avatar
Linus Torvalds committed
331

Linus Torvalds's avatar
Linus Torvalds committed
332
	clear_bit(0, &dev->interrupt_flag);
Linus Torvalds's avatar
Linus Torvalds committed
333

Linus Torvalds's avatar
Linus Torvalds committed
334 335 336
	return retcode;
}

337 338
static int gamma_dma_priority(struct file *filp, 
			      drm_device_t *dev, drm_dma_t *d)
Linus Torvalds's avatar
Linus Torvalds committed
339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356
{
	unsigned long	  address;
	unsigned long	  length;
	int		  must_free = 0;
	int		  retcode   = 0;
	int		  i;
	int		  idx;
	drm_buf_t	  *buf;
	drm_buf_t	  *last_buf = NULL;
	drm_device_dma_t  *dma	    = dev->dma;
	DECLARE_WAITQUEUE(entry, current);

				/* Turn off interrupt handling */
	while (test_and_set_bit(0, &dev->interrupt_flag)) {
		schedule();
		if (signal_pending(current)) return -EINTR;
	}
	if (!(d->flags & _DRM_DMA_WHILE_LOCKED)) {
Linus Torvalds's avatar
Linus Torvalds committed
357
		while (!gamma_lock_take(&dev->lock.hw_lock->lock,
Linus Torvalds's avatar
Linus Torvalds committed
358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375
				      DRM_KERNEL_CONTEXT)) {
			schedule();
			if (signal_pending(current)) {
				clear_bit(0, &dev->interrupt_flag);
				return -EINTR;
			}
		}
		++must_free;
	}

	for (i = 0; i < d->send_count; i++) {
		idx = d->send_indices[i];
		if (idx < 0 || idx >= dma->buf_count) {
			DRM_ERROR("Index %d (of %d max)\n",
				  d->send_indices[i], dma->buf_count - 1);
			continue;
		}
		buf = dma->buflist[ idx ];
376 377 378
		if (buf->filp != filp) {
			DRM_ERROR("Process %d using buffer not owned\n",
				  current->pid);
Linus Torvalds's avatar
Linus Torvalds committed
379 380 381 382
			retcode = -EINVAL;
			goto cleanup;
		}
		if (buf->list != DRM_LIST_NONE) {
383 384
			DRM_ERROR("Process %d using buffer on list %d\n",
				  current->pid, buf->list);
Linus Torvalds's avatar
Linus Torvalds committed
385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416
			retcode = -EINVAL;
			goto cleanup;
		}
				/* This isn't a race condition on
				   buf->list, since our concern is the
				   buffer reclaim during the time the
				   process closes the /dev/drm? handle, so
				   it can't also be doing DMA. */
		buf->list	  = DRM_LIST_PRIO;
		buf->used	  = d->send_sizes[i];
		buf->context	  = d->context;
		buf->while_locked = d->flags & _DRM_DMA_WHILE_LOCKED;
		address		  = (unsigned long)buf->address;
		length		  = buf->used;
		if (!length) {
			DRM_ERROR("0 length buffer\n");
		}
		if (buf->pending) {
			DRM_ERROR("Sending pending buffer:"
				  " buffer %d, offset %d\n",
				  d->send_indices[i], i);
			retcode = -EINVAL;
			goto cleanup;
		}
		if (buf->waiting) {
			DRM_ERROR("Sending waiting buffer:"
				  " buffer %d, offset %d\n",
				  d->send_indices[i], i);
			retcode = -EINVAL;
			goto cleanup;
		}
		buf->pending = 1;
Linus Torvalds's avatar
Linus Torvalds committed
417

Linus Torvalds's avatar
Linus Torvalds committed
418 419 420 421 422 423
		if (dev->last_context != buf->context
		    && !(dev->queuelist[buf->context]->flags
			 & _DRM_CONTEXT_PRESERVED)) {
			add_wait_queue(&dev->context_wait, &entry);
			current->state = TASK_INTERRUPTIBLE;
				/* PRE: dev->last_context != buf->context */
Linus Torvalds's avatar
Linus Torvalds committed
424 425
			DRM(context_switch)(dev, dev->last_context,
					    buf->context);
Linus Torvalds's avatar
Linus Torvalds committed
426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445
				/* POST: we will wait for the context
				   switch and will dispatch on a later call
				   when dev->last_context == buf->context.
				   NOTE WE HOLD THE LOCK THROUGHOUT THIS
				   TIME! */
			schedule();
			current->state = TASK_RUNNING;
			remove_wait_queue(&dev->context_wait, &entry);
			if (signal_pending(current)) {
				retcode = -EINTR;
				goto cleanup;
			}
			if (dev->last_context != buf->context) {
				DRM_ERROR("Context mismatch: %d %d\n",
					  dev->last_context,
					  buf->context);
			}
		}

		gamma_dma_dispatch(dev, address, length);
Linus Torvalds's avatar
Linus Torvalds committed
446 447 448
		atomic_inc(&dev->counts[9]); /* _DRM_STAT_SPECIAL */
		atomic_add(length, &dev->counts[8]); /* _DRM_STAT_PRIMARY */

Linus Torvalds's avatar
Linus Torvalds committed
449
		if (last_buf) {
Linus Torvalds's avatar
Linus Torvalds committed
450
			gamma_free_buffer(dev, last_buf);
Linus Torvalds's avatar
Linus Torvalds committed
451 452 453 454 455 456 457 458
		}
		last_buf = buf;
	}


cleanup:
	if (last_buf) {
		gamma_dma_ready(dev);
Linus Torvalds's avatar
Linus Torvalds committed
459
		gamma_free_buffer(dev, last_buf);
Linus Torvalds's avatar
Linus Torvalds committed
460
	}
Linus Torvalds's avatar
Linus Torvalds committed
461

Linus Torvalds's avatar
Linus Torvalds committed
462
	if (must_free && !dev->context_flag) {
Linus Torvalds's avatar
Linus Torvalds committed
463
		if (gamma_lock_free(dev, &dev->lock.hw_lock->lock,
Linus Torvalds's avatar
Linus Torvalds committed
464 465 466 467 468 469 470 471
				  DRM_KERNEL_CONTEXT)) {
			DRM_ERROR("\n");
		}
	}
	clear_bit(0, &dev->interrupt_flag);
	return retcode;
}

472 473
static int gamma_dma_send_buffers(struct file *filp,
				  drm_device_t *dev, drm_dma_t *d)
Linus Torvalds's avatar
Linus Torvalds committed
474 475 476 477 478 479 480 481 482 483
{
	DECLARE_WAITQUEUE(entry, current);
	drm_buf_t	  *last_buf = NULL;
	int		  retcode   = 0;
	drm_device_dma_t  *dma	    = dev->dma;

	if (d->flags & _DRM_DMA_BLOCK) {
		last_buf = dma->buflist[d->send_indices[d->send_count-1]];
		add_wait_queue(&last_buf->dma_wait, &entry);
	}
Linus Torvalds's avatar
Linus Torvalds committed
484

485
	if ((retcode = gamma_dma_enqueue(filp, d))) {
Linus Torvalds's avatar
Linus Torvalds committed
486 487 488 489
		if (d->flags & _DRM_DMA_BLOCK)
			remove_wait_queue(&last_buf->dma_wait, &entry);
		return retcode;
	}
Linus Torvalds's avatar
Linus Torvalds committed
490

Linus Torvalds's avatar
Linus Torvalds committed
491
	gamma_dma_schedule(dev, 0);
Linus Torvalds's avatar
Linus Torvalds committed
492

Linus Torvalds's avatar
Linus Torvalds committed
493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510
	if (d->flags & _DRM_DMA_BLOCK) {
		DRM_DEBUG("%d waiting\n", current->pid);
		for (;;) {
			current->state = TASK_INTERRUPTIBLE;
			if (!last_buf->waiting && !last_buf->pending)
				break; /* finished */
			schedule();
			if (signal_pending(current)) {
				retcode = -EINTR; /* Can't restart */
				break;
			}
		}
		current->state = TASK_RUNNING;
		DRM_DEBUG("%d running\n", current->pid);
		remove_wait_queue(&last_buf->dma_wait, &entry);
		if (!retcode
		    || (last_buf->list==DRM_LIST_PEND && !last_buf->pending)) {
			if (!waitqueue_active(&last_buf->dma_wait)) {
Linus Torvalds's avatar
Linus Torvalds committed
511
				gamma_free_buffer(dev, last_buf);
Linus Torvalds's avatar
Linus Torvalds committed
512 513 514
			}
		}
		if (retcode) {
515
			DRM_ERROR("ctx%d w%d p%d c%ld i%d l%d pid:%d\n",
Linus Torvalds's avatar
Linus Torvalds committed
516 517 518
				  d->context,
				  last_buf->waiting,
				  last_buf->pending,
519
				  (long)DRM_WAITCOUNT(dev, d->context),
Linus Torvalds's avatar
Linus Torvalds committed
520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544
				  last_buf->idx,
				  last_buf->list,
				  current->pid);
		}
	}
	return retcode;
}

int gamma_dma(struct inode *inode, struct file *filp, unsigned int cmd,
	      unsigned long arg)
{
	drm_file_t	  *priv	    = filp->private_data;
	drm_device_t	  *dev	    = priv->dev;
	drm_device_dma_t  *dma	    = dev->dma;
	int		  retcode   = 0;
	drm_dma_t	  d;

	if (copy_from_user(&d, (drm_dma_t *)arg, sizeof(d)))
		return -EFAULT;

	if (d.send_count < 0 || d.send_count > dma->buf_count) {
		DRM_ERROR("Process %d trying to send %d buffers (of %d max)\n",
			  current->pid, d.send_count, dma->buf_count);
		return -EINVAL;
	}
Linus Torvalds's avatar
Linus Torvalds committed
545

Linus Torvalds's avatar
Linus Torvalds committed
546 547 548 549 550 551 552 553
	if (d.request_count < 0 || d.request_count > dma->buf_count) {
		DRM_ERROR("Process %d trying to get %d buffers (of %d max)\n",
			  current->pid, d.request_count, dma->buf_count);
		return -EINVAL;
	}

	if (d.send_count) {
		if (d.flags & _DRM_DMA_PRIORITY)
554
			retcode = gamma_dma_priority(filp, dev, &d);
Linus Torvalds's avatar
Linus Torvalds committed
555
		else
556
			retcode = gamma_dma_send_buffers(filp, dev, &d);
Linus Torvalds's avatar
Linus Torvalds committed
557 558 559 560 561
	}

	d.granted_count = 0;

	if (!retcode && d.request_count) {
562
		retcode = gamma_dma_get_buffers(filp, &d);
Linus Torvalds's avatar
Linus Torvalds committed
563 564 565 566 567 568 569 570 571
	}

	DRM_DEBUG("%d returning, granted = %d\n",
		  current->pid, d.granted_count);
	if (copy_to_user((drm_dma_t *)arg, &d, sizeof(d)))
		return -EFAULT;

	return retcode;
}
572 573 574 575 576 577 578 579 580 581 582 583

/* =============================================================
 * DMA initialization, cleanup
 */

static int gamma_do_init_dma( drm_device_t *dev, drm_gamma_init_t *init )
{
	drm_gamma_private_t *dev_priv;
	drm_device_dma_t    *dma = dev->dma;
	drm_buf_t	    *buf;
	int i;
	struct list_head    *list;
584
	unsigned long	    *pgt;
585 586 587 588 589 590 591 592 593 594 595 596

	DRM_DEBUG( "%s\n", __FUNCTION__ );

	dev_priv = DRM(alloc)( sizeof(drm_gamma_private_t),
							DRM_MEM_DRIVER );
	if ( !dev_priv )
		return -ENOMEM;

	dev->dev_private = (void *)dev_priv;

	memset( dev_priv, 0, sizeof(drm_gamma_private_t) );

597 598
	dev_priv->num_rast = init->num_rast;

599
	list_for_each(list, &dev->maplist->head) {
600
		drm_map_list_t *r_list = list_entry(list, drm_map_list_t, head);
601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631
		if( r_list->map &&
		    r_list->map->type == _DRM_SHM &&
		    r_list->map->flags & _DRM_CONTAINS_LOCK ) {
			dev_priv->sarea = r_list->map;
 			break;
 		}
 	}

	DRM_FIND_MAP( dev_priv->mmio0, init->mmio0 );
	DRM_FIND_MAP( dev_priv->mmio1, init->mmio1 );
	DRM_FIND_MAP( dev_priv->mmio2, init->mmio2 );
	DRM_FIND_MAP( dev_priv->mmio3, init->mmio3 );

	dev_priv->sarea_priv = (drm_gamma_sarea_t *)
		((u8 *)dev_priv->sarea->handle +
		 init->sarea_priv_offset);

	if (init->pcimode) {
		buf = dma->buflist[GLINT_DRI_BUF_COUNT];
		pgt = buf->address;

 		for (i = 0; i < GLINT_DRI_BUF_COUNT; i++) {
			buf = dma->buflist[i];
			*pgt = virt_to_phys((void*)buf->address) | 0x07;
			pgt++;
		}

		buf = dma->buflist[GLINT_DRI_BUF_COUNT];
	} else {
		DRM_FIND_MAP( dev_priv->buffers, init->buffers_offset );

Linus Torvalds's avatar
Linus Torvalds committed
632
		DRM_IOREMAP( dev_priv->buffers, dev );
633 634 635 636 637 638

		buf = dma->buflist[GLINT_DRI_BUF_COUNT];
		pgt = buf->address;

 		for (i = 0; i < GLINT_DRI_BUF_COUNT; i++) {
			buf = dma->buflist[i];
639
			*pgt = (unsigned long)buf->address + 0x07;
640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658
			pgt++;
		}

		buf = dma->buflist[GLINT_DRI_BUF_COUNT];

		while (GAMMA_READ(GAMMA_INFIFOSPACE) < 1);
		GAMMA_WRITE( GAMMA_GDMACONTROL, 0xe);
	}
	while (GAMMA_READ(GAMMA_INFIFOSPACE) < 2);
	GAMMA_WRITE( GAMMA_PAGETABLEADDR, virt_to_phys((void*)buf->address) );
	GAMMA_WRITE( GAMMA_PAGETABLELENGTH, 2 );

	return 0;
}

int gamma_do_cleanup_dma( drm_device_t *dev )
{
	DRM_DEBUG( "%s\n", __FUNCTION__ );

659 660 661 662 663 664 665 666
#if _HAVE_DMA_IRQ
	/* Make sure interrupts are disabled here because the uninstall ioctl
	 * may not have been called from userspace and after dev_private
	 * is freed, it's too late.
	 */
	if ( dev->irq ) DRM(irq_uninstall)(dev);
#endif

667 668 669
	if ( dev->dev_private ) {
		drm_gamma_private_t *dev_priv = dev->dev_private;

670
		if ( dev_priv->buffers != NULL )
Linus Torvalds's avatar
Linus Torvalds committed
671
			DRM_IOREMAPFREE( dev_priv->buffers, dev );
672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687

		DRM(free)( dev->dev_private, sizeof(drm_gamma_private_t),
			   DRM_MEM_DRIVER );
		dev->dev_private = NULL;
	}

	return 0;
}

int gamma_dma_init( struct inode *inode, struct file *filp,
		  unsigned int cmd, unsigned long arg )
{
	drm_file_t *priv = filp->private_data;
	drm_device_t *dev = priv->dev;
	drm_gamma_init_t init;

688 689
	LOCK_TEST_WITH_RETURN( dev, filp );

690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814
	if ( copy_from_user( &init, (drm_gamma_init_t *)arg, sizeof(init) ) )
		return -EFAULT;

	switch ( init.func ) {
	case GAMMA_INIT_DMA:
		return gamma_do_init_dma( dev, &init );
	case GAMMA_CLEANUP_DMA:
		return gamma_do_cleanup_dma( dev );
	}

	return -EINVAL;
}

static int gamma_do_copy_dma( drm_device_t *dev, drm_gamma_copy_t *copy )
{
	drm_device_dma_t    *dma = dev->dma;
	unsigned int        *screenbuf;

	DRM_DEBUG( "%s\n", __FUNCTION__ );

	/* We've DRM_RESTRICTED this DMA buffer */

	screenbuf = dma->buflist[ GLINT_DRI_BUF_COUNT + 1 ]->address;

#if 0
	*buffer++ = 0x180;	/* Tag (FilterMode) */
	*buffer++ = 0x200;	/* Allow FBColor through */
	*buffer++ = 0x53B;	/* Tag */
	*buffer++ = copy->Pitch;
	*buffer++ = 0x53A;	/* Tag */
	*buffer++ = copy->SrcAddress;
	*buffer++ = 0x539;	/* Tag */
	*buffer++ = copy->WidthHeight; /* Initiates transfer */
	*buffer++ = 0x53C;	/* Tag - DMAOutputAddress */
	*buffer++ = virt_to_phys((void*)screenbuf);
	*buffer++ = 0x53D;	/* Tag - DMAOutputCount */
	*buffer++ = copy->Count; /* Reads HostOutFifo BLOCKS until ..*/

	/* Data now sitting in dma->buflist[ GLINT_DRI_BUF_COUNT + 1 ] */
	/* Now put it back to the screen */

	*buffer++ = 0x180;	/* Tag (FilterMode) */
	*buffer++ = 0x400;	/* Allow Sync through */
	*buffer++ = 0x538;	/* Tag - DMARectangleReadTarget */
	*buffer++ = 0x155;	/* FBSourceData | count */
	*buffer++ = 0x537;	/* Tag */
	*buffer++ = copy->Pitch;
	*buffer++ = 0x536;	/* Tag */
	*buffer++ = copy->DstAddress;
	*buffer++ = 0x535;	/* Tag */
	*buffer++ = copy->WidthHeight; /* Initiates transfer */
	*buffer++ = 0x530;	/* Tag - DMAAddr */
	*buffer++ = virt_to_phys((void*)screenbuf);
	*buffer++ = 0x531;
	*buffer++ = copy->Count; /* initiates DMA transfer of color data */
#endif

	/* need to dispatch it now */

	return 0;
}

int gamma_dma_copy( struct inode *inode, struct file *filp,
		  unsigned int cmd, unsigned long arg )
{
	drm_file_t *priv = filp->private_data;
	drm_device_t *dev = priv->dev;
	drm_gamma_copy_t copy;

	if ( copy_from_user( &copy, (drm_gamma_copy_t *)arg, sizeof(copy) ) )
		return -EFAULT;

	return gamma_do_copy_dma( dev, &copy );
}

/* =============================================================
 * Per Context SAREA Support
 */

int gamma_getsareactx(struct inode *inode, struct file *filp,
		     unsigned int cmd, unsigned long arg)
{
	drm_file_t	*priv	= filp->private_data;
	drm_device_t	*dev	= priv->dev;
	drm_ctx_priv_map_t request;
	drm_map_t *map;

	if (copy_from_user(&request,
			   (drm_ctx_priv_map_t *)arg,
			   sizeof(request)))
		return -EFAULT;

	down(&dev->struct_sem);
	if ((int)request.ctx_id >= dev->max_context) {
		up(&dev->struct_sem);
		return -EINVAL;
	}

	map = dev->context_sareas[request.ctx_id];
	up(&dev->struct_sem);

	request.handle = map->handle;
	if (copy_to_user((drm_ctx_priv_map_t *)arg, &request, sizeof(request)))
		return -EFAULT;
	return 0;
}

int gamma_setsareactx(struct inode *inode, struct file *filp,
		     unsigned int cmd, unsigned long arg)
{
	drm_file_t	*priv	= filp->private_data;
	drm_device_t	*dev	= priv->dev;
	drm_ctx_priv_map_t request;
	drm_map_t *map = NULL;
	drm_map_list_t *r_list;
	struct list_head *list;

	if (copy_from_user(&request,
			   (drm_ctx_priv_map_t *)arg,
			   sizeof(request)))
		return -EFAULT;

	down(&dev->struct_sem);
	r_list = NULL;
	list_for_each(list, &dev->maplist->head) {
815
		r_list = list_entry(list, drm_map_list_t, head);
816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836
		if(r_list->map &&
		   r_list->map->handle == request.handle) break;
	}
	if (list == &(dev->maplist->head)) {
		up(&dev->struct_sem);
		return -EINVAL;
	}
	map = r_list->map;
	up(&dev->struct_sem);

	if (!map) return -EINVAL;

	down(&dev->struct_sem);
	if ((int)request.ctx_id >= dev->max_context) {
		up(&dev->struct_sem);
		return -EINVAL;
	}
	dev->context_sareas[request.ctx_id] = map;
	up(&dev->struct_sem);
	return 0;
}
837 838 839 840 841

void DRM(driver_irq_preinstall)( drm_device_t *dev ) {
	drm_gamma_private_t *dev_priv =
				(drm_gamma_private_t *)dev->dev_private;

842 843
	while(GAMMA_READ(GAMMA_INFIFOSPACE) < 2)
		cpu_relax();
844 845 846 847 848 849 850 851 852

	GAMMA_WRITE( GAMMA_GCOMMANDMODE,	0x00000004 );
	GAMMA_WRITE( GAMMA_GDMACONTROL,		0x00000000 );
}

void DRM(driver_irq_postinstall)( drm_device_t *dev ) {
	drm_gamma_private_t *dev_priv =
				(drm_gamma_private_t *)dev->dev_private;

853 854
	while(GAMMA_READ(GAMMA_INFIFOSPACE) < 3)
		cpu_relax();
855 856 857 858 859 860 861 862 863

	GAMMA_WRITE( GAMMA_GINTENABLE,		0x00002001 );
	GAMMA_WRITE( GAMMA_COMMANDINTENABLE,	0x00000008 );
	GAMMA_WRITE( GAMMA_GDELAYTIMER,		0x00039090 );
}

void DRM(driver_irq_uninstall)( drm_device_t *dev ) {
	drm_gamma_private_t *dev_priv =
				(drm_gamma_private_t *)dev->dev_private;
864 865
	if (!dev_priv)
		return;
866

867 868
	while(GAMMA_READ(GAMMA_INFIFOSPACE) < 3)
		cpu_relax();
869 870 871 872 873

	GAMMA_WRITE( GAMMA_GDELAYTIMER,		0x00000000 );
	GAMMA_WRITE( GAMMA_COMMANDINTENABLE,	0x00000000 );
	GAMMA_WRITE( GAMMA_GINTENABLE,		0x00000000 );
}