Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* mga_dma.c -- DMA support for mga g200/g400 -*- 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. |
Dave Airlie | 6795c98 | 2005-07-10 18:20:09 +1000 | [diff] [blame] | 26 | */ |
| 27 | |
| 28 | /** |
| 29 | * \file mga_dma.c |
| 30 | * DMA support for MGA G200 / G400. |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 31 | * |
Dave Airlie | 6795c98 | 2005-07-10 18:20:09 +1000 | [diff] [blame] | 32 | * \author Rickard E. (Rik) Faith <faith@valinux.com> |
| 33 | * \author Jeff Hartmann <jhartmann@valinux.com> |
| 34 | * \author Keith Whitwell <keith@tungstengraphics.com> |
| 35 | * \author Gareth Hughes <gareth@valinux.com> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 36 | */ |
| 37 | |
| 38 | #include "drmP.h" |
| 39 | #include "drm.h" |
Dave Airlie | 6795c98 | 2005-07-10 18:20:09 +1000 | [diff] [blame] | 40 | #include "drm_sarea.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 41 | #include "mga_drm.h" |
| 42 | #include "mga_drv.h" |
| 43 | |
| 44 | #define MGA_DEFAULT_USEC_TIMEOUT 10000 |
| 45 | #define MGA_FREELIST_DEBUG 0 |
| 46 | |
Dave Airlie | 7ccf800 | 2005-11-11 23:11:34 +1100 | [diff] [blame] | 47 | #define MINIMAL_CLEANUP 0 |
| 48 | #define FULL_CLEANUP 1 |
Dave Airlie | eddca55 | 2007-07-11 16:09:54 +1000 | [diff] [blame] | 49 | static int mga_do_cleanup_dma(struct drm_device *dev, int full_cleanup); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 50 | |
| 51 | /* ================================================================ |
| 52 | * Engine control |
| 53 | */ |
| 54 | |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 55 | int mga_do_wait_for_idle(drm_mga_private_t * dev_priv) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 56 | { |
| 57 | u32 status = 0; |
| 58 | int i; |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 59 | DRM_DEBUG("\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 60 | |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 61 | for (i = 0; i < dev_priv->usec_timeout; i++) { |
| 62 | status = MGA_READ(MGA_STATUS) & MGA_ENGINE_IDLE_MASK; |
| 63 | if (status == MGA_ENDPRDMASTS) { |
| 64 | MGA_WRITE8(MGA_CRTC_INDEX, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 65 | return 0; |
| 66 | } |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 67 | DRM_UDELAY(1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 68 | } |
| 69 | |
| 70 | #if MGA_DMA_DEBUG |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 71 | DRM_ERROR("failed!\n"); |
| 72 | DRM_INFO(" status=0x%08x\n", status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 73 | #endif |
Eric Anholt | 20caafa | 2007-08-25 19:22:43 +1000 | [diff] [blame] | 74 | return -EBUSY; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 75 | } |
| 76 | |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 77 | static int mga_do_dma_reset(drm_mga_private_t * dev_priv) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 78 | { |
| 79 | drm_mga_sarea_t *sarea_priv = dev_priv->sarea_priv; |
| 80 | drm_mga_primary_buffer_t *primary = &dev_priv->prim; |
| 81 | |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 82 | DRM_DEBUG("\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 83 | |
| 84 | /* The primary DMA stream should look like new right about now. |
| 85 | */ |
| 86 | primary->tail = 0; |
| 87 | primary->space = primary->size; |
| 88 | primary->last_flush = 0; |
| 89 | |
| 90 | sarea_priv->last_wrap = 0; |
| 91 | |
| 92 | /* FIXME: Reset counters, buffer ages etc... |
| 93 | */ |
| 94 | |
| 95 | /* FIXME: What else do we need to reinitialize? WARP stuff? |
| 96 | */ |
| 97 | |
| 98 | return 0; |
| 99 | } |
| 100 | |
| 101 | /* ================================================================ |
| 102 | * Primary DMA stream |
| 103 | */ |
| 104 | |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 105 | void mga_do_dma_flush(drm_mga_private_t * dev_priv) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 106 | { |
| 107 | drm_mga_primary_buffer_t *primary = &dev_priv->prim; |
| 108 | u32 head, tail; |
| 109 | u32 status = 0; |
| 110 | int i; |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 111 | DMA_LOCALS; |
| 112 | DRM_DEBUG("\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 113 | |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 114 | /* We need to wait so that we can do an safe flush */ |
| 115 | for (i = 0; i < dev_priv->usec_timeout; i++) { |
| 116 | status = MGA_READ(MGA_STATUS) & MGA_ENGINE_IDLE_MASK; |
| 117 | if (status == MGA_ENDPRDMASTS) |
| 118 | break; |
| 119 | DRM_UDELAY(1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 120 | } |
| 121 | |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 122 | if (primary->tail == primary->last_flush) { |
| 123 | DRM_DEBUG(" bailing out...\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 124 | return; |
| 125 | } |
| 126 | |
| 127 | tail = primary->tail + dev_priv->primary->offset; |
| 128 | |
| 129 | /* We need to pad the stream between flushes, as the card |
| 130 | * actually (partially?) reads the first of these commands. |
| 131 | * See page 4-16 in the G400 manual, middle of the page or so. |
| 132 | */ |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 133 | BEGIN_DMA(1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 134 | |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 135 | DMA_BLOCK(MGA_DMAPAD, 0x00000000, |
| 136 | MGA_DMAPAD, 0x00000000, |
| 137 | MGA_DMAPAD, 0x00000000, MGA_DMAPAD, 0x00000000); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 138 | |
| 139 | ADVANCE_DMA(); |
| 140 | |
| 141 | primary->last_flush = primary->tail; |
| 142 | |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 143 | head = MGA_READ(MGA_PRIMADDRESS); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 144 | |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 145 | if (head <= tail) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 146 | primary->space = primary->size - primary->tail; |
| 147 | } else { |
| 148 | primary->space = head - tail; |
| 149 | } |
| 150 | |
Benjamin Herrenschmidt | 41c2e75 | 2009-02-02 16:55:47 +1100 | [diff] [blame^] | 151 | DRM_DEBUG(" head = 0x%06lx\n", (unsigned long)(head - dev_priv->primary->offset)); |
| 152 | DRM_DEBUG(" tail = 0x%06lx\n", (unsigned long)(tail - dev_priv->primary->offset)); |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 153 | DRM_DEBUG(" space = 0x%06x\n", primary->space); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 154 | |
| 155 | mga_flush_write_combine(); |
Dave Airlie | 6795c98 | 2005-07-10 18:20:09 +1000 | [diff] [blame] | 156 | MGA_WRITE(MGA_PRIMEND, tail | dev_priv->dma_access); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 157 | |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 158 | DRM_DEBUG("done.\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 159 | } |
| 160 | |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 161 | void mga_do_dma_wrap_start(drm_mga_private_t * dev_priv) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 162 | { |
| 163 | drm_mga_primary_buffer_t *primary = &dev_priv->prim; |
| 164 | u32 head, tail; |
| 165 | DMA_LOCALS; |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 166 | DRM_DEBUG("\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 167 | |
| 168 | BEGIN_DMA_WRAP(); |
| 169 | |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 170 | DMA_BLOCK(MGA_DMAPAD, 0x00000000, |
| 171 | MGA_DMAPAD, 0x00000000, |
| 172 | MGA_DMAPAD, 0x00000000, MGA_DMAPAD, 0x00000000); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 173 | |
| 174 | ADVANCE_DMA(); |
| 175 | |
| 176 | tail = primary->tail + dev_priv->primary->offset; |
| 177 | |
| 178 | primary->tail = 0; |
| 179 | primary->last_flush = 0; |
| 180 | primary->last_wrap++; |
| 181 | |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 182 | head = MGA_READ(MGA_PRIMADDRESS); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 183 | |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 184 | if (head == dev_priv->primary->offset) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 185 | primary->space = primary->size; |
| 186 | } else { |
| 187 | primary->space = head - dev_priv->primary->offset; |
| 188 | } |
| 189 | |
Benjamin Herrenschmidt | 41c2e75 | 2009-02-02 16:55:47 +1100 | [diff] [blame^] | 190 | DRM_DEBUG(" head = 0x%06lx\n", (unsigned long)(head - dev_priv->primary->offset)); |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 191 | DRM_DEBUG(" tail = 0x%06x\n", primary->tail); |
| 192 | DRM_DEBUG(" wrap = %d\n", primary->last_wrap); |
| 193 | DRM_DEBUG(" space = 0x%06x\n", primary->space); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 194 | |
| 195 | mga_flush_write_combine(); |
Dave Airlie | 6795c98 | 2005-07-10 18:20:09 +1000 | [diff] [blame] | 196 | MGA_WRITE(MGA_PRIMEND, tail | dev_priv->dma_access); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 197 | |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 198 | set_bit(0, &primary->wrapped); |
| 199 | DRM_DEBUG("done.\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 200 | } |
| 201 | |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 202 | void mga_do_dma_wrap_end(drm_mga_private_t * dev_priv) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 203 | { |
| 204 | drm_mga_primary_buffer_t *primary = &dev_priv->prim; |
| 205 | drm_mga_sarea_t *sarea_priv = dev_priv->sarea_priv; |
| 206 | u32 head = dev_priv->primary->offset; |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 207 | DRM_DEBUG("\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 208 | |
| 209 | sarea_priv->last_wrap++; |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 210 | DRM_DEBUG(" wrap = %d\n", sarea_priv->last_wrap); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 211 | |
| 212 | mga_flush_write_combine(); |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 213 | MGA_WRITE(MGA_PRIMADDRESS, head | MGA_DMA_GENERAL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 214 | |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 215 | clear_bit(0, &primary->wrapped); |
| 216 | DRM_DEBUG("done.\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 217 | } |
| 218 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 219 | /* ================================================================ |
| 220 | * Freelist management |
| 221 | */ |
| 222 | |
| 223 | #define MGA_BUFFER_USED ~0 |
| 224 | #define MGA_BUFFER_FREE 0 |
| 225 | |
| 226 | #if MGA_FREELIST_DEBUG |
Dave Airlie | eddca55 | 2007-07-11 16:09:54 +1000 | [diff] [blame] | 227 | static void mga_freelist_print(struct drm_device * dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 228 | { |
| 229 | drm_mga_private_t *dev_priv = dev->dev_private; |
| 230 | drm_mga_freelist_t *entry; |
| 231 | |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 232 | DRM_INFO("\n"); |
| 233 | DRM_INFO("current dispatch: last=0x%x done=0x%x\n", |
| 234 | dev_priv->sarea_priv->last_dispatch, |
| 235 | (unsigned int)(MGA_READ(MGA_PRIMADDRESS) - |
| 236 | dev_priv->primary->offset)); |
| 237 | DRM_INFO("current freelist:\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 238 | |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 239 | for (entry = dev_priv->head->next; entry; entry = entry->next) { |
| 240 | DRM_INFO(" %p idx=%2d age=0x%x 0x%06lx\n", |
| 241 | entry, entry->buf->idx, entry->age.head, |
Benjamin Herrenschmidt | 41c2e75 | 2009-02-02 16:55:47 +1100 | [diff] [blame^] | 242 | (unsigned long)(entry->age.head - dev_priv->primary->offset)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 243 | } |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 244 | DRM_INFO("\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 245 | } |
| 246 | #endif |
| 247 | |
Dave Airlie | eddca55 | 2007-07-11 16:09:54 +1000 | [diff] [blame] | 248 | static int mga_freelist_init(struct drm_device * dev, drm_mga_private_t * dev_priv) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 249 | { |
Dave Airlie | cdd55a2 | 2007-07-11 16:32:08 +1000 | [diff] [blame] | 250 | struct drm_device_dma *dma = dev->dma; |
Dave Airlie | 056219e | 2007-07-11 16:17:42 +1000 | [diff] [blame] | 251 | struct drm_buf *buf; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 252 | drm_mga_buf_priv_t *buf_priv; |
| 253 | drm_mga_freelist_t *entry; |
| 254 | int i; |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 255 | DRM_DEBUG("count=%d\n", dma->buf_count); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 256 | |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 257 | dev_priv->head = drm_alloc(sizeof(drm_mga_freelist_t), DRM_MEM_DRIVER); |
| 258 | if (dev_priv->head == NULL) |
Eric Anholt | 20caafa | 2007-08-25 19:22:43 +1000 | [diff] [blame] | 259 | return -ENOMEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 260 | |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 261 | memset(dev_priv->head, 0, sizeof(drm_mga_freelist_t)); |
| 262 | SET_AGE(&dev_priv->head->age, MGA_BUFFER_USED, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 263 | |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 264 | for (i = 0; i < dma->buf_count; i++) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 265 | buf = dma->buflist[i]; |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 266 | buf_priv = buf->dev_private; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 267 | |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 268 | entry = drm_alloc(sizeof(drm_mga_freelist_t), DRM_MEM_DRIVER); |
| 269 | if (entry == NULL) |
Eric Anholt | 20caafa | 2007-08-25 19:22:43 +1000 | [diff] [blame] | 270 | return -ENOMEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 271 | |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 272 | memset(entry, 0, sizeof(drm_mga_freelist_t)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 273 | |
| 274 | entry->next = dev_priv->head->next; |
| 275 | entry->prev = dev_priv->head; |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 276 | SET_AGE(&entry->age, MGA_BUFFER_FREE, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 277 | entry->buf = buf; |
| 278 | |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 279 | if (dev_priv->head->next != NULL) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 280 | dev_priv->head->next->prev = entry; |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 281 | if (entry->next == NULL) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 282 | dev_priv->tail = entry; |
| 283 | |
| 284 | buf_priv->list_entry = entry; |
| 285 | buf_priv->discard = 0; |
| 286 | buf_priv->dispatched = 0; |
| 287 | |
| 288 | dev_priv->head->next = entry; |
| 289 | } |
| 290 | |
| 291 | return 0; |
| 292 | } |
| 293 | |
Dave Airlie | eddca55 | 2007-07-11 16:09:54 +1000 | [diff] [blame] | 294 | static void mga_freelist_cleanup(struct drm_device * dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 295 | { |
| 296 | drm_mga_private_t *dev_priv = dev->dev_private; |
| 297 | drm_mga_freelist_t *entry; |
| 298 | drm_mga_freelist_t *next; |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 299 | DRM_DEBUG("\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 300 | |
| 301 | entry = dev_priv->head; |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 302 | while (entry) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 303 | next = entry->next; |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 304 | drm_free(entry, sizeof(drm_mga_freelist_t), DRM_MEM_DRIVER); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 305 | entry = next; |
| 306 | } |
| 307 | |
| 308 | dev_priv->head = dev_priv->tail = NULL; |
| 309 | } |
| 310 | |
| 311 | #if 0 |
| 312 | /* FIXME: Still needed? |
| 313 | */ |
Dave Airlie | eddca55 | 2007-07-11 16:09:54 +1000 | [diff] [blame] | 314 | static void mga_freelist_reset(struct drm_device * dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 315 | { |
Dave Airlie | cdd55a2 | 2007-07-11 16:32:08 +1000 | [diff] [blame] | 316 | struct drm_device_dma *dma = dev->dma; |
Dave Airlie | 056219e | 2007-07-11 16:17:42 +1000 | [diff] [blame] | 317 | struct drm_buf *buf; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 318 | drm_mga_buf_priv_t *buf_priv; |
| 319 | int i; |
| 320 | |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 321 | for (i = 0; i < dma->buf_count; i++) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 322 | buf = dma->buflist[i]; |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 323 | buf_priv = buf->dev_private; |
| 324 | SET_AGE(&buf_priv->list_entry->age, MGA_BUFFER_FREE, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 325 | } |
| 326 | } |
| 327 | #endif |
| 328 | |
Dave Airlie | 056219e | 2007-07-11 16:17:42 +1000 | [diff] [blame] | 329 | static struct drm_buf *mga_freelist_get(struct drm_device * dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 330 | { |
| 331 | drm_mga_private_t *dev_priv = dev->dev_private; |
| 332 | drm_mga_freelist_t *next; |
| 333 | drm_mga_freelist_t *prev; |
| 334 | drm_mga_freelist_t *tail = dev_priv->tail; |
| 335 | u32 head, wrap; |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 336 | DRM_DEBUG("\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 337 | |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 338 | head = MGA_READ(MGA_PRIMADDRESS); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 339 | wrap = dev_priv->sarea_priv->last_wrap; |
| 340 | |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 341 | DRM_DEBUG(" tail=0x%06lx %d\n", |
| 342 | tail->age.head ? |
Benjamin Herrenschmidt | 41c2e75 | 2009-02-02 16:55:47 +1100 | [diff] [blame^] | 343 | (unsigned long)(tail->age.head - dev_priv->primary->offset) : 0, |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 344 | tail->age.wrap); |
| 345 | DRM_DEBUG(" head=0x%06lx %d\n", |
Benjamin Herrenschmidt | 41c2e75 | 2009-02-02 16:55:47 +1100 | [diff] [blame^] | 346 | (unsigned long)(head - dev_priv->primary->offset), wrap); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 347 | |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 348 | if (TEST_AGE(&tail->age, head, wrap)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 349 | prev = dev_priv->tail->prev; |
| 350 | next = dev_priv->tail; |
| 351 | prev->next = NULL; |
| 352 | next->prev = next->next = NULL; |
| 353 | dev_priv->tail = prev; |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 354 | SET_AGE(&next->age, MGA_BUFFER_USED, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 355 | return next->buf; |
| 356 | } |
| 357 | |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 358 | DRM_DEBUG("returning NULL!\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 359 | return NULL; |
| 360 | } |
| 361 | |
Dave Airlie | 056219e | 2007-07-11 16:17:42 +1000 | [diff] [blame] | 362 | int mga_freelist_put(struct drm_device * dev, struct drm_buf * buf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 363 | { |
| 364 | drm_mga_private_t *dev_priv = dev->dev_private; |
| 365 | drm_mga_buf_priv_t *buf_priv = buf->dev_private; |
| 366 | drm_mga_freelist_t *head, *entry, *prev; |
| 367 | |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 368 | DRM_DEBUG("age=0x%06lx wrap=%d\n", |
Benjamin Herrenschmidt | 41c2e75 | 2009-02-02 16:55:47 +1100 | [diff] [blame^] | 369 | (unsigned long)(buf_priv->list_entry->age.head - |
| 370 | dev_priv->primary->offset), |
| 371 | buf_priv->list_entry->age.wrap); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 372 | |
| 373 | entry = buf_priv->list_entry; |
| 374 | head = dev_priv->head; |
| 375 | |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 376 | if (buf_priv->list_entry->age.head == MGA_BUFFER_USED) { |
| 377 | SET_AGE(&entry->age, MGA_BUFFER_FREE, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 378 | prev = dev_priv->tail; |
| 379 | prev->next = entry; |
| 380 | entry->prev = prev; |
| 381 | entry->next = NULL; |
| 382 | } else { |
| 383 | prev = head->next; |
| 384 | head->next = entry; |
| 385 | prev->prev = entry; |
| 386 | entry->prev = head; |
| 387 | entry->next = prev; |
| 388 | } |
| 389 | |
| 390 | return 0; |
| 391 | } |
| 392 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 393 | /* ================================================================ |
| 394 | * DMA initialization, cleanup |
| 395 | */ |
| 396 | |
Dave Airlie | eddca55 | 2007-07-11 16:09:54 +1000 | [diff] [blame] | 397 | int mga_driver_load(struct drm_device * dev, unsigned long flags) |
Dave Airlie | 6795c98 | 2005-07-10 18:20:09 +1000 | [diff] [blame] | 398 | { |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 399 | drm_mga_private_t *dev_priv; |
Keith Packard | 5244021 | 2008-11-18 09:30:25 -0800 | [diff] [blame] | 400 | int ret; |
Dave Airlie | 6795c98 | 2005-07-10 18:20:09 +1000 | [diff] [blame] | 401 | |
| 402 | dev_priv = drm_alloc(sizeof(drm_mga_private_t), DRM_MEM_DRIVER); |
| 403 | if (!dev_priv) |
Eric Anholt | 20caafa | 2007-08-25 19:22:43 +1000 | [diff] [blame] | 404 | return -ENOMEM; |
Dave Airlie | 6795c98 | 2005-07-10 18:20:09 +1000 | [diff] [blame] | 405 | |
| 406 | dev->dev_private = (void *)dev_priv; |
| 407 | memset(dev_priv, 0, sizeof(drm_mga_private_t)); |
| 408 | |
| 409 | dev_priv->usec_timeout = MGA_DEFAULT_USEC_TIMEOUT; |
| 410 | dev_priv->chipset = flags; |
| 411 | |
Dave Airlie | 22eae94 | 2005-11-10 22:16:34 +1100 | [diff] [blame] | 412 | dev_priv->mmio_base = drm_get_resource_start(dev, 1); |
| 413 | dev_priv->mmio_size = drm_get_resource_len(dev, 1); |
| 414 | |
| 415 | dev->counters += 3; |
| 416 | dev->types[6] = _DRM_STAT_IRQ; |
| 417 | dev->types[7] = _DRM_STAT_PRIMARY; |
| 418 | dev->types[8] = _DRM_STAT_SECONDARY; |
| 419 | |
Keith Packard | 5244021 | 2008-11-18 09:30:25 -0800 | [diff] [blame] | 420 | ret = drm_vblank_init(dev, 1); |
| 421 | |
| 422 | if (ret) { |
| 423 | (void) mga_driver_unload(dev); |
| 424 | return ret; |
| 425 | } |
| 426 | |
Dave Airlie | 6795c98 | 2005-07-10 18:20:09 +1000 | [diff] [blame] | 427 | return 0; |
| 428 | } |
| 429 | |
Dave Airlie | 908f9c4 | 2005-09-05 21:51:30 +1000 | [diff] [blame] | 430 | #if __OS_HAS_AGP |
Dave Airlie | 6795c98 | 2005-07-10 18:20:09 +1000 | [diff] [blame] | 431 | /** |
| 432 | * Bootstrap the driver for AGP DMA. |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 433 | * |
Dave Airlie | 6795c98 | 2005-07-10 18:20:09 +1000 | [diff] [blame] | 434 | * \todo |
| 435 | * Investigate whether there is any benifit to storing the WARP microcode in |
| 436 | * AGP memory. If not, the microcode may as well always be put in PCI |
| 437 | * memory. |
| 438 | * |
| 439 | * \todo |
| 440 | * This routine needs to set dma_bs->agp_mode to the mode actually configured |
| 441 | * in the hardware. Looking just at the Linux AGP driver code, I don't see |
| 442 | * an easy way to determine this. |
| 443 | * |
| 444 | * \sa mga_do_dma_bootstrap, mga_do_pci_dma_bootstrap |
| 445 | */ |
Dave Airlie | eddca55 | 2007-07-11 16:09:54 +1000 | [diff] [blame] | 446 | static int mga_do_agp_dma_bootstrap(struct drm_device * dev, |
Dave Airlie | 6795c98 | 2005-07-10 18:20:09 +1000 | [diff] [blame] | 447 | drm_mga_dma_bootstrap_t * dma_bs) |
| 448 | { |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 449 | drm_mga_private_t *const dev_priv = |
| 450 | (drm_mga_private_t *) dev->dev_private; |
Dave Airlie | 11909d6 | 2005-10-19 21:23:51 -0700 | [diff] [blame] | 451 | unsigned int warp_size = mga_warp_microcode_size(dev_priv); |
Dave Airlie | 6795c98 | 2005-07-10 18:20:09 +1000 | [diff] [blame] | 452 | int err; |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 453 | unsigned offset; |
Dave Airlie | 6795c98 | 2005-07-10 18:20:09 +1000 | [diff] [blame] | 454 | const unsigned secondary_size = dma_bs->secondary_bin_count |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 455 | * dma_bs->secondary_bin_size; |
Dave Airlie | 6795c98 | 2005-07-10 18:20:09 +1000 | [diff] [blame] | 456 | const unsigned agp_size = (dma_bs->agp_size << 20); |
Dave Airlie | eddca55 | 2007-07-11 16:09:54 +1000 | [diff] [blame] | 457 | struct drm_buf_desc req; |
| 458 | struct drm_agp_mode mode; |
| 459 | struct drm_agp_info info; |
| 460 | struct drm_agp_buffer agp_req; |
| 461 | struct drm_agp_binding bind_req; |
Dave Airlie | 6795c98 | 2005-07-10 18:20:09 +1000 | [diff] [blame] | 462 | |
Dave Airlie | 6795c98 | 2005-07-10 18:20:09 +1000 | [diff] [blame] | 463 | /* Acquire AGP. */ |
| 464 | err = drm_agp_acquire(dev); |
| 465 | if (err) { |
Dave Airlie | 7ccf800 | 2005-11-11 23:11:34 +1100 | [diff] [blame] | 466 | DRM_ERROR("Unable to acquire AGP: %d\n", err); |
Dave Airlie | 6795c98 | 2005-07-10 18:20:09 +1000 | [diff] [blame] | 467 | return err; |
| 468 | } |
| 469 | |
| 470 | err = drm_agp_info(dev, &info); |
| 471 | if (err) { |
Dave Airlie | 7ccf800 | 2005-11-11 23:11:34 +1100 | [diff] [blame] | 472 | DRM_ERROR("Unable to get AGP info: %d\n", err); |
Dave Airlie | 6795c98 | 2005-07-10 18:20:09 +1000 | [diff] [blame] | 473 | return err; |
| 474 | } |
| 475 | |
| 476 | mode.mode = (info.mode & ~0x07) | dma_bs->agp_mode; |
| 477 | err = drm_agp_enable(dev, mode); |
| 478 | if (err) { |
| 479 | DRM_ERROR("Unable to enable AGP (mode = 0x%lx)\n", mode.mode); |
| 480 | return err; |
| 481 | } |
| 482 | |
Dave Airlie | 6795c98 | 2005-07-10 18:20:09 +1000 | [diff] [blame] | 483 | /* In addition to the usual AGP mode configuration, the G200 AGP cards |
| 484 | * need to have the AGP mode "manually" set. |
| 485 | */ |
| 486 | |
| 487 | if (dev_priv->chipset == MGA_CARD_TYPE_G200) { |
| 488 | if (mode.mode & 0x02) { |
| 489 | MGA_WRITE(MGA_AGP_PLL, MGA_AGP2XPLL_ENABLE); |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 490 | } else { |
Dave Airlie | 6795c98 | 2005-07-10 18:20:09 +1000 | [diff] [blame] | 491 | MGA_WRITE(MGA_AGP_PLL, MGA_AGP2XPLL_DISABLE); |
| 492 | } |
| 493 | } |
| 494 | |
Dave Airlie | 6795c98 | 2005-07-10 18:20:09 +1000 | [diff] [blame] | 495 | /* Allocate and bind AGP memory. */ |
Dave Airlie | 7ccf800 | 2005-11-11 23:11:34 +1100 | [diff] [blame] | 496 | agp_req.size = agp_size; |
| 497 | agp_req.type = 0; |
| 498 | err = drm_agp_alloc(dev, &agp_req); |
| 499 | if (err) { |
| 500 | dev_priv->agp_size = 0; |
Dave Airlie | 6795c98 | 2005-07-10 18:20:09 +1000 | [diff] [blame] | 501 | DRM_ERROR("Unable to allocate %uMB AGP memory\n", |
| 502 | dma_bs->agp_size); |
Dave Airlie | 7ccf800 | 2005-11-11 23:11:34 +1100 | [diff] [blame] | 503 | return err; |
Dave Airlie | 6795c98 | 2005-07-10 18:20:09 +1000 | [diff] [blame] | 504 | } |
Dave Airlie | bc5f452 | 2007-11-05 12:50:58 +1000 | [diff] [blame] | 505 | |
Dave Airlie | 7ccf800 | 2005-11-11 23:11:34 +1100 | [diff] [blame] | 506 | dev_priv->agp_size = agp_size; |
| 507 | dev_priv->agp_handle = agp_req.handle; |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 508 | |
Dave Airlie | 7ccf800 | 2005-11-11 23:11:34 +1100 | [diff] [blame] | 509 | bind_req.handle = agp_req.handle; |
| 510 | bind_req.offset = 0; |
| 511 | err = drm_agp_bind(dev, &bind_req); |
Dave Airlie | 6795c98 | 2005-07-10 18:20:09 +1000 | [diff] [blame] | 512 | if (err) { |
Dave Airlie | 7ccf800 | 2005-11-11 23:11:34 +1100 | [diff] [blame] | 513 | DRM_ERROR("Unable to bind AGP memory: %d\n", err); |
Dave Airlie | 6795c98 | 2005-07-10 18:20:09 +1000 | [diff] [blame] | 514 | return err; |
| 515 | } |
| 516 | |
Dave Airlie | 11909d6 | 2005-10-19 21:23:51 -0700 | [diff] [blame] | 517 | /* Make drm_addbufs happy by not trying to create a mapping for less |
| 518 | * than a page. |
| 519 | */ |
| 520 | if (warp_size < PAGE_SIZE) |
| 521 | warp_size = PAGE_SIZE; |
| 522 | |
Dave Airlie | 6795c98 | 2005-07-10 18:20:09 +1000 | [diff] [blame] | 523 | offset = 0; |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 524 | err = drm_addmap(dev, offset, warp_size, |
| 525 | _DRM_AGP, _DRM_READ_ONLY, &dev_priv->warp); |
Dave Airlie | 6795c98 | 2005-07-10 18:20:09 +1000 | [diff] [blame] | 526 | if (err) { |
Dave Airlie | 7ccf800 | 2005-11-11 23:11:34 +1100 | [diff] [blame] | 527 | DRM_ERROR("Unable to map WARP microcode: %d\n", err); |
Dave Airlie | 6795c98 | 2005-07-10 18:20:09 +1000 | [diff] [blame] | 528 | return err; |
| 529 | } |
| 530 | |
| 531 | offset += warp_size; |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 532 | err = drm_addmap(dev, offset, dma_bs->primary_size, |
| 533 | _DRM_AGP, _DRM_READ_ONLY, &dev_priv->primary); |
Dave Airlie | 6795c98 | 2005-07-10 18:20:09 +1000 | [diff] [blame] | 534 | if (err) { |
Dave Airlie | 7ccf800 | 2005-11-11 23:11:34 +1100 | [diff] [blame] | 535 | DRM_ERROR("Unable to map primary DMA region: %d\n", err); |
Dave Airlie | 6795c98 | 2005-07-10 18:20:09 +1000 | [diff] [blame] | 536 | return err; |
| 537 | } |
| 538 | |
| 539 | offset += dma_bs->primary_size; |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 540 | err = drm_addmap(dev, offset, secondary_size, |
| 541 | _DRM_AGP, 0, &dev->agp_buffer_map); |
Dave Airlie | 6795c98 | 2005-07-10 18:20:09 +1000 | [diff] [blame] | 542 | if (err) { |
Dave Airlie | 7ccf800 | 2005-11-11 23:11:34 +1100 | [diff] [blame] | 543 | DRM_ERROR("Unable to map secondary DMA region: %d\n", err); |
Dave Airlie | 6795c98 | 2005-07-10 18:20:09 +1000 | [diff] [blame] | 544 | return err; |
| 545 | } |
| 546 | |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 547 | (void)memset(&req, 0, sizeof(req)); |
Dave Airlie | 6795c98 | 2005-07-10 18:20:09 +1000 | [diff] [blame] | 548 | req.count = dma_bs->secondary_bin_count; |
| 549 | req.size = dma_bs->secondary_bin_size; |
| 550 | req.flags = _DRM_AGP_BUFFER; |
| 551 | req.agp_start = offset; |
| 552 | |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 553 | err = drm_addbufs_agp(dev, &req); |
Dave Airlie | 6795c98 | 2005-07-10 18:20:09 +1000 | [diff] [blame] | 554 | if (err) { |
Dave Airlie | 7ccf800 | 2005-11-11 23:11:34 +1100 | [diff] [blame] | 555 | DRM_ERROR("Unable to add secondary DMA buffers: %d\n", err); |
Dave Airlie | 6795c98 | 2005-07-10 18:20:09 +1000 | [diff] [blame] | 556 | return err; |
| 557 | } |
| 558 | |
Dave Airlie | 7ccf800 | 2005-11-11 23:11:34 +1100 | [diff] [blame] | 559 | { |
Dave Airlie | 5591051 | 2007-07-11 16:53:40 +1000 | [diff] [blame] | 560 | struct drm_map_list *_entry; |
Dave Airlie | 7ccf800 | 2005-11-11 23:11:34 +1100 | [diff] [blame] | 561 | unsigned long agp_token = 0; |
Dave Airlie | bc5f452 | 2007-11-05 12:50:58 +1000 | [diff] [blame] | 562 | |
Dave Airlie | bd1b331 | 2007-05-26 05:01:51 +1000 | [diff] [blame] | 563 | list_for_each_entry(_entry, &dev->maplist, head) { |
Dave Airlie | 7ccf800 | 2005-11-11 23:11:34 +1100 | [diff] [blame] | 564 | if (_entry->map == dev->agp_buffer_map) |
| 565 | agp_token = _entry->user_token; |
| 566 | } |
| 567 | if (!agp_token) |
| 568 | return -EFAULT; |
| 569 | |
| 570 | dev->agp_buffer_token = agp_token; |
| 571 | } |
| 572 | |
Dave Airlie | 6795c98 | 2005-07-10 18:20:09 +1000 | [diff] [blame] | 573 | offset += secondary_size; |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 574 | err = drm_addmap(dev, offset, agp_size - offset, |
| 575 | _DRM_AGP, 0, &dev_priv->agp_textures); |
Dave Airlie | 6795c98 | 2005-07-10 18:20:09 +1000 | [diff] [blame] | 576 | if (err) { |
Dave Airlie | 7ccf800 | 2005-11-11 23:11:34 +1100 | [diff] [blame] | 577 | DRM_ERROR("Unable to map AGP texture region %d\n", err); |
Dave Airlie | 6795c98 | 2005-07-10 18:20:09 +1000 | [diff] [blame] | 578 | return err; |
| 579 | } |
| 580 | |
| 581 | drm_core_ioremap(dev_priv->warp, dev); |
| 582 | drm_core_ioremap(dev_priv->primary, dev); |
| 583 | drm_core_ioremap(dev->agp_buffer_map, dev); |
| 584 | |
| 585 | if (!dev_priv->warp->handle || |
| 586 | !dev_priv->primary->handle || !dev->agp_buffer_map->handle) { |
| 587 | DRM_ERROR("failed to ioremap agp regions! (%p, %p, %p)\n", |
| 588 | dev_priv->warp->handle, dev_priv->primary->handle, |
| 589 | dev->agp_buffer_map->handle); |
Eric Anholt | 20caafa | 2007-08-25 19:22:43 +1000 | [diff] [blame] | 590 | return -ENOMEM; |
Dave Airlie | 6795c98 | 2005-07-10 18:20:09 +1000 | [diff] [blame] | 591 | } |
| 592 | |
| 593 | dev_priv->dma_access = MGA_PAGPXFER; |
| 594 | dev_priv->wagp_enable = MGA_WAGP_ENABLE; |
| 595 | |
| 596 | DRM_INFO("Initialized card for AGP DMA.\n"); |
| 597 | return 0; |
| 598 | } |
Dave Airlie | 908f9c4 | 2005-09-05 21:51:30 +1000 | [diff] [blame] | 599 | #else |
Dave Airlie | eddca55 | 2007-07-11 16:09:54 +1000 | [diff] [blame] | 600 | static int mga_do_agp_dma_bootstrap(struct drm_device * dev, |
Dave Airlie | 908f9c4 | 2005-09-05 21:51:30 +1000 | [diff] [blame] | 601 | drm_mga_dma_bootstrap_t * dma_bs) |
| 602 | { |
| 603 | return -EINVAL; |
| 604 | } |
| 605 | #endif |
Dave Airlie | 6795c98 | 2005-07-10 18:20:09 +1000 | [diff] [blame] | 606 | |
| 607 | /** |
| 608 | * Bootstrap the driver for PCI DMA. |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 609 | * |
Dave Airlie | 6795c98 | 2005-07-10 18:20:09 +1000 | [diff] [blame] | 610 | * \todo |
| 611 | * The algorithm for decreasing the size of the primary DMA buffer could be |
| 612 | * better. The size should be rounded up to the nearest page size, then |
| 613 | * decrease the request size by a single page each pass through the loop. |
| 614 | * |
| 615 | * \todo |
| 616 | * Determine whether the maximum address passed to drm_pci_alloc is correct. |
| 617 | * The same goes for drm_addbufs_pci. |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 618 | * |
Dave Airlie | 6795c98 | 2005-07-10 18:20:09 +1000 | [diff] [blame] | 619 | * \sa mga_do_dma_bootstrap, mga_do_agp_dma_bootstrap |
| 620 | */ |
Dave Airlie | eddca55 | 2007-07-11 16:09:54 +1000 | [diff] [blame] | 621 | static int mga_do_pci_dma_bootstrap(struct drm_device * dev, |
Dave Airlie | 6795c98 | 2005-07-10 18:20:09 +1000 | [diff] [blame] | 622 | drm_mga_dma_bootstrap_t * dma_bs) |
| 623 | { |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 624 | drm_mga_private_t *const dev_priv = |
| 625 | (drm_mga_private_t *) dev->dev_private; |
Dave Airlie | 11909d6 | 2005-10-19 21:23:51 -0700 | [diff] [blame] | 626 | unsigned int warp_size = mga_warp_microcode_size(dev_priv); |
Dave Airlie | 6795c98 | 2005-07-10 18:20:09 +1000 | [diff] [blame] | 627 | unsigned int primary_size; |
| 628 | unsigned int bin_count; |
| 629 | int err; |
Dave Airlie | eddca55 | 2007-07-11 16:09:54 +1000 | [diff] [blame] | 630 | struct drm_buf_desc req; |
Dave Airlie | 6795c98 | 2005-07-10 18:20:09 +1000 | [diff] [blame] | 631 | |
Dave Airlie | 6795c98 | 2005-07-10 18:20:09 +1000 | [diff] [blame] | 632 | if (dev->dma == NULL) { |
| 633 | DRM_ERROR("dev->dma is NULL\n"); |
Eric Anholt | 20caafa | 2007-08-25 19:22:43 +1000 | [diff] [blame] | 634 | return -EFAULT; |
Dave Airlie | 6795c98 | 2005-07-10 18:20:09 +1000 | [diff] [blame] | 635 | } |
| 636 | |
Dave Airlie | 11909d6 | 2005-10-19 21:23:51 -0700 | [diff] [blame] | 637 | /* Make drm_addbufs happy by not trying to create a mapping for less |
| 638 | * than a page. |
| 639 | */ |
| 640 | if (warp_size < PAGE_SIZE) |
| 641 | warp_size = PAGE_SIZE; |
| 642 | |
Dave Airlie | 6795c98 | 2005-07-10 18:20:09 +1000 | [diff] [blame] | 643 | /* The proper alignment is 0x100 for this mapping */ |
| 644 | err = drm_addmap(dev, 0, warp_size, _DRM_CONSISTENT, |
| 645 | _DRM_READ_ONLY, &dev_priv->warp); |
| 646 | if (err != 0) { |
Dave Airlie | 7ccf800 | 2005-11-11 23:11:34 +1100 | [diff] [blame] | 647 | DRM_ERROR("Unable to create mapping for WARP microcode: %d\n", |
| 648 | err); |
Dave Airlie | 6795c98 | 2005-07-10 18:20:09 +1000 | [diff] [blame] | 649 | return err; |
| 650 | } |
| 651 | |
| 652 | /* Other than the bottom two bits being used to encode other |
| 653 | * information, there don't appear to be any restrictions on the |
| 654 | * alignment of the primary or secondary DMA buffers. |
| 655 | */ |
| 656 | |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 657 | for (primary_size = dma_bs->primary_size; primary_size != 0; |
| 658 | primary_size >>= 1) { |
Dave Airlie | 6795c98 | 2005-07-10 18:20:09 +1000 | [diff] [blame] | 659 | /* The proper alignment for this mapping is 0x04 */ |
| 660 | err = drm_addmap(dev, 0, primary_size, _DRM_CONSISTENT, |
| 661 | _DRM_READ_ONLY, &dev_priv->primary); |
| 662 | if (!err) |
| 663 | break; |
| 664 | } |
| 665 | |
| 666 | if (err != 0) { |
Dave Airlie | 7ccf800 | 2005-11-11 23:11:34 +1100 | [diff] [blame] | 667 | DRM_ERROR("Unable to allocate primary DMA region: %d\n", err); |
Eric Anholt | 20caafa | 2007-08-25 19:22:43 +1000 | [diff] [blame] | 668 | return -ENOMEM; |
Dave Airlie | 6795c98 | 2005-07-10 18:20:09 +1000 | [diff] [blame] | 669 | } |
| 670 | |
| 671 | if (dev_priv->primary->size != dma_bs->primary_size) { |
| 672 | DRM_INFO("Primary DMA buffer size reduced from %u to %u.\n", |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 673 | dma_bs->primary_size, |
| 674 | (unsigned)dev_priv->primary->size); |
Dave Airlie | 6795c98 | 2005-07-10 18:20:09 +1000 | [diff] [blame] | 675 | dma_bs->primary_size = dev_priv->primary->size; |
| 676 | } |
| 677 | |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 678 | for (bin_count = dma_bs->secondary_bin_count; bin_count > 0; |
| 679 | bin_count--) { |
| 680 | (void)memset(&req, 0, sizeof(req)); |
Dave Airlie | 6795c98 | 2005-07-10 18:20:09 +1000 | [diff] [blame] | 681 | req.count = bin_count; |
| 682 | req.size = dma_bs->secondary_bin_size; |
| 683 | |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 684 | err = drm_addbufs_pci(dev, &req); |
Dave Airlie | 6795c98 | 2005-07-10 18:20:09 +1000 | [diff] [blame] | 685 | if (!err) { |
| 686 | break; |
| 687 | } |
| 688 | } |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 689 | |
Dave Airlie | 6795c98 | 2005-07-10 18:20:09 +1000 | [diff] [blame] | 690 | if (bin_count == 0) { |
Dave Airlie | 7ccf800 | 2005-11-11 23:11:34 +1100 | [diff] [blame] | 691 | DRM_ERROR("Unable to add secondary DMA buffers: %d\n", err); |
Dave Airlie | 6795c98 | 2005-07-10 18:20:09 +1000 | [diff] [blame] | 692 | return err; |
| 693 | } |
| 694 | |
| 695 | if (bin_count != dma_bs->secondary_bin_count) { |
| 696 | DRM_INFO("Secondary PCI DMA buffer bin count reduced from %u " |
| 697 | "to %u.\n", dma_bs->secondary_bin_count, bin_count); |
| 698 | |
| 699 | dma_bs->secondary_bin_count = bin_count; |
| 700 | } |
| 701 | |
| 702 | dev_priv->dma_access = 0; |
| 703 | dev_priv->wagp_enable = 0; |
| 704 | |
| 705 | dma_bs->agp_mode = 0; |
| 706 | |
| 707 | DRM_INFO("Initialized card for PCI DMA.\n"); |
| 708 | return 0; |
| 709 | } |
| 710 | |
Dave Airlie | eddca55 | 2007-07-11 16:09:54 +1000 | [diff] [blame] | 711 | static int mga_do_dma_bootstrap(struct drm_device * dev, |
Dave Airlie | 6795c98 | 2005-07-10 18:20:09 +1000 | [diff] [blame] | 712 | drm_mga_dma_bootstrap_t * dma_bs) |
| 713 | { |
| 714 | const int is_agp = (dma_bs->agp_mode != 0) && drm_device_is_agp(dev); |
| 715 | int err; |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 716 | drm_mga_private_t *const dev_priv = |
| 717 | (drm_mga_private_t *) dev->dev_private; |
Dave Airlie | 6795c98 | 2005-07-10 18:20:09 +1000 | [diff] [blame] | 718 | |
| 719 | dev_priv->used_new_dma_init = 1; |
| 720 | |
| 721 | /* The first steps are the same for both PCI and AGP based DMA. Map |
| 722 | * the cards MMIO registers and map a status page. |
| 723 | */ |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 724 | err = drm_addmap(dev, dev_priv->mmio_base, dev_priv->mmio_size, |
| 725 | _DRM_REGISTERS, _DRM_READ_ONLY, &dev_priv->mmio); |
Dave Airlie | 6795c98 | 2005-07-10 18:20:09 +1000 | [diff] [blame] | 726 | if (err) { |
Dave Airlie | 7ccf800 | 2005-11-11 23:11:34 +1100 | [diff] [blame] | 727 | DRM_ERROR("Unable to map MMIO region: %d\n", err); |
Dave Airlie | 6795c98 | 2005-07-10 18:20:09 +1000 | [diff] [blame] | 728 | return err; |
| 729 | } |
| 730 | |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 731 | err = drm_addmap(dev, 0, SAREA_MAX, _DRM_SHM, |
| 732 | _DRM_READ_ONLY | _DRM_LOCKED | _DRM_KERNEL, |
| 733 | &dev_priv->status); |
Dave Airlie | 6795c98 | 2005-07-10 18:20:09 +1000 | [diff] [blame] | 734 | if (err) { |
Dave Airlie | 7ccf800 | 2005-11-11 23:11:34 +1100 | [diff] [blame] | 735 | DRM_ERROR("Unable to map status region: %d\n", err); |
Dave Airlie | 6795c98 | 2005-07-10 18:20:09 +1000 | [diff] [blame] | 736 | return err; |
| 737 | } |
| 738 | |
Dave Airlie | 6795c98 | 2005-07-10 18:20:09 +1000 | [diff] [blame] | 739 | /* The DMA initialization procedure is slightly different for PCI and |
| 740 | * AGP cards. AGP cards just allocate a large block of AGP memory and |
| 741 | * carve off portions of it for internal uses. The remaining memory |
| 742 | * is returned to user-mode to be used for AGP textures. |
| 743 | */ |
Dave Airlie | 6795c98 | 2005-07-10 18:20:09 +1000 | [diff] [blame] | 744 | if (is_agp) { |
| 745 | err = mga_do_agp_dma_bootstrap(dev, dma_bs); |
| 746 | } |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 747 | |
Dave Airlie | 6795c98 | 2005-07-10 18:20:09 +1000 | [diff] [blame] | 748 | /* If we attempted to initialize the card for AGP DMA but failed, |
| 749 | * clean-up any mess that may have been created. |
| 750 | */ |
| 751 | |
| 752 | if (err) { |
Dave Airlie | 7ccf800 | 2005-11-11 23:11:34 +1100 | [diff] [blame] | 753 | mga_do_cleanup_dma(dev, MINIMAL_CLEANUP); |
Dave Airlie | 6795c98 | 2005-07-10 18:20:09 +1000 | [diff] [blame] | 754 | } |
| 755 | |
Dave Airlie | 6795c98 | 2005-07-10 18:20:09 +1000 | [diff] [blame] | 756 | /* Not only do we want to try and initialized PCI cards for PCI DMA, |
| 757 | * but we also try to initialized AGP cards that could not be |
| 758 | * initialized for AGP DMA. This covers the case where we have an AGP |
| 759 | * card in a system with an unsupported AGP chipset. In that case the |
| 760 | * card will be detected as AGP, but we won't be able to allocate any |
| 761 | * AGP memory, etc. |
| 762 | */ |
| 763 | |
| 764 | if (!is_agp || err) { |
| 765 | err = mga_do_pci_dma_bootstrap(dev, dma_bs); |
| 766 | } |
| 767 | |
Dave Airlie | 6795c98 | 2005-07-10 18:20:09 +1000 | [diff] [blame] | 768 | return err; |
| 769 | } |
| 770 | |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 771 | int mga_dma_bootstrap(struct drm_device *dev, void *data, |
| 772 | struct drm_file *file_priv) |
Dave Airlie | 6795c98 | 2005-07-10 18:20:09 +1000 | [diff] [blame] | 773 | { |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 774 | drm_mga_dma_bootstrap_t *bootstrap = data; |
Dave Airlie | 6795c98 | 2005-07-10 18:20:09 +1000 | [diff] [blame] | 775 | int err; |
Dave Airlie | 7ccf800 | 2005-11-11 23:11:34 +1100 | [diff] [blame] | 776 | static const int modes[] = { 0, 1, 2, 2, 4, 4, 4, 4 }; |
| 777 | const drm_mga_private_t *const dev_priv = |
| 778 | (drm_mga_private_t *) dev->dev_private; |
Dave Airlie | 6795c98 | 2005-07-10 18:20:09 +1000 | [diff] [blame] | 779 | |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 780 | err = mga_do_dma_bootstrap(dev, bootstrap); |
Dave Airlie | 7ccf800 | 2005-11-11 23:11:34 +1100 | [diff] [blame] | 781 | if (err) { |
| 782 | mga_do_cleanup_dma(dev, FULL_CLEANUP); |
| 783 | return err; |
Dave Airlie | 6795c98 | 2005-07-10 18:20:09 +1000 | [diff] [blame] | 784 | } |
| 785 | |
Dave Airlie | 7ccf800 | 2005-11-11 23:11:34 +1100 | [diff] [blame] | 786 | if (dev_priv->agp_textures != NULL) { |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 787 | bootstrap->texture_handle = dev_priv->agp_textures->offset; |
| 788 | bootstrap->texture_size = dev_priv->agp_textures->size; |
Dave Airlie | 7ccf800 | 2005-11-11 23:11:34 +1100 | [diff] [blame] | 789 | } else { |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 790 | bootstrap->texture_handle = 0; |
| 791 | bootstrap->texture_size = 0; |
Dave Airlie | 7ccf800 | 2005-11-11 23:11:34 +1100 | [diff] [blame] | 792 | } |
| 793 | |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 794 | bootstrap->agp_mode = modes[bootstrap->agp_mode & 0x07]; |
Dave Airlie | 7ccf800 | 2005-11-11 23:11:34 +1100 | [diff] [blame] | 795 | |
Dave Airlie | 6795c98 | 2005-07-10 18:20:09 +1000 | [diff] [blame] | 796 | return err; |
| 797 | } |
| 798 | |
Dave Airlie | eddca55 | 2007-07-11 16:09:54 +1000 | [diff] [blame] | 799 | static int mga_do_init_dma(struct drm_device * dev, drm_mga_init_t * init) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 800 | { |
| 801 | drm_mga_private_t *dev_priv; |
| 802 | int ret; |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 803 | DRM_DEBUG("\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 804 | |
Dave Airlie | 6795c98 | 2005-07-10 18:20:09 +1000 | [diff] [blame] | 805 | dev_priv = dev->dev_private; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 806 | |
Dave Airlie | 6795c98 | 2005-07-10 18:20:09 +1000 | [diff] [blame] | 807 | if (init->sgram) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 808 | dev_priv->clear_cmd = MGA_DWGCTL_CLEAR | MGA_ATYPE_BLK; |
| 809 | } else { |
| 810 | dev_priv->clear_cmd = MGA_DWGCTL_CLEAR | MGA_ATYPE_RSTR; |
| 811 | } |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 812 | dev_priv->maccess = init->maccess; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 813 | |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 814 | dev_priv->fb_cpp = init->fb_cpp; |
| 815 | dev_priv->front_offset = init->front_offset; |
| 816 | dev_priv->front_pitch = init->front_pitch; |
| 817 | dev_priv->back_offset = init->back_offset; |
| 818 | dev_priv->back_pitch = init->back_pitch; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 819 | |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 820 | dev_priv->depth_cpp = init->depth_cpp; |
| 821 | dev_priv->depth_offset = init->depth_offset; |
| 822 | dev_priv->depth_pitch = init->depth_pitch; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 823 | |
| 824 | /* FIXME: Need to support AGP textures... |
| 825 | */ |
| 826 | dev_priv->texture_offset = init->texture_offset[0]; |
| 827 | dev_priv->texture_size = init->texture_size[0]; |
| 828 | |
Dave Airlie | da509d7 | 2007-05-26 05:04:51 +1000 | [diff] [blame] | 829 | dev_priv->sarea = drm_getsarea(dev); |
Dave Airlie | 6795c98 | 2005-07-10 18:20:09 +1000 | [diff] [blame] | 830 | if (!dev_priv->sarea) { |
| 831 | DRM_ERROR("failed to find sarea!\n"); |
Eric Anholt | 20caafa | 2007-08-25 19:22:43 +1000 | [diff] [blame] | 832 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 833 | } |
| 834 | |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 835 | if (!dev_priv->used_new_dma_init) { |
Dave Airlie | 11909d6 | 2005-10-19 21:23:51 -0700 | [diff] [blame] | 836 | |
| 837 | dev_priv->dma_access = MGA_PAGPXFER; |
| 838 | dev_priv->wagp_enable = MGA_WAGP_ENABLE; |
| 839 | |
Dave Airlie | 6795c98 | 2005-07-10 18:20:09 +1000 | [diff] [blame] | 840 | dev_priv->status = drm_core_findmap(dev, init->status_offset); |
| 841 | if (!dev_priv->status) { |
| 842 | DRM_ERROR("failed to find status page!\n"); |
Eric Anholt | 20caafa | 2007-08-25 19:22:43 +1000 | [diff] [blame] | 843 | return -EINVAL; |
Dave Airlie | 6795c98 | 2005-07-10 18:20:09 +1000 | [diff] [blame] | 844 | } |
| 845 | dev_priv->mmio = drm_core_findmap(dev, init->mmio_offset); |
| 846 | if (!dev_priv->mmio) { |
| 847 | DRM_ERROR("failed to find mmio region!\n"); |
Eric Anholt | 20caafa | 2007-08-25 19:22:43 +1000 | [diff] [blame] | 848 | return -EINVAL; |
Dave Airlie | 6795c98 | 2005-07-10 18:20:09 +1000 | [diff] [blame] | 849 | } |
| 850 | dev_priv->warp = drm_core_findmap(dev, init->warp_offset); |
| 851 | if (!dev_priv->warp) { |
| 852 | DRM_ERROR("failed to find warp microcode region!\n"); |
Eric Anholt | 20caafa | 2007-08-25 19:22:43 +1000 | [diff] [blame] | 853 | return -EINVAL; |
Dave Airlie | 6795c98 | 2005-07-10 18:20:09 +1000 | [diff] [blame] | 854 | } |
| 855 | dev_priv->primary = drm_core_findmap(dev, init->primary_offset); |
| 856 | if (!dev_priv->primary) { |
| 857 | DRM_ERROR("failed to find primary dma region!\n"); |
Eric Anholt | 20caafa | 2007-08-25 19:22:43 +1000 | [diff] [blame] | 858 | return -EINVAL; |
Dave Airlie | 6795c98 | 2005-07-10 18:20:09 +1000 | [diff] [blame] | 859 | } |
Dave Airlie | d1f2b55 | 2005-08-05 22:11:22 +1000 | [diff] [blame] | 860 | dev->agp_buffer_token = init->buffers_offset; |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 861 | dev->agp_buffer_map = |
| 862 | drm_core_findmap(dev, init->buffers_offset); |
Dave Airlie | 6795c98 | 2005-07-10 18:20:09 +1000 | [diff] [blame] | 863 | if (!dev->agp_buffer_map) { |
| 864 | DRM_ERROR("failed to find dma buffer region!\n"); |
Eric Anholt | 20caafa | 2007-08-25 19:22:43 +1000 | [diff] [blame] | 865 | return -EINVAL; |
Dave Airlie | 6795c98 | 2005-07-10 18:20:09 +1000 | [diff] [blame] | 866 | } |
| 867 | |
| 868 | drm_core_ioremap(dev_priv->warp, dev); |
| 869 | drm_core_ioremap(dev_priv->primary, dev); |
| 870 | drm_core_ioremap(dev->agp_buffer_map, dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 871 | } |
| 872 | |
| 873 | dev_priv->sarea_priv = |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 874 | (drm_mga_sarea_t *) ((u8 *) dev_priv->sarea->handle + |
| 875 | init->sarea_priv_offset); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 876 | |
Dave Airlie | 6795c98 | 2005-07-10 18:20:09 +1000 | [diff] [blame] | 877 | if (!dev_priv->warp->handle || |
| 878 | !dev_priv->primary->handle || |
| 879 | ((dev_priv->dma_access != 0) && |
| 880 | ((dev->agp_buffer_map == NULL) || |
| 881 | (dev->agp_buffer_map->handle == NULL)))) { |
| 882 | DRM_ERROR("failed to ioremap agp regions!\n"); |
Eric Anholt | 20caafa | 2007-08-25 19:22:43 +1000 | [diff] [blame] | 883 | return -ENOMEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 884 | } |
| 885 | |
Dave Airlie | 6795c98 | 2005-07-10 18:20:09 +1000 | [diff] [blame] | 886 | ret = mga_warp_install_microcode(dev_priv); |
| 887 | if (ret < 0) { |
Dave Airlie | 7ccf800 | 2005-11-11 23:11:34 +1100 | [diff] [blame] | 888 | DRM_ERROR("failed to install WARP ucode!: %d\n", ret); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 889 | return ret; |
| 890 | } |
| 891 | |
Dave Airlie | 6795c98 | 2005-07-10 18:20:09 +1000 | [diff] [blame] | 892 | ret = mga_warp_init(dev_priv); |
| 893 | if (ret < 0) { |
Dave Airlie | 7ccf800 | 2005-11-11 23:11:34 +1100 | [diff] [blame] | 894 | DRM_ERROR("failed to init WARP engine!: %d\n", ret); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 895 | return ret; |
| 896 | } |
| 897 | |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 898 | dev_priv->prim.status = (u32 *) dev_priv->status->handle; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 899 | |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 900 | mga_do_wait_for_idle(dev_priv); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 901 | |
| 902 | /* Init the primary DMA registers. |
| 903 | */ |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 904 | MGA_WRITE(MGA_PRIMADDRESS, dev_priv->primary->offset | MGA_DMA_GENERAL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 905 | #if 0 |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 906 | MGA_WRITE(MGA_PRIMPTR, virt_to_bus((void *)dev_priv->prim.status) | MGA_PRIMPTREN0 | /* Soft trap, SECEND, SETUPEND */ |
| 907 | MGA_PRIMPTREN1); /* DWGSYNC */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 908 | #endif |
| 909 | |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 910 | dev_priv->prim.start = (u8 *) dev_priv->primary->handle; |
| 911 | dev_priv->prim.end = ((u8 *) dev_priv->primary->handle |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 912 | + dev_priv->primary->size); |
| 913 | dev_priv->prim.size = dev_priv->primary->size; |
| 914 | |
| 915 | dev_priv->prim.tail = 0; |
| 916 | dev_priv->prim.space = dev_priv->prim.size; |
| 917 | dev_priv->prim.wrapped = 0; |
| 918 | |
| 919 | dev_priv->prim.last_flush = 0; |
| 920 | dev_priv->prim.last_wrap = 0; |
| 921 | |
| 922 | dev_priv->prim.high_mark = 256 * DMA_BLOCK_SIZE; |
| 923 | |
| 924 | dev_priv->prim.status[0] = dev_priv->primary->offset; |
| 925 | dev_priv->prim.status[1] = 0; |
| 926 | |
| 927 | dev_priv->sarea_priv->last_wrap = 0; |
| 928 | dev_priv->sarea_priv->last_frame.head = 0; |
| 929 | dev_priv->sarea_priv->last_frame.wrap = 0; |
| 930 | |
Dave Airlie | 6795c98 | 2005-07-10 18:20:09 +1000 | [diff] [blame] | 931 | if (mga_freelist_init(dev, dev_priv) < 0) { |
| 932 | DRM_ERROR("could not initialize freelist\n"); |
Eric Anholt | 20caafa | 2007-08-25 19:22:43 +1000 | [diff] [blame] | 933 | return -ENOMEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 934 | } |
| 935 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 936 | return 0; |
| 937 | } |
| 938 | |
Dave Airlie | eddca55 | 2007-07-11 16:09:54 +1000 | [diff] [blame] | 939 | static int mga_do_cleanup_dma(struct drm_device *dev, int full_cleanup) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 940 | { |
Dave Airlie | 6795c98 | 2005-07-10 18:20:09 +1000 | [diff] [blame] | 941 | int err = 0; |
| 942 | DRM_DEBUG("\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 943 | |
| 944 | /* Make sure interrupts are disabled here because the uninstall ioctl |
| 945 | * may not have been called from userspace and after dev_private |
| 946 | * is freed, it's too late. |
| 947 | */ |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 948 | if (dev->irq_enabled) |
| 949 | drm_irq_uninstall(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 950 | |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 951 | if (dev->dev_private) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 952 | drm_mga_private_t *dev_priv = dev->dev_private; |
| 953 | |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 954 | if ((dev_priv->warp != NULL) |
Dave Airlie | 11909d6 | 2005-10-19 21:23:51 -0700 | [diff] [blame] | 955 | && (dev_priv->warp->type != _DRM_CONSISTENT)) |
Dave Airlie | 6795c98 | 2005-07-10 18:20:09 +1000 | [diff] [blame] | 956 | drm_core_ioremapfree(dev_priv->warp, dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 957 | |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 958 | if ((dev_priv->primary != NULL) |
Dave Airlie | 6795c98 | 2005-07-10 18:20:09 +1000 | [diff] [blame] | 959 | && (dev_priv->primary->type != _DRM_CONSISTENT)) |
| 960 | drm_core_ioremapfree(dev_priv->primary, dev); |
| 961 | |
| 962 | if (dev->agp_buffer_map != NULL) |
| 963 | drm_core_ioremapfree(dev->agp_buffer_map, dev); |
| 964 | |
| 965 | if (dev_priv->used_new_dma_init) { |
Dave Airlie | 908f9c4 | 2005-09-05 21:51:30 +1000 | [diff] [blame] | 966 | #if __OS_HAS_AGP |
Dave Airlie | 7ccf800 | 2005-11-11 23:11:34 +1100 | [diff] [blame] | 967 | if (dev_priv->agp_handle != 0) { |
Dave Airlie | eddca55 | 2007-07-11 16:09:54 +1000 | [diff] [blame] | 968 | struct drm_agp_binding unbind_req; |
| 969 | struct drm_agp_buffer free_req; |
Dave Airlie | 6795c98 | 2005-07-10 18:20:09 +1000 | [diff] [blame] | 970 | |
Dave Airlie | 7ccf800 | 2005-11-11 23:11:34 +1100 | [diff] [blame] | 971 | unbind_req.handle = dev_priv->agp_handle; |
| 972 | drm_agp_unbind(dev, &unbind_req); |
| 973 | |
| 974 | free_req.handle = dev_priv->agp_handle; |
| 975 | drm_agp_free(dev, &free_req); |
Dave Airlie | bc5f452 | 2007-11-05 12:50:58 +1000 | [diff] [blame] | 976 | |
Dave Airlie | 7ccf800 | 2005-11-11 23:11:34 +1100 | [diff] [blame] | 977 | dev_priv->agp_textures = NULL; |
| 978 | dev_priv->agp_size = 0; |
| 979 | dev_priv->agp_handle = 0; |
Dave Airlie | 6795c98 | 2005-07-10 18:20:09 +1000 | [diff] [blame] | 980 | } |
| 981 | |
| 982 | if ((dev->agp != NULL) && dev->agp->acquired) { |
| 983 | err = drm_agp_release(dev); |
| 984 | } |
Dave Airlie | 908f9c4 | 2005-09-05 21:51:30 +1000 | [diff] [blame] | 985 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 986 | } |
| 987 | |
Dave Airlie | 6795c98 | 2005-07-10 18:20:09 +1000 | [diff] [blame] | 988 | dev_priv->warp = NULL; |
| 989 | dev_priv->primary = NULL; |
Dave Airlie | 6795c98 | 2005-07-10 18:20:09 +1000 | [diff] [blame] | 990 | dev_priv->sarea = NULL; |
| 991 | dev_priv->sarea_priv = NULL; |
| 992 | dev->agp_buffer_map = NULL; |
| 993 | |
Dave Airlie | 7ccf800 | 2005-11-11 23:11:34 +1100 | [diff] [blame] | 994 | if (full_cleanup) { |
| 995 | dev_priv->mmio = NULL; |
| 996 | dev_priv->status = NULL; |
| 997 | dev_priv->used_new_dma_init = 0; |
| 998 | } |
| 999 | |
Dave Airlie | 6795c98 | 2005-07-10 18:20:09 +1000 | [diff] [blame] | 1000 | memset(&dev_priv->prim, 0, sizeof(dev_priv->prim)); |
| 1001 | dev_priv->warp_pipe = 0; |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 1002 | memset(dev_priv->warp_pipe_phys, 0, |
| 1003 | sizeof(dev_priv->warp_pipe_phys)); |
Dave Airlie | 6795c98 | 2005-07-10 18:20:09 +1000 | [diff] [blame] | 1004 | |
| 1005 | if (dev_priv->head != NULL) { |
| 1006 | mga_freelist_cleanup(dev); |
| 1007 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1008 | } |
| 1009 | |
Jesper Juhl | a96ca10 | 2007-12-17 09:47:17 +1000 | [diff] [blame] | 1010 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1011 | } |
| 1012 | |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 1013 | int mga_dma_init(struct drm_device *dev, void *data, |
| 1014 | struct drm_file *file_priv) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1015 | { |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 1016 | drm_mga_init_t *init = data; |
Dave Airlie | 6795c98 | 2005-07-10 18:20:09 +1000 | [diff] [blame] | 1017 | int err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1018 | |
Eric Anholt | 6c340ea | 2007-08-25 20:23:09 +1000 | [diff] [blame] | 1019 | LOCK_TEST_WITH_RETURN(dev, file_priv); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1020 | |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 1021 | switch (init->func) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1022 | case MGA_INIT_DMA: |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 1023 | err = mga_do_init_dma(dev, init); |
Dave Airlie | 6795c98 | 2005-07-10 18:20:09 +1000 | [diff] [blame] | 1024 | if (err) { |
Dave Airlie | 7ccf800 | 2005-11-11 23:11:34 +1100 | [diff] [blame] | 1025 | (void)mga_do_cleanup_dma(dev, FULL_CLEANUP); |
Dave Airlie | 6795c98 | 2005-07-10 18:20:09 +1000 | [diff] [blame] | 1026 | } |
| 1027 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1028 | case MGA_CLEANUP_DMA: |
Dave Airlie | 7ccf800 | 2005-11-11 23:11:34 +1100 | [diff] [blame] | 1029 | return mga_do_cleanup_dma(dev, FULL_CLEANUP); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1030 | } |
| 1031 | |
Eric Anholt | 20caafa | 2007-08-25 19:22:43 +1000 | [diff] [blame] | 1032 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1033 | } |
| 1034 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1035 | /* ================================================================ |
| 1036 | * Primary DMA stream management |
| 1037 | */ |
| 1038 | |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 1039 | int mga_dma_flush(struct drm_device *dev, void *data, |
| 1040 | struct drm_file *file_priv) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1041 | { |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 1042 | drm_mga_private_t *dev_priv = (drm_mga_private_t *) dev->dev_private; |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 1043 | struct drm_lock *lock = data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1044 | |
Eric Anholt | 6c340ea | 2007-08-25 20:23:09 +1000 | [diff] [blame] | 1045 | LOCK_TEST_WITH_RETURN(dev, file_priv); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1046 | |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 1047 | DRM_DEBUG("%s%s%s\n", |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 1048 | (lock->flags & _DRM_LOCK_FLUSH) ? "flush, " : "", |
| 1049 | (lock->flags & _DRM_LOCK_FLUSH_ALL) ? "flush all, " : "", |
| 1050 | (lock->flags & _DRM_LOCK_QUIESCENT) ? "idle, " : ""); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1051 | |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 1052 | WRAP_WAIT_WITH_RETURN(dev_priv); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1053 | |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 1054 | if (lock->flags & (_DRM_LOCK_FLUSH | _DRM_LOCK_FLUSH_ALL)) { |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 1055 | mga_do_dma_flush(dev_priv); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1056 | } |
| 1057 | |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 1058 | if (lock->flags & _DRM_LOCK_QUIESCENT) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1059 | #if MGA_DMA_DEBUG |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 1060 | int ret = mga_do_wait_for_idle(dev_priv); |
| 1061 | if (ret < 0) |
Márton Németh | 3e684ea | 2008-01-24 15:58:57 +1000 | [diff] [blame] | 1062 | DRM_INFO("-EBUSY\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1063 | return ret; |
| 1064 | #else |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 1065 | return mga_do_wait_for_idle(dev_priv); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1066 | #endif |
| 1067 | } else { |
| 1068 | return 0; |
| 1069 | } |
| 1070 | } |
| 1071 | |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 1072 | int mga_dma_reset(struct drm_device *dev, void *data, |
| 1073 | struct drm_file *file_priv) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1074 | { |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 1075 | drm_mga_private_t *dev_priv = (drm_mga_private_t *) dev->dev_private; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1076 | |
Eric Anholt | 6c340ea | 2007-08-25 20:23:09 +1000 | [diff] [blame] | 1077 | LOCK_TEST_WITH_RETURN(dev, file_priv); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1078 | |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 1079 | return mga_do_dma_reset(dev_priv); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1080 | } |
| 1081 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1082 | /* ================================================================ |
| 1083 | * DMA buffer management |
| 1084 | */ |
| 1085 | |
Eric Anholt | 6c340ea | 2007-08-25 20:23:09 +1000 | [diff] [blame] | 1086 | static int mga_dma_get_buffers(struct drm_device * dev, |
| 1087 | struct drm_file *file_priv, struct drm_dma * d) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1088 | { |
Dave Airlie | 056219e | 2007-07-11 16:17:42 +1000 | [diff] [blame] | 1089 | struct drm_buf *buf; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1090 | int i; |
| 1091 | |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 1092 | for (i = d->granted_count; i < d->request_count; i++) { |
| 1093 | buf = mga_freelist_get(dev); |
| 1094 | if (!buf) |
Eric Anholt | 20caafa | 2007-08-25 19:22:43 +1000 | [diff] [blame] | 1095 | return -EAGAIN; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1096 | |
Eric Anholt | 6c340ea | 2007-08-25 20:23:09 +1000 | [diff] [blame] | 1097 | buf->file_priv = file_priv; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1098 | |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 1099 | if (DRM_COPY_TO_USER(&d->request_indices[i], |
| 1100 | &buf->idx, sizeof(buf->idx))) |
Eric Anholt | 20caafa | 2007-08-25 19:22:43 +1000 | [diff] [blame] | 1101 | return -EFAULT; |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 1102 | if (DRM_COPY_TO_USER(&d->request_sizes[i], |
| 1103 | &buf->total, sizeof(buf->total))) |
Eric Anholt | 20caafa | 2007-08-25 19:22:43 +1000 | [diff] [blame] | 1104 | return -EFAULT; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1105 | |
| 1106 | d->granted_count++; |
| 1107 | } |
| 1108 | return 0; |
| 1109 | } |
| 1110 | |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 1111 | int mga_dma_buffers(struct drm_device *dev, void *data, |
| 1112 | struct drm_file *file_priv) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1113 | { |
Dave Airlie | cdd55a2 | 2007-07-11 16:32:08 +1000 | [diff] [blame] | 1114 | struct drm_device_dma *dma = dev->dma; |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 1115 | drm_mga_private_t *dev_priv = (drm_mga_private_t *) dev->dev_private; |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 1116 | struct drm_dma *d = data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1117 | int ret = 0; |
| 1118 | |
Eric Anholt | 6c340ea | 2007-08-25 20:23:09 +1000 | [diff] [blame] | 1119 | LOCK_TEST_WITH_RETURN(dev, file_priv); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1120 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1121 | /* Please don't send us buffers. |
| 1122 | */ |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 1123 | if (d->send_count != 0) { |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 1124 | DRM_ERROR("Process %d trying to send %d buffers via drmDMA\n", |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 1125 | DRM_CURRENTPID, d->send_count); |
Eric Anholt | 20caafa | 2007-08-25 19:22:43 +1000 | [diff] [blame] | 1126 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1127 | } |
| 1128 | |
| 1129 | /* We'll send you buffers. |
| 1130 | */ |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 1131 | if (d->request_count < 0 || d->request_count > dma->buf_count) { |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 1132 | DRM_ERROR("Process %d trying to get %d buffers (of %d max)\n", |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 1133 | DRM_CURRENTPID, d->request_count, dma->buf_count); |
Eric Anholt | 20caafa | 2007-08-25 19:22:43 +1000 | [diff] [blame] | 1134 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1135 | } |
| 1136 | |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 1137 | WRAP_TEST_WITH_RETURN(dev_priv); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1138 | |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 1139 | d->granted_count = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1140 | |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 1141 | if (d->request_count) { |
| 1142 | ret = mga_dma_get_buffers(dev, file_priv, d); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1143 | } |
| 1144 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1145 | return ret; |
| 1146 | } |
| 1147 | |
Dave Airlie | 6795c98 | 2005-07-10 18:20:09 +1000 | [diff] [blame] | 1148 | /** |
| 1149 | * Called just before the module is unloaded. |
| 1150 | */ |
Dave Airlie | eddca55 | 2007-07-11 16:09:54 +1000 | [diff] [blame] | 1151 | int mga_driver_unload(struct drm_device * dev) |
Dave Airlie | 6795c98 | 2005-07-10 18:20:09 +1000 | [diff] [blame] | 1152 | { |
| 1153 | drm_free(dev->dev_private, sizeof(drm_mga_private_t), DRM_MEM_DRIVER); |
| 1154 | dev->dev_private = NULL; |
| 1155 | |
| 1156 | return 0; |
| 1157 | } |
| 1158 | |
| 1159 | /** |
| 1160 | * Called when the last opener of the device is closed. |
| 1161 | */ |
Dave Airlie | eddca55 | 2007-07-11 16:09:54 +1000 | [diff] [blame] | 1162 | void mga_driver_lastclose(struct drm_device * dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1163 | { |
Dave Airlie | 7ccf800 | 2005-11-11 23:11:34 +1100 | [diff] [blame] | 1164 | mga_do_cleanup_dma(dev, FULL_CLEANUP); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1165 | } |
| 1166 | |
Dave Airlie | eddca55 | 2007-07-11 16:09:54 +1000 | [diff] [blame] | 1167 | int mga_driver_dma_quiescent(struct drm_device * dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1168 | { |
| 1169 | drm_mga_private_t *dev_priv = dev->dev_private; |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 1170 | return mga_do_wait_for_idle(dev_priv); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1171 | } |