Subversion Repositories HelenOS

Rev

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

Rev 2089 Rev 2726
1
/*
1
/*
2
 * Copyright (c) 2005 - 2006 Jakub Jermar
2
 * Copyright (c) 2005 - 2006 Jakub Jermar
3
 * Copyright (c) 2006 Jakub Vana
3
 * Copyright (c) 2006 Jakub Vana
4
 * All rights reserved.
4
 * All rights reserved.
5
 *
5
 *
6
 * Redistribution and use in source and binary forms, with or without
6
 * Redistribution and use in source and binary forms, with or without
7
 * modification, are permitted provided that the following conditions
7
 * modification, are permitted provided that the following conditions
8
 * are met:
8
 * are met:
9
 *
9
 *
10
 * - Redistributions of source code must retain the above copyright
10
 * - Redistributions of source code must retain the above copyright
11
 *   notice, this list of conditions and the following disclaimer.
11
 *   notice, this list of conditions and the following disclaimer.
12
 * - Redistributions in binary form must reproduce the above copyright
12
 * - Redistributions in binary form must reproduce the above copyright
13
 *   notice, this list of conditions and the following disclaimer in the
13
 *   notice, this list of conditions and the following disclaimer in the
14
 *   documentation and/or other materials provided with the distribution.
14
 *   documentation and/or other materials provided with the distribution.
15
 * - The name of the author may not be used to endorse or promote products
15
 * - The name of the author may not be used to endorse or promote products
16
 *   derived from this software without specific prior written permission.
16
 *   derived from this software without specific prior written permission.
17
 *
17
 *
18
 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
18
 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
19
 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19
 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
20
 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20
 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
21
 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21
 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
22
 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22
 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
23
 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23
 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
24
 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24
 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
25
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
27
 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28
 */
28
 */
29
 
29
 
30
/** @addtogroup ia64mm 
30
/** @addtogroup ia64mm 
31
 * @{
31
 * @{
32
 */
32
 */
33
/** @file
33
/** @file
34
 */
34
 */
35
 
35
 
36
#ifndef KERN_ia64_PAGE_H_
36
#ifndef KERN_ia64_PAGE_H_
37
#define KERN_ia64_PAGE_H_
37
#define KERN_ia64_PAGE_H_
38
 
38
 
39
#include <arch/mm/frame.h>
39
#include <arch/mm/frame.h>
40
 
40
 
41
#define PAGE_SIZE   FRAME_SIZE
41
#define PAGE_SIZE   FRAME_SIZE
42
#define PAGE_WIDTH  FRAME_WIDTH
42
#define PAGE_WIDTH  FRAME_WIDTH
43
 
43
 
44
#define PAGE_COLOR_BITS 0           /* dummy */
44
#define PAGE_COLOR_BITS 0           /* dummy */
45
 
45
 
46
#ifdef KERNEL
46
#ifdef KERNEL
47
 
47
 
48
/** Bit width of the TLB-locked portion of kernel address space. */
48
/** Bit width of the TLB-locked portion of kernel address space. */
49
#define KERNEL_PAGE_WIDTH       28  /* 256M */
49
#define KERNEL_PAGE_WIDTH       28  /* 256M */
-
 
50
#define IO_PAGE_WIDTH           26  /* 64M */
-
 
51
 
50
 
52
 
51
#define PPN_SHIFT           12
53
#define PPN_SHIFT           12
52
 
54
 
53
#define VRN_SHIFT           61
55
#define VRN_SHIFT           61
54
#define VRN_MASK            (7LL << VRN_SHIFT)
56
#define VRN_MASK            (7LL << VRN_SHIFT)
55
#define VA2VRN(va)          ((va)>>VRN_SHIFT)
57
#define VA2VRN(va)          ((va)>>VRN_SHIFT)
56
 
58
 
57
#ifdef __ASM__
59
#ifdef __ASM__
58
#define VRN_KERNEL          7
60
#define VRN_KERNEL          7
59
#else
61
#else
60
#define VRN_KERNEL          7LL
62
#define VRN_KERNEL          7LL
61
#endif
63
#endif
62
 
64
 
63
#define REGION_REGISTERS        8
65
#define REGION_REGISTERS        8
64
 
66
 
65
#define KA2PA(x)    ((uintptr_t) (x-(VRN_KERNEL<<VRN_SHIFT)))
67
#define KA2PA(x)    ((uintptr_t) (x-(VRN_KERNEL<<VRN_SHIFT)))
66
#define PA2KA(x)    ((uintptr_t) (x+(VRN_KERNEL<<VRN_SHIFT)))
68
#define PA2KA(x)    ((uintptr_t) (x+(VRN_KERNEL<<VRN_SHIFT)))
67
 
69
 
68
#define VHPT_WIDTH          20  /* 1M */
70
#define VHPT_WIDTH          20  /* 1M */
69
#define VHPT_SIZE           (1 << VHPT_WIDTH)
71
#define VHPT_SIZE           (1 << VHPT_WIDTH)
70
 
72
 
71
#define PTA_BASE_SHIFT          15
73
#define PTA_BASE_SHIFT          15
72
 
74
 
73
/** Memory Attributes. */
75
/** Memory Attributes. */
74
#define MA_WRITEBACK    0x0
76
#define MA_WRITEBACK    0x0
75
#define MA_UNCACHEABLE  0x4
77
#define MA_UNCACHEABLE  0x4
76
 
78
 
77
/** Privilege Levels. Only the most and the least privileged ones are ever used. */
79
/** Privilege Levels. Only the most and the least privileged ones are ever used. */
78
#define PL_KERNEL   0x0
80
#define PL_KERNEL   0x0
79
#define PL_USER     0x3
81
#define PL_USER     0x3
80
 
82
 
81
/* Access Rigths. Only certain combinations are used by the kernel. */
83
/* Access Rigths. Only certain combinations are used by the kernel. */
82
#define AR_READ     0x0
84
#define AR_READ     0x0
83
#define AR_EXECUTE  0x1
85
#define AR_EXECUTE  0x1
84
#define AR_WRITE    0x2
86
#define AR_WRITE    0x2
85
 
87
 
86
#ifndef __ASM__
88
#ifndef __ASM__
87
 
89
 
88
#include <arch/mm/as.h>
90
#include <arch/mm/as.h>
89
#include <arch/mm/frame.h>
91
#include <arch/mm/frame.h>
90
#include <arch/interrupt.h>
92
#include <arch/interrupt.h>
91
#include <arch/barrier.h>
93
#include <arch/barrier.h>
92
#include <arch/mm/asid.h>
94
#include <arch/mm/asid.h>
93
#include <arch/types.h>
95
#include <arch/types.h>
94
#include <debug.h>
96
#include <debug.h>
95
 
97
 
96
struct vhpt_tag_info {
98
struct vhpt_tag_info {
97
    unsigned long long tag : 63;
99
    unsigned long long tag : 63;
98
    unsigned ti : 1;
100
    unsigned ti : 1;
99
} __attribute__ ((packed));
101
} __attribute__ ((packed));
100
 
102
 
101
union vhpt_tag {
103
union vhpt_tag {
102
    struct vhpt_tag_info tag_info;
104
    struct vhpt_tag_info tag_info;
103
    unsigned tag_word;
105
    unsigned tag_word;
104
};
106
};
105
 
107
 
106
struct vhpt_entry_present {
108
struct vhpt_entry_present {
107
    /* Word 0 */
109
    /* Word 0 */
108
    unsigned p : 1;
110
    unsigned p : 1;
109
    unsigned : 1;
111
    unsigned : 1;
110
    unsigned ma : 3;
112
    unsigned ma : 3;
111
    unsigned a : 1;
113
    unsigned a : 1;
112
    unsigned d : 1;
114
    unsigned d : 1;
113
    unsigned pl : 2;
115
    unsigned pl : 2;
114
    unsigned ar : 3;
116
    unsigned ar : 3;
115
    unsigned long long ppn : 38;
117
    unsigned long long ppn : 38;
116
    unsigned : 2;
118
    unsigned : 2;
117
    unsigned ed : 1;
119
    unsigned ed : 1;
118
    unsigned ig1 : 11;
120
    unsigned ig1 : 11;
119
   
121
   
120
    /* Word 1 */
122
    /* Word 1 */
121
    unsigned : 2;
123
    unsigned : 2;
122
    unsigned ps : 6;
124
    unsigned ps : 6;
123
    unsigned key : 24;
125
    unsigned key : 24;
124
    unsigned : 32;
126
    unsigned : 32;
125
   
127
   
126
    /* Word 2 */
128
    /* Word 2 */
127
    union vhpt_tag tag;
129
    union vhpt_tag tag;
128
   
130
   
129
    /* Word 3 */                                                   
131
    /* Word 3 */                                                   
130
    uint64_t ig3 : 64;
132
    uint64_t ig3 : 64;
131
} __attribute__ ((packed));
133
} __attribute__ ((packed));
132
 
134
 
133
struct vhpt_entry_not_present {
135
struct vhpt_entry_not_present {
134
    /* Word 0 */
136
    /* Word 0 */
135
    unsigned p : 1;
137
    unsigned p : 1;
136
    unsigned long long ig0 : 52;
138
    unsigned long long ig0 : 52;
137
    unsigned ig1 : 11;
139
    unsigned ig1 : 11;
138
   
140
   
139
    /* Word 1 */
141
    /* Word 1 */
140
    unsigned : 2;
142
    unsigned : 2;
141
    unsigned ps : 6;
143
    unsigned ps : 6;
142
    unsigned long long ig2 : 56;
144
    unsigned long long ig2 : 56;
143
 
145
 
144
    /* Word 2 */
146
    /* Word 2 */
145
    union vhpt_tag tag;
147
    union vhpt_tag tag;
146
   
148
   
147
    /* Word 3 */                                                   
149
    /* Word 3 */                                                   
148
    uint64_t ig3 : 64;
150
    uint64_t ig3 : 64;
149
} __attribute__ ((packed));
151
} __attribute__ ((packed));
150
 
152
 
151
typedef union vhpt_entry {
153
typedef union vhpt_entry {
152
    struct vhpt_entry_present present;
154
    struct vhpt_entry_present present;
153
    struct vhpt_entry_not_present not_present;
155
    struct vhpt_entry_not_present not_present;
154
    uint64_t word[4];
156
    uint64_t word[4];
155
} vhpt_entry_t;
157
} vhpt_entry_t;
156
 
158
 
157
struct region_register_map {
159
struct region_register_map {
158
    unsigned ve : 1;
160
    unsigned ve : 1;
159
    unsigned : 1;
161
    unsigned : 1;
160
    unsigned ps : 6;
162
    unsigned ps : 6;
161
    unsigned rid : 24;
163
    unsigned rid : 24;
162
    unsigned : 32;
164
    unsigned : 32;
163
} __attribute__ ((packed));
165
} __attribute__ ((packed));
164
 
166
 
165
typedef union region_register {
167
typedef union region_register {
166
    struct region_register_map map;
168
    struct region_register_map map;
167
    unsigned long long word;
169
    unsigned long long word;
168
} region_register;
170
} region_register;
169
 
171
 
170
struct pta_register_map {
172
struct pta_register_map {
171
    unsigned ve : 1;
173
    unsigned ve : 1;
172
    unsigned : 1;
174
    unsigned : 1;
173
    unsigned size : 6;
175
    unsigned size : 6;
174
    unsigned vf : 1;
176
    unsigned vf : 1;
175
    unsigned : 6;
177
    unsigned : 6;
176
    unsigned long long base : 49;
178
    unsigned long long base : 49;
177
} __attribute__ ((packed));
179
} __attribute__ ((packed));
178
 
180
 
179
typedef union pta_register {
181
typedef union pta_register {
180
    struct pta_register_map map;
182
    struct pta_register_map map;
181
    uint64_t word;
183
    uint64_t word;
182
} pta_register;
184
} pta_register;
183
 
185
 
184
/** Return Translation Hashed Entry Address.
186
/** Return Translation Hashed Entry Address.
185
 *
187
 *
186
 * VRN bits are used to read RID (ASID) from one
188
 * VRN bits are used to read RID (ASID) from one
187
 * of the eight region registers registers.
189
 * of the eight region registers registers.
188
 *
190
 *
189
 * @param va Virtual address including VRN bits.
191
 * @param va Virtual address including VRN bits.
190
 *
192
 *
191
 * @return Address of the head of VHPT collision chain.
193
 * @return Address of the head of VHPT collision chain.
192
 */
194
 */
193
static inline uint64_t thash(uint64_t va)
195
static inline uint64_t thash(uint64_t va)
194
{
196
{
195
    uint64_t ret;
197
    uint64_t ret;
196
 
198
 
197
    asm volatile ("thash %0 = %1\n" : "=r" (ret) : "r" (va));
199
    asm volatile ("thash %0 = %1\n" : "=r" (ret) : "r" (va));
198
 
200
 
199
    return ret;
201
    return ret;
200
}
202
}
201
 
203
 
202
/** Return Translation Hashed Entry Tag.
204
/** Return Translation Hashed Entry Tag.
203
 *
205
 *
204
 * VRN bits are used to read RID (ASID) from one
206
 * VRN bits are used to read RID (ASID) from one
205
 * of the eight region registers.
207
 * of the eight region registers.
206
 *
208
 *
207
 * @param va Virtual address including VRN bits.
209
 * @param va Virtual address including VRN bits.
208
 *
210
 *
209
 * @return The unique tag for VPN and RID in the collision chain returned by thash().
211
 * @return The unique tag for VPN and RID in the collision chain returned by thash().
210
 */
212
 */
211
static inline uint64_t ttag(uint64_t va)
213
static inline uint64_t ttag(uint64_t va)
212
{
214
{
213
    uint64_t ret;
215
    uint64_t ret;
214
 
216
 
215
    asm volatile ("ttag %0 = %1\n" : "=r" (ret) : "r" (va));
217
    asm volatile ("ttag %0 = %1\n" : "=r" (ret) : "r" (va));
216
 
218
 
217
    return ret;
219
    return ret;
218
}
220
}
219
 
221
 
220
/** Read Region Register.
222
/** Read Region Register.
221
 *
223
 *
222
 * @param i Region register index.
224
 * @param i Region register index.
223
 *
225
 *
224
 * @return Current contents of rr[i].
226
 * @return Current contents of rr[i].
225
 */
227
 */
226
static inline uint64_t rr_read(index_t i)
228
static inline uint64_t rr_read(index_t i)
227
{
229
{
228
    uint64_t ret;
230
    uint64_t ret;
229
    ASSERT(i < REGION_REGISTERS);
231
    ASSERT(i < REGION_REGISTERS);
230
    asm volatile ("mov %0 = rr[%1]\n" : "=r" (ret) : "r" (i << VRN_SHIFT));
232
    asm volatile ("mov %0 = rr[%1]\n" : "=r" (ret) : "r" (i << VRN_SHIFT));
231
    return ret;
233
    return ret;
232
}
234
}
233
 
235
 
234
/** Write Region Register.
236
/** Write Region Register.
235
 *
237
 *
236
 * @param i Region register index.
238
 * @param i Region register index.
237
 * @param v Value to be written to rr[i].
239
 * @param v Value to be written to rr[i].
238
 */
240
 */
239
static inline void rr_write(index_t i, uint64_t v)
241
static inline void rr_write(index_t i, uint64_t v)
240
{
242
{
241
    ASSERT(i < REGION_REGISTERS);
243
    ASSERT(i < REGION_REGISTERS);
242
    asm volatile (
244
    asm volatile (
243
        "mov rr[%0] = %1\n"
245
        "mov rr[%0] = %1\n"
244
        :
246
        :
245
        : "r" (i << VRN_SHIFT), "r" (v)
247
        : "r" (i << VRN_SHIFT), "r" (v)
246
    );
248
    );
247
}
249
}
248
 
250
 
249
/** Read Page Table Register.
251
/** Read Page Table Register.
250
 *
252
 *
251
 * @return Current value stored in PTA.
253
 * @return Current value stored in PTA.
252
 */
254
 */
253
static inline uint64_t pta_read(void)
255
static inline uint64_t pta_read(void)
254
{
256
{
255
    uint64_t ret;
257
    uint64_t ret;
256
   
258
   
257
    asm volatile ("mov %0 = cr.pta\n" : "=r" (ret));
259
    asm volatile ("mov %0 = cr.pta\n" : "=r" (ret));
258
   
260
   
259
    return ret;
261
    return ret;
260
}
262
}
261
 
263
 
262
/** Write Page Table Register.
264
/** Write Page Table Register.
263
 *
265
 *
264
 * @param v New value to be stored in PTA.
266
 * @param v New value to be stored in PTA.
265
 */
267
 */
266
static inline void pta_write(uint64_t v)
268
static inline void pta_write(uint64_t v)
267
{
269
{
268
    asm volatile ("mov cr.pta = %0\n" : : "r" (v));
270
    asm volatile ("mov cr.pta = %0\n" : : "r" (v));
269
}
271
}
270
 
272
 
271
extern void page_arch_init(void);
273
extern void page_arch_init(void);
272
 
274
 
273
extern vhpt_entry_t *vhpt_hash(uintptr_t page, asid_t asid);
275
extern vhpt_entry_t *vhpt_hash(uintptr_t page, asid_t asid);
274
extern bool vhpt_compare(uintptr_t page, asid_t asid, vhpt_entry_t *v);
276
extern bool vhpt_compare(uintptr_t page, asid_t asid, vhpt_entry_t *v);
275
extern void vhpt_set_record(vhpt_entry_t *v, uintptr_t page, asid_t asid, uintptr_t frame, int flags);
277
extern void vhpt_set_record(vhpt_entry_t *v, uintptr_t page, asid_t asid, uintptr_t frame, int flags);
276
 
278
 
277
#endif /* __ASM__ */
279
#endif /* __ASM__ */
278
 
280
 
279
#endif /* KERNEL */
281
#endif /* KERNEL */
280
 
282
 
281
#endif
283
#endif
282
 
284
 
283
/** @}
285
/** @}
284
 */
286
 */
285
 
287