init.c 8.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256
  1. /*
  2. * linux/arch/cris/arch-v10/mm/init.c
  3. *
  4. */
  5. #include <linux/mmzone.h>
  6. #include <linux/init.h>
  7. #include <linux/bootmem.h>
  8. #include <linux/mm.h>
  9. #include <asm/pgtable.h>
  10. #include <asm/page.h>
  11. #include <asm/types.h>
  12. #include <asm/mmu.h>
  13. #include <asm/io.h>
  14. #include <asm/mmu_context.h>
  15. #include <arch/svinto.h>
  16. extern void tlb_init(void);
  17. /*
  18. * The kernel is already mapped with a kernel segment at kseg_c so
  19. * we don't need to map it with a page table. However head.S also
  20. * temporarily mapped it at kseg_4 so we should set up the ksegs again,
  21. * clear the TLB and do some other paging setup stuff.
  22. */
  23. void __init
  24. paging_init(void)
  25. {
  26. int i;
  27. unsigned long zones_size[MAX_NR_ZONES];
  28. printk("Setting up paging and the MMU.\n");
  29. /* clear out the init_mm.pgd that will contain the kernel's mappings */
  30. for(i = 0; i < PTRS_PER_PGD; i++)
  31. swapper_pg_dir[i] = __pgd(0);
  32. /* make sure the current pgd table points to something sane
  33. * (even if it is most probably not used until the next
  34. * switch_mm)
  35. */
  36. per_cpu(current_pgd, smp_processor_id()) = init_mm.pgd;
  37. /* initialise the TLB (tlb.c) */
  38. tlb_init();
  39. /* see README.mm for details on the KSEG setup */
  40. #ifdef CONFIG_CRIS_LOW_MAP
  41. /* Etrax-100 LX version 1 has a bug so that we cannot map anything
  42. * across the 0x80000000 boundary, so we need to shrink the user-virtual
  43. * area to 0x50000000 instead of 0xb0000000 and map things slightly
  44. * different. The unused areas are marked as paged so that we can catch
  45. * freak kernel accesses there.
  46. *
  47. * The ARTPEC chip is mapped at 0xa so we pass that segment straight
  48. * through. We cannot vremap it because the vmalloc area is below 0x8
  49. * and Juliette needs an uncached area above 0x8.
  50. *
  51. * Same thing with 0xc and 0x9, which is memory-mapped I/O on some boards.
  52. * We map them straight over in LOW_MAP, but use vremap in LX version 2.
  53. */
  54. #define CACHED_BOOTROM (KSEG_F | 0x08000000UL)
  55. *R_MMU_KSEG = ( IO_STATE(R_MMU_KSEG, seg_f, seg ) | /* bootrom */
  56. IO_STATE(R_MMU_KSEG, seg_e, page ) |
  57. IO_STATE(R_MMU_KSEG, seg_d, page ) |
  58. IO_STATE(R_MMU_KSEG, seg_c, page ) |
  59. IO_STATE(R_MMU_KSEG, seg_b, seg ) | /* kernel reg area */
  60. IO_STATE(R_MMU_KSEG, seg_a, page ) |
  61. IO_STATE(R_MMU_KSEG, seg_9, seg ) | /* LED's on some boards */
  62. IO_STATE(R_MMU_KSEG, seg_8, seg ) | /* CSE0/1, flash and I/O */
  63. IO_STATE(R_MMU_KSEG, seg_7, page ) | /* kernel vmalloc area */
  64. IO_STATE(R_MMU_KSEG, seg_6, seg ) | /* kernel DRAM area */
  65. IO_STATE(R_MMU_KSEG, seg_5, seg ) | /* cached flash */
  66. IO_STATE(R_MMU_KSEG, seg_4, page ) | /* user area */
  67. IO_STATE(R_MMU_KSEG, seg_3, page ) | /* user area */
  68. IO_STATE(R_MMU_KSEG, seg_2, page ) | /* user area */
  69. IO_STATE(R_MMU_KSEG, seg_1, page ) | /* user area */
  70. IO_STATE(R_MMU_KSEG, seg_0, page ) ); /* user area */
  71. *R_MMU_KBASE_HI = ( IO_FIELD(R_MMU_KBASE_HI, base_f, 0x3 ) |
  72. IO_FIELD(R_MMU_KBASE_HI, base_e, 0x0 ) |
  73. IO_FIELD(R_MMU_KBASE_HI, base_d, 0x0 ) |
  74. IO_FIELD(R_MMU_KBASE_HI, base_c, 0x0 ) |
  75. IO_FIELD(R_MMU_KBASE_HI, base_b, 0xb ) |
  76. IO_FIELD(R_MMU_KBASE_HI, base_a, 0x0 ) |
  77. IO_FIELD(R_MMU_KBASE_HI, base_9, 0x9 ) |
  78. IO_FIELD(R_MMU_KBASE_HI, base_8, 0x8 ) );
  79. *R_MMU_KBASE_LO = ( IO_FIELD(R_MMU_KBASE_LO, base_7, 0x0 ) |
  80. IO_FIELD(R_MMU_KBASE_LO, base_6, 0x4 ) |
  81. IO_FIELD(R_MMU_KBASE_LO, base_5, 0x0 ) |
  82. IO_FIELD(R_MMU_KBASE_LO, base_4, 0x0 ) |
  83. IO_FIELD(R_MMU_KBASE_LO, base_3, 0x0 ) |
  84. IO_FIELD(R_MMU_KBASE_LO, base_2, 0x0 ) |
  85. IO_FIELD(R_MMU_KBASE_LO, base_1, 0x0 ) |
  86. IO_FIELD(R_MMU_KBASE_LO, base_0, 0x0 ) );
  87. #else
  88. /* This code is for the corrected Etrax-100 LX version 2... */
  89. #define CACHED_BOOTROM (KSEG_A | 0x08000000UL)
  90. *R_MMU_KSEG = ( IO_STATE(R_MMU_KSEG, seg_f, seg ) | /* cached flash */
  91. IO_STATE(R_MMU_KSEG, seg_e, seg ) | /* uncached flash */
  92. IO_STATE(R_MMU_KSEG, seg_d, page ) | /* vmalloc area */
  93. IO_STATE(R_MMU_KSEG, seg_c, seg ) | /* kernel area */
  94. IO_STATE(R_MMU_KSEG, seg_b, seg ) | /* kernel reg area */
  95. IO_STATE(R_MMU_KSEG, seg_a, seg ) | /* bootrom */
  96. IO_STATE(R_MMU_KSEG, seg_9, page ) | /* user area */
  97. IO_STATE(R_MMU_KSEG, seg_8, page ) |
  98. IO_STATE(R_MMU_KSEG, seg_7, page ) |
  99. IO_STATE(R_MMU_KSEG, seg_6, page ) |
  100. IO_STATE(R_MMU_KSEG, seg_5, page ) |
  101. IO_STATE(R_MMU_KSEG, seg_4, page ) |
  102. IO_STATE(R_MMU_KSEG, seg_3, page ) |
  103. IO_STATE(R_MMU_KSEG, seg_2, page ) |
  104. IO_STATE(R_MMU_KSEG, seg_1, page ) |
  105. IO_STATE(R_MMU_KSEG, seg_0, page ) );
  106. *R_MMU_KBASE_HI = ( IO_FIELD(R_MMU_KBASE_HI, base_f, 0x0 ) |
  107. IO_FIELD(R_MMU_KBASE_HI, base_e, 0x8 ) |
  108. IO_FIELD(R_MMU_KBASE_HI, base_d, 0x0 ) |
  109. IO_FIELD(R_MMU_KBASE_HI, base_c, 0x4 ) |
  110. IO_FIELD(R_MMU_KBASE_HI, base_b, 0xb ) |
  111. IO_FIELD(R_MMU_KBASE_HI, base_a, 0x3 ) |
  112. IO_FIELD(R_MMU_KBASE_HI, base_9, 0x0 ) |
  113. IO_FIELD(R_MMU_KBASE_HI, base_8, 0x0 ) );
  114. *R_MMU_KBASE_LO = ( IO_FIELD(R_MMU_KBASE_LO, base_7, 0x0 ) |
  115. IO_FIELD(R_MMU_KBASE_LO, base_6, 0x0 ) |
  116. IO_FIELD(R_MMU_KBASE_LO, base_5, 0x0 ) |
  117. IO_FIELD(R_MMU_KBASE_LO, base_4, 0x0 ) |
  118. IO_FIELD(R_MMU_KBASE_LO, base_3, 0x0 ) |
  119. IO_FIELD(R_MMU_KBASE_LO, base_2, 0x0 ) |
  120. IO_FIELD(R_MMU_KBASE_LO, base_1, 0x0 ) |
  121. IO_FIELD(R_MMU_KBASE_LO, base_0, 0x0 ) );
  122. #endif
  123. *R_MMU_CONTEXT = ( IO_FIELD(R_MMU_CONTEXT, page_id, 0 ) );
  124. /* The MMU has been enabled ever since head.S but just to make
  125. * it totally obvious we do it here as well.
  126. */
  127. *R_MMU_CTRL = ( IO_STATE(R_MMU_CTRL, inv_excp, enable ) |
  128. IO_STATE(R_MMU_CTRL, acc_excp, enable ) |
  129. IO_STATE(R_MMU_CTRL, we_excp, enable ) );
  130. *R_MMU_ENABLE = IO_STATE(R_MMU_ENABLE, mmu_enable, enable);
  131. /*
  132. * initialize the bad page table and bad page to point
  133. * to a couple of allocated pages
  134. */
  135. empty_zero_page = (unsigned long)alloc_bootmem_pages(PAGE_SIZE);
  136. memset((void *)empty_zero_page, 0, PAGE_SIZE);
  137. /* All pages are DMA'able in Etrax, so put all in the DMA'able zone */
  138. zones_size[0] = ((unsigned long)high_memory - PAGE_OFFSET) >> PAGE_SHIFT;
  139. for (i = 1; i < MAX_NR_ZONES; i++)
  140. zones_size[i] = 0;
  141. /* Use free_area_init_node instead of free_area_init, because the former
  142. * is designed for systems where the DRAM starts at an address substantially
  143. * higher than 0, like us (we start at PAGE_OFFSET). This saves space in the
  144. * mem_map page array.
  145. */
  146. free_area_init_node(0, zones_size, PAGE_OFFSET >> PAGE_SHIFT, 0);
  147. }
  148. /* Initialize remaps of some I/O-ports. It is important that this
  149. * is called before any driver is initialized.
  150. */
  151. static int
  152. __init init_ioremap(void)
  153. {
  154. /* Give the external I/O-port addresses their values */
  155. #ifdef CONFIG_CRIS_LOW_MAP
  156. /* Simply a linear map (see the KSEG map above in paging_init) */
  157. port_cse1_addr = (volatile unsigned long *)(MEM_CSE1_START |
  158. MEM_NON_CACHEABLE);
  159. port_csp0_addr = (volatile unsigned long *)(MEM_CSP0_START |
  160. MEM_NON_CACHEABLE);
  161. port_csp4_addr = (volatile unsigned long *)(MEM_CSP4_START |
  162. MEM_NON_CACHEABLE);
  163. #else
  164. /* Note that nothing blows up just because we do this remapping
  165. * it's ok even if the ports are not used or connected
  166. * to anything (or connected to a non-I/O thing) */
  167. port_cse1_addr = (volatile unsigned long *)
  168. ioremap((unsigned long)(MEM_CSE1_START | MEM_NON_CACHEABLE), 16);
  169. port_csp0_addr = (volatile unsigned long *)
  170. ioremap((unsigned long)(MEM_CSP0_START | MEM_NON_CACHEABLE), 16);
  171. port_csp4_addr = (volatile unsigned long *)
  172. ioremap((unsigned long)(MEM_CSP4_START | MEM_NON_CACHEABLE), 16);
  173. #endif
  174. return 0;
  175. }
  176. __initcall(init_ioremap);
  177. /* Helper function for the two below */
  178. static inline void
  179. flush_etrax_cacherange(void *startadr, int length)
  180. {
  181. /* CACHED_BOOTROM is mapped to the boot-rom area (cached) which
  182. * we can use to get fast dummy-reads of cachelines
  183. */
  184. volatile short *flushadr = (volatile short *)(((unsigned long)startadr & ~PAGE_MASK) |
  185. CACHED_BOOTROM);
  186. length = length > 8192 ? 8192 : length; /* No need to flush more than cache size */
  187. while(length > 0) {
  188. *flushadr; /* dummy read to flush */
  189. flushadr += (32/sizeof(short)); /* a cacheline is 32 bytes */
  190. length -= 32;
  191. }
  192. }
  193. /* Due to a bug in Etrax100(LX) all versions, receiving DMA buffers
  194. * will occasionally corrupt certain CPU writes if the DMA buffers
  195. * happen to be hot in the cache.
  196. *
  197. * As a workaround, we have to flush the relevant parts of the cache
  198. * before (re) inserting any receiving descriptor into the DMA HW.
  199. */
  200. void
  201. prepare_rx_descriptor(struct etrax_dma_descr *desc)
  202. {
  203. flush_etrax_cacherange((void *)desc->buf, desc->sw_len ? desc->sw_len : 65536);
  204. }
  205. /* Do the same thing but flush the entire cache */
  206. void
  207. flush_etrax_cache(void)
  208. {
  209. flush_etrax_cacherange(0, 8192);
  210. }