blob: 1a139d739eccee84e937ed6df81004967f8cd3ec [file] [log] [blame]
wdenk4a9cbbe2002-08-27 09:48:53 +00001/*
2 * (C) Copyright 2000
3 * 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 Roese0c7ffc02005-08-16 18:18:00 +020026#include <ppc4xx_enet.h>
wdenk4a9cbbe2002-08-27 09:48:53 +000027#include <asm/processor.h>
28#include <ppc4xx.h>
29
Wolfgang Denk6405a152006-03-31 18:32:53 +020030#if defined(CONFIG_405GP) || defined(CONFIG_405EP)
31DECLARE_GLOBAL_DATA_PTR;
32#endif
33
wdenk4a9cbbe2002-08-27 09:48:53 +000034
35#define mtebc(reg, data) mtdcr(ebccfga,reg);mtdcr(ebccfgd,data)
36
stroese764fced2003-06-05 15:35:20 +000037#ifdef CFG_INIT_DCACHE_CS
38# if (CFG_INIT_DCACHE_CS == 0)
39# define PBxAP pb0ap
40# define PBxCR pb0cr
41# if (defined(CFG_EBC_PB0AP) && defined(CFG_EBC_PB0CR))
42# define PBxAP_VAL CFG_EBC_PB0AP
43# define PBxCR_VAL CFG_EBC_PB0CR
44# endif
45# endif
46# if (CFG_INIT_DCACHE_CS == 1)
47# define PBxAP pb1ap
48# define PBxCR pb1cr
49# if (defined(CFG_EBC_PB1AP) && defined(CFG_EBC_PB1CR))
50# define PBxAP_VAL CFG_EBC_PB1AP
51# define PBxCR_VAL CFG_EBC_PB1CR
52# endif
53# endif
54# if (CFG_INIT_DCACHE_CS == 2)
55# define PBxAP pb2ap
56# define PBxCR pb2cr
57# if (defined(CFG_EBC_PB2AP) && defined(CFG_EBC_PB2CR))
58# define PBxAP_VAL CFG_EBC_PB2AP
59# define PBxCR_VAL CFG_EBC_PB2CR
60# endif
61# endif
62# if (CFG_INIT_DCACHE_CS == 3)
63# define PBxAP pb3ap
64# define PBxCR pb3cr
65# if (defined(CFG_EBC_PB3AP) && defined(CFG_EBC_PB3CR))
66# define PBxAP_VAL CFG_EBC_PB3AP
67# define PBxCR_VAL CFG_EBC_PB3CR
68# endif
69# endif
70# if (CFG_INIT_DCACHE_CS == 4)
71# define PBxAP pb4ap
72# define PBxCR pb4cr
73# if (defined(CFG_EBC_PB4AP) && defined(CFG_EBC_PB4CR))
74# define PBxAP_VAL CFG_EBC_PB4AP
75# define PBxCR_VAL CFG_EBC_PB4CR
76# endif
77# endif
78# if (CFG_INIT_DCACHE_CS == 5)
79# define PBxAP pb5ap
80# define PBxCR pb5cr
81# if (defined(CFG_EBC_PB5AP) && defined(CFG_EBC_PB5CR))
82# define PBxAP_VAL CFG_EBC_PB5AP
83# define PBxCR_VAL CFG_EBC_PB5CR
84# endif
85# endif
86# if (CFG_INIT_DCACHE_CS == 6)
87# define PBxAP pb6ap
88# define PBxCR pb6cr
89# if (defined(CFG_EBC_PB6AP) && defined(CFG_EBC_PB6CR))
90# define PBxAP_VAL CFG_EBC_PB6AP
91# define PBxCR_VAL CFG_EBC_PB6CR
92# endif
93# endif
94# if (CFG_INIT_DCACHE_CS == 7)
95# define PBxAP pb7ap
96# define PBxCR pb7cr
97# if (defined(CFG_EBC_PB7AP) && defined(CFG_EBC_PB7CR))
98# define PBxAP_VAL CFG_EBC_PB7AP
99# define PBxCR_VAL CFG_EBC_PB7CR
100# endif
101# endif
102#endif /* CFG_INIT_DCACHE_CS */
103
wdenk4a9cbbe2002-08-27 09:48:53 +0000104
105/*
106 * Breath some life into the CPU...
107 *
108 * Set up the memory map,
109 * initialize a bunch of registers
110 */
111void
112cpu_init_f (void)
113{
stroese434979e2003-05-23 11:18:02 +0000114#if defined(CONFIG_405EP)
115 /*
116 * GPIO0 setup (select GPIO or alternate function)
117 */
118 out32(GPIO0_OSRH, CFG_GPIO0_OSRH); /* output select */
119 out32(GPIO0_OSRL, CFG_GPIO0_OSRL);
120 out32(GPIO0_ISR1H, CFG_GPIO0_ISR1H); /* input select */
121 out32(GPIO0_ISR1L, CFG_GPIO0_ISR1L);
122 out32(GPIO0_TSRH, CFG_GPIO0_TSRH); /* three-state select */
123 out32(GPIO0_TSRL, CFG_GPIO0_TSRL);
124 out32(GPIO0_TCR, CFG_GPIO0_TCR); /* enable output driver for outputs */
125
126 /*
127 * Set EMAC noise filter bits
128 */
129 mtdcr(cpc0_epctl, CPC0_EPRCSR_E0NFE | CPC0_EPRCSR_E1NFE);
130#endif /* CONFIG_405EP */
131
wdenk4a9cbbe2002-08-27 09:48:53 +0000132 /*
133 * External Bus Controller (EBC) Setup
134 */
135#if (defined(CFG_EBC_PB0AP) && defined(CFG_EBC_PB0CR))
136 /*
137 * Move the next instructions into icache, since these modify the flash
138 * we are running from!
139 */
140 asm volatile(" bl 0f" ::: "lr");
141 asm volatile("0: mflr 3" ::: "r3");
142 asm volatile(" addi 4, 0, 14" ::: "r4");
143 asm volatile(" mtctr 4" ::: "ctr");
144 asm volatile("1: icbt 0, 3");
145 asm volatile(" addi 3, 3, 32" ::: "r3");
146 asm volatile(" bdnz 1b" ::: "ctr", "cr0");
147 asm volatile(" addis 3, 0, 0x0" ::: "r3");
148 asm volatile(" ori 3, 3, 0xA000" ::: "r3");
149 asm volatile(" mtctr 3" ::: "ctr");
150 asm volatile("2: bdnz 2b" ::: "ctr", "cr0");
151
152 mtebc(pb0ap, CFG_EBC_PB0AP);
153 mtebc(pb0cr, CFG_EBC_PB0CR);
154#endif
155
stroese764fced2003-06-05 15:35:20 +0000156#if (defined(CFG_EBC_PB1AP) && defined(CFG_EBC_PB1CR) && !(CFG_INIT_DCACHE_CS == 1))
wdenk4a9cbbe2002-08-27 09:48:53 +0000157 mtebc(pb1ap, CFG_EBC_PB1AP);
158 mtebc(pb1cr, CFG_EBC_PB1CR);
159#endif
160
stroese764fced2003-06-05 15:35:20 +0000161#if (defined(CFG_EBC_PB2AP) && defined(CFG_EBC_PB2CR) && !(CFG_INIT_DCACHE_CS == 2))
wdenk4a9cbbe2002-08-27 09:48:53 +0000162 mtebc(pb2ap, CFG_EBC_PB2AP);
163 mtebc(pb2cr, CFG_EBC_PB2CR);
164#endif
165
stroese764fced2003-06-05 15:35:20 +0000166#if (defined(CFG_EBC_PB3AP) && defined(CFG_EBC_PB3CR) && !(CFG_INIT_DCACHE_CS == 3))
wdenk4a9cbbe2002-08-27 09:48:53 +0000167 mtebc(pb3ap, CFG_EBC_PB3AP);
168 mtebc(pb3cr, CFG_EBC_PB3CR);
169#endif
170
stroese764fced2003-06-05 15:35:20 +0000171#if (defined(CFG_EBC_PB4AP) && defined(CFG_EBC_PB4CR) && !(CFG_INIT_DCACHE_CS == 4))
wdenk4a9cbbe2002-08-27 09:48:53 +0000172 mtebc(pb4ap, CFG_EBC_PB4AP);
173 mtebc(pb4cr, CFG_EBC_PB4CR);
174#endif
175
stroese764fced2003-06-05 15:35:20 +0000176#if (defined(CFG_EBC_PB5AP) && defined(CFG_EBC_PB5CR) && !(CFG_INIT_DCACHE_CS == 5))
wdenk4a9cbbe2002-08-27 09:48:53 +0000177 mtebc(pb5ap, CFG_EBC_PB5AP);
178 mtebc(pb5cr, CFG_EBC_PB5CR);
179#endif
180
stroese764fced2003-06-05 15:35:20 +0000181#if (defined(CFG_EBC_PB6AP) && defined(CFG_EBC_PB6CR) && !(CFG_INIT_DCACHE_CS == 6))
wdenk4a9cbbe2002-08-27 09:48:53 +0000182 mtebc(pb6ap, CFG_EBC_PB6AP);
183 mtebc(pb6cr, CFG_EBC_PB6CR);
184#endif
185
stroese764fced2003-06-05 15:35:20 +0000186#if (defined(CFG_EBC_PB7AP) && defined(CFG_EBC_PB7CR) && !(CFG_INIT_DCACHE_CS == 7))
wdenk4a9cbbe2002-08-27 09:48:53 +0000187 mtebc(pb7ap, CFG_EBC_PB7AP);
188 mtebc(pb7cr, CFG_EBC_PB7CR);
189#endif
190
191#if defined(CONFIG_WATCHDOG)
192 unsigned long val;
193
194 val = mfspr(tcr);
Stefan Roeseb30f2a12005-08-08 12:42:22 +0200195#if defined(CONFIG_440EP) || defined(CONFIG_440GR)
Stefan Roese326c9712005-08-01 16:41:48 +0200196 val |= 0xb8000000; /* generate system reset after 1.34 seconds */
197#else
wdenk4a9cbbe2002-08-27 09:48:53 +0000198 val |= 0xf0000000; /* generate system reset after 2.684 seconds */
Stefan Roese326c9712005-08-01 16:41:48 +0200199#endif
wdenk4a9cbbe2002-08-27 09:48:53 +0000200 mtspr(tcr, val);
201
202 val = mfspr(tsr);
203 val |= 0x80000000; /* enable watchdog timer */
204 mtspr(tsr, val);
205
206 reset_4xx_watchdog();
207#endif /* CONFIG_WATCHDOG */
208}
209
210/*
211 * initialize higher level parts of CPU like time base and timers
212 */
213int cpu_init_r (void)
214{
stroese434979e2003-05-23 11:18:02 +0000215#if defined(CONFIG_405GP) || defined(CONFIG_405EP)
wdenk4a9cbbe2002-08-27 09:48:53 +0000216 bd_t *bd = gd->bd;
217 unsigned long reg;
stroese434979e2003-05-23 11:18:02 +0000218#if defined(CONFIG_405GP)
stroese60308462003-03-20 15:21:50 +0000219 uint pvr = get_pvr();
stroese434979e2003-05-23 11:18:02 +0000220#endif
stroese764fced2003-06-05 15:35:20 +0000221
222#ifdef CFG_INIT_DCACHE_CS
223 /*
224 * Flush and invalidate dcache, then disable CS for temporary stack.
225 * Afterwards, this CS can be used for other purposes
226 */
227 dcache_disable(); /* flush and invalidate dcache */
228 mtebc(PBxAP, 0);
229 mtebc(PBxCR, 0); /* disable CS for temporary stack */
230
231#if (defined(PBxAP_VAL) && defined(PBxCR_VAL))
232 /*
233 * Write new value into CS register
234 */
235 mtebc(PBxAP, PBxAP_VAL);
236 mtebc(PBxCR, PBxCR_VAL);
237#endif
238#endif /* CFG_INIT_DCACHE_CS */
wdenk4a9cbbe2002-08-27 09:48:53 +0000239
240 /*
241 * Write Ethernetaddress into on-chip register
242 */
243 reg = 0x00000000;
244 reg |= bd->bi_enetaddr[0]; /* set high address */
245 reg = reg << 8;
246 reg |= bd->bi_enetaddr[1];
247 out32 (EMAC_IAH, reg);
248
249 reg = 0x00000000;
250 reg |= bd->bi_enetaddr[2]; /* set low address */
251 reg = reg << 8;
252 reg |= bd->bi_enetaddr[3];
253 reg = reg << 8;
254 reg |= bd->bi_enetaddr[4];
255 reg = reg << 8;
256 reg |= bd->bi_enetaddr[5];
257 out32 (EMAC_IAL, reg);
stroese60308462003-03-20 15:21:50 +0000258
stroese434979e2003-05-23 11:18:02 +0000259#if defined(CONFIG_405GP)
stroese60308462003-03-20 15:21:50 +0000260 /*
261 * Set edge conditioning circuitry on PPC405GPr
262 * for compatibility to existing PPC405GP designs.
263 */
stroeseff90f802003-04-04 16:00:33 +0000264 if ((pvr & 0xfffffff0) == (PVR_405GPR_RB & 0xfffffff0)) {
stroese60308462003-03-20 15:21:50 +0000265 mtdcr(ecr, 0x60606000);
266 }
stroese434979e2003-05-23 11:18:02 +0000267#endif /* defined(CONFIG_405GP) */
268#endif /* defined(CONFIG_405GP) || defined(CONFIG_405EP) */
wdenk4a9cbbe2002-08-27 09:48:53 +0000269 return (0);
270}