blob: 09a02d771c2a5d48cfcce822ed11370a43d28430 [file] [log] [blame]
wdenk0442ed82002-11-03 10:24:00 +00001/*
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>
Stefan Roese3cb86f32007-03-24 15:45:34 +01005 * Copyright (C) 2007 Stefan Roese <sr@denx.de>, DENX Software Engineering
Grant Ericksonc821b5f2008-05-22 14:44:14 -07006 * Copyright (c) 2008 Nuovation System Designs, LLC
7 * Grant Erickson <gerickson@nuovations.com>
wdenk0442ed82002-11-03 10:24:00 +00008 *
Wolfgang Denk1b387ef2013-09-17 11:24:06 +02009 * SPDX-License-Identifier: GPL-2.0 IBM-pibs
Wolfgang Denk83b4cfa2007-06-20 18:14:24 +020010 */
wdenk0442ed82002-11-03 10:24:00 +000011
Stefan Roesef7b548a2010-11-26 15:43:17 +010012/*
13 * Startup code for IBM/AMCC PowerPC 4xx (PPC4xx) based boards
wdenk0442ed82002-11-03 10:24:00 +000014 *
Stefan Roesef7b548a2010-11-26 15:43:17 +010015 * The following description only applies to the NOR flash style booting.
16 * NAND booting is different. For more details about NAND booting on 4xx
17 * take a look at doc/README.nand-boot-ppc440.
wdenk0442ed82002-11-03 10:24:00 +000018 *
Stefan Roesef7b548a2010-11-26 15:43:17 +010019 * The CPU starts at address 0xfffffffc (last word in the address space).
20 * The U-Boot image therefore has to be located in the "upper" area of the
21 * flash (e.g. 512MiB - 0xfff80000 ... 0xffffffff). The default value for
22 * the boot chip-select (CS0) is quite big and covers this area. On the
23 * 405EX this is for example 0xffe00000 ... 0xffffffff. U-Boot will
24 * reconfigure this CS0 (and other chip-selects as well when configured
25 * this way) in the boot process to the "correct" values matching the
26 * board layout.
wdenk0442ed82002-11-03 10:24:00 +000027 */
Stefan Roesef7b548a2010-11-26 15:43:17 +010028
Wolfgang Denk25ddd1f2010-10-26 14:34:52 +020029#include <asm-offsets.h>
wdenk0442ed82002-11-03 10:24:00 +000030#include <config.h>
Stefan Roeseb36df562010-09-09 19:18:00 +020031#include <asm/ppc4xx.h>
wdenk0442ed82002-11-03 10:24:00 +000032#include <version.h>
33
wdenk0442ed82002-11-03 10:24:00 +000034#include <ppc_asm.tmpl>
35#include <ppc_defs.h>
36
37#include <asm/cache.h>
38#include <asm/mmu.h>
Dave Mitchellb14ca4b2008-11-20 14:00:49 -060039#include <asm/ppc4xx-isram.h>
wdenk0442ed82002-11-03 10:24:00 +000040
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020041#ifdef CONFIG_SYS_INIT_DCACHE_CS
42# if (CONFIG_SYS_INIT_DCACHE_CS == 0)
Stefan Roesed1c3b272009-09-09 16:25:29 +020043# define PBxAP PB1AP
44# define PBxCR PB0CR
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020045# if (defined(CONFIG_SYS_EBC_PB0AP) && defined(CONFIG_SYS_EBC_PB0CR))
46# define PBxAP_VAL CONFIG_SYS_EBC_PB0AP
47# define PBxCR_VAL CONFIG_SYS_EBC_PB0CR
Grant Ericksonc821b5f2008-05-22 14:44:14 -070048# endif
wdenk0442ed82002-11-03 10:24:00 +000049# endif
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020050# if (CONFIG_SYS_INIT_DCACHE_CS == 1)
Stefan Roesed1c3b272009-09-09 16:25:29 +020051# define PBxAP PB1AP
52# define PBxCR PB1CR
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020053# if (defined(CONFIG_SYS_EBC_PB1AP) && defined(CONFIG_SYS_EBC_PB1CR))
54# define PBxAP_VAL CONFIG_SYS_EBC_PB1AP
55# define PBxCR_VAL CONFIG_SYS_EBC_PB1CR
Grant Ericksonc821b5f2008-05-22 14:44:14 -070056# endif
wdenk0442ed82002-11-03 10:24:00 +000057# endif
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020058# if (CONFIG_SYS_INIT_DCACHE_CS == 2)
Stefan Roesed1c3b272009-09-09 16:25:29 +020059# define PBxAP PB2AP
60# define PBxCR PB2CR
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020061# if (defined(CONFIG_SYS_EBC_PB2AP) && defined(CONFIG_SYS_EBC_PB2CR))
62# define PBxAP_VAL CONFIG_SYS_EBC_PB2AP
63# define PBxCR_VAL CONFIG_SYS_EBC_PB2CR
Grant Ericksonc821b5f2008-05-22 14:44:14 -070064# endif
wdenk0442ed82002-11-03 10:24:00 +000065# endif
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020066# if (CONFIG_SYS_INIT_DCACHE_CS == 3)
Stefan Roesed1c3b272009-09-09 16:25:29 +020067# define PBxAP PB3AP
68# define PBxCR PB3CR
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020069# if (defined(CONFIG_SYS_EBC_PB3AP) && defined(CONFIG_SYS_EBC_PB3CR))
70# define PBxAP_VAL CONFIG_SYS_EBC_PB3AP
71# define PBxCR_VAL CONFIG_SYS_EBC_PB3CR
Grant Ericksonc821b5f2008-05-22 14:44:14 -070072# endif
wdenk0442ed82002-11-03 10:24:00 +000073# endif
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020074# if (CONFIG_SYS_INIT_DCACHE_CS == 4)
Stefan Roesed1c3b272009-09-09 16:25:29 +020075# define PBxAP PB4AP
76# define PBxCR PB4CR
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020077# if (defined(CONFIG_SYS_EBC_PB4AP) && defined(CONFIG_SYS_EBC_PB4CR))
78# define PBxAP_VAL CONFIG_SYS_EBC_PB4AP
79# define PBxCR_VAL CONFIG_SYS_EBC_PB4CR
Grant Ericksonc821b5f2008-05-22 14:44:14 -070080# endif
wdenk0442ed82002-11-03 10:24:00 +000081# endif
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020082# if (CONFIG_SYS_INIT_DCACHE_CS == 5)
Stefan Roesed1c3b272009-09-09 16:25:29 +020083# define PBxAP PB5AP
84# define PBxCR PB5CR
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020085# if (defined(CONFIG_SYS_EBC_PB5AP) && defined(CONFIG_SYS_EBC_PB5CR))
86# define PBxAP_VAL CONFIG_SYS_EBC_PB5AP
87# define PBxCR_VAL CONFIG_SYS_EBC_PB5CR
Grant Ericksonc821b5f2008-05-22 14:44:14 -070088# endif
wdenk0442ed82002-11-03 10:24:00 +000089# endif
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020090# if (CONFIG_SYS_INIT_DCACHE_CS == 6)
Stefan Roesed1c3b272009-09-09 16:25:29 +020091# define PBxAP PB6AP
92# define PBxCR PB6CR
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020093# if (defined(CONFIG_SYS_EBC_PB6AP) && defined(CONFIG_SYS_EBC_PB6CR))
94# define PBxAP_VAL CONFIG_SYS_EBC_PB6AP
95# define PBxCR_VAL CONFIG_SYS_EBC_PB6CR
Grant Ericksonc821b5f2008-05-22 14:44:14 -070096# endif
wdenk0442ed82002-11-03 10:24:00 +000097# endif
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020098# if (CONFIG_SYS_INIT_DCACHE_CS == 7)
Stefan Roesed1c3b272009-09-09 16:25:29 +020099# define PBxAP PB7AP
100# define PBxCR PB7CR
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200101# if (defined(CONFIG_SYS_EBC_PB7AP) && defined(CONFIG_SYS_EBC_PB7CR))
102# define PBxAP_VAL CONFIG_SYS_EBC_PB7AP
103# define PBxCR_VAL CONFIG_SYS_EBC_PB7CR
Grant Ericksonc821b5f2008-05-22 14:44:14 -0700104# endif
105# endif
106# ifndef PBxAP_VAL
107# define PBxAP_VAL 0
108# endif
109# ifndef PBxCR_VAL
110# define PBxCR_VAL 0
111# endif
112/*
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200113 * Memory Bank x (nothingness) initialization CONFIG_SYS_INIT_RAM_ADDR + 64 MiB
Grant Ericksonc821b5f2008-05-22 14:44:14 -0700114 * used as temporary stack pointer for the primordial stack
115 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200116# ifndef CONFIG_SYS_INIT_DCACHE_PBxAR
117# define CONFIG_SYS_INIT_DCACHE_PBxAR (EBC_BXAP_BME_DISABLED | \
Grant Ericksonc821b5f2008-05-22 14:44:14 -0700118 EBC_BXAP_TWT_ENCODE(7) | \
119 EBC_BXAP_BCE_DISABLE | \
120 EBC_BXAP_BCT_2TRANS | \
121 EBC_BXAP_CSN_ENCODE(0) | \
122 EBC_BXAP_OEN_ENCODE(0) | \
123 EBC_BXAP_WBN_ENCODE(0) | \
124 EBC_BXAP_WBF_ENCODE(0) | \
125 EBC_BXAP_TH_ENCODE(2) | \
126 EBC_BXAP_RE_DISABLED | \
127 EBC_BXAP_SOR_NONDELAYED | \
128 EBC_BXAP_BEM_WRITEONLY | \
129 EBC_BXAP_PEN_DISABLED)
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200130# endif /* CONFIG_SYS_INIT_DCACHE_PBxAR */
131# ifndef CONFIG_SYS_INIT_DCACHE_PBxCR
132# define CONFIG_SYS_INIT_DCACHE_PBxCR (EBC_BXCR_BAS_ENCODE(CONFIG_SYS_INIT_RAM_ADDR) | \
Grant Ericksonc821b5f2008-05-22 14:44:14 -0700133 EBC_BXCR_BS_64MB | \
134 EBC_BXCR_BU_RW | \
135 EBC_BXCR_BW_16BIT)
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200136# endif /* CONFIG_SYS_INIT_DCACHE_PBxCR */
137# ifndef CONFIG_SYS_INIT_RAM_PATTERN
138# define CONFIG_SYS_INIT_RAM_PATTERN 0xDEADDEAD
wdenk0442ed82002-11-03 10:24:00 +0000139# endif
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200140#endif /* CONFIG_SYS_INIT_DCACHE_CS */
wdenk0442ed82002-11-03 10:24:00 +0000141
Wolfgang Denk553f0982010-10-26 13:32:32 +0200142#if (defined(CONFIG_SYS_INIT_RAM_DCACHE) && (CONFIG_SYS_INIT_RAM_SIZE > (4 << 10)))
143#error Only 4k of init-ram is supported - please adjust CONFIG_SYS_INIT_RAM_SIZE!
Stefan Roese28d77d92008-01-30 14:48:28 +0100144#endif
145
Grant Ericksonc821b5f2008-05-22 14:44:14 -0700146/*
147 * Unless otherwise overriden, enable two 128MB cachable instruction regions
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200148 * at CONFIG_SYS_SDRAM_BASE and another 128MB cacheable instruction region covering
149 * NOR flash at CONFIG_SYS_FLASH_BASE. Disable all cacheable data regions.
Grant Ericksonc821b5f2008-05-22 14:44:14 -0700150 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200151#if !defined(CONFIG_SYS_FLASH_BASE)
Stefan Roese64852d02008-06-02 14:35:44 +0200152/* If not already defined, set it to the "last" 128MByte region */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200153# define CONFIG_SYS_FLASH_BASE 0xf8000000
Stefan Roese64852d02008-06-02 14:35:44 +0200154#endif
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200155#if !defined(CONFIG_SYS_ICACHE_SACR_VALUE)
156# define CONFIG_SYS_ICACHE_SACR_VALUE \
157 (PPC_128MB_SACR_VALUE(CONFIG_SYS_SDRAM_BASE + ( 0 << 20)) | \
158 PPC_128MB_SACR_VALUE(CONFIG_SYS_SDRAM_BASE + (128 << 20)) | \
159 PPC_128MB_SACR_VALUE(CONFIG_SYS_FLASH_BASE))
160#endif /* !defined(CONFIG_SYS_ICACHE_SACR_VALUE) */
Grant Ericksonc821b5f2008-05-22 14:44:14 -0700161
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200162#if !defined(CONFIG_SYS_DCACHE_SACR_VALUE)
163# define CONFIG_SYS_DCACHE_SACR_VALUE \
Grant Ericksonc821b5f2008-05-22 14:44:14 -0700164 (0x00000000)
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200165#endif /* !defined(CONFIG_SYS_DCACHE_SACR_VALUE) */
Grant Ericksonc821b5f2008-05-22 14:44:14 -0700166
Stefan Roese4978e602010-05-27 16:45:20 +0200167#if !defined(CONFIG_SYS_TLB_FOR_BOOT_FLASH)
168#define CONFIG_SYS_TLB_FOR_BOOT_FLASH 0 /* use TLB 0 as default */
169#endif
170
Wolfgang Denk83b4cfa2007-06-20 18:14:24 +0200171#define function_prolog(func_name) .text; \
Stefan Roesecf959c72007-06-01 15:27:11 +0200172 .align 2; \
173 .globl func_name; \
174 func_name:
Wolfgang Denk83b4cfa2007-06-20 18:14:24 +0200175#define function_epilog(func_name) .type func_name,@function; \
Stefan Roesecf959c72007-06-01 15:27:11 +0200176 .size func_name,.-func_name
177
wdenk0442ed82002-11-03 10:24:00 +0000178/* We don't want the MMU yet.
179*/
180#undef MSR_KERNEL
181#define MSR_KERNEL ( MSR_ME ) /* Machine Check */
182
183
184 .extern ext_bus_cntlr_init
wdenk0442ed82002-11-03 10:24:00 +0000185
186/*
187 * Set up GOT: Global Offset Table
188 *
Joakim Tjernlund0f8aa152010-01-19 14:41:56 +0100189 * Use r12 to access the GOT
wdenk0442ed82002-11-03 10:24:00 +0000190 */
Stefan Roese345b77b2014-03-04 15:34:35 +0100191#if !defined(CONFIG_SPL_BUILD)
wdenk0442ed82002-11-03 10:24:00 +0000192 START_GOT
193 GOT_ENTRY(_GOT2_TABLE_)
194 GOT_ENTRY(_FIXUP_TABLE_)
195
196 GOT_ENTRY(_start)
197 GOT_ENTRY(_start_of_vectors)
198 GOT_ENTRY(_end_of_vectors)
199 GOT_ENTRY(transfer_to_handler)
200
wdenk3b57fe02003-05-30 12:48:29 +0000201 GOT_ENTRY(__init_end)
Simon Glass3929fb02013-03-14 06:54:53 +0000202 GOT_ENTRY(__bss_end)
wdenk5d232d02003-05-22 22:52:13 +0000203 GOT_ENTRY(__bss_start)
wdenk0442ed82002-11-03 10:24:00 +0000204 END_GOT
Stefan Roese345b77b2014-03-04 15:34:35 +0100205#endif /* CONFIG_SPL_BUILD */
wdenk0442ed82002-11-03 10:24:00 +0000206
Ricardo Ribalda Delgadod20b9992010-12-07 14:27:56 +0100207#if defined(CONFIG_SYS_RAMBOOT) || defined(CONFIG_BOOT_FROM_XMD)
Stefan Roesed8731332009-05-11 13:46:14 +0200208 /*
209 * 4xx RAM-booting U-Boot image is started from offset 0
210 */
211 .text
212 bl _start_440
213#endif
214
Stefan Roese98f99e92013-04-02 10:37:04 +0200215#if defined(CONFIG_SPL) && !defined(CONFIG_SPL_BUILD)
216 /*
217 * This is the entry of the real U-Boot from a board port
218 * that supports SPL booting on the PPC4xx. We only need
219 * to call board_init_f() here. Everything else has already
220 * been done in the SPL u-boot version.
221 */
222 GET_GOT /* initialize GOT access */
223 bl board_init_f /* run 1st part of board init code (in Flash)*/
224 /* NOTREACHED - board_init_f() does not return */
225#endif
226
wdenk0442ed82002-11-03 10:24:00 +0000227/*
228 * 440 Startup -- on reset only the top 4k of the effective
229 * address space is mapped in by an entry in the instruction
230 * and data shadow TLB. The .bootpg section is located in the
231 * top 4k & does only what's necessary to map in the the rest
232 * of the boot rom. Once the boot rom is mapped in we can
233 * proceed with normal startup.
234 *
235 * NOTE: CS0 only covers the top 2MB of the effective address
236 * space after reset.
237 */
238
239#if defined(CONFIG_440)
240 .section .bootpg,"ax"
241 .globl _start_440
242
243/**************************************************************************/
244_start_440:
Wolfgang Denk511d0c72006-10-09 00:42:01 +0200245 /*--------------------------------------------------------------------+
246 | 440EPX BUP Change - Hardware team request
247 +--------------------------------------------------------------------*/
Stefan Roese887e2ec2006-09-07 11:51:23 +0200248#if defined(CONFIG_440EPX) || defined(CONFIG_440GRX)
249 sync
250 nop
251 nop
252#endif
Marian Balakowicz6c5879f2006-06-30 16:30:46 +0200253 /*----------------------------------------------------------------+
254 | Core bug fix. Clear the esr
255 +-----------------------------------------------------------------*/
Marian Balakowiczedd6cf22006-07-06 21:17:24 +0200256 li r0,0
Matthias Fuchs58ea1422009-07-22 17:27:56 +0200257 mtspr SPRN_ESR,r0
wdenk0442ed82002-11-03 10:24:00 +0000258 /*----------------------------------------------------------------*/
259 /* Clear and set up some registers. */
260 /*----------------------------------------------------------------*/
Wolfgang Denkf901a832005-08-06 01:42:58 +0200261 iccci r0,r0 /* NOTE: operands not used for 440 */
262 dccci r0,r0 /* NOTE: operands not used for 440 */
wdenk0442ed82002-11-03 10:24:00 +0000263 sync
264 li r0,0
Matthias Fuchs58ea1422009-07-22 17:27:56 +0200265 mtspr SPRN_SRR0,r0
266 mtspr SPRN_SRR1,r0
267 mtspr SPRN_CSRR0,r0
268 mtspr SPRN_CSRR1,r0
Stefan Roese887e2ec2006-09-07 11:51:23 +0200269 /* NOTE: 440GX adds machine check status regs */
270#if defined(CONFIG_440) && !defined(CONFIG_440GP)
Matthias Fuchs58ea1422009-07-22 17:27:56 +0200271 mtspr SPRN_MCSRR0,r0
272 mtspr SPRN_MCSRR1,r0
273 mfspr r1,SPRN_MCSR
274 mtspr SPRN_MCSR,r1
wdenkba56f622004-02-06 23:19:44 +0000275#endif
Stefan Roese20532832006-11-22 13:20:50 +0100276
277 /*----------------------------------------------------------------*/
278 /* CCR0 init */
279 /*----------------------------------------------------------------*/
280 /* Disable store gathering & broadcast, guarantee inst/data
281 * cache block touch, force load/store alignment
282 * (see errata 1.12: 440_33)
283 */
284 lis r1,0x0030 /* store gathering & broadcast disable */
285 ori r1,r1,0x6000 /* cache touch */
Matthias Fuchs58ea1422009-07-22 17:27:56 +0200286 mtspr SPRN_CCR0,r1
Stefan Roese20532832006-11-22 13:20:50 +0100287
wdenk0442ed82002-11-03 10:24:00 +0000288 /*----------------------------------------------------------------*/
289 /* Initialize debug */
290 /*----------------------------------------------------------------*/
Matthias Fuchs58ea1422009-07-22 17:27:56 +0200291 mfspr r1,SPRN_DBCR0
Stefan Roese887e2ec2006-09-07 11:51:23 +0200292 andis. r1, r1, 0x8000 /* test DBCR0[EDM] bit */
293 bne skip_debug_init /* if set, don't clear debug register */
Victor Gallardoad876ff2010-09-16 11:32:04 -0700294 mfspr r1,SPRN_CCR0
295 ori r1,r1,CCR0_DTB@l /* Disable Trace Broadcast */
296 mtspr SPRN_CCR0,r1
Matthias Fuchs58ea1422009-07-22 17:27:56 +0200297 mtspr SPRN_DBCR0,r0
298 mtspr SPRN_DBCR1,r0
299 mtspr SPRN_DBCR2,r0
300 mtspr SPRN_IAC1,r0
301 mtspr SPRN_IAC2,r0
302 mtspr SPRN_IAC3,r0
303 mtspr SPRN_DAC1,r0
304 mtspr SPRN_DAC2,r0
305 mtspr SPRN_DVC1,r0
306 mtspr SPRN_DVC2,r0
wdenk0442ed82002-11-03 10:24:00 +0000307
Matthias Fuchs58ea1422009-07-22 17:27:56 +0200308 mfspr r1,SPRN_DBSR
309 mtspr SPRN_DBSR,r1 /* Clear all valid bits */
Stefan Roese887e2ec2006-09-07 11:51:23 +0200310skip_debug_init:
wdenk0442ed82002-11-03 10:24:00 +0000311
Marian Balakowicz6c5879f2006-06-30 16:30:46 +0200312#if defined (CONFIG_440SPE)
313 /*----------------------------------------------------------------+
314 | Initialize Core Configuration Reg1.
315 | a. ICDPEI: Record even parity. Normal operation.
316 | b. ICTPEI: Record even parity. Normal operation.
317 | c. DCTPEI: Record even parity. Normal operation.
318 | d. DCDPEI: Record even parity. Normal operation.
319 | e. DCUPEI: Record even parity. Normal operation.
320 | f. DCMPEI: Record even parity. Normal operation.
321 | g. FCOM: Normal operation
322 | h. MMUPEI: Record even parity. Normal operation.
323 | i. FFF: Flush only as much data as necessary.
Marian Balakowiczedd6cf22006-07-06 21:17:24 +0200324 | j. TCS: Timebase increments from CPU clock.
Marian Balakowicz6c5879f2006-06-30 16:30:46 +0200325 +-----------------------------------------------------------------*/
Marian Balakowiczedd6cf22006-07-06 21:17:24 +0200326 li r0,0
Matthias Fuchs58ea1422009-07-22 17:27:56 +0200327 mtspr SPRN_CCR1, r0
Marian Balakowicz6c5879f2006-06-30 16:30:46 +0200328
329 /*----------------------------------------------------------------+
330 | Reset the timebase.
331 | The previous write to CCR1 sets the timebase source.
332 +-----------------------------------------------------------------*/
Matthias Fuchs58ea1422009-07-22 17:27:56 +0200333 mtspr SPRN_TBWL, r0
334 mtspr SPRN_TBWU, r0
Marian Balakowicz6c5879f2006-06-30 16:30:46 +0200335#endif
336
wdenk0442ed82002-11-03 10:24:00 +0000337 /*----------------------------------------------------------------*/
338 /* Setup interrupt vectors */
339 /*----------------------------------------------------------------*/
Matthias Fuchs58ea1422009-07-22 17:27:56 +0200340 mtspr SPRN_IVPR,r0 /* Vectors start at 0x0000_0000 */
Wolfgang Denkf901a832005-08-06 01:42:58 +0200341 li r1,0x0100
Matthias Fuchs58ea1422009-07-22 17:27:56 +0200342 mtspr SPRN_IVOR0,r1 /* Critical input */
Wolfgang Denkf901a832005-08-06 01:42:58 +0200343 li r1,0x0200
Matthias Fuchs58ea1422009-07-22 17:27:56 +0200344 mtspr SPRN_IVOR1,r1 /* Machine check */
Wolfgang Denkf901a832005-08-06 01:42:58 +0200345 li r1,0x0300
Matthias Fuchs58ea1422009-07-22 17:27:56 +0200346 mtspr SPRN_IVOR2,r1 /* Data storage */
Wolfgang Denkf901a832005-08-06 01:42:58 +0200347 li r1,0x0400
Matthias Fuchs58ea1422009-07-22 17:27:56 +0200348 mtspr SPRN_IVOR3,r1 /* Instruction storage */
wdenk0442ed82002-11-03 10:24:00 +0000349 li r1,0x0500
Matthias Fuchs58ea1422009-07-22 17:27:56 +0200350 mtspr SPRN_IVOR4,r1 /* External interrupt */
wdenk0442ed82002-11-03 10:24:00 +0000351 li r1,0x0600
Matthias Fuchs58ea1422009-07-22 17:27:56 +0200352 mtspr SPRN_IVOR5,r1 /* Alignment */
wdenk0442ed82002-11-03 10:24:00 +0000353 li r1,0x0700
Matthias Fuchs58ea1422009-07-22 17:27:56 +0200354 mtspr SPRN_IVOR6,r1 /* Program check */
wdenk0442ed82002-11-03 10:24:00 +0000355 li r1,0x0800
Matthias Fuchs58ea1422009-07-22 17:27:56 +0200356 mtspr SPRN_IVOR7,r1 /* Floating point unavailable */
wdenk0442ed82002-11-03 10:24:00 +0000357 li r1,0x0c00
Matthias Fuchs58ea1422009-07-22 17:27:56 +0200358 mtspr SPRN_IVOR8,r1 /* System call */
Grzegorz Bernackiefa35cf2007-06-15 11:19:28 +0200359 li r1,0x0a00
Matthias Fuchs58ea1422009-07-22 17:27:56 +0200360 mtspr SPRN_IVOR9,r1 /* Auxiliary Processor unavailable */
Grzegorz Bernackiefa35cf2007-06-15 11:19:28 +0200361 li r1,0x0900
Matthias Fuchs58ea1422009-07-22 17:27:56 +0200362 mtspr SPRN_IVOR10,r1 /* Decrementer */
wdenk0442ed82002-11-03 10:24:00 +0000363 li r1,0x1300
Matthias Fuchs58ea1422009-07-22 17:27:56 +0200364 mtspr SPRN_IVOR13,r1 /* Data TLB error */
Grzegorz Bernackiefa35cf2007-06-15 11:19:28 +0200365 li r1,0x1400
Matthias Fuchs58ea1422009-07-22 17:27:56 +0200366 mtspr SPRN_IVOR14,r1 /* Instr TLB error */
wdenk0442ed82002-11-03 10:24:00 +0000367 li r1,0x2000
Matthias Fuchs58ea1422009-07-22 17:27:56 +0200368 mtspr SPRN_IVOR15,r1 /* Debug */
wdenk0442ed82002-11-03 10:24:00 +0000369
370 /*----------------------------------------------------------------*/
371 /* Configure cache regions */
372 /*----------------------------------------------------------------*/
Matthias Fuchs58ea1422009-07-22 17:27:56 +0200373 mtspr SPRN_INV0,r0
374 mtspr SPRN_INV1,r0
375 mtspr SPRN_INV2,r0
376 mtspr SPRN_INV3,r0
377 mtspr SPRN_DNV0,r0
378 mtspr SPRN_DNV1,r0
379 mtspr SPRN_DNV2,r0
380 mtspr SPRN_DNV3,r0
381 mtspr SPRN_ITV0,r0
382 mtspr SPRN_ITV1,r0
383 mtspr SPRN_ITV2,r0
384 mtspr SPRN_ITV3,r0
385 mtspr SPRN_DTV0,r0
386 mtspr SPRN_DTV1,r0
387 mtspr SPRN_DTV2,r0
388 mtspr SPRN_DTV3,r0
wdenk0442ed82002-11-03 10:24:00 +0000389
390 /*----------------------------------------------------------------*/
391 /* Cache victim limits */
392 /*----------------------------------------------------------------*/
393 /* floors 0, ceiling max to use the entire cache -- nothing locked
394 */
395 lis r1,0x0001
396 ori r1,r1,0xf800
Matthias Fuchs58ea1422009-07-22 17:27:56 +0200397 mtspr SPRN_IVLIM,r1
398 mtspr SPRN_DVLIM,r1
wdenk0442ed82002-11-03 10:24:00 +0000399
Marian Balakowicz6c5879f2006-06-30 16:30:46 +0200400 /*----------------------------------------------------------------+
401 |Initialize MMUCR[STID] = 0.
402 +-----------------------------------------------------------------*/
Matthias Fuchs58ea1422009-07-22 17:27:56 +0200403 mfspr r0,SPRN_MMUCR
Marian Balakowicz6c5879f2006-06-30 16:30:46 +0200404 addis r1,0,0xFFFF
405 ori r1,r1,0xFF00
406 and r0,r0,r1
Matthias Fuchs58ea1422009-07-22 17:27:56 +0200407 mtspr SPRN_MMUCR,r0
Marian Balakowicz6c5879f2006-06-30 16:30:46 +0200408
wdenk0442ed82002-11-03 10:24:00 +0000409 /*----------------------------------------------------------------*/
410 /* Clear all TLB entries -- TID = 0, TS = 0 */
411 /*----------------------------------------------------------------*/
Marian Balakowicz6c5879f2006-06-30 16:30:46 +0200412 addis r0,0,0x0000
Stefan Roese0a371ca2009-07-14 15:53:08 +0200413#ifdef CONFIG_SYS_RAMBOOT
Stefan Roesed8731332009-05-11 13:46:14 +0200414 li r4,0 /* Start with TLB #0 */
Stefan Roese0a371ca2009-07-14 15:53:08 +0200415#else
416 li r4,1 /* Start with TLB #1 */
417#endif
418 li r1,64 /* 64 TLB entries */
419 sub r1,r1,r4 /* calculate last TLB # */
420 mtctr r1
Stefan Roesed8731332009-05-11 13:46:14 +0200421rsttlb:
422#ifdef CONFIG_SYS_RAMBOOT
423 tlbre r3,r4,0 /* Read contents from TLB word #0 to get EPN */
424 rlwinm. r3,r3,0,0xfffffc00 /* Mask EPN */
425 beq tlbnxt /* Skip EPN=0 TLB, this is the SDRAM TLB */
426#endif
427 tlbwe r0,r4,0 /* Invalidate all entries (V=0)*/
428 tlbwe r0,r4,1
429 tlbwe r0,r4,2
430tlbnxt: addi r4,r4,1 /* Next TLB */
Marian Balakowicz6c5879f2006-06-30 16:30:46 +0200431 bdnz rsttlb
wdenk0442ed82002-11-03 10:24:00 +0000432
433 /*----------------------------------------------------------------*/
434 /* TLB entry setup -- step thru tlbtab */
435 /*----------------------------------------------------------------*/
Stefan Roese2a72e9e2010-04-09 14:03:59 +0200436#if defined(CONFIG_440SPE_REVA)
Rafal Jaworowski692519b2006-08-10 12:43:17 +0200437 /*----------------------------------------------------------------*/
438 /* We have different TLB tables for revA and rev B of 440SPe */
439 /*----------------------------------------------------------------*/
440 mfspr r1, PVR
441 lis r0,0x5342
442 ori r0,r0,0x1891
443 cmpw r7,r1,r0
444 bne r7,..revA
445 bl tlbtabB
446 b ..goon
447..revA:
448 bl tlbtabA
449..goon:
450#else
wdenk0442ed82002-11-03 10:24:00 +0000451 bl tlbtab /* Get tlbtab pointer */
Rafal Jaworowski692519b2006-08-10 12:43:17 +0200452#endif
wdenk0442ed82002-11-03 10:24:00 +0000453 mr r5,r0
454 li r1,0x003f /* 64 TLB entries max */
455 mtctr r1
456 li r4,0 /* TLB # */
457
458 addi r5,r5,-4
Stefan Roesed8731332009-05-11 13:46:14 +02004591:
460#ifdef CONFIG_SYS_RAMBOOT
461 tlbre r3,r4,0 /* Read contents from TLB word #0 */
462 rlwinm. r3,r3,0,0x00000200 /* Mask V (valid) bit */
463 bne tlbnx2 /* Skip V=1 TLB, this is the SDRAM TLB */
464#endif
465 lwzu r0,4(r5)
wdenk0442ed82002-11-03 10:24:00 +0000466 cmpwi r0,0
467 beq 2f /* 0 marks end */
468 lwzu r1,4(r5)
469 lwzu r2,4(r5)
470 tlbwe r0,r4,0 /* TLB Word 0 */
471 tlbwe r1,r4,1 /* TLB Word 1 */
472 tlbwe r2,r4,2 /* TLB Word 2 */
Stefan Roesed8731332009-05-11 13:46:14 +0200473tlbnx2: addi r4,r4,1 /* Next TLB */
wdenk0442ed82002-11-03 10:24:00 +0000474 bdnz 1b
475
476 /*----------------------------------------------------------------*/
477 /* Continue from 'normal' start */
478 /*----------------------------------------------------------------*/
Stefan Roese887e2ec2006-09-07 11:51:23 +02004792:
Stefan Roese887e2ec2006-09-07 11:51:23 +0200480 bl 3f
wdenk0442ed82002-11-03 10:24:00 +0000481 b _start
482
4833: li r0,0
Matthias Fuchs58ea1422009-07-22 17:27:56 +0200484 mtspr SPRN_SRR1,r0 /* Keep things disabled for now */
wdenk0442ed82002-11-03 10:24:00 +0000485 mflr r1
Matthias Fuchs58ea1422009-07-22 17:27:56 +0200486 mtspr SPRN_SRR0,r1
wdenk0442ed82002-11-03 10:24:00 +0000487 rfi
stroeseb867d702003-05-23 11:18:02 +0000488#endif /* CONFIG_440 */
wdenk0442ed82002-11-03 10:24:00 +0000489
490/*
491 * r3 - 1st arg to board_init(): IMMP pointer
492 * r4 - 2nd arg to board_init(): boot flag
493 */
Stefan Roese345b77b2014-03-04 15:34:35 +0100494#if !defined(CONFIG_SPL_BUILD)
wdenk0442ed82002-11-03 10:24:00 +0000495 .text
496 .long 0x27051956 /* U-Boot Magic Number */
497 .globl version_string
498version_string:
Andreas Bießmann09c2e902011-07-18 20:24:04 +0200499 .ascii U_BOOT_VERSION_STRING, "\0"
wdenk0442ed82002-11-03 10:24:00 +0000500
wdenk0442ed82002-11-03 10:24:00 +0000501 . = EXC_OFF_SYS_RESET
Grzegorz Bernackiefa35cf2007-06-15 11:19:28 +0200502 .globl _start_of_vectors
503_start_of_vectors:
504
505/* Critical input. */
506 CRIT_EXCEPTION(0x100, CritcalInput, UnknownException)
507
508#ifdef CONFIG_440
509/* Machine check */
Wolfgang Denk83b4cfa2007-06-20 18:14:24 +0200510 MCK_EXCEPTION(0x200, MachineCheck, MachineCheckException)
Grzegorz Bernackiefa35cf2007-06-15 11:19:28 +0200511#else
Wolfgang Denk83b4cfa2007-06-20 18:14:24 +0200512 CRIT_EXCEPTION(0x200, MachineCheck, MachineCheckException)
Grzegorz Bernackiefa35cf2007-06-15 11:19:28 +0200513#endif /* CONFIG_440 */
514
515/* Data Storage exception. */
516 STD_EXCEPTION(0x300, DataStorage, UnknownException)
517
518/* Instruction Storage exception. */
519 STD_EXCEPTION(0x400, InstStorage, UnknownException)
520
521/* External Interrupt exception. */
522 STD_EXCEPTION(0x500, ExtInterrupt, external_interrupt)
523
524/* Alignment exception. */
525 . = 0x600
526Alignment:
527 EXCEPTION_PROLOG(SRR0, SRR1)
528 mfspr r4,DAR
529 stw r4,_DAR(r21)
530 mfspr r5,DSISR
531 stw r5,_DSISR(r21)
532 addi r3,r1,STACK_FRAME_OVERHEAD
Joakim Tjernlundfc4e1882010-01-19 14:41:55 +0100533 EXC_XFER_TEMPLATE(Alignment, AlignmentException, MSR_KERNEL, COPY_EE)
Grzegorz Bernackiefa35cf2007-06-15 11:19:28 +0200534
535/* Program check exception */
536 . = 0x700
537ProgramCheck:
538 EXCEPTION_PROLOG(SRR0, SRR1)
539 addi r3,r1,STACK_FRAME_OVERHEAD
Joakim Tjernlundfc4e1882010-01-19 14:41:55 +0100540 EXC_XFER_TEMPLATE(ProgramCheck, ProgramCheckException,
541 MSR_KERNEL, COPY_EE)
Grzegorz Bernackiefa35cf2007-06-15 11:19:28 +0200542
543#ifdef CONFIG_440
544 STD_EXCEPTION(0x800, FPUnavailable, UnknownException)
545 STD_EXCEPTION(0x900, Decrementer, DecrementerPITException)
546 STD_EXCEPTION(0xa00, APU, UnknownException)
Stefan Roesedf8a24c2007-06-19 16:42:31 +0200547#endif
Grzegorz Bernackiefa35cf2007-06-15 11:19:28 +0200548 STD_EXCEPTION(0xc00, SystemCall, UnknownException)
549
550#ifdef CONFIG_440
551 STD_EXCEPTION(0x1300, DataTLBError, UnknownException)
552 STD_EXCEPTION(0x1400, InstructionTLBError, UnknownException)
553#else
554 STD_EXCEPTION(0x1000, PIT, DecrementerPITException)
555 STD_EXCEPTION(0x1100, InstructionTLBMiss, UnknownException)
556 STD_EXCEPTION(0x1200, DataTLBMiss, UnknownException)
557#endif
558 CRIT_EXCEPTION(0x2000, DebugBreakpoint, DebugException )
559
560 .globl _end_of_vectors
561_end_of_vectors:
562 . = _START_OFFSET
Stefan Roese887e2ec2006-09-07 11:51:23 +0200563#endif
wdenk0442ed82002-11-03 10:24:00 +0000564 .globl _start
565_start:
566
Stefan Roese98f99e92013-04-02 10:37:04 +0200567#if defined(CONFIG_SPL) && !defined(CONFIG_SPL_BUILD)
568 /*
569 * This is the entry of the real U-Boot from a board port
570 * that supports SPL booting on the PPC4xx. We only need
571 * to call board_init_f() here. Everything else has already
572 * been done in the SPL u-boot version.
573 */
574 GET_GOT /* initialize GOT access */
575 bl board_init_f /* run 1st part of board init code (in Flash)*/
576 /* NOTREACHED - board_init_f() does not return */
577#endif
578
wdenk0442ed82002-11-03 10:24:00 +0000579/*****************************************************************************/
580#if defined(CONFIG_440)
581
582 /*----------------------------------------------------------------*/
583 /* Clear and set up some registers. */
584 /*----------------------------------------------------------------*/
585 li r0,0x0000
586 lis r1,0xffff
Matthias Fuchs58ea1422009-07-22 17:27:56 +0200587 mtspr SPRN_DEC,r0 /* prevent dec exceptions */
588 mtspr SPRN_TBWL,r0 /* prevent fit & wdt exceptions */
589 mtspr SPRN_TBWU,r0
590 mtspr SPRN_TSR,r1 /* clear all timer exception status */
591 mtspr SPRN_TCR,r0 /* disable all */
592 mtspr SPRN_ESR,r0 /* clear exception syndrome register */
wdenk0442ed82002-11-03 10:24:00 +0000593 mtxer r0 /* clear integer exception register */
wdenk0442ed82002-11-03 10:24:00 +0000594
595 /*----------------------------------------------------------------*/
596 /* Debug setup -- some (not very good) ice's need an event*/
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200597 /* to establish control :-( Define CONFIG_SYS_INIT_DBCR to the dbsr */
wdenk0442ed82002-11-03 10:24:00 +0000598 /* value you need in this case 0x8cff 0000 should do the trick */
599 /*----------------------------------------------------------------*/
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200600#if defined(CONFIG_SYS_INIT_DBCR)
wdenk0442ed82002-11-03 10:24:00 +0000601 lis r1,0xffff
602 ori r1,r1,0xffff
Matthias Fuchs58ea1422009-07-22 17:27:56 +0200603 mtspr SPRN_DBSR,r1 /* Clear all status bits */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200604 lis r0,CONFIG_SYS_INIT_DBCR@h
605 ori r0,r0,CONFIG_SYS_INIT_DBCR@l
Matthias Fuchs58ea1422009-07-22 17:27:56 +0200606 mtspr SPRN_DBCR0,r0
wdenk0442ed82002-11-03 10:24:00 +0000607 isync
608#endif
609
610 /*----------------------------------------------------------------*/
611 /* Setup the internal SRAM */
612 /*----------------------------------------------------------------*/
613 li r0,0
Stefan Roese887e2ec2006-09-07 11:51:23 +0200614
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200615#ifdef CONFIG_SYS_INIT_RAM_DCACHE
Stefan Roesec157d8e2005-08-01 16:41:48 +0200616 /* Clear Dcache to use as RAM */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200617 addis r3,r0,CONFIG_SYS_INIT_RAM_ADDR@h
618 ori r3,r3,CONFIG_SYS_INIT_RAM_ADDR@l
Wolfgang Denk553f0982010-10-26 13:32:32 +0200619 addis r4,r0,CONFIG_SYS_INIT_RAM_SIZE@h
620 ori r4,r4,CONFIG_SYS_INIT_RAM_SIZE@l
Stefan Roesec157d8e2005-08-01 16:41:48 +0200621 rlwinm. r5,r4,0,27,31
Wolfgang Denkf901a832005-08-06 01:42:58 +0200622 rlwinm r5,r4,27,5,31
623 beq ..d_ran
624 addi r5,r5,0x0001
Stefan Roesec157d8e2005-08-01 16:41:48 +0200625..d_ran:
Wolfgang Denkf901a832005-08-06 01:42:58 +0200626 mtctr r5
Stefan Roesec157d8e2005-08-01 16:41:48 +0200627..d_ag:
Wolfgang Denkf901a832005-08-06 01:42:58 +0200628 dcbz r0,r3
629 addi r3,r3,32
630 bdnz ..d_ag
Stefan Roesee02c5212008-01-09 10:23:16 +0100631
632 /*
633 * Lock the init-ram/stack in d-cache, so that other regions
634 * may use d-cache as well
635 * Note, that this current implementation locks exactly 4k
636 * of d-cache, so please make sure that you don't define a
637 * bigger init-ram area. Take a look at the lwmon5 440EPx
638 * implementation as a reference.
639 */
640 msync
641 isync
642 /* 8. set TFLOOR/NFLOOR to 8 (-> 8*16*32 bytes locked -> 4k) */
643 lis r1,0x0201
644 ori r1,r1,0xf808
Matthias Fuchs58ea1422009-07-22 17:27:56 +0200645 mtspr SPRN_DVLIM,r1
Stefan Roesee02c5212008-01-09 10:23:16 +0100646 lis r1,0x0808
647 ori r1,r1,0x0808
Matthias Fuchs58ea1422009-07-22 17:27:56 +0200648 mtspr SPRN_DNV0,r1
649 mtspr SPRN_DNV1,r1
650 mtspr SPRN_DNV2,r1
651 mtspr SPRN_DNV3,r1
652 mtspr SPRN_DTV0,r1
653 mtspr SPRN_DTV1,r1
654 mtspr SPRN_DTV2,r1
655 mtspr SPRN_DTV3,r1
Stefan Roesee02c5212008-01-09 10:23:16 +0100656 msync
657 isync
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200658#endif /* CONFIG_SYS_INIT_RAM_DCACHE */
Stefan Roese887e2ec2006-09-07 11:51:23 +0200659
660 /* 440EP & 440GR are only 440er PPC's without internal SRAM */
661#if !defined(CONFIG_440EP) && !defined(CONFIG_440GR)
662 /* not all PPC's have internal SRAM usable as L2-cache */
Stefan Roese2801b2d2008-03-11 15:05:50 +0100663#if defined(CONFIG_440GX) || \
664 defined(CONFIG_440SP) || defined(CONFIG_440SPE) || \
Feng Kan7d307932008-07-08 22:47:31 -0700665 defined(CONFIG_460SX)
Dave Mitchellb14ca4b2008-11-20 14:00:49 -0600666 mtdcr L2_CACHE_CFG,r0 /* Ensure L2 Cache is off */
Masahiro Yamada9ed32462014-09-29 01:37:59 +0900667#elif defined(CONFIG_460EX) || defined(CONFIG_460GT)
Dave Mitchellddf45cc2008-11-20 14:09:50 -0600668 lis r1, 0x0000
669 ori r1,r1,0x0008 /* Set L2_CACHE_CFG[RDBW]=1 */
670 mtdcr L2_CACHE_CFG,r1
wdenkba56f622004-02-06 23:19:44 +0000671#endif
wdenk0442ed82002-11-03 10:24:00 +0000672
Stefan Roese887e2ec2006-09-07 11:51:23 +0200673 lis r2,0x7fff
wdenk0442ed82002-11-03 10:24:00 +0000674 ori r2,r2,0xffff
Dave Mitchellb14ca4b2008-11-20 14:00:49 -0600675 mfdcr r1,ISRAM0_DPC
wdenk0442ed82002-11-03 10:24:00 +0000676 and r1,r1,r2 /* Disable parity check */
Dave Mitchellb14ca4b2008-11-20 14:00:49 -0600677 mtdcr ISRAM0_DPC,r1
678 mfdcr r1,ISRAM0_PMEG
Stefan Roese887e2ec2006-09-07 11:51:23 +0200679 and r1,r1,r2 /* Disable pwr mgmt */
Dave Mitchellb14ca4b2008-11-20 14:00:49 -0600680 mtdcr ISRAM0_PMEG,r1
wdenk0442ed82002-11-03 10:24:00 +0000681
682 lis r1,0x8000 /* BAS = 8000_0000 */
Stefan Roese6e7fb6e2005-11-29 18:18:21 +0100683#if defined(CONFIG_440GX) || defined(CONFIG_440SP)
wdenkba56f622004-02-06 23:19:44 +0000684 ori r1,r1,0x0980 /* first 64k */
Dave Mitchellb14ca4b2008-11-20 14:00:49 -0600685 mtdcr ISRAM0_SB0CR,r1
wdenkba56f622004-02-06 23:19:44 +0000686 lis r1,0x8001
687 ori r1,r1,0x0980 /* second 64k */
Dave Mitchellb14ca4b2008-11-20 14:00:49 -0600688 mtdcr ISRAM0_SB1CR,r1
wdenkba56f622004-02-06 23:19:44 +0000689 lis r1, 0x8002
690 ori r1,r1, 0x0980 /* third 64k */
Dave Mitchellb14ca4b2008-11-20 14:00:49 -0600691 mtdcr ISRAM0_SB2CR,r1
wdenkba56f622004-02-06 23:19:44 +0000692 lis r1, 0x8003
693 ori r1,r1, 0x0980 /* fourth 64k */
Dave Mitchellb14ca4b2008-11-20 14:00:49 -0600694 mtdcr ISRAM0_SB3CR,r1
Tirumala Marri1b8fec12010-09-28 14:15:14 -0700695#elif defined(CONFIG_440SPE) || defined(CONFIG_460EX) || \
Masahiro Yamada9ed32462014-09-29 01:37:59 +0900696 defined(CONFIG_460GT)
Dave Mitchellddf45cc2008-11-20 14:09:50 -0600697 lis r1,0x0000 /* BAS = X_0000_0000 */
Marian Balakowicz6c5879f2006-06-30 16:30:46 +0200698 ori r1,r1,0x0984 /* first 64k */
Dave Mitchellb14ca4b2008-11-20 14:00:49 -0600699 mtdcr ISRAM0_SB0CR,r1
Marian Balakowicz6c5879f2006-06-30 16:30:46 +0200700 lis r1,0x0001
701 ori r1,r1,0x0984 /* second 64k */
Dave Mitchellb14ca4b2008-11-20 14:00:49 -0600702 mtdcr ISRAM0_SB1CR,r1
Marian Balakowicz6c5879f2006-06-30 16:30:46 +0200703 lis r1, 0x0002
704 ori r1,r1, 0x0984 /* third 64k */
Dave Mitchellb14ca4b2008-11-20 14:00:49 -0600705 mtdcr ISRAM0_SB2CR,r1
Marian Balakowicz6c5879f2006-06-30 16:30:46 +0200706 lis r1, 0x0003
707 ori r1,r1, 0x0984 /* fourth 64k */
Dave Mitchellb14ca4b2008-11-20 14:00:49 -0600708 mtdcr ISRAM0_SB3CR,r1
Masahiro Yamada9ed32462014-09-29 01:37:59 +0900709#if defined(CONFIG_460EX) || defined(CONFIG_460GT)
Dave Mitchellddf45cc2008-11-20 14:09:50 -0600710 lis r2,0x7fff
711 ori r2,r2,0xffff
712 mfdcr r1,ISRAM1_DPC
713 and r1,r1,r2 /* Disable parity check */
Wolfgang Denk455ae7e2008-12-16 01:02:17 +0100714 mtdcr ISRAM1_DPC,r1
Dave Mitchellddf45cc2008-11-20 14:09:50 -0600715 mfdcr r1,ISRAM1_PMEG
716 and r1,r1,r2 /* Disable pwr mgmt */
717 mtdcr ISRAM1_PMEG,r1
718
719 lis r1,0x0004 /* BAS = 4_0004_0000 */
Tirumala Marri1b8fec12010-09-28 14:15:14 -0700720 ori r1,r1,ISRAM1_SIZE /* ocm size */
Dave Mitchellddf45cc2008-11-20 14:09:50 -0600721 mtdcr ISRAM1_SB0CR,r1
722#endif
Feng Kan7d307932008-07-08 22:47:31 -0700723#elif defined(CONFIG_460SX)
724 lis r1,0x0000 /* BAS = 0000_0000 */
725 ori r1,r1,0x0B84 /* first 128k */
Dave Mitchellb14ca4b2008-11-20 14:00:49 -0600726 mtdcr ISRAM0_SB0CR,r1
Feng Kan7d307932008-07-08 22:47:31 -0700727 lis r1,0x0001
728 ori r1,r1,0x0B84 /* second 128k */
Dave Mitchellb14ca4b2008-11-20 14:00:49 -0600729 mtdcr ISRAM0_SB1CR,r1
Feng Kan7d307932008-07-08 22:47:31 -0700730 lis r1, 0x0002
731 ori r1,r1, 0x0B84 /* third 128k */
Dave Mitchellb14ca4b2008-11-20 14:00:49 -0600732 mtdcr ISRAM0_SB2CR,r1
Feng Kan7d307932008-07-08 22:47:31 -0700733 lis r1, 0x0003
734 ori r1,r1, 0x0B84 /* fourth 128k */
Dave Mitchellb14ca4b2008-11-20 14:00:49 -0600735 mtdcr ISRAM0_SB3CR,r1
Stefan Roese887e2ec2006-09-07 11:51:23 +0200736#elif defined(CONFIG_440GP)
wdenk0442ed82002-11-03 10:24:00 +0000737 ori r1,r1,0x0380 /* 8k rw */
Dave Mitchellb14ca4b2008-11-20 14:00:49 -0600738 mtdcr ISRAM0_SB0CR,r1
739 mtdcr ISRAM0_SB1CR,r0 /* Disable bank 1 */
wdenkba56f622004-02-06 23:19:44 +0000740#endif
Stefan Roese887e2ec2006-09-07 11:51:23 +0200741#endif /* #if !defined(CONFIG_440EP) && !defined(CONFIG_440GR) */
wdenk0442ed82002-11-03 10:24:00 +0000742
743 /*----------------------------------------------------------------*/
744 /* Setup the stack in internal SRAM */
745 /*----------------------------------------------------------------*/
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200746 lis r1,CONFIG_SYS_INIT_RAM_ADDR@h
747 ori r1,r1,CONFIG_SYS_INIT_SP_OFFSET@l
wdenk0442ed82002-11-03 10:24:00 +0000748 li r0,0
749 stwu r0,-4(r1)
750 stwu r0,-4(r1) /* Terminate call chain */
751
752 stwu r1,-8(r1) /* Save back chain and move SP */
753 lis r0,RESET_VECTOR@h /* Address of reset vector */
754 ori r0,r0, RESET_VECTOR@l
755 stwu r1,-8(r1) /* Save back chain and move SP */
756 stw r0,+12(r1) /* Save return addr (underflow vect) */
Wolfgang Denk8c4734e2011-04-20 22:11:21 +0200757
Stefan Roese98f99e92013-04-02 10:37:04 +0200758#ifndef CONFIG_SPL_BUILD
wdenk0442ed82002-11-03 10:24:00 +0000759 GET_GOT
Stefan Roese98f99e92013-04-02 10:37:04 +0200760#endif
Stefan Roese5568e612005-11-22 13:20:42 +0100761
762 bl cpu_init_f /* run low-level CPU init code (from Flash) */
wdenk0442ed82002-11-03 10:24:00 +0000763 bl board_init_f
Peter Tyser52ebd9c2010-09-14 19:13:53 -0500764 /* NOTREACHED - board_init_f() does not return */
wdenk0442ed82002-11-03 10:24:00 +0000765
766#endif /* CONFIG_440 */
767
768/*****************************************************************************/
Matthias Fuchs3fb85882013-08-07 12:10:38 +0200769#if defined(CONFIG_405GP) || \
Stefan Roesee01bd212007-03-21 13:38:59 +0100770 defined(CONFIG_405EP) || defined(CONFIG_405EZ) || \
Stefan Roesedbbd1252007-10-05 17:10:59 +0200771 defined(CONFIG_405EX) || defined(CONFIG_405)
wdenk0442ed82002-11-03 10:24:00 +0000772 /*----------------------------------------------------------------------- */
773 /* Clear and set up some registers. */
774 /*----------------------------------------------------------------------- */
775 addi r4,r0,0x0000
Stefan Roesedbbd1252007-10-05 17:10:59 +0200776#if !defined(CONFIG_405EX)
Matthias Fuchs58ea1422009-07-22 17:27:56 +0200777 mtspr SPRN_SGR,r4
Stefan Roesedbbd1252007-10-05 17:10:59 +0200778#else
779 /*
780 * On 405EX, completely clearing the SGR leads to PPC hangup
781 * upon PCIe configuration access. The PCIe memory regions
782 * need to be guarded!
783 */
784 lis r3,0x0000
785 ori r3,r3,0x7FFC
Matthias Fuchs58ea1422009-07-22 17:27:56 +0200786 mtspr SPRN_SGR,r3
Stefan Roesedbbd1252007-10-05 17:10:59 +0200787#endif
Matthias Fuchs58ea1422009-07-22 17:27:56 +0200788 mtspr SPRN_DCWR,r4
wdenk0442ed82002-11-03 10:24:00 +0000789 mtesr r4 /* clear Exception Syndrome Reg */
790 mttcr r4 /* clear Timer Control Reg */
791 mtxer r4 /* clear Fixed-Point Exception Reg */
792 mtevpr r4 /* clear Exception Vector Prefix Reg */
wdenk0442ed82002-11-03 10:24:00 +0000793 addi r4,r0,(0xFFFF-0x10000) /* set r4 to 0xFFFFFFFF (status in the */
794 /* dbsr is cleared by setting bits to 1) */
795 mtdbsr r4 /* clear/reset the dbsr */
796
Grant Ericksonc821b5f2008-05-22 14:44:14 -0700797 /* Invalidate the i- and d-caches. */
wdenk0442ed82002-11-03 10:24:00 +0000798 bl invalidate_icache
799 bl invalidate_dcache
800
Grant Ericksonc821b5f2008-05-22 14:44:14 -0700801 /* Set-up icache cacheability. */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200802 lis r4, CONFIG_SYS_ICACHE_SACR_VALUE@h
803 ori r4, r4, CONFIG_SYS_ICACHE_SACR_VALUE@l
Grant Ericksonc821b5f2008-05-22 14:44:14 -0700804 mticcr r4
wdenk0442ed82002-11-03 10:24:00 +0000805 isync
806
Grant Ericksonc821b5f2008-05-22 14:44:14 -0700807 /* Set-up dcache cacheability. */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200808 lis r4, CONFIG_SYS_DCACHE_SACR_VALUE@h
809 ori r4, r4, CONFIG_SYS_DCACHE_SACR_VALUE@l
Grant Ericksonc821b5f2008-05-22 14:44:14 -0700810 mtdccr r4
wdenk0442ed82002-11-03 10:24:00 +0000811
Ricardo Ribalda Delgado1f4d5322008-10-21 18:29:46 +0200812#if !(defined(CONFIG_SYS_EBC_PB0AP) && defined(CONFIG_SYS_EBC_PB0CR))\
813 && !defined (CONFIG_XILINX_405)
wdenk0442ed82002-11-03 10:24:00 +0000814 /*----------------------------------------------------------------------- */
815 /* Tune the speed and size for flash CS0 */
816 /*----------------------------------------------------------------------- */
817 bl ext_bus_cntlr_init
818#endif
Stefan Roese64852d02008-06-02 14:35:44 +0200819
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200820#if !(defined(CONFIG_SYS_INIT_DCACHE_CS) || defined(CONFIG_SYS_TEMP_STACK_OCM))
Stefan Roesedbbd1252007-10-05 17:10:59 +0200821 /*
Grant Ericksonc821b5f2008-05-22 14:44:14 -0700822 * For boards that don't have OCM and can't use the data cache
823 * for their primordial stack, setup stack here directly after the
824 * SDRAM is initialized in ext_bus_cntlr_init.
Stefan Roesedbbd1252007-10-05 17:10:59 +0200825 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200826 lis r1, CONFIG_SYS_INIT_RAM_ADDR@h
827 ori r1,r1,CONFIG_SYS_INIT_SP_OFFSET /* set up the stack in SDRAM */
Stefan Roesedbbd1252007-10-05 17:10:59 +0200828
829 li r0, 0 /* Make room for stack frame header and */
830 stwu r0, -4(r1) /* clear final stack frame so that */
831 stwu r0, -4(r1) /* stack backtraces terminate cleanly */
832 /*
833 * Set up a dummy frame to store reset vector as return address.
834 * this causes stack underflow to reset board.
835 */
836 stwu r1, -8(r1) /* Save back chain and move SP */
837 lis r0, RESET_VECTOR@h /* Address of reset vector */
838 ori r0, r0, RESET_VECTOR@l
839 stwu r1, -8(r1) /* Save back chain and move SP */
840 stw r0, +12(r1) /* Save return addr (underflow vect) */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200841#endif /* !(CONFIG_SYS_INIT_DCACHE_CS || !CONFIG_SYS_TEM_STACK_OCM) */
wdenk0442ed82002-11-03 10:24:00 +0000842
stroeseb867d702003-05-23 11:18:02 +0000843#if defined(CONFIG_405EP)
844 /*----------------------------------------------------------------------- */
845 /* DMA Status, clear to come up clean */
846 /*----------------------------------------------------------------------- */
Wolfgang Denk53677ef2008-05-20 16:00:29 +0200847 addis r3,r0, 0xFFFF /* Clear all existing DMA status */
Wolfgang Denkf901a832005-08-06 01:42:58 +0200848 ori r3,r3, 0xFFFF
Stefan Roesed1c3b272009-09-09 16:25:29 +0200849 mtdcr DMASR, r3
stroeseb867d702003-05-23 11:18:02 +0000850
Wolfgang Denk53677ef2008-05-20 16:00:29 +0200851 bl ppc405ep_init /* do ppc405ep specific init */
stroeseb867d702003-05-23 11:18:02 +0000852#endif /* CONFIG_405EP */
853
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200854#if defined(CONFIG_SYS_OCM_DATA_ADDR) && defined(CONFIG_SYS_OCM_DATA_SIZE)
Stefan Roesee01bd212007-03-21 13:38:59 +0100855#if defined(CONFIG_405EZ)
856 /********************************************************************
857 * Setup OCM - On Chip Memory - PPC405EZ uses OCM Controller V2
858 *******************************************************************/
859 /*
860 * We can map the OCM on the PLB3, so map it at
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200861 * CONFIG_SYS_OCM_DATA_ADDR + 0x8000
Stefan Roesee01bd212007-03-21 13:38:59 +0100862 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200863 lis r3,CONFIG_SYS_OCM_DATA_ADDR@h /* OCM location */
864 ori r3,r3,CONFIG_SYS_OCM_DATA_ADDR@l
Stefan Roesedf8a24c2007-06-19 16:42:31 +0200865 ori r3,r3,0x0270 /* 16K for Bank 1, R/W/Enable */
Stefan Roesed1c3b272009-09-09 16:25:29 +0200866 mtdcr OCM0_PLBCR1,r3 /* Set PLB Access */
Stefan Roesee01bd212007-03-21 13:38:59 +0100867 ori r3,r3,0x4000 /* Add 0x4000 for bank 2 */
Stefan Roesed1c3b272009-09-09 16:25:29 +0200868 mtdcr OCM0_PLBCR2,r3 /* Set PLB Access */
Stefan Roesee01bd212007-03-21 13:38:59 +0100869 isync
870
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200871 lis r3,CONFIG_SYS_OCM_DATA_ADDR@h /* OCM location */
872 ori r3,r3,CONFIG_SYS_OCM_DATA_ADDR@l
Wolfgang Denk83b4cfa2007-06-20 18:14:24 +0200873 ori r3,r3,0x0270 /* 16K for Bank 1, R/W/Enable */
Stefan Roesed1c3b272009-09-09 16:25:29 +0200874 mtdcr OCM0_DSRC1, r3 /* Set Data Side */
875 mtdcr OCM0_ISRC1, r3 /* Set Instruction Side */
Stefan Roesee01bd212007-03-21 13:38:59 +0100876 ori r3,r3,0x4000 /* Add 0x4000 for bank 2 */
Stefan Roesed1c3b272009-09-09 16:25:29 +0200877 mtdcr OCM0_DSRC2, r3 /* Set Data Side */
878 mtdcr OCM0_ISRC2, r3 /* Set Instruction Side */
Wolfgang Denk83b4cfa2007-06-20 18:14:24 +0200879 addis r3,0,0x0800 /* OCM Data Parity Disable - 1 Wait State */
Stefan Roesed1c3b272009-09-09 16:25:29 +0200880 mtdcr OCM0_DISDPC,r3
Stefan Roesee01bd212007-03-21 13:38:59 +0100881
882 isync
Stefan Roese3cb86f32007-03-24 15:45:34 +0100883#else /* CONFIG_405EZ */
wdenk0442ed82002-11-03 10:24:00 +0000884 /********************************************************************
885 * Setup OCM - On Chip Memory
886 *******************************************************************/
887 /* Setup OCM */
wdenk8bde7f72003-06-27 21:31:46 +0000888 lis r0, 0x7FFF
889 ori r0, r0, 0xFFFF
Stefan Roesed1c3b272009-09-09 16:25:29 +0200890 mfdcr r3, OCM0_ISCNTL /* get instr-side IRAM config */
891 mfdcr r4, OCM0_DSCNTL /* get data-side IRAM config */
Stefan Roese3cb86f32007-03-24 15:45:34 +0100892 and r3, r3, r0 /* disable data-side IRAM */
893 and r4, r4, r0 /* disable data-side IRAM */
Stefan Roesed1c3b272009-09-09 16:25:29 +0200894 mtdcr OCM0_ISCNTL, r3 /* set instr-side IRAM config */
895 mtdcr OCM0_DSCNTL, r4 /* set data-side IRAM config */
wdenk8bde7f72003-06-27 21:31:46 +0000896 isync
wdenk0442ed82002-11-03 10:24:00 +0000897
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200898 lis r3,CONFIG_SYS_OCM_DATA_ADDR@h /* OCM location */
899 ori r3,r3,CONFIG_SYS_OCM_DATA_ADDR@l
Stefan Roesed1c3b272009-09-09 16:25:29 +0200900 mtdcr OCM0_DSARC, r3
wdenk0442ed82002-11-03 10:24:00 +0000901 addis r4, 0, 0xC000 /* OCM data area enabled */
Stefan Roesed1c3b272009-09-09 16:25:29 +0200902 mtdcr OCM0_DSCNTL, r4
wdenk8bde7f72003-06-27 21:31:46 +0000903 isync
Stefan Roesee01bd212007-03-21 13:38:59 +0100904#endif /* CONFIG_405EZ */
wdenk0442ed82002-11-03 10:24:00 +0000905#endif
906
907 /*----------------------------------------------------------------------- */
908 /* Setup temporary stack in DCACHE or OCM if needed for SDRAM SPD. */
909 /*----------------------------------------------------------------------- */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200910#ifdef CONFIG_SYS_INIT_DCACHE_CS
Grant Ericksonc821b5f2008-05-22 14:44:14 -0700911 li r4, PBxAP
Stefan Roesed1c3b272009-09-09 16:25:29 +0200912 mtdcr EBC0_CFGADDR, r4
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200913 lis r4, CONFIG_SYS_INIT_DCACHE_PBxAR@h
914 ori r4, r4, CONFIG_SYS_INIT_DCACHE_PBxAR@l
Stefan Roesed1c3b272009-09-09 16:25:29 +0200915 mtdcr EBC0_CFGDATA, r4
wdenk0442ed82002-11-03 10:24:00 +0000916
Grant Ericksonc821b5f2008-05-22 14:44:14 -0700917 addi r4, 0, PBxCR
Stefan Roesed1c3b272009-09-09 16:25:29 +0200918 mtdcr EBC0_CFGADDR, r4
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200919 lis r4, CONFIG_SYS_INIT_DCACHE_PBxCR@h
920 ori r4, r4, CONFIG_SYS_INIT_DCACHE_PBxCR@l
Stefan Roesed1c3b272009-09-09 16:25:29 +0200921 mtdcr EBC0_CFGDATA, r4
wdenk0442ed82002-11-03 10:24:00 +0000922
Grant Ericksonc821b5f2008-05-22 14:44:14 -0700923 /*
924 * Enable the data cache for the 128MB storage access control region
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200925 * at CONFIG_SYS_INIT_RAM_ADDR.
Grant Ericksonc821b5f2008-05-22 14:44:14 -0700926 */
927 mfdccr r4
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200928 oris r4, r4, PPC_128MB_SACR_VALUE(CONFIG_SYS_INIT_RAM_ADDR)@h
929 ori r4, r4, PPC_128MB_SACR_VALUE(CONFIG_SYS_INIT_RAM_ADDR)@l
wdenk0442ed82002-11-03 10:24:00 +0000930 mtdccr r4
931
Grant Ericksonc821b5f2008-05-22 14:44:14 -0700932 /*
933 * Preallocate data cache lines to be used to avoid a subsequent
934 * cache miss and an ensuing machine check exception when exceptions
935 * are enabled.
936 */
937 li r0, 0
wdenk0442ed82002-11-03 10:24:00 +0000938
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200939 lis r3, CONFIG_SYS_INIT_RAM_ADDR@h
940 ori r3, r3, CONFIG_SYS_INIT_RAM_ADDR@l
wdenk0442ed82002-11-03 10:24:00 +0000941
Wolfgang Denk553f0982010-10-26 13:32:32 +0200942 lis r4, CONFIG_SYS_INIT_RAM_SIZE@h
943 ori r4, r4, CONFIG_SYS_INIT_RAM_SIZE@l
Grant Ericksonc821b5f2008-05-22 14:44:14 -0700944
945 /*
946 * Convert the size, in bytes, to the number of cache lines/blocks
947 * to preallocate.
948 */
949 clrlwi. r5, r4, (32 - L1_CACHE_SHIFT)
950 srwi r5, r4, L1_CACHE_SHIFT
951 beq ..load_counter
952 addi r5, r5, 0x0001
953..load_counter:
954 mtctr r5
955
956 /* Preallocate the computed number of cache blocks. */
957..alloc_dcache_block:
958 dcba r0, r3
959 addi r3, r3, L1_CACHE_BYTES
960 bdnz ..alloc_dcache_block
961 sync
962
963 /*
964 * Load the initial stack pointer and data area and convert the size,
965 * in bytes, to the number of words to initialize to a known value.
966 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200967 lis r1, CONFIG_SYS_INIT_RAM_ADDR@h
968 ori r1, r1, CONFIG_SYS_INIT_SP_OFFSET@l
Grant Ericksonc821b5f2008-05-22 14:44:14 -0700969
Wolfgang Denk553f0982010-10-26 13:32:32 +0200970 lis r4, (CONFIG_SYS_INIT_RAM_SIZE >> 2)@h
971 ori r4, r4, (CONFIG_SYS_INIT_RAM_SIZE >> 2)@l
wdenk0442ed82002-11-03 10:24:00 +0000972 mtctr r4
973
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200974 lis r2, CONFIG_SYS_INIT_RAM_ADDR@h
Wolfgang Denk553f0982010-10-26 13:32:32 +0200975 ori r2, r2, CONFIG_SYS_INIT_RAM_SIZE@l
wdenk0442ed82002-11-03 10:24:00 +0000976
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200977 lis r4, CONFIG_SYS_INIT_RAM_PATTERN@h
978 ori r4, r4, CONFIG_SYS_INIT_RAM_PATTERN@l
wdenk0442ed82002-11-03 10:24:00 +0000979
980..stackloop:
Grant Ericksonc821b5f2008-05-22 14:44:14 -0700981 stwu r4, -4(r2)
wdenk0442ed82002-11-03 10:24:00 +0000982 bdnz ..stackloop
983
Grant Ericksonc821b5f2008-05-22 14:44:14 -0700984 /*
985 * Make room for stack frame header and clear final stack frame so
986 * that stack backtraces terminate cleanly.
987 */
988 stwu r0, -4(r1)
989 stwu r0, -4(r1)
990
wdenk0442ed82002-11-03 10:24:00 +0000991 /*
992 * Set up a dummy frame to store reset vector as return address.
993 * this causes stack underflow to reset board.
994 */
995 stwu r1, -8(r1) /* Save back chain and move SP */
996 addis r0, 0, RESET_VECTOR@h /* Address of reset vector */
997 ori r0, r0, RESET_VECTOR@l
998 stwu r1, -8(r1) /* Save back chain and move SP */
999 stw r0, +12(r1) /* Save return addr (underflow vect) */
1000
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001001#elif defined(CONFIG_SYS_TEMP_STACK_OCM) && \
1002 (defined(CONFIG_SYS_OCM_DATA_ADDR) && defined(CONFIG_SYS_OCM_DATA_SIZE))
wdenk0442ed82002-11-03 10:24:00 +00001003 /*
1004 * Stack in OCM.
1005 */
1006
1007 /* Set up Stack at top of OCM */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001008 lis r1, (CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_INIT_SP_OFFSET)@h
1009 ori r1, r1, (CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_INIT_SP_OFFSET)@l
wdenk0442ed82002-11-03 10:24:00 +00001010
1011 /* Set up a zeroized stack frame so that backtrace works right */
1012 li r0, 0
1013 stwu r0, -4(r1)
1014 stwu r0, -4(r1)
1015
1016 /*
1017 * Set up a dummy frame to store reset vector as return address.
1018 * this causes stack underflow to reset board.
1019 */
1020 stwu r1, -8(r1) /* Save back chain and move SP */
1021 lis r0, RESET_VECTOR@h /* Address of reset vector */
1022 ori r0, r0, RESET_VECTOR@l
1023 stwu r1, -8(r1) /* Save back chain and move SP */
1024 stw r0, +12(r1) /* Save return addr (underflow vect) */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001025#endif /* CONFIG_SYS_INIT_DCACHE_CS */
wdenk0442ed82002-11-03 10:24:00 +00001026
wdenk0442ed82002-11-03 10:24:00 +00001027 GET_GOT /* initialize GOT access */
1028
Wolfgang Denkf901a832005-08-06 01:42:58 +02001029 bl cpu_init_f /* run low-level CPU init code (from Flash) */
wdenk0442ed82002-11-03 10:24:00 +00001030
wdenk0442ed82002-11-03 10:24:00 +00001031 bl board_init_f /* run first part of init code (from Flash) */
Peter Tyser52ebd9c2010-09-14 19:13:53 -05001032 /* NOTREACHED - board_init_f() does not return */
1033
Matthias Fuchs3fb85882013-08-07 12:10:38 +02001034#endif /* CONFIG_405GP || CONFIG_405 || CONFIG_405EP */
wdenk12f34242003-09-02 22:48:03 +00001035 /*----------------------------------------------------------------------- */
wdenk0442ed82002-11-03 10:24:00 +00001036
1037
Stefan Roese345b77b2014-03-04 15:34:35 +01001038#if !defined(CONFIG_SPL_BUILD)
wdenk0442ed82002-11-03 10:24:00 +00001039/*
1040 * This code finishes saving the registers to the exception frame
1041 * and jumps to the appropriate handler for the exception.
1042 * Register r21 is pointer into trap frame, r1 has new stack pointer.
1043 */
1044 .globl transfer_to_handler
1045transfer_to_handler:
1046 stw r22,_NIP(r21)
1047 lis r22,MSR_POW@h
1048 andc r23,r23,r22
1049 stw r23,_MSR(r21)
1050 SAVE_GPR(7, r21)
1051 SAVE_4GPRS(8, r21)
1052 SAVE_8GPRS(12, r21)
1053 SAVE_8GPRS(24, r21)
wdenk0442ed82002-11-03 10:24:00 +00001054 mflr r23
1055 andi. r24,r23,0x3f00 /* get vector offset */
1056 stw r24,TRAP(r21)
1057 li r22,0
1058 stw r22,RESULT(r21)
1059 mtspr SPRG2,r22 /* r1 is now kernel sp */
wdenk0442ed82002-11-03 10:24:00 +00001060 lwz r24,0(r23) /* virtual address of handler */
1061 lwz r23,4(r23) /* where to go when done */
1062 mtspr SRR0,r24
1063 mtspr SRR1,r20
1064 mtlr r23
1065 SYNC
1066 rfi /* jump to handler, enable MMU */
1067
1068int_return:
1069 mfmsr r28 /* Disable interrupts */
1070 li r4,0
1071 ori r4,r4,MSR_EE
1072 andc r28,r28,r4
1073 SYNC /* Some chip revs need this... */
1074 mtmsr r28
1075 SYNC
1076 lwz r2,_CTR(r1)
1077 lwz r0,_LINK(r1)
1078 mtctr r2
1079 mtlr r0
1080 lwz r2,_XER(r1)
1081 lwz r0,_CCR(r1)
1082 mtspr XER,r2
1083 mtcrf 0xFF,r0
1084 REST_10GPRS(3, r1)
1085 REST_10GPRS(13, r1)
1086 REST_8GPRS(23, r1)
1087 REST_GPR(31, r1)
1088 lwz r2,_NIP(r1) /* Restore environment */
1089 lwz r0,_MSR(r1)
1090 mtspr SRR0,r2
1091 mtspr SRR1,r0
1092 lwz r0,GPR0(r1)
1093 lwz r2,GPR2(r1)
1094 lwz r1,GPR1(r1)
1095 SYNC
1096 rfi
1097
1098crit_return:
1099 mfmsr r28 /* Disable interrupts */
1100 li r4,0
1101 ori r4,r4,MSR_EE
1102 andc r28,r28,r4
1103 SYNC /* Some chip revs need this... */
1104 mtmsr r28
1105 SYNC
1106 lwz r2,_CTR(r1)
1107 lwz r0,_LINK(r1)
1108 mtctr r2
1109 mtlr r0
1110 lwz r2,_XER(r1)
1111 lwz r0,_CCR(r1)
1112 mtspr XER,r2
1113 mtcrf 0xFF,r0
1114 REST_10GPRS(3, r1)
1115 REST_10GPRS(13, r1)
1116 REST_8GPRS(23, r1)
1117 REST_GPR(31, r1)
1118 lwz r2,_NIP(r1) /* Restore environment */
1119 lwz r0,_MSR(r1)
Matthias Fuchs58ea1422009-07-22 17:27:56 +02001120 mtspr SPRN_CSRR0,r2
1121 mtspr SPRN_CSRR1,r0
wdenk0442ed82002-11-03 10:24:00 +00001122 lwz r0,GPR0(r1)
1123 lwz r2,GPR2(r1)
1124 lwz r1,GPR1(r1)
1125 SYNC
1126 rfci
1127
Grzegorz Bernackiefa35cf2007-06-15 11:19:28 +02001128#ifdef CONFIG_440
1129mck_return:
Wolfgang Denk83b4cfa2007-06-20 18:14:24 +02001130 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)
Matthias Fuchs58ea1422009-07-22 17:27:56 +02001151 mtspr SPRN_MCSRR0,r2
1152 mtspr SPRN_MCSRR1,r0
Wolfgang Denk83b4cfa2007-06-20 18:14:24 +02001153 lwz r0,GPR0(r1)
1154 lwz r2,GPR2(r1)
1155 lwz r1,GPR1(r1)
1156 SYNC
1157 rfmci
Grzegorz Bernackiefa35cf2007-06-15 11:19:28 +02001158#endif /* CONFIG_440 */
1159
1160
wdenk0442ed82002-11-03 10:24:00 +00001161 .globl get_pvr
1162get_pvr:
1163 mfspr r3, PVR
1164 blr
1165
wdenk0442ed82002-11-03 10:24:00 +00001166/*------------------------------------------------------------------------------- */
wdenk0442ed82002-11-03 10:24:00 +00001167/* Function: out16 */
1168/* Description: Output 16 bits */
1169/*------------------------------------------------------------------------------- */
1170 .globl out16
1171out16:
1172 sth r4,0x0000(r3)
1173 blr
1174
1175/*------------------------------------------------------------------------------- */
1176/* Function: out16r */
1177/* Description: Byte reverse and output 16 bits */
1178/*------------------------------------------------------------------------------- */
1179 .globl out16r
1180out16r:
1181 sthbrx r4,r0,r3
1182 blr
1183
1184/*------------------------------------------------------------------------------- */
wdenk0442ed82002-11-03 10:24:00 +00001185/* Function: out32r */
1186/* Description: Byte reverse and output 32 bits */
1187/*------------------------------------------------------------------------------- */
1188 .globl out32r
1189out32r:
1190 stwbrx r4,r0,r3
1191 blr
1192
1193/*------------------------------------------------------------------------------- */
1194/* Function: in16 */
1195/* Description: Input 16 bits */
1196/*------------------------------------------------------------------------------- */
1197 .globl in16
1198in16:
1199 lhz r3,0x0000(r3)
1200 blr
1201
1202/*------------------------------------------------------------------------------- */
1203/* Function: in16r */
1204/* Description: Input 16 bits and byte reverse */
1205/*------------------------------------------------------------------------------- */
1206 .globl in16r
1207in16r:
1208 lhbrx r3,r0,r3
1209 blr
1210
1211/*------------------------------------------------------------------------------- */
wdenk0442ed82002-11-03 10:24:00 +00001212/* Function: in32r */
1213/* Description: Input 32 bits and byte reverse */
1214/*------------------------------------------------------------------------------- */
1215 .globl in32r
1216in32r:
1217 lwbrx r3,r0,r3
1218 blr
1219
Stefan Roese98f99e92013-04-02 10:37:04 +02001220#if !defined(CONFIG_SPL_BUILD)
wdenk0442ed82002-11-03 10:24:00 +00001221/*
1222 * void relocate_code (addr_sp, gd, addr_moni)
1223 *
1224 * This "function" does not return, instead it continues in RAM
1225 * after relocating the monitor code.
1226 *
Grant Ericksonc821b5f2008-05-22 14:44:14 -07001227 * r3 = Relocated stack pointer
1228 * r4 = Relocated global data pointer
1229 * r5 = Relocated text pointer
wdenk0442ed82002-11-03 10:24:00 +00001230 */
1231 .globl relocate_code
1232relocate_code:
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001233#if defined(CONFIG_4xx_DCACHE) || defined(CONFIG_SYS_INIT_DCACHE_CS)
Stefan Roese9b94ac62007-10-31 17:55:58 +01001234 /*
Stefan Roese79209542010-11-26 15:45:34 +01001235 * We need to flush the initial global data (gd_t) and bd_info
1236 * before the dcache will be invalidated.
Stefan Roese9b94ac62007-10-31 17:55:58 +01001237 */
1238
Grant Ericksonc821b5f2008-05-22 14:44:14 -07001239 /* Save registers */
1240 mr r9, r3
1241 mr r10, r4
1242 mr r11, r5
Stefan Roese9b94ac62007-10-31 17:55:58 +01001243
Stefan Roese79209542010-11-26 15:45:34 +01001244 /*
1245 * Flush complete dcache, this is faster than flushing the
1246 * ranges for global_data and bd_info instead.
1247 */
1248 bl flush_dcache
Stefan Roese9b94ac62007-10-31 17:55:58 +01001249
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001250#if defined(CONFIG_SYS_INIT_DCACHE_CS)
Grant Ericksonc821b5f2008-05-22 14:44:14 -07001251 /*
1252 * Undo the earlier data cache set-up for the primordial stack and
1253 * data area. First, invalidate the data cache and then disable data
1254 * cacheability for that area. Finally, restore the EBC values, if
1255 * any.
1256 */
1257
1258 /* Invalidate the primordial stack and data area in cache */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001259 lis r3, CONFIG_SYS_INIT_RAM_ADDR@h
1260 ori r3, r3, CONFIG_SYS_INIT_RAM_ADDR@l
Grant Ericksonc821b5f2008-05-22 14:44:14 -07001261
Wolfgang Denk553f0982010-10-26 13:32:32 +02001262 lis r4, CONFIG_SYS_INIT_RAM_SIZE@h
1263 ori r4, r4, CONFIG_SYS_INIT_RAM_SIZE@l
Grant Ericksonc821b5f2008-05-22 14:44:14 -07001264 add r4, r4, r3
1265
1266 bl invalidate_dcache_range
1267
1268 /* Disable cacheability for the region */
1269 mfdccr r3
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001270 lis r4, ~PPC_128MB_SACR_VALUE(CONFIG_SYS_INIT_RAM_ADDR)@h
1271 ori r4, r4, ~PPC_128MB_SACR_VALUE(CONFIG_SYS_INIT_RAM_ADDR)@l
Grant Ericksonc821b5f2008-05-22 14:44:14 -07001272 and r3, r3, r4
1273 mtdccr r3
1274
1275 /* Restore the EBC parameters */
1276 li r3, PBxAP
Stefan Roesed1c3b272009-09-09 16:25:29 +02001277 mtdcr EBC0_CFGADDR, r3
Grant Ericksonc821b5f2008-05-22 14:44:14 -07001278 lis r3, PBxAP_VAL@h
1279 ori r3, r3, PBxAP_VAL@l
Stefan Roesed1c3b272009-09-09 16:25:29 +02001280 mtdcr EBC0_CFGDATA, r3
Grant Ericksonc821b5f2008-05-22 14:44:14 -07001281
1282 li r3, PBxCR
Stefan Roesed1c3b272009-09-09 16:25:29 +02001283 mtdcr EBC0_CFGADDR, r3
Grant Ericksonc821b5f2008-05-22 14:44:14 -07001284 lis r3, PBxCR_VAL@h
1285 ori r3, r3, PBxCR_VAL@l
Stefan Roesed1c3b272009-09-09 16:25:29 +02001286 mtdcr EBC0_CFGDATA, r3
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001287#endif /* defined(CONFIG_SYS_INIT_DCACHE_CS) */
Grant Ericksonc821b5f2008-05-22 14:44:14 -07001288
1289 /* Restore registers */
1290 mr r3, r9
1291 mr r4, r10
1292 mr r5, r11
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001293#endif /* defined(CONFIG_4xx_DCACHE) || defined(CONFIG_SYS_INIT_DCACHE_CS) */
Stefan Roesee02c5212008-01-09 10:23:16 +01001294
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001295#ifdef CONFIG_SYS_INIT_RAM_DCACHE
Stefan Roesee02c5212008-01-09 10:23:16 +01001296 /*
1297 * Unlock the previously locked d-cache
1298 */
1299 msync
1300 isync
1301 /* set TFLOOR/NFLOOR to 0 again */
1302 lis r6,0x0001
1303 ori r6,r6,0xf800
Matthias Fuchs58ea1422009-07-22 17:27:56 +02001304 mtspr SPRN_DVLIM,r6
Stefan Roesee02c5212008-01-09 10:23:16 +01001305 lis r6,0x0000
1306 ori r6,r6,0x0000
Matthias Fuchs58ea1422009-07-22 17:27:56 +02001307 mtspr SPRN_DNV0,r6
1308 mtspr SPRN_DNV1,r6
1309 mtspr SPRN_DNV2,r6
1310 mtspr SPRN_DNV3,r6
1311 mtspr SPRN_DTV0,r6
1312 mtspr SPRN_DTV1,r6
1313 mtspr SPRN_DTV2,r6
1314 mtspr SPRN_DTV3,r6
Stefan Roesee02c5212008-01-09 10:23:16 +01001315 msync
1316 isync
Stefan Roesef3cac532010-08-31 11:27:14 +02001317
1318 /* Invalidate data cache, now no longer our stack */
1319 dccci 0,0
1320 sync
1321 isync
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001322#endif /* CONFIG_SYS_INIT_RAM_DCACHE */
Stefan Roesee02c5212008-01-09 10:23:16 +01001323
Stefan Roesea4c8d132006-06-02 16:18:04 +02001324 /*
1325 * On some 440er platforms the cache is enabled in the first TLB (Boot-CS)
1326 * to speed up the boot process. Now this cache needs to be disabled.
1327 */
Stefan Roese4978e602010-05-27 16:45:20 +02001328#if defined(CONFIG_440)
Stefan Roese25fb4ea2008-11-20 11:46:20 +01001329 /* Clear all potential pending exceptions */
Matthias Fuchs58ea1422009-07-22 17:27:56 +02001330 mfspr r1,SPRN_MCSR
1331 mtspr SPRN_MCSR,r1
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001332 addi r1,r0,CONFIG_SYS_TLB_FOR_BOOT_FLASH /* Use defined TLB */
Stefan Roesec157d8e2005-08-01 16:41:48 +02001333 tlbre r0,r1,0x0002 /* Read contents */
Stefan Roese6e7fb6e2005-11-29 18:18:21 +01001334 ori r0,r0,0x0c00 /* Or in the inhibit, write through bit */
Wolfgang Denkf901a832005-08-06 01:42:58 +02001335 tlbwe r0,r1,0x0002 /* Save it out */
Stefan Roesea4c8d132006-06-02 16:18:04 +02001336 sync
Stefan Roesec157d8e2005-08-01 16:41:48 +02001337 isync
Stefan Roese4978e602010-05-27 16:45:20 +02001338#endif /* defined(CONFIG_440) */
wdenk0442ed82002-11-03 10:24:00 +00001339 mr r1, r3 /* Set new stack pointer */
1340 mr r9, r4 /* Save copy of Init Data pointer */
1341 mr r10, r5 /* Save copy of Destination Address */
1342
Joakim Tjernlund0f8aa152010-01-19 14:41:56 +01001343 GET_GOT
wdenk0442ed82002-11-03 10:24:00 +00001344 mr r3, r5 /* Destination Address */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001345 lis r4, CONFIG_SYS_MONITOR_BASE@h /* Source Address */
1346 ori r4, r4, CONFIG_SYS_MONITOR_BASE@l
wdenk3b57fe02003-05-30 12:48:29 +00001347 lwz r5, GOT(__init_end)
1348 sub r5, r5, r4
Stefan Roese9b94ac62007-10-31 17:55:58 +01001349 li r6, L1_CACHE_BYTES /* Cache Line Size */
wdenk0442ed82002-11-03 10:24:00 +00001350
1351 /*
1352 * Fix GOT pointer:
1353 *
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001354 * New GOT-PTR = (old GOT-PTR - CONFIG_SYS_MONITOR_BASE) + Destination Address
wdenk0442ed82002-11-03 10:24:00 +00001355 *
1356 * Offset:
1357 */
1358 sub r15, r10, r4
1359
1360 /* First our own GOT */
Joakim Tjernlund0f8aa152010-01-19 14:41:56 +01001361 add r12, r12, r15
Grant Ericksonc821b5f2008-05-22 14:44:14 -07001362 /* then the one used by the C code */
wdenk0442ed82002-11-03 10:24:00 +00001363 add r30, r30, r15
1364
1365 /*
1366 * Now relocate code
1367 */
1368
1369 cmplw cr1,r3,r4
1370 addi r0,r5,3
1371 srwi. r0,r0,2
1372 beq cr1,4f /* In place copy is not necessary */
1373 beq 7f /* Protect against 0 count */
1374 mtctr r0
1375 bge cr1,2f
1376
1377 la r8,-4(r4)
1378 la r7,-4(r3)
13791: lwzu r0,4(r8)
1380 stwu r0,4(r7)
1381 bdnz 1b
1382 b 4f
1383
13842: slwi r0,r0,2
1385 add r8,r4,r0
1386 add r7,r3,r0
13873: lwzu r0,-4(r8)
1388 stwu r0,-4(r7)
1389 bdnz 3b
1390
1391/*
1392 * Now flush the cache: note that we must start from a cache aligned
1393 * address. Otherwise we might miss one cache line.
1394 */
13954: cmpwi r6,0
1396 add r5,r3,r5
1397 beq 7f /* Always flush prefetch queue in any case */
1398 subi r0,r6,1
1399 andc r3,r3,r0
1400 mr r4,r3
14015: dcbst 0,r4
1402 add r4,r4,r6
1403 cmplw r4,r5
1404 blt 5b
1405 sync /* Wait for all dcbst to complete on bus */
1406 mr r4,r3
14076: icbi 0,r4
1408 add r4,r4,r6
1409 cmplw r4,r5
1410 blt 6b
14117: sync /* Wait for all icbi to complete on bus */
1412 isync
1413
1414/*
1415 * We are done. Do not return, instead branch to second part of board
1416 * initialization, now running from RAM.
1417 */
1418
Grzegorz Bernackiefa35cf2007-06-15 11:19:28 +02001419 addi r0, r10, in_ram - _start + _START_OFFSET
wdenk0442ed82002-11-03 10:24:00 +00001420 mtlr r0
1421 blr /* NEVER RETURNS! */
1422
1423in_ram:
1424
1425 /*
Joakim Tjernlund0f8aa152010-01-19 14:41:56 +01001426 * Relocation Function, r12 point to got2+0x8000
wdenk0442ed82002-11-03 10:24:00 +00001427 *
1428 * Adjust got2 pointers, no need to check for 0, this code
1429 * already puts a few entries in the table.
1430 */
1431 li r0,__got2_entries@sectoff@l
1432 la r3,GOT(_GOT2_TABLE_)
1433 lwz r11,GOT(_GOT2_TABLE_)
1434 mtctr r0
1435 sub r11,r3,r11
1436 addi r3,r3,-4
14371: lwzu r0,4(r3)
Joakim Tjernlundafc3ba02009-10-08 02:03:51 +02001438 cmpwi r0,0
1439 beq- 2f
wdenk0442ed82002-11-03 10:24:00 +00001440 add r0,r0,r11
1441 stw r0,0(r3)
Joakim Tjernlundafc3ba02009-10-08 02:03:51 +020014422: bdnz 1b
wdenk0442ed82002-11-03 10:24:00 +00001443
1444 /*
1445 * Now adjust the fixups and the pointers to the fixups
1446 * in case we need to move ourselves again.
1447 */
Joakim Tjernlundafc3ba02009-10-08 02:03:51 +02001448 li r0,__fixup_entries@sectoff@l
wdenk0442ed82002-11-03 10:24:00 +00001449 lwz r3,GOT(_FIXUP_TABLE_)
1450 cmpwi r0,0
1451 mtctr r0
1452 addi r3,r3,-4
1453 beq 4f
14543: lwzu r4,4(r3)
1455 lwzux r0,r4,r11
Joakim Tjernlundd1e0b102010-10-14 11:51:44 +02001456 cmpwi r0,0
wdenk0442ed82002-11-03 10:24:00 +00001457 add r0,r0,r11
Joakim Tjernlund34bbf612010-11-04 19:02:00 +01001458 stw r4,0(r3)
Joakim Tjernlundd1e0b102010-10-14 11:51:44 +02001459 beq- 5f
wdenk0442ed82002-11-03 10:24:00 +00001460 stw r0,0(r4)
Joakim Tjernlundd1e0b102010-10-14 11:51:44 +020014615: bdnz 3b
wdenk0442ed82002-11-03 10:24:00 +000014624:
1463clear_bss:
1464 /*
1465 * Now clear BSS segment
1466 */
wdenk5d232d02003-05-22 22:52:13 +00001467 lwz r3,GOT(__bss_start)
Simon Glass3929fb02013-03-14 06:54:53 +00001468 lwz r4,GOT(__bss_end)
wdenk0442ed82002-11-03 10:24:00 +00001469
1470 cmplw 0, r3, r4
Anatolij Gustschin42ed33f2007-12-05 17:43:20 +01001471 beq 7f
wdenk0442ed82002-11-03 10:24:00 +00001472
1473 li r0, 0
Anatolij Gustschin42ed33f2007-12-05 17:43:20 +01001474
1475 andi. r5, r4, 3
1476 beq 6f
1477 sub r4, r4, r5
1478 mtctr r5
1479 mr r5, r4
14805: stb r0, 0(r5)
1481 addi r5, r5, 1
1482 bdnz 5b
14836:
wdenk0442ed82002-11-03 10:24:00 +00001484 stw r0, 0(r3)
1485 addi r3, r3, 4
1486 cmplw 0, r3, r4
Anatolij Gustschin42ed33f2007-12-05 17:43:20 +01001487 bne 6b
wdenk0442ed82002-11-03 10:24:00 +00001488
Anatolij Gustschin42ed33f2007-12-05 17:43:20 +010014897:
wdenk0442ed82002-11-03 10:24:00 +00001490 mr r3, r9 /* Init Data pointer */
1491 mr r4, r10 /* Destination Address */
1492 bl board_init_r
1493
wdenk0442ed82002-11-03 10:24:00 +00001494 /*
1495 * Copy exception vector code to low memory
1496 *
1497 * r3: dest_addr
1498 * r7: source address, r8: end address, r9: target address
1499 */
1500 .globl trap_init
1501trap_init:
Joakim Tjernlund0f8aa152010-01-19 14:41:56 +01001502 mflr r4 /* save link register */
1503 GET_GOT
Grzegorz Bernackiefa35cf2007-06-15 11:19:28 +02001504 lwz r7, GOT(_start_of_vectors)
wdenk0442ed82002-11-03 10:24:00 +00001505 lwz r8, GOT(_end_of_vectors)
1506
wdenk682011f2003-06-03 23:54:09 +00001507 li r9, 0x100 /* reset vector always at 0x100 */
wdenk0442ed82002-11-03 10:24:00 +00001508
1509 cmplw 0, r7, r8
1510 bgelr /* return if r7>=r8 - just in case */
wdenk0442ed82002-11-03 10:24:00 +000015111:
1512 lwz r0, 0(r7)
1513 stw r0, 0(r9)
1514 addi r7, r7, 4
1515 addi r9, r9, 4
1516 cmplw 0, r7, r8
1517 bne 1b
1518
1519 /*
1520 * relocate `hdlr' and `int_return' entries
1521 */
Grzegorz Bernackiefa35cf2007-06-15 11:19:28 +02001522 li r7, .L_MachineCheck - _start + _START_OFFSET
1523 li r8, Alignment - _start + _START_OFFSET
wdenk0442ed82002-11-03 10:24:00 +000015242:
1525 bl trap_reloc
Grzegorz Bernackiefa35cf2007-06-15 11:19:28 +02001526 addi r7, r7, 0x100 /* next exception vector */
wdenk0442ed82002-11-03 10:24:00 +00001527 cmplw 0, r7, r8
1528 blt 2b
1529
Grzegorz Bernackiefa35cf2007-06-15 11:19:28 +02001530 li r7, .L_Alignment - _start + _START_OFFSET
wdenk0442ed82002-11-03 10:24:00 +00001531 bl trap_reloc
1532
Grzegorz Bernackiefa35cf2007-06-15 11:19:28 +02001533 li r7, .L_ProgramCheck - _start + _START_OFFSET
wdenk0442ed82002-11-03 10:24:00 +00001534 bl trap_reloc
1535
Grzegorz Bernackiefa35cf2007-06-15 11:19:28 +02001536#ifdef CONFIG_440
1537 li r7, .L_FPUnavailable - _start + _START_OFFSET
Wolfgang Denk83b4cfa2007-06-20 18:14:24 +02001538 bl trap_reloc
wdenk0442ed82002-11-03 10:24:00 +00001539
Grzegorz Bernackiefa35cf2007-06-15 11:19:28 +02001540 li r7, .L_Decrementer - _start + _START_OFFSET
Wolfgang Denk83b4cfa2007-06-20 18:14:24 +02001541 bl trap_reloc
Grzegorz Bernackiefa35cf2007-06-15 11:19:28 +02001542
1543 li r7, .L_APU - _start + _START_OFFSET
Wolfgang Denk83b4cfa2007-06-20 18:14:24 +02001544 bl trap_reloc
Stefan Roesedf8a24c2007-06-19 16:42:31 +02001545
Wolfgang Denk83b4cfa2007-06-20 18:14:24 +02001546 li r7, .L_InstructionTLBError - _start + _START_OFFSET
1547 bl trap_reloc
Grzegorz Bernackiefa35cf2007-06-15 11:19:28 +02001548
Wolfgang Denk83b4cfa2007-06-20 18:14:24 +02001549 li r7, .L_DataTLBError - _start + _START_OFFSET
1550 bl trap_reloc
Grzegorz Bernackiefa35cf2007-06-15 11:19:28 +02001551#else /* CONFIG_440 */
1552 li r7, .L_PIT - _start + _START_OFFSET
Wolfgang Denk83b4cfa2007-06-20 18:14:24 +02001553 bl trap_reloc
Grzegorz Bernackiefa35cf2007-06-15 11:19:28 +02001554
1555 li r7, .L_InstructionTLBMiss - _start + _START_OFFSET
Wolfgang Denk83b4cfa2007-06-20 18:14:24 +02001556 bl trap_reloc
Grzegorz Bernackiefa35cf2007-06-15 11:19:28 +02001557
1558 li r7, .L_DataTLBMiss - _start + _START_OFFSET
Wolfgang Denk83b4cfa2007-06-20 18:14:24 +02001559 bl trap_reloc
Grzegorz Bernackiefa35cf2007-06-15 11:19:28 +02001560#endif /* CONFIG_440 */
1561
Wolfgang Denk83b4cfa2007-06-20 18:14:24 +02001562 li r7, .L_DebugBreakpoint - _start + _START_OFFSET
1563 bl trap_reloc
wdenk0442ed82002-11-03 10:24:00 +00001564
Stefan Roese887e2ec2006-09-07 11:51:23 +02001565#if !defined(CONFIG_440)
Stefan Roese9a7b4082006-03-13 09:42:28 +01001566 addi r7,r0,0x1000 /* set ME bit (Machine Exceptions) */
1567 oris r7,r7,0x0002 /* set CE bit (Critical Exceptions) */
1568 mtmsr r7 /* change MSR */
1569#else
Stefan Roese887e2ec2006-09-07 11:51:23 +02001570 bl __440_msr_set
1571 b __440_msr_continue
Stefan Roese9a7b4082006-03-13 09:42:28 +01001572
Stefan Roese887e2ec2006-09-07 11:51:23 +02001573__440_msr_set:
Stefan Roese9a7b4082006-03-13 09:42:28 +01001574 addi r7,r0,0x1000 /* set ME bit (Machine Exceptions) */
1575 oris r7,r7,0x0002 /* set CE bit (Critical Exceptions) */
Matthias Fuchs58ea1422009-07-22 17:27:56 +02001576 mtspr SPRN_SRR1,r7
Stefan Roese9a7b4082006-03-13 09:42:28 +01001577 mflr r7
Matthias Fuchs58ea1422009-07-22 17:27:56 +02001578 mtspr SPRN_SRR0,r7
Stefan Roese9a7b4082006-03-13 09:42:28 +01001579 rfi
Stefan Roese887e2ec2006-09-07 11:51:23 +02001580__440_msr_continue:
Stefan Roese9a7b4082006-03-13 09:42:28 +01001581#endif
1582
wdenk0442ed82002-11-03 10:24:00 +00001583 mtlr r4 /* restore link register */
1584 blr
Stefan Roese98f99e92013-04-02 10:37:04 +02001585#endif /* CONFIG_SPL_BUILD */
wdenk0442ed82002-11-03 10:24:00 +00001586
Stefan Roesecf959c72007-06-01 15:27:11 +02001587#if defined(CONFIG_440)
1588/*----------------------------------------------------------------------------+
1589| dcbz_area.
1590+----------------------------------------------------------------------------*/
1591 function_prolog(dcbz_area)
1592 rlwinm. r5,r4,0,27,31
Wolfgang Denk83b4cfa2007-06-20 18:14:24 +02001593 rlwinm r5,r4,27,5,31
1594 beq ..d_ra2
1595 addi r5,r5,0x0001
1596..d_ra2:mtctr r5
1597..d_ag2:dcbz r0,r3
1598 addi r3,r3,32
1599 bdnz ..d_ag2
Stefan Roesecf959c72007-06-01 15:27:11 +02001600 sync
1601 blr
1602 function_epilog(dcbz_area)
Stefan Roesecf959c72007-06-01 15:27:11 +02001603#endif /* CONFIG_440 */
Stefan Roese345b77b2014-03-04 15:34:35 +01001604#endif /* CONFIG_SPL_BUILD */
stroeseb867d702003-05-23 11:18:02 +00001605
Stefan Roesecf959c72007-06-01 15:27:11 +02001606/*------------------------------------------------------------------------------- */
1607/* Function: in8 */
1608/* Description: Input 8 bits */
1609/*------------------------------------------------------------------------------- */
1610 .globl in8
1611in8:
1612 lbz r3,0x0000(r3)
1613 blr
1614
1615/*------------------------------------------------------------------------------- */
1616/* Function: out8 */
1617/* Description: Output 8 bits */
1618/*------------------------------------------------------------------------------- */
1619 .globl out8
1620out8:
1621 stb r4,0x0000(r3)
1622 blr
1623
1624/*------------------------------------------------------------------------------- */
1625/* Function: out32 */
1626/* Description: Output 32 bits */
1627/*------------------------------------------------------------------------------- */
1628 .globl out32
1629out32:
1630 stw r4,0x0000(r3)
1631 blr
1632
1633/*------------------------------------------------------------------------------- */
1634/* Function: in32 */
1635/* Description: Input 32 bits */
1636/*------------------------------------------------------------------------------- */
1637 .globl in32
1638in32:
1639 lwz 3,0x0000(3)
1640 blr
stroeseb867d702003-05-23 11:18:02 +00001641
1642/**************************************************************************/
Wolfgang Denkf901a832005-08-06 01:42:58 +02001643/* PPC405EP specific stuff */
stroeseb867d702003-05-23 11:18:02 +00001644/**************************************************************************/
1645#ifdef CONFIG_405EP
1646ppc405ep_init:
stroeseb828dda2003-12-09 14:54:43 +00001647
Stefan Roesec157d8e2005-08-01 16:41:48 +02001648#ifdef CONFIG_BUBINGA
stroeseb828dda2003-12-09 14:54:43 +00001649 /*
1650 * Initialize EBC chip selects 1 & 4 and GPIO pins (for alternate
1651 * function) to support FPGA and NVRAM accesses below.
1652 */
1653
1654 lis r3,GPIO0_OSRH@h /* config GPIO output select */
1655 ori r3,r3,GPIO0_OSRH@l
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001656 lis r4,CONFIG_SYS_GPIO0_OSRH@h
1657 ori r4,r4,CONFIG_SYS_GPIO0_OSRH@l
stroeseb828dda2003-12-09 14:54:43 +00001658 stw r4,0(r3)
1659 lis r3,GPIO0_OSRL@h
1660 ori r3,r3,GPIO0_OSRL@l
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001661 lis r4,CONFIG_SYS_GPIO0_OSRL@h
1662 ori r4,r4,CONFIG_SYS_GPIO0_OSRL@l
stroeseb828dda2003-12-09 14:54:43 +00001663 stw r4,0(r3)
1664
1665 lis r3,GPIO0_ISR1H@h /* config GPIO input select */
1666 ori r3,r3,GPIO0_ISR1H@l
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001667 lis r4,CONFIG_SYS_GPIO0_ISR1H@h
1668 ori r4,r4,CONFIG_SYS_GPIO0_ISR1H@l
stroeseb828dda2003-12-09 14:54:43 +00001669 stw r4,0(r3)
1670 lis r3,GPIO0_ISR1L@h
1671 ori r3,r3,GPIO0_ISR1L@l
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001672 lis r4,CONFIG_SYS_GPIO0_ISR1L@h
1673 ori r4,r4,CONFIG_SYS_GPIO0_ISR1L@l
stroeseb828dda2003-12-09 14:54:43 +00001674 stw r4,0(r3)
1675
1676 lis r3,GPIO0_TSRH@h /* config GPIO three-state select */
1677 ori r3,r3,GPIO0_TSRH@l
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001678 lis r4,CONFIG_SYS_GPIO0_TSRH@h
1679 ori r4,r4,CONFIG_SYS_GPIO0_TSRH@l
stroeseb828dda2003-12-09 14:54:43 +00001680 stw r4,0(r3)
1681 lis r3,GPIO0_TSRL@h
1682 ori r3,r3,GPIO0_TSRL@l
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001683 lis r4,CONFIG_SYS_GPIO0_TSRL@h
1684 ori r4,r4,CONFIG_SYS_GPIO0_TSRL@l
stroeseb828dda2003-12-09 14:54:43 +00001685 stw r4,0(r3)
1686
1687 lis r3,GPIO0_TCR@h /* config GPIO driver output enables */
1688 ori r3,r3,GPIO0_TCR@l
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001689 lis r4,CONFIG_SYS_GPIO0_TCR@h
1690 ori r4,r4,CONFIG_SYS_GPIO0_TCR@l
stroeseb828dda2003-12-09 14:54:43 +00001691 stw r4,0(r3)
1692
Stefan Roesed1c3b272009-09-09 16:25:29 +02001693 li r3,PB1AP /* program EBC bank 1 for RTC access */
1694 mtdcr EBC0_CFGADDR,r3
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001695 lis r3,CONFIG_SYS_EBC_PB1AP@h
1696 ori r3,r3,CONFIG_SYS_EBC_PB1AP@l
Stefan Roesed1c3b272009-09-09 16:25:29 +02001697 mtdcr EBC0_CFGDATA,r3
1698 li r3,PB1CR
1699 mtdcr EBC0_CFGADDR,r3
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001700 lis r3,CONFIG_SYS_EBC_PB1CR@h
1701 ori r3,r3,CONFIG_SYS_EBC_PB1CR@l
Stefan Roesed1c3b272009-09-09 16:25:29 +02001702 mtdcr EBC0_CFGDATA,r3
stroeseb828dda2003-12-09 14:54:43 +00001703
Stefan Roesed1c3b272009-09-09 16:25:29 +02001704 li r3,PB1AP /* program EBC bank 1 for RTC access */
1705 mtdcr EBC0_CFGADDR,r3
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001706 lis r3,CONFIG_SYS_EBC_PB1AP@h
1707 ori r3,r3,CONFIG_SYS_EBC_PB1AP@l
Stefan Roesed1c3b272009-09-09 16:25:29 +02001708 mtdcr EBC0_CFGDATA,r3
1709 li r3,PB1CR
1710 mtdcr EBC0_CFGADDR,r3
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001711 lis r3,CONFIG_SYS_EBC_PB1CR@h
1712 ori r3,r3,CONFIG_SYS_EBC_PB1CR@l
Stefan Roesed1c3b272009-09-09 16:25:29 +02001713 mtdcr EBC0_CFGDATA,r3
stroeseb828dda2003-12-09 14:54:43 +00001714
Stefan Roesed1c3b272009-09-09 16:25:29 +02001715 li r3,PB4AP /* program EBC bank 4 for FPGA access */
1716 mtdcr EBC0_CFGADDR,r3
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001717 lis r3,CONFIG_SYS_EBC_PB4AP@h
1718 ori r3,r3,CONFIG_SYS_EBC_PB4AP@l
Stefan Roesed1c3b272009-09-09 16:25:29 +02001719 mtdcr EBC0_CFGDATA,r3
1720 li r3,PB4CR
1721 mtdcr EBC0_CFGADDR,r3
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001722 lis r3,CONFIG_SYS_EBC_PB4CR@h
1723 ori r3,r3,CONFIG_SYS_EBC_PB4CR@l
Stefan Roesed1c3b272009-09-09 16:25:29 +02001724 mtdcr EBC0_CFGDATA,r3
stroeseb828dda2003-12-09 14:54:43 +00001725#endif
1726
wdenk8bde7f72003-06-27 21:31:46 +00001727 /*
1728 !-----------------------------------------------------------------------
1729 ! Check to see if chip is in bypass mode.
1730 ! If so, write stored CPC0_PLLMR0 and CPC0_PLLMR1 values and perform a
1731 ! CPU reset Otherwise, skip this step and keep going.
Wolfgang Denkf901a832005-08-06 01:42:58 +02001732 ! Note: Running BIOS in bypass mode is not supported since PLB speed
1733 ! will not be fast enough for the SDRAM (min 66MHz)
wdenk8bde7f72003-06-27 21:31:46 +00001734 !-----------------------------------------------------------------------
stroeseb867d702003-05-23 11:18:02 +00001735 */
Wolfgang Denkf901a832005-08-06 01:42:58 +02001736 mfdcr r5, CPC0_PLLMR1
Wolfgang Denk53677ef2008-05-20 16:00:29 +02001737 rlwinm r4,r5,1,0x1 /* get system clock source (SSCS) */
Wolfgang Denkf901a832005-08-06 01:42:58 +02001738 cmpi cr0,0,r4,0x1
stroeseb867d702003-05-23 11:18:02 +00001739
Wolfgang Denk53677ef2008-05-20 16:00:29 +02001740 beq pll_done /* if SSCS =b'1' then PLL has */
1741 /* already been set */
1742 /* and CPU has been reset */
1743 /* so skip to next section */
stroeseb867d702003-05-23 11:18:02 +00001744
Stefan Roesec157d8e2005-08-01 16:41:48 +02001745#ifdef CONFIG_BUBINGA
stroeseb867d702003-05-23 11:18:02 +00001746 /*
wdenk8bde7f72003-06-27 21:31:46 +00001747 !-----------------------------------------------------------------------
1748 ! Read NVRAM to get value to write in PLLMR.
1749 ! If value has not been correctly saved, write default value
1750 ! Default config values (assuming on-board 33MHz SYS_CLK) are above.
1751 ! See CPU_DEFAULT_200 and CPU_DEFAULT_266 above.
1752 !
1753 ! WARNING: This code assumes the first three words in the nvram_t
Wolfgang Denkf901a832005-08-06 01:42:58 +02001754 ! structure in openbios.h. Changing the beginning of
1755 ! the structure will break this code.
wdenk8bde7f72003-06-27 21:31:46 +00001756 !
1757 !-----------------------------------------------------------------------
stroeseb867d702003-05-23 11:18:02 +00001758 */
Wolfgang Denkf901a832005-08-06 01:42:58 +02001759 addis r3,0,NVRAM_BASE@h
1760 addi r3,r3,NVRAM_BASE@l
stroeseb867d702003-05-23 11:18:02 +00001761
Wolfgang Denkf901a832005-08-06 01:42:58 +02001762 lwz r4, 0(r3)
1763 addis r5,0,NVRVFY1@h
1764 addi r5,r5,NVRVFY1@l
Wolfgang Denk53677ef2008-05-20 16:00:29 +02001765 cmp cr0,0,r4,r5 /* Compare 1st NVRAM Magic number*/
Wolfgang Denkf901a832005-08-06 01:42:58 +02001766 bne ..no_pllset
1767 addi r3,r3,4
1768 lwz r4, 0(r3)
1769 addis r5,0,NVRVFY2@h
1770 addi r5,r5,NVRVFY2@l
Wolfgang Denk53677ef2008-05-20 16:00:29 +02001771 cmp cr0,0,r4,r5 /* Compare 2 NVRAM Magic number */
Wolfgang Denkf901a832005-08-06 01:42:58 +02001772 bne ..no_pllset
1773 addi r3,r3,8 /* Skip over conf_size */
1774 lwz r4, 4(r3) /* Load PLLMR1 value from NVRAM */
1775 lwz r3, 0(r3) /* Load PLLMR0 value from NVRAM */
1776 rlwinm r5,r4,1,0x1 /* get system clock source (SSCS) */
1777 cmpi cr0,0,r5,1 /* See if PLL is locked */
1778 beq pll_write
stroeseb867d702003-05-23 11:18:02 +00001779..no_pllset:
Stefan Roesec157d8e2005-08-01 16:41:48 +02001780#endif /* CONFIG_BUBINGA */
stroeseb867d702003-05-23 11:18:02 +00001781
John Otkend4024bb2007-07-26 17:49:11 +02001782#ifdef CONFIG_TAIHU
1783 mfdcr r4, CPC0_BOOT
1784 andi. r5, r4, CPC0_BOOT_SEP@l
1785 bne strap_1 /* serial eeprom present */
1786 addis r5,0,CPLD_REG0_ADDR@h
1787 ori r5,r5,CPLD_REG0_ADDR@l
1788 andi. r5, r5, 0x10
1789 bne _pci_66mhz
1790#endif /* CONFIG_TAIHU */
1791
Stefan Roese779e9752007-08-14 14:44:41 +02001792#if defined(CONFIG_ZEUS)
1793 mfdcr r4, CPC0_BOOT
1794 andi. r5, r4, CPC0_BOOT_SEP@l
Wolfgang Denk53677ef2008-05-20 16:00:29 +02001795 bne strap_1 /* serial eeprom present */
Stefan Roese779e9752007-08-14 14:44:41 +02001796 lis r3,0x0000
1797 addi r3,r3,0x3030
1798 lis r4,0x8042
1799 addi r4,r4,0x223e
1800 b 1f
1801strap_1:
1802 mfdcr r3, CPC0_PLLMR0
1803 mfdcr r4, CPC0_PLLMR1
1804 b 1f
1805#endif
1806
Wolfgang Denk53677ef2008-05-20 16:00:29 +02001807 addis r3,0,PLLMR0_DEFAULT@h /* PLLMR0 default value */
1808 ori r3,r3,PLLMR0_DEFAULT@l /* */
1809 addis r4,0,PLLMR1_DEFAULT@h /* PLLMR1 default value */
1810 ori r4,r4,PLLMR1_DEFAULT@l /* */
stroeseb867d702003-05-23 11:18:02 +00001811
John Otkend4024bb2007-07-26 17:49:11 +02001812#ifdef CONFIG_TAIHU
1813 b 1f
1814_pci_66mhz:
1815 addis r3,0,PLLMR0_DEFAULT_PCI66@h
1816 ori r3,r3,PLLMR0_DEFAULT_PCI66@l
1817 addis r4,0,PLLMR1_DEFAULT_PCI66@h
1818 ori r4,r4,PLLMR1_DEFAULT_PCI66@l
1819 b 1f
1820strap_1:
1821 mfdcr r3, CPC0_PLLMR0
1822 mfdcr r4, CPC0_PLLMR1
John Otkend4024bb2007-07-26 17:49:11 +02001823#endif /* CONFIG_TAIHU */
1824
Stefan Roese779e9752007-08-14 14:44:41 +020018251:
Wolfgang Denk53677ef2008-05-20 16:00:29 +02001826 b pll_write /* Write the CPC0_PLLMR with new value */
stroeseb867d702003-05-23 11:18:02 +00001827
1828pll_done:
wdenk8bde7f72003-06-27 21:31:46 +00001829 /*
1830 !-----------------------------------------------------------------------
1831 ! Clear Soft Reset Register
1832 ! This is needed to enable PCI if not booting from serial EPROM
1833 !-----------------------------------------------------------------------
stroeseb867d702003-05-23 11:18:02 +00001834 */
Wolfgang Denkf901a832005-08-06 01:42:58 +02001835 addi r3, 0, 0x0
1836 mtdcr CPC0_SRR, r3
stroeseb867d702003-05-23 11:18:02 +00001837
Wolfgang Denkf901a832005-08-06 01:42:58 +02001838 addis r3,0,0x0010
1839 mtctr r3
stroeseb867d702003-05-23 11:18:02 +00001840pci_wait:
Wolfgang Denkf901a832005-08-06 01:42:58 +02001841 bdnz pci_wait
stroeseb867d702003-05-23 11:18:02 +00001842
Wolfgang Denk53677ef2008-05-20 16:00:29 +02001843 blr /* return to main code */
stroeseb867d702003-05-23 11:18:02 +00001844
1845/*
1846!-----------------------------------------------------------------------------
Wolfgang Denkf901a832005-08-06 01:42:58 +02001847! Function: pll_write
1848! Description: Updates the value of the CPC0_PLLMR according to CMOS27E documentation
1849! That is:
1850! 1. Pll is first disabled (de-activated by putting in bypass mode)
1851! 2. PLL is reset
1852! 3. Clock dividers are set while PLL is held in reset and bypassed
1853! 4. PLL Reset is cleared
1854! 5. Wait 100us for PLL to lock
1855! 6. A core reset is performed
stroeseb867d702003-05-23 11:18:02 +00001856! Input: r3 = Value to write to CPC0_PLLMR0
1857! Input: r4 = Value to write to CPC0_PLLMR1
1858! Output r3 = none
1859!-----------------------------------------------------------------------------
1860*/
Matthias Fuchs0580e482009-07-06 16:27:33 +02001861 .globl pll_write
stroeseb867d702003-05-23 11:18:02 +00001862pll_write:
wdenk8bde7f72003-06-27 21:31:46 +00001863 mfdcr r5, CPC0_UCR
1864 andis. r5,r5,0xFFFF
Wolfgang Denk53677ef2008-05-20 16:00:29 +02001865 ori r5,r5,0x0101 /* Stop the UART clocks */
1866 mtdcr CPC0_UCR,r5 /* Before changing PLL */
stroeseb867d702003-05-23 11:18:02 +00001867
wdenk8bde7f72003-06-27 21:31:46 +00001868 mfdcr r5, CPC0_PLLMR1
Wolfgang Denk53677ef2008-05-20 16:00:29 +02001869 rlwinm r5,r5,0,0x7FFFFFFF /* Disable PLL */
Wolfgang Denkf901a832005-08-06 01:42:58 +02001870 mtdcr CPC0_PLLMR1,r5
Wolfgang Denk53677ef2008-05-20 16:00:29 +02001871 oris r5,r5,0x4000 /* Set PLL Reset */
Wolfgang Denkf901a832005-08-06 01:42:58 +02001872 mtdcr CPC0_PLLMR1,r5
stroeseb867d702003-05-23 11:18:02 +00001873
Wolfgang Denk53677ef2008-05-20 16:00:29 +02001874 mtdcr CPC0_PLLMR0,r3 /* Set clock dividers */
1875 rlwinm r5,r4,0,0x3FFFFFFF /* Reset & Bypass new PLL dividers */
1876 oris r5,r5,0x4000 /* Set PLL Reset */
1877 mtdcr CPC0_PLLMR1,r5 /* Set clock dividers */
1878 rlwinm r5,r5,0,0xBFFFFFFF /* Clear PLL Reset */
Wolfgang Denkf901a832005-08-06 01:42:58 +02001879 mtdcr CPC0_PLLMR1,r5
stroeseb867d702003-05-23 11:18:02 +00001880
1881 /*
wdenk8bde7f72003-06-27 21:31:46 +00001882 ! Wait min of 100us for PLL to lock.
1883 ! See CMOS 27E databook for more info.
1884 ! At 200MHz, that means waiting 20,000 instructions
stroeseb867d702003-05-23 11:18:02 +00001885 */
Wolfgang Denkf901a832005-08-06 01:42:58 +02001886 addi r3,0,20000 /* 2000 = 0x4e20 */
1887 mtctr r3
stroeseb867d702003-05-23 11:18:02 +00001888pll_wait:
Wolfgang Denkf901a832005-08-06 01:42:58 +02001889 bdnz pll_wait
stroeseb867d702003-05-23 11:18:02 +00001890
Wolfgang Denkf901a832005-08-06 01:42:58 +02001891 oris r5,r5,0x8000 /* Enable PLL */
1892 mtdcr CPC0_PLLMR1,r5 /* Engage */
stroeseb867d702003-05-23 11:18:02 +00001893
wdenk8bde7f72003-06-27 21:31:46 +00001894 /*
1895 * Reset CPU to guarantee timings are OK
1896 * Not sure if this is needed...
1897 */
1898 addis r3,0,0x1000
Matthias Fuchs58ea1422009-07-22 17:27:56 +02001899 mtspr SPRN_DBCR0,r3 /* This will cause a CPU core reset, and */
Wolfgang Denk53677ef2008-05-20 16:00:29 +02001900 /* execution will continue from the poweron */
1901 /* vector of 0xfffffffc */
stroeseb867d702003-05-23 11:18:02 +00001902#endif /* CONFIG_405EP */
Stefan Roese4745aca2007-02-20 10:57:08 +01001903
1904#if defined(CONFIG_440)
Stefan Roese4745aca2007-02-20 10:57:08 +01001905/*----------------------------------------------------------------------------+
1906| mttlb3.
1907+----------------------------------------------------------------------------*/
1908 function_prolog(mttlb3)
1909 TLBWE(4,3,2)
1910 blr
1911 function_epilog(mttlb3)
1912
1913/*----------------------------------------------------------------------------+
1914| mftlb3.
1915+----------------------------------------------------------------------------*/
1916 function_prolog(mftlb3)
Wolfgang Denk74357112007-02-27 14:26:04 +01001917 TLBRE(3,3,2)
Stefan Roese4745aca2007-02-20 10:57:08 +01001918 blr
1919 function_epilog(mftlb3)
1920
1921/*----------------------------------------------------------------------------+
1922| mttlb2.
1923+----------------------------------------------------------------------------*/
1924 function_prolog(mttlb2)
1925 TLBWE(4,3,1)
1926 blr
1927 function_epilog(mttlb2)
1928
1929/*----------------------------------------------------------------------------+
1930| mftlb2.
1931+----------------------------------------------------------------------------*/
1932 function_prolog(mftlb2)
Wolfgang Denk74357112007-02-27 14:26:04 +01001933 TLBRE(3,3,1)
Stefan Roese4745aca2007-02-20 10:57:08 +01001934 blr
1935 function_epilog(mftlb2)
1936
1937/*----------------------------------------------------------------------------+
1938| mttlb1.
1939+----------------------------------------------------------------------------*/
1940 function_prolog(mttlb1)
1941 TLBWE(4,3,0)
1942 blr
1943 function_epilog(mttlb1)
1944
1945/*----------------------------------------------------------------------------+
1946| mftlb1.
1947+----------------------------------------------------------------------------*/
1948 function_prolog(mftlb1)
Wolfgang Denk74357112007-02-27 14:26:04 +01001949 TLBRE(3,3,0)
Stefan Roese4745aca2007-02-20 10:57:08 +01001950 blr
1951 function_epilog(mftlb1)
1952#endif /* CONFIG_440 */