1 | /*
|
---|
2 | * Copyright (c) 2005 Jakub Jermar
|
---|
3 | * Copyright (c) 2005 Sergey Bondari
|
---|
4 | * All rights reserved.
|
---|
5 | *
|
---|
6 | * Redistribution and use in source and binary forms, with or without
|
---|
7 | * modification, are permitted provided that the following conditions
|
---|
8 | * are met:
|
---|
9 | *
|
---|
10 | * - Redistributions of source code must retain the above copyright
|
---|
11 | * notice, this list of conditions and the following disclaimer.
|
---|
12 | * - Redistributions in binary form must reproduce the above copyright
|
---|
13 | * notice, this list of conditions and the following disclaimer in the
|
---|
14 | * documentation and/or other materials provided with the distribution.
|
---|
15 | * - The name of the author may not be used to endorse or promote products
|
---|
16 | * derived from this software without specific prior written permission.
|
---|
17 | *
|
---|
18 | * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
---|
19 | * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
---|
20 | * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
---|
21 | * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
---|
22 | * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
---|
23 | * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
---|
24 | * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
---|
25 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
---|
26 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
---|
27 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
---|
28 | */
|
---|
29 |
|
---|
30 | /** @addtogroup kernel_generic_mm
|
---|
31 | * @{
|
---|
32 | */
|
---|
33 | /** @file
|
---|
34 | */
|
---|
35 |
|
---|
36 | #ifndef KERN_FRAME_H_
|
---|
37 | #define KERN_FRAME_H_
|
---|
38 |
|
---|
39 | #include <typedefs.h>
|
---|
40 | #include <trace.h>
|
---|
41 | #include <adt/bitmap.h>
|
---|
42 | #include <adt/list.h>
|
---|
43 | #include <synch/spinlock.h>
|
---|
44 | #include <arch/mm/page.h>
|
---|
45 | #include <arch/mm/frame.h>
|
---|
46 |
|
---|
47 | /** Maximum number of zones in the system. */
|
---|
48 | #define ZONES_MAX 32
|
---|
49 |
|
---|
50 | typedef uint8_t frame_flags_t;
|
---|
51 |
|
---|
52 | #define FRAME_NONE 0x00
|
---|
53 | /** Do not panic and do not sleep on failure. */
|
---|
54 | #define FRAME_ATOMIC 0x01
|
---|
55 | /** Do not start reclaiming when no free memory. */
|
---|
56 | #define FRAME_NO_RECLAIM 0x02
|
---|
57 | /** Do not reserve / unreserve memory. */
|
---|
58 | #define FRAME_NO_RESERVE 0x04
|
---|
59 | /** Allocate a frame which can be identity-mapped. */
|
---|
60 | #define FRAME_LOWMEM 0x08
|
---|
61 | /**
|
---|
62 | * Allocate a frame outside the identity-mapped region if possible.
|
---|
63 | * Fall back to low memory if that fails.
|
---|
64 | */
|
---|
65 | #define FRAME_HIGHMEM 0x10
|
---|
66 |
|
---|
67 | // NOTE: If neither FRAME_LOWMEM nor FRAME_HIGHMEM is set, FRAME_LOWMEM is
|
---|
68 | // assumed as a safe default, and a runtime warning may be issued.
|
---|
69 | // If both are set, FRAME_LOWMEM takes priority.
|
---|
70 |
|
---|
71 | typedef uint8_t zone_flags_t;
|
---|
72 |
|
---|
73 | #define ZONE_NONE 0x00
|
---|
74 | /** Available zone (free for allocation) */
|
---|
75 | #define ZONE_AVAILABLE 0x01
|
---|
76 | /** Zone is reserved (not available for allocation) */
|
---|
77 | #define ZONE_RESERVED 0x02
|
---|
78 | /** Zone is used by firmware (not available for allocation) */
|
---|
79 | #define ZONE_FIRMWARE 0x04
|
---|
80 | /** Zone contains memory that can be identity-mapped */
|
---|
81 | #define ZONE_LOWMEM 0x08
|
---|
82 | /** Zone contains memory that cannot be identity-mapped */
|
---|
83 | #define ZONE_HIGHMEM 0x10
|
---|
84 |
|
---|
85 | /** Mask of zone bits that must be matched exactly. */
|
---|
86 | #define ZONE_EF_MASK 0x07
|
---|
87 |
|
---|
88 | #define ZONE_FLAGS_MATCH(zf, f) \
|
---|
89 | (((((zf) & ZONE_EF_MASK)) == ((f) & ZONE_EF_MASK)) && \
|
---|
90 | (((zf) & ~ZONE_EF_MASK) & (f)))
|
---|
91 |
|
---|
92 | typedef struct {
|
---|
93 | size_t refcount; /**< Tracking of shared frames */
|
---|
94 | void *parent; /**< If allocated by slab, this points there */
|
---|
95 | } frame_t;
|
---|
96 |
|
---|
97 | typedef struct {
|
---|
98 | /** Frame_no of the first frame in the frames array */
|
---|
99 | pfn_t base;
|
---|
100 |
|
---|
101 | /** Size of zone */
|
---|
102 | size_t count;
|
---|
103 |
|
---|
104 | /** Number of free frame_t structures */
|
---|
105 | size_t free_count;
|
---|
106 |
|
---|
107 | /** Number of busy frame_t structures */
|
---|
108 | size_t busy_count;
|
---|
109 |
|
---|
110 | /** Type of the zone */
|
---|
111 | zone_flags_t flags;
|
---|
112 |
|
---|
113 | /** Frame bitmap */
|
---|
114 | bitmap_t bitmap;
|
---|
115 |
|
---|
116 | /** Array of frame_t structures in this zone */
|
---|
117 | frame_t *frames;
|
---|
118 | } zone_t;
|
---|
119 |
|
---|
120 | /*
|
---|
121 | * The zoneinfo.lock must be locked when accessing zoneinfo structure.
|
---|
122 | * Some of the attributes in zone_t structures are 'read-only'
|
---|
123 | */
|
---|
124 | typedef struct {
|
---|
125 | IRQ_SPINLOCK_DECLARE(lock);
|
---|
126 | size_t count;
|
---|
127 | zone_t info[ZONES_MAX];
|
---|
128 | } zones_t;
|
---|
129 |
|
---|
130 | extern zones_t zones;
|
---|
131 |
|
---|
132 | extern void frame_init(void);
|
---|
133 | extern bool frame_adjust_zone_bounds(bool, uintptr_t *, size_t *);
|
---|
134 | extern uintptr_t frame_alloc_generic(size_t, frame_flags_t, uintptr_t,
|
---|
135 | size_t *);
|
---|
136 | extern uintptr_t frame_alloc(size_t, frame_flags_t, uintptr_t);
|
---|
137 | extern void frame_free_generic(uintptr_t, size_t, frame_flags_t);
|
---|
138 | extern void frame_free(uintptr_t, size_t);
|
---|
139 | extern void frame_free_noreserve(uintptr_t, size_t);
|
---|
140 | extern void frame_reference_add(pfn_t);
|
---|
141 | extern size_t frame_total_free_get(void);
|
---|
142 |
|
---|
143 | extern size_t find_zone(pfn_t, size_t, size_t);
|
---|
144 | extern size_t zone_create(pfn_t, size_t, pfn_t, zone_flags_t);
|
---|
145 | extern void *frame_get_parent(pfn_t, size_t);
|
---|
146 | extern void frame_set_parent(pfn_t, void *, size_t);
|
---|
147 | extern void frame_mark_unavailable(pfn_t, size_t);
|
---|
148 | extern size_t zone_conf_size(size_t);
|
---|
149 | extern pfn_t zone_external_conf_alloc(size_t);
|
---|
150 | extern bool zone_merge(size_t, size_t);
|
---|
151 | extern void zone_merge_all(void);
|
---|
152 | extern uint64_t zones_total_size(void);
|
---|
153 | extern void zones_stats(uint64_t *, uint64_t *, uint64_t *, uint64_t *);
|
---|
154 |
|
---|
155 | /*
|
---|
156 | * Console functions
|
---|
157 | */
|
---|
158 | extern void zones_print_list(void);
|
---|
159 | extern void zone_print_one(size_t);
|
---|
160 |
|
---|
161 | #endif
|
---|
162 |
|
---|
163 | /** @}
|
---|
164 | */
|
---|