[f761f1eb] | 1 | /*
|
---|
[df4ed85] | 2 | * Copyright (c) 2005 Jakub Jermar
|
---|
| 3 | * Copyright (c) 2005 Sergey Bondari
|
---|
[f761f1eb] | 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 |
|
---|
[32fffef0] | 30 | /** @addtogroup genericmm
|
---|
[b45c443] | 31 | * @{
|
---|
| 32 | */
|
---|
| 33 | /** @file
|
---|
| 34 | */
|
---|
| 35 |
|
---|
[32fffef0] | 36 | #ifndef KERN_FRAME_H_
|
---|
| 37 | #define KERN_FRAME_H_
|
---|
[f761f1eb] | 38 |
|
---|
[d99c1d2] | 39 | #include <typedefs.h>
|
---|
[7a0359b] | 40 | #include <trace.h>
|
---|
[5c9a08b] | 41 | #include <adt/list.h>
|
---|
[6e8b3c8] | 42 | #include <mm/buddy.h>
|
---|
[e49e234] | 43 | #include <synch/spinlock.h>
|
---|
[085d973] | 44 | #include <arch/mm/page.h>
|
---|
[a82500ce] | 45 | #include <arch/mm/frame.h>
|
---|
[f761f1eb] | 46 |
|
---|
[5f0f29ce] | 47 | /** Maximum number of zones in the system. */
|
---|
| 48 | #define ZONES_MAX 32
|
---|
[085d973] | 49 |
|
---|
[5f0f29ce] | 50 | typedef uint8_t frame_flags_t;
|
---|
| 51 |
|
---|
| 52 | /** Convert the frame address to kernel VA. */
|
---|
[5d853bd] | 53 | #define FRAME_KA 0x1
|
---|
[b43eaba0] | 54 | /** Do not panic and do not sleep on failure. */
|
---|
[5d853bd] | 55 | #define FRAME_ATOMIC 0x2
|
---|
[b43eaba0] | 56 | /** Do not start reclaiming when no free memory. */
|
---|
[5d853bd] | 57 | #define FRAME_NO_RECLAIM 0x4
|
---|
[1433f93e] | 58 | /** Do not reserve / unreserve memory. */
|
---|
| 59 | #define FRAME_NO_RESERVE 0x8
|
---|
[5f0f29ce] | 60 |
|
---|
| 61 | typedef uint8_t zone_flags_t;
|
---|
| 62 |
|
---|
[e49e234] | 63 | /** Available zone (free for allocation) */
|
---|
[5d853bd] | 64 | #define ZONE_AVAILABLE 0x0
|
---|
[5f0f29ce] | 65 | /** Zone is reserved (not available for allocation) */
|
---|
[5d853bd] | 66 | #define ZONE_RESERVED 0x8
|
---|
[5f0f29ce] | 67 | /** Zone is used by firmware (not available for allocation) */
|
---|
[e49e234] | 68 | #define ZONE_FIRMWARE 0x10
|
---|
[5f0f29ce] | 69 |
|
---|
| 70 | /** Currently there is no equivalent zone flags
|
---|
| 71 | for frame flags */
|
---|
| 72 | #define FRAME_TO_ZONE_FLAGS(frame_flags) 0
|
---|
[f275cb3] | 73 |
|
---|
[e49e234] | 74 | typedef struct {
|
---|
[da1bafb] | 75 | size_t refcount; /**< Tracking of shared frames */
|
---|
[e49e234] | 76 | uint8_t buddy_order; /**< Buddy system block order */
|
---|
| 77 | link_t buddy_link; /**< Link to the next free block inside
|
---|
[5d853bd] | 78 | one order */
|
---|
[e49e234] | 79 | void *parent; /**< If allocated by slab, this points there */
|
---|
| 80 | } frame_t;
|
---|
| 81 |
|
---|
| 82 | typedef struct {
|
---|
| 83 | pfn_t base; /**< Frame_no of the first frame
|
---|
[5d853bd] | 84 | in the frames array */
|
---|
[da1bafb] | 85 | size_t count; /**< Size of zone */
|
---|
| 86 | size_t free_count; /**< Number of free frame_t
|
---|
[5d853bd] | 87 | structures */
|
---|
[da1bafb] | 88 | size_t busy_count; /**< Number of busy frame_t
|
---|
[5d853bd] | 89 | structures */
|
---|
[e49e234] | 90 | zone_flags_t flags; /**< Type of the zone */
|
---|
| 91 |
|
---|
| 92 | frame_t *frames; /**< Array of frame_t structures
|
---|
[5d853bd] | 93 | in this zone */
|
---|
[e49e234] | 94 | buddy_system_t *buddy_system; /**< Buddy system for the zone */
|
---|
| 95 | } zone_t;
|
---|
| 96 |
|
---|
| 97 | /*
|
---|
| 98 | * The zoneinfo.lock must be locked when accessing zoneinfo structure.
|
---|
| 99 | * Some of the attributes in zone_t structures are 'read-only'
|
---|
| 100 | */
|
---|
| 101 | typedef struct {
|
---|
[da1bafb] | 102 | IRQ_SPINLOCK_DECLARE(lock);
|
---|
[98000fb] | 103 | size_t count;
|
---|
[e49e234] | 104 | zone_t info[ZONES_MAX];
|
---|
| 105 | } zones_t;
|
---|
| 106 |
|
---|
| 107 | extern zones_t zones;
|
---|
| 108 |
|
---|
[7a0359b] | 109 | NO_TRACE static inline uintptr_t PFN2ADDR(pfn_t frame)
|
---|
[085d973] | 110 | {
|
---|
[b43eaba0] | 111 | return (uintptr_t) (frame << FRAME_WIDTH);
|
---|
[085d973] | 112 | }
|
---|
| 113 |
|
---|
[7a0359b] | 114 | NO_TRACE static inline pfn_t ADDR2PFN(uintptr_t addr)
|
---|
[085d973] | 115 | {
|
---|
[b43eaba0] | 116 | return (pfn_t) (addr >> FRAME_WIDTH);
|
---|
[085d973] | 117 | }
|
---|
| 118 |
|
---|
[7a0359b] | 119 | NO_TRACE static inline size_t SIZE2FRAMES(size_t size)
|
---|
[085d973] | 120 | {
|
---|
| 121 | if (!size)
|
---|
| 122 | return 0;
|
---|
[98000fb] | 123 | return (size_t) ((size - 1) >> FRAME_WIDTH) + 1;
|
---|
[085d973] | 124 | }
|
---|
| 125 |
|
---|
[7a0359b] | 126 | NO_TRACE static inline size_t FRAMES2SIZE(size_t frames)
|
---|
[71eef11] | 127 | {
|
---|
| 128 | return (size_t) (frames << FRAME_WIDTH);
|
---|
| 129 | }
|
---|
| 130 |
|
---|
[7a0359b] | 131 | NO_TRACE static inline bool zone_flags_available(zone_flags_t flags)
|
---|
[e49e234] | 132 | {
|
---|
| 133 | return ((flags & (ZONE_RESERVED | ZONE_FIRMWARE)) == 0);
|
---|
| 134 | }
|
---|
| 135 |
|
---|
[5f0f29ce] | 136 | #define IS_BUDDY_ORDER_OK(index, order) \
|
---|
[96b02eb9] | 137 | ((~(((sysarg_t) -1) << (order)) & (index)) == 0)
|
---|
[5f0f29ce] | 138 | #define IS_BUDDY_LEFT_BLOCK(zone, frame) \
|
---|
[5d853bd] | 139 | (((frame_index((zone), (frame)) >> (frame)->buddy_order) & 0x1) == 0)
|
---|
[5f0f29ce] | 140 | #define IS_BUDDY_RIGHT_BLOCK(zone, frame) \
|
---|
[5d853bd] | 141 | (((frame_index((zone), (frame)) >> (frame)->buddy_order) & 0x1) == 1)
|
---|
[5f0f29ce] | 142 | #define IS_BUDDY_LEFT_BLOCK_ABS(zone, frame) \
|
---|
[5d853bd] | 143 | (((frame_index_abs((zone), (frame)) >> (frame)->buddy_order) & 0x1) == 0)
|
---|
[5f0f29ce] | 144 | #define IS_BUDDY_RIGHT_BLOCK_ABS(zone, frame) \
|
---|
[5d853bd] | 145 | (((frame_index_abs((zone), (frame)) >> (frame)->buddy_order) & 0x1) == 1)
|
---|
[5f0f29ce] | 146 |
|
---|
[f761f1eb] | 147 | extern void frame_init(void);
|
---|
[98000fb] | 148 | extern void *frame_alloc_generic(uint8_t, frame_flags_t, size_t *);
|
---|
[0139747] | 149 | extern void *frame_alloc(uint8_t, frame_flags_t);
|
---|
[e608cbe] | 150 | extern void *frame_alloc_noreserve(uint8_t, frame_flags_t);
|
---|
[c32e6bc] | 151 | extern void frame_free_generic(uintptr_t, frame_flags_t);
|
---|
[5f7a0ef] | 152 | extern void frame_free(uintptr_t);
|
---|
[e608cbe] | 153 | extern void frame_free_noreserve(uintptr_t);
|
---|
[5f7a0ef] | 154 | extern void frame_reference_add(pfn_t);
|
---|
[8d308b9] | 155 | extern size_t frame_total_free_get(void);
|
---|
[5f7a0ef] | 156 |
|
---|
[5d853bd] | 157 | extern size_t find_zone(pfn_t, size_t, size_t);
|
---|
[98000fb] | 158 | extern size_t zone_create(pfn_t, size_t, pfn_t, zone_flags_t);
|
---|
| 159 | extern void *frame_get_parent(pfn_t, size_t);
|
---|
| 160 | extern void frame_set_parent(pfn_t, void *, size_t);
|
---|
| 161 | extern void frame_mark_unavailable(pfn_t, size_t);
|
---|
[bbfdf62] | 162 | extern size_t zone_conf_size(size_t);
|
---|
[98000fb] | 163 | extern bool zone_merge(size_t, size_t);
|
---|
[71eef11] | 164 | extern void zone_merge_all(void);
|
---|
[9dae191e] | 165 | extern uint64_t zones_total_size(void);
|
---|
| 166 | extern void zones_stats(uint64_t *, uint64_t *, uint64_t *, uint64_t *);
|
---|
[dfd9186] | 167 |
|
---|
| 168 | /*
|
---|
| 169 | * Console functions
|
---|
| 170 | */
|
---|
[9dae191e] | 171 | extern void zones_print_list(void);
|
---|
[98000fb] | 172 | extern void zone_print_one(size_t);
|
---|
[dfd9186] | 173 |
|
---|
[f761f1eb] | 174 | #endif
|
---|
[b45c443] | 175 |
|
---|
[32fffef0] | 176 | /** @}
|
---|
[b45c443] | 177 | */
|
---|