blob: 66e86372603598a626166dbccc3edc91955e9ddf [file] [log] [blame]
wdenk4a9cbbe2002-08-27 09:48:53 +00001/*
Stefan Roesea4c8d132006-06-02 16:18:04 +02002 * (C) Copyright 2000-2006
wdenk4a9cbbe2002-08-27 09:48:53 +00003 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4 *
5 * See file CREDITS for list of people who contributed to this
6 * project.
7 *
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License as
10 * published by the Free Software Foundation; either version 2 of
11 * the License, or (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
21 * MA 02111-1307 USA
22 */
23
24#include <common.h>
25#include <watchdog.h>
Stefan Roesed6c61aa2005-08-16 18:18:00 +020026#include <ppc4xx_enet.h>
wdenk4a9cbbe2002-08-27 09:48:53 +000027#include <asm/processor.h>
Stefan Roese0d974d52007-03-24 15:57:09 +010028#include <asm/gpio.h>
wdenk4a9cbbe2002-08-27 09:48:53 +000029#include <ppc4xx.h>
30
Wolfgang Denkd87080b2006-03-31 18:32:53 +020031#if defined(CONFIG_405GP) || defined(CONFIG_405EP)
32DECLARE_GLOBAL_DATA_PTR;
33#endif
34
stroese37208782003-06-05 15:35:20 +000035#ifdef CFG_INIT_DCACHE_CS
36# if (CFG_INIT_DCACHE_CS == 0)
37# define PBxAP pb0ap
38# define PBxCR pb0cr
39# if (defined(CFG_EBC_PB0AP) && defined(CFG_EBC_PB0CR))
40# define PBxAP_VAL CFG_EBC_PB0AP
41# define PBxCR_VAL CFG_EBC_PB0CR
42# endif
43# endif
44# if (CFG_INIT_DCACHE_CS == 1)
45# define PBxAP pb1ap
46# define PBxCR pb1cr
47# if (defined(CFG_EBC_PB1AP) && defined(CFG_EBC_PB1CR))
48# define PBxAP_VAL CFG_EBC_PB1AP
49# define PBxCR_VAL CFG_EBC_PB1CR
50# endif
51# endif
52# if (CFG_INIT_DCACHE_CS == 2)
53# define PBxAP pb2ap
54# define PBxCR pb2cr
55# if (defined(CFG_EBC_PB2AP) && defined(CFG_EBC_PB2CR))
56# define PBxAP_VAL CFG_EBC_PB2AP
57# define PBxCR_VAL CFG_EBC_PB2CR
58# endif
59# endif
60# if (CFG_INIT_DCACHE_CS == 3)
61# define PBxAP pb3ap
62# define PBxCR pb3cr
63# if (defined(CFG_EBC_PB3AP) && defined(CFG_EBC_PB3CR))
64# define PBxAP_VAL CFG_EBC_PB3AP
65# define PBxCR_VAL CFG_EBC_PB3CR
66# endif
67# endif
68# if (CFG_INIT_DCACHE_CS == 4)
69# define PBxAP pb4ap
70# define PBxCR pb4cr
71# if (defined(CFG_EBC_PB4AP) && defined(CFG_EBC_PB4CR))
72# define PBxAP_VAL CFG_EBC_PB4AP
73# define PBxCR_VAL CFG_EBC_PB4CR
74# endif
75# endif
76# if (CFG_INIT_DCACHE_CS == 5)
77# define PBxAP pb5ap
78# define PBxCR pb5cr
79# if (defined(CFG_EBC_PB5AP) && defined(CFG_EBC_PB5CR))
80# define PBxAP_VAL CFG_EBC_PB5AP
81# define PBxCR_VAL CFG_EBC_PB5CR
82# endif
83# endif
84# if (CFG_INIT_DCACHE_CS == 6)
85# define PBxAP pb6ap
86# define PBxCR pb6cr
87# if (defined(CFG_EBC_PB6AP) && defined(CFG_EBC_PB6CR))
88# define PBxAP_VAL CFG_EBC_PB6AP
89# define PBxCR_VAL CFG_EBC_PB6CR
90# endif
91# endif
92# if (CFG_INIT_DCACHE_CS == 7)
93# define PBxAP pb7ap
94# define PBxCR pb7cr
95# if (defined(CFG_EBC_PB7AP) && defined(CFG_EBC_PB7CR))
96# define PBxAP_VAL CFG_EBC_PB7AP
97# define PBxCR_VAL CFG_EBC_PB7CR
98# endif
99# endif
100#endif /* CFG_INIT_DCACHE_CS */
101
wdenk4a9cbbe2002-08-27 09:48:53 +0000102/*
103 * Breath some life into the CPU...
104 *
105 * Set up the memory map,
106 * initialize a bunch of registers
107 */
108void
109cpu_init_f (void)
110{
Wolfgang Denkf11033e2007-01-15 13:41:04 +0100111#if defined(CONFIG_WATCHDOG)
112 unsigned long val;
113#endif
114
stroeseb867d702003-05-23 11:18:02 +0000115#if defined(CONFIG_405EP)
116 /*
117 * GPIO0 setup (select GPIO or alternate function)
118 */
Stefan Roesee0a46552006-10-12 19:43:29 +0200119#if defined(CFG_GPIO0_OR)
120 out32(GPIO0_OR, CFG_GPIO0_OR); /* set initial state of output pins */
121#endif
122#if defined(CFG_GPIO0_ODR)
123 out32(GPIO0_ODR, CFG_GPIO0_ODR); /* open-drain select */
124#endif
125 out32(GPIO0_OSRH, CFG_GPIO0_OSRH); /* output select */
stroeseb867d702003-05-23 11:18:02 +0000126 out32(GPIO0_OSRL, CFG_GPIO0_OSRL);
Stefan Roesee0a46552006-10-12 19:43:29 +0200127 out32(GPIO0_ISR1H, CFG_GPIO0_ISR1H); /* input select */
stroeseb867d702003-05-23 11:18:02 +0000128 out32(GPIO0_ISR1L, CFG_GPIO0_ISR1L);
Stefan Roesee0a46552006-10-12 19:43:29 +0200129 out32(GPIO0_TSRH, CFG_GPIO0_TSRH); /* three-state select */
stroeseb867d702003-05-23 11:18:02 +0000130 out32(GPIO0_TSRL, CFG_GPIO0_TSRL);
Stefan Roesee0a46552006-10-12 19:43:29 +0200131 out32(GPIO0_TCR, CFG_GPIO0_TCR); /* enable output driver for outputs */
stroeseb867d702003-05-23 11:18:02 +0000132
133 /*
134 * Set EMAC noise filter bits
135 */
136 mtdcr(cpc0_epctl, CPC0_EPRCSR_E0NFE | CPC0_EPRCSR_E1NFE);
137#endif /* CONFIG_405EP */
138
Stefan Roesea4c8d132006-06-02 16:18:04 +0200139#if defined(CFG_440_GPIO_TABLE)
Stefan Roese0d974d52007-03-24 15:57:09 +0100140 gpio_set_chip_configuration();
Stefan Roesea4c8d132006-06-02 16:18:04 +0200141#endif /* CFG_440_GPIO_TABLE */
142
wdenk4a9cbbe2002-08-27 09:48:53 +0000143 /*
144 * External Bus Controller (EBC) Setup
145 */
146#if (defined(CFG_EBC_PB0AP) && defined(CFG_EBC_PB0CR))
Stefan Roesea4c8d132006-06-02 16:18:04 +0200147#if (defined(CONFIG_405GP) || defined(CONFIG_405CR) || \
Stefan Roesee01bd212007-03-21 13:38:59 +0100148 defined(CONFIG_405EP) || defined(CONFIG_405EZ) || \
149 defined(CONFIG_405))
wdenk4a9cbbe2002-08-27 09:48:53 +0000150 /*
151 * Move the next instructions into icache, since these modify the flash
152 * we are running from!
153 */
154 asm volatile(" bl 0f" ::: "lr");
155 asm volatile("0: mflr 3" ::: "r3");
156 asm volatile(" addi 4, 0, 14" ::: "r4");
157 asm volatile(" mtctr 4" ::: "ctr");
158 asm volatile("1: icbt 0, 3");
159 asm volatile(" addi 3, 3, 32" ::: "r3");
160 asm volatile(" bdnz 1b" ::: "ctr", "cr0");
161 asm volatile(" addis 3, 0, 0x0" ::: "r3");
162 asm volatile(" ori 3, 3, 0xA000" ::: "r3");
163 asm volatile(" mtctr 3" ::: "ctr");
164 asm volatile("2: bdnz 2b" ::: "ctr", "cr0");
Stefan Roesea4c8d132006-06-02 16:18:04 +0200165#endif
wdenk4a9cbbe2002-08-27 09:48:53 +0000166
167 mtebc(pb0ap, CFG_EBC_PB0AP);
168 mtebc(pb0cr, CFG_EBC_PB0CR);
169#endif
170
stroese37208782003-06-05 15:35:20 +0000171#if (defined(CFG_EBC_PB1AP) && defined(CFG_EBC_PB1CR) && !(CFG_INIT_DCACHE_CS == 1))
wdenk4a9cbbe2002-08-27 09:48:53 +0000172 mtebc(pb1ap, CFG_EBC_PB1AP);
173 mtebc(pb1cr, CFG_EBC_PB1CR);
174#endif
175
stroese37208782003-06-05 15:35:20 +0000176#if (defined(CFG_EBC_PB2AP) && defined(CFG_EBC_PB2CR) && !(CFG_INIT_DCACHE_CS == 2))
wdenk4a9cbbe2002-08-27 09:48:53 +0000177 mtebc(pb2ap, CFG_EBC_PB2AP);
178 mtebc(pb2cr, CFG_EBC_PB2CR);
179#endif
180
stroese37208782003-06-05 15:35:20 +0000181#if (defined(CFG_EBC_PB3AP) && defined(CFG_EBC_PB3CR) && !(CFG_INIT_DCACHE_CS == 3))
wdenk4a9cbbe2002-08-27 09:48:53 +0000182 mtebc(pb3ap, CFG_EBC_PB3AP);
183 mtebc(pb3cr, CFG_EBC_PB3CR);
184#endif
185
stroese37208782003-06-05 15:35:20 +0000186#if (defined(CFG_EBC_PB4AP) && defined(CFG_EBC_PB4CR) && !(CFG_INIT_DCACHE_CS == 4))
wdenk4a9cbbe2002-08-27 09:48:53 +0000187 mtebc(pb4ap, CFG_EBC_PB4AP);
188 mtebc(pb4cr, CFG_EBC_PB4CR);
189#endif
190
stroese37208782003-06-05 15:35:20 +0000191#if (defined(CFG_EBC_PB5AP) && defined(CFG_EBC_PB5CR) && !(CFG_INIT_DCACHE_CS == 5))
wdenk4a9cbbe2002-08-27 09:48:53 +0000192 mtebc(pb5ap, CFG_EBC_PB5AP);
193 mtebc(pb5cr, CFG_EBC_PB5CR);
194#endif
195
stroese37208782003-06-05 15:35:20 +0000196#if (defined(CFG_EBC_PB6AP) && defined(CFG_EBC_PB6CR) && !(CFG_INIT_DCACHE_CS == 6))
wdenk4a9cbbe2002-08-27 09:48:53 +0000197 mtebc(pb6ap, CFG_EBC_PB6AP);
198 mtebc(pb6cr, CFG_EBC_PB6CR);
199#endif
200
stroese37208782003-06-05 15:35:20 +0000201#if (defined(CFG_EBC_PB7AP) && defined(CFG_EBC_PB7CR) && !(CFG_INIT_DCACHE_CS == 7))
wdenk4a9cbbe2002-08-27 09:48:53 +0000202 mtebc(pb7ap, CFG_EBC_PB7AP);
203 mtebc(pb7cr, CFG_EBC_PB7CR);
204#endif
205
Heiko Schochercb482072007-01-18 11:28:51 +0100206#if defined (CFG_EBC_CFG)
Stefan Roese4745aca2007-02-20 10:57:08 +0100207 mtebc(EBC0_CFG, CFG_EBC_CFG);
Heiko Schocherca43ba12007-01-11 15:44:44 +0100208#endif
wdenk4a9cbbe2002-08-27 09:48:53 +0000209
Wolfgang Denkf11033e2007-01-15 13:41:04 +0100210#if defined(CONFIG_WATCHDOG)
wdenk4a9cbbe2002-08-27 09:48:53 +0000211 val = mfspr(tcr);
Stefan Roese846b0dd2005-08-08 12:42:22 +0200212#if defined(CONFIG_440EP) || defined(CONFIG_440GR)
Stefan Roesec157d8e2005-08-01 16:41:48 +0200213 val |= 0xb8000000; /* generate system reset after 1.34 seconds */
214#else
wdenk4a9cbbe2002-08-27 09:48:53 +0000215 val |= 0xf0000000; /* generate system reset after 2.684 seconds */
Stefan Roesec157d8e2005-08-01 16:41:48 +0200216#endif
Stefan Roese1c2ce222006-11-27 14:12:17 +0100217#if defined(CFG_4xx_RESET_TYPE)
218 val &= ~0x30000000; /* clear WRC bits */
219 val |= CFG_4xx_RESET_TYPE << 28; /* set board specific WRC type */
220#endif
wdenk4a9cbbe2002-08-27 09:48:53 +0000221 mtspr(tcr, val);
222
223 val = mfspr(tsr);
224 val |= 0x80000000; /* enable watchdog timer */
225 mtspr(tsr, val);
226
227 reset_4xx_watchdog();
228#endif /* CONFIG_WATCHDOG */
229}
230
231/*
232 * initialize higher level parts of CPU like time base and timers
233 */
234int cpu_init_r (void)
235{
stroeseb867d702003-05-23 11:18:02 +0000236#if defined(CONFIG_405GP) || defined(CONFIG_405EP)
wdenk4a9cbbe2002-08-27 09:48:53 +0000237 bd_t *bd = gd->bd;
238 unsigned long reg;
stroeseb867d702003-05-23 11:18:02 +0000239#if defined(CONFIG_405GP)
stroese38daa272003-03-20 15:21:50 +0000240 uint pvr = get_pvr();
stroeseb867d702003-05-23 11:18:02 +0000241#endif
wdenk4a9cbbe2002-08-27 09:48:53 +0000242
stroese37208782003-06-05 15:35:20 +0000243#ifdef CFG_INIT_DCACHE_CS
244 /*
245 * Flush and invalidate dcache, then disable CS for temporary stack.
246 * Afterwards, this CS can be used for other purposes
247 */
248 dcache_disable(); /* flush and invalidate dcache */
249 mtebc(PBxAP, 0);
250 mtebc(PBxCR, 0); /* disable CS for temporary stack */
251
252#if (defined(PBxAP_VAL) && defined(PBxCR_VAL))
253 /*
254 * Write new value into CS register
255 */
256 mtebc(PBxAP, PBxAP_VAL);
257 mtebc(PBxCR, PBxCR_VAL);
258#endif
259#endif /* CFG_INIT_DCACHE_CS */
260
wdenk4a9cbbe2002-08-27 09:48:53 +0000261 /*
262 * Write Ethernetaddress into on-chip register
263 */
264 reg = 0x00000000;
265 reg |= bd->bi_enetaddr[0]; /* set high address */
266 reg = reg << 8;
267 reg |= bd->bi_enetaddr[1];
268 out32 (EMAC_IAH, reg);
269
270 reg = 0x00000000;
271 reg |= bd->bi_enetaddr[2]; /* set low address */
272 reg = reg << 8;
273 reg |= bd->bi_enetaddr[3];
274 reg = reg << 8;
275 reg |= bd->bi_enetaddr[4];
276 reg = reg << 8;
277 reg |= bd->bi_enetaddr[5];
278 out32 (EMAC_IAL, reg);
stroese38daa272003-03-20 15:21:50 +0000279
stroeseb867d702003-05-23 11:18:02 +0000280#if defined(CONFIG_405GP)
stroese38daa272003-03-20 15:21:50 +0000281 /*
282 * Set edge conditioning circuitry on PPC405GPr
283 * for compatibility to existing PPC405GP designs.
284 */
stroesebaa3d522003-04-04 16:00:33 +0000285 if ((pvr & 0xfffffff0) == (PVR_405GPR_RB & 0xfffffff0)) {
stroese38daa272003-03-20 15:21:50 +0000286 mtdcr(ecr, 0x60606000);
287 }
stroeseb867d702003-05-23 11:18:02 +0000288#endif /* defined(CONFIG_405GP) */
289#endif /* defined(CONFIG_405GP) || defined(CONFIG_405EP) */
wdenk4a9cbbe2002-08-27 09:48:53 +0000290 return (0);
291}