source: mainline/kernel/generic/src/mm/page.c@ a000878c

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since a000878c was 80dabb8d, checked in by Jakub Jermar <jakub@…>, 17 years ago

Add a comment explaining the reason for a memory barrier after page table update in detail.

  • Property mode set to 100644
File size: 5.3 KB
RevLine 
[f761f1eb]1/*
[df4ed85]2 * Copyright (c) 2001-2006 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
[cc73a8a1]29/** @addtogroup genericmm
[b45c443]30 * @{
31 */
32
[9179d0a]33/**
[b45c443]34 * @file
[9179d0a]35 * @brief Virtual Address Translation subsystem.
36 *
37 * This file contains code for creating, destroying and searching
38 * mappings between virtual addresses and physical addresses.
39 * Functions here are mere wrappers that call the real implementation.
40 * They however, define the single interface.
[20d50a1]41 */
42
[80dabb8d]43/*
44 * Note on memory prefetching and updating memory mappings, also described in:
45 * AMD x86-64 Architecture Programmer's Manual, Volume 2, System Programming,
46 * 7.2.1 Special Coherency Considerations.
47 *
48 * The processor which modifies a page table mapping can access prefetched data
49 * from the old mapping. In order to prevent this, we place a memory barrier
50 * after a mapping is updated.
51 *
52 * We assume that the other processors are either not using the mapping yet
53 * (i.e. during the bootstrap) or are executing the TLB shootdown code. While
54 * we don't care much about the former case, the processors in the latter case
55 * will do an implicit serialization by virtue of running the TLB shootdown
56 * interrupt handler.
57 */
58
[f761f1eb]59#include <mm/page.h>
60#include <arch/mm/page.h>
[677a6d5]61#include <arch/mm/asid.h>
[fc1e4f6]62#include <mm/as.h>
[677a6d5]63#include <mm/frame.h>
[11e9061d]64#include <arch/barrier.h>
[74df77d]65#include <arch/types.h>
[ff9f858]66#include <arch/asm.h>
[9c0a9b3]67#include <memstr.h>
[6d7ffa65]68#include <debug.h>
[677a6d5]69#include <arch.h>
[6d7ffa65]70
71/** Virtual operations for page subsystem. */
[f5935ed]72page_mapping_operations_t *page_mapping_operations = NULL;
[9c0a9b3]73
[f761f1eb]74void page_init(void)
[db3341e]75{
[f761f1eb]76 page_arch_init();
77}
[74df77d]78
79/** Map memory structure
80 *
81 * Identity-map memory structure
82 * considering possible crossings
83 * of page boundaries.
84 *
[11e9061d]85 * @param s Address of the structure.
86 * @param size Size of the structure.
[74df77d]87 */
[7f1c620]88void map_structure(uintptr_t s, size_t size)
[74df77d]89{
90 int i, cnt, length;
91
[cf85e24c]92 length = size + (s - (s & ~(PAGE_SIZE - 1)));
93 cnt = length / PAGE_SIZE + (length % PAGE_SIZE > 0);
[74df77d]94
[76cec1e]95 for (i = 0; i < cnt; i++)
[11e9061d]96 page_mapping_insert(AS_KERNEL, s + i * PAGE_SIZE,
97 s + i * PAGE_SIZE, PAGE_NOT_CACHEABLE | PAGE_WRITE);
[74df77d]98
[11e9061d]99 /* Repel prefetched accesses to the old mapping. */
100 memory_barrier();
[74df77d]101}
[ff9f858]102
[8f00329]103/** Insert mapping of page to frame.
[ff9f858]104 *
[9179d0a]105 * Map virtual address page to physical address frame
106 * using flags. Allocate and setup any missing page tables.
[ff9f858]107 *
[2299914]108 * The page table must be locked and interrupts must be disabled.
[ef67bab]109 *
[11e9061d]110 * @param as Address space to wich page belongs.
111 * @param page Virtual address of the page to be mapped.
112 * @param frame Physical address of memory frame to which the mapping is
113 * done.
114 * @param flags Flags to be used for mapping.
[ff9f858]115 */
[7f1c620]116void page_mapping_insert(as_t *as, uintptr_t page, uintptr_t frame, int flags)
[ff9f858]117{
[f5935ed]118 ASSERT(page_mapping_operations);
119 ASSERT(page_mapping_operations->mapping_insert);
[6d7ffa65]120
[f5935ed]121 page_mapping_operations->mapping_insert(as, page, frame, flags);
[11e9061d]122
123 /* Repel prefetched accesses to the old mapping. */
124 memory_barrier();
[ff9f858]125}
[1084a784]126
[8f00329]127/** Remove mapping of page.
128 *
[9179d0a]129 * Remove any mapping of page within address space as.
[8f00329]130 * TLB shootdown should follow in order to make effects of
131 * this call visible.
132 *
[2299914]133 * The page table must be locked and interrupts must be disabled.
[8f00329]134 *
[11e9061d]135 * @param as Address space to wich page belongs.
136 * @param page Virtual address of the page to be demapped.
[8f00329]137 */
[7f1c620]138void page_mapping_remove(as_t *as, uintptr_t page)
[8f00329]139{
140 ASSERT(page_mapping_operations);
141 ASSERT(page_mapping_operations->mapping_remove);
142
143 page_mapping_operations->mapping_remove(as, page);
[11e9061d]144
145 /* Repel prefetched accesses to the old mapping. */
146 memory_barrier();
[8f00329]147}
148
[1084a784]149/** Find mapping for virtual page
150 *
151 * Find mapping for virtual page.
152 *
[2299914]153 * The page table must be locked and interrupts must be disabled.
[ef67bab]154 *
[11e9061d]155 * @param as Address space to wich page belongs.
156 * @param page Virtual page.
[1084a784]157 *
[11e9061d]158 * @return NULL if there is no such mapping; requested mapping
159 * otherwise.
[1084a784]160 */
[7f1c620]161pte_t *page_mapping_find(as_t *as, uintptr_t page)
[1084a784]162{
[f5935ed]163 ASSERT(page_mapping_operations);
164 ASSERT(page_mapping_operations->mapping_find);
[1084a784]165
[f5935ed]166 return page_mapping_operations->mapping_find(as, page);
[1084a784]167}
[b45c443]168
[cc73a8a1]169/** @}
[b45c443]170 */
Note: See TracBrowser for help on using the repository browser.