blob: 65195f528a8d7c884f2531cef1760d14e5062e0c [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 *
9 * See file CREDITS for list of people who contributed to this
10 * project.
11 *
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License as
14 * published by the Free Software Foundation; either version 2 of
15 * the License, or (at your option) any later version.
16 *
17 * This program is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 * GNU General Public License for more details.
21 *
22 * You should have received a copy of the GNU General Public License
23 * along with this program; if not, write to the Free Software
24 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
25 * MA 02111-1307 USA
26 */
Wolfgang Denk83b4cfa2007-06-20 18:14:24 +020027/*------------------------------------------------------------------------------+
Josh Boyer31773492009-08-07 13:53:20 -040028 * This source code is dual-licensed. You may use it under the terms of the
29 * GNU General Public License version 2, or under the license below.
Wolfgang Denk83b4cfa2007-06-20 18:14:24 +020030 *
31 * This source code has been made available to you by IBM on an AS-IS
32 * basis. Anyone receiving this source is licensed under IBM
33 * copyrights to use it in any way he or she deems fit, including
34 * copying it, modifying it, compiling it, and redistributing it either
35 * with or without modifications. No license under IBM patents or
36 * patent applications is to be implied by the copyright license.
37 *
38 * Any user of this software should understand that IBM cannot provide
39 * technical support for this software and will not be responsible for
40 * any consequences resulting from the use of this software.
41 *
42 * Any person who transfers this source code or any derivative work
43 * must include the IBM copyright notice, this paragraph, and the
44 * preceding two paragraphs in the transferred software.
45 *
46 * COPYRIGHT I B M CORPORATION 1995
47 * LICENSED MATERIAL - PROGRAM PROPERTY OF I B M
48 *-------------------------------------------------------------------------------
49 */
wdenk0442ed82002-11-03 10:24:00 +000050
Wolfgang Denk0c8721a2005-09-23 11:05:55 +020051/* U-Boot - Startup Code for AMCC 4xx PowerPC based Embedded Boards
wdenk0442ed82002-11-03 10:24:00 +000052 *
53 *
54 * The processor starts at 0xfffffffc and the code is executed
55 * from flash/rom.
56 * in memory, but as long we don't jump around before relocating.
57 * board_init lies at a quite high address and when the cpu has
58 * jumped there, everything is ok.
59 * This works because the cpu gives the FLASH (CS0) the whole
60 * address space at startup, and board_init lies as a echo of
61 * the flash somewhere up there in the memorymap.
62 *
63 * board_init will change CS0 to be positioned at the correct
64 * address and (s)dram will be positioned at address 0
65 */
Wolfgang Denk25ddd1f2010-10-26 14:34:52 +020066#include <asm-offsets.h>
wdenk0442ed82002-11-03 10:24:00 +000067#include <config.h>
Stefan Roeseb36df562010-09-09 19:18:00 +020068#include <asm/ppc4xx.h>
Peter Tyser561858e2008-11-03 09:30:59 -060069#include <timestamp.h>
wdenk0442ed82002-11-03 10:24:00 +000070#include <version.h>
71
72#define _LINUX_CONFIG_H 1 /* avoid reading Linux autoconf.h file */
73
74#include <ppc_asm.tmpl>
75#include <ppc_defs.h>
76
77#include <asm/cache.h>
78#include <asm/mmu.h>
Dave Mitchellb14ca4b2008-11-20 14:00:49 -060079#include <asm/ppc4xx-isram.h>
wdenk0442ed82002-11-03 10:24:00 +000080
81#ifndef CONFIG_IDENT_STRING
82#define CONFIG_IDENT_STRING ""
83#endif
84
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020085#ifdef CONFIG_SYS_INIT_DCACHE_CS
86# if (CONFIG_SYS_INIT_DCACHE_CS == 0)
Stefan Roesed1c3b272009-09-09 16:25:29 +020087# define PBxAP PB1AP
88# define PBxCR PB0CR
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020089# if (defined(CONFIG_SYS_EBC_PB0AP) && defined(CONFIG_SYS_EBC_PB0CR))
90# define PBxAP_VAL CONFIG_SYS_EBC_PB0AP
91# define PBxCR_VAL CONFIG_SYS_EBC_PB0CR
Grant Ericksonc821b5f2008-05-22 14:44:14 -070092# endif
wdenk0442ed82002-11-03 10:24:00 +000093# endif
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020094# if (CONFIG_SYS_INIT_DCACHE_CS == 1)
Stefan Roesed1c3b272009-09-09 16:25:29 +020095# define PBxAP PB1AP
96# define PBxCR PB1CR
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020097# if (defined(CONFIG_SYS_EBC_PB1AP) && defined(CONFIG_SYS_EBC_PB1CR))
98# define PBxAP_VAL CONFIG_SYS_EBC_PB1AP
99# define PBxCR_VAL CONFIG_SYS_EBC_PB1CR
Grant Ericksonc821b5f2008-05-22 14:44:14 -0700100# endif
wdenk0442ed82002-11-03 10:24:00 +0000101# endif
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200102# if (CONFIG_SYS_INIT_DCACHE_CS == 2)
Stefan Roesed1c3b272009-09-09 16:25:29 +0200103# define PBxAP PB2AP
104# define PBxCR PB2CR
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200105# if (defined(CONFIG_SYS_EBC_PB2AP) && defined(CONFIG_SYS_EBC_PB2CR))
106# define PBxAP_VAL CONFIG_SYS_EBC_PB2AP
107# define PBxCR_VAL CONFIG_SYS_EBC_PB2CR
Grant Ericksonc821b5f2008-05-22 14:44:14 -0700108# endif
wdenk0442ed82002-11-03 10:24:00 +0000109# endif
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200110# if (CONFIG_SYS_INIT_DCACHE_CS == 3)
Stefan Roesed1c3b272009-09-09 16:25:29 +0200111# define PBxAP PB3AP
112# define PBxCR PB3CR
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200113# if (defined(CONFIG_SYS_EBC_PB3AP) && defined(CONFIG_SYS_EBC_PB3CR))
114# define PBxAP_VAL CONFIG_SYS_EBC_PB3AP
115# define PBxCR_VAL CONFIG_SYS_EBC_PB3CR
Grant Ericksonc821b5f2008-05-22 14:44:14 -0700116# endif
wdenk0442ed82002-11-03 10:24:00 +0000117# endif
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200118# if (CONFIG_SYS_INIT_DCACHE_CS == 4)
Stefan Roesed1c3b272009-09-09 16:25:29 +0200119# define PBxAP PB4AP
120# define PBxCR PB4CR
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200121# if (defined(CONFIG_SYS_EBC_PB4AP) && defined(CONFIG_SYS_EBC_PB4CR))
122# define PBxAP_VAL CONFIG_SYS_EBC_PB4AP
123# define PBxCR_VAL CONFIG_SYS_EBC_PB4CR
Grant Ericksonc821b5f2008-05-22 14:44:14 -0700124# endif
wdenk0442ed82002-11-03 10:24:00 +0000125# endif
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200126# if (CONFIG_SYS_INIT_DCACHE_CS == 5)
Stefan Roesed1c3b272009-09-09 16:25:29 +0200127# define PBxAP PB5AP
128# define PBxCR PB5CR
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200129# if (defined(CONFIG_SYS_EBC_PB5AP) && defined(CONFIG_SYS_EBC_PB5CR))
130# define PBxAP_VAL CONFIG_SYS_EBC_PB5AP
131# define PBxCR_VAL CONFIG_SYS_EBC_PB5CR
Grant Ericksonc821b5f2008-05-22 14:44:14 -0700132# endif
wdenk0442ed82002-11-03 10:24:00 +0000133# endif
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200134# if (CONFIG_SYS_INIT_DCACHE_CS == 6)
Stefan Roesed1c3b272009-09-09 16:25:29 +0200135# define PBxAP PB6AP
136# define PBxCR PB6CR
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200137# if (defined(CONFIG_SYS_EBC_PB6AP) && defined(CONFIG_SYS_EBC_PB6CR))
138# define PBxAP_VAL CONFIG_SYS_EBC_PB6AP
139# define PBxCR_VAL CONFIG_SYS_EBC_PB6CR
Grant Ericksonc821b5f2008-05-22 14:44:14 -0700140# endif
wdenk0442ed82002-11-03 10:24:00 +0000141# endif
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200142# if (CONFIG_SYS_INIT_DCACHE_CS == 7)
Stefan Roesed1c3b272009-09-09 16:25:29 +0200143# define PBxAP PB7AP
144# define PBxCR PB7CR
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200145# if (defined(CONFIG_SYS_EBC_PB7AP) && defined(CONFIG_SYS_EBC_PB7CR))
146# define PBxAP_VAL CONFIG_SYS_EBC_PB7AP
147# define PBxCR_VAL CONFIG_SYS_EBC_PB7CR
Grant Ericksonc821b5f2008-05-22 14:44:14 -0700148# endif
149# endif
150# ifndef PBxAP_VAL
151# define PBxAP_VAL 0
152# endif
153# ifndef PBxCR_VAL
154# define PBxCR_VAL 0
155# endif
156/*
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200157 * Memory Bank x (nothingness) initialization CONFIG_SYS_INIT_RAM_ADDR + 64 MiB
Grant Ericksonc821b5f2008-05-22 14:44:14 -0700158 * used as temporary stack pointer for the primordial stack
159 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200160# ifndef CONFIG_SYS_INIT_DCACHE_PBxAR
161# define CONFIG_SYS_INIT_DCACHE_PBxAR (EBC_BXAP_BME_DISABLED | \
Grant Ericksonc821b5f2008-05-22 14:44:14 -0700162 EBC_BXAP_TWT_ENCODE(7) | \
163 EBC_BXAP_BCE_DISABLE | \
164 EBC_BXAP_BCT_2TRANS | \
165 EBC_BXAP_CSN_ENCODE(0) | \
166 EBC_BXAP_OEN_ENCODE(0) | \
167 EBC_BXAP_WBN_ENCODE(0) | \
168 EBC_BXAP_WBF_ENCODE(0) | \
169 EBC_BXAP_TH_ENCODE(2) | \
170 EBC_BXAP_RE_DISABLED | \
171 EBC_BXAP_SOR_NONDELAYED | \
172 EBC_BXAP_BEM_WRITEONLY | \
173 EBC_BXAP_PEN_DISABLED)
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200174# endif /* CONFIG_SYS_INIT_DCACHE_PBxAR */
175# ifndef CONFIG_SYS_INIT_DCACHE_PBxCR
176# define CONFIG_SYS_INIT_DCACHE_PBxCR (EBC_BXCR_BAS_ENCODE(CONFIG_SYS_INIT_RAM_ADDR) | \
Grant Ericksonc821b5f2008-05-22 14:44:14 -0700177 EBC_BXCR_BS_64MB | \
178 EBC_BXCR_BU_RW | \
179 EBC_BXCR_BW_16BIT)
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200180# endif /* CONFIG_SYS_INIT_DCACHE_PBxCR */
181# ifndef CONFIG_SYS_INIT_RAM_PATTERN
182# define CONFIG_SYS_INIT_RAM_PATTERN 0xDEADDEAD
wdenk0442ed82002-11-03 10:24:00 +0000183# endif
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200184#endif /* CONFIG_SYS_INIT_DCACHE_CS */
wdenk0442ed82002-11-03 10:24:00 +0000185
Wolfgang Denk553f0982010-10-26 13:32:32 +0200186#if (defined(CONFIG_SYS_INIT_RAM_DCACHE) && (CONFIG_SYS_INIT_RAM_SIZE > (4 << 10)))
187#error Only 4k of init-ram is supported - please adjust CONFIG_SYS_INIT_RAM_SIZE!
Stefan Roese28d77d92008-01-30 14:48:28 +0100188#endif
189
Grant Ericksonc821b5f2008-05-22 14:44:14 -0700190/*
191 * Unless otherwise overriden, enable two 128MB cachable instruction regions
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200192 * at CONFIG_SYS_SDRAM_BASE and another 128MB cacheable instruction region covering
193 * NOR flash at CONFIG_SYS_FLASH_BASE. Disable all cacheable data regions.
Grant Ericksonc821b5f2008-05-22 14:44:14 -0700194 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200195#if !defined(CONFIG_SYS_FLASH_BASE)
Stefan Roese64852d02008-06-02 14:35:44 +0200196/* If not already defined, set it to the "last" 128MByte region */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200197# define CONFIG_SYS_FLASH_BASE 0xf8000000
Stefan Roese64852d02008-06-02 14:35:44 +0200198#endif
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200199#if !defined(CONFIG_SYS_ICACHE_SACR_VALUE)
200# define CONFIG_SYS_ICACHE_SACR_VALUE \
201 (PPC_128MB_SACR_VALUE(CONFIG_SYS_SDRAM_BASE + ( 0 << 20)) | \
202 PPC_128MB_SACR_VALUE(CONFIG_SYS_SDRAM_BASE + (128 << 20)) | \
203 PPC_128MB_SACR_VALUE(CONFIG_SYS_FLASH_BASE))
204#endif /* !defined(CONFIG_SYS_ICACHE_SACR_VALUE) */
Grant Ericksonc821b5f2008-05-22 14:44:14 -0700205
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200206#if !defined(CONFIG_SYS_DCACHE_SACR_VALUE)
207# define CONFIG_SYS_DCACHE_SACR_VALUE \
Grant Ericksonc821b5f2008-05-22 14:44:14 -0700208 (0x00000000)
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200209#endif /* !defined(CONFIG_SYS_DCACHE_SACR_VALUE) */
Grant Ericksonc821b5f2008-05-22 14:44:14 -0700210
Stefan Roese4978e602010-05-27 16:45:20 +0200211#if !defined(CONFIG_SYS_TLB_FOR_BOOT_FLASH)
212#define CONFIG_SYS_TLB_FOR_BOOT_FLASH 0 /* use TLB 0 as default */
213#endif
214
Wolfgang Denk83b4cfa2007-06-20 18:14:24 +0200215#define function_prolog(func_name) .text; \
Stefan Roesecf959c72007-06-01 15:27:11 +0200216 .align 2; \
217 .globl func_name; \
218 func_name:
Wolfgang Denk83b4cfa2007-06-20 18:14:24 +0200219#define function_epilog(func_name) .type func_name,@function; \
Stefan Roesecf959c72007-06-01 15:27:11 +0200220 .size func_name,.-func_name
221
wdenk0442ed82002-11-03 10:24:00 +0000222/* We don't want the MMU yet.
223*/
224#undef MSR_KERNEL
225#define MSR_KERNEL ( MSR_ME ) /* Machine Check */
226
227
228 .extern ext_bus_cntlr_init
Stefan Roese887e2ec2006-09-07 11:51:23 +0200229#ifdef CONFIG_NAND_U_BOOT
230 .extern reconfig_tlb0
231#endif
wdenk0442ed82002-11-03 10:24:00 +0000232
233/*
234 * Set up GOT: Global Offset Table
235 *
Joakim Tjernlund0f8aa152010-01-19 14:41:56 +0100236 * Use r12 to access the GOT
wdenk0442ed82002-11-03 10:24:00 +0000237 */
Stefan Roese887e2ec2006-09-07 11:51:23 +0200238#if !defined(CONFIG_NAND_SPL)
wdenk0442ed82002-11-03 10:24:00 +0000239 START_GOT
240 GOT_ENTRY(_GOT2_TABLE_)
241 GOT_ENTRY(_FIXUP_TABLE_)
242
243 GOT_ENTRY(_start)
244 GOT_ENTRY(_start_of_vectors)
245 GOT_ENTRY(_end_of_vectors)
246 GOT_ENTRY(transfer_to_handler)
247
wdenk3b57fe02003-05-30 12:48:29 +0000248 GOT_ENTRY(__init_end)
wdenk0442ed82002-11-03 10:24:00 +0000249 GOT_ENTRY(_end)
wdenk5d232d02003-05-22 22:52:13 +0000250 GOT_ENTRY(__bss_start)
wdenk0442ed82002-11-03 10:24:00 +0000251 END_GOT
Stefan Roese887e2ec2006-09-07 11:51:23 +0200252#endif /* CONFIG_NAND_SPL */
253
254#if defined(CONFIG_NAND_U_BOOT) && !defined(CONFIG_NAND_SPL)
255 /*
256 * NAND U-Boot image is started from offset 0
257 */
258 .text
Stefan Roesec440bfe2007-06-06 11:42:13 +0200259#if defined(CONFIG_440)
Stefan Roese887e2ec2006-09-07 11:51:23 +0200260 bl reconfig_tlb0
Stefan Roesec440bfe2007-06-06 11:42:13 +0200261#endif
Stefan Roese887e2ec2006-09-07 11:51:23 +0200262 GET_GOT
263 bl cpu_init_f /* run low-level CPU init code (from Flash) */
264 bl board_init_f
Peter Tyser52ebd9c2010-09-14 19:13:53 -0500265 /* NOTREACHED - board_init_f() does not return */
Stefan Roese887e2ec2006-09-07 11:51:23 +0200266#endif
wdenk0442ed82002-11-03 10:24:00 +0000267
Stefan Roesed8731332009-05-11 13:46:14 +0200268#if defined(CONFIG_SYS_RAMBOOT)
269 /*
270 * 4xx RAM-booting U-Boot image is started from offset 0
271 */
272 .text
273 bl _start_440
274#endif
275
wdenk0442ed82002-11-03 10:24:00 +0000276/*
277 * 440 Startup -- on reset only the top 4k of the effective
278 * address space is mapped in by an entry in the instruction
279 * and data shadow TLB. The .bootpg section is located in the
280 * top 4k & does only what's necessary to map in the the rest
281 * of the boot rom. Once the boot rom is mapped in we can
282 * proceed with normal startup.
283 *
284 * NOTE: CS0 only covers the top 2MB of the effective address
285 * space after reset.
286 */
287
288#if defined(CONFIG_440)
Stefan Roese887e2ec2006-09-07 11:51:23 +0200289#if !defined(CONFIG_NAND_SPL)
wdenk0442ed82002-11-03 10:24:00 +0000290 .section .bootpg,"ax"
Stefan Roese887e2ec2006-09-07 11:51:23 +0200291#endif
wdenk0442ed82002-11-03 10:24:00 +0000292 .globl _start_440
293
294/**************************************************************************/
295_start_440:
Wolfgang Denk511d0c72006-10-09 00:42:01 +0200296 /*--------------------------------------------------------------------+
297 | 440EPX BUP Change - Hardware team request
298 +--------------------------------------------------------------------*/
Stefan Roese887e2ec2006-09-07 11:51:23 +0200299#if defined(CONFIG_440EPX) || defined(CONFIG_440GRX)
300 sync
301 nop
302 nop
303#endif
Marian Balakowicz6c5879f2006-06-30 16:30:46 +0200304 /*----------------------------------------------------------------+
305 | Core bug fix. Clear the esr
306 +-----------------------------------------------------------------*/
Marian Balakowiczedd6cf22006-07-06 21:17:24 +0200307 li r0,0
Matthias Fuchs58ea1422009-07-22 17:27:56 +0200308 mtspr SPRN_ESR,r0
wdenk0442ed82002-11-03 10:24:00 +0000309 /*----------------------------------------------------------------*/
310 /* Clear and set up some registers. */
311 /*----------------------------------------------------------------*/
Wolfgang Denkf901a832005-08-06 01:42:58 +0200312 iccci r0,r0 /* NOTE: operands not used for 440 */
313 dccci r0,r0 /* NOTE: operands not used for 440 */
wdenk0442ed82002-11-03 10:24:00 +0000314 sync
315 li r0,0
Matthias Fuchs58ea1422009-07-22 17:27:56 +0200316 mtspr SPRN_SRR0,r0
317 mtspr SPRN_SRR1,r0
318 mtspr SPRN_CSRR0,r0
319 mtspr SPRN_CSRR1,r0
Stefan Roese887e2ec2006-09-07 11:51:23 +0200320 /* NOTE: 440GX adds machine check status regs */
321#if defined(CONFIG_440) && !defined(CONFIG_440GP)
Matthias Fuchs58ea1422009-07-22 17:27:56 +0200322 mtspr SPRN_MCSRR0,r0
323 mtspr SPRN_MCSRR1,r0
324 mfspr r1,SPRN_MCSR
325 mtspr SPRN_MCSR,r1
wdenkba56f622004-02-06 23:19:44 +0000326#endif
Stefan Roese20532832006-11-22 13:20:50 +0100327
328 /*----------------------------------------------------------------*/
329 /* CCR0 init */
330 /*----------------------------------------------------------------*/
331 /* Disable store gathering & broadcast, guarantee inst/data
332 * cache block touch, force load/store alignment
333 * (see errata 1.12: 440_33)
334 */
335 lis r1,0x0030 /* store gathering & broadcast disable */
336 ori r1,r1,0x6000 /* cache touch */
Matthias Fuchs58ea1422009-07-22 17:27:56 +0200337 mtspr SPRN_CCR0,r1
Stefan Roese20532832006-11-22 13:20:50 +0100338
wdenk0442ed82002-11-03 10:24:00 +0000339 /*----------------------------------------------------------------*/
340 /* Initialize debug */
341 /*----------------------------------------------------------------*/
Matthias Fuchs58ea1422009-07-22 17:27:56 +0200342 mfspr r1,SPRN_DBCR0
Stefan Roese887e2ec2006-09-07 11:51:23 +0200343 andis. r1, r1, 0x8000 /* test DBCR0[EDM] bit */
344 bne skip_debug_init /* if set, don't clear debug register */
Victor Gallardoad876ff2010-09-16 11:32:04 -0700345 mfspr r1,SPRN_CCR0
346 ori r1,r1,CCR0_DTB@l /* Disable Trace Broadcast */
347 mtspr SPRN_CCR0,r1
Matthias Fuchs58ea1422009-07-22 17:27:56 +0200348 mtspr SPRN_DBCR0,r0
349 mtspr SPRN_DBCR1,r0
350 mtspr SPRN_DBCR2,r0
351 mtspr SPRN_IAC1,r0
352 mtspr SPRN_IAC2,r0
353 mtspr SPRN_IAC3,r0
354 mtspr SPRN_DAC1,r0
355 mtspr SPRN_DAC2,r0
356 mtspr SPRN_DVC1,r0
357 mtspr SPRN_DVC2,r0
wdenk0442ed82002-11-03 10:24:00 +0000358
Matthias Fuchs58ea1422009-07-22 17:27:56 +0200359 mfspr r1,SPRN_DBSR
360 mtspr SPRN_DBSR,r1 /* Clear all valid bits */
Stefan Roese887e2ec2006-09-07 11:51:23 +0200361skip_debug_init:
wdenk0442ed82002-11-03 10:24:00 +0000362
Marian Balakowicz6c5879f2006-06-30 16:30:46 +0200363#if defined (CONFIG_440SPE)
364 /*----------------------------------------------------------------+
365 | Initialize Core Configuration Reg1.
366 | a. ICDPEI: Record even parity. Normal operation.
367 | b. ICTPEI: Record even parity. Normal operation.
368 | c. DCTPEI: Record even parity. Normal operation.
369 | d. DCDPEI: Record even parity. Normal operation.
370 | e. DCUPEI: Record even parity. Normal operation.
371 | f. DCMPEI: Record even parity. Normal operation.
372 | g. FCOM: Normal operation
373 | h. MMUPEI: Record even parity. Normal operation.
374 | i. FFF: Flush only as much data as necessary.
Marian Balakowiczedd6cf22006-07-06 21:17:24 +0200375 | j. TCS: Timebase increments from CPU clock.
Marian Balakowicz6c5879f2006-06-30 16:30:46 +0200376 +-----------------------------------------------------------------*/
Marian Balakowiczedd6cf22006-07-06 21:17:24 +0200377 li r0,0
Matthias Fuchs58ea1422009-07-22 17:27:56 +0200378 mtspr SPRN_CCR1, r0
Marian Balakowicz6c5879f2006-06-30 16:30:46 +0200379
380 /*----------------------------------------------------------------+
381 | Reset the timebase.
382 | The previous write to CCR1 sets the timebase source.
383 +-----------------------------------------------------------------*/
Matthias Fuchs58ea1422009-07-22 17:27:56 +0200384 mtspr SPRN_TBWL, r0
385 mtspr SPRN_TBWU, r0
Marian Balakowicz6c5879f2006-06-30 16:30:46 +0200386#endif
387
wdenk0442ed82002-11-03 10:24:00 +0000388 /*----------------------------------------------------------------*/
389 /* Setup interrupt vectors */
390 /*----------------------------------------------------------------*/
Matthias Fuchs58ea1422009-07-22 17:27:56 +0200391 mtspr SPRN_IVPR,r0 /* Vectors start at 0x0000_0000 */
Wolfgang Denkf901a832005-08-06 01:42:58 +0200392 li r1,0x0100
Matthias Fuchs58ea1422009-07-22 17:27:56 +0200393 mtspr SPRN_IVOR0,r1 /* Critical input */
Wolfgang Denkf901a832005-08-06 01:42:58 +0200394 li r1,0x0200
Matthias Fuchs58ea1422009-07-22 17:27:56 +0200395 mtspr SPRN_IVOR1,r1 /* Machine check */
Wolfgang Denkf901a832005-08-06 01:42:58 +0200396 li r1,0x0300
Matthias Fuchs58ea1422009-07-22 17:27:56 +0200397 mtspr SPRN_IVOR2,r1 /* Data storage */
Wolfgang Denkf901a832005-08-06 01:42:58 +0200398 li r1,0x0400
Matthias Fuchs58ea1422009-07-22 17:27:56 +0200399 mtspr SPRN_IVOR3,r1 /* Instruction storage */
wdenk0442ed82002-11-03 10:24:00 +0000400 li r1,0x0500
Matthias Fuchs58ea1422009-07-22 17:27:56 +0200401 mtspr SPRN_IVOR4,r1 /* External interrupt */
wdenk0442ed82002-11-03 10:24:00 +0000402 li r1,0x0600
Matthias Fuchs58ea1422009-07-22 17:27:56 +0200403 mtspr SPRN_IVOR5,r1 /* Alignment */
wdenk0442ed82002-11-03 10:24:00 +0000404 li r1,0x0700
Matthias Fuchs58ea1422009-07-22 17:27:56 +0200405 mtspr SPRN_IVOR6,r1 /* Program check */
wdenk0442ed82002-11-03 10:24:00 +0000406 li r1,0x0800
Matthias Fuchs58ea1422009-07-22 17:27:56 +0200407 mtspr SPRN_IVOR7,r1 /* Floating point unavailable */
wdenk0442ed82002-11-03 10:24:00 +0000408 li r1,0x0c00
Matthias Fuchs58ea1422009-07-22 17:27:56 +0200409 mtspr SPRN_IVOR8,r1 /* System call */
Grzegorz Bernackiefa35cf2007-06-15 11:19:28 +0200410 li r1,0x0a00
Matthias Fuchs58ea1422009-07-22 17:27:56 +0200411 mtspr SPRN_IVOR9,r1 /* Auxiliary Processor unavailable */
Grzegorz Bernackiefa35cf2007-06-15 11:19:28 +0200412 li r1,0x0900
Matthias Fuchs58ea1422009-07-22 17:27:56 +0200413 mtspr SPRN_IVOR10,r1 /* Decrementer */
wdenk0442ed82002-11-03 10:24:00 +0000414 li r1,0x1300
Matthias Fuchs58ea1422009-07-22 17:27:56 +0200415 mtspr SPRN_IVOR13,r1 /* Data TLB error */
Grzegorz Bernackiefa35cf2007-06-15 11:19:28 +0200416 li r1,0x1400
Matthias Fuchs58ea1422009-07-22 17:27:56 +0200417 mtspr SPRN_IVOR14,r1 /* Instr TLB error */
wdenk0442ed82002-11-03 10:24:00 +0000418 li r1,0x2000
Matthias Fuchs58ea1422009-07-22 17:27:56 +0200419 mtspr SPRN_IVOR15,r1 /* Debug */
wdenk0442ed82002-11-03 10:24:00 +0000420
421 /*----------------------------------------------------------------*/
422 /* Configure cache regions */
423 /*----------------------------------------------------------------*/
Matthias Fuchs58ea1422009-07-22 17:27:56 +0200424 mtspr SPRN_INV0,r0
425 mtspr SPRN_INV1,r0
426 mtspr SPRN_INV2,r0
427 mtspr SPRN_INV3,r0
428 mtspr SPRN_DNV0,r0
429 mtspr SPRN_DNV1,r0
430 mtspr SPRN_DNV2,r0
431 mtspr SPRN_DNV3,r0
432 mtspr SPRN_ITV0,r0
433 mtspr SPRN_ITV1,r0
434 mtspr SPRN_ITV2,r0
435 mtspr SPRN_ITV3,r0
436 mtspr SPRN_DTV0,r0
437 mtspr SPRN_DTV1,r0
438 mtspr SPRN_DTV2,r0
439 mtspr SPRN_DTV3,r0
wdenk0442ed82002-11-03 10:24:00 +0000440
441 /*----------------------------------------------------------------*/
442 /* Cache victim limits */
443 /*----------------------------------------------------------------*/
444 /* floors 0, ceiling max to use the entire cache -- nothing locked
445 */
446 lis r1,0x0001
447 ori r1,r1,0xf800
Matthias Fuchs58ea1422009-07-22 17:27:56 +0200448 mtspr SPRN_IVLIM,r1
449 mtspr SPRN_DVLIM,r1
wdenk0442ed82002-11-03 10:24:00 +0000450
Marian Balakowicz6c5879f2006-06-30 16:30:46 +0200451 /*----------------------------------------------------------------+
452 |Initialize MMUCR[STID] = 0.
453 +-----------------------------------------------------------------*/
Matthias Fuchs58ea1422009-07-22 17:27:56 +0200454 mfspr r0,SPRN_MMUCR
Marian Balakowicz6c5879f2006-06-30 16:30:46 +0200455 addis r1,0,0xFFFF
456 ori r1,r1,0xFF00
457 and r0,r0,r1
Matthias Fuchs58ea1422009-07-22 17:27:56 +0200458 mtspr SPRN_MMUCR,r0
Marian Balakowicz6c5879f2006-06-30 16:30:46 +0200459
wdenk0442ed82002-11-03 10:24:00 +0000460 /*----------------------------------------------------------------*/
461 /* Clear all TLB entries -- TID = 0, TS = 0 */
462 /*----------------------------------------------------------------*/
Marian Balakowicz6c5879f2006-06-30 16:30:46 +0200463 addis r0,0,0x0000
Stefan Roese0a371ca2009-07-14 15:53:08 +0200464#ifdef CONFIG_SYS_RAMBOOT
Stefan Roesed8731332009-05-11 13:46:14 +0200465 li r4,0 /* Start with TLB #0 */
Stefan Roese0a371ca2009-07-14 15:53:08 +0200466#else
467 li r4,1 /* Start with TLB #1 */
468#endif
469 li r1,64 /* 64 TLB entries */
470 sub r1,r1,r4 /* calculate last TLB # */
471 mtctr r1
Stefan Roesed8731332009-05-11 13:46:14 +0200472rsttlb:
473#ifdef CONFIG_SYS_RAMBOOT
474 tlbre r3,r4,0 /* Read contents from TLB word #0 to get EPN */
475 rlwinm. r3,r3,0,0xfffffc00 /* Mask EPN */
476 beq tlbnxt /* Skip EPN=0 TLB, this is the SDRAM TLB */
477#endif
478 tlbwe r0,r4,0 /* Invalidate all entries (V=0)*/
479 tlbwe r0,r4,1
480 tlbwe r0,r4,2
481tlbnxt: addi r4,r4,1 /* Next TLB */
Marian Balakowicz6c5879f2006-06-30 16:30:46 +0200482 bdnz rsttlb
wdenk0442ed82002-11-03 10:24:00 +0000483
484 /*----------------------------------------------------------------*/
485 /* TLB entry setup -- step thru tlbtab */
486 /*----------------------------------------------------------------*/
Stefan Roese2a72e9e2010-04-09 14:03:59 +0200487#if defined(CONFIG_440SPE_REVA)
Rafal Jaworowski692519b2006-08-10 12:43:17 +0200488 /*----------------------------------------------------------------*/
489 /* We have different TLB tables for revA and rev B of 440SPe */
490 /*----------------------------------------------------------------*/
491 mfspr r1, PVR
492 lis r0,0x5342
493 ori r0,r0,0x1891
494 cmpw r7,r1,r0
495 bne r7,..revA
496 bl tlbtabB
497 b ..goon
498..revA:
499 bl tlbtabA
500..goon:
501#else
wdenk0442ed82002-11-03 10:24:00 +0000502 bl tlbtab /* Get tlbtab pointer */
Rafal Jaworowski692519b2006-08-10 12:43:17 +0200503#endif
wdenk0442ed82002-11-03 10:24:00 +0000504 mr r5,r0
505 li r1,0x003f /* 64 TLB entries max */
506 mtctr r1
507 li r4,0 /* TLB # */
508
509 addi r5,r5,-4
Stefan Roesed8731332009-05-11 13:46:14 +02005101:
511#ifdef CONFIG_SYS_RAMBOOT
512 tlbre r3,r4,0 /* Read contents from TLB word #0 */
513 rlwinm. r3,r3,0,0x00000200 /* Mask V (valid) bit */
514 bne tlbnx2 /* Skip V=1 TLB, this is the SDRAM TLB */
515#endif
516 lwzu r0,4(r5)
wdenk0442ed82002-11-03 10:24:00 +0000517 cmpwi r0,0
518 beq 2f /* 0 marks end */
519 lwzu r1,4(r5)
520 lwzu r2,4(r5)
521 tlbwe r0,r4,0 /* TLB Word 0 */
522 tlbwe r1,r4,1 /* TLB Word 1 */
523 tlbwe r2,r4,2 /* TLB Word 2 */
Stefan Roesed8731332009-05-11 13:46:14 +0200524tlbnx2: addi r4,r4,1 /* Next TLB */
wdenk0442ed82002-11-03 10:24:00 +0000525 bdnz 1b
526
527 /*----------------------------------------------------------------*/
528 /* Continue from 'normal' start */
529 /*----------------------------------------------------------------*/
Stefan Roese887e2ec2006-09-07 11:51:23 +02005302:
Stefan Roese887e2ec2006-09-07 11:51:23 +0200531 bl 3f
wdenk0442ed82002-11-03 10:24:00 +0000532 b _start
533
5343: li r0,0
Matthias Fuchs58ea1422009-07-22 17:27:56 +0200535 mtspr SPRN_SRR1,r0 /* Keep things disabled for now */
wdenk0442ed82002-11-03 10:24:00 +0000536 mflr r1
Matthias Fuchs58ea1422009-07-22 17:27:56 +0200537 mtspr SPRN_SRR0,r1
wdenk0442ed82002-11-03 10:24:00 +0000538 rfi
stroeseb867d702003-05-23 11:18:02 +0000539#endif /* CONFIG_440 */
wdenk0442ed82002-11-03 10:24:00 +0000540
541/*
542 * r3 - 1st arg to board_init(): IMMP pointer
543 * r4 - 2nd arg to board_init(): boot flag
544 */
Stefan Roese887e2ec2006-09-07 11:51:23 +0200545#ifndef CONFIG_NAND_SPL
wdenk0442ed82002-11-03 10:24:00 +0000546 .text
547 .long 0x27051956 /* U-Boot Magic Number */
548 .globl version_string
549version_string:
550 .ascii U_BOOT_VERSION
Peter Tyser561858e2008-11-03 09:30:59 -0600551 .ascii " (", U_BOOT_DATE, " - ", U_BOOT_TIME, ")"
wdenk0442ed82002-11-03 10:24:00 +0000552 .ascii CONFIG_IDENT_STRING, "\0"
553
wdenk0442ed82002-11-03 10:24:00 +0000554 . = EXC_OFF_SYS_RESET
Grzegorz Bernackiefa35cf2007-06-15 11:19:28 +0200555 .globl _start_of_vectors
556_start_of_vectors:
557
558/* Critical input. */
559 CRIT_EXCEPTION(0x100, CritcalInput, UnknownException)
560
561#ifdef CONFIG_440
562/* Machine check */
Wolfgang Denk83b4cfa2007-06-20 18:14:24 +0200563 MCK_EXCEPTION(0x200, MachineCheck, MachineCheckException)
Grzegorz Bernackiefa35cf2007-06-15 11:19:28 +0200564#else
Wolfgang Denk83b4cfa2007-06-20 18:14:24 +0200565 CRIT_EXCEPTION(0x200, MachineCheck, MachineCheckException)
Grzegorz Bernackiefa35cf2007-06-15 11:19:28 +0200566#endif /* CONFIG_440 */
567
568/* Data Storage exception. */
569 STD_EXCEPTION(0x300, DataStorage, UnknownException)
570
571/* Instruction Storage exception. */
572 STD_EXCEPTION(0x400, InstStorage, UnknownException)
573
574/* External Interrupt exception. */
575 STD_EXCEPTION(0x500, ExtInterrupt, external_interrupt)
576
577/* Alignment exception. */
578 . = 0x600
579Alignment:
580 EXCEPTION_PROLOG(SRR0, SRR1)
581 mfspr r4,DAR
582 stw r4,_DAR(r21)
583 mfspr r5,DSISR
584 stw r5,_DSISR(r21)
585 addi r3,r1,STACK_FRAME_OVERHEAD
Joakim Tjernlundfc4e1882010-01-19 14:41:55 +0100586 EXC_XFER_TEMPLATE(Alignment, AlignmentException, MSR_KERNEL, COPY_EE)
Grzegorz Bernackiefa35cf2007-06-15 11:19:28 +0200587
588/* Program check exception */
589 . = 0x700
590ProgramCheck:
591 EXCEPTION_PROLOG(SRR0, SRR1)
592 addi r3,r1,STACK_FRAME_OVERHEAD
Joakim Tjernlundfc4e1882010-01-19 14:41:55 +0100593 EXC_XFER_TEMPLATE(ProgramCheck, ProgramCheckException,
594 MSR_KERNEL, COPY_EE)
Grzegorz Bernackiefa35cf2007-06-15 11:19:28 +0200595
596#ifdef CONFIG_440
597 STD_EXCEPTION(0x800, FPUnavailable, UnknownException)
598 STD_EXCEPTION(0x900, Decrementer, DecrementerPITException)
599 STD_EXCEPTION(0xa00, APU, UnknownException)
Stefan Roesedf8a24c2007-06-19 16:42:31 +0200600#endif
Grzegorz Bernackiefa35cf2007-06-15 11:19:28 +0200601 STD_EXCEPTION(0xc00, SystemCall, UnknownException)
602
603#ifdef CONFIG_440
604 STD_EXCEPTION(0x1300, DataTLBError, UnknownException)
605 STD_EXCEPTION(0x1400, InstructionTLBError, UnknownException)
606#else
607 STD_EXCEPTION(0x1000, PIT, DecrementerPITException)
608 STD_EXCEPTION(0x1100, InstructionTLBMiss, UnknownException)
609 STD_EXCEPTION(0x1200, DataTLBMiss, UnknownException)
610#endif
611 CRIT_EXCEPTION(0x2000, DebugBreakpoint, DebugException )
612
613 .globl _end_of_vectors
614_end_of_vectors:
615 . = _START_OFFSET
Stefan Roese887e2ec2006-09-07 11:51:23 +0200616#endif
wdenk0442ed82002-11-03 10:24:00 +0000617 .globl _start
618_start:
619
620/*****************************************************************************/
621#if defined(CONFIG_440)
622
623 /*----------------------------------------------------------------*/
624 /* Clear and set up some registers. */
625 /*----------------------------------------------------------------*/
626 li r0,0x0000
627 lis r1,0xffff
Matthias Fuchs58ea1422009-07-22 17:27:56 +0200628 mtspr SPRN_DEC,r0 /* prevent dec exceptions */
629 mtspr SPRN_TBWL,r0 /* prevent fit & wdt exceptions */
630 mtspr SPRN_TBWU,r0
631 mtspr SPRN_TSR,r1 /* clear all timer exception status */
632 mtspr SPRN_TCR,r0 /* disable all */
633 mtspr SPRN_ESR,r0 /* clear exception syndrome register */
wdenk0442ed82002-11-03 10:24:00 +0000634 mtxer r0 /* clear integer exception register */
wdenk0442ed82002-11-03 10:24:00 +0000635
636 /*----------------------------------------------------------------*/
637 /* Debug setup -- some (not very good) ice's need an event*/
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200638 /* to establish control :-( Define CONFIG_SYS_INIT_DBCR to the dbsr */
wdenk0442ed82002-11-03 10:24:00 +0000639 /* value you need in this case 0x8cff 0000 should do the trick */
640 /*----------------------------------------------------------------*/
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200641#if defined(CONFIG_SYS_INIT_DBCR)
wdenk0442ed82002-11-03 10:24:00 +0000642 lis r1,0xffff
643 ori r1,r1,0xffff
Matthias Fuchs58ea1422009-07-22 17:27:56 +0200644 mtspr SPRN_DBSR,r1 /* Clear all status bits */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200645 lis r0,CONFIG_SYS_INIT_DBCR@h
646 ori r0,r0,CONFIG_SYS_INIT_DBCR@l
Matthias Fuchs58ea1422009-07-22 17:27:56 +0200647 mtspr SPRN_DBCR0,r0
wdenk0442ed82002-11-03 10:24:00 +0000648 isync
649#endif
650
651 /*----------------------------------------------------------------*/
652 /* Setup the internal SRAM */
653 /*----------------------------------------------------------------*/
654 li r0,0
Stefan Roese887e2ec2006-09-07 11:51:23 +0200655
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200656#ifdef CONFIG_SYS_INIT_RAM_DCACHE
Stefan Roesec157d8e2005-08-01 16:41:48 +0200657 /* Clear Dcache to use as RAM */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200658 addis r3,r0,CONFIG_SYS_INIT_RAM_ADDR@h
659 ori r3,r3,CONFIG_SYS_INIT_RAM_ADDR@l
Wolfgang Denk553f0982010-10-26 13:32:32 +0200660 addis r4,r0,CONFIG_SYS_INIT_RAM_SIZE@h
661 ori r4,r4,CONFIG_SYS_INIT_RAM_SIZE@l
Stefan Roesec157d8e2005-08-01 16:41:48 +0200662 rlwinm. r5,r4,0,27,31
Wolfgang Denkf901a832005-08-06 01:42:58 +0200663 rlwinm r5,r4,27,5,31
664 beq ..d_ran
665 addi r5,r5,0x0001
Stefan Roesec157d8e2005-08-01 16:41:48 +0200666..d_ran:
Wolfgang Denkf901a832005-08-06 01:42:58 +0200667 mtctr r5
Stefan Roesec157d8e2005-08-01 16:41:48 +0200668..d_ag:
Wolfgang Denkf901a832005-08-06 01:42:58 +0200669 dcbz r0,r3
670 addi r3,r3,32
671 bdnz ..d_ag
Stefan Roesee02c5212008-01-09 10:23:16 +0100672
673 /*
674 * Lock the init-ram/stack in d-cache, so that other regions
675 * may use d-cache as well
676 * Note, that this current implementation locks exactly 4k
677 * of d-cache, so please make sure that you don't define a
678 * bigger init-ram area. Take a look at the lwmon5 440EPx
679 * implementation as a reference.
680 */
681 msync
682 isync
683 /* 8. set TFLOOR/NFLOOR to 8 (-> 8*16*32 bytes locked -> 4k) */
684 lis r1,0x0201
685 ori r1,r1,0xf808
Matthias Fuchs58ea1422009-07-22 17:27:56 +0200686 mtspr SPRN_DVLIM,r1
Stefan Roesee02c5212008-01-09 10:23:16 +0100687 lis r1,0x0808
688 ori r1,r1,0x0808
Matthias Fuchs58ea1422009-07-22 17:27:56 +0200689 mtspr SPRN_DNV0,r1
690 mtspr SPRN_DNV1,r1
691 mtspr SPRN_DNV2,r1
692 mtspr SPRN_DNV3,r1
693 mtspr SPRN_DTV0,r1
694 mtspr SPRN_DTV1,r1
695 mtspr SPRN_DTV2,r1
696 mtspr SPRN_DTV3,r1
Stefan Roesee02c5212008-01-09 10:23:16 +0100697 msync
698 isync
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200699#endif /* CONFIG_SYS_INIT_RAM_DCACHE */
Stefan Roese887e2ec2006-09-07 11:51:23 +0200700
701 /* 440EP & 440GR are only 440er PPC's without internal SRAM */
702#if !defined(CONFIG_440EP) && !defined(CONFIG_440GR)
703 /* not all PPC's have internal SRAM usable as L2-cache */
Stefan Roese2801b2d2008-03-11 15:05:50 +0100704#if defined(CONFIG_440GX) || \
705 defined(CONFIG_440SP) || defined(CONFIG_440SPE) || \
Feng Kan7d307932008-07-08 22:47:31 -0700706 defined(CONFIG_460SX)
Dave Mitchellb14ca4b2008-11-20 14:00:49 -0600707 mtdcr L2_CACHE_CFG,r0 /* Ensure L2 Cache is off */
Tirumala Marri1b8fec12010-09-28 14:15:14 -0700708#elif defined(CONFIG_460EX) || defined(CONFIG_460GT) || \
709 defined(CONFIG_APM821XX)
Dave Mitchellddf45cc2008-11-20 14:09:50 -0600710 lis r1, 0x0000
711 ori r1,r1,0x0008 /* Set L2_CACHE_CFG[RDBW]=1 */
712 mtdcr L2_CACHE_CFG,r1
wdenkba56f622004-02-06 23:19:44 +0000713#endif
wdenk0442ed82002-11-03 10:24:00 +0000714
Stefan Roese887e2ec2006-09-07 11:51:23 +0200715 lis r2,0x7fff
wdenk0442ed82002-11-03 10:24:00 +0000716 ori r2,r2,0xffff
Dave Mitchellb14ca4b2008-11-20 14:00:49 -0600717 mfdcr r1,ISRAM0_DPC
wdenk0442ed82002-11-03 10:24:00 +0000718 and r1,r1,r2 /* Disable parity check */
Dave Mitchellb14ca4b2008-11-20 14:00:49 -0600719 mtdcr ISRAM0_DPC,r1
720 mfdcr r1,ISRAM0_PMEG
Stefan Roese887e2ec2006-09-07 11:51:23 +0200721 and r1,r1,r2 /* Disable pwr mgmt */
Dave Mitchellb14ca4b2008-11-20 14:00:49 -0600722 mtdcr ISRAM0_PMEG,r1
wdenk0442ed82002-11-03 10:24:00 +0000723
724 lis r1,0x8000 /* BAS = 8000_0000 */
Stefan Roese6e7fb6e2005-11-29 18:18:21 +0100725#if defined(CONFIG_440GX) || defined(CONFIG_440SP)
wdenkba56f622004-02-06 23:19:44 +0000726 ori r1,r1,0x0980 /* first 64k */
Dave Mitchellb14ca4b2008-11-20 14:00:49 -0600727 mtdcr ISRAM0_SB0CR,r1
wdenkba56f622004-02-06 23:19:44 +0000728 lis r1,0x8001
729 ori r1,r1,0x0980 /* second 64k */
Dave Mitchellb14ca4b2008-11-20 14:00:49 -0600730 mtdcr ISRAM0_SB1CR,r1
wdenkba56f622004-02-06 23:19:44 +0000731 lis r1, 0x8002
732 ori r1,r1, 0x0980 /* third 64k */
Dave Mitchellb14ca4b2008-11-20 14:00:49 -0600733 mtdcr ISRAM0_SB2CR,r1
wdenkba56f622004-02-06 23:19:44 +0000734 lis r1, 0x8003
735 ori r1,r1, 0x0980 /* fourth 64k */
Dave Mitchellb14ca4b2008-11-20 14:00:49 -0600736 mtdcr ISRAM0_SB3CR,r1
Tirumala Marri1b8fec12010-09-28 14:15:14 -0700737#elif defined(CONFIG_440SPE) || defined(CONFIG_460EX) || \
738 defined(CONFIG_460GT) || defined(CONFIG_APM821XX)
Dave Mitchellddf45cc2008-11-20 14:09:50 -0600739 lis r1,0x0000 /* BAS = X_0000_0000 */
Marian Balakowicz6c5879f2006-06-30 16:30:46 +0200740 ori r1,r1,0x0984 /* first 64k */
Dave Mitchellb14ca4b2008-11-20 14:00:49 -0600741 mtdcr ISRAM0_SB0CR,r1
Marian Balakowicz6c5879f2006-06-30 16:30:46 +0200742 lis r1,0x0001
743 ori r1,r1,0x0984 /* second 64k */
Dave Mitchellb14ca4b2008-11-20 14:00:49 -0600744 mtdcr ISRAM0_SB1CR,r1
Marian Balakowicz6c5879f2006-06-30 16:30:46 +0200745 lis r1, 0x0002
746 ori r1,r1, 0x0984 /* third 64k */
Dave Mitchellb14ca4b2008-11-20 14:00:49 -0600747 mtdcr ISRAM0_SB2CR,r1
Marian Balakowicz6c5879f2006-06-30 16:30:46 +0200748 lis r1, 0x0003
749 ori r1,r1, 0x0984 /* fourth 64k */
Dave Mitchellb14ca4b2008-11-20 14:00:49 -0600750 mtdcr ISRAM0_SB3CR,r1
Tirumala Marri1b8fec12010-09-28 14:15:14 -0700751#if defined(CONFIG_460EX) || defined(CONFIG_460GT) || \
752 defined(CONFIG_APM821XX)
Dave Mitchellddf45cc2008-11-20 14:09:50 -0600753 lis r2,0x7fff
754 ori r2,r2,0xffff
755 mfdcr r1,ISRAM1_DPC
756 and r1,r1,r2 /* Disable parity check */
Wolfgang Denk455ae7e2008-12-16 01:02:17 +0100757 mtdcr ISRAM1_DPC,r1
Dave Mitchellddf45cc2008-11-20 14:09:50 -0600758 mfdcr r1,ISRAM1_PMEG
759 and r1,r1,r2 /* Disable pwr mgmt */
760 mtdcr ISRAM1_PMEG,r1
761
762 lis r1,0x0004 /* BAS = 4_0004_0000 */
Tirumala Marri1b8fec12010-09-28 14:15:14 -0700763 ori r1,r1,ISRAM1_SIZE /* ocm size */
Dave Mitchellddf45cc2008-11-20 14:09:50 -0600764 mtdcr ISRAM1_SB0CR,r1
765#endif
Feng Kan7d307932008-07-08 22:47:31 -0700766#elif defined(CONFIG_460SX)
767 lis r1,0x0000 /* BAS = 0000_0000 */
768 ori r1,r1,0x0B84 /* first 128k */
Dave Mitchellb14ca4b2008-11-20 14:00:49 -0600769 mtdcr ISRAM0_SB0CR,r1
Feng Kan7d307932008-07-08 22:47:31 -0700770 lis r1,0x0001
771 ori r1,r1,0x0B84 /* second 128k */
Dave Mitchellb14ca4b2008-11-20 14:00:49 -0600772 mtdcr ISRAM0_SB1CR,r1
Feng Kan7d307932008-07-08 22:47:31 -0700773 lis r1, 0x0002
774 ori r1,r1, 0x0B84 /* third 128k */
Dave Mitchellb14ca4b2008-11-20 14:00:49 -0600775 mtdcr ISRAM0_SB2CR,r1
Feng Kan7d307932008-07-08 22:47:31 -0700776 lis r1, 0x0003
777 ori r1,r1, 0x0B84 /* fourth 128k */
Dave Mitchellb14ca4b2008-11-20 14:00:49 -0600778 mtdcr ISRAM0_SB3CR,r1
Stefan Roese887e2ec2006-09-07 11:51:23 +0200779#elif defined(CONFIG_440GP)
wdenk0442ed82002-11-03 10:24:00 +0000780 ori r1,r1,0x0380 /* 8k rw */
Dave Mitchellb14ca4b2008-11-20 14:00:49 -0600781 mtdcr ISRAM0_SB0CR,r1
782 mtdcr ISRAM0_SB1CR,r0 /* Disable bank 1 */
wdenkba56f622004-02-06 23:19:44 +0000783#endif
Stefan Roese887e2ec2006-09-07 11:51:23 +0200784#endif /* #if !defined(CONFIG_440EP) && !defined(CONFIG_440GR) */
wdenk0442ed82002-11-03 10:24:00 +0000785
786 /*----------------------------------------------------------------*/
787 /* Setup the stack in internal SRAM */
788 /*----------------------------------------------------------------*/
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200789 lis r1,CONFIG_SYS_INIT_RAM_ADDR@h
790 ori r1,r1,CONFIG_SYS_INIT_SP_OFFSET@l
wdenk0442ed82002-11-03 10:24:00 +0000791 li r0,0
792 stwu r0,-4(r1)
793 stwu r0,-4(r1) /* Terminate call chain */
794
795 stwu r1,-8(r1) /* Save back chain and move SP */
796 lis r0,RESET_VECTOR@h /* Address of reset vector */
797 ori r0,r0, RESET_VECTOR@l
798 stwu r1,-8(r1) /* Save back chain and move SP */
799 stw r0,+12(r1) /* Save return addr (underflow vect) */
800
Stefan Roese887e2ec2006-09-07 11:51:23 +0200801#ifdef CONFIG_NAND_SPL
Stefan Roese64852d02008-06-02 14:35:44 +0200802 bl nand_boot_common /* will not return */
Stefan Roese887e2ec2006-09-07 11:51:23 +0200803#else
wdenk0442ed82002-11-03 10:24:00 +0000804 GET_GOT
Stefan Roese5568e612005-11-22 13:20:42 +0100805
806 bl cpu_init_f /* run low-level CPU init code (from Flash) */
wdenk0442ed82002-11-03 10:24:00 +0000807 bl board_init_f
Peter Tyser52ebd9c2010-09-14 19:13:53 -0500808 /* NOTREACHED - board_init_f() does not return */
Stefan Roese887e2ec2006-09-07 11:51:23 +0200809#endif
wdenk0442ed82002-11-03 10:24:00 +0000810
811#endif /* CONFIG_440 */
812
813/*****************************************************************************/
814#ifdef CONFIG_IOP480
815 /*----------------------------------------------------------------------- */
816 /* Set up some machine state registers. */
817 /*----------------------------------------------------------------------- */
818 addi r0,r0,0x0000 /* initialize r0 to zero */
Matthias Fuchs58ea1422009-07-22 17:27:56 +0200819 mtspr SPRN_ESR,r0 /* clear Exception Syndrome Reg */
wdenk0442ed82002-11-03 10:24:00 +0000820 mttcr r0 /* timer control register */
821 mtexier r0 /* disable all interrupts */
wdenk0442ed82002-11-03 10:24:00 +0000822 addis r4,r0,0xFFFF /* set r4 to 0xFFFFFFFF (status in the */
823 ori r4,r4,0xFFFF /* dbsr is cleared by setting bits to 1) */
824 mtdbsr r4 /* clear/reset the dbsr */
825 mtexisr r4 /* clear all pending interrupts */
826 addis r4,r0,0x8000
827 mtexier r4 /* enable critical exceptions */
828 addis r4,r0,0x0000 /* assume 403GCX - enable core clk */
829 ori r4,r4,0x4020 /* dbling (no harm done on GA and GC */
830 mtiocr r4 /* since bit not used) & DRC to latch */
831 /* data bus on rising edge of CAS */
832 /*----------------------------------------------------------------------- */
833 /* Clear XER. */
834 /*----------------------------------------------------------------------- */
835 mtxer r0
836 /*----------------------------------------------------------------------- */
837 /* Invalidate i-cache and d-cache TAG arrays. */
838 /*----------------------------------------------------------------------- */
839 addi r3,0,1024 /* 1/4 of I-cache size, half of D-cache */
840 addi r4,0,1024 /* 1/4 of I-cache */
841..cloop:
842 iccci 0,r3
843 iccci r4,r3
844 dccci 0,r3
845 addic. r3,r3,-16 /* move back one cache line */
846 bne ..cloop /* loop back to do rest until r3 = 0 */
847
848 /* */
849 /* initialize IOP480 so it can read 1 MB code area for SRAM spaces */
850 /* this requires enabling MA[17..0], by default only MA[12..0] are enabled. */
851 /* */
852
853 /* first copy IOP480 register base address into r3 */
854 addis r3,0,0x5000 /* IOP480 register base address hi */
855/* ori r3,r3,0x0000 / IOP480 register base address lo */
856
857#ifdef CONFIG_ADCIOP
858 /* use r4 as the working variable */
859 /* turn on CS3 (LOCCTL.7) */
860 lwz r4,0x84(r3) /* LOCTL is at offset 0x84 */
861 andi. r4,r4,0xff7f /* make bit 7 = 0 -- CS3 mode */
862 stw r4,0x84(r3) /* LOCTL is at offset 0x84 */
863#endif
864
865#ifdef CONFIG_DASA_SIM
866 /* use r4 as the working variable */
867 /* turn on MA17 (LOCCTL.7) */
868 lwz r4,0x84(r3) /* LOCTL is at offset 0x84 */
869 ori r4,r4,0x80 /* make bit 7 = 1 -- MA17 mode */
870 stw r4,0x84(r3) /* LOCTL is at offset 0x84 */
871#endif
872
873 /* turn on MA16..13 (LCS0BRD.12 = 0) */
874 lwz r4,0x100(r3) /* LCS0BRD is at offset 0x100 */
875 andi. r4,r4,0xefff /* make bit 12 = 0 */
876 stw r4,0x100(r3) /* LCS0BRD is at offset 0x100 */
877
878 /* make sure above stores all comlete before going on */
879 sync
880
881 /* last thing, set local init status done bit (DEVINIT.31) */
882 lwz r4,0x80(r3) /* DEVINIT is at offset 0x80 */
883 oris r4,r4,0x8000 /* make bit 31 = 1 */
884 stw r4,0x80(r3) /* DEVINIT is at offset 0x80 */
885
886 /* clear all pending interrupts and disable all interrupts */
887 li r4,-1 /* set p1 to 0xffffffff */
888 stw r4,0x1b0(r3) /* clear all pending interrupts */
889 stw r4,0x1b8(r3) /* clear all pending interrupts */
890 li r4,0 /* set r4 to 0 */
891 stw r4,0x1b4(r3) /* disable all interrupts */
892 stw r4,0x1bc(r3) /* disable all interrupts */
893
894 /* make sure above stores all comlete before going on */
895 sync
896
Grant Ericksonc821b5f2008-05-22 14:44:14 -0700897 /* Set-up icache cacheability. */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200898 lis r1, CONFIG_SYS_ICACHE_SACR_VALUE@h
899 ori r1, r1, CONFIG_SYS_ICACHE_SACR_VALUE@l
Grant Ericksonc821b5f2008-05-22 14:44:14 -0700900 mticcr r1
901 isync
wdenk0442ed82002-11-03 10:24:00 +0000902
Grant Ericksonc821b5f2008-05-22 14:44:14 -0700903 /* Set-up dcache cacheability. */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200904 lis r1, CONFIG_SYS_DCACHE_SACR_VALUE@h
905 ori r1, r1, CONFIG_SYS_DCACHE_SACR_VALUE@l
Grant Ericksonc821b5f2008-05-22 14:44:14 -0700906 mtdccr r1
wdenk0442ed82002-11-03 10:24:00 +0000907
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200908 addis r1,r0,CONFIG_SYS_INIT_RAM_ADDR@h
909 ori r1,r1,CONFIG_SYS_INIT_SP_OFFSET /* set up the stack to SDRAM */
wdenk0442ed82002-11-03 10:24:00 +0000910 li r0, 0 /* Make room for stack frame header and */
911 stwu r0, -4(r1) /* clear final stack frame so that */
912 stwu r0, -4(r1) /* stack backtraces terminate cleanly */
913
914 GET_GOT /* initialize GOT access */
915
916 bl board_init_f /* run first part of init code (from Flash) */
Peter Tyser52ebd9c2010-09-14 19:13:53 -0500917 /* NOTREACHED - board_init_f() does not return */
wdenk0442ed82002-11-03 10:24:00 +0000918
919#endif /* CONFIG_IOP480 */
920
921/*****************************************************************************/
Stefan Roesee01bd212007-03-21 13:38:59 +0100922#if defined(CONFIG_405GP) || defined(CONFIG_405CR) || \
923 defined(CONFIG_405EP) || defined(CONFIG_405EZ) || \
Stefan Roesedbbd1252007-10-05 17:10:59 +0200924 defined(CONFIG_405EX) || defined(CONFIG_405)
wdenk0442ed82002-11-03 10:24:00 +0000925 /*----------------------------------------------------------------------- */
926 /* Clear and set up some registers. */
927 /*----------------------------------------------------------------------- */
928 addi r4,r0,0x0000
Stefan Roesedbbd1252007-10-05 17:10:59 +0200929#if !defined(CONFIG_405EX)
Matthias Fuchs58ea1422009-07-22 17:27:56 +0200930 mtspr SPRN_SGR,r4
Stefan Roesedbbd1252007-10-05 17:10:59 +0200931#else
932 /*
933 * On 405EX, completely clearing the SGR leads to PPC hangup
934 * upon PCIe configuration access. The PCIe memory regions
935 * need to be guarded!
936 */
937 lis r3,0x0000
938 ori r3,r3,0x7FFC
Matthias Fuchs58ea1422009-07-22 17:27:56 +0200939 mtspr SPRN_SGR,r3
Stefan Roesedbbd1252007-10-05 17:10:59 +0200940#endif
Matthias Fuchs58ea1422009-07-22 17:27:56 +0200941 mtspr SPRN_DCWR,r4
wdenk0442ed82002-11-03 10:24:00 +0000942 mtesr r4 /* clear Exception Syndrome Reg */
943 mttcr r4 /* clear Timer Control Reg */
944 mtxer r4 /* clear Fixed-Point Exception Reg */
945 mtevpr r4 /* clear Exception Vector Prefix Reg */
wdenk0442ed82002-11-03 10:24:00 +0000946 addi r4,r0,(0xFFFF-0x10000) /* set r4 to 0xFFFFFFFF (status in the */
947 /* dbsr is cleared by setting bits to 1) */
948 mtdbsr r4 /* clear/reset the dbsr */
949
Grant Ericksonc821b5f2008-05-22 14:44:14 -0700950 /* Invalidate the i- and d-caches. */
wdenk0442ed82002-11-03 10:24:00 +0000951 bl invalidate_icache
952 bl invalidate_dcache
953
Grant Ericksonc821b5f2008-05-22 14:44:14 -0700954 /* Set-up icache cacheability. */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200955 lis r4, CONFIG_SYS_ICACHE_SACR_VALUE@h
956 ori r4, r4, CONFIG_SYS_ICACHE_SACR_VALUE@l
Grant Ericksonc821b5f2008-05-22 14:44:14 -0700957 mticcr r4
wdenk0442ed82002-11-03 10:24:00 +0000958 isync
959
Grant Ericksonc821b5f2008-05-22 14:44:14 -0700960 /* Set-up dcache cacheability. */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200961 lis r4, CONFIG_SYS_DCACHE_SACR_VALUE@h
962 ori r4, r4, CONFIG_SYS_DCACHE_SACR_VALUE@l
Grant Ericksonc821b5f2008-05-22 14:44:14 -0700963 mtdccr r4
wdenk0442ed82002-11-03 10:24:00 +0000964
Ricardo Ribalda Delgado1f4d5322008-10-21 18:29:46 +0200965#if !(defined(CONFIG_SYS_EBC_PB0AP) && defined(CONFIG_SYS_EBC_PB0CR))\
966 && !defined (CONFIG_XILINX_405)
wdenk0442ed82002-11-03 10:24:00 +0000967 /*----------------------------------------------------------------------- */
968 /* Tune the speed and size for flash CS0 */
969 /*----------------------------------------------------------------------- */
970 bl ext_bus_cntlr_init
971#endif
Stefan Roese64852d02008-06-02 14:35:44 +0200972
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200973#if !(defined(CONFIG_SYS_INIT_DCACHE_CS) || defined(CONFIG_SYS_TEMP_STACK_OCM))
Stefan Roesedbbd1252007-10-05 17:10:59 +0200974 /*
Grant Ericksonc821b5f2008-05-22 14:44:14 -0700975 * For boards that don't have OCM and can't use the data cache
976 * for their primordial stack, setup stack here directly after the
977 * SDRAM is initialized in ext_bus_cntlr_init.
Stefan Roesedbbd1252007-10-05 17:10:59 +0200978 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200979 lis r1, CONFIG_SYS_INIT_RAM_ADDR@h
980 ori r1,r1,CONFIG_SYS_INIT_SP_OFFSET /* set up the stack in SDRAM */
Stefan Roesedbbd1252007-10-05 17:10:59 +0200981
982 li r0, 0 /* Make room for stack frame header and */
983 stwu r0, -4(r1) /* clear final stack frame so that */
984 stwu r0, -4(r1) /* stack backtraces terminate cleanly */
985 /*
986 * Set up a dummy frame to store reset vector as return address.
987 * this causes stack underflow to reset board.
988 */
989 stwu r1, -8(r1) /* Save back chain and move SP */
990 lis r0, RESET_VECTOR@h /* Address of reset vector */
991 ori r0, r0, RESET_VECTOR@l
992 stwu r1, -8(r1) /* Save back chain and move SP */
993 stw r0, +12(r1) /* Save return addr (underflow vect) */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200994#endif /* !(CONFIG_SYS_INIT_DCACHE_CS || !CONFIG_SYS_TEM_STACK_OCM) */
wdenk0442ed82002-11-03 10:24:00 +0000995
stroeseb867d702003-05-23 11:18:02 +0000996#if defined(CONFIG_405EP)
997 /*----------------------------------------------------------------------- */
998 /* DMA Status, clear to come up clean */
999 /*----------------------------------------------------------------------- */
Wolfgang Denk53677ef2008-05-20 16:00:29 +02001000 addis r3,r0, 0xFFFF /* Clear all existing DMA status */
Wolfgang Denkf901a832005-08-06 01:42:58 +02001001 ori r3,r3, 0xFFFF
Stefan Roesed1c3b272009-09-09 16:25:29 +02001002 mtdcr DMASR, r3
stroeseb867d702003-05-23 11:18:02 +00001003
Wolfgang Denk53677ef2008-05-20 16:00:29 +02001004 bl ppc405ep_init /* do ppc405ep specific init */
stroeseb867d702003-05-23 11:18:02 +00001005#endif /* CONFIG_405EP */
1006
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001007#if defined(CONFIG_SYS_OCM_DATA_ADDR) && defined(CONFIG_SYS_OCM_DATA_SIZE)
Stefan Roesee01bd212007-03-21 13:38:59 +01001008#if defined(CONFIG_405EZ)
1009 /********************************************************************
1010 * Setup OCM - On Chip Memory - PPC405EZ uses OCM Controller V2
1011 *******************************************************************/
1012 /*
1013 * We can map the OCM on the PLB3, so map it at
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001014 * CONFIG_SYS_OCM_DATA_ADDR + 0x8000
Stefan Roesee01bd212007-03-21 13:38:59 +01001015 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001016 lis r3,CONFIG_SYS_OCM_DATA_ADDR@h /* OCM location */
1017 ori r3,r3,CONFIG_SYS_OCM_DATA_ADDR@l
Stefan Roesedf8a24c2007-06-19 16:42:31 +02001018 ori r3,r3,0x0270 /* 16K for Bank 1, R/W/Enable */
Stefan Roesed1c3b272009-09-09 16:25:29 +02001019 mtdcr OCM0_PLBCR1,r3 /* Set PLB Access */
Stefan Roesee01bd212007-03-21 13:38:59 +01001020 ori r3,r3,0x4000 /* Add 0x4000 for bank 2 */
Stefan Roesed1c3b272009-09-09 16:25:29 +02001021 mtdcr OCM0_PLBCR2,r3 /* Set PLB Access */
Stefan Roesee01bd212007-03-21 13:38:59 +01001022 isync
1023
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001024 lis r3,CONFIG_SYS_OCM_DATA_ADDR@h /* OCM location */
1025 ori r3,r3,CONFIG_SYS_OCM_DATA_ADDR@l
Wolfgang Denk83b4cfa2007-06-20 18:14:24 +02001026 ori r3,r3,0x0270 /* 16K for Bank 1, R/W/Enable */
Stefan Roesed1c3b272009-09-09 16:25:29 +02001027 mtdcr OCM0_DSRC1, r3 /* Set Data Side */
1028 mtdcr OCM0_ISRC1, r3 /* Set Instruction Side */
Stefan Roesee01bd212007-03-21 13:38:59 +01001029 ori r3,r3,0x4000 /* Add 0x4000 for bank 2 */
Stefan Roesed1c3b272009-09-09 16:25:29 +02001030 mtdcr OCM0_DSRC2, r3 /* Set Data Side */
1031 mtdcr OCM0_ISRC2, r3 /* Set Instruction Side */
Wolfgang Denk83b4cfa2007-06-20 18:14:24 +02001032 addis r3,0,0x0800 /* OCM Data Parity Disable - 1 Wait State */
Stefan Roesed1c3b272009-09-09 16:25:29 +02001033 mtdcr OCM0_DISDPC,r3
Stefan Roesee01bd212007-03-21 13:38:59 +01001034
1035 isync
Stefan Roese3cb86f32007-03-24 15:45:34 +01001036#else /* CONFIG_405EZ */
wdenk0442ed82002-11-03 10:24:00 +00001037 /********************************************************************
1038 * Setup OCM - On Chip Memory
1039 *******************************************************************/
1040 /* Setup OCM */
wdenk8bde7f72003-06-27 21:31:46 +00001041 lis r0, 0x7FFF
1042 ori r0, r0, 0xFFFF
Stefan Roesed1c3b272009-09-09 16:25:29 +02001043 mfdcr r3, OCM0_ISCNTL /* get instr-side IRAM config */
1044 mfdcr r4, OCM0_DSCNTL /* get data-side IRAM config */
Stefan Roese3cb86f32007-03-24 15:45:34 +01001045 and r3, r3, r0 /* disable data-side IRAM */
1046 and r4, r4, r0 /* disable data-side IRAM */
Stefan Roesed1c3b272009-09-09 16:25:29 +02001047 mtdcr OCM0_ISCNTL, r3 /* set instr-side IRAM config */
1048 mtdcr OCM0_DSCNTL, r4 /* set data-side IRAM config */
wdenk8bde7f72003-06-27 21:31:46 +00001049 isync
wdenk0442ed82002-11-03 10:24:00 +00001050
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001051 lis r3,CONFIG_SYS_OCM_DATA_ADDR@h /* OCM location */
1052 ori r3,r3,CONFIG_SYS_OCM_DATA_ADDR@l
Stefan Roesed1c3b272009-09-09 16:25:29 +02001053 mtdcr OCM0_DSARC, r3
wdenk0442ed82002-11-03 10:24:00 +00001054 addis r4, 0, 0xC000 /* OCM data area enabled */
Stefan Roesed1c3b272009-09-09 16:25:29 +02001055 mtdcr OCM0_DSCNTL, r4
wdenk8bde7f72003-06-27 21:31:46 +00001056 isync
Stefan Roesee01bd212007-03-21 13:38:59 +01001057#endif /* CONFIG_405EZ */
wdenk0442ed82002-11-03 10:24:00 +00001058#endif
1059
1060 /*----------------------------------------------------------------------- */
1061 /* Setup temporary stack in DCACHE or OCM if needed for SDRAM SPD. */
1062 /*----------------------------------------------------------------------- */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001063#ifdef CONFIG_SYS_INIT_DCACHE_CS
Grant Ericksonc821b5f2008-05-22 14:44:14 -07001064 li r4, PBxAP
Stefan Roesed1c3b272009-09-09 16:25:29 +02001065 mtdcr EBC0_CFGADDR, r4
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001066 lis r4, CONFIG_SYS_INIT_DCACHE_PBxAR@h
1067 ori r4, r4, CONFIG_SYS_INIT_DCACHE_PBxAR@l
Stefan Roesed1c3b272009-09-09 16:25:29 +02001068 mtdcr EBC0_CFGDATA, r4
wdenk0442ed82002-11-03 10:24:00 +00001069
Grant Ericksonc821b5f2008-05-22 14:44:14 -07001070 addi r4, 0, PBxCR
Stefan Roesed1c3b272009-09-09 16:25:29 +02001071 mtdcr EBC0_CFGADDR, r4
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001072 lis r4, CONFIG_SYS_INIT_DCACHE_PBxCR@h
1073 ori r4, r4, CONFIG_SYS_INIT_DCACHE_PBxCR@l
Stefan Roesed1c3b272009-09-09 16:25:29 +02001074 mtdcr EBC0_CFGDATA, r4
wdenk0442ed82002-11-03 10:24:00 +00001075
Grant Ericksonc821b5f2008-05-22 14:44:14 -07001076 /*
1077 * Enable the data cache for the 128MB storage access control region
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001078 * at CONFIG_SYS_INIT_RAM_ADDR.
Grant Ericksonc821b5f2008-05-22 14:44:14 -07001079 */
1080 mfdccr r4
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001081 oris r4, r4, PPC_128MB_SACR_VALUE(CONFIG_SYS_INIT_RAM_ADDR)@h
1082 ori r4, r4, PPC_128MB_SACR_VALUE(CONFIG_SYS_INIT_RAM_ADDR)@l
wdenk0442ed82002-11-03 10:24:00 +00001083 mtdccr r4
1084
Grant Ericksonc821b5f2008-05-22 14:44:14 -07001085 /*
1086 * Preallocate data cache lines to be used to avoid a subsequent
1087 * cache miss and an ensuing machine check exception when exceptions
1088 * are enabled.
1089 */
1090 li r0, 0
wdenk0442ed82002-11-03 10:24:00 +00001091
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001092 lis r3, CONFIG_SYS_INIT_RAM_ADDR@h
1093 ori r3, r3, CONFIG_SYS_INIT_RAM_ADDR@l
wdenk0442ed82002-11-03 10:24:00 +00001094
Wolfgang Denk553f0982010-10-26 13:32:32 +02001095 lis r4, CONFIG_SYS_INIT_RAM_SIZE@h
1096 ori r4, r4, CONFIG_SYS_INIT_RAM_SIZE@l
Grant Ericksonc821b5f2008-05-22 14:44:14 -07001097
1098 /*
1099 * Convert the size, in bytes, to the number of cache lines/blocks
1100 * to preallocate.
1101 */
1102 clrlwi. r5, r4, (32 - L1_CACHE_SHIFT)
1103 srwi r5, r4, L1_CACHE_SHIFT
1104 beq ..load_counter
1105 addi r5, r5, 0x0001
1106..load_counter:
1107 mtctr r5
1108
1109 /* Preallocate the computed number of cache blocks. */
1110..alloc_dcache_block:
1111 dcba r0, r3
1112 addi r3, r3, L1_CACHE_BYTES
1113 bdnz ..alloc_dcache_block
1114 sync
1115
1116 /*
1117 * Load the initial stack pointer and data area and convert the size,
1118 * in bytes, to the number of words to initialize to a known value.
1119 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001120 lis r1, CONFIG_SYS_INIT_RAM_ADDR@h
1121 ori r1, r1, CONFIG_SYS_INIT_SP_OFFSET@l
Grant Ericksonc821b5f2008-05-22 14:44:14 -07001122
Wolfgang Denk553f0982010-10-26 13:32:32 +02001123 lis r4, (CONFIG_SYS_INIT_RAM_SIZE >> 2)@h
1124 ori r4, r4, (CONFIG_SYS_INIT_RAM_SIZE >> 2)@l
wdenk0442ed82002-11-03 10:24:00 +00001125 mtctr r4
1126
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001127 lis r2, CONFIG_SYS_INIT_RAM_ADDR@h
Wolfgang Denk553f0982010-10-26 13:32:32 +02001128 ori r2, r2, CONFIG_SYS_INIT_RAM_SIZE@l
wdenk0442ed82002-11-03 10:24:00 +00001129
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001130 lis r4, CONFIG_SYS_INIT_RAM_PATTERN@h
1131 ori r4, r4, CONFIG_SYS_INIT_RAM_PATTERN@l
wdenk0442ed82002-11-03 10:24:00 +00001132
1133..stackloop:
Grant Ericksonc821b5f2008-05-22 14:44:14 -07001134 stwu r4, -4(r2)
wdenk0442ed82002-11-03 10:24:00 +00001135 bdnz ..stackloop
1136
Grant Ericksonc821b5f2008-05-22 14:44:14 -07001137 /*
1138 * Make room for stack frame header and clear final stack frame so
1139 * that stack backtraces terminate cleanly.
1140 */
1141 stwu r0, -4(r1)
1142 stwu r0, -4(r1)
1143
wdenk0442ed82002-11-03 10:24:00 +00001144 /*
1145 * Set up a dummy frame to store reset vector as return address.
1146 * this causes stack underflow to reset board.
1147 */
1148 stwu r1, -8(r1) /* Save back chain and move SP */
1149 addis r0, 0, RESET_VECTOR@h /* Address of reset vector */
1150 ori r0, r0, RESET_VECTOR@l
1151 stwu r1, -8(r1) /* Save back chain and move SP */
1152 stw r0, +12(r1) /* Save return addr (underflow vect) */
1153
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001154#elif defined(CONFIG_SYS_TEMP_STACK_OCM) && \
1155 (defined(CONFIG_SYS_OCM_DATA_ADDR) && defined(CONFIG_SYS_OCM_DATA_SIZE))
wdenk0442ed82002-11-03 10:24:00 +00001156 /*
1157 * Stack in OCM.
1158 */
1159
1160 /* Set up Stack at top of OCM */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001161 lis r1, (CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_INIT_SP_OFFSET)@h
1162 ori r1, r1, (CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_INIT_SP_OFFSET)@l
wdenk0442ed82002-11-03 10:24:00 +00001163
1164 /* Set up a zeroized stack frame so that backtrace works right */
1165 li r0, 0
1166 stwu r0, -4(r1)
1167 stwu r0, -4(r1)
1168
1169 /*
1170 * Set up a dummy frame to store reset vector as return address.
1171 * this causes stack underflow to reset board.
1172 */
1173 stwu r1, -8(r1) /* Save back chain and move SP */
1174 lis r0, RESET_VECTOR@h /* Address of reset vector */
1175 ori r0, r0, RESET_VECTOR@l
1176 stwu r1, -8(r1) /* Save back chain and move SP */
1177 stw r0, +12(r1) /* Save return addr (underflow vect) */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001178#endif /* CONFIG_SYS_INIT_DCACHE_CS */
wdenk0442ed82002-11-03 10:24:00 +00001179
Stefan Roesec440bfe2007-06-06 11:42:13 +02001180#ifdef CONFIG_NAND_SPL
Stefan Roese64852d02008-06-02 14:35:44 +02001181 bl nand_boot_common /* will not return */
Stefan Roesec440bfe2007-06-06 11:42:13 +02001182#else
wdenk0442ed82002-11-03 10:24:00 +00001183 GET_GOT /* initialize GOT access */
1184
Wolfgang Denkf901a832005-08-06 01:42:58 +02001185 bl cpu_init_f /* run low-level CPU init code (from Flash) */
wdenk0442ed82002-11-03 10:24:00 +00001186
wdenk0442ed82002-11-03 10:24:00 +00001187 bl board_init_f /* run first part of init code (from Flash) */
Peter Tyser52ebd9c2010-09-14 19:13:53 -05001188 /* NOTREACHED - board_init_f() does not return */
1189
Stefan Roesec440bfe2007-06-06 11:42:13 +02001190#endif /* CONFIG_NAND_SPL */
wdenk0442ed82002-11-03 10:24:00 +00001191
wdenk12f34242003-09-02 22:48:03 +00001192#endif /* CONFIG_405GP || CONFIG_405CR || CONFIG_405 || CONFIG_405EP */
1193 /*----------------------------------------------------------------------- */
wdenk0442ed82002-11-03 10:24:00 +00001194
1195
Stefan Roese887e2ec2006-09-07 11:51:23 +02001196#ifndef CONFIG_NAND_SPL
wdenk0442ed82002-11-03 10:24:00 +00001197/*
1198 * This code finishes saving the registers to the exception frame
1199 * and jumps to the appropriate handler for the exception.
1200 * Register r21 is pointer into trap frame, r1 has new stack pointer.
1201 */
1202 .globl transfer_to_handler
1203transfer_to_handler:
1204 stw r22,_NIP(r21)
1205 lis r22,MSR_POW@h
1206 andc r23,r23,r22
1207 stw r23,_MSR(r21)
1208 SAVE_GPR(7, r21)
1209 SAVE_4GPRS(8, r21)
1210 SAVE_8GPRS(12, r21)
1211 SAVE_8GPRS(24, r21)
wdenk0442ed82002-11-03 10:24:00 +00001212 mflr r23
1213 andi. r24,r23,0x3f00 /* get vector offset */
1214 stw r24,TRAP(r21)
1215 li r22,0
1216 stw r22,RESULT(r21)
1217 mtspr SPRG2,r22 /* r1 is now kernel sp */
wdenk0442ed82002-11-03 10:24:00 +00001218 lwz r24,0(r23) /* virtual address of handler */
1219 lwz r23,4(r23) /* where to go when done */
1220 mtspr SRR0,r24
1221 mtspr SRR1,r20
1222 mtlr r23
1223 SYNC
1224 rfi /* jump to handler, enable MMU */
1225
1226int_return:
1227 mfmsr r28 /* Disable interrupts */
1228 li r4,0
1229 ori r4,r4,MSR_EE
1230 andc r28,r28,r4
1231 SYNC /* Some chip revs need this... */
1232 mtmsr r28
1233 SYNC
1234 lwz r2,_CTR(r1)
1235 lwz r0,_LINK(r1)
1236 mtctr r2
1237 mtlr r0
1238 lwz r2,_XER(r1)
1239 lwz r0,_CCR(r1)
1240 mtspr XER,r2
1241 mtcrf 0xFF,r0
1242 REST_10GPRS(3, r1)
1243 REST_10GPRS(13, r1)
1244 REST_8GPRS(23, r1)
1245 REST_GPR(31, r1)
1246 lwz r2,_NIP(r1) /* Restore environment */
1247 lwz r0,_MSR(r1)
1248 mtspr SRR0,r2
1249 mtspr SRR1,r0
1250 lwz r0,GPR0(r1)
1251 lwz r2,GPR2(r1)
1252 lwz r1,GPR1(r1)
1253 SYNC
1254 rfi
1255
1256crit_return:
1257 mfmsr r28 /* Disable interrupts */
1258 li r4,0
1259 ori r4,r4,MSR_EE
1260 andc r28,r28,r4
1261 SYNC /* Some chip revs need this... */
1262 mtmsr r28
1263 SYNC
1264 lwz r2,_CTR(r1)
1265 lwz r0,_LINK(r1)
1266 mtctr r2
1267 mtlr r0
1268 lwz r2,_XER(r1)
1269 lwz r0,_CCR(r1)
1270 mtspr XER,r2
1271 mtcrf 0xFF,r0
1272 REST_10GPRS(3, r1)
1273 REST_10GPRS(13, r1)
1274 REST_8GPRS(23, r1)
1275 REST_GPR(31, r1)
1276 lwz r2,_NIP(r1) /* Restore environment */
1277 lwz r0,_MSR(r1)
Matthias Fuchs58ea1422009-07-22 17:27:56 +02001278 mtspr SPRN_CSRR0,r2
1279 mtspr SPRN_CSRR1,r0
wdenk0442ed82002-11-03 10:24:00 +00001280 lwz r0,GPR0(r1)
1281 lwz r2,GPR2(r1)
1282 lwz r1,GPR1(r1)
1283 SYNC
1284 rfci
1285
Grzegorz Bernackiefa35cf2007-06-15 11:19:28 +02001286#ifdef CONFIG_440
1287mck_return:
Wolfgang Denk83b4cfa2007-06-20 18:14:24 +02001288 mfmsr r28 /* Disable interrupts */
1289 li r4,0
1290 ori r4,r4,MSR_EE
1291 andc r28,r28,r4
1292 SYNC /* Some chip revs need this... */
1293 mtmsr r28
1294 SYNC
1295 lwz r2,_CTR(r1)
1296 lwz r0,_LINK(r1)
1297 mtctr r2
1298 mtlr r0
1299 lwz r2,_XER(r1)
1300 lwz r0,_CCR(r1)
1301 mtspr XER,r2
1302 mtcrf 0xFF,r0
1303 REST_10GPRS(3, r1)
1304 REST_10GPRS(13, r1)
1305 REST_8GPRS(23, r1)
1306 REST_GPR(31, r1)
1307 lwz r2,_NIP(r1) /* Restore environment */
1308 lwz r0,_MSR(r1)
Matthias Fuchs58ea1422009-07-22 17:27:56 +02001309 mtspr SPRN_MCSRR0,r2
1310 mtspr SPRN_MCSRR1,r0
Wolfgang Denk83b4cfa2007-06-20 18:14:24 +02001311 lwz r0,GPR0(r1)
1312 lwz r2,GPR2(r1)
1313 lwz r1,GPR1(r1)
1314 SYNC
1315 rfmci
Grzegorz Bernackiefa35cf2007-06-15 11:19:28 +02001316#endif /* CONFIG_440 */
1317
1318
wdenk0442ed82002-11-03 10:24:00 +00001319 .globl get_pvr
1320get_pvr:
1321 mfspr r3, PVR
1322 blr
1323
wdenk0442ed82002-11-03 10:24:00 +00001324/*------------------------------------------------------------------------------- */
wdenk0442ed82002-11-03 10:24:00 +00001325/* Function: out16 */
1326/* Description: Output 16 bits */
1327/*------------------------------------------------------------------------------- */
1328 .globl out16
1329out16:
1330 sth r4,0x0000(r3)
1331 blr
1332
1333/*------------------------------------------------------------------------------- */
1334/* Function: out16r */
1335/* Description: Byte reverse and output 16 bits */
1336/*------------------------------------------------------------------------------- */
1337 .globl out16r
1338out16r:
1339 sthbrx r4,r0,r3
1340 blr
1341
1342/*------------------------------------------------------------------------------- */
wdenk0442ed82002-11-03 10:24:00 +00001343/* Function: out32r */
1344/* Description: Byte reverse and output 32 bits */
1345/*------------------------------------------------------------------------------- */
1346 .globl out32r
1347out32r:
1348 stwbrx r4,r0,r3
1349 blr
1350
1351/*------------------------------------------------------------------------------- */
1352/* Function: in16 */
1353/* Description: Input 16 bits */
1354/*------------------------------------------------------------------------------- */
1355 .globl in16
1356in16:
1357 lhz r3,0x0000(r3)
1358 blr
1359
1360/*------------------------------------------------------------------------------- */
1361/* Function: in16r */
1362/* Description: Input 16 bits and byte reverse */
1363/*------------------------------------------------------------------------------- */
1364 .globl in16r
1365in16r:
1366 lhbrx r3,r0,r3
1367 blr
1368
1369/*------------------------------------------------------------------------------- */
wdenk0442ed82002-11-03 10:24:00 +00001370/* Function: in32r */
1371/* Description: Input 32 bits and byte reverse */
1372/*------------------------------------------------------------------------------- */
1373 .globl in32r
1374in32r:
1375 lwbrx r3,r0,r3
1376 blr
1377
wdenk0442ed82002-11-03 10:24:00 +00001378/*
1379 * void relocate_code (addr_sp, gd, addr_moni)
1380 *
1381 * This "function" does not return, instead it continues in RAM
1382 * after relocating the monitor code.
1383 *
Grant Ericksonc821b5f2008-05-22 14:44:14 -07001384 * r3 = Relocated stack pointer
1385 * r4 = Relocated global data pointer
1386 * r5 = Relocated text pointer
wdenk0442ed82002-11-03 10:24:00 +00001387 */
1388 .globl relocate_code
1389relocate_code:
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001390#if defined(CONFIG_4xx_DCACHE) || defined(CONFIG_SYS_INIT_DCACHE_CS)
Stefan Roese9b94ac62007-10-31 17:55:58 +01001391 /*
Grant Ericksonc821b5f2008-05-22 14:44:14 -07001392 * We need to flush the initial global data (gd_t) before the dcache
1393 * will be invalidated.
Stefan Roese9b94ac62007-10-31 17:55:58 +01001394 */
1395
Grant Ericksonc821b5f2008-05-22 14:44:14 -07001396 /* Save registers */
1397 mr r9, r3
1398 mr r10, r4
1399 mr r11, r5
Stefan Roese9b94ac62007-10-31 17:55:58 +01001400
Grant Ericksonc821b5f2008-05-22 14:44:14 -07001401 /* Flush initial global data range */
1402 mr r3, r4
Wolfgang Denk25ddd1f2010-10-26 14:34:52 +02001403 addi r4, r4, GENERATED_GBL_DATA_SIZE@l
Stefan Roese9b94ac62007-10-31 17:55:58 +01001404 bl flush_dcache_range
1405
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001406#if defined(CONFIG_SYS_INIT_DCACHE_CS)
Grant Ericksonc821b5f2008-05-22 14:44:14 -07001407 /*
1408 * Undo the earlier data cache set-up for the primordial stack and
1409 * data area. First, invalidate the data cache and then disable data
1410 * cacheability for that area. Finally, restore the EBC values, if
1411 * any.
1412 */
1413
1414 /* Invalidate the primordial stack and data area in cache */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001415 lis r3, CONFIG_SYS_INIT_RAM_ADDR@h
1416 ori r3, r3, CONFIG_SYS_INIT_RAM_ADDR@l
Grant Ericksonc821b5f2008-05-22 14:44:14 -07001417
Wolfgang Denk553f0982010-10-26 13:32:32 +02001418 lis r4, CONFIG_SYS_INIT_RAM_SIZE@h
1419 ori r4, r4, CONFIG_SYS_INIT_RAM_SIZE@l
Grant Ericksonc821b5f2008-05-22 14:44:14 -07001420 add r4, r4, r3
1421
1422 bl invalidate_dcache_range
1423
1424 /* Disable cacheability for the region */
1425 mfdccr r3
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001426 lis r4, ~PPC_128MB_SACR_VALUE(CONFIG_SYS_INIT_RAM_ADDR)@h
1427 ori r4, r4, ~PPC_128MB_SACR_VALUE(CONFIG_SYS_INIT_RAM_ADDR)@l
Grant Ericksonc821b5f2008-05-22 14:44:14 -07001428 and r3, r3, r4
1429 mtdccr r3
1430
1431 /* Restore the EBC parameters */
1432 li r3, PBxAP
Stefan Roesed1c3b272009-09-09 16:25:29 +02001433 mtdcr EBC0_CFGADDR, r3
Grant Ericksonc821b5f2008-05-22 14:44:14 -07001434 lis r3, PBxAP_VAL@h
1435 ori r3, r3, PBxAP_VAL@l
Stefan Roesed1c3b272009-09-09 16:25:29 +02001436 mtdcr EBC0_CFGDATA, r3
Grant Ericksonc821b5f2008-05-22 14:44:14 -07001437
1438 li r3, PBxCR
Stefan Roesed1c3b272009-09-09 16:25:29 +02001439 mtdcr EBC0_CFGADDR, r3
Grant Ericksonc821b5f2008-05-22 14:44:14 -07001440 lis r3, PBxCR_VAL@h
1441 ori r3, r3, PBxCR_VAL@l
Stefan Roesed1c3b272009-09-09 16:25:29 +02001442 mtdcr EBC0_CFGDATA, r3
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001443#endif /* defined(CONFIG_SYS_INIT_DCACHE_CS) */
Grant Ericksonc821b5f2008-05-22 14:44:14 -07001444
1445 /* Restore registers */
1446 mr r3, r9
1447 mr r4, r10
1448 mr r5, r11
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001449#endif /* defined(CONFIG_4xx_DCACHE) || defined(CONFIG_SYS_INIT_DCACHE_CS) */
Stefan Roesee02c5212008-01-09 10:23:16 +01001450
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001451#ifdef CONFIG_SYS_INIT_RAM_DCACHE
Stefan Roesee02c5212008-01-09 10:23:16 +01001452 /*
1453 * Unlock the previously locked d-cache
1454 */
1455 msync
1456 isync
1457 /* set TFLOOR/NFLOOR to 0 again */
1458 lis r6,0x0001
1459 ori r6,r6,0xf800
Matthias Fuchs58ea1422009-07-22 17:27:56 +02001460 mtspr SPRN_DVLIM,r6
Stefan Roesee02c5212008-01-09 10:23:16 +01001461 lis r6,0x0000
1462 ori r6,r6,0x0000
Matthias Fuchs58ea1422009-07-22 17:27:56 +02001463 mtspr SPRN_DNV0,r6
1464 mtspr SPRN_DNV1,r6
1465 mtspr SPRN_DNV2,r6
1466 mtspr SPRN_DNV3,r6
1467 mtspr SPRN_DTV0,r6
1468 mtspr SPRN_DTV1,r6
1469 mtspr SPRN_DTV2,r6
1470 mtspr SPRN_DTV3,r6
Stefan Roesee02c5212008-01-09 10:23:16 +01001471 msync
1472 isync
Stefan Roesef3cac532010-08-31 11:27:14 +02001473
1474 /* Invalidate data cache, now no longer our stack */
1475 dccci 0,0
1476 sync
1477 isync
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001478#endif /* CONFIG_SYS_INIT_RAM_DCACHE */
Stefan Roesee02c5212008-01-09 10:23:16 +01001479
Stefan Roesea4c8d132006-06-02 16:18:04 +02001480 /*
1481 * On some 440er platforms the cache is enabled in the first TLB (Boot-CS)
1482 * to speed up the boot process. Now this cache needs to be disabled.
1483 */
Stefan Roese4978e602010-05-27 16:45:20 +02001484#if defined(CONFIG_440)
Stefan Roese25fb4ea2008-11-20 11:46:20 +01001485 /* Clear all potential pending exceptions */
Matthias Fuchs58ea1422009-07-22 17:27:56 +02001486 mfspr r1,SPRN_MCSR
1487 mtspr SPRN_MCSR,r1
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001488 addi r1,r0,CONFIG_SYS_TLB_FOR_BOOT_FLASH /* Use defined TLB */
Stefan Roesec157d8e2005-08-01 16:41:48 +02001489 tlbre r0,r1,0x0002 /* Read contents */
Stefan Roese6e7fb6e2005-11-29 18:18:21 +01001490 ori r0,r0,0x0c00 /* Or in the inhibit, write through bit */
Wolfgang Denkf901a832005-08-06 01:42:58 +02001491 tlbwe r0,r1,0x0002 /* Save it out */
Stefan Roesea4c8d132006-06-02 16:18:04 +02001492 sync
Stefan Roesec157d8e2005-08-01 16:41:48 +02001493 isync
Stefan Roese4978e602010-05-27 16:45:20 +02001494#endif /* defined(CONFIG_440) */
wdenk0442ed82002-11-03 10:24:00 +00001495 mr r1, r3 /* Set new stack pointer */
1496 mr r9, r4 /* Save copy of Init Data pointer */
1497 mr r10, r5 /* Save copy of Destination Address */
1498
Joakim Tjernlund0f8aa152010-01-19 14:41:56 +01001499 GET_GOT
wdenk0442ed82002-11-03 10:24:00 +00001500 mr r3, r5 /* Destination Address */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001501 lis r4, CONFIG_SYS_MONITOR_BASE@h /* Source Address */
1502 ori r4, r4, CONFIG_SYS_MONITOR_BASE@l
wdenk3b57fe02003-05-30 12:48:29 +00001503 lwz r5, GOT(__init_end)
1504 sub r5, r5, r4
Stefan Roese9b94ac62007-10-31 17:55:58 +01001505 li r6, L1_CACHE_BYTES /* Cache Line Size */
wdenk0442ed82002-11-03 10:24:00 +00001506
1507 /*
1508 * Fix GOT pointer:
1509 *
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001510 * New GOT-PTR = (old GOT-PTR - CONFIG_SYS_MONITOR_BASE) + Destination Address
wdenk0442ed82002-11-03 10:24:00 +00001511 *
1512 * Offset:
1513 */
1514 sub r15, r10, r4
1515
1516 /* First our own GOT */
Joakim Tjernlund0f8aa152010-01-19 14:41:56 +01001517 add r12, r12, r15
Grant Ericksonc821b5f2008-05-22 14:44:14 -07001518 /* then the one used by the C code */
wdenk0442ed82002-11-03 10:24:00 +00001519 add r30, r30, r15
1520
1521 /*
1522 * Now relocate code
1523 */
1524
1525 cmplw cr1,r3,r4
1526 addi r0,r5,3
1527 srwi. r0,r0,2
1528 beq cr1,4f /* In place copy is not necessary */
1529 beq 7f /* Protect against 0 count */
1530 mtctr r0
1531 bge cr1,2f
1532
1533 la r8,-4(r4)
1534 la r7,-4(r3)
15351: lwzu r0,4(r8)
1536 stwu r0,4(r7)
1537 bdnz 1b
1538 b 4f
1539
15402: slwi r0,r0,2
1541 add r8,r4,r0
1542 add r7,r3,r0
15433: lwzu r0,-4(r8)
1544 stwu r0,-4(r7)
1545 bdnz 3b
1546
1547/*
1548 * Now flush the cache: note that we must start from a cache aligned
1549 * address. Otherwise we might miss one cache line.
1550 */
15514: cmpwi r6,0
1552 add r5,r3,r5
1553 beq 7f /* Always flush prefetch queue in any case */
1554 subi r0,r6,1
1555 andc r3,r3,r0
1556 mr r4,r3
15575: dcbst 0,r4
1558 add r4,r4,r6
1559 cmplw r4,r5
1560 blt 5b
1561 sync /* Wait for all dcbst to complete on bus */
1562 mr r4,r3
15636: icbi 0,r4
1564 add r4,r4,r6
1565 cmplw r4,r5
1566 blt 6b
15677: sync /* Wait for all icbi to complete on bus */
1568 isync
1569
1570/*
1571 * We are done. Do not return, instead branch to second part of board
1572 * initialization, now running from RAM.
1573 */
1574
Grzegorz Bernackiefa35cf2007-06-15 11:19:28 +02001575 addi r0, r10, in_ram - _start + _START_OFFSET
wdenk0442ed82002-11-03 10:24:00 +00001576 mtlr r0
1577 blr /* NEVER RETURNS! */
1578
1579in_ram:
1580
1581 /*
Joakim Tjernlund0f8aa152010-01-19 14:41:56 +01001582 * Relocation Function, r12 point to got2+0x8000
wdenk0442ed82002-11-03 10:24:00 +00001583 *
1584 * Adjust got2 pointers, no need to check for 0, this code
1585 * already puts a few entries in the table.
1586 */
1587 li r0,__got2_entries@sectoff@l
1588 la r3,GOT(_GOT2_TABLE_)
1589 lwz r11,GOT(_GOT2_TABLE_)
1590 mtctr r0
1591 sub r11,r3,r11
1592 addi r3,r3,-4
15931: lwzu r0,4(r3)
Joakim Tjernlundafc3ba02009-10-08 02:03:51 +02001594 cmpwi r0,0
1595 beq- 2f
wdenk0442ed82002-11-03 10:24:00 +00001596 add r0,r0,r11
1597 stw r0,0(r3)
Joakim Tjernlundafc3ba02009-10-08 02:03:51 +020015982: bdnz 1b
wdenk0442ed82002-11-03 10:24:00 +00001599
1600 /*
1601 * Now adjust the fixups and the pointers to the fixups
1602 * in case we need to move ourselves again.
1603 */
Joakim Tjernlundafc3ba02009-10-08 02:03:51 +02001604 li r0,__fixup_entries@sectoff@l
wdenk0442ed82002-11-03 10:24:00 +00001605 lwz r3,GOT(_FIXUP_TABLE_)
1606 cmpwi r0,0
1607 mtctr r0
1608 addi r3,r3,-4
1609 beq 4f
16103: lwzu r4,4(r3)
1611 lwzux r0,r4,r11
Joakim Tjernlundd1e0b102010-10-14 11:51:44 +02001612 cmpwi r0,0
wdenk0442ed82002-11-03 10:24:00 +00001613 add r0,r0,r11
Joakim Tjernlund34bbf612010-11-04 19:02:00 +01001614 stw r4,0(r3)
Joakim Tjernlundd1e0b102010-10-14 11:51:44 +02001615 beq- 5f
wdenk0442ed82002-11-03 10:24:00 +00001616 stw r0,0(r4)
Joakim Tjernlundd1e0b102010-10-14 11:51:44 +020016175: bdnz 3b
wdenk0442ed82002-11-03 10:24:00 +000016184:
1619clear_bss:
1620 /*
1621 * Now clear BSS segment
1622 */
wdenk5d232d02003-05-22 22:52:13 +00001623 lwz r3,GOT(__bss_start)
wdenk0442ed82002-11-03 10:24:00 +00001624 lwz r4,GOT(_end)
1625
1626 cmplw 0, r3, r4
Anatolij Gustschin42ed33f2007-12-05 17:43:20 +01001627 beq 7f
wdenk0442ed82002-11-03 10:24:00 +00001628
1629 li r0, 0
Anatolij Gustschin42ed33f2007-12-05 17:43:20 +01001630
1631 andi. r5, r4, 3
1632 beq 6f
1633 sub r4, r4, r5
1634 mtctr r5
1635 mr r5, r4
16365: stb r0, 0(r5)
1637 addi r5, r5, 1
1638 bdnz 5b
16396:
wdenk0442ed82002-11-03 10:24:00 +00001640 stw r0, 0(r3)
1641 addi r3, r3, 4
1642 cmplw 0, r3, r4
Anatolij Gustschin42ed33f2007-12-05 17:43:20 +01001643 bne 6b
wdenk0442ed82002-11-03 10:24:00 +00001644
Anatolij Gustschin42ed33f2007-12-05 17:43:20 +010016457:
wdenk0442ed82002-11-03 10:24:00 +00001646 mr r3, r9 /* Init Data pointer */
1647 mr r4, r10 /* Destination Address */
1648 bl board_init_r
1649
wdenk0442ed82002-11-03 10:24:00 +00001650 /*
1651 * Copy exception vector code to low memory
1652 *
1653 * r3: dest_addr
1654 * r7: source address, r8: end address, r9: target address
1655 */
1656 .globl trap_init
1657trap_init:
Joakim Tjernlund0f8aa152010-01-19 14:41:56 +01001658 mflr r4 /* save link register */
1659 GET_GOT
Grzegorz Bernackiefa35cf2007-06-15 11:19:28 +02001660 lwz r7, GOT(_start_of_vectors)
wdenk0442ed82002-11-03 10:24:00 +00001661 lwz r8, GOT(_end_of_vectors)
1662
wdenk682011f2003-06-03 23:54:09 +00001663 li r9, 0x100 /* reset vector always at 0x100 */
wdenk0442ed82002-11-03 10:24:00 +00001664
1665 cmplw 0, r7, r8
1666 bgelr /* return if r7>=r8 - just in case */
wdenk0442ed82002-11-03 10:24:00 +000016671:
1668 lwz r0, 0(r7)
1669 stw r0, 0(r9)
1670 addi r7, r7, 4
1671 addi r9, r9, 4
1672 cmplw 0, r7, r8
1673 bne 1b
1674
1675 /*
1676 * relocate `hdlr' and `int_return' entries
1677 */
Grzegorz Bernackiefa35cf2007-06-15 11:19:28 +02001678 li r7, .L_MachineCheck - _start + _START_OFFSET
1679 li r8, Alignment - _start + _START_OFFSET
wdenk0442ed82002-11-03 10:24:00 +000016802:
1681 bl trap_reloc
Grzegorz Bernackiefa35cf2007-06-15 11:19:28 +02001682 addi r7, r7, 0x100 /* next exception vector */
wdenk0442ed82002-11-03 10:24:00 +00001683 cmplw 0, r7, r8
1684 blt 2b
1685
Grzegorz Bernackiefa35cf2007-06-15 11:19:28 +02001686 li r7, .L_Alignment - _start + _START_OFFSET
wdenk0442ed82002-11-03 10:24:00 +00001687 bl trap_reloc
1688
Grzegorz Bernackiefa35cf2007-06-15 11:19:28 +02001689 li r7, .L_ProgramCheck - _start + _START_OFFSET
wdenk0442ed82002-11-03 10:24:00 +00001690 bl trap_reloc
1691
Grzegorz Bernackiefa35cf2007-06-15 11:19:28 +02001692#ifdef CONFIG_440
1693 li r7, .L_FPUnavailable - _start + _START_OFFSET
Wolfgang Denk83b4cfa2007-06-20 18:14:24 +02001694 bl trap_reloc
wdenk0442ed82002-11-03 10:24:00 +00001695
Grzegorz Bernackiefa35cf2007-06-15 11:19:28 +02001696 li r7, .L_Decrementer - _start + _START_OFFSET
Wolfgang Denk83b4cfa2007-06-20 18:14:24 +02001697 bl trap_reloc
Grzegorz Bernackiefa35cf2007-06-15 11:19:28 +02001698
1699 li r7, .L_APU - _start + _START_OFFSET
Wolfgang Denk83b4cfa2007-06-20 18:14:24 +02001700 bl trap_reloc
Stefan Roesedf8a24c2007-06-19 16:42:31 +02001701
Wolfgang Denk83b4cfa2007-06-20 18:14:24 +02001702 li r7, .L_InstructionTLBError - _start + _START_OFFSET
1703 bl trap_reloc
Grzegorz Bernackiefa35cf2007-06-15 11:19:28 +02001704
Wolfgang Denk83b4cfa2007-06-20 18:14:24 +02001705 li r7, .L_DataTLBError - _start + _START_OFFSET
1706 bl trap_reloc
Grzegorz Bernackiefa35cf2007-06-15 11:19:28 +02001707#else /* CONFIG_440 */
1708 li r7, .L_PIT - _start + _START_OFFSET
Wolfgang Denk83b4cfa2007-06-20 18:14:24 +02001709 bl trap_reloc
Grzegorz Bernackiefa35cf2007-06-15 11:19:28 +02001710
1711 li r7, .L_InstructionTLBMiss - _start + _START_OFFSET
Wolfgang Denk83b4cfa2007-06-20 18:14:24 +02001712 bl trap_reloc
Grzegorz Bernackiefa35cf2007-06-15 11:19:28 +02001713
1714 li r7, .L_DataTLBMiss - _start + _START_OFFSET
Wolfgang Denk83b4cfa2007-06-20 18:14:24 +02001715 bl trap_reloc
Grzegorz Bernackiefa35cf2007-06-15 11:19:28 +02001716#endif /* CONFIG_440 */
1717
Wolfgang Denk83b4cfa2007-06-20 18:14:24 +02001718 li r7, .L_DebugBreakpoint - _start + _START_OFFSET
1719 bl trap_reloc
wdenk0442ed82002-11-03 10:24:00 +00001720
Stefan Roese887e2ec2006-09-07 11:51:23 +02001721#if !defined(CONFIG_440)
Stefan Roese9a7b4082006-03-13 09:42:28 +01001722 addi r7,r0,0x1000 /* set ME bit (Machine Exceptions) */
1723 oris r7,r7,0x0002 /* set CE bit (Critical Exceptions) */
1724 mtmsr r7 /* change MSR */
1725#else
Stefan Roese887e2ec2006-09-07 11:51:23 +02001726 bl __440_msr_set
1727 b __440_msr_continue
Stefan Roese9a7b4082006-03-13 09:42:28 +01001728
Stefan Roese887e2ec2006-09-07 11:51:23 +02001729__440_msr_set:
Stefan Roese9a7b4082006-03-13 09:42:28 +01001730 addi r7,r0,0x1000 /* set ME bit (Machine Exceptions) */
1731 oris r7,r7,0x0002 /* set CE bit (Critical Exceptions) */
Matthias Fuchs58ea1422009-07-22 17:27:56 +02001732 mtspr SPRN_SRR1,r7
Stefan Roese9a7b4082006-03-13 09:42:28 +01001733 mflr r7
Matthias Fuchs58ea1422009-07-22 17:27:56 +02001734 mtspr SPRN_SRR0,r7
Stefan Roese9a7b4082006-03-13 09:42:28 +01001735 rfi
Stefan Roese887e2ec2006-09-07 11:51:23 +02001736__440_msr_continue:
Stefan Roese9a7b4082006-03-13 09:42:28 +01001737#endif
1738
wdenk0442ed82002-11-03 10:24:00 +00001739 mtlr r4 /* restore link register */
1740 blr
1741
Stefan Roesecf959c72007-06-01 15:27:11 +02001742#if defined(CONFIG_440)
1743/*----------------------------------------------------------------------------+
1744| dcbz_area.
1745+----------------------------------------------------------------------------*/
1746 function_prolog(dcbz_area)
1747 rlwinm. r5,r4,0,27,31
Wolfgang Denk83b4cfa2007-06-20 18:14:24 +02001748 rlwinm r5,r4,27,5,31
1749 beq ..d_ra2
1750 addi r5,r5,0x0001
1751..d_ra2:mtctr r5
1752..d_ag2:dcbz r0,r3
1753 addi r3,r3,32
1754 bdnz ..d_ag2
Stefan Roesecf959c72007-06-01 15:27:11 +02001755 sync
1756 blr
1757 function_epilog(dcbz_area)
Stefan Roesecf959c72007-06-01 15:27:11 +02001758#endif /* CONFIG_440 */
Stefan Roese887e2ec2006-09-07 11:51:23 +02001759#endif /* CONFIG_NAND_SPL */
stroeseb867d702003-05-23 11:18:02 +00001760
Stefan Roesecf959c72007-06-01 15:27:11 +02001761/*------------------------------------------------------------------------------- */
1762/* Function: in8 */
1763/* Description: Input 8 bits */
1764/*------------------------------------------------------------------------------- */
1765 .globl in8
1766in8:
1767 lbz r3,0x0000(r3)
1768 blr
1769
1770/*------------------------------------------------------------------------------- */
1771/* Function: out8 */
1772/* Description: Output 8 bits */
1773/*------------------------------------------------------------------------------- */
1774 .globl out8
1775out8:
1776 stb r4,0x0000(r3)
1777 blr
1778
1779/*------------------------------------------------------------------------------- */
1780/* Function: out32 */
1781/* Description: Output 32 bits */
1782/*------------------------------------------------------------------------------- */
1783 .globl out32
1784out32:
1785 stw r4,0x0000(r3)
1786 blr
1787
1788/*------------------------------------------------------------------------------- */
1789/* Function: in32 */
1790/* Description: Input 32 bits */
1791/*------------------------------------------------------------------------------- */
1792 .globl in32
1793in32:
1794 lwz 3,0x0000(3)
1795 blr
stroeseb867d702003-05-23 11:18:02 +00001796
1797/**************************************************************************/
Wolfgang Denkf901a832005-08-06 01:42:58 +02001798/* PPC405EP specific stuff */
stroeseb867d702003-05-23 11:18:02 +00001799/**************************************************************************/
1800#ifdef CONFIG_405EP
1801ppc405ep_init:
stroeseb828dda2003-12-09 14:54:43 +00001802
Stefan Roesec157d8e2005-08-01 16:41:48 +02001803#ifdef CONFIG_BUBINGA
stroeseb828dda2003-12-09 14:54:43 +00001804 /*
1805 * Initialize EBC chip selects 1 & 4 and GPIO pins (for alternate
1806 * function) to support FPGA and NVRAM accesses below.
1807 */
1808
1809 lis r3,GPIO0_OSRH@h /* config GPIO output select */
1810 ori r3,r3,GPIO0_OSRH@l
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001811 lis r4,CONFIG_SYS_GPIO0_OSRH@h
1812 ori r4,r4,CONFIG_SYS_GPIO0_OSRH@l
stroeseb828dda2003-12-09 14:54:43 +00001813 stw r4,0(r3)
1814 lis r3,GPIO0_OSRL@h
1815 ori r3,r3,GPIO0_OSRL@l
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001816 lis r4,CONFIG_SYS_GPIO0_OSRL@h
1817 ori r4,r4,CONFIG_SYS_GPIO0_OSRL@l
stroeseb828dda2003-12-09 14:54:43 +00001818 stw r4,0(r3)
1819
1820 lis r3,GPIO0_ISR1H@h /* config GPIO input select */
1821 ori r3,r3,GPIO0_ISR1H@l
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001822 lis r4,CONFIG_SYS_GPIO0_ISR1H@h
1823 ori r4,r4,CONFIG_SYS_GPIO0_ISR1H@l
stroeseb828dda2003-12-09 14:54:43 +00001824 stw r4,0(r3)
1825 lis r3,GPIO0_ISR1L@h
1826 ori r3,r3,GPIO0_ISR1L@l
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001827 lis r4,CONFIG_SYS_GPIO0_ISR1L@h
1828 ori r4,r4,CONFIG_SYS_GPIO0_ISR1L@l
stroeseb828dda2003-12-09 14:54:43 +00001829 stw r4,0(r3)
1830
1831 lis r3,GPIO0_TSRH@h /* config GPIO three-state select */
1832 ori r3,r3,GPIO0_TSRH@l
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001833 lis r4,CONFIG_SYS_GPIO0_TSRH@h
1834 ori r4,r4,CONFIG_SYS_GPIO0_TSRH@l
stroeseb828dda2003-12-09 14:54:43 +00001835 stw r4,0(r3)
1836 lis r3,GPIO0_TSRL@h
1837 ori r3,r3,GPIO0_TSRL@l
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001838 lis r4,CONFIG_SYS_GPIO0_TSRL@h
1839 ori r4,r4,CONFIG_SYS_GPIO0_TSRL@l
stroeseb828dda2003-12-09 14:54:43 +00001840 stw r4,0(r3)
1841
1842 lis r3,GPIO0_TCR@h /* config GPIO driver output enables */
1843 ori r3,r3,GPIO0_TCR@l
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001844 lis r4,CONFIG_SYS_GPIO0_TCR@h
1845 ori r4,r4,CONFIG_SYS_GPIO0_TCR@l
stroeseb828dda2003-12-09 14:54:43 +00001846 stw r4,0(r3)
1847
Stefan Roesed1c3b272009-09-09 16:25:29 +02001848 li r3,PB1AP /* program EBC bank 1 for RTC access */
1849 mtdcr EBC0_CFGADDR,r3
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001850 lis r3,CONFIG_SYS_EBC_PB1AP@h
1851 ori r3,r3,CONFIG_SYS_EBC_PB1AP@l
Stefan Roesed1c3b272009-09-09 16:25:29 +02001852 mtdcr EBC0_CFGDATA,r3
1853 li r3,PB1CR
1854 mtdcr EBC0_CFGADDR,r3
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001855 lis r3,CONFIG_SYS_EBC_PB1CR@h
1856 ori r3,r3,CONFIG_SYS_EBC_PB1CR@l
Stefan Roesed1c3b272009-09-09 16:25:29 +02001857 mtdcr EBC0_CFGDATA,r3
stroeseb828dda2003-12-09 14:54:43 +00001858
Stefan Roesed1c3b272009-09-09 16:25:29 +02001859 li r3,PB1AP /* program EBC bank 1 for RTC access */
1860 mtdcr EBC0_CFGADDR,r3
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001861 lis r3,CONFIG_SYS_EBC_PB1AP@h
1862 ori r3,r3,CONFIG_SYS_EBC_PB1AP@l
Stefan Roesed1c3b272009-09-09 16:25:29 +02001863 mtdcr EBC0_CFGDATA,r3
1864 li r3,PB1CR
1865 mtdcr EBC0_CFGADDR,r3
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001866 lis r3,CONFIG_SYS_EBC_PB1CR@h
1867 ori r3,r3,CONFIG_SYS_EBC_PB1CR@l
Stefan Roesed1c3b272009-09-09 16:25:29 +02001868 mtdcr EBC0_CFGDATA,r3
stroeseb828dda2003-12-09 14:54:43 +00001869
Stefan Roesed1c3b272009-09-09 16:25:29 +02001870 li r3,PB4AP /* program EBC bank 4 for FPGA access */
1871 mtdcr EBC0_CFGADDR,r3
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001872 lis r3,CONFIG_SYS_EBC_PB4AP@h
1873 ori r3,r3,CONFIG_SYS_EBC_PB4AP@l
Stefan Roesed1c3b272009-09-09 16:25:29 +02001874 mtdcr EBC0_CFGDATA,r3
1875 li r3,PB4CR
1876 mtdcr EBC0_CFGADDR,r3
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001877 lis r3,CONFIG_SYS_EBC_PB4CR@h
1878 ori r3,r3,CONFIG_SYS_EBC_PB4CR@l
Stefan Roesed1c3b272009-09-09 16:25:29 +02001879 mtdcr EBC0_CFGDATA,r3
stroeseb828dda2003-12-09 14:54:43 +00001880#endif
1881
wdenk8bde7f72003-06-27 21:31:46 +00001882 /*
1883 !-----------------------------------------------------------------------
1884 ! Check to see if chip is in bypass mode.
1885 ! If so, write stored CPC0_PLLMR0 and CPC0_PLLMR1 values and perform a
1886 ! CPU reset Otherwise, skip this step and keep going.
Wolfgang Denkf901a832005-08-06 01:42:58 +02001887 ! Note: Running BIOS in bypass mode is not supported since PLB speed
1888 ! will not be fast enough for the SDRAM (min 66MHz)
wdenk8bde7f72003-06-27 21:31:46 +00001889 !-----------------------------------------------------------------------
stroeseb867d702003-05-23 11:18:02 +00001890 */
Wolfgang Denkf901a832005-08-06 01:42:58 +02001891 mfdcr r5, CPC0_PLLMR1
Wolfgang Denk53677ef2008-05-20 16:00:29 +02001892 rlwinm r4,r5,1,0x1 /* get system clock source (SSCS) */
Wolfgang Denkf901a832005-08-06 01:42:58 +02001893 cmpi cr0,0,r4,0x1
stroeseb867d702003-05-23 11:18:02 +00001894
Wolfgang Denk53677ef2008-05-20 16:00:29 +02001895 beq pll_done /* if SSCS =b'1' then PLL has */
1896 /* already been set */
1897 /* and CPU has been reset */
1898 /* so skip to next section */
stroeseb867d702003-05-23 11:18:02 +00001899
Stefan Roesec157d8e2005-08-01 16:41:48 +02001900#ifdef CONFIG_BUBINGA
stroeseb867d702003-05-23 11:18:02 +00001901 /*
wdenk8bde7f72003-06-27 21:31:46 +00001902 !-----------------------------------------------------------------------
1903 ! Read NVRAM to get value to write in PLLMR.
1904 ! If value has not been correctly saved, write default value
1905 ! Default config values (assuming on-board 33MHz SYS_CLK) are above.
1906 ! See CPU_DEFAULT_200 and CPU_DEFAULT_266 above.
1907 !
1908 ! WARNING: This code assumes the first three words in the nvram_t
Wolfgang Denkf901a832005-08-06 01:42:58 +02001909 ! structure in openbios.h. Changing the beginning of
1910 ! the structure will break this code.
wdenk8bde7f72003-06-27 21:31:46 +00001911 !
1912 !-----------------------------------------------------------------------
stroeseb867d702003-05-23 11:18:02 +00001913 */
Wolfgang Denkf901a832005-08-06 01:42:58 +02001914 addis r3,0,NVRAM_BASE@h
1915 addi r3,r3,NVRAM_BASE@l
stroeseb867d702003-05-23 11:18:02 +00001916
Wolfgang Denkf901a832005-08-06 01:42:58 +02001917 lwz r4, 0(r3)
1918 addis r5,0,NVRVFY1@h
1919 addi r5,r5,NVRVFY1@l
Wolfgang Denk53677ef2008-05-20 16:00:29 +02001920 cmp cr0,0,r4,r5 /* Compare 1st NVRAM Magic number*/
Wolfgang Denkf901a832005-08-06 01:42:58 +02001921 bne ..no_pllset
1922 addi r3,r3,4
1923 lwz r4, 0(r3)
1924 addis r5,0,NVRVFY2@h
1925 addi r5,r5,NVRVFY2@l
Wolfgang Denk53677ef2008-05-20 16:00:29 +02001926 cmp cr0,0,r4,r5 /* Compare 2 NVRAM Magic number */
Wolfgang Denkf901a832005-08-06 01:42:58 +02001927 bne ..no_pllset
1928 addi r3,r3,8 /* Skip over conf_size */
1929 lwz r4, 4(r3) /* Load PLLMR1 value from NVRAM */
1930 lwz r3, 0(r3) /* Load PLLMR0 value from NVRAM */
1931 rlwinm r5,r4,1,0x1 /* get system clock source (SSCS) */
1932 cmpi cr0,0,r5,1 /* See if PLL is locked */
1933 beq pll_write
stroeseb867d702003-05-23 11:18:02 +00001934..no_pllset:
Stefan Roesec157d8e2005-08-01 16:41:48 +02001935#endif /* CONFIG_BUBINGA */
stroeseb867d702003-05-23 11:18:02 +00001936
John Otkend4024bb2007-07-26 17:49:11 +02001937#ifdef CONFIG_TAIHU
1938 mfdcr r4, CPC0_BOOT
1939 andi. r5, r4, CPC0_BOOT_SEP@l
1940 bne strap_1 /* serial eeprom present */
1941 addis r5,0,CPLD_REG0_ADDR@h
1942 ori r5,r5,CPLD_REG0_ADDR@l
1943 andi. r5, r5, 0x10
1944 bne _pci_66mhz
1945#endif /* CONFIG_TAIHU */
1946
Stefan Roese779e9752007-08-14 14:44:41 +02001947#if defined(CONFIG_ZEUS)
1948 mfdcr r4, CPC0_BOOT
1949 andi. r5, r4, CPC0_BOOT_SEP@l
Wolfgang Denk53677ef2008-05-20 16:00:29 +02001950 bne strap_1 /* serial eeprom present */
Stefan Roese779e9752007-08-14 14:44:41 +02001951 lis r3,0x0000
1952 addi r3,r3,0x3030
1953 lis r4,0x8042
1954 addi r4,r4,0x223e
1955 b 1f
1956strap_1:
1957 mfdcr r3, CPC0_PLLMR0
1958 mfdcr r4, CPC0_PLLMR1
1959 b 1f
1960#endif
1961
Wolfgang Denk53677ef2008-05-20 16:00:29 +02001962 addis r3,0,PLLMR0_DEFAULT@h /* PLLMR0 default value */
1963 ori r3,r3,PLLMR0_DEFAULT@l /* */
1964 addis r4,0,PLLMR1_DEFAULT@h /* PLLMR1 default value */
1965 ori r4,r4,PLLMR1_DEFAULT@l /* */
stroeseb867d702003-05-23 11:18:02 +00001966
John Otkend4024bb2007-07-26 17:49:11 +02001967#ifdef CONFIG_TAIHU
1968 b 1f
1969_pci_66mhz:
1970 addis r3,0,PLLMR0_DEFAULT_PCI66@h
1971 ori r3,r3,PLLMR0_DEFAULT_PCI66@l
1972 addis r4,0,PLLMR1_DEFAULT_PCI66@h
1973 ori r4,r4,PLLMR1_DEFAULT_PCI66@l
1974 b 1f
1975strap_1:
1976 mfdcr r3, CPC0_PLLMR0
1977 mfdcr r4, CPC0_PLLMR1
John Otkend4024bb2007-07-26 17:49:11 +02001978#endif /* CONFIG_TAIHU */
1979
Stefan Roese779e9752007-08-14 14:44:41 +020019801:
Wolfgang Denk53677ef2008-05-20 16:00:29 +02001981 b pll_write /* Write the CPC0_PLLMR with new value */
stroeseb867d702003-05-23 11:18:02 +00001982
1983pll_done:
wdenk8bde7f72003-06-27 21:31:46 +00001984 /*
1985 !-----------------------------------------------------------------------
1986 ! Clear Soft Reset Register
1987 ! This is needed to enable PCI if not booting from serial EPROM
1988 !-----------------------------------------------------------------------
stroeseb867d702003-05-23 11:18:02 +00001989 */
Wolfgang Denkf901a832005-08-06 01:42:58 +02001990 addi r3, 0, 0x0
1991 mtdcr CPC0_SRR, r3
stroeseb867d702003-05-23 11:18:02 +00001992
Wolfgang Denkf901a832005-08-06 01:42:58 +02001993 addis r3,0,0x0010
1994 mtctr r3
stroeseb867d702003-05-23 11:18:02 +00001995pci_wait:
Wolfgang Denkf901a832005-08-06 01:42:58 +02001996 bdnz pci_wait
stroeseb867d702003-05-23 11:18:02 +00001997
Wolfgang Denk53677ef2008-05-20 16:00:29 +02001998 blr /* return to main code */
stroeseb867d702003-05-23 11:18:02 +00001999
2000/*
2001!-----------------------------------------------------------------------------
Wolfgang Denkf901a832005-08-06 01:42:58 +02002002! Function: pll_write
2003! Description: Updates the value of the CPC0_PLLMR according to CMOS27E documentation
2004! That is:
2005! 1. Pll is first disabled (de-activated by putting in bypass mode)
2006! 2. PLL is reset
2007! 3. Clock dividers are set while PLL is held in reset and bypassed
2008! 4. PLL Reset is cleared
2009! 5. Wait 100us for PLL to lock
2010! 6. A core reset is performed
stroeseb867d702003-05-23 11:18:02 +00002011! Input: r3 = Value to write to CPC0_PLLMR0
2012! Input: r4 = Value to write to CPC0_PLLMR1
2013! Output r3 = none
2014!-----------------------------------------------------------------------------
2015*/
Matthias Fuchs0580e482009-07-06 16:27:33 +02002016 .globl pll_write
stroeseb867d702003-05-23 11:18:02 +00002017pll_write:
wdenk8bde7f72003-06-27 21:31:46 +00002018 mfdcr r5, CPC0_UCR
2019 andis. r5,r5,0xFFFF
Wolfgang Denk53677ef2008-05-20 16:00:29 +02002020 ori r5,r5,0x0101 /* Stop the UART clocks */
2021 mtdcr CPC0_UCR,r5 /* Before changing PLL */
stroeseb867d702003-05-23 11:18:02 +00002022
wdenk8bde7f72003-06-27 21:31:46 +00002023 mfdcr r5, CPC0_PLLMR1
Wolfgang Denk53677ef2008-05-20 16:00:29 +02002024 rlwinm r5,r5,0,0x7FFFFFFF /* Disable PLL */
Wolfgang Denkf901a832005-08-06 01:42:58 +02002025 mtdcr CPC0_PLLMR1,r5
Wolfgang Denk53677ef2008-05-20 16:00:29 +02002026 oris r5,r5,0x4000 /* Set PLL Reset */
Wolfgang Denkf901a832005-08-06 01:42:58 +02002027 mtdcr CPC0_PLLMR1,r5
stroeseb867d702003-05-23 11:18:02 +00002028
Wolfgang Denk53677ef2008-05-20 16:00:29 +02002029 mtdcr CPC0_PLLMR0,r3 /* Set clock dividers */
2030 rlwinm r5,r4,0,0x3FFFFFFF /* Reset & Bypass new PLL dividers */
2031 oris r5,r5,0x4000 /* Set PLL Reset */
2032 mtdcr CPC0_PLLMR1,r5 /* Set clock dividers */
2033 rlwinm r5,r5,0,0xBFFFFFFF /* Clear PLL Reset */
Wolfgang Denkf901a832005-08-06 01:42:58 +02002034 mtdcr CPC0_PLLMR1,r5
stroeseb867d702003-05-23 11:18:02 +00002035
2036 /*
wdenk8bde7f72003-06-27 21:31:46 +00002037 ! Wait min of 100us for PLL to lock.
2038 ! See CMOS 27E databook for more info.
2039 ! At 200MHz, that means waiting 20,000 instructions
stroeseb867d702003-05-23 11:18:02 +00002040 */
Wolfgang Denkf901a832005-08-06 01:42:58 +02002041 addi r3,0,20000 /* 2000 = 0x4e20 */
2042 mtctr r3
stroeseb867d702003-05-23 11:18:02 +00002043pll_wait:
Wolfgang Denkf901a832005-08-06 01:42:58 +02002044 bdnz pll_wait
stroeseb867d702003-05-23 11:18:02 +00002045
Wolfgang Denkf901a832005-08-06 01:42:58 +02002046 oris r5,r5,0x8000 /* Enable PLL */
2047 mtdcr CPC0_PLLMR1,r5 /* Engage */
stroeseb867d702003-05-23 11:18:02 +00002048
wdenk8bde7f72003-06-27 21:31:46 +00002049 /*
2050 * Reset CPU to guarantee timings are OK
2051 * Not sure if this is needed...
2052 */
2053 addis r3,0,0x1000
Matthias Fuchs58ea1422009-07-22 17:27:56 +02002054 mtspr SPRN_DBCR0,r3 /* This will cause a CPU core reset, and */
Wolfgang Denk53677ef2008-05-20 16:00:29 +02002055 /* execution will continue from the poweron */
2056 /* vector of 0xfffffffc */
stroeseb867d702003-05-23 11:18:02 +00002057#endif /* CONFIG_405EP */
Stefan Roese4745aca2007-02-20 10:57:08 +01002058
2059#if defined(CONFIG_440)
Stefan Roese4745aca2007-02-20 10:57:08 +01002060/*----------------------------------------------------------------------------+
2061| mttlb3.
2062+----------------------------------------------------------------------------*/
2063 function_prolog(mttlb3)
2064 TLBWE(4,3,2)
2065 blr
2066 function_epilog(mttlb3)
2067
2068/*----------------------------------------------------------------------------+
2069| mftlb3.
2070+----------------------------------------------------------------------------*/
2071 function_prolog(mftlb3)
Wolfgang Denk74357112007-02-27 14:26:04 +01002072 TLBRE(3,3,2)
Stefan Roese4745aca2007-02-20 10:57:08 +01002073 blr
2074 function_epilog(mftlb3)
2075
2076/*----------------------------------------------------------------------------+
2077| mttlb2.
2078+----------------------------------------------------------------------------*/
2079 function_prolog(mttlb2)
2080 TLBWE(4,3,1)
2081 blr
2082 function_epilog(mttlb2)
2083
2084/*----------------------------------------------------------------------------+
2085| mftlb2.
2086+----------------------------------------------------------------------------*/
2087 function_prolog(mftlb2)
Wolfgang Denk74357112007-02-27 14:26:04 +01002088 TLBRE(3,3,1)
Stefan Roese4745aca2007-02-20 10:57:08 +01002089 blr
2090 function_epilog(mftlb2)
2091
2092/*----------------------------------------------------------------------------+
2093| mttlb1.
2094+----------------------------------------------------------------------------*/
2095 function_prolog(mttlb1)
2096 TLBWE(4,3,0)
2097 blr
2098 function_epilog(mttlb1)
2099
2100/*----------------------------------------------------------------------------+
2101| mftlb1.
2102+----------------------------------------------------------------------------*/
2103 function_prolog(mftlb1)
Wolfgang Denk74357112007-02-27 14:26:04 +01002104 TLBRE(3,3,0)
Stefan Roese4745aca2007-02-20 10:57:08 +01002105 blr
2106 function_epilog(mftlb1)
2107#endif /* CONFIG_440 */
Stefan Roese64852d02008-06-02 14:35:44 +02002108
2109#if defined(CONFIG_NAND_SPL)
2110/*
2111 * void nand_boot_relocate(dst, src, bytes)
2112 *
2113 * r3 = Destination address to copy code to (in SDRAM)
2114 * r4 = Source address to copy code from
2115 * r5 = size to copy in bytes
2116 */
2117nand_boot_relocate:
2118 mr r6,r3
2119 mr r7,r4
2120 mflr r8
2121
2122 /*
2123 * Copy SPL from icache into SDRAM
2124 */
2125 subi r3,r3,4
2126 subi r4,r4,4
2127 srwi r5,r5,2
2128 mtctr r5
2129..spl_loop:
2130 lwzu r0,4(r4)
2131 stwu r0,4(r3)
2132 bdnz ..spl_loop
2133
2134 /*
2135 * Calculate "corrected" link register, so that we "continue"
2136 * in execution in destination range
2137 */
2138 sub r3,r7,r6 /* r3 = src - dst */
2139 sub r8,r8,r3 /* r8 = link-reg - (src - dst) */
2140 mtlr r8
2141 blr
2142
2143nand_boot_common:
2144 /*
2145 * First initialize SDRAM. It has to be available *before* calling
2146 * nand_boot().
2147 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02002148 lis r3,CONFIG_SYS_SDRAM_BASE@h
2149 ori r3,r3,CONFIG_SYS_SDRAM_BASE@l
Stefan Roese64852d02008-06-02 14:35:44 +02002150 bl initdram
2151
2152 /*
2153 * Now copy the 4k SPL code into SDRAM and continue execution
2154 * from there.
2155 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02002156 lis r3,CONFIG_SYS_NAND_BOOT_SPL_DST@h
2157 ori r3,r3,CONFIG_SYS_NAND_BOOT_SPL_DST@l
2158 lis r4,CONFIG_SYS_NAND_BOOT_SPL_SRC@h
2159 ori r4,r4,CONFIG_SYS_NAND_BOOT_SPL_SRC@l
2160 lis r5,CONFIG_SYS_NAND_BOOT_SPL_SIZE@h
2161 ori r5,r5,CONFIG_SYS_NAND_BOOT_SPL_SIZE@l
Stefan Roese64852d02008-06-02 14:35:44 +02002162 bl nand_boot_relocate
2163
2164 /*
2165 * We're running from SDRAM now!!!
2166 *
2167 * It is necessary for 4xx systems to relocate from running at
2168 * the original location (0xfffffxxx) to somewhere else (SDRAM
2169 * preferably). This is because CS0 needs to be reconfigured for
2170 * NAND access. And we can't reconfigure this CS when currently
2171 * "running" from it.
2172 */
2173
2174 /*
2175 * Finally call nand_boot() to load main NAND U-Boot image from
2176 * NAND and jump to it.
2177 */
2178 bl nand_boot /* will not return */
2179#endif /* CONFIG_NAND_SPL */