Subversion Repositories HelenOS

Rev

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

Rev 2278 Rev 2329
1
/*
1
/*
2
 * Copyright (c) 2007 Pavel Jancik, Michal Kebrt
2
 * Copyright (c) 2007 Pavel Jancik, Michal Kebrt
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
/** @addtogroup arm32mm
29
/** @addtogroup arm32mm
30
 * @{
30
 * @{
31
 */
31
 */
32
/** @file
32
/** @file
33
 */
33
 */
34
 
34
 
35
#ifndef KERN_arm32_PAGE_H_
35
#ifndef KERN_arm32_PAGE_H_
36
#define KERN_arm32_PAGE_H_
36
#define KERN_arm32_PAGE_H_
37
 
37
 
38
#include <arch/mm/frame.h>
38
#include <arch/mm/frame.h>
39
#include <mm/mm.h>
39
#include <mm/mm.h>
40
#include <arch/exception.h>
40
#include <arch/exception.h>
41
 
41
 
42
 
42
 
43
#define PAGE_WIDTH  FRAME_WIDTH
43
#define PAGE_WIDTH  FRAME_WIDTH
44
#define PAGE_SIZE   FRAME_SIZE
44
#define PAGE_SIZE   FRAME_SIZE
45
 
45
 
46
#define PAGE_COLOR_BITS 0           /* dummy */
46
#define PAGE_COLOR_BITS 0           /* dummy */
47
 
47
 
48
#ifndef __ASM__
48
#ifndef __ASM__
49
#   define KA2PA(x) (((uintptr_t) (x)) - 0x80000000)
49
#   define KA2PA(x) (((uintptr_t) (x)) - 0x80000000)
50
#   define PA2KA(x) (((uintptr_t) (x)) + 0x80000000)
50
#   define PA2KA(x) (((uintptr_t) (x)) + 0x80000000)
51
#else
51
#else
52
#   define KA2PA(x) ((x) - 0x80000000)
52
#   define KA2PA(x) ((x) - 0x80000000)
53
#   define PA2KA(x) ((x) + 0x80000000)
53
#   define PA2KA(x) ((x) + 0x80000000)
54
#endif
54
#endif
55
 
55
 
56
#ifdef KERNEL
56
#ifdef KERNEL
57
 
57
 
58
#define PTL0_ENTRIES_ARCH   (2<<12)    // 4096
58
#define PTL0_ENTRIES_ARCH   (2<<12)    // 4096
59
#define PTL1_ENTRIES_ARCH   0
59
#define PTL1_ENTRIES_ARCH   0
60
#define PTL2_ENTRIES_ARCH   0
60
#define PTL2_ENTRIES_ARCH   0
61
/* coarse page tables used (256*4 = 1KB per page) */
61
/* coarse page tables used (256*4 = 1KB per page) */
62
#define PTL3_ENTRIES_ARCH   (2<<8)     // 256
62
#define PTL3_ENTRIES_ARCH   (2<<8)     // 256
63
 
63
 
64
#define PTL0_SIZE_ARCH      FOUR_FRAMES
64
#define PTL0_SIZE_ARCH      FOUR_FRAMES
65
#define PTL1_SIZE_ARCH      0
65
#define PTL1_SIZE_ARCH      0
66
#define PTL2_SIZE_ARCH      0
66
#define PTL2_SIZE_ARCH      0
67
#define PTL3_SIZE_ARCH      ONE_FRAME
67
#define PTL3_SIZE_ARCH      ONE_FRAME
68
 
68
 
69
#define PTL0_INDEX_ARCH(vaddr)  (((vaddr) >> 20) & 0xfff)
69
#define PTL0_INDEX_ARCH(vaddr)  (((vaddr) >> 20) & 0xfff)
70
#define PTL1_INDEX_ARCH(vaddr)  0
70
#define PTL1_INDEX_ARCH(vaddr)  0
71
#define PTL2_INDEX_ARCH(vaddr)  0
71
#define PTL2_INDEX_ARCH(vaddr)  0
72
#define PTL3_INDEX_ARCH(vaddr)  (((vaddr) >> 12) & 0x0ff)
72
#define PTL3_INDEX_ARCH(vaddr)  (((vaddr) >> 12) & 0x0ff)
73
 
73
 
74
#define GET_PTL1_ADDRESS_ARCH(ptl0, i)      ((pte_t *)( (((pte_level0_t*)(ptl0))[(i)]).coarse_table_addr << 10 ))
74
#define GET_PTL1_ADDRESS_ARCH(ptl0, i)      ((pte_t *)( (((pte_level0_t*)(ptl0))[(i)]).coarse_table_addr << 10 ))
75
#define GET_PTL2_ADDRESS_ARCH(ptl1, i)      (ptl1)
75
#define GET_PTL2_ADDRESS_ARCH(ptl1, i)      (ptl1)
76
#define GET_PTL3_ADDRESS_ARCH(ptl2, i)      (ptl2)
76
#define GET_PTL3_ADDRESS_ARCH(ptl2, i)      (ptl2)
77
#define GET_FRAME_ADDRESS_ARCH(ptl3, i)     ((uintptr_t)( (((pte_level1_t*)(ptl3))[(i)]).frame_base_addr << 12 ))
77
#define GET_FRAME_ADDRESS_ARCH(ptl3, i)     ((uintptr_t)( (((pte_level1_t*)(ptl3))[(i)]).frame_base_addr << 12 ))
78
 
78
 
79
#define SET_PTL0_ADDRESS_ARCH(ptl0)         (set_ptl0_addr((pte_level0_t *)(ptl0)))
79
#define SET_PTL0_ADDRESS_ARCH(ptl0)         (set_ptl0_addr((pte_level0_t *)(ptl0)))
80
#define SET_PTL1_ADDRESS_ARCH(ptl0, i, a)   (((pte_level0_t *)(ptl0))[(i)].coarse_table_addr = (a)>>10)
80
#define SET_PTL1_ADDRESS_ARCH(ptl0, i, a)   (((pte_level0_t *)(ptl0))[(i)].coarse_table_addr = (a)>>10)
81
#define SET_PTL2_ADDRESS_ARCH(ptl1, i, a)
81
#define SET_PTL2_ADDRESS_ARCH(ptl1, i, a)
82
#define SET_PTL3_ADDRESS_ARCH(ptl2, i, a)
82
#define SET_PTL3_ADDRESS_ARCH(ptl2, i, a)
83
#define SET_FRAME_ADDRESS_ARCH(ptl3, i, a)  (((pte_level1_t *)(ptl3))[(i)].frame_base_addr = (a)>>12)
83
#define SET_FRAME_ADDRESS_ARCH(ptl3, i, a)  (((pte_level1_t *)(ptl3))[(i)].frame_base_addr = (a)>>12)
84
 
84
 
85
#define GET_PTL1_FLAGS_ARCH(ptl0, i)        get_pt_level0_flags((pte_level0_t *)(ptl0), (index_t)(i))
85
#define GET_PTL1_FLAGS_ARCH(ptl0, i)        get_pt_level0_flags((pte_level0_t *)(ptl0), (index_t)(i))
86
#define GET_PTL2_FLAGS_ARCH(ptl1, i)        PAGE_PRESENT
86
#define GET_PTL2_FLAGS_ARCH(ptl1, i)        PAGE_PRESENT
87
#define GET_PTL3_FLAGS_ARCH(ptl2, i)        PAGE_PRESENT
87
#define GET_PTL3_FLAGS_ARCH(ptl2, i)        PAGE_PRESENT
88
#define GET_FRAME_FLAGS_ARCH(ptl3, i)       get_pt_level1_flags((pte_level1_t *)(ptl3), (index_t)(i))
88
#define GET_FRAME_FLAGS_ARCH(ptl3, i)       get_pt_level1_flags((pte_level1_t *)(ptl3), (index_t)(i))
89
 
89
 
90
#define SET_PTL1_FLAGS_ARCH(ptl0, i, x)     set_pt_level0_flags((pte_level0_t *)(ptl0), (index_t)(i), (x))
90
#define SET_PTL1_FLAGS_ARCH(ptl0, i, x)     set_pt_level0_flags((pte_level0_t *)(ptl0), (index_t)(i), (x))
91
#define SET_PTL2_FLAGS_ARCH(ptl1, i, x)
91
#define SET_PTL2_FLAGS_ARCH(ptl1, i, x)
92
#define SET_PTL3_FLAGS_ARCH(ptl2, i, x)
92
#define SET_PTL3_FLAGS_ARCH(ptl2, i, x)
93
#define SET_FRAME_FLAGS_ARCH(ptl3, i, x)    set_pt_level1_flags((pte_level1_t *)(ptl3), (index_t)(i), (x))
93
#define SET_FRAME_FLAGS_ARCH(ptl3, i, x)    set_pt_level1_flags((pte_level1_t *)(ptl3), (index_t)(i), (x))
94
 
94
 
95
#define PTE_VALID_ARCH(pte)             (*((uint32_t *) (pte)) != 0)
95
#define PTE_VALID_ARCH(pte)             (*((uint32_t *) (pte)) != 0)
96
#define PTE_PRESENT_ARCH(pte)           ( ((pte_level0_t *)(pte))->descriptor_type != 0 )
96
#define PTE_PRESENT_ARCH(pte)           ( ((pte_level0_t *)(pte))->descriptor_type != 0 )
97
 
97
 
98
/* pte should point into ptl3 */
98
/* pte should point into ptl3 */
99
#define PTE_GET_FRAME_ARCH(pte)         ( ((pte_level1_t *)(pte))->frame_base_addr << FRAME_WIDTH)
99
#define PTE_GET_FRAME_ARCH(pte)         ( ((pte_level1_t *)(pte))->frame_base_addr << FRAME_WIDTH)
100
/* pte should point into ptl3 */
100
/* pte should point into ptl3 */
101
#define PTE_WRITABLE_ARCH(pte)          ( ((pte_level1_t *)(pte))->access_permission_0 == PTE_AP_USER_RW_KERNEL_RW )
101
#define PTE_WRITABLE_ARCH(pte)          ( ((pte_level1_t *)(pte))->access_permission_0 == PTE_AP_USER_RW_KERNEL_RW )
102
#define PTE_EXECUTABLE_ARCH(pte)        1
102
#define PTE_EXECUTABLE_ARCH(pte)        1
103
 
103
 
-
 
104
 
104
#ifndef __ASM__
105
#ifndef __ASM__
105
 
106
 
106
/** Level 0 page table entry. */
107
/** Level 0 page table entry. */
107
typedef struct {
108
typedef struct {
108
    /* 01b for coarse tables, see below for details */
109
    /* 01b for coarse tables, see below for details */
109
    unsigned descriptor_type     : 2;
110
    unsigned descriptor_type     : 2;
110
    unsigned impl_specific       : 3;
111
    unsigned impl_specific       : 3;
111
    unsigned domain              : 4;
112
    unsigned domain              : 4;
112
    unsigned should_be_zero      : 1;
113
    unsigned should_be_zero      : 1;
113
    /* Pointer to the coarse 2nd level page table (holding entries for small (4KB)
114
    /* Pointer to the coarse 2nd level page table (holding entries for small (4KB)
114
     * or large (64KB) pages. ARM also supports fine 2nd level page tables that
115
     * or large (64KB) pages. ARM also supports fine 2nd level page tables that
115
     * may hold even tiny pages (1KB) but they are bigger (4KB per table in comparison
116
     * may hold even tiny pages (1KB) but they are bigger (4KB per table in comparison
116
     * with 1KB per the coarse table)
117
     * with 1KB per the coarse table)
117
    */
118
    */
118
    unsigned coarse_table_addr   : 22;
119
    unsigned coarse_table_addr   : 22;
119
} __attribute__ ((packed)) pte_level0_t;
120
} __attribute__ ((packed)) pte_level0_t;
120
 
121
 
-
 
122
 
121
/** Level 1 page table entry (small (4KB) pages used) */
123
/** Level 1 page table entry (small (4KB) pages used). */
122
typedef struct {
124
typedef struct {
123
    /* 0b10 for small pages */
125
    /* 0b10 for small pages */
124
    unsigned descriptor_type     : 2;
126
    unsigned descriptor_type     : 2;
125
    unsigned bufferable          : 1;
127
    unsigned bufferable          : 1;
126
    unsigned cacheable           : 1;
128
    unsigned cacheable           : 1;
127
    /* access permissions for each of 4 subparts of a page
129
    /* access permissions for each of 4 subparts of a page
128
     * (for each 1KB when small pages used */
130
     * (for each 1KB when small pages used */
129
    unsigned access_permission_0 : 2;
131
    unsigned access_permission_0 : 2;
130
    unsigned access_permission_1 : 2;
132
    unsigned access_permission_1 : 2;
131
    unsigned access_permission_2 : 2;
133
    unsigned access_permission_2 : 2;
132
    unsigned access_permission_3 : 2;
134
    unsigned access_permission_3 : 2;
133
    unsigned frame_base_addr     : 20;
135
    unsigned frame_base_addr     : 20;
134
} __attribute__ ((packed)) pte_level1_t;
136
} __attribute__ ((packed)) pte_level1_t;
135
 
137
 
136
 
138
 
137
/* Level 1 page tables access permissions */
139
/* Level 1 page tables access permissions */
138
 
140
 
139
/** User mode: no access, privileged mode: no access */
141
/** User mode: no access, privileged mode: no access. */
140
#define PTE_AP_USER_NO_KERNEL_NO 0
142
#define PTE_AP_USER_NO_KERNEL_NO 0
141
/** User mode: no access, privileged mode: read/write */
143
/** User mode: no access, privileged mode: read/write. */
142
#define PTE_AP_USER_NO_KERNEL_RW 1
144
#define PTE_AP_USER_NO_KERNEL_RW 1
143
/** User mode: read only, privileged mode: read/write */
145
/** User mode: read only, privileged mode: read/write. */
144
#define PTE_AP_USER_RO_KERNEL_RW 2
146
#define PTE_AP_USER_RO_KERNEL_RW 2
145
/** User mode: read/write, privileged mode: read/write */
147
/** User mode: read/write, privileged mode: read/write. */
146
#define PTE_AP_USER_RW_KERNEL_RW 3
148
#define PTE_AP_USER_RW_KERNEL_RW 3
147
 
149
 
148
 
150
 
149
/* pte_level0_t and pte_level1_t descriptor_type flags */
151
/* pte_level0_t and pte_level1_t descriptor_type flags */
150
 
152
 
151
/** pte_level0_t and pte_level1_t "not present" flag (used in descriptor_type) */
153
/** pte_level0_t and pte_level1_t "not present" flag (used in descriptor_type). */
152
#define PTE_DESCRIPTOR_NOT_PRESENT  0
154
#define PTE_DESCRIPTOR_NOT_PRESENT  0
153
/** pte_level0_t coarse page table flag (used in descriptor_type) */
155
/** pte_level0_t coarse page table flag (used in descriptor_type). */
154
#define PTE_DESCRIPTOR_COARSE_TABLE 1
156
#define PTE_DESCRIPTOR_COARSE_TABLE 1
155
/** pte_level1_t small page table flag (used in descriptor type) */
157
/** pte_level1_t small page table flag (used in descriptor type). */
156
#define PTE_DESCRIPTOR_SMALL_PAGE   2
158
#define PTE_DESCRIPTOR_SMALL_PAGE   2
157
 
159
 
158
 
160
 
159
/**
-
 
160
 * Sets the address of level 0 page table.
161
/** Sets the address of level 0 page table.
161
 *
162
 *
162
 * \param pt    pointer to the page table to set
163
 * @param pt    Pointer to the page table to set.
163
 */  
164
 */  
164
static inline void set_ptl0_addr( pte_level0_t* pt)
165
static inline void set_ptl0_addr( pte_level0_t* pt)
165
{
166
{
166
    asm volatile (
167
    asm volatile (
167
        "mcr p15, 0, %0, c2, c0, 0 \n"
168
        "mcr p15, 0, %0, c2, c0, 0 \n"
168
        :
169
        :
169
        : "r"(pt)
170
        : "r"(pt)
170
    );
171
    );
171
}
172
}
172
 
173
 
-
 
174
 
173
/** Returns level 0 page table entry flags.
175
/** Returns level 0 page table entry flags.
174
 *
176
 *
175
 *  \param pt     level 0 page table
177
 *  @param pt     Level 0 page table.
176
 *  \param i      index of the entry to return
178
 *  @param i      Index of the entry to return.
177
 */
179
 */
178
static inline int get_pt_level0_flags(pte_level0_t *pt, index_t i)
180
static inline int get_pt_level0_flags(pte_level0_t *pt, index_t i)
179
{
181
{
180
    pte_level0_t *p = &pt[i];
182
    pte_level0_t *p = &pt[i];
181
 
183
 
182
    return
184
    return
183
        ( (p->descriptor_type == PTE_DESCRIPTOR_NOT_PRESENT) << PAGE_PRESENT_SHIFT ) |
185
        ( (p->descriptor_type == PTE_DESCRIPTOR_NOT_PRESENT) << PAGE_PRESENT_SHIFT ) |
184
        ( 1 << PAGE_USER_SHIFT )  |
186
        ( 1 << PAGE_USER_SHIFT )  |
185
        ( 1 << PAGE_READ_SHIFT )  |
187
        ( 1 << PAGE_READ_SHIFT )  |
186
        ( 1 << PAGE_WRITE_SHIFT ) |
188
        ( 1 << PAGE_WRITE_SHIFT ) |
187
        ( 1 << PAGE_EXEC_SHIFT )  |
189
        ( 1 << PAGE_EXEC_SHIFT )  |
188
        ( 1 << PAGE_CACHEABLE_SHIFT  )
190
        ( 1 << PAGE_CACHEABLE_SHIFT  )
189
    ;
191
    ;
190
}
192
}
191
 
193
 
-
 
194
 
192
/** Returns level 1 page table entry flags.
195
/** Returns level 1 page table entry flags.
193
 *
196
 *
194
 *  \param pt     level 1 page table
197
 *  @param pt     Level 1 page table.
195
 *  \param i      index of the entry to return
198
 *  @param i      Index of the entry to return.
196
 */
199
 */
197
static inline int get_pt_level1_flags(pte_level1_t *pt, index_t i)
200
static inline int get_pt_level1_flags(pte_level1_t *pt, index_t i)
198
{
201
{
199
    pte_level1_t *p = &pt[i];
202
    pte_level1_t *p = &pt[i];
200
 
203
 
201
    return
204
    return
202
        ( (p->descriptor_type == PTE_DESCRIPTOR_NOT_PRESENT)   << PAGE_PRESENT_SHIFT) |
205
        ( (p->descriptor_type == PTE_DESCRIPTOR_NOT_PRESENT)   << PAGE_PRESENT_SHIFT) |
203
        ( (p->access_permission_0 == PTE_AP_USER_RO_KERNEL_RW) << PAGE_READ_SHIFT )  |
206
        ( (p->access_permission_0 == PTE_AP_USER_RO_KERNEL_RW) << PAGE_READ_SHIFT )  |
204
        ( (p->access_permission_0 == PTE_AP_USER_RW_KERNEL_RW) << PAGE_READ_SHIFT )  |
207
        ( (p->access_permission_0 == PTE_AP_USER_RW_KERNEL_RW) << PAGE_READ_SHIFT )  |
205
        ( (p->access_permission_0 == PTE_AP_USER_RW_KERNEL_RW) << PAGE_WRITE_SHIFT ) |
208
        ( (p->access_permission_0 == PTE_AP_USER_RW_KERNEL_RW) << PAGE_WRITE_SHIFT ) |
206
        ( (p->access_permission_0 != PTE_AP_USER_NO_KERNEL_RW) << PAGE_USER_SHIFT )  |
209
        ( (p->access_permission_0 != PTE_AP_USER_NO_KERNEL_RW) << PAGE_USER_SHIFT )  |
207
        ( (p->access_permission_0 == PTE_AP_USER_NO_KERNEL_RW) << PAGE_READ_SHIFT )  |
210
        ( (p->access_permission_0 == PTE_AP_USER_NO_KERNEL_RW) << PAGE_READ_SHIFT )  |
208
        ( (p->access_permission_0 == PTE_AP_USER_NO_KERNEL_RW) << PAGE_WRITE_SHIFT ) |
211
        ( (p->access_permission_0 == PTE_AP_USER_NO_KERNEL_RW) << PAGE_WRITE_SHIFT ) |
209
        ( 1 << PAGE_EXEC_SHIFT ) |
212
        ( 1 << PAGE_EXEC_SHIFT ) |
210
        ( p->bufferable << PAGE_CACHEABLE )
213
        ( p->bufferable << PAGE_CACHEABLE )
211
    ;
214
    ;
212
}
215
}
213
 
216
 
-
 
217
 
214
/** Sets flags of level 0 page table entry.
218
/** Sets flags of level 0 page table entry.
215
 *
219
 *
216
 *  \param pt     level 0 page table
220
 *  @param pt     level 0 page table
217
 *  \param i      index of the entry to be changed
221
 *  @param i      index of the entry to be changed
218
 *  \param flags  new flags
222
 *  @param flags  new flags
219
 */
223
 */
220
static inline void set_pt_level0_flags(pte_level0_t *pt, index_t i, int flags)
224
static inline void set_pt_level0_flags(pte_level0_t *pt, index_t i, int flags)
221
{
225
{
222
    pte_level0_t *p = &pt[i];
226
    pte_level0_t *p = &pt[i];
223
 
227
 
224
    if (flags & PAGE_NOT_PRESENT) {
228
    if (flags & PAGE_NOT_PRESENT) {
225
        p->descriptor_type = PTE_DESCRIPTOR_NOT_PRESENT;
229
        p->descriptor_type = PTE_DESCRIPTOR_NOT_PRESENT;
226
        // ensures that the entry will be recognized as valid when PTE_VALID_ARCH applied
230
        // ensures that the entry will be recognized as valid when PTE_VALID_ARCH applied
227
        p->should_be_zero  = 1;
231
        p->should_be_zero  = 1;
228
    } else {
232
    } else {
229
        p->descriptor_type = PTE_DESCRIPTOR_COARSE_TABLE;
233
        p->descriptor_type = PTE_DESCRIPTOR_COARSE_TABLE;
230
        p->should_be_zero  = 0;
234
        p->should_be_zero  = 0;
231
    }
235
    }
232
}
236
}
233
 
237
 
-
 
238
 
234
/** Sets flags of level 1 page table entry.
239
/** Sets flags of level 1 page table entry.
235
 *
240
 *
236
 *  We use same access rights for the whole page. When page is not preset we
241
 *  We use same access rights for the whole page. When page is not preset we
237
 *  store 1 in acess_rigts_3 so that at least one bit is 1 (to mark correct
242
 *  store 1 in acess_rigts_3 so that at least one bit is 1 (to mark correct
238
 *  page entry, see #PAGE_VALID_ARCH).
243
 *  page entry, see #PAGE_VALID_ARCH).
239
 *
244
 *
240
 *  \param pt     level 1 page table
245
 *  @param pt     Level 1 page table.
241
 *  \param i      index of the entry to be changed
246
 *  @param i      Index of the entry to be changed.
242
 *  \param flags  new flags
247
 *  @param flags  New flags.
243
 */  
248
 */  
244
static inline void set_pt_level1_flags(pte_level1_t *pt, index_t i, int flags)
249
static inline void set_pt_level1_flags(pte_level1_t *pt, index_t i, int flags)
245
{
250
{
246
    pte_level1_t *p = &pt[i];
251
    pte_level1_t *p = &pt[i];
247
   
252
   
248
    if (flags & PAGE_NOT_PRESENT) {
253
    if (flags & PAGE_NOT_PRESENT) {
249
        p->descriptor_type      = PTE_DESCRIPTOR_NOT_PRESENT;
254
        p->descriptor_type      = PTE_DESCRIPTOR_NOT_PRESENT;
250
        p->access_permission_3  = 1;
255
        p->access_permission_3  = 1;
251
    } else {
256
    } else {
252
        p->descriptor_type      = PTE_DESCRIPTOR_SMALL_PAGE;
257
        p->descriptor_type      = PTE_DESCRIPTOR_SMALL_PAGE;
253
        p->access_permission_3  = p->access_permission_0;
258
        p->access_permission_3  = p->access_permission_0;
254
    }
259
    }
255
 
260
 
256
    p->cacheable = p->bufferable = (flags & PAGE_CACHEABLE) != 0;
261
    p->cacheable = p->bufferable = (flags & PAGE_CACHEABLE) != 0;
257
 
262
 
258
    /* default access permission */
263
    /* default access permission */
259
    p->access_permission_0 = p->access_permission_1 =
264
    p->access_permission_0 = p->access_permission_1 =
260
        p->access_permission_2 = p->access_permission_3 = PTE_AP_USER_NO_KERNEL_RW;
265
        p->access_permission_2 = p->access_permission_3 = PTE_AP_USER_NO_KERNEL_RW;
261
 
266
 
262
    if (flags & PAGE_USER)  {
267
    if (flags & PAGE_USER)  {
263
        if (flags & PAGE_READ) {
268
        if (flags & PAGE_READ) {
264
            p->access_permission_0 = p->access_permission_1 =
269
            p->access_permission_0 = p->access_permission_1 =
265
                p->access_permission_2 = p->access_permission_3 =
270
                p->access_permission_2 = p->access_permission_3 =
266
                PTE_AP_USER_RO_KERNEL_RW;
271
                PTE_AP_USER_RO_KERNEL_RW;
267
        }
272
        }
268
        if (flags & PAGE_WRITE) {
273
        if (flags & PAGE_WRITE) {
269
            p->access_permission_0 = p->access_permission_1 =
274
            p->access_permission_0 = p->access_permission_1 =
270
                p->access_permission_2 = p->access_permission_3 =
275
                p->access_permission_2 = p->access_permission_3 =
271
                PTE_AP_USER_RW_KERNEL_RW;
276
                PTE_AP_USER_RW_KERNEL_RW;
272
        }
277
        }
273
    }
278
    }
274
}
279
}
275
 
280
 
276
 
281
 
277
extern void page_arch_init(void);
282
extern void page_arch_init(void);
278
 
283
 
279
 
284
 
280
#endif /* __ASM__ */
285
#endif /* __ASM__ */
281
 
286
 
282
#endif /* KERNEL */
287
#endif /* KERNEL */
283
 
288
 
284
#endif
289
#endif
285
 
290
 
286
/** @}
291
/** @}
287
 */
292
 */
288
 
293
 
289
 
294