iommu.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:10k
源码类别:

嵌入式Linux

开发平台:

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 = 0;
  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. for (; sz >= 0; sz--) {
  156. sg[sz].dvma_address = (__u32) (sg[sz].address);
  157. sg[sz].dvma_length = (__u32) (sg[sz].length);
  158. }
  159. }
  160. static void iommu_get_scsi_sgl_gflush(struct scatterlist *sg, int sz, struct sbus_bus *sbus)
  161. {
  162. flush_page_for_dma(0);
  163. for (; sz >= 0; sz--) {
  164. sg[sz].dvma_address = (__u32) (sg[sz].address);
  165. sg[sz].dvma_length = (__u32) (sg[sz].length);
  166. }
  167. }
  168. static void iommu_get_scsi_sgl_pflush(struct scatterlist *sg, int sz, struct sbus_bus *sbus)
  169. {
  170. unsigned long page, oldpage = 0;
  171. while(sz >= 0) {
  172. page = ((unsigned long) sg[sz].address) & PAGE_MASK;
  173. if (oldpage == page)
  174. page += PAGE_SIZE; /* We flushed that page already */
  175. while(page < (unsigned long)(sg[sz].address + sg[sz].length)) {
  176. flush_page_for_dma(page);
  177. page += PAGE_SIZE;
  178. }
  179. sg[sz].dvma_address = (__u32) (sg[sz].address);
  180. sg[sz].dvma_length = (__u32) (sg[sz].length);
  181. sz--;
  182. oldpage = page - PAGE_SIZE;
  183. }
  184. }
  185. static void iommu_release_scsi_one(__u32 vaddr, unsigned long len, struct sbus_bus *sbus)
  186. {
  187. }
  188. static void iommu_release_scsi_sgl(struct scatterlist *sg, int sz, struct sbus_bus *sbus)
  189. {
  190. }
  191. #ifdef CONFIG_SBUS
  192. static void iommu_map_dma_area(unsigned long va, __u32 addr, int len)
  193. {
  194. unsigned long page, end, ipte_cache;
  195. pgprot_t dvma_prot;
  196. struct iommu_struct *iommu = sbus_root->iommu;
  197. iopte_t *iopte = iommu->page_table;
  198. iopte_t *first;
  199. if(viking_mxcc_present || srmmu_modtype == HyperSparc) {
  200. dvma_prot = __pgprot(SRMMU_CACHE | SRMMU_ET_PTE | SRMMU_PRIV);
  201. ipte_cache = 1;
  202. } else {
  203. dvma_prot = __pgprot(SRMMU_ET_PTE | SRMMU_PRIV);
  204. ipte_cache = 0;
  205. }
  206. iopte += ((addr - iommu->start) >> PAGE_SHIFT);
  207. first = iopte;
  208. end = PAGE_ALIGN((addr + len));
  209. while(addr < end) {
  210. page = va;
  211. {
  212. pgd_t *pgdp;
  213. pmd_t *pmdp;
  214. pte_t *ptep;
  215. if (viking_mxcc_present)
  216. viking_mxcc_flush_page(page);
  217. else if (viking_flush)
  218. viking_flush_page(page);
  219. else
  220. __flush_page_to_ram(page);
  221. pgdp = pgd_offset(&init_mm, addr);
  222. pmdp = pmd_offset(pgdp, addr);
  223. ptep = pte_offset(pmdp, addr);
  224. set_pte(ptep, mk_pte(virt_to_page(page), dvma_prot));
  225. if (ipte_cache != 0) {
  226. iopte_val(*iopte++) = MKIOPTE(__pa(page));
  227. } else {
  228. iopte_val(*iopte++) =
  229. MKIOPTE(__pa(page)) & ~IOPTE_CACHE;
  230. }
  231. }
  232. addr += PAGE_SIZE;
  233. va += PAGE_SIZE;
  234. }
  235. /* P3: why do we need this?
  236.  *
  237.  * DAVEM: Because there are several aspects, none of which
  238.  *        are handled by a single interface.  Some cpus are
  239.  *        completely not I/O DMA coherent, and some have
  240.  *        virtually indexed caches.  The driver DMA flushing
  241.  *        methods handle the former case, but here during
  242.  *        IOMMU page table modifications, and usage of non-cacheable
  243.  *        cpu mappings of pages potentially in the cpu caches, we have
  244.  *        to handle the latter case as well.
  245.  */
  246. flush_cache_all();
  247. if(viking_mxcc_present) {
  248. unsigned long start = ((unsigned long) first) & PAGE_MASK;
  249. unsigned long end = PAGE_ALIGN(((unsigned long) iopte));
  250. while(start < end) {
  251. viking_mxcc_flush_page(start);
  252. start += PAGE_SIZE;
  253. }
  254. } else if(viking_flush) {
  255. unsigned long start = ((unsigned long) first) & PAGE_MASK;
  256. unsigned long end = PAGE_ALIGN(((unsigned long) iopte));
  257. while(start < end) {
  258. viking_flush_page(start);
  259. start += PAGE_SIZE;
  260. }
  261. }
  262. flush_tlb_all();
  263. iommu_invalidate(iommu->regs);
  264. }
  265. static void iommu_unmap_dma_area(unsigned long busa, int len)
  266. {
  267. struct iommu_struct *iommu = sbus_root->iommu;
  268. iopte_t *iopte = iommu->page_table;
  269. unsigned long end;
  270. iopte += ((busa - iommu->start) >> PAGE_SHIFT);
  271. end = PAGE_ALIGN((busa + len));
  272. while (busa < end) {
  273. iopte_val(*iopte++) = 0;
  274. busa += PAGE_SIZE;
  275. }
  276. flush_tlb_all(); /* P3: Hmm... it would not hurt. */
  277. iommu_invalidate(iommu->regs);
  278. }
  279. static unsigned long iommu_translate_dvma(unsigned long busa)
  280. {
  281. struct iommu_struct *iommu = sbus_root->iommu;
  282. iopte_t *iopte = iommu->page_table;
  283. unsigned long pa;
  284. iopte += ((busa - iommu->start) >> PAGE_SHIFT);
  285. pa = pte_val(*iopte);
  286. pa = (pa & 0xFFFFFFF0) << 4; /* Loose higher bits of 36 */
  287. return pa + PAGE_OFFSET;
  288. }
  289. #endif
  290. static char *iommu_lockarea(char *vaddr, unsigned long len)
  291. {
  292. return vaddr;
  293. }
  294. static void iommu_unlockarea(char *vaddr, unsigned long len)
  295. {
  296. }
  297. void __init ld_mmu_iommu(void)
  298. {
  299. viking_flush = (BTFIXUPVAL_CALL(flush_page_for_dma) == (unsigned long)viking_flush_page);
  300. BTFIXUPSET_CALL(mmu_lockarea, iommu_lockarea, BTFIXUPCALL_RETO0);
  301. BTFIXUPSET_CALL(mmu_unlockarea, iommu_unlockarea, BTFIXUPCALL_NOP);
  302. if (!BTFIXUPVAL_CALL(flush_page_for_dma)) {
  303. /* IO coherent chip */
  304. BTFIXUPSET_CALL(mmu_get_scsi_one, iommu_get_scsi_one_noflush, BTFIXUPCALL_RETO0);
  305. BTFIXUPSET_CALL(mmu_get_scsi_sgl, iommu_get_scsi_sgl_noflush, BTFIXUPCALL_NORM);
  306. } else if (flush_page_for_dma_global) {
  307. /* flush_page_for_dma flushes everything, no matter of what page is it */
  308. BTFIXUPSET_CALL(mmu_get_scsi_one, iommu_get_scsi_one_gflush, BTFIXUPCALL_NORM);
  309. BTFIXUPSET_CALL(mmu_get_scsi_sgl, iommu_get_scsi_sgl_gflush, BTFIXUPCALL_NORM);
  310. } else {
  311. BTFIXUPSET_CALL(mmu_get_scsi_one, iommu_get_scsi_one_pflush, BTFIXUPCALL_NORM);
  312. BTFIXUPSET_CALL(mmu_get_scsi_sgl, iommu_get_scsi_sgl_pflush, BTFIXUPCALL_NORM);
  313. }
  314. BTFIXUPSET_CALL(mmu_release_scsi_one, iommu_release_scsi_one, BTFIXUPCALL_NOP);
  315. BTFIXUPSET_CALL(mmu_release_scsi_sgl, iommu_release_scsi_sgl, BTFIXUPCALL_NOP);
  316. #ifdef CONFIG_SBUS
  317. BTFIXUPSET_CALL(mmu_map_dma_area, iommu_map_dma_area, BTFIXUPCALL_NORM);
  318. BTFIXUPSET_CALL(mmu_unmap_dma_area, iommu_unmap_dma_area, BTFIXUPCALL_NORM);
  319. BTFIXUPSET_CALL(mmu_translate_dvma, iommu_translate_dvma, BTFIXUPCALL_NORM);
  320. #endif
  321. }