pgtable_64.c 7.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333
  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. if (mem_init_done) {
  96. pgdp = pgd_offset_k(ea);
  97. pudp = pud_alloc(&init_mm, pgdp, ea);
  98. if (!pudp)
  99. return -ENOMEM;
  100. pmdp = pmd_alloc(&init_mm, pudp, ea);
  101. if (!pmdp)
  102. return -ENOMEM;
  103. ptep = pte_alloc_kernel(pmdp, ea);
  104. if (!ptep)
  105. return -ENOMEM;
  106. set_pte_at(&init_mm, ea, ptep, pfn_pte(pa >> PAGE_SHIFT,
  107. __pgprot(flags)));
  108. } else {
  109. /*
  110. * If the mm subsystem is not fully up, we cannot create a
  111. * linux page table entry for this mapping. Simply bolt an
  112. * entry in the hardware page table.
  113. *
  114. */
  115. if (htab_bolt_mapping(ea, ea + PAGE_SIZE, pa, flags,
  116. mmu_virtual_psize))
  117. panic("Can't map bolted IO mapping");
  118. }
  119. return 0;
  120. }
  121. static void __iomem * __ioremap_com(unsigned long addr, unsigned long pa,
  122. unsigned long ea, unsigned long size,
  123. unsigned long flags)
  124. {
  125. unsigned long i;
  126. if ((flags & _PAGE_PRESENT) == 0)
  127. flags |= pgprot_val(PAGE_KERNEL);
  128. for (i = 0; i < size; i += PAGE_SIZE)
  129. if (map_io_page(ea+i, pa+i, flags))
  130. return NULL;
  131. return (void __iomem *) (ea + (addr & ~PAGE_MASK));
  132. }
  133. void __iomem *
  134. ioremap(unsigned long addr, unsigned long size)
  135. {
  136. return __ioremap(addr, size, _PAGE_NO_CACHE | _PAGE_GUARDED);
  137. }
  138. void __iomem * __ioremap(unsigned long addr, unsigned long size,
  139. unsigned long flags)
  140. {
  141. unsigned long pa, ea;
  142. void __iomem *ret;
  143. /*
  144. * Choose an address to map it to.
  145. * Once the imalloc system is running, we use it.
  146. * Before that, we map using addresses going
  147. * up from ioremap_bot. imalloc will use
  148. * the addresses from ioremap_bot through
  149. * IMALLOC_END
  150. *
  151. */
  152. pa = addr & PAGE_MASK;
  153. size = PAGE_ALIGN(addr + size) - pa;
  154. if (size == 0)
  155. return NULL;
  156. if (mem_init_done) {
  157. struct vm_struct *area;
  158. area = im_get_free_area(size);
  159. if (area == NULL)
  160. return NULL;
  161. ea = (unsigned long)(area->addr);
  162. ret = __ioremap_com(addr, pa, ea, size, flags);
  163. if (!ret)
  164. im_free(area->addr);
  165. } else {
  166. ea = ioremap_bot;
  167. ret = __ioremap_com(addr, pa, ea, size, flags);
  168. if (ret)
  169. ioremap_bot += size;
  170. }
  171. return ret;
  172. }
  173. #define IS_PAGE_ALIGNED(_val) ((_val) == ((_val) & PAGE_MASK))
  174. int __ioremap_explicit(unsigned long pa, unsigned long ea,
  175. unsigned long size, unsigned long flags)
  176. {
  177. struct vm_struct *area;
  178. void __iomem *ret;
  179. /* For now, require page-aligned values for pa, ea, and size */
  180. if (!IS_PAGE_ALIGNED(pa) || !IS_PAGE_ALIGNED(ea) ||
  181. !IS_PAGE_ALIGNED(size)) {
  182. printk(KERN_ERR "unaligned value in %s\n", __FUNCTION__);
  183. return 1;
  184. }
  185. if (!mem_init_done) {
  186. /* Two things to consider in this case:
  187. * 1) No records will be kept (imalloc, etc) that the region
  188. * has been remapped
  189. * 2) It won't be easy to iounmap() the region later (because
  190. * of 1)
  191. */
  192. ;
  193. } else {
  194. area = im_get_area(ea, size,
  195. IM_REGION_UNUSED|IM_REGION_SUBSET|IM_REGION_EXISTS);
  196. if (area == NULL) {
  197. /* Expected when PHB-dlpar is in play */
  198. return 1;
  199. }
  200. if (ea != (unsigned long) area->addr) {
  201. printk(KERN_ERR "unexpected addr return from "
  202. "im_get_area\n");
  203. return 1;
  204. }
  205. }
  206. ret = __ioremap_com(pa, pa, ea, size, flags);
  207. if (ret == NULL) {
  208. printk(KERN_ERR "ioremap_explicit() allocation failure !\n");
  209. return 1;
  210. }
  211. if (ret != (void *) ea) {
  212. printk(KERN_ERR "__ioremap_com() returned unexpected addr\n");
  213. return 1;
  214. }
  215. return 0;
  216. }
  217. /*
  218. * Unmap an IO region and remove it from imalloc'd list.
  219. * Access to IO memory should be serialized by driver.
  220. * This code is modeled after vmalloc code - unmap_vm_area()
  221. *
  222. * XXX what about calls before mem_init_done (ie python_countermeasures())
  223. */
  224. void iounmap(volatile void __iomem *token)
  225. {
  226. void *addr;
  227. if (!mem_init_done)
  228. return;
  229. addr = (void *) ((unsigned long __force) token & PAGE_MASK);
  230. im_free(addr);
  231. }
  232. static int iounmap_subset_regions(unsigned long addr, unsigned long size)
  233. {
  234. struct vm_struct *area;
  235. /* Check whether subsets of this region exist */
  236. area = im_get_area(addr, size, IM_REGION_SUPERSET);
  237. if (area == NULL)
  238. return 1;
  239. while (area) {
  240. iounmap((void __iomem *) area->addr);
  241. area = im_get_area(addr, size,
  242. IM_REGION_SUPERSET);
  243. }
  244. return 0;
  245. }
  246. int iounmap_explicit(volatile void __iomem *start, unsigned long size)
  247. {
  248. struct vm_struct *area;
  249. unsigned long addr;
  250. int rc;
  251. addr = (unsigned long __force) start & PAGE_MASK;
  252. /* Verify that the region either exists or is a subset of an existing
  253. * region. In the latter case, split the parent region to create
  254. * the exact region
  255. */
  256. area = im_get_area(addr, size,
  257. IM_REGION_EXISTS | IM_REGION_SUBSET);
  258. if (area == NULL) {
  259. /* Determine whether subset regions exist. If so, unmap */
  260. rc = iounmap_subset_regions(addr, size);
  261. if (rc) {
  262. printk(KERN_ERR
  263. "%s() cannot unmap nonexistent range 0x%lx\n",
  264. __FUNCTION__, addr);
  265. return 1;
  266. }
  267. } else {
  268. iounmap((void __iomem *) area->addr);
  269. }
  270. /*
  271. * FIXME! This can't be right:
  272. iounmap(area->addr);
  273. * Maybe it should be "iounmap(area);"
  274. */
  275. return 0;
  276. }
  277. #endif
  278. EXPORT_SYMBOL(ioremap);
  279. EXPORT_SYMBOL(__ioremap);
  280. EXPORT_SYMBOL(iounmap);
  281. void __iomem * reserve_phb_iospace(unsigned long size)
  282. {
  283. void __iomem *virt_addr;
  284. if (phbs_io_bot >= IMALLOC_BASE)
  285. panic("reserve_phb_iospace(): phb io space overflow\n");
  286. virt_addr = (void __iomem *) phbs_io_bot;
  287. phbs_io_bot += size;
  288. return virt_addr;
  289. }