init.c 8.8 KB

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