iommu.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:10k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /* $Id: iommu.c,v 1.21 2001/02/13 01:16:43 davem Exp $
  2.  * iommu.c:  IOMMU specific routines for memory management.
  3.  *
  4.  * Copyright (C) 1995 David S. Miller  (davem@caip.rutgers.edu)
  5.  * Copyright (C) 1995 Pete Zaitcev
  6.  * Copyright (C) 1996 Eddie C. Dost    (ecd@skynet.be)
  7.  * Copyright (C) 1997,1998 Jakub Jelinek    (jj@sunsite.mff.cuni.cz)
  8.  */
  9.  
  10. #include <linux/config.h>
  11. #include <linux/kernel.h>
  12. #include <linux/init.h>
  13. #include <linux/mm.h>
  14. #include <linux/slab.h>
  15. #include <asm/scatterlist.h>
  16. #include <asm/pgalloc.h>
  17. #include <asm/pgtable.h>
  18. #include <asm/sbus.h>
  19. #include <asm/io.h>
  20. #include <asm/mxcc.h>
  21. #include <asm/mbus.h>
  22. /* srmmu.c */
  23. extern int viking_mxcc_present;
  24. BTFIXUPDEF_CALL(void, flush_page_for_dma, unsigned long)
  25. #define flush_page_for_dma(page) BTFIXUP_CALL(flush_page_for_dma)(page)
  26. extern int flush_page_for_dma_global;
  27. static int viking_flush;
  28. /* viking.S */
  29. extern void viking_flush_page(unsigned long page);
  30. extern void viking_mxcc_flush_page(unsigned long page);
  31. #define IOPERM        (IOPTE_CACHE | IOPTE_WRITE | IOPTE_VALID)
  32. #define MKIOPTE(phys) (((((phys)>>4) & IOPTE_PAGE) | IOPERM) & ~IOPTE_WAZ)
  33. static inline void iommu_map_dvma_pages_for_iommu(struct iommu_struct *iommu)
  34. {
  35. unsigned long kern_end = (unsigned long) high_memory;
  36. unsigned long first = PAGE_OFFSET;
  37. unsigned long last = kern_end;
  38. iopte_t *iopte = iommu->page_table;
  39. iopte += ((first - iommu->start) >> PAGE_SHIFT);
  40. while(first <= last) {
  41. *iopte++ = __iopte(MKIOPTE(__pa(first)));
  42. first += PAGE_SIZE;
  43. }
  44. }
  45. void __init
  46. iommu_init(int iommund, struct sbus_bus *sbus)
  47. {
  48. unsigned int impl, vers, ptsize;
  49. unsigned long tmp;
  50. struct iommu_struct *iommu;
  51. struct linux_prom_registers iommu_promregs[PROMREG_MAX];
  52. struct resource r;
  53. int i;
  54. iommu = kmalloc(sizeof(struct iommu_struct), GFP_ATOMIC);
  55. prom_getproperty(iommund, "reg", (void *) iommu_promregs,
  56.  sizeof(iommu_promregs));
  57. memset(&r, 0, sizeof(r));
  58. r.flags = iommu_promregs[0].which_io;
  59. r.start = iommu_promregs[0].phys_addr;
  60. iommu->regs = (struct iommu_regs *)
  61. sbus_ioremap(&r, 0, PAGE_SIZE * 3, "iommu_regs");
  62. if(!iommu->regs)
  63. panic("Cannot map IOMMU registers.");
  64. impl = (iommu->regs->control & IOMMU_CTRL_IMPL) >> 28;
  65. vers = (iommu->regs->control & IOMMU_CTRL_VERS) >> 24;
  66. tmp = iommu->regs->control;
  67. tmp &= ~(IOMMU_CTRL_RNGE);
  68. switch(PAGE_OFFSET & 0xf0000000) {
  69. case 0xf0000000:
  70. tmp |= (IOMMU_RNGE_256MB | IOMMU_CTRL_ENAB);
  71. iommu->plow = iommu->start = 0xf0000000;
  72. break;
  73. case 0xe0000000:
  74. tmp |= (IOMMU_RNGE_512MB | IOMMU_CTRL_ENAB);
  75. iommu->plow = iommu->start = 0xe0000000;
  76. break;
  77. case 0xd0000000:
  78. case 0xc0000000:
  79. tmp |= (IOMMU_RNGE_1GB | IOMMU_CTRL_ENAB);
  80. iommu->plow = iommu->start = 0xc0000000;
  81. break;
  82. case 0xb0000000:
  83. case 0xa0000000:
  84. case 0x90000000:
  85. case 0x80000000:
  86. tmp |= (IOMMU_RNGE_2GB | IOMMU_CTRL_ENAB);
  87. iommu->plow = iommu->start = 0x80000000;
  88. break;
  89. }
  90. iommu->regs->control = tmp;
  91. iommu_invalidate(iommu->regs);
  92. iommu->end = 0xffffffff;
  93. /* Allocate IOMMU page table */
  94. ptsize = iommu->end - iommu->start + 1;
  95. ptsize = (ptsize >> PAGE_SHIFT) * sizeof(iopte_t);
  96. /* Stupid alignment constraints give me a headache. 
  97.    We need 256K or 512K or 1M or 2M area aligned to
  98.            its size and current gfp will fortunately give
  99.            it to us. */
  100. for (i = 6; i < 9; i++)
  101. if ((1 << (i + PAGE_SHIFT)) == ptsize)
  102. break;
  103.         tmp = __get_free_pages(GFP_DMA, i);
  104. if (!tmp) {
  105. prom_printf("Could not allocate iopte of size 0x%08xn", ptsize);
  106. prom_halt();
  107. }
  108. iommu->lowest = iommu->page_table = (iopte_t *)tmp;
  109. /* Initialize new table. */
  110. flush_cache_all();
  111. memset(iommu->page_table, 0, ptsize);
  112. iommu_map_dvma_pages_for_iommu(iommu);
  113. if(viking_mxcc_present) {
  114. unsigned long start = (unsigned long) iommu->page_table;
  115. unsigned long end = (start + ptsize);
  116. while(start < end) {
  117. viking_mxcc_flush_page(start);
  118. start += PAGE_SIZE;
  119. }
  120. } else if (viking_flush) {
  121. unsigned long start = (unsigned long) iommu->page_table;
  122. unsigned long end = (start + ptsize);
  123. while(start < end) {
  124. viking_flush_page(start);
  125. start += PAGE_SIZE;
  126. }
  127. }
  128. flush_tlb_all();
  129. iommu->regs->base = __pa((unsigned long) iommu->page_table) >> 4;
  130. iommu_invalidate(iommu->regs);
  131. sbus->iommu = iommu;
  132. printk("IOMMU: impl %d vers %d page table at %p of size %d bytesn",
  133.        impl, vers, iommu->page_table, ptsize);
  134. }
  135. static __u32 iommu_get_scsi_one_noflush(char *vaddr, unsigned long len, struct sbus_bus *sbus)
  136. {
  137. return (__u32)vaddr;
  138. }
  139. static __u32 iommu_get_scsi_one_gflush(char *vaddr, unsigned long len, struct sbus_bus *sbus)
  140. {
  141. flush_page_for_dma(0);
  142. return (__u32)vaddr;
  143. }
  144. static __u32 iommu_get_scsi_one_pflush(char *vaddr, unsigned long len, struct sbus_bus *sbus)
  145. {
  146. unsigned long page = ((unsigned long) vaddr) & PAGE_MASK;
  147. while(page < ((unsigned long)(vaddr + len))) {
  148. flush_page_for_dma(page);
  149. page += PAGE_SIZE;
  150. }
  151. return (__u32)vaddr;
  152. }
  153. static void iommu_get_scsi_sgl_noflush(struct scatterlist *sg, int sz, struct sbus_bus *sbus)
  154. {
  155. while (sz != 0) {
  156. sz--;
  157. sg[sz].dvma_address = (__u32) (sg[sz].address);
  158. sg[sz].dvma_length = (__u32) (sg[sz].length);
  159. }
  160. }
  161. static void iommu_get_scsi_sgl_gflush(struct scatterlist *sg, int sz, struct sbus_bus *sbus)
  162. {
  163. flush_page_for_dma(0);
  164. while (sz != 0) {
  165. sz--;
  166. sg[sz].dvma_address = (__u32) (sg[sz].address);
  167. sg[sz].dvma_length = (__u32) (sg[sz].length);
  168. }
  169. }
  170. static void iommu_get_scsi_sgl_pflush(struct scatterlist *sg, int sz, struct sbus_bus *sbus)
  171. {
  172. unsigned long page, oldpage = 0;
  173. while(sz >= 0) {
  174. sz--;
  175. page = ((unsigned long) sg[sz].address) & PAGE_MASK;
  176. if (oldpage == page)
  177. page += PAGE_SIZE; /* We flushed that page already */
  178. while(page < (unsigned long)(sg[sz].address + sg[sz].length)) {
  179. flush_page_for_dma(page);
  180. page += PAGE_SIZE;
  181. }
  182. sg[sz].dvma_address = (__u32) (sg[sz].address);
  183. sg[sz].dvma_length = (__u32) (sg[sz].length);
  184. oldpage = page - PAGE_SIZE;
  185. }
  186. }
  187. static void iommu_release_scsi_one(__u32 vaddr, unsigned long len, struct sbus_bus *sbus)
  188. {
  189. }
  190. static void iommu_release_scsi_sgl(struct scatterlist *sg, int sz, struct sbus_bus *sbus)
  191. {
  192. }
  193. #ifdef CONFIG_SBUS
  194. static void iommu_map_dma_area(unsigned long va, __u32 addr, int len)
  195. {
  196. unsigned long page, end, ipte_cache;
  197. pgprot_t dvma_prot;
  198. struct iommu_struct *iommu = sbus_root->iommu;
  199. iopte_t *iopte = iommu->page_table;
  200. iopte_t *first;
  201. if(viking_mxcc_present || srmmu_modtype == HyperSparc) {
  202. dvma_prot = __pgprot(SRMMU_CACHE | SRMMU_ET_PTE | SRMMU_PRIV);
  203. ipte_cache = 1;
  204. } else {
  205. dvma_prot = __pgprot(SRMMU_ET_PTE | SRMMU_PRIV);
  206. ipte_cache = 0;
  207. }
  208. iopte += ((addr - iommu->start) >> PAGE_SHIFT);
  209. first = iopte;
  210. end = PAGE_ALIGN((addr + len));
  211. while(addr < end) {
  212. page = va;
  213. {
  214. pgd_t *pgdp;
  215. pmd_t *pmdp;
  216. pte_t *ptep;
  217. if (viking_mxcc_present)
  218. viking_mxcc_flush_page(page);
  219. else if (viking_flush)
  220. viking_flush_page(page);
  221. else
  222. __flush_page_to_ram(page);
  223. pgdp = pgd_offset(&init_mm, addr);
  224. pmdp = pmd_offset(pgdp, addr);
  225. ptep = pte_offset(pmdp, addr);
  226. set_pte(ptep, mk_pte(virt_to_page(page), dvma_prot));
  227. if (ipte_cache != 0) {
  228. iopte_val(*iopte++) = MKIOPTE(__pa(page));
  229. } else {
  230. iopte_val(*iopte++) =
  231. MKIOPTE(__pa(page)) & ~IOPTE_CACHE;
  232. }
  233. }
  234. addr += PAGE_SIZE;
  235. va += PAGE_SIZE;
  236. }
  237. /* P3: why do we need this?
  238.  *
  239.  * DAVEM: Because there are several aspects, none of which
  240.  *        are handled by a single interface.  Some cpus are
  241.  *        completely not I/O DMA coherent, and some have
  242.  *        virtually indexed caches.  The driver DMA flushing
  243.  *        methods handle the former case, but here during
  244.  *        IOMMU page table modifications, and usage of non-cacheable
  245.  *        cpu mappings of pages potentially in the cpu caches, we have
  246.  *        to handle the latter case as well.
  247.  */
  248. flush_cache_all();
  249. if(viking_mxcc_present) {
  250. unsigned long start = ((unsigned long) first) & PAGE_MASK;
  251. unsigned long end = PAGE_ALIGN(((unsigned long) iopte));
  252. while(start < end) {
  253. viking_mxcc_flush_page(start);
  254. start += PAGE_SIZE;
  255. }
  256. } else if(viking_flush) {
  257. unsigned long start = ((unsigned long) first) & PAGE_MASK;
  258. unsigned long end = PAGE_ALIGN(((unsigned long) iopte));
  259. while(start < end) {
  260. viking_flush_page(start);
  261. start += PAGE_SIZE;
  262. }
  263. }
  264. flush_tlb_all();
  265. iommu_invalidate(iommu->regs);
  266. }
  267. static void iommu_unmap_dma_area(unsigned long busa, int len)
  268. {
  269. struct iommu_struct *iommu = sbus_root->iommu;
  270. iopte_t *iopte = iommu->page_table;
  271. unsigned long end;
  272. iopte += ((busa - iommu->start) >> PAGE_SHIFT);
  273. end = PAGE_ALIGN((busa + len));
  274. while (busa < end) {
  275. iopte_val(*iopte++) = 0;
  276. busa += PAGE_SIZE;
  277. }
  278. flush_tlb_all(); /* P3: Hmm... it would not hurt. */
  279. iommu_invalidate(iommu->regs);
  280. }
  281. static unsigned long iommu_translate_dvma(unsigned long busa)
  282. {
  283. struct iommu_struct *iommu = sbus_root->iommu;
  284. iopte_t *iopte = iommu->page_table;
  285. unsigned long pa;
  286. iopte += ((busa - iommu->start) >> PAGE_SHIFT);
  287. pa = pte_val(*iopte);
  288. pa = (pa & 0xFFFFFFF0) << 4; /* Loose higher bits of 36 */
  289. return pa + PAGE_OFFSET;
  290. }
  291. #endif
  292. static char *iommu_lockarea(char *vaddr, unsigned long len)
  293. {
  294. return vaddr;
  295. }
  296. static void iommu_unlockarea(char *vaddr, unsigned long len)
  297. {
  298. }
  299. void __init ld_mmu_iommu(void)
  300. {
  301. viking_flush = (BTFIXUPVAL_CALL(flush_page_for_dma) == (unsigned long)viking_flush_page);
  302. BTFIXUPSET_CALL(mmu_lockarea, iommu_lockarea, BTFIXUPCALL_RETO0);
  303. BTFIXUPSET_CALL(mmu_unlockarea, iommu_unlockarea, BTFIXUPCALL_NOP);
  304. if (!BTFIXUPVAL_CALL(flush_page_for_dma)) {
  305. /* IO coherent chip */
  306. BTFIXUPSET_CALL(mmu_get_scsi_one, iommu_get_scsi_one_noflush, BTFIXUPCALL_RETO0);
  307. BTFIXUPSET_CALL(mmu_get_scsi_sgl, iommu_get_scsi_sgl_noflush, BTFIXUPCALL_NORM);
  308. } else if (flush_page_for_dma_global) {
  309. /* flush_page_for_dma flushes everything, no matter of what page is it */
  310. BTFIXUPSET_CALL(mmu_get_scsi_one, iommu_get_scsi_one_gflush, BTFIXUPCALL_NORM);
  311. BTFIXUPSET_CALL(mmu_get_scsi_sgl, iommu_get_scsi_sgl_gflush, BTFIXUPCALL_NORM);
  312. } else {
  313. BTFIXUPSET_CALL(mmu_get_scsi_one, iommu_get_scsi_one_pflush, BTFIXUPCALL_NORM);
  314. BTFIXUPSET_CALL(mmu_get_scsi_sgl, iommu_get_scsi_sgl_pflush, BTFIXUPCALL_NORM);
  315. }
  316. BTFIXUPSET_CALL(mmu_release_scsi_one, iommu_release_scsi_one, BTFIXUPCALL_NOP);
  317. BTFIXUPSET_CALL(mmu_release_scsi_sgl, iommu_release_scsi_sgl, BTFIXUPCALL_NOP);
  318. #ifdef CONFIG_SBUS
  319. BTFIXUPSET_CALL(mmu_map_dma_area, iommu_map_dma_area, BTFIXUPCALL_NORM);
  320. BTFIXUPSET_CALL(mmu_unmap_dma_area, iommu_unmap_dma_area, BTFIXUPCALL_NORM);
  321. BTFIXUPSET_CALL(mmu_translate_dvma, iommu_translate_dvma, BTFIXUPCALL_NORM);
  322. #endif
  323. }