Subversion Repositories HelenOS-historic

Rev

Rev 814 | Rev 832 | Go to most recent revision | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 814 Rev 826
1
/*
1
/*
2
 * Copyright (C) 2006 Jakub Jermar
2
 * Copyright (C) 2006 Jakub Jermar
3
 * All rights reserved.
3
 * All rights reserved.
4
 *
4
 *
5
 * Redistribution and use in source and binary forms, with or without
5
 * Redistribution and use in source and binary forms, with or without
6
 * modification, are permitted provided that the following conditions
6
 * modification, are permitted provided that the following conditions
7
 * are met:
7
 * are met:
8
 *
8
 *
9
 * - Redistributions of source code must retain the above copyright
9
 * - Redistributions of source code must retain the above copyright
10
 *   notice, this list of conditions and the following disclaimer.
10
 *   notice, this list of conditions and the following disclaimer.
11
 * - Redistributions in binary form must reproduce the above copyright
11
 * - Redistributions in binary form must reproduce the above copyright
12
 *   notice, this list of conditions and the following disclaimer in the
12
 *   notice, this list of conditions and the following disclaimer in the
13
 *   documentation and/or other materials provided with the distribution.
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
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.
15
 *   derived from this software without specific prior written permission.
16
 *
16
 *
17
 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
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
18
 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19
 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
19
 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20
 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
20
 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21
 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
21
 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22
 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
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
23
 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
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
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.
26
 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
 */
27
 */
28
 
28
 
29
#include <genarch/mm/page_pt.h>
29
#include <genarch/mm/page_pt.h>
30
#include <mm/page.h>
30
#include <mm/page.h>
31
#include <mm/frame.h>
31
#include <mm/frame.h>
32
#include <mm/as.h>
32
#include <mm/as.h>
33
#include <arch/mm/page.h>
33
#include <arch/mm/page.h>
34
#include <arch/mm/as.h>
34
#include <arch/mm/as.h>
35
#include <arch/types.h>
35
#include <arch/types.h>
36
#include <typedefs.h>
36
#include <typedefs.h>
37
#include <arch/asm.h>
37
#include <arch/asm.h>
38
#include <memstr.h>
38
#include <memstr.h>
39
 
39
 
40
static void pt_mapping_insert(as_t *as, __address page, __address frame, int flags);
40
static void pt_mapping_insert(as_t *as, __address page, __address frame, int flags);
-
 
41
static void pt_mapping_remove(as_t *as, __address page);
41
static pte_t *pt_mapping_find(as_t *as, __address page);
42
static pte_t *pt_mapping_find(as_t *as, __address page);
42
 
43
 
43
page_mapping_operations_t pt_mapping_operations = {
44
page_mapping_operations_t pt_mapping_operations = {
44
    .mapping_insert = pt_mapping_insert,
45
    .mapping_insert = pt_mapping_insert,
-
 
46
    .mapping_remove = pt_mapping_remove,
45
    .mapping_find = pt_mapping_find
47
    .mapping_find = pt_mapping_find
46
};
48
};
47
 
49
 
48
/** Map page to frame using hierarchical page tables.
50
/** Map page to frame using hierarchical page tables.
49
 *
51
 *
50
 * Map virtual address 'page' to physical address 'frame'
52
 * Map virtual address 'page' to physical address 'frame'
51
 * using 'flags'.
53
 * using 'flags'.
52
 *
54
 *
53
 * The address space must be locked and interrupts must be disabled.
55
 * The address space must be locked and interrupts must be disabled.
54
 *
56
 *
55
 * @param as Address space to wich page belongs.
57
 * @param as Address space to wich page belongs.
56
 * @param page Virtual address of the page to be mapped.
58
 * @param page Virtual address of the page to be mapped.
57
 * @param frame Physical address of memory frame to which the mapping is done.
59
 * @param frame Physical address of memory frame to which the mapping is done.
58
 * @param flags Flags to be used for mapping.
60
 * @param flags Flags to be used for mapping.
59
 */
61
 */
60
void pt_mapping_insert(as_t *as, __address page, __address frame, int flags)
62
void pt_mapping_insert(as_t *as, __address page, __address frame, int flags)
61
{
63
{
62
    pte_t *ptl0, *ptl1, *ptl2, *ptl3;
64
    pte_t *ptl0, *ptl1, *ptl2, *ptl3;
63
    __address newpt;
65
    __address newpt;
64
 
66
 
65
    ptl0 = (pte_t *) PA2KA((__address) as->page_table);
67
    ptl0 = (pte_t *) PA2KA((__address) as->page_table);
66
 
68
 
67
    if (GET_PTL1_FLAGS(ptl0, PTL0_INDEX(page)) & PAGE_NOT_PRESENT) {
69
    if (GET_PTL1_FLAGS(ptl0, PTL0_INDEX(page)) & PAGE_NOT_PRESENT) {
68
        newpt = PA2KA(PFN2ADDR(frame_alloc(ONE_FRAME, FRAME_KA)));
70
        newpt = PA2KA(PFN2ADDR(frame_alloc(ONE_FRAME, FRAME_KA)));
69
        memsetb(newpt, PAGE_SIZE, 0);
71
        memsetb(newpt, PAGE_SIZE, 0);
70
        SET_PTL1_ADDRESS(ptl0, PTL0_INDEX(page), KA2PA(newpt));
72
        SET_PTL1_ADDRESS(ptl0, PTL0_INDEX(page), KA2PA(newpt));
71
        SET_PTL1_FLAGS(ptl0, PTL0_INDEX(page), PAGE_PRESENT | PAGE_USER | PAGE_EXEC | PAGE_CACHEABLE | PAGE_WRITE);
73
        SET_PTL1_FLAGS(ptl0, PTL0_INDEX(page), PAGE_PRESENT | PAGE_USER | PAGE_EXEC | PAGE_CACHEABLE | PAGE_WRITE);
72
    }
74
    }
73
 
75
 
74
    ptl1 = (pte_t *) PA2KA(GET_PTL1_ADDRESS(ptl0, PTL0_INDEX(page)));
76
    ptl1 = (pte_t *) PA2KA(GET_PTL1_ADDRESS(ptl0, PTL0_INDEX(page)));
75
 
77
 
76
    if (GET_PTL2_FLAGS(ptl1, PTL1_INDEX(page)) & PAGE_NOT_PRESENT) {
78
    if (GET_PTL2_FLAGS(ptl1, PTL1_INDEX(page)) & PAGE_NOT_PRESENT) {
77
        newpt = PA2KA(PFN2ADDR(frame_alloc(ONE_FRAME, FRAME_KA)));
79
        newpt = PA2KA(PFN2ADDR(frame_alloc(ONE_FRAME, FRAME_KA)));
78
        memsetb(newpt, PAGE_SIZE, 0);
80
        memsetb(newpt, PAGE_SIZE, 0);
79
        SET_PTL2_ADDRESS(ptl1, PTL1_INDEX(page), KA2PA(newpt));
81
        SET_PTL2_ADDRESS(ptl1, PTL1_INDEX(page), KA2PA(newpt));
80
        SET_PTL2_FLAGS(ptl1, PTL1_INDEX(page), PAGE_PRESENT | PAGE_USER | PAGE_EXEC | PAGE_CACHEABLE | PAGE_WRITE);
82
        SET_PTL2_FLAGS(ptl1, PTL1_INDEX(page), PAGE_PRESENT | PAGE_USER | PAGE_EXEC | PAGE_CACHEABLE | PAGE_WRITE);
81
    }
83
    }
82
 
84
 
83
    ptl2 = (pte_t *) PA2KA(GET_PTL2_ADDRESS(ptl1, PTL1_INDEX(page)));
85
    ptl2 = (pte_t *) PA2KA(GET_PTL2_ADDRESS(ptl1, PTL1_INDEX(page)));
84
 
86
 
85
    if (GET_PTL3_FLAGS(ptl2, PTL2_INDEX(page)) & PAGE_NOT_PRESENT) {
87
    if (GET_PTL3_FLAGS(ptl2, PTL2_INDEX(page)) & PAGE_NOT_PRESENT) {
86
        newpt = PA2KA(PFN2ADDR(frame_alloc(ONE_FRAME, FRAME_KA)));
88
        newpt = PA2KA(PFN2ADDR(frame_alloc(ONE_FRAME, FRAME_KA)));
87
        memsetb(newpt, PAGE_SIZE, 0);
89
        memsetb(newpt, PAGE_SIZE, 0);
88
        SET_PTL3_ADDRESS(ptl2, PTL2_INDEX(page), KA2PA(newpt));
90
        SET_PTL3_ADDRESS(ptl2, PTL2_INDEX(page), KA2PA(newpt));
89
        SET_PTL3_FLAGS(ptl2, PTL2_INDEX(page), PAGE_PRESENT | PAGE_USER | PAGE_EXEC | PAGE_CACHEABLE | PAGE_WRITE);
91
        SET_PTL3_FLAGS(ptl2, PTL2_INDEX(page), PAGE_PRESENT | PAGE_USER | PAGE_EXEC | PAGE_CACHEABLE | PAGE_WRITE);
90
    }
92
    }
91
 
93
 
92
    ptl3 = (pte_t *) PA2KA(GET_PTL3_ADDRESS(ptl2, PTL2_INDEX(page)));
94
    ptl3 = (pte_t *) PA2KA(GET_PTL3_ADDRESS(ptl2, PTL2_INDEX(page)));
93
 
95
 
94
    SET_FRAME_ADDRESS(ptl3, PTL3_INDEX(page), frame);
96
    SET_FRAME_ADDRESS(ptl3, PTL3_INDEX(page), frame);
95
    SET_FRAME_FLAGS(ptl3, PTL3_INDEX(page), flags);
97
    SET_FRAME_FLAGS(ptl3, PTL3_INDEX(page), flags);
96
}
98
}
-
 
99
 
-
 
100
/** Remove mapping of page from hierarchical page tables.
-
 
101
 *
-
 
102
 * Remove any mapping of 'page' within address space 'as'.
-
 
103
 * TLB shootdown should follow in order to make effects of
-
 
104
 * this call visible.
-
 
105
 *
-
 
106
 * The address space must be locked and interrupts must be disabled.
-
 
107
 *
-
 
108
 * @param as Address space to wich page belongs.
-
 
109
 * @param page Virtual address of the page to be demapped.
-
 
110
 */
-
 
111
void pt_mapping_remove(as_t *as, __address page)
-
 
112
{
-
 
113
    pte_t *ptl0, *ptl1, *ptl2, *ptl3;
-
 
114
 
-
 
115
    ptl0 = (pte_t *) PA2KA((__address) as->page_table);
-
 
116
 
-
 
117
    if (GET_PTL1_FLAGS(ptl0, PTL0_INDEX(page)) & PAGE_NOT_PRESENT)
-
 
118
        return;
-
 
119
 
-
 
120
    ptl1 = (pte_t *) PA2KA(GET_PTL1_ADDRESS(ptl0, PTL0_INDEX(page)));
-
 
121
 
-
 
122
    if (GET_PTL2_FLAGS(ptl1, PTL1_INDEX(page)) & PAGE_NOT_PRESENT)
-
 
123
        return;
-
 
124
 
-
 
125
    ptl2 = (pte_t *) PA2KA(GET_PTL2_ADDRESS(ptl1, PTL1_INDEX(page)));
-
 
126
 
-
 
127
    if (GET_PTL3_FLAGS(ptl2, PTL2_INDEX(page)) & PAGE_NOT_PRESENT)
-
 
128
        return;
-
 
129
 
-
 
130
    ptl3 = (pte_t *) PA2KA(GET_PTL3_ADDRESS(ptl2, PTL2_INDEX(page)));
-
 
131
 
-
 
132
    /* Destroy the mapping. Setting to PAGE_NOT_PRESENT is not sufficient. */
-
 
133
    memsetb((__address) &ptl3[PTL3_INDEX(page)], sizeof(pte_t), 0);
-
 
134
}
97
 
135
 
98
/** Find mapping for virtual page in hierarchical page tables.
136
/** Find mapping for virtual page in hierarchical page tables.
99
 *
137
 *
100
 * Find mapping for virtual page.
138
 * Find mapping for virtual page.
101
 *
139
 *
102
 * The address space must be locked and interrupts must be disabled.
140
 * The address space must be locked and interrupts must be disabled.
103
 *
141
 *
104
 * @param as Address space to which page belongs.
142
 * @param as Address space to which page belongs.
105
 * @param page Virtual page.
143
 * @param page Virtual page.
106
 *
144
 *
107
 * @return NULL if there is no such mapping; entry from PTL3 describing the mapping otherwise.
145
 * @return NULL if there is no such mapping; entry from PTL3 describing the mapping otherwise.
108
 */
146
 */
109
pte_t *pt_mapping_find(as_t *as, __address page)
147
pte_t *pt_mapping_find(as_t *as, __address page)
110
{
148
{
111
    pte_t *ptl0, *ptl1, *ptl2, *ptl3;
149
    pte_t *ptl0, *ptl1, *ptl2, *ptl3;
112
 
150
 
113
    ptl0 = (pte_t *) PA2KA((__address) as->page_table);
151
    ptl0 = (pte_t *) PA2KA((__address) as->page_table);
114
 
152
 
115
    if (GET_PTL1_FLAGS(ptl0, PTL0_INDEX(page)) & PAGE_NOT_PRESENT)
153
    if (GET_PTL1_FLAGS(ptl0, PTL0_INDEX(page)) & PAGE_NOT_PRESENT)
116
        return NULL;
154
        return NULL;
117
 
155
 
118
    ptl1 = (pte_t *) PA2KA(GET_PTL1_ADDRESS(ptl0, PTL0_INDEX(page)));
156
    ptl1 = (pte_t *) PA2KA(GET_PTL1_ADDRESS(ptl0, PTL0_INDEX(page)));
119
 
157
 
120
    if (GET_PTL2_FLAGS(ptl1, PTL1_INDEX(page)) & PAGE_NOT_PRESENT)
158
    if (GET_PTL2_FLAGS(ptl1, PTL1_INDEX(page)) & PAGE_NOT_PRESENT)
121
        return NULL;
159
        return NULL;
122
 
160
 
123
    ptl2 = (pte_t *) PA2KA(GET_PTL2_ADDRESS(ptl1, PTL1_INDEX(page)));
161
    ptl2 = (pte_t *) PA2KA(GET_PTL2_ADDRESS(ptl1, PTL1_INDEX(page)));
124
 
162
 
125
    if (GET_PTL3_FLAGS(ptl2, PTL2_INDEX(page)) & PAGE_NOT_PRESENT)
163
    if (GET_PTL3_FLAGS(ptl2, PTL2_INDEX(page)) & PAGE_NOT_PRESENT)
126
        return NULL;
164
        return NULL;
127
 
165
 
128
    ptl3 = (pte_t *) PA2KA(GET_PTL3_ADDRESS(ptl2, PTL2_INDEX(page)));
166
    ptl3 = (pte_t *) PA2KA(GET_PTL3_ADDRESS(ptl2, PTL2_INDEX(page)));
129
 
167
 
130
    return &ptl3[PTL3_INDEX(page)];
168
    return &ptl3[PTL3_INDEX(page)];
131
}
169
}
132
 
170