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

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since 9f0fb84 was 40c8c17, checked in by Jakub Jermar <jakub@…>, 14 years ago

Replace multiple definitions of last_frame with config.physmem_end.
Do not duplicate code which calculates the end of physical memory.

  • Property mode set to 100644
File size: 4.6 KB
RevLine 
[f761f1eb]1/*
[4bb31f7]2 * Copyright (c) 2008 Jakub Jermar
[f761f1eb]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
[a000878c]29/** @addtogroup ia32mm
[b45c443]30 * @{
31 */
32/** @file
33 * @ingroup ia32mm, amd64mm
34 */
35
[f761f1eb]36#include <mm/frame.h>
37#include <arch/mm/frame.h>
[20d50a1]38#include <mm/as.h>
[f761f1eb]39#include <config.h>
[f6297e0]40#include <arch/boot/boot.h>
[5d721f0]41#include <arch/boot/memmap.h>
[84dd253]42#include <panic.h>
[328f2934]43#include <debug.h>
[95498e5]44#include <align.h>
[085d973]45#include <macros.h>
46#include <print.h>
47
[f6297e0]48size_t hardcoded_unmapped_ktext_size = 0;
49size_t hardcoded_unmapped_kdata_size = 0;
[f761f1eb]50
[80d301ab]51static void init_e820_memory(pfn_t minconf, bool low)
[085d973]52{
[b07c332]53 unsigned int i;
[cae5404]54
[085d973]55 for (i = 0; i < e820counter; i++) {
[ad12b5ea]56 uintptr_t base = (uintptr_t) e820table[i].base_address;
57 size_t size = (size_t) e820table[i].size;
[e49e234]58
[ad12b5ea]59 if (!frame_adjust_zone_bounds(low, &base, &size))
60 continue;
[cae5404]61
[085d973]62 if (e820table[i].type == MEMMAP_MEMORY_AVAILABLE) {
[720db0c]63 /* To be safe, make the available zone possibly smaller */
64 uint64_t new_base = ALIGN_UP(base, FRAME_SIZE);
65 uint64_t new_size = ALIGN_DOWN(size - (new_base - base),
66 FRAME_SIZE);
67
68 size_t count = SIZE2FRAMES(new_size);
[80d301ab]69 pfn_t pfn = ADDR2PFN(new_base);
[e49e234]70 pfn_t conf;
[b07c332]71
[80d301ab]72 if (low) {
73 if ((minconf < pfn) || (minconf >= pfn + count))
74 conf = pfn;
75 else
76 conf = minconf;
77 zone_create(pfn, count, conf,
78 ZONE_AVAILABLE | ZONE_LOWMEM);
79 } else {
80 conf = zone_external_conf_alloc(count);
81 zone_create(pfn, count, conf,
82 ZONE_AVAILABLE | ZONE_HIGHMEM);
83 }
[142084b2]84 } else if ((e820table[i].type == MEMMAP_MEMORY_ACPI) ||
85 (e820table[i].type == MEMMAP_MEMORY_NVS)) {
86 /* To be safe, make the firmware zone possibly larger */
[720db0c]87 uint64_t new_base = ALIGN_DOWN(base, FRAME_SIZE);
88 uint64_t new_size = ALIGN_UP(size + (base - new_base),
89 FRAME_SIZE);
[e49e234]90
[720db0c]91 zone_create(ADDR2PFN(new_base), SIZE2FRAMES(new_size), 0,
[142084b2]92 ZONE_FIRMWARE);
93 } else {
94 /* To be safe, make the reserved zone possibly larger */
[720db0c]95 uint64_t new_base = ALIGN_DOWN(base, FRAME_SIZE);
96 uint64_t new_size = ALIGN_UP(size + (base - new_base),
97 FRAME_SIZE);
[e49e234]98
[720db0c]99 zone_create(ADDR2PFN(new_base), SIZE2FRAMES(new_size), 0,
[142084b2]100 ZONE_RESERVED);
[ae318d3]101 }
[085d973]102 }
103}
104
[a000878c]105static const char *e820names[] = {
[a7df23c]106 "invalid",
107 "available",
108 "reserved",
109 "acpi",
110 "nvs",
111 "unusable"
112};
[085d973]113
[b07c332]114void physmem_print(void)
[085d973]115{
[43b1e86]116 unsigned int i;
[33dac7d]117 printf("[base ] [size ] [name ]\n");
[43b1e86]118
[085d973]119 for (i = 0; i < e820counter; i++) {
[33dac7d]120 const char *name;
121
[085d973]122 if (e820table[i].type <= MEMMAP_MEMORY_UNUSABLE)
123 name = e820names[e820table[i].type];
124 else
125 name = "invalid";
[43b1e86]126
[33dac7d]127 printf("%#018" PRIx64 " %#018" PRIx64" %s\n", e820table[i].base_address,
[ba4a63b8]128 e820table[i].size, name);
[0b5f9fa]129 }
[085d973]130}
131
132
[ddcc8a0]133void frame_low_arch_init(void)
[f761f1eb]134{
[b07c332]135 pfn_t minconf;
[4cc2ddd]136
[f761f1eb]137 if (config.cpu_active == 1) {
[085d973]138 minconf = 1;
[ae318d3]139
[085d973]140#ifdef CONFIG_SMP
141 minconf = max(minconf,
[ba4a63b8]142 ADDR2PFN(AP_BOOT_OFFSET + hardcoded_unmapped_ktext_size +
143 hardcoded_unmapped_kdata_size));
[085d973]144#endif
[33dac7d]145
[80d301ab]146 init_e820_memory(minconf, true);
[ae318d3]147
[328f2934]148 /* Reserve frame 0 (BIOS data) */
[085d973]149 frame_mark_unavailable(0, 1);
[328f2934]150
[66def8d]151#ifdef CONFIG_SMP
152 /* Reserve AP real mode bootstrap memory */
[142084b2]153 frame_mark_unavailable(AP_BOOT_OFFSET >> FRAME_WIDTH,
[ba4a63b8]154 (hardcoded_unmapped_ktext_size +
155 hardcoded_unmapped_kdata_size) >> FRAME_WIDTH);
[66def8d]156#endif
[f761f1eb]157 }
158}
[b45c443]159
[ddcc8a0]160void frame_high_arch_init(void)
161{
[80d301ab]162 if (config.cpu_active == 1)
163 init_e820_memory(0, false);
[ddcc8a0]164}
165
[06e1e95]166/** @}
[b45c443]167 */
Note: See TracBrowser for help on using the repository browser.