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 | |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 151 | DRM_DEBUG(" head = 0x%06lx\n", head - dev_priv->primary->offset); |
| 152 | DRM_DEBUG(" tail = 0x%06lx\n", tail - dev_priv->primary->offset); |
| 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 | |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 190 | DRM_DEBUG(" head = 0x%06lx\n", head - dev_priv->primary->offset); |
| 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, |
| 242 | 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 ? |
| 343 | tail->age.head - dev_priv->primary->offset : 0, |
| 344 | tail->age.wrap); |
| 345 | DRM_DEBUG(" head=0x%06lx %d\n", |
| 346 | 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", |
| 369 | buf_priv->list_entry->age.head - |
| 370 | dev_priv->primary->offset, buf_priv->list_entry->age.wrap); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 371 | |
| 372 | entry = buf_priv->list_entry; |
| 373 | head = dev_priv->head; |
| 374 | |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 375 | if (buf_priv->list_entry->age.head == MGA_BUFFER_USED) { |
| 376 | SET_AGE(&entry->age, MGA_BUFFER_FREE, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 377 | prev = dev_priv->tail; |
| 378 | prev->next = entry; |
| 379 | entry->prev = prev; |
| 380 | entry->next = NULL; |
| 381 | } else { |
| 382 | prev = head->next; |
| 383 | head->next = entry; |
| 384 | prev->prev = entry; |
| 385 | entry->prev = head; |
| 386 | entry->next = prev; |
| 387 | } |
| 388 | |
| 389 | return 0; |
| 390 | } |
| 391 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 392 | /* ================================================================ |
| 393 | * DMA initialization, cleanup |
| 394 | */ |
| 395 | |
Dave Airlie | eddca55 | 2007-07-11 16:09:54 +1000 | [diff] [blame] | 396 | int mga_driver_load(struct drm_device * dev, unsigned long flags) |
Dave Airlie | 6795c98 | 2005-07-10 18:20:09 +1000 | [diff] [blame] | 397 | { |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 398 | drm_mga_private_t *dev_priv; |
Keith Packard | 5244021 | 2008-11-18 09:30:25 -0800 | [diff] [blame^] | 399 | int ret; |
Dave Airlie | 6795c98 | 2005-07-10 18:20:09 +1000 | [diff] [blame] | 400 | |
| 401 | dev_priv = drm_alloc(sizeof(drm_mga_private_t), DRM_MEM_DRIVER); |
| 402 | if (!dev_priv) |
Eric Anholt | 20caafa | 2007-08-25 19:22:43 +1000 | [diff] [blame] | 403 | return -ENOMEM; |
Dave Airlie | 6795c98 | 2005-07-10 18:20:09 +1000 | [diff] [blame] | 404 | |
| 405 | dev->dev_private = (void *)dev_priv; |
| 406 | memset(dev_priv, 0, sizeof(drm_mga_private_t)); |
| 407 | |
| 408 | dev_priv->usec_timeout = MGA_DEFAULT_USEC_TIMEOUT; |
| 409 | dev_priv->chipset = flags; |
| 410 | |
Dave Airlie | 22eae94 | 2005-11-10 22:16:34 +1100 | [diff] [blame] | 411 | dev_priv->mmio_base = drm_get_resource_start(dev, 1); |
| 412 | dev_priv->mmio_size = drm_get_resource_len(dev, 1); |
| 413 | |
| 414 | dev->counters += 3; |
| 415 | dev->types[6] = _DRM_STAT_IRQ; |
| 416 | dev->types[7] = _DRM_STAT_PRIMARY; |
| 417 | dev->types[8] = _DRM_STAT_SECONDARY; |
| 418 | |
Keith Packard | 5244021 | 2008-11-18 09:30:25 -0800 | [diff] [blame^] | 419 | ret = drm_vblank_init(dev, 1); |
| 420 | |
| 421 | if (ret) { |
| 422 | (void) mga_driver_unload(dev); |
| 423 | return ret; |
| 424 | } |
| 425 | |
Dave Airlie | 6795c98 | 2005-07-10 18:20:09 +1000 | [diff] [blame] | 426 | return 0; |
| 427 | } |
| 428 | |
Dave Airlie | 908f9c4 | 2005-09-05 21:51:30 +1000 | [diff] [blame] | 429 | #if __OS_HAS_AGP |
Dave Airlie | 6795c98 | 2005-07-10 18:20:09 +1000 | [diff] [blame] | 430 | /** |
| 431 | * Bootstrap the driver for AGP DMA. |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 432 | * |
Dave Airlie | 6795c98 | 2005-07-10 18:20:09 +1000 | [diff] [blame] | 433 | * \todo |
| 434 | * Investigate whether there is any benifit to storing the WARP microcode in |
| 435 | * AGP memory. If not, the microcode may as well always be put in PCI |
| 436 | * memory. |
| 437 | * |
| 438 | * \todo |
| 439 | * This routine needs to set dma_bs->agp_mode to the mode actually configured |
| 440 | * in the hardware. Looking just at the Linux AGP driver code, I don't see |
| 441 | * an easy way to determine this. |
| 442 | * |
| 443 | * \sa mga_do_dma_bootstrap, mga_do_pci_dma_bootstrap |
| 444 | */ |
Dave Airlie | eddca55 | 2007-07-11 16:09:54 +1000 | [diff] [blame] | 445 | static int mga_do_agp_dma_bootstrap(struct drm_device * dev, |
Dave Airlie | 6795c98 | 2005-07-10 18:20:09 +1000 | [diff] [blame] | 446 | drm_mga_dma_bootstrap_t * dma_bs) |
| 447 | { |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 448 | drm_mga_private_t *const dev_priv = |
| 449 | (drm_mga_private_t *) dev->dev_private; |
Dave Airlie | 11909d6 | 2005-10-19 21:23:51 -0700 | [diff] [blame] | 450 | unsigned int warp_size = mga_warp_microcode_size(dev_priv); |
Dave Airlie | 6795c98 | 2005-07-10 18:20:09 +1000 | [diff] [blame] | 451 | int err; |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 452 | unsigned offset; |
Dave Airlie | 6795c98 | 2005-07-10 18:20:09 +1000 | [diff] [blame] | 453 | const unsigned secondary_size = dma_bs->secondary_bin_count |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 454 | * dma_bs->secondary_bin_size; |
Dave Airlie | 6795c98 | 2005-07-10 18:20:09 +1000 | [diff] [blame] | 455 | const unsigned agp_size = (dma_bs->agp_size << 20); |
Dave Airlie | eddca55 | 2007-07-11 16:09:54 +1000 | [diff] [blame] | 456 | struct drm_buf_desc req; |
| 457 | struct drm_agp_mode mode; |
| 458 | struct drm_agp_info info; |
| 459 | struct drm_agp_buffer agp_req; |
| 460 | struct drm_agp_binding bind_req; |
Dave Airlie | 6795c98 | 2005-07-10 18:20:09 +1000 | [diff] [blame] | 461 | |
Dave Airlie | 6795c98 | 2005-07-10 18:20:09 +1000 | [diff] [blame] | 462 | /* Acquire AGP. */ |
| 463 | err = drm_agp_acquire(dev); |
| 464 | if (err) { |
Dave Airlie | 7ccf800 | 2005-11-11 23:11:34 +1100 | [diff] [blame] | 465 | DRM_ERROR("Unable to acquire AGP: %d\n", err); |
Dave Airlie | 6795c98 | 2005-07-10 18:20:09 +1000 | [diff] [blame] | 466 | return err; |
| 467 | } |
| 468 | |
| 469 | err = drm_agp_info(dev, &info); |
| 470 | if (err) { |
Dave Airlie | 7ccf800 | 2005-11-11 23:11:34 +1100 | [diff] [blame] | 471 | DRM_ERROR("Unable to get AGP info: %d\n", err); |
Dave Airlie | 6795c98 | 2005-07-10 18:20:09 +1000 | [diff] [blame] | 472 | return err; |
| 473 | } |
| 474 | |
| 475 | mode.mode = (info.mode & ~0x07) | dma_bs->agp_mode; |
| 476 | err = drm_agp_enable(dev, mode); |
| 477 | if (err) { |
| 478 | DRM_ERROR("Unable to enable AGP (mode = 0x%lx)\n", mode.mode); |
| 479 | return err; |
| 480 | } |
| 481 | |
Dave Airlie | 6795c98 | 2005-07-10 18:20:09 +1000 | [diff] [blame] | 482 | /* In addition to the usual AGP mode configuration, the G200 AGP cards |
| 483 | * need to have the AGP mode "manually" set. |
| 484 | */ |
| 485 | |
| 486 | if (dev_priv->chipset == MGA_CARD_TYPE_G200) { |
| 487 | if (mode.mode & 0x02) { |
| 488 | MGA_WRITE(MGA_AGP_PLL, MGA_AGP2XPLL_ENABLE); |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 489 | } else { |
Dave Airlie | 6795c98 | 2005-07-10 18:20:09 +1000 | [diff] [blame] | 490 | MGA_WRITE(MGA_AGP_PLL, MGA_AGP2XPLL_DISABLE); |
| 491 | } |
| 492 | } |
| 493 | |
Dave Airlie | 6795c98 | 2005-07-10 18:20:09 +1000 | [diff] [blame] | 494 | /* Allocate and bind AGP memory. */ |
Dave Airlie | 7ccf800 | 2005-11-11 23:11:34 +1100 | [diff] [blame] | 495 | agp_req.size = agp_size; |
| 496 | agp_req.type = 0; |
| 497 | err = drm_agp_alloc(dev, &agp_req); |
| 498 | if (err) { |
| 499 | dev_priv->agp_size = 0; |
Dave Airlie | 6795c98 | 2005-07-10 18:20:09 +1000 | [diff] [blame] | 500 | DRM_ERROR("Unable to allocate %uMB AGP memory\n", |
| 501 | dma_bs->agp_size); |
Dave Airlie | 7ccf800 | 2005-11-11 23:11:34 +1100 | [diff] [blame] | 502 | return err; |
Dave Airlie | 6795c98 | 2005-07-10 18:20:09 +1000 | [diff] [blame] | 503 | } |
Dave Airlie | bc5f452 | 2007-11-05 12:50:58 +1000 | [diff] [blame] | 504 | |
Dave Airlie | 7ccf800 | 2005-11-11 23:11:34 +1100 | [diff] [blame] | 505 | dev_priv->agp_size = agp_size; |
| 506 | dev_priv->agp_handle = agp_req.handle; |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 507 | |
Dave Airlie | 7ccf800 | 2005-11-11 23:11:34 +1100 | [diff] [blame] | 508 | bind_req.handle = agp_req.handle; |
| 509 | bind_req.offset = 0; |
| 510 | err = drm_agp_bind(dev, &bind_req); |
Dave Airlie | 6795c98 | 2005-07-10 18:20:09 +1000 | [diff] [blame] | 511 | if (err) { |
Dave Airlie | 7ccf800 | 2005-11-11 23:11:34 +1100 | [diff] [blame] | 512 | DRM_ERROR("Unable to bind AGP memory: %d\n", err); |
Dave Airlie | 6795c98 | 2005-07-10 18:20:09 +1000 | [diff] [blame] | 513 | return err; |
| 514 | } |
| 515 | |
Dave Airlie | 11909d6 | 2005-10-19 21:23:51 -0700 | [diff] [blame] | 516 | /* Make drm_addbufs happy by not trying to create a mapping for less |
| 517 | * than a page. |
| 518 | */ |
| 519 | if (warp_size < PAGE_SIZE) |
| 520 | warp_size = PAGE_SIZE; |
| 521 | |
Dave Airlie | 6795c98 | 2005-07-10 18:20:09 +1000 | [diff] [blame] | 522 | offset = 0; |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 523 | err = drm_addmap(dev, offset, warp_size, |
| 524 | _DRM_AGP, _DRM_READ_ONLY, &dev_priv->warp); |
Dave Airlie | 6795c98 | 2005-07-10 18:20:09 +1000 | [diff] [blame] | 525 | if (err) { |
Dave Airlie | 7ccf800 | 2005-11-11 23:11:34 +1100 | [diff] [blame] | 526 | DRM_ERROR("Unable to map WARP microcode: %d\n", err); |
Dave Airlie | 6795c98 | 2005-07-10 18:20:09 +1000 | [diff] [blame] | 527 | return err; |
| 528 | } |
| 529 | |
| 530 | offset += warp_size; |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 531 | err = drm_addmap(dev, offset, dma_bs->primary_size, |
| 532 | _DRM_AGP, _DRM_READ_ONLY, &dev_priv->primary); |
Dave Airlie | 6795c98 | 2005-07-10 18:20:09 +1000 | [diff] [blame] | 533 | if (err) { |
Dave Airlie | 7ccf800 | 2005-11-11 23:11:34 +1100 | [diff] [blame] | 534 | DRM_ERROR("Unable to map primary DMA region: %d\n", err); |
Dave Airlie | 6795c98 | 2005-07-10 18:20:09 +1000 | [diff] [blame] | 535 | return err; |
| 536 | } |
| 537 | |
| 538 | offset += dma_bs->primary_size; |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 539 | err = drm_addmap(dev, offset, secondary_size, |
| 540 | _DRM_AGP, 0, &dev->agp_buffer_map); |
Dave Airlie | 6795c98 | 2005-07-10 18:20:09 +1000 | [diff] [blame] | 541 | if (err) { |
Dave Airlie | 7ccf800 | 2005-11-11 23:11:34 +1100 | [diff] [blame] | 542 | DRM_ERROR("Unable to map secondary DMA region: %d\n", err); |
Dave Airlie | 6795c98 | 2005-07-10 18:20:09 +1000 | [diff] [blame] | 543 | return err; |
| 544 | } |
| 545 | |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 546 | (void)memset(&req, 0, sizeof(req)); |
Dave Airlie | 6795c98 | 2005-07-10 18:20:09 +1000 | [diff] [blame] | 547 | req.count = dma_bs->secondary_bin_count; |
| 548 | req.size = dma_bs->secondary_bin_size; |
| 549 | req.flags = _DRM_AGP_BUFFER; |
| 550 | req.agp_start = offset; |
| 551 | |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 552 | err = drm_addbufs_agp(dev, &req); |
Dave Airlie | 6795c98 | 2005-07-10 18:20:09 +1000 | [diff] [blame] | 553 | if (err) { |
Dave Airlie | 7ccf800 | 2005-11-11 23:11:34 +1100 | [diff] [blame] | 554 | DRM_ERROR("Unable to add secondary DMA buffers: %d\n", err); |
Dave Airlie | 6795c98 | 2005-07-10 18:20:09 +1000 | [diff] [blame] | 555 | return err; |
| 556 | } |
| 557 | |
Dave Airlie | 7ccf800 | 2005-11-11 23:11:34 +1100 | [diff] [blame] | 558 | { |
Dave Airlie | 5591051 | 2007-07-11 16:53:40 +1000 | [diff] [blame] | 559 | struct drm_map_list *_entry; |
Dave Airlie | 7ccf800 | 2005-11-11 23:11:34 +1100 | [diff] [blame] | 560 | unsigned long agp_token = 0; |
Dave Airlie | bc5f452 | 2007-11-05 12:50:58 +1000 | [diff] [blame] | 561 | |
Dave Airlie | bd1b331 | 2007-05-26 05:01:51 +1000 | [diff] [blame] | 562 | list_for_each_entry(_entry, &dev->maplist, head) { |
Dave Airlie | 7ccf800 | 2005-11-11 23:11:34 +1100 | [diff] [blame] | 563 | if (_entry->map == dev->agp_buffer_map) |
| 564 | agp_token = _entry->user_token; |
| 565 | } |
| 566 | if (!agp_token) |
| 567 | return -EFAULT; |
| 568 | |
| 569 | dev->agp_buffer_token = agp_token; |
| 570 | } |
| 571 | |
Dave Airlie | 6795c98 | 2005-07-10 18:20:09 +1000 | [diff] [blame] | 572 | offset += secondary_size; |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 573 | err = drm_addmap(dev, offset, agp_size - offset, |
| 574 | _DRM_AGP, 0, &dev_priv->agp_textures); |
Dave Airlie | 6795c98 | 2005-07-10 18:20:09 +1000 | [diff] [blame] | 575 | if (err) { |
Dave Airlie | 7ccf800 | 2005-11-11 23:11:34 +1100 | [diff] [blame] | 576 | DRM_ERROR("Unable to map AGP texture region %d\n", err); |
Dave Airlie | 6795c98 | 2005-07-10 18:20:09 +1000 | [diff] [blame] | 577 | return err; |
| 578 | } |
| 579 | |
| 580 | drm_core_ioremap(dev_priv->warp, dev); |
| 581 | drm_core_ioremap(dev_priv->primary, dev); |
| 582 | drm_core_ioremap(dev->agp_buffer_map, dev); |
| 583 | |
| 584 | if (!dev_priv->warp->handle || |
| 585 | !dev_priv->primary->handle || !dev->agp_buffer_map->handle) { |
| 586 | DRM_ERROR("failed to ioremap agp regions! (%p, %p, %p)\n", |
| 587 | dev_priv->warp->handle, dev_priv->primary->handle, |
| 588 | dev->agp_buffer_map->handle); |
Eric Anholt | 20caafa | 2007-08-25 19:22:43 +1000 | [diff] [blame] | 589 | return -ENOMEM; |
Dave Airlie | 6795c98 | 2005-07-10 18:20:09 +1000 | [diff] [blame] | 590 | } |
| 591 | |
| 592 | dev_priv->dma_access = MGA_PAGPXFER; |
| 593 | dev_priv->wagp_enable = MGA_WAGP_ENABLE; |
| 594 | |
| 595 | DRM_INFO("Initialized card for AGP DMA.\n"); |
| 596 | return 0; |
| 597 | } |
Dave Airlie | 908f9c4 | 2005-09-05 21:51:30 +1000 | [diff] [blame] | 598 | #else |
Dave Airlie | eddca55 | 2007-07-11 16:09:54 +1000 | [diff] [blame] | 599 | static int mga_do_agp_dma_bootstrap(struct drm_device * dev, |
Dave Airlie | 908f9c4 | 2005-09-05 21:51:30 +1000 | [diff] [blame] | 600 | drm_mga_dma_bootstrap_t * dma_bs) |
| 601 | { |
| 602 | return -EINVAL; |
| 603 | } |
| 604 | #endif |
Dave Airlie | 6795c98 | 2005-07-10 18:20:09 +1000 | [diff] [blame] | 605 | |
| 606 | /** |
| 607 | * Bootstrap the driver for PCI DMA. |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 608 | * |
Dave Airlie | 6795c98 | 2005-07-10 18:20:09 +1000 | [diff] [blame] | 609 | * \todo |
| 610 | * The algorithm for decreasing the size of the primary DMA buffer could be |
| 611 | * better. The size should be rounded up to the nearest page size, then |
| 612 | * decrease the request size by a single page each pass through the loop. |
| 613 | * |
| 614 | * \todo |
| 615 | * Determine whether the maximum address passed to drm_pci_alloc is correct. |
| 616 | * The same goes for drm_addbufs_pci. |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 617 | * |
Dave Airlie | 6795c98 | 2005-07-10 18:20:09 +1000 | [diff] [blame] | 618 | * \sa mga_do_dma_bootstrap, mga_do_agp_dma_bootstrap |
| 619 | */ |
Dave Airlie | eddca55 | 2007-07-11 16:09:54 +1000 | [diff] [blame] | 620 | static int mga_do_pci_dma_bootstrap(struct drm_device * dev, |
Dave Airlie | 6795c98 | 2005-07-10 18:20:09 +1000 | [diff] [blame] | 621 | drm_mga_dma_bootstrap_t * dma_bs) |
| 622 | { |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 623 | drm_mga_private_t *const dev_priv = |
| 624 | (drm_mga_private_t *) dev->dev_private; |
Dave Airlie | 11909d6 | 2005-10-19 21:23:51 -0700 | [diff] [blame] | 625 | unsigned int warp_size = mga_warp_microcode_size(dev_priv); |
Dave Airlie | 6795c98 | 2005-07-10 18:20:09 +1000 | [diff] [blame] | 626 | unsigned int primary_size; |
| 627 | unsigned int bin_count; |
| 628 | int err; |
Dave Airlie | eddca55 | 2007-07-11 16:09:54 +1000 | [diff] [blame] | 629 | struct drm_buf_desc req; |
Dave Airlie | 6795c98 | 2005-07-10 18:20:09 +1000 | [diff] [blame] | 630 | |
Dave Airlie | 6795c98 | 2005-07-10 18:20:09 +1000 | [diff] [blame] | 631 | if (dev->dma == NULL) { |
| 632 | DRM_ERROR("dev->dma is NULL\n"); |
Eric Anholt | 20caafa | 2007-08-25 19:22:43 +1000 | [diff] [blame] | 633 | return -EFAULT; |
Dave Airlie | 6795c98 | 2005-07-10 18:20:09 +1000 | [diff] [blame] | 634 | } |
| 635 | |
Dave Airlie | 11909d6 | 2005-10-19 21:23:51 -0700 | [diff] [blame] | 636 | /* Make drm_addbufs happy by not trying to create a mapping for less |
| 637 | * than a page. |
| 638 | */ |
| 639 | if (warp_size < PAGE_SIZE) |
| 640 | warp_size = PAGE_SIZE; |
| 641 | |
Dave Airlie | 6795c98 | 2005-07-10 18:20:09 +1000 | [diff] [blame] | 642 | /* The proper alignment is 0x100 for this mapping */ |
| 643 | err = drm_addmap(dev, 0, warp_size, _DRM_CONSISTENT, |
| 644 | _DRM_READ_ONLY, &dev_priv->warp); |
| 645 | if (err != 0) { |
Dave Airlie | 7ccf800 | 2005-11-11 23:11:34 +1100 | [diff] [blame] | 646 | DRM_ERROR("Unable to create mapping for WARP microcode: %d\n", |
| 647 | err); |
Dave Airlie | 6795c98 | 2005-07-10 18:20:09 +1000 | [diff] [blame] | 648 | return err; |
| 649 | } |
| 650 | |
| 651 | /* Other than the bottom two bits being used to encode other |
| 652 | * information, there don't appear to be any restrictions on the |
| 653 | * alignment of the primary or secondary DMA buffers. |
| 654 | */ |
| 655 | |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 656 | for (primary_size = dma_bs->primary_size; primary_size != 0; |
| 657 | primary_size >>= 1) { |
Dave Airlie | 6795c98 | 2005-07-10 18:20:09 +1000 | [diff] [blame] | 658 | /* The proper alignment for this mapping is 0x04 */ |
| 659 | err = drm_addmap(dev, 0, primary_size, _DRM_CONSISTENT, |
| 660 | _DRM_READ_ONLY, &dev_priv->primary); |
| 661 | if (!err) |
| 662 | break; |
| 663 | } |
| 664 | |
| 665 | if (err != 0) { |
Dave Airlie | 7ccf800 | 2005-11-11 23:11:34 +1100 | [diff] [blame] | 666 | DRM_ERROR("Unable to allocate primary DMA region: %d\n", err); |
Eric Anholt | 20caafa | 2007-08-25 19:22:43 +1000 | [diff] [blame] | 667 | return -ENOMEM; |
Dave Airlie | 6795c98 | 2005-07-10 18:20:09 +1000 | [diff] [blame] | 668 | } |
| 669 | |
| 670 | if (dev_priv->primary->size != dma_bs->primary_size) { |
| 671 | DRM_INFO("Primary DMA buffer size reduced from %u to %u.\n", |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 672 | dma_bs->primary_size, |
| 673 | (unsigned)dev_priv->primary->size); |
Dave Airlie | 6795c98 | 2005-07-10 18:20:09 +1000 | [diff] [blame] | 674 | dma_bs->primary_size = dev_priv->primary->size; |
| 675 | } |
| 676 | |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 677 | for (bin_count = dma_bs->secondary_bin_count; bin_count > 0; |
| 678 | bin_count--) { |
| 679 | (void)memset(&req, 0, sizeof(req)); |
Dave Airlie | 6795c98 | 2005-07-10 18:20:09 +1000 | [diff] [blame] | 680 | req.count = bin_count; |
| 681 | req.size = dma_bs->secondary_bin_size; |
| 682 | |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 683 | err = drm_addbufs_pci(dev, &req); |
Dave Airlie | 6795c98 | 2005-07-10 18:20:09 +1000 | [diff] [blame] | 684 | if (!err) { |
| 685 | break; |
| 686 | } |
| 687 | } |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 688 | |
Dave Airlie | 6795c98 | 2005-07-10 18:20:09 +1000 | [diff] [blame] | 689 | if (bin_count == 0) { |
Dave Airlie | 7ccf800 | 2005-11-11 23:11:34 +1100 | [diff] [blame] | 690 | DRM_ERROR("Unable to add secondary DMA buffers: %d\n", err); |
Dave Airlie | 6795c98 | 2005-07-10 18:20:09 +1000 | [diff] [blame] | 691 | return err; |
| 692 | } |
| 693 | |
| 694 | if (bin_count != dma_bs->secondary_bin_count) { |
| 695 | DRM_INFO("Secondary PCI DMA buffer bin count reduced from %u " |
| 696 | "to %u.\n", dma_bs->secondary_bin_count, bin_count); |
| 697 | |
| 698 | dma_bs->secondary_bin_count = bin_count; |
| 699 | } |
| 700 | |
| 701 | dev_priv->dma_access = 0; |
| 702 | dev_priv->wagp_enable = 0; |
| 703 | |
| 704 | dma_bs->agp_mode = 0; |
| 705 | |
| 706 | DRM_INFO("Initialized card for PCI DMA.\n"); |
| 707 | return 0; |
| 708 | } |
| 709 | |
Dave Airlie | eddca55 | 2007-07-11 16:09:54 +1000 | [diff] [blame] | 710 | static int mga_do_dma_bootstrap(struct drm_device * dev, |
Dave Airlie | 6795c98 | 2005-07-10 18:20:09 +1000 | [diff] [blame] | 711 | drm_mga_dma_bootstrap_t * dma_bs) |
| 712 | { |
| 713 | const int is_agp = (dma_bs->agp_mode != 0) && drm_device_is_agp(dev); |
| 714 | int err; |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 715 | drm_mga_private_t *const dev_priv = |
| 716 | (drm_mga_private_t *) dev->dev_private; |
Dave Airlie | 6795c98 | 2005-07-10 18:20:09 +1000 | [diff] [blame] | 717 | |
| 718 | dev_priv->used_new_dma_init = 1; |
| 719 | |
| 720 | /* The first steps are the same for both PCI and AGP based DMA. Map |
| 721 | * the cards MMIO registers and map a status page. |
| 722 | */ |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 723 | err = drm_addmap(dev, dev_priv->mmio_base, dev_priv->mmio_size, |
| 724 | _DRM_REGISTERS, _DRM_READ_ONLY, &dev_priv->mmio); |
Dave Airlie | 6795c98 | 2005-07-10 18:20:09 +1000 | [diff] [blame] | 725 | if (err) { |
Dave Airlie | 7ccf800 | 2005-11-11 23:11:34 +1100 | [diff] [blame] | 726 | DRM_ERROR("Unable to map MMIO region: %d\n", err); |
Dave Airlie | 6795c98 | 2005-07-10 18:20:09 +1000 | [diff] [blame] | 727 | return err; |
| 728 | } |
| 729 | |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 730 | err = drm_addmap(dev, 0, SAREA_MAX, _DRM_SHM, |
| 731 | _DRM_READ_ONLY | _DRM_LOCKED | _DRM_KERNEL, |
| 732 | &dev_priv->status); |
Dave Airlie | 6795c98 | 2005-07-10 18:20:09 +1000 | [diff] [blame] | 733 | if (err) { |
Dave Airlie | 7ccf800 | 2005-11-11 23:11:34 +1100 | [diff] [blame] | 734 | DRM_ERROR("Unable to map status region: %d\n", err); |
Dave Airlie | 6795c98 | 2005-07-10 18:20:09 +1000 | [diff] [blame] | 735 | return err; |
| 736 | } |
| 737 | |
Dave Airlie | 6795c98 | 2005-07-10 18:20:09 +1000 | [diff] [blame] | 738 | /* The DMA initialization procedure is slightly different for PCI and |
| 739 | * AGP cards. AGP cards just allocate a large block of AGP memory and |
| 740 | * carve off portions of it for internal uses. The remaining memory |
| 741 | * is returned to user-mode to be used for AGP textures. |
| 742 | */ |
Dave Airlie | 6795c98 | 2005-07-10 18:20:09 +1000 | [diff] [blame] | 743 | if (is_agp) { |
| 744 | err = mga_do_agp_dma_bootstrap(dev, dma_bs); |
| 745 | } |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 746 | |
Dave Airlie | 6795c98 | 2005-07-10 18:20:09 +1000 | [diff] [blame] | 747 | /* If we attempted to initialize the card for AGP DMA but failed, |
| 748 | * clean-up any mess that may have been created. |
| 749 | */ |
| 750 | |
| 751 | if (err) { |
Dave Airlie | 7ccf800 | 2005-11-11 23:11:34 +1100 | [diff] [blame] | 752 | mga_do_cleanup_dma(dev, MINIMAL_CLEANUP); |
Dave Airlie | 6795c98 | 2005-07-10 18:20:09 +1000 | [diff] [blame] | 753 | } |
| 754 | |
Dave Airlie | 6795c98 | 2005-07-10 18:20:09 +1000 | [diff] [blame] | 755 | /* Not only do we want to try and initialized PCI cards for PCI DMA, |
| 756 | * but we also try to initialized AGP cards that could not be |
| 757 | * initialized for AGP DMA. This covers the case where we have an AGP |
| 758 | * card in a system with an unsupported AGP chipset. In that case the |
| 759 | * card will be detected as AGP, but we won't be able to allocate any |
| 760 | * AGP memory, etc. |
| 761 | */ |
| 762 | |
| 763 | if (!is_agp || err) { |
| 764 | err = mga_do_pci_dma_bootstrap(dev, dma_bs); |
| 765 | } |
| 766 | |
Dave Airlie | 6795c98 | 2005-07-10 18:20:09 +1000 | [diff] [blame] | 767 | return err; |
| 768 | } |
| 769 | |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 770 | int mga_dma_bootstrap(struct drm_device *dev, void *data, |
| 771 | struct drm_file *file_priv) |
Dave Airlie | 6795c98 | 2005-07-10 18:20:09 +1000 | [diff] [blame] | 772 | { |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 773 | drm_mga_dma_bootstrap_t *bootstrap = data; |
Dave Airlie | 6795c98 | 2005-07-10 18:20:09 +1000 | [diff] [blame] | 774 | int err; |
Dave Airlie | 7ccf800 | 2005-11-11 23:11:34 +1100 | [diff] [blame] | 775 | static const int modes[] = { 0, 1, 2, 2, 4, 4, 4, 4 }; |
| 776 | const drm_mga_private_t *const dev_priv = |
| 777 | (drm_mga_private_t *) dev->dev_private; |
Dave Airlie | 6795c98 | 2005-07-10 18:20:09 +1000 | [diff] [blame] | 778 | |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 779 | err = mga_do_dma_bootstrap(dev, bootstrap); |
Dave Airlie | 7ccf800 | 2005-11-11 23:11:34 +1100 | [diff] [blame] | 780 | if (err) { |
| 781 | mga_do_cleanup_dma(dev, FULL_CLEANUP); |
| 782 | return err; |
Dave Airlie | 6795c98 | 2005-07-10 18:20:09 +1000 | [diff] [blame] | 783 | } |
| 784 | |
Dave Airlie | 7ccf800 | 2005-11-11 23:11:34 +1100 | [diff] [blame] | 785 | if (dev_priv->agp_textures != NULL) { |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 786 | bootstrap->texture_handle = dev_priv->agp_textures->offset; |
| 787 | bootstrap->texture_size = dev_priv->agp_textures->size; |
Dave Airlie | 7ccf800 | 2005-11-11 23:11:34 +1100 | [diff] [blame] | 788 | } else { |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 789 | bootstrap->texture_handle = 0; |
| 790 | bootstrap->texture_size = 0; |
Dave Airlie | 7ccf800 | 2005-11-11 23:11:34 +1100 | [diff] [blame] | 791 | } |
| 792 | |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 793 | bootstrap->agp_mode = modes[bootstrap->agp_mode & 0x07]; |
Dave Airlie | 7ccf800 | 2005-11-11 23:11:34 +1100 | [diff] [blame] | 794 | |
Dave Airlie | 6795c98 | 2005-07-10 18:20:09 +1000 | [diff] [blame] | 795 | return err; |
| 796 | } |
| 797 | |
Dave Airlie | eddca55 | 2007-07-11 16:09:54 +1000 | [diff] [blame] | 798 | 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] | 799 | { |
| 800 | drm_mga_private_t *dev_priv; |
| 801 | int ret; |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 802 | DRM_DEBUG("\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 803 | |
Dave Airlie | 6795c98 | 2005-07-10 18:20:09 +1000 | [diff] [blame] | 804 | dev_priv = dev->dev_private; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 805 | |
Dave Airlie | 6795c98 | 2005-07-10 18:20:09 +1000 | [diff] [blame] | 806 | if (init->sgram) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 807 | dev_priv->clear_cmd = MGA_DWGCTL_CLEAR | MGA_ATYPE_BLK; |
| 808 | } else { |
| 809 | dev_priv->clear_cmd = MGA_DWGCTL_CLEAR | MGA_ATYPE_RSTR; |
| 810 | } |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 811 | dev_priv->maccess = init->maccess; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 812 | |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 813 | dev_priv->fb_cpp = init->fb_cpp; |
| 814 | dev_priv->front_offset = init->front_offset; |
| 815 | dev_priv->front_pitch = init->front_pitch; |
| 816 | dev_priv->back_offset = init->back_offset; |
| 817 | dev_priv->back_pitch = init->back_pitch; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 818 | |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 819 | dev_priv->depth_cpp = init->depth_cpp; |
| 820 | dev_priv->depth_offset = init->depth_offset; |
| 821 | dev_priv->depth_pitch = init->depth_pitch; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 822 | |
| 823 | /* FIXME: Need to support AGP textures... |
| 824 | */ |
| 825 | dev_priv->texture_offset = init->texture_offset[0]; |
| 826 | dev_priv->texture_size = init->texture_size[0]; |
| 827 | |
Dave Airlie | da509d7 | 2007-05-26 05:04:51 +1000 | [diff] [blame] | 828 | dev_priv->sarea = drm_getsarea(dev); |
Dave Airlie | 6795c98 | 2005-07-10 18:20:09 +1000 | [diff] [blame] | 829 | if (!dev_priv->sarea) { |
| 830 | DRM_ERROR("failed to find sarea!\n"); |
Eric Anholt | 20caafa | 2007-08-25 19:22:43 +1000 | [diff] [blame] | 831 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 832 | } |
| 833 | |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 834 | if (!dev_priv->used_new_dma_init) { |
Dave Airlie | 11909d6 | 2005-10-19 21:23:51 -0700 | [diff] [blame] | 835 | |
| 836 | dev_priv->dma_access = MGA_PAGPXFER; |
| 837 | dev_priv->wagp_enable = MGA_WAGP_ENABLE; |
| 838 | |
Dave Airlie | 6795c98 | 2005-07-10 18:20:09 +1000 | [diff] [blame] | 839 | dev_priv->status = drm_core_findmap(dev, init->status_offset); |
| 840 | if (!dev_priv->status) { |
| 841 | DRM_ERROR("failed to find status page!\n"); |
Eric Anholt | 20caafa | 2007-08-25 19:22:43 +1000 | [diff] [blame] | 842 | return -EINVAL; |
Dave Airlie | 6795c98 | 2005-07-10 18:20:09 +1000 | [diff] [blame] | 843 | } |
| 844 | dev_priv->mmio = drm_core_findmap(dev, init->mmio_offset); |
| 845 | if (!dev_priv->mmio) { |
| 846 | DRM_ERROR("failed to find mmio region!\n"); |
Eric Anholt | 20caafa | 2007-08-25 19:22:43 +1000 | [diff] [blame] | 847 | return -EINVAL; |
Dave Airlie | 6795c98 | 2005-07-10 18:20:09 +1000 | [diff] [blame] | 848 | } |
| 849 | dev_priv->warp = drm_core_findmap(dev, init->warp_offset); |
| 850 | if (!dev_priv->warp) { |
| 851 | DRM_ERROR("failed to find warp microcode region!\n"); |
Eric Anholt | 20caafa | 2007-08-25 19:22:43 +1000 | [diff] [blame] | 852 | return -EINVAL; |
Dave Airlie | 6795c98 | 2005-07-10 18:20:09 +1000 | [diff] [blame] | 853 | } |
| 854 | dev_priv->primary = drm_core_findmap(dev, init->primary_offset); |
| 855 | if (!dev_priv->primary) { |
| 856 | DRM_ERROR("failed to find primary dma region!\n"); |
Eric Anholt | 20caafa | 2007-08-25 19:22:43 +1000 | [diff] [blame] | 857 | return -EINVAL; |
Dave Airlie | 6795c98 | 2005-07-10 18:20:09 +1000 | [diff] [blame] | 858 | } |
Dave Airlie | d1f2b55 | 2005-08-05 22:11:22 +1000 | [diff] [blame] | 859 | dev->agp_buffer_token = init->buffers_offset; |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 860 | dev->agp_buffer_map = |
| 861 | drm_core_findmap(dev, init->buffers_offset); |
Dave Airlie | 6795c98 | 2005-07-10 18:20:09 +1000 | [diff] [blame] | 862 | if (!dev->agp_buffer_map) { |
| 863 | DRM_ERROR("failed to find dma buffer region!\n"); |
Eric Anholt | 20caafa | 2007-08-25 19:22:43 +1000 | [diff] [blame] | 864 | return -EINVAL; |
Dave Airlie | 6795c98 | 2005-07-10 18:20:09 +1000 | [diff] [blame] | 865 | } |
| 866 | |
| 867 | drm_core_ioremap(dev_priv->warp, dev); |
| 868 | drm_core_ioremap(dev_priv->primary, dev); |
| 869 | drm_core_ioremap(dev->agp_buffer_map, dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 870 | } |
| 871 | |
| 872 | dev_priv->sarea_priv = |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 873 | (drm_mga_sarea_t *) ((u8 *) dev_priv->sarea->handle + |
| 874 | init->sarea_priv_offset); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 875 | |
Dave Airlie | 6795c98 | 2005-07-10 18:20:09 +1000 | [diff] [blame] | 876 | if (!dev_priv->warp->handle || |
| 877 | !dev_priv->primary->handle || |
| 878 | ((dev_priv->dma_access != 0) && |
| 879 | ((dev->agp_buffer_map == NULL) || |
| 880 | (dev->agp_buffer_map->handle == NULL)))) { |
| 881 | DRM_ERROR("failed to ioremap agp regions!\n"); |
Eric Anholt | 20caafa | 2007-08-25 19:22:43 +1000 | [diff] [blame] | 882 | return -ENOMEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 883 | } |
| 884 | |
Dave Airlie | 6795c98 | 2005-07-10 18:20:09 +1000 | [diff] [blame] | 885 | ret = mga_warp_install_microcode(dev_priv); |
| 886 | if (ret < 0) { |
Dave Airlie | 7ccf800 | 2005-11-11 23:11:34 +1100 | [diff] [blame] | 887 | DRM_ERROR("failed to install WARP ucode!: %d\n", ret); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 888 | return ret; |
| 889 | } |
| 890 | |
Dave Airlie | 6795c98 | 2005-07-10 18:20:09 +1000 | [diff] [blame] | 891 | ret = mga_warp_init(dev_priv); |
| 892 | if (ret < 0) { |
Dave Airlie | 7ccf800 | 2005-11-11 23:11:34 +1100 | [diff] [blame] | 893 | DRM_ERROR("failed to init WARP engine!: %d\n", ret); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 894 | return ret; |
| 895 | } |
| 896 | |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 897 | dev_priv->prim.status = (u32 *) dev_priv->status->handle; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 898 | |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 899 | mga_do_wait_for_idle(dev_priv); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 900 | |
| 901 | /* Init the primary DMA registers. |
| 902 | */ |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 903 | MGA_WRITE(MGA_PRIMADDRESS, dev_priv->primary->offset | MGA_DMA_GENERAL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 904 | #if 0 |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 905 | MGA_WRITE(MGA_PRIMPTR, virt_to_bus((void *)dev_priv->prim.status) | MGA_PRIMPTREN0 | /* Soft trap, SECEND, SETUPEND */ |
| 906 | MGA_PRIMPTREN1); /* DWGSYNC */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 907 | #endif |
| 908 | |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 909 | dev_priv->prim.start = (u8 *) dev_priv->primary->handle; |
| 910 | dev_priv->prim.end = ((u8 *) dev_priv->primary->handle |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 911 | + dev_priv->primary->size); |
| 912 | dev_priv->prim.size = dev_priv->primary->size; |
| 913 | |
| 914 | dev_priv->prim.tail = 0; |
| 915 | dev_priv->prim.space = dev_priv->prim.size; |
| 916 | dev_priv->prim.wrapped = 0; |
| 917 | |
| 918 | dev_priv->prim.last_flush = 0; |
| 919 | dev_priv->prim.last_wrap = 0; |
| 920 | |
| 921 | dev_priv->prim.high_mark = 256 * DMA_BLOCK_SIZE; |
| 922 | |
| 923 | dev_priv->prim.status[0] = dev_priv->primary->offset; |
| 924 | dev_priv->prim.status[1] = 0; |
| 925 | |
| 926 | dev_priv->sarea_priv->last_wrap = 0; |
| 927 | dev_priv->sarea_priv->last_frame.head = 0; |
| 928 | dev_priv->sarea_priv->last_frame.wrap = 0; |
| 929 | |
Dave Airlie | 6795c98 | 2005-07-10 18:20:09 +1000 | [diff] [blame] | 930 | if (mga_freelist_init(dev, dev_priv) < 0) { |
| 931 | DRM_ERROR("could not initialize freelist\n"); |
Eric Anholt | 20caafa | 2007-08-25 19:22:43 +1000 | [diff] [blame] | 932 | return -ENOMEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 933 | } |
| 934 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 935 | return 0; |
| 936 | } |
| 937 | |
Dave Airlie | eddca55 | 2007-07-11 16:09:54 +1000 | [diff] [blame] | 938 | 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] | 939 | { |
Dave Airlie | 6795c98 | 2005-07-10 18:20:09 +1000 | [diff] [blame] | 940 | int err = 0; |
| 941 | DRM_DEBUG("\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 942 | |
| 943 | /* Make sure interrupts are disabled here because the uninstall ioctl |
| 944 | * may not have been called from userspace and after dev_private |
| 945 | * is freed, it's too late. |
| 946 | */ |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 947 | if (dev->irq_enabled) |
| 948 | drm_irq_uninstall(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 949 | |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 950 | if (dev->dev_private) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 951 | drm_mga_private_t *dev_priv = dev->dev_private; |
| 952 | |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 953 | if ((dev_priv->warp != NULL) |
Dave Airlie | 11909d6 | 2005-10-19 21:23:51 -0700 | [diff] [blame] | 954 | && (dev_priv->warp->type != _DRM_CONSISTENT)) |
Dave Airlie | 6795c98 | 2005-07-10 18:20:09 +1000 | [diff] [blame] | 955 | drm_core_ioremapfree(dev_priv->warp, dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 956 | |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 957 | if ((dev_priv->primary != NULL) |
Dave Airlie | 6795c98 | 2005-07-10 18:20:09 +1000 | [diff] [blame] | 958 | && (dev_priv->primary->type != _DRM_CONSISTENT)) |
| 959 | drm_core_ioremapfree(dev_priv->primary, dev); |
| 960 | |
| 961 | if (dev->agp_buffer_map != NULL) |
| 962 | drm_core_ioremapfree(dev->agp_buffer_map, dev); |
| 963 | |
| 964 | if (dev_priv->used_new_dma_init) { |
Dave Airlie | 908f9c4 | 2005-09-05 21:51:30 +1000 | [diff] [blame] | 965 | #if __OS_HAS_AGP |
Dave Airlie | 7ccf800 | 2005-11-11 23:11:34 +1100 | [diff] [blame] | 966 | if (dev_priv->agp_handle != 0) { |
Dave Airlie | eddca55 | 2007-07-11 16:09:54 +1000 | [diff] [blame] | 967 | struct drm_agp_binding unbind_req; |
| 968 | struct drm_agp_buffer free_req; |
Dave Airlie | 6795c98 | 2005-07-10 18:20:09 +1000 | [diff] [blame] | 969 | |
Dave Airlie | 7ccf800 | 2005-11-11 23:11:34 +1100 | [diff] [blame] | 970 | unbind_req.handle = dev_priv->agp_handle; |
| 971 | drm_agp_unbind(dev, &unbind_req); |
| 972 | |
| 973 | free_req.handle = dev_priv->agp_handle; |
| 974 | drm_agp_free(dev, &free_req); |
Dave Airlie | bc5f452 | 2007-11-05 12:50:58 +1000 | [diff] [blame] | 975 | |
Dave Airlie | 7ccf800 | 2005-11-11 23:11:34 +1100 | [diff] [blame] | 976 | dev_priv->agp_textures = NULL; |
| 977 | dev_priv->agp_size = 0; |
| 978 | dev_priv->agp_handle = 0; |
Dave Airlie | 6795c98 | 2005-07-10 18:20:09 +1000 | [diff] [blame] | 979 | } |
| 980 | |
| 981 | if ((dev->agp != NULL) && dev->agp->acquired) { |
| 982 | err = drm_agp_release(dev); |
| 983 | } |
Dave Airlie | 908f9c4 | 2005-09-05 21:51:30 +1000 | [diff] [blame] | 984 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 985 | } |
| 986 | |
Dave Airlie | 6795c98 | 2005-07-10 18:20:09 +1000 | [diff] [blame] | 987 | dev_priv->warp = NULL; |
| 988 | dev_priv->primary = NULL; |
Dave Airlie | 6795c98 | 2005-07-10 18:20:09 +1000 | [diff] [blame] | 989 | dev_priv->sarea = NULL; |
| 990 | dev_priv->sarea_priv = NULL; |
| 991 | dev->agp_buffer_map = NULL; |
| 992 | |
Dave Airlie | 7ccf800 | 2005-11-11 23:11:34 +1100 | [diff] [blame] | 993 | if (full_cleanup) { |
| 994 | dev_priv->mmio = NULL; |
| 995 | dev_priv->status = NULL; |
| 996 | dev_priv->used_new_dma_init = 0; |
| 997 | } |
| 998 | |
Dave Airlie | 6795c98 | 2005-07-10 18:20:09 +1000 | [diff] [blame] | 999 | memset(&dev_priv->prim, 0, sizeof(dev_priv->prim)); |
| 1000 | dev_priv->warp_pipe = 0; |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 1001 | memset(dev_priv->warp_pipe_phys, 0, |
| 1002 | sizeof(dev_priv->warp_pipe_phys)); |
Dave Airlie | 6795c98 | 2005-07-10 18:20:09 +1000 | [diff] [blame] | 1003 | |
| 1004 | if (dev_priv->head != NULL) { |
| 1005 | mga_freelist_cleanup(dev); |
| 1006 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1007 | } |
| 1008 | |
Jesper Juhl | a96ca10 | 2007-12-17 09:47:17 +1000 | [diff] [blame] | 1009 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1010 | } |
| 1011 | |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 1012 | int mga_dma_init(struct drm_device *dev, void *data, |
| 1013 | struct drm_file *file_priv) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1014 | { |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 1015 | drm_mga_init_t *init = data; |
Dave Airlie | 6795c98 | 2005-07-10 18:20:09 +1000 | [diff] [blame] | 1016 | int err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1017 | |
Eric Anholt | 6c340ea | 2007-08-25 20:23:09 +1000 | [diff] [blame] | 1018 | LOCK_TEST_WITH_RETURN(dev, file_priv); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1019 | |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 1020 | switch (init->func) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1021 | case MGA_INIT_DMA: |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 1022 | err = mga_do_init_dma(dev, init); |
Dave Airlie | 6795c98 | 2005-07-10 18:20:09 +1000 | [diff] [blame] | 1023 | if (err) { |
Dave Airlie | 7ccf800 | 2005-11-11 23:11:34 +1100 | [diff] [blame] | 1024 | (void)mga_do_cleanup_dma(dev, FULL_CLEANUP); |
Dave Airlie | 6795c98 | 2005-07-10 18:20:09 +1000 | [diff] [blame] | 1025 | } |
| 1026 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1027 | case MGA_CLEANUP_DMA: |
Dave Airlie | 7ccf800 | 2005-11-11 23:11:34 +1100 | [diff] [blame] | 1028 | return mga_do_cleanup_dma(dev, FULL_CLEANUP); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1029 | } |
| 1030 | |
Eric Anholt | 20caafa | 2007-08-25 19:22:43 +1000 | [diff] [blame] | 1031 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1032 | } |
| 1033 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1034 | /* ================================================================ |
| 1035 | * Primary DMA stream management |
| 1036 | */ |
| 1037 | |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 1038 | int mga_dma_flush(struct drm_device *dev, void *data, |
| 1039 | struct drm_file *file_priv) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1040 | { |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 1041 | 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] | 1042 | struct drm_lock *lock = data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1043 | |
Eric Anholt | 6c340ea | 2007-08-25 20:23:09 +1000 | [diff] [blame] | 1044 | LOCK_TEST_WITH_RETURN(dev, file_priv); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1045 | |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 1046 | DRM_DEBUG("%s%s%s\n", |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 1047 | (lock->flags & _DRM_LOCK_FLUSH) ? "flush, " : "", |
| 1048 | (lock->flags & _DRM_LOCK_FLUSH_ALL) ? "flush all, " : "", |
| 1049 | (lock->flags & _DRM_LOCK_QUIESCENT) ? "idle, " : ""); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1050 | |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 1051 | WRAP_WAIT_WITH_RETURN(dev_priv); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1052 | |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 1053 | if (lock->flags & (_DRM_LOCK_FLUSH | _DRM_LOCK_FLUSH_ALL)) { |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 1054 | mga_do_dma_flush(dev_priv); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1055 | } |
| 1056 | |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 1057 | if (lock->flags & _DRM_LOCK_QUIESCENT) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1058 | #if MGA_DMA_DEBUG |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 1059 | int ret = mga_do_wait_for_idle(dev_priv); |
| 1060 | if (ret < 0) |
Márton Németh | 3e684ea | 2008-01-24 15:58:57 +1000 | [diff] [blame] | 1061 | DRM_INFO("-EBUSY\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1062 | return ret; |
| 1063 | #else |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 1064 | return mga_do_wait_for_idle(dev_priv); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1065 | #endif |
| 1066 | } else { |
| 1067 | return 0; |
| 1068 | } |
| 1069 | } |
| 1070 | |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 1071 | int mga_dma_reset(struct drm_device *dev, void *data, |
| 1072 | struct drm_file *file_priv) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1073 | { |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 1074 | 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] | 1075 | |
Eric Anholt | 6c340ea | 2007-08-25 20:23:09 +1000 | [diff] [blame] | 1076 | LOCK_TEST_WITH_RETURN(dev, file_priv); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1077 | |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 1078 | return mga_do_dma_reset(dev_priv); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1079 | } |
| 1080 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1081 | /* ================================================================ |
| 1082 | * DMA buffer management |
| 1083 | */ |
| 1084 | |
Eric Anholt | 6c340ea | 2007-08-25 20:23:09 +1000 | [diff] [blame] | 1085 | static int mga_dma_get_buffers(struct drm_device * dev, |
| 1086 | struct drm_file *file_priv, struct drm_dma * d) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1087 | { |
Dave Airlie | 056219e | 2007-07-11 16:17:42 +1000 | [diff] [blame] | 1088 | struct drm_buf *buf; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1089 | int i; |
| 1090 | |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 1091 | for (i = d->granted_count; i < d->request_count; i++) { |
| 1092 | buf = mga_freelist_get(dev); |
| 1093 | if (!buf) |
Eric Anholt | 20caafa | 2007-08-25 19:22:43 +1000 | [diff] [blame] | 1094 | return -EAGAIN; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1095 | |
Eric Anholt | 6c340ea | 2007-08-25 20:23:09 +1000 | [diff] [blame] | 1096 | buf->file_priv = file_priv; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1097 | |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 1098 | if (DRM_COPY_TO_USER(&d->request_indices[i], |
| 1099 | &buf->idx, sizeof(buf->idx))) |
Eric Anholt | 20caafa | 2007-08-25 19:22:43 +1000 | [diff] [blame] | 1100 | return -EFAULT; |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 1101 | if (DRM_COPY_TO_USER(&d->request_sizes[i], |
| 1102 | &buf->total, sizeof(buf->total))) |
Eric Anholt | 20caafa | 2007-08-25 19:22:43 +1000 | [diff] [blame] | 1103 | return -EFAULT; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1104 | |
| 1105 | d->granted_count++; |
| 1106 | } |
| 1107 | return 0; |
| 1108 | } |
| 1109 | |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 1110 | int mga_dma_buffers(struct drm_device *dev, void *data, |
| 1111 | struct drm_file *file_priv) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1112 | { |
Dave Airlie | cdd55a2 | 2007-07-11 16:32:08 +1000 | [diff] [blame] | 1113 | struct drm_device_dma *dma = dev->dma; |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 1114 | 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] | 1115 | struct drm_dma *d = data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1116 | int ret = 0; |
| 1117 | |
Eric Anholt | 6c340ea | 2007-08-25 20:23:09 +1000 | [diff] [blame] | 1118 | LOCK_TEST_WITH_RETURN(dev, file_priv); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1119 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1120 | /* Please don't send us buffers. |
| 1121 | */ |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 1122 | if (d->send_count != 0) { |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 1123 | DRM_ERROR("Process %d trying to send %d buffers via drmDMA\n", |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 1124 | DRM_CURRENTPID, d->send_count); |
Eric Anholt | 20caafa | 2007-08-25 19:22:43 +1000 | [diff] [blame] | 1125 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1126 | } |
| 1127 | |
| 1128 | /* We'll send you buffers. |
| 1129 | */ |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 1130 | if (d->request_count < 0 || d->request_count > dma->buf_count) { |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 1131 | 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] | 1132 | DRM_CURRENTPID, d->request_count, dma->buf_count); |
Eric Anholt | 20caafa | 2007-08-25 19:22:43 +1000 | [diff] [blame] | 1133 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1134 | } |
| 1135 | |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 1136 | WRAP_TEST_WITH_RETURN(dev_priv); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1137 | |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 1138 | d->granted_count = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1139 | |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 1140 | if (d->request_count) { |
| 1141 | ret = mga_dma_get_buffers(dev, file_priv, d); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1142 | } |
| 1143 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1144 | return ret; |
| 1145 | } |
| 1146 | |
Dave Airlie | 6795c98 | 2005-07-10 18:20:09 +1000 | [diff] [blame] | 1147 | /** |
| 1148 | * Called just before the module is unloaded. |
| 1149 | */ |
Dave Airlie | eddca55 | 2007-07-11 16:09:54 +1000 | [diff] [blame] | 1150 | int mga_driver_unload(struct drm_device * dev) |
Dave Airlie | 6795c98 | 2005-07-10 18:20:09 +1000 | [diff] [blame] | 1151 | { |
| 1152 | drm_free(dev->dev_private, sizeof(drm_mga_private_t), DRM_MEM_DRIVER); |
| 1153 | dev->dev_private = NULL; |
| 1154 | |
| 1155 | return 0; |
| 1156 | } |
| 1157 | |
| 1158 | /** |
| 1159 | * Called when the last opener of the device is closed. |
| 1160 | */ |
Dave Airlie | eddca55 | 2007-07-11 16:09:54 +1000 | [diff] [blame] | 1161 | void mga_driver_lastclose(struct drm_device * dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1162 | { |
Dave Airlie | 7ccf800 | 2005-11-11 23:11:34 +1100 | [diff] [blame] | 1163 | mga_do_cleanup_dma(dev, FULL_CLEANUP); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1164 | } |
| 1165 | |
Dave Airlie | eddca55 | 2007-07-11 16:09:54 +1000 | [diff] [blame] | 1166 | int mga_driver_dma_quiescent(struct drm_device * dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1167 | { |
| 1168 | drm_mga_private_t *dev_priv = dev->dev_private; |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 1169 | return mga_do_wait_for_idle(dev_priv); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1170 | } |