[f761f1eb] | 1 | /*
|
---|
[df4ed85] | 2 | * Copyright (c) 2003-2004 Jakub Jermar
|
---|
[f761f1eb] | 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 |
|
---|
[e2d97d7] | 29 | /** @addtogroup mips32mm
|
---|
[b45c443] | 30 | * @{
|
---|
| 31 | */
|
---|
| 32 | /** @file
|
---|
| 33 | */
|
---|
| 34 |
|
---|
[06e1e95] | 35 | #ifndef KERN_mips32_TLB_H_
|
---|
| 36 | #define KERN_mips32_TLB_H_
|
---|
[f761f1eb] | 37 |
|
---|
[edebc15c] | 38 | #include <typedefs.h>
|
---|
| 39 | #include <arch/mm/asid.h>
|
---|
[909c6e3] | 40 | #include <arch/exception.h>
|
---|
[7a0359b] | 41 | #include <trace.h>
|
---|
[909c6e3] | 42 |
|
---|
[ba5cff5] | 43 | #if defined(PROCESSOR_R4000)
|
---|
[e2d97d7] | 44 | #define TLB_ENTRY_COUNT 48
|
---|
[ba5cff5] | 45 | #elif defined(PROCESSOR_4Kc)
|
---|
| 46 | #define TLB_ENTRY_COUNT 16
|
---|
| 47 | #else
|
---|
| 48 | #error Please define TLB_ENTRY_COUNT for the target processor.
|
---|
| 49 | #endif
|
---|
[ce031f0] | 50 |
|
---|
[e2d97d7] | 51 | #define TLB_WIRED 1
|
---|
| 52 | #define TLB_KSTACK_WIRED_INDEX 0
|
---|
[ce031f0] | 53 |
|
---|
[e2d97d7] | 54 | #define TLB_PAGE_MASK_4K (0x000 << 13)
|
---|
| 55 | #define TLB_PAGE_MASK_16K (0x003 << 13)
|
---|
| 56 | #define TLB_PAGE_MASK_64K (0x00f << 13)
|
---|
| 57 | #define TLB_PAGE_MASK_256K (0x03f << 13)
|
---|
| 58 | #define TLB_PAGE_MASK_1M (0x0ff << 13)
|
---|
| 59 | #define TLB_PAGE_MASK_4M (0x3ff << 13)
|
---|
| 60 | #define TLB_PAGE_MASK_16M (0xfff << 13)
|
---|
[ce031f0] | 61 |
|
---|
[e2d97d7] | 62 | #define PAGE_UNCACHED 2
|
---|
| 63 | #define PAGE_CACHEABLE_EXC_WRITE 5
|
---|
[a1a03f9] | 64 |
|
---|
[b3f8fb7] | 65 | typedef union {
|
---|
[cc205f1] | 66 | struct {
|
---|
[aac12264] | 67 | #ifdef __BE__
|
---|
[e2d97d7] | 68 | unsigned : 2; /* zero */
|
---|
| 69 | unsigned pfn : 24; /* frame number */
|
---|
| 70 | unsigned c : 3; /* cache coherency attribute */
|
---|
| 71 | unsigned d : 1; /* dirty/write-protect bit */
|
---|
| 72 | unsigned v : 1; /* valid bit */
|
---|
| 73 | unsigned g : 1; /* global bit */
|
---|
[f15fe51] | 74 | #else
|
---|
[e2d97d7] | 75 | unsigned g : 1; /* global bit */
|
---|
| 76 | unsigned v : 1; /* valid bit */
|
---|
| 77 | unsigned d : 1; /* dirty/write-protect bit */
|
---|
| 78 | unsigned c : 3; /* cache coherency attribute */
|
---|
| 79 | unsigned pfn : 24; /* frame number */
|
---|
| 80 | unsigned : 2; /* zero */
|
---|
[f15fe51] | 81 | #endif
|
---|
[cc205f1] | 82 | } __attribute__ ((packed));
|
---|
[7f1c620] | 83 | uint32_t value;
|
---|
[b3f8fb7] | 84 | } entry_lo_t;
|
---|
| 85 |
|
---|
| 86 | typedef union {
|
---|
[cc205f1] | 87 | struct {
|
---|
[aac12264] | 88 | #ifdef __BE__
|
---|
[f15fe51] | 89 | unsigned vpn2 : 19;
|
---|
| 90 | unsigned : 5;
|
---|
| 91 | unsigned asid : 8;
|
---|
| 92 | #else
|
---|
[cc205f1] | 93 | unsigned asid : 8;
|
---|
| 94 | unsigned : 5;
|
---|
| 95 | unsigned vpn2 : 19;
|
---|
[f15fe51] | 96 | #endif
|
---|
[cc205f1] | 97 | } __attribute__ ((packed));
|
---|
[7f1c620] | 98 | uint32_t value;
|
---|
[b3f8fb7] | 99 | } entry_hi_t;
|
---|
[cc205f1] | 100 |
|
---|
[b3f8fb7] | 101 | typedef union {
|
---|
[cc205f1] | 102 | struct {
|
---|
[aac12264] | 103 | #ifdef __BE__
|
---|
[f15fe51] | 104 | unsigned : 7;
|
---|
| 105 | unsigned mask : 12;
|
---|
| 106 | unsigned : 13;
|
---|
| 107 | #else
|
---|
[cc205f1] | 108 | unsigned : 13;
|
---|
| 109 | unsigned mask : 12;
|
---|
| 110 | unsigned : 7;
|
---|
[f15fe51] | 111 | #endif
|
---|
[cc205f1] | 112 | } __attribute__ ((packed));
|
---|
[7f1c620] | 113 | uint32_t value;
|
---|
[b3f8fb7] | 114 | } page_mask_t;
|
---|
[cc205f1] | 115 |
|
---|
[b3f8fb7] | 116 | typedef union {
|
---|
[cc205f1] | 117 | struct {
|
---|
[aac12264] | 118 | #ifdef __BE__
|
---|
[f15fe51] | 119 | unsigned p : 1;
|
---|
| 120 | unsigned : 27;
|
---|
| 121 | unsigned index : 4;
|
---|
| 122 | #else
|
---|
[cc205f1] | 123 | unsigned index : 4;
|
---|
| 124 | unsigned : 27;
|
---|
| 125 | unsigned p : 1;
|
---|
[f15fe51] | 126 | #endif
|
---|
[cc205f1] | 127 | } __attribute__ ((packed));
|
---|
[7f1c620] | 128 | uint32_t value;
|
---|
[b3f8fb7] | 129 | } tlb_index_t;
|
---|
[cc205f1] | 130 |
|
---|
[38a1a84] | 131 | /** Probe TLB for Matching Entry
|
---|
| 132 | *
|
---|
| 133 | * Probe TLB for Matching Entry.
|
---|
| 134 | */
|
---|
[7a0359b] | 135 | NO_TRACE static inline void tlbp(void)
|
---|
[38a1a84] | 136 | {
|
---|
[e7b7be3f] | 137 | asm volatile ("tlbp\n\t");
|
---|
[38a1a84] | 138 | }
|
---|
| 139 |
|
---|
[a1a03f9] | 140 |
|
---|
[ce031f0] | 141 | /** Read Indexed TLB Entry
|
---|
| 142 | *
|
---|
| 143 | * Read Indexed TLB Entry.
|
---|
| 144 | */
|
---|
[7a0359b] | 145 | NO_TRACE static inline void tlbr(void)
|
---|
[ce031f0] | 146 | {
|
---|
[e7b7be3f] | 147 | asm volatile ("tlbr\n\t");
|
---|
[ce031f0] | 148 | }
|
---|
| 149 |
|
---|
| 150 | /** Write Indexed TLB Entry
|
---|
| 151 | *
|
---|
| 152 | * Write Indexed TLB Entry.
|
---|
| 153 | */
|
---|
[7a0359b] | 154 | NO_TRACE static inline void tlbwi(void)
|
---|
[ce031f0] | 155 | {
|
---|
[e7b7be3f] | 156 | asm volatile ("tlbwi\n\t");
|
---|
[ce031f0] | 157 | }
|
---|
| 158 |
|
---|
| 159 | /** Write Random TLB Entry
|
---|
| 160 | *
|
---|
| 161 | * Write Random TLB Entry.
|
---|
| 162 | */
|
---|
[7a0359b] | 163 | NO_TRACE static inline void tlbwr(void)
|
---|
[ce031f0] | 164 | {
|
---|
[e7b7be3f] | 165 | asm volatile ("tlbwr\n\t");
|
---|
[ce031f0] | 166 | }
|
---|
| 167 |
|
---|
[e2d97d7] | 168 | #define tlb_invalidate(asid) tlb_invalidate_asid(asid)
|
---|
[dd14cced] | 169 |
|
---|
[25d7709] | 170 | extern void tlb_invalid(istate_t *istate);
|
---|
| 171 | extern void tlb_refill(istate_t *istate);
|
---|
| 172 | extern void tlb_modified(istate_t *istate);
|
---|
[edebc15c] | 173 | extern void tlb_prepare_entry_lo(entry_lo_t *lo, bool g, bool v, bool d, bool cacheable, uintptr_t pfn);
|
---|
| 174 | extern void tlb_prepare_entry_hi(entry_hi_t *hi, asid_t asid, uintptr_t addr);
|
---|
[f761f1eb] | 175 |
|
---|
| 176 | #endif
|
---|
[b45c443] | 177 |
|
---|
[2f40fe4] | 178 | /** @}
|
---|
[b45c443] | 179 | */
|
---|