hash_native_64.c 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725
  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. */
  12. #undef DEBUG_LOW
  13. #include <linux/spinlock.h>
  14. #include <linux/bitops.h>
  15. #include <linux/of.h>
  16. #include <linux/threads.h>
  17. #include <linux/smp.h>
  18. #include <asm/machdep.h>
  19. #include <asm/mmu.h>
  20. #include <asm/mmu_context.h>
  21. #include <asm/pgtable.h>
  22. #include <asm/tlbflush.h>
  23. #include <asm/tlb.h>
  24. #include <asm/cputable.h>
  25. #include <asm/udbg.h>
  26. #include <asm/kexec.h>
  27. #include <asm/ppc-opcode.h>
  28. #include <misc/cxl-base.h>
  29. #ifdef DEBUG_LOW
  30. #define DBG_LOW(fmt...) udbg_printf(fmt)
  31. #else
  32. #define DBG_LOW(fmt...)
  33. #endif
  34. #ifdef __BIG_ENDIAN__
  35. #define HPTE_LOCK_BIT 3
  36. #else
  37. #define HPTE_LOCK_BIT (56+3)
  38. #endif
  39. DEFINE_RAW_SPINLOCK(native_tlbie_lock);
  40. static inline void __tlbie(unsigned long vpn, int psize, int apsize, int ssize)
  41. {
  42. unsigned long va;
  43. unsigned int penc;
  44. unsigned long sllp;
  45. /*
  46. * We need 14 to 65 bits of va for a tlibe of 4K page
  47. * With vpn we ignore the lower VPN_SHIFT bits already.
  48. * And top two bits are already ignored because we can
  49. * only accomadate 76 bits in a 64 bit vpn with a VPN_SHIFT
  50. * of 12.
  51. */
  52. va = vpn << VPN_SHIFT;
  53. /*
  54. * clear top 16 bits of 64bit va, non SLS segment
  55. * Older versions of the architecture (2.02 and earler) require the
  56. * masking of the top 16 bits.
  57. */
  58. va &= ~(0xffffULL << 48);
  59. switch (psize) {
  60. case MMU_PAGE_4K:
  61. /* clear out bits after (52) [0....52.....63] */
  62. va &= ~((1ul << (64 - 52)) - 1);
  63. va |= ssize << 8;
  64. sllp = ((mmu_psize_defs[apsize].sllp & SLB_VSID_L) >> 6) |
  65. ((mmu_psize_defs[apsize].sllp & SLB_VSID_LP) >> 4);
  66. va |= sllp << 5;
  67. asm volatile(ASM_FTR_IFCLR("tlbie %0,0", PPC_TLBIE(%1,%0), %2)
  68. : : "r" (va), "r"(0), "i" (CPU_FTR_ARCH_206)
  69. : "memory");
  70. break;
  71. default:
  72. /* We need 14 to 14 + i bits of va */
  73. penc = mmu_psize_defs[psize].penc[apsize];
  74. va &= ~((1ul << mmu_psize_defs[apsize].shift) - 1);
  75. va |= penc << 12;
  76. va |= ssize << 8;
  77. /*
  78. * AVAL bits:
  79. * We don't need all the bits, but rest of the bits
  80. * must be ignored by the processor.
  81. * vpn cover upto 65 bits of va. (0...65) and we need
  82. * 58..64 bits of va.
  83. */
  84. va |= (vpn & 0xfe); /* AVAL */
  85. va |= 1; /* L */
  86. asm volatile(ASM_FTR_IFCLR("tlbie %0,1", PPC_TLBIE(%1,%0), %2)
  87. : : "r" (va), "r"(0), "i" (CPU_FTR_ARCH_206)
  88. : "memory");
  89. break;
  90. }
  91. }
  92. static inline void __tlbiel(unsigned long vpn, int psize, int apsize, int ssize)
  93. {
  94. unsigned long va;
  95. unsigned int penc;
  96. unsigned long sllp;
  97. /* VPN_SHIFT can be atmost 12 */
  98. va = vpn << VPN_SHIFT;
  99. /*
  100. * clear top 16 bits of 64 bit va, non SLS segment
  101. * Older versions of the architecture (2.02 and earler) require the
  102. * masking of the top 16 bits.
  103. */
  104. va &= ~(0xffffULL << 48);
  105. switch (psize) {
  106. case MMU_PAGE_4K:
  107. /* clear out bits after(52) [0....52.....63] */
  108. va &= ~((1ul << (64 - 52)) - 1);
  109. va |= ssize << 8;
  110. sllp = ((mmu_psize_defs[apsize].sllp & SLB_VSID_L) >> 6) |
  111. ((mmu_psize_defs[apsize].sllp & SLB_VSID_LP) >> 4);
  112. va |= sllp << 5;
  113. asm volatile(".long 0x7c000224 | (%0 << 11) | (0 << 21)"
  114. : : "r"(va) : "memory");
  115. break;
  116. default:
  117. /* We need 14 to 14 + i bits of va */
  118. penc = mmu_psize_defs[psize].penc[apsize];
  119. va &= ~((1ul << mmu_psize_defs[apsize].shift) - 1);
  120. va |= penc << 12;
  121. va |= ssize << 8;
  122. /*
  123. * AVAL bits:
  124. * We don't need all the bits, but rest of the bits
  125. * must be ignored by the processor.
  126. * vpn cover upto 65 bits of va. (0...65) and we need
  127. * 58..64 bits of va.
  128. */
  129. va |= (vpn & 0xfe);
  130. va |= 1; /* L */
  131. asm volatile(".long 0x7c000224 | (%0 << 11) | (1 << 21)"
  132. : : "r"(va) : "memory");
  133. break;
  134. }
  135. }
  136. static inline void tlbie(unsigned long vpn, int psize, int apsize,
  137. int ssize, int local)
  138. {
  139. unsigned int use_local;
  140. int lock_tlbie = !mmu_has_feature(MMU_FTR_LOCKLESS_TLBIE);
  141. use_local = local && mmu_has_feature(MMU_FTR_TLBIEL) && !cxl_ctx_in_use();
  142. if (use_local)
  143. use_local = mmu_psize_defs[psize].tlbiel;
  144. if (lock_tlbie && !use_local)
  145. raw_spin_lock(&native_tlbie_lock);
  146. asm volatile("ptesync": : :"memory");
  147. if (use_local) {
  148. __tlbiel(vpn, psize, apsize, ssize);
  149. asm volatile("ptesync": : :"memory");
  150. } else {
  151. __tlbie(vpn, psize, apsize, ssize);
  152. asm volatile("eieio; tlbsync; ptesync": : :"memory");
  153. }
  154. if (lock_tlbie && !use_local)
  155. raw_spin_unlock(&native_tlbie_lock);
  156. }
  157. static inline void native_lock_hpte(struct hash_pte *hptep)
  158. {
  159. unsigned long *word = (unsigned long *)&hptep->v;
  160. while (1) {
  161. if (!test_and_set_bit_lock(HPTE_LOCK_BIT, word))
  162. break;
  163. while(test_bit(HPTE_LOCK_BIT, word))
  164. cpu_relax();
  165. }
  166. }
  167. static inline void native_unlock_hpte(struct hash_pte *hptep)
  168. {
  169. unsigned long *word = (unsigned long *)&hptep->v;
  170. clear_bit_unlock(HPTE_LOCK_BIT, word);
  171. }
  172. static long native_hpte_insert(unsigned long hpte_group, unsigned long vpn,
  173. unsigned long pa, unsigned long rflags,
  174. unsigned long vflags, int psize, int apsize, int ssize)
  175. {
  176. struct hash_pte *hptep = htab_address + hpte_group;
  177. unsigned long hpte_v, hpte_r;
  178. int i;
  179. if (!(vflags & HPTE_V_BOLTED)) {
  180. DBG_LOW(" insert(group=%lx, vpn=%016lx, pa=%016lx,"
  181. " rflags=%lx, vflags=%lx, psize=%d)\n",
  182. hpte_group, vpn, pa, rflags, vflags, psize);
  183. }
  184. for (i = 0; i < HPTES_PER_GROUP; i++) {
  185. if (! (be64_to_cpu(hptep->v) & HPTE_V_VALID)) {
  186. /* retry with lock held */
  187. native_lock_hpte(hptep);
  188. if (! (be64_to_cpu(hptep->v) & HPTE_V_VALID))
  189. break;
  190. native_unlock_hpte(hptep);
  191. }
  192. hptep++;
  193. }
  194. if (i == HPTES_PER_GROUP)
  195. return -1;
  196. hpte_v = hpte_encode_v(vpn, psize, apsize, ssize) | vflags | HPTE_V_VALID;
  197. hpte_r = hpte_encode_r(pa, psize, apsize) | rflags;
  198. if (!(vflags & HPTE_V_BOLTED)) {
  199. DBG_LOW(" i=%x hpte_v=%016lx, hpte_r=%016lx\n",
  200. i, hpte_v, hpte_r);
  201. }
  202. hptep->r = cpu_to_be64(hpte_r);
  203. /* Guarantee the second dword is visible before the valid bit */
  204. eieio();
  205. /*
  206. * Now set the first dword including the valid bit
  207. * NOTE: this also unlocks the hpte
  208. */
  209. hptep->v = cpu_to_be64(hpte_v);
  210. __asm__ __volatile__ ("ptesync" : : : "memory");
  211. return i | (!!(vflags & HPTE_V_SECONDARY) << 3);
  212. }
  213. static long native_hpte_remove(unsigned long hpte_group)
  214. {
  215. struct hash_pte *hptep;
  216. int i;
  217. int slot_offset;
  218. unsigned long hpte_v;
  219. DBG_LOW(" remove(group=%lx)\n", hpte_group);
  220. /* pick a random entry to start at */
  221. slot_offset = mftb() & 0x7;
  222. for (i = 0; i < HPTES_PER_GROUP; i++) {
  223. hptep = htab_address + hpte_group + slot_offset;
  224. hpte_v = be64_to_cpu(hptep->v);
  225. if ((hpte_v & HPTE_V_VALID) && !(hpte_v & HPTE_V_BOLTED)) {
  226. /* retry with lock held */
  227. native_lock_hpte(hptep);
  228. hpte_v = be64_to_cpu(hptep->v);
  229. if ((hpte_v & HPTE_V_VALID)
  230. && !(hpte_v & HPTE_V_BOLTED))
  231. break;
  232. native_unlock_hpte(hptep);
  233. }
  234. slot_offset++;
  235. slot_offset &= 0x7;
  236. }
  237. if (i == HPTES_PER_GROUP)
  238. return -1;
  239. /* Invalidate the hpte. NOTE: this also unlocks it */
  240. hptep->v = 0;
  241. return i;
  242. }
  243. static long native_hpte_updatepp(unsigned long slot, unsigned long newpp,
  244. unsigned long vpn, int bpsize,
  245. int apsize, int ssize, unsigned long flags)
  246. {
  247. struct hash_pte *hptep = htab_address + slot;
  248. unsigned long hpte_v, want_v;
  249. int ret = 0, local = 0;
  250. want_v = hpte_encode_avpn(vpn, bpsize, ssize);
  251. DBG_LOW(" update(vpn=%016lx, avpnv=%016lx, group=%lx, newpp=%lx)",
  252. vpn, want_v & HPTE_V_AVPN, slot, newpp);
  253. hpte_v = be64_to_cpu(hptep->v);
  254. /*
  255. * We need to invalidate the TLB always because hpte_remove doesn't do
  256. * a tlb invalidate. If a hash bucket gets full, we "evict" a more/less
  257. * random entry from it. When we do that we don't invalidate the TLB
  258. * (hpte_remove) because we assume the old translation is still
  259. * technically "valid".
  260. */
  261. if (!HPTE_V_COMPARE(hpte_v, want_v) || !(hpte_v & HPTE_V_VALID)) {
  262. DBG_LOW(" -> miss\n");
  263. ret = -1;
  264. } else {
  265. native_lock_hpte(hptep);
  266. /* recheck with locks held */
  267. hpte_v = be64_to_cpu(hptep->v);
  268. if (unlikely(!HPTE_V_COMPARE(hpte_v, want_v) ||
  269. !(hpte_v & HPTE_V_VALID))) {
  270. ret = -1;
  271. } else {
  272. DBG_LOW(" -> hit\n");
  273. /* Update the HPTE */
  274. hptep->r = cpu_to_be64((be64_to_cpu(hptep->r) &
  275. ~(HPTE_R_PP | HPTE_R_N)) |
  276. (newpp & (HPTE_R_PP | HPTE_R_N |
  277. HPTE_R_C)));
  278. }
  279. native_unlock_hpte(hptep);
  280. }
  281. if (flags & HPTE_LOCAL_UPDATE)
  282. local = 1;
  283. /*
  284. * Ensure it is out of the tlb too if it is not a nohpte fault
  285. */
  286. if (!(flags & HPTE_NOHPTE_UPDATE))
  287. tlbie(vpn, bpsize, apsize, ssize, local);
  288. return ret;
  289. }
  290. static long native_hpte_find(unsigned long vpn, int psize, int ssize)
  291. {
  292. struct hash_pte *hptep;
  293. unsigned long hash;
  294. unsigned long i;
  295. long slot;
  296. unsigned long want_v, hpte_v;
  297. hash = hpt_hash(vpn, mmu_psize_defs[psize].shift, ssize);
  298. want_v = hpte_encode_avpn(vpn, psize, ssize);
  299. /* Bolted mappings are only ever in the primary group */
  300. slot = (hash & htab_hash_mask) * HPTES_PER_GROUP;
  301. for (i = 0; i < HPTES_PER_GROUP; i++) {
  302. hptep = htab_address + slot;
  303. hpte_v = be64_to_cpu(hptep->v);
  304. if (HPTE_V_COMPARE(hpte_v, want_v) && (hpte_v & HPTE_V_VALID))
  305. /* HPTE matches */
  306. return slot;
  307. ++slot;
  308. }
  309. return -1;
  310. }
  311. /*
  312. * Update the page protection bits. Intended to be used to create
  313. * guard pages for kernel data structures on pages which are bolted
  314. * in the HPT. Assumes pages being operated on will not be stolen.
  315. *
  316. * No need to lock here because we should be the only user.
  317. */
  318. static void native_hpte_updateboltedpp(unsigned long newpp, unsigned long ea,
  319. int psize, int ssize)
  320. {
  321. unsigned long vpn;
  322. unsigned long vsid;
  323. long slot;
  324. struct hash_pte *hptep;
  325. vsid = get_kernel_vsid(ea, ssize);
  326. vpn = hpt_vpn(ea, vsid, ssize);
  327. slot = native_hpte_find(vpn, psize, ssize);
  328. if (slot == -1)
  329. panic("could not find page to bolt\n");
  330. hptep = htab_address + slot;
  331. /* Update the HPTE */
  332. hptep->r = cpu_to_be64((be64_to_cpu(hptep->r) &
  333. ~(HPTE_R_PP | HPTE_R_N)) |
  334. (newpp & (HPTE_R_PP | HPTE_R_N)));
  335. /*
  336. * Ensure it is out of the tlb too. Bolted entries base and
  337. * actual page size will be same.
  338. */
  339. tlbie(vpn, psize, psize, ssize, 0);
  340. }
  341. static void native_hpte_invalidate(unsigned long slot, unsigned long vpn,
  342. int bpsize, int apsize, int ssize, int local)
  343. {
  344. struct hash_pte *hptep = htab_address + slot;
  345. unsigned long hpte_v;
  346. unsigned long want_v;
  347. unsigned long flags;
  348. local_irq_save(flags);
  349. DBG_LOW(" invalidate(vpn=%016lx, hash: %lx)\n", vpn, slot);
  350. want_v = hpte_encode_avpn(vpn, bpsize, ssize);
  351. native_lock_hpte(hptep);
  352. hpte_v = be64_to_cpu(hptep->v);
  353. /*
  354. * We need to invalidate the TLB always because hpte_remove doesn't do
  355. * a tlb invalidate. If a hash bucket gets full, we "evict" a more/less
  356. * random entry from it. When we do that we don't invalidate the TLB
  357. * (hpte_remove) because we assume the old translation is still
  358. * technically "valid".
  359. */
  360. if (!HPTE_V_COMPARE(hpte_v, want_v) || !(hpte_v & HPTE_V_VALID))
  361. native_unlock_hpte(hptep);
  362. else
  363. /* Invalidate the hpte. NOTE: this also unlocks it */
  364. hptep->v = 0;
  365. /* Invalidate the TLB */
  366. tlbie(vpn, bpsize, apsize, ssize, local);
  367. local_irq_restore(flags);
  368. }
  369. static void native_hugepage_invalidate(unsigned long vsid,
  370. unsigned long addr,
  371. unsigned char *hpte_slot_array,
  372. int psize, int ssize, int local)
  373. {
  374. int i;
  375. struct hash_pte *hptep;
  376. int actual_psize = MMU_PAGE_16M;
  377. unsigned int max_hpte_count, valid;
  378. unsigned long flags, s_addr = addr;
  379. unsigned long hpte_v, want_v, shift;
  380. unsigned long hidx, vpn = 0, hash, slot;
  381. shift = mmu_psize_defs[psize].shift;
  382. max_hpte_count = 1U << (PMD_SHIFT - shift);
  383. local_irq_save(flags);
  384. for (i = 0; i < max_hpte_count; i++) {
  385. valid = hpte_valid(hpte_slot_array, i);
  386. if (!valid)
  387. continue;
  388. hidx = hpte_hash_index(hpte_slot_array, i);
  389. /* get the vpn */
  390. addr = s_addr + (i * (1ul << shift));
  391. vpn = hpt_vpn(addr, vsid, ssize);
  392. hash = hpt_hash(vpn, shift, ssize);
  393. if (hidx & _PTEIDX_SECONDARY)
  394. hash = ~hash;
  395. slot = (hash & htab_hash_mask) * HPTES_PER_GROUP;
  396. slot += hidx & _PTEIDX_GROUP_IX;
  397. hptep = htab_address + slot;
  398. want_v = hpte_encode_avpn(vpn, psize, ssize);
  399. native_lock_hpte(hptep);
  400. hpte_v = be64_to_cpu(hptep->v);
  401. /* Even if we miss, we need to invalidate the TLB */
  402. if (!HPTE_V_COMPARE(hpte_v, want_v) || !(hpte_v & HPTE_V_VALID))
  403. native_unlock_hpte(hptep);
  404. else
  405. /* Invalidate the hpte. NOTE: this also unlocks it */
  406. hptep->v = 0;
  407. /*
  408. * We need to do tlb invalidate for all the address, tlbie
  409. * instruction compares entry_VA in tlb with the VA specified
  410. * here
  411. */
  412. tlbie(vpn, psize, actual_psize, ssize, local);
  413. }
  414. local_irq_restore(flags);
  415. }
  416. static inline int __hpte_actual_psize(unsigned int lp, int psize)
  417. {
  418. int i, shift;
  419. unsigned int mask;
  420. /* start from 1 ignoring MMU_PAGE_4K */
  421. for (i = 1; i < MMU_PAGE_COUNT; i++) {
  422. /* invalid penc */
  423. if (mmu_psize_defs[psize].penc[i] == -1)
  424. continue;
  425. /*
  426. * encoding bits per actual page size
  427. * PTE LP actual page size
  428. * rrrr rrrz >=8KB
  429. * rrrr rrzz >=16KB
  430. * rrrr rzzz >=32KB
  431. * rrrr zzzz >=64KB
  432. * .......
  433. */
  434. shift = mmu_psize_defs[i].shift - LP_SHIFT;
  435. if (shift > LP_BITS)
  436. shift = LP_BITS;
  437. mask = (1 << shift) - 1;
  438. if ((lp & mask) == mmu_psize_defs[psize].penc[i])
  439. return i;
  440. }
  441. return -1;
  442. }
  443. static void hpte_decode(struct hash_pte *hpte, unsigned long slot,
  444. int *psize, int *apsize, int *ssize, unsigned long *vpn)
  445. {
  446. unsigned long avpn, pteg, vpi;
  447. unsigned long hpte_v = be64_to_cpu(hpte->v);
  448. unsigned long hpte_r = be64_to_cpu(hpte->r);
  449. unsigned long vsid, seg_off;
  450. int size, a_size, shift;
  451. /* Look at the 8 bit LP value */
  452. unsigned int lp = (hpte_r >> LP_SHIFT) & ((1 << LP_BITS) - 1);
  453. if (!(hpte_v & HPTE_V_LARGE)) {
  454. size = MMU_PAGE_4K;
  455. a_size = MMU_PAGE_4K;
  456. } else {
  457. for (size = 0; size < MMU_PAGE_COUNT; size++) {
  458. /* valid entries have a shift value */
  459. if (!mmu_psize_defs[size].shift)
  460. continue;
  461. a_size = __hpte_actual_psize(lp, size);
  462. if (a_size != -1)
  463. break;
  464. }
  465. }
  466. /* This works for all page sizes, and for 256M and 1T segments */
  467. *ssize = hpte_v >> HPTE_V_SSIZE_SHIFT;
  468. shift = mmu_psize_defs[size].shift;
  469. avpn = (HPTE_V_AVPN_VAL(hpte_v) & ~mmu_psize_defs[size].avpnm);
  470. pteg = slot / HPTES_PER_GROUP;
  471. if (hpte_v & HPTE_V_SECONDARY)
  472. pteg = ~pteg;
  473. switch (*ssize) {
  474. case MMU_SEGSIZE_256M:
  475. /* We only have 28 - 23 bits of seg_off in avpn */
  476. seg_off = (avpn & 0x1f) << 23;
  477. vsid = avpn >> 5;
  478. /* We can find more bits from the pteg value */
  479. if (shift < 23) {
  480. vpi = (vsid ^ pteg) & htab_hash_mask;
  481. seg_off |= vpi << shift;
  482. }
  483. *vpn = vsid << (SID_SHIFT - VPN_SHIFT) | seg_off >> VPN_SHIFT;
  484. break;
  485. case MMU_SEGSIZE_1T:
  486. /* We only have 40 - 23 bits of seg_off in avpn */
  487. seg_off = (avpn & 0x1ffff) << 23;
  488. vsid = avpn >> 17;
  489. if (shift < 23) {
  490. vpi = (vsid ^ (vsid << 25) ^ pteg) & htab_hash_mask;
  491. seg_off |= vpi << shift;
  492. }
  493. *vpn = vsid << (SID_SHIFT_1T - VPN_SHIFT) | seg_off >> VPN_SHIFT;
  494. break;
  495. default:
  496. *vpn = size = 0;
  497. }
  498. *psize = size;
  499. *apsize = a_size;
  500. }
  501. /*
  502. * clear all mappings on kexec. All cpus are in real mode (or they will
  503. * be when they isi), and we are the only one left. We rely on our kernel
  504. * mapping being 0xC0's and the hardware ignoring those two real bits.
  505. *
  506. * This must be called with interrupts disabled.
  507. *
  508. * Taking the native_tlbie_lock is unsafe here due to the possibility of
  509. * lockdep being on. On pre POWER5 hardware, not taking the lock could
  510. * cause deadlock. POWER5 and newer not taking the lock is fine. This only
  511. * gets called during boot before secondary CPUs have come up and during
  512. * crashdump and all bets are off anyway.
  513. *
  514. * TODO: add batching support when enabled. remember, no dynamic memory here,
  515. * athough there is the control page available...
  516. */
  517. static void native_hpte_clear(void)
  518. {
  519. unsigned long vpn = 0;
  520. unsigned long slot, slots;
  521. struct hash_pte *hptep = htab_address;
  522. unsigned long hpte_v;
  523. unsigned long pteg_count;
  524. int psize, apsize, ssize;
  525. pteg_count = htab_hash_mask + 1;
  526. slots = pteg_count * HPTES_PER_GROUP;
  527. for (slot = 0; slot < slots; slot++, hptep++) {
  528. /*
  529. * we could lock the pte here, but we are the only cpu
  530. * running, right? and for crash dump, we probably
  531. * don't want to wait for a maybe bad cpu.
  532. */
  533. hpte_v = be64_to_cpu(hptep->v);
  534. /*
  535. * Call __tlbie() here rather than tlbie() since we can't take the
  536. * native_tlbie_lock.
  537. */
  538. if (hpte_v & HPTE_V_VALID) {
  539. hpte_decode(hptep, slot, &psize, &apsize, &ssize, &vpn);
  540. hptep->v = 0;
  541. __tlbie(vpn, psize, apsize, ssize);
  542. }
  543. }
  544. asm volatile("eieio; tlbsync; ptesync":::"memory");
  545. }
  546. /*
  547. * Batched hash table flush, we batch the tlbie's to avoid taking/releasing
  548. * the lock all the time
  549. */
  550. static void native_flush_hash_range(unsigned long number, int local)
  551. {
  552. unsigned long vpn;
  553. unsigned long hash, index, hidx, shift, slot;
  554. struct hash_pte *hptep;
  555. unsigned long hpte_v;
  556. unsigned long want_v;
  557. unsigned long flags;
  558. real_pte_t pte;
  559. struct ppc64_tlb_batch *batch = this_cpu_ptr(&ppc64_tlb_batch);
  560. unsigned long psize = batch->psize;
  561. int ssize = batch->ssize;
  562. int i;
  563. unsigned int use_local;
  564. use_local = local && mmu_has_feature(MMU_FTR_TLBIEL) &&
  565. mmu_psize_defs[psize].tlbiel && !cxl_ctx_in_use();
  566. local_irq_save(flags);
  567. for (i = 0; i < number; i++) {
  568. vpn = batch->vpn[i];
  569. pte = batch->pte[i];
  570. pte_iterate_hashed_subpages(pte, psize, vpn, index, shift) {
  571. hash = hpt_hash(vpn, shift, ssize);
  572. hidx = __rpte_to_hidx(pte, index);
  573. if (hidx & _PTEIDX_SECONDARY)
  574. hash = ~hash;
  575. slot = (hash & htab_hash_mask) * HPTES_PER_GROUP;
  576. slot += hidx & _PTEIDX_GROUP_IX;
  577. hptep = htab_address + slot;
  578. want_v = hpte_encode_avpn(vpn, psize, ssize);
  579. native_lock_hpte(hptep);
  580. hpte_v = be64_to_cpu(hptep->v);
  581. if (!HPTE_V_COMPARE(hpte_v, want_v) ||
  582. !(hpte_v & HPTE_V_VALID))
  583. native_unlock_hpte(hptep);
  584. else
  585. hptep->v = 0;
  586. } pte_iterate_hashed_end();
  587. }
  588. if (use_local) {
  589. asm volatile("ptesync":::"memory");
  590. for (i = 0; i < number; i++) {
  591. vpn = batch->vpn[i];
  592. pte = batch->pte[i];
  593. pte_iterate_hashed_subpages(pte, psize,
  594. vpn, index, shift) {
  595. __tlbiel(vpn, psize, psize, ssize);
  596. } pte_iterate_hashed_end();
  597. }
  598. asm volatile("ptesync":::"memory");
  599. } else {
  600. int lock_tlbie = !mmu_has_feature(MMU_FTR_LOCKLESS_TLBIE);
  601. if (lock_tlbie)
  602. raw_spin_lock(&native_tlbie_lock);
  603. asm volatile("ptesync":::"memory");
  604. for (i = 0; i < number; i++) {
  605. vpn = batch->vpn[i];
  606. pte = batch->pte[i];
  607. pte_iterate_hashed_subpages(pte, psize,
  608. vpn, index, shift) {
  609. __tlbie(vpn, psize, psize, ssize);
  610. } pte_iterate_hashed_end();
  611. }
  612. asm volatile("eieio; tlbsync; ptesync":::"memory");
  613. if (lock_tlbie)
  614. raw_spin_unlock(&native_tlbie_lock);
  615. }
  616. local_irq_restore(flags);
  617. }
  618. void __init hpte_init_native(void)
  619. {
  620. ppc_md.hpte_invalidate = native_hpte_invalidate;
  621. ppc_md.hpte_updatepp = native_hpte_updatepp;
  622. ppc_md.hpte_updateboltedpp = native_hpte_updateboltedpp;
  623. ppc_md.hpte_insert = native_hpte_insert;
  624. ppc_md.hpte_remove = native_hpte_remove;
  625. ppc_md.hpte_clear_all = native_hpte_clear;
  626. ppc_md.flush_hash_range = native_flush_hash_range;
  627. ppc_md.hugepage_invalidate = native_hugepage_invalidate;
  628. }