blob: aeace37415aac8ae62ab2aa53a3b927ae648fb6c [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
David Howells760285e2012-10-02 18:01:07 +010033#include <drm/drmP.h>
34#include <drm/i810_drm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#include "i810_drv.h"
36#include <linux/interrupt.h> /* For task queue support */
37#include <linux/delay.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090038#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070039#include <linux/pagemap.h>
40
41#define I810_BUF_FREE 2
42#define I810_BUF_CLIENT 1
Dave Airliebc5f4522007-11-05 12:50:58 +100043#define I810_BUF_HARDWARE 0
Linus Torvalds1da177e2005-04-16 15:20:36 -070044
45#define I810_BUF_UNMAPPED 0
46#define I810_BUF_MAPPED 1
47
Dave Airlie056219e2007-07-11 16:17:42 +100048static struct drm_buf *i810_freelist_get(struct drm_device * dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -070049{
Dave Airliecdd55a22007-07-11 16:32:08 +100050 struct drm_device_dma *dma = dev->dma;
Dave Airlieb5e89ed2005-09-25 14:28:13 +100051 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++) {
Dave Airlie056219e2007-07-11 16:17:42 +100057 struct drm_buf *buf = dma->buflist[i];
Dave Airlieb5e89ed2005-09-25 14:28:13 +100058 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);
Nicolas Kaiseraca791c2010-07-14 21:54:13 +020062 if (used == I810_BUF_FREE)
Linus Torvalds1da177e2005-04-16 15:20:36 -070063 return buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -070064 }
Dave Airlieb5e89ed2005-09-25 14:28:13 +100065 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070066}
67
68/* This should only be called if the buffer is not sent to the hardware
69 * yet, the hardware updates in use for us once its on the ring buffer.
70 */
71
Nicolas Kaiseraca791c2010-07-14 21:54:13 +020072static int i810_freelist_put(struct drm_device *dev, struct drm_buf *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -070073{
Dave Airlieb5e89ed2005-09-25 14:28:13 +100074 drm_i810_buf_priv_t *buf_priv = buf->dev_private;
75 int used;
Linus Torvalds1da177e2005-04-16 15:20:36 -070076
Dave Airlieb5e89ed2005-09-25 14:28:13 +100077 /* In use is already a pointer */
78 used = cmpxchg(buf_priv->in_use, I810_BUF_CLIENT, I810_BUF_FREE);
Linus Torvalds1da177e2005-04-16 15:20:36 -070079 if (used != I810_BUF_CLIENT) {
Dave Airlieb5e89ed2005-09-25 14:28:13 +100080 DRM_ERROR("Freeing buffer thats not in use : %d\n", buf->idx);
81 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070082 }
83
Dave Airlieb5e89ed2005-09-25 14:28:13 +100084 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070085}
86
Dave Airliec94f7022005-07-07 21:03:38 +100087static int i810_mmap_buffers(struct file *filp, struct vm_area_struct *vma)
Linus Torvalds1da177e2005-04-16 15:20:36 -070088{
Dave Airlieeddca552007-07-11 16:09:54 +100089 struct drm_file *priv = filp->private_data;
90 struct drm_device *dev;
Dave Airlieb5e89ed2005-09-25 14:28:13 +100091 drm_i810_private_t *dev_priv;
Dave Airlie056219e2007-07-11 16:17:42 +100092 struct drm_buf *buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -070093 drm_i810_buf_priv_t *buf_priv;
94
Dave Airlie2c14f282008-04-21 16:47:32 +100095 dev = priv->minor->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -070096 dev_priv = dev->dev_private;
Dave Airlieb5e89ed2005-09-25 14:28:13 +100097 buf = dev_priv->mmap_buffer;
Linus Torvalds1da177e2005-04-16 15:20:36 -070098 buf_priv = buf->dev_private;
99
Al Viro80537962013-05-11 12:27:16 -0400100 vma->vm_flags |= VM_DONTCOPY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000102 buf_priv->currently_mapped = I810_BUF_MAPPED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103
104 if (io_remap_pfn_range(vma, vma->vm_start,
Dave Airlie3d774612006-08-07 20:07:43 +1000105 vma->vm_pgoff,
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000106 vma->vm_end - vma->vm_start, vma->vm_page_prot))
107 return -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108 return 0;
109}
110
Arjan van de Ven2b8693c2007-02-12 00:55:32 -0800111static const struct file_operations i810_buffer_fops = {
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000112 .open = drm_open,
Dave Airliec94f7022005-07-07 21:03:38 +1000113 .release = drm_release,
Arnd Bergmann1f692a12011-01-25 23:17:15 +0100114 .unlocked_ioctl = drm_ioctl,
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000115 .mmap = i810_mmap_buffers,
Keith Packard804d74a2012-07-09 15:40:07 -0700116#ifdef CONFIG_COMPAT
117 .compat_ioctl = drm_compat_ioctl,
118#endif
Arnd Bergmann6038f372010-08-15 18:52:59 +0200119 .llseek = noop_llseek,
Dave Airliec94f7022005-07-07 21:03:38 +1000120};
121
Nicolas Kaiseraca791c2010-07-14 21:54:13 +0200122static int i810_map_buffer(struct drm_buf *buf, struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123{
Dave Airlie2c14f282008-04-21 16:47:32 +1000124 struct drm_device *dev = file_priv->minor->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 drm_i810_buf_priv_t *buf_priv = buf->dev_private;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000126 drm_i810_private_t *dev_priv = dev->dev_private;
Arjan van de Ven99ac48f2006-03-28 01:56:41 -0800127 const struct file_operations *old_fops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 int retcode = 0;
129
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000130 if (buf_priv->currently_mapped == I810_BUF_MAPPED)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131 return -EINVAL;
132
Linus Torvalds6be5ceb2012-04-20 17:13:58 -0700133 /* This is all entirely broken */
Eric Anholt6c340ea2007-08-25 20:23:09 +1000134 old_fops = file_priv->filp->f_op;
135 file_priv->filp->f_op = &i810_buffer_fops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 dev_priv->mmap_buffer = buf;
Al Viro244ca2b2012-05-29 21:24:36 -0400137 buf_priv->virtual = (void *)vm_mmap(file_priv->filp, 0, buf->total,
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000138 PROT_READ | PROT_WRITE,
139 MAP_SHARED, buf->bus_address);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 dev_priv->mmap_buffer = NULL;
Eric Anholt6c340ea2007-08-25 20:23:09 +1000141 file_priv->filp->f_op = old_fops;
Denis Vlasenkoc7aed172006-08-16 11:54:07 +1000142 if (IS_ERR(buf_priv->virtual)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 /* Real error */
144 DRM_ERROR("mmap error\n");
Denis Vlasenkoc7aed172006-08-16 11:54:07 +1000145 retcode = PTR_ERR(buf_priv->virtual);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146 buf_priv->virtual = NULL;
147 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148
149 return retcode;
150}
151
Nicolas Kaiseraca791c2010-07-14 21:54:13 +0200152static int i810_unmap_buffer(struct drm_buf *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153{
154 drm_i810_buf_priv_t *buf_priv = buf->dev_private;
155 int retcode = 0;
156
157 if (buf_priv->currently_mapped != I810_BUF_MAPPED)
158 return -EINVAL;
159
Al Virobfce2812012-04-20 21:57:04 -0400160 retcode = vm_munmap((unsigned long)buf_priv->virtual,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 (size_t) buf->total);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000163 buf_priv->currently_mapped = I810_BUF_UNMAPPED;
164 buf_priv->virtual = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165
166 return retcode;
167}
168
Nicolas Kaiseraca791c2010-07-14 21:54:13 +0200169static int i810_dma_get_buffer(struct drm_device *dev, drm_i810_dma_t *d,
Eric Anholt6c340ea2007-08-25 20:23:09 +1000170 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171{
Dave Airlie056219e2007-07-11 16:17:42 +1000172 struct drm_buf *buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 drm_i810_buf_priv_t *buf_priv;
174 int retcode = 0;
175
176 buf = i810_freelist_get(dev);
177 if (!buf) {
178 retcode = -ENOMEM;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000179 DRM_DEBUG("retcode=%d\n", retcode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 return retcode;
181 }
182
Eric Anholt6c340ea2007-08-25 20:23:09 +1000183 retcode = i810_map_buffer(buf, file_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 if (retcode) {
185 i810_freelist_put(dev, buf);
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000186 DRM_ERROR("mapbuf failed, retcode %d\n", retcode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 return retcode;
188 }
Eric Anholt6c340ea2007-08-25 20:23:09 +1000189 buf->file_priv = file_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 buf_priv = buf->dev_private;
191 d->granted = 1;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000192 d->request_idx = buf->idx;
193 d->request_size = buf->total;
194 d->virtual = buf_priv->virtual;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195
196 return retcode;
197}
198
Nicolas Kaiseraca791c2010-07-14 21:54:13 +0200199static int i810_dma_cleanup(struct drm_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200{
Dave Airliecdd55a22007-07-11 16:32:08 +1000201 struct drm_device_dma *dma = dev->dma;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202
203 /* Make sure interrupts are disabled here because the uninstall ioctl
204 * may not have been called from userspace and after dev_private
205 * is freed, it's too late.
206 */
207 if (drm_core_check_feature(dev, DRIVER_HAVE_IRQ) && dev->irq_enabled)
208 drm_irq_uninstall(dev);
209
210 if (dev->dev_private) {
211 int i;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000212 drm_i810_private_t *dev_priv =
213 (drm_i810_private_t *) dev->dev_private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214
Nicolas Kaiseraca791c2010-07-14 21:54:13 +0200215 if (dev_priv->ring.virtual_start)
Dave Airlieb9094d32007-01-08 21:31:13 +1100216 drm_core_ioremapfree(&dev_priv->ring.map, dev);
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000217 if (dev_priv->hw_status_page) {
218 pci_free_consistent(dev->pdev, PAGE_SIZE,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 dev_priv->hw_status_page,
220 dev_priv->dma_status_page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 }
Eric Anholt9a298b22009-03-24 12:23:04 -0700222 kfree(dev->dev_private);
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000223 dev->dev_private = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224
225 for (i = 0; i < dma->buf_count; i++) {
Dave Airlie056219e2007-07-11 16:17:42 +1000226 struct drm_buf *buf = dma->buflist[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 drm_i810_buf_priv_t *buf_priv = buf->dev_private;
Dave Airlieb9094d32007-01-08 21:31:13 +1100228
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000229 if (buf_priv->kernel_virtual && buf->total)
Dave Airlieb9094d32007-01-08 21:31:13 +1100230 drm_core_ioremapfree(&buf_priv->map, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 }
232 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 return 0;
234}
235
Nicolas Kaiseraca791c2010-07-14 21:54:13 +0200236static int i810_wait_ring(struct drm_device *dev, int n)
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000237{
238 drm_i810_private_t *dev_priv = dev->dev_private;
239 drm_i810_ring_buffer_t *ring = &(dev_priv->ring);
240 int iters = 0;
241 unsigned long end;
242 unsigned int last_head = I810_READ(LP_RING + RING_HEAD) & HEAD_ADDR;
243
244 end = jiffies + (HZ * 3);
245 while (ring->space < n) {
246 ring->head = I810_READ(LP_RING + RING_HEAD) & HEAD_ADDR;
247 ring->space = ring->head - (ring->tail + 8);
248 if (ring->space < 0)
249 ring->space += ring->Size;
250
251 if (ring->head != last_head) {
252 end = jiffies + (HZ * 3);
253 last_head = ring->head;
254 }
255
256 iters++;
257 if (time_before(end, jiffies)) {
258 DRM_ERROR("space: %d wanted %d\n", ring->space, n);
259 DRM_ERROR("lockup\n");
260 goto out_wait_ring;
261 }
262 udelay(1);
263 }
264
Nicolas Kaiseraca791c2010-07-14 21:54:13 +0200265out_wait_ring:
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000266 return iters;
267}
268
Nicolas Kaiseraca791c2010-07-14 21:54:13 +0200269static void i810_kernel_lost_context(struct drm_device *dev)
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000270{
271 drm_i810_private_t *dev_priv = dev->dev_private;
272 drm_i810_ring_buffer_t *ring = &(dev_priv->ring);
273
274 ring->head = I810_READ(LP_RING + RING_HEAD) & HEAD_ADDR;
275 ring->tail = I810_READ(LP_RING + RING_TAIL);
276 ring->space = ring->head - (ring->tail + 8);
277 if (ring->space < 0)
278 ring->space += ring->Size;
279}
280
Nicolas Kaiseraca791c2010-07-14 21:54:13 +0200281static int i810_freelist_init(struct drm_device *dev, drm_i810_private_t *dev_priv)
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000282{
Dave Airliecdd55a22007-07-11 16:32:08 +1000283 struct drm_device_dma *dma = dev->dma;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000284 int my_idx = 24;
285 u32 *hw_status = (u32 *) (dev_priv->hw_status_page + my_idx);
286 int i;
287
288 if (dma->buf_count > 1019) {
289 /* Not enough space in the status page for the freelist */
290 return -EINVAL;
291 }
292
293 for (i = 0; i < dma->buf_count; i++) {
Dave Airlie056219e2007-07-11 16:17:42 +1000294 struct drm_buf *buf = dma->buflist[i];
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000295 drm_i810_buf_priv_t *buf_priv = buf->dev_private;
296
297 buf_priv->in_use = hw_status++;
298 buf_priv->my_use_idx = my_idx;
299 my_idx += 4;
300
301 *buf_priv->in_use = I810_BUF_FREE;
302
Dave Airlieb9094d32007-01-08 21:31:13 +1100303 buf_priv->map.offset = buf->bus_address;
304 buf_priv->map.size = buf->total;
305 buf_priv->map.type = _DRM_AGP;
306 buf_priv->map.flags = 0;
307 buf_priv->map.mtrr = 0;
308
309 drm_core_ioremap(&buf_priv->map, dev);
310 buf_priv->kernel_virtual = buf_priv->map.handle;
311
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000312 }
313 return 0;
314}
315
Nicolas Kaiseraca791c2010-07-14 21:54:13 +0200316static int i810_dma_initialize(struct drm_device *dev,
317 drm_i810_private_t *dev_priv,
318 drm_i810_init_t *init)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319{
Dave Airlie55910512007-07-11 16:53:40 +1000320 struct drm_map_list *r_list;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000321 memset(dev_priv, 0, sizeof(drm_i810_private_t));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322
Dave Airliebd1b3312007-05-26 05:01:51 +1000323 list_for_each_entry(r_list, &dev->maplist, head) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 if (r_list->map &&
325 r_list->map->type == _DRM_SHM &&
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000326 r_list->map->flags & _DRM_CONTAINS_LOCK) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 dev_priv->sarea_map = r_list->map;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000328 break;
329 }
330 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 if (!dev_priv->sarea_map) {
332 dev->dev_private = (void *)dev_priv;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000333 i810_dma_cleanup(dev);
334 DRM_ERROR("can not find sarea!\n");
335 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 }
337 dev_priv->mmio_map = drm_core_findmap(dev, init->mmio_offset);
338 if (!dev_priv->mmio_map) {
339 dev->dev_private = (void *)dev_priv;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000340 i810_dma_cleanup(dev);
341 DRM_ERROR("can not find mmio map!\n");
342 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 }
Dave Airlied1f2b552005-08-05 22:11:22 +1000344 dev->agp_buffer_token = init->buffers_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 dev->agp_buffer_map = drm_core_findmap(dev, init->buffers_offset);
346 if (!dev->agp_buffer_map) {
347 dev->dev_private = (void *)dev_priv;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000348 i810_dma_cleanup(dev);
349 DRM_ERROR("can not find dma buffer map!\n");
350 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 }
352
353 dev_priv->sarea_priv = (drm_i810_sarea_t *)
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000354 ((u8 *) dev_priv->sarea_map->handle + init->sarea_priv_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000356 dev_priv->ring.Start = init->ring_start;
357 dev_priv->ring.End = init->ring_end;
358 dev_priv->ring.Size = init->ring_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359
Dave Airlieb9094d32007-01-08 21:31:13 +1100360 dev_priv->ring.map.offset = dev->agp->base + init->ring_start;
361 dev_priv->ring.map.size = init->ring_size;
362 dev_priv->ring.map.type = _DRM_AGP;
363 dev_priv->ring.map.flags = 0;
364 dev_priv->ring.map.mtrr = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365
Dave Airlieb9094d32007-01-08 21:31:13 +1100366 drm_core_ioremap(&dev_priv->ring.map, dev);
367
368 if (dev_priv->ring.map.handle == NULL) {
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000369 dev->dev_private = (void *)dev_priv;
370 i810_dma_cleanup(dev);
371 DRM_ERROR("can not ioremap virtual address for"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 " ring buffer\n");
Eric Anholt20caafa2007-08-25 19:22:43 +1000373 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 }
375
Dave Airlieb9094d32007-01-08 21:31:13 +1100376 dev_priv->ring.virtual_start = dev_priv->ring.map.handle;
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
Eric Anholtc153f452007-09-03 12:06:45 +1000423static int i810_dma_init(struct drm_device *dev, void *data,
424 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425{
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000426 drm_i810_private_t *dev_priv;
Eric Anholtc153f452007-09-03 12:06:45 +1000427 drm_i810_init_t *init = data;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000428 int retcode = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429
Eric Anholtc153f452007-09-03 12:06:45 +1000430 switch (init->func) {
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000431 case I810_INIT_DMA_1_4:
432 DRM_INFO("Using v1.4 init.\n");
Eric Anholt9a298b22009-03-24 12:23:04 -0700433 dev_priv = kmalloc(sizeof(drm_i810_private_t), GFP_KERNEL);
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000434 if (dev_priv == NULL)
435 return -ENOMEM;
Eric Anholtc153f452007-09-03 12:06:45 +1000436 retcode = i810_dma_initialize(dev, dev_priv, init);
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000437 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000439 case I810_CLEANUP_DMA:
440 DRM_INFO("DMA Cleanup\n");
441 retcode = i810_dma_cleanup(dev);
442 break;
Eric Anholtc153f452007-09-03 12:06:45 +1000443 default:
444 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 }
446
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000447 return retcode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448}
449
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450/* Most efficient way to verify state for the i810 is as it is
451 * emitted. Non-conformant state is silently dropped.
452 *
453 * Use 'volatile' & local var tmp to force the emitted values to be
454 * identical to the verified ones.
455 */
Nicolas Kaiseraca791c2010-07-14 21:54:13 +0200456static void i810EmitContextVerified(struct drm_device *dev,
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000457 volatile unsigned int *code)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458{
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000459 drm_i810_private_t *dev_priv = dev->dev_private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 int i, j = 0;
461 unsigned int tmp;
462 RING_LOCALS;
463
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000464 BEGIN_LP_RING(I810_CTX_SETUP_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000466 OUT_RING(GFX_OP_COLOR_FACTOR);
467 OUT_RING(code[I810_CTXREG_CF1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000469 OUT_RING(GFX_OP_STIPPLE);
470 OUT_RING(code[I810_CTXREG_ST1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000472 for (i = 4; i < I810_CTX_SETUP_SIZE; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 tmp = code[i];
474
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000475 if ((tmp & (7 << 29)) == (3 << 29) &&
476 (tmp & (0x1f << 24)) < (0x1d << 24)) {
477 OUT_RING(tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 j++;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000479 } else
480 printk("constext state dropped!!!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 }
482
483 if (j & 1)
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000484 OUT_RING(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485
486 ADVANCE_LP_RING();
487}
488
Nicolas Kaiseraca791c2010-07-14 21:54:13 +0200489static void i810EmitTexVerified(struct drm_device *dev, volatile unsigned int *code)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490{
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000491 drm_i810_private_t *dev_priv = dev->dev_private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 int i, j = 0;
493 unsigned int tmp;
494 RING_LOCALS;
495
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000496 BEGIN_LP_RING(I810_TEX_SETUP_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000498 OUT_RING(GFX_OP_MAP_INFO);
499 OUT_RING(code[I810_TEXREG_MI1]);
500 OUT_RING(code[I810_TEXREG_MI2]);
501 OUT_RING(code[I810_TEXREG_MI3]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000503 for (i = 4; i < I810_TEX_SETUP_SIZE; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 tmp = code[i];
505
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000506 if ((tmp & (7 << 29)) == (3 << 29) &&
507 (tmp & (0x1f << 24)) < (0x1d << 24)) {
508 OUT_RING(tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 j++;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000510 } else
511 printk("texture state dropped!!!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 }
513
514 if (j & 1)
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000515 OUT_RING(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516
517 ADVANCE_LP_RING();
518}
519
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520/* Need to do some additional checking when setting the dest buffer.
521 */
Nicolas Kaiseraca791c2010-07-14 21:54:13 +0200522static void i810EmitDestVerified(struct drm_device *dev,
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000523 volatile unsigned int *code)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524{
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000525 drm_i810_private_t *dev_priv = dev->dev_private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 unsigned int tmp;
527 RING_LOCALS;
528
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000529 BEGIN_LP_RING(I810_DEST_SETUP_SIZE + 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530
531 tmp = code[I810_DESTREG_DI1];
532 if (tmp == dev_priv->front_di1 || tmp == dev_priv->back_di1) {
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000533 OUT_RING(CMD_OP_DESTBUFFER_INFO);
534 OUT_RING(tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 } else
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000536 DRM_DEBUG("bad di1 %x (allow %x or %x)\n",
537 tmp, dev_priv->front_di1, dev_priv->back_di1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538
539 /* invarient:
540 */
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000541 OUT_RING(CMD_OP_Z_BUFFER_INFO);
542 OUT_RING(dev_priv->zi1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000544 OUT_RING(GFX_OP_DESTBUFFER_VARS);
545 OUT_RING(code[I810_DESTREG_DV1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000547 OUT_RING(GFX_OP_DRAWRECT_INFO);
548 OUT_RING(code[I810_DESTREG_DR1]);
549 OUT_RING(code[I810_DESTREG_DR2]);
550 OUT_RING(code[I810_DESTREG_DR3]);
551 OUT_RING(code[I810_DESTREG_DR4]);
552 OUT_RING(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553
554 ADVANCE_LP_RING();
555}
556
Nicolas Kaiseraca791c2010-07-14 21:54:13 +0200557static void i810EmitState(struct drm_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558{
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000559 drm_i810_private_t *dev_priv = dev->dev_private;
560 drm_i810_sarea_t *sarea_priv = dev_priv->sarea_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 unsigned int dirty = sarea_priv->dirty;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000562
Márton Németh3e684ea2008-01-24 15:58:57 +1000563 DRM_DEBUG("%x\n", dirty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564
565 if (dirty & I810_UPLOAD_BUFFERS) {
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000566 i810EmitDestVerified(dev, sarea_priv->BufferState);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567 sarea_priv->dirty &= ~I810_UPLOAD_BUFFERS;
568 }
569
570 if (dirty & I810_UPLOAD_CTX) {
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000571 i810EmitContextVerified(dev, sarea_priv->ContextState);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 sarea_priv->dirty &= ~I810_UPLOAD_CTX;
573 }
574
575 if (dirty & I810_UPLOAD_TEX0) {
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000576 i810EmitTexVerified(dev, sarea_priv->TexState[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 sarea_priv->dirty &= ~I810_UPLOAD_TEX0;
578 }
579
580 if (dirty & I810_UPLOAD_TEX1) {
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000581 i810EmitTexVerified(dev, sarea_priv->TexState[1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 sarea_priv->dirty &= ~I810_UPLOAD_TEX1;
583 }
584}
585
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586/* need to verify
587 */
Nicolas Kaiseraca791c2010-07-14 21:54:13 +0200588static void i810_dma_dispatch_clear(struct drm_device *dev, int flags,
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000589 unsigned int clear_color,
590 unsigned int clear_zval)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591{
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000592 drm_i810_private_t *dev_priv = dev->dev_private;
593 drm_i810_sarea_t *sarea_priv = dev_priv->sarea_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 int nbox = sarea_priv->nbox;
Dave Airlieeddca552007-07-11 16:09:54 +1000595 struct drm_clip_rect *pbox = sarea_priv->boxes;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 int pitch = dev_priv->pitch;
597 int cpp = 2;
598 int i;
599 RING_LOCALS;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000600
601 if (dev_priv->current_page == 1) {
602 unsigned int tmp = flags;
603
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 flags &= ~(I810_FRONT | I810_BACK);
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000605 if (tmp & I810_FRONT)
606 flags |= I810_BACK;
607 if (tmp & I810_BACK)
608 flags |= I810_FRONT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609 }
610
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000611 i810_kernel_lost_context(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000613 if (nbox > I810_NR_SAREA_CLIPRECTS)
614 nbox = I810_NR_SAREA_CLIPRECTS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000616 for (i = 0; i < nbox; i++, pbox++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617 unsigned int x = pbox->x1;
618 unsigned int y = pbox->y1;
619 unsigned int width = (pbox->x2 - x) * cpp;
620 unsigned int height = pbox->y2 - y;
621 unsigned int start = y * pitch + x * cpp;
622
623 if (pbox->x1 > pbox->x2 ||
624 pbox->y1 > pbox->y2 ||
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000625 pbox->x2 > dev_priv->w || pbox->y2 > dev_priv->h)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 continue;
627
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000628 if (flags & I810_FRONT) {
629 BEGIN_LP_RING(6);
630 OUT_RING(BR00_BITBLT_CLIENT | BR00_OP_COLOR_BLT | 0x3);
631 OUT_RING(BR13_SOLID_PATTERN | (0xF0 << 16) | pitch);
632 OUT_RING((height << 16) | width);
633 OUT_RING(start);
634 OUT_RING(clear_color);
635 OUT_RING(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636 ADVANCE_LP_RING();
637 }
638
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000639 if (flags & I810_BACK) {
640 BEGIN_LP_RING(6);
641 OUT_RING(BR00_BITBLT_CLIENT | BR00_OP_COLOR_BLT | 0x3);
642 OUT_RING(BR13_SOLID_PATTERN | (0xF0 << 16) | pitch);
643 OUT_RING((height << 16) | width);
644 OUT_RING(dev_priv->back_offset + start);
645 OUT_RING(clear_color);
646 OUT_RING(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 ADVANCE_LP_RING();
648 }
649
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000650 if (flags & I810_DEPTH) {
651 BEGIN_LP_RING(6);
652 OUT_RING(BR00_BITBLT_CLIENT | BR00_OP_COLOR_BLT | 0x3);
653 OUT_RING(BR13_SOLID_PATTERN | (0xF0 << 16) | pitch);
654 OUT_RING((height << 16) | width);
655 OUT_RING(dev_priv->depth_offset + start);
656 OUT_RING(clear_zval);
657 OUT_RING(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658 ADVANCE_LP_RING();
659 }
660 }
661}
662
Nicolas Kaiseraca791c2010-07-14 21:54:13 +0200663static void i810_dma_dispatch_swap(struct drm_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664{
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000665 drm_i810_private_t *dev_priv = dev->dev_private;
666 drm_i810_sarea_t *sarea_priv = dev_priv->sarea_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667 int nbox = sarea_priv->nbox;
Dave Airlieeddca552007-07-11 16:09:54 +1000668 struct drm_clip_rect *pbox = sarea_priv->boxes;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 int pitch = dev_priv->pitch;
670 int cpp = 2;
671 int i;
672 RING_LOCALS;
673
674 DRM_DEBUG("swapbuffers\n");
675
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000676 i810_kernel_lost_context(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000678 if (nbox > I810_NR_SAREA_CLIPRECTS)
679 nbox = I810_NR_SAREA_CLIPRECTS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000681 for (i = 0; i < nbox; i++, pbox++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 unsigned int w = pbox->x2 - pbox->x1;
683 unsigned int h = pbox->y2 - pbox->y1;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000684 unsigned int dst = pbox->x1 * cpp + pbox->y1 * pitch;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685 unsigned int start = dst;
686
687 if (pbox->x1 > pbox->x2 ||
688 pbox->y1 > pbox->y2 ||
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000689 pbox->x2 > dev_priv->w || pbox->y2 > dev_priv->h)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690 continue;
691
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000692 BEGIN_LP_RING(6);
693 OUT_RING(BR00_BITBLT_CLIENT | BR00_OP_SRC_COPY_BLT | 0x4);
694 OUT_RING(pitch | (0xCC << 16));
695 OUT_RING((h << 16) | (w * cpp));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696 if (dev_priv->current_page == 0)
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000697 OUT_RING(dev_priv->front_offset + start);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698 else
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000699 OUT_RING(dev_priv->back_offset + start);
700 OUT_RING(pitch);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701 if (dev_priv->current_page == 0)
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000702 OUT_RING(dev_priv->back_offset + start);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 else
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000704 OUT_RING(dev_priv->front_offset + start);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 ADVANCE_LP_RING();
706 }
707}
708
Nicolas Kaiseraca791c2010-07-14 21:54:13 +0200709static void i810_dma_dispatch_vertex(struct drm_device *dev,
710 struct drm_buf *buf, int discard, int used)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711{
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000712 drm_i810_private_t *dev_priv = dev->dev_private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713 drm_i810_buf_priv_t *buf_priv = buf->dev_private;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000714 drm_i810_sarea_t *sarea_priv = dev_priv->sarea_priv;
Dave Airlieeddca552007-07-11 16:09:54 +1000715 struct drm_clip_rect *box = sarea_priv->boxes;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000716 int nbox = sarea_priv->nbox;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717 unsigned long address = (unsigned long)buf->bus_address;
718 unsigned long start = address - dev->agp->base;
719 int i = 0;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000720 RING_LOCALS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000722 i810_kernel_lost_context(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000724 if (nbox > I810_NR_SAREA_CLIPRECTS)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725 nbox = I810_NR_SAREA_CLIPRECTS;
726
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000727 if (used > 4 * 1024)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728 used = 0;
729
730 if (sarea_priv->dirty)
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000731 i810EmitState(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732
733 if (buf_priv->currently_mapped == I810_BUF_MAPPED) {
734 unsigned int prim = (sarea_priv->vertex_prim & PR_MASK);
735
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000736 *(u32 *) buf_priv->kernel_virtual =
737 ((GFX_OP_PRIMITIVE | prim | ((used / 4) - 2)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738
739 if (used & 4) {
Denis Vlasenkoc7aed172006-08-16 11:54:07 +1000740 *(u32 *) ((char *) buf_priv->kernel_virtual + used) = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741 used += 4;
742 }
743
744 i810_unmap_buffer(buf);
745 }
746
747 if (used) {
748 do {
749 if (i < nbox) {
750 BEGIN_LP_RING(4);
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000751 OUT_RING(GFX_OP_SCISSOR | SC_UPDATE_SCISSOR |
752 SC_ENABLE);
753 OUT_RING(GFX_OP_SCISSOR_INFO);
754 OUT_RING(box[i].x1 | (box[i].y1 << 16));
755 OUT_RING((box[i].x2 -
756 1) | ((box[i].y2 - 1) << 16));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757 ADVANCE_LP_RING();
758 }
759
760 BEGIN_LP_RING(4);
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000761 OUT_RING(CMD_OP_BATCH_BUFFER);
762 OUT_RING(start | BB1_PROTECTED);
763 OUT_RING(start + used - 4);
764 OUT_RING(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765 ADVANCE_LP_RING();
766
767 } while (++i < nbox);
768 }
769
770 if (discard) {
771 dev_priv->counter++;
772
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000773 (void)cmpxchg(buf_priv->in_use, I810_BUF_CLIENT,
774 I810_BUF_HARDWARE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775
776 BEGIN_LP_RING(8);
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000777 OUT_RING(CMD_STORE_DWORD_IDX);
778 OUT_RING(20);
779 OUT_RING(dev_priv->counter);
780 OUT_RING(CMD_STORE_DWORD_IDX);
781 OUT_RING(buf_priv->my_use_idx);
782 OUT_RING(I810_BUF_FREE);
783 OUT_RING(CMD_REPORT_HEAD);
784 OUT_RING(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785 ADVANCE_LP_RING();
786 }
787}
788
Nicolas Kaiseraca791c2010-07-14 21:54:13 +0200789static void i810_dma_dispatch_flip(struct drm_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790{
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000791 drm_i810_private_t *dev_priv = dev->dev_private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792 int pitch = dev_priv->pitch;
793 RING_LOCALS;
794
Márton Németh3e684ea2008-01-24 15:58:57 +1000795 DRM_DEBUG("page=%d pfCurrentPage=%d\n",
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000796 dev_priv->current_page,
797 dev_priv->sarea_priv->pf_current_page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000799 i810_kernel_lost_context(dev);
800
801 BEGIN_LP_RING(2);
802 OUT_RING(INST_PARSER_CLIENT | INST_OP_FLUSH | INST_FLUSH_MAP_CACHE);
803 OUT_RING(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804 ADVANCE_LP_RING();
805
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000806 BEGIN_LP_RING(I810_DEST_SETUP_SIZE + 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807 /* On i815 at least ASYNC is buggy */
808 /* pitch<<5 is from 11.2.8 p158,
809 its the pitch / 8 then left shifted 8,
810 so (pitch >> 3) << 8 */
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000811 OUT_RING(CMD_OP_FRONTBUFFER_INFO | (pitch << 5) /*| ASYNC_FLIP */ );
812 if (dev_priv->current_page == 0) {
813 OUT_RING(dev_priv->back_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814 dev_priv->current_page = 1;
815 } else {
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000816 OUT_RING(dev_priv->front_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817 dev_priv->current_page = 0;
818 }
819 OUT_RING(0);
820 ADVANCE_LP_RING();
821
822 BEGIN_LP_RING(2);
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000823 OUT_RING(CMD_OP_WAIT_FOR_EVENT | WAIT_FOR_PLANE_A_FLIP);
824 OUT_RING(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825 ADVANCE_LP_RING();
826
827 /* Increment the frame counter. The client-side 3D driver must
828 * throttle the framerate by waiting for this value before
829 * performing the swapbuffer ioctl.
830 */
831 dev_priv->sarea_priv->pf_current_page = dev_priv->current_page;
832
833}
834
Nicolas Kaiseraca791c2010-07-14 21:54:13 +0200835static void i810_dma_quiescent(struct drm_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836{
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000837 drm_i810_private_t *dev_priv = dev->dev_private;
838 RING_LOCALS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000840 i810_kernel_lost_context(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000842 BEGIN_LP_RING(4);
843 OUT_RING(INST_PARSER_CLIENT | INST_OP_FLUSH | INST_FLUSH_MAP_CACHE);
844 OUT_RING(CMD_REPORT_HEAD);
845 OUT_RING(0);
846 OUT_RING(0);
847 ADVANCE_LP_RING();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000849 i810_wait_ring(dev, dev_priv->ring.Size - 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850}
851
Nicolas Kaiseraca791c2010-07-14 21:54:13 +0200852static int i810_flush_queue(struct drm_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853{
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000854 drm_i810_private_t *dev_priv = dev->dev_private;
Dave Airliecdd55a22007-07-11 16:32:08 +1000855 struct drm_device_dma *dma = dev->dma;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000856 int i, ret = 0;
857 RING_LOCALS;
858
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000859 i810_kernel_lost_context(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000861 BEGIN_LP_RING(2);
862 OUT_RING(CMD_REPORT_HEAD);
863 OUT_RING(0);
864 ADVANCE_LP_RING();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000866 i810_wait_ring(dev, dev_priv->ring.Size - 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000868 for (i = 0; i < dma->buf_count; i++) {
Dave Airlie056219e2007-07-11 16:17:42 +1000869 struct drm_buf *buf = dma->buflist[i];
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000870 drm_i810_buf_priv_t *buf_priv = buf->dev_private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871
872 int used = cmpxchg(buf_priv->in_use, I810_BUF_HARDWARE,
873 I810_BUF_FREE);
874
875 if (used == I810_BUF_HARDWARE)
876 DRM_DEBUG("reclaimed from HARDWARE\n");
877 if (used == I810_BUF_CLIENT)
878 DRM_DEBUG("still on client\n");
879 }
880
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000881 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882}
883
884/* Must be called with the lock held */
Daniel Vetterd5346b32012-06-11 21:50:23 +0200885void i810_driver_reclaim_buffers(struct drm_device *dev,
Eric Anholt6c340ea2007-08-25 20:23:09 +1000886 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887{
Dave Airliecdd55a22007-07-11 16:32:08 +1000888 struct drm_device_dma *dma = dev->dma;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000889 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000891 if (!dma)
892 return;
893 if (!dev->dev_private)
894 return;
895 if (!dma->buflist)
896 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000898 i810_flush_queue(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899
900 for (i = 0; i < dma->buf_count; i++) {
Dave Airlie056219e2007-07-11 16:17:42 +1000901 struct drm_buf *buf = dma->buflist[i];
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000902 drm_i810_buf_priv_t *buf_priv = buf->dev_private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903
Eric Anholt6c340ea2007-08-25 20:23:09 +1000904 if (buf->file_priv == file_priv && buf_priv) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905 int used = cmpxchg(buf_priv->in_use, I810_BUF_CLIENT,
906 I810_BUF_FREE);
907
908 if (used == I810_BUF_CLIENT)
909 DRM_DEBUG("reclaimed from client\n");
910 if (buf_priv->currently_mapped == I810_BUF_MAPPED)
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000911 buf_priv->currently_mapped = I810_BUF_UNMAPPED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912 }
913 }
914}
915
Eric Anholtc153f452007-09-03 12:06:45 +1000916static int i810_flush_ioctl(struct drm_device *dev, void *data,
917 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918{
Eric Anholt6c340ea2007-08-25 20:23:09 +1000919 LOCK_TEST_WITH_RETURN(dev, file_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000921 i810_flush_queue(dev);
922 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923}
924
Eric Anholtc153f452007-09-03 12:06:45 +1000925static int i810_dma_vertex(struct drm_device *dev, void *data,
926 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927{
Dave Airliecdd55a22007-07-11 16:32:08 +1000928 struct drm_device_dma *dma = dev->dma;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000929 drm_i810_private_t *dev_priv = (drm_i810_private_t *) dev->dev_private;
930 u32 *hw_status = dev_priv->hw_status_page;
931 drm_i810_sarea_t *sarea_priv = (drm_i810_sarea_t *)
932 dev_priv->sarea_priv;
Eric Anholtc153f452007-09-03 12:06:45 +1000933 drm_i810_vertex_t *vertex = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934
Eric Anholt6c340ea2007-08-25 20:23:09 +1000935 LOCK_TEST_WITH_RETURN(dev, file_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936
Márton Németh3e684ea2008-01-24 15:58:57 +1000937 DRM_DEBUG("idx %d used %d discard %d\n",
Eric Anholtc153f452007-09-03 12:06:45 +1000938 vertex->idx, vertex->used, vertex->discard);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939
Eric Anholtc153f452007-09-03 12:06:45 +1000940 if (vertex->idx < 0 || vertex->idx > dma->buf_count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941 return -EINVAL;
942
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000943 i810_dma_dispatch_vertex(dev,
Eric Anholtc153f452007-09-03 12:06:45 +1000944 dma->buflist[vertex->idx],
945 vertex->discard, vertex->used);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000947 sarea_priv->last_enqueue = dev_priv->counter - 1;
948 sarea_priv->last_dispatch = (int)hw_status[5];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949
950 return 0;
951}
952
Eric Anholtc153f452007-09-03 12:06:45 +1000953static int i810_clear_bufs(struct drm_device *dev, void *data,
954 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955{
Eric Anholtc153f452007-09-03 12:06:45 +1000956 drm_i810_clear_t *clear = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957
Eric Anholt6c340ea2007-08-25 20:23:09 +1000958 LOCK_TEST_WITH_RETURN(dev, file_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000960 /* GH: Someone's doing nasty things... */
Nicolas Kaiseraca791c2010-07-14 21:54:13 +0200961 if (!dev->dev_private)
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000962 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963
Eric Anholtc153f452007-09-03 12:06:45 +1000964 i810_dma_dispatch_clear(dev, clear->flags,
965 clear->clear_color, clear->clear_depth);
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000966 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967}
968
Eric Anholtc153f452007-09-03 12:06:45 +1000969static int i810_swap_bufs(struct drm_device *dev, void *data,
970 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971{
Márton Németh3e684ea2008-01-24 15:58:57 +1000972 DRM_DEBUG("\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973
Eric Anholt6c340ea2007-08-25 20:23:09 +1000974 LOCK_TEST_WITH_RETURN(dev, file_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000976 i810_dma_dispatch_swap(dev);
977 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978}
979
Eric Anholtc153f452007-09-03 12:06:45 +1000980static int i810_getage(struct drm_device *dev, void *data,
981 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982{
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000983 drm_i810_private_t *dev_priv = (drm_i810_private_t *) dev->dev_private;
984 u32 *hw_status = dev_priv->hw_status_page;
985 drm_i810_sarea_t *sarea_priv = (drm_i810_sarea_t *)
986 dev_priv->sarea_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000988 sarea_priv->last_dispatch = (int)hw_status[5];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989 return 0;
990}
991
Eric Anholtc153f452007-09-03 12:06:45 +1000992static int i810_getbuf(struct drm_device *dev, void *data,
993 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994{
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000995 int retcode = 0;
Eric Anholtc153f452007-09-03 12:06:45 +1000996 drm_i810_dma_t *d = data;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000997 drm_i810_private_t *dev_priv = (drm_i810_private_t *) dev->dev_private;
998 u32 *hw_status = dev_priv->hw_status_page;
999 drm_i810_sarea_t *sarea_priv = (drm_i810_sarea_t *)
1000 dev_priv->sarea_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001
Eric Anholt6c340ea2007-08-25 20:23:09 +10001002 LOCK_TEST_WITH_RETURN(dev, file_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003
Eric Anholtc153f452007-09-03 12:06:45 +10001004 d->granted = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005
Eric Anholtc153f452007-09-03 12:06:45 +10001006 retcode = i810_dma_get_buffer(dev, d, file_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007
1008 DRM_DEBUG("i810_dma: %d returning %d, granted = %d\n",
Pavel Emelyanovba25f9d2007-10-18 23:40:40 -07001009 task_pid_nr(current), retcode, d->granted);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001011 sarea_priv->last_dispatch = (int)hw_status[5];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012
1013 return retcode;
1014}
1015
Eric Anholtc153f452007-09-03 12:06:45 +10001016static int i810_copybuf(struct drm_device *dev, void *data,
1017 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018{
1019 /* Never copy - 2.4.x doesn't need it */
1020 return 0;
1021}
1022
Eric Anholtc153f452007-09-03 12:06:45 +10001023static int i810_docopy(struct drm_device *dev, void *data,
1024 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025{
1026 /* Never copy - 2.4.x doesn't need it */
1027 return 0;
1028}
1029
Nicolas Kaiseraca791c2010-07-14 21:54:13 +02001030static void i810_dma_dispatch_mc(struct drm_device *dev, struct drm_buf *buf, int used,
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001031 unsigned int last_render)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032{
1033 drm_i810_private_t *dev_priv = dev->dev_private;
1034 drm_i810_buf_priv_t *buf_priv = buf->dev_private;
1035 drm_i810_sarea_t *sarea_priv = dev_priv->sarea_priv;
1036 unsigned long address = (unsigned long)buf->bus_address;
1037 unsigned long start = address - dev->agp->base;
1038 int u;
1039 RING_LOCALS;
1040
1041 i810_kernel_lost_context(dev);
1042
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001043 u = cmpxchg(buf_priv->in_use, I810_BUF_CLIENT, I810_BUF_HARDWARE);
Nicolas Kaiseraca791c2010-07-14 21:54:13 +02001044 if (u != I810_BUF_CLIENT)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045 DRM_DEBUG("MC found buffer that isn't mine!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001047 if (used > 4 * 1024)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048 used = 0;
1049
1050 sarea_priv->dirty = 0x7f;
1051
Márton Németh3e684ea2008-01-24 15:58:57 +10001052 DRM_DEBUG("addr 0x%lx, used 0x%x\n", address, used);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053
1054 dev_priv->counter++;
1055 DRM_DEBUG("dispatch counter : %ld\n", dev_priv->counter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056 DRM_DEBUG("start : %lx\n", start);
1057 DRM_DEBUG("used : %d\n", used);
1058 DRM_DEBUG("start + used - 4 : %ld\n", start + used - 4);
1059
1060 if (buf_priv->currently_mapped == I810_BUF_MAPPED) {
1061 if (used & 4) {
Denis Vlasenkoc7aed172006-08-16 11:54:07 +10001062 *(u32 *) ((char *) buf_priv->virtual + used) = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063 used += 4;
1064 }
1065
1066 i810_unmap_buffer(buf);
1067 }
1068 BEGIN_LP_RING(4);
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001069 OUT_RING(CMD_OP_BATCH_BUFFER);
1070 OUT_RING(start | BB1_PROTECTED);
1071 OUT_RING(start + used - 4);
1072 OUT_RING(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073 ADVANCE_LP_RING();
1074
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075 BEGIN_LP_RING(8);
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001076 OUT_RING(CMD_STORE_DWORD_IDX);
1077 OUT_RING(buf_priv->my_use_idx);
1078 OUT_RING(I810_BUF_FREE);
1079 OUT_RING(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001081 OUT_RING(CMD_STORE_DWORD_IDX);
1082 OUT_RING(16);
1083 OUT_RING(last_render);
1084 OUT_RING(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085 ADVANCE_LP_RING();
1086}
1087
Eric Anholtc153f452007-09-03 12:06:45 +10001088static int i810_dma_mc(struct drm_device *dev, void *data,
1089 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090{
Dave Airliecdd55a22007-07-11 16:32:08 +10001091 struct drm_device_dma *dma = dev->dma;
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001092 drm_i810_private_t *dev_priv = (drm_i810_private_t *) dev->dev_private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093 u32 *hw_status = dev_priv->hw_status_page;
1094 drm_i810_sarea_t *sarea_priv = (drm_i810_sarea_t *)
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001095 dev_priv->sarea_priv;
Eric Anholtc153f452007-09-03 12:06:45 +10001096 drm_i810_mc_t *mc = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097
Eric Anholt6c340ea2007-08-25 20:23:09 +10001098 LOCK_TEST_WITH_RETURN(dev, file_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099
Eric Anholtc153f452007-09-03 12:06:45 +10001100 if (mc->idx >= dma->buf_count || mc->idx < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101 return -EINVAL;
1102
Eric Anholtc153f452007-09-03 12:06:45 +10001103 i810_dma_dispatch_mc(dev, dma->buflist[mc->idx], mc->used,
1104 mc->last_render);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001106 sarea_priv->last_enqueue = dev_priv->counter - 1;
1107 sarea_priv->last_dispatch = (int)hw_status[5];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108
1109 return 0;
1110}
1111
Eric Anholtc153f452007-09-03 12:06:45 +10001112static int i810_rstatus(struct drm_device *dev, void *data,
1113 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114{
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001115 drm_i810_private_t *dev_priv = (drm_i810_private_t *) dev->dev_private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001117 return (int)(((u32 *) (dev_priv->hw_status_page))[4]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118}
1119
Eric Anholtc153f452007-09-03 12:06:45 +10001120static int i810_ov0_info(struct drm_device *dev, void *data,
1121 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122{
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001123 drm_i810_private_t *dev_priv = (drm_i810_private_t *) dev->dev_private;
Eric Anholtc153f452007-09-03 12:06:45 +10001124 drm_i810_overlay_t *ov = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125
Eric Anholtc153f452007-09-03 12:06:45 +10001126 ov->offset = dev_priv->overlay_offset;
1127 ov->physical = dev_priv->overlay_physical;
1128
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129 return 0;
1130}
1131
Eric Anholtc153f452007-09-03 12:06:45 +10001132static int i810_fstatus(struct drm_device *dev, void *data,
1133 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134{
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001135 drm_i810_private_t *dev_priv = (drm_i810_private_t *) dev->dev_private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136
Eric Anholt6c340ea2007-08-25 20:23:09 +10001137 LOCK_TEST_WITH_RETURN(dev, file_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138 return I810_READ(0x30008);
1139}
1140
Eric Anholtc153f452007-09-03 12:06:45 +10001141static int i810_ov0_flip(struct drm_device *dev, void *data,
1142 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143{
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001144 drm_i810_private_t *dev_priv = (drm_i810_private_t *) dev->dev_private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145
Eric Anholt6c340ea2007-08-25 20:23:09 +10001146 LOCK_TEST_WITH_RETURN(dev, file_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147
Nicolas Kaiseraca791c2010-07-14 21:54:13 +02001148 /* Tell the overlay to update */
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001149 I810_WRITE(0x30000, dev_priv->overlay_physical | 0x80000000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150
1151 return 0;
1152}
1153
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154/* Not sure why this isn't set all the time:
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001155 */
Nicolas Kaiseraca791c2010-07-14 21:54:13 +02001156static void i810_do_init_pageflip(struct drm_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157{
1158 drm_i810_private_t *dev_priv = dev->dev_private;
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001159
Márton Németh3e684ea2008-01-24 15:58:57 +10001160 DRM_DEBUG("\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161 dev_priv->page_flipping = 1;
1162 dev_priv->current_page = 0;
1163 dev_priv->sarea_priv->pf_current_page = dev_priv->current_page;
1164}
1165
Nicolas Kaiseraca791c2010-07-14 21:54:13 +02001166static int i810_do_cleanup_pageflip(struct drm_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167{
1168 drm_i810_private_t *dev_priv = dev->dev_private;
1169
Márton Németh3e684ea2008-01-24 15:58:57 +10001170 DRM_DEBUG("\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171 if (dev_priv->current_page != 0)
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001172 i810_dma_dispatch_flip(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173
1174 dev_priv->page_flipping = 0;
1175 return 0;
1176}
1177
Eric Anholtc153f452007-09-03 12:06:45 +10001178static int i810_flip_bufs(struct drm_device *dev, void *data,
1179 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181 drm_i810_private_t *dev_priv = dev->dev_private;
1182
Márton Németh3e684ea2008-01-24 15:58:57 +10001183 DRM_DEBUG("\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184
Eric Anholt6c340ea2007-08-25 20:23:09 +10001185 LOCK_TEST_WITH_RETURN(dev, file_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001187 if (!dev_priv->page_flipping)
1188 i810_do_init_pageflip(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001190 i810_dma_dispatch_flip(dev);
1191 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192}
1193
Dave Airlieeddca552007-07-11 16:09:54 +10001194int i810_driver_load(struct drm_device *dev, unsigned long flags)
Dave Airlie22eae942005-11-10 22:16:34 +11001195{
Daniel Vetter24986ee2013-12-11 11:34:33 +01001196 /* Our userspace depends upon the agp mapping support. */
1197 if (!dev->agp)
1198 return -EINVAL;
1199
Dave Airlie466e69b2011-12-19 11:15:29 +00001200 pci_set_master(dev->pdev);
1201
Dave Airlie22eae942005-11-10 22:16:34 +11001202 return 0;
1203}
1204
Nicolas Kaiseraca791c2010-07-14 21:54:13 +02001205void i810_driver_lastclose(struct drm_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206{
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001207 i810_dma_cleanup(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208}
1209
Nicolas Kaiseraca791c2010-07-14 21:54:13 +02001210void i810_driver_preclose(struct drm_device *dev, struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211{
1212 if (dev->dev_private) {
1213 drm_i810_private_t *dev_priv = dev->dev_private;
Nicolas Kaiseraca791c2010-07-14 21:54:13 +02001214 if (dev_priv->page_flipping)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215 i810_do_cleanup_pageflip(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217
Daniel Vetterd5346b32012-06-11 21:50:23 +02001218 if (file_priv->master && file_priv->master->lock.hw_lock) {
1219 drm_idlelock_take(&file_priv->master->lock);
1220 i810_driver_reclaim_buffers(dev, file_priv);
1221 drm_idlelock_release(&file_priv->master->lock);
1222 } else {
1223 /* master disappeared, clean up stuff anyway and hope nothing
1224 * goes wrong */
1225 i810_driver_reclaim_buffers(dev, file_priv);
1226 }
1227
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228}
1229
Nicolas Kaiseraca791c2010-07-14 21:54:13 +02001230int i810_driver_dma_quiescent(struct drm_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231{
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001232 i810_dma_quiescent(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233 return 0;
1234}
1235
Rob Clarkbaa70942013-08-02 13:27:49 -04001236const struct drm_ioctl_desc i810_ioctls[] = {
Dave Airlie1b2f1482010-08-14 20:20:34 +10001237 DRM_IOCTL_DEF_DRV(I810_INIT, i810_dma_init, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY|DRM_UNLOCKED),
1238 DRM_IOCTL_DEF_DRV(I810_VERTEX, i810_dma_vertex, DRM_AUTH|DRM_UNLOCKED),
1239 DRM_IOCTL_DEF_DRV(I810_CLEAR, i810_clear_bufs, DRM_AUTH|DRM_UNLOCKED),
1240 DRM_IOCTL_DEF_DRV(I810_FLUSH, i810_flush_ioctl, DRM_AUTH|DRM_UNLOCKED),
1241 DRM_IOCTL_DEF_DRV(I810_GETAGE, i810_getage, DRM_AUTH|DRM_UNLOCKED),
1242 DRM_IOCTL_DEF_DRV(I810_GETBUF, i810_getbuf, DRM_AUTH|DRM_UNLOCKED),
1243 DRM_IOCTL_DEF_DRV(I810_SWAP, i810_swap_bufs, DRM_AUTH|DRM_UNLOCKED),
1244 DRM_IOCTL_DEF_DRV(I810_COPY, i810_copybuf, DRM_AUTH|DRM_UNLOCKED),
1245 DRM_IOCTL_DEF_DRV(I810_DOCOPY, i810_docopy, DRM_AUTH|DRM_UNLOCKED),
1246 DRM_IOCTL_DEF_DRV(I810_OV0INFO, i810_ov0_info, DRM_AUTH|DRM_UNLOCKED),
1247 DRM_IOCTL_DEF_DRV(I810_FSTATUS, i810_fstatus, DRM_AUTH|DRM_UNLOCKED),
1248 DRM_IOCTL_DEF_DRV(I810_OV0FLIP, i810_ov0_flip, DRM_AUTH|DRM_UNLOCKED),
1249 DRM_IOCTL_DEF_DRV(I810_MC, i810_dma_mc, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY|DRM_UNLOCKED),
1250 DRM_IOCTL_DEF_DRV(I810_RSTATUS, i810_rstatus, DRM_AUTH|DRM_UNLOCKED),
1251 DRM_IOCTL_DEF_DRV(I810_FLIP, i810_flip_bufs, DRM_AUTH|DRM_UNLOCKED),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252};
1253
1254int i810_max_ioctl = DRM_ARRAY_SIZE(i810_ioctls);
Dave Airliecda17382005-07-10 17:31:26 +10001255
1256/**
1257 * Determine if the device really is AGP or not.
1258 *
1259 * All Intel graphics chipsets are treated as AGP, even if they are really
1260 * PCI-e.
1261 *
1262 * \param dev The device to be tested.
1263 *
1264 * \returns
1265 * A value of 1 is always retured to indictate every i810 is AGP.
1266 */
Nicolas Kaiseraca791c2010-07-14 21:54:13 +02001267int i810_driver_device_is_agp(struct drm_device *dev)
Dave Airliecda17382005-07-10 17:31:26 +10001268{
1269 return 1;
1270}