blob: 507aa3df0168961a90f751b05caa72164d8474c2 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/* 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 Airlie6795c982005-07-10 18:20:09 +100026 */
27
28/**
29 * \file mga_dma.c
30 * DMA support for MGA G200 / G400.
Dave Airlieb5e89ed2005-09-25 14:28:13 +100031 *
Dave Airlie6795c982005-07-10 18:20:09 +100032 * \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 Torvalds1da177e2005-04-16 15:20:36 -070036 */
37
38#include "drmP.h"
39#include "drm.h"
Dave Airlie6795c982005-07-10 18:20:09 +100040#include "drm_sarea.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070041#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 Airlie7ccf8002005-11-11 23:11:34 +110047#define MINIMAL_CLEANUP 0
48#define FULL_CLEANUP 1
Dave Airlieeddca552007-07-11 16:09:54 +100049static int mga_do_cleanup_dma(struct drm_device *dev, int full_cleanup);
Linus Torvalds1da177e2005-04-16 15:20:36 -070050
51/* ================================================================
52 * Engine control
53 */
54
Nicolas Kaiserf2b2cb72010-07-12 01:46:57 +020055int mga_do_wait_for_idle(drm_mga_private_t *dev_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -070056{
57 u32 status = 0;
58 int i;
Dave Airlieb5e89ed2005-09-25 14:28:13 +100059 DRM_DEBUG("\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -070060
Dave Airlieb5e89ed2005-09-25 14:28:13 +100061 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 Torvalds1da177e2005-04-16 15:20:36 -070065 return 0;
66 }
Dave Airlieb5e89ed2005-09-25 14:28:13 +100067 DRM_UDELAY(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -070068 }
69
70#if MGA_DMA_DEBUG
Dave Airlieb5e89ed2005-09-25 14:28:13 +100071 DRM_ERROR("failed!\n");
72 DRM_INFO(" status=0x%08x\n", status);
Linus Torvalds1da177e2005-04-16 15:20:36 -070073#endif
Eric Anholt20caafa2007-08-25 19:22:43 +100074 return -EBUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -070075}
76
Nicolas Kaiserf2b2cb72010-07-12 01:46:57 +020077static int mga_do_dma_reset(drm_mga_private_t *dev_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -070078{
79 drm_mga_sarea_t *sarea_priv = dev_priv->sarea_priv;
80 drm_mga_primary_buffer_t *primary = &dev_priv->prim;
81
Dave Airlieb5e89ed2005-09-25 14:28:13 +100082 DRM_DEBUG("\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -070083
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
Nicolas Kaiserf2b2cb72010-07-12 01:46:57 +0200105void mga_do_dma_flush(drm_mga_private_t *dev_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106{
107 drm_mga_primary_buffer_t *primary = &dev_priv->prim;
108 u32 head, tail;
109 u32 status = 0;
110 int i;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000111 DMA_LOCALS;
112 DRM_DEBUG("\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000114 /* 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 Torvalds1da177e2005-04-16 15:20:36 -0700120 }
121
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000122 if (primary->tail == primary->last_flush) {
123 DRM_DEBUG(" bailing out...\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124 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 Airlieb5e89ed2005-09-25 14:28:13 +1000133 BEGIN_DMA(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000135 DMA_BLOCK(MGA_DMAPAD, 0x00000000,
136 MGA_DMAPAD, 0x00000000,
137 MGA_DMAPAD, 0x00000000, MGA_DMAPAD, 0x00000000);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138
139 ADVANCE_DMA();
140
141 primary->last_flush = primary->tail;
142
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000143 head = MGA_READ(MGA_PRIMADDRESS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144
Nicolas Kaiserf2b2cb72010-07-12 01:46:57 +0200145 if (head <= tail)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146 primary->space = primary->size - primary->tail;
Nicolas Kaiserf2b2cb72010-07-12 01:46:57 +0200147 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 primary->space = head - tail;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149
Benjamin Herrenschmidt41c2e752009-02-02 16:55:47 +1100150 DRM_DEBUG(" head = 0x%06lx\n", (unsigned long)(head - dev_priv->primary->offset));
151 DRM_DEBUG(" tail = 0x%06lx\n", (unsigned long)(tail - dev_priv->primary->offset));
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000152 DRM_DEBUG(" space = 0x%06x\n", primary->space);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153
154 mga_flush_write_combine();
Dave Airlie6795c982005-07-10 18:20:09 +1000155 MGA_WRITE(MGA_PRIMEND, tail | dev_priv->dma_access);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000157 DRM_DEBUG("done.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158}
159
Nicolas Kaiserf2b2cb72010-07-12 01:46:57 +0200160void mga_do_dma_wrap_start(drm_mga_private_t *dev_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161{
162 drm_mga_primary_buffer_t *primary = &dev_priv->prim;
163 u32 head, tail;
164 DMA_LOCALS;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000165 DRM_DEBUG("\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166
167 BEGIN_DMA_WRAP();
168
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000169 DMA_BLOCK(MGA_DMAPAD, 0x00000000,
170 MGA_DMAPAD, 0x00000000,
171 MGA_DMAPAD, 0x00000000, MGA_DMAPAD, 0x00000000);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172
173 ADVANCE_DMA();
174
175 tail = primary->tail + dev_priv->primary->offset;
176
177 primary->tail = 0;
178 primary->last_flush = 0;
179 primary->last_wrap++;
180
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000181 head = MGA_READ(MGA_PRIMADDRESS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182
Nicolas Kaiserf2b2cb72010-07-12 01:46:57 +0200183 if (head == dev_priv->primary->offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 primary->space = primary->size;
Nicolas Kaiserf2b2cb72010-07-12 01:46:57 +0200185 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 primary->space = head - dev_priv->primary->offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187
Benjamin Herrenschmidt41c2e752009-02-02 16:55:47 +1100188 DRM_DEBUG(" head = 0x%06lx\n", (unsigned long)(head - dev_priv->primary->offset));
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000189 DRM_DEBUG(" tail = 0x%06x\n", primary->tail);
190 DRM_DEBUG(" wrap = %d\n", primary->last_wrap);
191 DRM_DEBUG(" space = 0x%06x\n", primary->space);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192
193 mga_flush_write_combine();
Dave Airlie6795c982005-07-10 18:20:09 +1000194 MGA_WRITE(MGA_PRIMEND, tail | dev_priv->dma_access);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000196 set_bit(0, &primary->wrapped);
197 DRM_DEBUG("done.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198}
199
Nicolas Kaiserf2b2cb72010-07-12 01:46:57 +0200200void mga_do_dma_wrap_end(drm_mga_private_t *dev_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201{
202 drm_mga_primary_buffer_t *primary = &dev_priv->prim;
203 drm_mga_sarea_t *sarea_priv = dev_priv->sarea_priv;
204 u32 head = dev_priv->primary->offset;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000205 DRM_DEBUG("\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206
207 sarea_priv->last_wrap++;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000208 DRM_DEBUG(" wrap = %d\n", sarea_priv->last_wrap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209
210 mga_flush_write_combine();
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000211 MGA_WRITE(MGA_PRIMADDRESS, head | MGA_DMA_GENERAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000213 clear_bit(0, &primary->wrapped);
214 DRM_DEBUG("done.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215}
216
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217/* ================================================================
218 * Freelist management
219 */
220
Nicolas Kaiserf2b2cb72010-07-12 01:46:57 +0200221#define MGA_BUFFER_USED (~0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222#define MGA_BUFFER_FREE 0
223
224#if MGA_FREELIST_DEBUG
Nicolas Kaiserf2b2cb72010-07-12 01:46:57 +0200225static void mga_freelist_print(struct drm_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226{
227 drm_mga_private_t *dev_priv = dev->dev_private;
228 drm_mga_freelist_t *entry;
229
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000230 DRM_INFO("\n");
231 DRM_INFO("current dispatch: last=0x%x done=0x%x\n",
232 dev_priv->sarea_priv->last_dispatch,
233 (unsigned int)(MGA_READ(MGA_PRIMADDRESS) -
234 dev_priv->primary->offset));
235 DRM_INFO("current freelist:\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000237 for (entry = dev_priv->head->next; entry; entry = entry->next) {
238 DRM_INFO(" %p idx=%2d age=0x%x 0x%06lx\n",
239 entry, entry->buf->idx, entry->age.head,
Benjamin Herrenschmidt41c2e752009-02-02 16:55:47 +1100240 (unsigned long)(entry->age.head - dev_priv->primary->offset));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 }
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000242 DRM_INFO("\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243}
244#endif
245
Nicolas Kaiserf2b2cb72010-07-12 01:46:57 +0200246static int mga_freelist_init(struct drm_device *dev, drm_mga_private_t *dev_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247{
Dave Airliecdd55a22007-07-11 16:32:08 +1000248 struct drm_device_dma *dma = dev->dma;
Dave Airlie056219e2007-07-11 16:17:42 +1000249 struct drm_buf *buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 drm_mga_buf_priv_t *buf_priv;
251 drm_mga_freelist_t *entry;
252 int i;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000253 DRM_DEBUG("count=%d\n", dma->buf_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254
Eric Anholt9a298b22009-03-24 12:23:04 -0700255 dev_priv->head = kzalloc(sizeof(drm_mga_freelist_t), GFP_KERNEL);
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000256 if (dev_priv->head == NULL)
Eric Anholt20caafa2007-08-25 19:22:43 +1000257 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000259 SET_AGE(&dev_priv->head->age, MGA_BUFFER_USED, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000261 for (i = 0; i < dma->buf_count; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 buf = dma->buflist[i];
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000263 buf_priv = buf->dev_private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264
Eric Anholt9a298b22009-03-24 12:23:04 -0700265 entry = kzalloc(sizeof(drm_mga_freelist_t), GFP_KERNEL);
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000266 if (entry == NULL)
Eric Anholt20caafa2007-08-25 19:22:43 +1000267 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 entry->next = dev_priv->head->next;
270 entry->prev = dev_priv->head;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000271 SET_AGE(&entry->age, MGA_BUFFER_FREE, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 entry->buf = buf;
273
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000274 if (dev_priv->head->next != NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 dev_priv->head->next->prev = entry;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000276 if (entry->next == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 dev_priv->tail = entry;
278
279 buf_priv->list_entry = entry;
280 buf_priv->discard = 0;
281 buf_priv->dispatched = 0;
282
283 dev_priv->head->next = entry;
284 }
285
286 return 0;
287}
288
Nicolas Kaiserf2b2cb72010-07-12 01:46:57 +0200289static void mga_freelist_cleanup(struct drm_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290{
291 drm_mga_private_t *dev_priv = dev->dev_private;
292 drm_mga_freelist_t *entry;
293 drm_mga_freelist_t *next;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000294 DRM_DEBUG("\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295
296 entry = dev_priv->head;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000297 while (entry) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 next = entry->next;
Eric Anholt9a298b22009-03-24 12:23:04 -0700299 kfree(entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 entry = next;
301 }
302
303 dev_priv->head = dev_priv->tail = NULL;
304}
305
306#if 0
307/* FIXME: Still needed?
308 */
Nicolas Kaiserf2b2cb72010-07-12 01:46:57 +0200309static void mga_freelist_reset(struct drm_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310{
Dave Airliecdd55a22007-07-11 16:32:08 +1000311 struct drm_device_dma *dma = dev->dma;
Dave Airlie056219e2007-07-11 16:17:42 +1000312 struct drm_buf *buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 drm_mga_buf_priv_t *buf_priv;
314 int i;
315
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000316 for (i = 0; i < dma->buf_count; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 buf = dma->buflist[i];
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000318 buf_priv = buf->dev_private;
319 SET_AGE(&buf_priv->list_entry->age, MGA_BUFFER_FREE, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 }
321}
322#endif
323
Dave Airlie056219e2007-07-11 16:17:42 +1000324static struct drm_buf *mga_freelist_get(struct drm_device * dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325{
326 drm_mga_private_t *dev_priv = dev->dev_private;
327 drm_mga_freelist_t *next;
328 drm_mga_freelist_t *prev;
329 drm_mga_freelist_t *tail = dev_priv->tail;
330 u32 head, wrap;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000331 DRM_DEBUG("\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000333 head = MGA_READ(MGA_PRIMADDRESS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 wrap = dev_priv->sarea_priv->last_wrap;
335
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000336 DRM_DEBUG(" tail=0x%06lx %d\n",
337 tail->age.head ?
Benjamin Herrenschmidt41c2e752009-02-02 16:55:47 +1100338 (unsigned long)(tail->age.head - dev_priv->primary->offset) : 0,
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000339 tail->age.wrap);
340 DRM_DEBUG(" head=0x%06lx %d\n",
Benjamin Herrenschmidt41c2e752009-02-02 16:55:47 +1100341 (unsigned long)(head - dev_priv->primary->offset), wrap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000343 if (TEST_AGE(&tail->age, head, wrap)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 prev = dev_priv->tail->prev;
345 next = dev_priv->tail;
346 prev->next = NULL;
347 next->prev = next->next = NULL;
348 dev_priv->tail = prev;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000349 SET_AGE(&next->age, MGA_BUFFER_USED, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 return next->buf;
351 }
352
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000353 DRM_DEBUG("returning NULL!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 return NULL;
355}
356
Nicolas Kaiserf2b2cb72010-07-12 01:46:57 +0200357int mga_freelist_put(struct drm_device *dev, struct drm_buf *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358{
359 drm_mga_private_t *dev_priv = dev->dev_private;
360 drm_mga_buf_priv_t *buf_priv = buf->dev_private;
361 drm_mga_freelist_t *head, *entry, *prev;
362
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000363 DRM_DEBUG("age=0x%06lx wrap=%d\n",
Benjamin Herrenschmidt41c2e752009-02-02 16:55:47 +1100364 (unsigned long)(buf_priv->list_entry->age.head -
365 dev_priv->primary->offset),
366 buf_priv->list_entry->age.wrap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367
368 entry = buf_priv->list_entry;
369 head = dev_priv->head;
370
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000371 if (buf_priv->list_entry->age.head == MGA_BUFFER_USED) {
372 SET_AGE(&entry->age, MGA_BUFFER_FREE, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 prev = dev_priv->tail;
374 prev->next = entry;
375 entry->prev = prev;
376 entry->next = NULL;
377 } else {
378 prev = head->next;
379 head->next = entry;
380 prev->prev = entry;
381 entry->prev = head;
382 entry->next = prev;
383 }
384
385 return 0;
386}
387
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388/* ================================================================
389 * DMA initialization, cleanup
390 */
391
Nicolas Kaiserf2b2cb72010-07-12 01:46:57 +0200392int mga_driver_load(struct drm_device *dev, unsigned long flags)
Dave Airlie6795c982005-07-10 18:20:09 +1000393{
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000394 drm_mga_private_t *dev_priv;
Keith Packard52440212008-11-18 09:30:25 -0800395 int ret;
Dave Airlie6795c982005-07-10 18:20:09 +1000396
Eric Anholt9a298b22009-03-24 12:23:04 -0700397 dev_priv = kzalloc(sizeof(drm_mga_private_t), GFP_KERNEL);
Dave Airlie6795c982005-07-10 18:20:09 +1000398 if (!dev_priv)
Eric Anholt20caafa2007-08-25 19:22:43 +1000399 return -ENOMEM;
Dave Airlie6795c982005-07-10 18:20:09 +1000400
401 dev->dev_private = (void *)dev_priv;
Dave Airlie6795c982005-07-10 18:20:09 +1000402
403 dev_priv->usec_timeout = MGA_DEFAULT_USEC_TIMEOUT;
404 dev_priv->chipset = flags;
405
Dave Airlie466e69b2011-12-19 11:15:29 +0000406 pci_set_master(dev->pdev);
407
Jordan Crouse01d73a62010-05-27 13:40:24 -0600408 dev_priv->mmio_base = pci_resource_start(dev->pdev, 1);
409 dev_priv->mmio_size = pci_resource_len(dev->pdev, 1);
Dave Airlie22eae942005-11-10 22:16:34 +1100410
411 dev->counters += 3;
412 dev->types[6] = _DRM_STAT_IRQ;
413 dev->types[7] = _DRM_STAT_PRIMARY;
414 dev->types[8] = _DRM_STAT_SECONDARY;
415
Keith Packard52440212008-11-18 09:30:25 -0800416 ret = drm_vblank_init(dev, 1);
417
418 if (ret) {
419 (void) mga_driver_unload(dev);
420 return ret;
421 }
422
Dave Airlie6795c982005-07-10 18:20:09 +1000423 return 0;
424}
425
Dave Airlie908f9c42005-09-05 21:51:30 +1000426#if __OS_HAS_AGP
Dave Airlie6795c982005-07-10 18:20:09 +1000427/**
428 * Bootstrap the driver for AGP DMA.
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000429 *
Dave Airlie6795c982005-07-10 18:20:09 +1000430 * \todo
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300431 * Investigate whether there is any benefit to storing the WARP microcode in
Dave Airlie6795c982005-07-10 18:20:09 +1000432 * AGP memory. If not, the microcode may as well always be put in PCI
433 * memory.
434 *
435 * \todo
436 * This routine needs to set dma_bs->agp_mode to the mode actually configured
437 * in the hardware. Looking just at the Linux AGP driver code, I don't see
438 * an easy way to determine this.
439 *
440 * \sa mga_do_dma_bootstrap, mga_do_pci_dma_bootstrap
441 */
Nicolas Kaiserf2b2cb72010-07-12 01:46:57 +0200442static int mga_do_agp_dma_bootstrap(struct drm_device *dev,
443 drm_mga_dma_bootstrap_t *dma_bs)
Dave Airlie6795c982005-07-10 18:20:09 +1000444{
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000445 drm_mga_private_t *const dev_priv =
446 (drm_mga_private_t *) dev->dev_private;
Ben Hutchingsece2be72009-08-23 18:34:25 +0100447 unsigned int warp_size = MGA_WARP_UCODE_SIZE;
Dave Airlie6795c982005-07-10 18:20:09 +1000448 int err;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000449 unsigned offset;
Dave Airlie6795c982005-07-10 18:20:09 +1000450 const unsigned secondary_size = dma_bs->secondary_bin_count
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000451 * dma_bs->secondary_bin_size;
Dave Airlie6795c982005-07-10 18:20:09 +1000452 const unsigned agp_size = (dma_bs->agp_size << 20);
Dave Airlieeddca552007-07-11 16:09:54 +1000453 struct drm_buf_desc req;
454 struct drm_agp_mode mode;
455 struct drm_agp_info info;
456 struct drm_agp_buffer agp_req;
457 struct drm_agp_binding bind_req;
Dave Airlie6795c982005-07-10 18:20:09 +1000458
Dave Airlie6795c982005-07-10 18:20:09 +1000459 /* Acquire AGP. */
460 err = drm_agp_acquire(dev);
461 if (err) {
Dave Airlie7ccf8002005-11-11 23:11:34 +1100462 DRM_ERROR("Unable to acquire AGP: %d\n", err);
Dave Airlie6795c982005-07-10 18:20:09 +1000463 return err;
464 }
465
466 err = drm_agp_info(dev, &info);
467 if (err) {
Dave Airlie7ccf8002005-11-11 23:11:34 +1100468 DRM_ERROR("Unable to get AGP info: %d\n", err);
Dave Airlie6795c982005-07-10 18:20:09 +1000469 return err;
470 }
471
472 mode.mode = (info.mode & ~0x07) | dma_bs->agp_mode;
473 err = drm_agp_enable(dev, mode);
474 if (err) {
475 DRM_ERROR("Unable to enable AGP (mode = 0x%lx)\n", mode.mode);
476 return err;
477 }
478
Dave Airlie6795c982005-07-10 18:20:09 +1000479 /* In addition to the usual AGP mode configuration, the G200 AGP cards
480 * need to have the AGP mode "manually" set.
481 */
482
483 if (dev_priv->chipset == MGA_CARD_TYPE_G200) {
Nicolas Kaiserf2b2cb72010-07-12 01:46:57 +0200484 if (mode.mode & 0x02)
Dave Airlie6795c982005-07-10 18:20:09 +1000485 MGA_WRITE(MGA_AGP_PLL, MGA_AGP2XPLL_ENABLE);
Nicolas Kaiserf2b2cb72010-07-12 01:46:57 +0200486 else
Dave Airlie6795c982005-07-10 18:20:09 +1000487 MGA_WRITE(MGA_AGP_PLL, MGA_AGP2XPLL_DISABLE);
Dave Airlie6795c982005-07-10 18:20:09 +1000488 }
489
Dave Airlie6795c982005-07-10 18:20:09 +1000490 /* Allocate and bind AGP memory. */
Dave Airlie7ccf8002005-11-11 23:11:34 +1100491 agp_req.size = agp_size;
492 agp_req.type = 0;
493 err = drm_agp_alloc(dev, &agp_req);
494 if (err) {
495 dev_priv->agp_size = 0;
Dave Airlie6795c982005-07-10 18:20:09 +1000496 DRM_ERROR("Unable to allocate %uMB AGP memory\n",
497 dma_bs->agp_size);
Dave Airlie7ccf8002005-11-11 23:11:34 +1100498 return err;
Dave Airlie6795c982005-07-10 18:20:09 +1000499 }
Dave Airliebc5f4522007-11-05 12:50:58 +1000500
Dave Airlie7ccf8002005-11-11 23:11:34 +1100501 dev_priv->agp_size = agp_size;
502 dev_priv->agp_handle = agp_req.handle;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000503
Dave Airlie7ccf8002005-11-11 23:11:34 +1100504 bind_req.handle = agp_req.handle;
505 bind_req.offset = 0;
506 err = drm_agp_bind(dev, &bind_req);
Dave Airlie6795c982005-07-10 18:20:09 +1000507 if (err) {
Dave Airlie7ccf8002005-11-11 23:11:34 +1100508 DRM_ERROR("Unable to bind AGP memory: %d\n", err);
Dave Airlie6795c982005-07-10 18:20:09 +1000509 return err;
510 }
511
Dave Airlie11909d62005-10-19 21:23:51 -0700512 /* Make drm_addbufs happy by not trying to create a mapping for less
513 * than a page.
514 */
515 if (warp_size < PAGE_SIZE)
516 warp_size = PAGE_SIZE;
517
Dave Airlie6795c982005-07-10 18:20:09 +1000518 offset = 0;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000519 err = drm_addmap(dev, offset, warp_size,
520 _DRM_AGP, _DRM_READ_ONLY, &dev_priv->warp);
Dave Airlie6795c982005-07-10 18:20:09 +1000521 if (err) {
Dave Airlie7ccf8002005-11-11 23:11:34 +1100522 DRM_ERROR("Unable to map WARP microcode: %d\n", err);
Dave Airlie6795c982005-07-10 18:20:09 +1000523 return err;
524 }
525
526 offset += warp_size;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000527 err = drm_addmap(dev, offset, dma_bs->primary_size,
528 _DRM_AGP, _DRM_READ_ONLY, &dev_priv->primary);
Dave Airlie6795c982005-07-10 18:20:09 +1000529 if (err) {
Dave Airlie7ccf8002005-11-11 23:11:34 +1100530 DRM_ERROR("Unable to map primary DMA region: %d\n", err);
Dave Airlie6795c982005-07-10 18:20:09 +1000531 return err;
532 }
533
534 offset += dma_bs->primary_size;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000535 err = drm_addmap(dev, offset, secondary_size,
536 _DRM_AGP, 0, &dev->agp_buffer_map);
Dave Airlie6795c982005-07-10 18:20:09 +1000537 if (err) {
Dave Airlie7ccf8002005-11-11 23:11:34 +1100538 DRM_ERROR("Unable to map secondary DMA region: %d\n", err);
Dave Airlie6795c982005-07-10 18:20:09 +1000539 return err;
540 }
541
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000542 (void)memset(&req, 0, sizeof(req));
Dave Airlie6795c982005-07-10 18:20:09 +1000543 req.count = dma_bs->secondary_bin_count;
544 req.size = dma_bs->secondary_bin_size;
545 req.flags = _DRM_AGP_BUFFER;
546 req.agp_start = offset;
547
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000548 err = drm_addbufs_agp(dev, &req);
Dave Airlie6795c982005-07-10 18:20:09 +1000549 if (err) {
Dave Airlie7ccf8002005-11-11 23:11:34 +1100550 DRM_ERROR("Unable to add secondary DMA buffers: %d\n", err);
Dave Airlie6795c982005-07-10 18:20:09 +1000551 return err;
552 }
553
Dave Airlie7ccf8002005-11-11 23:11:34 +1100554 {
Dave Airlie55910512007-07-11 16:53:40 +1000555 struct drm_map_list *_entry;
Dave Airlie7ccf8002005-11-11 23:11:34 +1100556 unsigned long agp_token = 0;
Dave Airliebc5f4522007-11-05 12:50:58 +1000557
Dave Airliebd1b3312007-05-26 05:01:51 +1000558 list_for_each_entry(_entry, &dev->maplist, head) {
Dave Airlie7ccf8002005-11-11 23:11:34 +1100559 if (_entry->map == dev->agp_buffer_map)
560 agp_token = _entry->user_token;
561 }
562 if (!agp_token)
563 return -EFAULT;
564
565 dev->agp_buffer_token = agp_token;
566 }
567
Dave Airlie6795c982005-07-10 18:20:09 +1000568 offset += secondary_size;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000569 err = drm_addmap(dev, offset, agp_size - offset,
570 _DRM_AGP, 0, &dev_priv->agp_textures);
Dave Airlie6795c982005-07-10 18:20:09 +1000571 if (err) {
Dave Airlie7ccf8002005-11-11 23:11:34 +1100572 DRM_ERROR("Unable to map AGP texture region %d\n", err);
Dave Airlie6795c982005-07-10 18:20:09 +1000573 return err;
574 }
575
576 drm_core_ioremap(dev_priv->warp, dev);
577 drm_core_ioremap(dev_priv->primary, dev);
578 drm_core_ioremap(dev->agp_buffer_map, dev);
579
580 if (!dev_priv->warp->handle ||
581 !dev_priv->primary->handle || !dev->agp_buffer_map->handle) {
582 DRM_ERROR("failed to ioremap agp regions! (%p, %p, %p)\n",
583 dev_priv->warp->handle, dev_priv->primary->handle,
584 dev->agp_buffer_map->handle);
Eric Anholt20caafa2007-08-25 19:22:43 +1000585 return -ENOMEM;
Dave Airlie6795c982005-07-10 18:20:09 +1000586 }
587
588 dev_priv->dma_access = MGA_PAGPXFER;
589 dev_priv->wagp_enable = MGA_WAGP_ENABLE;
590
591 DRM_INFO("Initialized card for AGP DMA.\n");
592 return 0;
593}
Dave Airlie908f9c42005-09-05 21:51:30 +1000594#else
Nicolas Kaiserf2b2cb72010-07-12 01:46:57 +0200595static int mga_do_agp_dma_bootstrap(struct drm_device *dev,
596 drm_mga_dma_bootstrap_t *dma_bs)
Dave Airlie908f9c42005-09-05 21:51:30 +1000597{
598 return -EINVAL;
599}
600#endif
Dave Airlie6795c982005-07-10 18:20:09 +1000601
602/**
603 * Bootstrap the driver for PCI DMA.
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000604 *
Dave Airlie6795c982005-07-10 18:20:09 +1000605 * \todo
606 * The algorithm for decreasing the size of the primary DMA buffer could be
607 * better. The size should be rounded up to the nearest page size, then
608 * decrease the request size by a single page each pass through the loop.
609 *
610 * \todo
611 * Determine whether the maximum address passed to drm_pci_alloc is correct.
612 * The same goes for drm_addbufs_pci.
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000613 *
Dave Airlie6795c982005-07-10 18:20:09 +1000614 * \sa mga_do_dma_bootstrap, mga_do_agp_dma_bootstrap
615 */
Nicolas Kaiserf2b2cb72010-07-12 01:46:57 +0200616static int mga_do_pci_dma_bootstrap(struct drm_device *dev,
617 drm_mga_dma_bootstrap_t *dma_bs)
Dave Airlie6795c982005-07-10 18:20:09 +1000618{
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000619 drm_mga_private_t *const dev_priv =
620 (drm_mga_private_t *) dev->dev_private;
Ben Hutchingsece2be72009-08-23 18:34:25 +0100621 unsigned int warp_size = MGA_WARP_UCODE_SIZE;
Dave Airlie6795c982005-07-10 18:20:09 +1000622 unsigned int primary_size;
623 unsigned int bin_count;
624 int err;
Dave Airlieeddca552007-07-11 16:09:54 +1000625 struct drm_buf_desc req;
Dave Airlie6795c982005-07-10 18:20:09 +1000626
Dave Airlie6795c982005-07-10 18:20:09 +1000627 if (dev->dma == NULL) {
628 DRM_ERROR("dev->dma is NULL\n");
Eric Anholt20caafa2007-08-25 19:22:43 +1000629 return -EFAULT;
Dave Airlie6795c982005-07-10 18:20:09 +1000630 }
631
Dave Airlie11909d62005-10-19 21:23:51 -0700632 /* Make drm_addbufs happy by not trying to create a mapping for less
633 * than a page.
634 */
635 if (warp_size < PAGE_SIZE)
636 warp_size = PAGE_SIZE;
637
Dave Airlie6795c982005-07-10 18:20:09 +1000638 /* The proper alignment is 0x100 for this mapping */
639 err = drm_addmap(dev, 0, warp_size, _DRM_CONSISTENT,
640 _DRM_READ_ONLY, &dev_priv->warp);
641 if (err != 0) {
Dave Airlie7ccf8002005-11-11 23:11:34 +1100642 DRM_ERROR("Unable to create mapping for WARP microcode: %d\n",
643 err);
Dave Airlie6795c982005-07-10 18:20:09 +1000644 return err;
645 }
646
647 /* Other than the bottom two bits being used to encode other
648 * information, there don't appear to be any restrictions on the
649 * alignment of the primary or secondary DMA buffers.
650 */
651
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000652 for (primary_size = dma_bs->primary_size; primary_size != 0;
653 primary_size >>= 1) {
Dave Airlie6795c982005-07-10 18:20:09 +1000654 /* The proper alignment for this mapping is 0x04 */
655 err = drm_addmap(dev, 0, primary_size, _DRM_CONSISTENT,
656 _DRM_READ_ONLY, &dev_priv->primary);
657 if (!err)
658 break;
659 }
660
661 if (err != 0) {
Dave Airlie7ccf8002005-11-11 23:11:34 +1100662 DRM_ERROR("Unable to allocate primary DMA region: %d\n", err);
Eric Anholt20caafa2007-08-25 19:22:43 +1000663 return -ENOMEM;
Dave Airlie6795c982005-07-10 18:20:09 +1000664 }
665
666 if (dev_priv->primary->size != dma_bs->primary_size) {
667 DRM_INFO("Primary DMA buffer size reduced from %u to %u.\n",
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000668 dma_bs->primary_size,
669 (unsigned)dev_priv->primary->size);
Dave Airlie6795c982005-07-10 18:20:09 +1000670 dma_bs->primary_size = dev_priv->primary->size;
671 }
672
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000673 for (bin_count = dma_bs->secondary_bin_count; bin_count > 0;
674 bin_count--) {
675 (void)memset(&req, 0, sizeof(req));
Dave Airlie6795c982005-07-10 18:20:09 +1000676 req.count = bin_count;
677 req.size = dma_bs->secondary_bin_size;
678
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000679 err = drm_addbufs_pci(dev, &req);
Nicolas Kaiserf2b2cb72010-07-12 01:46:57 +0200680 if (!err)
Dave Airlie6795c982005-07-10 18:20:09 +1000681 break;
Dave Airlie6795c982005-07-10 18:20:09 +1000682 }
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000683
Dave Airlie6795c982005-07-10 18:20:09 +1000684 if (bin_count == 0) {
Dave Airlie7ccf8002005-11-11 23:11:34 +1100685 DRM_ERROR("Unable to add secondary DMA buffers: %d\n", err);
Dave Airlie6795c982005-07-10 18:20:09 +1000686 return err;
687 }
688
689 if (bin_count != dma_bs->secondary_bin_count) {
690 DRM_INFO("Secondary PCI DMA buffer bin count reduced from %u "
691 "to %u.\n", dma_bs->secondary_bin_count, bin_count);
692
693 dma_bs->secondary_bin_count = bin_count;
694 }
695
696 dev_priv->dma_access = 0;
697 dev_priv->wagp_enable = 0;
698
699 dma_bs->agp_mode = 0;
700
701 DRM_INFO("Initialized card for PCI DMA.\n");
702 return 0;
703}
704
Nicolas Kaiserf2b2cb72010-07-12 01:46:57 +0200705static int mga_do_dma_bootstrap(struct drm_device *dev,
706 drm_mga_dma_bootstrap_t *dma_bs)
Dave Airlie6795c982005-07-10 18:20:09 +1000707{
Dave Airlie8410ea32010-12-15 03:16:38 +1000708 const int is_agp = (dma_bs->agp_mode != 0) && drm_pci_device_is_agp(dev);
Dave Airlie6795c982005-07-10 18:20:09 +1000709 int err;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000710 drm_mga_private_t *const dev_priv =
711 (drm_mga_private_t *) dev->dev_private;
Dave Airlie6795c982005-07-10 18:20:09 +1000712
713 dev_priv->used_new_dma_init = 1;
714
715 /* The first steps are the same for both PCI and AGP based DMA. Map
716 * the cards MMIO registers and map a status page.
717 */
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000718 err = drm_addmap(dev, dev_priv->mmio_base, dev_priv->mmio_size,
719 _DRM_REGISTERS, _DRM_READ_ONLY, &dev_priv->mmio);
Dave Airlie6795c982005-07-10 18:20:09 +1000720 if (err) {
Dave Airlie7ccf8002005-11-11 23:11:34 +1100721 DRM_ERROR("Unable to map MMIO region: %d\n", err);
Dave Airlie6795c982005-07-10 18:20:09 +1000722 return err;
723 }
724
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000725 err = drm_addmap(dev, 0, SAREA_MAX, _DRM_SHM,
726 _DRM_READ_ONLY | _DRM_LOCKED | _DRM_KERNEL,
727 &dev_priv->status);
Dave Airlie6795c982005-07-10 18:20:09 +1000728 if (err) {
Dave Airlie7ccf8002005-11-11 23:11:34 +1100729 DRM_ERROR("Unable to map status region: %d\n", err);
Dave Airlie6795c982005-07-10 18:20:09 +1000730 return err;
731 }
732
Dave Airlie6795c982005-07-10 18:20:09 +1000733 /* The DMA initialization procedure is slightly different for PCI and
734 * AGP cards. AGP cards just allocate a large block of AGP memory and
735 * carve off portions of it for internal uses. The remaining memory
736 * is returned to user-mode to be used for AGP textures.
737 */
Nicolas Kaiserf2b2cb72010-07-12 01:46:57 +0200738 if (is_agp)
Dave Airlie6795c982005-07-10 18:20:09 +1000739 err = mga_do_agp_dma_bootstrap(dev, dma_bs);
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000740
Dave Airlie6795c982005-07-10 18:20:09 +1000741 /* If we attempted to initialize the card for AGP DMA but failed,
742 * clean-up any mess that may have been created.
743 */
744
Nicolas Kaiserf2b2cb72010-07-12 01:46:57 +0200745 if (err)
Dave Airlie7ccf8002005-11-11 23:11:34 +1100746 mga_do_cleanup_dma(dev, MINIMAL_CLEANUP);
Dave Airlie6795c982005-07-10 18:20:09 +1000747
Dave Airlie6795c982005-07-10 18:20:09 +1000748 /* Not only do we want to try and initialized PCI cards for PCI DMA,
749 * but we also try to initialized AGP cards that could not be
750 * initialized for AGP DMA. This covers the case where we have an AGP
751 * card in a system with an unsupported AGP chipset. In that case the
752 * card will be detected as AGP, but we won't be able to allocate any
753 * AGP memory, etc.
754 */
755
Nicolas Kaiserf2b2cb72010-07-12 01:46:57 +0200756 if (!is_agp || err)
Dave Airlie6795c982005-07-10 18:20:09 +1000757 err = mga_do_pci_dma_bootstrap(dev, dma_bs);
Dave Airlie6795c982005-07-10 18:20:09 +1000758
Dave Airlie6795c982005-07-10 18:20:09 +1000759 return err;
760}
761
Eric Anholtc153f452007-09-03 12:06:45 +1000762int mga_dma_bootstrap(struct drm_device *dev, void *data,
763 struct drm_file *file_priv)
Dave Airlie6795c982005-07-10 18:20:09 +1000764{
Eric Anholtc153f452007-09-03 12:06:45 +1000765 drm_mga_dma_bootstrap_t *bootstrap = data;
Dave Airlie6795c982005-07-10 18:20:09 +1000766 int err;
Dave Airlie7ccf8002005-11-11 23:11:34 +1100767 static const int modes[] = { 0, 1, 2, 2, 4, 4, 4, 4 };
768 const drm_mga_private_t *const dev_priv =
769 (drm_mga_private_t *) dev->dev_private;
Dave Airlie6795c982005-07-10 18:20:09 +1000770
Eric Anholtc153f452007-09-03 12:06:45 +1000771 err = mga_do_dma_bootstrap(dev, bootstrap);
Dave Airlie7ccf8002005-11-11 23:11:34 +1100772 if (err) {
773 mga_do_cleanup_dma(dev, FULL_CLEANUP);
774 return err;
Dave Airlie6795c982005-07-10 18:20:09 +1000775 }
776
Dave Airlie7ccf8002005-11-11 23:11:34 +1100777 if (dev_priv->agp_textures != NULL) {
Eric Anholtc153f452007-09-03 12:06:45 +1000778 bootstrap->texture_handle = dev_priv->agp_textures->offset;
779 bootstrap->texture_size = dev_priv->agp_textures->size;
Dave Airlie7ccf8002005-11-11 23:11:34 +1100780 } else {
Eric Anholtc153f452007-09-03 12:06:45 +1000781 bootstrap->texture_handle = 0;
782 bootstrap->texture_size = 0;
Dave Airlie7ccf8002005-11-11 23:11:34 +1100783 }
784
Eric Anholtc153f452007-09-03 12:06:45 +1000785 bootstrap->agp_mode = modes[bootstrap->agp_mode & 0x07];
Dave Airlie7ccf8002005-11-11 23:11:34 +1100786
Dave Airlie6795c982005-07-10 18:20:09 +1000787 return err;
788}
789
Nicolas Kaiserf2b2cb72010-07-12 01:46:57 +0200790static int mga_do_init_dma(struct drm_device *dev, drm_mga_init_t *init)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791{
792 drm_mga_private_t *dev_priv;
793 int ret;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000794 DRM_DEBUG("\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795
Dave Airlie6795c982005-07-10 18:20:09 +1000796 dev_priv = dev->dev_private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797
Nicolas Kaiserf2b2cb72010-07-12 01:46:57 +0200798 if (init->sgram)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799 dev_priv->clear_cmd = MGA_DWGCTL_CLEAR | MGA_ATYPE_BLK;
Nicolas Kaiserf2b2cb72010-07-12 01:46:57 +0200800 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801 dev_priv->clear_cmd = MGA_DWGCTL_CLEAR | MGA_ATYPE_RSTR;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000802 dev_priv->maccess = init->maccess;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000804 dev_priv->fb_cpp = init->fb_cpp;
805 dev_priv->front_offset = init->front_offset;
806 dev_priv->front_pitch = init->front_pitch;
807 dev_priv->back_offset = init->back_offset;
808 dev_priv->back_pitch = init->back_pitch;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000810 dev_priv->depth_cpp = init->depth_cpp;
811 dev_priv->depth_offset = init->depth_offset;
812 dev_priv->depth_pitch = init->depth_pitch;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813
814 /* FIXME: Need to support AGP textures...
815 */
816 dev_priv->texture_offset = init->texture_offset[0];
817 dev_priv->texture_size = init->texture_size[0];
818
Dave Airlieda509d72007-05-26 05:04:51 +1000819 dev_priv->sarea = drm_getsarea(dev);
Dave Airlie6795c982005-07-10 18:20:09 +1000820 if (!dev_priv->sarea) {
821 DRM_ERROR("failed to find sarea!\n");
Eric Anholt20caafa2007-08-25 19:22:43 +1000822 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823 }
824
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000825 if (!dev_priv->used_new_dma_init) {
Dave Airlie11909d62005-10-19 21:23:51 -0700826
827 dev_priv->dma_access = MGA_PAGPXFER;
828 dev_priv->wagp_enable = MGA_WAGP_ENABLE;
829
Dave Airlie6795c982005-07-10 18:20:09 +1000830 dev_priv->status = drm_core_findmap(dev, init->status_offset);
831 if (!dev_priv->status) {
832 DRM_ERROR("failed to find status page!\n");
Eric Anholt20caafa2007-08-25 19:22:43 +1000833 return -EINVAL;
Dave Airlie6795c982005-07-10 18:20:09 +1000834 }
835 dev_priv->mmio = drm_core_findmap(dev, init->mmio_offset);
836 if (!dev_priv->mmio) {
837 DRM_ERROR("failed to find mmio region!\n");
Eric Anholt20caafa2007-08-25 19:22:43 +1000838 return -EINVAL;
Dave Airlie6795c982005-07-10 18:20:09 +1000839 }
840 dev_priv->warp = drm_core_findmap(dev, init->warp_offset);
841 if (!dev_priv->warp) {
842 DRM_ERROR("failed to find warp microcode region!\n");
Eric Anholt20caafa2007-08-25 19:22:43 +1000843 return -EINVAL;
Dave Airlie6795c982005-07-10 18:20:09 +1000844 }
845 dev_priv->primary = drm_core_findmap(dev, init->primary_offset);
846 if (!dev_priv->primary) {
847 DRM_ERROR("failed to find primary dma region!\n");
Eric Anholt20caafa2007-08-25 19:22:43 +1000848 return -EINVAL;
Dave Airlie6795c982005-07-10 18:20:09 +1000849 }
Dave Airlied1f2b552005-08-05 22:11:22 +1000850 dev->agp_buffer_token = init->buffers_offset;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000851 dev->agp_buffer_map =
852 drm_core_findmap(dev, init->buffers_offset);
Dave Airlie6795c982005-07-10 18:20:09 +1000853 if (!dev->agp_buffer_map) {
854 DRM_ERROR("failed to find dma buffer region!\n");
Eric Anholt20caafa2007-08-25 19:22:43 +1000855 return -EINVAL;
Dave Airlie6795c982005-07-10 18:20:09 +1000856 }
857
858 drm_core_ioremap(dev_priv->warp, dev);
859 drm_core_ioremap(dev_priv->primary, dev);
860 drm_core_ioremap(dev->agp_buffer_map, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861 }
862
863 dev_priv->sarea_priv =
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000864 (drm_mga_sarea_t *) ((u8 *) dev_priv->sarea->handle +
865 init->sarea_priv_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866
Dave Airlie6795c982005-07-10 18:20:09 +1000867 if (!dev_priv->warp->handle ||
868 !dev_priv->primary->handle ||
869 ((dev_priv->dma_access != 0) &&
870 ((dev->agp_buffer_map == NULL) ||
871 (dev->agp_buffer_map->handle == NULL)))) {
872 DRM_ERROR("failed to ioremap agp regions!\n");
Eric Anholt20caafa2007-08-25 19:22:43 +1000873 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874 }
875
Dave Airlie6795c982005-07-10 18:20:09 +1000876 ret = mga_warp_install_microcode(dev_priv);
877 if (ret < 0) {
Dave Airlie7ccf8002005-11-11 23:11:34 +1100878 DRM_ERROR("failed to install WARP ucode!: %d\n", ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879 return ret;
880 }
881
Dave Airlie6795c982005-07-10 18:20:09 +1000882 ret = mga_warp_init(dev_priv);
883 if (ret < 0) {
Dave Airlie7ccf8002005-11-11 23:11:34 +1100884 DRM_ERROR("failed to init WARP engine!: %d\n", ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885 return ret;
886 }
887
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000888 dev_priv->prim.status = (u32 *) dev_priv->status->handle;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000890 mga_do_wait_for_idle(dev_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891
892 /* Init the primary DMA registers.
893 */
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000894 MGA_WRITE(MGA_PRIMADDRESS, dev_priv->primary->offset | MGA_DMA_GENERAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895#if 0
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000896 MGA_WRITE(MGA_PRIMPTR, virt_to_bus((void *)dev_priv->prim.status) | MGA_PRIMPTREN0 | /* Soft trap, SECEND, SETUPEND */
897 MGA_PRIMPTREN1); /* DWGSYNC */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898#endif
899
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000900 dev_priv->prim.start = (u8 *) dev_priv->primary->handle;
901 dev_priv->prim.end = ((u8 *) dev_priv->primary->handle
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902 + dev_priv->primary->size);
903 dev_priv->prim.size = dev_priv->primary->size;
904
905 dev_priv->prim.tail = 0;
906 dev_priv->prim.space = dev_priv->prim.size;
907 dev_priv->prim.wrapped = 0;
908
909 dev_priv->prim.last_flush = 0;
910 dev_priv->prim.last_wrap = 0;
911
912 dev_priv->prim.high_mark = 256 * DMA_BLOCK_SIZE;
913
914 dev_priv->prim.status[0] = dev_priv->primary->offset;
915 dev_priv->prim.status[1] = 0;
916
917 dev_priv->sarea_priv->last_wrap = 0;
918 dev_priv->sarea_priv->last_frame.head = 0;
919 dev_priv->sarea_priv->last_frame.wrap = 0;
920
Dave Airlie6795c982005-07-10 18:20:09 +1000921 if (mga_freelist_init(dev, dev_priv) < 0) {
922 DRM_ERROR("could not initialize freelist\n");
Eric Anholt20caafa2007-08-25 19:22:43 +1000923 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924 }
925
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926 return 0;
927}
928
Dave Airlieeddca552007-07-11 16:09:54 +1000929static int mga_do_cleanup_dma(struct drm_device *dev, int full_cleanup)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930{
Dave Airlie6795c982005-07-10 18:20:09 +1000931 int err = 0;
932 DRM_DEBUG("\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933
934 /* Make sure interrupts are disabled here because the uninstall ioctl
935 * may not have been called from userspace and after dev_private
936 * is freed, it's too late.
937 */
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000938 if (dev->irq_enabled)
939 drm_irq_uninstall(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000941 if (dev->dev_private) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942 drm_mga_private_t *dev_priv = dev->dev_private;
943
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000944 if ((dev_priv->warp != NULL)
Dave Airlie11909d62005-10-19 21:23:51 -0700945 && (dev_priv->warp->type != _DRM_CONSISTENT))
Dave Airlie6795c982005-07-10 18:20:09 +1000946 drm_core_ioremapfree(dev_priv->warp, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000948 if ((dev_priv->primary != NULL)
Dave Airlie6795c982005-07-10 18:20:09 +1000949 && (dev_priv->primary->type != _DRM_CONSISTENT))
950 drm_core_ioremapfree(dev_priv->primary, dev);
951
952 if (dev->agp_buffer_map != NULL)
953 drm_core_ioremapfree(dev->agp_buffer_map, dev);
954
955 if (dev_priv->used_new_dma_init) {
Dave Airlie908f9c42005-09-05 21:51:30 +1000956#if __OS_HAS_AGP
Dave Airlie7ccf8002005-11-11 23:11:34 +1100957 if (dev_priv->agp_handle != 0) {
Dave Airlieeddca552007-07-11 16:09:54 +1000958 struct drm_agp_binding unbind_req;
959 struct drm_agp_buffer free_req;
Dave Airlie6795c982005-07-10 18:20:09 +1000960
Dave Airlie7ccf8002005-11-11 23:11:34 +1100961 unbind_req.handle = dev_priv->agp_handle;
962 drm_agp_unbind(dev, &unbind_req);
963
964 free_req.handle = dev_priv->agp_handle;
965 drm_agp_free(dev, &free_req);
Dave Airliebc5f4522007-11-05 12:50:58 +1000966
Dave Airlie7ccf8002005-11-11 23:11:34 +1100967 dev_priv->agp_textures = NULL;
968 dev_priv->agp_size = 0;
969 dev_priv->agp_handle = 0;
Dave Airlie6795c982005-07-10 18:20:09 +1000970 }
971
Nicolas Kaiserf2b2cb72010-07-12 01:46:57 +0200972 if ((dev->agp != NULL) && dev->agp->acquired)
Dave Airlie6795c982005-07-10 18:20:09 +1000973 err = drm_agp_release(dev);
Dave Airlie908f9c42005-09-05 21:51:30 +1000974#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975 }
976
Dave Airlie6795c982005-07-10 18:20:09 +1000977 dev_priv->warp = NULL;
978 dev_priv->primary = NULL;
Dave Airlie6795c982005-07-10 18:20:09 +1000979 dev_priv->sarea = NULL;
980 dev_priv->sarea_priv = NULL;
981 dev->agp_buffer_map = NULL;
982
Dave Airlie7ccf8002005-11-11 23:11:34 +1100983 if (full_cleanup) {
984 dev_priv->mmio = NULL;
985 dev_priv->status = NULL;
986 dev_priv->used_new_dma_init = 0;
987 }
988
Dave Airlie6795c982005-07-10 18:20:09 +1000989 memset(&dev_priv->prim, 0, sizeof(dev_priv->prim));
990 dev_priv->warp_pipe = 0;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000991 memset(dev_priv->warp_pipe_phys, 0,
992 sizeof(dev_priv->warp_pipe_phys));
Dave Airlie6795c982005-07-10 18:20:09 +1000993
Nicolas Kaiserf2b2cb72010-07-12 01:46:57 +0200994 if (dev_priv->head != NULL)
Dave Airlie6795c982005-07-10 18:20:09 +1000995 mga_freelist_cleanup(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996 }
997
Jesper Juhla96ca102007-12-17 09:47:17 +1000998 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999}
1000
Eric Anholtc153f452007-09-03 12:06:45 +10001001int mga_dma_init(struct drm_device *dev, void *data,
1002 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003{
Eric Anholtc153f452007-09-03 12:06:45 +10001004 drm_mga_init_t *init = data;
Dave Airlie6795c982005-07-10 18:20:09 +10001005 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006
Eric Anholt6c340ea2007-08-25 20:23:09 +10001007 LOCK_TEST_WITH_RETURN(dev, file_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008
Eric Anholtc153f452007-09-03 12:06:45 +10001009 switch (init->func) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010 case MGA_INIT_DMA:
Eric Anholtc153f452007-09-03 12:06:45 +10001011 err = mga_do_init_dma(dev, init);
Nicolas Kaiserf2b2cb72010-07-12 01:46:57 +02001012 if (err)
Dave Airlie7ccf8002005-11-11 23:11:34 +11001013 (void)mga_do_cleanup_dma(dev, FULL_CLEANUP);
Dave Airlie6795c982005-07-10 18:20:09 +10001014 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015 case MGA_CLEANUP_DMA:
Dave Airlie7ccf8002005-11-11 23:11:34 +11001016 return mga_do_cleanup_dma(dev, FULL_CLEANUP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017 }
1018
Eric Anholt20caafa2007-08-25 19:22:43 +10001019 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020}
1021
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022/* ================================================================
1023 * Primary DMA stream management
1024 */
1025
Eric Anholtc153f452007-09-03 12:06:45 +10001026int mga_dma_flush(struct drm_device *dev, void *data,
1027 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028{
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001029 drm_mga_private_t *dev_priv = (drm_mga_private_t *) dev->dev_private;
Eric Anholtc153f452007-09-03 12:06:45 +10001030 struct drm_lock *lock = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031
Eric Anholt6c340ea2007-08-25 20:23:09 +10001032 LOCK_TEST_WITH_RETURN(dev, file_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001034 DRM_DEBUG("%s%s%s\n",
Eric Anholtc153f452007-09-03 12:06:45 +10001035 (lock->flags & _DRM_LOCK_FLUSH) ? "flush, " : "",
1036 (lock->flags & _DRM_LOCK_FLUSH_ALL) ? "flush all, " : "",
1037 (lock->flags & _DRM_LOCK_QUIESCENT) ? "idle, " : "");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001039 WRAP_WAIT_WITH_RETURN(dev_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040
Nicolas Kaiserf2b2cb72010-07-12 01:46:57 +02001041 if (lock->flags & (_DRM_LOCK_FLUSH | _DRM_LOCK_FLUSH_ALL))
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001042 mga_do_dma_flush(dev_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043
Eric Anholtc153f452007-09-03 12:06:45 +10001044 if (lock->flags & _DRM_LOCK_QUIESCENT) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045#if MGA_DMA_DEBUG
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001046 int ret = mga_do_wait_for_idle(dev_priv);
1047 if (ret < 0)
Márton Németh3e684ea2008-01-24 15:58:57 +10001048 DRM_INFO("-EBUSY\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049 return ret;
1050#else
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001051 return mga_do_wait_for_idle(dev_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052#endif
1053 } else {
1054 return 0;
1055 }
1056}
1057
Eric Anholtc153f452007-09-03 12:06:45 +10001058int mga_dma_reset(struct drm_device *dev, void *data,
1059 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060{
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001061 drm_mga_private_t *dev_priv = (drm_mga_private_t *) dev->dev_private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062
Eric Anholt6c340ea2007-08-25 20:23:09 +10001063 LOCK_TEST_WITH_RETURN(dev, file_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001065 return mga_do_dma_reset(dev_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066}
1067
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068/* ================================================================
1069 * DMA buffer management
1070 */
1071
Nicolas Kaiserf2b2cb72010-07-12 01:46:57 +02001072static int mga_dma_get_buffers(struct drm_device *dev,
1073 struct drm_file *file_priv, struct drm_dma *d)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074{
Dave Airlie056219e2007-07-11 16:17:42 +10001075 struct drm_buf *buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076 int i;
1077
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001078 for (i = d->granted_count; i < d->request_count; i++) {
1079 buf = mga_freelist_get(dev);
1080 if (!buf)
Eric Anholt20caafa2007-08-25 19:22:43 +10001081 return -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082
Eric Anholt6c340ea2007-08-25 20:23:09 +10001083 buf->file_priv = file_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001085 if (DRM_COPY_TO_USER(&d->request_indices[i],
1086 &buf->idx, sizeof(buf->idx)))
Eric Anholt20caafa2007-08-25 19:22:43 +10001087 return -EFAULT;
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001088 if (DRM_COPY_TO_USER(&d->request_sizes[i],
1089 &buf->total, sizeof(buf->total)))
Eric Anholt20caafa2007-08-25 19:22:43 +10001090 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091
1092 d->granted_count++;
1093 }
1094 return 0;
1095}
1096
Eric Anholtc153f452007-09-03 12:06:45 +10001097int mga_dma_buffers(struct drm_device *dev, void *data,
1098 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099{
Dave Airliecdd55a22007-07-11 16:32:08 +10001100 struct drm_device_dma *dma = dev->dma;
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001101 drm_mga_private_t *dev_priv = (drm_mga_private_t *) dev->dev_private;
Eric Anholtc153f452007-09-03 12:06:45 +10001102 struct drm_dma *d = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103 int ret = 0;
1104
Eric Anholt6c340ea2007-08-25 20:23:09 +10001105 LOCK_TEST_WITH_RETURN(dev, file_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107 /* Please don't send us buffers.
1108 */
Eric Anholtc153f452007-09-03 12:06:45 +10001109 if (d->send_count != 0) {
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001110 DRM_ERROR("Process %d trying to send %d buffers via drmDMA\n",
Eric Anholtc153f452007-09-03 12:06:45 +10001111 DRM_CURRENTPID, d->send_count);
Eric Anholt20caafa2007-08-25 19:22:43 +10001112 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113 }
1114
1115 /* We'll send you buffers.
1116 */
Eric Anholtc153f452007-09-03 12:06:45 +10001117 if (d->request_count < 0 || d->request_count > dma->buf_count) {
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001118 DRM_ERROR("Process %d trying to get %d buffers (of %d max)\n",
Eric Anholtc153f452007-09-03 12:06:45 +10001119 DRM_CURRENTPID, d->request_count, dma->buf_count);
Eric Anholt20caafa2007-08-25 19:22:43 +10001120 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121 }
1122
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001123 WRAP_TEST_WITH_RETURN(dev_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124
Eric Anholtc153f452007-09-03 12:06:45 +10001125 d->granted_count = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126
Nicolas Kaiserf2b2cb72010-07-12 01:46:57 +02001127 if (d->request_count)
Eric Anholtc153f452007-09-03 12:06:45 +10001128 ret = mga_dma_get_buffers(dev, file_priv, d);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130 return ret;
1131}
1132
Dave Airlie6795c982005-07-10 18:20:09 +10001133/**
1134 * Called just before the module is unloaded.
1135 */
Nicolas Kaiserf2b2cb72010-07-12 01:46:57 +02001136int mga_driver_unload(struct drm_device *dev)
Dave Airlie6795c982005-07-10 18:20:09 +10001137{
Eric Anholt9a298b22009-03-24 12:23:04 -07001138 kfree(dev->dev_private);
Dave Airlie6795c982005-07-10 18:20:09 +10001139 dev->dev_private = NULL;
1140
1141 return 0;
1142}
1143
1144/**
1145 * Called when the last opener of the device is closed.
1146 */
Nicolas Kaiserf2b2cb72010-07-12 01:46:57 +02001147void mga_driver_lastclose(struct drm_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148{
Dave Airlie7ccf8002005-11-11 23:11:34 +11001149 mga_do_cleanup_dma(dev, FULL_CLEANUP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150}
1151
Nicolas Kaiserf2b2cb72010-07-12 01:46:57 +02001152int mga_driver_dma_quiescent(struct drm_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153{
1154 drm_mga_private_t *dev_priv = dev->dev_private;
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001155 return mga_do_wait_for_idle(dev_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156}