blob: 28ee6e3f1d99d3a55c60ed0686e9b3f82a7920cb [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/* i810_dma.c -- DMA support for the i810 -*- 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:
14 *
15 * 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.
18 *
19 * 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 *
31 */
32
33#include "drmP.h"
34#include "drm.h"
35#include "i810_drm.h"
36#include "i810_drv.h"
37#include <linux/interrupt.h> /* For task queue support */
38#include <linux/delay.h>
39#include <linux/pagemap.h>
40
41#define I810_BUF_FREE 2
42#define I810_BUF_CLIENT 1
43#define I810_BUF_HARDWARE 0
44
45#define I810_BUF_UNMAPPED 0
46#define I810_BUF_MAPPED 1
47
Dave Airlieb5e89ed2005-09-25 14:28:13 +100048static drm_buf_t *i810_freelist_get(drm_device_t * dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -070049{
Dave Airlieb5e89ed2005-09-25 14:28:13 +100050 drm_device_dma_t *dma = dev->dma;
51 int i;
52 int used;
Linus Torvalds1da177e2005-04-16 15:20:36 -070053
54 /* Linear search might not be the best solution */
55
Dave Airlieb5e89ed2005-09-25 14:28:13 +100056 for (i = 0; i < dma->buf_count; i++) {
57 drm_buf_t *buf = dma->buflist[i];
58 drm_i810_buf_priv_t *buf_priv = buf->dev_private;
Linus Torvalds1da177e2005-04-16 15:20:36 -070059 /* In use is already a pointer */
Dave Airlieb5e89ed2005-09-25 14:28:13 +100060 used = cmpxchg(buf_priv->in_use, I810_BUF_FREE,
Linus Torvalds1da177e2005-04-16 15:20:36 -070061 I810_BUF_CLIENT);
62 if (used == I810_BUF_FREE) {
63 return buf;
64 }
65 }
Dave Airlieb5e89ed2005-09-25 14:28:13 +100066 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070067}
68
69/* This should only be called if the buffer is not sent to the hardware
70 * yet, the hardware updates in use for us once its on the ring buffer.
71 */
72
Dave Airlieb5e89ed2005-09-25 14:28:13 +100073static int i810_freelist_put(drm_device_t * dev, drm_buf_t * buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -070074{
Dave Airlieb5e89ed2005-09-25 14:28:13 +100075 drm_i810_buf_priv_t *buf_priv = buf->dev_private;
76 int used;
Linus Torvalds1da177e2005-04-16 15:20:36 -070077
Dave Airlieb5e89ed2005-09-25 14:28:13 +100078 /* In use is already a pointer */
79 used = cmpxchg(buf_priv->in_use, I810_BUF_CLIENT, I810_BUF_FREE);
Linus Torvalds1da177e2005-04-16 15:20:36 -070080 if (used != I810_BUF_CLIENT) {
Dave Airlieb5e89ed2005-09-25 14:28:13 +100081 DRM_ERROR("Freeing buffer thats not in use : %d\n", buf->idx);
82 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070083 }
84
Dave Airlieb5e89ed2005-09-25 14:28:13 +100085 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070086}
87
Dave Airliec94f7022005-07-07 21:03:38 +100088static int i810_mmap_buffers(struct file *filp, struct vm_area_struct *vma)
Linus Torvalds1da177e2005-04-16 15:20:36 -070089{
Dave Airlieb5e89ed2005-09-25 14:28:13 +100090 drm_file_t *priv = filp->private_data;
91 drm_device_t *dev;
92 drm_i810_private_t *dev_priv;
93 drm_buf_t *buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -070094 drm_i810_buf_priv_t *buf_priv;
95
96 lock_kernel();
Dave Airlieb5e89ed2005-09-25 14:28:13 +100097 dev = priv->head->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -070098 dev_priv = dev->dev_private;
Dave Airlieb5e89ed2005-09-25 14:28:13 +100099 buf = dev_priv->mmap_buffer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100 buf_priv = buf->dev_private;
101
102 vma->vm_flags |= (VM_IO | VM_DONTCOPY);
103 vma->vm_file = filp;
104
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000105 buf_priv->currently_mapped = I810_BUF_MAPPED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 unlock_kernel();
107
108 if (io_remap_pfn_range(vma, vma->vm_start,
Dave Airlie3d774612006-08-07 20:07:43 +1000109 vma->vm_pgoff,
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000110 vma->vm_end - vma->vm_start, vma->vm_page_prot))
111 return -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112 return 0;
113}
114
Dave Airliec94f7022005-07-07 21:03:38 +1000115static struct file_operations i810_buffer_fops = {
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000116 .open = drm_open,
Dave Airliec94f7022005-07-07 21:03:38 +1000117 .release = drm_release,
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000118 .ioctl = drm_ioctl,
119 .mmap = i810_mmap_buffers,
120 .fasync = drm_fasync,
Dave Airliec94f7022005-07-07 21:03:38 +1000121};
122
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000123static int i810_map_buffer(drm_buf_t * buf, struct file *filp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124{
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000125 drm_file_t *priv = filp->private_data;
126 drm_device_t *dev = priv->head->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127 drm_i810_buf_priv_t *buf_priv = buf->dev_private;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000128 drm_i810_private_t *dev_priv = dev->dev_private;
Arjan van de Ven99ac48f2006-03-28 01:56:41 -0800129 const struct file_operations *old_fops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 int retcode = 0;
131
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000132 if (buf_priv->currently_mapped == I810_BUF_MAPPED)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 return -EINVAL;
134
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000135 down_write(&current->mm->mmap_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 old_fops = filp->f_op;
137 filp->f_op = &i810_buffer_fops;
138 dev_priv->mmap_buffer = buf;
139 buf_priv->virtual = (void *)do_mmap(filp, 0, buf->total,
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000140 PROT_READ | PROT_WRITE,
141 MAP_SHARED, buf->bus_address);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142 dev_priv->mmap_buffer = NULL;
143 filp->f_op = old_fops;
144 if ((unsigned long)buf_priv->virtual > -1024UL) {
145 /* Real error */
146 DRM_ERROR("mmap error\n");
147 retcode = (signed int)buf_priv->virtual;
148 buf_priv->virtual = NULL;
149 }
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000150 up_write(&current->mm->mmap_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151
152 return retcode;
153}
154
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000155static int i810_unmap_buffer(drm_buf_t * buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156{
157 drm_i810_buf_priv_t *buf_priv = buf->dev_private;
158 int retcode = 0;
159
160 if (buf_priv->currently_mapped != I810_BUF_MAPPED)
161 return -EINVAL;
162
163 down_write(&current->mm->mmap_sem);
164 retcode = do_munmap(current->mm,
165 (unsigned long)buf_priv->virtual,
166 (size_t) buf->total);
167 up_write(&current->mm->mmap_sem);
168
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000169 buf_priv->currently_mapped = I810_BUF_UNMAPPED;
170 buf_priv->virtual = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171
172 return retcode;
173}
174
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000175static int i810_dma_get_buffer(drm_device_t * dev, drm_i810_dma_t * d,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 struct file *filp)
177{
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000178 drm_buf_t *buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 drm_i810_buf_priv_t *buf_priv;
180 int retcode = 0;
181
182 buf = i810_freelist_get(dev);
183 if (!buf) {
184 retcode = -ENOMEM;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000185 DRM_DEBUG("retcode=%d\n", retcode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 return retcode;
187 }
188
189 retcode = i810_map_buffer(buf, filp);
190 if (retcode) {
191 i810_freelist_put(dev, buf);
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000192 DRM_ERROR("mapbuf failed, retcode %d\n", retcode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 return retcode;
194 }
195 buf->filp = filp;
196 buf_priv = buf->dev_private;
197 d->granted = 1;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000198 d->request_idx = buf->idx;
199 d->request_size = buf->total;
200 d->virtual = buf_priv->virtual;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201
202 return retcode;
203}
204
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000205static int i810_dma_cleanup(drm_device_t * dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206{
207 drm_device_dma_t *dma = dev->dma;
208
209 /* Make sure interrupts are disabled here because the uninstall ioctl
210 * may not have been called from userspace and after dev_private
211 * is freed, it's too late.
212 */
213 if (drm_core_check_feature(dev, DRIVER_HAVE_IRQ) && dev->irq_enabled)
214 drm_irq_uninstall(dev);
215
216 if (dev->dev_private) {
217 int i;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000218 drm_i810_private_t *dev_priv =
219 (drm_i810_private_t *) dev->dev_private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220
221 if (dev_priv->ring.virtual_start) {
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000222 drm_ioremapfree((void *)dev_priv->ring.virtual_start,
223 dev_priv->ring.Size, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 }
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000225 if (dev_priv->hw_status_page) {
226 pci_free_consistent(dev->pdev, PAGE_SIZE,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 dev_priv->hw_status_page,
228 dev_priv->dma_status_page);
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000229 /* Need to rewrite hardware status page */
230 I810_WRITE(0x02080, 0x1ffff000);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 }
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000232 drm_free(dev->dev_private, sizeof(drm_i810_private_t),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 DRM_MEM_DRIVER);
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000234 dev->dev_private = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235
236 for (i = 0; i < dma->buf_count; i++) {
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000237 drm_buf_t *buf = dma->buflist[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 drm_i810_buf_priv_t *buf_priv = buf->dev_private;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000239 if (buf_priv->kernel_virtual && buf->total)
240 drm_ioremapfree(buf_priv->kernel_virtual,
241 buf->total, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 }
243 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 return 0;
245}
246
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000247static int i810_wait_ring(drm_device_t * dev, int n)
248{
249 drm_i810_private_t *dev_priv = dev->dev_private;
250 drm_i810_ring_buffer_t *ring = &(dev_priv->ring);
251 int iters = 0;
252 unsigned long end;
253 unsigned int last_head = I810_READ(LP_RING + RING_HEAD) & HEAD_ADDR;
254
255 end = jiffies + (HZ * 3);
256 while (ring->space < n) {
257 ring->head = I810_READ(LP_RING + RING_HEAD) & HEAD_ADDR;
258 ring->space = ring->head - (ring->tail + 8);
259 if (ring->space < 0)
260 ring->space += ring->Size;
261
262 if (ring->head != last_head) {
263 end = jiffies + (HZ * 3);
264 last_head = ring->head;
265 }
266
267 iters++;
268 if (time_before(end, jiffies)) {
269 DRM_ERROR("space: %d wanted %d\n", ring->space, n);
270 DRM_ERROR("lockup\n");
271 goto out_wait_ring;
272 }
273 udelay(1);
274 }
275
276 out_wait_ring:
277 return iters;
278}
279
280static void i810_kernel_lost_context(drm_device_t * dev)
281{
282 drm_i810_private_t *dev_priv = dev->dev_private;
283 drm_i810_ring_buffer_t *ring = &(dev_priv->ring);
284
285 ring->head = I810_READ(LP_RING + RING_HEAD) & HEAD_ADDR;
286 ring->tail = I810_READ(LP_RING + RING_TAIL);
287 ring->space = ring->head - (ring->tail + 8);
288 if (ring->space < 0)
289 ring->space += ring->Size;
290}
291
292static int i810_freelist_init(drm_device_t * dev, drm_i810_private_t * dev_priv)
293{
294 drm_device_dma_t *dma = dev->dma;
295 int my_idx = 24;
296 u32 *hw_status = (u32 *) (dev_priv->hw_status_page + my_idx);
297 int i;
298
299 if (dma->buf_count > 1019) {
300 /* Not enough space in the status page for the freelist */
301 return -EINVAL;
302 }
303
304 for (i = 0; i < dma->buf_count; i++) {
305 drm_buf_t *buf = dma->buflist[i];
306 drm_i810_buf_priv_t *buf_priv = buf->dev_private;
307
308 buf_priv->in_use = hw_status++;
309 buf_priv->my_use_idx = my_idx;
310 my_idx += 4;
311
312 *buf_priv->in_use = I810_BUF_FREE;
313
314 buf_priv->kernel_virtual = drm_ioremap(buf->bus_address,
315 buf->total, dev);
316 }
317 return 0;
318}
319
320static int i810_dma_initialize(drm_device_t * dev,
321 drm_i810_private_t * dev_priv,
322 drm_i810_init_t * init)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323{
324 struct list_head *list;
325
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000326 memset(dev_priv, 0, sizeof(drm_i810_private_t));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327
328 list_for_each(list, &dev->maplist->head) {
329 drm_map_list_t *r_list = list_entry(list, drm_map_list_t, head);
330 if (r_list->map &&
331 r_list->map->type == _DRM_SHM &&
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000332 r_list->map->flags & _DRM_CONTAINS_LOCK) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 dev_priv->sarea_map = r_list->map;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000334 break;
335 }
336 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 if (!dev_priv->sarea_map) {
338 dev->dev_private = (void *)dev_priv;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000339 i810_dma_cleanup(dev);
340 DRM_ERROR("can not find sarea!\n");
341 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 }
343 dev_priv->mmio_map = drm_core_findmap(dev, init->mmio_offset);
344 if (!dev_priv->mmio_map) {
345 dev->dev_private = (void *)dev_priv;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000346 i810_dma_cleanup(dev);
347 DRM_ERROR("can not find mmio map!\n");
348 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 }
Dave Airlied1f2b552005-08-05 22:11:22 +1000350 dev->agp_buffer_token = init->buffers_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 dev->agp_buffer_map = drm_core_findmap(dev, init->buffers_offset);
352 if (!dev->agp_buffer_map) {
353 dev->dev_private = (void *)dev_priv;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000354 i810_dma_cleanup(dev);
355 DRM_ERROR("can not find dma buffer map!\n");
356 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 }
358
359 dev_priv->sarea_priv = (drm_i810_sarea_t *)
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000360 ((u8 *) dev_priv->sarea_map->handle + init->sarea_priv_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000362 dev_priv->ring.Start = init->ring_start;
363 dev_priv->ring.End = init->ring_end;
364 dev_priv->ring.Size = init->ring_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000366 dev_priv->ring.virtual_start = drm_ioremap(dev->agp->base +
367 init->ring_start,
368 init->ring_size, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000370 if (dev_priv->ring.virtual_start == NULL) {
371 dev->dev_private = (void *)dev_priv;
372 i810_dma_cleanup(dev);
373 DRM_ERROR("can not ioremap virtual address for"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 " ring buffer\n");
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000375 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 }
377
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000378 dev_priv->ring.tail_mask = dev_priv->ring.Size - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379
380 dev_priv->w = init->w;
381 dev_priv->h = init->h;
382 dev_priv->pitch = init->pitch;
383 dev_priv->back_offset = init->back_offset;
384 dev_priv->depth_offset = init->depth_offset;
385 dev_priv->front_offset = init->front_offset;
386
387 dev_priv->overlay_offset = init->overlay_offset;
388 dev_priv->overlay_physical = init->overlay_physical;
389
390 dev_priv->front_di1 = init->front_offset | init->pitch_bits;
391 dev_priv->back_di1 = init->back_offset | init->pitch_bits;
392 dev_priv->zi1 = init->depth_offset | init->pitch_bits;
393
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000394 /* Program Hardware Status Page */
395 dev_priv->hw_status_page =
396 pci_alloc_consistent(dev->pdev, PAGE_SIZE,
397 &dev_priv->dma_status_page);
398 if (!dev_priv->hw_status_page) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 dev->dev_private = (void *)dev_priv;
400 i810_dma_cleanup(dev);
401 DRM_ERROR("Can not allocate hardware status page\n");
402 return -ENOMEM;
403 }
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000404 memset(dev_priv->hw_status_page, 0, PAGE_SIZE);
405 DRM_DEBUG("hw status page @ %p\n", dev_priv->hw_status_page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406
407 I810_WRITE(0x02080, dev_priv->dma_status_page);
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000408 DRM_DEBUG("Enabled hardware status page\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000410 /* Now we need to init our freelist */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 if (i810_freelist_init(dev, dev_priv) != 0) {
412 dev->dev_private = (void *)dev_priv;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000413 i810_dma_cleanup(dev);
414 DRM_ERROR("Not enough space in the status page for"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 " the freelist\n");
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000416 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417 }
418 dev->dev_private = (void *)dev_priv;
419
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000420 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421}
422
423/* i810 DRM version 1.1 used a smaller init structure with different
424 * ordering of values than is currently used (drm >= 1.2). There is
425 * no defined way to detect the XFree version to correct this problem,
426 * however by checking using this procedure we can detect the correct
427 * thing to do.
428 *
429 * #1 Read the Smaller init structure from user-space
430 * #2 Verify the overlay_physical is a valid physical address, or NULL
431 * If it isn't then we have a v1.1 client. Fix up params.
432 * If it is, then we have a 1.2 client... get the rest of the data.
433 */
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000434static int i810_dma_init_compat(drm_i810_init_t * init, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435{
436
437 /* Get v1.1 init data */
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000438 if (copy_from_user(init, (drm_i810_pre12_init_t __user *) arg,
439 sizeof(drm_i810_pre12_init_t))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 return -EFAULT;
441 }
442
443 if ((!init->overlay_physical) || (init->overlay_physical > 4096)) {
444
445 /* This is a v1.2 client, just get the v1.2 init data */
446 DRM_INFO("Using POST v1.2 init.\n");
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000447 if (copy_from_user(init, (drm_i810_init_t __user *) arg,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 sizeof(drm_i810_init_t))) {
449 return -EFAULT;
450 }
451 } else {
452
453 /* This is a v1.1 client, fix the params */
454 DRM_INFO("Using PRE v1.2 init.\n");
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000455 init->pitch_bits = init->h;
456 init->pitch = init->w;
457 init->h = init->overlay_physical;
458 init->w = init->overlay_offset;
459 init->overlay_physical = 0;
460 init->overlay_offset = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 }
462
463 return 0;
464}
465
466static int i810_dma_init(struct inode *inode, struct file *filp,
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000467 unsigned int cmd, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468{
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000469 drm_file_t *priv = filp->private_data;
470 drm_device_t *dev = priv->head->dev;
471 drm_i810_private_t *dev_priv;
472 drm_i810_init_t init;
473 int retcode = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474
475 /* Get only the init func */
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000476 if (copy_from_user
477 (&init, (void __user *)arg, sizeof(drm_i810_init_func_t)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 return -EFAULT;
479
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000480 switch (init.func) {
481 case I810_INIT_DMA:
482 /* This case is for backward compatibility. It
483 * handles XFree 4.1.0 and 4.2.0, and has to
484 * do some parameter checking as described below.
485 * It will someday go away.
486 */
487 retcode = i810_dma_init_compat(&init, arg);
488 if (retcode)
489 return retcode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000491 dev_priv = drm_alloc(sizeof(drm_i810_private_t),
492 DRM_MEM_DRIVER);
493 if (dev_priv == NULL)
494 return -ENOMEM;
495 retcode = i810_dma_initialize(dev, dev_priv, &init);
496 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000498 default:
499 case I810_INIT_DMA_1_4:
500 DRM_INFO("Using v1.4 init.\n");
501 if (copy_from_user(&init, (drm_i810_init_t __user *) arg,
502 sizeof(drm_i810_init_t))) {
503 return -EFAULT;
504 }
505 dev_priv = drm_alloc(sizeof(drm_i810_private_t),
506 DRM_MEM_DRIVER);
507 if (dev_priv == NULL)
508 return -ENOMEM;
509 retcode = i810_dma_initialize(dev, dev_priv, &init);
510 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000512 case I810_CLEANUP_DMA:
513 DRM_INFO("DMA Cleanup\n");
514 retcode = i810_dma_cleanup(dev);
515 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 }
517
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000518 return retcode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519}
520
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521/* Most efficient way to verify state for the i810 is as it is
522 * emitted. Non-conformant state is silently dropped.
523 *
524 * Use 'volatile' & local var tmp to force the emitted values to be
525 * identical to the verified ones.
526 */
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000527static void i810EmitContextVerified(drm_device_t * dev,
528 volatile unsigned int *code)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529{
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000530 drm_i810_private_t *dev_priv = dev->dev_private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 int i, j = 0;
532 unsigned int tmp;
533 RING_LOCALS;
534
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000535 BEGIN_LP_RING(I810_CTX_SETUP_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000537 OUT_RING(GFX_OP_COLOR_FACTOR);
538 OUT_RING(code[I810_CTXREG_CF1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000540 OUT_RING(GFX_OP_STIPPLE);
541 OUT_RING(code[I810_CTXREG_ST1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000543 for (i = 4; i < I810_CTX_SETUP_SIZE; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544 tmp = code[i];
545
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000546 if ((tmp & (7 << 29)) == (3 << 29) &&
547 (tmp & (0x1f << 24)) < (0x1d << 24)) {
548 OUT_RING(tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 j++;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000550 } else
551 printk("constext state dropped!!!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 }
553
554 if (j & 1)
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000555 OUT_RING(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556
557 ADVANCE_LP_RING();
558}
559
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000560static void i810EmitTexVerified(drm_device_t * dev, volatile unsigned int *code)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561{
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000562 drm_i810_private_t *dev_priv = dev->dev_private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 int i, j = 0;
564 unsigned int tmp;
565 RING_LOCALS;
566
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000567 BEGIN_LP_RING(I810_TEX_SETUP_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000569 OUT_RING(GFX_OP_MAP_INFO);
570 OUT_RING(code[I810_TEXREG_MI1]);
571 OUT_RING(code[I810_TEXREG_MI2]);
572 OUT_RING(code[I810_TEXREG_MI3]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000574 for (i = 4; i < I810_TEX_SETUP_SIZE; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 tmp = code[i];
576
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000577 if ((tmp & (7 << 29)) == (3 << 29) &&
578 (tmp & (0x1f << 24)) < (0x1d << 24)) {
579 OUT_RING(tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580 j++;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000581 } else
582 printk("texture state dropped!!!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583 }
584
585 if (j & 1)
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000586 OUT_RING(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587
588 ADVANCE_LP_RING();
589}
590
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591/* Need to do some additional checking when setting the dest buffer.
592 */
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000593static void i810EmitDestVerified(drm_device_t * dev,
594 volatile unsigned int *code)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595{
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000596 drm_i810_private_t *dev_priv = dev->dev_private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 unsigned int tmp;
598 RING_LOCALS;
599
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000600 BEGIN_LP_RING(I810_DEST_SETUP_SIZE + 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601
602 tmp = code[I810_DESTREG_DI1];
603 if (tmp == dev_priv->front_di1 || tmp == dev_priv->back_di1) {
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000604 OUT_RING(CMD_OP_DESTBUFFER_INFO);
605 OUT_RING(tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 } else
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000607 DRM_DEBUG("bad di1 %x (allow %x or %x)\n",
608 tmp, dev_priv->front_di1, dev_priv->back_di1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609
610 /* invarient:
611 */
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000612 OUT_RING(CMD_OP_Z_BUFFER_INFO);
613 OUT_RING(dev_priv->zi1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000615 OUT_RING(GFX_OP_DESTBUFFER_VARS);
616 OUT_RING(code[I810_DESTREG_DV1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000618 OUT_RING(GFX_OP_DRAWRECT_INFO);
619 OUT_RING(code[I810_DESTREG_DR1]);
620 OUT_RING(code[I810_DESTREG_DR2]);
621 OUT_RING(code[I810_DESTREG_DR3]);
622 OUT_RING(code[I810_DESTREG_DR4]);
623 OUT_RING(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624
625 ADVANCE_LP_RING();
626}
627
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000628static void i810EmitState(drm_device_t * dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629{
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000630 drm_i810_private_t *dev_priv = dev->dev_private;
631 drm_i810_sarea_t *sarea_priv = dev_priv->sarea_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632 unsigned int dirty = sarea_priv->dirty;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000633
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 DRM_DEBUG("%s %x\n", __FUNCTION__, dirty);
635
636 if (dirty & I810_UPLOAD_BUFFERS) {
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000637 i810EmitDestVerified(dev, sarea_priv->BufferState);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 sarea_priv->dirty &= ~I810_UPLOAD_BUFFERS;
639 }
640
641 if (dirty & I810_UPLOAD_CTX) {
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000642 i810EmitContextVerified(dev, sarea_priv->ContextState);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 sarea_priv->dirty &= ~I810_UPLOAD_CTX;
644 }
645
646 if (dirty & I810_UPLOAD_TEX0) {
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000647 i810EmitTexVerified(dev, sarea_priv->TexState[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 sarea_priv->dirty &= ~I810_UPLOAD_TEX0;
649 }
650
651 if (dirty & I810_UPLOAD_TEX1) {
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000652 i810EmitTexVerified(dev, sarea_priv->TexState[1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 sarea_priv->dirty &= ~I810_UPLOAD_TEX1;
654 }
655}
656
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657/* need to verify
658 */
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000659static void i810_dma_dispatch_clear(drm_device_t * dev, int flags,
660 unsigned int clear_color,
661 unsigned int clear_zval)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662{
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000663 drm_i810_private_t *dev_priv = dev->dev_private;
664 drm_i810_sarea_t *sarea_priv = dev_priv->sarea_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665 int nbox = sarea_priv->nbox;
666 drm_clip_rect_t *pbox = sarea_priv->boxes;
667 int pitch = dev_priv->pitch;
668 int cpp = 2;
669 int i;
670 RING_LOCALS;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000671
672 if (dev_priv->current_page == 1) {
673 unsigned int tmp = flags;
674
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675 flags &= ~(I810_FRONT | I810_BACK);
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000676 if (tmp & I810_FRONT)
677 flags |= I810_BACK;
678 if (tmp & I810_BACK)
679 flags |= I810_FRONT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680 }
681
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000682 i810_kernel_lost_context(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000684 if (nbox > I810_NR_SAREA_CLIPRECTS)
685 nbox = I810_NR_SAREA_CLIPRECTS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000687 for (i = 0; i < nbox; i++, pbox++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688 unsigned int x = pbox->x1;
689 unsigned int y = pbox->y1;
690 unsigned int width = (pbox->x2 - x) * cpp;
691 unsigned int height = pbox->y2 - y;
692 unsigned int start = y * pitch + x * cpp;
693
694 if (pbox->x1 > pbox->x2 ||
695 pbox->y1 > pbox->y2 ||
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000696 pbox->x2 > dev_priv->w || pbox->y2 > dev_priv->h)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697 continue;
698
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000699 if (flags & I810_FRONT) {
700 BEGIN_LP_RING(6);
701 OUT_RING(BR00_BITBLT_CLIENT | BR00_OP_COLOR_BLT | 0x3);
702 OUT_RING(BR13_SOLID_PATTERN | (0xF0 << 16) | pitch);
703 OUT_RING((height << 16) | width);
704 OUT_RING(start);
705 OUT_RING(clear_color);
706 OUT_RING(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707 ADVANCE_LP_RING();
708 }
709
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000710 if (flags & I810_BACK) {
711 BEGIN_LP_RING(6);
712 OUT_RING(BR00_BITBLT_CLIENT | BR00_OP_COLOR_BLT | 0x3);
713 OUT_RING(BR13_SOLID_PATTERN | (0xF0 << 16) | pitch);
714 OUT_RING((height << 16) | width);
715 OUT_RING(dev_priv->back_offset + start);
716 OUT_RING(clear_color);
717 OUT_RING(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718 ADVANCE_LP_RING();
719 }
720
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000721 if (flags & I810_DEPTH) {
722 BEGIN_LP_RING(6);
723 OUT_RING(BR00_BITBLT_CLIENT | BR00_OP_COLOR_BLT | 0x3);
724 OUT_RING(BR13_SOLID_PATTERN | (0xF0 << 16) | pitch);
725 OUT_RING((height << 16) | width);
726 OUT_RING(dev_priv->depth_offset + start);
727 OUT_RING(clear_zval);
728 OUT_RING(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 ADVANCE_LP_RING();
730 }
731 }
732}
733
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000734static void i810_dma_dispatch_swap(drm_device_t * dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735{
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000736 drm_i810_private_t *dev_priv = dev->dev_private;
737 drm_i810_sarea_t *sarea_priv = dev_priv->sarea_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 int nbox = sarea_priv->nbox;
739 drm_clip_rect_t *pbox = sarea_priv->boxes;
740 int pitch = dev_priv->pitch;
741 int cpp = 2;
742 int i;
743 RING_LOCALS;
744
745 DRM_DEBUG("swapbuffers\n");
746
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000747 i810_kernel_lost_context(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000749 if (nbox > I810_NR_SAREA_CLIPRECTS)
750 nbox = I810_NR_SAREA_CLIPRECTS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000752 for (i = 0; i < nbox; i++, pbox++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753 unsigned int w = pbox->x2 - pbox->x1;
754 unsigned int h = pbox->y2 - pbox->y1;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000755 unsigned int dst = pbox->x1 * cpp + pbox->y1 * pitch;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756 unsigned int start = dst;
757
758 if (pbox->x1 > pbox->x2 ||
759 pbox->y1 > pbox->y2 ||
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000760 pbox->x2 > dev_priv->w || pbox->y2 > dev_priv->h)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761 continue;
762
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000763 BEGIN_LP_RING(6);
764 OUT_RING(BR00_BITBLT_CLIENT | BR00_OP_SRC_COPY_BLT | 0x4);
765 OUT_RING(pitch | (0xCC << 16));
766 OUT_RING((h << 16) | (w * cpp));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767 if (dev_priv->current_page == 0)
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000768 OUT_RING(dev_priv->front_offset + start);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769 else
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000770 OUT_RING(dev_priv->back_offset + start);
771 OUT_RING(pitch);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772 if (dev_priv->current_page == 0)
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000773 OUT_RING(dev_priv->back_offset + start);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774 else
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000775 OUT_RING(dev_priv->front_offset + start);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776 ADVANCE_LP_RING();
777 }
778}
779
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000780static void i810_dma_dispatch_vertex(drm_device_t * dev,
781 drm_buf_t * buf, int discard, int used)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782{
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000783 drm_i810_private_t *dev_priv = dev->dev_private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784 drm_i810_buf_priv_t *buf_priv = buf->dev_private;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000785 drm_i810_sarea_t *sarea_priv = dev_priv->sarea_priv;
786 drm_clip_rect_t *box = sarea_priv->boxes;
787 int nbox = sarea_priv->nbox;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788 unsigned long address = (unsigned long)buf->bus_address;
789 unsigned long start = address - dev->agp->base;
790 int i = 0;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000791 RING_LOCALS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000793 i810_kernel_lost_context(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000795 if (nbox > I810_NR_SAREA_CLIPRECTS)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796 nbox = I810_NR_SAREA_CLIPRECTS;
797
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000798 if (used > 4 * 1024)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799 used = 0;
800
801 if (sarea_priv->dirty)
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000802 i810EmitState(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803
804 if (buf_priv->currently_mapped == I810_BUF_MAPPED) {
805 unsigned int prim = (sarea_priv->vertex_prim & PR_MASK);
806
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000807 *(u32 *) buf_priv->kernel_virtual =
808 ((GFX_OP_PRIMITIVE | prim | ((used / 4) - 2)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809
810 if (used & 4) {
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000811 *(u32 *) ((u32) buf_priv->kernel_virtual + used) = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812 used += 4;
813 }
814
815 i810_unmap_buffer(buf);
816 }
817
818 if (used) {
819 do {
820 if (i < nbox) {
821 BEGIN_LP_RING(4);
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000822 OUT_RING(GFX_OP_SCISSOR | SC_UPDATE_SCISSOR |
823 SC_ENABLE);
824 OUT_RING(GFX_OP_SCISSOR_INFO);
825 OUT_RING(box[i].x1 | (box[i].y1 << 16));
826 OUT_RING((box[i].x2 -
827 1) | ((box[i].y2 - 1) << 16));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828 ADVANCE_LP_RING();
829 }
830
831 BEGIN_LP_RING(4);
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000832 OUT_RING(CMD_OP_BATCH_BUFFER);
833 OUT_RING(start | BB1_PROTECTED);
834 OUT_RING(start + used - 4);
835 OUT_RING(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 ADVANCE_LP_RING();
837
838 } while (++i < nbox);
839 }
840
841 if (discard) {
842 dev_priv->counter++;
843
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000844 (void)cmpxchg(buf_priv->in_use, I810_BUF_CLIENT,
845 I810_BUF_HARDWARE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846
847 BEGIN_LP_RING(8);
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000848 OUT_RING(CMD_STORE_DWORD_IDX);
849 OUT_RING(20);
850 OUT_RING(dev_priv->counter);
851 OUT_RING(CMD_STORE_DWORD_IDX);
852 OUT_RING(buf_priv->my_use_idx);
853 OUT_RING(I810_BUF_FREE);
854 OUT_RING(CMD_REPORT_HEAD);
855 OUT_RING(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856 ADVANCE_LP_RING();
857 }
858}
859
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000860static void i810_dma_dispatch_flip(drm_device_t * dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861{
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000862 drm_i810_private_t *dev_priv = dev->dev_private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863 int pitch = dev_priv->pitch;
864 RING_LOCALS;
865
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000866 DRM_DEBUG("%s: page=%d pfCurrentPage=%d\n",
867 __FUNCTION__,
868 dev_priv->current_page,
869 dev_priv->sarea_priv->pf_current_page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000871 i810_kernel_lost_context(dev);
872
873 BEGIN_LP_RING(2);
874 OUT_RING(INST_PARSER_CLIENT | INST_OP_FLUSH | INST_FLUSH_MAP_CACHE);
875 OUT_RING(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876 ADVANCE_LP_RING();
877
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000878 BEGIN_LP_RING(I810_DEST_SETUP_SIZE + 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879 /* On i815 at least ASYNC is buggy */
880 /* pitch<<5 is from 11.2.8 p158,
881 its the pitch / 8 then left shifted 8,
882 so (pitch >> 3) << 8 */
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000883 OUT_RING(CMD_OP_FRONTBUFFER_INFO | (pitch << 5) /*| ASYNC_FLIP */ );
884 if (dev_priv->current_page == 0) {
885 OUT_RING(dev_priv->back_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886 dev_priv->current_page = 1;
887 } else {
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000888 OUT_RING(dev_priv->front_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889 dev_priv->current_page = 0;
890 }
891 OUT_RING(0);
892 ADVANCE_LP_RING();
893
894 BEGIN_LP_RING(2);
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000895 OUT_RING(CMD_OP_WAIT_FOR_EVENT | WAIT_FOR_PLANE_A_FLIP);
896 OUT_RING(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897 ADVANCE_LP_RING();
898
899 /* Increment the frame counter. The client-side 3D driver must
900 * throttle the framerate by waiting for this value before
901 * performing the swapbuffer ioctl.
902 */
903 dev_priv->sarea_priv->pf_current_page = dev_priv->current_page;
904
905}
906
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000907static void i810_dma_quiescent(drm_device_t * dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908{
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000909 drm_i810_private_t *dev_priv = dev->dev_private;
910 RING_LOCALS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911
912/* printk("%s\n", __FUNCTION__); */
913
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000914 i810_kernel_lost_context(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000916 BEGIN_LP_RING(4);
917 OUT_RING(INST_PARSER_CLIENT | INST_OP_FLUSH | INST_FLUSH_MAP_CACHE);
918 OUT_RING(CMD_REPORT_HEAD);
919 OUT_RING(0);
920 OUT_RING(0);
921 ADVANCE_LP_RING();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000923 i810_wait_ring(dev, dev_priv->ring.Size - 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924}
925
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000926static int i810_flush_queue(drm_device_t * dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927{
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000928 drm_i810_private_t *dev_priv = dev->dev_private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929 drm_device_dma_t *dma = dev->dma;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000930 int i, ret = 0;
931 RING_LOCALS;
932
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933/* printk("%s\n", __FUNCTION__); */
934
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000935 i810_kernel_lost_context(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000937 BEGIN_LP_RING(2);
938 OUT_RING(CMD_REPORT_HEAD);
939 OUT_RING(0);
940 ADVANCE_LP_RING();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000942 i810_wait_ring(dev, dev_priv->ring.Size - 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000944 for (i = 0; i < dma->buf_count; i++) {
945 drm_buf_t *buf = dma->buflist[i];
946 drm_i810_buf_priv_t *buf_priv = buf->dev_private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947
948 int used = cmpxchg(buf_priv->in_use, I810_BUF_HARDWARE,
949 I810_BUF_FREE);
950
951 if (used == I810_BUF_HARDWARE)
952 DRM_DEBUG("reclaimed from HARDWARE\n");
953 if (used == I810_BUF_CLIENT)
954 DRM_DEBUG("still on client\n");
955 }
956
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000957 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958}
959
960/* Must be called with the lock held */
Dave Airliece60fe02006-02-02 19:21:38 +1100961static void i810_reclaim_buffers(drm_device_t * dev, struct file *filp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962{
963 drm_device_dma_t *dma = dev->dma;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000964 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000966 if (!dma)
967 return;
968 if (!dev->dev_private)
969 return;
970 if (!dma->buflist)
971 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000973 i810_flush_queue(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974
975 for (i = 0; i < dma->buf_count; i++) {
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000976 drm_buf_t *buf = dma->buflist[i];
977 drm_i810_buf_priv_t *buf_priv = buf->dev_private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978
979 if (buf->filp == filp && buf_priv) {
980 int used = cmpxchg(buf_priv->in_use, I810_BUF_CLIENT,
981 I810_BUF_FREE);
982
983 if (used == I810_BUF_CLIENT)
984 DRM_DEBUG("reclaimed from client\n");
985 if (buf_priv->currently_mapped == I810_BUF_MAPPED)
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000986 buf_priv->currently_mapped = I810_BUF_UNMAPPED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987 }
988 }
989}
990
Dave Airliec94f7022005-07-07 21:03:38 +1000991static int i810_flush_ioctl(struct inode *inode, struct file *filp,
992 unsigned int cmd, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993{
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000994 drm_file_t *priv = filp->private_data;
995 drm_device_t *dev = priv->head->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996
997 LOCK_TEST_WITH_RETURN(dev, filp);
998
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000999 i810_flush_queue(dev);
1000 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001}
1002
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003static int i810_dma_vertex(struct inode *inode, struct file *filp,
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001004 unsigned int cmd, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005{
1006 drm_file_t *priv = filp->private_data;
1007 drm_device_t *dev = priv->head->dev;
1008 drm_device_dma_t *dma = dev->dma;
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001009 drm_i810_private_t *dev_priv = (drm_i810_private_t *) dev->dev_private;
1010 u32 *hw_status = dev_priv->hw_status_page;
1011 drm_i810_sarea_t *sarea_priv = (drm_i810_sarea_t *)
1012 dev_priv->sarea_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013 drm_i810_vertex_t vertex;
1014
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001015 if (copy_from_user
1016 (&vertex, (drm_i810_vertex_t __user *) arg, sizeof(vertex)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017 return -EFAULT;
1018
1019 LOCK_TEST_WITH_RETURN(dev, filp);
1020
1021 DRM_DEBUG("i810 dma vertex, idx %d used %d discard %d\n",
1022 vertex.idx, vertex.used, vertex.discard);
1023
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001024 if (vertex.idx < 0 || vertex.idx > dma->buf_count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025 return -EINVAL;
1026
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001027 i810_dma_dispatch_vertex(dev,
1028 dma->buflist[vertex.idx],
1029 vertex.discard, vertex.used);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001031 atomic_add(vertex.used, &dev->counts[_DRM_STAT_SECONDARY]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032 atomic_inc(&dev->counts[_DRM_STAT_DMA]);
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001033 sarea_priv->last_enqueue = dev_priv->counter - 1;
1034 sarea_priv->last_dispatch = (int)hw_status[5];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035
1036 return 0;
1037}
1038
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039static int i810_clear_bufs(struct inode *inode, struct file *filp,
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001040 unsigned int cmd, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041{
1042 drm_file_t *priv = filp->private_data;
1043 drm_device_t *dev = priv->head->dev;
1044 drm_i810_clear_t clear;
1045
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001046 if (copy_from_user
1047 (&clear, (drm_i810_clear_t __user *) arg, sizeof(clear)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048 return -EFAULT;
1049
1050 LOCK_TEST_WITH_RETURN(dev, filp);
1051
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001052 /* GH: Someone's doing nasty things... */
1053 if (!dev->dev_private) {
1054 return -EINVAL;
1055 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001057 i810_dma_dispatch_clear(dev, clear.flags,
1058 clear.clear_color, clear.clear_depth);
1059 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060}
1061
1062static int i810_swap_bufs(struct inode *inode, struct file *filp,
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001063 unsigned int cmd, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064{
1065 drm_file_t *priv = filp->private_data;
1066 drm_device_t *dev = priv->head->dev;
1067
1068 DRM_DEBUG("i810_swap_bufs\n");
1069
1070 LOCK_TEST_WITH_RETURN(dev, filp);
1071
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001072 i810_dma_dispatch_swap(dev);
1073 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074}
1075
1076static int i810_getage(struct inode *inode, struct file *filp, unsigned int cmd,
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001077 unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078{
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001079 drm_file_t *priv = filp->private_data;
1080 drm_device_t *dev = priv->head->dev;
1081 drm_i810_private_t *dev_priv = (drm_i810_private_t *) dev->dev_private;
1082 u32 *hw_status = dev_priv->hw_status_page;
1083 drm_i810_sarea_t *sarea_priv = (drm_i810_sarea_t *)
1084 dev_priv->sarea_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001086 sarea_priv->last_dispatch = (int)hw_status[5];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087 return 0;
1088}
1089
1090static int i810_getbuf(struct inode *inode, struct file *filp, unsigned int cmd,
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001091 unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092{
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001093 drm_file_t *priv = filp->private_data;
1094 drm_device_t *dev = priv->head->dev;
1095 int retcode = 0;
1096 drm_i810_dma_t d;
1097 drm_i810_private_t *dev_priv = (drm_i810_private_t *) dev->dev_private;
1098 u32 *hw_status = dev_priv->hw_status_page;
1099 drm_i810_sarea_t *sarea_priv = (drm_i810_sarea_t *)
1100 dev_priv->sarea_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001102 if (copy_from_user(&d, (drm_i810_dma_t __user *) arg, sizeof(d)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103 return -EFAULT;
1104
1105 LOCK_TEST_WITH_RETURN(dev, filp);
1106
1107 d.granted = 0;
1108
1109 retcode = i810_dma_get_buffer(dev, &d, filp);
1110
1111 DRM_DEBUG("i810_dma: %d returning %d, granted = %d\n",
1112 current->pid, retcode, d.granted);
1113
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001114 if (copy_to_user((drm_dma_t __user *) arg, &d, sizeof(d)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115 return -EFAULT;
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001116 sarea_priv->last_dispatch = (int)hw_status[5];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117
1118 return retcode;
1119}
1120
1121static int i810_copybuf(struct inode *inode,
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001122 struct file *filp, unsigned int cmd, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123{
1124 /* Never copy - 2.4.x doesn't need it */
1125 return 0;
1126}
1127
1128static int i810_docopy(struct inode *inode, struct file *filp, unsigned int cmd,
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001129 unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130{
1131 /* Never copy - 2.4.x doesn't need it */
1132 return 0;
1133}
1134
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001135static void i810_dma_dispatch_mc(drm_device_t * dev, drm_buf_t * buf, int used,
1136 unsigned int last_render)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137{
1138 drm_i810_private_t *dev_priv = dev->dev_private;
1139 drm_i810_buf_priv_t *buf_priv = buf->dev_private;
1140 drm_i810_sarea_t *sarea_priv = dev_priv->sarea_priv;
1141 unsigned long address = (unsigned long)buf->bus_address;
1142 unsigned long start = address - dev->agp->base;
1143 int u;
1144 RING_LOCALS;
1145
1146 i810_kernel_lost_context(dev);
1147
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001148 u = cmpxchg(buf_priv->in_use, I810_BUF_CLIENT, I810_BUF_HARDWARE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149 if (u != I810_BUF_CLIENT) {
1150 DRM_DEBUG("MC found buffer that isn't mine!\n");
1151 }
1152
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001153 if (used > 4 * 1024)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154 used = 0;
1155
1156 sarea_priv->dirty = 0x7f;
1157
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001158 DRM_DEBUG("dispatch mc addr 0x%lx, used 0x%x\n", address, used);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159
1160 dev_priv->counter++;
1161 DRM_DEBUG("dispatch counter : %ld\n", dev_priv->counter);
1162 DRM_DEBUG("i810_dma_dispatch_mc\n");
1163 DRM_DEBUG("start : %lx\n", start);
1164 DRM_DEBUG("used : %d\n", used);
1165 DRM_DEBUG("start + used - 4 : %ld\n", start + used - 4);
1166
1167 if (buf_priv->currently_mapped == I810_BUF_MAPPED) {
1168 if (used & 4) {
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001169 *(u32 *) ((u32) buf_priv->virtual + used) = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170 used += 4;
1171 }
1172
1173 i810_unmap_buffer(buf);
1174 }
1175 BEGIN_LP_RING(4);
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001176 OUT_RING(CMD_OP_BATCH_BUFFER);
1177 OUT_RING(start | BB1_PROTECTED);
1178 OUT_RING(start + used - 4);
1179 OUT_RING(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180 ADVANCE_LP_RING();
1181
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182 BEGIN_LP_RING(8);
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001183 OUT_RING(CMD_STORE_DWORD_IDX);
1184 OUT_RING(buf_priv->my_use_idx);
1185 OUT_RING(I810_BUF_FREE);
1186 OUT_RING(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001188 OUT_RING(CMD_STORE_DWORD_IDX);
1189 OUT_RING(16);
1190 OUT_RING(last_render);
1191 OUT_RING(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192 ADVANCE_LP_RING();
1193}
1194
1195static int i810_dma_mc(struct inode *inode, struct file *filp,
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001196 unsigned int cmd, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197{
1198 drm_file_t *priv = filp->private_data;
1199 drm_device_t *dev = priv->head->dev;
1200 drm_device_dma_t *dma = dev->dma;
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001201 drm_i810_private_t *dev_priv = (drm_i810_private_t *) dev->dev_private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202 u32 *hw_status = dev_priv->hw_status_page;
1203 drm_i810_sarea_t *sarea_priv = (drm_i810_sarea_t *)
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001204 dev_priv->sarea_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205 drm_i810_mc_t mc;
1206
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001207 if (copy_from_user(&mc, (drm_i810_mc_t __user *) arg, sizeof(mc)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208 return -EFAULT;
1209
1210 LOCK_TEST_WITH_RETURN(dev, filp);
1211
1212 if (mc.idx >= dma->buf_count || mc.idx < 0)
1213 return -EINVAL;
1214
1215 i810_dma_dispatch_mc(dev, dma->buflist[mc.idx], mc.used,
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001216 mc.last_render);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217
1218 atomic_add(mc.used, &dev->counts[_DRM_STAT_SECONDARY]);
1219 atomic_inc(&dev->counts[_DRM_STAT_DMA]);
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001220 sarea_priv->last_enqueue = dev_priv->counter - 1;
1221 sarea_priv->last_dispatch = (int)hw_status[5];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222
1223 return 0;
1224}
1225
1226static int i810_rstatus(struct inode *inode, struct file *filp,
1227 unsigned int cmd, unsigned long arg)
1228{
1229 drm_file_t *priv = filp->private_data;
1230 drm_device_t *dev = priv->head->dev;
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001231 drm_i810_private_t *dev_priv = (drm_i810_private_t *) dev->dev_private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001233 return (int)(((u32 *) (dev_priv->hw_status_page))[4]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234}
1235
1236static int i810_ov0_info(struct inode *inode, struct file *filp,
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001237 unsigned int cmd, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238{
1239 drm_file_t *priv = filp->private_data;
1240 drm_device_t *dev = priv->head->dev;
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001241 drm_i810_private_t *dev_priv = (drm_i810_private_t *) dev->dev_private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242 drm_i810_overlay_t data;
1243
1244 data.offset = dev_priv->overlay_offset;
1245 data.physical = dev_priv->overlay_physical;
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001246 if (copy_to_user
1247 ((drm_i810_overlay_t __user *) arg, &data, sizeof(data)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248 return -EFAULT;
1249 return 0;
1250}
1251
1252static int i810_fstatus(struct inode *inode, struct file *filp,
1253 unsigned int cmd, unsigned long arg)
1254{
1255 drm_file_t *priv = filp->private_data;
1256 drm_device_t *dev = priv->head->dev;
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001257 drm_i810_private_t *dev_priv = (drm_i810_private_t *) dev->dev_private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258
1259 LOCK_TEST_WITH_RETURN(dev, filp);
1260
1261 return I810_READ(0x30008);
1262}
1263
1264static int i810_ov0_flip(struct inode *inode, struct file *filp,
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001265 unsigned int cmd, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266{
1267 drm_file_t *priv = filp->private_data;
1268 drm_device_t *dev = priv->head->dev;
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001269 drm_i810_private_t *dev_priv = (drm_i810_private_t *) dev->dev_private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270
1271 LOCK_TEST_WITH_RETURN(dev, filp);
1272
1273 //Tell the overlay to update
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001274 I810_WRITE(0x30000, dev_priv->overlay_physical | 0x80000000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275
1276 return 0;
1277}
1278
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279/* Not sure why this isn't set all the time:
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001280 */
1281static void i810_do_init_pageflip(drm_device_t * dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282{
1283 drm_i810_private_t *dev_priv = dev->dev_private;
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001284
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285 DRM_DEBUG("%s\n", __FUNCTION__);
1286 dev_priv->page_flipping = 1;
1287 dev_priv->current_page = 0;
1288 dev_priv->sarea_priv->pf_current_page = dev_priv->current_page;
1289}
1290
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001291static int i810_do_cleanup_pageflip(drm_device_t * dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292{
1293 drm_i810_private_t *dev_priv = dev->dev_private;
1294
1295 DRM_DEBUG("%s\n", __FUNCTION__);
1296 if (dev_priv->current_page != 0)
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001297 i810_dma_dispatch_flip(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298
1299 dev_priv->page_flipping = 0;
1300 return 0;
1301}
1302
1303static int i810_flip_bufs(struct inode *inode, struct file *filp,
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001304 unsigned int cmd, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305{
1306 drm_file_t *priv = filp->private_data;
1307 drm_device_t *dev = priv->head->dev;
1308 drm_i810_private_t *dev_priv = dev->dev_private;
1309
1310 DRM_DEBUG("%s\n", __FUNCTION__);
1311
1312 LOCK_TEST_WITH_RETURN(dev, filp);
1313
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001314 if (!dev_priv->page_flipping)
1315 i810_do_init_pageflip(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001317 i810_dma_dispatch_flip(dev);
1318 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319}
1320
Dave Airlie22eae942005-11-10 22:16:34 +11001321int i810_driver_load(drm_device_t *dev, unsigned long flags)
1322{
1323 /* i810 has 4 more counters */
1324 dev->counters += 4;
1325 dev->types[6] = _DRM_STAT_IRQ;
1326 dev->types[7] = _DRM_STAT_PRIMARY;
1327 dev->types[8] = _DRM_STAT_SECONDARY;
1328 dev->types[9] = _DRM_STAT_DMA;
1329
1330 return 0;
1331}
1332
1333void i810_driver_lastclose(drm_device_t * dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334{
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001335 i810_dma_cleanup(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336}
1337
Dave Airlie22eae942005-11-10 22:16:34 +11001338void i810_driver_preclose(drm_device_t * dev, DRMFILE filp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339{
1340 if (dev->dev_private) {
1341 drm_i810_private_t *dev_priv = dev->dev_private;
1342 if (dev_priv->page_flipping) {
1343 i810_do_cleanup_pageflip(dev);
1344 }
1345 }
1346}
1347
Dave Airlie22eae942005-11-10 22:16:34 +11001348void i810_driver_reclaim_buffers_locked(drm_device_t * dev, struct file *filp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349{
1350 i810_reclaim_buffers(dev, filp);
1351}
1352
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001353int i810_driver_dma_quiescent(drm_device_t * dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354{
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001355 i810_dma_quiescent(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356 return 0;
1357}
1358
1359drm_ioctl_desc_t i810_ioctls[] = {
Dave Airliea7a2cc32006-01-02 13:54:04 +11001360 [DRM_IOCTL_NR(DRM_I810_INIT)] = {i810_dma_init, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY},
1361 [DRM_IOCTL_NR(DRM_I810_VERTEX)] = {i810_dma_vertex, DRM_AUTH},
1362 [DRM_IOCTL_NR(DRM_I810_CLEAR)] = {i810_clear_bufs, DRM_AUTH},
1363 [DRM_IOCTL_NR(DRM_I810_FLUSH)] = {i810_flush_ioctl, DRM_AUTH},
1364 [DRM_IOCTL_NR(DRM_I810_GETAGE)] = {i810_getage, DRM_AUTH},
1365 [DRM_IOCTL_NR(DRM_I810_GETBUF)] = {i810_getbuf, DRM_AUTH},
1366 [DRM_IOCTL_NR(DRM_I810_SWAP)] = {i810_swap_bufs, DRM_AUTH},
1367 [DRM_IOCTL_NR(DRM_I810_COPY)] = {i810_copybuf, DRM_AUTH},
1368 [DRM_IOCTL_NR(DRM_I810_DOCOPY)] = {i810_docopy, DRM_AUTH},
1369 [DRM_IOCTL_NR(DRM_I810_OV0INFO)] = {i810_ov0_info, DRM_AUTH},
1370 [DRM_IOCTL_NR(DRM_I810_FSTATUS)] = {i810_fstatus, DRM_AUTH},
1371 [DRM_IOCTL_NR(DRM_I810_OV0FLIP)] = {i810_ov0_flip, DRM_AUTH},
1372 [DRM_IOCTL_NR(DRM_I810_MC)] = {i810_dma_mc, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY},
1373 [DRM_IOCTL_NR(DRM_I810_RSTATUS)] = {i810_rstatus, DRM_AUTH},
1374 [DRM_IOCTL_NR(DRM_I810_FLIP)] = {i810_flip_bufs, DRM_AUTH}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375};
1376
1377int i810_max_ioctl = DRM_ARRAY_SIZE(i810_ioctls);
Dave Airliecda17382005-07-10 17:31:26 +10001378
1379/**
1380 * Determine if the device really is AGP or not.
1381 *
1382 * All Intel graphics chipsets are treated as AGP, even if they are really
1383 * PCI-e.
1384 *
1385 * \param dev The device to be tested.
1386 *
1387 * \returns
1388 * A value of 1 is always retured to indictate every i810 is AGP.
1389 */
1390int i810_driver_device_is_agp(drm_device_t * dev)
1391{
1392 return 1;
1393}