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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2. ** Tablewalk MMU emulator
  3. **
  4. ** by Toshiyasu Morita
  5. **
  6. ** Started 1/16/98 @ 2:22 am
  7. */
  8. #include <linux/mman.h>
  9. #include <linux/mm.h>
  10. #include <linux/kernel.h>
  11. #include <linux/ptrace.h>
  12. #include <linux/delay.h>
  13. #include <linux/bootmem.h>
  14. #include <asm/setup.h>
  15. #include <asm/traps.h>
  16. #include <asm/system.h>
  17. #include <asm/uaccess.h>
  18. #include <asm/page.h>
  19. #include <asm/pgtable.h>
  20. #include <asm/sun3mmu.h>
  21. #include <asm/segment.h>
  22. #include <asm/bitops.h>
  23. #include <asm/oplib.h>
  24. #include <asm/mmu_context.h>
  25. #include <asm/dvma.h>
  26. extern void prom_reboot (char *) __attribute__ ((__noreturn__));
  27. #undef DEBUG_MMU_EMU
  28. #define DEBUG_PROM_MAPS
  29. /*
  30. ** Defines
  31. */
  32. #define CONTEXTS_NUM 8
  33. #define SEGMAPS_PER_CONTEXT_NUM 2048
  34. #define PAGES_PER_SEGMENT 16
  35. #define PMEGS_NUM 256
  36. #define PMEG_MASK 0xFF
  37. /*
  38. ** Globals
  39. */
  40. unsigned long vmalloc_end = 0;
  41. unsigned long pmeg_vaddr[PMEGS_NUM];
  42. unsigned char pmeg_alloc[PMEGS_NUM];
  43. unsigned char pmeg_ctx[PMEGS_NUM];
  44. /* pointers to the mm structs for each task in each
  45.    context. 0xffffffff is a marker for kernel context */
  46. struct mm_struct *ctx_alloc[CONTEXTS_NUM] = {0xffffffff, 0, 0, 0, 0, 0, 0, 0};
  47. /* has this context been mmdrop'd? */
  48. static unsigned char ctx_avail = CONTEXTS_NUM-1;
  49. /* array of pages to be marked off for the rom when we do mem_init later */
  50. /* 256 pages lets the rom take up to 2mb of physical ram..  I really
  51.    hope it never wants mote than that. */
  52. unsigned long rom_pages[256];
  53. /* Print a PTE value in symbolic form. For debugging. */
  54. void print_pte (pte_t pte)
  55. {
  56. #if 0
  57. /* Verbose version. */
  58. unsigned long val = pte_val (pte);
  59. printk (" pte=%lx [addr=%lx",
  60. val, (val & SUN3_PAGE_PGNUM_MASK) << PAGE_SHIFT);
  61. if (val & SUN3_PAGE_VALID) printk (" valid");
  62. if (val & SUN3_PAGE_WRITEABLE) printk (" write");
  63. if (val & SUN3_PAGE_SYSTEM) printk (" sys");
  64. if (val & SUN3_PAGE_NOCACHE) printk (" nocache");
  65. if (val & SUN3_PAGE_ACCESSED) printk (" accessed");
  66. if (val & SUN3_PAGE_MODIFIED) printk (" modified");
  67. switch (val & SUN3_PAGE_TYPE_MASK) {
  68. case SUN3_PAGE_TYPE_MEMORY: printk (" memory"); break;
  69. case SUN3_PAGE_TYPE_IO:     printk (" io");     break;
  70. case SUN3_PAGE_TYPE_VME16:  printk (" vme16");  break;
  71. case SUN3_PAGE_TYPE_VME32:  printk (" vme32");  break;
  72. }
  73. printk ("]n");
  74. #else
  75. /* Terse version. More likely to fit on a line. */
  76. unsigned long val = pte_val (pte);
  77. char flags[7], *type;
  78. flags[0] = (val & SUN3_PAGE_VALID)     ? 'v' : '-';
  79. flags[1] = (val & SUN3_PAGE_WRITEABLE) ? 'w' : '-';
  80. flags[2] = (val & SUN3_PAGE_SYSTEM)    ? 's' : '-';
  81. flags[3] = (val & SUN3_PAGE_NOCACHE)   ? 'x' : '-';
  82. flags[4] = (val & SUN3_PAGE_ACCESSED)  ? 'a' : '-';
  83. flags[5] = (val & SUN3_PAGE_MODIFIED)  ? 'm' : '-';
  84. flags[6] = '';
  85. switch (val & SUN3_PAGE_TYPE_MASK) {
  86. case SUN3_PAGE_TYPE_MEMORY: type = "memory"; break;
  87. case SUN3_PAGE_TYPE_IO:     type = "io"    ; break;
  88. case SUN3_PAGE_TYPE_VME16:  type = "vme16" ; break;
  89. case SUN3_PAGE_TYPE_VME32:  type = "vme32" ; break;
  90. default: type = "unknown?"; break;
  91. }
  92. printk (" pte=%08lx [%07lx %s %s]n",
  93. val, (val & SUN3_PAGE_PGNUM_MASK) << PAGE_SHIFT, flags, type);
  94. #endif
  95. }
  96. /* Print the PTE value for a given virtual address. For debugging. */
  97. void print_pte_vaddr (unsigned long vaddr)
  98. {
  99. printk (" vaddr=%lx [%02lx]", vaddr, sun3_get_segmap (vaddr));
  100. print_pte (__pte (sun3_get_pte (vaddr)));
  101. }
  102. /*
  103.  * Initialise the MMU emulator.
  104.  */
  105. void mmu_emu_init(unsigned long bootmem_end)
  106. {
  107. unsigned long seg, num;
  108. int i,j;
  109. memset(rom_pages, 0, sizeof(rom_pages));
  110. memset(pmeg_vaddr, 0, sizeof(pmeg_vaddr));
  111. memset(pmeg_alloc, 0, sizeof(pmeg_alloc));
  112. memset(pmeg_ctx, 0, sizeof(pmeg_ctx));
  113. /* pmeg align the end of bootmem, adding another pmeg,
  114.  * later bootmem allocations will likely need it */
  115. bootmem_end = (bootmem_end + (2 * SUN3_PMEG_SIZE)) & ~SUN3_PMEG_MASK;
  116. /* mark all of the pmegs used thus far as reserved */
  117. for (i=0; i < __pa(bootmem_end) / SUN3_PMEG_SIZE ; ++i)
  118. pmeg_alloc[i] = 2;
  119. /* I'm thinking that most of the top pmeg's are going to be
  120.    used for something, and we probably shouldn't risk it */
  121. for(num = 0xf0; num <= 0xff; num++)
  122. pmeg_alloc[num] = 2;
  123. /* liberate all existing mappings in the rest of kernel space */
  124. for(seg = bootmem_end; seg < 0x0f800000; seg += SUN3_PMEG_SIZE) {
  125. i = sun3_get_segmap(seg);
  126. if(!pmeg_alloc[i]) {
  127. #ifdef DEBUG_MMU_EMU
  128. printk("freed: ");
  129. print_pte_vaddr (seg);
  130. #endif
  131. sun3_put_segmap(seg, SUN3_INVALID_PMEG);
  132. }
  133. }
  134. j = 0;
  135. for (num=0, seg=0x0F800000; seg<0x10000000; seg+=16*PAGE_SIZE) {
  136. if (sun3_get_segmap (seg) != SUN3_INVALID_PMEG) {
  137. #ifdef DEBUG_PROM_MAPS
  138. for(i = 0; i < 16; i++) {
  139. printk ("mapped:");
  140. print_pte_vaddr (seg + (i*PAGE_SIZE));
  141. break;
  142. }
  143. #endif
  144. // the lowest mapping here is the end of our
  145. // vmalloc region
  146. if(!vmalloc_end)
  147. vmalloc_end = seg;
  148. // mark the segmap alloc'd, and reserve any
  149. // of the first 0xbff pages the hardware is
  150. // already using...  does any sun3 support > 24mb?
  151. pmeg_alloc[sun3_get_segmap(seg)] = 2;
  152. }
  153. }
  154. dvma_init();
  155. /* blank everything below the kernel, and we've got the base
  156.    mapping to start all the contexts off with... */
  157. for(seg = 0; seg < PAGE_OFFSET; seg += SUN3_PMEG_SIZE) 
  158. sun3_put_segmap(seg, SUN3_INVALID_PMEG);
  159. set_fs(MAKE_MM_SEG(3));
  160. for(seg = 0; seg < 0x10000000; seg += SUN3_PMEG_SIZE) {
  161. i = sun3_get_segmap(seg);
  162. for(j = 1; j < CONTEXTS_NUM; j++)
  163. (*(romvec->pv_setctxt))(j, (void *)seg, i);
  164. }
  165. set_fs(KERNEL_DS);
  166. }
  167. /* erase the mappings for a dead context.  Uses the pg_dir for hints
  168.    as the pmeg tables proved somewhat unreliable, and unmapping all of
  169.    TASK_SIZE was much slower and no more stable. */
  170. /* todo: find a better way to keep track of the pmegs used by a
  171.    context for when they're cleared */
  172. void clear_context(unsigned long context)
  173. {
  174.      unsigned char oldctx;
  175.      unsigned long i;
  176.     
  177.      if(context) {
  178.      if(!ctx_alloc[context]) 
  179.      panic("clear_context: context not allocatedn");
  180.      ctx_alloc[context]->context = SUN3_INVALID_CONTEXT;
  181.      ctx_alloc[context] = (struct mm_struct *)0;
  182.      ctx_avail++;
  183.      }
  184.      oldctx = sun3_get_context();
  185.      sun3_put_context(context);
  186.      for(i = 0; i < SUN3_INVALID_PMEG; i++) {
  187.      if((pmeg_ctx[i] == context) && (pmeg_alloc[i] == 1)) {
  188.      sun3_put_segmap(pmeg_vaddr[i], SUN3_INVALID_PMEG);
  189.      pmeg_ctx[i] = 0;
  190.      pmeg_alloc[i] = 0;
  191.      pmeg_vaddr[i] = 0;
  192.      }
  193.      }
  194.      
  195.      sun3_put_context(oldctx);
  196. }
  197. /* gets an empty context.  if full, kills the next context listed to
  198.    die first */
  199. /* This context invalidation scheme is, well, totally arbitrary, I'm
  200.    sure it could be much more intellegent...  but it gets the job done
  201.    for now without much overhead in making it's decision. */
  202. /* todo: come up with optimized scheme for flushing contexts */
  203. unsigned long get_free_context(struct mm_struct *mm) 
  204. {
  205. unsigned long new = 1;
  206. static unsigned char next_to_die = 1;
  207. if(!ctx_avail) {
  208. /* kill someone to get our context */
  209. new = next_to_die;
  210. clear_context(new);
  211. next_to_die = (next_to_die + 1) & 0x7;
  212. if(!next_to_die)
  213. next_to_die++;
  214. } else {
  215. while(new < CONTEXTS_NUM) {
  216. if(ctx_alloc[new])
  217. new++;
  218. else
  219. break;
  220. }
  221. // check to make sure one was really free...
  222. if(new == CONTEXTS_NUM) 
  223. panic("get_free_context: failed to find free context");
  224. }
  225. ctx_alloc[new] = mm;
  226. ctx_avail--;
  227. return new;
  228. }
  229. /*
  230.  * Dynamically select a `spare' PMEG and use it to map virtual `vaddr' in
  231.  * `context'. Maintain internal PMEG management structures. This doesn't
  232.  * actually map the physical address, but does clear the old mappings.
  233.  */
  234. //todo: better allocation scheme? but is extra complexity worthwhile?
  235. //todo: only clear old entries if necessary? how to tell?
  236. static inline void mmu_emu_map_pmeg (int context, int vaddr)
  237. {
  238. static unsigned char curr_pmeg = 128;
  239. int i;
  240. /* Round address to PMEG boundary. */
  241. vaddr &= ~SUN3_PMEG_MASK;
  242. /* Find a spare one. */
  243. while (pmeg_alloc[curr_pmeg] == 2)
  244. ++curr_pmeg;
  245. #ifdef DEBUG_MMU_EMU
  246. printk("mmu_emu_map_pmeg: pmeg %x to context %d vaddr %xn",
  247.        curr_pmeg, context, vaddr);
  248. #endif
  249. /* Invalidate old mapping for the pmeg, if any */
  250. if (pmeg_alloc[curr_pmeg] == 1) {
  251. sun3_put_context(pmeg_ctx[curr_pmeg]);
  252. sun3_put_segmap (pmeg_vaddr[curr_pmeg], SUN3_INVALID_PMEG);
  253. sun3_put_context(context);
  254. }
  255. /* Update PMEG management structures. */
  256. // don't take pmeg's away from the kernel...
  257. if(vaddr >= PAGE_OFFSET) {
  258. /* map kernel pmegs into all contexts */
  259. unsigned char i;
  260. for(i = 0; i < CONTEXTS_NUM; i++) {
  261. sun3_put_context(i);
  262. sun3_put_segmap (vaddr, curr_pmeg);
  263. }
  264. sun3_put_context(context);
  265. pmeg_alloc[curr_pmeg] = 2;
  266. pmeg_ctx[curr_pmeg] = 0;
  267. }
  268. else {
  269. pmeg_alloc[curr_pmeg] = 1;
  270. pmeg_ctx[curr_pmeg] = context;
  271. sun3_put_segmap (vaddr, curr_pmeg);
  272. }
  273. pmeg_vaddr[curr_pmeg] = vaddr;
  274. /* Set hardware mapping and clear the old PTE entries. */
  275. for (i=0; i<SUN3_PMEG_SIZE; i+=SUN3_PTE_SIZE) 
  276. sun3_put_pte (vaddr + i, SUN3_PAGE_SYSTEM);
  277. /* Consider a different one next time. */
  278. ++curr_pmeg;
  279. }
  280. /*
  281.  * Handle a pagefault at virtual address `vaddr'; check if there should be a
  282.  * page there (specifically, whether the software pagetables indicate that
  283.  * there is). This is necessary due to the limited size of the second-level
  284.  * Sun3 hardware pagetables (256 groups of 16 pages). If there should be a
  285.  * mapping present, we select a `spare' PMEG and use it to create a mapping.
  286.  * `read_flag' is nonzero for a read fault; zero for a write. Returns nonzero
  287.  * if we successfully handled the fault.
  288.  */
  289. //todo: should we bump minor pagefault counter? if so, here or in caller?
  290. //todo: possibly inline this into bus_error030 in <asm/buserror.h> ?
  291. // kernel_fault is set when a kernel page couldn't be demand mapped,
  292. // and forces another try using the kernel page table.  basically a
  293. // hack so that vmalloc would work correctly.
  294. int mmu_emu_handle_fault (unsigned long vaddr, int read_flag, int kernel_fault)
  295. {
  296. unsigned long segment, offset;
  297. unsigned char context;
  298. pte_t *pte;
  299. pgd_t * crp;
  300. if(current->mm == NULL) {
  301. crp = swapper_pg_dir;
  302. context = 0;
  303. } else {
  304. context = current->mm->context;
  305. if(kernel_fault) 
  306. crp = swapper_pg_dir;
  307. else
  308. crp = current->mm->pgd;
  309. }
  310. #ifdef DEBUG_MMU_EMU
  311. printk ("mmu_emu_handle_fault: vaddr=%lx type=%s crp=%pn",
  312. vaddr, read_flag ? "read" : "write", crp);
  313. #endif
  314. segment = (vaddr >> SUN3_PMEG_SIZE_BITS) & 0x7FF;
  315. offset  = (vaddr >> SUN3_PTE_SIZE_BITS) & 0xF;
  316. #ifdef DEBUG_MMU_EMU
  317. printk ("mmu_emu_handle_fault: segment=%lx offset=%lxn", segment, offset);
  318. #endif
  319. pte = (pte_t *) pgd_val (*(crp + segment));
  320. //todo: next line should check for valid pmd properly.
  321. if (!pte) {
  322. //                printk ("mmu_emu_handle_fault: invalid pmdn");
  323.                 return 0;
  324.         }
  325. pte = (pte_t *) __va ((unsigned long)(pte + offset));
  326. /* Make sure this is a valid page */
  327. if (!(pte_val (*pte) & SUN3_PAGE_VALID)) 
  328. return 0;
  329. /* Make sure there's a pmeg allocated for the page */
  330. if (sun3_get_segmap (vaddr&~SUN3_PMEG_MASK) == SUN3_INVALID_PMEG) 
  331. mmu_emu_map_pmeg (context, vaddr);
  332. /* Write the pte value to hardware MMU */
  333. sun3_put_pte (vaddr&PAGE_MASK, pte_val (*pte));
  334. /* Update software copy of the pte value */
  335. // I'm not sure this is necessary. If this is required, we ought to simply
  336. // copy this out when we reuse the PMEG or at some other convenient time.
  337. // Doing it here is fairly meaningless, anyway, as we only know about the
  338. // first access to a given page. --m
  339. if (!read_flag) {
  340. if (pte_val (*pte) & SUN3_PAGE_WRITEABLE)
  341. pte_val (*pte) |= (SUN3_PAGE_ACCESSED
  342.    | SUN3_PAGE_MODIFIED);
  343. else 
  344. return 0; /* Write-protect error. */
  345. } else
  346. pte_val (*pte) |= SUN3_PAGE_ACCESSED;
  347. #ifdef DEBUG_MMU_EMU
  348. printk ("seg:%d crp:%p ->", get_fs().seg, crp);
  349. print_pte_vaddr (vaddr);
  350. printk ("n");
  351. #endif
  352. return 1;
  353. }