pgtable_64.c 8.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349
  1. /*
  2. * This file contains ioremap and related functions for 64-bit machines.
  3. *
  4. * Derived from arch/ppc64/mm/init.c
  5. * Copyright (C) 1995-1996 Gary Thomas (gdt@linuxppc.org)
  6. *
  7. * Modifications by Paul Mackerras (PowerMac) (paulus@samba.org)
  8. * and Cort Dougan (PReP) (cort@cs.nmt.edu)
  9. * Copyright (C) 1996 Paul Mackerras
  10. * Amiga/APUS changes by Jesper Skov (jskov@cygnus.co.uk).
  11. *
  12. * Derived from "arch/i386/mm/init.c"
  13. * Copyright (C) 1991, 1992, 1993, 1994 Linus Torvalds
  14. *
  15. * Dave Engebretsen <engebret@us.ibm.com>
  16. * Rework for PPC64 port.
  17. *
  18. * This program is free software; you can redistribute it and/or
  19. * modify it under the terms of the GNU General Public License
  20. * as published by the Free Software Foundation; either version
  21. * 2 of the License, or (at your option) any later version.
  22. *
  23. */
  24. #include <linux/config.h>
  25. #include <linux/signal.h>
  26. #include <linux/sched.h>
  27. #include <linux/kernel.h>
  28. #include <linux/errno.h>
  29. #include <linux/string.h>
  30. #include <linux/types.h>
  31. #include <linux/mman.h>
  32. #include <linux/mm.h>
  33. #include <linux/swap.h>
  34. #include <linux/stddef.h>
  35. #include <linux/vmalloc.h>
  36. #include <linux/init.h>
  37. #include <linux/delay.h>
  38. #include <linux/bootmem.h>
  39. #include <linux/highmem.h>
  40. #include <linux/idr.h>
  41. #include <linux/nodemask.h>
  42. #include <linux/module.h>
  43. #include <asm/pgalloc.h>
  44. #include <asm/page.h>
  45. #include <asm/prom.h>
  46. #include <asm/lmb.h>
  47. #include <asm/rtas.h>
  48. #include <asm/io.h>
  49. #include <asm/mmu_context.h>
  50. #include <asm/pgtable.h>
  51. #include <asm/mmu.h>
  52. #include <asm/uaccess.h>
  53. #include <asm/smp.h>
  54. #include <asm/machdep.h>
  55. #include <asm/tlb.h>
  56. #include <asm/eeh.h>
  57. #include <asm/processor.h>
  58. #include <asm/mmzone.h>
  59. #include <asm/cputable.h>
  60. #include <asm/ppcdebug.h>
  61. #include <asm/sections.h>
  62. #include <asm/system.h>
  63. #include <asm/iommu.h>
  64. #include <asm/abs_addr.h>
  65. #include <asm/vdso.h>
  66. #include <asm/imalloc.h>
  67. unsigned long ioremap_bot = IMALLOC_BASE;
  68. static unsigned long phbs_io_bot = PHBS_IO_BASE;
  69. #ifdef CONFIG_PPC_ISERIES
  70. void __iomem *ioremap(unsigned long addr, unsigned long size)
  71. {
  72. return (void __iomem *)addr;
  73. }
  74. extern void __iomem *__ioremap(unsigned long addr, unsigned long size,
  75. unsigned long flags)
  76. {
  77. return (void __iomem *)addr;
  78. }
  79. void iounmap(volatile void __iomem *addr)
  80. {
  81. return;
  82. }
  83. #else
  84. /*
  85. * map_io_page currently only called by __ioremap
  86. * map_io_page adds an entry to the ioremap page table
  87. * and adds an entry to the HPT, possibly bolting it
  88. */
  89. static int map_io_page(unsigned long ea, unsigned long pa, int flags)
  90. {
  91. pgd_t *pgdp;
  92. pud_t *pudp;
  93. pmd_t *pmdp;
  94. pte_t *ptep;
  95. unsigned long vsid;
  96. if (mem_init_done) {
  97. spin_lock(&init_mm.page_table_lock);
  98. pgdp = pgd_offset_k(ea);
  99. pudp = pud_alloc(&init_mm, pgdp, ea);
  100. if (!pudp)
  101. return -ENOMEM;
  102. pmdp = pmd_alloc(&init_mm, pudp, ea);
  103. if (!pmdp)
  104. return -ENOMEM;
  105. ptep = pte_alloc_kernel(&init_mm, pmdp, ea);
  106. if (!ptep)
  107. return -ENOMEM;
  108. set_pte_at(&init_mm, ea, ptep, pfn_pte(pa >> PAGE_SHIFT,
  109. __pgprot(flags)));
  110. spin_unlock(&init_mm.page_table_lock);
  111. } else {
  112. unsigned long va, vpn, hash, hpteg;
  113. /*
  114. * If the mm subsystem is not fully up, we cannot create a
  115. * linux page table entry for this mapping. Simply bolt an
  116. * entry in the hardware page table.
  117. */
  118. vsid = get_kernel_vsid(ea);
  119. va = (vsid << 28) | (ea & 0xFFFFFFF);
  120. vpn = va >> PAGE_SHIFT;
  121. hash = hpt_hash(vpn, 0);
  122. hpteg = ((hash & htab_hash_mask) * HPTES_PER_GROUP);
  123. /* Panic if a pte grpup is full */
  124. if (ppc_md.hpte_insert(hpteg, va, pa >> PAGE_SHIFT,
  125. HPTE_V_BOLTED,
  126. _PAGE_NO_CACHE|_PAGE_GUARDED|PP_RWXX)
  127. == -1) {
  128. panic("map_io_page: could not insert mapping");
  129. }
  130. }
  131. return 0;
  132. }
  133. static void __iomem * __ioremap_com(unsigned long addr, unsigned long pa,
  134. unsigned long ea, unsigned long size,
  135. unsigned long flags)
  136. {
  137. unsigned long i;
  138. if ((flags & _PAGE_PRESENT) == 0)
  139. flags |= pgprot_val(PAGE_KERNEL);
  140. for (i = 0; i < size; i += PAGE_SIZE)
  141. if (map_io_page(ea+i, pa+i, flags))
  142. return NULL;
  143. return (void __iomem *) (ea + (addr & ~PAGE_MASK));
  144. }
  145. void __iomem *
  146. ioremap(unsigned long addr, unsigned long size)
  147. {
  148. return __ioremap(addr, size, _PAGE_NO_CACHE | _PAGE_GUARDED);
  149. }
  150. void __iomem * __ioremap(unsigned long addr, unsigned long size,
  151. unsigned long flags)
  152. {
  153. unsigned long pa, ea;
  154. void __iomem *ret;
  155. /*
  156. * Choose an address to map it to.
  157. * Once the imalloc system is running, we use it.
  158. * Before that, we map using addresses going
  159. * up from ioremap_bot. imalloc will use
  160. * the addresses from ioremap_bot through
  161. * IMALLOC_END
  162. *
  163. */
  164. pa = addr & PAGE_MASK;
  165. size = PAGE_ALIGN(addr + size) - pa;
  166. if (size == 0)
  167. return NULL;
  168. if (mem_init_done) {
  169. struct vm_struct *area;
  170. area = im_get_free_area(size);
  171. if (area == NULL)
  172. return NULL;
  173. ea = (unsigned long)(area->addr);
  174. ret = __ioremap_com(addr, pa, ea, size, flags);
  175. if (!ret)
  176. im_free(area->addr);
  177. } else {
  178. ea = ioremap_bot;
  179. ret = __ioremap_com(addr, pa, ea, size, flags);
  180. if (ret)
  181. ioremap_bot += size;
  182. }
  183. return ret;
  184. }
  185. #define IS_PAGE_ALIGNED(_val) ((_val) == ((_val) & PAGE_MASK))
  186. int __ioremap_explicit(unsigned long pa, unsigned long ea,
  187. unsigned long size, unsigned long flags)
  188. {
  189. struct vm_struct *area;
  190. void __iomem *ret;
  191. /* For now, require page-aligned values for pa, ea, and size */
  192. if (!IS_PAGE_ALIGNED(pa) || !IS_PAGE_ALIGNED(ea) ||
  193. !IS_PAGE_ALIGNED(size)) {
  194. printk(KERN_ERR "unaligned value in %s\n", __FUNCTION__);
  195. return 1;
  196. }
  197. if (!mem_init_done) {
  198. /* Two things to consider in this case:
  199. * 1) No records will be kept (imalloc, etc) that the region
  200. * has been remapped
  201. * 2) It won't be easy to iounmap() the region later (because
  202. * of 1)
  203. */
  204. ;
  205. } else {
  206. area = im_get_area(ea, size,
  207. IM_REGION_UNUSED|IM_REGION_SUBSET|IM_REGION_EXISTS);
  208. if (area == NULL) {
  209. /* Expected when PHB-dlpar is in play */
  210. return 1;
  211. }
  212. if (ea != (unsigned long) area->addr) {
  213. printk(KERN_ERR "unexpected addr return from "
  214. "im_get_area\n");
  215. return 1;
  216. }
  217. }
  218. ret = __ioremap_com(pa, pa, ea, size, flags);
  219. if (ret == NULL) {
  220. printk(KERN_ERR "ioremap_explicit() allocation failure !\n");
  221. return 1;
  222. }
  223. if (ret != (void *) ea) {
  224. printk(KERN_ERR "__ioremap_com() returned unexpected addr\n");
  225. return 1;
  226. }
  227. return 0;
  228. }
  229. /*
  230. * Unmap an IO region and remove it from imalloc'd list.
  231. * Access to IO memory should be serialized by driver.
  232. * This code is modeled after vmalloc code - unmap_vm_area()
  233. *
  234. * XXX what about calls before mem_init_done (ie python_countermeasures())
  235. */
  236. void iounmap(volatile void __iomem *token)
  237. {
  238. void *addr;
  239. if (!mem_init_done)
  240. return;
  241. addr = (void *) ((unsigned long __force) token & PAGE_MASK);
  242. im_free(addr);
  243. }
  244. static int iounmap_subset_regions(unsigned long addr, unsigned long size)
  245. {
  246. struct vm_struct *area;
  247. /* Check whether subsets of this region exist */
  248. area = im_get_area(addr, size, IM_REGION_SUPERSET);
  249. if (area == NULL)
  250. return 1;
  251. while (area) {
  252. iounmap((void __iomem *) area->addr);
  253. area = im_get_area(addr, size,
  254. IM_REGION_SUPERSET);
  255. }
  256. return 0;
  257. }
  258. int iounmap_explicit(volatile void __iomem *start, unsigned long size)
  259. {
  260. struct vm_struct *area;
  261. unsigned long addr;
  262. int rc;
  263. addr = (unsigned long __force) start & PAGE_MASK;
  264. /* Verify that the region either exists or is a subset of an existing
  265. * region. In the latter case, split the parent region to create
  266. * the exact region
  267. */
  268. area = im_get_area(addr, size,
  269. IM_REGION_EXISTS | IM_REGION_SUBSET);
  270. if (area == NULL) {
  271. /* Determine whether subset regions exist. If so, unmap */
  272. rc = iounmap_subset_regions(addr, size);
  273. if (rc) {
  274. printk(KERN_ERR
  275. "%s() cannot unmap nonexistent range 0x%lx\n",
  276. __FUNCTION__, addr);
  277. return 1;
  278. }
  279. } else {
  280. iounmap((void __iomem *) area->addr);
  281. }
  282. /*
  283. * FIXME! This can't be right:
  284. iounmap(area->addr);
  285. * Maybe it should be "iounmap(area);"
  286. */
  287. return 0;
  288. }
  289. #endif
  290. EXPORT_SYMBOL(ioremap);
  291. EXPORT_SYMBOL(__ioremap);
  292. EXPORT_SYMBOL(iounmap);
  293. void __iomem * reserve_phb_iospace(unsigned long size)
  294. {
  295. void __iomem *virt_addr;
  296. if (phbs_io_bot >= IMALLOC_BASE)
  297. panic("reserve_phb_iospace(): phb io space overflow\n");
  298. virt_addr = (void __iomem *) phbs_io_bot;
  299. phbs_io_bot += size;
  300. return virt_addr;
  301. }