blob: b27567fa4d14100e2ae07fe83ee3c394da06c29b [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>
28#include <ppc4xx.h>
29
Wolfgang Denkd87080b2006-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
stroese37208782003-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
Stefan Roesea4c8d132006-06-02 16:18:04 +0200104#if defined(CFG_440_GPIO_TABLE)
105gpio_param_s gpio_tab[GPIO_GROUP_MAX][GPIO_MAX] = CFG_440_GPIO_TABLE;
106
107void set_chip_gpio_configuration(gpio_param_s (*gpio_tab)[GPIO_GROUP_MAX][GPIO_MAX])
108{
109 unsigned char i=0, j=0, reg_offset = 0, gpio_core;
110 unsigned long gpio_reg, gpio_core_add;
111
112 for (gpio_core=0; gpio_core<GPIO_GROUP_MAX; gpio_core++) {
113 j = 0;
114 reg_offset = 0;
115 /* GPIO config of the GPIOs 0 to 31 */
116 for (i=0; i<GPIO_MAX; i++, j++) {
117 if (i == GPIO_MAX/2) {
118 reg_offset = 4;
119 j = i-16;
120 }
121
122 gpio_core_add = (*gpio_tab)[gpio_core][i].add;
123
124 if (((*gpio_tab)[gpio_core][i].in_out == GPIO_IN) ||
125 ((*gpio_tab)[gpio_core][i].in_out == GPIO_BI)) {
126
127 switch ((*gpio_tab)[gpio_core][i].alt_nb) {
128 case GPIO_SEL:
129 break;
130
131 case GPIO_ALT1:
132 gpio_reg = in32(GPIO_IS1(gpio_core_add+reg_offset))
133 & ~(GPIO_MASK >> (j*2));
134 gpio_reg = gpio_reg | (GPIO_IN_SEL >> (j*2));
135 out32(GPIO_IS1(gpio_core_add+reg_offset), gpio_reg);
136 break;
137
138 case GPIO_ALT2:
139 gpio_reg = in32(GPIO_IS2(gpio_core_add+reg_offset))
140 & ~(GPIO_MASK >> (j*2));
141 gpio_reg = gpio_reg | (GPIO_IN_SEL >> (j*2));
142 out32(GPIO_IS2(gpio_core_add+reg_offset), gpio_reg);
143 break;
144
145 case GPIO_ALT3:
146 gpio_reg = in32(GPIO_IS3(gpio_core_add+reg_offset))
147 & ~(GPIO_MASK >> (j*2));
148 gpio_reg = gpio_reg | (GPIO_IN_SEL >> (j*2));
149 out32(GPIO_IS3(gpio_core_add+reg_offset), gpio_reg);
150 break;
151 }
152 }
153
154 if (((*gpio_tab)[gpio_core][i].in_out == GPIO_OUT) ||
155 ((*gpio_tab)[gpio_core][i].in_out == GPIO_BI)) {
156
157 switch ((*gpio_tab)[gpio_core][i].alt_nb) {
158 case GPIO_SEL:
159 if (gpio_core == GPIO0) {
160 gpio_reg = in32(GPIO0_TCR) | (0x80000000 >> (j));
161 out32(GPIO0_TCR, gpio_reg);
162 }
163
164 if (gpio_core == GPIO1) {
165 gpio_reg = in32(GPIO1_TCR) | (0x80000000 >> (j));
166 out32(GPIO1_TCR, gpio_reg);
167 }
168
169 gpio_reg = in32(GPIO_OS(gpio_core_add+reg_offset))
170 & ~(GPIO_MASK >> (j*2));
171 out32(GPIO_OS(gpio_core_add+reg_offset), gpio_reg);
172 gpio_reg = in32(GPIO_TS(gpio_core_add+reg_offset))
173 & ~(GPIO_MASK >> (j*2));
174 out32(GPIO_TS(gpio_core_add+reg_offset), gpio_reg);
175 break;
176
177 case GPIO_ALT1:
178 gpio_reg = in32(GPIO_OS(gpio_core_add+reg_offset))
179 & ~(GPIO_MASK >> (j*2));
180 gpio_reg = gpio_reg | (GPIO_ALT1_SEL >> (j*2));
181 out32(GPIO_OS(gpio_core_add+reg_offset), gpio_reg);
182 gpio_reg = in32(GPIO_TS(gpio_core_add+reg_offset))
183 & ~(GPIO_MASK >> (j*2));
184 gpio_reg = gpio_reg | (GPIO_ALT1_SEL >> (j*2));
185 out32(GPIO_TS(gpio_core_add+reg_offset), gpio_reg);
186 break;
187
188 case GPIO_ALT2:
189 gpio_reg = in32(GPIO_OS(gpio_core_add+reg_offset))
190 & ~(GPIO_MASK >> (j*2));
191 gpio_reg = gpio_reg | (GPIO_ALT2_SEL >> (j*2));
192 out32(GPIO_OS(gpio_core_add+reg_offset), gpio_reg);
193 gpio_reg = in32(GPIO_TS(gpio_core_add+reg_offset))
194 & ~(GPIO_MASK >> (j*2));
195 gpio_reg = gpio_reg | (GPIO_ALT2_SEL >> (j*2));
196 out32(GPIO_TS(gpio_core_add+reg_offset), gpio_reg);
197 break;
198
199 case GPIO_ALT3:
200 gpio_reg = in32(GPIO_OS(gpio_core_add+reg_offset))
201 & ~(GPIO_MASK >> (j*2));
202 gpio_reg = gpio_reg | (GPIO_ALT3_SEL >> (j*2));
203 out32(GPIO_OS(gpio_core_add+reg_offset), gpio_reg);
204 gpio_reg = in32(GPIO_TS(gpio_core_add+reg_offset))
205 & ~(GPIO_MASK >> (j*2));
206 gpio_reg = gpio_reg | (GPIO_ALT3_SEL >> (j*2));
207 out32(GPIO_TS(gpio_core_add+reg_offset), gpio_reg);
208 break;
209 }
210 }
211 }
212 }
213}
214#endif /* CFG_440_GPIO_TABLE */
wdenk4a9cbbe2002-08-27 09:48:53 +0000215
216/*
217 * Breath some life into the CPU...
218 *
219 * Set up the memory map,
220 * initialize a bunch of registers
221 */
222void
223cpu_init_f (void)
224{
stroeseb867d702003-05-23 11:18:02 +0000225#if defined(CONFIG_405EP)
226 /*
227 * GPIO0 setup (select GPIO or alternate function)
228 */
229 out32(GPIO0_OSRH, CFG_GPIO0_OSRH); /* output select */
230 out32(GPIO0_OSRL, CFG_GPIO0_OSRL);
231 out32(GPIO0_ISR1H, CFG_GPIO0_ISR1H); /* input select */
232 out32(GPIO0_ISR1L, CFG_GPIO0_ISR1L);
233 out32(GPIO0_TSRH, CFG_GPIO0_TSRH); /* three-state select */
234 out32(GPIO0_TSRL, CFG_GPIO0_TSRL);
235 out32(GPIO0_TCR, CFG_GPIO0_TCR); /* enable output driver for outputs */
236
237 /*
238 * Set EMAC noise filter bits
239 */
240 mtdcr(cpc0_epctl, CPC0_EPRCSR_E0NFE | CPC0_EPRCSR_E1NFE);
241#endif /* CONFIG_405EP */
242
Stefan Roesea4c8d132006-06-02 16:18:04 +0200243#if defined(CFG_440_GPIO_TABLE)
244 set_chip_gpio_configuration(&gpio_tab);
245#endif /* CFG_440_GPIO_TABLE */
246
wdenk4a9cbbe2002-08-27 09:48:53 +0000247 /*
248 * External Bus Controller (EBC) Setup
249 */
250#if (defined(CFG_EBC_PB0AP) && defined(CFG_EBC_PB0CR))
Stefan Roesea4c8d132006-06-02 16:18:04 +0200251#if (defined(CONFIG_405GP) || defined(CONFIG_405CR) || \
252 defined(CONFIG_405EP) || defined(CONFIG_405))
wdenk4a9cbbe2002-08-27 09:48:53 +0000253 /*
254 * Move the next instructions into icache, since these modify the flash
255 * we are running from!
256 */
257 asm volatile(" bl 0f" ::: "lr");
258 asm volatile("0: mflr 3" ::: "r3");
259 asm volatile(" addi 4, 0, 14" ::: "r4");
260 asm volatile(" mtctr 4" ::: "ctr");
261 asm volatile("1: icbt 0, 3");
262 asm volatile(" addi 3, 3, 32" ::: "r3");
263 asm volatile(" bdnz 1b" ::: "ctr", "cr0");
264 asm volatile(" addis 3, 0, 0x0" ::: "r3");
265 asm volatile(" ori 3, 3, 0xA000" ::: "r3");
266 asm volatile(" mtctr 3" ::: "ctr");
267 asm volatile("2: bdnz 2b" ::: "ctr", "cr0");
Stefan Roesea4c8d132006-06-02 16:18:04 +0200268#endif
wdenk4a9cbbe2002-08-27 09:48:53 +0000269
270 mtebc(pb0ap, CFG_EBC_PB0AP);
271 mtebc(pb0cr, CFG_EBC_PB0CR);
272#endif
273
stroese37208782003-06-05 15:35:20 +0000274#if (defined(CFG_EBC_PB1AP) && defined(CFG_EBC_PB1CR) && !(CFG_INIT_DCACHE_CS == 1))
wdenk4a9cbbe2002-08-27 09:48:53 +0000275 mtebc(pb1ap, CFG_EBC_PB1AP);
276 mtebc(pb1cr, CFG_EBC_PB1CR);
277#endif
278
stroese37208782003-06-05 15:35:20 +0000279#if (defined(CFG_EBC_PB2AP) && defined(CFG_EBC_PB2CR) && !(CFG_INIT_DCACHE_CS == 2))
wdenk4a9cbbe2002-08-27 09:48:53 +0000280 mtebc(pb2ap, CFG_EBC_PB2AP);
281 mtebc(pb2cr, CFG_EBC_PB2CR);
282#endif
283
stroese37208782003-06-05 15:35:20 +0000284#if (defined(CFG_EBC_PB3AP) && defined(CFG_EBC_PB3CR) && !(CFG_INIT_DCACHE_CS == 3))
wdenk4a9cbbe2002-08-27 09:48:53 +0000285 mtebc(pb3ap, CFG_EBC_PB3AP);
286 mtebc(pb3cr, CFG_EBC_PB3CR);
287#endif
288
stroese37208782003-06-05 15:35:20 +0000289#if (defined(CFG_EBC_PB4AP) && defined(CFG_EBC_PB4CR) && !(CFG_INIT_DCACHE_CS == 4))
wdenk4a9cbbe2002-08-27 09:48:53 +0000290 mtebc(pb4ap, CFG_EBC_PB4AP);
291 mtebc(pb4cr, CFG_EBC_PB4CR);
292#endif
293
stroese37208782003-06-05 15:35:20 +0000294#if (defined(CFG_EBC_PB5AP) && defined(CFG_EBC_PB5CR) && !(CFG_INIT_DCACHE_CS == 5))
wdenk4a9cbbe2002-08-27 09:48:53 +0000295 mtebc(pb5ap, CFG_EBC_PB5AP);
296 mtebc(pb5cr, CFG_EBC_PB5CR);
297#endif
298
stroese37208782003-06-05 15:35:20 +0000299#if (defined(CFG_EBC_PB6AP) && defined(CFG_EBC_PB6CR) && !(CFG_INIT_DCACHE_CS == 6))
wdenk4a9cbbe2002-08-27 09:48:53 +0000300 mtebc(pb6ap, CFG_EBC_PB6AP);
301 mtebc(pb6cr, CFG_EBC_PB6CR);
302#endif
303
stroese37208782003-06-05 15:35:20 +0000304#if (defined(CFG_EBC_PB7AP) && defined(CFG_EBC_PB7CR) && !(CFG_INIT_DCACHE_CS == 7))
wdenk4a9cbbe2002-08-27 09:48:53 +0000305 mtebc(pb7ap, CFG_EBC_PB7AP);
306 mtebc(pb7cr, CFG_EBC_PB7CR);
307#endif
308
309#if defined(CONFIG_WATCHDOG)
310 unsigned long val;
311
312 val = mfspr(tcr);
Stefan Roese846b0dd2005-08-08 12:42:22 +0200313#if defined(CONFIG_440EP) || defined(CONFIG_440GR)
Stefan Roesec157d8e2005-08-01 16:41:48 +0200314 val |= 0xb8000000; /* generate system reset after 1.34 seconds */
315#else
wdenk4a9cbbe2002-08-27 09:48:53 +0000316 val |= 0xf0000000; /* generate system reset after 2.684 seconds */
Stefan Roesec157d8e2005-08-01 16:41:48 +0200317#endif
wdenk4a9cbbe2002-08-27 09:48:53 +0000318 mtspr(tcr, val);
319
320 val = mfspr(tsr);
321 val |= 0x80000000; /* enable watchdog timer */
322 mtspr(tsr, val);
323
324 reset_4xx_watchdog();
325#endif /* CONFIG_WATCHDOG */
326}
327
328/*
329 * initialize higher level parts of CPU like time base and timers
330 */
331int cpu_init_r (void)
332{
stroeseb867d702003-05-23 11:18:02 +0000333#if defined(CONFIG_405GP) || defined(CONFIG_405EP)
wdenk4a9cbbe2002-08-27 09:48:53 +0000334 bd_t *bd = gd->bd;
335 unsigned long reg;
stroeseb867d702003-05-23 11:18:02 +0000336#if defined(CONFIG_405GP)
stroese38daa272003-03-20 15:21:50 +0000337 uint pvr = get_pvr();
stroeseb867d702003-05-23 11:18:02 +0000338#endif
wdenk4a9cbbe2002-08-27 09:48:53 +0000339
stroese37208782003-06-05 15:35:20 +0000340#ifdef CFG_INIT_DCACHE_CS
341 /*
342 * Flush and invalidate dcache, then disable CS for temporary stack.
343 * Afterwards, this CS can be used for other purposes
344 */
345 dcache_disable(); /* flush and invalidate dcache */
346 mtebc(PBxAP, 0);
347 mtebc(PBxCR, 0); /* disable CS for temporary stack */
348
349#if (defined(PBxAP_VAL) && defined(PBxCR_VAL))
350 /*
351 * Write new value into CS register
352 */
353 mtebc(PBxAP, PBxAP_VAL);
354 mtebc(PBxCR, PBxCR_VAL);
355#endif
356#endif /* CFG_INIT_DCACHE_CS */
357
wdenk4a9cbbe2002-08-27 09:48:53 +0000358 /*
359 * Write Ethernetaddress into on-chip register
360 */
361 reg = 0x00000000;
362 reg |= bd->bi_enetaddr[0]; /* set high address */
363 reg = reg << 8;
364 reg |= bd->bi_enetaddr[1];
365 out32 (EMAC_IAH, reg);
366
367 reg = 0x00000000;
368 reg |= bd->bi_enetaddr[2]; /* set low address */
369 reg = reg << 8;
370 reg |= bd->bi_enetaddr[3];
371 reg = reg << 8;
372 reg |= bd->bi_enetaddr[4];
373 reg = reg << 8;
374 reg |= bd->bi_enetaddr[5];
375 out32 (EMAC_IAL, reg);
stroese38daa272003-03-20 15:21:50 +0000376
stroeseb867d702003-05-23 11:18:02 +0000377#if defined(CONFIG_405GP)
stroese38daa272003-03-20 15:21:50 +0000378 /*
379 * Set edge conditioning circuitry on PPC405GPr
380 * for compatibility to existing PPC405GP designs.
381 */
stroesebaa3d522003-04-04 16:00:33 +0000382 if ((pvr & 0xfffffff0) == (PVR_405GPR_RB & 0xfffffff0)) {
stroese38daa272003-03-20 15:21:50 +0000383 mtdcr(ecr, 0x60606000);
384 }
stroeseb867d702003-05-23 11:18:02 +0000385#endif /* defined(CONFIG_405GP) */
386#endif /* defined(CONFIG_405GP) || defined(CONFIG_405EP) */
wdenk4a9cbbe2002-08-27 09:48:53 +0000387 return (0);
388}