Subversion Repositories HelenOS

Rev

Rev 3128 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
1 jermar 1
/*
2071 jermar 2
 * Copyright (c) 2001-2006 Jakub Jermar
1 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
 
1757 jermar 29
/** @addtogroup genericmm
1702 cejka 30
 * @{
31
 */
32
 
1248 jermar 33
/**
1702 cejka 34
 * @file
1248 jermar 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.
703 jermar 41
 */
42
 
3130 jermar 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
 
1 jermar 59
#include <mm/page.h>
687 jermar 60
#include <arch/mm/page.h>
61
#include <arch/mm/asid.h>
755 jermar 62
#include <mm/as.h>
120 jermar 63
#include <mm/frame.h>
3128 jermar 64
#include <arch/barrier.h>
116 jermar 65
#include <arch/types.h>
120 jermar 66
#include <arch/asm.h>
195 vana 67
#include <memstr.h>
684 jermar 68
#include <debug.h>
687 jermar 69
#include <arch.h>
1 jermar 70
 
684 jermar 71
/** Virtual operations for page subsystem. */
793 jermar 72
page_mapping_operations_t *page_mapping_operations = NULL;
684 jermar 73
 
1 jermar 74
void page_init(void)
226 palkovsky 75
{
23 jermar 76
    page_arch_init();
1 jermar 77
}
116 jermar 78
 
79
/** Map memory structure
80
 *
81
 * Identity-map memory structure
82
 * considering possible crossings
83
 * of page boundaries.
84
 *
3128 jermar 85
 * @param s     Address of the structure.
86
 * @param size      Size of the structure.
116 jermar 87
 */
1780 jermar 88
void map_structure(uintptr_t s, size_t size)
116 jermar 89
{
90
    int i, cnt, length;
91
 
1221 decky 92
    length = size + (s - (s & ~(PAGE_SIZE - 1)));
93
    cnt = length / PAGE_SIZE + (length % PAGE_SIZE > 0);
116 jermar 94
 
125 jermar 95
    for (i = 0; i < cnt; i++)
3128 jermar 96
        page_mapping_insert(AS_KERNEL, s + i * PAGE_SIZE,
97
            s + i * PAGE_SIZE, PAGE_NOT_CACHEABLE | PAGE_WRITE);
116 jermar 98
 
3128 jermar 99
    /* Repel prefetched accesses to the old mapping. */
100
    memory_barrier();
116 jermar 101
}
120 jermar 102
 
826 jermar 103
/** Insert mapping of page to frame.
120 jermar 104
 *
1248 jermar 105
 * Map virtual address page to physical address frame
106
 * using flags. Allocate and setup any missing page tables.
120 jermar 107
 *
1044 jermar 108
 * The page table must be locked and interrupts must be disabled.
756 jermar 109
 *
3128 jermar 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.
120 jermar 115
 */
1780 jermar 116
void page_mapping_insert(as_t *as, uintptr_t page, uintptr_t frame, int flags)
120 jermar 117
{
793 jermar 118
    ASSERT(page_mapping_operations);
119
    ASSERT(page_mapping_operations->mapping_insert);
684 jermar 120
 
793 jermar 121
    page_mapping_operations->mapping_insert(as, page, frame, flags);
3128 jermar 122
 
123
    /* Repel prefetched accesses to the old mapping. */
124
    memory_barrier();
120 jermar 125
}
391 jermar 126
 
826 jermar 127
/** Remove mapping of page.
128
 *
1248 jermar 129
 * Remove any mapping of page within address space as.
826 jermar 130
 * TLB shootdown should follow in order to make effects of
131
 * this call visible.
132
 *
1044 jermar 133
 * The page table must be locked and interrupts must be disabled.
826 jermar 134
 *
3128 jermar 135
 * @param as        Address space to wich page belongs.
136
 * @param page      Virtual address of the page to be demapped.
826 jermar 137
 */
1780 jermar 138
void page_mapping_remove(as_t *as, uintptr_t page)
826 jermar 139
{
140
    ASSERT(page_mapping_operations);
141
    ASSERT(page_mapping_operations->mapping_remove);
142
 
143
    page_mapping_operations->mapping_remove(as, page);
3128 jermar 144
 
145
    /* Repel prefetched accesses to the old mapping. */
146
    memory_barrier();
826 jermar 147
}
148
 
391 jermar 149
/** Find mapping for virtual page
150
 *
151
 * Find mapping for virtual page.
152
 *
1044 jermar 153
 * The page table must be locked and interrupts must be disabled.
756 jermar 154
 *
3128 jermar 155
 * @param as        Address space to wich page belongs.
156
 * @param page      Virtual page.
391 jermar 157
 *
3128 jermar 158
 * @return      NULL if there is no such mapping; requested mapping
159
 *          otherwise.
391 jermar 160
 */
1780 jermar 161
pte_t *page_mapping_find(as_t *as, uintptr_t page)
391 jermar 162
{
793 jermar 163
    ASSERT(page_mapping_operations);
164
    ASSERT(page_mapping_operations->mapping_find);
391 jermar 165
 
793 jermar 166
    return page_mapping_operations->mapping_find(as, page);
391 jermar 167
}
1702 cejka 168
 
1757 jermar 169
/** @}
1702 cejka 170
 */