blob: c04eede90da87385000f622e68887ae451d8640d [file] [log] [blame]
wdenk4a9cbbe2002-08-27 09:48:53 +00001/*
Stefan Roese153b3e22007-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 Roese0c7ffc02005-08-16 18:18:00 +020026#include <ppc4xx_enet.h>
wdenk4a9cbbe2002-08-27 09:48:53 +000027#include <asm/processor.h>
Stefan Roese80354e72007-03-24 15:57:09 +010028#include <asm/gpio.h>
wdenk4a9cbbe2002-08-27 09:48:53 +000029#include <ppc4xx.h>
30
Wolfgang Denk6405a152006-03-31 18:32:53 +020031#if defined(CONFIG_405GP) || defined(CONFIG_405EP)
32DECLARE_GLOBAL_DATA_PTR;
33#endif
34
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020035#ifndef CONFIG_SYS_PLL_RECONFIG
36#define CONFIG_SYS_PLL_RECONFIG 0
Mike Nuss3073ecd2008-02-20 11:54:20 -050037#endif
38
Stefan Roese5f52bd12010-05-19 11:13:24 +020039#if defined(CONFIG_440EPX) || \
40 defined(CONFIG_460EX) || defined(CONFIG_460GT)
41static void reset_with_rli(void)
42{
43 u32 reg;
44
45 /*
46 * Set reload inhibit so configuration will persist across
47 * processor resets
48 */
49 mfcpr(CPR0_ICFG, reg);
50 reg |= CPR0_ICFG_RLI_MASK;
51 mtcpr(CPR0_ICFG, reg);
52
53 /* Reset processor if configuration changed */
54 __asm__ __volatile__ ("sync; isync");
55 mtspr(SPRN_DBCR0, 0x20000000);
56}
57#endif
58
Mike Nuss3073ecd2008-02-20 11:54:20 -050059void reconfigure_pll(u32 new_cpu_freq)
60{
61#if defined(CONFIG_440EPX)
62 int reset_needed = 0;
63 u32 reg, temp;
64 u32 prbdv0, target_prbdv0, /* CLK_PRIMBD */
65 fwdva, target_fwdva, fwdvb, target_fwdvb, /* CLK_PLLD */
66 fbdv, target_fbdv, lfbdv, target_lfbdv,
67 perdv0, target_perdv0, /* CLK_PERD */
68 spcid0, target_spcid0; /* CLK_SPCID */
69
70 /* Reconfigure clocks if necessary.
71 * See PPC440EPx User's Manual, sections 8.2 and 14 */
72 if (new_cpu_freq == 667) {
73 target_prbdv0 = 2;
74 target_fwdva = 2;
75 target_fwdvb = 4;
76 target_fbdv = 20;
77 target_lfbdv = 1;
78 target_perdv0 = 4;
79 target_spcid0 = 4;
80
Niklaus Giger728bd0a2009-10-04 20:04:20 +020081 mfcpr(CPR0_PRIMBD0, reg);
Mike Nuss3073ecd2008-02-20 11:54:20 -050082 temp = (reg & PRBDV_MASK) >> 24;
83 prbdv0 = temp ? temp : 8;
84 if (prbdv0 != target_prbdv0) {
85 reg &= ~PRBDV_MASK;
86 reg |= ((target_prbdv0 == 8 ? 0 : target_prbdv0) << 24);
Niklaus Giger728bd0a2009-10-04 20:04:20 +020087 mtcpr(CPR0_PRIMBD0, reg);
Mike Nuss3073ecd2008-02-20 11:54:20 -050088 reset_needed = 1;
89 }
90
Stefan Roese918010a2009-09-09 16:25:29 +020091 mfcpr(CPR0_PLLD, reg);
Mike Nuss3073ecd2008-02-20 11:54:20 -050092
93 temp = (reg & PLLD_FWDVA_MASK) >> 16;
94 fwdva = temp ? temp : 16;
95
96 temp = (reg & PLLD_FWDVB_MASK) >> 8;
97 fwdvb = temp ? temp : 8;
98
99 temp = (reg & PLLD_FBDV_MASK) >> 24;
100 fbdv = temp ? temp : 32;
101
102 temp = (reg & PLLD_LFBDV_MASK);
103 lfbdv = temp ? temp : 64;
104
105 if (fwdva != target_fwdva || fbdv != target_fbdv || lfbdv != target_lfbdv) {
106 reg &= ~(PLLD_FWDVA_MASK | PLLD_FWDVB_MASK |
107 PLLD_FBDV_MASK | PLLD_LFBDV_MASK);
108 reg |= ((target_fwdva == 16 ? 0 : target_fwdva) << 16) |
109 ((target_fwdvb == 8 ? 0 : target_fwdvb) << 8) |
110 ((target_fbdv == 32 ? 0 : target_fbdv) << 24) |
111 (target_lfbdv == 64 ? 0 : target_lfbdv);
Stefan Roese918010a2009-09-09 16:25:29 +0200112 mtcpr(CPR0_PLLD, reg);
Mike Nuss3073ecd2008-02-20 11:54:20 -0500113 reset_needed = 1;
114 }
115
Stefan Roese918010a2009-09-09 16:25:29 +0200116 mfcpr(CPR0_PERD, reg);
Mike Nuss3073ecd2008-02-20 11:54:20 -0500117 perdv0 = (reg & CPR0_PERD_PERDV0_MASK) >> 24;
118 if (perdv0 != target_perdv0) {
119 reg &= ~CPR0_PERD_PERDV0_MASK;
120 reg |= (target_perdv0 << 24);
Stefan Roese918010a2009-09-09 16:25:29 +0200121 mtcpr(CPR0_PERD, reg);
Mike Nuss3073ecd2008-02-20 11:54:20 -0500122 reset_needed = 1;
123 }
124
Stefan Roese918010a2009-09-09 16:25:29 +0200125 mfcpr(CPR0_SPCID, reg);
Mike Nuss3073ecd2008-02-20 11:54:20 -0500126 temp = (reg & CPR0_SPCID_SPCIDV0_MASK) >> 24;
127 spcid0 = temp ? temp : 4;
128 if (spcid0 != target_spcid0) {
129 reg &= ~CPR0_SPCID_SPCIDV0_MASK;
130 reg |= ((target_spcid0 == 4 ? 0 : target_spcid0) << 24);
Stefan Roese918010a2009-09-09 16:25:29 +0200131 mtcpr(CPR0_SPCID, reg);
Mike Nuss3073ecd2008-02-20 11:54:20 -0500132 reset_needed = 1;
133 }
Rupjyoti Sarmahc9f731e2010-03-24 16:52:02 +0530134 }
135
136 /* Get current value of FWDVA.*/
137 mfcpr(CPR0_PLLD, reg);
138 temp = (reg & PLLD_FWDVA_MASK) >> 16;
Mike Nuss3073ecd2008-02-20 11:54:20 -0500139
Rupjyoti Sarmahc9f731e2010-03-24 16:52:02 +0530140 /*
141 * Check to see if FWDVA has been set to value of 1. if it has we must
142 * modify it.
143 */
144 if (temp == 1) {
145 mfcpr(CPR0_PLLD, reg);
146 /* Get current value of fbdv. */
147 temp = (reg & PLLD_FBDV_MASK) >> 24;
148 fbdv = temp ? temp : 32;
149 /* Get current value of lfbdv. */
150 temp = (reg & PLLD_LFBDV_MASK);
151 lfbdv = temp ? temp : 64;
152 /*
153 * Load register that contains current boot strapping option.
154 */
155 mfcpr(CPR0_ICFG, reg);
156 /* Shift strapping option into low 3 bits.*/
157 reg = (reg >> 28);
158
159 if ((reg == BOOT_STRAP_OPTION_A) || (reg == BOOT_STRAP_OPTION_B) ||
160 (reg == BOOT_STRAP_OPTION_D) || (reg == BOOT_STRAP_OPTION_E)) {
161 /*
162 * Get current value of FWDVA. Assign current FWDVA to
163 * new FWDVB.
164 */
165 mfcpr(CPR0_PLLD, reg);
166 target_fwdvb = (reg & PLLD_FWDVA_MASK) >> 16;
167 fwdvb = target_fwdvb ? target_fwdvb : 8;
168 /*
169 * Get current value of FWDVB. Assign current FWDVB to
170 * new FWDVA.
171 */
172 target_fwdva = (reg & PLLD_FWDVB_MASK) >> 8;
173 fwdva = target_fwdva ? target_fwdva : 16;
174 /*
175 * Update CPR0_PLLD with switched FWDVA and FWDVB.
176 */
177 reg &= ~(PLLD_FWDVA_MASK | PLLD_FWDVB_MASK |
178 PLLD_FBDV_MASK | PLLD_LFBDV_MASK);
179 reg |= ((fwdva == 16 ? 0 : fwdva) << 16) |
180 ((fwdvb == 8 ? 0 : fwdvb) << 8) |
181 ((fbdv == 32 ? 0 : fbdv) << 24) |
182 (lfbdv == 64 ? 0 : lfbdv);
183 mtcpr(CPR0_PLLD, reg);
184 /* Acknowledge that a reset is required. */
185 reset_needed = 1;
186 }
187 }
188
Stefan Roese5f52bd12010-05-19 11:13:24 +0200189 /* Now reset the CPU if needed */
190 if (reset_needed)
191 reset_with_rli();
192#endif
193
194#if defined(CONFIG_460EX) || defined(CONFIG_460GT)
195 u32 reg;
196
197 /*
198 * See "9.2.1.1 Booting with Option E" in the 460EX/GT
199 * users manual
200 */
201 mfcpr(CPR0_PLLC, reg);
202 if ((reg & (CPR0_PLLC_RST | CPR0_PLLC_ENG)) == CPR0_PLLC_RST) {
Rupjyoti Sarmahc9f731e2010-03-24 16:52:02 +0530203 /*
Stefan Roese5f52bd12010-05-19 11:13:24 +0200204 * Set engage bit
Rupjyoti Sarmahc9f731e2010-03-24 16:52:02 +0530205 */
Stefan Roese5f52bd12010-05-19 11:13:24 +0200206 reg = (reg & ~CPR0_PLLC_RST) | CPR0_PLLC_ENG;
207 mtcpr(CPR0_PLLC, reg);
Mike Nuss3073ecd2008-02-20 11:54:20 -0500208
Stefan Roese5f52bd12010-05-19 11:13:24 +0200209 /* Now reset the CPU */
210 reset_with_rli();
Mike Nuss3073ecd2008-02-20 11:54:20 -0500211 }
212#endif
213}
214
wdenk4a9cbbe2002-08-27 09:48:53 +0000215/*
216 * Breath some life into the CPU...
217 *
Mike Nuss3073ecd2008-02-20 11:54:20 -0500218 * Reconfigure PLL if necessary,
219 * set up the memory map,
wdenk4a9cbbe2002-08-27 09:48:53 +0000220 * initialize a bunch of registers
221 */
222void
223cpu_init_f (void)
224{
Stefan Roese1abbbd02008-08-21 11:05:03 +0200225#if defined(CONFIG_WATCHDOG) || defined(CONFIG_440GX) || defined(CONFIG_460EX)
Stefan Roese1b198df2008-06-28 14:56:17 +0200226 u32 val;
Wolfgang Denk86370712007-01-15 13:41:04 +0100227#endif
Stefan Roese51d6d5d2008-06-26 17:36:39 +0200228
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200229 reconfigure_pll(CONFIG_SYS_PLL_RECONFIG);
Wolfgang Denk86370712007-01-15 13:41:04 +0100230
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200231#if (defined(CONFIG_405EP) || defined (CONFIG_405EX)) && !defined(CONFIG_SYS_4xx_GPIO_TABLE)
stroese434979e2003-05-23 11:18:02 +0000232 /*
233 * GPIO0 setup (select GPIO or alternate function)
234 */
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200235#if defined(CONFIG_SYS_GPIO0_OR)
236 out32(GPIO0_OR, CONFIG_SYS_GPIO0_OR); /* set initial state of output pins */
Stefan Roese865b19e2006-10-12 19:43:29 +0200237#endif
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200238#if defined(CONFIG_SYS_GPIO0_ODR)
239 out32(GPIO0_ODR, CONFIG_SYS_GPIO0_ODR); /* open-drain select */
Stefan Roese865b19e2006-10-12 19:43:29 +0200240#endif
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200241 out32(GPIO0_OSRH, CONFIG_SYS_GPIO0_OSRH); /* output select */
242 out32(GPIO0_OSRL, CONFIG_SYS_GPIO0_OSRL);
243 out32(GPIO0_ISR1H, CONFIG_SYS_GPIO0_ISR1H); /* input select */
244 out32(GPIO0_ISR1L, CONFIG_SYS_GPIO0_ISR1L);
245 out32(GPIO0_TSRH, CONFIG_SYS_GPIO0_TSRH); /* three-state select */
246 out32(GPIO0_TSRL, CONFIG_SYS_GPIO0_TSRL);
247#if defined(CONFIG_SYS_GPIO0_ISR2H)
248 out32(GPIO0_ISR2H, CONFIG_SYS_GPIO0_ISR2H);
249 out32(GPIO0_ISR2L, CONFIG_SYS_GPIO0_ISR2L);
Stefan Roese153b3e22007-10-05 17:10:59 +0200250#endif
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200251#if defined (CONFIG_SYS_GPIO0_TCR)
252 out32(GPIO0_TCR, CONFIG_SYS_GPIO0_TCR); /* enable output driver for outputs */
Stefan Roese153b3e22007-10-05 17:10:59 +0200253#endif
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200254#endif /* CONFIG_405EP ... && !CONFIG_SYS_4xx_GPIO_TABLE */
stroese434979e2003-05-23 11:18:02 +0000255
Stefan Roese3f47e7c2007-12-28 15:53:46 +0100256#if defined (CONFIG_405EP)
stroese434979e2003-05-23 11:18:02 +0000257 /*
258 * Set EMAC noise filter bits
259 */
Stefan Roese918010a2009-09-09 16:25:29 +0200260 mtdcr(CPC0_EPCTL, CPC0_EPRCSR_E0NFE | CPC0_EPRCSR_E1NFE);
stroese434979e2003-05-23 11:18:02 +0000261#endif /* CONFIG_405EP */
262
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200263#if defined(CONFIG_SYS_4xx_GPIO_TABLE)
Stefan Roese80354e72007-03-24 15:57:09 +0100264 gpio_set_chip_configuration();
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200265#endif /* CONFIG_SYS_4xx_GPIO_TABLE */
Stefan Roese9eba0c82006-06-02 16:18:04 +0200266
wdenk4a9cbbe2002-08-27 09:48:53 +0000267 /*
268 * External Bus Controller (EBC) Setup
269 */
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200270#if (defined(CONFIG_SYS_EBC_PB0AP) && defined(CONFIG_SYS_EBC_PB0CR))
Stefan Roese9eba0c82006-06-02 16:18:04 +0200271#if (defined(CONFIG_405GP) || defined(CONFIG_405CR) || \
Stefan Roese17ffbc82007-03-21 13:38:59 +0100272 defined(CONFIG_405EP) || defined(CONFIG_405EZ) || \
Stefan Roese153b3e22007-10-05 17:10:59 +0200273 defined(CONFIG_405EX) || defined(CONFIG_405))
wdenk4a9cbbe2002-08-27 09:48:53 +0000274 /*
275 * Move the next instructions into icache, since these modify the flash
276 * we are running from!
277 */
278 asm volatile(" bl 0f" ::: "lr");
279 asm volatile("0: mflr 3" ::: "r3");
Wolfgang Denk70df7bc2007-06-22 23:59:00 +0200280 asm volatile(" addi 4, 0, 14" ::: "r4");
wdenk4a9cbbe2002-08-27 09:48:53 +0000281 asm volatile(" mtctr 4" ::: "ctr");
282 asm volatile("1: icbt 0, 3");
283 asm volatile(" addi 3, 3, 32" ::: "r3");
284 asm volatile(" bdnz 1b" ::: "ctr", "cr0");
285 asm volatile(" addis 3, 0, 0x0" ::: "r3");
286 asm volatile(" ori 3, 3, 0xA000" ::: "r3");
287 asm volatile(" mtctr 3" ::: "ctr");
288 asm volatile("2: bdnz 2b" ::: "ctr", "cr0");
Stefan Roese9eba0c82006-06-02 16:18:04 +0200289#endif
wdenk4a9cbbe2002-08-27 09:48:53 +0000290
Stefan Roese918010a2009-09-09 16:25:29 +0200291 mtebc(PB0AP, CONFIG_SYS_EBC_PB0AP);
292 mtebc(PB0CR, CONFIG_SYS_EBC_PB0CR);
wdenk4a9cbbe2002-08-27 09:48:53 +0000293#endif
294
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200295#if (defined(CONFIG_SYS_EBC_PB1AP) && defined(CONFIG_SYS_EBC_PB1CR) && !(CONFIG_SYS_INIT_DCACHE_CS == 1))
Stefan Roese918010a2009-09-09 16:25:29 +0200296 mtebc(PB1AP, CONFIG_SYS_EBC_PB1AP);
297 mtebc(PB1CR, CONFIG_SYS_EBC_PB1CR);
wdenk4a9cbbe2002-08-27 09:48:53 +0000298#endif
299
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200300#if (defined(CONFIG_SYS_EBC_PB2AP) && defined(CONFIG_SYS_EBC_PB2CR) && !(CONFIG_SYS_INIT_DCACHE_CS == 2))
Stefan Roese918010a2009-09-09 16:25:29 +0200301 mtebc(PB2AP, CONFIG_SYS_EBC_PB2AP);
302 mtebc(PB2CR, CONFIG_SYS_EBC_PB2CR);
wdenk4a9cbbe2002-08-27 09:48:53 +0000303#endif
304
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200305#if (defined(CONFIG_SYS_EBC_PB3AP) && defined(CONFIG_SYS_EBC_PB3CR) && !(CONFIG_SYS_INIT_DCACHE_CS == 3))
Stefan Roese918010a2009-09-09 16:25:29 +0200306 mtebc(PB3AP, CONFIG_SYS_EBC_PB3AP);
307 mtebc(PB3CR, CONFIG_SYS_EBC_PB3CR);
wdenk4a9cbbe2002-08-27 09:48:53 +0000308#endif
309
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200310#if (defined(CONFIG_SYS_EBC_PB4AP) && defined(CONFIG_SYS_EBC_PB4CR) && !(CONFIG_SYS_INIT_DCACHE_CS == 4))
Stefan Roese918010a2009-09-09 16:25:29 +0200311 mtebc(PB4AP, CONFIG_SYS_EBC_PB4AP);
312 mtebc(PB4CR, CONFIG_SYS_EBC_PB4CR);
wdenk4a9cbbe2002-08-27 09:48:53 +0000313#endif
314
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200315#if (defined(CONFIG_SYS_EBC_PB5AP) && defined(CONFIG_SYS_EBC_PB5CR) && !(CONFIG_SYS_INIT_DCACHE_CS == 5))
Stefan Roese918010a2009-09-09 16:25:29 +0200316 mtebc(PB5AP, CONFIG_SYS_EBC_PB5AP);
317 mtebc(PB5CR, CONFIG_SYS_EBC_PB5CR);
wdenk4a9cbbe2002-08-27 09:48:53 +0000318#endif
319
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200320#if (defined(CONFIG_SYS_EBC_PB6AP) && defined(CONFIG_SYS_EBC_PB6CR) && !(CONFIG_SYS_INIT_DCACHE_CS == 6))
Stefan Roese918010a2009-09-09 16:25:29 +0200321 mtebc(PB6AP, CONFIG_SYS_EBC_PB6AP);
322 mtebc(PB6CR, CONFIG_SYS_EBC_PB6CR);
wdenk4a9cbbe2002-08-27 09:48:53 +0000323#endif
324
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200325#if (defined(CONFIG_SYS_EBC_PB7AP) && defined(CONFIG_SYS_EBC_PB7CR) && !(CONFIG_SYS_INIT_DCACHE_CS == 7))
Stefan Roese918010a2009-09-09 16:25:29 +0200326 mtebc(PB7AP, CONFIG_SYS_EBC_PB7AP);
327 mtebc(PB7CR, CONFIG_SYS_EBC_PB7CR);
wdenk4a9cbbe2002-08-27 09:48:53 +0000328#endif
329
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200330#if defined (CONFIG_SYS_EBC_CFG)
331 mtebc(EBC0_CFG, CONFIG_SYS_EBC_CFG);
Heiko Schocher3c58a992007-01-11 15:44:44 +0100332#endif
wdenk4a9cbbe2002-08-27 09:48:53 +0000333
Wolfgang Denk86370712007-01-15 13:41:04 +0100334#if defined(CONFIG_WATCHDOG)
wdenk4a9cbbe2002-08-27 09:48:53 +0000335 val = mfspr(tcr);
Stefan Roeseb30f2a12005-08-08 12:42:22 +0200336#if defined(CONFIG_440EP) || defined(CONFIG_440GR)
Stefan Roese326c9712005-08-01 16:41:48 +0200337 val |= 0xb8000000; /* generate system reset after 1.34 seconds */
Igor Lisitsin95bcd382007-03-28 19:06:19 +0400338#elif defined(CONFIG_440EPX)
339 val |= 0xb0000000; /* generate system reset after 1.34 seconds */
Stefan Roese326c9712005-08-01 16:41:48 +0200340#else
wdenk4a9cbbe2002-08-27 09:48:53 +0000341 val |= 0xf0000000; /* generate system reset after 2.684 seconds */
Stefan Roese326c9712005-08-01 16:41:48 +0200342#endif
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200343#if defined(CONFIG_SYS_4xx_RESET_TYPE)
Stefan Roese2a4a9432006-11-27 14:12:17 +0100344 val &= ~0x30000000; /* clear WRC bits */
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200345 val |= CONFIG_SYS_4xx_RESET_TYPE << 28; /* set board specific WRC type */
Stefan Roese2a4a9432006-11-27 14:12:17 +0100346#endif
wdenk4a9cbbe2002-08-27 09:48:53 +0000347 mtspr(tcr, val);
348
349 val = mfspr(tsr);
350 val |= 0x80000000; /* enable watchdog timer */
351 mtspr(tsr, val);
352
353 reset_4xx_watchdog();
354#endif /* CONFIG_WATCHDOG */
Stefan Roese1b198df2008-06-28 14:56:17 +0200355
Stefan Roese51d6d5d2008-06-26 17:36:39 +0200356#if defined(CONFIG_440GX)
357 /* Take the GX out of compatibility mode
358 * Travis Sawyer, 9 Mar 2004
359 * NOTE: 440gx user manual inconsistency here
360 * Compatibility mode and Ethernet Clock select are not
361 * correct in the manual
362 */
Stefan Roese918010a2009-09-09 16:25:29 +0200363 mfsdr(SDR0_MFR, val);
Stefan Roese51d6d5d2008-06-26 17:36:39 +0200364 val &= ~0x10000000;
Stefan Roese918010a2009-09-09 16:25:29 +0200365 mtsdr(SDR0_MFR,val);
Stefan Roese51d6d5d2008-06-26 17:36:39 +0200366#endif /* CONFIG_440GX */
367
Stefan Roese1b198df2008-06-28 14:56:17 +0200368#if defined(CONFIG_460EX)
369 /*
370 * Set SDR0_AHB_CFG[A2P_INCR4] (bit 24) and
371 * clear SDR0_AHB_CFG[A2P_PROT2] (bit 25) for a new 460EX errata
372 * regarding concurrent use of AHB USB OTG, USB 2.0 host and SATA
373 */
374 mfsdr(SDR0_AHB_CFG, val);
375 val |= 0x80;
376 val &= ~0x40;
377 mtsdr(SDR0_AHB_CFG, val);
378 mfsdr(SDR0_USB2HOST_CFG, val);
379 val &= ~0xf00;
380 val |= 0x400;
381 mtsdr(SDR0_USB2HOST_CFG, val);
382#endif /* CONFIG_460EX */
Prodyut Hazarika038f0d82008-08-20 09:38:51 -0700383
Stefan Roese1abbbd02008-08-21 11:05:03 +0200384#if defined(CONFIG_405EX) || \
385 defined(CONFIG_440SP) || defined(CONFIG_440SPE) || \
Prodyut Hazarika038f0d82008-08-20 09:38:51 -0700386 defined(CONFIG_460EX) || defined(CONFIG_460GT) || \
Stefan Roese1abbbd02008-08-21 11:05:03 +0200387 defined(CONFIG_460SX)
Prodyut Hazarika038f0d82008-08-20 09:38:51 -0700388 /*
389 * Set PLB4 arbiter (Segment 0 and 1) to 4 deep pipeline read
390 */
Stefan Roese918010a2009-09-09 16:25:29 +0200391 mtdcr(PLB0_ACR, (mfdcr(PLB0_ACR) & ~PLB0_ACR_RDP_MASK) |
392 PLB0_ACR_RDP_4DEEP);
393 mtdcr(PLB1_ACR, (mfdcr(PLB1_ACR) & ~PLB1_ACR_RDP_MASK) |
394 PLB1_ACR_RDP_4DEEP);
Prodyut Hazarika038f0d82008-08-20 09:38:51 -0700395#endif /* CONFIG_440SP/SPE || CONFIG_460EX/GT || CONFIG_405EX */
wdenk4a9cbbe2002-08-27 09:48:53 +0000396}
397
398/*
399 * initialize higher level parts of CPU like time base and timers
400 */
401int cpu_init_r (void)
402{
stroese434979e2003-05-23 11:18:02 +0000403#if defined(CONFIG_405GP)
stroese60308462003-03-20 15:21:50 +0000404 uint pvr = get_pvr();
wdenk4a9cbbe2002-08-27 09:48:53 +0000405
406 /*
stroese60308462003-03-20 15:21:50 +0000407 * Set edge conditioning circuitry on PPC405GPr
408 * for compatibility to existing PPC405GP designs.
409 */
stroeseff90f802003-04-04 16:00:33 +0000410 if ((pvr & 0xfffffff0) == (PVR_405GPR_RB & 0xfffffff0)) {
Stefan Roese918010a2009-09-09 16:25:29 +0200411 mtdcr(CPC0_ECR, 0x60606000);
stroese60308462003-03-20 15:21:50 +0000412 }
stroese434979e2003-05-23 11:18:02 +0000413#endif /* defined(CONFIG_405GP) */
Stefan Roesecc019d12008-03-11 15:05:50 +0100414
Stefan Roese29762f52009-02-23 16:42:51 +0100415 return 0;
wdenk4a9cbbe2002-08-27 09:48:53 +0000416}
Stefan Roesecd47b182009-10-19 14:06:23 +0200417
418#if defined(CONFIG_PCI) && \
419 (defined(CONFIG_440EP) || defined(CONFIG_440EPX) || \
420 defined(CONFIG_440GR) || defined(CONFIG_440GRX))
421/*
422 * 440EP(x)/GR(x) PCI async/sync clocking restriction:
423 *
424 * In asynchronous PCI mode, the synchronous PCI clock must meet
425 * certain requirements. The following equation describes the
426 * relationship that must be maintained between the asynchronous PCI
427 * clock and synchronous PCI clock. Select an appropriate PCI:PLB
428 * ratio to maintain the relationship:
429 *
430 * AsyncPCIClk - 1MHz <= SyncPCIclock <= (2 * AsyncPCIClk) - 1MHz
431 */
432static int ppc4xx_pci_sync_clock_ok(u32 sync, u32 async)
433{
434 if (((async - 1000000) > sync) || (sync > ((2 * async) - 1000000)))
435 return 0;
436 else
437 return 1;
438}
439
440int ppc4xx_pci_sync_clock_config(u32 async)
441{
442 sys_info_t sys_info;
443 u32 sync;
444 int div;
445 u32 reg;
446 u32 spcid_val[] = {
447 CPR0_SPCID_SPCIDV0_DIV1, CPR0_SPCID_SPCIDV0_DIV2,
448 CPR0_SPCID_SPCIDV0_DIV3, CPR0_SPCID_SPCIDV0_DIV4 };
449
450 get_sys_info(&sys_info);
451 sync = sys_info.freqPCI;
452
453 /*
454 * First check if the equation above is met
455 */
456 if (!ppc4xx_pci_sync_clock_ok(sync, async)) {
457 /*
458 * Reconfigure PCI sync clock to meet the equation.
459 * Start with highest possible PCI sync frequency
460 * (divider 1).
461 */
462 for (div = 1; div <= 4; div++) {
463 sync = sys_info.freqPLB / div;
464 if (ppc4xx_pci_sync_clock_ok(sync, async))
465 break;
466 }
467
468 if (div <= 4) {
469 mtcpr(CPR0_SPCID, spcid_val[div]);
470
471 mfcpr(CPR0_ICFG, reg);
472 reg |= CPR0_ICFG_RLI_MASK;
473 mtcpr(CPR0_ICFG, reg);
474
475 /* do chip reset */
476 mtspr(SPRN_DBCR0, 0x20000000);
477 } else {
478 /* Impossible to configure the PCI sync clock */
479 return -1;
480 }
481 }
482
483 return 0;
484}
485#endif