blob: 281819af602db1df0fd816b18dc193f55cee4079 [file] [log] [blame]
wdenk4a9cbbe2002-08-27 09:48:53 +00001/*
Stefan Roesedbbd1252007-10-05 17:10:59 +02002 * (C) Copyright 2000-2007
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
Mike Nussf66e2c82008-02-20 11:54:20 -050035#ifndef CFG_PLL_RECONFIG
36#define CFG_PLL_RECONFIG 0
37#endif
38
39void reconfigure_pll(u32 new_cpu_freq)
40{
41#if defined(CONFIG_440EPX)
42 int reset_needed = 0;
43 u32 reg, temp;
44 u32 prbdv0, target_prbdv0, /* CLK_PRIMBD */
45 fwdva, target_fwdva, fwdvb, target_fwdvb, /* CLK_PLLD */
46 fbdv, target_fbdv, lfbdv, target_lfbdv,
47 perdv0, target_perdv0, /* CLK_PERD */
48 spcid0, target_spcid0; /* CLK_SPCID */
49
50 /* Reconfigure clocks if necessary.
51 * See PPC440EPx User's Manual, sections 8.2 and 14 */
52 if (new_cpu_freq == 667) {
53 target_prbdv0 = 2;
54 target_fwdva = 2;
55 target_fwdvb = 4;
56 target_fbdv = 20;
57 target_lfbdv = 1;
58 target_perdv0 = 4;
59 target_spcid0 = 4;
60
61 mfcpr(clk_primbd, reg);
62 temp = (reg & PRBDV_MASK) >> 24;
63 prbdv0 = temp ? temp : 8;
64 if (prbdv0 != target_prbdv0) {
65 reg &= ~PRBDV_MASK;
66 reg |= ((target_prbdv0 == 8 ? 0 : target_prbdv0) << 24);
67 mtcpr(clk_primbd, reg);
68 reset_needed = 1;
69 }
70
71 mfcpr(clk_plld, reg);
72
73 temp = (reg & PLLD_FWDVA_MASK) >> 16;
74 fwdva = temp ? temp : 16;
75
76 temp = (reg & PLLD_FWDVB_MASK) >> 8;
77 fwdvb = temp ? temp : 8;
78
79 temp = (reg & PLLD_FBDV_MASK) >> 24;
80 fbdv = temp ? temp : 32;
81
82 temp = (reg & PLLD_LFBDV_MASK);
83 lfbdv = temp ? temp : 64;
84
85 if (fwdva != target_fwdva || fbdv != target_fbdv || lfbdv != target_lfbdv) {
86 reg &= ~(PLLD_FWDVA_MASK | PLLD_FWDVB_MASK |
87 PLLD_FBDV_MASK | PLLD_LFBDV_MASK);
88 reg |= ((target_fwdva == 16 ? 0 : target_fwdva) << 16) |
89 ((target_fwdvb == 8 ? 0 : target_fwdvb) << 8) |
90 ((target_fbdv == 32 ? 0 : target_fbdv) << 24) |
91 (target_lfbdv == 64 ? 0 : target_lfbdv);
92 mtcpr(clk_plld, reg);
93 reset_needed = 1;
94 }
95
96 mfcpr(clk_perd, reg);
97 perdv0 = (reg & CPR0_PERD_PERDV0_MASK) >> 24;
98 if (perdv0 != target_perdv0) {
99 reg &= ~CPR0_PERD_PERDV0_MASK;
100 reg |= (target_perdv0 << 24);
101 mtcpr(clk_perd, reg);
102 reset_needed = 1;
103 }
104
105 mfcpr(clk_spcid, reg);
106 temp = (reg & CPR0_SPCID_SPCIDV0_MASK) >> 24;
107 spcid0 = temp ? temp : 4;
108 if (spcid0 != target_spcid0) {
109 reg &= ~CPR0_SPCID_SPCIDV0_MASK;
110 reg |= ((target_spcid0 == 4 ? 0 : target_spcid0) << 24);
111 mtcpr(clk_spcid, reg);
112 reset_needed = 1;
113 }
114
115 /* Set reload inhibit so configuration will persist across
116 * processor resets */
117 mfcpr(clk_icfg, reg);
118 reg &= ~CPR0_ICFG_RLI_MASK;
119 reg |= 1 << 31;
120 mtcpr(clk_icfg, reg);
121 }
122
123 /* Reset processor if configuration changed */
124 if (reset_needed) {
125 __asm__ __volatile__ ("sync; isync");
126 mtspr(dbcr0, 0x20000000);
127 }
128#endif
129}
130
wdenk4a9cbbe2002-08-27 09:48:53 +0000131/*
132 * Breath some life into the CPU...
133 *
Mike Nussf66e2c82008-02-20 11:54:20 -0500134 * Reconfigure PLL if necessary,
135 * set up the memory map,
wdenk4a9cbbe2002-08-27 09:48:53 +0000136 * initialize a bunch of registers
137 */
138void
139cpu_init_f (void)
140{
Prodyut Hazarika079589b2008-08-20 09:38:51 -0700141#if defined(CONFIG_WATCHDOG) || defined(CONFIG_440GX) || defined(CONFIG_460EX) || \
142 defined(CONFIG_440SP) || defined(CONFIG_440SPE) || defined(CONFIG_405EX) || \
143 defined(CONFIG_460GT) || defined(CONFIG_460SX)
Stefan Roese745d8a02008-06-28 14:56:17 +0200144 u32 val;
Wolfgang Denkf11033e2007-01-15 13:41:04 +0100145#endif
Stefan Roese5de85142008-06-26 17:36:39 +0200146
Mike Nussf66e2c82008-02-20 11:54:20 -0500147 reconfigure_pll(CFG_PLL_RECONFIG);
Wolfgang Denkf11033e2007-01-15 13:41:04 +0100148
Stefan Roeseaee747f2007-11-15 14:23:55 +0100149#if (defined(CONFIG_405EP) || defined (CONFIG_405EX)) && !defined(CFG_4xx_GPIO_TABLE)
stroeseb867d702003-05-23 11:18:02 +0000150 /*
151 * GPIO0 setup (select GPIO or alternate function)
152 */
Stefan Roesee0a46552006-10-12 19:43:29 +0200153#if defined(CFG_GPIO0_OR)
154 out32(GPIO0_OR, CFG_GPIO0_OR); /* set initial state of output pins */
155#endif
156#if defined(CFG_GPIO0_ODR)
157 out32(GPIO0_ODR, CFG_GPIO0_ODR); /* open-drain select */
158#endif
159 out32(GPIO0_OSRH, CFG_GPIO0_OSRH); /* output select */
stroeseb867d702003-05-23 11:18:02 +0000160 out32(GPIO0_OSRL, CFG_GPIO0_OSRL);
Stefan Roesee0a46552006-10-12 19:43:29 +0200161 out32(GPIO0_ISR1H, CFG_GPIO0_ISR1H); /* input select */
stroeseb867d702003-05-23 11:18:02 +0000162 out32(GPIO0_ISR1L, CFG_GPIO0_ISR1L);
Stefan Roesee0a46552006-10-12 19:43:29 +0200163 out32(GPIO0_TSRH, CFG_GPIO0_TSRH); /* three-state select */
stroeseb867d702003-05-23 11:18:02 +0000164 out32(GPIO0_TSRL, CFG_GPIO0_TSRL);
Stefan Roesedbbd1252007-10-05 17:10:59 +0200165#if defined(CFG_GPIO0_ISR2H)
166 out32(GPIO0_ISR2H, CFG_GPIO0_ISR2H);
167 out32(GPIO0_ISR2L, CFG_GPIO0_ISR2L);
168#endif
169#if defined (CFG_GPIO0_TCR)
Stefan Roesee0a46552006-10-12 19:43:29 +0200170 out32(GPIO0_TCR, CFG_GPIO0_TCR); /* enable output driver for outputs */
Stefan Roesedbbd1252007-10-05 17:10:59 +0200171#endif
Markus Brunnerf766cdf2008-03-27 10:46:25 +0100172#endif /* CONFIG_405EP ... && !CFG_4xx_GPIO_TABLE */
stroeseb867d702003-05-23 11:18:02 +0000173
Stefan Roesebec92642007-12-28 15:53:46 +0100174#if defined (CONFIG_405EP)
stroeseb867d702003-05-23 11:18:02 +0000175 /*
176 * Set EMAC noise filter bits
177 */
178 mtdcr(cpc0_epctl, CPC0_EPRCSR_E0NFE | CPC0_EPRCSR_E1NFE);
Stefan Roesec0556902007-12-28 16:08:08 +0100179
180 /*
181 * Enable the internal PCI arbiter
182 */
183 mtdcr(cpc0_pci, mfdcr(cpc0_pci) | CPC0_PCI_HOST_CFG_EN | CPC0_PCI_ARBIT_EN);
stroeseb867d702003-05-23 11:18:02 +0000184#endif /* CONFIG_405EP */
185
Stefan Roeseaee747f2007-11-15 14:23:55 +0100186#if defined(CFG_4xx_GPIO_TABLE)
Stefan Roese0d974d52007-03-24 15:57:09 +0100187 gpio_set_chip_configuration();
Stefan Roeseaee747f2007-11-15 14:23:55 +0100188#endif /* CFG_4xx_GPIO_TABLE */
Stefan Roesea4c8d132006-06-02 16:18:04 +0200189
wdenk4a9cbbe2002-08-27 09:48:53 +0000190 /*
191 * External Bus Controller (EBC) Setup
192 */
193#if (defined(CFG_EBC_PB0AP) && defined(CFG_EBC_PB0CR))
Stefan Roesea4c8d132006-06-02 16:18:04 +0200194#if (defined(CONFIG_405GP) || defined(CONFIG_405CR) || \
Stefan Roesee01bd212007-03-21 13:38:59 +0100195 defined(CONFIG_405EP) || defined(CONFIG_405EZ) || \
Stefan Roesedbbd1252007-10-05 17:10:59 +0200196 defined(CONFIG_405EX) || defined(CONFIG_405))
wdenk4a9cbbe2002-08-27 09:48:53 +0000197 /*
198 * Move the next instructions into icache, since these modify the flash
199 * we are running from!
200 */
201 asm volatile(" bl 0f" ::: "lr");
202 asm volatile("0: mflr 3" ::: "r3");
Wolfgang Denk1636d1c2007-06-22 23:59:00 +0200203 asm volatile(" addi 4, 0, 14" ::: "r4");
wdenk4a9cbbe2002-08-27 09:48:53 +0000204 asm volatile(" mtctr 4" ::: "ctr");
205 asm volatile("1: icbt 0, 3");
206 asm volatile(" addi 3, 3, 32" ::: "r3");
207 asm volatile(" bdnz 1b" ::: "ctr", "cr0");
208 asm volatile(" addis 3, 0, 0x0" ::: "r3");
209 asm volatile(" ori 3, 3, 0xA000" ::: "r3");
210 asm volatile(" mtctr 3" ::: "ctr");
211 asm volatile("2: bdnz 2b" ::: "ctr", "cr0");
Stefan Roesea4c8d132006-06-02 16:18:04 +0200212#endif
wdenk4a9cbbe2002-08-27 09:48:53 +0000213
214 mtebc(pb0ap, CFG_EBC_PB0AP);
215 mtebc(pb0cr, CFG_EBC_PB0CR);
216#endif
217
stroese37208782003-06-05 15:35:20 +0000218#if (defined(CFG_EBC_PB1AP) && defined(CFG_EBC_PB1CR) && !(CFG_INIT_DCACHE_CS == 1))
wdenk4a9cbbe2002-08-27 09:48:53 +0000219 mtebc(pb1ap, CFG_EBC_PB1AP);
220 mtebc(pb1cr, CFG_EBC_PB1CR);
221#endif
222
stroese37208782003-06-05 15:35:20 +0000223#if (defined(CFG_EBC_PB2AP) && defined(CFG_EBC_PB2CR) && !(CFG_INIT_DCACHE_CS == 2))
wdenk4a9cbbe2002-08-27 09:48:53 +0000224 mtebc(pb2ap, CFG_EBC_PB2AP);
225 mtebc(pb2cr, CFG_EBC_PB2CR);
226#endif
227
stroese37208782003-06-05 15:35:20 +0000228#if (defined(CFG_EBC_PB3AP) && defined(CFG_EBC_PB3CR) && !(CFG_INIT_DCACHE_CS == 3))
wdenk4a9cbbe2002-08-27 09:48:53 +0000229 mtebc(pb3ap, CFG_EBC_PB3AP);
230 mtebc(pb3cr, CFG_EBC_PB3CR);
231#endif
232
stroese37208782003-06-05 15:35:20 +0000233#if (defined(CFG_EBC_PB4AP) && defined(CFG_EBC_PB4CR) && !(CFG_INIT_DCACHE_CS == 4))
wdenk4a9cbbe2002-08-27 09:48:53 +0000234 mtebc(pb4ap, CFG_EBC_PB4AP);
235 mtebc(pb4cr, CFG_EBC_PB4CR);
236#endif
237
stroese37208782003-06-05 15:35:20 +0000238#if (defined(CFG_EBC_PB5AP) && defined(CFG_EBC_PB5CR) && !(CFG_INIT_DCACHE_CS == 5))
wdenk4a9cbbe2002-08-27 09:48:53 +0000239 mtebc(pb5ap, CFG_EBC_PB5AP);
240 mtebc(pb5cr, CFG_EBC_PB5CR);
241#endif
242
stroese37208782003-06-05 15:35:20 +0000243#if (defined(CFG_EBC_PB6AP) && defined(CFG_EBC_PB6CR) && !(CFG_INIT_DCACHE_CS == 6))
wdenk4a9cbbe2002-08-27 09:48:53 +0000244 mtebc(pb6ap, CFG_EBC_PB6AP);
245 mtebc(pb6cr, CFG_EBC_PB6CR);
246#endif
247
stroese37208782003-06-05 15:35:20 +0000248#if (defined(CFG_EBC_PB7AP) && defined(CFG_EBC_PB7CR) && !(CFG_INIT_DCACHE_CS == 7))
wdenk4a9cbbe2002-08-27 09:48:53 +0000249 mtebc(pb7ap, CFG_EBC_PB7AP);
250 mtebc(pb7cr, CFG_EBC_PB7CR);
251#endif
252
Heiko Schochercb482072007-01-18 11:28:51 +0100253#if defined (CFG_EBC_CFG)
Stefan Roese4745aca2007-02-20 10:57:08 +0100254 mtebc(EBC0_CFG, CFG_EBC_CFG);
Heiko Schocherca43ba12007-01-11 15:44:44 +0100255#endif
wdenk4a9cbbe2002-08-27 09:48:53 +0000256
Wolfgang Denkf11033e2007-01-15 13:41:04 +0100257#if defined(CONFIG_WATCHDOG)
wdenk4a9cbbe2002-08-27 09:48:53 +0000258 val = mfspr(tcr);
Stefan Roese846b0dd2005-08-08 12:42:22 +0200259#if defined(CONFIG_440EP) || defined(CONFIG_440GR)
Stefan Roesec157d8e2005-08-01 16:41:48 +0200260 val |= 0xb8000000; /* generate system reset after 1.34 seconds */
Igor Lisitsina11e0692007-03-28 19:06:19 +0400261#elif defined(CONFIG_440EPX)
262 val |= 0xb0000000; /* generate system reset after 1.34 seconds */
Stefan Roesec157d8e2005-08-01 16:41:48 +0200263#else
wdenk4a9cbbe2002-08-27 09:48:53 +0000264 val |= 0xf0000000; /* generate system reset after 2.684 seconds */
Stefan Roesec157d8e2005-08-01 16:41:48 +0200265#endif
Stefan Roese1c2ce222006-11-27 14:12:17 +0100266#if defined(CFG_4xx_RESET_TYPE)
267 val &= ~0x30000000; /* clear WRC bits */
268 val |= CFG_4xx_RESET_TYPE << 28; /* set board specific WRC type */
269#endif
wdenk4a9cbbe2002-08-27 09:48:53 +0000270 mtspr(tcr, val);
271
272 val = mfspr(tsr);
273 val |= 0x80000000; /* enable watchdog timer */
274 mtspr(tsr, val);
275
276 reset_4xx_watchdog();
277#endif /* CONFIG_WATCHDOG */
Stefan Roese745d8a02008-06-28 14:56:17 +0200278
Stefan Roese5de85142008-06-26 17:36:39 +0200279#if defined(CONFIG_440GX)
280 /* Take the GX out of compatibility mode
281 * Travis Sawyer, 9 Mar 2004
282 * NOTE: 440gx user manual inconsistency here
283 * Compatibility mode and Ethernet Clock select are not
284 * correct in the manual
285 */
286 mfsdr(sdr_mfr, val);
287 val &= ~0x10000000;
288 mtsdr(sdr_mfr,val);
289#endif /* CONFIG_440GX */
290
Stefan Roese745d8a02008-06-28 14:56:17 +0200291#if defined(CONFIG_460EX)
292 /*
293 * Set SDR0_AHB_CFG[A2P_INCR4] (bit 24) and
294 * clear SDR0_AHB_CFG[A2P_PROT2] (bit 25) for a new 460EX errata
295 * regarding concurrent use of AHB USB OTG, USB 2.0 host and SATA
296 */
297 mfsdr(SDR0_AHB_CFG, val);
298 val |= 0x80;
299 val &= ~0x40;
300 mtsdr(SDR0_AHB_CFG, val);
301 mfsdr(SDR0_USB2HOST_CFG, val);
302 val &= ~0xf00;
303 val |= 0x400;
304 mtsdr(SDR0_USB2HOST_CFG, val);
305#endif /* CONFIG_460EX */
Prodyut Hazarika079589b2008-08-20 09:38:51 -0700306
307#if defined(CONFIG_440SP) || defined(CONFIG_440SPE) || \
308 defined(CONFIG_460EX) || defined(CONFIG_460GT) || \
309 defined(CONFIG_405EX) || defined(CONFIG_460SX)
310 /*
311 * Set PLB4 arbiter (Segment 0 and 1) to 4 deep pipeline read
312 */
313 val = (mfdcr(plb0_acr) & ~plb0_acr_rdp_mask) | plb0_acr_rdp_4deep;
314 mtdcr(plb0_acr, val);
315 val = (mfdcr(plb1_acr) & ~plb1_acr_rdp_mask) | plb1_acr_rdp_4deep;
316 mtdcr(plb1_acr, val);
317#endif /* CONFIG_440SP/SPE || CONFIG_460EX/GT || CONFIG_405EX */
wdenk4a9cbbe2002-08-27 09:48:53 +0000318}
319
320/*
321 * initialize higher level parts of CPU like time base and timers
322 */
323int cpu_init_r (void)
324{
stroeseb867d702003-05-23 11:18:02 +0000325#if defined(CONFIG_405GP) || defined(CONFIG_405EP)
wdenk4a9cbbe2002-08-27 09:48:53 +0000326 bd_t *bd = gd->bd;
327 unsigned long reg;
stroeseb867d702003-05-23 11:18:02 +0000328#if defined(CONFIG_405GP)
stroese38daa272003-03-20 15:21:50 +0000329 uint pvr = get_pvr();
stroeseb867d702003-05-23 11:18:02 +0000330#endif
wdenk4a9cbbe2002-08-27 09:48:53 +0000331
332 /*
333 * Write Ethernetaddress into on-chip register
334 */
335 reg = 0x00000000;
336 reg |= bd->bi_enetaddr[0]; /* set high address */
337 reg = reg << 8;
338 reg |= bd->bi_enetaddr[1];
339 out32 (EMAC_IAH, reg);
340
341 reg = 0x00000000;
342 reg |= bd->bi_enetaddr[2]; /* set low address */
343 reg = reg << 8;
344 reg |= bd->bi_enetaddr[3];
345 reg = reg << 8;
346 reg |= bd->bi_enetaddr[4];
347 reg = reg << 8;
348 reg |= bd->bi_enetaddr[5];
349 out32 (EMAC_IAL, reg);
stroese38daa272003-03-20 15:21:50 +0000350
stroeseb867d702003-05-23 11:18:02 +0000351#if defined(CONFIG_405GP)
stroese38daa272003-03-20 15:21:50 +0000352 /*
353 * Set edge conditioning circuitry on PPC405GPr
354 * for compatibility to existing PPC405GP designs.
355 */
stroesebaa3d522003-04-04 16:00:33 +0000356 if ((pvr & 0xfffffff0) == (PVR_405GPR_RB & 0xfffffff0)) {
stroese38daa272003-03-20 15:21:50 +0000357 mtdcr(ecr, 0x60606000);
358 }
stroeseb867d702003-05-23 11:18:02 +0000359#endif /* defined(CONFIG_405GP) */
360#endif /* defined(CONFIG_405GP) || defined(CONFIG_405EP) */
Stefan Roese2801b2d2008-03-11 15:05:50 +0100361
wdenk4a9cbbe2002-08-27 09:48:53 +0000362 return (0);
363}