blob: 70de29f4e2b47900655f4deb0bf672d59acaabfc [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)
Daniel Vetter86c1fbd2014-09-10 12:43:56 +0200216 drm_legacy_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)
Daniel Vetter86c1fbd2014-09-10 12:43:56 +0200230 drm_legacy_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
Daniel Vetter86c1fbd2014-09-10 12:43:56 +0200309 drm_legacy_ioremap(&buf_priv->map, dev);
Dave Airlieb9094d32007-01-08 21:31:13 +1100310 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 }
Daniel Vetter86c1fbd2014-09-10 12:43:56 +0200337 dev_priv->mmio_map = drm_legacy_findmap(dev, init->mmio_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 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;
Daniel Vetter86c1fbd2014-09-10 12:43:56 +0200345 dev->agp_buffer_map = drm_legacy_findmap(dev, init->buffers_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 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
Daniel Vetter86c1fbd2014-09-10 12:43:56 +0200366 drm_legacy_ioremap(&dev_priv->ring.map, dev);
Dave Airlieb9094d32007-01-08 21:31:13 +1100367
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 =
Joe Perches59e26232014-08-08 14:24:19 -0700396 pci_zalloc_consistent(dev->pdev, PAGE_SIZE,
397 &dev_priv->dma_status_page);
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000398 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 DRM_DEBUG("hw status page @ %p\n", dev_priv->hw_status_page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405
406 I810_WRITE(0x02080, dev_priv->dma_status_page);
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000407 DRM_DEBUG("Enabled hardware status page\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000409 /* Now we need to init our freelist */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 if (i810_freelist_init(dev, dev_priv) != 0) {
411 dev->dev_private = (void *)dev_priv;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000412 i810_dma_cleanup(dev);
413 DRM_ERROR("Not enough space in the status page for"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 " the freelist\n");
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000415 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 }
417 dev->dev_private = (void *)dev_priv;
418
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000419 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420}
421
Eric Anholtc153f452007-09-03 12:06:45 +1000422static int i810_dma_init(struct drm_device *dev, void *data,
423 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424{
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000425 drm_i810_private_t *dev_priv;
Eric Anholtc153f452007-09-03 12:06:45 +1000426 drm_i810_init_t *init = data;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000427 int retcode = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428
Eric Anholtc153f452007-09-03 12:06:45 +1000429 switch (init->func) {
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000430 case I810_INIT_DMA_1_4:
431 DRM_INFO("Using v1.4 init.\n");
Eric Anholt9a298b22009-03-24 12:23:04 -0700432 dev_priv = kmalloc(sizeof(drm_i810_private_t), GFP_KERNEL);
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000433 if (dev_priv == NULL)
434 return -ENOMEM;
Eric Anholtc153f452007-09-03 12:06:45 +1000435 retcode = i810_dma_initialize(dev, dev_priv, init);
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000436 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000438 case I810_CLEANUP_DMA:
439 DRM_INFO("DMA Cleanup\n");
440 retcode = i810_dma_cleanup(dev);
441 break;
Eric Anholtc153f452007-09-03 12:06:45 +1000442 default:
443 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 }
445
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000446 return retcode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447}
448
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449/* Most efficient way to verify state for the i810 is as it is
450 * emitted. Non-conformant state is silently dropped.
451 *
452 * Use 'volatile' & local var tmp to force the emitted values to be
453 * identical to the verified ones.
454 */
Nicolas Kaiseraca791c2010-07-14 21:54:13 +0200455static void i810EmitContextVerified(struct drm_device *dev,
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000456 volatile unsigned int *code)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457{
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000458 drm_i810_private_t *dev_priv = dev->dev_private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459 int i, j = 0;
460 unsigned int tmp;
461 RING_LOCALS;
462
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000463 BEGIN_LP_RING(I810_CTX_SETUP_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000465 OUT_RING(GFX_OP_COLOR_FACTOR);
466 OUT_RING(code[I810_CTXREG_CF1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000468 OUT_RING(GFX_OP_STIPPLE);
469 OUT_RING(code[I810_CTXREG_ST1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000471 for (i = 4; i < I810_CTX_SETUP_SIZE; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 tmp = code[i];
473
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000474 if ((tmp & (7 << 29)) == (3 << 29) &&
475 (tmp & (0x1f << 24)) < (0x1d << 24)) {
476 OUT_RING(tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 j++;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000478 } else
479 printk("constext state dropped!!!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480 }
481
482 if (j & 1)
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000483 OUT_RING(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484
485 ADVANCE_LP_RING();
486}
487
Nicolas Kaiseraca791c2010-07-14 21:54:13 +0200488static void i810EmitTexVerified(struct drm_device *dev, volatile unsigned int *code)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489{
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000490 drm_i810_private_t *dev_priv = dev->dev_private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 int i, j = 0;
492 unsigned int tmp;
493 RING_LOCALS;
494
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000495 BEGIN_LP_RING(I810_TEX_SETUP_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000497 OUT_RING(GFX_OP_MAP_INFO);
498 OUT_RING(code[I810_TEXREG_MI1]);
499 OUT_RING(code[I810_TEXREG_MI2]);
500 OUT_RING(code[I810_TEXREG_MI3]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000502 for (i = 4; i < I810_TEX_SETUP_SIZE; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 tmp = code[i];
504
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000505 if ((tmp & (7 << 29)) == (3 << 29) &&
506 (tmp & (0x1f << 24)) < (0x1d << 24)) {
507 OUT_RING(tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 j++;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000509 } else
510 printk("texture state dropped!!!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 }
512
513 if (j & 1)
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000514 OUT_RING(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515
516 ADVANCE_LP_RING();
517}
518
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519/* Need to do some additional checking when setting the dest buffer.
520 */
Nicolas Kaiseraca791c2010-07-14 21:54:13 +0200521static void i810EmitDestVerified(struct drm_device *dev,
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000522 volatile unsigned int *code)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523{
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000524 drm_i810_private_t *dev_priv = dev->dev_private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 unsigned int tmp;
526 RING_LOCALS;
527
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000528 BEGIN_LP_RING(I810_DEST_SETUP_SIZE + 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529
530 tmp = code[I810_DESTREG_DI1];
531 if (tmp == dev_priv->front_di1 || tmp == dev_priv->back_di1) {
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000532 OUT_RING(CMD_OP_DESTBUFFER_INFO);
533 OUT_RING(tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 } else
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000535 DRM_DEBUG("bad di1 %x (allow %x or %x)\n",
536 tmp, dev_priv->front_di1, dev_priv->back_di1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537
538 /* invarient:
539 */
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000540 OUT_RING(CMD_OP_Z_BUFFER_INFO);
541 OUT_RING(dev_priv->zi1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000543 OUT_RING(GFX_OP_DESTBUFFER_VARS);
544 OUT_RING(code[I810_DESTREG_DV1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000546 OUT_RING(GFX_OP_DRAWRECT_INFO);
547 OUT_RING(code[I810_DESTREG_DR1]);
548 OUT_RING(code[I810_DESTREG_DR2]);
549 OUT_RING(code[I810_DESTREG_DR3]);
550 OUT_RING(code[I810_DESTREG_DR4]);
551 OUT_RING(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552
553 ADVANCE_LP_RING();
554}
555
Nicolas Kaiseraca791c2010-07-14 21:54:13 +0200556static void i810EmitState(struct drm_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557{
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000558 drm_i810_private_t *dev_priv = dev->dev_private;
559 drm_i810_sarea_t *sarea_priv = dev_priv->sarea_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560 unsigned int dirty = sarea_priv->dirty;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000561
Márton Németh3e684ea2008-01-24 15:58:57 +1000562 DRM_DEBUG("%x\n", dirty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563
564 if (dirty & I810_UPLOAD_BUFFERS) {
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000565 i810EmitDestVerified(dev, sarea_priv->BufferState);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 sarea_priv->dirty &= ~I810_UPLOAD_BUFFERS;
567 }
568
569 if (dirty & I810_UPLOAD_CTX) {
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000570 i810EmitContextVerified(dev, sarea_priv->ContextState);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 sarea_priv->dirty &= ~I810_UPLOAD_CTX;
572 }
573
574 if (dirty & I810_UPLOAD_TEX0) {
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000575 i810EmitTexVerified(dev, sarea_priv->TexState[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 sarea_priv->dirty &= ~I810_UPLOAD_TEX0;
577 }
578
579 if (dirty & I810_UPLOAD_TEX1) {
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000580 i810EmitTexVerified(dev, sarea_priv->TexState[1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 sarea_priv->dirty &= ~I810_UPLOAD_TEX1;
582 }
583}
584
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585/* need to verify
586 */
Nicolas Kaiseraca791c2010-07-14 21:54:13 +0200587static void i810_dma_dispatch_clear(struct drm_device *dev, int flags,
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000588 unsigned int clear_color,
589 unsigned int clear_zval)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590{
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000591 drm_i810_private_t *dev_priv = dev->dev_private;
592 drm_i810_sarea_t *sarea_priv = dev_priv->sarea_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 int nbox = sarea_priv->nbox;
Dave Airlieeddca552007-07-11 16:09:54 +1000594 struct drm_clip_rect *pbox = sarea_priv->boxes;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595 int pitch = dev_priv->pitch;
596 int cpp = 2;
597 int i;
598 RING_LOCALS;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000599
600 if (dev_priv->current_page == 1) {
601 unsigned int tmp = flags;
602
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 flags &= ~(I810_FRONT | I810_BACK);
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000604 if (tmp & I810_FRONT)
605 flags |= I810_BACK;
606 if (tmp & I810_BACK)
607 flags |= I810_FRONT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608 }
609
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000610 i810_kernel_lost_context(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000612 if (nbox > I810_NR_SAREA_CLIPRECTS)
613 nbox = I810_NR_SAREA_CLIPRECTS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000615 for (i = 0; i < nbox; i++, pbox++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 unsigned int x = pbox->x1;
617 unsigned int y = pbox->y1;
618 unsigned int width = (pbox->x2 - x) * cpp;
619 unsigned int height = pbox->y2 - y;
620 unsigned int start = y * pitch + x * cpp;
621
622 if (pbox->x1 > pbox->x2 ||
623 pbox->y1 > pbox->y2 ||
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000624 pbox->x2 > dev_priv->w || pbox->y2 > dev_priv->h)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625 continue;
626
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000627 if (flags & I810_FRONT) {
628 BEGIN_LP_RING(6);
629 OUT_RING(BR00_BITBLT_CLIENT | BR00_OP_COLOR_BLT | 0x3);
630 OUT_RING(BR13_SOLID_PATTERN | (0xF0 << 16) | pitch);
631 OUT_RING((height << 16) | width);
632 OUT_RING(start);
633 OUT_RING(clear_color);
634 OUT_RING(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 ADVANCE_LP_RING();
636 }
637
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000638 if (flags & I810_BACK) {
639 BEGIN_LP_RING(6);
640 OUT_RING(BR00_BITBLT_CLIENT | BR00_OP_COLOR_BLT | 0x3);
641 OUT_RING(BR13_SOLID_PATTERN | (0xF0 << 16) | pitch);
642 OUT_RING((height << 16) | width);
643 OUT_RING(dev_priv->back_offset + start);
644 OUT_RING(clear_color);
645 OUT_RING(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646 ADVANCE_LP_RING();
647 }
648
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000649 if (flags & I810_DEPTH) {
650 BEGIN_LP_RING(6);
651 OUT_RING(BR00_BITBLT_CLIENT | BR00_OP_COLOR_BLT | 0x3);
652 OUT_RING(BR13_SOLID_PATTERN | (0xF0 << 16) | pitch);
653 OUT_RING((height << 16) | width);
654 OUT_RING(dev_priv->depth_offset + start);
655 OUT_RING(clear_zval);
656 OUT_RING(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 ADVANCE_LP_RING();
658 }
659 }
660}
661
Nicolas Kaiseraca791c2010-07-14 21:54:13 +0200662static void i810_dma_dispatch_swap(struct drm_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663{
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000664 drm_i810_private_t *dev_priv = dev->dev_private;
665 drm_i810_sarea_t *sarea_priv = dev_priv->sarea_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666 int nbox = sarea_priv->nbox;
Dave Airlieeddca552007-07-11 16:09:54 +1000667 struct drm_clip_rect *pbox = sarea_priv->boxes;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 int pitch = dev_priv->pitch;
669 int cpp = 2;
670 int i;
671 RING_LOCALS;
672
673 DRM_DEBUG("swapbuffers\n");
674
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000675 i810_kernel_lost_context(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000677 if (nbox > I810_NR_SAREA_CLIPRECTS)
678 nbox = I810_NR_SAREA_CLIPRECTS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000680 for (i = 0; i < nbox; i++, pbox++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681 unsigned int w = pbox->x2 - pbox->x1;
682 unsigned int h = pbox->y2 - pbox->y1;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000683 unsigned int dst = pbox->x1 * cpp + pbox->y1 * pitch;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684 unsigned int start = dst;
685
686 if (pbox->x1 > pbox->x2 ||
687 pbox->y1 > pbox->y2 ||
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000688 pbox->x2 > dev_priv->w || pbox->y2 > dev_priv->h)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 continue;
690
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000691 BEGIN_LP_RING(6);
692 OUT_RING(BR00_BITBLT_CLIENT | BR00_OP_SRC_COPY_BLT | 0x4);
693 OUT_RING(pitch | (0xCC << 16));
694 OUT_RING((h << 16) | (w * cpp));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695 if (dev_priv->current_page == 0)
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000696 OUT_RING(dev_priv->front_offset + start);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697 else
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000698 OUT_RING(dev_priv->back_offset + start);
699 OUT_RING(pitch);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700 if (dev_priv->current_page == 0)
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000701 OUT_RING(dev_priv->back_offset + start);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702 else
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000703 OUT_RING(dev_priv->front_offset + start);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704 ADVANCE_LP_RING();
705 }
706}
707
Nicolas Kaiseraca791c2010-07-14 21:54:13 +0200708static void i810_dma_dispatch_vertex(struct drm_device *dev,
709 struct drm_buf *buf, int discard, int used)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710{
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000711 drm_i810_private_t *dev_priv = dev->dev_private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712 drm_i810_buf_priv_t *buf_priv = buf->dev_private;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000713 drm_i810_sarea_t *sarea_priv = dev_priv->sarea_priv;
Dave Airlieeddca552007-07-11 16:09:54 +1000714 struct drm_clip_rect *box = sarea_priv->boxes;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000715 int nbox = sarea_priv->nbox;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716 unsigned long address = (unsigned long)buf->bus_address;
717 unsigned long start = address - dev->agp->base;
718 int i = 0;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000719 RING_LOCALS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000721 i810_kernel_lost_context(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000723 if (nbox > I810_NR_SAREA_CLIPRECTS)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724 nbox = I810_NR_SAREA_CLIPRECTS;
725
Dan Carpenter6f7582a2019-10-04 13:22:51 +0300726 if (used < 0 || used > 4 * 1024)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727 used = 0;
728
729 if (sarea_priv->dirty)
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000730 i810EmitState(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731
732 if (buf_priv->currently_mapped == I810_BUF_MAPPED) {
733 unsigned int prim = (sarea_priv->vertex_prim & PR_MASK);
734
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000735 *(u32 *) buf_priv->kernel_virtual =
736 ((GFX_OP_PRIMITIVE | prim | ((used / 4) - 2)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737
738 if (used & 4) {
Denis Vlasenkoc7aed172006-08-16 11:54:07 +1000739 *(u32 *) ((char *) buf_priv->kernel_virtual + used) = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740 used += 4;
741 }
742
743 i810_unmap_buffer(buf);
744 }
745
746 if (used) {
747 do {
748 if (i < nbox) {
749 BEGIN_LP_RING(4);
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000750 OUT_RING(GFX_OP_SCISSOR | SC_UPDATE_SCISSOR |
751 SC_ENABLE);
752 OUT_RING(GFX_OP_SCISSOR_INFO);
753 OUT_RING(box[i].x1 | (box[i].y1 << 16));
754 OUT_RING((box[i].x2 -
755 1) | ((box[i].y2 - 1) << 16));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756 ADVANCE_LP_RING();
757 }
758
759 BEGIN_LP_RING(4);
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000760 OUT_RING(CMD_OP_BATCH_BUFFER);
761 OUT_RING(start | BB1_PROTECTED);
762 OUT_RING(start + used - 4);
763 OUT_RING(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764 ADVANCE_LP_RING();
765
766 } while (++i < nbox);
767 }
768
769 if (discard) {
770 dev_priv->counter++;
771
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000772 (void)cmpxchg(buf_priv->in_use, I810_BUF_CLIENT,
773 I810_BUF_HARDWARE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774
775 BEGIN_LP_RING(8);
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000776 OUT_RING(CMD_STORE_DWORD_IDX);
777 OUT_RING(20);
778 OUT_RING(dev_priv->counter);
779 OUT_RING(CMD_STORE_DWORD_IDX);
780 OUT_RING(buf_priv->my_use_idx);
781 OUT_RING(I810_BUF_FREE);
782 OUT_RING(CMD_REPORT_HEAD);
783 OUT_RING(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784 ADVANCE_LP_RING();
785 }
786}
787
Nicolas Kaiseraca791c2010-07-14 21:54:13 +0200788static void i810_dma_dispatch_flip(struct drm_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789{
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000790 drm_i810_private_t *dev_priv = dev->dev_private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791 int pitch = dev_priv->pitch;
792 RING_LOCALS;
793
Márton Németh3e684ea2008-01-24 15:58:57 +1000794 DRM_DEBUG("page=%d pfCurrentPage=%d\n",
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000795 dev_priv->current_page,
796 dev_priv->sarea_priv->pf_current_page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000798 i810_kernel_lost_context(dev);
799
800 BEGIN_LP_RING(2);
801 OUT_RING(INST_PARSER_CLIENT | INST_OP_FLUSH | INST_FLUSH_MAP_CACHE);
802 OUT_RING(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803 ADVANCE_LP_RING();
804
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000805 BEGIN_LP_RING(I810_DEST_SETUP_SIZE + 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806 /* On i815 at least ASYNC is buggy */
807 /* pitch<<5 is from 11.2.8 p158,
808 its the pitch / 8 then left shifted 8,
809 so (pitch >> 3) << 8 */
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000810 OUT_RING(CMD_OP_FRONTBUFFER_INFO | (pitch << 5) /*| ASYNC_FLIP */ );
811 if (dev_priv->current_page == 0) {
812 OUT_RING(dev_priv->back_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 dev_priv->current_page = 1;
814 } else {
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000815 OUT_RING(dev_priv->front_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816 dev_priv->current_page = 0;
817 }
818 OUT_RING(0);
819 ADVANCE_LP_RING();
820
821 BEGIN_LP_RING(2);
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000822 OUT_RING(CMD_OP_WAIT_FOR_EVENT | WAIT_FOR_PLANE_A_FLIP);
823 OUT_RING(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824 ADVANCE_LP_RING();
825
826 /* Increment the frame counter. The client-side 3D driver must
827 * throttle the framerate by waiting for this value before
828 * performing the swapbuffer ioctl.
829 */
830 dev_priv->sarea_priv->pf_current_page = dev_priv->current_page;
831
832}
833
Nicolas Kaiseraca791c2010-07-14 21:54:13 +0200834static void i810_dma_quiescent(struct drm_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835{
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000836 drm_i810_private_t *dev_priv = dev->dev_private;
837 RING_LOCALS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000839 i810_kernel_lost_context(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000841 BEGIN_LP_RING(4);
842 OUT_RING(INST_PARSER_CLIENT | INST_OP_FLUSH | INST_FLUSH_MAP_CACHE);
843 OUT_RING(CMD_REPORT_HEAD);
844 OUT_RING(0);
845 OUT_RING(0);
846 ADVANCE_LP_RING();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000848 i810_wait_ring(dev, dev_priv->ring.Size - 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849}
850
Nicolas Kaiseraca791c2010-07-14 21:54:13 +0200851static int i810_flush_queue(struct drm_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852{
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000853 drm_i810_private_t *dev_priv = dev->dev_private;
Dave Airliecdd55a22007-07-11 16:32:08 +1000854 struct drm_device_dma *dma = dev->dma;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000855 int i, ret = 0;
856 RING_LOCALS;
857
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000858 i810_kernel_lost_context(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000860 BEGIN_LP_RING(2);
861 OUT_RING(CMD_REPORT_HEAD);
862 OUT_RING(0);
863 ADVANCE_LP_RING();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000865 i810_wait_ring(dev, dev_priv->ring.Size - 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000867 for (i = 0; i < dma->buf_count; i++) {
Dave Airlie056219e2007-07-11 16:17:42 +1000868 struct drm_buf *buf = dma->buflist[i];
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000869 drm_i810_buf_priv_t *buf_priv = buf->dev_private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870
871 int used = cmpxchg(buf_priv->in_use, I810_BUF_HARDWARE,
872 I810_BUF_FREE);
873
874 if (used == I810_BUF_HARDWARE)
875 DRM_DEBUG("reclaimed from HARDWARE\n");
876 if (used == I810_BUF_CLIENT)
877 DRM_DEBUG("still on client\n");
878 }
879
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000880 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881}
882
883/* Must be called with the lock held */
Daniel Vetterd5346b32012-06-11 21:50:23 +0200884void i810_driver_reclaim_buffers(struct drm_device *dev,
Eric Anholt6c340ea2007-08-25 20:23:09 +1000885 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886{
Dave Airliecdd55a22007-07-11 16:32:08 +1000887 struct drm_device_dma *dma = dev->dma;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000888 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000890 if (!dma)
891 return;
892 if (!dev->dev_private)
893 return;
894 if (!dma->buflist)
895 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000897 i810_flush_queue(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898
899 for (i = 0; i < dma->buf_count; i++) {
Dave Airlie056219e2007-07-11 16:17:42 +1000900 struct drm_buf *buf = dma->buflist[i];
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000901 drm_i810_buf_priv_t *buf_priv = buf->dev_private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902
Eric Anholt6c340ea2007-08-25 20:23:09 +1000903 if (buf->file_priv == file_priv && buf_priv) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904 int used = cmpxchg(buf_priv->in_use, I810_BUF_CLIENT,
905 I810_BUF_FREE);
906
907 if (used == I810_BUF_CLIENT)
908 DRM_DEBUG("reclaimed from client\n");
909 if (buf_priv->currently_mapped == I810_BUF_MAPPED)
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000910 buf_priv->currently_mapped = I810_BUF_UNMAPPED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911 }
912 }
913}
914
Eric Anholtc153f452007-09-03 12:06:45 +1000915static int i810_flush_ioctl(struct drm_device *dev, void *data,
916 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917{
Eric Anholt6c340ea2007-08-25 20:23:09 +1000918 LOCK_TEST_WITH_RETURN(dev, file_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000920 i810_flush_queue(dev);
921 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922}
923
Eric Anholtc153f452007-09-03 12:06:45 +1000924static int i810_dma_vertex(struct drm_device *dev, void *data,
925 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926{
Dave Airliecdd55a22007-07-11 16:32:08 +1000927 struct drm_device_dma *dma = dev->dma;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000928 drm_i810_private_t *dev_priv = (drm_i810_private_t *) dev->dev_private;
929 u32 *hw_status = dev_priv->hw_status_page;
930 drm_i810_sarea_t *sarea_priv = (drm_i810_sarea_t *)
931 dev_priv->sarea_priv;
Eric Anholtc153f452007-09-03 12:06:45 +1000932 drm_i810_vertex_t *vertex = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933
Eric Anholt6c340ea2007-08-25 20:23:09 +1000934 LOCK_TEST_WITH_RETURN(dev, file_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935
Márton Németh3e684ea2008-01-24 15:58:57 +1000936 DRM_DEBUG("idx %d used %d discard %d\n",
Eric Anholtc153f452007-09-03 12:06:45 +1000937 vertex->idx, vertex->used, vertex->discard);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938
Eric Anholtc153f452007-09-03 12:06:45 +1000939 if (vertex->idx < 0 || vertex->idx > dma->buf_count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940 return -EINVAL;
941
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000942 i810_dma_dispatch_vertex(dev,
Eric Anholtc153f452007-09-03 12:06:45 +1000943 dma->buflist[vertex->idx],
944 vertex->discard, vertex->used);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000946 sarea_priv->last_enqueue = dev_priv->counter - 1;
947 sarea_priv->last_dispatch = (int)hw_status[5];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948
949 return 0;
950}
951
Eric Anholtc153f452007-09-03 12:06:45 +1000952static int i810_clear_bufs(struct drm_device *dev, void *data,
953 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954{
Eric Anholtc153f452007-09-03 12:06:45 +1000955 drm_i810_clear_t *clear = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956
Eric Anholt6c340ea2007-08-25 20:23:09 +1000957 LOCK_TEST_WITH_RETURN(dev, file_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000959 /* GH: Someone's doing nasty things... */
Nicolas Kaiseraca791c2010-07-14 21:54:13 +0200960 if (!dev->dev_private)
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000961 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962
Eric Anholtc153f452007-09-03 12:06:45 +1000963 i810_dma_dispatch_clear(dev, clear->flags,
964 clear->clear_color, clear->clear_depth);
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000965 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966}
967
Eric Anholtc153f452007-09-03 12:06:45 +1000968static int i810_swap_bufs(struct drm_device *dev, void *data,
969 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970{
Márton Németh3e684ea2008-01-24 15:58:57 +1000971 DRM_DEBUG("\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972
Eric Anholt6c340ea2007-08-25 20:23:09 +1000973 LOCK_TEST_WITH_RETURN(dev, file_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000975 i810_dma_dispatch_swap(dev);
976 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977}
978
Eric Anholtc153f452007-09-03 12:06:45 +1000979static int i810_getage(struct drm_device *dev, void *data,
980 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981{
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000982 drm_i810_private_t *dev_priv = (drm_i810_private_t *) dev->dev_private;
983 u32 *hw_status = dev_priv->hw_status_page;
984 drm_i810_sarea_t *sarea_priv = (drm_i810_sarea_t *)
985 dev_priv->sarea_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000987 sarea_priv->last_dispatch = (int)hw_status[5];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988 return 0;
989}
990
Eric Anholtc153f452007-09-03 12:06:45 +1000991static int i810_getbuf(struct drm_device *dev, void *data,
992 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993{
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000994 int retcode = 0;
Eric Anholtc153f452007-09-03 12:06:45 +1000995 drm_i810_dma_t *d = data;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000996 drm_i810_private_t *dev_priv = (drm_i810_private_t *) dev->dev_private;
997 u32 *hw_status = dev_priv->hw_status_page;
998 drm_i810_sarea_t *sarea_priv = (drm_i810_sarea_t *)
999 dev_priv->sarea_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000
Eric Anholt6c340ea2007-08-25 20:23:09 +10001001 LOCK_TEST_WITH_RETURN(dev, file_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002
Eric Anholtc153f452007-09-03 12:06:45 +10001003 d->granted = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004
Eric Anholtc153f452007-09-03 12:06:45 +10001005 retcode = i810_dma_get_buffer(dev, d, file_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006
1007 DRM_DEBUG("i810_dma: %d returning %d, granted = %d\n",
Pavel Emelyanovba25f9d2007-10-18 23:40:40 -07001008 task_pid_nr(current), retcode, d->granted);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001010 sarea_priv->last_dispatch = (int)hw_status[5];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011
1012 return retcode;
1013}
1014
Eric Anholtc153f452007-09-03 12:06:45 +10001015static int i810_copybuf(struct drm_device *dev, void *data,
1016 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017{
1018 /* Never copy - 2.4.x doesn't need it */
1019 return 0;
1020}
1021
Eric Anholtc153f452007-09-03 12:06:45 +10001022static int i810_docopy(struct drm_device *dev, void *data,
1023 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024{
1025 /* Never copy - 2.4.x doesn't need it */
1026 return 0;
1027}
1028
Nicolas Kaiseraca791c2010-07-14 21:54:13 +02001029static void i810_dma_dispatch_mc(struct drm_device *dev, struct drm_buf *buf, int used,
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001030 unsigned int last_render)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031{
1032 drm_i810_private_t *dev_priv = dev->dev_private;
1033 drm_i810_buf_priv_t *buf_priv = buf->dev_private;
1034 drm_i810_sarea_t *sarea_priv = dev_priv->sarea_priv;
1035 unsigned long address = (unsigned long)buf->bus_address;
1036 unsigned long start = address - dev->agp->base;
1037 int u;
1038 RING_LOCALS;
1039
1040 i810_kernel_lost_context(dev);
1041
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001042 u = cmpxchg(buf_priv->in_use, I810_BUF_CLIENT, I810_BUF_HARDWARE);
Nicolas Kaiseraca791c2010-07-14 21:54:13 +02001043 if (u != I810_BUF_CLIENT)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044 DRM_DEBUG("MC found buffer that isn't mine!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045
Dan Carpenter6f7582a2019-10-04 13:22:51 +03001046 if (used < 0 || used > 4 * 1024)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047 used = 0;
1048
1049 sarea_priv->dirty = 0x7f;
1050
Márton Németh3e684ea2008-01-24 15:58:57 +10001051 DRM_DEBUG("addr 0x%lx, used 0x%x\n", address, used);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052
1053 dev_priv->counter++;
1054 DRM_DEBUG("dispatch counter : %ld\n", dev_priv->counter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055 DRM_DEBUG("start : %lx\n", start);
1056 DRM_DEBUG("used : %d\n", used);
1057 DRM_DEBUG("start + used - 4 : %ld\n", start + used - 4);
1058
1059 if (buf_priv->currently_mapped == I810_BUF_MAPPED) {
1060 if (used & 4) {
Denis Vlasenkoc7aed172006-08-16 11:54:07 +10001061 *(u32 *) ((char *) buf_priv->virtual + used) = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062 used += 4;
1063 }
1064
1065 i810_unmap_buffer(buf);
1066 }
1067 BEGIN_LP_RING(4);
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001068 OUT_RING(CMD_OP_BATCH_BUFFER);
1069 OUT_RING(start | BB1_PROTECTED);
1070 OUT_RING(start + used - 4);
1071 OUT_RING(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072 ADVANCE_LP_RING();
1073
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074 BEGIN_LP_RING(8);
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001075 OUT_RING(CMD_STORE_DWORD_IDX);
1076 OUT_RING(buf_priv->my_use_idx);
1077 OUT_RING(I810_BUF_FREE);
1078 OUT_RING(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001080 OUT_RING(CMD_STORE_DWORD_IDX);
1081 OUT_RING(16);
1082 OUT_RING(last_render);
1083 OUT_RING(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084 ADVANCE_LP_RING();
1085}
1086
Eric Anholtc153f452007-09-03 12:06:45 +10001087static int i810_dma_mc(struct drm_device *dev, void *data,
1088 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089{
Dave Airliecdd55a22007-07-11 16:32:08 +10001090 struct drm_device_dma *dma = dev->dma;
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001091 drm_i810_private_t *dev_priv = (drm_i810_private_t *) dev->dev_private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092 u32 *hw_status = dev_priv->hw_status_page;
1093 drm_i810_sarea_t *sarea_priv = (drm_i810_sarea_t *)
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001094 dev_priv->sarea_priv;
Eric Anholtc153f452007-09-03 12:06:45 +10001095 drm_i810_mc_t *mc = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096
Eric Anholt6c340ea2007-08-25 20:23:09 +10001097 LOCK_TEST_WITH_RETURN(dev, file_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098
Eric Anholtc153f452007-09-03 12:06:45 +10001099 if (mc->idx >= dma->buf_count || mc->idx < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100 return -EINVAL;
1101
Eric Anholtc153f452007-09-03 12:06:45 +10001102 i810_dma_dispatch_mc(dev, dma->buflist[mc->idx], mc->used,
1103 mc->last_render);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001105 sarea_priv->last_enqueue = dev_priv->counter - 1;
1106 sarea_priv->last_dispatch = (int)hw_status[5];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107
1108 return 0;
1109}
1110
Eric Anholtc153f452007-09-03 12:06:45 +10001111static int i810_rstatus(struct drm_device *dev, void *data,
1112 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113{
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001114 drm_i810_private_t *dev_priv = (drm_i810_private_t *) dev->dev_private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001116 return (int)(((u32 *) (dev_priv->hw_status_page))[4]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117}
1118
Eric Anholtc153f452007-09-03 12:06:45 +10001119static int i810_ov0_info(struct drm_device *dev, void *data,
1120 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121{
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001122 drm_i810_private_t *dev_priv = (drm_i810_private_t *) dev->dev_private;
Eric Anholtc153f452007-09-03 12:06:45 +10001123 drm_i810_overlay_t *ov = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124
Eric Anholtc153f452007-09-03 12:06:45 +10001125 ov->offset = dev_priv->overlay_offset;
1126 ov->physical = dev_priv->overlay_physical;
1127
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128 return 0;
1129}
1130
Eric Anholtc153f452007-09-03 12:06:45 +10001131static int i810_fstatus(struct drm_device *dev, void *data,
1132 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133{
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001134 drm_i810_private_t *dev_priv = (drm_i810_private_t *) dev->dev_private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135
Eric Anholt6c340ea2007-08-25 20:23:09 +10001136 LOCK_TEST_WITH_RETURN(dev, file_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137 return I810_READ(0x30008);
1138}
1139
Eric Anholtc153f452007-09-03 12:06:45 +10001140static int i810_ov0_flip(struct drm_device *dev, void *data,
1141 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142{
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001143 drm_i810_private_t *dev_priv = (drm_i810_private_t *) dev->dev_private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144
Eric Anholt6c340ea2007-08-25 20:23:09 +10001145 LOCK_TEST_WITH_RETURN(dev, file_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146
Nicolas Kaiseraca791c2010-07-14 21:54:13 +02001147 /* Tell the overlay to update */
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001148 I810_WRITE(0x30000, dev_priv->overlay_physical | 0x80000000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149
1150 return 0;
1151}
1152
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153/* Not sure why this isn't set all the time:
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001154 */
Nicolas Kaiseraca791c2010-07-14 21:54:13 +02001155static void i810_do_init_pageflip(struct drm_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156{
1157 drm_i810_private_t *dev_priv = dev->dev_private;
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001158
Márton Németh3e684ea2008-01-24 15:58:57 +10001159 DRM_DEBUG("\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160 dev_priv->page_flipping = 1;
1161 dev_priv->current_page = 0;
1162 dev_priv->sarea_priv->pf_current_page = dev_priv->current_page;
1163}
1164
Nicolas Kaiseraca791c2010-07-14 21:54:13 +02001165static int i810_do_cleanup_pageflip(struct drm_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166{
1167 drm_i810_private_t *dev_priv = dev->dev_private;
1168
Márton Németh3e684ea2008-01-24 15:58:57 +10001169 DRM_DEBUG("\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170 if (dev_priv->current_page != 0)
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001171 i810_dma_dispatch_flip(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172
1173 dev_priv->page_flipping = 0;
1174 return 0;
1175}
1176
Eric Anholtc153f452007-09-03 12:06:45 +10001177static int i810_flip_bufs(struct drm_device *dev, void *data,
1178 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180 drm_i810_private_t *dev_priv = dev->dev_private;
1181
Márton Németh3e684ea2008-01-24 15:58:57 +10001182 DRM_DEBUG("\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183
Eric Anholt6c340ea2007-08-25 20:23:09 +10001184 LOCK_TEST_WITH_RETURN(dev, file_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001186 if (!dev_priv->page_flipping)
1187 i810_do_init_pageflip(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001189 i810_dma_dispatch_flip(dev);
1190 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191}
1192
Dave Airlieeddca552007-07-11 16:09:54 +10001193int i810_driver_load(struct drm_device *dev, unsigned long flags)
Dave Airlie22eae942005-11-10 22:16:34 +11001194{
Daniel Vetter24986ee2013-12-11 11:34:33 +01001195 /* Our userspace depends upon the agp mapping support. */
1196 if (!dev->agp)
1197 return -EINVAL;
1198
Dave Airlie466e69b2011-12-19 11:15:29 +00001199 pci_set_master(dev->pdev);
1200
Dave Airlie22eae942005-11-10 22:16:34 +11001201 return 0;
1202}
1203
Nicolas Kaiseraca791c2010-07-14 21:54:13 +02001204void i810_driver_lastclose(struct drm_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205{
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001206 i810_dma_cleanup(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207}
1208
Nicolas Kaiseraca791c2010-07-14 21:54:13 +02001209void i810_driver_preclose(struct drm_device *dev, struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210{
1211 if (dev->dev_private) {
1212 drm_i810_private_t *dev_priv = dev->dev_private;
Nicolas Kaiseraca791c2010-07-14 21:54:13 +02001213 if (dev_priv->page_flipping)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214 i810_do_cleanup_pageflip(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216
Daniel Vetterd5346b32012-06-11 21:50:23 +02001217 if (file_priv->master && file_priv->master->lock.hw_lock) {
David Herrmannbb6d8222014-08-29 12:12:46 +02001218 drm_legacy_idlelock_take(&file_priv->master->lock);
Daniel Vetterd5346b32012-06-11 21:50:23 +02001219 i810_driver_reclaim_buffers(dev, file_priv);
David Herrmannbb6d8222014-08-29 12:12:46 +02001220 drm_legacy_idlelock_release(&file_priv->master->lock);
Daniel Vetterd5346b32012-06-11 21:50:23 +02001221 } else {
1222 /* master disappeared, clean up stuff anyway and hope nothing
1223 * goes wrong */
1224 i810_driver_reclaim_buffers(dev, file_priv);
1225 }
1226
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227}
1228
Nicolas Kaiseraca791c2010-07-14 21:54:13 +02001229int i810_driver_dma_quiescent(struct drm_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230{
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001231 i810_dma_quiescent(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232 return 0;
1233}
1234
Rob Clarkbaa70942013-08-02 13:27:49 -04001235const struct drm_ioctl_desc i810_ioctls[] = {
Dave Airlie1b2f1482010-08-14 20:20:34 +10001236 DRM_IOCTL_DEF_DRV(I810_INIT, i810_dma_init, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY|DRM_UNLOCKED),
1237 DRM_IOCTL_DEF_DRV(I810_VERTEX, i810_dma_vertex, DRM_AUTH|DRM_UNLOCKED),
1238 DRM_IOCTL_DEF_DRV(I810_CLEAR, i810_clear_bufs, DRM_AUTH|DRM_UNLOCKED),
1239 DRM_IOCTL_DEF_DRV(I810_FLUSH, i810_flush_ioctl, DRM_AUTH|DRM_UNLOCKED),
1240 DRM_IOCTL_DEF_DRV(I810_GETAGE, i810_getage, DRM_AUTH|DRM_UNLOCKED),
1241 DRM_IOCTL_DEF_DRV(I810_GETBUF, i810_getbuf, DRM_AUTH|DRM_UNLOCKED),
1242 DRM_IOCTL_DEF_DRV(I810_SWAP, i810_swap_bufs, DRM_AUTH|DRM_UNLOCKED),
1243 DRM_IOCTL_DEF_DRV(I810_COPY, i810_copybuf, DRM_AUTH|DRM_UNLOCKED),
1244 DRM_IOCTL_DEF_DRV(I810_DOCOPY, i810_docopy, DRM_AUTH|DRM_UNLOCKED),
1245 DRM_IOCTL_DEF_DRV(I810_OV0INFO, i810_ov0_info, DRM_AUTH|DRM_UNLOCKED),
1246 DRM_IOCTL_DEF_DRV(I810_FSTATUS, i810_fstatus, DRM_AUTH|DRM_UNLOCKED),
1247 DRM_IOCTL_DEF_DRV(I810_OV0FLIP, i810_ov0_flip, DRM_AUTH|DRM_UNLOCKED),
1248 DRM_IOCTL_DEF_DRV(I810_MC, i810_dma_mc, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY|DRM_UNLOCKED),
1249 DRM_IOCTL_DEF_DRV(I810_RSTATUS, i810_rstatus, DRM_AUTH|DRM_UNLOCKED),
1250 DRM_IOCTL_DEF_DRV(I810_FLIP, i810_flip_bufs, DRM_AUTH|DRM_UNLOCKED),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251};
1252
Damien Lespiauf95aeb12014-06-09 14:39:49 +01001253int i810_max_ioctl = ARRAY_SIZE(i810_ioctls);
Dave Airliecda17382005-07-10 17:31:26 +10001254
1255/**
1256 * Determine if the device really is AGP or not.
1257 *
1258 * All Intel graphics chipsets are treated as AGP, even if they are really
1259 * PCI-e.
1260 *
1261 * \param dev The device to be tested.
1262 *
1263 * \returns
1264 * A value of 1 is always retured to indictate every i810 is AGP.
1265 */
Nicolas Kaiseraca791c2010-07-14 21:54:13 +02001266int i810_driver_device_is_agp(struct drm_device *dev)
Dave Airliecda17382005-07-10 17:31:26 +10001267{
1268 return 1;
1269}