source: mainline/kernel/arch/ia32/src/mm/frame.c@ a35b458

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since a35b458 was a35b458, checked in by Jiří Zárevúcky <zarevucky.jiri@…>, 8 years ago

style: Remove trailing whitespace on _all_ lines, including empty ones, for particular file types.

Command used: tools/srepl '\s\+$' '' -- *.c *.h *.py *.sh *.s *.S *.ag

Currently, whitespace on empty lines is very inconsistent.
There are two basic choices: Either remove the whitespace, or keep empty lines
indented to the level of surrounding code. The former is AFAICT more common,
and also much easier to do automatically.

Alternatively, we could write script for automatic indentation, and use that
instead. However, if such a script exists, it's possible to use the indented
style locally, by having the editor apply relevant conversions on load/save,
without affecting remote repository. IMO, it makes more sense to adopt
the simpler rule.

  • Property mode set to 100644
File size: 4.9 KB
Line 
1/*
2 * Copyright (c) 2008 Jakub Jermar
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 *
9 * - Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 * - Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in the
13 * documentation and/or other materials provided with the distribution.
14 * - The name of the author may not be used to endorse or promote products
15 * derived from this software without specific prior written permission.
16 *
17 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
18 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 */
28
29/** @addtogroup ia32mm
30 * @{
31 */
32/** @file
33 * @ingroup ia32mm, amd64mm
34 */
35
36#include <mm/frame.h>
37#include <arch/mm/frame.h>
38#include <mm/as.h>
39#include <config.h>
40#include <arch/boot/boot.h>
41#include <arch/boot/memmap.h>
42#include <panic.h>
43#include <debug.h>
44#include <align.h>
45#include <macros.h>
46#include <print.h>
47
48#define PHYSMEM_LIMIT32 UINT64_C(0x100000000)
49
50size_t hardcoded_unmapped_ktext_size = 0;
51size_t hardcoded_unmapped_kdata_size = 0;
52
53static void init_e820_memory(pfn_t minconf, bool low)
54{
55 unsigned int i;
56
57 for (i = 0; i < e820counter; i++) {
58 uint64_t base64 = e820table[i].base_address;
59 uint64_t size64 = e820table[i].size;
60
61#ifdef KARCH_ia32
62 /*
63 * Restrict the e820 table entries to 32-bits.
64 */
65 if (base64 >= PHYSMEM_LIMIT32)
66 continue;
67
68 if (base64 + size64 > PHYSMEM_LIMIT32)
69 size64 = PHYSMEM_LIMIT32 - base64;
70#endif
71
72 uintptr_t base = (uintptr_t) base64;
73 size_t size = (size_t) size64;
74
75 if (!frame_adjust_zone_bounds(low, &base, &size))
76 continue;
77
78 if (e820table[i].type == MEMMAP_MEMORY_AVAILABLE) {
79 /* To be safe, make the available zone possibly smaller */
80 uint64_t new_base = ALIGN_UP(base, FRAME_SIZE);
81 uint64_t new_size = ALIGN_DOWN(size - (new_base - base),
82 FRAME_SIZE);
83
84 size_t count = SIZE2FRAMES(new_size);
85 pfn_t pfn = ADDR2PFN(new_base);
86 pfn_t conf;
87
88 if (low) {
89 if ((minconf < pfn) || (minconf >= pfn + count))
90 conf = pfn;
91 else
92 conf = minconf;
93 zone_create(pfn, count, conf,
94 ZONE_AVAILABLE | ZONE_LOWMEM);
95 } else {
96 conf = zone_external_conf_alloc(count);
97 if (conf != 0)
98 zone_create(pfn, count, conf,
99 ZONE_AVAILABLE | ZONE_HIGHMEM);
100 }
101 } else if ((e820table[i].type == MEMMAP_MEMORY_ACPI) ||
102 (e820table[i].type == MEMMAP_MEMORY_NVS)) {
103 /* To be safe, make the firmware zone possibly larger */
104 uint64_t new_base = ALIGN_DOWN(base, FRAME_SIZE);
105 uint64_t new_size = ALIGN_UP(size + (base - new_base),
106 FRAME_SIZE);
107
108 zone_create(ADDR2PFN(new_base), SIZE2FRAMES(new_size), 0,
109 ZONE_FIRMWARE);
110 } else {
111 /* To be safe, make the reserved zone possibly larger */
112 uint64_t new_base = ALIGN_DOWN(base, FRAME_SIZE);
113 uint64_t new_size = ALIGN_UP(size + (base - new_base),
114 FRAME_SIZE);
115
116 zone_create(ADDR2PFN(new_base), SIZE2FRAMES(new_size), 0,
117 ZONE_RESERVED);
118 }
119 }
120}
121
122static const char *e820names[] = {
123 "invalid",
124 "available",
125 "reserved",
126 "acpi",
127 "nvs",
128 "unusable"
129};
130
131void physmem_print(void)
132{
133 unsigned int i;
134 printf("[base ] [size ] [name ]\n");
135
136 for (i = 0; i < e820counter; i++) {
137 const char *name;
138
139 if (e820table[i].type <= MEMMAP_MEMORY_UNUSABLE)
140 name = e820names[e820table[i].type];
141 else
142 name = "invalid";
143
144 printf("%#018" PRIx64 " %#018" PRIx64" %s\n", e820table[i].base_address,
145 e820table[i].size, name);
146 }
147}
148
149void frame_low_arch_init(void)
150{
151 pfn_t minconf;
152
153 if (config.cpu_active == 1) {
154 minconf = 1;
155
156#ifdef CONFIG_SMP
157 minconf = max(minconf,
158 ADDR2PFN(AP_BOOT_OFFSET + hardcoded_unmapped_ktext_size +
159 hardcoded_unmapped_kdata_size));
160#endif
161
162 init_e820_memory(minconf, true);
163
164 /* Reserve frame 0 (BIOS data) */
165 frame_mark_unavailable(0, 1);
166
167#ifdef CONFIG_SMP
168 /* Reserve AP real mode bootstrap memory */
169 frame_mark_unavailable(AP_BOOT_OFFSET >> FRAME_WIDTH,
170 (hardcoded_unmapped_ktext_size +
171 hardcoded_unmapped_kdata_size) >> FRAME_WIDTH);
172#endif
173 }
174}
175
176void frame_high_arch_init(void)
177{
178 if (config.cpu_active == 1)
179 init_e820_memory(0, false);
180}
181
182/** @}
183 */
Note: See TracBrowser for help on using the repository browser.