[PATCH] drm: Fix issue reported by Coverity in drivers/char/drm/via_irq.c
[deliverable/linux.git] / drivers / char / drm / drm_pci.c
CommitLineData
1da177e4
LT
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 */
9c8da5eb
DA
49drm_dma_handle_t *drm_pci_alloc(drm_device_t * dev, size_t size, size_t align,
50 dma_addr_t maxaddr)
1da177e4 51{
9c8da5eb 52 drm_dma_handle_t *dmah;
ddf19b97
DA
53#if 1
54 unsigned long addr;
55 size_t sz;
56#endif
aa0ca6b4 57#ifdef DRM_DEBUG_MEMORY
1da177e4
LT
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
9c8da5eb
DA
81 dmah = kmalloc(sizeof(drm_dma_handle_t), GFP_KERNEL);
82 if (!dmah)
83 return NULL;
b5e89ed5 84
9c8da5eb 85 dmah->size = size;
ddf19b97 86 dmah->vaddr = dma_alloc_coherent(&dev->pdev->dev, size, &dmah->busaddr, GFP_KERNEL | __GFP_COMP);
1da177e4 87
aa0ca6b4 88#ifdef DRM_DEBUG_MEMORY
9c8da5eb 89 if (dmah->vaddr == NULL) {
1da177e4
LT
90 spin_lock(&drm_mem_lock);
91 ++drm_mem_stats[area].fail_count;
92 spin_unlock(&drm_mem_lock);
9c8da5eb 93 kfree(dmah);
1da177e4
LT
94 return NULL;
95 }
96
97 spin_lock(&drm_mem_lock);
98 ++drm_mem_stats[area].succeed_count;
99 drm_mem_stats[area].bytes_allocated += size;
100 drm_ram_used += size;
101 spin_unlock(&drm_mem_lock);
102#else
9c8da5eb
DA
103 if (dmah->vaddr == NULL) {
104 kfree(dmah);
1da177e4 105 return NULL;
9c8da5eb 106 }
1da177e4
LT
107#endif
108
9c8da5eb 109 memset(dmah->vaddr, 0, size);
1da177e4 110
ddf19b97
DA
111 /* XXX - Is virt_to_page() legal for consistent mem? */
112 /* Reserve */
113 for (addr = (unsigned long)dmah->vaddr, sz = size;
114 sz > 0; addr += PAGE_SIZE, sz -= PAGE_SIZE) {
115 SetPageReserved(virt_to_page(addr));
116 }
117
9c8da5eb 118 return dmah;
1da177e4 119}
b5e89ed5 120
1da177e4
LT
121EXPORT_SYMBOL(drm_pci_alloc);
122
123/**
ddf19b97 124 * \brief Free a PCI consistent memory block without freeing its descriptor.
9c8da5eb
DA
125 *
126 * This function is for internal use in the Linux-specific DRM core code.
1da177e4 127 */
b5e89ed5 128void __drm_pci_free(drm_device_t * dev, drm_dma_handle_t * dmah)
1da177e4 129{
ddf19b97
DA
130#if 1
131 unsigned long addr;
132 size_t sz;
133#endif
aa0ca6b4 134#ifdef DRM_DEBUG_MEMORY
1da177e4
LT
135 int area = DRM_MEM_DMA;
136 int alloc_count;
137 int free_count;
138#endif
139
9c8da5eb 140 if (!dmah->vaddr) {
aa0ca6b4 141#ifdef DRM_DEBUG_MEMORY
1da177e4
LT
142 DRM_MEM_ERROR(area, "Attempt to free address 0\n");
143#endif
144 } else {
ddf19b97
DA
145 /* XXX - Is virt_to_page() legal for consistent mem? */
146 /* Unreserve */
147 for (addr = (unsigned long)dmah->vaddr, sz = dmah->size;
148 sz > 0; addr += PAGE_SIZE, sz -= PAGE_SIZE) {
149 ClearPageReserved(virt_to_page(addr));
150 }
151 dma_free_coherent(&dev->pdev->dev, dmah->size, dmah->vaddr,
152 dmah->busaddr);
1da177e4
LT
153 }
154
aa0ca6b4 155#ifdef DRM_DEBUG_MEMORY
1da177e4
LT
156 spin_lock(&drm_mem_lock);
157 free_count = ++drm_mem_stats[area].free_count;
158 alloc_count = drm_mem_stats[area].succeed_count;
159 drm_mem_stats[area].bytes_freed += size;
160 drm_ram_used -= size;
161 spin_unlock(&drm_mem_lock);
162 if (free_count > alloc_count) {
163 DRM_MEM_ERROR(area,
164 "Excess frees: %d frees, %d allocs\n",
165 free_count, alloc_count);
166 }
167#endif
168
169}
9c8da5eb
DA
170
171/**
172 * \brief Free a PCI consistent memory block
173 */
b5e89ed5 174void drm_pci_free(drm_device_t * dev, drm_dma_handle_t * dmah)
9c8da5eb
DA
175{
176 __drm_pci_free(dev, dmah);
177 kfree(dmah);
178}
b5e89ed5 179
1da177e4
LT
180EXPORT_SYMBOL(drm_pci_free);
181
182/*@}*/
This page took 0.115158 seconds and 5 git commands to generate.