Loading...
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 | /* * BK Id: SCCS/s.4xx_tlb.c 1.5 05/17/01 18:14:23 cort */ /* * * Copyright (c) 1998-1999 TiVo, Inc. * Original implementation. * Copyright (c) 1999-2000 Grant Erickson <grant@lcse.umn.edu> * Minor rework. * * Module name: 4xx_tlb.c * * Description: * Routines for manipulating the TLB on PowerPC 400-class processors. * */ #include <linux/mm.h> #include <asm/processor.h> #include <asm/io.h> #include <asm/mmu.h> #include <asm/pgtable.h> #include <asm/system.h> /* Preprocessor Defines */ #if !defined(TRUE) || TRUE != 1 #define TRUE 1 #endif #if !defined(FALSE) || FALSE != 0 #define FALSE 0 #endif /* Global Variables */ static int pinned = 0; /* Function Prototypes */ static int PPC4xx_tlb_miss(struct pt_regs *, unsigned long, int); extern void do_page_fault(struct pt_regs *, unsigned long, unsigned long); /* * () * * Description: * This routine... * * Input(s): * * * Output(s): * * * Returns: * * */ static inline void PPC4xx_tlb_write(unsigned long tag, unsigned long data, unsigned int index) { asm("tlbwe %0,%1,1" : : "r" (data), "r" (index)); asm("tlbwe %0,%1,0" : : "r" (tag), "r" (index)); } /* * () * * Description: * This routine... * * Input(s): * * * Output(s): * * * Returns: * * */ void PPC4xx_flush_tlb_all(void) { int i; unsigned long flags, pid; save_flags(flags); cli(); pid = mfspr(SPRN_PID); mtspr(SPRN_PID, 0); for (i = pinned; i < PPC4XX_TLB_SIZE; i++) { PPC4xx_tlb_write(0, 0, i); } asm("sync;isync"); mtspr(SPRN_PID, pid); restore_flags(flags); } /* * () * * Description: * This routine... * * Input(s): * * * Output(s): * * * Returns: * * */ void PPC4xx_dtlb_miss(struct pt_regs *regs) { unsigned long addr = mfspr(SPRN_DEAR); int write = mfspr(SPRN_ESR) & ESR_DST; if (PPC4xx_tlb_miss(regs, addr, write) < 0) { sti(); do_page_fault(regs, addr, write); cli(); } } /* * () * * Description: * This routine... * * Input(s): * * * Output(s): * * * Returns: * * */ void PPC4xx_itlb_miss(struct pt_regs *regs) { unsigned long addr = regs->nip; if (PPC4xx_tlb_miss(regs, addr, 0) < 0) { sti(); do_page_fault(regs, addr, 0); cli(); } } /* * () * * Description: * This routine... * * Input(s): * * * Output(s): * * * Returns: * * */ void PPC4xx_tlb_pin(unsigned long va, unsigned long pa, int pagesz, int cache) { unsigned long tag, data; unsigned long opid; if (pinned >= PPC4XX_TLB_SIZE) return; opid = mfspr(SPRN_PID); mtspr(SPRN_PID, 0); data = (pa & TLB_RPN_MASK) | TLB_WR; if (cache) data |= (TLB_EX); else data |= (TLB_G | TLB_I); tag = (va & TLB_EPN_MASK) | TLB_VALID | pagesz; PPC4xx_tlb_write(tag, data, pinned++); mtspr(SPRN_PID, opid); return; } /* * () * * Description: * This routine... * * Input(s): * * * Output(s): * * * Returns: * * */ void PPC4xx_tlb_unpin(unsigned long va, unsigned long pa, int size) { /* XXX - To be implemented. */ } /* * () * * Description: * This routine... * * Input(s): * * * Output(s): * * * Returns: * * */ static inline void PPC4xx_tlb_update(unsigned long addr, pte_t *pte) { unsigned long data, tag, rand; int i, found = 1; /* Construct the hardware TLB entry from the Linux-style PTE */ tag = tag = (addr & PAGE_MASK) | TLB_VALID | TLB_PAGESZ(PAGESZ_4K); data = data = (pte_val(*pte) & PAGE_MASK) | TLB_EX | TLB_WR; #if 0 if (pte_val(*pte) & _PAGE_HWWRITE) data |= TLB_WR; #endif if (pte_val(*pte) & _PAGE_NO_CACHE) data |= TLB_I; if (pte_val(*pte) & _PAGE_GUARDED) data |= TLB_G; if (addr < KERNELBASE) data |= TLB_ZSEL(1); /* Attempt to match the new tag to an existing entry in the TLB. */ asm("tlbsx. %0,0,%2;" "beq 1f;" "li %1,0;1:" : "=r" (i), "=r" (found) : "r" (tag)); /* * If we found a match for the tag, reuse the entry index and update * the tag and data portions. Otherwise, we did not find a match. Use * the lower 5 bits of the lower time base register as a pseudo-random * index into the TLB and replace the entry at that index. */ if (found) { PPC4xx_tlb_write(tag, data, i); } else { rand = mfspr(SPRN_TBLO) & (PPC4XX_TLB_SIZE - 1); rand += pinned; if (rand >= PPC4XX_TLB_SIZE) rand -= pinned; PPC4xx_tlb_write(tag, data, rand); asm("isync;sync"); } } /* * () * * Description: * This routine... * * Input(s): * * * Output(s): * * * Returns: * * */ static int PPC4xx_tlb_miss(struct pt_regs *regs, unsigned long addr, int write) { unsigned long spid, ospid; struct mm_struct *mm; pgd_t *pgd; pmd_t *pmd; pte_t *pte; if (!user_mode(regs) && (addr >= KERNELBASE)) { mm = &init_mm; spid = 0; } else { mm = current->mm; spid = mfspr(SPRN_PID); } pgd = pgd_offset(mm, addr); if (pgd_none(*pgd)) goto bad; pmd = pmd_offset(pgd, addr); if (pmd_none(*pmd)) goto bad; pte = pte_offset(pmd, addr); if (pte_none(*pte) || !pte_present(*pte)) goto bad; if (write) { if (!pte_write(*pte)) goto bad; set_pte(pte, pte_mkdirty(*pte)); } set_pte(pte, pte_mkyoung(*pte)); ospid = mfspr(SPRN_PID); mtspr(SPRN_PID, spid); PPC4xx_tlb_update(addr, pte); mtspr(SPRN_PID, ospid); return (0); bad: return (-1); } |