Added a new DRM map type _DRM_CONSISTENT for consistent PCI memory. It uses
[platform/upstream/libdrm.git] / linux-core / drm_pci.c
1 /* drm_pci.h -- PCI DMA memory management wrappers for DRM -*- linux-c -*- */
2 /**
3  * \file drm_pci.c
4  * \brief Functions and ioctls to manage PCI memory
5  *
6  * \warning These interfaces aren't stable yet.
7  *
8  * \todo Implement the remaining ioctl's for the PCI pools.
9  * \todo The wrappers here are so thin that they would be better off inlined..
10  *
11  * \author Jose Fonseca <jrfonseca@tungstengraphics.com>
12  * \author Leif Delgass <ldelgass@retinalburn.net>
13  */
14
15 /*
16  * Copyright 2003 Jos�Fonseca.
17  * Copyright 2003 Leif Delgass.
18  * All Rights Reserved.
19  *
20  * Permission is hereby granted, free of charge, to any person obtaining a
21  * copy of this software and associated documentation files (the "Software"),
22  * to deal in the Software without restriction, including without limitation
23  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
24  * and/or sell copies of the Software, and to permit persons to whom the
25  * Software is furnished to do so, subject to the following conditions:
26  *
27  * The above copyright notice and this permission notice (including the next
28  * paragraph) shall be included in all copies or substantial portions of the
29  * Software.
30  *
31  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
32  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
33  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
34  * AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
35  * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
36  * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
37  */
38
39 #include <linux/pci.h>
40 #include "drmP.h"
41
42 /**********************************************************************/
43 /** \name PCI memory */
44 /*@{*/
45
46 /**
47  * \brief Allocate a PCI consistent memory block, for DMA.
48  */
49 void *drm_pci_alloc(drm_device_t * dev, size_t size, size_t align,
50                     dma_addr_t maxaddr, dma_addr_t * busaddr)
51 {
52         void *address;
53 #if 0
54         unsigned long addr;
55         size_t sz;
56 #endif
57 #if DRM_DEBUG_MEMORY
58         int area = DRM_MEM_DMA;
59
60         spin_lock(&drm_mem_lock);
61         if ((drm_ram_used >> PAGE_SHIFT)
62             > (DRM_RAM_PERCENT * drm_ram_available) / 100) {
63                 spin_unlock(&drm_mem_lock);
64                 return 0;
65         }
66         spin_unlock(&drm_mem_lock);
67 #endif
68
69         /* pci_alloc_consistent only guarantees alignment to the smallest
70          * PAGE_SIZE order which is greater than or equal to the requested size.
71          * Return NULL here for now to make sure nobody tries for larger alignment
72          */
73         if (align > size)
74                 return NULL;
75
76         if (pci_set_dma_mask(dev->pdev, maxaddr) != 0) {
77                 DRM_ERROR("Setting pci dma mask failed\n");
78                 return NULL;
79         }
80
81         address = pci_alloc_consistent(dev->pdev, size, busaddr);
82
83 #if DRM_DEBUG_MEMORY
84         if (address == NULL) {
85                 spin_lock(&drm_mem_lock);
86                 ++drm_mem_stats[area].fail_count;
87                 spin_unlock(&drm_mem_lock);
88                 return NULL;
89         }
90
91         spin_lock(&drm_mem_lock);
92         ++drm_mem_stats[area].succeed_count;
93         drm_mem_stats[area].bytes_allocated += size;
94         drm_ram_used += size;
95         spin_unlock(&drm_mem_lock);
96 #else
97         if (address == NULL)
98                 return NULL;
99 #endif
100
101         memset(address, 0, size);
102
103 #if 0
104         /* XXX - Is virt_to_page() legal for consistent mem? */
105         /* Reserve */
106         for (addr = (unsigned long)address, sz = size;
107              sz > 0; addr += PAGE_SIZE, sz -= PAGE_SIZE) {
108                 SetPageReserved(virt_to_page(addr));
109         }
110 #endif
111
112         return address;
113 }
114 EXPORT_SYMBOL(drm_pci_alloc);
115
116 /**
117  * \brief Free a PCI consistent memory block.
118  */
119 void
120 drm_pci_free(drm_device_t * dev, size_t size, void *vaddr, dma_addr_t busaddr)
121 {
122 #if 0
123         unsigned long addr;
124         size_t sz;
125 #endif
126 #if DRM_DEBUG_MEMORY
127         int area = DRM_MEM_DMA;
128         int alloc_count;
129         int free_count;
130 #endif
131
132         if (!vaddr) {
133 #if DRM_DEBUG_MEMORY
134                 DRM_MEM_ERROR(area, "Attempt to free address 0\n");
135 #endif
136         } else {
137 #if 0
138                 /* XXX - Is virt_to_page() legal for consistent mem? */
139                 /* Unreserve */
140                 for (addr = (unsigned long)vaddr, sz = size;
141                      sz > 0; addr += PAGE_SIZE, sz -= PAGE_SIZE) {
142                         ClearPageReserved(virt_to_page(addr));
143                 }
144 #endif
145                 pci_free_consistent(dev->pdev, size, vaddr, busaddr);
146         }
147
148 #if DRM_DEBUG_MEMORY
149         spin_lock(&drm_mem_lock);
150         free_count = ++drm_mem_stats[area].free_count;
151         alloc_count = drm_mem_stats[area].succeed_count;
152         drm_mem_stats[area].bytes_freed += size;
153         drm_ram_used -= size;
154         spin_unlock(&drm_mem_lock);
155         if (free_count > alloc_count) {
156                 DRM_MEM_ERROR(area,
157                               "Excess frees: %d frees, %d allocs\n",
158                               free_count, alloc_count);
159         }
160 #endif
161
162 }
163 EXPORT_SYMBOL(drm_pci_free);
164
165 /*@}*/