Subversion Repositories HelenOS-historic

Rev

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

Rev 534 Rev 569
1
/*
1
/*
2
 * Copyright (C) 2005 Jakub Jermar
2
 * Copyright (C) 2005 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
#ifndef __sparc64_TLB_H__
29
#ifndef __sparc64_TLB_H__
30
#define __sparc64_TLB_H__
30
#define __sparc64_TLB_H__
31
 
31
 
32
#include <arch/mm/tte.h>
32
#include <arch/mm/tte.h>
-
 
33
#include <arch/asm.h>
-
 
34
#include <arch/types.h>
-
 
35
#include <typedefs.h>
-
 
36
 
-
 
37
#define ITLB_ENTRY_COUNT        64
-
 
38
#define DTLB_ENTRY_COUNT        64
33
 
39
 
34
/** I-MMU ASIs. */
40
/** I-MMU ASIs. */
35
#define ASI_IMMU            0x50
41
#define ASI_IMMU            0x50
36
#define ASI_IMMU_TSB_8KB_PTR_REG    0x51    
42
#define ASI_IMMU_TSB_8KB_PTR_REG    0x51    
37
#define ASI_IMMU_TSB_64KB_PTR_REG   0x52
43
#define ASI_IMMU_TSB_64KB_PTR_REG   0x52
38
#define ASI_ITLB_DATA_IN_REG        0x54
44
#define ASI_ITLB_DATA_IN_REG        0x54
39
#define ASI_ITLB_DATA_ACCESS_REG    0x55
45
#define ASI_ITLB_DATA_ACCESS_REG    0x55
40
#define ASI_ITLB_TAG_READ_REG       0x56
46
#define ASI_ITLB_TAG_READ_REG       0x56
41
#define ASI_IMMU_DEMAP          0x57
47
#define ASI_IMMU_DEMAP          0x57
42
 
48
 
43
/** Virtual Addresses within ASI_IMMU. */
49
/** Virtual Addresses within ASI_IMMU. */
44
#define VA_IMMU_TAG_TARGET      0x0 /**< IMMU tag target register. */
50
#define VA_IMMU_TAG_TARGET      0x0 /**< IMMU tag target register. */
45
#define VA_IMMU_SFSR            0x18    /**< IMMU sync fault status register. */
51
#define VA_IMMU_SFSR            0x18    /**< IMMU sync fault status register. */
46
#define VA_IMMU_TSB_BASE        0x28    /**< IMMU TSB base register. */
52
#define VA_IMMU_TSB_BASE        0x28    /**< IMMU TSB base register. */
47
#define VA_IMMU_TAG_ACCESS      0x30    /**< IMMU TLB tag access register. */
53
#define VA_IMMU_TAG_ACCESS      0x30    /**< IMMU TLB tag access register. */
48
 
54
 
49
/** D-MMU ASIs. */
55
/** D-MMU ASIs. */
50
#define ASI_DMMU            0x58
56
#define ASI_DMMU            0x58
51
#define ASI_DMMU_TSB_8KB_PTR_REG    0x59    
57
#define ASI_DMMU_TSB_8KB_PTR_REG    0x59    
52
#define ASI_DMMU_TSB_64KB_PTR_REG   0x5a
58
#define ASI_DMMU_TSB_64KB_PTR_REG   0x5a
53
#define ASI_DMMU_TSB_DIRECT_PTR_REG 0x5b
59
#define ASI_DMMU_TSB_DIRECT_PTR_REG 0x5b
54
#define ASI_DTLB_DATA_IN_REG        0x5c
60
#define ASI_DTLB_DATA_IN_REG        0x5c
55
#define ASI_DTLB_DATA_ACCESS_REG    0x5d
61
#define ASI_DTLB_DATA_ACCESS_REG    0x5d
56
#define ASI_DTLB_TAG_READ_REG       0x5e
62
#define ASI_DTLB_TAG_READ_REG       0x5e
57
#define ASI_DMMU_DEMAP          0x5f
63
#define ASI_DMMU_DEMAP          0x5f
58
 
64
 
59
/** Virtual Addresses within ASI_DMMU. */
65
/** Virtual Addresses within ASI_DMMU. */
60
#define VA_DMMU_TAG_TARGET      0x0 /**< DMMU tag target register. */
66
#define VA_DMMU_TAG_TARGET      0x0 /**< DMMU tag target register. */
61
#define VA_PRIMARY_CONTEXT_REG      0x8 /**< DMMU primary context register. */
67
#define VA_PRIMARY_CONTEXT_REG      0x8 /**< DMMU primary context register. */
62
#define VA_SECONDARY_CONTEXT_REG    0x10    /**< DMMU secondary context register. */
68
#define VA_SECONDARY_CONTEXT_REG    0x10    /**< DMMU secondary context register. */
63
#define VA_DMMU_SFSR            0x18    /**< DMMU sync fault status register. */
69
#define VA_DMMU_SFSR            0x18    /**< DMMU sync fault status register. */
64
#define VA_DMMU_SFAR            0x20    /**< DMMU sync fault address register. */
70
#define VA_DMMU_SFAR            0x20    /**< DMMU sync fault address register. */
65
#define VA_DMMU_TSB_BASE        0x28    /**< DMMU TSB base register. */
71
#define VA_DMMU_TSB_BASE        0x28    /**< DMMU TSB base register. */
66
#define VA_DMMU_TAG_ACCESS      0x30    /**< DMMU TLB tag access register. */
72
#define VA_DMMU_TAG_ACCESS      0x30    /**< DMMU TLB tag access register. */
67
#define VA_DMMU_VA_WATCHPOINT_REG   0x38    /**< DMMU VA data watchpoint register. */
73
#define VA_DMMU_VA_WATCHPOINT_REG   0x38    /**< DMMU VA data watchpoint register. */
68
#define VA_DMMU_PA_WATCHPOINT_REG   0x40    /**< DMMU PA data watchpoint register. */
74
#define VA_DMMU_PA_WATCHPOINT_REG   0x40    /**< DMMU PA data watchpoint register. */
69
 
75
 
70
/** I-/D-TLB Data In/Access Register type. */
76
/** I-/D-TLB Data In/Access Register type. */
71
typedef tte_data_t tlb_data_t;
77
typedef tte_data_t tlb_data_t;
72
 
78
 
-
 
79
/** I-/D-TLB Data Access Address in Alternate Space. */
-
 
80
union tlb_data_access_addr {
-
 
81
    __u64 value;
-
 
82
    struct {
-
 
83
        __u64 : 55;
73
#define tlb_init_arch()
84
        unsigned tlb_entry : 6;
-
 
85
        unsigned : 3;
-
 
86
    } __attribute__ ((packed));
-
 
87
};
-
 
88
typedef union tlb_data_access_addr tlb_data_access_addr_t;
-
 
89
typedef union tlb_data_access_addr tlb_tag_read_addr_t;
-
 
90
 
-
 
91
/** I-/D-TLB Tag Read Register. */
-
 
92
union tlb_tag_read_reg {
-
 
93
    __u64 value;
-
 
94
    struct {
-
 
95
        __u64 va : 51;      /**< Virtual Address. */
-
 
96
        unsigned context : 13;  /**< Context identifier. */
-
 
97
    } __attribute__ ((packed));
-
 
98
};
-
 
99
typedef union tlb_tag_read_reg tlb_tag_read_reg_t;
-
 
100
 
-
 
101
/** Read IMMU TLB Data Access Register.
-
 
102
 *
-
 
103
 * @param entry TLB Entry index.
-
 
104
 *
-
 
105
 * @return Current value of specified IMMU TLB Data Access Register.
-
 
106
 */
-
 
107
static inline __u64 itlb_data_access_read(index_t entry)
-
 
108
{
-
 
109
    tlb_data_access_addr_t reg;
-
 
110
   
-
 
111
    reg.value = 0;
-
 
112
    reg.tlb_entry = entry;
-
 
113
    return asi_u64_read(ASI_ITLB_DATA_ACCESS_REG, reg.value);
-
 
114
}
-
 
115
 
-
 
116
/** Read DMMU TLB Data Access Register.
-
 
117
 *
-
 
118
 * @param entry TLB Entry index.
-
 
119
 *
-
 
120
 * @return Current value of specified DMMU TLB Data Access Register.
-
 
121
 */
-
 
122
static inline __u64 dtlb_data_access_read(index_t entry)
-
 
123
{
-
 
124
    tlb_data_access_addr_t reg;
-
 
125
   
-
 
126
    reg.value = 0;
-
 
127
    reg.tlb_entry = entry;
-
 
128
    return asi_u64_read(ASI_DTLB_DATA_ACCESS_REG, reg.value);
-
 
129
}
-
 
130
 
-
 
131
/** Read IMMU TLB Tag Read Register.
-
 
132
 *
-
 
133
 * @param entry TLB Entry index.
-
 
134
 *
-
 
135
 * @return Current value of specified IMMU TLB Tag Read Register.
-
 
136
 */
-
 
137
static inline __u64 itlb_tag_read(index_t entry)
-
 
138
{
-
 
139
    tlb_tag_read_addr_t tag;
-
 
140
 
-
 
141
    tag.value = 0;
-
 
142
    tag.tlb_entry = entry;
-
 
143
    return asi_u64_read(ASI_ITLB_TAG_READ_REG, tag.value);
-
 
144
}
-
 
145
 
-
 
146
/** Read DMMU TLB Tag Read Register.
-
 
147
 *
-
 
148
 * @param entry TLB Entry index.
-
 
149
 *
-
 
150
 * @return Current value of specified DMMU TLB Tag Read Register.
-
 
151
 */
-
 
152
static inline __u64 dtlb_tag_read(index_t entry)
-
 
153
{
-
 
154
    tlb_tag_read_addr_t tag;
-
 
155
 
-
 
156
    tag.value = 0;
-
 
157
    tag.tlb_entry = entry;
-
 
158
    return asi_u64_read(ASI_DTLB_TAG_READ_REG, tag.value);
-
 
159
}
74
 
160
 
75
#endif
161
#endif
76
 
162