Subversion Repositories HelenOS-historic

Rev

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

Rev Author Line No. Line
418 jermar 1
/*
2
 * Copyright (C) 2005 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
 
29
#ifndef __sparc64_TLB_H__
30
#define __sparc64_TLB_H__
31
 
530 jermar 32
#include <arch/mm/tte.h>
617 jermar 33
#include <arch/mm/page.h>
569 jermar 34
#include <arch/asm.h>
613 jermar 35
#include <arch/barrier.h>
569 jermar 36
#include <arch/types.h>
37
#include <typedefs.h>
530 jermar 38
 
569 jermar 39
#define ITLB_ENTRY_COUNT        64
40
#define DTLB_ENTRY_COUNT        64
41
 
531 jermar 42
/** I-MMU ASIs. */
43
#define ASI_IMMU            0x50
44
#define ASI_IMMU_TSB_8KB_PTR_REG    0x51    
45
#define ASI_IMMU_TSB_64KB_PTR_REG   0x52
46
#define ASI_ITLB_DATA_IN_REG        0x54
47
#define ASI_ITLB_DATA_ACCESS_REG    0x55
48
#define ASI_ITLB_TAG_READ_REG       0x56
49
#define ASI_IMMU_DEMAP          0x57
50
 
51
/** Virtual Addresses within ASI_IMMU. */
52
#define VA_IMMU_TAG_TARGET      0x0 /**< IMMU tag target register. */
53
#define VA_IMMU_SFSR            0x18    /**< IMMU sync fault status register. */
54
#define VA_IMMU_TSB_BASE        0x28    /**< IMMU TSB base register. */
55
#define VA_IMMU_TAG_ACCESS      0x30    /**< IMMU TLB tag access register. */
56
 
57
/** D-MMU ASIs. */
58
#define ASI_DMMU            0x58
59
#define ASI_DMMU_TSB_8KB_PTR_REG    0x59    
60
#define ASI_DMMU_TSB_64KB_PTR_REG   0x5a
61
#define ASI_DMMU_TSB_DIRECT_PTR_REG 0x5b
62
#define ASI_DTLB_DATA_IN_REG        0x5c
63
#define ASI_DTLB_DATA_ACCESS_REG    0x5d
64
#define ASI_DTLB_TAG_READ_REG       0x5e
65
#define ASI_DMMU_DEMAP          0x5f
66
 
67
/** Virtual Addresses within ASI_DMMU. */
68
#define VA_DMMU_TAG_TARGET      0x0 /**< DMMU tag target register. */
69
#define VA_PRIMARY_CONTEXT_REG      0x8 /**< DMMU primary context register. */
70
#define VA_SECONDARY_CONTEXT_REG    0x10    /**< DMMU secondary context register. */
71
#define VA_DMMU_SFSR            0x18    /**< DMMU sync fault status register. */
72
#define VA_DMMU_SFAR            0x20    /**< DMMU sync fault address register. */
73
#define VA_DMMU_TSB_BASE        0x28    /**< DMMU TSB base register. */
74
#define VA_DMMU_TAG_ACCESS      0x30    /**< DMMU TLB tag access register. */
75
#define VA_DMMU_VA_WATCHPOINT_REG   0x38    /**< DMMU VA data watchpoint register. */
76
#define VA_DMMU_PA_WATCHPOINT_REG   0x40    /**< DMMU PA data watchpoint register. */
77
 
530 jermar 78
/** I-/D-TLB Data In/Access Register type. */
79
typedef tte_data_t tlb_data_t;
80
 
569 jermar 81
/** I-/D-TLB Data Access Address in Alternate Space. */
82
union tlb_data_access_addr {
83
    __u64 value;
84
    struct {
85
        __u64 : 55;
86
        unsigned tlb_entry : 6;
87
        unsigned : 3;
88
    } __attribute__ ((packed));
89
};
90
typedef union tlb_data_access_addr tlb_data_access_addr_t;
91
typedef union tlb_data_access_addr tlb_tag_read_addr_t;
418 jermar 92
 
569 jermar 93
/** I-/D-TLB Tag Read Register. */
94
union tlb_tag_read_reg {
95
    __u64 value;
96
    struct {
617 jermar 97
        __u64 vpn : 51;     /**< Virtual Address bits 63:13. */
569 jermar 98
        unsigned context : 13;  /**< Context identifier. */
99
    } __attribute__ ((packed));
100
};
101
typedef union tlb_tag_read_reg tlb_tag_read_reg_t;
613 jermar 102
typedef union tlb_tag_read_reg tlb_tag_access_reg_t;
569 jermar 103
 
617 jermar 104
/** TLB Demap Operation types. */
105
#define TLB_DEMAP_PAGE      0
106
#define TLB_DEMAP_CONTEXT   1
107
 
108
/** TLB Demap Operation Context register encodings. */
109
#define TLB_DEMAP_PRIMARY   0
110
#define TLB_DEMAP_SECONDARY 1
111
#define TLB_DEMAP_NUCLEUS   2
112
 
113
/** TLB Demap Operation Address. */
114
union tlb_demap_addr {
115
    __u64 value;
116
    struct {
117
        __u64 vpn: 51;      /**< Virtual Address bits 63:13. */
118
        unsigned : 6;       /**< Ignored. */
119
        unsigned type : 1;  /**< The type of demap operation. */
120
        unsigned context : 2;   /**< Context register selection. */
121
        unsigned : 4;       /**< Zero. */
122
    } __attribute__ ((packed));
123
};
124
typedef union tlb_demap_addr tlb_demap_addr_t;
125
 
569 jermar 126
/** Read IMMU TLB Data Access Register.
127
 *
128
 * @param entry TLB Entry index.
129
 *
130
 * @return Current value of specified IMMU TLB Data Access Register.
131
 */
132
static inline __u64 itlb_data_access_read(index_t entry)
133
{
134
    tlb_data_access_addr_t reg;
135
 
136
    reg.value = 0;
137
    reg.tlb_entry = entry;
138
    return asi_u64_read(ASI_ITLB_DATA_ACCESS_REG, reg.value);
139
}
140
 
617 jermar 141
/** Write IMMU TLB Data Access Register.
142
 *
143
 * @param entry TLB Entry index.
144
 * @param value Value to be written.
145
 */
146
static inline __u64 itlb_data_access_write(index_t entry, __u64 value)
147
{
148
    tlb_data_access_addr_t reg;
149
 
150
    reg.value = 0;
151
    reg.tlb_entry = entry;
152
    asi_u64_write(ASI_ITLB_DATA_ACCESS_REG, reg.value, value);
153
    flush();
154
}
155
 
569 jermar 156
/** Read DMMU TLB Data Access Register.
157
 *
158
 * @param entry TLB Entry index.
159
 *
160
 * @return Current value of specified DMMU TLB Data Access Register.
161
 */
162
static inline __u64 dtlb_data_access_read(index_t entry)
163
{
164
    tlb_data_access_addr_t reg;
165
 
166
    reg.value = 0;
167
    reg.tlb_entry = entry;
168
    return asi_u64_read(ASI_DTLB_DATA_ACCESS_REG, reg.value);
169
}
170
 
617 jermar 171
/** Write DMMU TLB Data Access Register.
172
 *
173
 * @param entry TLB Entry index.
174
 * @param value Value to be written.
175
 */
176
static inline __u64 dtlb_data_access_write(index_t entry, __u64 value)
177
{
178
    tlb_data_access_addr_t reg;
179
 
180
    reg.value = 0;
181
    reg.tlb_entry = entry;
182
    asi_u64_write(ASI_DTLB_DATA_ACCESS_REG, reg.value, value);
183
    flush();
184
}
185
 
569 jermar 186
/** Read IMMU TLB Tag Read Register.
187
 *
188
 * @param entry TLB Entry index.
189
 *
190
 * @return Current value of specified IMMU TLB Tag Read Register.
191
 */
613 jermar 192
static inline __u64 itlb_tag_read_read(index_t entry)
569 jermar 193
{
194
    tlb_tag_read_addr_t tag;
195
 
196
    tag.value = 0;
197
    tag.tlb_entry = entry;
198
    return asi_u64_read(ASI_ITLB_TAG_READ_REG, tag.value);
199
}
200
 
201
/** Read DMMU TLB Tag Read Register.
202
 *
203
 * @param entry TLB Entry index.
204
 *
205
 * @return Current value of specified DMMU TLB Tag Read Register.
206
 */
613 jermar 207
static inline __u64 dtlb_tag_read_read(index_t entry)
569 jermar 208
{
209
    tlb_tag_read_addr_t tag;
210
 
211
    tag.value = 0;
212
    tag.tlb_entry = entry;
213
    return asi_u64_read(ASI_DTLB_TAG_READ_REG, tag.value);
214
}
215
 
613 jermar 216
/** Write IMMU TLB Tag Access Register.
217
 *
218
 * @param v Value to be written.
219
 */
220
static inline void itlb_tag_access_write(__u64 v)
221
{
222
    asi_u64_write(ASI_IMMU, VA_IMMU_TAG_ACCESS, v);
223
    flush();
224
}
225
 
226
/** Write DMMU TLB Tag Access Register.
227
 *
228
 * @param v Value to be written.
229
 */
230
static inline void dtlb_tag_access_write(__u64 v)
231
{
232
    asi_u64_write(ASI_DMMU, VA_DMMU_TAG_ACCESS, v);
233
    flush();
234
}
235
 
236
/** Write IMMU TLB Data in Register.
237
 *
238
 * @param v Value to be written.
239
 */
240
static inline void itlb_data_in_write(__u64 v)
241
{
242
    asi_u64_write(ASI_ITLB_DATA_IN_REG, 0, v);
243
    flush();
244
}
245
 
246
/** Write DMMU TLB Data in Register.
247
 *
248
 * @param v Value to be written.
249
 */
250
static inline void dtlb_data_in_write(__u64 v)
251
{
252
    asi_u64_write(ASI_DTLB_DATA_IN_REG, 0, v);
253
    flush();
254
}
255
 
617 jermar 256
/** Perform IMMU TLB Demap Operation.
257
 *
258
 * @param type Selects between context and page demap.
259
 * @param context_encoding Specifies which Context register has Context ID for demap.
260
 * @param page Address which is on the page to be demapped.
261
 */
262
static inline void itlb_demap(int type, int context_encoding, __address page)
263
{
264
    tlb_demap_addr_t da;
265
    page_address_t pg;
266
 
267
    da.value = 0;
268
    pg.address = page;
269
 
270
    da.type = type;
271
    da.context = context_encoding;
272
    da.vpn = pg.vpn;
273
 
274
    asi_u64_write(ASI_IMMU_DEMAP, da.value, 0);
275
    flush();
276
}
277
 
278
/** Perform DMMU TLB Demap Operation.
279
 *
280
 * @param type Selects between context and page demap.
281
 * @param context_encoding Specifies which Context register has Context ID for demap.
282
 * @param page Address which is on the page to be demapped.
283
 */
284
static inline void dtlb_demap(int type, int context_encoding, __address page)
285
{
286
    tlb_demap_addr_t da;
287
    page_address_t pg;
288
 
289
    da.value = 0;
290
    pg.address = page;
291
 
292
    da.type = type;
293
    da.context = context_encoding;
294
    da.vpn = pg.vpn;
295
 
296
    asi_u64_write(ASI_DMMU_DEMAP, da.value, 0);
297
    flush();
298
}
299
 
418 jermar 300
#endif