blob: e1107ecb16e39747f623fbdc72b8d915f314675f [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/* i830_dma.c -- DMA support for the I830 -*- linux-c -*-
2 * Created: Mon Dec 13 01:50:01 1999 by jhartmann@precisioninsight.com
3 *
4 * Copyright 1999 Precision Insight, Inc., Cedar Park, Texas.
5 * Copyright 2000 VA Linux Systems, Inc., Sunnyvale, California.
6 * All Rights Reserved.
7 *
8 * Permission is hereby granted, free of charge, to any person obtaining a
9 * copy of this software and associated documentation files (the "Software"),
10 * to deal in the Software without restriction, including without limitation
11 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
12 * and/or sell copies of the Software, and to permit persons to whom the
13 * Software is furnished to do so, subject to the following conditions:
Dave Airlieb5e89ed2005-09-25 14:28:13 +100014 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070015 * The above copyright notice and this permission notice (including the next
16 * paragraph) shall be included in all copies or substantial portions of the
17 * Software.
Dave Airlieb5e89ed2005-09-25 14:28:13 +100018 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070019 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
20 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
21 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
22 * PRECISION INSIGHT AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
23 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
24 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
25 * DEALINGS IN THE SOFTWARE.
26 *
27 * Authors: Rickard E. (Rik) Faith <faith@valinux.com>
28 * Jeff Hartmann <jhartmann@valinux.com>
29 * Keith Whitwell <keith@tungstengraphics.com>
30 * Abraham vd Merwe <abraham@2d3d.co.za>
31 *
32 */
33
34#include "drmP.h"
35#include "drm.h"
36#include "i830_drm.h"
37#include "i830_drv.h"
38#include <linux/interrupt.h> /* For task queue support */
39#include <linux/pagemap.h> /* For FASTCALL on unlock_page() */
40#include <linux/delay.h>
41#include <asm/uaccess.h>
42
43#define I830_BUF_FREE 2
44#define I830_BUF_CLIENT 1
45#define I830_BUF_HARDWARE 0
46
47#define I830_BUF_UNMAPPED 0
48#define I830_BUF_MAPPED 1
49
Dave Airlieb5e89ed2005-09-25 14:28:13 +100050static drm_buf_t *i830_freelist_get(drm_device_t * dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -070051{
Dave Airlieb5e89ed2005-09-25 14:28:13 +100052 drm_device_dma_t *dma = dev->dma;
53 int i;
54 int used;
55
Linus Torvalds1da177e2005-04-16 15:20:36 -070056 /* Linear search might not be the best solution */
57
Dave Airlieb5e89ed2005-09-25 14:28:13 +100058 for (i = 0; i < dma->buf_count; i++) {
59 drm_buf_t *buf = dma->buflist[i];
60 drm_i830_buf_priv_t *buf_priv = buf->dev_private;
Linus Torvalds1da177e2005-04-16 15:20:36 -070061 /* In use is already a pointer */
Dave Airlieb5e89ed2005-09-25 14:28:13 +100062 used = cmpxchg(buf_priv->in_use, I830_BUF_FREE,
Linus Torvalds1da177e2005-04-16 15:20:36 -070063 I830_BUF_CLIENT);
Dave Airlieb5e89ed2005-09-25 14:28:13 +100064 if (used == I830_BUF_FREE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070065 return buf;
66 }
67 }
Dave Airlieb5e89ed2005-09-25 14:28:13 +100068 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070069}
70
71/* This should only be called if the buffer is not sent to the hardware
72 * yet, the hardware updates in use for us once its on the ring buffer.
73 */
74
Dave Airlieb5e89ed2005-09-25 14:28:13 +100075static int i830_freelist_put(drm_device_t * dev, drm_buf_t * buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -070076{
Dave Airlieb5e89ed2005-09-25 14:28:13 +100077 drm_i830_buf_priv_t *buf_priv = buf->dev_private;
78 int used;
79
80 /* In use is already a pointer */
81 used = cmpxchg(buf_priv->in_use, I830_BUF_CLIENT, I830_BUF_FREE);
82 if (used != I830_BUF_CLIENT) {
83 DRM_ERROR("Freeing buffer thats not in use : %d\n", buf->idx);
84 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070085 }
Dave Airlieb5e89ed2005-09-25 14:28:13 +100086
87 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070088}
89
Dave Airliec94f7022005-07-07 21:03:38 +100090static int i830_mmap_buffers(struct file *filp, struct vm_area_struct *vma)
Linus Torvalds1da177e2005-04-16 15:20:36 -070091{
Dave Airlieb5e89ed2005-09-25 14:28:13 +100092 drm_file_t *priv = filp->private_data;
93 drm_device_t *dev;
94 drm_i830_private_t *dev_priv;
95 drm_buf_t *buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -070096 drm_i830_buf_priv_t *buf_priv;
97
98 lock_kernel();
Dave Airlieb5e89ed2005-09-25 14:28:13 +100099 dev = priv->head->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100 dev_priv = dev->dev_private;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000101 buf = dev_priv->mmap_buffer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 buf_priv = buf->dev_private;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000103
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 vma->vm_flags |= (VM_IO | VM_DONTCOPY);
105 vma->vm_file = filp;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000106
107 buf_priv->currently_mapped = I830_BUF_MAPPED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108 unlock_kernel();
109
110 if (io_remap_pfn_range(vma, vma->vm_start,
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000111 VM_OFFSET(vma) >> PAGE_SHIFT,
112 vma->vm_end - vma->vm_start, vma->vm_page_prot))
113 return -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 return 0;
115}
116
Dave Airliec94f7022005-07-07 21:03:38 +1000117static struct file_operations i830_buffer_fops = {
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000118 .open = drm_open,
119 .flush = drm_flush,
Dave Airliec94f7022005-07-07 21:03:38 +1000120 .release = drm_release,
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000121 .ioctl = drm_ioctl,
122 .mmap = i830_mmap_buffers,
123 .fasync = drm_fasync,
Dave Airliec94f7022005-07-07 21:03:38 +1000124};
125
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000126static int i830_map_buffer(drm_buf_t * buf, struct file *filp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127{
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000128 drm_file_t *priv = filp->private_data;
129 drm_device_t *dev = priv->head->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 drm_i830_buf_priv_t *buf_priv = buf->dev_private;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000131 drm_i830_private_t *dev_priv = dev->dev_private;
132 struct file_operations *old_fops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 unsigned long virtual;
134 int retcode = 0;
135
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000136 if (buf_priv->currently_mapped == I830_BUF_MAPPED)
137 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000139 down_write(&current->mm->mmap_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 old_fops = filp->f_op;
141 filp->f_op = &i830_buffer_fops;
142 dev_priv->mmap_buffer = buf;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000143 virtual = do_mmap(filp, 0, buf->total, PROT_READ | PROT_WRITE,
144 MAP_SHARED, buf->bus_address);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 dev_priv->mmap_buffer = NULL;
146 filp->f_op = old_fops;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000147 if (IS_ERR((void *)virtual)) { /* ugh */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 /* Real error */
149 DRM_ERROR("mmap error\n");
150 retcode = virtual;
151 buf_priv->virtual = NULL;
152 } else {
153 buf_priv->virtual = (void __user *)virtual;
154 }
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000155 up_write(&current->mm->mmap_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156
157 return retcode;
158}
159
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000160static int i830_unmap_buffer(drm_buf_t * buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161{
162 drm_i830_buf_priv_t *buf_priv = buf->dev_private;
163 int retcode = 0;
164
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000165 if (buf_priv->currently_mapped != I830_BUF_MAPPED)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 return -EINVAL;
167
168 down_write(&current->mm->mmap_sem);
169 retcode = do_munmap(current->mm,
170 (unsigned long)buf_priv->virtual,
171 (size_t) buf->total);
172 up_write(&current->mm->mmap_sem);
173
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000174 buf_priv->currently_mapped = I830_BUF_UNMAPPED;
175 buf_priv->virtual = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176
177 return retcode;
178}
179
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000180static int i830_dma_get_buffer(drm_device_t * dev, drm_i830_dma_t * d,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 struct file *filp)
182{
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000183 drm_buf_t *buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 drm_i830_buf_priv_t *buf_priv;
185 int retcode = 0;
186
187 buf = i830_freelist_get(dev);
188 if (!buf) {
189 retcode = -ENOMEM;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000190 DRM_DEBUG("retcode=%d\n", retcode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 return retcode;
192 }
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000193
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 retcode = i830_map_buffer(buf, filp);
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000195 if (retcode) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 i830_freelist_put(dev, buf);
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000197 DRM_ERROR("mapbuf failed, retcode %d\n", retcode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 return retcode;
199 }
200 buf->filp = filp;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000201 buf_priv = buf->dev_private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 d->granted = 1;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000203 d->request_idx = buf->idx;
204 d->request_size = buf->total;
205 d->virtual = buf_priv->virtual;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206
207 return retcode;
208}
209
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000210static int i830_dma_cleanup(drm_device_t * dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211{
212 drm_device_dma_t *dma = dev->dma;
213
214 /* Make sure interrupts are disabled here because the uninstall ioctl
215 * may not have been called from userspace and after dev_private
216 * is freed, it's too late.
217 */
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000218 if (dev->irq_enabled)
219 drm_irq_uninstall(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220
221 if (dev->dev_private) {
222 int i;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000223 drm_i830_private_t *dev_priv =
224 (drm_i830_private_t *) dev->dev_private;
225
226 if (dev_priv->ring.virtual_start) {
227 drm_ioremapfree((void *)dev_priv->ring.virtual_start,
228 dev_priv->ring.Size, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 }
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000230 if (dev_priv->hw_status_page) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 pci_free_consistent(dev->pdev, PAGE_SIZE,
232 dev_priv->hw_status_page,
233 dev_priv->dma_status_page);
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000234 /* Need to rewrite hardware status page */
235 I830_WRITE(0x02080, 0x1ffff000);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 }
237
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000238 drm_free(dev->dev_private, sizeof(drm_i830_private_t),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 DRM_MEM_DRIVER);
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000240 dev->dev_private = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241
242 for (i = 0; i < dma->buf_count; i++) {
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000243 drm_buf_t *buf = dma->buflist[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 drm_i830_buf_priv_t *buf_priv = buf->dev_private;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000245 if (buf_priv->kernel_virtual && buf->total)
246 drm_ioremapfree(buf_priv->kernel_virtual,
247 buf->total, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 }
249 }
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000250 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251}
252
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000253int i830_wait_ring(drm_device_t * dev, int n, const char *caller)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254{
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000255 drm_i830_private_t *dev_priv = dev->dev_private;
256 drm_i830_ring_buffer_t *ring = &(dev_priv->ring);
257 int iters = 0;
258 unsigned long end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 unsigned int last_head = I830_READ(LP_RING + RING_HEAD) & HEAD_ADDR;
260
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000261 end = jiffies + (HZ * 3);
262 while (ring->space < n) {
263 ring->head = I830_READ(LP_RING + RING_HEAD) & HEAD_ADDR;
264 ring->space = ring->head - (ring->tail + 8);
265 if (ring->space < 0)
266 ring->space += ring->Size;
267
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 if (ring->head != last_head) {
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000269 end = jiffies + (HZ * 3);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 last_head = ring->head;
271 }
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000272
273 iters++;
274 if (time_before(end, jiffies)) {
275 DRM_ERROR("space: %d wanted %d\n", ring->space, n);
276 DRM_ERROR("lockup\n");
277 goto out_wait_ring;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 }
279 udelay(1);
280 dev_priv->sarea_priv->perf_boxes |= I830_BOX_WAIT;
281 }
282
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000283 out_wait_ring:
284 return iters;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285}
286
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000287static void i830_kernel_lost_context(drm_device_t * dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288{
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000289 drm_i830_private_t *dev_priv = dev->dev_private;
290 drm_i830_ring_buffer_t *ring = &(dev_priv->ring);
291
292 ring->head = I830_READ(LP_RING + RING_HEAD) & HEAD_ADDR;
293 ring->tail = I830_READ(LP_RING + RING_TAIL) & TAIL_ADDR;
294 ring->space = ring->head - (ring->tail + 8);
295 if (ring->space < 0)
296 ring->space += ring->Size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297
298 if (ring->head == ring->tail)
299 dev_priv->sarea_priv->perf_boxes |= I830_BOX_RING_EMPTY;
300}
301
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000302static int i830_freelist_init(drm_device_t * dev, drm_i830_private_t * dev_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303{
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000304 drm_device_dma_t *dma = dev->dma;
305 int my_idx = 36;
306 u32 *hw_status = (u32 *) (dev_priv->hw_status_page + my_idx);
307 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000309 if (dma->buf_count > 1019) {
310 /* Not enough space in the status page for the freelist */
311 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 }
313
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000314 for (i = 0; i < dma->buf_count; i++) {
315 drm_buf_t *buf = dma->buflist[i];
316 drm_i830_buf_priv_t *buf_priv = buf->dev_private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000318 buf_priv->in_use = hw_status++;
319 buf_priv->my_use_idx = my_idx;
320 my_idx += 4;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000322 *buf_priv->in_use = I830_BUF_FREE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000324 buf_priv->kernel_virtual = drm_ioremap(buf->bus_address,
325 buf->total, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 }
327 return 0;
328}
329
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000330static int i830_dma_initialize(drm_device_t * dev,
331 drm_i830_private_t * dev_priv,
332 drm_i830_init_t * init)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333{
334 struct list_head *list;
335
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000336 memset(dev_priv, 0, sizeof(drm_i830_private_t));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337
338 list_for_each(list, &dev->maplist->head) {
339 drm_map_list_t *r_list = list_entry(list, drm_map_list_t, head);
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000340 if (r_list->map &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 r_list->map->type == _DRM_SHM &&
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000342 r_list->map->flags & _DRM_CONTAINS_LOCK) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 dev_priv->sarea_map = r_list->map;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000344 break;
345 }
346 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000348 if (!dev_priv->sarea_map) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 dev->dev_private = (void *)dev_priv;
350 i830_dma_cleanup(dev);
351 DRM_ERROR("can not find sarea!\n");
352 return -EINVAL;
353 }
354 dev_priv->mmio_map = drm_core_findmap(dev, init->mmio_offset);
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000355 if (!dev_priv->mmio_map) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356 dev->dev_private = (void *)dev_priv;
357 i830_dma_cleanup(dev);
358 DRM_ERROR("can not find mmio map!\n");
359 return -EINVAL;
360 }
Dave Airlied1f2b552005-08-05 22:11:22 +1000361 dev->agp_buffer_token = init->buffers_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362 dev->agp_buffer_map = drm_core_findmap(dev, init->buffers_offset);
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000363 if (!dev->agp_buffer_map) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 dev->dev_private = (void *)dev_priv;
365 i830_dma_cleanup(dev);
366 DRM_ERROR("can not find dma buffer map!\n");
367 return -EINVAL;
368 }
369
370 dev_priv->sarea_priv = (drm_i830_sarea_t *)
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000371 ((u8 *) dev_priv->sarea_map->handle + init->sarea_priv_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000373 dev_priv->ring.Start = init->ring_start;
374 dev_priv->ring.End = init->ring_end;
375 dev_priv->ring.Size = init->ring_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000377 dev_priv->ring.virtual_start = drm_ioremap(dev->agp->base +
378 init->ring_start,
379 init->ring_size, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000381 if (dev_priv->ring.virtual_start == NULL) {
382 dev->dev_private = (void *)dev_priv;
383 i830_dma_cleanup(dev);
384 DRM_ERROR("can not ioremap virtual address for"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 " ring buffer\n");
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000386 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 }
388
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000389 dev_priv->ring.tail_mask = dev_priv->ring.Size - 1;
390
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 dev_priv->w = init->w;
392 dev_priv->h = init->h;
393 dev_priv->pitch = init->pitch;
394 dev_priv->back_offset = init->back_offset;
395 dev_priv->depth_offset = init->depth_offset;
396 dev_priv->front_offset = init->front_offset;
397
398 dev_priv->front_di1 = init->front_offset | init->pitch_bits;
399 dev_priv->back_di1 = init->back_offset | init->pitch_bits;
400 dev_priv->zi1 = init->depth_offset | init->pitch_bits;
401
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000402 DRM_DEBUG("front_di1 %x\n", dev_priv->front_di1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 DRM_DEBUG("back_offset %x\n", dev_priv->back_offset);
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000404 DRM_DEBUG("back_di1 %x\n", dev_priv->back_di1);
405 DRM_DEBUG("pitch_bits %x\n", init->pitch_bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406
407 dev_priv->cpp = init->cpp;
408 /* We are using separate values as placeholders for mechanisms for
409 * private backbuffer/depthbuffer usage.
410 */
411
412 dev_priv->back_pitch = init->back_pitch;
413 dev_priv->depth_pitch = init->depth_pitch;
414 dev_priv->do_boxes = 0;
415 dev_priv->use_mi_batchbuffer_start = 0;
416
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000417 /* Program Hardware Status Page */
418 dev_priv->hw_status_page =
419 pci_alloc_consistent(dev->pdev, PAGE_SIZE,
420 &dev_priv->dma_status_page);
421 if (!dev_priv->hw_status_page) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 dev->dev_private = (void *)dev_priv;
423 i830_dma_cleanup(dev);
424 DRM_ERROR("Can not allocate hardware status page\n");
425 return -ENOMEM;
426 }
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000427 memset(dev_priv->hw_status_page, 0, PAGE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 DRM_DEBUG("hw status page @ %p\n", dev_priv->hw_status_page);
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000429
430 I830_WRITE(0x02080, dev_priv->dma_status_page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 DRM_DEBUG("Enabled hardware status page\n");
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000432
433 /* Now we need to init our freelist */
434 if (i830_freelist_init(dev, dev_priv) != 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 dev->dev_private = (void *)dev_priv;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000436 i830_dma_cleanup(dev);
437 DRM_ERROR("Not enough space in the status page for"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 " the freelist\n");
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000439 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 }
441 dev->dev_private = (void *)dev_priv;
442
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000443 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444}
445
446static int i830_dma_init(struct inode *inode, struct file *filp,
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000447 unsigned int cmd, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448{
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000449 drm_file_t *priv = filp->private_data;
450 drm_device_t *dev = priv->head->dev;
451 drm_i830_private_t *dev_priv;
452 drm_i830_init_t init;
453 int retcode = 0;
454
455 if (copy_from_user(&init, (void *__user)arg, sizeof(init)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 return -EFAULT;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000457
458 switch (init.func) {
459 case I830_INIT_DMA:
460 dev_priv = drm_alloc(sizeof(drm_i830_private_t),
461 DRM_MEM_DRIVER);
462 if (dev_priv == NULL)
463 return -ENOMEM;
464 retcode = i830_dma_initialize(dev, dev_priv, &init);
465 break;
466 case I830_CLEANUP_DMA:
467 retcode = i830_dma_cleanup(dev);
468 break;
469 default:
470 retcode = -EINVAL;
471 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 }
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000473
474 return retcode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475}
476
477#define GFX_OP_STIPPLE ((0x3<<29)|(0x1d<<24)|(0x83<<16))
478#define ST1_ENABLE (1<<16)
479#define ST1_MASK (0xffff)
480
481/* Most efficient way to verify state for the i830 is as it is
482 * emitted. Non-conformant state is silently dropped.
483 */
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000484static void i830EmitContextVerified(drm_device_t * dev, unsigned int *code)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485{
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000486 drm_i830_private_t *dev_priv = dev->dev_private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 int i, j = 0;
488 unsigned int tmp;
489 RING_LOCALS;
490
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000491 BEGIN_LP_RING(I830_CTX_SETUP_SIZE + 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000493 for (i = 0; i < I830_CTXREG_BLENDCOLR0; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 tmp = code[i];
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000495 if ((tmp & (7 << 29)) == CMD_3D &&
496 (tmp & (0x1f << 24)) < (0x1d << 24)) {
497 OUT_RING(tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 j++;
499 } else {
500 DRM_ERROR("Skipping %d\n", i);
501 }
502 }
503
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000504 OUT_RING(STATE3D_CONST_BLEND_COLOR_CMD);
505 OUT_RING(code[I830_CTXREG_BLENDCOLR]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 j += 2;
507
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000508 for (i = I830_CTXREG_VF; i < I830_CTXREG_MCSB0; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 tmp = code[i];
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000510 if ((tmp & (7 << 29)) == CMD_3D &&
511 (tmp & (0x1f << 24)) < (0x1d << 24)) {
512 OUT_RING(tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513 j++;
514 } else {
515 DRM_ERROR("Skipping %d\n", i);
516 }
517 }
518
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000519 OUT_RING(STATE3D_MAP_COORD_SETBIND_CMD);
520 OUT_RING(code[I830_CTXREG_MCSB1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 j += 2;
522
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000523 if (j & 1)
524 OUT_RING(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525
526 ADVANCE_LP_RING();
527}
528
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000529static void i830EmitTexVerified(drm_device_t * dev, unsigned int *code)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530{
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000531 drm_i830_private_t *dev_priv = dev->dev_private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 int i, j = 0;
533 unsigned int tmp;
534 RING_LOCALS;
535
536 if (code[I830_TEXREG_MI0] == GFX_OP_MAP_INFO ||
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000537 (code[I830_TEXREG_MI0] & ~(0xf * LOAD_TEXTURE_MAP0)) ==
538 (STATE3D_LOAD_STATE_IMMEDIATE_2 | 4)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000540 BEGIN_LP_RING(I830_TEX_SETUP_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000542 OUT_RING(code[I830_TEXREG_MI0]); /* TM0LI */
543 OUT_RING(code[I830_TEXREG_MI1]); /* TM0S0 */
544 OUT_RING(code[I830_TEXREG_MI2]); /* TM0S1 */
545 OUT_RING(code[I830_TEXREG_MI3]); /* TM0S2 */
546 OUT_RING(code[I830_TEXREG_MI4]); /* TM0S3 */
547 OUT_RING(code[I830_TEXREG_MI5]); /* TM0S4 */
548
549 for (i = 6; i < I830_TEX_SETUP_SIZE; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 tmp = code[i];
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000551 OUT_RING(tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 j++;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000553 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000555 if (j & 1)
556 OUT_RING(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557
558 ADVANCE_LP_RING();
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000559 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560 printk("rejected packet %x\n", code[0]);
561}
562
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000563static void i830EmitTexBlendVerified(drm_device_t * dev,
564 unsigned int *code, unsigned int num)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565{
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000566 drm_i830_private_t *dev_priv = dev->dev_private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567 int i, j = 0;
568 unsigned int tmp;
569 RING_LOCALS;
570
571 if (!num)
572 return;
573
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000574 BEGIN_LP_RING(num + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000576 for (i = 0; i < num; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 tmp = code[i];
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000578 OUT_RING(tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 j++;
580 }
581
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000582 if (j & 1)
583 OUT_RING(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584
585 ADVANCE_LP_RING();
586}
587
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000588static void i830EmitTexPalette(drm_device_t * dev,
589 unsigned int *palette, int number, int is_shared)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590{
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000591 drm_i830_private_t *dev_priv = dev->dev_private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 int i;
593 RING_LOCALS;
594
595 return;
596
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000597 BEGIN_LP_RING(258);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000599 if (is_shared == 1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 OUT_RING(CMD_OP_MAP_PALETTE_LOAD |
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000601 MAP_PALETTE_NUM(0) | MAP_PALETTE_BOTH);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 } else {
603 OUT_RING(CMD_OP_MAP_PALETTE_LOAD | MAP_PALETTE_NUM(number));
604 }
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000605 for (i = 0; i < 256; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 OUT_RING(palette[i]);
607 }
608 OUT_RING(0);
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000609 /* KW: WHERE IS THE ADVANCE_LP_RING? This is effectively a noop!
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610 */
611}
612
613/* Need to do some additional checking when setting the dest buffer.
614 */
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000615static void i830EmitDestVerified(drm_device_t * dev, unsigned int *code)
616{
617 drm_i830_private_t *dev_priv = dev->dev_private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618 unsigned int tmp;
619 RING_LOCALS;
620
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000621 BEGIN_LP_RING(I830_DEST_SETUP_SIZE + 10);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622
623 tmp = code[I830_DESTREG_CBUFADDR];
624 if (tmp == dev_priv->front_di1 || tmp == dev_priv->back_di1) {
625 if (((int)outring) & 8) {
626 OUT_RING(0);
627 OUT_RING(0);
628 }
629
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000630 OUT_RING(CMD_OP_DESTBUFFER_INFO);
631 OUT_RING(BUF_3D_ID_COLOR_BACK |
632 BUF_3D_PITCH(dev_priv->back_pitch * dev_priv->cpp) |
633 BUF_3D_USE_FENCE);
634 OUT_RING(tmp);
635 OUT_RING(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000637 OUT_RING(CMD_OP_DESTBUFFER_INFO);
638 OUT_RING(BUF_3D_ID_DEPTH | BUF_3D_USE_FENCE |
639 BUF_3D_PITCH(dev_priv->depth_pitch * dev_priv->cpp));
640 OUT_RING(dev_priv->zi1);
641 OUT_RING(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 } else {
643 DRM_ERROR("bad di1 %x (allow %x or %x)\n",
644 tmp, dev_priv->front_di1, dev_priv->back_di1);
645 }
646
647 /* invarient:
648 */
649
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000650 OUT_RING(GFX_OP_DESTBUFFER_VARS);
651 OUT_RING(code[I830_DESTREG_DV1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000653 OUT_RING(GFX_OP_DRAWRECT_INFO);
654 OUT_RING(code[I830_DESTREG_DR1]);
655 OUT_RING(code[I830_DESTREG_DR2]);
656 OUT_RING(code[I830_DESTREG_DR3]);
657 OUT_RING(code[I830_DESTREG_DR4]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658
659 /* Need to verify this */
660 tmp = code[I830_DESTREG_SENABLE];
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000661 if ((tmp & ~0x3) == GFX_OP_SCISSOR_ENABLE) {
662 OUT_RING(tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 } else {
664 DRM_ERROR("bad scissor enable\n");
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000665 OUT_RING(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666 }
667
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000668 OUT_RING(GFX_OP_SCISSOR_RECT);
669 OUT_RING(code[I830_DESTREG_SR1]);
670 OUT_RING(code[I830_DESTREG_SR2]);
671 OUT_RING(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672
673 ADVANCE_LP_RING();
674}
675
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000676static void i830EmitStippleVerified(drm_device_t * dev, unsigned int *code)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677{
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000678 drm_i830_private_t *dev_priv = dev->dev_private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679 RING_LOCALS;
680
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000681 BEGIN_LP_RING(2);
682 OUT_RING(GFX_OP_STIPPLE);
683 OUT_RING(code[1]);
684 ADVANCE_LP_RING();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685}
686
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000687static void i830EmitState(drm_device_t * dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688{
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000689 drm_i830_private_t *dev_priv = dev->dev_private;
690 drm_i830_sarea_t *sarea_priv = dev_priv->sarea_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691 unsigned int dirty = sarea_priv->dirty;
692
693 DRM_DEBUG("%s %x\n", __FUNCTION__, dirty);
694
695 if (dirty & I830_UPLOAD_BUFFERS) {
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000696 i830EmitDestVerified(dev, sarea_priv->BufferState);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697 sarea_priv->dirty &= ~I830_UPLOAD_BUFFERS;
698 }
699
700 if (dirty & I830_UPLOAD_CTX) {
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000701 i830EmitContextVerified(dev, sarea_priv->ContextState);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702 sarea_priv->dirty &= ~I830_UPLOAD_CTX;
703 }
704
705 if (dirty & I830_UPLOAD_TEX0) {
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000706 i830EmitTexVerified(dev, sarea_priv->TexState[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707 sarea_priv->dirty &= ~I830_UPLOAD_TEX0;
708 }
709
710 if (dirty & I830_UPLOAD_TEX1) {
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000711 i830EmitTexVerified(dev, sarea_priv->TexState[1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712 sarea_priv->dirty &= ~I830_UPLOAD_TEX1;
713 }
714
715 if (dirty & I830_UPLOAD_TEXBLEND0) {
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000716 i830EmitTexBlendVerified(dev, sarea_priv->TexBlendState[0],
717 sarea_priv->TexBlendStateWordsUsed[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718 sarea_priv->dirty &= ~I830_UPLOAD_TEXBLEND0;
719 }
720
721 if (dirty & I830_UPLOAD_TEXBLEND1) {
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000722 i830EmitTexBlendVerified(dev, sarea_priv->TexBlendState[1],
723 sarea_priv->TexBlendStateWordsUsed[1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724 sarea_priv->dirty &= ~I830_UPLOAD_TEXBLEND1;
725 }
726
727 if (dirty & I830_UPLOAD_TEX_PALETTE_SHARED) {
728 i830EmitTexPalette(dev, sarea_priv->Palette[0], 0, 1);
729 } else {
730 if (dirty & I830_UPLOAD_TEX_PALETTE_N(0)) {
731 i830EmitTexPalette(dev, sarea_priv->Palette[0], 0, 0);
732 sarea_priv->dirty &= ~I830_UPLOAD_TEX_PALETTE_N(0);
733 }
734 if (dirty & I830_UPLOAD_TEX_PALETTE_N(1)) {
735 i830EmitTexPalette(dev, sarea_priv->Palette[1], 1, 0);
736 sarea_priv->dirty &= ~I830_UPLOAD_TEX_PALETTE_N(1);
737 }
738
739 /* 1.3:
740 */
741#if 0
742 if (dirty & I830_UPLOAD_TEX_PALETTE_N(2)) {
743 i830EmitTexPalette(dev, sarea_priv->Palette2[0], 0, 0);
744 sarea_priv->dirty &= ~I830_UPLOAD_TEX_PALETTE_N(2);
745 }
746 if (dirty & I830_UPLOAD_TEX_PALETTE_N(3)) {
747 i830EmitTexPalette(dev, sarea_priv->Palette2[1], 1, 0);
748 sarea_priv->dirty &= ~I830_UPLOAD_TEX_PALETTE_N(2);
749 }
750#endif
751 }
752
753 /* 1.3:
754 */
755 if (dirty & I830_UPLOAD_STIPPLE) {
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000756 i830EmitStippleVerified(dev, sarea_priv->StippleState);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757 sarea_priv->dirty &= ~I830_UPLOAD_STIPPLE;
758 }
759
760 if (dirty & I830_UPLOAD_TEX2) {
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000761 i830EmitTexVerified(dev, sarea_priv->TexState2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762 sarea_priv->dirty &= ~I830_UPLOAD_TEX2;
763 }
764
765 if (dirty & I830_UPLOAD_TEX3) {
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000766 i830EmitTexVerified(dev, sarea_priv->TexState3);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767 sarea_priv->dirty &= ~I830_UPLOAD_TEX3;
768 }
769
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770 if (dirty & I830_UPLOAD_TEXBLEND2) {
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000771 i830EmitTexBlendVerified(dev,
772 sarea_priv->TexBlendState2,
773 sarea_priv->TexBlendStateWordsUsed2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774
775 sarea_priv->dirty &= ~I830_UPLOAD_TEXBLEND2;
776 }
777
778 if (dirty & I830_UPLOAD_TEXBLEND3) {
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000779 i830EmitTexBlendVerified(dev,
780 sarea_priv->TexBlendState3,
781 sarea_priv->TexBlendStateWordsUsed3);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782 sarea_priv->dirty &= ~I830_UPLOAD_TEXBLEND3;
783 }
784}
785
786/* ================================================================
787 * Performance monitoring functions
788 */
789
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000790static void i830_fill_box(drm_device_t * dev,
791 int x, int y, int w, int h, int r, int g, int b)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792{
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000793 drm_i830_private_t *dev_priv = dev->dev_private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 u32 color;
795 unsigned int BR13, CMD;
796 RING_LOCALS;
797
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000798 BR13 = (0xF0 << 16) | (dev_priv->pitch * dev_priv->cpp) | (1 << 24);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799 CMD = XY_COLOR_BLT_CMD;
800 x += dev_priv->sarea_priv->boxes[0].x1;
801 y += dev_priv->sarea_priv->boxes[0].y1;
802
803 if (dev_priv->cpp == 4) {
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000804 BR13 |= (1 << 25);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805 CMD |= (XY_COLOR_BLT_WRITE_ALPHA | XY_COLOR_BLT_WRITE_RGB);
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000806 color = (((0xff) << 24) | (r << 16) | (g << 8) | b);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807 } else {
808 color = (((r & 0xf8) << 8) |
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000809 ((g & 0xfc) << 3) | ((b & 0xf8) >> 3));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810 }
811
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000812 BEGIN_LP_RING(6);
813 OUT_RING(CMD);
814 OUT_RING(BR13);
815 OUT_RING((y << 16) | x);
816 OUT_RING(((y + h) << 16) | (x + w));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000818 if (dev_priv->current_page == 1) {
819 OUT_RING(dev_priv->front_offset);
820 } else {
821 OUT_RING(dev_priv->back_offset);
822 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000824 OUT_RING(color);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825 ADVANCE_LP_RING();
826}
827
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000828static void i830_cp_performance_boxes(drm_device_t * dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829{
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000830 drm_i830_private_t *dev_priv = dev->dev_private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831
832 /* Purple box for page flipping
833 */
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000834 if (dev_priv->sarea_priv->perf_boxes & I830_BOX_FLIP)
835 i830_fill_box(dev, 4, 4, 8, 8, 255, 0, 255);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836
837 /* Red box if we have to wait for idle at any point
838 */
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000839 if (dev_priv->sarea_priv->perf_boxes & I830_BOX_WAIT)
840 i830_fill_box(dev, 16, 4, 8, 8, 255, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841
842 /* Blue box: lost context?
843 */
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000844 if (dev_priv->sarea_priv->perf_boxes & I830_BOX_LOST_CONTEXT)
845 i830_fill_box(dev, 28, 4, 8, 8, 0, 0, 255);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846
847 /* Yellow box for texture swaps
848 */
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000849 if (dev_priv->sarea_priv->perf_boxes & I830_BOX_TEXTURE_LOAD)
850 i830_fill_box(dev, 40, 4, 8, 8, 255, 255, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851
852 /* Green box if hardware never idles (as far as we can tell)
853 */
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000854 if (!(dev_priv->sarea_priv->perf_boxes & I830_BOX_RING_EMPTY))
855 i830_fill_box(dev, 64, 4, 8, 8, 0, 255, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000857 /* Draw bars indicating number of buffers allocated
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858 * (not a great measure, easily confused)
859 */
860 if (dev_priv->dma_used) {
861 int bar = dev_priv->dma_used / 10240;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000862 if (bar > 100)
863 bar = 100;
864 if (bar < 1)
865 bar = 1;
866 i830_fill_box(dev, 4, 16, bar, 4, 196, 128, 128);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867 dev_priv->dma_used = 0;
868 }
869
870 dev_priv->sarea_priv->perf_boxes = 0;
871}
872
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000873static void i830_dma_dispatch_clear(drm_device_t * dev, int flags,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874 unsigned int clear_color,
875 unsigned int clear_zval,
876 unsigned int clear_depthmask)
877{
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000878 drm_i830_private_t *dev_priv = dev->dev_private;
879 drm_i830_sarea_t *sarea_priv = dev_priv->sarea_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880 int nbox = sarea_priv->nbox;
881 drm_clip_rect_t *pbox = sarea_priv->boxes;
882 int pitch = dev_priv->pitch;
883 int cpp = dev_priv->cpp;
884 int i;
885 unsigned int BR13, CMD, D_CMD;
886 RING_LOCALS;
887
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000888 if (dev_priv->current_page == 1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889 unsigned int tmp = flags;
890
891 flags &= ~(I830_FRONT | I830_BACK);
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000892 if (tmp & I830_FRONT)
893 flags |= I830_BACK;
894 if (tmp & I830_BACK)
895 flags |= I830_FRONT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896 }
897
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000898 i830_kernel_lost_context(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000900 switch (cpp) {
901 case 2:
902 BR13 = (0xF0 << 16) | (pitch * cpp) | (1 << 24);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903 D_CMD = CMD = XY_COLOR_BLT_CMD;
904 break;
905 case 4:
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000906 BR13 = (0xF0 << 16) | (pitch * cpp) | (1 << 24) | (1 << 25);
907 CMD = (XY_COLOR_BLT_CMD | XY_COLOR_BLT_WRITE_ALPHA |
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908 XY_COLOR_BLT_WRITE_RGB);
909 D_CMD = XY_COLOR_BLT_CMD;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000910 if (clear_depthmask & 0x00ffffff)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911 D_CMD |= XY_COLOR_BLT_WRITE_RGB;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000912 if (clear_depthmask & 0xff000000)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913 D_CMD |= XY_COLOR_BLT_WRITE_ALPHA;
914 break;
915 default:
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000916 BR13 = (0xF0 << 16) | (pitch * cpp) | (1 << 24);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917 D_CMD = CMD = XY_COLOR_BLT_CMD;
918 break;
919 }
920
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000921 if (nbox > I830_NR_SAREA_CLIPRECTS)
922 nbox = I830_NR_SAREA_CLIPRECTS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000924 for (i = 0; i < nbox; i++, pbox++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925 if (pbox->x1 > pbox->x2 ||
926 pbox->y1 > pbox->y2 ||
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000927 pbox->x2 > dev_priv->w || pbox->y2 > dev_priv->h)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928 continue;
929
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000930 if (flags & I830_FRONT) {
931 DRM_DEBUG("clear front\n");
932 BEGIN_LP_RING(6);
933 OUT_RING(CMD);
934 OUT_RING(BR13);
935 OUT_RING((pbox->y1 << 16) | pbox->x1);
936 OUT_RING((pbox->y2 << 16) | pbox->x2);
937 OUT_RING(dev_priv->front_offset);
938 OUT_RING(clear_color);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939 ADVANCE_LP_RING();
940 }
941
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000942 if (flags & I830_BACK) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943 DRM_DEBUG("clear back\n");
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000944 BEGIN_LP_RING(6);
945 OUT_RING(CMD);
946 OUT_RING(BR13);
947 OUT_RING((pbox->y1 << 16) | pbox->x1);
948 OUT_RING((pbox->y2 << 16) | pbox->x2);
949 OUT_RING(dev_priv->back_offset);
950 OUT_RING(clear_color);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951 ADVANCE_LP_RING();
952 }
953
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000954 if (flags & I830_DEPTH) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955 DRM_DEBUG("clear depth\n");
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000956 BEGIN_LP_RING(6);
957 OUT_RING(D_CMD);
958 OUT_RING(BR13);
959 OUT_RING((pbox->y1 << 16) | pbox->x1);
960 OUT_RING((pbox->y2 << 16) | pbox->x2);
961 OUT_RING(dev_priv->depth_offset);
962 OUT_RING(clear_zval);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963 ADVANCE_LP_RING();
964 }
965 }
966}
967
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000968static void i830_dma_dispatch_swap(drm_device_t * dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969{
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000970 drm_i830_private_t *dev_priv = dev->dev_private;
971 drm_i830_sarea_t *sarea_priv = dev_priv->sarea_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972 int nbox = sarea_priv->nbox;
973 drm_clip_rect_t *pbox = sarea_priv->boxes;
974 int pitch = dev_priv->pitch;
975 int cpp = dev_priv->cpp;
976 int i;
977 unsigned int CMD, BR13;
978 RING_LOCALS;
979
980 DRM_DEBUG("swapbuffers\n");
981
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000982 i830_kernel_lost_context(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983
984 if (dev_priv->do_boxes)
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000985 i830_cp_performance_boxes(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000987 switch (cpp) {
988 case 2:
989 BR13 = (pitch * cpp) | (0xCC << 16) | (1 << 24);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990 CMD = XY_SRC_COPY_BLT_CMD;
991 break;
992 case 4:
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000993 BR13 = (pitch * cpp) | (0xCC << 16) | (1 << 24) | (1 << 25);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994 CMD = (XY_SRC_COPY_BLT_CMD | XY_SRC_COPY_BLT_WRITE_ALPHA |
995 XY_SRC_COPY_BLT_WRITE_RGB);
996 break;
997 default:
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000998 BR13 = (pitch * cpp) | (0xCC << 16) | (1 << 24);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999 CMD = XY_SRC_COPY_BLT_CMD;
1000 break;
1001 }
1002
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001003 if (nbox > I830_NR_SAREA_CLIPRECTS)
1004 nbox = I830_NR_SAREA_CLIPRECTS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001006 for (i = 0; i < nbox; i++, pbox++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007 if (pbox->x1 > pbox->x2 ||
1008 pbox->y1 > pbox->y2 ||
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001009 pbox->x2 > dev_priv->w || pbox->y2 > dev_priv->h)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010 continue;
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001011
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012 DRM_DEBUG("dispatch swap %d,%d-%d,%d!\n",
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001013 pbox->x1, pbox->y1, pbox->x2, pbox->y2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001015 BEGIN_LP_RING(8);
1016 OUT_RING(CMD);
1017 OUT_RING(BR13);
1018 OUT_RING((pbox->y1 << 16) | pbox->x1);
1019 OUT_RING((pbox->y2 << 16) | pbox->x2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001021 if (dev_priv->current_page == 0)
1022 OUT_RING(dev_priv->front_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023 else
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001024 OUT_RING(dev_priv->back_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001026 OUT_RING((pbox->y1 << 16) | pbox->x1);
1027 OUT_RING(BR13 & 0xffff);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001029 if (dev_priv->current_page == 0)
1030 OUT_RING(dev_priv->back_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031 else
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001032 OUT_RING(dev_priv->front_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033
1034 ADVANCE_LP_RING();
1035 }
1036}
1037
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001038static void i830_dma_dispatch_flip(drm_device_t * dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039{
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001040 drm_i830_private_t *dev_priv = dev->dev_private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041 RING_LOCALS;
1042
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001043 DRM_DEBUG("%s: page=%d pfCurrentPage=%d\n",
1044 __FUNCTION__,
1045 dev_priv->current_page,
1046 dev_priv->sarea_priv->pf_current_page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001048 i830_kernel_lost_context(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049
1050 if (dev_priv->do_boxes) {
1051 dev_priv->sarea_priv->perf_boxes |= I830_BOX_FLIP;
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001052 i830_cp_performance_boxes(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053 }
1054
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001055 BEGIN_LP_RING(2);
1056 OUT_RING(INST_PARSER_CLIENT | INST_OP_FLUSH | INST_FLUSH_MAP_CACHE);
1057 OUT_RING(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058 ADVANCE_LP_RING();
1059
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001060 BEGIN_LP_RING(6);
1061 OUT_RING(CMD_OP_DISPLAYBUFFER_INFO | ASYNC_FLIP);
1062 OUT_RING(0);
1063 if (dev_priv->current_page == 0) {
1064 OUT_RING(dev_priv->back_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065 dev_priv->current_page = 1;
1066 } else {
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001067 OUT_RING(dev_priv->front_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068 dev_priv->current_page = 0;
1069 }
1070 OUT_RING(0);
1071 ADVANCE_LP_RING();
1072
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001073 BEGIN_LP_RING(2);
1074 OUT_RING(MI_WAIT_FOR_EVENT | MI_WAIT_FOR_PLANE_A_FLIP);
1075 OUT_RING(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076 ADVANCE_LP_RING();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077
1078 dev_priv->sarea_priv->pf_current_page = dev_priv->current_page;
1079}
1080
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001081static void i830_dma_dispatch_vertex(drm_device_t * dev,
1082 drm_buf_t * buf, int discard, int used)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083{
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001084 drm_i830_private_t *dev_priv = dev->dev_private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085 drm_i830_buf_priv_t *buf_priv = buf->dev_private;
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001086 drm_i830_sarea_t *sarea_priv = dev_priv->sarea_priv;
1087 drm_clip_rect_t *box = sarea_priv->boxes;
1088 int nbox = sarea_priv->nbox;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089 unsigned long address = (unsigned long)buf->bus_address;
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001090 unsigned long start = address - dev->agp->base;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091 int i = 0, u;
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001092 RING_LOCALS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001094 i830_kernel_lost_context(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001096 if (nbox > I830_NR_SAREA_CLIPRECTS)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097 nbox = I830_NR_SAREA_CLIPRECTS;
1098
1099 if (discard) {
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001100 u = cmpxchg(buf_priv->in_use, I830_BUF_CLIENT,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101 I830_BUF_HARDWARE);
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001102 if (u != I830_BUF_CLIENT) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103 DRM_DEBUG("xxxx 2\n");
1104 }
1105 }
1106
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001107 if (used > 4 * 1023)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108 used = 0;
1109
1110 if (sarea_priv->dirty)
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001111 i830EmitState(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001113 DRM_DEBUG("dispatch vertex addr 0x%lx, used 0x%x nbox %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114 address, used, nbox);
1115
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001116 dev_priv->counter++;
1117 DRM_DEBUG("dispatch counter : %ld\n", dev_priv->counter);
1118 DRM_DEBUG("i830_dma_dispatch\n");
1119 DRM_DEBUG("start : %lx\n", start);
1120 DRM_DEBUG("used : %d\n", used);
1121 DRM_DEBUG("start + used - 4 : %ld\n", start + used - 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122
1123 if (buf_priv->currently_mapped == I830_BUF_MAPPED) {
1124 u32 *vp = buf_priv->kernel_virtual;
1125
1126 vp[0] = (GFX_OP_PRIMITIVE |
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001127 sarea_priv->vertex_prim | ((used / 4) - 2));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128
1129 if (dev_priv->use_mi_batchbuffer_start) {
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001130 vp[used / 4] = MI_BATCH_BUFFER_END;
1131 used += 4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132 }
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001133
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134 if (used & 4) {
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001135 vp[used / 4] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136 used += 4;
1137 }
1138
1139 i830_unmap_buffer(buf);
1140 }
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001141
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142 if (used) {
1143 do {
1144 if (i < nbox) {
1145 BEGIN_LP_RING(6);
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001146 OUT_RING(GFX_OP_DRAWRECT_INFO);
1147 OUT_RING(sarea_priv->
1148 BufferState[I830_DESTREG_DR1]);
1149 OUT_RING(box[i].x1 | (box[i].y1 << 16));
1150 OUT_RING(box[i].x2 | (box[i].y2 << 16));
1151 OUT_RING(sarea_priv->
1152 BufferState[I830_DESTREG_DR4]);
1153 OUT_RING(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154 ADVANCE_LP_RING();
1155 }
1156
1157 if (dev_priv->use_mi_batchbuffer_start) {
1158 BEGIN_LP_RING(2);
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001159 OUT_RING(MI_BATCH_BUFFER_START | (2 << 6));
1160 OUT_RING(start | MI_BATCH_NON_SECURE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161 ADVANCE_LP_RING();
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001162 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163 BEGIN_LP_RING(4);
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001164 OUT_RING(MI_BATCH_BUFFER);
1165 OUT_RING(start | MI_BATCH_NON_SECURE);
1166 OUT_RING(start + used - 4);
1167 OUT_RING(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168 ADVANCE_LP_RING();
1169 }
1170
1171 } while (++i < nbox);
1172 }
1173
1174 if (discard) {
1175 dev_priv->counter++;
1176
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001177 (void)cmpxchg(buf_priv->in_use, I830_BUF_CLIENT,
1178 I830_BUF_HARDWARE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179
1180 BEGIN_LP_RING(8);
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001181 OUT_RING(CMD_STORE_DWORD_IDX);
1182 OUT_RING(20);
1183 OUT_RING(dev_priv->counter);
1184 OUT_RING(CMD_STORE_DWORD_IDX);
1185 OUT_RING(buf_priv->my_use_idx);
1186 OUT_RING(I830_BUF_FREE);
1187 OUT_RING(CMD_REPORT_HEAD);
1188 OUT_RING(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189 ADVANCE_LP_RING();
1190 }
1191}
1192
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001193static void i830_dma_quiescent(drm_device_t * dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194{
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001195 drm_i830_private_t *dev_priv = dev->dev_private;
1196 RING_LOCALS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001198 i830_kernel_lost_context(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001200 BEGIN_LP_RING(4);
1201 OUT_RING(INST_PARSER_CLIENT | INST_OP_FLUSH | INST_FLUSH_MAP_CACHE);
1202 OUT_RING(CMD_REPORT_HEAD);
1203 OUT_RING(0);
1204 OUT_RING(0);
1205 ADVANCE_LP_RING();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001207 i830_wait_ring(dev, dev_priv->ring.Size - 8, __FUNCTION__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208}
1209
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001210static int i830_flush_queue(drm_device_t * dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211{
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001212 drm_i830_private_t *dev_priv = dev->dev_private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213 drm_device_dma_t *dma = dev->dma;
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001214 int i, ret = 0;
1215 RING_LOCALS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001217 i830_kernel_lost_context(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001219 BEGIN_LP_RING(2);
1220 OUT_RING(CMD_REPORT_HEAD);
1221 OUT_RING(0);
1222 ADVANCE_LP_RING();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001224 i830_wait_ring(dev, dev_priv->ring.Size - 8, __FUNCTION__);
1225
1226 for (i = 0; i < dma->buf_count; i++) {
1227 drm_buf_t *buf = dma->buflist[i];
1228 drm_i830_buf_priv_t *buf_priv = buf->dev_private;
1229
1230 int used = cmpxchg(buf_priv->in_use, I830_BUF_HARDWARE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231 I830_BUF_FREE);
1232
1233 if (used == I830_BUF_HARDWARE)
1234 DRM_DEBUG("reclaimed from HARDWARE\n");
1235 if (used == I830_BUF_CLIENT)
1236 DRM_DEBUG("still on client\n");
1237 }
1238
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001239 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240}
1241
1242/* Must be called with the lock held */
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001243void i830_reclaim_buffers(drm_device_t * dev, struct file *filp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244{
1245 drm_device_dma_t *dma = dev->dma;
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001246 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001248 if (!dma)
1249 return;
1250 if (!dev->dev_private)
1251 return;
1252 if (!dma->buflist)
1253 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001255 i830_flush_queue(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256
1257 for (i = 0; i < dma->buf_count; i++) {
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001258 drm_buf_t *buf = dma->buflist[i];
1259 drm_i830_buf_priv_t *buf_priv = buf->dev_private;
1260
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261 if (buf->filp == filp && buf_priv) {
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001262 int used = cmpxchg(buf_priv->in_use, I830_BUF_CLIENT,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263 I830_BUF_FREE);
1264
1265 if (used == I830_BUF_CLIENT)
1266 DRM_DEBUG("reclaimed from client\n");
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001267 if (buf_priv->currently_mapped == I830_BUF_MAPPED)
1268 buf_priv->currently_mapped = I830_BUF_UNMAPPED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269 }
1270 }
1271}
1272
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001273static int i830_flush_ioctl(struct inode *inode, struct file *filp,
1274 unsigned int cmd, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275{
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001276 drm_file_t *priv = filp->private_data;
1277 drm_device_t *dev = priv->head->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278
1279 LOCK_TEST_WITH_RETURN(dev, filp);
1280
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001281 i830_flush_queue(dev);
1282 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283}
1284
1285static int i830_dma_vertex(struct inode *inode, struct file *filp,
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001286 unsigned int cmd, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287{
1288 drm_file_t *priv = filp->private_data;
1289 drm_device_t *dev = priv->head->dev;
1290 drm_device_dma_t *dma = dev->dma;
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001291 drm_i830_private_t *dev_priv = (drm_i830_private_t *) dev->dev_private;
1292 u32 *hw_status = dev_priv->hw_status_page;
1293 drm_i830_sarea_t *sarea_priv = (drm_i830_sarea_t *)
1294 dev_priv->sarea_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295 drm_i830_vertex_t vertex;
1296
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001297 if (copy_from_user
1298 (&vertex, (drm_i830_vertex_t __user *) arg, sizeof(vertex)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299 return -EFAULT;
1300
1301 LOCK_TEST_WITH_RETURN(dev, filp);
1302
1303 DRM_DEBUG("i830 dma vertex, idx %d used %d discard %d\n",
1304 vertex.idx, vertex.used, vertex.discard);
1305
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001306 if (vertex.idx < 0 || vertex.idx > dma->buf_count)
1307 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001309 i830_dma_dispatch_vertex(dev,
1310 dma->buflist[vertex.idx],
1311 vertex.discard, vertex.used);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001313 sarea_priv->last_enqueue = dev_priv->counter - 1;
1314 sarea_priv->last_dispatch = (int)hw_status[5];
1315
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316 return 0;
1317}
1318
1319static int i830_clear_bufs(struct inode *inode, struct file *filp,
1320 unsigned int cmd, unsigned long arg)
1321{
1322 drm_file_t *priv = filp->private_data;
1323 drm_device_t *dev = priv->head->dev;
1324 drm_i830_clear_t clear;
1325
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001326 if (copy_from_user
1327 (&clear, (drm_i830_clear_t __user *) arg, sizeof(clear)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328 return -EFAULT;
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001329
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330 LOCK_TEST_WITH_RETURN(dev, filp);
1331
1332 /* GH: Someone's doing nasty things... */
1333 if (!dev->dev_private) {
1334 return -EINVAL;
1335 }
1336
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001337 i830_dma_dispatch_clear(dev, clear.flags,
1338 clear.clear_color,
1339 clear.clear_depth, clear.clear_depthmask);
1340 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341}
1342
1343static int i830_swap_bufs(struct inode *inode, struct file *filp,
1344 unsigned int cmd, unsigned long arg)
1345{
1346 drm_file_t *priv = filp->private_data;
1347 drm_device_t *dev = priv->head->dev;
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001348
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349 DRM_DEBUG("i830_swap_bufs\n");
1350
1351 LOCK_TEST_WITH_RETURN(dev, filp);
1352
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001353 i830_dma_dispatch_swap(dev);
1354 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355}
1356
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357/* Not sure why this isn't set all the time:
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001358 */
1359static void i830_do_init_pageflip(drm_device_t * dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360{
1361 drm_i830_private_t *dev_priv = dev->dev_private;
1362
1363 DRM_DEBUG("%s\n", __FUNCTION__);
1364 dev_priv->page_flipping = 1;
1365 dev_priv->current_page = 0;
1366 dev_priv->sarea_priv->pf_current_page = dev_priv->current_page;
1367}
1368
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001369static int i830_do_cleanup_pageflip(drm_device_t * dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370{
1371 drm_i830_private_t *dev_priv = dev->dev_private;
1372
1373 DRM_DEBUG("%s\n", __FUNCTION__);
1374 if (dev_priv->current_page != 0)
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001375 i830_dma_dispatch_flip(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376
1377 dev_priv->page_flipping = 0;
1378 return 0;
1379}
1380
1381static int i830_flip_bufs(struct inode *inode, struct file *filp,
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001382 unsigned int cmd, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383{
1384 drm_file_t *priv = filp->private_data;
1385 drm_device_t *dev = priv->head->dev;
1386 drm_i830_private_t *dev_priv = dev->dev_private;
1387
1388 DRM_DEBUG("%s\n", __FUNCTION__);
1389
1390 LOCK_TEST_WITH_RETURN(dev, filp);
1391
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001392 if (!dev_priv->page_flipping)
1393 i830_do_init_pageflip(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001395 i830_dma_dispatch_flip(dev);
1396 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397}
1398
1399static int i830_getage(struct inode *inode, struct file *filp, unsigned int cmd,
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001400 unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401{
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001402 drm_file_t *priv = filp->private_data;
1403 drm_device_t *dev = priv->head->dev;
1404 drm_i830_private_t *dev_priv = (drm_i830_private_t *) dev->dev_private;
1405 u32 *hw_status = dev_priv->hw_status_page;
1406 drm_i830_sarea_t *sarea_priv = (drm_i830_sarea_t *)
1407 dev_priv->sarea_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001409 sarea_priv->last_dispatch = (int)hw_status[5];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001410 return 0;
1411}
1412
1413static int i830_getbuf(struct inode *inode, struct file *filp, unsigned int cmd,
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001414 unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001415{
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001416 drm_file_t *priv = filp->private_data;
1417 drm_device_t *dev = priv->head->dev;
1418 int retcode = 0;
1419 drm_i830_dma_t d;
1420 drm_i830_private_t *dev_priv = (drm_i830_private_t *) dev->dev_private;
1421 u32 *hw_status = dev_priv->hw_status_page;
1422 drm_i830_sarea_t *sarea_priv = (drm_i830_sarea_t *)
1423 dev_priv->sarea_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424
1425 DRM_DEBUG("getbuf\n");
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001426 if (copy_from_user(&d, (drm_i830_dma_t __user *) arg, sizeof(d)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001427 return -EFAULT;
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001428
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429 LOCK_TEST_WITH_RETURN(dev, filp);
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001430
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431 d.granted = 0;
1432
1433 retcode = i830_dma_get_buffer(dev, &d, filp);
1434
1435 DRM_DEBUG("i830_dma: %d returning %d, granted = %d\n",
1436 current->pid, retcode, d.granted);
1437
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001438 if (copy_to_user((drm_dma_t __user *) arg, &d, sizeof(d)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439 return -EFAULT;
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001440 sarea_priv->last_dispatch = (int)hw_status[5];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441
1442 return retcode;
1443}
1444
1445static int i830_copybuf(struct inode *inode,
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001446 struct file *filp, unsigned int cmd, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447{
1448 /* Never copy - 2.4.x doesn't need it */
1449 return 0;
1450}
1451
1452static int i830_docopy(struct inode *inode, struct file *filp, unsigned int cmd,
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001453 unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454{
1455 return 0;
1456}
1457
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001458static int i830_getparam(struct inode *inode, struct file *filp,
1459 unsigned int cmd, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001460{
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001461 drm_file_t *priv = filp->private_data;
1462 drm_device_t *dev = priv->head->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463 drm_i830_private_t *dev_priv = dev->dev_private;
1464 drm_i830_getparam_t param;
1465 int value;
1466
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001467 if (!dev_priv) {
1468 DRM_ERROR("%s called with no initialization\n", __FUNCTION__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001469 return -EINVAL;
1470 }
1471
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001472 if (copy_from_user
1473 (&param, (drm_i830_getparam_t __user *) arg, sizeof(param)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001474 return -EFAULT;
1475
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001476 switch (param.param) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477 case I830_PARAM_IRQ_ACTIVE:
1478 value = dev->irq_enabled;
1479 break;
1480 default:
1481 return -EINVAL;
1482 }
1483
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001484 if (copy_to_user(param.value, &value, sizeof(int))) {
1485 DRM_ERROR("copy_to_user\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001486 return -EFAULT;
1487 }
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001488
Linus Torvalds1da177e2005-04-16 15:20:36 -07001489 return 0;
1490}
1491
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001492static int i830_setparam(struct inode *inode, struct file *filp,
1493 unsigned int cmd, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001494{
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001495 drm_file_t *priv = filp->private_data;
1496 drm_device_t *dev = priv->head->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497 drm_i830_private_t *dev_priv = dev->dev_private;
1498 drm_i830_setparam_t param;
1499
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001500 if (!dev_priv) {
1501 DRM_ERROR("%s called with no initialization\n", __FUNCTION__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502 return -EINVAL;
1503 }
1504
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001505 if (copy_from_user
1506 (&param, (drm_i830_setparam_t __user *) arg, sizeof(param)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507 return -EFAULT;
1508
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001509 switch (param.param) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001510 case I830_SETPARAM_USE_MI_BATCHBUFFER_START:
1511 dev_priv->use_mi_batchbuffer_start = param.value;
1512 break;
1513 default:
1514 return -EINVAL;
1515 }
1516
1517 return 0;
1518}
1519
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001520void i830_driver_pretakedown(drm_device_t * dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521{
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001522 i830_dma_cleanup(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523}
1524
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001525void i830_driver_prerelease(drm_device_t * dev, DRMFILE filp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001526{
1527 if (dev->dev_private) {
1528 drm_i830_private_t *dev_priv = dev->dev_private;
1529 if (dev_priv->page_flipping) {
1530 i830_do_cleanup_pageflip(dev);
1531 }
1532 }
1533}
1534
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001535void i830_driver_release(drm_device_t * dev, struct file *filp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001536{
1537 i830_reclaim_buffers(dev, filp);
1538}
1539
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001540int i830_driver_dma_quiescent(drm_device_t * dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001541{
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001542 i830_dma_quiescent(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001543 return 0;
1544}
1545
1546drm_ioctl_desc_t i830_ioctls[] = {
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001547 [DRM_IOCTL_NR(DRM_I830_INIT)] = {i830_dma_init, 1, 1}
1548 ,
1549 [DRM_IOCTL_NR(DRM_I830_VERTEX)] = {i830_dma_vertex, 1, 0}
1550 ,
1551 [DRM_IOCTL_NR(DRM_I830_CLEAR)] = {i830_clear_bufs, 1, 0}
1552 ,
1553 [DRM_IOCTL_NR(DRM_I830_FLUSH)] = {i830_flush_ioctl, 1, 0}
1554 ,
1555 [DRM_IOCTL_NR(DRM_I830_GETAGE)] = {i830_getage, 1, 0}
1556 ,
1557 [DRM_IOCTL_NR(DRM_I830_GETBUF)] = {i830_getbuf, 1, 0}
1558 ,
1559 [DRM_IOCTL_NR(DRM_I830_SWAP)] = {i830_swap_bufs, 1, 0}
1560 ,
1561 [DRM_IOCTL_NR(DRM_I830_COPY)] = {i830_copybuf, 1, 0}
1562 ,
1563 [DRM_IOCTL_NR(DRM_I830_DOCOPY)] = {i830_docopy, 1, 0}
1564 ,
1565 [DRM_IOCTL_NR(DRM_I830_FLIP)] = {i830_flip_bufs, 1, 0}
1566 ,
1567 [DRM_IOCTL_NR(DRM_I830_IRQ_EMIT)] = {i830_irq_emit, 1, 0}
1568 ,
1569 [DRM_IOCTL_NR(DRM_I830_IRQ_WAIT)] = {i830_irq_wait, 1, 0}
1570 ,
1571 [DRM_IOCTL_NR(DRM_I830_GETPARAM)] = {i830_getparam, 1, 0}
1572 ,
1573 [DRM_IOCTL_NR(DRM_I830_SETPARAM)] = {i830_setparam, 1, 0}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574};
1575
1576int i830_max_ioctl = DRM_ARRAY_SIZE(i830_ioctls);
Dave Airliecda17382005-07-10 17:31:26 +10001577
1578/**
1579 * Determine if the device really is AGP or not.
1580 *
1581 * All Intel graphics chipsets are treated as AGP, even if they are really
1582 * PCI-e.
1583 *
1584 * \param dev The device to be tested.
1585 *
1586 * \returns
1587 * A value of 1 is always retured to indictate every i8xx is AGP.
1588 */
1589int i830_driver_device_is_agp(drm_device_t * dev)
1590{
1591 return 1;
1592}