OSDN Git Service

[FreeBSD] Add drm_drawable_free_all()
[android-x86/external-libdrm.git] / bsd-core / drm_dma.c
1 /*-
2  * Copyright 1999, 2000 Precision Insight, Inc., Cedar Park, Texas.
3  * Copyright 2000 VA Linux Systems, Inc., Sunnyvale, California.
4  * All Rights Reserved.
5  *
6  * Permission is hereby granted, free of charge, to any person obtaining a
7  * copy of this software and associated documentation files (the "Software"),
8  * to deal in the Software without restriction, including without limitation
9  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
10  * and/or sell copies of the Software, and to permit persons to whom the
11  * Software is furnished to do so, subject to the following conditions:
12  *
13  * The above copyright notice and this permission notice (including the next
14  * paragraph) shall be included in all copies or substantial portions of the
15  * Software.
16  *
17  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
20  * VA LINUX SYSTEMS AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
21  * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
22  * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
23  * OTHER DEALINGS IN THE SOFTWARE.
24  *
25  * Authors:
26  *    Rickard E. (Rik) Faith <faith@valinux.com>
27  *    Gareth Hughes <gareth@valinux.com>
28  *
29  */
30
31 /** @file drm_dma.c
32  * Support code for DMA buffer management.
33  *
34  * The implementation used to be significantly more complicated, but the
35  * complexity has been moved into the drivers as different buffer management
36  * schemes evolved.
37  */
38
39 #include "drmP.h"
40
41 int drm_dma_setup(struct drm_device *dev)
42 {
43
44         dev->dma = malloc(sizeof(*dev->dma), M_DRM, M_NOWAIT | M_ZERO);
45         if (dev->dma == NULL)
46                 return ENOMEM;
47
48         DRM_SPININIT(&dev->dma_lock, "drmdma");
49
50         return 0;
51 }
52
53 void drm_dma_takedown(struct drm_device *dev)
54 {
55         drm_device_dma_t  *dma = dev->dma;
56         int               i, j;
57
58         if (dma == NULL)
59                 return;
60
61                                 /* Clear dma buffers */
62         for (i = 0; i <= DRM_MAX_ORDER; i++) {
63                 if (dma->bufs[i].seg_count) {
64                         DRM_DEBUG("order %d: buf_count = %d,"
65                                   " seg_count = %d\n",
66                                   i,
67                                   dma->bufs[i].buf_count,
68                                   dma->bufs[i].seg_count);
69                         for (j = 0; j < dma->bufs[i].seg_count; j++) {
70                                 drm_pci_free(dev, dma->bufs[i].seglist[j]);
71                         }
72                         free(dma->bufs[i].seglist, M_DRM);
73                 }
74
75                 if (dma->bufs[i].buf_count) {
76                         for (j = 0; j < dma->bufs[i].buf_count; j++) {
77                                 free(dma->bufs[i].buflist[j].dev_private,
78                                     M_DRM);
79                         }
80                         free(dma->bufs[i].buflist, M_DRM);
81                 }
82         }
83
84         free(dma->buflist, M_DRM);
85         free(dma->pagelist, M_DRM);
86         free(dev->dma, M_DRM);
87         dev->dma = NULL;
88         DRM_SPINUNINIT(&dev->dma_lock);
89 }
90
91
92 void drm_free_buffer(struct drm_device *dev, drm_buf_t *buf)
93 {
94         if (!buf) return;
95
96         buf->pending  = 0;
97         buf->file_priv= NULL;
98         buf->used     = 0;
99 }
100
101 void drm_reclaim_buffers(struct drm_device *dev, struct drm_file *file_priv)
102 {
103         drm_device_dma_t *dma = dev->dma;
104         int              i;
105
106         if (!dma) return;
107         for (i = 0; i < dma->buf_count; i++) {
108                 if (dma->buflist[i]->file_priv == file_priv) {
109                         switch (dma->buflist[i]->list) {
110                         case DRM_LIST_NONE:
111                                 drm_free_buffer(dev, dma->buflist[i]);
112                                 break;
113                         case DRM_LIST_WAIT:
114                                 dma->buflist[i]->list = DRM_LIST_RECLAIM;
115                                 break;
116                         default:
117                                 /* Buffer already on hardware. */
118                                 break;
119                         }
120                 }
121         }
122 }
123
124 /* Call into the driver-specific DMA handler */
125 int drm_dma(struct drm_device *dev, void *data, struct drm_file *file_priv)
126 {
127
128         if (dev->driver.dma_ioctl) {
129                 /* shared code returns -errno */
130                 return -dev->driver.dma_ioctl(dev, data, file_priv);
131         } else {
132                 DRM_DEBUG("DMA ioctl on driver with no dma handler\n");
133                 return EINVAL;
134         }
135 }