pgtable_64.c 7.8 KB

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