]> git.sur5r.net Git - u-boot/blob - cpu/ppc4xx/cpu_init.c
Merge with /home/stefan/git/u-boot/denx-merge-sr
[u-boot] / cpu / ppc4xx / cpu_init.c
1 /*
2  * (C) Copyright 2000-2006
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>
26 #include <ppc4xx_enet.h>
27 #include <asm/processor.h>
28 #include <ppc4xx.h>
29
30 #if defined(CONFIG_405GP)  || defined(CONFIG_405EP)
31 DECLARE_GLOBAL_DATA_PTR;
32 #endif
33
34 #ifdef CFG_INIT_DCACHE_CS
35 # if (CFG_INIT_DCACHE_CS == 0)
36 #  define PBxAP pb0ap
37 #  define PBxCR pb0cr
38 #  if (defined(CFG_EBC_PB0AP) && defined(CFG_EBC_PB0CR))
39 #   define PBxAP_VAL CFG_EBC_PB0AP
40 #   define PBxCR_VAL CFG_EBC_PB0CR
41 #  endif
42 # endif
43 # if (CFG_INIT_DCACHE_CS == 1)
44 #  define PBxAP pb1ap
45 #  define PBxCR pb1cr
46 #  if (defined(CFG_EBC_PB1AP) && defined(CFG_EBC_PB1CR))
47 #   define PBxAP_VAL CFG_EBC_PB1AP
48 #   define PBxCR_VAL CFG_EBC_PB1CR
49 #  endif
50 # endif
51 # if (CFG_INIT_DCACHE_CS == 2)
52 #  define PBxAP pb2ap
53 #  define PBxCR pb2cr
54 #  if (defined(CFG_EBC_PB2AP) && defined(CFG_EBC_PB2CR))
55 #   define PBxAP_VAL CFG_EBC_PB2AP
56 #   define PBxCR_VAL CFG_EBC_PB2CR
57 #  endif
58 # endif
59 # if (CFG_INIT_DCACHE_CS == 3)
60 #  define PBxAP pb3ap
61 #  define PBxCR pb3cr
62 #  if (defined(CFG_EBC_PB3AP) && defined(CFG_EBC_PB3CR))
63 #   define PBxAP_VAL CFG_EBC_PB3AP
64 #   define PBxCR_VAL CFG_EBC_PB3CR
65 #  endif
66 # endif
67 # if (CFG_INIT_DCACHE_CS == 4)
68 #  define PBxAP pb4ap
69 #  define PBxCR pb4cr
70 #  if (defined(CFG_EBC_PB4AP) && defined(CFG_EBC_PB4CR))
71 #   define PBxAP_VAL CFG_EBC_PB4AP
72 #   define PBxCR_VAL CFG_EBC_PB4CR
73 #  endif
74 # endif
75 # if (CFG_INIT_DCACHE_CS == 5)
76 #  define PBxAP pb5ap
77 #  define PBxCR pb5cr
78 #  if (defined(CFG_EBC_PB5AP) && defined(CFG_EBC_PB5CR))
79 #   define PBxAP_VAL CFG_EBC_PB5AP
80 #   define PBxCR_VAL CFG_EBC_PB5CR
81 #  endif
82 # endif
83 # if (CFG_INIT_DCACHE_CS == 6)
84 #  define PBxAP pb6ap
85 #  define PBxCR pb6cr
86 #  if (defined(CFG_EBC_PB6AP) && defined(CFG_EBC_PB6CR))
87 #   define PBxAP_VAL CFG_EBC_PB6AP
88 #   define PBxCR_VAL CFG_EBC_PB6CR
89 #  endif
90 # endif
91 # if (CFG_INIT_DCACHE_CS == 7)
92 #  define PBxAP pb7ap
93 #  define PBxCR pb7cr
94 #  if (defined(CFG_EBC_PB7AP) && defined(CFG_EBC_PB7CR))
95 #   define PBxAP_VAL CFG_EBC_PB7AP
96 #   define PBxCR_VAL CFG_EBC_PB7CR
97 #  endif
98 # endif
99 #endif /* CFG_INIT_DCACHE_CS */
100
101 #if defined(CFG_440_GPIO_TABLE)
102 gpio_param_s gpio_tab[GPIO_GROUP_MAX][GPIO_MAX] = CFG_440_GPIO_TABLE;
103
104 void set_chip_gpio_configuration(gpio_param_s (*gpio_tab)[GPIO_GROUP_MAX][GPIO_MAX])
105 {
106         unsigned char i=0, j=0, reg_offset = 0, gpio_core;
107         unsigned long gpio_reg, gpio_core_add;
108
109         for (gpio_core=0; gpio_core<GPIO_GROUP_MAX; gpio_core++) {
110                 j = 0;
111                 reg_offset = 0;
112                 /* GPIO config of the GPIOs 0 to 31 */
113                 for (i=0; i<GPIO_MAX; i++, j++) {
114                         if (i == GPIO_MAX/2) {
115                                 reg_offset = 4;
116                                 j = i-16;
117                         }
118
119                         gpio_core_add = (*gpio_tab)[gpio_core][i].add;
120
121                         if (((*gpio_tab)[gpio_core][i].in_out == GPIO_IN) ||
122                              ((*gpio_tab)[gpio_core][i].in_out == GPIO_BI)) {
123
124                                 switch ((*gpio_tab)[gpio_core][i].alt_nb) {
125                                 case GPIO_SEL:
126                                         break;
127
128                                 case GPIO_ALT1:
129                                         gpio_reg = in32(GPIO_IS1(gpio_core_add+reg_offset))
130                                                 & ~(GPIO_MASK >> (j*2));
131                                         gpio_reg = gpio_reg | (GPIO_IN_SEL >> (j*2));
132                                         out32(GPIO_IS1(gpio_core_add+reg_offset), gpio_reg);
133                                         break;
134
135                                 case GPIO_ALT2:
136                                         gpio_reg = in32(GPIO_IS2(gpio_core_add+reg_offset))
137                                                 & ~(GPIO_MASK >> (j*2));
138                                         gpio_reg = gpio_reg | (GPIO_IN_SEL >> (j*2));
139                                         out32(GPIO_IS2(gpio_core_add+reg_offset), gpio_reg);
140                                         break;
141
142                                 case GPIO_ALT3:
143                                         gpio_reg = in32(GPIO_IS3(gpio_core_add+reg_offset))
144                                                 & ~(GPIO_MASK >> (j*2));
145                                         gpio_reg = gpio_reg | (GPIO_IN_SEL >> (j*2));
146                                         out32(GPIO_IS3(gpio_core_add+reg_offset), gpio_reg);
147                                         break;
148                                 }
149                         }
150
151                         if (((*gpio_tab)[gpio_core][i].in_out == GPIO_OUT) ||
152                              ((*gpio_tab)[gpio_core][i].in_out == GPIO_BI)) {
153
154                                 switch ((*gpio_tab)[gpio_core][i].alt_nb) {
155                                 case GPIO_SEL:
156                                         if (gpio_core == GPIO0) {
157                                                 gpio_reg = in32(GPIO0_TCR) | (0x80000000 >> (j));
158                                                 out32(GPIO0_TCR, gpio_reg);
159                                         }
160
161                                         if (gpio_core == GPIO1) {
162                                                 gpio_reg = in32(GPIO1_TCR) | (0x80000000 >> (j));
163                                                 out32(GPIO1_TCR, gpio_reg);
164                                         }
165
166                                         gpio_reg = in32(GPIO_OS(gpio_core_add+reg_offset))
167                                                 & ~(GPIO_MASK >> (j*2));
168                                         out32(GPIO_OS(gpio_core_add+reg_offset), gpio_reg);
169                                         gpio_reg = in32(GPIO_TS(gpio_core_add+reg_offset))
170                                                 & ~(GPIO_MASK >> (j*2));
171                                         out32(GPIO_TS(gpio_core_add+reg_offset), gpio_reg);
172                                         break;
173
174                                 case GPIO_ALT1:
175                                         gpio_reg = in32(GPIO_OS(gpio_core_add+reg_offset))
176                                                 & ~(GPIO_MASK >> (j*2));
177                                         gpio_reg = gpio_reg | (GPIO_ALT1_SEL >> (j*2));
178                                         out32(GPIO_OS(gpio_core_add+reg_offset), gpio_reg);
179                                         gpio_reg = in32(GPIO_TS(gpio_core_add+reg_offset))
180                                                 & ~(GPIO_MASK >> (j*2));
181                                         gpio_reg = gpio_reg | (GPIO_ALT1_SEL >> (j*2));
182                                         out32(GPIO_TS(gpio_core_add+reg_offset), gpio_reg);
183                                         break;
184
185                                 case GPIO_ALT2:
186                                         gpio_reg = in32(GPIO_OS(gpio_core_add+reg_offset))
187                                                 & ~(GPIO_MASK >> (j*2));
188                                         gpio_reg = gpio_reg | (GPIO_ALT2_SEL >> (j*2));
189                                         out32(GPIO_OS(gpio_core_add+reg_offset), gpio_reg);
190                                         gpio_reg = in32(GPIO_TS(gpio_core_add+reg_offset))
191                                                 & ~(GPIO_MASK >> (j*2));
192                                         gpio_reg = gpio_reg | (GPIO_ALT2_SEL >> (j*2));
193                                         out32(GPIO_TS(gpio_core_add+reg_offset), gpio_reg);
194                                         break;
195
196                                 case GPIO_ALT3:
197                                         gpio_reg = in32(GPIO_OS(gpio_core_add+reg_offset))
198                                                 & ~(GPIO_MASK >> (j*2));
199                                         gpio_reg = gpio_reg | (GPIO_ALT3_SEL >> (j*2));
200                                         out32(GPIO_OS(gpio_core_add+reg_offset), gpio_reg);
201                                         gpio_reg = in32(GPIO_TS(gpio_core_add+reg_offset))
202                                                 & ~(GPIO_MASK >> (j*2));
203                                         gpio_reg = gpio_reg | (GPIO_ALT3_SEL >> (j*2));
204                                         out32(GPIO_TS(gpio_core_add+reg_offset), gpio_reg);
205                                         break;
206                                 }
207                         }
208                 }
209         }
210 }
211 #endif /* CFG_440_GPIO_TABLE */
212
213 /*
214  * Breath some life into the CPU...
215  *
216  * Set up the memory map,
217  * initialize a bunch of registers
218  */
219 void
220 cpu_init_f (void)
221 {
222 #if defined(CONFIG_405EP)
223         /*
224          * GPIO0 setup (select GPIO or alternate function)
225          */
226 #if defined(CFG_GPIO0_OR)
227         out32(GPIO0_OR, CFG_GPIO0_OR);          /* set initial state of output pins     */
228 #endif
229 #if defined(CFG_GPIO0_ODR)
230         out32(GPIO0_ODR, CFG_GPIO0_ODR);        /* open-drain select                    */
231 #endif
232         out32(GPIO0_OSRH, CFG_GPIO0_OSRH);      /* output select                        */
233         out32(GPIO0_OSRL, CFG_GPIO0_OSRL);
234         out32(GPIO0_ISR1H, CFG_GPIO0_ISR1H);    /* input select                         */
235         out32(GPIO0_ISR1L, CFG_GPIO0_ISR1L);
236         out32(GPIO0_TSRH, CFG_GPIO0_TSRH);      /* three-state select                   */
237         out32(GPIO0_TSRL, CFG_GPIO0_TSRL);
238         out32(GPIO0_TCR, CFG_GPIO0_TCR);        /* enable output driver for outputs     */
239
240         /*
241          * Set EMAC noise filter bits
242          */
243         mtdcr(cpc0_epctl, CPC0_EPRCSR_E0NFE | CPC0_EPRCSR_E1NFE);
244 #endif /* CONFIG_405EP */
245
246 #if defined(CFG_440_GPIO_TABLE)
247         set_chip_gpio_configuration(&gpio_tab);
248 #endif /* CFG_440_GPIO_TABLE */
249
250         /*
251          * External Bus Controller (EBC) Setup
252          */
253 #if (defined(CFG_EBC_PB0AP) && defined(CFG_EBC_PB0CR))
254 #if (defined(CONFIG_405GP) || defined(CONFIG_405CR) || \
255      defined(CONFIG_405EP) || defined(CONFIG_405))
256         /*
257          * Move the next instructions into icache, since these modify the flash
258          * we are running from!
259          */
260         asm volatile("  bl      0f"             ::: "lr");
261         asm volatile("0:        mflr    3"              ::: "r3");
262         asm volatile("  addi    4, 0, 14"       ::: "r4");
263         asm volatile("  mtctr   4"              ::: "ctr");
264         asm volatile("1:        icbt    0, 3");
265         asm volatile("  addi    3, 3, 32"       ::: "r3");
266         asm volatile("  bdnz    1b"             ::: "ctr", "cr0");
267         asm volatile("  addis   3, 0, 0x0"      ::: "r3");
268         asm volatile("  ori     3, 3, 0xA000"   ::: "r3");
269         asm volatile("  mtctr   3"              ::: "ctr");
270         asm volatile("2:        bdnz    2b"             ::: "ctr", "cr0");
271 #endif
272
273         mtebc(pb0ap, CFG_EBC_PB0AP);
274         mtebc(pb0cr, CFG_EBC_PB0CR);
275 #endif
276
277 #if (defined(CFG_EBC_PB1AP) && defined(CFG_EBC_PB1CR) && !(CFG_INIT_DCACHE_CS == 1))
278         mtebc(pb1ap, CFG_EBC_PB1AP);
279         mtebc(pb1cr, CFG_EBC_PB1CR);
280 #endif
281
282 #if (defined(CFG_EBC_PB2AP) && defined(CFG_EBC_PB2CR) && !(CFG_INIT_DCACHE_CS == 2))
283         mtebc(pb2ap, CFG_EBC_PB2AP);
284         mtebc(pb2cr, CFG_EBC_PB2CR);
285 #endif
286
287 #if (defined(CFG_EBC_PB3AP) && defined(CFG_EBC_PB3CR) && !(CFG_INIT_DCACHE_CS == 3))
288         mtebc(pb3ap, CFG_EBC_PB3AP);
289         mtebc(pb3cr, CFG_EBC_PB3CR);
290 #endif
291
292 #if (defined(CFG_EBC_PB4AP) && defined(CFG_EBC_PB4CR) && !(CFG_INIT_DCACHE_CS == 4))
293         mtebc(pb4ap, CFG_EBC_PB4AP);
294         mtebc(pb4cr, CFG_EBC_PB4CR);
295 #endif
296
297 #if (defined(CFG_EBC_PB5AP) && defined(CFG_EBC_PB5CR) && !(CFG_INIT_DCACHE_CS == 5))
298         mtebc(pb5ap, CFG_EBC_PB5AP);
299         mtebc(pb5cr, CFG_EBC_PB5CR);
300 #endif
301
302 #if (defined(CFG_EBC_PB6AP) && defined(CFG_EBC_PB6CR) && !(CFG_INIT_DCACHE_CS == 6))
303         mtebc(pb6ap, CFG_EBC_PB6AP);
304         mtebc(pb6cr, CFG_EBC_PB6CR);
305 #endif
306
307 #if (defined(CFG_EBC_PB7AP) && defined(CFG_EBC_PB7CR) && !(CFG_INIT_DCACHE_CS == 7))
308         mtebc(pb7ap, CFG_EBC_PB7AP);
309         mtebc(pb7cr, CFG_EBC_PB7CR);
310 #endif
311
312 #if defined(CONFIG_WATCHDOG)
313         unsigned long val;
314
315         val = mfspr(tcr);
316 #if defined(CONFIG_440EP) || defined(CONFIG_440GR)
317         val |= 0xb8000000;      /* generate system reset after 1.34 seconds */
318 #else
319         val |= 0xf0000000;      /* generate system reset after 2.684 seconds */
320 #endif
321 #if defined(CFG_4xx_RESET_TYPE)
322         val &= ~0x30000000;                     /* clear WRC bits */
323         val |= CFG_4xx_RESET_TYPE << 28;        /* set board specific WRC type */
324 #endif
325         mtspr(tcr, val);
326
327         val = mfspr(tsr);
328         val |= 0x80000000;      /* enable watchdog timer */
329         mtspr(tsr, val);
330
331         reset_4xx_watchdog();
332 #endif /* CONFIG_WATCHDOG */
333 }
334
335 /*
336  * initialize higher level parts of CPU like time base and timers
337  */
338 int cpu_init_r (void)
339 {
340 #if defined(CONFIG_405GP)  || defined(CONFIG_405EP)
341         bd_t *bd = gd->bd;
342         unsigned long reg;
343 #if defined(CONFIG_405GP)
344         uint pvr = get_pvr();
345 #endif
346
347 #ifdef CFG_INIT_DCACHE_CS
348         /*
349          * Flush and invalidate dcache, then disable CS for temporary stack.
350          * Afterwards, this CS can be used for other purposes
351          */
352         dcache_disable();   /* flush and invalidate dcache */
353         mtebc(PBxAP, 0);
354         mtebc(PBxCR, 0);    /* disable CS for temporary stack */
355
356 #if (defined(PBxAP_VAL) && defined(PBxCR_VAL))
357         /*
358          * Write new value into CS register
359          */
360         mtebc(PBxAP, PBxAP_VAL);
361         mtebc(PBxCR, PBxCR_VAL);
362 #endif
363 #endif /* CFG_INIT_DCACHE_CS */
364
365         /*
366          * Write Ethernetaddress into on-chip register
367          */
368         reg = 0x00000000;
369         reg |= bd->bi_enetaddr[0];           /* set high address */
370         reg = reg << 8;
371         reg |= bd->bi_enetaddr[1];
372         out32 (EMAC_IAH, reg);
373
374         reg = 0x00000000;
375         reg |= bd->bi_enetaddr[2];           /* set low address  */
376         reg = reg << 8;
377         reg |= bd->bi_enetaddr[3];
378         reg = reg << 8;
379         reg |= bd->bi_enetaddr[4];
380         reg = reg << 8;
381         reg |= bd->bi_enetaddr[5];
382         out32 (EMAC_IAL, reg);
383
384 #if defined(CONFIG_405GP)
385         /*
386          * Set edge conditioning circuitry on PPC405GPr
387          * for compatibility to existing PPC405GP designs.
388          */
389         if ((pvr & 0xfffffff0) == (PVR_405GPR_RB & 0xfffffff0)) {
390                 mtdcr(ecr, 0x60606000);
391         }
392 #endif  /* defined(CONFIG_405GP) */
393 #endif  /* defined(CONFIG_405GP) || defined(CONFIG_405EP) */
394         return (0);
395 }