pmb.c 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905
  1. /*
  2. * arch/sh/mm/pmb.c
  3. *
  4. * Privileged Space Mapping Buffer (PMB) Support.
  5. *
  6. * Copyright (C) 2005 - 2011 Paul Mundt
  7. * Copyright (C) 2010 Matt Fleming
  8. *
  9. * This file is subject to the terms and conditions of the GNU General Public
  10. * License. See the file "COPYING" in the main directory of this archive
  11. * for more details.
  12. */
  13. #include <linux/init.h>
  14. #include <linux/kernel.h>
  15. #include <linux/syscore_ops.h>
  16. #include <linux/cpu.h>
  17. #include <linux/module.h>
  18. #include <linux/bitops.h>
  19. #include <linux/debugfs.h>
  20. #include <linux/fs.h>
  21. #include <linux/seq_file.h>
  22. #include <linux/err.h>
  23. #include <linux/io.h>
  24. #include <linux/spinlock.h>
  25. #include <linux/vmalloc.h>
  26. #include <asm/cacheflush.h>
  27. #include <asm/sizes.h>
  28. #include <asm/system.h>
  29. #include <asm/uaccess.h>
  30. #include <asm/pgtable.h>
  31. #include <asm/page.h>
  32. #include <asm/mmu.h>
  33. #include <asm/mmu_context.h>
  34. struct pmb_entry;
  35. struct pmb_entry {
  36. unsigned long vpn;
  37. unsigned long ppn;
  38. unsigned long flags;
  39. unsigned long size;
  40. raw_spinlock_t lock;
  41. /*
  42. * 0 .. NR_PMB_ENTRIES for specific entry selection, or
  43. * PMB_NO_ENTRY to search for a free one
  44. */
  45. int entry;
  46. /* Adjacent entry link for contiguous multi-entry mappings */
  47. struct pmb_entry *link;
  48. };
  49. static struct {
  50. unsigned long size;
  51. int flag;
  52. } pmb_sizes[] = {
  53. { .size = SZ_512M, .flag = PMB_SZ_512M, },
  54. { .size = SZ_128M, .flag = PMB_SZ_128M, },
  55. { .size = SZ_64M, .flag = PMB_SZ_64M, },
  56. { .size = SZ_16M, .flag = PMB_SZ_16M, },
  57. };
  58. static void pmb_unmap_entry(struct pmb_entry *, int depth);
  59. static DEFINE_RWLOCK(pmb_rwlock);
  60. static struct pmb_entry pmb_entry_list[NR_PMB_ENTRIES];
  61. static DECLARE_BITMAP(pmb_map, NR_PMB_ENTRIES);
  62. static unsigned int pmb_iomapping_enabled;
  63. static __always_inline unsigned long mk_pmb_entry(unsigned int entry)
  64. {
  65. return (entry & PMB_E_MASK) << PMB_E_SHIFT;
  66. }
  67. static __always_inline unsigned long mk_pmb_addr(unsigned int entry)
  68. {
  69. return mk_pmb_entry(entry) | PMB_ADDR;
  70. }
  71. static __always_inline unsigned long mk_pmb_data(unsigned int entry)
  72. {
  73. return mk_pmb_entry(entry) | PMB_DATA;
  74. }
  75. static __always_inline unsigned int pmb_ppn_in_range(unsigned long ppn)
  76. {
  77. return ppn >= __pa(memory_start) && ppn < __pa(memory_end);
  78. }
  79. /*
  80. * Ensure that the PMB entries match our cache configuration.
  81. *
  82. * When we are in 32-bit address extended mode, CCR.CB becomes
  83. * invalid, so care must be taken to manually adjust cacheable
  84. * translations.
  85. */
  86. static __always_inline unsigned long pmb_cache_flags(void)
  87. {
  88. unsigned long flags = 0;
  89. #if defined(CONFIG_CACHE_OFF)
  90. flags |= PMB_WT | PMB_UB;
  91. #elif defined(CONFIG_CACHE_WRITETHROUGH)
  92. flags |= PMB_C | PMB_WT | PMB_UB;
  93. #elif defined(CONFIG_CACHE_WRITEBACK)
  94. flags |= PMB_C;
  95. #endif
  96. return flags;
  97. }
  98. /*
  99. * Convert typical pgprot value to the PMB equivalent
  100. */
  101. static inline unsigned long pgprot_to_pmb_flags(pgprot_t prot)
  102. {
  103. unsigned long pmb_flags = 0;
  104. u64 flags = pgprot_val(prot);
  105. if (flags & _PAGE_CACHABLE)
  106. pmb_flags |= PMB_C;
  107. if (flags & _PAGE_WT)
  108. pmb_flags |= PMB_WT | PMB_UB;
  109. return pmb_flags;
  110. }
  111. static inline bool pmb_can_merge(struct pmb_entry *a, struct pmb_entry *b)
  112. {
  113. return (b->vpn == (a->vpn + a->size)) &&
  114. (b->ppn == (a->ppn + a->size)) &&
  115. (b->flags == a->flags);
  116. }
  117. static bool pmb_mapping_exists(unsigned long vaddr, phys_addr_t phys,
  118. unsigned long size)
  119. {
  120. int i;
  121. read_lock(&pmb_rwlock);
  122. for (i = 0; i < ARRAY_SIZE(pmb_entry_list); i++) {
  123. struct pmb_entry *pmbe, *iter;
  124. unsigned long span;
  125. if (!test_bit(i, pmb_map))
  126. continue;
  127. pmbe = &pmb_entry_list[i];
  128. /*
  129. * See if VPN and PPN are bounded by an existing mapping.
  130. */
  131. if ((vaddr < pmbe->vpn) || (vaddr >= (pmbe->vpn + pmbe->size)))
  132. continue;
  133. if ((phys < pmbe->ppn) || (phys >= (pmbe->ppn + pmbe->size)))
  134. continue;
  135. /*
  136. * Now see if we're in range of a simple mapping.
  137. */
  138. if (size <= pmbe->size) {
  139. read_unlock(&pmb_rwlock);
  140. return true;
  141. }
  142. span = pmbe->size;
  143. /*
  144. * Finally for sizes that involve compound mappings, walk
  145. * the chain.
  146. */
  147. for (iter = pmbe->link; iter; iter = iter->link)
  148. span += iter->size;
  149. /*
  150. * Nothing else to do if the range requirements are met.
  151. */
  152. if (size <= span) {
  153. read_unlock(&pmb_rwlock);
  154. return true;
  155. }
  156. }
  157. read_unlock(&pmb_rwlock);
  158. return false;
  159. }
  160. static bool pmb_size_valid(unsigned long size)
  161. {
  162. int i;
  163. for (i = 0; i < ARRAY_SIZE(pmb_sizes); i++)
  164. if (pmb_sizes[i].size == size)
  165. return true;
  166. return false;
  167. }
  168. static inline bool pmb_addr_valid(unsigned long addr, unsigned long size)
  169. {
  170. return (addr >= P1SEG && (addr + size - 1) < P3SEG);
  171. }
  172. static inline bool pmb_prot_valid(pgprot_t prot)
  173. {
  174. return (pgprot_val(prot) & _PAGE_USER) == 0;
  175. }
  176. static int pmb_size_to_flags(unsigned long size)
  177. {
  178. int i;
  179. for (i = 0; i < ARRAY_SIZE(pmb_sizes); i++)
  180. if (pmb_sizes[i].size == size)
  181. return pmb_sizes[i].flag;
  182. return 0;
  183. }
  184. static int pmb_alloc_entry(void)
  185. {
  186. int pos;
  187. pos = find_first_zero_bit(pmb_map, NR_PMB_ENTRIES);
  188. if (pos >= 0 && pos < NR_PMB_ENTRIES)
  189. __set_bit(pos, pmb_map);
  190. else
  191. pos = -ENOSPC;
  192. return pos;
  193. }
  194. static struct pmb_entry *pmb_alloc(unsigned long vpn, unsigned long ppn,
  195. unsigned long flags, int entry)
  196. {
  197. struct pmb_entry *pmbe;
  198. unsigned long irqflags;
  199. void *ret = NULL;
  200. int pos;
  201. write_lock_irqsave(&pmb_rwlock, irqflags);
  202. if (entry == PMB_NO_ENTRY) {
  203. pos = pmb_alloc_entry();
  204. if (unlikely(pos < 0)) {
  205. ret = ERR_PTR(pos);
  206. goto out;
  207. }
  208. } else {
  209. if (__test_and_set_bit(entry, pmb_map)) {
  210. ret = ERR_PTR(-ENOSPC);
  211. goto out;
  212. }
  213. pos = entry;
  214. }
  215. write_unlock_irqrestore(&pmb_rwlock, irqflags);
  216. pmbe = &pmb_entry_list[pos];
  217. memset(pmbe, 0, sizeof(struct pmb_entry));
  218. raw_spin_lock_init(&pmbe->lock);
  219. pmbe->vpn = vpn;
  220. pmbe->ppn = ppn;
  221. pmbe->flags = flags;
  222. pmbe->entry = pos;
  223. return pmbe;
  224. out:
  225. write_unlock_irqrestore(&pmb_rwlock, irqflags);
  226. return ret;
  227. }
  228. static void pmb_free(struct pmb_entry *pmbe)
  229. {
  230. __clear_bit(pmbe->entry, pmb_map);
  231. pmbe->entry = PMB_NO_ENTRY;
  232. pmbe->link = NULL;
  233. }
  234. /*
  235. * Must be run uncached.
  236. */
  237. static void __set_pmb_entry(struct pmb_entry *pmbe)
  238. {
  239. unsigned long addr, data;
  240. addr = mk_pmb_addr(pmbe->entry);
  241. data = mk_pmb_data(pmbe->entry);
  242. jump_to_uncached();
  243. /* Set V-bit */
  244. __raw_writel(pmbe->vpn | PMB_V, addr);
  245. __raw_writel(pmbe->ppn | pmbe->flags | PMB_V, data);
  246. back_to_cached();
  247. }
  248. static void __clear_pmb_entry(struct pmb_entry *pmbe)
  249. {
  250. unsigned long addr, data;
  251. unsigned long addr_val, data_val;
  252. addr = mk_pmb_addr(pmbe->entry);
  253. data = mk_pmb_data(pmbe->entry);
  254. addr_val = __raw_readl(addr);
  255. data_val = __raw_readl(data);
  256. /* Clear V-bit */
  257. writel_uncached(addr_val & ~PMB_V, addr);
  258. writel_uncached(data_val & ~PMB_V, data);
  259. }
  260. #ifdef CONFIG_PM
  261. static void set_pmb_entry(struct pmb_entry *pmbe)
  262. {
  263. unsigned long flags;
  264. raw_spin_lock_irqsave(&pmbe->lock, flags);
  265. __set_pmb_entry(pmbe);
  266. raw_spin_unlock_irqrestore(&pmbe->lock, flags);
  267. }
  268. #endif /* CONFIG_PM */
  269. int pmb_bolt_mapping(unsigned long vaddr, phys_addr_t phys,
  270. unsigned long size, pgprot_t prot)
  271. {
  272. struct pmb_entry *pmbp, *pmbe;
  273. unsigned long orig_addr, orig_size;
  274. unsigned long flags, pmb_flags;
  275. int i, mapped;
  276. if (size < SZ_16M)
  277. return -EINVAL;
  278. if (!pmb_addr_valid(vaddr, size))
  279. return -EFAULT;
  280. if (pmb_mapping_exists(vaddr, phys, size))
  281. return 0;
  282. orig_addr = vaddr;
  283. orig_size = size;
  284. flush_tlb_kernel_range(vaddr, vaddr + size);
  285. pmb_flags = pgprot_to_pmb_flags(prot);
  286. pmbp = NULL;
  287. do {
  288. for (i = mapped = 0; i < ARRAY_SIZE(pmb_sizes); i++) {
  289. if (size < pmb_sizes[i].size)
  290. continue;
  291. pmbe = pmb_alloc(vaddr, phys, pmb_flags |
  292. pmb_sizes[i].flag, PMB_NO_ENTRY);
  293. if (IS_ERR(pmbe)) {
  294. pmb_unmap_entry(pmbp, mapped);
  295. return PTR_ERR(pmbe);
  296. }
  297. raw_spin_lock_irqsave(&pmbe->lock, flags);
  298. pmbe->size = pmb_sizes[i].size;
  299. __set_pmb_entry(pmbe);
  300. phys += pmbe->size;
  301. vaddr += pmbe->size;
  302. size -= pmbe->size;
  303. /*
  304. * Link adjacent entries that span multiple PMB
  305. * entries for easier tear-down.
  306. */
  307. if (likely(pmbp)) {
  308. raw_spin_lock_nested(&pmbp->lock,
  309. SINGLE_DEPTH_NESTING);
  310. pmbp->link = pmbe;
  311. raw_spin_unlock(&pmbp->lock);
  312. }
  313. pmbp = pmbe;
  314. /*
  315. * Instead of trying smaller sizes on every
  316. * iteration (even if we succeed in allocating
  317. * space), try using pmb_sizes[i].size again.
  318. */
  319. i--;
  320. mapped++;
  321. raw_spin_unlock_irqrestore(&pmbe->lock, flags);
  322. }
  323. } while (size >= SZ_16M);
  324. flush_cache_vmap(orig_addr, orig_addr + orig_size);
  325. return 0;
  326. }
  327. void __iomem *pmb_remap_caller(phys_addr_t phys, unsigned long size,
  328. pgprot_t prot, void *caller)
  329. {
  330. unsigned long vaddr;
  331. phys_addr_t offset, last_addr;
  332. phys_addr_t align_mask;
  333. unsigned long aligned;
  334. struct vm_struct *area;
  335. int i, ret;
  336. if (!pmb_iomapping_enabled)
  337. return NULL;
  338. /*
  339. * Small mappings need to go through the TLB.
  340. */
  341. if (size < SZ_16M)
  342. return ERR_PTR(-EINVAL);
  343. if (!pmb_prot_valid(prot))
  344. return ERR_PTR(-EINVAL);
  345. for (i = 0; i < ARRAY_SIZE(pmb_sizes); i++)
  346. if (size >= pmb_sizes[i].size)
  347. break;
  348. last_addr = phys + size;
  349. align_mask = ~(pmb_sizes[i].size - 1);
  350. offset = phys & ~align_mask;
  351. phys &= align_mask;
  352. aligned = ALIGN(last_addr, pmb_sizes[i].size) - phys;
  353. /*
  354. * XXX: This should really start from uncached_end, but this
  355. * causes the MMU to reset, so for now we restrict it to the
  356. * 0xb000...0xc000 range.
  357. */
  358. area = __get_vm_area_caller(aligned, VM_IOREMAP, 0xb0000000,
  359. P3SEG, caller);
  360. if (!area)
  361. return NULL;
  362. area->phys_addr = phys;
  363. vaddr = (unsigned long)area->addr;
  364. ret = pmb_bolt_mapping(vaddr, phys, size, prot);
  365. if (unlikely(ret != 0))
  366. return ERR_PTR(ret);
  367. return (void __iomem *)(offset + (char *)vaddr);
  368. }
  369. int pmb_unmap(void __iomem *addr)
  370. {
  371. struct pmb_entry *pmbe = NULL;
  372. unsigned long vaddr = (unsigned long __force)addr;
  373. int i, found = 0;
  374. read_lock(&pmb_rwlock);
  375. for (i = 0; i < ARRAY_SIZE(pmb_entry_list); i++) {
  376. if (test_bit(i, pmb_map)) {
  377. pmbe = &pmb_entry_list[i];
  378. if (pmbe->vpn == vaddr) {
  379. found = 1;
  380. break;
  381. }
  382. }
  383. }
  384. read_unlock(&pmb_rwlock);
  385. if (found) {
  386. pmb_unmap_entry(pmbe, NR_PMB_ENTRIES);
  387. return 0;
  388. }
  389. return -EINVAL;
  390. }
  391. static void __pmb_unmap_entry(struct pmb_entry *pmbe, int depth)
  392. {
  393. do {
  394. struct pmb_entry *pmblink = pmbe;
  395. /*
  396. * We may be called before this pmb_entry has been
  397. * entered into the PMB table via set_pmb_entry(), but
  398. * that's OK because we've allocated a unique slot for
  399. * this entry in pmb_alloc() (even if we haven't filled
  400. * it yet).
  401. *
  402. * Therefore, calling __clear_pmb_entry() is safe as no
  403. * other mapping can be using that slot.
  404. */
  405. __clear_pmb_entry(pmbe);
  406. flush_cache_vunmap(pmbe->vpn, pmbe->vpn + pmbe->size);
  407. pmbe = pmblink->link;
  408. pmb_free(pmblink);
  409. } while (pmbe && --depth);
  410. }
  411. static void pmb_unmap_entry(struct pmb_entry *pmbe, int depth)
  412. {
  413. unsigned long flags;
  414. if (unlikely(!pmbe))
  415. return;
  416. write_lock_irqsave(&pmb_rwlock, flags);
  417. __pmb_unmap_entry(pmbe, depth);
  418. write_unlock_irqrestore(&pmb_rwlock, flags);
  419. }
  420. static void __init pmb_notify(void)
  421. {
  422. int i;
  423. pr_info("PMB: boot mappings:\n");
  424. read_lock(&pmb_rwlock);
  425. for (i = 0; i < ARRAY_SIZE(pmb_entry_list); i++) {
  426. struct pmb_entry *pmbe;
  427. if (!test_bit(i, pmb_map))
  428. continue;
  429. pmbe = &pmb_entry_list[i];
  430. pr_info(" 0x%08lx -> 0x%08lx [ %4ldMB %2scached ]\n",
  431. pmbe->vpn >> PAGE_SHIFT, pmbe->ppn >> PAGE_SHIFT,
  432. pmbe->size >> 20, (pmbe->flags & PMB_C) ? "" : "un");
  433. }
  434. read_unlock(&pmb_rwlock);
  435. }
  436. /*
  437. * Sync our software copy of the PMB mappings with those in hardware. The
  438. * mappings in the hardware PMB were either set up by the bootloader or
  439. * very early on by the kernel.
  440. */
  441. static void __init pmb_synchronize(void)
  442. {
  443. struct pmb_entry *pmbp = NULL;
  444. int i, j;
  445. /*
  446. * Run through the initial boot mappings, log the established
  447. * ones, and blow away anything that falls outside of the valid
  448. * PPN range. Specifically, we only care about existing mappings
  449. * that impact the cached/uncached sections.
  450. *
  451. * Note that touching these can be a bit of a minefield; the boot
  452. * loader can establish multi-page mappings with the same caching
  453. * attributes, so we need to ensure that we aren't modifying a
  454. * mapping that we're presently executing from, or may execute
  455. * from in the case of straddling page boundaries.
  456. *
  457. * In the future we will have to tidy up after the boot loader by
  458. * jumping between the cached and uncached mappings and tearing
  459. * down alternating mappings while executing from the other.
  460. */
  461. for (i = 0; i < NR_PMB_ENTRIES; i++) {
  462. unsigned long addr, data;
  463. unsigned long addr_val, data_val;
  464. unsigned long ppn, vpn, flags;
  465. unsigned long irqflags;
  466. unsigned int size;
  467. struct pmb_entry *pmbe;
  468. addr = mk_pmb_addr(i);
  469. data = mk_pmb_data(i);
  470. addr_val = __raw_readl(addr);
  471. data_val = __raw_readl(data);
  472. /*
  473. * Skip over any bogus entries
  474. */
  475. if (!(data_val & PMB_V) || !(addr_val & PMB_V))
  476. continue;
  477. ppn = data_val & PMB_PFN_MASK;
  478. vpn = addr_val & PMB_PFN_MASK;
  479. /*
  480. * Only preserve in-range mappings.
  481. */
  482. if (!pmb_ppn_in_range(ppn)) {
  483. /*
  484. * Invalidate anything out of bounds.
  485. */
  486. writel_uncached(addr_val & ~PMB_V, addr);
  487. writel_uncached(data_val & ~PMB_V, data);
  488. continue;
  489. }
  490. /*
  491. * Update the caching attributes if necessary
  492. */
  493. if (data_val & PMB_C) {
  494. data_val &= ~PMB_CACHE_MASK;
  495. data_val |= pmb_cache_flags();
  496. writel_uncached(data_val, data);
  497. }
  498. size = data_val & PMB_SZ_MASK;
  499. flags = size | (data_val & PMB_CACHE_MASK);
  500. pmbe = pmb_alloc(vpn, ppn, flags, i);
  501. if (IS_ERR(pmbe)) {
  502. WARN_ON_ONCE(1);
  503. continue;
  504. }
  505. raw_spin_lock_irqsave(&pmbe->lock, irqflags);
  506. for (j = 0; j < ARRAY_SIZE(pmb_sizes); j++)
  507. if (pmb_sizes[j].flag == size)
  508. pmbe->size = pmb_sizes[j].size;
  509. if (pmbp) {
  510. raw_spin_lock_nested(&pmbp->lock, SINGLE_DEPTH_NESTING);
  511. /*
  512. * Compare the previous entry against the current one to
  513. * see if the entries span a contiguous mapping. If so,
  514. * setup the entry links accordingly. Compound mappings
  515. * are later coalesced.
  516. */
  517. if (pmb_can_merge(pmbp, pmbe))
  518. pmbp->link = pmbe;
  519. raw_spin_unlock(&pmbp->lock);
  520. }
  521. pmbp = pmbe;
  522. raw_spin_unlock_irqrestore(&pmbe->lock, irqflags);
  523. }
  524. }
  525. static void __init pmb_merge(struct pmb_entry *head)
  526. {
  527. unsigned long span, newsize;
  528. struct pmb_entry *tail;
  529. int i = 1, depth = 0;
  530. span = newsize = head->size;
  531. tail = head->link;
  532. while (tail) {
  533. span += tail->size;
  534. if (pmb_size_valid(span)) {
  535. newsize = span;
  536. depth = i;
  537. }
  538. /* This is the end of the line.. */
  539. if (!tail->link)
  540. break;
  541. tail = tail->link;
  542. i++;
  543. }
  544. /*
  545. * The merged page size must be valid.
  546. */
  547. if (!depth || !pmb_size_valid(newsize))
  548. return;
  549. head->flags &= ~PMB_SZ_MASK;
  550. head->flags |= pmb_size_to_flags(newsize);
  551. head->size = newsize;
  552. __pmb_unmap_entry(head->link, depth);
  553. __set_pmb_entry(head);
  554. }
  555. static void __init pmb_coalesce(void)
  556. {
  557. unsigned long flags;
  558. int i;
  559. write_lock_irqsave(&pmb_rwlock, flags);
  560. for (i = 0; i < ARRAY_SIZE(pmb_entry_list); i++) {
  561. struct pmb_entry *pmbe;
  562. if (!test_bit(i, pmb_map))
  563. continue;
  564. pmbe = &pmb_entry_list[i];
  565. /*
  566. * We're only interested in compound mappings
  567. */
  568. if (!pmbe->link)
  569. continue;
  570. /*
  571. * Nothing to do if it already uses the largest possible
  572. * page size.
  573. */
  574. if (pmbe->size == SZ_512M)
  575. continue;
  576. pmb_merge(pmbe);
  577. }
  578. write_unlock_irqrestore(&pmb_rwlock, flags);
  579. }
  580. #ifdef CONFIG_UNCACHED_MAPPING
  581. static void __init pmb_resize(void)
  582. {
  583. int i;
  584. /*
  585. * If the uncached mapping was constructed by the kernel, it will
  586. * already be a reasonable size.
  587. */
  588. if (uncached_size == SZ_16M)
  589. return;
  590. read_lock(&pmb_rwlock);
  591. for (i = 0; i < ARRAY_SIZE(pmb_entry_list); i++) {
  592. struct pmb_entry *pmbe;
  593. unsigned long flags;
  594. if (!test_bit(i, pmb_map))
  595. continue;
  596. pmbe = &pmb_entry_list[i];
  597. if (pmbe->vpn != uncached_start)
  598. continue;
  599. /*
  600. * Found it, now resize it.
  601. */
  602. raw_spin_lock_irqsave(&pmbe->lock, flags);
  603. pmbe->size = SZ_16M;
  604. pmbe->flags &= ~PMB_SZ_MASK;
  605. pmbe->flags |= pmb_size_to_flags(pmbe->size);
  606. uncached_resize(pmbe->size);
  607. __set_pmb_entry(pmbe);
  608. raw_spin_unlock_irqrestore(&pmbe->lock, flags);
  609. }
  610. read_unlock(&pmb_rwlock);
  611. }
  612. #endif
  613. static int __init early_pmb(char *p)
  614. {
  615. if (!p)
  616. return 0;
  617. if (strstr(p, "iomap"))
  618. pmb_iomapping_enabled = 1;
  619. return 0;
  620. }
  621. early_param("pmb", early_pmb);
  622. void __init pmb_init(void)
  623. {
  624. /* Synchronize software state */
  625. pmb_synchronize();
  626. /* Attempt to combine compound mappings */
  627. pmb_coalesce();
  628. #ifdef CONFIG_UNCACHED_MAPPING
  629. /* Resize initial mappings, if necessary */
  630. pmb_resize();
  631. #endif
  632. /* Log them */
  633. pmb_notify();
  634. writel_uncached(0, PMB_IRMCR);
  635. /* Flush out the TLB */
  636. local_flush_tlb_all();
  637. ctrl_barrier();
  638. }
  639. bool __in_29bit_mode(void)
  640. {
  641. return (__raw_readl(PMB_PASCR) & PASCR_SE) == 0;
  642. }
  643. static int pmb_seq_show(struct seq_file *file, void *iter)
  644. {
  645. int i;
  646. seq_printf(file, "V: Valid, C: Cacheable, WT: Write-Through\n"
  647. "CB: Copy-Back, B: Buffered, UB: Unbuffered\n");
  648. seq_printf(file, "ety vpn ppn size flags\n");
  649. for (i = 0; i < NR_PMB_ENTRIES; i++) {
  650. unsigned long addr, data;
  651. unsigned int size;
  652. char *sz_str = NULL;
  653. addr = __raw_readl(mk_pmb_addr(i));
  654. data = __raw_readl(mk_pmb_data(i));
  655. size = data & PMB_SZ_MASK;
  656. sz_str = (size == PMB_SZ_16M) ? " 16MB":
  657. (size == PMB_SZ_64M) ? " 64MB":
  658. (size == PMB_SZ_128M) ? "128MB":
  659. "512MB";
  660. /* 02: V 0x88 0x08 128MB C CB B */
  661. seq_printf(file, "%02d: %c 0x%02lx 0x%02lx %s %c %s %s\n",
  662. i, ((addr & PMB_V) && (data & PMB_V)) ? 'V' : ' ',
  663. (addr >> 24) & 0xff, (data >> 24) & 0xff,
  664. sz_str, (data & PMB_C) ? 'C' : ' ',
  665. (data & PMB_WT) ? "WT" : "CB",
  666. (data & PMB_UB) ? "UB" : " B");
  667. }
  668. return 0;
  669. }
  670. static int pmb_debugfs_open(struct inode *inode, struct file *file)
  671. {
  672. return single_open(file, pmb_seq_show, NULL);
  673. }
  674. static const struct file_operations pmb_debugfs_fops = {
  675. .owner = THIS_MODULE,
  676. .open = pmb_debugfs_open,
  677. .read = seq_read,
  678. .llseek = seq_lseek,
  679. .release = single_release,
  680. };
  681. static int __init pmb_debugfs_init(void)
  682. {
  683. struct dentry *dentry;
  684. dentry = debugfs_create_file("pmb", S_IFREG | S_IRUGO,
  685. arch_debugfs_dir, NULL, &pmb_debugfs_fops);
  686. if (!dentry)
  687. return -ENOMEM;
  688. return 0;
  689. }
  690. subsys_initcall(pmb_debugfs_init);
  691. #ifdef CONFIG_PM
  692. static void pmb_syscore_resume(void)
  693. {
  694. struct pmb_entry *pmbe;
  695. int i;
  696. read_lock(&pmb_rwlock);
  697. for (i = 0; i < ARRAY_SIZE(pmb_entry_list); i++) {
  698. if (test_bit(i, pmb_map)) {
  699. pmbe = &pmb_entry_list[i];
  700. set_pmb_entry(pmbe);
  701. }
  702. }
  703. read_unlock(&pmb_rwlock);
  704. }
  705. static struct syscore_ops pmb_syscore_ops = {
  706. .resume = pmb_syscore_resume,
  707. };
  708. static int __init pmb_sysdev_init(void)
  709. {
  710. register_syscore_ops(&pmb_syscore_ops);
  711. return 0;
  712. }
  713. subsys_initcall(pmb_sysdev_init);
  714. #endif