]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sys/dev/drm/drm_pci.h
This commit was generated by cvs2svn to compensate for changes in r138583,
[FreeBSD/FreeBSD.git] / sys / dev / drm / drm_pci.h
1 /**
2  * \file drm_pci.h
3  * \brief PCI consistent, DMA-accessible memory functions.
4  *
5  * \author Eric Anholt <anholt@FreeBSD.org>
6  */
7
8 /*
9  * Copyright 2003 Eric Anholt.
10  * All Rights Reserved.
11  *
12  * Permission is hereby granted, free of charge, to any person obtaining a
13  * copy of this software and associated documentation files (the "Software"),
14  * to deal in the Software without restriction, including without limitation
15  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
16  * and/or sell copies of the Software, and to permit persons to whom the
17  * Software is furnished to do so, subject to the following conditions:
18  *
19  * The above copyright notice and this permission notice (including the next
20  * paragraph) shall be included in all copies or substantial portions of the
21  * Software.
22  *
23  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
24  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
25  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
26  * AUTHOR BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
27  * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
28  * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
29  *
30  * $FreeBSD$
31  */
32
33 #include "dev/drm/drmP.h"
34
35 /**********************************************************************/
36 /** \name PCI memory */
37 /*@{*/
38
39 /**
40  * \brief Allocate a physically contiguous DMA-accessible consistent 
41  * memory block.
42  */
43 void *
44 DRM(pci_alloc)(drm_device_t *dev, size_t size, size_t align, dma_addr_t maxaddr,
45     dma_addr_t *busaddr)
46 {
47         void *vaddr;
48
49         vaddr = contigmalloc(size, DRM(M_DRM), M_NOWAIT, 0ul, maxaddr, align,
50             0);
51         *busaddr = vtophys(vaddr);
52         
53         return vaddr;
54 }
55
56 /**
57  * \brief Free a DMA-accessible consistent memory block.
58  */
59 void
60 DRM(pci_free)(drm_device_t *dev, size_t size, void *vaddr, dma_addr_t busaddr)
61 {
62 #if __FreeBSD_version > 500000
63         contigfree(vaddr, size, DRM(M_DRM));    /* Not available on 4.x */
64 #endif
65 }
66
67 /*@}*/