1 | /* $Id: alloc-r0drv-freebsd.c 6478 2008-01-24 12:31:11Z vboxsync $ */
|
---|
2 | /** @file
|
---|
3 | * innotek Portable Runtime - Memory Allocation, Ring-0 Driver, FreeBSD.
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (c) 2007 knut st. osmundsen <[email protected]>
|
---|
8 | *
|
---|
9 | * Permission is hereby granted, free of charge, to any person
|
---|
10 | * obtaining a copy of this software and associated documentation
|
---|
11 | * files (the "Software"), to deal in the Software without
|
---|
12 | * restriction, including without limitation the rights to use,
|
---|
13 | * copy, modify, merge, publish, distribute, sublicense, and/or sell
|
---|
14 | * copies of the Software, and to permit persons to whom the
|
---|
15 | * Software is furnished to do so, subject to the following
|
---|
16 | * conditions:
|
---|
17 | *
|
---|
18 | * The above copyright notice and this permission notice shall be
|
---|
19 | * included in all copies or substantial portions of the Software.
|
---|
20 | *
|
---|
21 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
---|
22 | * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
|
---|
23 | * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
---|
24 | * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
|
---|
25 | * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
|
---|
26 | * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
---|
27 | * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
|
---|
28 | * OTHER DEALINGS IN THE SOFTWARE.
|
---|
29 | */
|
---|
30 |
|
---|
31 | /*******************************************************************************
|
---|
32 | * Header Files *
|
---|
33 | *******************************************************************************/
|
---|
34 | #include "the-freebsd-kernel.h"
|
---|
35 |
|
---|
36 | #include <iprt/alloc.h>
|
---|
37 | #include <iprt/assert.h>
|
---|
38 | #include <iprt/param.h>
|
---|
39 |
|
---|
40 | #include "r0drv/alloc-r0drv.h"
|
---|
41 |
|
---|
42 |
|
---|
43 | /*******************************************************************************
|
---|
44 | * Global Variables *
|
---|
45 | *******************************************************************************/
|
---|
46 | /* These two statements will define two globals and add initializers
|
---|
47 | and destructors that will be called at load/unload time (I think). */
|
---|
48 | MALLOC_DEFINE(M_IPRTHEAP, "iprtheap", "innotek Portable Runtime - heap");
|
---|
49 | MALLOC_DEFINE(M_IPRTCONT, "iprtcont", "innotek Portable Runtime - contiguous");
|
---|
50 |
|
---|
51 |
|
---|
52 | PRTMEMHDR rtMemAlloc(size_t cb, uint32_t fFlags)
|
---|
53 | {
|
---|
54 | PRTMEMHDR pHdr;
|
---|
55 |
|
---|
56 | /** @todo Just like OS/2, FreeBSD doesn't need this header. */
|
---|
57 | pHdr = (PRTMEMHDR)malloc(cb + sizeof(RTMEMHDR), M_IPRTHEAP,
|
---|
58 | fFlags & RTMEMHDR_FLAG_ZEROED ? M_NOWAIT | M_ZERO : M_NOWAIT);
|
---|
59 | if (pHdr)
|
---|
60 | {
|
---|
61 | pHdr->u32Magic = RTMEMHDR_MAGIC;
|
---|
62 | pHdr->fFlags = fFlags;
|
---|
63 | pHdr->cb = cb;
|
---|
64 | pHdr->u32Padding = 0;
|
---|
65 | return pHdr;
|
---|
66 | }
|
---|
67 | return NULL;
|
---|
68 | }
|
---|
69 |
|
---|
70 |
|
---|
71 | void rtMemFree(PRTMEMHDR pHdr)
|
---|
72 | {
|
---|
73 | pHdr->u32Magic += 1;
|
---|
74 | free(pHdr, M_IPRTHEAP);
|
---|
75 | }
|
---|
76 |
|
---|
77 |
|
---|
78 | RTR0DECL(void *) RTMemContAlloc(PRTCCPHYS pPhys, size_t cb)
|
---|
79 | {
|
---|
80 | void *pv;
|
---|
81 |
|
---|
82 | /*
|
---|
83 | * Validate input.
|
---|
84 | */
|
---|
85 | AssertPtr(pPhys);
|
---|
86 | Assert(cb > 0);
|
---|
87 |
|
---|
88 | /*
|
---|
89 | * This API works in pages, so no need to do any size aligning.
|
---|
90 | */
|
---|
91 | pv = contigmalloc(cb, /* size */
|
---|
92 | M_IPRTCONT, /* type */
|
---|
93 | M_NOWAIT | M_ZERO, /* flags */
|
---|
94 | 0, /* lowest physical address*/
|
---|
95 | _4G-1, /* highest physical address */
|
---|
96 | PAGE_SIZE, /* alignment. */
|
---|
97 | 0); /* boundrary */
|
---|
98 | if (pv)
|
---|
99 | {
|
---|
100 | Assert(!((uintptr_t)pv & PAGE_OFFSET_MASK));
|
---|
101 | *pPhys = vtophys(pv);
|
---|
102 | Assert(!(*pPhys & PAGE_OFFSET_MASK));
|
---|
103 | }
|
---|
104 | return pv;
|
---|
105 | }
|
---|
106 |
|
---|
107 |
|
---|
108 | RTR0DECL(void) RTMemContFree(void *pv, size_t cb)
|
---|
109 | {
|
---|
110 | if (pv)
|
---|
111 | {
|
---|
112 | AssertMsg(!((uintptr_t)pv & PAGE_OFFSET_MASK), ("pv=%p\n", pv));
|
---|
113 | contigfree(pv, cb, M_IPRTCONT);
|
---|
114 | }
|
---|
115 | }
|
---|
116 |
|
---|