start.S 60 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169
  1. /*
  2. * Copyright (C) 1998 Dan Malek <dmalek@jlc.net>
  3. * Copyright (C) 1999 Magnus Damm <kieraypc01.p.y.kie.era.ericsson.se>
  4. * Copyright (C) 2000,2001,2002 Wolfgang Denk <wd@denx.de>
  5. * Copyright (C) 2007 Stefan Roese <sr@denx.de>, DENX Software Engineering
  6. * Copyright (c) 2008 Nuovation System Designs, LLC
  7. * Grant Erickson <gerickson@nuovations.com>
  8. *
  9. * See file CREDITS for list of people who contributed to this
  10. * project.
  11. *
  12. * This program is free software; you can redistribute it and/or
  13. * modify it under the terms of the GNU General Public License as
  14. * published by the Free Software Foundation; either version 2 of
  15. * the License, or (at your option) any later version.
  16. *
  17. * This program is distributed in the hope that it will be useful,
  18. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  19. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  20. * GNU General Public License for more details.
  21. *
  22. * You should have received a copy of the GNU General Public License
  23. * along with this program; if not, write to the Free Software
  24. * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  25. * MA 02111-1307 USA
  26. */
  27. /*------------------------------------------------------------------------------+
  28. * This source code is dual-licensed. You may use it under the terms of the
  29. * GNU General Public License version 2, or under the license below.
  30. *
  31. * This source code has been made available to you by IBM on an AS-IS
  32. * basis. Anyone receiving this source is licensed under IBM
  33. * copyrights to use it in any way he or she deems fit, including
  34. * copying it, modifying it, compiling it, and redistributing it either
  35. * with or without modifications. No license under IBM patents or
  36. * patent applications is to be implied by the copyright license.
  37. *
  38. * Any user of this software should understand that IBM cannot provide
  39. * technical support for this software and will not be responsible for
  40. * any consequences resulting from the use of this software.
  41. *
  42. * Any person who transfers this source code or any derivative work
  43. * must include the IBM copyright notice, this paragraph, and the
  44. * preceding two paragraphs in the transferred software.
  45. *
  46. * COPYRIGHT I B M CORPORATION 1995
  47. * LICENSED MATERIAL - PROGRAM PROPERTY OF I B M
  48. *-------------------------------------------------------------------------------
  49. */
  50. /* U-Boot - Startup Code for AMCC 4xx PowerPC based Embedded Boards
  51. *
  52. *
  53. * The processor starts at 0xfffffffc and the code is executed
  54. * from flash/rom.
  55. * in memory, but as long we don't jump around before relocating.
  56. * board_init lies at a quite high address and when the cpu has
  57. * jumped there, everything is ok.
  58. * This works because the cpu gives the FLASH (CS0) the whole
  59. * address space at startup, and board_init lies as a echo of
  60. * the flash somewhere up there in the memorymap.
  61. *
  62. * board_init will change CS0 to be positioned at the correct
  63. * address and (s)dram will be positioned at address 0
  64. */
  65. #include <config.h>
  66. #include <asm/ppc4xx.h>
  67. #include <timestamp.h>
  68. #include <version.h>
  69. #define _LINUX_CONFIG_H 1 /* avoid reading Linux autoconf.h file */
  70. #include <ppc_asm.tmpl>
  71. #include <ppc_defs.h>
  72. #include <asm/cache.h>
  73. #include <asm/mmu.h>
  74. #include <asm/ppc4xx-isram.h>
  75. #ifndef CONFIG_IDENT_STRING
  76. #define CONFIG_IDENT_STRING ""
  77. #endif
  78. #ifdef CONFIG_SYS_INIT_DCACHE_CS
  79. # if (CONFIG_SYS_INIT_DCACHE_CS == 0)
  80. # define PBxAP PB1AP
  81. # define PBxCR PB0CR
  82. # if (defined(CONFIG_SYS_EBC_PB0AP) && defined(CONFIG_SYS_EBC_PB0CR))
  83. # define PBxAP_VAL CONFIG_SYS_EBC_PB0AP
  84. # define PBxCR_VAL CONFIG_SYS_EBC_PB0CR
  85. # endif
  86. # endif
  87. # if (CONFIG_SYS_INIT_DCACHE_CS == 1)
  88. # define PBxAP PB1AP
  89. # define PBxCR PB1CR
  90. # if (defined(CONFIG_SYS_EBC_PB1AP) && defined(CONFIG_SYS_EBC_PB1CR))
  91. # define PBxAP_VAL CONFIG_SYS_EBC_PB1AP
  92. # define PBxCR_VAL CONFIG_SYS_EBC_PB1CR
  93. # endif
  94. # endif
  95. # if (CONFIG_SYS_INIT_DCACHE_CS == 2)
  96. # define PBxAP PB2AP
  97. # define PBxCR PB2CR
  98. # if (defined(CONFIG_SYS_EBC_PB2AP) && defined(CONFIG_SYS_EBC_PB2CR))
  99. # define PBxAP_VAL CONFIG_SYS_EBC_PB2AP
  100. # define PBxCR_VAL CONFIG_SYS_EBC_PB2CR
  101. # endif
  102. # endif
  103. # if (CONFIG_SYS_INIT_DCACHE_CS == 3)
  104. # define PBxAP PB3AP
  105. # define PBxCR PB3CR
  106. # if (defined(CONFIG_SYS_EBC_PB3AP) && defined(CONFIG_SYS_EBC_PB3CR))
  107. # define PBxAP_VAL CONFIG_SYS_EBC_PB3AP
  108. # define PBxCR_VAL CONFIG_SYS_EBC_PB3CR
  109. # endif
  110. # endif
  111. # if (CONFIG_SYS_INIT_DCACHE_CS == 4)
  112. # define PBxAP PB4AP
  113. # define PBxCR PB4CR
  114. # if (defined(CONFIG_SYS_EBC_PB4AP) && defined(CONFIG_SYS_EBC_PB4CR))
  115. # define PBxAP_VAL CONFIG_SYS_EBC_PB4AP
  116. # define PBxCR_VAL CONFIG_SYS_EBC_PB4CR
  117. # endif
  118. # endif
  119. # if (CONFIG_SYS_INIT_DCACHE_CS == 5)
  120. # define PBxAP PB5AP
  121. # define PBxCR PB5CR
  122. # if (defined(CONFIG_SYS_EBC_PB5AP) && defined(CONFIG_SYS_EBC_PB5CR))
  123. # define PBxAP_VAL CONFIG_SYS_EBC_PB5AP
  124. # define PBxCR_VAL CONFIG_SYS_EBC_PB5CR
  125. # endif
  126. # endif
  127. # if (CONFIG_SYS_INIT_DCACHE_CS == 6)
  128. # define PBxAP PB6AP
  129. # define PBxCR PB6CR
  130. # if (defined(CONFIG_SYS_EBC_PB6AP) && defined(CONFIG_SYS_EBC_PB6CR))
  131. # define PBxAP_VAL CONFIG_SYS_EBC_PB6AP
  132. # define PBxCR_VAL CONFIG_SYS_EBC_PB6CR
  133. # endif
  134. # endif
  135. # if (CONFIG_SYS_INIT_DCACHE_CS == 7)
  136. # define PBxAP PB7AP
  137. # define PBxCR PB7CR
  138. # if (defined(CONFIG_SYS_EBC_PB7AP) && defined(CONFIG_SYS_EBC_PB7CR))
  139. # define PBxAP_VAL CONFIG_SYS_EBC_PB7AP
  140. # define PBxCR_VAL CONFIG_SYS_EBC_PB7CR
  141. # endif
  142. # endif
  143. # ifndef PBxAP_VAL
  144. # define PBxAP_VAL 0
  145. # endif
  146. # ifndef PBxCR_VAL
  147. # define PBxCR_VAL 0
  148. # endif
  149. /*
  150. * Memory Bank x (nothingness) initialization CONFIG_SYS_INIT_RAM_ADDR + 64 MiB
  151. * used as temporary stack pointer for the primordial stack
  152. */
  153. # ifndef CONFIG_SYS_INIT_DCACHE_PBxAR
  154. # define CONFIG_SYS_INIT_DCACHE_PBxAR (EBC_BXAP_BME_DISABLED | \
  155. EBC_BXAP_TWT_ENCODE(7) | \
  156. EBC_BXAP_BCE_DISABLE | \
  157. EBC_BXAP_BCT_2TRANS | \
  158. EBC_BXAP_CSN_ENCODE(0) | \
  159. EBC_BXAP_OEN_ENCODE(0) | \
  160. EBC_BXAP_WBN_ENCODE(0) | \
  161. EBC_BXAP_WBF_ENCODE(0) | \
  162. EBC_BXAP_TH_ENCODE(2) | \
  163. EBC_BXAP_RE_DISABLED | \
  164. EBC_BXAP_SOR_NONDELAYED | \
  165. EBC_BXAP_BEM_WRITEONLY | \
  166. EBC_BXAP_PEN_DISABLED)
  167. # endif /* CONFIG_SYS_INIT_DCACHE_PBxAR */
  168. # ifndef CONFIG_SYS_INIT_DCACHE_PBxCR
  169. # define CONFIG_SYS_INIT_DCACHE_PBxCR (EBC_BXCR_BAS_ENCODE(CONFIG_SYS_INIT_RAM_ADDR) | \
  170. EBC_BXCR_BS_64MB | \
  171. EBC_BXCR_BU_RW | \
  172. EBC_BXCR_BW_16BIT)
  173. # endif /* CONFIG_SYS_INIT_DCACHE_PBxCR */
  174. # ifndef CONFIG_SYS_INIT_RAM_PATTERN
  175. # define CONFIG_SYS_INIT_RAM_PATTERN 0xDEADDEAD
  176. # endif
  177. #endif /* CONFIG_SYS_INIT_DCACHE_CS */
  178. #if (defined(CONFIG_SYS_INIT_RAM_DCACHE) && (CONFIG_SYS_INIT_RAM_END > (4 << 10)))
  179. #error Only 4k of init-ram is supported - please adjust CONFIG_SYS_INIT_RAM_END!
  180. #endif
  181. /*
  182. * Unless otherwise overriden, enable two 128MB cachable instruction regions
  183. * at CONFIG_SYS_SDRAM_BASE and another 128MB cacheable instruction region covering
  184. * NOR flash at CONFIG_SYS_FLASH_BASE. Disable all cacheable data regions.
  185. */
  186. #if !defined(CONFIG_SYS_FLASH_BASE)
  187. /* If not already defined, set it to the "last" 128MByte region */
  188. # define CONFIG_SYS_FLASH_BASE 0xf8000000
  189. #endif
  190. #if !defined(CONFIG_SYS_ICACHE_SACR_VALUE)
  191. # define CONFIG_SYS_ICACHE_SACR_VALUE \
  192. (PPC_128MB_SACR_VALUE(CONFIG_SYS_SDRAM_BASE + ( 0 << 20)) | \
  193. PPC_128MB_SACR_VALUE(CONFIG_SYS_SDRAM_BASE + (128 << 20)) | \
  194. PPC_128MB_SACR_VALUE(CONFIG_SYS_FLASH_BASE))
  195. #endif /* !defined(CONFIG_SYS_ICACHE_SACR_VALUE) */
  196. #if !defined(CONFIG_SYS_DCACHE_SACR_VALUE)
  197. # define CONFIG_SYS_DCACHE_SACR_VALUE \
  198. (0x00000000)
  199. #endif /* !defined(CONFIG_SYS_DCACHE_SACR_VALUE) */
  200. #if !defined(CONFIG_SYS_TLB_FOR_BOOT_FLASH)
  201. #define CONFIG_SYS_TLB_FOR_BOOT_FLASH 0 /* use TLB 0 as default */
  202. #endif
  203. #define function_prolog(func_name) .text; \
  204. .align 2; \
  205. .globl func_name; \
  206. func_name:
  207. #define function_epilog(func_name) .type func_name,@function; \
  208. .size func_name,.-func_name
  209. /* We don't want the MMU yet.
  210. */
  211. #undef MSR_KERNEL
  212. #define MSR_KERNEL ( MSR_ME ) /* Machine Check */
  213. .extern ext_bus_cntlr_init
  214. #ifdef CONFIG_NAND_U_BOOT
  215. .extern reconfig_tlb0
  216. #endif
  217. /*
  218. * Set up GOT: Global Offset Table
  219. *
  220. * Use r12 to access the GOT
  221. */
  222. #if !defined(CONFIG_NAND_SPL)
  223. START_GOT
  224. GOT_ENTRY(_GOT2_TABLE_)
  225. GOT_ENTRY(_FIXUP_TABLE_)
  226. GOT_ENTRY(_start)
  227. GOT_ENTRY(_start_of_vectors)
  228. GOT_ENTRY(_end_of_vectors)
  229. GOT_ENTRY(transfer_to_handler)
  230. GOT_ENTRY(__init_end)
  231. GOT_ENTRY(_end)
  232. GOT_ENTRY(__bss_start)
  233. END_GOT
  234. #endif /* CONFIG_NAND_SPL */
  235. #if defined(CONFIG_NAND_U_BOOT) && !defined(CONFIG_NAND_SPL)
  236. /*
  237. * NAND U-Boot image is started from offset 0
  238. */
  239. .text
  240. #if defined(CONFIG_440)
  241. bl reconfig_tlb0
  242. #endif
  243. GET_GOT
  244. bl cpu_init_f /* run low-level CPU init code (from Flash) */
  245. bl board_init_f
  246. #endif
  247. #if defined(CONFIG_SYS_RAMBOOT)
  248. /*
  249. * 4xx RAM-booting U-Boot image is started from offset 0
  250. */
  251. .text
  252. bl _start_440
  253. #endif
  254. /*
  255. * 440 Startup -- on reset only the top 4k of the effective
  256. * address space is mapped in by an entry in the instruction
  257. * and data shadow TLB. The .bootpg section is located in the
  258. * top 4k & does only what's necessary to map in the the rest
  259. * of the boot rom. Once the boot rom is mapped in we can
  260. * proceed with normal startup.
  261. *
  262. * NOTE: CS0 only covers the top 2MB of the effective address
  263. * space after reset.
  264. */
  265. #if defined(CONFIG_440)
  266. #if !defined(CONFIG_NAND_SPL)
  267. .section .bootpg,"ax"
  268. #endif
  269. .globl _start_440
  270. /**************************************************************************/
  271. _start_440:
  272. /*--------------------------------------------------------------------+
  273. | 440EPX BUP Change - Hardware team request
  274. +--------------------------------------------------------------------*/
  275. #if defined(CONFIG_440EPX) || defined(CONFIG_440GRX)
  276. sync
  277. nop
  278. nop
  279. #endif
  280. /*----------------------------------------------------------------+
  281. | Core bug fix. Clear the esr
  282. +-----------------------------------------------------------------*/
  283. li r0,0
  284. mtspr SPRN_ESR,r0
  285. /*----------------------------------------------------------------*/
  286. /* Clear and set up some registers. */
  287. /*----------------------------------------------------------------*/
  288. iccci r0,r0 /* NOTE: operands not used for 440 */
  289. dccci r0,r0 /* NOTE: operands not used for 440 */
  290. sync
  291. li r0,0
  292. mtspr SPRN_SRR0,r0
  293. mtspr SPRN_SRR1,r0
  294. mtspr SPRN_CSRR0,r0
  295. mtspr SPRN_CSRR1,r0
  296. /* NOTE: 440GX adds machine check status regs */
  297. #if defined(CONFIG_440) && !defined(CONFIG_440GP)
  298. mtspr SPRN_MCSRR0,r0
  299. mtspr SPRN_MCSRR1,r0
  300. mfspr r1,SPRN_MCSR
  301. mtspr SPRN_MCSR,r1
  302. #endif
  303. /*----------------------------------------------------------------*/
  304. /* CCR0 init */
  305. /*----------------------------------------------------------------*/
  306. /* Disable store gathering & broadcast, guarantee inst/data
  307. * cache block touch, force load/store alignment
  308. * (see errata 1.12: 440_33)
  309. */
  310. lis r1,0x0030 /* store gathering & broadcast disable */
  311. ori r1,r1,0x6000 /* cache touch */
  312. mtspr SPRN_CCR0,r1
  313. /*----------------------------------------------------------------*/
  314. /* Initialize debug */
  315. /*----------------------------------------------------------------*/
  316. mfspr r1,SPRN_DBCR0
  317. andis. r1, r1, 0x8000 /* test DBCR0[EDM] bit */
  318. bne skip_debug_init /* if set, don't clear debug register */
  319. mfspr r1,SPRN_CCR0
  320. ori r1,r1,CCR0_DTB@l /* Disable Trace Broadcast */
  321. mtspr SPRN_CCR0,r1
  322. mtspr SPRN_DBCR0,r0
  323. mtspr SPRN_DBCR1,r0
  324. mtspr SPRN_DBCR2,r0
  325. mtspr SPRN_IAC1,r0
  326. mtspr SPRN_IAC2,r0
  327. mtspr SPRN_IAC3,r0
  328. mtspr SPRN_DAC1,r0
  329. mtspr SPRN_DAC2,r0
  330. mtspr SPRN_DVC1,r0
  331. mtspr SPRN_DVC2,r0
  332. mfspr r1,SPRN_DBSR
  333. mtspr SPRN_DBSR,r1 /* Clear all valid bits */
  334. skip_debug_init:
  335. #if defined (CONFIG_440SPE)
  336. /*----------------------------------------------------------------+
  337. | Initialize Core Configuration Reg1.
  338. | a. ICDPEI: Record even parity. Normal operation.
  339. | b. ICTPEI: Record even parity. Normal operation.
  340. | c. DCTPEI: Record even parity. Normal operation.
  341. | d. DCDPEI: Record even parity. Normal operation.
  342. | e. DCUPEI: Record even parity. Normal operation.
  343. | f. DCMPEI: Record even parity. Normal operation.
  344. | g. FCOM: Normal operation
  345. | h. MMUPEI: Record even parity. Normal operation.
  346. | i. FFF: Flush only as much data as necessary.
  347. | j. TCS: Timebase increments from CPU clock.
  348. +-----------------------------------------------------------------*/
  349. li r0,0
  350. mtspr SPRN_CCR1, r0
  351. /*----------------------------------------------------------------+
  352. | Reset the timebase.
  353. | The previous write to CCR1 sets the timebase source.
  354. +-----------------------------------------------------------------*/
  355. mtspr SPRN_TBWL, r0
  356. mtspr SPRN_TBWU, r0
  357. #endif
  358. /*----------------------------------------------------------------*/
  359. /* Setup interrupt vectors */
  360. /*----------------------------------------------------------------*/
  361. mtspr SPRN_IVPR,r0 /* Vectors start at 0x0000_0000 */
  362. li r1,0x0100
  363. mtspr SPRN_IVOR0,r1 /* Critical input */
  364. li r1,0x0200
  365. mtspr SPRN_IVOR1,r1 /* Machine check */
  366. li r1,0x0300
  367. mtspr SPRN_IVOR2,r1 /* Data storage */
  368. li r1,0x0400
  369. mtspr SPRN_IVOR3,r1 /* Instruction storage */
  370. li r1,0x0500
  371. mtspr SPRN_IVOR4,r1 /* External interrupt */
  372. li r1,0x0600
  373. mtspr SPRN_IVOR5,r1 /* Alignment */
  374. li r1,0x0700
  375. mtspr SPRN_IVOR6,r1 /* Program check */
  376. li r1,0x0800
  377. mtspr SPRN_IVOR7,r1 /* Floating point unavailable */
  378. li r1,0x0c00
  379. mtspr SPRN_IVOR8,r1 /* System call */
  380. li r1,0x0a00
  381. mtspr SPRN_IVOR9,r1 /* Auxiliary Processor unavailable */
  382. li r1,0x0900
  383. mtspr SPRN_IVOR10,r1 /* Decrementer */
  384. li r1,0x1300
  385. mtspr SPRN_IVOR13,r1 /* Data TLB error */
  386. li r1,0x1400
  387. mtspr SPRN_IVOR14,r1 /* Instr TLB error */
  388. li r1,0x2000
  389. mtspr SPRN_IVOR15,r1 /* Debug */
  390. /*----------------------------------------------------------------*/
  391. /* Configure cache regions */
  392. /*----------------------------------------------------------------*/
  393. mtspr SPRN_INV0,r0
  394. mtspr SPRN_INV1,r0
  395. mtspr SPRN_INV2,r0
  396. mtspr SPRN_INV3,r0
  397. mtspr SPRN_DNV0,r0
  398. mtspr SPRN_DNV1,r0
  399. mtspr SPRN_DNV2,r0
  400. mtspr SPRN_DNV3,r0
  401. mtspr SPRN_ITV0,r0
  402. mtspr SPRN_ITV1,r0
  403. mtspr SPRN_ITV2,r0
  404. mtspr SPRN_ITV3,r0
  405. mtspr SPRN_DTV0,r0
  406. mtspr SPRN_DTV1,r0
  407. mtspr SPRN_DTV2,r0
  408. mtspr SPRN_DTV3,r0
  409. /*----------------------------------------------------------------*/
  410. /* Cache victim limits */
  411. /*----------------------------------------------------------------*/
  412. /* floors 0, ceiling max to use the entire cache -- nothing locked
  413. */
  414. lis r1,0x0001
  415. ori r1,r1,0xf800
  416. mtspr SPRN_IVLIM,r1
  417. mtspr SPRN_DVLIM,r1
  418. /*----------------------------------------------------------------+
  419. |Initialize MMUCR[STID] = 0.
  420. +-----------------------------------------------------------------*/
  421. mfspr r0,SPRN_MMUCR
  422. addis r1,0,0xFFFF
  423. ori r1,r1,0xFF00
  424. and r0,r0,r1
  425. mtspr SPRN_MMUCR,r0
  426. /*----------------------------------------------------------------*/
  427. /* Clear all TLB entries -- TID = 0, TS = 0 */
  428. /*----------------------------------------------------------------*/
  429. addis r0,0,0x0000
  430. #ifdef CONFIG_SYS_RAMBOOT
  431. li r4,0 /* Start with TLB #0 */
  432. #else
  433. li r4,1 /* Start with TLB #1 */
  434. #endif
  435. li r1,64 /* 64 TLB entries */
  436. sub r1,r1,r4 /* calculate last TLB # */
  437. mtctr r1
  438. rsttlb:
  439. #ifdef CONFIG_SYS_RAMBOOT
  440. tlbre r3,r4,0 /* Read contents from TLB word #0 to get EPN */
  441. rlwinm. r3,r3,0,0xfffffc00 /* Mask EPN */
  442. beq tlbnxt /* Skip EPN=0 TLB, this is the SDRAM TLB */
  443. #endif
  444. tlbwe r0,r4,0 /* Invalidate all entries (V=0)*/
  445. tlbwe r0,r4,1
  446. tlbwe r0,r4,2
  447. tlbnxt: addi r4,r4,1 /* Next TLB */
  448. bdnz rsttlb
  449. /*----------------------------------------------------------------*/
  450. /* TLB entry setup -- step thru tlbtab */
  451. /*----------------------------------------------------------------*/
  452. #if defined(CONFIG_440SPE_REVA)
  453. /*----------------------------------------------------------------*/
  454. /* We have different TLB tables for revA and rev B of 440SPe */
  455. /*----------------------------------------------------------------*/
  456. mfspr r1, PVR
  457. lis r0,0x5342
  458. ori r0,r0,0x1891
  459. cmpw r7,r1,r0
  460. bne r7,..revA
  461. bl tlbtabB
  462. b ..goon
  463. ..revA:
  464. bl tlbtabA
  465. ..goon:
  466. #else
  467. bl tlbtab /* Get tlbtab pointer */
  468. #endif
  469. mr r5,r0
  470. li r1,0x003f /* 64 TLB entries max */
  471. mtctr r1
  472. li r4,0 /* TLB # */
  473. addi r5,r5,-4
  474. 1:
  475. #ifdef CONFIG_SYS_RAMBOOT
  476. tlbre r3,r4,0 /* Read contents from TLB word #0 */
  477. rlwinm. r3,r3,0,0x00000200 /* Mask V (valid) bit */
  478. bne tlbnx2 /* Skip V=1 TLB, this is the SDRAM TLB */
  479. #endif
  480. lwzu r0,4(r5)
  481. cmpwi r0,0
  482. beq 2f /* 0 marks end */
  483. lwzu r1,4(r5)
  484. lwzu r2,4(r5)
  485. tlbwe r0,r4,0 /* TLB Word 0 */
  486. tlbwe r1,r4,1 /* TLB Word 1 */
  487. tlbwe r2,r4,2 /* TLB Word 2 */
  488. tlbnx2: addi r4,r4,1 /* Next TLB */
  489. bdnz 1b
  490. /*----------------------------------------------------------------*/
  491. /* Continue from 'normal' start */
  492. /*----------------------------------------------------------------*/
  493. 2:
  494. bl 3f
  495. b _start
  496. 3: li r0,0
  497. mtspr SPRN_SRR1,r0 /* Keep things disabled for now */
  498. mflr r1
  499. mtspr SPRN_SRR0,r1
  500. rfi
  501. #endif /* CONFIG_440 */
  502. /*
  503. * r3 - 1st arg to board_init(): IMMP pointer
  504. * r4 - 2nd arg to board_init(): boot flag
  505. */
  506. #ifndef CONFIG_NAND_SPL
  507. .text
  508. .long 0x27051956 /* U-Boot Magic Number */
  509. .globl version_string
  510. version_string:
  511. .ascii U_BOOT_VERSION
  512. .ascii " (", U_BOOT_DATE, " - ", U_BOOT_TIME, ")"
  513. .ascii CONFIG_IDENT_STRING, "\0"
  514. . = EXC_OFF_SYS_RESET
  515. .globl _start_of_vectors
  516. _start_of_vectors:
  517. /* Critical input. */
  518. CRIT_EXCEPTION(0x100, CritcalInput, UnknownException)
  519. #ifdef CONFIG_440
  520. /* Machine check */
  521. MCK_EXCEPTION(0x200, MachineCheck, MachineCheckException)
  522. #else
  523. CRIT_EXCEPTION(0x200, MachineCheck, MachineCheckException)
  524. #endif /* CONFIG_440 */
  525. /* Data Storage exception. */
  526. STD_EXCEPTION(0x300, DataStorage, UnknownException)
  527. /* Instruction Storage exception. */
  528. STD_EXCEPTION(0x400, InstStorage, UnknownException)
  529. /* External Interrupt exception. */
  530. STD_EXCEPTION(0x500, ExtInterrupt, external_interrupt)
  531. /* Alignment exception. */
  532. . = 0x600
  533. Alignment:
  534. EXCEPTION_PROLOG(SRR0, SRR1)
  535. mfspr r4,DAR
  536. stw r4,_DAR(r21)
  537. mfspr r5,DSISR
  538. stw r5,_DSISR(r21)
  539. addi r3,r1,STACK_FRAME_OVERHEAD
  540. EXC_XFER_TEMPLATE(Alignment, AlignmentException, MSR_KERNEL, COPY_EE)
  541. /* Program check exception */
  542. . = 0x700
  543. ProgramCheck:
  544. EXCEPTION_PROLOG(SRR0, SRR1)
  545. addi r3,r1,STACK_FRAME_OVERHEAD
  546. EXC_XFER_TEMPLATE(ProgramCheck, ProgramCheckException,
  547. MSR_KERNEL, COPY_EE)
  548. #ifdef CONFIG_440
  549. STD_EXCEPTION(0x800, FPUnavailable, UnknownException)
  550. STD_EXCEPTION(0x900, Decrementer, DecrementerPITException)
  551. STD_EXCEPTION(0xa00, APU, UnknownException)
  552. #endif
  553. STD_EXCEPTION(0xc00, SystemCall, UnknownException)
  554. #ifdef CONFIG_440
  555. STD_EXCEPTION(0x1300, DataTLBError, UnknownException)
  556. STD_EXCEPTION(0x1400, InstructionTLBError, UnknownException)
  557. #else
  558. STD_EXCEPTION(0x1000, PIT, DecrementerPITException)
  559. STD_EXCEPTION(0x1100, InstructionTLBMiss, UnknownException)
  560. STD_EXCEPTION(0x1200, DataTLBMiss, UnknownException)
  561. #endif
  562. CRIT_EXCEPTION(0x2000, DebugBreakpoint, DebugException )
  563. .globl _end_of_vectors
  564. _end_of_vectors:
  565. . = _START_OFFSET
  566. #endif
  567. .globl _start
  568. _start:
  569. /*****************************************************************************/
  570. #if defined(CONFIG_440)
  571. /*----------------------------------------------------------------*/
  572. /* Clear and set up some registers. */
  573. /*----------------------------------------------------------------*/
  574. li r0,0x0000
  575. lis r1,0xffff
  576. mtspr SPRN_DEC,r0 /* prevent dec exceptions */
  577. mtspr SPRN_TBWL,r0 /* prevent fit & wdt exceptions */
  578. mtspr SPRN_TBWU,r0
  579. mtspr SPRN_TSR,r1 /* clear all timer exception status */
  580. mtspr SPRN_TCR,r0 /* disable all */
  581. mtspr SPRN_ESR,r0 /* clear exception syndrome register */
  582. mtxer r0 /* clear integer exception register */
  583. /*----------------------------------------------------------------*/
  584. /* Debug setup -- some (not very good) ice's need an event*/
  585. /* to establish control :-( Define CONFIG_SYS_INIT_DBCR to the dbsr */
  586. /* value you need in this case 0x8cff 0000 should do the trick */
  587. /*----------------------------------------------------------------*/
  588. #if defined(CONFIG_SYS_INIT_DBCR)
  589. lis r1,0xffff
  590. ori r1,r1,0xffff
  591. mtspr SPRN_DBSR,r1 /* Clear all status bits */
  592. lis r0,CONFIG_SYS_INIT_DBCR@h
  593. ori r0,r0,CONFIG_SYS_INIT_DBCR@l
  594. mtspr SPRN_DBCR0,r0
  595. isync
  596. #endif
  597. /*----------------------------------------------------------------*/
  598. /* Setup the internal SRAM */
  599. /*----------------------------------------------------------------*/
  600. li r0,0
  601. #ifdef CONFIG_SYS_INIT_RAM_DCACHE
  602. /* Clear Dcache to use as RAM */
  603. addis r3,r0,CONFIG_SYS_INIT_RAM_ADDR@h
  604. ori r3,r3,CONFIG_SYS_INIT_RAM_ADDR@l
  605. addis r4,r0,CONFIG_SYS_INIT_RAM_END@h
  606. ori r4,r4,CONFIG_SYS_INIT_RAM_END@l
  607. rlwinm. r5,r4,0,27,31
  608. rlwinm r5,r4,27,5,31
  609. beq ..d_ran
  610. addi r5,r5,0x0001
  611. ..d_ran:
  612. mtctr r5
  613. ..d_ag:
  614. dcbz r0,r3
  615. addi r3,r3,32
  616. bdnz ..d_ag
  617. /*
  618. * Lock the init-ram/stack in d-cache, so that other regions
  619. * may use d-cache as well
  620. * Note, that this current implementation locks exactly 4k
  621. * of d-cache, so please make sure that you don't define a
  622. * bigger init-ram area. Take a look at the lwmon5 440EPx
  623. * implementation as a reference.
  624. */
  625. msync
  626. isync
  627. /* 8. set TFLOOR/NFLOOR to 8 (-> 8*16*32 bytes locked -> 4k) */
  628. lis r1,0x0201
  629. ori r1,r1,0xf808
  630. mtspr SPRN_DVLIM,r1
  631. lis r1,0x0808
  632. ori r1,r1,0x0808
  633. mtspr SPRN_DNV0,r1
  634. mtspr SPRN_DNV1,r1
  635. mtspr SPRN_DNV2,r1
  636. mtspr SPRN_DNV3,r1
  637. mtspr SPRN_DTV0,r1
  638. mtspr SPRN_DTV1,r1
  639. mtspr SPRN_DTV2,r1
  640. mtspr SPRN_DTV3,r1
  641. msync
  642. isync
  643. #endif /* CONFIG_SYS_INIT_RAM_DCACHE */
  644. /* 440EP & 440GR are only 440er PPC's without internal SRAM */
  645. #if !defined(CONFIG_440EP) && !defined(CONFIG_440GR)
  646. /* not all PPC's have internal SRAM usable as L2-cache */
  647. #if defined(CONFIG_440GX) || \
  648. defined(CONFIG_440SP) || defined(CONFIG_440SPE) || \
  649. defined(CONFIG_460SX)
  650. mtdcr L2_CACHE_CFG,r0 /* Ensure L2 Cache is off */
  651. #elif defined(CONFIG_460EX) || defined(CONFIG_460GT)
  652. lis r1, 0x0000
  653. ori r1,r1,0x0008 /* Set L2_CACHE_CFG[RDBW]=1 */
  654. mtdcr L2_CACHE_CFG,r1
  655. #endif
  656. lis r2,0x7fff
  657. ori r2,r2,0xffff
  658. mfdcr r1,ISRAM0_DPC
  659. and r1,r1,r2 /* Disable parity check */
  660. mtdcr ISRAM0_DPC,r1
  661. mfdcr r1,ISRAM0_PMEG
  662. and r1,r1,r2 /* Disable pwr mgmt */
  663. mtdcr ISRAM0_PMEG,r1
  664. lis r1,0x8000 /* BAS = 8000_0000 */
  665. #if defined(CONFIG_440GX) || defined(CONFIG_440SP)
  666. ori r1,r1,0x0980 /* first 64k */
  667. mtdcr ISRAM0_SB0CR,r1
  668. lis r1,0x8001
  669. ori r1,r1,0x0980 /* second 64k */
  670. mtdcr ISRAM0_SB1CR,r1
  671. lis r1, 0x8002
  672. ori r1,r1, 0x0980 /* third 64k */
  673. mtdcr ISRAM0_SB2CR,r1
  674. lis r1, 0x8003
  675. ori r1,r1, 0x0980 /* fourth 64k */
  676. mtdcr ISRAM0_SB3CR,r1
  677. #elif defined(CONFIG_440SPE) || defined(CONFIG_460EX) || defined(CONFIG_460GT)
  678. lis r1,0x0000 /* BAS = X_0000_0000 */
  679. ori r1,r1,0x0984 /* first 64k */
  680. mtdcr ISRAM0_SB0CR,r1
  681. lis r1,0x0001
  682. ori r1,r1,0x0984 /* second 64k */
  683. mtdcr ISRAM0_SB1CR,r1
  684. lis r1, 0x0002
  685. ori r1,r1, 0x0984 /* third 64k */
  686. mtdcr ISRAM0_SB2CR,r1
  687. lis r1, 0x0003
  688. ori r1,r1, 0x0984 /* fourth 64k */
  689. mtdcr ISRAM0_SB3CR,r1
  690. #if defined(CONFIG_460EX) || defined(CONFIG_460GT)
  691. lis r2,0x7fff
  692. ori r2,r2,0xffff
  693. mfdcr r1,ISRAM1_DPC
  694. and r1,r1,r2 /* Disable parity check */
  695. mtdcr ISRAM1_DPC,r1
  696. mfdcr r1,ISRAM1_PMEG
  697. and r1,r1,r2 /* Disable pwr mgmt */
  698. mtdcr ISRAM1_PMEG,r1
  699. lis r1,0x0004 /* BAS = 4_0004_0000 */
  700. ori r1,r1,0x0984 /* 64k */
  701. mtdcr ISRAM1_SB0CR,r1
  702. #endif
  703. #elif defined(CONFIG_460SX)
  704. lis r1,0x0000 /* BAS = 0000_0000 */
  705. ori r1,r1,0x0B84 /* first 128k */
  706. mtdcr ISRAM0_SB0CR,r1
  707. lis r1,0x0001
  708. ori r1,r1,0x0B84 /* second 128k */
  709. mtdcr ISRAM0_SB1CR,r1
  710. lis r1, 0x0002
  711. ori r1,r1, 0x0B84 /* third 128k */
  712. mtdcr ISRAM0_SB2CR,r1
  713. lis r1, 0x0003
  714. ori r1,r1, 0x0B84 /* fourth 128k */
  715. mtdcr ISRAM0_SB3CR,r1
  716. #elif defined(CONFIG_440GP)
  717. ori r1,r1,0x0380 /* 8k rw */
  718. mtdcr ISRAM0_SB0CR,r1
  719. mtdcr ISRAM0_SB1CR,r0 /* Disable bank 1 */
  720. #endif
  721. #endif /* #if !defined(CONFIG_440EP) && !defined(CONFIG_440GR) */
  722. /*----------------------------------------------------------------*/
  723. /* Setup the stack in internal SRAM */
  724. /*----------------------------------------------------------------*/
  725. lis r1,CONFIG_SYS_INIT_RAM_ADDR@h
  726. ori r1,r1,CONFIG_SYS_INIT_SP_OFFSET@l
  727. li r0,0
  728. stwu r0,-4(r1)
  729. stwu r0,-4(r1) /* Terminate call chain */
  730. stwu r1,-8(r1) /* Save back chain and move SP */
  731. lis r0,RESET_VECTOR@h /* Address of reset vector */
  732. ori r0,r0, RESET_VECTOR@l
  733. stwu r1,-8(r1) /* Save back chain and move SP */
  734. stw r0,+12(r1) /* Save return addr (underflow vect) */
  735. #ifdef CONFIG_NAND_SPL
  736. bl nand_boot_common /* will not return */
  737. #else
  738. GET_GOT
  739. bl cpu_init_f /* run low-level CPU init code (from Flash) */
  740. bl board_init_f
  741. #endif
  742. #endif /* CONFIG_440 */
  743. /*****************************************************************************/
  744. #ifdef CONFIG_IOP480
  745. /*----------------------------------------------------------------------- */
  746. /* Set up some machine state registers. */
  747. /*----------------------------------------------------------------------- */
  748. addi r0,r0,0x0000 /* initialize r0 to zero */
  749. mtspr SPRN_ESR,r0 /* clear Exception Syndrome Reg */
  750. mttcr r0 /* timer control register */
  751. mtexier r0 /* disable all interrupts */
  752. addis r4,r0,0xFFFF /* set r4 to 0xFFFFFFFF (status in the */
  753. ori r4,r4,0xFFFF /* dbsr is cleared by setting bits to 1) */
  754. mtdbsr r4 /* clear/reset the dbsr */
  755. mtexisr r4 /* clear all pending interrupts */
  756. addis r4,r0,0x8000
  757. mtexier r4 /* enable critical exceptions */
  758. addis r4,r0,0x0000 /* assume 403GCX - enable core clk */
  759. ori r4,r4,0x4020 /* dbling (no harm done on GA and GC */
  760. mtiocr r4 /* since bit not used) & DRC to latch */
  761. /* data bus on rising edge of CAS */
  762. /*----------------------------------------------------------------------- */
  763. /* Clear XER. */
  764. /*----------------------------------------------------------------------- */
  765. mtxer r0
  766. /*----------------------------------------------------------------------- */
  767. /* Invalidate i-cache and d-cache TAG arrays. */
  768. /*----------------------------------------------------------------------- */
  769. addi r3,0,1024 /* 1/4 of I-cache size, half of D-cache */
  770. addi r4,0,1024 /* 1/4 of I-cache */
  771. ..cloop:
  772. iccci 0,r3
  773. iccci r4,r3
  774. dccci 0,r3
  775. addic. r3,r3,-16 /* move back one cache line */
  776. bne ..cloop /* loop back to do rest until r3 = 0 */
  777. /* */
  778. /* initialize IOP480 so it can read 1 MB code area for SRAM spaces */
  779. /* this requires enabling MA[17..0], by default only MA[12..0] are enabled. */
  780. /* */
  781. /* first copy IOP480 register base address into r3 */
  782. addis r3,0,0x5000 /* IOP480 register base address hi */
  783. /* ori r3,r3,0x0000 / IOP480 register base address lo */
  784. #ifdef CONFIG_ADCIOP
  785. /* use r4 as the working variable */
  786. /* turn on CS3 (LOCCTL.7) */
  787. lwz r4,0x84(r3) /* LOCTL is at offset 0x84 */
  788. andi. r4,r4,0xff7f /* make bit 7 = 0 -- CS3 mode */
  789. stw r4,0x84(r3) /* LOCTL is at offset 0x84 */
  790. #endif
  791. #ifdef CONFIG_DASA_SIM
  792. /* use r4 as the working variable */
  793. /* turn on MA17 (LOCCTL.7) */
  794. lwz r4,0x84(r3) /* LOCTL is at offset 0x84 */
  795. ori r4,r4,0x80 /* make bit 7 = 1 -- MA17 mode */
  796. stw r4,0x84(r3) /* LOCTL is at offset 0x84 */
  797. #endif
  798. /* turn on MA16..13 (LCS0BRD.12 = 0) */
  799. lwz r4,0x100(r3) /* LCS0BRD is at offset 0x100 */
  800. andi. r4,r4,0xefff /* make bit 12 = 0 */
  801. stw r4,0x100(r3) /* LCS0BRD is at offset 0x100 */
  802. /* make sure above stores all comlete before going on */
  803. sync
  804. /* last thing, set local init status done bit (DEVINIT.31) */
  805. lwz r4,0x80(r3) /* DEVINIT is at offset 0x80 */
  806. oris r4,r4,0x8000 /* make bit 31 = 1 */
  807. stw r4,0x80(r3) /* DEVINIT is at offset 0x80 */
  808. /* clear all pending interrupts and disable all interrupts */
  809. li r4,-1 /* set p1 to 0xffffffff */
  810. stw r4,0x1b0(r3) /* clear all pending interrupts */
  811. stw r4,0x1b8(r3) /* clear all pending interrupts */
  812. li r4,0 /* set r4 to 0 */
  813. stw r4,0x1b4(r3) /* disable all interrupts */
  814. stw r4,0x1bc(r3) /* disable all interrupts */
  815. /* make sure above stores all comlete before going on */
  816. sync
  817. /* Set-up icache cacheability. */
  818. lis r1, CONFIG_SYS_ICACHE_SACR_VALUE@h
  819. ori r1, r1, CONFIG_SYS_ICACHE_SACR_VALUE@l
  820. mticcr r1
  821. isync
  822. /* Set-up dcache cacheability. */
  823. lis r1, CONFIG_SYS_DCACHE_SACR_VALUE@h
  824. ori r1, r1, CONFIG_SYS_DCACHE_SACR_VALUE@l
  825. mtdccr r1
  826. addis r1,r0,CONFIG_SYS_INIT_RAM_ADDR@h
  827. ori r1,r1,CONFIG_SYS_INIT_SP_OFFSET /* set up the stack to SDRAM */
  828. li r0, 0 /* Make room for stack frame header and */
  829. stwu r0, -4(r1) /* clear final stack frame so that */
  830. stwu r0, -4(r1) /* stack backtraces terminate cleanly */
  831. GET_GOT /* initialize GOT access */
  832. bl board_init_f /* run first part of init code (from Flash) */
  833. #endif /* CONFIG_IOP480 */
  834. /*****************************************************************************/
  835. #if defined(CONFIG_405GP) || defined(CONFIG_405CR) || \
  836. defined(CONFIG_405EP) || defined(CONFIG_405EZ) || \
  837. defined(CONFIG_405EX) || defined(CONFIG_405)
  838. /*----------------------------------------------------------------------- */
  839. /* Clear and set up some registers. */
  840. /*----------------------------------------------------------------------- */
  841. addi r4,r0,0x0000
  842. #if !defined(CONFIG_405EX)
  843. mtspr SPRN_SGR,r4
  844. #else
  845. /*
  846. * On 405EX, completely clearing the SGR leads to PPC hangup
  847. * upon PCIe configuration access. The PCIe memory regions
  848. * need to be guarded!
  849. */
  850. lis r3,0x0000
  851. ori r3,r3,0x7FFC
  852. mtspr SPRN_SGR,r3
  853. #endif
  854. mtspr SPRN_DCWR,r4
  855. mtesr r4 /* clear Exception Syndrome Reg */
  856. mttcr r4 /* clear Timer Control Reg */
  857. mtxer r4 /* clear Fixed-Point Exception Reg */
  858. mtevpr r4 /* clear Exception Vector Prefix Reg */
  859. addi r4,r0,(0xFFFF-0x10000) /* set r4 to 0xFFFFFFFF (status in the */
  860. /* dbsr is cleared by setting bits to 1) */
  861. mtdbsr r4 /* clear/reset the dbsr */
  862. /* Invalidate the i- and d-caches. */
  863. bl invalidate_icache
  864. bl invalidate_dcache
  865. /* Set-up icache cacheability. */
  866. lis r4, CONFIG_SYS_ICACHE_SACR_VALUE@h
  867. ori r4, r4, CONFIG_SYS_ICACHE_SACR_VALUE@l
  868. mticcr r4
  869. isync
  870. /* Set-up dcache cacheability. */
  871. lis r4, CONFIG_SYS_DCACHE_SACR_VALUE@h
  872. ori r4, r4, CONFIG_SYS_DCACHE_SACR_VALUE@l
  873. mtdccr r4
  874. #if !(defined(CONFIG_SYS_EBC_PB0AP) && defined(CONFIG_SYS_EBC_PB0CR))\
  875. && !defined (CONFIG_XILINX_405)
  876. /*----------------------------------------------------------------------- */
  877. /* Tune the speed and size for flash CS0 */
  878. /*----------------------------------------------------------------------- */
  879. bl ext_bus_cntlr_init
  880. #endif
  881. #if !(defined(CONFIG_SYS_INIT_DCACHE_CS) || defined(CONFIG_SYS_TEMP_STACK_OCM))
  882. /*
  883. * For boards that don't have OCM and can't use the data cache
  884. * for their primordial stack, setup stack here directly after the
  885. * SDRAM is initialized in ext_bus_cntlr_init.
  886. */
  887. lis r1, CONFIG_SYS_INIT_RAM_ADDR@h
  888. ori r1,r1,CONFIG_SYS_INIT_SP_OFFSET /* set up the stack in SDRAM */
  889. li r0, 0 /* Make room for stack frame header and */
  890. stwu r0, -4(r1) /* clear final stack frame so that */
  891. stwu r0, -4(r1) /* stack backtraces terminate cleanly */
  892. /*
  893. * Set up a dummy frame to store reset vector as return address.
  894. * this causes stack underflow to reset board.
  895. */
  896. stwu r1, -8(r1) /* Save back chain and move SP */
  897. lis r0, RESET_VECTOR@h /* Address of reset vector */
  898. ori r0, r0, RESET_VECTOR@l
  899. stwu r1, -8(r1) /* Save back chain and move SP */
  900. stw r0, +12(r1) /* Save return addr (underflow vect) */
  901. #endif /* !(CONFIG_SYS_INIT_DCACHE_CS || !CONFIG_SYS_TEM_STACK_OCM) */
  902. #if defined(CONFIG_405EP)
  903. /*----------------------------------------------------------------------- */
  904. /* DMA Status, clear to come up clean */
  905. /*----------------------------------------------------------------------- */
  906. addis r3,r0, 0xFFFF /* Clear all existing DMA status */
  907. ori r3,r3, 0xFFFF
  908. mtdcr DMASR, r3
  909. bl ppc405ep_init /* do ppc405ep specific init */
  910. #endif /* CONFIG_405EP */
  911. #if defined(CONFIG_SYS_OCM_DATA_ADDR) && defined(CONFIG_SYS_OCM_DATA_SIZE)
  912. #if defined(CONFIG_405EZ)
  913. /********************************************************************
  914. * Setup OCM - On Chip Memory - PPC405EZ uses OCM Controller V2
  915. *******************************************************************/
  916. /*
  917. * We can map the OCM on the PLB3, so map it at
  918. * CONFIG_SYS_OCM_DATA_ADDR + 0x8000
  919. */
  920. lis r3,CONFIG_SYS_OCM_DATA_ADDR@h /* OCM location */
  921. ori r3,r3,CONFIG_SYS_OCM_DATA_ADDR@l
  922. ori r3,r3,0x0270 /* 16K for Bank 1, R/W/Enable */
  923. mtdcr OCM0_PLBCR1,r3 /* Set PLB Access */
  924. ori r3,r3,0x4000 /* Add 0x4000 for bank 2 */
  925. mtdcr OCM0_PLBCR2,r3 /* Set PLB Access */
  926. isync
  927. lis r3,CONFIG_SYS_OCM_DATA_ADDR@h /* OCM location */
  928. ori r3,r3,CONFIG_SYS_OCM_DATA_ADDR@l
  929. ori r3,r3,0x0270 /* 16K for Bank 1, R/W/Enable */
  930. mtdcr OCM0_DSRC1, r3 /* Set Data Side */
  931. mtdcr OCM0_ISRC1, r3 /* Set Instruction Side */
  932. ori r3,r3,0x4000 /* Add 0x4000 for bank 2 */
  933. mtdcr OCM0_DSRC2, r3 /* Set Data Side */
  934. mtdcr OCM0_ISRC2, r3 /* Set Instruction Side */
  935. addis r3,0,0x0800 /* OCM Data Parity Disable - 1 Wait State */
  936. mtdcr OCM0_DISDPC,r3
  937. isync
  938. #else /* CONFIG_405EZ */
  939. /********************************************************************
  940. * Setup OCM - On Chip Memory
  941. *******************************************************************/
  942. /* Setup OCM */
  943. lis r0, 0x7FFF
  944. ori r0, r0, 0xFFFF
  945. mfdcr r3, OCM0_ISCNTL /* get instr-side IRAM config */
  946. mfdcr r4, OCM0_DSCNTL /* get data-side IRAM config */
  947. and r3, r3, r0 /* disable data-side IRAM */
  948. and r4, r4, r0 /* disable data-side IRAM */
  949. mtdcr OCM0_ISCNTL, r3 /* set instr-side IRAM config */
  950. mtdcr OCM0_DSCNTL, r4 /* set data-side IRAM config */
  951. isync
  952. lis r3,CONFIG_SYS_OCM_DATA_ADDR@h /* OCM location */
  953. ori r3,r3,CONFIG_SYS_OCM_DATA_ADDR@l
  954. mtdcr OCM0_DSARC, r3
  955. addis r4, 0, 0xC000 /* OCM data area enabled */
  956. mtdcr OCM0_DSCNTL, r4
  957. isync
  958. #endif /* CONFIG_405EZ */
  959. #endif
  960. /*----------------------------------------------------------------------- */
  961. /* Setup temporary stack in DCACHE or OCM if needed for SDRAM SPD. */
  962. /*----------------------------------------------------------------------- */
  963. #ifdef CONFIG_SYS_INIT_DCACHE_CS
  964. li r4, PBxAP
  965. mtdcr EBC0_CFGADDR, r4
  966. lis r4, CONFIG_SYS_INIT_DCACHE_PBxAR@h
  967. ori r4, r4, CONFIG_SYS_INIT_DCACHE_PBxAR@l
  968. mtdcr EBC0_CFGDATA, r4
  969. addi r4, 0, PBxCR
  970. mtdcr EBC0_CFGADDR, r4
  971. lis r4, CONFIG_SYS_INIT_DCACHE_PBxCR@h
  972. ori r4, r4, CONFIG_SYS_INIT_DCACHE_PBxCR@l
  973. mtdcr EBC0_CFGDATA, r4
  974. /*
  975. * Enable the data cache for the 128MB storage access control region
  976. * at CONFIG_SYS_INIT_RAM_ADDR.
  977. */
  978. mfdccr r4
  979. oris r4, r4, PPC_128MB_SACR_VALUE(CONFIG_SYS_INIT_RAM_ADDR)@h
  980. ori r4, r4, PPC_128MB_SACR_VALUE(CONFIG_SYS_INIT_RAM_ADDR)@l
  981. mtdccr r4
  982. /*
  983. * Preallocate data cache lines to be used to avoid a subsequent
  984. * cache miss and an ensuing machine check exception when exceptions
  985. * are enabled.
  986. */
  987. li r0, 0
  988. lis r3, CONFIG_SYS_INIT_RAM_ADDR@h
  989. ori r3, r3, CONFIG_SYS_INIT_RAM_ADDR@l
  990. lis r4, CONFIG_SYS_INIT_RAM_END@h
  991. ori r4, r4, CONFIG_SYS_INIT_RAM_END@l
  992. /*
  993. * Convert the size, in bytes, to the number of cache lines/blocks
  994. * to preallocate.
  995. */
  996. clrlwi. r5, r4, (32 - L1_CACHE_SHIFT)
  997. srwi r5, r4, L1_CACHE_SHIFT
  998. beq ..load_counter
  999. addi r5, r5, 0x0001
  1000. ..load_counter:
  1001. mtctr r5
  1002. /* Preallocate the computed number of cache blocks. */
  1003. ..alloc_dcache_block:
  1004. dcba r0, r3
  1005. addi r3, r3, L1_CACHE_BYTES
  1006. bdnz ..alloc_dcache_block
  1007. sync
  1008. /*
  1009. * Load the initial stack pointer and data area and convert the size,
  1010. * in bytes, to the number of words to initialize to a known value.
  1011. */
  1012. lis r1, CONFIG_SYS_INIT_RAM_ADDR@h
  1013. ori r1, r1, CONFIG_SYS_INIT_SP_OFFSET@l
  1014. lis r4, (CONFIG_SYS_INIT_RAM_END >> 2)@h
  1015. ori r4, r4, (CONFIG_SYS_INIT_RAM_END >> 2)@l
  1016. mtctr r4
  1017. lis r2, CONFIG_SYS_INIT_RAM_ADDR@h
  1018. ori r2, r2, CONFIG_SYS_INIT_RAM_END@l
  1019. lis r4, CONFIG_SYS_INIT_RAM_PATTERN@h
  1020. ori r4, r4, CONFIG_SYS_INIT_RAM_PATTERN@l
  1021. ..stackloop:
  1022. stwu r4, -4(r2)
  1023. bdnz ..stackloop
  1024. /*
  1025. * Make room for stack frame header and clear final stack frame so
  1026. * that stack backtraces terminate cleanly.
  1027. */
  1028. stwu r0, -4(r1)
  1029. stwu r0, -4(r1)
  1030. /*
  1031. * Set up a dummy frame to store reset vector as return address.
  1032. * this causes stack underflow to reset board.
  1033. */
  1034. stwu r1, -8(r1) /* Save back chain and move SP */
  1035. addis r0, 0, RESET_VECTOR@h /* Address of reset vector */
  1036. ori r0, r0, RESET_VECTOR@l
  1037. stwu r1, -8(r1) /* Save back chain and move SP */
  1038. stw r0, +12(r1) /* Save return addr (underflow vect) */
  1039. #elif defined(CONFIG_SYS_TEMP_STACK_OCM) && \
  1040. (defined(CONFIG_SYS_OCM_DATA_ADDR) && defined(CONFIG_SYS_OCM_DATA_SIZE))
  1041. /*
  1042. * Stack in OCM.
  1043. */
  1044. /* Set up Stack at top of OCM */
  1045. lis r1, (CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_INIT_SP_OFFSET)@h
  1046. ori r1, r1, (CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_INIT_SP_OFFSET)@l
  1047. /* Set up a zeroized stack frame so that backtrace works right */
  1048. li r0, 0
  1049. stwu r0, -4(r1)
  1050. stwu r0, -4(r1)
  1051. /*
  1052. * Set up a dummy frame to store reset vector as return address.
  1053. * this causes stack underflow to reset board.
  1054. */
  1055. stwu r1, -8(r1) /* Save back chain and move SP */
  1056. lis r0, RESET_VECTOR@h /* Address of reset vector */
  1057. ori r0, r0, RESET_VECTOR@l
  1058. stwu r1, -8(r1) /* Save back chain and move SP */
  1059. stw r0, +12(r1) /* Save return addr (underflow vect) */
  1060. #endif /* CONFIG_SYS_INIT_DCACHE_CS */
  1061. #ifdef CONFIG_NAND_SPL
  1062. bl nand_boot_common /* will not return */
  1063. #else
  1064. GET_GOT /* initialize GOT access */
  1065. bl cpu_init_f /* run low-level CPU init code (from Flash) */
  1066. /* NEVER RETURNS! */
  1067. bl board_init_f /* run first part of init code (from Flash) */
  1068. #endif /* CONFIG_NAND_SPL */
  1069. #endif /* CONFIG_405GP || CONFIG_405CR || CONFIG_405 || CONFIG_405EP */
  1070. /*----------------------------------------------------------------------- */
  1071. #ifndef CONFIG_NAND_SPL
  1072. /*
  1073. * This code finishes saving the registers to the exception frame
  1074. * and jumps to the appropriate handler for the exception.
  1075. * Register r21 is pointer into trap frame, r1 has new stack pointer.
  1076. */
  1077. .globl transfer_to_handler
  1078. transfer_to_handler:
  1079. stw r22,_NIP(r21)
  1080. lis r22,MSR_POW@h
  1081. andc r23,r23,r22
  1082. stw r23,_MSR(r21)
  1083. SAVE_GPR(7, r21)
  1084. SAVE_4GPRS(8, r21)
  1085. SAVE_8GPRS(12, r21)
  1086. SAVE_8GPRS(24, r21)
  1087. mflr r23
  1088. andi. r24,r23,0x3f00 /* get vector offset */
  1089. stw r24,TRAP(r21)
  1090. li r22,0
  1091. stw r22,RESULT(r21)
  1092. mtspr SPRG2,r22 /* r1 is now kernel sp */
  1093. lwz r24,0(r23) /* virtual address of handler */
  1094. lwz r23,4(r23) /* where to go when done */
  1095. mtspr SRR0,r24
  1096. mtspr SRR1,r20
  1097. mtlr r23
  1098. SYNC
  1099. rfi /* jump to handler, enable MMU */
  1100. int_return:
  1101. mfmsr r28 /* Disable interrupts */
  1102. li r4,0
  1103. ori r4,r4,MSR_EE
  1104. andc r28,r28,r4
  1105. SYNC /* Some chip revs need this... */
  1106. mtmsr r28
  1107. SYNC
  1108. lwz r2,_CTR(r1)
  1109. lwz r0,_LINK(r1)
  1110. mtctr r2
  1111. mtlr r0
  1112. lwz r2,_XER(r1)
  1113. lwz r0,_CCR(r1)
  1114. mtspr XER,r2
  1115. mtcrf 0xFF,r0
  1116. REST_10GPRS(3, r1)
  1117. REST_10GPRS(13, r1)
  1118. REST_8GPRS(23, r1)
  1119. REST_GPR(31, r1)
  1120. lwz r2,_NIP(r1) /* Restore environment */
  1121. lwz r0,_MSR(r1)
  1122. mtspr SRR0,r2
  1123. mtspr SRR1,r0
  1124. lwz r0,GPR0(r1)
  1125. lwz r2,GPR2(r1)
  1126. lwz r1,GPR1(r1)
  1127. SYNC
  1128. rfi
  1129. crit_return:
  1130. mfmsr r28 /* Disable interrupts */
  1131. li r4,0
  1132. ori r4,r4,MSR_EE
  1133. andc r28,r28,r4
  1134. SYNC /* Some chip revs need this... */
  1135. mtmsr r28
  1136. SYNC
  1137. lwz r2,_CTR(r1)
  1138. lwz r0,_LINK(r1)
  1139. mtctr r2
  1140. mtlr r0
  1141. lwz r2,_XER(r1)
  1142. lwz r0,_CCR(r1)
  1143. mtspr XER,r2
  1144. mtcrf 0xFF,r0
  1145. REST_10GPRS(3, r1)
  1146. REST_10GPRS(13, r1)
  1147. REST_8GPRS(23, r1)
  1148. REST_GPR(31, r1)
  1149. lwz r2,_NIP(r1) /* Restore environment */
  1150. lwz r0,_MSR(r1)
  1151. mtspr SPRN_CSRR0,r2
  1152. mtspr SPRN_CSRR1,r0
  1153. lwz r0,GPR0(r1)
  1154. lwz r2,GPR2(r1)
  1155. lwz r1,GPR1(r1)
  1156. SYNC
  1157. rfci
  1158. #ifdef CONFIG_440
  1159. mck_return:
  1160. mfmsr r28 /* Disable interrupts */
  1161. li r4,0
  1162. ori r4,r4,MSR_EE
  1163. andc r28,r28,r4
  1164. SYNC /* Some chip revs need this... */
  1165. mtmsr r28
  1166. SYNC
  1167. lwz r2,_CTR(r1)
  1168. lwz r0,_LINK(r1)
  1169. mtctr r2
  1170. mtlr r0
  1171. lwz r2,_XER(r1)
  1172. lwz r0,_CCR(r1)
  1173. mtspr XER,r2
  1174. mtcrf 0xFF,r0
  1175. REST_10GPRS(3, r1)
  1176. REST_10GPRS(13, r1)
  1177. REST_8GPRS(23, r1)
  1178. REST_GPR(31, r1)
  1179. lwz r2,_NIP(r1) /* Restore environment */
  1180. lwz r0,_MSR(r1)
  1181. mtspr SPRN_MCSRR0,r2
  1182. mtspr SPRN_MCSRR1,r0
  1183. lwz r0,GPR0(r1)
  1184. lwz r2,GPR2(r1)
  1185. lwz r1,GPR1(r1)
  1186. SYNC
  1187. rfmci
  1188. #endif /* CONFIG_440 */
  1189. .globl get_pvr
  1190. get_pvr:
  1191. mfspr r3, PVR
  1192. blr
  1193. /*------------------------------------------------------------------------------- */
  1194. /* Function: out16 */
  1195. /* Description: Output 16 bits */
  1196. /*------------------------------------------------------------------------------- */
  1197. .globl out16
  1198. out16:
  1199. sth r4,0x0000(r3)
  1200. blr
  1201. /*------------------------------------------------------------------------------- */
  1202. /* Function: out16r */
  1203. /* Description: Byte reverse and output 16 bits */
  1204. /*------------------------------------------------------------------------------- */
  1205. .globl out16r
  1206. out16r:
  1207. sthbrx r4,r0,r3
  1208. blr
  1209. /*------------------------------------------------------------------------------- */
  1210. /* Function: out32r */
  1211. /* Description: Byte reverse and output 32 bits */
  1212. /*------------------------------------------------------------------------------- */
  1213. .globl out32r
  1214. out32r:
  1215. stwbrx r4,r0,r3
  1216. blr
  1217. /*------------------------------------------------------------------------------- */
  1218. /* Function: in16 */
  1219. /* Description: Input 16 bits */
  1220. /*------------------------------------------------------------------------------- */
  1221. .globl in16
  1222. in16:
  1223. lhz r3,0x0000(r3)
  1224. blr
  1225. /*------------------------------------------------------------------------------- */
  1226. /* Function: in16r */
  1227. /* Description: Input 16 bits and byte reverse */
  1228. /*------------------------------------------------------------------------------- */
  1229. .globl in16r
  1230. in16r:
  1231. lhbrx r3,r0,r3
  1232. blr
  1233. /*------------------------------------------------------------------------------- */
  1234. /* Function: in32r */
  1235. /* Description: Input 32 bits and byte reverse */
  1236. /*------------------------------------------------------------------------------- */
  1237. .globl in32r
  1238. in32r:
  1239. lwbrx r3,r0,r3
  1240. blr
  1241. /*
  1242. * void relocate_code (addr_sp, gd, addr_moni)
  1243. *
  1244. * This "function" does not return, instead it continues in RAM
  1245. * after relocating the monitor code.
  1246. *
  1247. * r3 = Relocated stack pointer
  1248. * r4 = Relocated global data pointer
  1249. * r5 = Relocated text pointer
  1250. */
  1251. .globl relocate_code
  1252. relocate_code:
  1253. #if defined(CONFIG_4xx_DCACHE) || defined(CONFIG_SYS_INIT_DCACHE_CS)
  1254. /*
  1255. * We need to flush the initial global data (gd_t) before the dcache
  1256. * will be invalidated.
  1257. */
  1258. /* Save registers */
  1259. mr r9, r3
  1260. mr r10, r4
  1261. mr r11, r5
  1262. /* Flush initial global data range */
  1263. mr r3, r4
  1264. addi r4, r4, CONFIG_SYS_GBL_DATA_SIZE@l
  1265. bl flush_dcache_range
  1266. #if defined(CONFIG_SYS_INIT_DCACHE_CS)
  1267. /*
  1268. * Undo the earlier data cache set-up for the primordial stack and
  1269. * data area. First, invalidate the data cache and then disable data
  1270. * cacheability for that area. Finally, restore the EBC values, if
  1271. * any.
  1272. */
  1273. /* Invalidate the primordial stack and data area in cache */
  1274. lis r3, CONFIG_SYS_INIT_RAM_ADDR@h
  1275. ori r3, r3, CONFIG_SYS_INIT_RAM_ADDR@l
  1276. lis r4, CONFIG_SYS_INIT_RAM_END@h
  1277. ori r4, r4, CONFIG_SYS_INIT_RAM_END@l
  1278. add r4, r4, r3
  1279. bl invalidate_dcache_range
  1280. /* Disable cacheability for the region */
  1281. mfdccr r3
  1282. lis r4, ~PPC_128MB_SACR_VALUE(CONFIG_SYS_INIT_RAM_ADDR)@h
  1283. ori r4, r4, ~PPC_128MB_SACR_VALUE(CONFIG_SYS_INIT_RAM_ADDR)@l
  1284. and r3, r3, r4
  1285. mtdccr r3
  1286. /* Restore the EBC parameters */
  1287. li r3, PBxAP
  1288. mtdcr EBC0_CFGADDR, r3
  1289. lis r3, PBxAP_VAL@h
  1290. ori r3, r3, PBxAP_VAL@l
  1291. mtdcr EBC0_CFGDATA, r3
  1292. li r3, PBxCR
  1293. mtdcr EBC0_CFGADDR, r3
  1294. lis r3, PBxCR_VAL@h
  1295. ori r3, r3, PBxCR_VAL@l
  1296. mtdcr EBC0_CFGDATA, r3
  1297. #endif /* defined(CONFIG_SYS_INIT_DCACHE_CS) */
  1298. /* Restore registers */
  1299. mr r3, r9
  1300. mr r4, r10
  1301. mr r5, r11
  1302. #endif /* defined(CONFIG_4xx_DCACHE) || defined(CONFIG_SYS_INIT_DCACHE_CS) */
  1303. #ifdef CONFIG_SYS_INIT_RAM_DCACHE
  1304. /*
  1305. * Unlock the previously locked d-cache
  1306. */
  1307. msync
  1308. isync
  1309. /* set TFLOOR/NFLOOR to 0 again */
  1310. lis r6,0x0001
  1311. ori r6,r6,0xf800
  1312. mtspr SPRN_DVLIM,r6
  1313. lis r6,0x0000
  1314. ori r6,r6,0x0000
  1315. mtspr SPRN_DNV0,r6
  1316. mtspr SPRN_DNV1,r6
  1317. mtspr SPRN_DNV2,r6
  1318. mtspr SPRN_DNV3,r6
  1319. mtspr SPRN_DTV0,r6
  1320. mtspr SPRN_DTV1,r6
  1321. mtspr SPRN_DTV2,r6
  1322. mtspr SPRN_DTV3,r6
  1323. msync
  1324. isync
  1325. /* Invalidate data cache, now no longer our stack */
  1326. dccci 0,0
  1327. sync
  1328. isync
  1329. #endif /* CONFIG_SYS_INIT_RAM_DCACHE */
  1330. /*
  1331. * On some 440er platforms the cache is enabled in the first TLB (Boot-CS)
  1332. * to speed up the boot process. Now this cache needs to be disabled.
  1333. */
  1334. #if defined(CONFIG_440)
  1335. /* Clear all potential pending exceptions */
  1336. mfspr r1,SPRN_MCSR
  1337. mtspr SPRN_MCSR,r1
  1338. addi r1,r0,CONFIG_SYS_TLB_FOR_BOOT_FLASH /* Use defined TLB */
  1339. tlbre r0,r1,0x0002 /* Read contents */
  1340. ori r0,r0,0x0c00 /* Or in the inhibit, write through bit */
  1341. tlbwe r0,r1,0x0002 /* Save it out */
  1342. sync
  1343. isync
  1344. #endif /* defined(CONFIG_440) */
  1345. mr r1, r3 /* Set new stack pointer */
  1346. mr r9, r4 /* Save copy of Init Data pointer */
  1347. mr r10, r5 /* Save copy of Destination Address */
  1348. GET_GOT
  1349. mr r3, r5 /* Destination Address */
  1350. lis r4, CONFIG_SYS_MONITOR_BASE@h /* Source Address */
  1351. ori r4, r4, CONFIG_SYS_MONITOR_BASE@l
  1352. lwz r5, GOT(__init_end)
  1353. sub r5, r5, r4
  1354. li r6, L1_CACHE_BYTES /* Cache Line Size */
  1355. /*
  1356. * Fix GOT pointer:
  1357. *
  1358. * New GOT-PTR = (old GOT-PTR - CONFIG_SYS_MONITOR_BASE) + Destination Address
  1359. *
  1360. * Offset:
  1361. */
  1362. sub r15, r10, r4
  1363. /* First our own GOT */
  1364. add r12, r12, r15
  1365. /* then the one used by the C code */
  1366. add r30, r30, r15
  1367. /*
  1368. * Now relocate code
  1369. */
  1370. cmplw cr1,r3,r4
  1371. addi r0,r5,3
  1372. srwi. r0,r0,2
  1373. beq cr1,4f /* In place copy is not necessary */
  1374. beq 7f /* Protect against 0 count */
  1375. mtctr r0
  1376. bge cr1,2f
  1377. la r8,-4(r4)
  1378. la r7,-4(r3)
  1379. 1: lwzu r0,4(r8)
  1380. stwu r0,4(r7)
  1381. bdnz 1b
  1382. b 4f
  1383. 2: slwi r0,r0,2
  1384. add r8,r4,r0
  1385. add r7,r3,r0
  1386. 3: lwzu r0,-4(r8)
  1387. stwu r0,-4(r7)
  1388. bdnz 3b
  1389. /*
  1390. * Now flush the cache: note that we must start from a cache aligned
  1391. * address. Otherwise we might miss one cache line.
  1392. */
  1393. 4: cmpwi r6,0
  1394. add r5,r3,r5
  1395. beq 7f /* Always flush prefetch queue in any case */
  1396. subi r0,r6,1
  1397. andc r3,r3,r0
  1398. mr r4,r3
  1399. 5: dcbst 0,r4
  1400. add r4,r4,r6
  1401. cmplw r4,r5
  1402. blt 5b
  1403. sync /* Wait for all dcbst to complete on bus */
  1404. mr r4,r3
  1405. 6: icbi 0,r4
  1406. add r4,r4,r6
  1407. cmplw r4,r5
  1408. blt 6b
  1409. 7: sync /* Wait for all icbi to complete on bus */
  1410. isync
  1411. /*
  1412. * We are done. Do not return, instead branch to second part of board
  1413. * initialization, now running from RAM.
  1414. */
  1415. addi r0, r10, in_ram - _start + _START_OFFSET
  1416. mtlr r0
  1417. blr /* NEVER RETURNS! */
  1418. in_ram:
  1419. /*
  1420. * Relocation Function, r12 point to got2+0x8000
  1421. *
  1422. * Adjust got2 pointers, no need to check for 0, this code
  1423. * already puts a few entries in the table.
  1424. */
  1425. li r0,__got2_entries@sectoff@l
  1426. la r3,GOT(_GOT2_TABLE_)
  1427. lwz r11,GOT(_GOT2_TABLE_)
  1428. mtctr r0
  1429. sub r11,r3,r11
  1430. addi r3,r3,-4
  1431. 1: lwzu r0,4(r3)
  1432. cmpwi r0,0
  1433. beq- 2f
  1434. add r0,r0,r11
  1435. stw r0,0(r3)
  1436. 2: bdnz 1b
  1437. /*
  1438. * Now adjust the fixups and the pointers to the fixups
  1439. * in case we need to move ourselves again.
  1440. */
  1441. li r0,__fixup_entries@sectoff@l
  1442. lwz r3,GOT(_FIXUP_TABLE_)
  1443. cmpwi r0,0
  1444. mtctr r0
  1445. addi r3,r3,-4
  1446. beq 4f
  1447. 3: lwzu r4,4(r3)
  1448. lwzux r0,r4,r11
  1449. add r0,r0,r11
  1450. stw r10,0(r3)
  1451. stw r0,0(r4)
  1452. bdnz 3b
  1453. 4:
  1454. clear_bss:
  1455. /*
  1456. * Now clear BSS segment
  1457. */
  1458. lwz r3,GOT(__bss_start)
  1459. lwz r4,GOT(_end)
  1460. cmplw 0, r3, r4
  1461. beq 7f
  1462. li r0, 0
  1463. andi. r5, r4, 3
  1464. beq 6f
  1465. sub r4, r4, r5
  1466. mtctr r5
  1467. mr r5, r4
  1468. 5: stb r0, 0(r5)
  1469. addi r5, r5, 1
  1470. bdnz 5b
  1471. 6:
  1472. stw r0, 0(r3)
  1473. addi r3, r3, 4
  1474. cmplw 0, r3, r4
  1475. bne 6b
  1476. 7:
  1477. mr r3, r9 /* Init Data pointer */
  1478. mr r4, r10 /* Destination Address */
  1479. bl board_init_r
  1480. /*
  1481. * Copy exception vector code to low memory
  1482. *
  1483. * r3: dest_addr
  1484. * r7: source address, r8: end address, r9: target address
  1485. */
  1486. .globl trap_init
  1487. trap_init:
  1488. mflr r4 /* save link register */
  1489. GET_GOT
  1490. lwz r7, GOT(_start_of_vectors)
  1491. lwz r8, GOT(_end_of_vectors)
  1492. li r9, 0x100 /* reset vector always at 0x100 */
  1493. cmplw 0, r7, r8
  1494. bgelr /* return if r7>=r8 - just in case */
  1495. 1:
  1496. lwz r0, 0(r7)
  1497. stw r0, 0(r9)
  1498. addi r7, r7, 4
  1499. addi r9, r9, 4
  1500. cmplw 0, r7, r8
  1501. bne 1b
  1502. /*
  1503. * relocate `hdlr' and `int_return' entries
  1504. */
  1505. li r7, .L_MachineCheck - _start + _START_OFFSET
  1506. li r8, Alignment - _start + _START_OFFSET
  1507. 2:
  1508. bl trap_reloc
  1509. addi r7, r7, 0x100 /* next exception vector */
  1510. cmplw 0, r7, r8
  1511. blt 2b
  1512. li r7, .L_Alignment - _start + _START_OFFSET
  1513. bl trap_reloc
  1514. li r7, .L_ProgramCheck - _start + _START_OFFSET
  1515. bl trap_reloc
  1516. #ifdef CONFIG_440
  1517. li r7, .L_FPUnavailable - _start + _START_OFFSET
  1518. bl trap_reloc
  1519. li r7, .L_Decrementer - _start + _START_OFFSET
  1520. bl trap_reloc
  1521. li r7, .L_APU - _start + _START_OFFSET
  1522. bl trap_reloc
  1523. li r7, .L_InstructionTLBError - _start + _START_OFFSET
  1524. bl trap_reloc
  1525. li r7, .L_DataTLBError - _start + _START_OFFSET
  1526. bl trap_reloc
  1527. #else /* CONFIG_440 */
  1528. li r7, .L_PIT - _start + _START_OFFSET
  1529. bl trap_reloc
  1530. li r7, .L_InstructionTLBMiss - _start + _START_OFFSET
  1531. bl trap_reloc
  1532. li r7, .L_DataTLBMiss - _start + _START_OFFSET
  1533. bl trap_reloc
  1534. #endif /* CONFIG_440 */
  1535. li r7, .L_DebugBreakpoint - _start + _START_OFFSET
  1536. bl trap_reloc
  1537. #if !defined(CONFIG_440)
  1538. addi r7,r0,0x1000 /* set ME bit (Machine Exceptions) */
  1539. oris r7,r7,0x0002 /* set CE bit (Critical Exceptions) */
  1540. mtmsr r7 /* change MSR */
  1541. #else
  1542. bl __440_msr_set
  1543. b __440_msr_continue
  1544. __440_msr_set:
  1545. addi r7,r0,0x1000 /* set ME bit (Machine Exceptions) */
  1546. oris r7,r7,0x0002 /* set CE bit (Critical Exceptions) */
  1547. mtspr SPRN_SRR1,r7
  1548. mflr r7
  1549. mtspr SPRN_SRR0,r7
  1550. rfi
  1551. __440_msr_continue:
  1552. #endif
  1553. mtlr r4 /* restore link register */
  1554. blr
  1555. #if defined(CONFIG_440)
  1556. /*----------------------------------------------------------------------------+
  1557. | dcbz_area.
  1558. +----------------------------------------------------------------------------*/
  1559. function_prolog(dcbz_area)
  1560. rlwinm. r5,r4,0,27,31
  1561. rlwinm r5,r4,27,5,31
  1562. beq ..d_ra2
  1563. addi r5,r5,0x0001
  1564. ..d_ra2:mtctr r5
  1565. ..d_ag2:dcbz r0,r3
  1566. addi r3,r3,32
  1567. bdnz ..d_ag2
  1568. sync
  1569. blr
  1570. function_epilog(dcbz_area)
  1571. #endif /* CONFIG_440 */
  1572. #endif /* CONFIG_NAND_SPL */
  1573. /*------------------------------------------------------------------------------- */
  1574. /* Function: in8 */
  1575. /* Description: Input 8 bits */
  1576. /*------------------------------------------------------------------------------- */
  1577. .globl in8
  1578. in8:
  1579. lbz r3,0x0000(r3)
  1580. blr
  1581. /*------------------------------------------------------------------------------- */
  1582. /* Function: out8 */
  1583. /* Description: Output 8 bits */
  1584. /*------------------------------------------------------------------------------- */
  1585. .globl out8
  1586. out8:
  1587. stb r4,0x0000(r3)
  1588. blr
  1589. /*------------------------------------------------------------------------------- */
  1590. /* Function: out32 */
  1591. /* Description: Output 32 bits */
  1592. /*------------------------------------------------------------------------------- */
  1593. .globl out32
  1594. out32:
  1595. stw r4,0x0000(r3)
  1596. blr
  1597. /*------------------------------------------------------------------------------- */
  1598. /* Function: in32 */
  1599. /* Description: Input 32 bits */
  1600. /*------------------------------------------------------------------------------- */
  1601. .globl in32
  1602. in32:
  1603. lwz 3,0x0000(3)
  1604. blr
  1605. /**************************************************************************/
  1606. /* PPC405EP specific stuff */
  1607. /**************************************************************************/
  1608. #ifdef CONFIG_405EP
  1609. ppc405ep_init:
  1610. #ifdef CONFIG_BUBINGA
  1611. /*
  1612. * Initialize EBC chip selects 1 & 4 and GPIO pins (for alternate
  1613. * function) to support FPGA and NVRAM accesses below.
  1614. */
  1615. lis r3,GPIO0_OSRH@h /* config GPIO output select */
  1616. ori r3,r3,GPIO0_OSRH@l
  1617. lis r4,CONFIG_SYS_GPIO0_OSRH@h
  1618. ori r4,r4,CONFIG_SYS_GPIO0_OSRH@l
  1619. stw r4,0(r3)
  1620. lis r3,GPIO0_OSRL@h
  1621. ori r3,r3,GPIO0_OSRL@l
  1622. lis r4,CONFIG_SYS_GPIO0_OSRL@h
  1623. ori r4,r4,CONFIG_SYS_GPIO0_OSRL@l
  1624. stw r4,0(r3)
  1625. lis r3,GPIO0_ISR1H@h /* config GPIO input select */
  1626. ori r3,r3,GPIO0_ISR1H@l
  1627. lis r4,CONFIG_SYS_GPIO0_ISR1H@h
  1628. ori r4,r4,CONFIG_SYS_GPIO0_ISR1H@l
  1629. stw r4,0(r3)
  1630. lis r3,GPIO0_ISR1L@h
  1631. ori r3,r3,GPIO0_ISR1L@l
  1632. lis r4,CONFIG_SYS_GPIO0_ISR1L@h
  1633. ori r4,r4,CONFIG_SYS_GPIO0_ISR1L@l
  1634. stw r4,0(r3)
  1635. lis r3,GPIO0_TSRH@h /* config GPIO three-state select */
  1636. ori r3,r3,GPIO0_TSRH@l
  1637. lis r4,CONFIG_SYS_GPIO0_TSRH@h
  1638. ori r4,r4,CONFIG_SYS_GPIO0_TSRH@l
  1639. stw r4,0(r3)
  1640. lis r3,GPIO0_TSRL@h
  1641. ori r3,r3,GPIO0_TSRL@l
  1642. lis r4,CONFIG_SYS_GPIO0_TSRL@h
  1643. ori r4,r4,CONFIG_SYS_GPIO0_TSRL@l
  1644. stw r4,0(r3)
  1645. lis r3,GPIO0_TCR@h /* config GPIO driver output enables */
  1646. ori r3,r3,GPIO0_TCR@l
  1647. lis r4,CONFIG_SYS_GPIO0_TCR@h
  1648. ori r4,r4,CONFIG_SYS_GPIO0_TCR@l
  1649. stw r4,0(r3)
  1650. li r3,PB1AP /* program EBC bank 1 for RTC access */
  1651. mtdcr EBC0_CFGADDR,r3
  1652. lis r3,CONFIG_SYS_EBC_PB1AP@h
  1653. ori r3,r3,CONFIG_SYS_EBC_PB1AP@l
  1654. mtdcr EBC0_CFGDATA,r3
  1655. li r3,PB1CR
  1656. mtdcr EBC0_CFGADDR,r3
  1657. lis r3,CONFIG_SYS_EBC_PB1CR@h
  1658. ori r3,r3,CONFIG_SYS_EBC_PB1CR@l
  1659. mtdcr EBC0_CFGDATA,r3
  1660. li r3,PB1AP /* program EBC bank 1 for RTC access */
  1661. mtdcr EBC0_CFGADDR,r3
  1662. lis r3,CONFIG_SYS_EBC_PB1AP@h
  1663. ori r3,r3,CONFIG_SYS_EBC_PB1AP@l
  1664. mtdcr EBC0_CFGDATA,r3
  1665. li r3,PB1CR
  1666. mtdcr EBC0_CFGADDR,r3
  1667. lis r3,CONFIG_SYS_EBC_PB1CR@h
  1668. ori r3,r3,CONFIG_SYS_EBC_PB1CR@l
  1669. mtdcr EBC0_CFGDATA,r3
  1670. li r3,PB4AP /* program EBC bank 4 for FPGA access */
  1671. mtdcr EBC0_CFGADDR,r3
  1672. lis r3,CONFIG_SYS_EBC_PB4AP@h
  1673. ori r3,r3,CONFIG_SYS_EBC_PB4AP@l
  1674. mtdcr EBC0_CFGDATA,r3
  1675. li r3,PB4CR
  1676. mtdcr EBC0_CFGADDR,r3
  1677. lis r3,CONFIG_SYS_EBC_PB4CR@h
  1678. ori r3,r3,CONFIG_SYS_EBC_PB4CR@l
  1679. mtdcr EBC0_CFGDATA,r3
  1680. #endif
  1681. /*
  1682. !-----------------------------------------------------------------------
  1683. ! Check to see if chip is in bypass mode.
  1684. ! If so, write stored CPC0_PLLMR0 and CPC0_PLLMR1 values and perform a
  1685. ! CPU reset Otherwise, skip this step and keep going.
  1686. ! Note: Running BIOS in bypass mode is not supported since PLB speed
  1687. ! will not be fast enough for the SDRAM (min 66MHz)
  1688. !-----------------------------------------------------------------------
  1689. */
  1690. mfdcr r5, CPC0_PLLMR1
  1691. rlwinm r4,r5,1,0x1 /* get system clock source (SSCS) */
  1692. cmpi cr0,0,r4,0x1
  1693. beq pll_done /* if SSCS =b'1' then PLL has */
  1694. /* already been set */
  1695. /* and CPU has been reset */
  1696. /* so skip to next section */
  1697. #ifdef CONFIG_BUBINGA
  1698. /*
  1699. !-----------------------------------------------------------------------
  1700. ! Read NVRAM to get value to write in PLLMR.
  1701. ! If value has not been correctly saved, write default value
  1702. ! Default config values (assuming on-board 33MHz SYS_CLK) are above.
  1703. ! See CPU_DEFAULT_200 and CPU_DEFAULT_266 above.
  1704. !
  1705. ! WARNING: This code assumes the first three words in the nvram_t
  1706. ! structure in openbios.h. Changing the beginning of
  1707. ! the structure will break this code.
  1708. !
  1709. !-----------------------------------------------------------------------
  1710. */
  1711. addis r3,0,NVRAM_BASE@h
  1712. addi r3,r3,NVRAM_BASE@l
  1713. lwz r4, 0(r3)
  1714. addis r5,0,NVRVFY1@h
  1715. addi r5,r5,NVRVFY1@l
  1716. cmp cr0,0,r4,r5 /* Compare 1st NVRAM Magic number*/
  1717. bne ..no_pllset
  1718. addi r3,r3,4
  1719. lwz r4, 0(r3)
  1720. addis r5,0,NVRVFY2@h
  1721. addi r5,r5,NVRVFY2@l
  1722. cmp cr0,0,r4,r5 /* Compare 2 NVRAM Magic number */
  1723. bne ..no_pllset
  1724. addi r3,r3,8 /* Skip over conf_size */
  1725. lwz r4, 4(r3) /* Load PLLMR1 value from NVRAM */
  1726. lwz r3, 0(r3) /* Load PLLMR0 value from NVRAM */
  1727. rlwinm r5,r4,1,0x1 /* get system clock source (SSCS) */
  1728. cmpi cr0,0,r5,1 /* See if PLL is locked */
  1729. beq pll_write
  1730. ..no_pllset:
  1731. #endif /* CONFIG_BUBINGA */
  1732. #ifdef CONFIG_TAIHU
  1733. mfdcr r4, CPC0_BOOT
  1734. andi. r5, r4, CPC0_BOOT_SEP@l
  1735. bne strap_1 /* serial eeprom present */
  1736. addis r5,0,CPLD_REG0_ADDR@h
  1737. ori r5,r5,CPLD_REG0_ADDR@l
  1738. andi. r5, r5, 0x10
  1739. bne _pci_66mhz
  1740. #endif /* CONFIG_TAIHU */
  1741. #if defined(CONFIG_ZEUS)
  1742. mfdcr r4, CPC0_BOOT
  1743. andi. r5, r4, CPC0_BOOT_SEP@l
  1744. bne strap_1 /* serial eeprom present */
  1745. lis r3,0x0000
  1746. addi r3,r3,0x3030
  1747. lis r4,0x8042
  1748. addi r4,r4,0x223e
  1749. b 1f
  1750. strap_1:
  1751. mfdcr r3, CPC0_PLLMR0
  1752. mfdcr r4, CPC0_PLLMR1
  1753. b 1f
  1754. #endif
  1755. addis r3,0,PLLMR0_DEFAULT@h /* PLLMR0 default value */
  1756. ori r3,r3,PLLMR0_DEFAULT@l /* */
  1757. addis r4,0,PLLMR1_DEFAULT@h /* PLLMR1 default value */
  1758. ori r4,r4,PLLMR1_DEFAULT@l /* */
  1759. #ifdef CONFIG_TAIHU
  1760. b 1f
  1761. _pci_66mhz:
  1762. addis r3,0,PLLMR0_DEFAULT_PCI66@h
  1763. ori r3,r3,PLLMR0_DEFAULT_PCI66@l
  1764. addis r4,0,PLLMR1_DEFAULT_PCI66@h
  1765. ori r4,r4,PLLMR1_DEFAULT_PCI66@l
  1766. b 1f
  1767. strap_1:
  1768. mfdcr r3, CPC0_PLLMR0
  1769. mfdcr r4, CPC0_PLLMR1
  1770. #endif /* CONFIG_TAIHU */
  1771. 1:
  1772. b pll_write /* Write the CPC0_PLLMR with new value */
  1773. pll_done:
  1774. /*
  1775. !-----------------------------------------------------------------------
  1776. ! Clear Soft Reset Register
  1777. ! This is needed to enable PCI if not booting from serial EPROM
  1778. !-----------------------------------------------------------------------
  1779. */
  1780. addi r3, 0, 0x0
  1781. mtdcr CPC0_SRR, r3
  1782. addis r3,0,0x0010
  1783. mtctr r3
  1784. pci_wait:
  1785. bdnz pci_wait
  1786. blr /* return to main code */
  1787. /*
  1788. !-----------------------------------------------------------------------------
  1789. ! Function: pll_write
  1790. ! Description: Updates the value of the CPC0_PLLMR according to CMOS27E documentation
  1791. ! That is:
  1792. ! 1. Pll is first disabled (de-activated by putting in bypass mode)
  1793. ! 2. PLL is reset
  1794. ! 3. Clock dividers are set while PLL is held in reset and bypassed
  1795. ! 4. PLL Reset is cleared
  1796. ! 5. Wait 100us for PLL to lock
  1797. ! 6. A core reset is performed
  1798. ! Input: r3 = Value to write to CPC0_PLLMR0
  1799. ! Input: r4 = Value to write to CPC0_PLLMR1
  1800. ! Output r3 = none
  1801. !-----------------------------------------------------------------------------
  1802. */
  1803. .globl pll_write
  1804. pll_write:
  1805. mfdcr r5, CPC0_UCR
  1806. andis. r5,r5,0xFFFF
  1807. ori r5,r5,0x0101 /* Stop the UART clocks */
  1808. mtdcr CPC0_UCR,r5 /* Before changing PLL */
  1809. mfdcr r5, CPC0_PLLMR1
  1810. rlwinm r5,r5,0,0x7FFFFFFF /* Disable PLL */
  1811. mtdcr CPC0_PLLMR1,r5
  1812. oris r5,r5,0x4000 /* Set PLL Reset */
  1813. mtdcr CPC0_PLLMR1,r5
  1814. mtdcr CPC0_PLLMR0,r3 /* Set clock dividers */
  1815. rlwinm r5,r4,0,0x3FFFFFFF /* Reset & Bypass new PLL dividers */
  1816. oris r5,r5,0x4000 /* Set PLL Reset */
  1817. mtdcr CPC0_PLLMR1,r5 /* Set clock dividers */
  1818. rlwinm r5,r5,0,0xBFFFFFFF /* Clear PLL Reset */
  1819. mtdcr CPC0_PLLMR1,r5
  1820. /*
  1821. ! Wait min of 100us for PLL to lock.
  1822. ! See CMOS 27E databook for more info.
  1823. ! At 200MHz, that means waiting 20,000 instructions
  1824. */
  1825. addi r3,0,20000 /* 2000 = 0x4e20 */
  1826. mtctr r3
  1827. pll_wait:
  1828. bdnz pll_wait
  1829. oris r5,r5,0x8000 /* Enable PLL */
  1830. mtdcr CPC0_PLLMR1,r5 /* Engage */
  1831. /*
  1832. * Reset CPU to guarantee timings are OK
  1833. * Not sure if this is needed...
  1834. */
  1835. addis r3,0,0x1000
  1836. mtspr SPRN_DBCR0,r3 /* This will cause a CPU core reset, and */
  1837. /* execution will continue from the poweron */
  1838. /* vector of 0xfffffffc */
  1839. #endif /* CONFIG_405EP */
  1840. #if defined(CONFIG_440)
  1841. /*----------------------------------------------------------------------------+
  1842. | mttlb3.
  1843. +----------------------------------------------------------------------------*/
  1844. function_prolog(mttlb3)
  1845. TLBWE(4,3,2)
  1846. blr
  1847. function_epilog(mttlb3)
  1848. /*----------------------------------------------------------------------------+
  1849. | mftlb3.
  1850. +----------------------------------------------------------------------------*/
  1851. function_prolog(mftlb3)
  1852. TLBRE(3,3,2)
  1853. blr
  1854. function_epilog(mftlb3)
  1855. /*----------------------------------------------------------------------------+
  1856. | mttlb2.
  1857. +----------------------------------------------------------------------------*/
  1858. function_prolog(mttlb2)
  1859. TLBWE(4,3,1)
  1860. blr
  1861. function_epilog(mttlb2)
  1862. /*----------------------------------------------------------------------------+
  1863. | mftlb2.
  1864. +----------------------------------------------------------------------------*/
  1865. function_prolog(mftlb2)
  1866. TLBRE(3,3,1)
  1867. blr
  1868. function_epilog(mftlb2)
  1869. /*----------------------------------------------------------------------------+
  1870. | mttlb1.
  1871. +----------------------------------------------------------------------------*/
  1872. function_prolog(mttlb1)
  1873. TLBWE(4,3,0)
  1874. blr
  1875. function_epilog(mttlb1)
  1876. /*----------------------------------------------------------------------------+
  1877. | mftlb1.
  1878. +----------------------------------------------------------------------------*/
  1879. function_prolog(mftlb1)
  1880. TLBRE(3,3,0)
  1881. blr
  1882. function_epilog(mftlb1)
  1883. #endif /* CONFIG_440 */
  1884. #if defined(CONFIG_NAND_SPL)
  1885. /*
  1886. * void nand_boot_relocate(dst, src, bytes)
  1887. *
  1888. * r3 = Destination address to copy code to (in SDRAM)
  1889. * r4 = Source address to copy code from
  1890. * r5 = size to copy in bytes
  1891. */
  1892. nand_boot_relocate:
  1893. mr r6,r3
  1894. mr r7,r4
  1895. mflr r8
  1896. /*
  1897. * Copy SPL from icache into SDRAM
  1898. */
  1899. subi r3,r3,4
  1900. subi r4,r4,4
  1901. srwi r5,r5,2
  1902. mtctr r5
  1903. ..spl_loop:
  1904. lwzu r0,4(r4)
  1905. stwu r0,4(r3)
  1906. bdnz ..spl_loop
  1907. /*
  1908. * Calculate "corrected" link register, so that we "continue"
  1909. * in execution in destination range
  1910. */
  1911. sub r3,r7,r6 /* r3 = src - dst */
  1912. sub r8,r8,r3 /* r8 = link-reg - (src - dst) */
  1913. mtlr r8
  1914. blr
  1915. nand_boot_common:
  1916. /*
  1917. * First initialize SDRAM. It has to be available *before* calling
  1918. * nand_boot().
  1919. */
  1920. lis r3,CONFIG_SYS_SDRAM_BASE@h
  1921. ori r3,r3,CONFIG_SYS_SDRAM_BASE@l
  1922. bl initdram
  1923. /*
  1924. * Now copy the 4k SPL code into SDRAM and continue execution
  1925. * from there.
  1926. */
  1927. lis r3,CONFIG_SYS_NAND_BOOT_SPL_DST@h
  1928. ori r3,r3,CONFIG_SYS_NAND_BOOT_SPL_DST@l
  1929. lis r4,CONFIG_SYS_NAND_BOOT_SPL_SRC@h
  1930. ori r4,r4,CONFIG_SYS_NAND_BOOT_SPL_SRC@l
  1931. lis r5,CONFIG_SYS_NAND_BOOT_SPL_SIZE@h
  1932. ori r5,r5,CONFIG_SYS_NAND_BOOT_SPL_SIZE@l
  1933. bl nand_boot_relocate
  1934. /*
  1935. * We're running from SDRAM now!!!
  1936. *
  1937. * It is necessary for 4xx systems to relocate from running at
  1938. * the original location (0xfffffxxx) to somewhere else (SDRAM
  1939. * preferably). This is because CS0 needs to be reconfigured for
  1940. * NAND access. And we can't reconfigure this CS when currently
  1941. * "running" from it.
  1942. */
  1943. /*
  1944. * Finally call nand_boot() to load main NAND U-Boot image from
  1945. * NAND and jump to it.
  1946. */
  1947. bl nand_boot /* will not return */
  1948. #endif /* CONFIG_NAND_SPL */