blob: 603d17fd2d6912e556250a758b7e3336b96bb3b4 [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
Arjan van de Ven2b8693c2007-02-12 00:55:32 -0800115static const 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;
Denis Vlasenkoc7aed172006-08-16 11:54:07 +1000144 if (IS_ERR(buf_priv->virtual)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 /* Real error */
146 DRM_ERROR("mmap error\n");
Denis Vlasenkoc7aed172006-08-16 11:54:07 +1000147 retcode = PTR_ERR(buf_priv->virtual);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 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 Airlieb9094d32007-01-08 21:31:13 +1100222 drm_core_ioremapfree(&dev_priv->ring.map, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 }
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000224 if (dev_priv->hw_status_page) {
225 pci_free_consistent(dev->pdev, PAGE_SIZE,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 dev_priv->hw_status_page,
227 dev_priv->dma_status_page);
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000228 /* Need to rewrite hardware status page */
229 I810_WRITE(0x02080, 0x1ffff000);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 }
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000231 drm_free(dev->dev_private, sizeof(drm_i810_private_t),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 DRM_MEM_DRIVER);
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000233 dev->dev_private = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234
235 for (i = 0; i < dma->buf_count; i++) {
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000236 drm_buf_t *buf = dma->buflist[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 drm_i810_buf_priv_t *buf_priv = buf->dev_private;
Dave Airlieb9094d32007-01-08 21:31:13 +1100238
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000239 if (buf_priv->kernel_virtual && buf->total)
Dave Airlieb9094d32007-01-08 21:31:13 +1100240 drm_core_ioremapfree(&buf_priv->map, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 }
242 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 return 0;
244}
245
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000246static int i810_wait_ring(drm_device_t * dev, int n)
247{
248 drm_i810_private_t *dev_priv = dev->dev_private;
249 drm_i810_ring_buffer_t *ring = &(dev_priv->ring);
250 int iters = 0;
251 unsigned long end;
252 unsigned int last_head = I810_READ(LP_RING + RING_HEAD) & HEAD_ADDR;
253
254 end = jiffies + (HZ * 3);
255 while (ring->space < n) {
256 ring->head = I810_READ(LP_RING + RING_HEAD) & HEAD_ADDR;
257 ring->space = ring->head - (ring->tail + 8);
258 if (ring->space < 0)
259 ring->space += ring->Size;
260
261 if (ring->head != last_head) {
262 end = jiffies + (HZ * 3);
263 last_head = ring->head;
264 }
265
266 iters++;
267 if (time_before(end, jiffies)) {
268 DRM_ERROR("space: %d wanted %d\n", ring->space, n);
269 DRM_ERROR("lockup\n");
270 goto out_wait_ring;
271 }
272 udelay(1);
273 }
274
275 out_wait_ring:
276 return iters;
277}
278
279static void i810_kernel_lost_context(drm_device_t * dev)
280{
281 drm_i810_private_t *dev_priv = dev->dev_private;
282 drm_i810_ring_buffer_t *ring = &(dev_priv->ring);
283
284 ring->head = I810_READ(LP_RING + RING_HEAD) & HEAD_ADDR;
285 ring->tail = I810_READ(LP_RING + RING_TAIL);
286 ring->space = ring->head - (ring->tail + 8);
287 if (ring->space < 0)
288 ring->space += ring->Size;
289}
290
291static int i810_freelist_init(drm_device_t * dev, drm_i810_private_t * dev_priv)
292{
293 drm_device_dma_t *dma = dev->dma;
294 int my_idx = 24;
295 u32 *hw_status = (u32 *) (dev_priv->hw_status_page + my_idx);
296 int i;
297
298 if (dma->buf_count > 1019) {
299 /* Not enough space in the status page for the freelist */
300 return -EINVAL;
301 }
302
303 for (i = 0; i < dma->buf_count; i++) {
304 drm_buf_t *buf = dma->buflist[i];
305 drm_i810_buf_priv_t *buf_priv = buf->dev_private;
306
307 buf_priv->in_use = hw_status++;
308 buf_priv->my_use_idx = my_idx;
309 my_idx += 4;
310
311 *buf_priv->in_use = I810_BUF_FREE;
312
Dave Airlieb9094d32007-01-08 21:31:13 +1100313 buf_priv->map.offset = buf->bus_address;
314 buf_priv->map.size = buf->total;
315 buf_priv->map.type = _DRM_AGP;
316 buf_priv->map.flags = 0;
317 buf_priv->map.mtrr = 0;
318
319 drm_core_ioremap(&buf_priv->map, dev);
320 buf_priv->kernel_virtual = buf_priv->map.handle;
321
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000322 }
323 return 0;
324}
325
326static int i810_dma_initialize(drm_device_t * dev,
327 drm_i810_private_t * dev_priv,
328 drm_i810_init_t * init)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329{
330 struct list_head *list;
331
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000332 memset(dev_priv, 0, sizeof(drm_i810_private_t));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333
334 list_for_each(list, &dev->maplist->head) {
335 drm_map_list_t *r_list = list_entry(list, drm_map_list_t, head);
336 if (r_list->map &&
337 r_list->map->type == _DRM_SHM &&
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000338 r_list->map->flags & _DRM_CONTAINS_LOCK) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 dev_priv->sarea_map = r_list->map;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000340 break;
341 }
342 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 if (!dev_priv->sarea_map) {
344 dev->dev_private = (void *)dev_priv;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000345 i810_dma_cleanup(dev);
346 DRM_ERROR("can not find sarea!\n");
347 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 }
349 dev_priv->mmio_map = drm_core_findmap(dev, init->mmio_offset);
350 if (!dev_priv->mmio_map) {
351 dev->dev_private = (void *)dev_priv;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000352 i810_dma_cleanup(dev);
353 DRM_ERROR("can not find mmio map!\n");
354 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 }
Dave Airlied1f2b552005-08-05 22:11:22 +1000356 dev->agp_buffer_token = init->buffers_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 dev->agp_buffer_map = drm_core_findmap(dev, init->buffers_offset);
358 if (!dev->agp_buffer_map) {
359 dev->dev_private = (void *)dev_priv;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000360 i810_dma_cleanup(dev);
361 DRM_ERROR("can not find dma buffer map!\n");
362 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 }
364
365 dev_priv->sarea_priv = (drm_i810_sarea_t *)
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000366 ((u8 *) dev_priv->sarea_map->handle + init->sarea_priv_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000368 dev_priv->ring.Start = init->ring_start;
369 dev_priv->ring.End = init->ring_end;
370 dev_priv->ring.Size = init->ring_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371
Dave Airlieb9094d32007-01-08 21:31:13 +1100372 dev_priv->ring.map.offset = dev->agp->base + init->ring_start;
373 dev_priv->ring.map.size = init->ring_size;
374 dev_priv->ring.map.type = _DRM_AGP;
375 dev_priv->ring.map.flags = 0;
376 dev_priv->ring.map.mtrr = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377
Dave Airlieb9094d32007-01-08 21:31:13 +1100378 drm_core_ioremap(&dev_priv->ring.map, dev);
379
380 if (dev_priv->ring.map.handle == NULL) {
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000381 dev->dev_private = (void *)dev_priv;
382 i810_dma_cleanup(dev);
383 DRM_ERROR("can not ioremap virtual address for"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 " ring buffer\n");
Dave Airlieb9094d32007-01-08 21:31:13 +1100385 return DRM_ERR(ENOMEM);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 }
387
Dave Airlieb9094d32007-01-08 21:31:13 +1100388 dev_priv->ring.virtual_start = dev_priv->ring.map.handle;
389
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000390 dev_priv->ring.tail_mask = dev_priv->ring.Size - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391
392 dev_priv->w = init->w;
393 dev_priv->h = init->h;
394 dev_priv->pitch = init->pitch;
395 dev_priv->back_offset = init->back_offset;
396 dev_priv->depth_offset = init->depth_offset;
397 dev_priv->front_offset = init->front_offset;
398
399 dev_priv->overlay_offset = init->overlay_offset;
400 dev_priv->overlay_physical = init->overlay_physical;
401
402 dev_priv->front_di1 = init->front_offset | init->pitch_bits;
403 dev_priv->back_di1 = init->back_offset | init->pitch_bits;
404 dev_priv->zi1 = init->depth_offset | init->pitch_bits;
405
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000406 /* Program Hardware Status Page */
407 dev_priv->hw_status_page =
408 pci_alloc_consistent(dev->pdev, PAGE_SIZE,
409 &dev_priv->dma_status_page);
410 if (!dev_priv->hw_status_page) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 dev->dev_private = (void *)dev_priv;
412 i810_dma_cleanup(dev);
413 DRM_ERROR("Can not allocate hardware status page\n");
414 return -ENOMEM;
415 }
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000416 memset(dev_priv->hw_status_page, 0, PAGE_SIZE);
417 DRM_DEBUG("hw status page @ %p\n", dev_priv->hw_status_page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418
419 I810_WRITE(0x02080, dev_priv->dma_status_page);
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000420 DRM_DEBUG("Enabled hardware status page\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000422 /* Now we need to init our freelist */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 if (i810_freelist_init(dev, dev_priv) != 0) {
424 dev->dev_private = (void *)dev_priv;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000425 i810_dma_cleanup(dev);
426 DRM_ERROR("Not enough space in the status page for"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 " the freelist\n");
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000428 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429 }
430 dev->dev_private = (void *)dev_priv;
431
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000432 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433}
434
435/* i810 DRM version 1.1 used a smaller init structure with different
436 * ordering of values than is currently used (drm >= 1.2). There is
437 * no defined way to detect the XFree version to correct this problem,
438 * however by checking using this procedure we can detect the correct
439 * thing to do.
440 *
441 * #1 Read the Smaller init structure from user-space
442 * #2 Verify the overlay_physical is a valid physical address, or NULL
443 * If it isn't then we have a v1.1 client. Fix up params.
444 * If it is, then we have a 1.2 client... get the rest of the data.
445 */
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000446static int i810_dma_init_compat(drm_i810_init_t * init, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447{
448
449 /* Get v1.1 init data */
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000450 if (copy_from_user(init, (drm_i810_pre12_init_t __user *) arg,
451 sizeof(drm_i810_pre12_init_t))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 return -EFAULT;
453 }
454
455 if ((!init->overlay_physical) || (init->overlay_physical > 4096)) {
456
457 /* This is a v1.2 client, just get the v1.2 init data */
458 DRM_INFO("Using POST v1.2 init.\n");
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000459 if (copy_from_user(init, (drm_i810_init_t __user *) arg,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 sizeof(drm_i810_init_t))) {
461 return -EFAULT;
462 }
463 } else {
464
465 /* This is a v1.1 client, fix the params */
466 DRM_INFO("Using PRE v1.2 init.\n");
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000467 init->pitch_bits = init->h;
468 init->pitch = init->w;
469 init->h = init->overlay_physical;
470 init->w = init->overlay_offset;
471 init->overlay_physical = 0;
472 init->overlay_offset = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 }
474
475 return 0;
476}
477
478static int i810_dma_init(struct inode *inode, struct file *filp,
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000479 unsigned int cmd, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480{
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000481 drm_file_t *priv = filp->private_data;
482 drm_device_t *dev = priv->head->dev;
483 drm_i810_private_t *dev_priv;
484 drm_i810_init_t init;
485 int retcode = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486
487 /* Get only the init func */
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000488 if (copy_from_user
489 (&init, (void __user *)arg, sizeof(drm_i810_init_func_t)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 return -EFAULT;
491
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000492 switch (init.func) {
493 case I810_INIT_DMA:
494 /* This case is for backward compatibility. It
495 * handles XFree 4.1.0 and 4.2.0, and has to
496 * do some parameter checking as described below.
497 * It will someday go away.
498 */
499 retcode = i810_dma_init_compat(&init, arg);
500 if (retcode)
501 return retcode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000503 dev_priv = drm_alloc(sizeof(drm_i810_private_t),
504 DRM_MEM_DRIVER);
505 if (dev_priv == NULL)
506 return -ENOMEM;
507 retcode = i810_dma_initialize(dev, dev_priv, &init);
508 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000510 default:
511 case I810_INIT_DMA_1_4:
512 DRM_INFO("Using v1.4 init.\n");
513 if (copy_from_user(&init, (drm_i810_init_t __user *) arg,
514 sizeof(drm_i810_init_t))) {
515 return -EFAULT;
516 }
517 dev_priv = drm_alloc(sizeof(drm_i810_private_t),
518 DRM_MEM_DRIVER);
519 if (dev_priv == NULL)
520 return -ENOMEM;
521 retcode = i810_dma_initialize(dev, dev_priv, &init);
522 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000524 case I810_CLEANUP_DMA:
525 DRM_INFO("DMA Cleanup\n");
526 retcode = i810_dma_cleanup(dev);
527 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 }
529
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000530 return retcode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531}
532
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533/* Most efficient way to verify state for the i810 is as it is
534 * emitted. Non-conformant state is silently dropped.
535 *
536 * Use 'volatile' & local var tmp to force the emitted values to be
537 * identical to the verified ones.
538 */
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000539static void i810EmitContextVerified(drm_device_t * dev,
540 volatile unsigned int *code)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541{
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000542 drm_i810_private_t *dev_priv = dev->dev_private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 int i, j = 0;
544 unsigned int tmp;
545 RING_LOCALS;
546
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000547 BEGIN_LP_RING(I810_CTX_SETUP_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000549 OUT_RING(GFX_OP_COLOR_FACTOR);
550 OUT_RING(code[I810_CTXREG_CF1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000552 OUT_RING(GFX_OP_STIPPLE);
553 OUT_RING(code[I810_CTXREG_ST1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000555 for (i = 4; i < I810_CTX_SETUP_SIZE; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 tmp = code[i];
557
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000558 if ((tmp & (7 << 29)) == (3 << 29) &&
559 (tmp & (0x1f << 24)) < (0x1d << 24)) {
560 OUT_RING(tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 j++;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000562 } else
563 printk("constext state dropped!!!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 }
565
566 if (j & 1)
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000567 OUT_RING(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568
569 ADVANCE_LP_RING();
570}
571
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000572static void i810EmitTexVerified(drm_device_t * dev, volatile unsigned int *code)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573{
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000574 drm_i810_private_t *dev_priv = dev->dev_private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 int i, j = 0;
576 unsigned int tmp;
577 RING_LOCALS;
578
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000579 BEGIN_LP_RING(I810_TEX_SETUP_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000581 OUT_RING(GFX_OP_MAP_INFO);
582 OUT_RING(code[I810_TEXREG_MI1]);
583 OUT_RING(code[I810_TEXREG_MI2]);
584 OUT_RING(code[I810_TEXREG_MI3]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000586 for (i = 4; i < I810_TEX_SETUP_SIZE; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 tmp = code[i];
588
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000589 if ((tmp & (7 << 29)) == (3 << 29) &&
590 (tmp & (0x1f << 24)) < (0x1d << 24)) {
591 OUT_RING(tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 j++;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000593 } else
594 printk("texture state dropped!!!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595 }
596
597 if (j & 1)
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000598 OUT_RING(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599
600 ADVANCE_LP_RING();
601}
602
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603/* Need to do some additional checking when setting the dest buffer.
604 */
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000605static void i810EmitDestVerified(drm_device_t * dev,
606 volatile unsigned int *code)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607{
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000608 drm_i810_private_t *dev_priv = dev->dev_private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609 unsigned int tmp;
610 RING_LOCALS;
611
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000612 BEGIN_LP_RING(I810_DEST_SETUP_SIZE + 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613
614 tmp = code[I810_DESTREG_DI1];
615 if (tmp == dev_priv->front_di1 || tmp == dev_priv->back_di1) {
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000616 OUT_RING(CMD_OP_DESTBUFFER_INFO);
617 OUT_RING(tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618 } else
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000619 DRM_DEBUG("bad di1 %x (allow %x or %x)\n",
620 tmp, dev_priv->front_di1, dev_priv->back_di1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621
622 /* invarient:
623 */
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000624 OUT_RING(CMD_OP_Z_BUFFER_INFO);
625 OUT_RING(dev_priv->zi1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000627 OUT_RING(GFX_OP_DESTBUFFER_VARS);
628 OUT_RING(code[I810_DESTREG_DV1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000630 OUT_RING(GFX_OP_DRAWRECT_INFO);
631 OUT_RING(code[I810_DESTREG_DR1]);
632 OUT_RING(code[I810_DESTREG_DR2]);
633 OUT_RING(code[I810_DESTREG_DR3]);
634 OUT_RING(code[I810_DESTREG_DR4]);
635 OUT_RING(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636
637 ADVANCE_LP_RING();
638}
639
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000640static void i810EmitState(drm_device_t * dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641{
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000642 drm_i810_private_t *dev_priv = dev->dev_private;
643 drm_i810_sarea_t *sarea_priv = dev_priv->sarea_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644 unsigned int dirty = sarea_priv->dirty;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000645
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646 DRM_DEBUG("%s %x\n", __FUNCTION__, dirty);
647
648 if (dirty & I810_UPLOAD_BUFFERS) {
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000649 i810EmitDestVerified(dev, sarea_priv->BufferState);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650 sarea_priv->dirty &= ~I810_UPLOAD_BUFFERS;
651 }
652
653 if (dirty & I810_UPLOAD_CTX) {
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000654 i810EmitContextVerified(dev, sarea_priv->ContextState);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655 sarea_priv->dirty &= ~I810_UPLOAD_CTX;
656 }
657
658 if (dirty & I810_UPLOAD_TEX0) {
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000659 i810EmitTexVerified(dev, sarea_priv->TexState[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660 sarea_priv->dirty &= ~I810_UPLOAD_TEX0;
661 }
662
663 if (dirty & I810_UPLOAD_TEX1) {
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000664 i810EmitTexVerified(dev, sarea_priv->TexState[1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665 sarea_priv->dirty &= ~I810_UPLOAD_TEX1;
666 }
667}
668
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669/* need to verify
670 */
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000671static void i810_dma_dispatch_clear(drm_device_t * dev, int flags,
672 unsigned int clear_color,
673 unsigned int clear_zval)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674{
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000675 drm_i810_private_t *dev_priv = dev->dev_private;
676 drm_i810_sarea_t *sarea_priv = dev_priv->sarea_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 int nbox = sarea_priv->nbox;
678 drm_clip_rect_t *pbox = sarea_priv->boxes;
679 int pitch = dev_priv->pitch;
680 int cpp = 2;
681 int i;
682 RING_LOCALS;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000683
684 if (dev_priv->current_page == 1) {
685 unsigned int tmp = flags;
686
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687 flags &= ~(I810_FRONT | I810_BACK);
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000688 if (tmp & I810_FRONT)
689 flags |= I810_BACK;
690 if (tmp & I810_BACK)
691 flags |= I810_FRONT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692 }
693
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000694 i810_kernel_lost_context(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000696 if (nbox > I810_NR_SAREA_CLIPRECTS)
697 nbox = I810_NR_SAREA_CLIPRECTS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000699 for (i = 0; i < nbox; i++, pbox++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700 unsigned int x = pbox->x1;
701 unsigned int y = pbox->y1;
702 unsigned int width = (pbox->x2 - x) * cpp;
703 unsigned int height = pbox->y2 - y;
704 unsigned int start = y * pitch + x * cpp;
705
706 if (pbox->x1 > pbox->x2 ||
707 pbox->y1 > pbox->y2 ||
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000708 pbox->x2 > dev_priv->w || pbox->y2 > dev_priv->h)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709 continue;
710
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000711 if (flags & I810_FRONT) {
712 BEGIN_LP_RING(6);
713 OUT_RING(BR00_BITBLT_CLIENT | BR00_OP_COLOR_BLT | 0x3);
714 OUT_RING(BR13_SOLID_PATTERN | (0xF0 << 16) | pitch);
715 OUT_RING((height << 16) | width);
716 OUT_RING(start);
717 OUT_RING(clear_color);
718 OUT_RING(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 ADVANCE_LP_RING();
720 }
721
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000722 if (flags & I810_BACK) {
723 BEGIN_LP_RING(6);
724 OUT_RING(BR00_BITBLT_CLIENT | BR00_OP_COLOR_BLT | 0x3);
725 OUT_RING(BR13_SOLID_PATTERN | (0xF0 << 16) | pitch);
726 OUT_RING((height << 16) | width);
727 OUT_RING(dev_priv->back_offset + start);
728 OUT_RING(clear_color);
729 OUT_RING(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730 ADVANCE_LP_RING();
731 }
732
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000733 if (flags & I810_DEPTH) {
734 BEGIN_LP_RING(6);
735 OUT_RING(BR00_BITBLT_CLIENT | BR00_OP_COLOR_BLT | 0x3);
736 OUT_RING(BR13_SOLID_PATTERN | (0xF0 << 16) | pitch);
737 OUT_RING((height << 16) | width);
738 OUT_RING(dev_priv->depth_offset + start);
739 OUT_RING(clear_zval);
740 OUT_RING(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741 ADVANCE_LP_RING();
742 }
743 }
744}
745
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000746static void i810_dma_dispatch_swap(drm_device_t * dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747{
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000748 drm_i810_private_t *dev_priv = dev->dev_private;
749 drm_i810_sarea_t *sarea_priv = dev_priv->sarea_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750 int nbox = sarea_priv->nbox;
751 drm_clip_rect_t *pbox = sarea_priv->boxes;
752 int pitch = dev_priv->pitch;
753 int cpp = 2;
754 int i;
755 RING_LOCALS;
756
757 DRM_DEBUG("swapbuffers\n");
758
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000759 i810_kernel_lost_context(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000761 if (nbox > I810_NR_SAREA_CLIPRECTS)
762 nbox = I810_NR_SAREA_CLIPRECTS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000764 for (i = 0; i < nbox; i++, pbox++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765 unsigned int w = pbox->x2 - pbox->x1;
766 unsigned int h = pbox->y2 - pbox->y1;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000767 unsigned int dst = pbox->x1 * cpp + pbox->y1 * pitch;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768 unsigned int start = dst;
769
770 if (pbox->x1 > pbox->x2 ||
771 pbox->y1 > pbox->y2 ||
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000772 pbox->x2 > dev_priv->w || pbox->y2 > dev_priv->h)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773 continue;
774
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000775 BEGIN_LP_RING(6);
776 OUT_RING(BR00_BITBLT_CLIENT | BR00_OP_SRC_COPY_BLT | 0x4);
777 OUT_RING(pitch | (0xCC << 16));
778 OUT_RING((h << 16) | (w * cpp));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779 if (dev_priv->current_page == 0)
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000780 OUT_RING(dev_priv->front_offset + start);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781 else
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000782 OUT_RING(dev_priv->back_offset + start);
783 OUT_RING(pitch);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784 if (dev_priv->current_page == 0)
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000785 OUT_RING(dev_priv->back_offset + start);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786 else
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000787 OUT_RING(dev_priv->front_offset + start);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788 ADVANCE_LP_RING();
789 }
790}
791
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000792static void i810_dma_dispatch_vertex(drm_device_t * dev,
793 drm_buf_t * buf, int discard, int used)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794{
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000795 drm_i810_private_t *dev_priv = dev->dev_private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796 drm_i810_buf_priv_t *buf_priv = buf->dev_private;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000797 drm_i810_sarea_t *sarea_priv = dev_priv->sarea_priv;
798 drm_clip_rect_t *box = sarea_priv->boxes;
799 int nbox = sarea_priv->nbox;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800 unsigned long address = (unsigned long)buf->bus_address;
801 unsigned long start = address - dev->agp->base;
802 int i = 0;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000803 RING_LOCALS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000805 i810_kernel_lost_context(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000807 if (nbox > I810_NR_SAREA_CLIPRECTS)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808 nbox = I810_NR_SAREA_CLIPRECTS;
809
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000810 if (used > 4 * 1024)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811 used = 0;
812
813 if (sarea_priv->dirty)
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000814 i810EmitState(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815
816 if (buf_priv->currently_mapped == I810_BUF_MAPPED) {
817 unsigned int prim = (sarea_priv->vertex_prim & PR_MASK);
818
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000819 *(u32 *) buf_priv->kernel_virtual =
820 ((GFX_OP_PRIMITIVE | prim | ((used / 4) - 2)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821
822 if (used & 4) {
Denis Vlasenkoc7aed172006-08-16 11:54:07 +1000823 *(u32 *) ((char *) buf_priv->kernel_virtual + used) = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824 used += 4;
825 }
826
827 i810_unmap_buffer(buf);
828 }
829
830 if (used) {
831 do {
832 if (i < nbox) {
833 BEGIN_LP_RING(4);
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000834 OUT_RING(GFX_OP_SCISSOR | SC_UPDATE_SCISSOR |
835 SC_ENABLE);
836 OUT_RING(GFX_OP_SCISSOR_INFO);
837 OUT_RING(box[i].x1 | (box[i].y1 << 16));
838 OUT_RING((box[i].x2 -
839 1) | ((box[i].y2 - 1) << 16));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840 ADVANCE_LP_RING();
841 }
842
843 BEGIN_LP_RING(4);
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000844 OUT_RING(CMD_OP_BATCH_BUFFER);
845 OUT_RING(start | BB1_PROTECTED);
846 OUT_RING(start + used - 4);
847 OUT_RING(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848 ADVANCE_LP_RING();
849
850 } while (++i < nbox);
851 }
852
853 if (discard) {
854 dev_priv->counter++;
855
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000856 (void)cmpxchg(buf_priv->in_use, I810_BUF_CLIENT,
857 I810_BUF_HARDWARE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858
859 BEGIN_LP_RING(8);
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000860 OUT_RING(CMD_STORE_DWORD_IDX);
861 OUT_RING(20);
862 OUT_RING(dev_priv->counter);
863 OUT_RING(CMD_STORE_DWORD_IDX);
864 OUT_RING(buf_priv->my_use_idx);
865 OUT_RING(I810_BUF_FREE);
866 OUT_RING(CMD_REPORT_HEAD);
867 OUT_RING(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868 ADVANCE_LP_RING();
869 }
870}
871
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000872static void i810_dma_dispatch_flip(drm_device_t * dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873{
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000874 drm_i810_private_t *dev_priv = dev->dev_private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875 int pitch = dev_priv->pitch;
876 RING_LOCALS;
877
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000878 DRM_DEBUG("%s: page=%d pfCurrentPage=%d\n",
879 __FUNCTION__,
880 dev_priv->current_page,
881 dev_priv->sarea_priv->pf_current_page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000883 i810_kernel_lost_context(dev);
884
885 BEGIN_LP_RING(2);
886 OUT_RING(INST_PARSER_CLIENT | INST_OP_FLUSH | INST_FLUSH_MAP_CACHE);
887 OUT_RING(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888 ADVANCE_LP_RING();
889
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000890 BEGIN_LP_RING(I810_DEST_SETUP_SIZE + 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891 /* On i815 at least ASYNC is buggy */
892 /* pitch<<5 is from 11.2.8 p158,
893 its the pitch / 8 then left shifted 8,
894 so (pitch >> 3) << 8 */
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000895 OUT_RING(CMD_OP_FRONTBUFFER_INFO | (pitch << 5) /*| ASYNC_FLIP */ );
896 if (dev_priv->current_page == 0) {
897 OUT_RING(dev_priv->back_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898 dev_priv->current_page = 1;
899 } else {
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000900 OUT_RING(dev_priv->front_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901 dev_priv->current_page = 0;
902 }
903 OUT_RING(0);
904 ADVANCE_LP_RING();
905
906 BEGIN_LP_RING(2);
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000907 OUT_RING(CMD_OP_WAIT_FOR_EVENT | WAIT_FOR_PLANE_A_FLIP);
908 OUT_RING(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909 ADVANCE_LP_RING();
910
911 /* Increment the frame counter. The client-side 3D driver must
912 * throttle the framerate by waiting for this value before
913 * performing the swapbuffer ioctl.
914 */
915 dev_priv->sarea_priv->pf_current_page = dev_priv->current_page;
916
917}
918
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000919static void i810_dma_quiescent(drm_device_t * dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920{
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000921 drm_i810_private_t *dev_priv = dev->dev_private;
922 RING_LOCALS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923
924/* printk("%s\n", __FUNCTION__); */
925
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000926 i810_kernel_lost_context(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000928 BEGIN_LP_RING(4);
929 OUT_RING(INST_PARSER_CLIENT | INST_OP_FLUSH | INST_FLUSH_MAP_CACHE);
930 OUT_RING(CMD_REPORT_HEAD);
931 OUT_RING(0);
932 OUT_RING(0);
933 ADVANCE_LP_RING();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000935 i810_wait_ring(dev, dev_priv->ring.Size - 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936}
937
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000938static int i810_flush_queue(drm_device_t * dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939{
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000940 drm_i810_private_t *dev_priv = dev->dev_private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941 drm_device_dma_t *dma = dev->dma;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000942 int i, ret = 0;
943 RING_LOCALS;
944
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945/* printk("%s\n", __FUNCTION__); */
946
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000947 i810_kernel_lost_context(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000949 BEGIN_LP_RING(2);
950 OUT_RING(CMD_REPORT_HEAD);
951 OUT_RING(0);
952 ADVANCE_LP_RING();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000954 i810_wait_ring(dev, dev_priv->ring.Size - 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000956 for (i = 0; i < dma->buf_count; i++) {
957 drm_buf_t *buf = dma->buflist[i];
958 drm_i810_buf_priv_t *buf_priv = buf->dev_private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959
960 int used = cmpxchg(buf_priv->in_use, I810_BUF_HARDWARE,
961 I810_BUF_FREE);
962
963 if (used == I810_BUF_HARDWARE)
964 DRM_DEBUG("reclaimed from HARDWARE\n");
965 if (used == I810_BUF_CLIENT)
966 DRM_DEBUG("still on client\n");
967 }
968
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000969 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970}
971
972/* Must be called with the lock held */
Dave Airliece60fe02006-02-02 19:21:38 +1100973static void i810_reclaim_buffers(drm_device_t * dev, struct file *filp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974{
975 drm_device_dma_t *dma = dev->dma;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000976 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000978 if (!dma)
979 return;
980 if (!dev->dev_private)
981 return;
982 if (!dma->buflist)
983 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000985 i810_flush_queue(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986
987 for (i = 0; i < dma->buf_count; i++) {
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000988 drm_buf_t *buf = dma->buflist[i];
989 drm_i810_buf_priv_t *buf_priv = buf->dev_private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990
991 if (buf->filp == filp && buf_priv) {
992 int used = cmpxchg(buf_priv->in_use, I810_BUF_CLIENT,
993 I810_BUF_FREE);
994
995 if (used == I810_BUF_CLIENT)
996 DRM_DEBUG("reclaimed from client\n");
997 if (buf_priv->currently_mapped == I810_BUF_MAPPED)
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000998 buf_priv->currently_mapped = I810_BUF_UNMAPPED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999 }
1000 }
1001}
1002
Dave Airliec94f7022005-07-07 21:03:38 +10001003static int i810_flush_ioctl(struct inode *inode, struct file *filp,
1004 unsigned int cmd, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005{
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001006 drm_file_t *priv = filp->private_data;
1007 drm_device_t *dev = priv->head->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008
1009 LOCK_TEST_WITH_RETURN(dev, filp);
1010
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001011 i810_flush_queue(dev);
1012 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013}
1014
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015static int i810_dma_vertex(struct inode *inode, struct file *filp,
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001016 unsigned int cmd, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017{
1018 drm_file_t *priv = filp->private_data;
1019 drm_device_t *dev = priv->head->dev;
1020 drm_device_dma_t *dma = dev->dma;
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001021 drm_i810_private_t *dev_priv = (drm_i810_private_t *) dev->dev_private;
1022 u32 *hw_status = dev_priv->hw_status_page;
1023 drm_i810_sarea_t *sarea_priv = (drm_i810_sarea_t *)
1024 dev_priv->sarea_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025 drm_i810_vertex_t vertex;
1026
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001027 if (copy_from_user
1028 (&vertex, (drm_i810_vertex_t __user *) arg, sizeof(vertex)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029 return -EFAULT;
1030
1031 LOCK_TEST_WITH_RETURN(dev, filp);
1032
1033 DRM_DEBUG("i810 dma vertex, idx %d used %d discard %d\n",
1034 vertex.idx, vertex.used, vertex.discard);
1035
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001036 if (vertex.idx < 0 || vertex.idx > dma->buf_count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037 return -EINVAL;
1038
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001039 i810_dma_dispatch_vertex(dev,
1040 dma->buflist[vertex.idx],
1041 vertex.discard, vertex.used);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001043 atomic_add(vertex.used, &dev->counts[_DRM_STAT_SECONDARY]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044 atomic_inc(&dev->counts[_DRM_STAT_DMA]);
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001045 sarea_priv->last_enqueue = dev_priv->counter - 1;
1046 sarea_priv->last_dispatch = (int)hw_status[5];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047
1048 return 0;
1049}
1050
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051static int i810_clear_bufs(struct inode *inode, struct file *filp,
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001052 unsigned int cmd, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053{
1054 drm_file_t *priv = filp->private_data;
1055 drm_device_t *dev = priv->head->dev;
1056 drm_i810_clear_t clear;
1057
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001058 if (copy_from_user
1059 (&clear, (drm_i810_clear_t __user *) arg, sizeof(clear)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060 return -EFAULT;
1061
1062 LOCK_TEST_WITH_RETURN(dev, filp);
1063
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001064 /* GH: Someone's doing nasty things... */
1065 if (!dev->dev_private) {
1066 return -EINVAL;
1067 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001069 i810_dma_dispatch_clear(dev, clear.flags,
1070 clear.clear_color, clear.clear_depth);
1071 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072}
1073
1074static int i810_swap_bufs(struct inode *inode, struct file *filp,
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001075 unsigned int cmd, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076{
1077 drm_file_t *priv = filp->private_data;
1078 drm_device_t *dev = priv->head->dev;
1079
1080 DRM_DEBUG("i810_swap_bufs\n");
1081
1082 LOCK_TEST_WITH_RETURN(dev, filp);
1083
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001084 i810_dma_dispatch_swap(dev);
1085 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086}
1087
1088static int i810_getage(struct inode *inode, struct file *filp, unsigned int cmd,
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001089 unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090{
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001091 drm_file_t *priv = filp->private_data;
1092 drm_device_t *dev = priv->head->dev;
1093 drm_i810_private_t *dev_priv = (drm_i810_private_t *) dev->dev_private;
1094 u32 *hw_status = dev_priv->hw_status_page;
1095 drm_i810_sarea_t *sarea_priv = (drm_i810_sarea_t *)
1096 dev_priv->sarea_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001098 sarea_priv->last_dispatch = (int)hw_status[5];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099 return 0;
1100}
1101
1102static int i810_getbuf(struct inode *inode, struct file *filp, unsigned int cmd,
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001103 unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104{
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001105 drm_file_t *priv = filp->private_data;
1106 drm_device_t *dev = priv->head->dev;
1107 int retcode = 0;
1108 drm_i810_dma_t d;
1109 drm_i810_private_t *dev_priv = (drm_i810_private_t *) dev->dev_private;
1110 u32 *hw_status = dev_priv->hw_status_page;
1111 drm_i810_sarea_t *sarea_priv = (drm_i810_sarea_t *)
1112 dev_priv->sarea_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001114 if (copy_from_user(&d, (drm_i810_dma_t __user *) arg, sizeof(d)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115 return -EFAULT;
1116
1117 LOCK_TEST_WITH_RETURN(dev, filp);
1118
1119 d.granted = 0;
1120
1121 retcode = i810_dma_get_buffer(dev, &d, filp);
1122
1123 DRM_DEBUG("i810_dma: %d returning %d, granted = %d\n",
1124 current->pid, retcode, d.granted);
1125
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001126 if (copy_to_user((drm_dma_t __user *) arg, &d, sizeof(d)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127 return -EFAULT;
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001128 sarea_priv->last_dispatch = (int)hw_status[5];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129
1130 return retcode;
1131}
1132
1133static int i810_copybuf(struct inode *inode,
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001134 struct file *filp, unsigned int cmd, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135{
1136 /* Never copy - 2.4.x doesn't need it */
1137 return 0;
1138}
1139
1140static int i810_docopy(struct inode *inode, struct file *filp, unsigned int cmd,
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001141 unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142{
1143 /* Never copy - 2.4.x doesn't need it */
1144 return 0;
1145}
1146
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001147static void i810_dma_dispatch_mc(drm_device_t * dev, drm_buf_t * buf, int used,
1148 unsigned int last_render)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149{
1150 drm_i810_private_t *dev_priv = dev->dev_private;
1151 drm_i810_buf_priv_t *buf_priv = buf->dev_private;
1152 drm_i810_sarea_t *sarea_priv = dev_priv->sarea_priv;
1153 unsigned long address = (unsigned long)buf->bus_address;
1154 unsigned long start = address - dev->agp->base;
1155 int u;
1156 RING_LOCALS;
1157
1158 i810_kernel_lost_context(dev);
1159
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001160 u = cmpxchg(buf_priv->in_use, I810_BUF_CLIENT, I810_BUF_HARDWARE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161 if (u != I810_BUF_CLIENT) {
1162 DRM_DEBUG("MC found buffer that isn't mine!\n");
1163 }
1164
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001165 if (used > 4 * 1024)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166 used = 0;
1167
1168 sarea_priv->dirty = 0x7f;
1169
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001170 DRM_DEBUG("dispatch mc addr 0x%lx, used 0x%x\n", address, used);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171
1172 dev_priv->counter++;
1173 DRM_DEBUG("dispatch counter : %ld\n", dev_priv->counter);
1174 DRM_DEBUG("i810_dma_dispatch_mc\n");
1175 DRM_DEBUG("start : %lx\n", start);
1176 DRM_DEBUG("used : %d\n", used);
1177 DRM_DEBUG("start + used - 4 : %ld\n", start + used - 4);
1178
1179 if (buf_priv->currently_mapped == I810_BUF_MAPPED) {
1180 if (used & 4) {
Denis Vlasenkoc7aed172006-08-16 11:54:07 +10001181 *(u32 *) ((char *) buf_priv->virtual + used) = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182 used += 4;
1183 }
1184
1185 i810_unmap_buffer(buf);
1186 }
1187 BEGIN_LP_RING(4);
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001188 OUT_RING(CMD_OP_BATCH_BUFFER);
1189 OUT_RING(start | BB1_PROTECTED);
1190 OUT_RING(start + used - 4);
1191 OUT_RING(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192 ADVANCE_LP_RING();
1193
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194 BEGIN_LP_RING(8);
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001195 OUT_RING(CMD_STORE_DWORD_IDX);
1196 OUT_RING(buf_priv->my_use_idx);
1197 OUT_RING(I810_BUF_FREE);
1198 OUT_RING(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001200 OUT_RING(CMD_STORE_DWORD_IDX);
1201 OUT_RING(16);
1202 OUT_RING(last_render);
1203 OUT_RING(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204 ADVANCE_LP_RING();
1205}
1206
1207static int i810_dma_mc(struct inode *inode, struct file *filp,
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001208 unsigned int cmd, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209{
1210 drm_file_t *priv = filp->private_data;
1211 drm_device_t *dev = priv->head->dev;
1212 drm_device_dma_t *dma = dev->dma;
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001213 drm_i810_private_t *dev_priv = (drm_i810_private_t *) dev->dev_private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214 u32 *hw_status = dev_priv->hw_status_page;
1215 drm_i810_sarea_t *sarea_priv = (drm_i810_sarea_t *)
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001216 dev_priv->sarea_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217 drm_i810_mc_t mc;
1218
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001219 if (copy_from_user(&mc, (drm_i810_mc_t __user *) arg, sizeof(mc)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220 return -EFAULT;
1221
1222 LOCK_TEST_WITH_RETURN(dev, filp);
1223
1224 if (mc.idx >= dma->buf_count || mc.idx < 0)
1225 return -EINVAL;
1226
1227 i810_dma_dispatch_mc(dev, dma->buflist[mc.idx], mc.used,
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001228 mc.last_render);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229
1230 atomic_add(mc.used, &dev->counts[_DRM_STAT_SECONDARY]);
1231 atomic_inc(&dev->counts[_DRM_STAT_DMA]);
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001232 sarea_priv->last_enqueue = dev_priv->counter - 1;
1233 sarea_priv->last_dispatch = (int)hw_status[5];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234
1235 return 0;
1236}
1237
1238static int i810_rstatus(struct inode *inode, struct file *filp,
1239 unsigned int cmd, unsigned long arg)
1240{
1241 drm_file_t *priv = filp->private_data;
1242 drm_device_t *dev = priv->head->dev;
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001243 drm_i810_private_t *dev_priv = (drm_i810_private_t *) dev->dev_private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001245 return (int)(((u32 *) (dev_priv->hw_status_page))[4]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246}
1247
1248static int i810_ov0_info(struct inode *inode, struct file *filp,
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001249 unsigned int cmd, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250{
1251 drm_file_t *priv = filp->private_data;
1252 drm_device_t *dev = priv->head->dev;
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001253 drm_i810_private_t *dev_priv = (drm_i810_private_t *) dev->dev_private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254 drm_i810_overlay_t data;
1255
1256 data.offset = dev_priv->overlay_offset;
1257 data.physical = dev_priv->overlay_physical;
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001258 if (copy_to_user
1259 ((drm_i810_overlay_t __user *) arg, &data, sizeof(data)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260 return -EFAULT;
1261 return 0;
1262}
1263
1264static int i810_fstatus(struct inode *inode, struct file *filp,
1265 unsigned int cmd, unsigned long arg)
1266{
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 return I810_READ(0x30008);
1274}
1275
1276static int i810_ov0_flip(struct inode *inode, struct file *filp,
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001277 unsigned int cmd, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278{
1279 drm_file_t *priv = filp->private_data;
1280 drm_device_t *dev = priv->head->dev;
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001281 drm_i810_private_t *dev_priv = (drm_i810_private_t *) dev->dev_private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282
1283 LOCK_TEST_WITH_RETURN(dev, filp);
1284
1285 //Tell the overlay to update
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001286 I810_WRITE(0x30000, dev_priv->overlay_physical | 0x80000000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287
1288 return 0;
1289}
1290
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291/* Not sure why this isn't set all the time:
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001292 */
1293static void i810_do_init_pageflip(drm_device_t * dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294{
1295 drm_i810_private_t *dev_priv = dev->dev_private;
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001296
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297 DRM_DEBUG("%s\n", __FUNCTION__);
1298 dev_priv->page_flipping = 1;
1299 dev_priv->current_page = 0;
1300 dev_priv->sarea_priv->pf_current_page = dev_priv->current_page;
1301}
1302
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001303static int i810_do_cleanup_pageflip(drm_device_t * dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304{
1305 drm_i810_private_t *dev_priv = dev->dev_private;
1306
1307 DRM_DEBUG("%s\n", __FUNCTION__);
1308 if (dev_priv->current_page != 0)
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001309 i810_dma_dispatch_flip(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310
1311 dev_priv->page_flipping = 0;
1312 return 0;
1313}
1314
1315static int i810_flip_bufs(struct inode *inode, struct file *filp,
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001316 unsigned int cmd, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317{
1318 drm_file_t *priv = filp->private_data;
1319 drm_device_t *dev = priv->head->dev;
1320 drm_i810_private_t *dev_priv = dev->dev_private;
1321
1322 DRM_DEBUG("%s\n", __FUNCTION__);
1323
1324 LOCK_TEST_WITH_RETURN(dev, filp);
1325
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001326 if (!dev_priv->page_flipping)
1327 i810_do_init_pageflip(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001329 i810_dma_dispatch_flip(dev);
1330 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331}
1332
Dave Airlie22eae942005-11-10 22:16:34 +11001333int i810_driver_load(drm_device_t *dev, unsigned long flags)
1334{
1335 /* i810 has 4 more counters */
1336 dev->counters += 4;
1337 dev->types[6] = _DRM_STAT_IRQ;
1338 dev->types[7] = _DRM_STAT_PRIMARY;
1339 dev->types[8] = _DRM_STAT_SECONDARY;
1340 dev->types[9] = _DRM_STAT_DMA;
1341
1342 return 0;
1343}
1344
1345void i810_driver_lastclose(drm_device_t * dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346{
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001347 i810_dma_cleanup(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348}
1349
Dave Airlie22eae942005-11-10 22:16:34 +11001350void i810_driver_preclose(drm_device_t * dev, DRMFILE filp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351{
1352 if (dev->dev_private) {
1353 drm_i810_private_t *dev_priv = dev->dev_private;
1354 if (dev_priv->page_flipping) {
1355 i810_do_cleanup_pageflip(dev);
1356 }
1357 }
1358}
1359
Dave Airlie22eae942005-11-10 22:16:34 +11001360void i810_driver_reclaim_buffers_locked(drm_device_t * dev, struct file *filp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361{
1362 i810_reclaim_buffers(dev, filp);
1363}
1364
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001365int i810_driver_dma_quiescent(drm_device_t * dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366{
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001367 i810_dma_quiescent(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368 return 0;
1369}
1370
1371drm_ioctl_desc_t i810_ioctls[] = {
Dave Airliea7a2cc32006-01-02 13:54:04 +11001372 [DRM_IOCTL_NR(DRM_I810_INIT)] = {i810_dma_init, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY},
1373 [DRM_IOCTL_NR(DRM_I810_VERTEX)] = {i810_dma_vertex, DRM_AUTH},
1374 [DRM_IOCTL_NR(DRM_I810_CLEAR)] = {i810_clear_bufs, DRM_AUTH},
1375 [DRM_IOCTL_NR(DRM_I810_FLUSH)] = {i810_flush_ioctl, DRM_AUTH},
1376 [DRM_IOCTL_NR(DRM_I810_GETAGE)] = {i810_getage, DRM_AUTH},
1377 [DRM_IOCTL_NR(DRM_I810_GETBUF)] = {i810_getbuf, DRM_AUTH},
1378 [DRM_IOCTL_NR(DRM_I810_SWAP)] = {i810_swap_bufs, DRM_AUTH},
1379 [DRM_IOCTL_NR(DRM_I810_COPY)] = {i810_copybuf, DRM_AUTH},
1380 [DRM_IOCTL_NR(DRM_I810_DOCOPY)] = {i810_docopy, DRM_AUTH},
1381 [DRM_IOCTL_NR(DRM_I810_OV0INFO)] = {i810_ov0_info, DRM_AUTH},
1382 [DRM_IOCTL_NR(DRM_I810_FSTATUS)] = {i810_fstatus, DRM_AUTH},
1383 [DRM_IOCTL_NR(DRM_I810_OV0FLIP)] = {i810_ov0_flip, DRM_AUTH},
1384 [DRM_IOCTL_NR(DRM_I810_MC)] = {i810_dma_mc, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY},
1385 [DRM_IOCTL_NR(DRM_I810_RSTATUS)] = {i810_rstatus, DRM_AUTH},
1386 [DRM_IOCTL_NR(DRM_I810_FLIP)] = {i810_flip_bufs, DRM_AUTH}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387};
1388
1389int i810_max_ioctl = DRM_ARRAY_SIZE(i810_ioctls);
Dave Airliecda17382005-07-10 17:31:26 +10001390
1391/**
1392 * Determine if the device really is AGP or not.
1393 *
1394 * All Intel graphics chipsets are treated as AGP, even if they are really
1395 * PCI-e.
1396 *
1397 * \param dev The device to be tested.
1398 *
1399 * \returns
1400 * A value of 1 is always retured to indictate every i810 is AGP.
1401 */
1402int i810_driver_device_is_agp(drm_device_t * dev)
1403{
1404 return 1;
1405}