| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | /* i830_dma.c -- DMA support for the I830 -*- linux-c -*-
 | 
					
						
							|  |  |  |  * Created: Mon Dec 13 01:50:01 1999 by jhartmann@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: | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  |  * The above copyright notice and this permission notice (including the next | 
					
						
							|  |  |  |  * paragraph) shall be included in all copies or substantial portions of the | 
					
						
							|  |  |  |  * Software. | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  |  * 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. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Authors: Rickard E. (Rik) Faith <faith@valinux.com> | 
					
						
							|  |  |  |  *	    Jeff Hartmann <jhartmann@valinux.com> | 
					
						
							|  |  |  |  *	    Keith Whitwell <keith@tungstengraphics.com> | 
					
						
							|  |  |  |  *	    Abraham vd Merwe <abraham@2d3d.co.za> | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include "drmP.h"
 | 
					
						
							|  |  |  | #include "drm.h"
 | 
					
						
							|  |  |  | #include "i830_drm.h"
 | 
					
						
							|  |  |  | #include "i830_drv.h"
 | 
					
						
							|  |  |  | #include <linux/interrupt.h>	/* For task queue support */
 | 
					
						
							| 
									
										
										
										
											2008-02-13 15:03:17 -08:00
										 |  |  | #include <linux/pagemap.h>
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | #include <linux/delay.h>
 | 
					
						
							| 
									
										
											  
											
												include cleanup: Update gfp.h and slab.h includes to prepare for breaking implicit slab.h inclusion from percpu.h
percpu.h is included by sched.h and module.h and thus ends up being
included when building most .c files.  percpu.h includes slab.h which
in turn includes gfp.h making everything defined by the two files
universally available and complicating inclusion dependencies.
percpu.h -> slab.h dependency is about to be removed.  Prepare for
this change by updating users of gfp and slab facilities include those
headers directly instead of assuming availability.  As this conversion
needs to touch large number of source files, the following script is
used as the basis of conversion.
  http://userweb.kernel.org/~tj/misc/slabh-sweep.py
The script does the followings.
* Scan files for gfp and slab usages and update includes such that
  only the necessary includes are there.  ie. if only gfp is used,
  gfp.h, if slab is used, slab.h.
* When the script inserts a new include, it looks at the include
  blocks and try to put the new include such that its order conforms
  to its surrounding.  It's put in the include block which contains
  core kernel includes, in the same order that the rest are ordered -
  alphabetical, Christmas tree, rev-Xmas-tree or at the end if there
  doesn't seem to be any matching order.
* If the script can't find a place to put a new include (mostly
  because the file doesn't have fitting include block), it prints out
  an error message indicating which .h file needs to be added to the
  file.
The conversion was done in the following steps.
1. The initial automatic conversion of all .c files updated slightly
   over 4000 files, deleting around 700 includes and adding ~480 gfp.h
   and ~3000 slab.h inclusions.  The script emitted errors for ~400
   files.
2. Each error was manually checked.  Some didn't need the inclusion,
   some needed manual addition while adding it to implementation .h or
   embedding .c file was more appropriate for others.  This step added
   inclusions to around 150 files.
3. The script was run again and the output was compared to the edits
   from #2 to make sure no file was left behind.
4. Several build tests were done and a couple of problems were fixed.
   e.g. lib/decompress_*.c used malloc/free() wrappers around slab
   APIs requiring slab.h to be added manually.
5. The script was run on all .h files but without automatically
   editing them as sprinkling gfp.h and slab.h inclusions around .h
   files could easily lead to inclusion dependency hell.  Most gfp.h
   inclusion directives were ignored as stuff from gfp.h was usually
   wildly available and often used in preprocessor macros.  Each
   slab.h inclusion directive was examined and added manually as
   necessary.
6. percpu.h was updated not to include slab.h.
7. Build test were done on the following configurations and failures
   were fixed.  CONFIG_GCOV_KERNEL was turned off for all tests (as my
   distributed build env didn't work with gcov compiles) and a few
   more options had to be turned off depending on archs to make things
   build (like ipr on powerpc/64 which failed due to missing writeq).
   * x86 and x86_64 UP and SMP allmodconfig and a custom test config.
   * powerpc and powerpc64 SMP allmodconfig
   * sparc and sparc64 SMP allmodconfig
   * ia64 SMP allmodconfig
   * s390 SMP allmodconfig
   * alpha SMP allmodconfig
   * um on x86_64 SMP allmodconfig
8. percpu.h modifications were reverted so that it could be applied as
   a separate patch and serve as bisection point.
Given the fact that I had only a couple of failures from tests on step
6, I'm fairly confident about the coverage of this conversion patch.
If there is a breakage, it's likely to be something in one of the arch
headers which should be easily discoverable easily on most builds of
the specific arch.
Signed-off-by: Tejun Heo <tj@kernel.org>
Guess-its-ok-by: Christoph Lameter <cl@linux-foundation.org>
Cc: Ingo Molnar <mingo@redhat.com>
Cc: Lee Schermerhorn <Lee.Schermerhorn@hp.com>
											
										 
											2010-03-24 17:04:11 +09:00
										 |  |  | #include <linux/slab.h>
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | #include <asm/uaccess.h>
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define I830_BUF_FREE		2
 | 
					
						
							|  |  |  | #define I830_BUF_CLIENT		1
 | 
					
						
							| 
									
										
										
										
											2007-11-05 12:50:58 +10:00
										 |  |  | #define I830_BUF_HARDWARE	0
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | #define I830_BUF_UNMAPPED 0
 | 
					
						
							|  |  |  | #define I830_BUF_MAPPED   1
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-07-11 16:17:42 +10:00
										 |  |  | static struct drm_buf *i830_freelist_get(struct drm_device * dev) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2007-07-11 16:32:08 +10:00
										 |  |  | 	struct drm_device_dma *dma = dev->dma; | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 	int i; | 
					
						
							|  |  |  | 	int used; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	/* Linear search might not be the best solution */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 	for (i = 0; i < dma->buf_count; i++) { | 
					
						
							| 
									
										
										
										
											2007-07-11 16:17:42 +10:00
										 |  |  | 		struct drm_buf *buf = dma->buflist[i]; | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 		drm_i830_buf_priv_t *buf_priv = buf->dev_private; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		/* In use is already a pointer */ | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 		used = cmpxchg(buf_priv->in_use, I830_BUF_FREE, | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 			       I830_BUF_CLIENT); | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 		if (used == I830_BUF_FREE) { | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 			return buf; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 	return NULL; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* This should only be called if the buffer is not sent to the hardware
 | 
					
						
							|  |  |  |  * yet, the hardware updates in use for us once its on the ring buffer. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-07-11 16:17:42 +10:00
										 |  |  | static int i830_freelist_put(struct drm_device * dev, struct drm_buf * buf) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 	drm_i830_buf_priv_t *buf_priv = buf->dev_private; | 
					
						
							|  |  |  | 	int used; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* In use is already a pointer */ | 
					
						
							|  |  |  | 	used = cmpxchg(buf_priv->in_use, I830_BUF_CLIENT, I830_BUF_FREE); | 
					
						
							|  |  |  | 	if (used != I830_BUF_CLIENT) { | 
					
						
							|  |  |  | 		DRM_ERROR("Freeing buffer thats not in use : %d\n", buf->idx); | 
					
						
							|  |  |  | 		return -EINVAL; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	return 0; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-07-07 21:03:38 +10:00
										 |  |  | static int i830_mmap_buffers(struct file *filp, struct vm_area_struct *vma) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2007-07-11 16:09:54 +10:00
										 |  |  | 	struct drm_file *priv = filp->private_data; | 
					
						
							|  |  |  | 	struct drm_device *dev; | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 	drm_i830_private_t *dev_priv; | 
					
						
							| 
									
										
										
										
											2007-07-11 16:17:42 +10:00
										 |  |  | 	struct drm_buf *buf; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	drm_i830_buf_priv_t *buf_priv; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	lock_kernel(); | 
					
						
							| 
									
										
										
										
											2008-04-21 16:47:32 +10:00
										 |  |  | 	dev = priv->minor->dev; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	dev_priv = dev->dev_private; | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 	buf = dev_priv->mmap_buffer; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	buf_priv = buf->dev_private; | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	vma->vm_flags |= (VM_IO | VM_DONTCOPY); | 
					
						
							|  |  |  | 	vma->vm_file = filp; | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	buf_priv->currently_mapped = I830_BUF_MAPPED; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	unlock_kernel(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (io_remap_pfn_range(vma, vma->vm_start, | 
					
						
							| 
									
										
										
										
											2006-08-07 20:07:43 +10:00
										 |  |  | 			       vma->vm_pgoff, | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 			       vma->vm_end - vma->vm_start, vma->vm_page_prot)) | 
					
						
							|  |  |  | 		return -EAGAIN; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-02-12 00:55:32 -08:00
										 |  |  | static const struct file_operations i830_buffer_fops = { | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 	.open = drm_open, | 
					
						
							| 
									
										
										
										
											2005-07-07 21:03:38 +10:00
										 |  |  | 	.release = drm_release, | 
					
						
							| 
									
										
										
										
											2009-12-16 22:17:09 +00:00
										 |  |  | 	.unlocked_ioctl = drm_ioctl, | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 	.mmap = i830_mmap_buffers, | 
					
						
							|  |  |  | 	.fasync = drm_fasync, | 
					
						
							| 
									
										
										
										
											2005-07-07 21:03:38 +10:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-08-25 20:23:09 +10:00
										 |  |  | static int i830_map_buffer(struct drm_buf * buf, struct drm_file *file_priv) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2008-04-21 16:47:32 +10:00
										 |  |  | 	struct drm_device *dev = file_priv->minor->dev; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	drm_i830_buf_priv_t *buf_priv = buf->dev_private; | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 	drm_i830_private_t *dev_priv = dev->dev_private; | 
					
						
							| 
									
										
										
										
											2006-03-28 01:56:41 -08:00
										 |  |  | 	const struct file_operations *old_fops; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	unsigned long virtual; | 
					
						
							|  |  |  | 	int retcode = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 	if (buf_priv->currently_mapped == I830_BUF_MAPPED) | 
					
						
							|  |  |  | 		return -EINVAL; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 	down_write(¤t->mm->mmap_sem); | 
					
						
							| 
									
										
										
										
											2007-08-25 20:23:09 +10:00
										 |  |  | 	old_fops = file_priv->filp->f_op; | 
					
						
							|  |  |  | 	file_priv->filp->f_op = &i830_buffer_fops; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	dev_priv->mmap_buffer = buf; | 
					
						
							| 
									
										
										
										
											2007-08-25 20:23:09 +10:00
										 |  |  | 	virtual = do_mmap(file_priv->filp, 0, buf->total, PROT_READ | PROT_WRITE, | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 			  MAP_SHARED, buf->bus_address); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	dev_priv->mmap_buffer = NULL; | 
					
						
							| 
									
										
										
										
											2007-08-25 20:23:09 +10:00
										 |  |  | 	file_priv->filp->f_op = old_fops; | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 	if (IS_ERR((void *)virtual)) {	/* ugh */ | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		/* Real error */ | 
					
						
							|  |  |  | 		DRM_ERROR("mmap error\n"); | 
					
						
							| 
									
										
										
										
											2006-08-16 11:54:07 +10:00
										 |  |  | 		retcode = PTR_ERR((void *)virtual); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		buf_priv->virtual = NULL; | 
					
						
							|  |  |  | 	} else { | 
					
						
							|  |  |  | 		buf_priv->virtual = (void __user *)virtual; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 	up_write(¤t->mm->mmap_sem); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	return retcode; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-07-11 16:17:42 +10:00
										 |  |  | static int i830_unmap_buffer(struct drm_buf * buf) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | { | 
					
						
							|  |  |  | 	drm_i830_buf_priv_t *buf_priv = buf->dev_private; | 
					
						
							|  |  |  | 	int retcode = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 	if (buf_priv->currently_mapped != I830_BUF_MAPPED) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		return -EINVAL; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	down_write(¤t->mm->mmap_sem); | 
					
						
							|  |  |  | 	retcode = do_munmap(current->mm, | 
					
						
							|  |  |  | 			    (unsigned long)buf_priv->virtual, | 
					
						
							|  |  |  | 			    (size_t) buf->total); | 
					
						
							|  |  |  | 	up_write(¤t->mm->mmap_sem); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 	buf_priv->currently_mapped = I830_BUF_UNMAPPED; | 
					
						
							|  |  |  | 	buf_priv->virtual = NULL; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	return retcode; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-07-11 16:09:54 +10:00
										 |  |  | static int i830_dma_get_buffer(struct drm_device * dev, drm_i830_dma_t * d, | 
					
						
							| 
									
										
										
										
											2007-08-25 20:23:09 +10:00
										 |  |  | 			       struct drm_file *file_priv) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2007-07-11 16:17:42 +10:00
										 |  |  | 	struct drm_buf *buf; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	drm_i830_buf_priv_t *buf_priv; | 
					
						
							|  |  |  | 	int retcode = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	buf = i830_freelist_get(dev); | 
					
						
							|  |  |  | 	if (!buf) { | 
					
						
							|  |  |  | 		retcode = -ENOMEM; | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 		DRM_DEBUG("retcode=%d\n", retcode); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		return retcode; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-08-25 20:23:09 +10:00
										 |  |  | 	retcode = i830_map_buffer(buf, file_priv); | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 	if (retcode) { | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		i830_freelist_put(dev, buf); | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 		DRM_ERROR("mapbuf failed, retcode %d\n", retcode); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		return retcode; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2007-08-25 20:23:09 +10:00
										 |  |  | 	buf->file_priv = file_priv; | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 	buf_priv = buf->dev_private; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	d->granted = 1; | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 	d->request_idx = buf->idx; | 
					
						
							|  |  |  | 	d->request_size = buf->total; | 
					
						
							|  |  |  | 	d->virtual = buf_priv->virtual; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	return retcode; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-07-11 16:09:54 +10:00
										 |  |  | static int i830_dma_cleanup(struct drm_device * dev) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2007-07-11 16:32:08 +10:00
										 |  |  | 	struct drm_device_dma *dma = dev->dma; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	/* 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. | 
					
						
							|  |  |  | 	 */ | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 	if (dev->irq_enabled) | 
					
						
							|  |  |  | 		drm_irq_uninstall(dev); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (dev->dev_private) { | 
					
						
							|  |  |  | 		int i; | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 		drm_i830_private_t *dev_priv = | 
					
						
							|  |  |  | 		    (drm_i830_private_t *) dev->dev_private; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		if (dev_priv->ring.virtual_start) { | 
					
						
							| 
									
										
										
										
											2007-01-08 21:31:13 +11:00
										 |  |  | 			drm_core_ioremapfree(&dev_priv->ring.map, dev); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 		if (dev_priv->hw_status_page) { | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 			pci_free_consistent(dev->pdev, PAGE_SIZE, | 
					
						
							|  |  |  | 					    dev_priv->hw_status_page, | 
					
						
							|  |  |  | 					    dev_priv->dma_status_page); | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 			/* Need to rewrite hardware status page */ | 
					
						
							|  |  |  | 			I830_WRITE(0x02080, 0x1ffff000); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-03-24 12:23:04 -07:00
										 |  |  | 		kfree(dev->dev_private); | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 		dev->dev_private = NULL; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		for (i = 0; i < dma->buf_count; i++) { | 
					
						
							| 
									
										
										
										
											2007-07-11 16:17:42 +10:00
										 |  |  | 			struct drm_buf *buf = dma->buflist[i]; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 			drm_i830_buf_priv_t *buf_priv = buf->dev_private; | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 			if (buf_priv->kernel_virtual && buf->total) | 
					
						
							| 
									
										
										
										
											2007-01-08 21:31:13 +11:00
										 |  |  | 				drm_core_ioremapfree(&buf_priv->map, dev); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 	return 0; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-07-11 16:09:54 +10:00
										 |  |  | int i830_wait_ring(struct drm_device * dev, int n, const char *caller) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 	drm_i830_private_t *dev_priv = dev->dev_private; | 
					
						
							|  |  |  | 	drm_i830_ring_buffer_t *ring = &(dev_priv->ring); | 
					
						
							|  |  |  | 	int iters = 0; | 
					
						
							|  |  |  | 	unsigned long end; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	unsigned int last_head = I830_READ(LP_RING + RING_HEAD) & HEAD_ADDR; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 	end = jiffies + (HZ * 3); | 
					
						
							|  |  |  | 	while (ring->space < n) { | 
					
						
							|  |  |  | 		ring->head = I830_READ(LP_RING + RING_HEAD) & HEAD_ADDR; | 
					
						
							|  |  |  | 		ring->space = ring->head - (ring->tail + 8); | 
					
						
							|  |  |  | 		if (ring->space < 0) | 
					
						
							|  |  |  | 			ring->space += ring->Size; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		if (ring->head != last_head) { | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 			end = jiffies + (HZ * 3); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 			last_head = ring->head; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		iters++; | 
					
						
							|  |  |  | 		if (time_before(end, jiffies)) { | 
					
						
							|  |  |  | 			DRM_ERROR("space: %d wanted %d\n", ring->space, n); | 
					
						
							|  |  |  | 			DRM_ERROR("lockup\n"); | 
					
						
							|  |  |  | 			goto out_wait_ring; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		} | 
					
						
							|  |  |  | 		udelay(1); | 
					
						
							|  |  |  | 		dev_priv->sarea_priv->perf_boxes |= I830_BOX_WAIT; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  |       out_wait_ring: | 
					
						
							|  |  |  | 	return iters; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-07-11 16:09:54 +10:00
										 |  |  | static void i830_kernel_lost_context(struct drm_device * dev) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 	drm_i830_private_t *dev_priv = dev->dev_private; | 
					
						
							|  |  |  | 	drm_i830_ring_buffer_t *ring = &(dev_priv->ring); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	ring->head = I830_READ(LP_RING + RING_HEAD) & HEAD_ADDR; | 
					
						
							|  |  |  | 	ring->tail = I830_READ(LP_RING + RING_TAIL) & TAIL_ADDR; | 
					
						
							|  |  |  | 	ring->space = ring->head - (ring->tail + 8); | 
					
						
							|  |  |  | 	if (ring->space < 0) | 
					
						
							|  |  |  | 		ring->space += ring->Size; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (ring->head == ring->tail) | 
					
						
							|  |  |  | 		dev_priv->sarea_priv->perf_boxes |= I830_BOX_RING_EMPTY; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-07-11 16:09:54 +10:00
										 |  |  | static int i830_freelist_init(struct drm_device * dev, drm_i830_private_t * dev_priv) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2007-07-11 16:32:08 +10:00
										 |  |  | 	struct drm_device_dma *dma = dev->dma; | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 	int my_idx = 36; | 
					
						
							|  |  |  | 	u32 *hw_status = (u32 *) (dev_priv->hw_status_page + my_idx); | 
					
						
							|  |  |  | 	int i; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (dma->buf_count > 1019) { | 
					
						
							|  |  |  | 		/* Not enough space in the status page for the freelist */ | 
					
						
							|  |  |  | 		return -EINVAL; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 	for (i = 0; i < dma->buf_count; i++) { | 
					
						
							| 
									
										
										
										
											2007-07-11 16:17:42 +10:00
										 |  |  | 		struct drm_buf *buf = dma->buflist[i]; | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 		drm_i830_buf_priv_t *buf_priv = buf->dev_private; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 		buf_priv->in_use = hw_status++; | 
					
						
							|  |  |  | 		buf_priv->my_use_idx = my_idx; | 
					
						
							|  |  |  | 		my_idx += 4; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 		*buf_priv->in_use = I830_BUF_FREE; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-01-08 21:31:13 +11:00
										 |  |  | 		buf_priv->map.offset = buf->bus_address; | 
					
						
							|  |  |  | 		buf_priv->map.size = buf->total; | 
					
						
							|  |  |  | 		buf_priv->map.type = _DRM_AGP; | 
					
						
							|  |  |  | 		buf_priv->map.flags = 0; | 
					
						
							|  |  |  | 		buf_priv->map.mtrr = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		drm_core_ioremap(&buf_priv->map, dev); | 
					
						
							|  |  |  | 		buf_priv->kernel_virtual = buf_priv->map.handle; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-07-11 16:09:54 +10:00
										 |  |  | static int i830_dma_initialize(struct drm_device * dev, | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 			       drm_i830_private_t * dev_priv, | 
					
						
							|  |  |  | 			       drm_i830_init_t * init) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2007-07-11 16:53:40 +10:00
										 |  |  | 	struct drm_map_list *r_list; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 	memset(dev_priv, 0, sizeof(drm_i830_private_t)); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-05-26 05:01:51 +10:00
										 |  |  | 	list_for_each_entry(r_list, &dev->maplist, head) { | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 		if (r_list->map && | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		    r_list->map->type == _DRM_SHM && | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 		    r_list->map->flags & _DRM_CONTAINS_LOCK) { | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 			dev_priv->sarea_map = r_list->map; | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 			break; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 	if (!dev_priv->sarea_map) { | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		dev->dev_private = (void *)dev_priv; | 
					
						
							|  |  |  | 		i830_dma_cleanup(dev); | 
					
						
							|  |  |  | 		DRM_ERROR("can not find sarea!\n"); | 
					
						
							|  |  |  | 		return -EINVAL; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	dev_priv->mmio_map = drm_core_findmap(dev, init->mmio_offset); | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 	if (!dev_priv->mmio_map) { | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		dev->dev_private = (void *)dev_priv; | 
					
						
							|  |  |  | 		i830_dma_cleanup(dev); | 
					
						
							|  |  |  | 		DRM_ERROR("can not find mmio map!\n"); | 
					
						
							|  |  |  | 		return -EINVAL; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2005-08-05 22:11:22 +10:00
										 |  |  | 	dev->agp_buffer_token = init->buffers_offset; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	dev->agp_buffer_map = drm_core_findmap(dev, init->buffers_offset); | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 	if (!dev->agp_buffer_map) { | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		dev->dev_private = (void *)dev_priv; | 
					
						
							|  |  |  | 		i830_dma_cleanup(dev); | 
					
						
							|  |  |  | 		DRM_ERROR("can not find dma buffer map!\n"); | 
					
						
							|  |  |  | 		return -EINVAL; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	dev_priv->sarea_priv = (drm_i830_sarea_t *) | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 	    ((u8 *) dev_priv->sarea_map->handle + init->sarea_priv_offset); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 	dev_priv->ring.Start = init->ring_start; | 
					
						
							|  |  |  | 	dev_priv->ring.End = init->ring_end; | 
					
						
							|  |  |  | 	dev_priv->ring.Size = init->ring_size; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-01-08 21:31:13 +11:00
										 |  |  | 	dev_priv->ring.map.offset = dev->agp->base + init->ring_start; | 
					
						
							|  |  |  | 	dev_priv->ring.map.size = init->ring_size; | 
					
						
							|  |  |  | 	dev_priv->ring.map.type = _DRM_AGP; | 
					
						
							|  |  |  | 	dev_priv->ring.map.flags = 0; | 
					
						
							|  |  |  | 	dev_priv->ring.map.mtrr = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	drm_core_ioremap(&dev_priv->ring.map, dev); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-01-08 21:31:13 +11:00
										 |  |  | 	if (dev_priv->ring.map.handle == NULL) { | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 		dev->dev_private = (void *)dev_priv; | 
					
						
							|  |  |  | 		i830_dma_cleanup(dev); | 
					
						
							|  |  |  | 		DRM_ERROR("can not ioremap virtual address for" | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 			  " ring buffer\n"); | 
					
						
							| 
									
										
										
										
											2007-08-25 19:22:43 +10:00
										 |  |  | 		return -ENOMEM; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-01-08 21:31:13 +11:00
										 |  |  | 	dev_priv->ring.virtual_start = dev_priv->ring.map.handle; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 	dev_priv->ring.tail_mask = dev_priv->ring.Size - 1; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	dev_priv->w = init->w; | 
					
						
							|  |  |  | 	dev_priv->h = init->h; | 
					
						
							|  |  |  | 	dev_priv->pitch = init->pitch; | 
					
						
							|  |  |  | 	dev_priv->back_offset = init->back_offset; | 
					
						
							|  |  |  | 	dev_priv->depth_offset = init->depth_offset; | 
					
						
							|  |  |  | 	dev_priv->front_offset = init->front_offset; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	dev_priv->front_di1 = init->front_offset | init->pitch_bits; | 
					
						
							|  |  |  | 	dev_priv->back_di1 = init->back_offset | init->pitch_bits; | 
					
						
							|  |  |  | 	dev_priv->zi1 = init->depth_offset | init->pitch_bits; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 	DRM_DEBUG("front_di1 %x\n", dev_priv->front_di1); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	DRM_DEBUG("back_offset %x\n", dev_priv->back_offset); | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 	DRM_DEBUG("back_di1 %x\n", dev_priv->back_di1); | 
					
						
							|  |  |  | 	DRM_DEBUG("pitch_bits %x\n", init->pitch_bits); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	dev_priv->cpp = init->cpp; | 
					
						
							|  |  |  | 	/* We are using separate values as placeholders for mechanisms for
 | 
					
						
							|  |  |  | 	 * private backbuffer/depthbuffer usage. | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	dev_priv->back_pitch = init->back_pitch; | 
					
						
							|  |  |  | 	dev_priv->depth_pitch = init->depth_pitch; | 
					
						
							|  |  |  | 	dev_priv->do_boxes = 0; | 
					
						
							|  |  |  | 	dev_priv->use_mi_batchbuffer_start = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 	/* Program Hardware Status Page */ | 
					
						
							|  |  |  | 	dev_priv->hw_status_page = | 
					
						
							|  |  |  | 	    pci_alloc_consistent(dev->pdev, PAGE_SIZE, | 
					
						
							|  |  |  | 				 &dev_priv->dma_status_page); | 
					
						
							|  |  |  | 	if (!dev_priv->hw_status_page) { | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		dev->dev_private = (void *)dev_priv; | 
					
						
							|  |  |  | 		i830_dma_cleanup(dev); | 
					
						
							|  |  |  | 		DRM_ERROR("Can not allocate hardware status page\n"); | 
					
						
							|  |  |  | 		return -ENOMEM; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 	memset(dev_priv->hw_status_page, 0, PAGE_SIZE); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	DRM_DEBUG("hw status page @ %p\n", dev_priv->hw_status_page); | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	I830_WRITE(0x02080, dev_priv->dma_status_page); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	DRM_DEBUG("Enabled hardware status page\n"); | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	/* Now we need to init our freelist */ | 
					
						
							|  |  |  | 	if (i830_freelist_init(dev, dev_priv) != 0) { | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		dev->dev_private = (void *)dev_priv; | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 		i830_dma_cleanup(dev); | 
					
						
							|  |  |  | 		DRM_ERROR("Not enough space in the status page for" | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 			  " the freelist\n"); | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 		return -ENOMEM; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	dev->dev_private = (void *)dev_priv; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 	return 0; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-09-03 12:06:45 +10:00
										 |  |  | static int i830_dma_init(struct drm_device *dev, void *data, | 
					
						
							|  |  |  | 			 struct drm_file *file_priv) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 	drm_i830_private_t *dev_priv; | 
					
						
							| 
									
										
										
										
											2007-09-03 12:06:45 +10:00
										 |  |  | 	drm_i830_init_t *init = data; | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 	int retcode = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-09-03 12:06:45 +10:00
										 |  |  | 	switch (init->func) { | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 	case I830_INIT_DMA: | 
					
						
							| 
									
										
										
										
											2009-03-24 12:23:04 -07:00
										 |  |  | 		dev_priv = kmalloc(sizeof(drm_i830_private_t), GFP_KERNEL); | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 		if (dev_priv == NULL) | 
					
						
							|  |  |  | 			return -ENOMEM; | 
					
						
							| 
									
										
										
										
											2007-09-03 12:06:45 +10:00
										 |  |  | 		retcode = i830_dma_initialize(dev, dev_priv, init); | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 		break; | 
					
						
							|  |  |  | 	case I830_CLEANUP_DMA: | 
					
						
							|  |  |  | 		retcode = i830_dma_cleanup(dev); | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	default: | 
					
						
							|  |  |  | 		retcode = -EINVAL; | 
					
						
							|  |  |  | 		break; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	return retcode; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define GFX_OP_STIPPLE           ((0x3<<29)|(0x1d<<24)|(0x83<<16))
 | 
					
						
							|  |  |  | #define ST1_ENABLE               (1<<16)
 | 
					
						
							|  |  |  | #define ST1_MASK                 (0xffff)
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* Most efficient way to verify state for the i830 is as it is
 | 
					
						
							|  |  |  |  * emitted.  Non-conformant state is silently dropped. | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2007-07-11 16:09:54 +10:00
										 |  |  | static void i830EmitContextVerified(struct drm_device * dev, unsigned int *code) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 	drm_i830_private_t *dev_priv = dev->dev_private; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	int i, j = 0; | 
					
						
							|  |  |  | 	unsigned int tmp; | 
					
						
							|  |  |  | 	RING_LOCALS; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 	BEGIN_LP_RING(I830_CTX_SETUP_SIZE + 4); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 	for (i = 0; i < I830_CTXREG_BLENDCOLR0; i++) { | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		tmp = code[i]; | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 		if ((tmp & (7 << 29)) == CMD_3D && | 
					
						
							|  |  |  | 		    (tmp & (0x1f << 24)) < (0x1d << 24)) { | 
					
						
							|  |  |  | 			OUT_RING(tmp); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 			j++; | 
					
						
							|  |  |  | 		} else { | 
					
						
							|  |  |  | 			DRM_ERROR("Skipping %d\n", i); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 	OUT_RING(STATE3D_CONST_BLEND_COLOR_CMD); | 
					
						
							|  |  |  | 	OUT_RING(code[I830_CTXREG_BLENDCOLR]); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	j += 2; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 	for (i = I830_CTXREG_VF; i < I830_CTXREG_MCSB0; i++) { | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		tmp = code[i]; | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 		if ((tmp & (7 << 29)) == CMD_3D && | 
					
						
							|  |  |  | 		    (tmp & (0x1f << 24)) < (0x1d << 24)) { | 
					
						
							|  |  |  | 			OUT_RING(tmp); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 			j++; | 
					
						
							|  |  |  | 		} else { | 
					
						
							|  |  |  | 			DRM_ERROR("Skipping %d\n", i); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 	OUT_RING(STATE3D_MAP_COORD_SETBIND_CMD); | 
					
						
							|  |  |  | 	OUT_RING(code[I830_CTXREG_MCSB1]); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	j += 2; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 	if (j & 1) | 
					
						
							|  |  |  | 		OUT_RING(0); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	ADVANCE_LP_RING(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-07-11 16:09:54 +10:00
										 |  |  | static void i830EmitTexVerified(struct drm_device * dev, unsigned int *code) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 	drm_i830_private_t *dev_priv = dev->dev_private; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	int i, j = 0; | 
					
						
							|  |  |  | 	unsigned int tmp; | 
					
						
							|  |  |  | 	RING_LOCALS; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (code[I830_TEXREG_MI0] == GFX_OP_MAP_INFO || | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 	    (code[I830_TEXREG_MI0] & ~(0xf * LOAD_TEXTURE_MAP0)) == | 
					
						
							|  |  |  | 	    (STATE3D_LOAD_STATE_IMMEDIATE_2 | 4)) { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		BEGIN_LP_RING(I830_TEX_SETUP_SIZE); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		OUT_RING(code[I830_TEXREG_MI0]);	/* TM0LI */ | 
					
						
							|  |  |  | 		OUT_RING(code[I830_TEXREG_MI1]);	/* TM0S0 */ | 
					
						
							|  |  |  | 		OUT_RING(code[I830_TEXREG_MI2]);	/* TM0S1 */ | 
					
						
							|  |  |  | 		OUT_RING(code[I830_TEXREG_MI3]);	/* TM0S2 */ | 
					
						
							|  |  |  | 		OUT_RING(code[I830_TEXREG_MI4]);	/* TM0S3 */ | 
					
						
							|  |  |  | 		OUT_RING(code[I830_TEXREG_MI5]);	/* TM0S4 */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		for (i = 6; i < I830_TEX_SETUP_SIZE; i++) { | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 			tmp = code[i]; | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 			OUT_RING(tmp); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 			j++; | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 		if (j & 1) | 
					
						
							|  |  |  | 			OUT_RING(0); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		ADVANCE_LP_RING(); | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 	} else | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		printk("rejected packet %x\n", code[0]); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-07-11 16:09:54 +10:00
										 |  |  | static void i830EmitTexBlendVerified(struct drm_device * dev, | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 				     unsigned int *code, unsigned int num) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 	drm_i830_private_t *dev_priv = dev->dev_private; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	int i, j = 0; | 
					
						
							|  |  |  | 	unsigned int tmp; | 
					
						
							|  |  |  | 	RING_LOCALS; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (!num) | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 	BEGIN_LP_RING(num + 1); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 	for (i = 0; i < num; i++) { | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		tmp = code[i]; | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 		OUT_RING(tmp); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		j++; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 	if (j & 1) | 
					
						
							|  |  |  | 		OUT_RING(0); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	ADVANCE_LP_RING(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-07-11 16:09:54 +10:00
										 |  |  | static void i830EmitTexPalette(struct drm_device * dev, | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 			       unsigned int *palette, int number, int is_shared) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 	drm_i830_private_t *dev_priv = dev->dev_private; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	int i; | 
					
						
							|  |  |  | 	RING_LOCALS; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 	BEGIN_LP_RING(258); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 	if (is_shared == 1) { | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		OUT_RING(CMD_OP_MAP_PALETTE_LOAD | | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 			 MAP_PALETTE_NUM(0) | MAP_PALETTE_BOTH); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	} else { | 
					
						
							|  |  |  | 		OUT_RING(CMD_OP_MAP_PALETTE_LOAD | MAP_PALETTE_NUM(number)); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 	for (i = 0; i < 256; i++) { | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		OUT_RING(palette[i]); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	OUT_RING(0); | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 	/* KW:  WHERE IS THE ADVANCE_LP_RING?  This is effectively a noop!
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	 */ | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* Need to do some additional checking when setting the dest buffer.
 | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2007-07-11 16:09:54 +10:00
										 |  |  | static void i830EmitDestVerified(struct drm_device * dev, unsigned int *code) | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | { | 
					
						
							|  |  |  | 	drm_i830_private_t *dev_priv = dev->dev_private; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	unsigned int tmp; | 
					
						
							|  |  |  | 	RING_LOCALS; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 	BEGIN_LP_RING(I830_DEST_SETUP_SIZE + 10); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	tmp = code[I830_DESTREG_CBUFADDR]; | 
					
						
							|  |  |  | 	if (tmp == dev_priv->front_di1 || tmp == dev_priv->back_di1) { | 
					
						
							|  |  |  | 		if (((int)outring) & 8) { | 
					
						
							|  |  |  | 			OUT_RING(0); | 
					
						
							|  |  |  | 			OUT_RING(0); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 		OUT_RING(CMD_OP_DESTBUFFER_INFO); | 
					
						
							|  |  |  | 		OUT_RING(BUF_3D_ID_COLOR_BACK | | 
					
						
							|  |  |  | 			 BUF_3D_PITCH(dev_priv->back_pitch * dev_priv->cpp) | | 
					
						
							|  |  |  | 			 BUF_3D_USE_FENCE); | 
					
						
							|  |  |  | 		OUT_RING(tmp); | 
					
						
							|  |  |  | 		OUT_RING(0); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		OUT_RING(CMD_OP_DESTBUFFER_INFO); | 
					
						
							|  |  |  | 		OUT_RING(BUF_3D_ID_DEPTH | BUF_3D_USE_FENCE | | 
					
						
							|  |  |  | 			 BUF_3D_PITCH(dev_priv->depth_pitch * dev_priv->cpp)); | 
					
						
							|  |  |  | 		OUT_RING(dev_priv->zi1); | 
					
						
							|  |  |  | 		OUT_RING(0); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	} else { | 
					
						
							|  |  |  | 		DRM_ERROR("bad di1 %x (allow %x or %x)\n", | 
					
						
							|  |  |  | 			  tmp, dev_priv->front_di1, dev_priv->back_di1); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* invarient:
 | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 	OUT_RING(GFX_OP_DESTBUFFER_VARS); | 
					
						
							|  |  |  | 	OUT_RING(code[I830_DESTREG_DV1]); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 	OUT_RING(GFX_OP_DRAWRECT_INFO); | 
					
						
							|  |  |  | 	OUT_RING(code[I830_DESTREG_DR1]); | 
					
						
							|  |  |  | 	OUT_RING(code[I830_DESTREG_DR2]); | 
					
						
							|  |  |  | 	OUT_RING(code[I830_DESTREG_DR3]); | 
					
						
							|  |  |  | 	OUT_RING(code[I830_DESTREG_DR4]); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	/* Need to verify this */ | 
					
						
							|  |  |  | 	tmp = code[I830_DESTREG_SENABLE]; | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 	if ((tmp & ~0x3) == GFX_OP_SCISSOR_ENABLE) { | 
					
						
							|  |  |  | 		OUT_RING(tmp); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	} else { | 
					
						
							|  |  |  | 		DRM_ERROR("bad scissor enable\n"); | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 		OUT_RING(0); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 	OUT_RING(GFX_OP_SCISSOR_RECT); | 
					
						
							|  |  |  | 	OUT_RING(code[I830_DESTREG_SR1]); | 
					
						
							|  |  |  | 	OUT_RING(code[I830_DESTREG_SR2]); | 
					
						
							|  |  |  | 	OUT_RING(0); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	ADVANCE_LP_RING(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-07-11 16:09:54 +10:00
										 |  |  | static void i830EmitStippleVerified(struct drm_device * dev, unsigned int *code) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 	drm_i830_private_t *dev_priv = dev->dev_private; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	RING_LOCALS; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 	BEGIN_LP_RING(2); | 
					
						
							|  |  |  | 	OUT_RING(GFX_OP_STIPPLE); | 
					
						
							|  |  |  | 	OUT_RING(code[1]); | 
					
						
							|  |  |  | 	ADVANCE_LP_RING(); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-07-11 16:09:54 +10:00
										 |  |  | static void i830EmitState(struct drm_device * dev) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 	drm_i830_private_t *dev_priv = dev->dev_private; | 
					
						
							|  |  |  | 	drm_i830_sarea_t *sarea_priv = dev_priv->sarea_priv; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	unsigned int dirty = sarea_priv->dirty; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-04-30 00:55:10 -07:00
										 |  |  | 	DRM_DEBUG("%s %x\n", __func__, dirty); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (dirty & I830_UPLOAD_BUFFERS) { | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 		i830EmitDestVerified(dev, sarea_priv->BufferState); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		sarea_priv->dirty &= ~I830_UPLOAD_BUFFERS; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (dirty & I830_UPLOAD_CTX) { | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 		i830EmitContextVerified(dev, sarea_priv->ContextState); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		sarea_priv->dirty &= ~I830_UPLOAD_CTX; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (dirty & I830_UPLOAD_TEX0) { | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 		i830EmitTexVerified(dev, sarea_priv->TexState[0]); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		sarea_priv->dirty &= ~I830_UPLOAD_TEX0; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (dirty & I830_UPLOAD_TEX1) { | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 		i830EmitTexVerified(dev, sarea_priv->TexState[1]); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		sarea_priv->dirty &= ~I830_UPLOAD_TEX1; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (dirty & I830_UPLOAD_TEXBLEND0) { | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 		i830EmitTexBlendVerified(dev, sarea_priv->TexBlendState[0], | 
					
						
							|  |  |  | 					 sarea_priv->TexBlendStateWordsUsed[0]); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		sarea_priv->dirty &= ~I830_UPLOAD_TEXBLEND0; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (dirty & I830_UPLOAD_TEXBLEND1) { | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 		i830EmitTexBlendVerified(dev, sarea_priv->TexBlendState[1], | 
					
						
							|  |  |  | 					 sarea_priv->TexBlendStateWordsUsed[1]); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		sarea_priv->dirty &= ~I830_UPLOAD_TEXBLEND1; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (dirty & I830_UPLOAD_TEX_PALETTE_SHARED) { | 
					
						
							|  |  |  | 		i830EmitTexPalette(dev, sarea_priv->Palette[0], 0, 1); | 
					
						
							|  |  |  | 	} else { | 
					
						
							|  |  |  | 		if (dirty & I830_UPLOAD_TEX_PALETTE_N(0)) { | 
					
						
							|  |  |  | 			i830EmitTexPalette(dev, sarea_priv->Palette[0], 0, 0); | 
					
						
							|  |  |  | 			sarea_priv->dirty &= ~I830_UPLOAD_TEX_PALETTE_N(0); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		if (dirty & I830_UPLOAD_TEX_PALETTE_N(1)) { | 
					
						
							|  |  |  | 			i830EmitTexPalette(dev, sarea_priv->Palette[1], 1, 0); | 
					
						
							|  |  |  | 			sarea_priv->dirty &= ~I830_UPLOAD_TEX_PALETTE_N(1); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		/* 1.3:
 | 
					
						
							|  |  |  | 		 */ | 
					
						
							|  |  |  | #if 0
 | 
					
						
							|  |  |  | 		if (dirty & I830_UPLOAD_TEX_PALETTE_N(2)) { | 
					
						
							|  |  |  | 			i830EmitTexPalette(dev, sarea_priv->Palette2[0], 0, 0); | 
					
						
							|  |  |  | 			sarea_priv->dirty &= ~I830_UPLOAD_TEX_PALETTE_N(2); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		if (dirty & I830_UPLOAD_TEX_PALETTE_N(3)) { | 
					
						
							|  |  |  | 			i830EmitTexPalette(dev, sarea_priv->Palette2[1], 1, 0); | 
					
						
							|  |  |  | 			sarea_priv->dirty &= ~I830_UPLOAD_TEX_PALETTE_N(2); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* 1.3:
 | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | 	if (dirty & I830_UPLOAD_STIPPLE) { | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 		i830EmitStippleVerified(dev, sarea_priv->StippleState); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		sarea_priv->dirty &= ~I830_UPLOAD_STIPPLE; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (dirty & I830_UPLOAD_TEX2) { | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 		i830EmitTexVerified(dev, sarea_priv->TexState2); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		sarea_priv->dirty &= ~I830_UPLOAD_TEX2; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (dirty & I830_UPLOAD_TEX3) { | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 		i830EmitTexVerified(dev, sarea_priv->TexState3); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		sarea_priv->dirty &= ~I830_UPLOAD_TEX3; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (dirty & I830_UPLOAD_TEXBLEND2) { | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 		i830EmitTexBlendVerified(dev, | 
					
						
							|  |  |  | 					 sarea_priv->TexBlendState2, | 
					
						
							|  |  |  | 					 sarea_priv->TexBlendStateWordsUsed2); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		sarea_priv->dirty &= ~I830_UPLOAD_TEXBLEND2; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (dirty & I830_UPLOAD_TEXBLEND3) { | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 		i830EmitTexBlendVerified(dev, | 
					
						
							|  |  |  | 					 sarea_priv->TexBlendState3, | 
					
						
							|  |  |  | 					 sarea_priv->TexBlendStateWordsUsed3); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		sarea_priv->dirty &= ~I830_UPLOAD_TEXBLEND3; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* ================================================================
 | 
					
						
							|  |  |  |  * Performance monitoring functions | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-07-11 16:09:54 +10:00
										 |  |  | static void i830_fill_box(struct drm_device * dev, | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 			  int x, int y, int w, int h, int r, int g, int b) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 	drm_i830_private_t *dev_priv = dev->dev_private; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	u32 color; | 
					
						
							|  |  |  | 	unsigned int BR13, CMD; | 
					
						
							|  |  |  | 	RING_LOCALS; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 	BR13 = (0xF0 << 16) | (dev_priv->pitch * dev_priv->cpp) | (1 << 24); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	CMD = XY_COLOR_BLT_CMD; | 
					
						
							|  |  |  | 	x += dev_priv->sarea_priv->boxes[0].x1; | 
					
						
							|  |  |  | 	y += dev_priv->sarea_priv->boxes[0].y1; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (dev_priv->cpp == 4) { | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 		BR13 |= (1 << 25); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		CMD |= (XY_COLOR_BLT_WRITE_ALPHA | XY_COLOR_BLT_WRITE_RGB); | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 		color = (((0xff) << 24) | (r << 16) | (g << 8) | b); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	} else { | 
					
						
							|  |  |  | 		color = (((r & 0xf8) << 8) | | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 			 ((g & 0xfc) << 3) | ((b & 0xf8) >> 3)); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 	BEGIN_LP_RING(6); | 
					
						
							|  |  |  | 	OUT_RING(CMD); | 
					
						
							|  |  |  | 	OUT_RING(BR13); | 
					
						
							|  |  |  | 	OUT_RING((y << 16) | x); | 
					
						
							|  |  |  | 	OUT_RING(((y + h) << 16) | (x + w)); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 	if (dev_priv->current_page == 1) { | 
					
						
							|  |  |  | 		OUT_RING(dev_priv->front_offset); | 
					
						
							|  |  |  | 	} else { | 
					
						
							|  |  |  | 		OUT_RING(dev_priv->back_offset); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 	OUT_RING(color); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	ADVANCE_LP_RING(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-07-11 16:09:54 +10:00
										 |  |  | static void i830_cp_performance_boxes(struct drm_device * dev) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 	drm_i830_private_t *dev_priv = dev->dev_private; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	/* Purple box for page flipping
 | 
					
						
							|  |  |  | 	 */ | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 	if (dev_priv->sarea_priv->perf_boxes & I830_BOX_FLIP) | 
					
						
							|  |  |  | 		i830_fill_box(dev, 4, 4, 8, 8, 255, 0, 255); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	/* Red box if we have to wait for idle at any point
 | 
					
						
							|  |  |  | 	 */ | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 	if (dev_priv->sarea_priv->perf_boxes & I830_BOX_WAIT) | 
					
						
							|  |  |  | 		i830_fill_box(dev, 16, 4, 8, 8, 255, 0, 0); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	/* Blue box: lost context?
 | 
					
						
							|  |  |  | 	 */ | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 	if (dev_priv->sarea_priv->perf_boxes & I830_BOX_LOST_CONTEXT) | 
					
						
							|  |  |  | 		i830_fill_box(dev, 28, 4, 8, 8, 0, 0, 255); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	/* Yellow box for texture swaps
 | 
					
						
							|  |  |  | 	 */ | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 	if (dev_priv->sarea_priv->perf_boxes & I830_BOX_TEXTURE_LOAD) | 
					
						
							|  |  |  | 		i830_fill_box(dev, 40, 4, 8, 8, 255, 255, 0); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	/* Green box if hardware never idles (as far as we can tell)
 | 
					
						
							|  |  |  | 	 */ | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 	if (!(dev_priv->sarea_priv->perf_boxes & I830_BOX_RING_EMPTY)) | 
					
						
							|  |  |  | 		i830_fill_box(dev, 64, 4, 8, 8, 0, 255, 0); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 	/* Draw bars indicating number of buffers allocated
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	 * (not a great measure, easily confused) | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | 	if (dev_priv->dma_used) { | 
					
						
							|  |  |  | 		int bar = dev_priv->dma_used / 10240; | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 		if (bar > 100) | 
					
						
							|  |  |  | 			bar = 100; | 
					
						
							|  |  |  | 		if (bar < 1) | 
					
						
							|  |  |  | 			bar = 1; | 
					
						
							|  |  |  | 		i830_fill_box(dev, 4, 16, bar, 4, 196, 128, 128); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		dev_priv->dma_used = 0; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	dev_priv->sarea_priv->perf_boxes = 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-07-11 16:09:54 +10:00
										 |  |  | static void i830_dma_dispatch_clear(struct drm_device * dev, int flags, | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 				    unsigned int clear_color, | 
					
						
							|  |  |  | 				    unsigned int clear_zval, | 
					
						
							|  |  |  | 				    unsigned int clear_depthmask) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 	drm_i830_private_t *dev_priv = dev->dev_private; | 
					
						
							|  |  |  | 	drm_i830_sarea_t *sarea_priv = dev_priv->sarea_priv; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	int nbox = sarea_priv->nbox; | 
					
						
							| 
									
										
										
										
											2007-07-11 16:09:54 +10:00
										 |  |  | 	struct drm_clip_rect *pbox = sarea_priv->boxes; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	int pitch = dev_priv->pitch; | 
					
						
							|  |  |  | 	int cpp = dev_priv->cpp; | 
					
						
							|  |  |  | 	int i; | 
					
						
							|  |  |  | 	unsigned int BR13, CMD, D_CMD; | 
					
						
							|  |  |  | 	RING_LOCALS; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 	if (dev_priv->current_page == 1) { | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		unsigned int tmp = flags; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		flags &= ~(I830_FRONT | I830_BACK); | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 		if (tmp & I830_FRONT) | 
					
						
							|  |  |  | 			flags |= I830_BACK; | 
					
						
							|  |  |  | 		if (tmp & I830_BACK) | 
					
						
							|  |  |  | 			flags |= I830_FRONT; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 	i830_kernel_lost_context(dev); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 	switch (cpp) { | 
					
						
							|  |  |  | 	case 2: | 
					
						
							|  |  |  | 		BR13 = (0xF0 << 16) | (pitch * cpp) | (1 << 24); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		D_CMD = CMD = XY_COLOR_BLT_CMD; | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	case 4: | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 		BR13 = (0xF0 << 16) | (pitch * cpp) | (1 << 24) | (1 << 25); | 
					
						
							|  |  |  | 		CMD = (XY_COLOR_BLT_CMD | XY_COLOR_BLT_WRITE_ALPHA | | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		       XY_COLOR_BLT_WRITE_RGB); | 
					
						
							|  |  |  | 		D_CMD = XY_COLOR_BLT_CMD; | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 		if (clear_depthmask & 0x00ffffff) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 			D_CMD |= XY_COLOR_BLT_WRITE_RGB; | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 		if (clear_depthmask & 0xff000000) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 			D_CMD |= XY_COLOR_BLT_WRITE_ALPHA; | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	default: | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 		BR13 = (0xF0 << 16) | (pitch * cpp) | (1 << 24); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		D_CMD = CMD = XY_COLOR_BLT_CMD; | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 	if (nbox > I830_NR_SAREA_CLIPRECTS) | 
					
						
							|  |  |  | 		nbox = I830_NR_SAREA_CLIPRECTS; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 	for (i = 0; i < nbox; i++, pbox++) { | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		if (pbox->x1 > pbox->x2 || | 
					
						
							|  |  |  | 		    pbox->y1 > pbox->y2 || | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 		    pbox->x2 > dev_priv->w || pbox->y2 > dev_priv->h) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 			continue; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 		if (flags & I830_FRONT) { | 
					
						
							|  |  |  | 			DRM_DEBUG("clear front\n"); | 
					
						
							|  |  |  | 			BEGIN_LP_RING(6); | 
					
						
							|  |  |  | 			OUT_RING(CMD); | 
					
						
							|  |  |  | 			OUT_RING(BR13); | 
					
						
							|  |  |  | 			OUT_RING((pbox->y1 << 16) | pbox->x1); | 
					
						
							|  |  |  | 			OUT_RING((pbox->y2 << 16) | pbox->x2); | 
					
						
							|  |  |  | 			OUT_RING(dev_priv->front_offset); | 
					
						
							|  |  |  | 			OUT_RING(clear_color); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 			ADVANCE_LP_RING(); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 		if (flags & I830_BACK) { | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 			DRM_DEBUG("clear back\n"); | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 			BEGIN_LP_RING(6); | 
					
						
							|  |  |  | 			OUT_RING(CMD); | 
					
						
							|  |  |  | 			OUT_RING(BR13); | 
					
						
							|  |  |  | 			OUT_RING((pbox->y1 << 16) | pbox->x1); | 
					
						
							|  |  |  | 			OUT_RING((pbox->y2 << 16) | pbox->x2); | 
					
						
							|  |  |  | 			OUT_RING(dev_priv->back_offset); | 
					
						
							|  |  |  | 			OUT_RING(clear_color); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 			ADVANCE_LP_RING(); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 		if (flags & I830_DEPTH) { | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 			DRM_DEBUG("clear depth\n"); | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 			BEGIN_LP_RING(6); | 
					
						
							|  |  |  | 			OUT_RING(D_CMD); | 
					
						
							|  |  |  | 			OUT_RING(BR13); | 
					
						
							|  |  |  | 			OUT_RING((pbox->y1 << 16) | pbox->x1); | 
					
						
							|  |  |  | 			OUT_RING((pbox->y2 << 16) | pbox->x2); | 
					
						
							|  |  |  | 			OUT_RING(dev_priv->depth_offset); | 
					
						
							|  |  |  | 			OUT_RING(clear_zval); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 			ADVANCE_LP_RING(); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-07-11 16:09:54 +10:00
										 |  |  | static void i830_dma_dispatch_swap(struct drm_device * dev) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 	drm_i830_private_t *dev_priv = dev->dev_private; | 
					
						
							|  |  |  | 	drm_i830_sarea_t *sarea_priv = dev_priv->sarea_priv; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	int nbox = sarea_priv->nbox; | 
					
						
							| 
									
										
										
										
											2007-07-11 16:09:54 +10:00
										 |  |  | 	struct drm_clip_rect *pbox = sarea_priv->boxes; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	int pitch = dev_priv->pitch; | 
					
						
							|  |  |  | 	int cpp = dev_priv->cpp; | 
					
						
							|  |  |  | 	int i; | 
					
						
							|  |  |  | 	unsigned int CMD, BR13; | 
					
						
							|  |  |  | 	RING_LOCALS; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	DRM_DEBUG("swapbuffers\n"); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 	i830_kernel_lost_context(dev); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (dev_priv->do_boxes) | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 		i830_cp_performance_boxes(dev); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 	switch (cpp) { | 
					
						
							|  |  |  | 	case 2: | 
					
						
							|  |  |  | 		BR13 = (pitch * cpp) | (0xCC << 16) | (1 << 24); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		CMD = XY_SRC_COPY_BLT_CMD; | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	case 4: | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 		BR13 = (pitch * cpp) | (0xCC << 16) | (1 << 24) | (1 << 25); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		CMD = (XY_SRC_COPY_BLT_CMD | XY_SRC_COPY_BLT_WRITE_ALPHA | | 
					
						
							|  |  |  | 		       XY_SRC_COPY_BLT_WRITE_RGB); | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	default: | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 		BR13 = (pitch * cpp) | (0xCC << 16) | (1 << 24); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		CMD = XY_SRC_COPY_BLT_CMD; | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 	if (nbox > I830_NR_SAREA_CLIPRECTS) | 
					
						
							|  |  |  | 		nbox = I830_NR_SAREA_CLIPRECTS; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 	for (i = 0; i < nbox; i++, pbox++) { | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		if (pbox->x1 > pbox->x2 || | 
					
						
							|  |  |  | 		    pbox->y1 > pbox->y2 || | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 		    pbox->x2 > dev_priv->w || pbox->y2 > dev_priv->h) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 			continue; | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		DRM_DEBUG("dispatch swap %d,%d-%d,%d!\n", | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 			  pbox->x1, pbox->y1, pbox->x2, pbox->y2); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 		BEGIN_LP_RING(8); | 
					
						
							|  |  |  | 		OUT_RING(CMD); | 
					
						
							|  |  |  | 		OUT_RING(BR13); | 
					
						
							|  |  |  | 		OUT_RING((pbox->y1 << 16) | pbox->x1); | 
					
						
							|  |  |  | 		OUT_RING((pbox->y2 << 16) | pbox->x2); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 		if (dev_priv->current_page == 0) | 
					
						
							|  |  |  | 			OUT_RING(dev_priv->front_offset); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		else | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 			OUT_RING(dev_priv->back_offset); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 		OUT_RING((pbox->y1 << 16) | pbox->x1); | 
					
						
							|  |  |  | 		OUT_RING(BR13 & 0xffff); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 		if (dev_priv->current_page == 0) | 
					
						
							|  |  |  | 			OUT_RING(dev_priv->back_offset); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		else | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 			OUT_RING(dev_priv->front_offset); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		ADVANCE_LP_RING(); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-07-11 16:09:54 +10:00
										 |  |  | static void i830_dma_dispatch_flip(struct drm_device * dev) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 	drm_i830_private_t *dev_priv = dev->dev_private; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	RING_LOCALS; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 	DRM_DEBUG("%s: page=%d pfCurrentPage=%d\n", | 
					
						
							| 
									
										
										
										
											2008-04-30 00:55:10 -07:00
										 |  |  | 		  __func__, | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 		  dev_priv->current_page, | 
					
						
							|  |  |  | 		  dev_priv->sarea_priv->pf_current_page); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 	i830_kernel_lost_context(dev); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (dev_priv->do_boxes) { | 
					
						
							|  |  |  | 		dev_priv->sarea_priv->perf_boxes |= I830_BOX_FLIP; | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 		i830_cp_performance_boxes(dev); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 	BEGIN_LP_RING(2); | 
					
						
							|  |  |  | 	OUT_RING(INST_PARSER_CLIENT | INST_OP_FLUSH | INST_FLUSH_MAP_CACHE); | 
					
						
							|  |  |  | 	OUT_RING(0); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	ADVANCE_LP_RING(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 	BEGIN_LP_RING(6); | 
					
						
							|  |  |  | 	OUT_RING(CMD_OP_DISPLAYBUFFER_INFO | ASYNC_FLIP); | 
					
						
							|  |  |  | 	OUT_RING(0); | 
					
						
							|  |  |  | 	if (dev_priv->current_page == 0) { | 
					
						
							|  |  |  | 		OUT_RING(dev_priv->back_offset); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		dev_priv->current_page = 1; | 
					
						
							|  |  |  | 	} else { | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 		OUT_RING(dev_priv->front_offset); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		dev_priv->current_page = 0; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	OUT_RING(0); | 
					
						
							|  |  |  | 	ADVANCE_LP_RING(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 	BEGIN_LP_RING(2); | 
					
						
							|  |  |  | 	OUT_RING(MI_WAIT_FOR_EVENT | MI_WAIT_FOR_PLANE_A_FLIP); | 
					
						
							|  |  |  | 	OUT_RING(0); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	ADVANCE_LP_RING(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	dev_priv->sarea_priv->pf_current_page = dev_priv->current_page; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-07-11 16:09:54 +10:00
										 |  |  | static void i830_dma_dispatch_vertex(struct drm_device * dev, | 
					
						
							| 
									
										
										
										
											2007-07-11 16:17:42 +10:00
										 |  |  | 				     struct drm_buf * buf, int discard, int used) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 	drm_i830_private_t *dev_priv = dev->dev_private; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	drm_i830_buf_priv_t *buf_priv = buf->dev_private; | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 	drm_i830_sarea_t *sarea_priv = dev_priv->sarea_priv; | 
					
						
							| 
									
										
										
										
											2007-07-11 16:09:54 +10:00
										 |  |  | 	struct drm_clip_rect *box = sarea_priv->boxes; | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 	int nbox = sarea_priv->nbox; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	unsigned long address = (unsigned long)buf->bus_address; | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 	unsigned long start = address - dev->agp->base; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	int i = 0, u; | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 	RING_LOCALS; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 	i830_kernel_lost_context(dev); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 	if (nbox > I830_NR_SAREA_CLIPRECTS) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		nbox = I830_NR_SAREA_CLIPRECTS; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (discard) { | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 		u = cmpxchg(buf_priv->in_use, I830_BUF_CLIENT, | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 			    I830_BUF_HARDWARE); | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 		if (u != I830_BUF_CLIENT) { | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 			DRM_DEBUG("xxxx 2\n"); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 	if (used > 4 * 1023) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		used = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (sarea_priv->dirty) | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 		i830EmitState(dev); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 	DRM_DEBUG("dispatch vertex addr 0x%lx, used 0x%x nbox %d\n", | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		  address, used, nbox); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 	dev_priv->counter++; | 
					
						
							|  |  |  | 	DRM_DEBUG("dispatch counter : %ld\n", dev_priv->counter); | 
					
						
							|  |  |  | 	DRM_DEBUG("i830_dma_dispatch\n"); | 
					
						
							|  |  |  | 	DRM_DEBUG("start : %lx\n", start); | 
					
						
							|  |  |  | 	DRM_DEBUG("used : %d\n", used); | 
					
						
							|  |  |  | 	DRM_DEBUG("start + used - 4 : %ld\n", start + used - 4); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (buf_priv->currently_mapped == I830_BUF_MAPPED) { | 
					
						
							|  |  |  | 		u32 *vp = buf_priv->kernel_virtual; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		vp[0] = (GFX_OP_PRIMITIVE | | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 			 sarea_priv->vertex_prim | ((used / 4) - 2)); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		if (dev_priv->use_mi_batchbuffer_start) { | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 			vp[used / 4] = MI_BATCH_BUFFER_END; | 
					
						
							|  |  |  | 			used += 4; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		if (used & 4) { | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 			vp[used / 4] = 0; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 			used += 4; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		i830_unmap_buffer(buf); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	if (used) { | 
					
						
							|  |  |  | 		do { | 
					
						
							|  |  |  | 			if (i < nbox) { | 
					
						
							|  |  |  | 				BEGIN_LP_RING(6); | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 				OUT_RING(GFX_OP_DRAWRECT_INFO); | 
					
						
							|  |  |  | 				OUT_RING(sarea_priv-> | 
					
						
							|  |  |  | 					 BufferState[I830_DESTREG_DR1]); | 
					
						
							|  |  |  | 				OUT_RING(box[i].x1 | (box[i].y1 << 16)); | 
					
						
							|  |  |  | 				OUT_RING(box[i].x2 | (box[i].y2 << 16)); | 
					
						
							|  |  |  | 				OUT_RING(sarea_priv-> | 
					
						
							|  |  |  | 					 BufferState[I830_DESTREG_DR4]); | 
					
						
							|  |  |  | 				OUT_RING(0); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 				ADVANCE_LP_RING(); | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			if (dev_priv->use_mi_batchbuffer_start) { | 
					
						
							|  |  |  | 				BEGIN_LP_RING(2); | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 				OUT_RING(MI_BATCH_BUFFER_START | (2 << 6)); | 
					
						
							|  |  |  | 				OUT_RING(start | MI_BATCH_NON_SECURE); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 				ADVANCE_LP_RING(); | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 			} else { | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 				BEGIN_LP_RING(4); | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 				OUT_RING(MI_BATCH_BUFFER); | 
					
						
							|  |  |  | 				OUT_RING(start | MI_BATCH_NON_SECURE); | 
					
						
							|  |  |  | 				OUT_RING(start + used - 4); | 
					
						
							|  |  |  | 				OUT_RING(0); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 				ADVANCE_LP_RING(); | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		} while (++i < nbox); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (discard) { | 
					
						
							|  |  |  | 		dev_priv->counter++; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 		(void)cmpxchg(buf_priv->in_use, I830_BUF_CLIENT, | 
					
						
							|  |  |  | 			      I830_BUF_HARDWARE); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		BEGIN_LP_RING(8); | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 		OUT_RING(CMD_STORE_DWORD_IDX); | 
					
						
							|  |  |  | 		OUT_RING(20); | 
					
						
							|  |  |  | 		OUT_RING(dev_priv->counter); | 
					
						
							|  |  |  | 		OUT_RING(CMD_STORE_DWORD_IDX); | 
					
						
							|  |  |  | 		OUT_RING(buf_priv->my_use_idx); | 
					
						
							|  |  |  | 		OUT_RING(I830_BUF_FREE); | 
					
						
							|  |  |  | 		OUT_RING(CMD_REPORT_HEAD); | 
					
						
							|  |  |  | 		OUT_RING(0); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		ADVANCE_LP_RING(); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-07-11 16:09:54 +10:00
										 |  |  | static void i830_dma_quiescent(struct drm_device * dev) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 	drm_i830_private_t *dev_priv = dev->dev_private; | 
					
						
							|  |  |  | 	RING_LOCALS; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 	i830_kernel_lost_context(dev); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 	BEGIN_LP_RING(4); | 
					
						
							|  |  |  | 	OUT_RING(INST_PARSER_CLIENT | INST_OP_FLUSH | INST_FLUSH_MAP_CACHE); | 
					
						
							|  |  |  | 	OUT_RING(CMD_REPORT_HEAD); | 
					
						
							|  |  |  | 	OUT_RING(0); | 
					
						
							|  |  |  | 	OUT_RING(0); | 
					
						
							|  |  |  | 	ADVANCE_LP_RING(); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-04-30 00:55:10 -07:00
										 |  |  | 	i830_wait_ring(dev, dev_priv->ring.Size - 8, __func__); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-07-11 16:09:54 +10:00
										 |  |  | static int i830_flush_queue(struct drm_device * dev) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 	drm_i830_private_t *dev_priv = dev->dev_private; | 
					
						
							| 
									
										
										
										
											2007-07-11 16:32:08 +10:00
										 |  |  | 	struct drm_device_dma *dma = dev->dma; | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 	int i, ret = 0; | 
					
						
							|  |  |  | 	RING_LOCALS; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	i830_kernel_lost_context(dev); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	BEGIN_LP_RING(2); | 
					
						
							|  |  |  | 	OUT_RING(CMD_REPORT_HEAD); | 
					
						
							|  |  |  | 	OUT_RING(0); | 
					
						
							|  |  |  | 	ADVANCE_LP_RING(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-04-30 00:55:10 -07:00
										 |  |  | 	i830_wait_ring(dev, dev_priv->ring.Size - 8, __func__); | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	for (i = 0; i < dma->buf_count; i++) { | 
					
						
							| 
									
										
										
										
											2007-07-11 16:17:42 +10:00
										 |  |  | 		struct drm_buf *buf = dma->buflist[i]; | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 		drm_i830_buf_priv_t *buf_priv = buf->dev_private; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		int used = cmpxchg(buf_priv->in_use, I830_BUF_HARDWARE, | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 				   I830_BUF_FREE); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		if (used == I830_BUF_HARDWARE) | 
					
						
							|  |  |  | 			DRM_DEBUG("reclaimed from HARDWARE\n"); | 
					
						
							|  |  |  | 		if (used == I830_BUF_CLIENT) | 
					
						
							|  |  |  | 			DRM_DEBUG("still on client\n"); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 	return ret; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* Must be called with the lock held */ | 
					
						
							| 
									
										
										
										
											2007-08-25 20:23:09 +10:00
										 |  |  | static void i830_reclaim_buffers(struct drm_device * dev, struct drm_file *file_priv) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2007-07-11 16:32:08 +10:00
										 |  |  | 	struct drm_device_dma *dma = dev->dma; | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 	int i; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 	if (!dma) | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 	if (!dev->dev_private) | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 	if (!dma->buflist) | 
					
						
							|  |  |  | 		return; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 	i830_flush_queue(dev); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	for (i = 0; i < dma->buf_count; i++) { | 
					
						
							| 
									
										
										
										
											2007-07-11 16:17:42 +10:00
										 |  |  | 		struct drm_buf *buf = dma->buflist[i]; | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 		drm_i830_buf_priv_t *buf_priv = buf->dev_private; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-08-25 20:23:09 +10:00
										 |  |  | 		if (buf->file_priv == file_priv && buf_priv) { | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 			int used = cmpxchg(buf_priv->in_use, I830_BUF_CLIENT, | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 					   I830_BUF_FREE); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			if (used == I830_BUF_CLIENT) | 
					
						
							|  |  |  | 				DRM_DEBUG("reclaimed from client\n"); | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 			if (buf_priv->currently_mapped == I830_BUF_MAPPED) | 
					
						
							|  |  |  | 				buf_priv->currently_mapped = I830_BUF_UNMAPPED; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-09-03 12:06:45 +10:00
										 |  |  | static int i830_flush_ioctl(struct drm_device *dev, void *data, | 
					
						
							|  |  |  | 			    struct drm_file *file_priv) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2007-08-25 20:23:09 +10:00
										 |  |  | 	LOCK_TEST_WITH_RETURN(dev, file_priv); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 	i830_flush_queue(dev); | 
					
						
							|  |  |  | 	return 0; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-09-03 12:06:45 +10:00
										 |  |  | static int i830_dma_vertex(struct drm_device *dev, void *data, | 
					
						
							|  |  |  | 			   struct drm_file *file_priv) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2007-07-11 16:32:08 +10:00
										 |  |  | 	struct drm_device_dma *dma = dev->dma; | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 	drm_i830_private_t *dev_priv = (drm_i830_private_t *) dev->dev_private; | 
					
						
							|  |  |  | 	u32 *hw_status = dev_priv->hw_status_page; | 
					
						
							|  |  |  | 	drm_i830_sarea_t *sarea_priv = (drm_i830_sarea_t *) | 
					
						
							|  |  |  | 	    dev_priv->sarea_priv; | 
					
						
							| 
									
										
										
										
											2007-09-03 12:06:45 +10:00
										 |  |  | 	drm_i830_vertex_t *vertex = data; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-08-25 20:23:09 +10:00
										 |  |  | 	LOCK_TEST_WITH_RETURN(dev, file_priv); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	DRM_DEBUG("i830 dma vertex, idx %d used %d discard %d\n", | 
					
						
							| 
									
										
										
										
											2007-09-03 12:06:45 +10:00
										 |  |  | 		  vertex->idx, vertex->used, vertex->discard); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-09-03 12:06:45 +10:00
										 |  |  | 	if (vertex->idx < 0 || vertex->idx > dma->buf_count) | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 		return -EINVAL; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 	i830_dma_dispatch_vertex(dev, | 
					
						
							| 
									
										
										
										
											2007-09-03 12:06:45 +10:00
										 |  |  | 				 dma->buflist[vertex->idx], | 
					
						
							|  |  |  | 				 vertex->discard, vertex->used); | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	sarea_priv->last_enqueue = dev_priv->counter - 1; | 
					
						
							|  |  |  | 	sarea_priv->last_dispatch = (int)hw_status[5]; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-09-03 12:06:45 +10:00
										 |  |  | static int i830_clear_bufs(struct drm_device *dev, void *data, | 
					
						
							|  |  |  | 			   struct drm_file *file_priv) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2007-09-03 12:06:45 +10:00
										 |  |  | 	drm_i830_clear_t *clear = data; | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-08-25 20:23:09 +10:00
										 |  |  | 	LOCK_TEST_WITH_RETURN(dev, file_priv); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	/* GH: Someone's doing nasty things... */ | 
					
						
							|  |  |  | 	if (!dev->dev_private) { | 
					
						
							|  |  |  | 		return -EINVAL; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-09-03 12:06:45 +10:00
										 |  |  | 	i830_dma_dispatch_clear(dev, clear->flags, | 
					
						
							|  |  |  | 				clear->clear_color, | 
					
						
							|  |  |  | 				clear->clear_depth, clear->clear_depthmask); | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 	return 0; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-09-03 12:06:45 +10:00
										 |  |  | static int i830_swap_bufs(struct drm_device *dev, void *data, | 
					
						
							|  |  |  | 			  struct drm_file *file_priv) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | { | 
					
						
							|  |  |  | 	DRM_DEBUG("i830_swap_bufs\n"); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-08-25 20:23:09 +10:00
										 |  |  | 	LOCK_TEST_WITH_RETURN(dev, file_priv); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 	i830_dma_dispatch_swap(dev); | 
					
						
							|  |  |  | 	return 0; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* Not sure why this isn't set all the time:
 | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  |  */ | 
					
						
							| 
									
										
										
										
											2007-07-11 16:09:54 +10:00
										 |  |  | static void i830_do_init_pageflip(struct drm_device * dev) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | { | 
					
						
							|  |  |  | 	drm_i830_private_t *dev_priv = dev->dev_private; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-04-30 00:55:10 -07:00
										 |  |  | 	DRM_DEBUG("%s\n", __func__); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	dev_priv->page_flipping = 1; | 
					
						
							|  |  |  | 	dev_priv->current_page = 0; | 
					
						
							|  |  |  | 	dev_priv->sarea_priv->pf_current_page = dev_priv->current_page; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-07-11 16:09:54 +10:00
										 |  |  | static int i830_do_cleanup_pageflip(struct drm_device * dev) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | { | 
					
						
							|  |  |  | 	drm_i830_private_t *dev_priv = dev->dev_private; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-04-30 00:55:10 -07:00
										 |  |  | 	DRM_DEBUG("%s\n", __func__); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	if (dev_priv->current_page != 0) | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 		i830_dma_dispatch_flip(dev); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	dev_priv->page_flipping = 0; | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-09-03 12:06:45 +10:00
										 |  |  | static int i830_flip_bufs(struct drm_device *dev, void *data, | 
					
						
							|  |  |  | 			  struct drm_file *file_priv) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | { | 
					
						
							|  |  |  | 	drm_i830_private_t *dev_priv = dev->dev_private; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-04-30 00:55:10 -07:00
										 |  |  | 	DRM_DEBUG("%s\n", __func__); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-08-25 20:23:09 +10:00
										 |  |  | 	LOCK_TEST_WITH_RETURN(dev, file_priv); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 	if (!dev_priv->page_flipping) | 
					
						
							|  |  |  | 		i830_do_init_pageflip(dev); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 	i830_dma_dispatch_flip(dev); | 
					
						
							|  |  |  | 	return 0; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-09-03 12:06:45 +10:00
										 |  |  | static int i830_getage(struct drm_device *dev, void *data, | 
					
						
							|  |  |  | 		       struct drm_file *file_priv) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 	drm_i830_private_t *dev_priv = (drm_i830_private_t *) dev->dev_private; | 
					
						
							|  |  |  | 	u32 *hw_status = dev_priv->hw_status_page; | 
					
						
							|  |  |  | 	drm_i830_sarea_t *sarea_priv = (drm_i830_sarea_t *) | 
					
						
							|  |  |  | 	    dev_priv->sarea_priv; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	sarea_priv->last_dispatch = (int)hw_status[5]; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-09-03 12:06:45 +10:00
										 |  |  | static int i830_getbuf(struct drm_device *dev, void *data, | 
					
						
							|  |  |  | 		       struct drm_file *file_priv) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 	int retcode = 0; | 
					
						
							| 
									
										
										
										
											2007-09-03 12:06:45 +10:00
										 |  |  | 	drm_i830_dma_t *d = data; | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 	drm_i830_private_t *dev_priv = (drm_i830_private_t *) dev->dev_private; | 
					
						
							|  |  |  | 	u32 *hw_status = dev_priv->hw_status_page; | 
					
						
							|  |  |  | 	drm_i830_sarea_t *sarea_priv = (drm_i830_sarea_t *) | 
					
						
							|  |  |  | 	    dev_priv->sarea_priv; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	DRM_DEBUG("getbuf\n"); | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-08-25 20:23:09 +10:00
										 |  |  | 	LOCK_TEST_WITH_RETURN(dev, file_priv); | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-09-03 12:06:45 +10:00
										 |  |  | 	d->granted = 0; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-09-03 12:06:45 +10:00
										 |  |  | 	retcode = i830_dma_get_buffer(dev, d, file_priv); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	DRM_DEBUG("i830_dma: %d returning %d, granted = %d\n", | 
					
						
							| 
									
										
										
										
											2007-10-18 23:40:40 -07:00
										 |  |  | 		  task_pid_nr(current), retcode, d->granted); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 	sarea_priv->last_dispatch = (int)hw_status[5]; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	return retcode; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-09-03 12:06:45 +10:00
										 |  |  | static int i830_copybuf(struct drm_device *dev, void *data, | 
					
						
							|  |  |  | 			struct drm_file *file_priv) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | { | 
					
						
							|  |  |  | 	/* Never copy - 2.4.x doesn't need it */ | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-09-03 12:06:45 +10:00
										 |  |  | static int i830_docopy(struct drm_device *dev, void *data, | 
					
						
							|  |  |  | 		       struct drm_file *file_priv) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | { | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-09-03 12:06:45 +10:00
										 |  |  | static int i830_getparam(struct drm_device *dev, void *data, | 
					
						
							|  |  |  | 			 struct drm_file *file_priv) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | { | 
					
						
							|  |  |  | 	drm_i830_private_t *dev_priv = dev->dev_private; | 
					
						
							| 
									
										
										
										
											2007-09-03 12:06:45 +10:00
										 |  |  | 	drm_i830_getparam_t *param = data; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	int value; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 	if (!dev_priv) { | 
					
						
							| 
									
										
										
										
											2008-04-30 00:55:10 -07:00
										 |  |  | 		DRM_ERROR("%s called with no initialization\n", __func__); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		return -EINVAL; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-09-03 12:06:45 +10:00
										 |  |  | 	switch (param->param) { | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	case I830_PARAM_IRQ_ACTIVE: | 
					
						
							|  |  |  | 		value = dev->irq_enabled; | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	default: | 
					
						
							|  |  |  | 		return -EINVAL; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-09-03 12:06:45 +10:00
										 |  |  | 	if (copy_to_user(param->value, &value, sizeof(int))) { | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 		DRM_ERROR("copy_to_user\n"); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		return -EFAULT; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-09-03 12:06:45 +10:00
										 |  |  | static int i830_setparam(struct drm_device *dev, void *data, | 
					
						
							|  |  |  | 			 struct drm_file *file_priv) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | { | 
					
						
							|  |  |  | 	drm_i830_private_t *dev_priv = dev->dev_private; | 
					
						
							| 
									
										
										
										
											2007-09-03 12:06:45 +10:00
										 |  |  | 	drm_i830_setparam_t *param = data; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 	if (!dev_priv) { | 
					
						
							| 
									
										
										
										
											2008-04-30 00:55:10 -07:00
										 |  |  | 		DRM_ERROR("%s called with no initialization\n", __func__); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		return -EINVAL; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-09-03 12:06:45 +10:00
										 |  |  | 	switch (param->param) { | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	case I830_SETPARAM_USE_MI_BATCHBUFFER_START: | 
					
						
							| 
									
										
										
										
											2007-09-03 12:06:45 +10:00
										 |  |  | 		dev_priv->use_mi_batchbuffer_start = param->value; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		break; | 
					
						
							|  |  |  | 	default: | 
					
						
							|  |  |  | 		return -EINVAL; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-07-11 16:09:54 +10:00
										 |  |  | int i830_driver_load(struct drm_device *dev, unsigned long flags) | 
					
						
							| 
									
										
										
										
											2005-11-10 22:16:34 +11:00
										 |  |  | { | 
					
						
							|  |  |  | 	/* i830 has 4 more counters */ | 
					
						
							|  |  |  | 	dev->counters += 4; | 
					
						
							|  |  |  | 	dev->types[6] = _DRM_STAT_IRQ; | 
					
						
							|  |  |  | 	dev->types[7] = _DRM_STAT_PRIMARY; | 
					
						
							|  |  |  | 	dev->types[8] = _DRM_STAT_SECONDARY; | 
					
						
							|  |  |  | 	dev->types[9] = _DRM_STAT_DMA; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-07-11 16:09:54 +10:00
										 |  |  | void i830_driver_lastclose(struct drm_device * dev) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 	i830_dma_cleanup(dev); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-08-25 20:23:09 +10:00
										 |  |  | void i830_driver_preclose(struct drm_device * dev, struct drm_file *file_priv) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | { | 
					
						
							|  |  |  | 	if (dev->dev_private) { | 
					
						
							|  |  |  | 		drm_i830_private_t *dev_priv = dev->dev_private; | 
					
						
							|  |  |  | 		if (dev_priv->page_flipping) { | 
					
						
							|  |  |  | 			i830_do_cleanup_pageflip(dev); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-08-25 20:23:09 +10:00
										 |  |  | void i830_driver_reclaim_buffers_locked(struct drm_device * dev, struct drm_file *file_priv) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2007-08-25 20:23:09 +10:00
										 |  |  | 	i830_reclaim_buffers(dev, file_priv); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-07-11 16:09:54 +10:00
										 |  |  | int i830_driver_dma_quiescent(struct drm_device * dev) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2005-09-25 14:28:13 +10:00
										 |  |  | 	i830_dma_quiescent(dev); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-09-03 12:06:45 +10:00
										 |  |  | struct drm_ioctl_desc i830_ioctls[] = { | 
					
						
							|  |  |  | 	DRM_IOCTL_DEF(DRM_I830_INIT, i830_dma_init, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY), | 
					
						
							|  |  |  | 	DRM_IOCTL_DEF(DRM_I830_VERTEX, i830_dma_vertex, DRM_AUTH), | 
					
						
							|  |  |  | 	DRM_IOCTL_DEF(DRM_I830_CLEAR, i830_clear_bufs, DRM_AUTH), | 
					
						
							|  |  |  | 	DRM_IOCTL_DEF(DRM_I830_FLUSH, i830_flush_ioctl, DRM_AUTH), | 
					
						
							|  |  |  | 	DRM_IOCTL_DEF(DRM_I830_GETAGE, i830_getage, DRM_AUTH), | 
					
						
							|  |  |  | 	DRM_IOCTL_DEF(DRM_I830_GETBUF, i830_getbuf, DRM_AUTH), | 
					
						
							|  |  |  | 	DRM_IOCTL_DEF(DRM_I830_SWAP, i830_swap_bufs, DRM_AUTH), | 
					
						
							|  |  |  | 	DRM_IOCTL_DEF(DRM_I830_COPY, i830_copybuf, DRM_AUTH), | 
					
						
							|  |  |  | 	DRM_IOCTL_DEF(DRM_I830_DOCOPY, i830_docopy, DRM_AUTH), | 
					
						
							|  |  |  | 	DRM_IOCTL_DEF(DRM_I830_FLIP, i830_flip_bufs, DRM_AUTH), | 
					
						
							|  |  |  | 	DRM_IOCTL_DEF(DRM_I830_IRQ_EMIT, i830_irq_emit, DRM_AUTH), | 
					
						
							|  |  |  | 	DRM_IOCTL_DEF(DRM_I830_IRQ_WAIT, i830_irq_wait, DRM_AUTH), | 
					
						
							|  |  |  | 	DRM_IOCTL_DEF(DRM_I830_GETPARAM, i830_getparam, DRM_AUTH), | 
					
						
							|  |  |  | 	DRM_IOCTL_DEF(DRM_I830_SETPARAM, i830_setparam, DRM_AUTH) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | int i830_max_ioctl = DRM_ARRAY_SIZE(i830_ioctls); | 
					
						
							| 
									
										
										
										
											2005-07-10 17:31:26 +10:00
										 |  |  | 
 | 
					
						
							|  |  |  | /**
 | 
					
						
							|  |  |  |  * Determine if the device really is AGP or not. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * All Intel graphics chipsets are treated as AGP, even if they are really | 
					
						
							|  |  |  |  * PCI-e. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * \param dev   The device to be tested. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * \returns | 
					
						
							|  |  |  |  * A value of 1 is always retured to indictate every i8xx is AGP. | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2007-07-11 16:09:54 +10:00
										 |  |  | int i830_driver_device_is_agp(struct drm_device * dev) | 
					
						
							| 
									
										
										
										
											2005-07-10 17:31:26 +10:00
										 |  |  | { | 
					
						
							|  |  |  | 	return 1; | 
					
						
							|  |  |  | } |