Subversion Repositories HelenOS-historic

Rev

Rev 1595 | Rev 1705 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
219 palkovsky 1
/*
2
 * Copyright (C) 2001-2004 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
 
1702 cejka 29
 /** @addtogroup amd64mm amd64 
30
  * @ingroup mm
31
 * @{
32
 */
33
/** @file
34
 * @ingroup amd64
35
 */
36
 
540 jermar 37
#include <arch/mm/page.h>
684 jermar 38
#include <genarch/mm/page_pt.h>
540 jermar 39
#include <arch/mm/frame.h>
219 palkovsky 40
#include <mm/page.h>
226 palkovsky 41
#include <mm/frame.h>
755 jermar 42
#include <mm/as.h>
226 palkovsky 43
#include <arch/interrupt.h>
44
#include <arch/asm.h>
45
#include <config.h>
46
#include <memstr.h>
576 palkovsky 47
#include <interrupt.h>
1051 jermar 48
#include <print.h>
49
#include <panic.h>
1063 palkovsky 50
#include <align.h>
226 palkovsky 51
 
1051 jermar 52
/* Definitions for identity page mapper */
53
pte_t helper_ptl1[512] __attribute__((aligned (PAGE_SIZE)));
54
pte_t helper_ptl2[512] __attribute__((aligned (PAGE_SIZE)));
55
pte_t helper_ptl3[512] __attribute__((aligned (PAGE_SIZE)));
56
extern pte_t ptl_0; /* From boot.S */
57
 
58
#define PTL1_PRESENT(ptl0, page) (!(GET_PTL1_FLAGS_ARCH(ptl0, PTL0_INDEX_ARCH(page)) & PAGE_NOT_PRESENT))
59
#define PTL2_PRESENT(ptl1, page) (!(GET_PTL2_FLAGS_ARCH(ptl1, PTL1_INDEX_ARCH(page)) & PAGE_NOT_PRESENT))
60
#define PTL3_PRESENT(ptl2, page) (!(GET_PTL3_FLAGS_ARCH(ptl2, PTL2_INDEX_ARCH(page)) & PAGE_NOT_PRESENT))
61
 
62
#define PTL1_ADDR(ptl0, page) ((pte_t *)PA2KA(GET_PTL1_ADDRESS_ARCH(ptl0, PTL0_INDEX_ARCH(page))))
63
#define PTL2_ADDR(ptl1, page) ((pte_t *)PA2KA(GET_PTL2_ADDRESS_ARCH(ptl1, PTL1_INDEX_ARCH(page))))
64
#define PTL3_ADDR(ptl2, page) ((pte_t *)PA2KA(GET_PTL3_ADDRESS_ARCH(ptl2, PTL2_INDEX_ARCH(page))))
65
 
66
#define SETUP_PTL1(ptl0, page, tgt)  {  \
67
    SET_PTL1_ADDRESS_ARCH(ptl0, PTL0_INDEX_ARCH(page), (__address)KA2PA(tgt)); \
68
        SET_PTL1_FLAGS_ARCH(ptl0, PTL0_INDEX_ARCH(page), PAGE_WRITE | PAGE_EXEC); \
69
    }
70
#define SETUP_PTL2(ptl1, page, tgt)  {  \
71
    SET_PTL2_ADDRESS_ARCH(ptl1, PTL1_INDEX_ARCH(page), (__address)KA2PA(tgt)); \
72
        SET_PTL2_FLAGS_ARCH(ptl1, PTL1_INDEX_ARCH(page), PAGE_WRITE | PAGE_EXEC); \
73
    }
74
#define SETUP_PTL3(ptl2, page, tgt)  {  \
75
    SET_PTL3_ADDRESS_ARCH(ptl2, PTL2_INDEX_ARCH(page), (__address)KA2PA(tgt)); \
76
        SET_PTL3_FLAGS_ARCH(ptl2, PTL2_INDEX_ARCH(page), PAGE_WRITE | PAGE_EXEC); \
77
    }
78
#define SETUP_FRAME(ptl3, page, tgt)  { \
79
    SET_FRAME_ADDRESS_ARCH(ptl3, PTL3_INDEX_ARCH(page), (__address)KA2PA(tgt)); \
80
        SET_FRAME_FLAGS_ARCH(ptl3, PTL3_INDEX_ARCH(page), PAGE_WRITE | PAGE_EXEC); \
81
    }
1382 decky 82
 
83
 
219 palkovsky 84
void page_arch_init(void)
85
{
540 jermar 86
    __address cur;
1063 palkovsky 87
    int i;
88
    int identity_flags = PAGE_CACHEABLE | PAGE_EXEC | PAGE_GLOBAL;
226 palkovsky 89
 
90
    if (config.cpu_active == 1) {
793 jermar 91
        page_mapping_operations = &pt_mapping_operations;
814 palkovsky 92
 
226 palkovsky 93
        /*
94
         * PA2KA(identity) mapping for all frames.
95
         */
540 jermar 96
        for (cur = 0; cur < last_frame; cur += FRAME_SIZE) {
1063 palkovsky 97
            /* Standard identity mapping */
1064 palkovsky 98
            page_mapping_insert(AS_KERNEL, PA2KA(cur), cur, identity_flags);
226 palkovsky 99
        }
1063 palkovsky 100
        /* Upper kernel mapping
101
         * - from zero to top of kernel (include bottom addresses
102
         *   because some are needed for init )
103
         */
104
        for (cur = PA2KA_CODE(0); cur < config.base+config.kernel_size; cur += FRAME_SIZE) {
105
            page_mapping_insert(AS_KERNEL, cur, KA2PA(cur), identity_flags);
106
        }
107
        for (i=0; i < init.cnt; i++) {
108
            for (cur=init.tasks[i].addr;cur < init.tasks[i].size; cur += FRAME_SIZE) {
109
                page_mapping_insert(AS_KERNEL, PA2KA_CODE(KA2PA(cur)), KA2PA(cur), identity_flags);
110
            }
111
        }
112
 
799 palkovsky 113
        exc_register(14, "page_fault", (iroutine)page_fault);
756 jermar 114
        write_cr3((__address) AS_KERNEL->page_table);
226 palkovsky 115
    }
116
    else {
756 jermar 117
        write_cr3((__address) AS_KERNEL->page_table);
226 palkovsky 118
    }
219 palkovsky 119
}
1051 jermar 120
 
1382 decky 121
 
1051 jermar 122
/** Identity page mapper
123
 *
124
 * We need to map whole physical memory identically before the page subsystem
125
 * is initializaed. This thing clears page table and fills in the specific
126
 * items.
127
 */
128
void ident_page_fault(int n, istate_t *istate)
129
{
130
    __address page;
131
    static __address oldpage = 0;
132
    pte_t *aptl_1, *aptl_2, *aptl_3;
133
 
134
    page = read_cr2();
135
    if (oldpage) {
136
        /* Unmap old address */
137
        aptl_1 = PTL1_ADDR(&ptl_0, oldpage);
138
        aptl_2 = PTL2_ADDR(aptl_1, oldpage);
139
        aptl_3 = PTL3_ADDR(aptl_2, oldpage);
140
 
141
        SET_FRAME_FLAGS_ARCH(aptl_3, PTL3_INDEX_ARCH(oldpage), PAGE_NOT_PRESENT);
1064 palkovsky 142
        if (KA2PA(aptl_3) == KA2PA(helper_ptl3))
1051 jermar 143
            SET_PTL3_FLAGS_ARCH(aptl_2, PTL2_INDEX_ARCH(oldpage), PAGE_NOT_PRESENT);
1064 palkovsky 144
        if (KA2PA(aptl_2) == KA2PA(helper_ptl2))
1051 jermar 145
            SET_PTL2_FLAGS_ARCH(aptl_1, PTL1_INDEX_ARCH(oldpage), PAGE_NOT_PRESENT);
1064 palkovsky 146
        if (KA2PA(aptl_1) == KA2PA(helper_ptl1))
1051 jermar 147
            SET_PTL1_FLAGS_ARCH(&ptl_0, PTL0_INDEX_ARCH(oldpage), PAGE_NOT_PRESENT);
148
    }
149
    if (PTL1_PRESENT(&ptl_0, page))
150
        aptl_1 = PTL1_ADDR(&ptl_0, page);
151
    else {
152
        SETUP_PTL1(&ptl_0, page, helper_ptl1);
153
        aptl_1 = helper_ptl1;
154
    }
155
 
156
    if (PTL2_PRESENT(aptl_1, page))
157
        aptl_2 = PTL2_ADDR(aptl_1, page);
158
    else {
159
        SETUP_PTL2(aptl_1, page, helper_ptl2);
160
        aptl_2 = helper_ptl2;
161
    }
162
 
163
    if (PTL3_PRESENT(aptl_2, page))
164
        aptl_3 = PTL3_ADDR(aptl_2, page);
165
    else {
166
        SETUP_PTL3(aptl_2, page, helper_ptl3);
167
        aptl_3 = helper_ptl3;
168
    }
169
 
170
    SETUP_FRAME(aptl_3, page, page);
171
 
172
    oldpage = page;
173
}
174
 
1382 decky 175
 
1051 jermar 176
void page_fault(int n, istate_t *istate)
177
{
178
    __address page;
1411 jermar 179
    pf_access_t access;
1051 jermar 180
 
181
    page = read_cr2();
1411 jermar 182
 
183
    if (istate->error_word & PFERR_CODE_RSVD)
184
        panic("Reserved bit set in page table entry.\n");
185
 
186
    if (istate->error_word & PFERR_CODE_RW)
187
        access = PF_ACCESS_WRITE;
188
    else if (istate->error_word & PFERR_CODE_ID)
189
        access = PF_ACCESS_EXEC;
190
    else
191
        access = PF_ACCESS_READ;
192
 
193
    if (as_page_fault(page, access, istate) == AS_PF_FAULT) {
1595 palkovsky 194
        fault_if_from_uspace(istate, "Page fault: %#x", page);
195
 
1051 jermar 196
        print_info_errcode(n, istate);
1212 palkovsky 197
        printf("Page fault address: %llX\n", page);
1051 jermar 198
        panic("page fault\n");
199
    }
200
}
1382 decky 201
 
202
 
203
__address hw_map(__address physaddr, size_t size)
204
{
205
    if (last_frame + ALIGN_UP(size, PAGE_SIZE) > KA2PA(KERNEL_ADDRESS_SPACE_END_ARCH))
206
        panic("Unable to map physical memory %p (%d bytes)", physaddr, size)
207
 
208
    __address virtaddr = PA2KA(last_frame);
209
    pfn_t i;
210
    for (i = 0; i < ADDR2PFN(ALIGN_UP(size, PAGE_SIZE)); i++)
211
        page_mapping_insert(AS_KERNEL, virtaddr + PFN2ADDR(i), physaddr + PFN2ADDR(i), PAGE_NOT_CACHEABLE);
212
 
213
    last_frame = ALIGN_UP(last_frame + size, FRAME_SIZE);
214
 
215
    return virtaddr;
216
}
1702 cejka 217
 
218
 /** @}
219
 */
220