source: mainline/kernel/generic/include/mm/frame.h@ 516adce

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since 516adce was 516adce, checked in by Stanislav Kozina <stanislav.kozina@…>, 15 years ago

top echoes also physical memory overview

  • Property mode set to 100644
File size: 5.8 KB
RevLine 
[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>
[5c9a08b]40#include <adt/list.h>
[6e8b3c8]41#include <mm/buddy.h>
[e49e234]42#include <synch/spinlock.h>
[085d973]43#include <arch/mm/page.h>
[a82500ce]44#include <arch/mm/frame.h>
[f761f1eb]45
[5f0f29ce]46#define ONE_FRAME 0
47#define TWO_FRAMES 1
48#define FOUR_FRAMES 2
[6b781c0]49
[a82500ce]50
51#ifdef ARCH_STACK_FRAMES
[5f0f29ce]52 #define STACK_FRAMES ARCH_STACK_FRAMES
[a82500ce]53#else
[5f0f29ce]54 #define STACK_FRAMES ONE_FRAME
[a82500ce]55#endif
56
[5f0f29ce]57/** Maximum number of zones in the system. */
58#define ZONES_MAX 32
[085d973]59
[5f0f29ce]60typedef uint8_t frame_flags_t;
61
62/** Convert the frame address to kernel VA. */
63#define FRAME_KA 0x01
[b43eaba0]64/** Do not panic and do not sleep on failure. */
[5f0f29ce]65#define FRAME_ATOMIC 0x02
[b43eaba0]66/** Do not start reclaiming when no free memory. */
[5f0f29ce]67#define FRAME_NO_RECLAIM 0x04
68
69typedef uint8_t zone_flags_t;
70
[e49e234]71/** Available zone (free for allocation) */
72#define ZONE_AVAILABLE 0x00
[5f0f29ce]73/** Zone is reserved (not available for allocation) */
[e49e234]74#define ZONE_RESERVED 0x08
[5f0f29ce]75/** Zone is used by firmware (not available for allocation) */
[e49e234]76#define ZONE_FIRMWARE 0x10
[5f0f29ce]77
78/** Currently there is no equivalent zone flags
79 for frame flags */
80#define FRAME_TO_ZONE_FLAGS(frame_flags) 0
[f275cb3]81
[e49e234]82typedef struct {
[98000fb]83 size_t refcount; /**< Tracking of shared frames */
[e49e234]84 uint8_t buddy_order; /**< Buddy system block order */
85 link_t buddy_link; /**< Link to the next free block inside
86 one order */
87 void *parent; /**< If allocated by slab, this points there */
88} frame_t;
89
90typedef struct {
91 pfn_t base; /**< Frame_no of the first frame
92 in the frames array */
[98000fb]93 size_t count; /**< Size of zone */
94 size_t free_count; /**< Number of free frame_t
[e49e234]95 structures */
[98000fb]96 size_t busy_count; /**< Number of busy frame_t
[e49e234]97 structures */
98 zone_flags_t flags; /**< Type of the zone */
99
100 frame_t *frames; /**< Array of frame_t structures
101 in this zone */
102 buddy_system_t *buddy_system; /**< Buddy system for the zone */
103} zone_t;
104
105/*
106 * The zoneinfo.lock must be locked when accessing zoneinfo structure.
107 * Some of the attributes in zone_t structures are 'read-only'
108 */
109typedef struct {
110 SPINLOCK_DECLARE(lock);
[98000fb]111 size_t count;
[e49e234]112 zone_t info[ZONES_MAX];
113} zones_t;
114
115extern zones_t zones;
116
[7f1c620]117static inline uintptr_t PFN2ADDR(pfn_t frame)
[085d973]118{
[b43eaba0]119 return (uintptr_t) (frame << FRAME_WIDTH);
[085d973]120}
121
[7f1c620]122static inline pfn_t ADDR2PFN(uintptr_t addr)
[085d973]123{
[b43eaba0]124 return (pfn_t) (addr >> FRAME_WIDTH);
[085d973]125}
126
[98000fb]127static inline size_t SIZE2FRAMES(size_t size)
[085d973]128{
129 if (!size)
130 return 0;
[98000fb]131 return (size_t) ((size - 1) >> FRAME_WIDTH) + 1;
[085d973]132}
133
[98000fb]134static inline size_t FRAMES2SIZE(size_t frames)
[71eef11]135{
136 return (size_t) (frames << FRAME_WIDTH);
137}
138
[e49e234]139static inline bool zone_flags_available(zone_flags_t flags)
140{
141 return ((flags & (ZONE_RESERVED | ZONE_FIRMWARE)) == 0);
142}
143
[5f0f29ce]144#define IS_BUDDY_ORDER_OK(index, order) \
[5f7a0ef]145 ((~(((unative_t) -1) << (order)) & (index)) == 0)
[5f0f29ce]146#define IS_BUDDY_LEFT_BLOCK(zone, frame) \
147 (((frame_index((zone), (frame)) >> (frame)->buddy_order) & 0x01) == 0)
148#define IS_BUDDY_RIGHT_BLOCK(zone, frame) \
149 (((frame_index((zone), (frame)) >> (frame)->buddy_order) & 0x01) == 1)
150#define IS_BUDDY_LEFT_BLOCK_ABS(zone, frame) \
151 (((frame_index_abs((zone), (frame)) >> (frame)->buddy_order) & 0x01) == 0)
152#define IS_BUDDY_RIGHT_BLOCK_ABS(zone, frame) \
153 (((frame_index_abs((zone), (frame)) >> (frame)->buddy_order) & 0x01) == 1)
154
155#define frame_alloc(order, flags) \
[5f7a0ef]156 frame_alloc_generic(order, flags, NULL)
[9b9e385]157
[f761f1eb]158extern void frame_init(void);
[98000fb]159extern void *frame_alloc_generic(uint8_t, frame_flags_t, size_t *);
[5f7a0ef]160extern void frame_free(uintptr_t);
161extern void frame_reference_add(pfn_t);
162
[98000fb]163extern size_t find_zone(pfn_t frame, size_t count, size_t hint);
164extern size_t zone_create(pfn_t, size_t, pfn_t, zone_flags_t);
165extern void *frame_get_parent(pfn_t, size_t);
166extern void frame_set_parent(pfn_t, void *, size_t);
167extern void frame_mark_unavailable(pfn_t, size_t);
168extern uintptr_t zone_conf_size(size_t);
169extern bool zone_merge(size_t, size_t);
[71eef11]170extern void zone_merge_all(void);
171extern uint64_t zone_total_size(void);
[516adce]172extern void zone_busy_and_free(uint64_t *out_busy, uint64_t *out_free);
[dfd9186]173
174/*
175 * Console functions
176 */
177extern void zone_print_list(void);
[98000fb]178extern void zone_print_one(size_t);
[dfd9186]179
[f761f1eb]180#endif
[b45c443]181
[32fffef0]182/** @}
[b45c443]183 */
Note: See TracBrowser for help on using the repository browser.