Subversion Repositories HelenOS

Rev

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

Rev 3022 Rev 4055
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 */
-
 
45
 
-
 
46
#ifdef KERNEL
44
#ifdef KERNEL
47
 
45
 
48
/** Bit width of the TLB-locked portion of kernel address space. */
46
/** Bit width of the TLB-locked portion of kernel address space. */
49
#define KERNEL_PAGE_WIDTH       28  /* 256M */
47
#define KERNEL_PAGE_WIDTH       28  /* 256M */
50
#define IO_PAGE_WIDTH           26  /* 64M */
48
#define IO_PAGE_WIDTH           26  /* 64M */
-
 
49
#define FW_PAGE_WIDTH           28  /* 256M */
-
 
50
 
-
 
51
#define USPACE_IO_PAGE_WIDTH        12  /* 4K */
-
 
52
 
-
 
53
 
-
 
54
/*
-
 
55
 * Statically mapped IO spaces - offsets to 0xe...00 of virtual addresses
-
 
56
 * because of "minimal virtual bits implemented is 51" it is possible to
-
 
57
 * have values up to 0x0007000000000000
-
 
58
 */
-
 
59
 
-
 
60
/* Firmware area (bellow 4GB in phys mem) */
-
 
61
#define FW_OFFSET             0x00000000F0000000
-
 
62
/* Legacy IO space */
-
 
63
#define IO_OFFSET             0x0001000000000000
-
 
64
/* Videoram - now mapped to 0 as VGA text mode vram on 0xb8000 */
-
 
65
#define VIO_OFFSET            0x0002000000000000
51
 
66
 
52
 
67
 
53
#define PPN_SHIFT           12
68
#define PPN_SHIFT           12
54
 
69
 
55
#define VRN_SHIFT           61
70
#define VRN_SHIFT           61
56
#define VRN_MASK            (7LL << VRN_SHIFT)
71
#define VRN_MASK            (7LL << VRN_SHIFT)
57
#define VA2VRN(va)          ((va)>>VRN_SHIFT)
72
#define VA2VRN(va)          ((va)>>VRN_SHIFT)
58
 
73
 
59
#ifdef __ASM__
74
#ifdef __ASM__
60
#define VRN_KERNEL          7
75
#define VRN_KERNEL          7
61
#else
76
#else
62
#define VRN_KERNEL          7LL
77
#define VRN_KERNEL          7LL
63
#endif
78
#endif
64
 
79
 
65
#define REGION_REGISTERS        8
80
#define REGION_REGISTERS        8
66
 
81
 
67
#define KA2PA(x)    ((uintptr_t) (x-(VRN_KERNEL<<VRN_SHIFT)))
82
#define KA2PA(x)    ((uintptr_t) (x - (VRN_KERNEL << VRN_SHIFT)))
68
#define PA2KA(x)    ((uintptr_t) (x+(VRN_KERNEL<<VRN_SHIFT)))
83
#define PA2KA(x)    ((uintptr_t) (x + (VRN_KERNEL << VRN_SHIFT)))
69
 
84
 
70
#define VHPT_WIDTH          20  /* 1M */
85
#define VHPT_WIDTH          20  /* 1M */
71
#define VHPT_SIZE           (1 << VHPT_WIDTH)
86
#define VHPT_SIZE           (1 << VHPT_WIDTH)
72
 
87
 
73
#define PTA_BASE_SHIFT          15
88
#define PTA_BASE_SHIFT          15
74
 
89
 
75
/** Memory Attributes. */
90
/** Memory Attributes. */
76
#define MA_WRITEBACK    0x0
91
#define MA_WRITEBACK    0x0
77
#define MA_UNCACHEABLE  0x4
92
#define MA_UNCACHEABLE  0x4
78
 
93
 
79
/** Privilege Levels. Only the most and the least privileged ones are ever used. */
94
/** Privilege Levels. Only the most and the least privileged ones are ever used. */
80
#define PL_KERNEL   0x0
95
#define PL_KERNEL   0x0
81
#define PL_USER     0x3
96
#define PL_USER     0x3
82
 
97
 
83
/* Access Rigths. Only certain combinations are used by the kernel. */
98
/* Access Rigths. Only certain combinations are used by the kernel. */
84
#define AR_READ     0x0
99
#define AR_READ     0x0
85
#define AR_EXECUTE  0x1
100
#define AR_EXECUTE  0x1
86
#define AR_WRITE    0x2
101
#define AR_WRITE    0x2
87
 
102
 
88
#ifndef __ASM__
103
#ifndef __ASM__
89
 
104
 
90
#include <arch/mm/as.h>
105
#include <arch/mm/as.h>
91
#include <arch/mm/frame.h>
106
#include <arch/mm/frame.h>
92
#include <arch/interrupt.h>
107
#include <arch/interrupt.h>
93
#include <arch/barrier.h>
108
#include <arch/barrier.h>
94
#include <arch/mm/asid.h>
109
#include <arch/mm/asid.h>
95
#include <arch/types.h>
110
#include <arch/types.h>
96
#include <debug.h>
111
#include <debug.h>
97
 
112
 
98
struct vhpt_tag_info {
113
struct vhpt_tag_info {
99
    unsigned long long tag : 63;
114
    unsigned long long tag : 63;
100
    unsigned ti : 1;
115
    unsigned ti : 1;
101
} __attribute__ ((packed));
116
} __attribute__ ((packed));
102
 
117
 
103
union vhpt_tag {
118
union vhpt_tag {
104
    struct vhpt_tag_info tag_info;
119
    struct vhpt_tag_info tag_info;
105
    unsigned tag_word;
120
    unsigned tag_word;
106
};
121
};
107
 
122
 
108
struct vhpt_entry_present {
123
struct vhpt_entry_present {
109
    /* Word 0 */
124
    /* Word 0 */
110
    unsigned p : 1;
125
    unsigned p : 1;
111
    unsigned : 1;
126
    unsigned : 1;
112
    unsigned ma : 3;
127
    unsigned ma : 3;
113
    unsigned a : 1;
128
    unsigned a : 1;
114
    unsigned d : 1;
129
    unsigned d : 1;
115
    unsigned pl : 2;
130
    unsigned pl : 2;
116
    unsigned ar : 3;
131
    unsigned ar : 3;
117
    unsigned long long ppn : 38;
132
    unsigned long long ppn : 38;
118
    unsigned : 2;
133
    unsigned : 2;
119
    unsigned ed : 1;
134
    unsigned ed : 1;
120
    unsigned ig1 : 11;
135
    unsigned ig1 : 11;
121
   
136
   
122
    /* Word 1 */
137
    /* Word 1 */
123
    unsigned : 2;
138
    unsigned : 2;
124
    unsigned ps : 6;
139
    unsigned ps : 6;
125
    unsigned key : 24;
140
    unsigned key : 24;
126
    unsigned : 32;
141
    unsigned : 32;
127
   
142
   
128
    /* Word 2 */
143
    /* Word 2 */
129
    union vhpt_tag tag;
144
    union vhpt_tag tag;
130
   
145
   
131
    /* Word 3 */                                                   
146
    /* Word 3 */                                                   
132
    uint64_t ig3 : 64;
147
    uint64_t ig3 : 64;
133
} __attribute__ ((packed));
148
} __attribute__ ((packed));
134
 
149
 
135
struct vhpt_entry_not_present {
150
struct vhpt_entry_not_present {
136
    /* Word 0 */
151
    /* Word 0 */
137
    unsigned p : 1;
152
    unsigned p : 1;
138
    unsigned long long ig0 : 52;
153
    unsigned long long ig0 : 52;
139
    unsigned ig1 : 11;
154
    unsigned ig1 : 11;
140
   
155
   
141
    /* Word 1 */
156
    /* Word 1 */
142
    unsigned : 2;
157
    unsigned : 2;
143
    unsigned ps : 6;
158
    unsigned ps : 6;
144
    unsigned long long ig2 : 56;
159
    unsigned long long ig2 : 56;
145
 
160
 
146
    /* Word 2 */
161
    /* Word 2 */
147
    union vhpt_tag tag;
162
    union vhpt_tag tag;
148
   
163
   
149
    /* Word 3 */                                                   
164
    /* Word 3 */                                                   
150
    uint64_t ig3 : 64;
165
    uint64_t ig3 : 64;
151
} __attribute__ ((packed));
166
} __attribute__ ((packed));
152
 
167
 
153
typedef union vhpt_entry {
168
typedef union vhpt_entry {
154
    struct vhpt_entry_present present;
169
    struct vhpt_entry_present present;
155
    struct vhpt_entry_not_present not_present;
170
    struct vhpt_entry_not_present not_present;
156
    uint64_t word[4];
171
    uint64_t word[4];
157
} vhpt_entry_t;
172
} vhpt_entry_t;
158
 
173
 
159
struct region_register_map {
174
struct region_register_map {
160
    unsigned ve : 1;
175
    unsigned ve : 1;
161
    unsigned : 1;
176
    unsigned : 1;
162
    unsigned ps : 6;
177
    unsigned ps : 6;
163
    unsigned rid : 24;
178
    unsigned rid : 24;
164
    unsigned : 32;
179
    unsigned : 32;
165
} __attribute__ ((packed));
180
} __attribute__ ((packed));
166
 
181
 
167
typedef union region_register {
182
typedef union region_register {
168
    struct region_register_map map;
183
    struct region_register_map map;
169
    unsigned long long word;
184
    unsigned long long word;
170
} region_register;
185
} region_register;
171
 
186
 
172
struct pta_register_map {
187
struct pta_register_map {
173
    unsigned ve : 1;
188
    unsigned ve : 1;
174
    unsigned : 1;
189
    unsigned : 1;
175
    unsigned size : 6;
190
    unsigned size : 6;
176
    unsigned vf : 1;
191
    unsigned vf : 1;
177
    unsigned : 6;
192
    unsigned : 6;
178
    unsigned long long base : 49;
193
    unsigned long long base : 49;
179
} __attribute__ ((packed));
194
} __attribute__ ((packed));
180
 
195
 
181
typedef union pta_register {
196
typedef union pta_register {
182
    struct pta_register_map map;
197
    struct pta_register_map map;
183
    uint64_t word;
198
    uint64_t word;
184
} pta_register;
199
} pta_register;
185
 
200
 
186
/** Return Translation Hashed Entry Address.
201
/** Return Translation Hashed Entry Address.
187
 *
202
 *
188
 * VRN bits are used to read RID (ASID) from one
203
 * VRN bits are used to read RID (ASID) from one
189
 * of the eight region registers registers.
204
 * of the eight region registers registers.
190
 *
205
 *
191
 * @param va Virtual address including VRN bits.
206
 * @param va Virtual address including VRN bits.
192
 *
207
 *
193
 * @return Address of the head of VHPT collision chain.
208
 * @return Address of the head of VHPT collision chain.
194
 */
209
 */
195
static inline uint64_t thash(uint64_t va)
210
static inline uint64_t thash(uint64_t va)
196
{
211
{
197
    uint64_t ret;
212
    uint64_t ret;
198
 
213
 
199
    asm volatile ("thash %0 = %1\n" : "=r" (ret) : "r" (va));
214
    asm volatile ("thash %0 = %1\n" : "=r" (ret) : "r" (va));
200
 
215
 
201
    return ret;
216
    return ret;
202
}
217
}
203
 
218
 
204
/** Return Translation Hashed Entry Tag.
219
/** Return Translation Hashed Entry Tag.
205
 *
220
 *
206
 * VRN bits are used to read RID (ASID) from one
221
 * VRN bits are used to read RID (ASID) from one
207
 * of the eight region registers.
222
 * of the eight region registers.
208
 *
223
 *
209
 * @param va Virtual address including VRN bits.
224
 * @param va Virtual address including VRN bits.
210
 *
225
 *
211
 * @return The unique tag for VPN and RID in the collision chain returned by thash().
226
 * @return The unique tag for VPN and RID in the collision chain returned by thash().
212
 */
227
 */
213
static inline uint64_t ttag(uint64_t va)
228
static inline uint64_t ttag(uint64_t va)
214
{
229
{
215
    uint64_t ret;
230
    uint64_t ret;
216
 
231
 
217
    asm volatile ("ttag %0 = %1\n" : "=r" (ret) : "r" (va));
232
    asm volatile ("ttag %0 = %1\n" : "=r" (ret) : "r" (va));
218
 
233
 
219
    return ret;
234
    return ret;
220
}
235
}
221
 
236
 
222
/** Read Region Register.
237
/** Read Region Register.
223
 *
238
 *
224
 * @param i Region register index.
239
 * @param i Region register index.
225
 *
240
 *
226
 * @return Current contents of rr[i].
241
 * @return Current contents of rr[i].
227
 */
242
 */
228
static inline uint64_t rr_read(index_t i)
243
static inline uint64_t rr_read(index_t i)
229
{
244
{
230
    uint64_t ret;
245
    uint64_t ret;
231
    ASSERT(i < REGION_REGISTERS);
246
    ASSERT(i < REGION_REGISTERS);
232
    asm volatile ("mov %0 = rr[%1]\n" : "=r" (ret) : "r" (i << VRN_SHIFT));
247
    asm volatile ("mov %0 = rr[%1]\n" : "=r" (ret) : "r" (i << VRN_SHIFT));
233
    return ret;
248
    return ret;
234
}
249
}
235
 
250
 
236
/** Write Region Register.
251
/** Write Region Register.
237
 *
252
 *
238
 * @param i Region register index.
253
 * @param i Region register index.
239
 * @param v Value to be written to rr[i].
254
 * @param v Value to be written to rr[i].
240
 */
255
 */
241
static inline void rr_write(index_t i, uint64_t v)
256
static inline void rr_write(index_t i, uint64_t v)
242
{
257
{
243
    ASSERT(i < REGION_REGISTERS);
258
    ASSERT(i < REGION_REGISTERS);
244
    asm volatile (
259
    asm volatile (
245
        "mov rr[%0] = %1\n"
260
        "mov rr[%0] = %1\n"
246
        :
261
        :
247
        : "r" (i << VRN_SHIFT), "r" (v)
262
        : "r" (i << VRN_SHIFT), "r" (v)
248
    );
263
    );
249
}
264
}
250
 
265
 
251
/** Read Page Table Register.
266
/** Read Page Table Register.
252
 *
267
 *
253
 * @return Current value stored in PTA.
268
 * @return Current value stored in PTA.
254
 */
269
 */
255
static inline uint64_t pta_read(void)
270
static inline uint64_t pta_read(void)
256
{
271
{
257
    uint64_t ret;
272
    uint64_t ret;
258
   
273
   
259
    asm volatile ("mov %0 = cr.pta\n" : "=r" (ret));
274
    asm volatile ("mov %0 = cr.pta\n" : "=r" (ret));
260
   
275
   
261
    return ret;
276
    return ret;
262
}
277
}
263
 
278
 
264
/** Write Page Table Register.
279
/** Write Page Table Register.
265
 *
280
 *
266
 * @param v New value to be stored in PTA.
281
 * @param v New value to be stored in PTA.
267
 */
282
 */
268
static inline void pta_write(uint64_t v)
283
static inline void pta_write(uint64_t v)
269
{
284
{
270
    asm volatile ("mov cr.pta = %0\n" : : "r" (v));
285
    asm volatile ("mov cr.pta = %0\n" : : "r" (v));
271
}
286
}
272
 
287
 
273
extern void page_arch_init(void);
288
extern void page_arch_init(void);
274
 
289
 
275
extern vhpt_entry_t *vhpt_hash(uintptr_t page, asid_t asid);
290
extern vhpt_entry_t *vhpt_hash(uintptr_t page, asid_t asid);
276
extern bool vhpt_compare(uintptr_t page, asid_t asid, vhpt_entry_t *v);
291
extern bool vhpt_compare(uintptr_t page, asid_t asid, vhpt_entry_t *v);
277
extern void vhpt_set_record(vhpt_entry_t *v, uintptr_t page, asid_t asid, uintptr_t frame, int flags);
292
extern void vhpt_set_record(vhpt_entry_t *v, uintptr_t page, asid_t asid, uintptr_t frame, int flags);
278
 
293
 
279
#endif /* __ASM__ */
294
#endif /* __ASM__ */
280
 
295
 
281
#endif /* KERNEL */
296
#endif /* KERNEL */
282
 
297
 
283
#endif
298
#endif
284
 
299
 
285
/** @}
300
/** @}
286
 */
301
 */
287
 
302