init.S 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235
  1. /*
  2. * Copyright 2007 Freescale Semiconductor, Inc.
  3. *
  4. * See file CREDITS for list of people who contributed to this
  5. * project.
  6. *
  7. * This program is free software; you can redistribute it and/or
  8. * modify it under the terms of the GNU General Public License as
  9. * published by the Free Software Foundation; either version 2 of
  10. * the License, or (at your option) any later version.
  11. *
  12. * This program is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. * GNU General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU General Public License
  18. * along with this program; if not, write to the Free Software
  19. * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  20. * MA 02111-1307 USA
  21. */
  22. #include <ppc_asm.tmpl>
  23. #include <ppc_defs.h>
  24. #include <asm/cache.h>
  25. #include <asm/mmu.h>
  26. #include <config.h>
  27. #include <mpc85xx.h>
  28. /*
  29. * TLB0 and TLB1 Entries
  30. *
  31. * Out of reset, TLB1's Entry 0 maps the highest 4K for CCSRBAR.
  32. * However, CCSRBAR is then relocated to CFG_CCSRBAR right after
  33. * these TLB entries are established.
  34. *
  35. * The TLB entries for DDR are dynamically setup in spd_sdram()
  36. * and use TLB1 Entries 8 through 15 as needed according to the
  37. * size of DDR memory.
  38. *
  39. * MAS0: tlbsel, esel, nv
  40. * MAS1: valid, iprot, tid, ts, tsize
  41. * MAS2: epn, sharen, x0, x1, w, i, m, g, e
  42. * MAS3: rpn, u0-u3, ux, sx, uw, sw, ur, sr
  43. */
  44. #define entry_start \
  45. mflr r1 ; \
  46. bl 0f ;
  47. #define entry_end \
  48. 0: mflr r0 ; \
  49. mtlr r1 ; \
  50. blr ;
  51. .section .bootpg, "ax"
  52. .globl tlb1_entry
  53. tlb1_entry:
  54. entry_start
  55. /*
  56. * Number of TLB0 and TLB1 entries in the following table
  57. */
  58. .long (2f-1f)/16
  59. 1:
  60. /*
  61. * TLB0 4K Non-cacheable, guarded
  62. * 0xff700000 4K Initial CCSRBAR mapping
  63. *
  64. * This ends up at a TLB0 Index==0 entry, and must not collide
  65. * with other TLB0 Entries.
  66. */
  67. .long TLB1_MAS0(0, 0, 0)
  68. .long TLB1_MAS1(1, 0, 0, 0, 0)
  69. .long TLB1_MAS2(E500_TLB_EPN(CFG_CCSRBAR_DEFAULT), 0,0,0,0,1,0,1,0)
  70. .long TLB1_MAS3(E500_TLB_RPN(CFG_CCSRBAR_DEFAULT), 0,0,0,0,0,1,0,1,0,1)
  71. /*
  72. * TLB0 16K Cacheable, guarded
  73. * Temporary Global data for initialization
  74. *
  75. * Use four 4K TLB0 entries. These entries must be cacheable
  76. * as they provide the bootstrap memory before the memory
  77. * controler and real memory have been configured.
  78. *
  79. * These entries end up at TLB0 Indicies 0x10, 0x14, 0x18 and 0x1c,
  80. * and must not collide with other TLB0 entries.
  81. */
  82. .long TLB1_MAS0(0, 0, 0)
  83. .long TLB1_MAS1(1, 0, 0, 0, 0)
  84. .long TLB1_MAS2(E500_TLB_EPN(CFG_INIT_RAM_ADDR),
  85. 0,0,0,0,0,0,1,0)
  86. .long TLB1_MAS3(E500_TLB_RPN(CFG_INIT_RAM_ADDR),
  87. 0,0,0,0,0,1,0,1,0,1)
  88. .long TLB1_MAS0(0, 0, 0)
  89. .long TLB1_MAS1(1, 0, 0, 0, 0)
  90. .long TLB1_MAS2(E500_TLB_EPN(CFG_INIT_RAM_ADDR + 4 * 1024),
  91. 0,0,0,0,0,0,1,0)
  92. .long TLB1_MAS3(E500_TLB_RPN(CFG_INIT_RAM_ADDR + 4 * 1024),
  93. 0,0,0,0,0,1,0,1,0,1)
  94. .long TLB1_MAS0(0, 0, 0)
  95. .long TLB1_MAS1(1, 0, 0, 0, 0)
  96. .long TLB1_MAS2(E500_TLB_EPN(CFG_INIT_RAM_ADDR + 8 * 1024),
  97. 0,0,0,0,0,0,1,0)
  98. .long TLB1_MAS3(E500_TLB_RPN(CFG_INIT_RAM_ADDR + 8 * 1024),
  99. 0,0,0,0,0,1,0,1,0,1)
  100. .long TLB1_MAS0(0, 0, 0)
  101. .long TLB1_MAS1(1, 0, 0, 0, 0)
  102. .long TLB1_MAS2(E500_TLB_EPN(CFG_INIT_RAM_ADDR + 12 * 1024),
  103. 0,0,0,0,0,0,1,0)
  104. .long TLB1_MAS3(E500_TLB_RPN(CFG_INIT_RAM_ADDR + 12 * 1024),
  105. 0,0,0,0,0,1,0,1,0,1)
  106. /*
  107. * TLB 0: 64M Non-cacheable, guarded
  108. * 0xfc000000 64M Covers FLASH at 0xFE800000 and 0xFF800000
  109. * Out of reset this entry is only 4K.
  110. */
  111. .long TLB1_MAS0(1, 0, 0)
  112. .long TLB1_MAS1(1, 1, 0, 0, BOOKE_PAGESZ_64M)
  113. .long TLB1_MAS2(E500_TLB_EPN(CFG_BOOT_BLOCK), 0,0,0,0,1,0,1,0)
  114. .long TLB1_MAS3(E500_TLB_RPN(CFG_BOOT_BLOCK), 0,0,0,0,0,1,0,1,0,1)
  115. /*
  116. * TLB 1: 1G Non-cacheable, guarded
  117. * 0x80000000 1G PCIE 8,9,a,b
  118. */
  119. .long TLB1_MAS0(1, 1, 0)
  120. .long TLB1_MAS1(1, 1, 0, 0, BOOKE_PAGESZ_1G)
  121. .long TLB1_MAS2(E500_TLB_EPN(CFG_PCIE_PHYS),
  122. 0,0,0,0,1,0,1,0)
  123. .long TLB1_MAS3(E500_TLB_RPN(CFG_PCIE_PHYS),
  124. 0,0,0,0,0,1,0,1,0,1)
  125. /*
  126. * TLB 2: 256M Non-cacheable, guarded
  127. */
  128. .long TLB1_MAS0(1, 2, 0)
  129. .long TLB1_MAS1(1, 1, 0, 0, BOOKE_PAGESZ_256M)
  130. .long TLB1_MAS2(E500_TLB_EPN(CFG_PCI_PHYS),
  131. 0,0,0,0,1,0,1,0)
  132. .long TLB1_MAS3(E500_TLB_RPN(CFG_PCI_PHYS), 0,0,0,0,0,1,0,1,0,1)
  133. /*
  134. * TLB 3: 256M Non-cacheable, guarded
  135. */
  136. .long TLB1_MAS0(1, 3, 0)
  137. .long TLB1_MAS1(1, 1, 0, 0, BOOKE_PAGESZ_256M)
  138. .long TLB1_MAS2(E500_TLB_EPN(CFG_PCI_PHYS + 0x10000000),
  139. 0,0,0,0,1,0,1,0)
  140. .long TLB1_MAS3(E500_TLB_RPN(CFG_PCI_PHYS + 0x10000000),
  141. 0,0,0,0,0,1,0,1,0,1)
  142. /*
  143. * TLB 4: 64M Non-cacheable, guarded
  144. * 0xe000_0000 1M CCSRBAR
  145. * 0xe100_0000 255M PCI IO range
  146. */
  147. .long TLB1_MAS0(1, 4, 0)
  148. .long TLB1_MAS1(1, 1, 0, 0, BOOKE_PAGESZ_64M)
  149. .long TLB1_MAS2(E500_TLB_EPN(CFG_CCSRBAR), 0,0,0,0,1,0,1,0)
  150. .long TLB1_MAS3(E500_TLB_RPN(CFG_CCSRBAR), 0,0,0,0,0,1,0,1,0,1)
  151. #ifdef CFG_LBC_CACHE_BASE
  152. /*
  153. * TLB 5: 64M Cacheable, non-guarded
  154. */
  155. .long TLB1_MAS0(1, 5, 0)
  156. .long TLB1_MAS1(1, 1, 0, 0, BOOKE_PAGESZ_64M)
  157. .long TLB1_MAS2(E500_TLB_EPN(CFG_LBC_CACHE_BASE), 0,0,0,0,0,0,0,0)
  158. .long TLB1_MAS3(E500_TLB_RPN(CFG_LBC_CACHE_BASE), 0,0,0,0,0,1,0,1,0,1)
  159. #endif
  160. /*
  161. * TLB 6: 64M Non-cacheable, guarded
  162. * 0xf8000000 64M PIXIS 0xF8000000 - 0xFBFFFFFF
  163. */
  164. .long TLB1_MAS0(1, 6, 0)
  165. .long TLB1_MAS1(1, 1, 0, 0, BOOKE_PAGESZ_64M)
  166. .long TLB1_MAS2(E500_TLB_EPN(CFG_LBC_NONCACHE_BASE), 0,0,0,0,1,0,1,0)
  167. .long TLB1_MAS3(E500_TLB_RPN(CFG_LBC_NONCACHE_BASE), 0,0,0,0,0,1,0,1,0,1)
  168. 2:
  169. entry_end
  170. /*
  171. * LAW(Local Access Window) configuration:
  172. *
  173. *
  174. * Notes:
  175. * CCSRBAR and L2-as-SRAM don't need a configured Local Access Window.
  176. * If flash is 8M at default position (last 8M), no LAW needed.
  177. *
  178. * LAW 0 is reserved for boot mapping
  179. */
  180. .section .bootpg, "ax"
  181. .globl law_entry
  182. law_entry:
  183. entry_start
  184. .long (4f-3f)/8
  185. 3:
  186. .long 0
  187. .long (LAWAR_TRGT_IF_DDR | (LAWAR_SIZE & LAWAR_SIZE_128M)) & ~LAWAR_EN
  188. .long (CFG_PCI1_MEM_PHYS>>12) & 0xfffff
  189. .long LAWAR_EN | LAWAR_TRGT_IF_PCI1 | (LAWAR_SIZE & LAWAR_SIZE_512M)
  190. .long (CFG_PCI1_IO_PHYS>>12) & 0xfffff
  191. .long LAWAR_EN | LAWAR_TRGT_IF_PCI1 | (LAWAR_SIZE & LAWAR_SIZE_64K)
  192. .long (CFG_LBC_CACHE_BASE>>12) & 0xfffff
  193. .long LAWAR_EN | LAWAR_TRGT_IF_LBC | (LAWAR_SIZE & LAWAR_SIZE_256M)
  194. .long (CFG_PCIE1_MEM_PHYS>>12) & 0xfffff
  195. .long LAWAR_EN | LAWAR_TRGT_IF_PCIE1 | (LAWAR_SIZE & LAWAR_SIZE_256M)
  196. .long (CFG_PCIE1_IO_PHYS>>12) & 0xfffff
  197. .long LAWAR_EN | LAWAR_TRGT_IF_PCIE1 | (LAWAR_SIZE & LAWAR_SIZE_64K)
  198. .long (CFG_PCIE2_MEM_PHYS>>12) & 0xfffff
  199. .long LAWAR_EN | LAWAR_TRGT_IF_PCIE2 | (LAWAR_SIZE & LAWAR_SIZE_512M)
  200. .long (CFG_PCIE2_IO_PHYS>>12) & 0xfffff
  201. .long LAWAR_EN | LAWAR_TRGT_IF_PCIE2 | (LAWAR_SIZE & LAWAR_SIZE_64K)
  202. /* contains both PCIE3 MEM & IO space */
  203. .long (CFG_PCIE3_MEM_PHYS>>12) & 0xfffff
  204. .long LAWAR_EN | LAWAR_TRGT_IF_PCIE3 | (LAWAR_SIZE & LAWAR_SIZE_4M)
  205. 4:
  206. entry_end