Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * native hashtable management. |
| 3 | * |
| 4 | * SMP scalability work: |
| 5 | * Copyright (C) 2001 Anton Blanchard <anton@au.ibm.com>, IBM |
| 6 | * |
| 7 | * This program is free software; you can redistribute it and/or |
| 8 | * modify it under the terms of the GNU General Public License |
| 9 | * as published by the Free Software Foundation; either version |
| 10 | * 2 of the License, or (at your option) any later version. |
| 11 | */ |
Benjamin Herrenschmidt | 3c726f8 | 2005-11-07 11:06:55 +1100 | [diff] [blame] | 12 | |
| 13 | #undef DEBUG_LOW |
| 14 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 15 | #include <linux/spinlock.h> |
| 16 | #include <linux/bitops.h> |
| 17 | #include <linux/threads.h> |
| 18 | #include <linux/smp.h> |
| 19 | |
| 20 | #include <asm/abs_addr.h> |
| 21 | #include <asm/machdep.h> |
| 22 | #include <asm/mmu.h> |
| 23 | #include <asm/mmu_context.h> |
| 24 | #include <asm/pgtable.h> |
| 25 | #include <asm/tlbflush.h> |
| 26 | #include <asm/tlb.h> |
| 27 | #include <asm/cputable.h> |
Benjamin Herrenschmidt | 3c726f8 | 2005-11-07 11:06:55 +1100 | [diff] [blame] | 28 | #include <asm/udbg.h> |
Luke Browning | 71bf08b | 2007-05-03 00:19:11 +1000 | [diff] [blame^] | 29 | #include <asm/kexec.h> |
Benjamin Herrenschmidt | 3c726f8 | 2005-11-07 11:06:55 +1100 | [diff] [blame] | 30 | |
| 31 | #ifdef DEBUG_LOW |
| 32 | #define DBG_LOW(fmt...) udbg_printf(fmt) |
| 33 | #else |
| 34 | #define DBG_LOW(fmt...) |
| 35 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 36 | |
| 37 | #define HPTE_LOCK_BIT 3 |
| 38 | |
| 39 | static DEFINE_SPINLOCK(native_tlbie_lock); |
| 40 | |
Benjamin Herrenschmidt | 3c726f8 | 2005-11-07 11:06:55 +1100 | [diff] [blame] | 41 | static inline void __tlbie(unsigned long va, unsigned int psize) |
| 42 | { |
| 43 | unsigned int penc; |
| 44 | |
| 45 | /* clear top 16 bits, non SLS segment */ |
| 46 | va &= ~(0xffffULL << 48); |
| 47 | |
| 48 | switch (psize) { |
| 49 | case MMU_PAGE_4K: |
| 50 | va &= ~0xffful; |
| 51 | asm volatile("tlbie %0,0" : : "r" (va) : "memory"); |
| 52 | break; |
| 53 | default: |
| 54 | penc = mmu_psize_defs[psize].penc; |
| 55 | va &= ~((1ul << mmu_psize_defs[psize].shift) - 1); |
Arnd Bergmann | 19242b2 | 2006-06-15 21:15:44 +1000 | [diff] [blame] | 56 | va |= penc << 12; |
Benjamin Herrenschmidt | 3c726f8 | 2005-11-07 11:06:55 +1100 | [diff] [blame] | 57 | asm volatile("tlbie %0,1" : : "r" (va) : "memory"); |
| 58 | break; |
| 59 | } |
| 60 | } |
| 61 | |
| 62 | static inline void __tlbiel(unsigned long va, unsigned int psize) |
| 63 | { |
| 64 | unsigned int penc; |
| 65 | |
| 66 | /* clear top 16 bits, non SLS segment */ |
| 67 | va &= ~(0xffffULL << 48); |
| 68 | |
| 69 | switch (psize) { |
| 70 | case MMU_PAGE_4K: |
| 71 | va &= ~0xffful; |
| 72 | asm volatile(".long 0x7c000224 | (%0 << 11) | (0 << 21)" |
| 73 | : : "r"(va) : "memory"); |
| 74 | break; |
| 75 | default: |
| 76 | penc = mmu_psize_defs[psize].penc; |
| 77 | va &= ~((1ul << mmu_psize_defs[psize].shift) - 1); |
Arnd Bergmann | 19242b2 | 2006-06-15 21:15:44 +1000 | [diff] [blame] | 78 | va |= penc << 12; |
Benjamin Herrenschmidt | 3c726f8 | 2005-11-07 11:06:55 +1100 | [diff] [blame] | 79 | asm volatile(".long 0x7c000224 | (%0 << 11) | (1 << 21)" |
| 80 | : : "r"(va) : "memory"); |
| 81 | break; |
| 82 | } |
| 83 | |
| 84 | } |
| 85 | |
| 86 | static inline void tlbie(unsigned long va, int psize, int local) |
| 87 | { |
| 88 | unsigned int use_local = local && cpu_has_feature(CPU_FTR_TLBIEL); |
| 89 | int lock_tlbie = !cpu_has_feature(CPU_FTR_LOCKLESS_TLBIE); |
| 90 | |
| 91 | if (use_local) |
| 92 | use_local = mmu_psize_defs[psize].tlbiel; |
| 93 | if (lock_tlbie && !use_local) |
| 94 | spin_lock(&native_tlbie_lock); |
| 95 | asm volatile("ptesync": : :"memory"); |
| 96 | if (use_local) { |
| 97 | __tlbiel(va, psize); |
| 98 | asm volatile("ptesync": : :"memory"); |
| 99 | } else { |
| 100 | __tlbie(va, psize); |
| 101 | asm volatile("eieio; tlbsync; ptesync": : :"memory"); |
| 102 | } |
| 103 | if (lock_tlbie && !use_local) |
| 104 | spin_unlock(&native_tlbie_lock); |
| 105 | } |
| 106 | |
David Gibson | 96e2844 | 2005-07-13 01:11:42 -0700 | [diff] [blame] | 107 | static inline void native_lock_hpte(hpte_t *hptep) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 108 | { |
David Gibson | 96e2844 | 2005-07-13 01:11:42 -0700 | [diff] [blame] | 109 | unsigned long *word = &hptep->v; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 110 | |
| 111 | while (1) { |
| 112 | if (!test_and_set_bit(HPTE_LOCK_BIT, word)) |
| 113 | break; |
| 114 | while(test_bit(HPTE_LOCK_BIT, word)) |
| 115 | cpu_relax(); |
| 116 | } |
| 117 | } |
| 118 | |
David Gibson | 96e2844 | 2005-07-13 01:11:42 -0700 | [diff] [blame] | 119 | static inline void native_unlock_hpte(hpte_t *hptep) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 120 | { |
David Gibson | 96e2844 | 2005-07-13 01:11:42 -0700 | [diff] [blame] | 121 | unsigned long *word = &hptep->v; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 122 | |
| 123 | asm volatile("lwsync":::"memory"); |
| 124 | clear_bit(HPTE_LOCK_BIT, word); |
| 125 | } |
| 126 | |
Geoff Levand | 035223f | 2006-10-05 11:35:10 -0700 | [diff] [blame] | 127 | static long native_hpte_insert(unsigned long hpte_group, unsigned long va, |
Benjamin Herrenschmidt | 3c726f8 | 2005-11-07 11:06:55 +1100 | [diff] [blame] | 128 | unsigned long pa, unsigned long rflags, |
| 129 | unsigned long vflags, int psize) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 130 | { |
David Gibson | 96e2844 | 2005-07-13 01:11:42 -0700 | [diff] [blame] | 131 | hpte_t *hptep = htab_address + hpte_group; |
| 132 | unsigned long hpte_v, hpte_r; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 133 | int i; |
| 134 | |
Benjamin Herrenschmidt | 3c726f8 | 2005-11-07 11:06:55 +1100 | [diff] [blame] | 135 | if (!(vflags & HPTE_V_BOLTED)) { |
| 136 | DBG_LOW(" insert(group=%lx, va=%016lx, pa=%016lx," |
| 137 | " rflags=%lx, vflags=%lx, psize=%d)\n", |
| 138 | hpte_group, va, pa, rflags, vflags, psize); |
| 139 | } |
| 140 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 141 | for (i = 0; i < HPTES_PER_GROUP; i++) { |
David Gibson | 96e2844 | 2005-07-13 01:11:42 -0700 | [diff] [blame] | 142 | if (! (hptep->v & HPTE_V_VALID)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 143 | /* retry with lock held */ |
| 144 | native_lock_hpte(hptep); |
David Gibson | 96e2844 | 2005-07-13 01:11:42 -0700 | [diff] [blame] | 145 | if (! (hptep->v & HPTE_V_VALID)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 146 | break; |
| 147 | native_unlock_hpte(hptep); |
| 148 | } |
| 149 | |
| 150 | hptep++; |
| 151 | } |
| 152 | |
| 153 | if (i == HPTES_PER_GROUP) |
| 154 | return -1; |
| 155 | |
Benjamin Herrenschmidt | 3c726f8 | 2005-11-07 11:06:55 +1100 | [diff] [blame] | 156 | hpte_v = hpte_encode_v(va, psize) | vflags | HPTE_V_VALID; |
| 157 | hpte_r = hpte_encode_r(pa, psize) | rflags; |
| 158 | |
| 159 | if (!(vflags & HPTE_V_BOLTED)) { |
| 160 | DBG_LOW(" i=%x hpte_v=%016lx, hpte_r=%016lx\n", |
| 161 | i, hpte_v, hpte_r); |
| 162 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 163 | |
David Gibson | 96e2844 | 2005-07-13 01:11:42 -0700 | [diff] [blame] | 164 | hptep->r = hpte_r; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 165 | /* Guarantee the second dword is visible before the valid bit */ |
| 166 | __asm__ __volatile__ ("eieio" : : : "memory"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 167 | /* |
| 168 | * Now set the first dword including the valid bit |
| 169 | * NOTE: this also unlocks the hpte |
| 170 | */ |
David Gibson | 96e2844 | 2005-07-13 01:11:42 -0700 | [diff] [blame] | 171 | hptep->v = hpte_v; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 172 | |
| 173 | __asm__ __volatile__ ("ptesync" : : : "memory"); |
| 174 | |
David Gibson | 96e2844 | 2005-07-13 01:11:42 -0700 | [diff] [blame] | 175 | return i | (!!(vflags & HPTE_V_SECONDARY) << 3); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 176 | } |
| 177 | |
| 178 | static long native_hpte_remove(unsigned long hpte_group) |
| 179 | { |
David Gibson | 96e2844 | 2005-07-13 01:11:42 -0700 | [diff] [blame] | 180 | hpte_t *hptep; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 181 | int i; |
| 182 | int slot_offset; |
David Gibson | 96e2844 | 2005-07-13 01:11:42 -0700 | [diff] [blame] | 183 | unsigned long hpte_v; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 184 | |
Benjamin Herrenschmidt | 3c726f8 | 2005-11-07 11:06:55 +1100 | [diff] [blame] | 185 | DBG_LOW(" remove(group=%lx)\n", hpte_group); |
| 186 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 187 | /* pick a random entry to start at */ |
| 188 | slot_offset = mftb() & 0x7; |
| 189 | |
| 190 | for (i = 0; i < HPTES_PER_GROUP; i++) { |
| 191 | hptep = htab_address + hpte_group + slot_offset; |
David Gibson | 96e2844 | 2005-07-13 01:11:42 -0700 | [diff] [blame] | 192 | hpte_v = hptep->v; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 193 | |
David Gibson | 96e2844 | 2005-07-13 01:11:42 -0700 | [diff] [blame] | 194 | if ((hpte_v & HPTE_V_VALID) && !(hpte_v & HPTE_V_BOLTED)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 195 | /* retry with lock held */ |
| 196 | native_lock_hpte(hptep); |
David Gibson | 96e2844 | 2005-07-13 01:11:42 -0700 | [diff] [blame] | 197 | hpte_v = hptep->v; |
| 198 | if ((hpte_v & HPTE_V_VALID) |
| 199 | && !(hpte_v & HPTE_V_BOLTED)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 200 | break; |
| 201 | native_unlock_hpte(hptep); |
| 202 | } |
| 203 | |
| 204 | slot_offset++; |
| 205 | slot_offset &= 0x7; |
| 206 | } |
| 207 | |
| 208 | if (i == HPTES_PER_GROUP) |
| 209 | return -1; |
| 210 | |
| 211 | /* Invalidate the hpte. NOTE: this also unlocks it */ |
David Gibson | 96e2844 | 2005-07-13 01:11:42 -0700 | [diff] [blame] | 212 | hptep->v = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 213 | |
| 214 | return i; |
| 215 | } |
| 216 | |
Benjamin Herrenschmidt | 3c726f8 | 2005-11-07 11:06:55 +1100 | [diff] [blame] | 217 | static long native_hpte_updatepp(unsigned long slot, unsigned long newpp, |
| 218 | unsigned long va, int psize, int local) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 219 | { |
Benjamin Herrenschmidt | 3c726f8 | 2005-11-07 11:06:55 +1100 | [diff] [blame] | 220 | hpte_t *hptep = htab_address + slot; |
| 221 | unsigned long hpte_v, want_v; |
| 222 | int ret = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 223 | |
Benjamin Herrenschmidt | 3c726f8 | 2005-11-07 11:06:55 +1100 | [diff] [blame] | 224 | want_v = hpte_encode_v(va, psize); |
| 225 | |
| 226 | DBG_LOW(" update(va=%016lx, avpnv=%016lx, hash=%016lx, newpp=%x)", |
| 227 | va, want_v & HPTE_V_AVPN, slot, newpp); |
| 228 | |
| 229 | native_lock_hpte(hptep); |
| 230 | |
| 231 | hpte_v = hptep->v; |
| 232 | |
| 233 | /* Even if we miss, we need to invalidate the TLB */ |
| 234 | if (!HPTE_V_COMPARE(hpte_v, want_v) || !(hpte_v & HPTE_V_VALID)) { |
| 235 | DBG_LOW(" -> miss\n"); |
| 236 | native_unlock_hpte(hptep); |
| 237 | ret = -1; |
| 238 | } else { |
| 239 | DBG_LOW(" -> hit\n"); |
| 240 | /* Update the HPTE */ |
| 241 | hptep->r = (hptep->r & ~(HPTE_R_PP | HPTE_R_N)) | |
Benjamin Herrenschmidt | c5cf0e3 | 2006-05-30 14:14:19 +1000 | [diff] [blame] | 242 | (newpp & (HPTE_R_PP | HPTE_R_N | HPTE_R_C)); |
Benjamin Herrenschmidt | 3c726f8 | 2005-11-07 11:06:55 +1100 | [diff] [blame] | 243 | native_unlock_hpte(hptep); |
| 244 | } |
| 245 | |
| 246 | /* Ensure it is out of the tlb too. */ |
| 247 | tlbie(va, psize, local); |
| 248 | |
| 249 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 250 | } |
| 251 | |
Benjamin Herrenschmidt | 3c726f8 | 2005-11-07 11:06:55 +1100 | [diff] [blame] | 252 | static long native_hpte_find(unsigned long va, int psize) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 253 | { |
David Gibson | 96e2844 | 2005-07-13 01:11:42 -0700 | [diff] [blame] | 254 | hpte_t *hptep; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 255 | unsigned long hash; |
| 256 | unsigned long i, j; |
| 257 | long slot; |
Benjamin Herrenschmidt | 3c726f8 | 2005-11-07 11:06:55 +1100 | [diff] [blame] | 258 | unsigned long want_v, hpte_v; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 259 | |
Benjamin Herrenschmidt | 3c726f8 | 2005-11-07 11:06:55 +1100 | [diff] [blame] | 260 | hash = hpt_hash(va, mmu_psize_defs[psize].shift); |
| 261 | want_v = hpte_encode_v(va, psize); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 262 | |
| 263 | for (j = 0; j < 2; j++) { |
| 264 | slot = (hash & htab_hash_mask) * HPTES_PER_GROUP; |
| 265 | for (i = 0; i < HPTES_PER_GROUP; i++) { |
| 266 | hptep = htab_address + slot; |
David Gibson | 96e2844 | 2005-07-13 01:11:42 -0700 | [diff] [blame] | 267 | hpte_v = hptep->v; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 268 | |
Benjamin Herrenschmidt | 3c726f8 | 2005-11-07 11:06:55 +1100 | [diff] [blame] | 269 | if (HPTE_V_COMPARE(hpte_v, want_v) |
David Gibson | 96e2844 | 2005-07-13 01:11:42 -0700 | [diff] [blame] | 270 | && (hpte_v & HPTE_V_VALID) |
| 271 | && ( !!(hpte_v & HPTE_V_SECONDARY) == j)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 272 | /* HPTE matches */ |
| 273 | if (j) |
| 274 | slot = -slot; |
| 275 | return slot; |
| 276 | } |
| 277 | ++slot; |
| 278 | } |
| 279 | hash = ~hash; |
| 280 | } |
| 281 | |
| 282 | return -1; |
| 283 | } |
| 284 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 285 | /* |
| 286 | * Update the page protection bits. Intended to be used to create |
| 287 | * guard pages for kernel data structures on pages which are bolted |
| 288 | * in the HPT. Assumes pages being operated on will not be stolen. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 289 | * |
| 290 | * No need to lock here because we should be the only user. |
| 291 | */ |
Benjamin Herrenschmidt | 3c726f8 | 2005-11-07 11:06:55 +1100 | [diff] [blame] | 292 | static void native_hpte_updateboltedpp(unsigned long newpp, unsigned long ea, |
| 293 | int psize) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 294 | { |
Benjamin Herrenschmidt | 3c726f8 | 2005-11-07 11:06:55 +1100 | [diff] [blame] | 295 | unsigned long vsid, va; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 296 | long slot; |
David Gibson | 96e2844 | 2005-07-13 01:11:42 -0700 | [diff] [blame] | 297 | hpte_t *hptep; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 298 | |
| 299 | vsid = get_kernel_vsid(ea); |
| 300 | va = (vsid << 28) | (ea & 0x0fffffff); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 301 | |
Benjamin Herrenschmidt | 3c726f8 | 2005-11-07 11:06:55 +1100 | [diff] [blame] | 302 | slot = native_hpte_find(va, psize); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 303 | if (slot == -1) |
| 304 | panic("could not find page to bolt\n"); |
| 305 | hptep = htab_address + slot; |
| 306 | |
Benjamin Herrenschmidt | 3c726f8 | 2005-11-07 11:06:55 +1100 | [diff] [blame] | 307 | /* Update the HPTE */ |
| 308 | hptep->r = (hptep->r & ~(HPTE_R_PP | HPTE_R_N)) | |
| 309 | (newpp & (HPTE_R_PP | HPTE_R_N)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 310 | |
Benjamin Herrenschmidt | 3c726f8 | 2005-11-07 11:06:55 +1100 | [diff] [blame] | 311 | /* Ensure it is out of the tlb too. */ |
| 312 | tlbie(va, psize, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 313 | } |
| 314 | |
| 315 | static void native_hpte_invalidate(unsigned long slot, unsigned long va, |
Benjamin Herrenschmidt | 3c726f8 | 2005-11-07 11:06:55 +1100 | [diff] [blame] | 316 | int psize, int local) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 317 | { |
David Gibson | 96e2844 | 2005-07-13 01:11:42 -0700 | [diff] [blame] | 318 | hpte_t *hptep = htab_address + slot; |
| 319 | unsigned long hpte_v; |
Benjamin Herrenschmidt | 3c726f8 | 2005-11-07 11:06:55 +1100 | [diff] [blame] | 320 | unsigned long want_v; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 321 | unsigned long flags; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 322 | |
| 323 | local_irq_save(flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 324 | |
Benjamin Herrenschmidt | 3c726f8 | 2005-11-07 11:06:55 +1100 | [diff] [blame] | 325 | DBG_LOW(" invalidate(va=%016lx, hash: %x)\n", va, slot); |
| 326 | |
| 327 | want_v = hpte_encode_v(va, psize); |
| 328 | native_lock_hpte(hptep); |
David Gibson | 96e2844 | 2005-07-13 01:11:42 -0700 | [diff] [blame] | 329 | hpte_v = hptep->v; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 330 | |
| 331 | /* Even if we miss, we need to invalidate the TLB */ |
Benjamin Herrenschmidt | 3c726f8 | 2005-11-07 11:06:55 +1100 | [diff] [blame] | 332 | if (!HPTE_V_COMPARE(hpte_v, want_v) || !(hpte_v & HPTE_V_VALID)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 333 | native_unlock_hpte(hptep); |
Benjamin Herrenschmidt | 3c726f8 | 2005-11-07 11:06:55 +1100 | [diff] [blame] | 334 | else |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 335 | /* Invalidate the hpte. NOTE: this also unlocks it */ |
David Gibson | 96e2844 | 2005-07-13 01:11:42 -0700 | [diff] [blame] | 336 | hptep->v = 0; |
Benjamin Herrenschmidt | 3c726f8 | 2005-11-07 11:06:55 +1100 | [diff] [blame] | 337 | |
| 338 | /* Invalidate the TLB */ |
| 339 | tlbie(va, psize, local); |
| 340 | |
| 341 | local_irq_restore(flags); |
| 342 | } |
| 343 | |
Luke Browning | 71bf08b | 2007-05-03 00:19:11 +1000 | [diff] [blame^] | 344 | #define LP_SHIFT 12 |
| 345 | #define LP_BITS 8 |
| 346 | #define LP_MASK(i) ((0xFF >> (i)) << LP_SHIFT) |
| 347 | |
| 348 | static void hpte_decode(hpte_t *hpte, unsigned long slot, |
| 349 | int *psize, unsigned long *va) |
Benjamin Herrenschmidt | 3c726f8 | 2005-11-07 11:06:55 +1100 | [diff] [blame] | 350 | { |
Luke Browning | 71bf08b | 2007-05-03 00:19:11 +1000 | [diff] [blame^] | 351 | unsigned long hpte_r = hpte->r; |
| 352 | unsigned long hpte_v = hpte->v; |
| 353 | unsigned long avpn; |
| 354 | int i, size, shift, penc, avpnm_bits; |
Benjamin Herrenschmidt | 3c726f8 | 2005-11-07 11:06:55 +1100 | [diff] [blame] | 355 | |
Luke Browning | 71bf08b | 2007-05-03 00:19:11 +1000 | [diff] [blame^] | 356 | if (!(hpte_v & HPTE_V_LARGE)) |
| 357 | size = MMU_PAGE_4K; |
| 358 | else { |
| 359 | for (i = 0; i < LP_BITS; i++) { |
| 360 | if ((hpte_r & LP_MASK(i+1)) == LP_MASK(i+1)) |
| 361 | break; |
| 362 | } |
| 363 | penc = LP_MASK(i+1) >> LP_SHIFT; |
| 364 | for (size = 0; size < MMU_PAGE_COUNT; size++) { |
Benjamin Herrenschmidt | 3c726f8 | 2005-11-07 11:06:55 +1100 | [diff] [blame] | 365 | |
Luke Browning | 71bf08b | 2007-05-03 00:19:11 +1000 | [diff] [blame^] | 366 | /* 4K pages are not represented by LP */ |
| 367 | if (size == MMU_PAGE_4K) |
| 368 | continue; |
Benjamin Herrenschmidt | 3c726f8 | 2005-11-07 11:06:55 +1100 | [diff] [blame] | 369 | |
Luke Browning | 71bf08b | 2007-05-03 00:19:11 +1000 | [diff] [blame^] | 370 | /* valid entries have a shift value */ |
| 371 | if (!mmu_psize_defs[size].shift) |
| 372 | continue; |
Benjamin Herrenschmidt | 3c726f8 | 2005-11-07 11:06:55 +1100 | [diff] [blame] | 373 | |
Luke Browning | 71bf08b | 2007-05-03 00:19:11 +1000 | [diff] [blame^] | 374 | if (penc == mmu_psize_defs[size].penc) |
| 375 | break; |
| 376 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 377 | } |
| 378 | |
Luke Browning | 71bf08b | 2007-05-03 00:19:11 +1000 | [diff] [blame^] | 379 | /* |
| 380 | * FIXME, the code below works for 16M, 64K, and 4K pages as these |
| 381 | * fall under the p<=23 rules for calculating the virtual address. |
| 382 | * In the case of 16M pages, an extra bit is stolen from the AVPN |
| 383 | * field to achieve the requisite 24 bits. |
| 384 | * |
| 385 | * Does not work for 16G pages or 1 TB segments. |
| 386 | */ |
| 387 | shift = mmu_psize_defs[size].shift; |
| 388 | if (mmu_psize_defs[size].avpnm) |
| 389 | avpnm_bits = __ilog2_u64(mmu_psize_defs[size].avpnm) + 1; |
| 390 | else |
| 391 | avpnm_bits = 0; |
| 392 | if (shift - avpnm_bits <= 23) { |
| 393 | avpn = HPTE_V_AVPN_VAL(hpte_v) << 23; |
| 394 | |
| 395 | if (shift < 23) { |
| 396 | unsigned long vpi, pteg; |
| 397 | |
| 398 | pteg = slot / HPTES_PER_GROUP; |
| 399 | if (hpte_v & HPTE_V_SECONDARY) |
| 400 | pteg = ~pteg; |
| 401 | vpi = ((avpn >> 28) ^ pteg) & htab_hash_mask; |
| 402 | avpn |= (vpi << mmu_psize_defs[size].shift); |
| 403 | } |
| 404 | } |
| 405 | |
| 406 | *va = avpn; |
| 407 | *psize = size; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 408 | } |
| 409 | |
R Sharada | f4c82d5 | 2005-06-25 14:58:08 -0700 | [diff] [blame] | 410 | /* |
| 411 | * clear all mappings on kexec. All cpus are in real mode (or they will |
| 412 | * be when they isi), and we are the only one left. We rely on our kernel |
| 413 | * mapping being 0xC0's and the hardware ignoring those two real bits. |
| 414 | * |
| 415 | * TODO: add batching support when enabled. remember, no dynamic memory here, |
| 416 | * athough there is the control page available... |
| 417 | */ |
| 418 | static void native_hpte_clear(void) |
| 419 | { |
| 420 | unsigned long slot, slots, flags; |
David Gibson | 96e2844 | 2005-07-13 01:11:42 -0700 | [diff] [blame] | 421 | hpte_t *hptep = htab_address; |
Luke Browning | 71bf08b | 2007-05-03 00:19:11 +1000 | [diff] [blame^] | 422 | unsigned long hpte_v, va; |
R Sharada | f4c82d5 | 2005-06-25 14:58:08 -0700 | [diff] [blame] | 423 | unsigned long pteg_count; |
Luke Browning | 71bf08b | 2007-05-03 00:19:11 +1000 | [diff] [blame^] | 424 | int psize; |
R Sharada | f4c82d5 | 2005-06-25 14:58:08 -0700 | [diff] [blame] | 425 | |
| 426 | pteg_count = htab_hash_mask + 1; |
| 427 | |
| 428 | local_irq_save(flags); |
| 429 | |
| 430 | /* we take the tlbie lock and hold it. Some hardware will |
| 431 | * deadlock if we try to tlbie from two processors at once. |
| 432 | */ |
| 433 | spin_lock(&native_tlbie_lock); |
| 434 | |
| 435 | slots = pteg_count * HPTES_PER_GROUP; |
| 436 | |
| 437 | for (slot = 0; slot < slots; slot++, hptep++) { |
| 438 | /* |
| 439 | * we could lock the pte here, but we are the only cpu |
| 440 | * running, right? and for crash dump, we probably |
| 441 | * don't want to wait for a maybe bad cpu. |
| 442 | */ |
David Gibson | 96e2844 | 2005-07-13 01:11:42 -0700 | [diff] [blame] | 443 | hpte_v = hptep->v; |
R Sharada | f4c82d5 | 2005-06-25 14:58:08 -0700 | [diff] [blame] | 444 | |
R Sharada | 47f78a4 | 2006-02-22 21:43:08 +0530 | [diff] [blame] | 445 | /* |
| 446 | * Call __tlbie() here rather than tlbie() since we |
| 447 | * already hold the native_tlbie_lock. |
| 448 | */ |
David Gibson | 96e2844 | 2005-07-13 01:11:42 -0700 | [diff] [blame] | 449 | if (hpte_v & HPTE_V_VALID) { |
Luke Browning | 71bf08b | 2007-05-03 00:19:11 +1000 | [diff] [blame^] | 450 | hpte_decode(hptep, slot, &psize, &va); |
David Gibson | 96e2844 | 2005-07-13 01:11:42 -0700 | [diff] [blame] | 451 | hptep->v = 0; |
Luke Browning | 71bf08b | 2007-05-03 00:19:11 +1000 | [diff] [blame^] | 452 | __tlbie(va, psize); |
R Sharada | f4c82d5 | 2005-06-25 14:58:08 -0700 | [diff] [blame] | 453 | } |
| 454 | } |
| 455 | |
R Sharada | 47f78a4 | 2006-02-22 21:43:08 +0530 | [diff] [blame] | 456 | asm volatile("eieio; tlbsync; ptesync":::"memory"); |
R Sharada | f4c82d5 | 2005-06-25 14:58:08 -0700 | [diff] [blame] | 457 | spin_unlock(&native_tlbie_lock); |
| 458 | local_irq_restore(flags); |
| 459 | } |
| 460 | |
Benjamin Herrenschmidt | 3c726f8 | 2005-11-07 11:06:55 +1100 | [diff] [blame] | 461 | /* |
| 462 | * Batched hash table flush, we batch the tlbie's to avoid taking/releasing |
| 463 | * the lock all the time |
| 464 | */ |
Benjamin Herrenschmidt | 61b1a94 | 2005-09-20 13:52:50 +1000 | [diff] [blame] | 465 | static void native_flush_hash_range(unsigned long number, int local) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 466 | { |
Benjamin Herrenschmidt | 3c726f8 | 2005-11-07 11:06:55 +1100 | [diff] [blame] | 467 | unsigned long va, hash, index, hidx, shift, slot; |
David Gibson | 96e2844 | 2005-07-13 01:11:42 -0700 | [diff] [blame] | 468 | hpte_t *hptep; |
| 469 | unsigned long hpte_v; |
Benjamin Herrenschmidt | 3c726f8 | 2005-11-07 11:06:55 +1100 | [diff] [blame] | 470 | unsigned long want_v; |
| 471 | unsigned long flags; |
| 472 | real_pte_t pte; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 473 | struct ppc64_tlb_batch *batch = &__get_cpu_var(ppc64_tlb_batch); |
Benjamin Herrenschmidt | 3c726f8 | 2005-11-07 11:06:55 +1100 | [diff] [blame] | 474 | unsigned long psize = batch->psize; |
| 475 | int i; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 476 | |
| 477 | local_irq_save(flags); |
| 478 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 479 | for (i = 0; i < number; i++) { |
Benjamin Herrenschmidt | 3c726f8 | 2005-11-07 11:06:55 +1100 | [diff] [blame] | 480 | va = batch->vaddr[i]; |
| 481 | pte = batch->pte[i]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 482 | |
Benjamin Herrenschmidt | 3c726f8 | 2005-11-07 11:06:55 +1100 | [diff] [blame] | 483 | pte_iterate_hashed_subpages(pte, psize, va, index, shift) { |
| 484 | hash = hpt_hash(va, shift); |
| 485 | hidx = __rpte_to_hidx(pte, index); |
| 486 | if (hidx & _PTEIDX_SECONDARY) |
| 487 | hash = ~hash; |
| 488 | slot = (hash & htab_hash_mask) * HPTES_PER_GROUP; |
| 489 | slot += hidx & _PTEIDX_GROUP_IX; |
| 490 | hptep = htab_address + slot; |
| 491 | want_v = hpte_encode_v(va, psize); |
| 492 | native_lock_hpte(hptep); |
| 493 | hpte_v = hptep->v; |
| 494 | if (!HPTE_V_COMPARE(hpte_v, want_v) || |
| 495 | !(hpte_v & HPTE_V_VALID)) |
| 496 | native_unlock_hpte(hptep); |
| 497 | else |
| 498 | hptep->v = 0; |
| 499 | } pte_iterate_hashed_end(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 500 | } |
| 501 | |
Benjamin Herrenschmidt | 3c726f8 | 2005-11-07 11:06:55 +1100 | [diff] [blame] | 502 | if (cpu_has_feature(CPU_FTR_TLBIEL) && |
| 503 | mmu_psize_defs[psize].tlbiel && local) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 504 | asm volatile("ptesync":::"memory"); |
Benjamin Herrenschmidt | 3c726f8 | 2005-11-07 11:06:55 +1100 | [diff] [blame] | 505 | for (i = 0; i < number; i++) { |
| 506 | va = batch->vaddr[i]; |
| 507 | pte = batch->pte[i]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 508 | |
Benjamin Herrenschmidt | 3c726f8 | 2005-11-07 11:06:55 +1100 | [diff] [blame] | 509 | pte_iterate_hashed_subpages(pte, psize, va, index, |
| 510 | shift) { |
| 511 | __tlbiel(va, psize); |
| 512 | } pte_iterate_hashed_end(); |
| 513 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 514 | asm volatile("ptesync":::"memory"); |
| 515 | } else { |
| 516 | int lock_tlbie = !cpu_has_feature(CPU_FTR_LOCKLESS_TLBIE); |
| 517 | |
| 518 | if (lock_tlbie) |
| 519 | spin_lock(&native_tlbie_lock); |
| 520 | |
| 521 | asm volatile("ptesync":::"memory"); |
Benjamin Herrenschmidt | 3c726f8 | 2005-11-07 11:06:55 +1100 | [diff] [blame] | 522 | for (i = 0; i < number; i++) { |
| 523 | va = batch->vaddr[i]; |
| 524 | pte = batch->pte[i]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 525 | |
Benjamin Herrenschmidt | 3c726f8 | 2005-11-07 11:06:55 +1100 | [diff] [blame] | 526 | pte_iterate_hashed_subpages(pte, psize, va, index, |
| 527 | shift) { |
| 528 | __tlbie(va, psize); |
| 529 | } pte_iterate_hashed_end(); |
| 530 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 531 | asm volatile("eieio; tlbsync; ptesync":::"memory"); |
| 532 | |
| 533 | if (lock_tlbie) |
| 534 | spin_unlock(&native_tlbie_lock); |
| 535 | } |
| 536 | |
| 537 | local_irq_restore(flags); |
| 538 | } |
| 539 | |
| 540 | #ifdef CONFIG_PPC_PSERIES |
| 541 | /* Disable TLB batching on nighthawk */ |
| 542 | static inline int tlb_batching_enabled(void) |
| 543 | { |
| 544 | struct device_node *root = of_find_node_by_path("/"); |
| 545 | int enabled = 1; |
| 546 | |
| 547 | if (root) { |
Stephen Rothwell | e2eb639 | 2007-04-03 22:26:41 +1000 | [diff] [blame] | 548 | const char *model = of_get_property(root, "model", NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 549 | if (model && !strcmp(model, "IBM,9076-N81")) |
| 550 | enabled = 0; |
| 551 | of_node_put(root); |
| 552 | } |
| 553 | |
| 554 | return enabled; |
| 555 | } |
| 556 | #else |
| 557 | static inline int tlb_batching_enabled(void) |
| 558 | { |
| 559 | return 1; |
| 560 | } |
| 561 | #endif |
| 562 | |
Michael Ellerman | 7d0daae | 2006-06-23 18:16:38 +1000 | [diff] [blame] | 563 | void __init hpte_init_native(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 564 | { |
| 565 | ppc_md.hpte_invalidate = native_hpte_invalidate; |
| 566 | ppc_md.hpte_updatepp = native_hpte_updatepp; |
| 567 | ppc_md.hpte_updateboltedpp = native_hpte_updateboltedpp; |
| 568 | ppc_md.hpte_insert = native_hpte_insert; |
R Sharada | f4c82d5 | 2005-06-25 14:58:08 -0700 | [diff] [blame] | 569 | ppc_md.hpte_remove = native_hpte_remove; |
| 570 | ppc_md.hpte_clear_all = native_hpte_clear; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 571 | if (tlb_batching_enabled()) |
| 572 | ppc_md.flush_hash_range = native_flush_hash_range; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 573 | } |