blob: 9456471e84e7468ef7c685f0db017ecd7ec72e54 [file] [log] [blame]
Jon Loeligerdebb7352006-04-26 17:58:56 -05001/*
Jon Loeligercb5965f2006-05-31 12:44:44 -05002 * Copyright 2006 Freescale Semiconductor
3 * Jeff Brown
Jon Loeligerdebb7352006-04-26 17:58:56 -05004 * Srikanth Srinivasan (srikanth.srinivasan@freescale.com)
5 *
6 * See file CREDITS for list of people who contributed to this
7 * project.
8 *
9 * This program is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU General Public License as
11 * published by the Free Software Foundation; either version 2 of
12 * the License, or (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
22 * MA 02111-1307 USA
23 */
24
25#include <common.h>
26#include <watchdog.h>
27#include <command.h>
28#include <asm/cache.h>
29#include <mpc86xx.h>
30
31#if defined(CONFIG_OF_FLAT_TREE)
32#include <ft_build.h>
33#endif
34
Jon Loeligerffff3ae2006-08-22 12:06:18 -050035int
36checkcpu(void)
Jon Loeligerdebb7352006-04-26 17:58:56 -050037{
38 sys_info_t sysinfo;
39 uint pvr, svr;
40 uint ver;
41 uint major, minor;
42 uint lcrr; /* local bus clock ratio register */
43 uint clkdiv; /* clock divider portion of lcrr */
Jon Loeliger5c9efb32006-04-27 10:15:16 -050044
Jon Loeligerdebb7352006-04-26 17:58:56 -050045 puts("Freescale PowerPC\n");
46
47 pvr = get_pvr();
48 ver = PVR_VER(pvr);
49 major = PVR_MAJ(pvr);
50 minor = PVR_MIN(pvr);
51
Jon Loeliger5c9efb32006-04-27 10:15:16 -050052 puts("CPU:\n");
Jon Loeligercb5965f2006-05-31 12:44:44 -050053 puts(" Core: ");
Jon Loeliger5c9efb32006-04-27 10:15:16 -050054
Jon Loeligerdebb7352006-04-26 17:58:56 -050055 switch (ver) {
56 case PVR_VER(PVR_86xx):
Jon Loeligerffff3ae2006-08-22 12:06:18 -050057 puts("E600");
58 break;
Jon Loeligerdebb7352006-04-26 17:58:56 -050059 default:
Jon Loeligerffff3ae2006-08-22 12:06:18 -050060 puts("Unknown");
61 break;
Jon Loeligerdebb7352006-04-26 17:58:56 -050062 }
63 printf(", Version: %d.%d, (0x%08x)\n", major, minor, pvr);
64
65 svr = get_svr();
66 ver = SVR_VER(svr);
67 major = SVR_MAJ(svr);
68 minor = SVR_MIN(svr);
69
70 puts(" System: ");
Jon Loeliger5c9efb32006-04-27 10:15:16 -050071 switch (ver) {
Jon Loeligerdebb7352006-04-26 17:58:56 -050072 case SVR_8641:
Jon Loeligerd14ba6a2006-09-14 08:40:36 -050073 if (SVR_SUBVER(svr) == 1) {
Jon Loeligerdebb7352006-04-26 17:58:56 -050074 puts("8641D");
Jon Loeligerd14ba6a2006-09-14 08:40:36 -050075 } else {
76 puts("8641");
77 }
78 break;
Jon Loeligerdebb7352006-04-26 17:58:56 -050079 default:
80 puts("Unknown");
81 break;
82 }
83 printf(", Version: %d.%d, (0x%08x)\n", major, minor, svr);
84
85 get_sys_info(&sysinfo);
86
87 puts(" Clocks: ");
88 printf("CPU:%4lu MHz, ", sysinfo.freqProcessor / 1000000);
89 printf("MPX:%4lu MHz, ", sysinfo.freqSystemBus / 1000000);
90 printf("DDR:%4lu MHz, ", sysinfo.freqSystemBus / 2000000);
Jon Loeliger5c9efb32006-04-27 10:15:16 -050091
Jon Loeligerdebb7352006-04-26 17:58:56 -050092#if defined(CFG_LBC_LCRR)
93 lcrr = CFG_LBC_LCRR;
94#else
95 {
Jon Loeligerffff3ae2006-08-22 12:06:18 -050096 volatile immap_t *immap = (immap_t *) CFG_IMMR;
97 volatile ccsr_lbc_t *lbc = &immap->im_lbc;
Jon Loeligerdebb7352006-04-26 17:58:56 -050098
Jon Loeligerffff3ae2006-08-22 12:06:18 -050099 lcrr = lbc->lcrr;
Jon Loeligerdebb7352006-04-26 17:58:56 -0500100 }
101#endif
102 clkdiv = lcrr & 0x0f;
103 if (clkdiv == 2 || clkdiv == 4 || clkdiv == 8) {
104 printf("LBC:%4lu MHz\n",
105 sysinfo.freqSystemBus / 1000000 / clkdiv);
106 } else {
107 printf(" LBC: unknown (lcrr: 0x%08x)\n", lcrr);
108 }
109
Jon Loeligercb5965f2006-05-31 12:44:44 -0500110 puts(" L2: ");
Jon Loeliger126aa702006-05-30 17:47:00 -0500111 if (get_l2cr() & 0x80000000)
Jon Loeligercb5965f2006-05-31 12:44:44 -0500112 puts("Enabled\n");
Jon Loeliger126aa702006-05-30 17:47:00 -0500113 else
Jon Loeligercb5965f2006-05-31 12:44:44 -0500114 puts("Disabled\n");
Jon Loeliger5c9efb32006-04-27 10:15:16 -0500115
116 return 0;
Jon Loeligerdebb7352006-04-26 17:58:56 -0500117}
118
119
Jon Loeligerdebb7352006-04-26 17:58:56 -0500120static inline void
121soft_restart(unsigned long addr)
122{
Jon Loeligerdebb7352006-04-26 17:58:56 -0500123#ifndef CONFIG_MPC8641HPCN
Jon Loeliger5c9efb32006-04-27 10:15:16 -0500124
Jon Loeligerffff3ae2006-08-22 12:06:18 -0500125 /*
126 * SRR0 has system reset vector, SRR1 has default MSR value
127 * rfi restores MSR from SRR1 and sets the PC to the SRR0 value
128 */
Jon Loeligerdebb7352006-04-26 17:58:56 -0500129
130 __asm__ __volatile__ ("mtspr 26, %0" :: "r" (addr));
131 __asm__ __volatile__ ("li 4, (1 << 6)" ::: "r4");
132 __asm__ __volatile__ ("mtspr 27, 4");
133 __asm__ __volatile__ ("rfi");
134
135#else /* CONFIG_MPC8641HPCN */
Jon Loeligercb5965f2006-05-31 12:44:44 -0500136
137 out8(PIXIS_BASE + PIXIS_RST, 0);
138
Jon Loeligerdebb7352006-04-26 17:58:56 -0500139#endif /* !CONFIG_MPC8641HPCN */
Jon Loeligercb5965f2006-05-31 12:44:44 -0500140
Jon Loeligerffff3ae2006-08-22 12:06:18 -0500141 while (1) ; /* not reached */
Jon Loeligerdebb7352006-04-26 17:58:56 -0500142}
143
144
Jon Loeliger126aa702006-05-30 17:47:00 -0500145/*
146 * No generic way to do board reset. Simply call soft_reset.
147 */
Jon Loeligerdebb7352006-04-26 17:58:56 -0500148void
Jon Loeliger126aa702006-05-30 17:47:00 -0500149do_reset(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
Jon Loeligerdebb7352006-04-26 17:58:56 -0500150{
Jon Loeligercb5965f2006-05-31 12:44:44 -0500151#ifndef CONFIG_MPC8641HPCN
Jon Loeligerdebb7352006-04-26 17:58:56 -0500152
153#ifdef CFG_RESET_ADDRESS
Jon Loeligercb5965f2006-05-31 12:44:44 -0500154 ulong addr = CFG_RESET_ADDRESS;
Jon Loeligerdebb7352006-04-26 17:58:56 -0500155#else
156 /*
157 * note: when CFG_MONITOR_BASE points to a RAM address,
158 * CFG_MONITOR_BASE - sizeof (ulong) is usually a valid
159 * address. Better pick an address known to be invalid on your
160 * system and assign it to CFG_RESET_ADDRESS.
161 */
Jon Loeligercb5965f2006-05-31 12:44:44 -0500162 ulong addr = CFG_MONITOR_BASE - sizeof(ulong);
Jon Loeligerdebb7352006-04-26 17:58:56 -0500163#endif
164
Jon Loeliger5c9efb32006-04-27 10:15:16 -0500165 /* flush and disable I/D cache */
Jon Loeligerdebb7352006-04-26 17:58:56 -0500166 __asm__ __volatile__ ("mfspr 3, 1008" ::: "r3");
167 __asm__ __volatile__ ("ori 5, 5, 0xcc00" ::: "r5");
168 __asm__ __volatile__ ("ori 4, 3, 0xc00" ::: "r4");
169 __asm__ __volatile__ ("andc 5, 3, 5" ::: "r5");
170 __asm__ __volatile__ ("sync");
171 __asm__ __volatile__ ("mtspr 1008, 4");
172 __asm__ __volatile__ ("isync");
173 __asm__ __volatile__ ("sync");
174 __asm__ __volatile__ ("mtspr 1008, 5");
175 __asm__ __volatile__ ("isync");
176 __asm__ __volatile__ ("sync");
177
Jon Loeliger126aa702006-05-30 17:47:00 -0500178 soft_restart(addr);
Jon Loeligerdebb7352006-04-26 17:58:56 -0500179
180#else /* CONFIG_MPC8641HPCN */
Jon Loeligerdebb7352006-04-26 17:58:56 -0500181
Haiying Wang3d98b852007-01-22 12:37:30 -0600182 out8(PIXIS_BASE + PIXIS_RST, 0);
Jon Loeliger5c9efb32006-04-27 10:15:16 -0500183
Jon Loeligerdebb7352006-04-26 17:58:56 -0500184#endif /* !CONFIG_MPC8641HPCN */
Jon Loeliger5c9efb32006-04-27 10:15:16 -0500185
Jon Loeligerffff3ae2006-08-22 12:06:18 -0500186 while (1) ; /* not reached */
Jon Loeligerdebb7352006-04-26 17:58:56 -0500187}
188
189
Jon Loeligerdebb7352006-04-26 17:58:56 -0500190/*
191 * Get timebase clock frequency
192 */
Jon Loeligerffff3ae2006-08-22 12:06:18 -0500193unsigned long
194get_tbclk(void)
Jon Loeligerdebb7352006-04-26 17:58:56 -0500195{
Jon Loeligerffff3ae2006-08-22 12:06:18 -0500196 sys_info_t sys_info;
Jon Loeligerdebb7352006-04-26 17:58:56 -0500197
198 get_sys_info(&sys_info);
Jon Loeliger5c9efb32006-04-27 10:15:16 -0500199 return (sys_info.freqSystemBus + 3L) / 4L;
Jon Loeligerdebb7352006-04-26 17:58:56 -0500200}
201
Jon Loeligerdebb7352006-04-26 17:58:56 -0500202
203#if defined(CONFIG_WATCHDOG)
204void
205watchdog_reset(void)
206{
Jon Loeligerdebb7352006-04-26 17:58:56 -0500207}
208#endif /* CONFIG_WATCHDOG */
209
Jon Loeligerdebb7352006-04-26 17:58:56 -0500210
211#if defined(CONFIG_DDR_ECC)
Jon Loeligerffff3ae2006-08-22 12:06:18 -0500212void
213dma_init(void)
Jon Loeliger5c9efb32006-04-27 10:15:16 -0500214{
Jon Loeligerffff3ae2006-08-22 12:06:18 -0500215 volatile immap_t *immap = (immap_t *) CFG_IMMR;
Jon Loeligerdebb7352006-04-26 17:58:56 -0500216 volatile ccsr_dma_t *dma = &immap->im_dma;
217
218 dma->satr0 = 0x00040000;
219 dma->datr0 = 0x00040000;
220 asm("sync; isync");
Jon Loeligerdebb7352006-04-26 17:58:56 -0500221}
222
Jon Loeligerffff3ae2006-08-22 12:06:18 -0500223uint
224dma_check(void)
Jon Loeliger5c9efb32006-04-27 10:15:16 -0500225{
Jon Loeligerffff3ae2006-08-22 12:06:18 -0500226 volatile immap_t *immap = (immap_t *) CFG_IMMR;
Jon Loeligerdebb7352006-04-26 17:58:56 -0500227 volatile ccsr_dma_t *dma = &immap->im_dma;
228 volatile uint status = dma->sr0;
229
230 /* While the channel is busy, spin */
Jon Loeligerffff3ae2006-08-22 12:06:18 -0500231 while ((status & 4) == 4) {
Jon Loeligerdebb7352006-04-26 17:58:56 -0500232 status = dma->sr0;
233 }
234
235 if (status != 0) {
Jon Loeligerffff3ae2006-08-22 12:06:18 -0500236 printf("DMA Error: status = %x\n", status);
Jon Loeligerdebb7352006-04-26 17:58:56 -0500237 }
238 return status;
239}
240
Jon Loeligerffff3ae2006-08-22 12:06:18 -0500241int
242dma_xfer(void *dest, uint count, void *src)
Jon Loeliger5c9efb32006-04-27 10:15:16 -0500243{
Jon Loeligerffff3ae2006-08-22 12:06:18 -0500244 volatile immap_t *immap = (immap_t *) CFG_IMMR;
Jon Loeligerdebb7352006-04-26 17:58:56 -0500245 volatile ccsr_dma_t *dma = &immap->im_dma;
246
247 dma->dar0 = (uint) dest;
248 dma->sar0 = (uint) src;
249 dma->bcr0 = count;
250 dma->mr0 = 0xf000004;
251 asm("sync;isync");
252 dma->mr0 = 0xf000005;
253 asm("sync;isync");
254 return dma_check();
255}
Jon Loeliger5c9efb32006-04-27 10:15:16 -0500256
Jon Loeligerdebb7352006-04-26 17:58:56 -0500257#endif /* CONFIG_DDR_ECC */
258
259
260#ifdef CONFIG_OF_FLAT_TREE
Jon Loeligerffff3ae2006-08-22 12:06:18 -0500261void
262ft_cpu_setup(void *blob, bd_t *bd)
Jon Loeligerdebb7352006-04-26 17:58:56 -0500263{
264 u32 *p;
265 ulong clock;
266 int len;
Jon Loeliger5c9efb32006-04-27 10:15:16 -0500267
Jon Loeligerdebb7352006-04-26 17:58:56 -0500268 clock = bd->bi_busfreq;
269 p = ft_get_prop(blob, "/cpus/" OF_CPU "/bus-frequency", &len);
270 if (p != NULL)
271 *p = cpu_to_be32(clock);
272
273 p = ft_get_prop(blob, "/" OF_SOC "/serial@4500/clock-frequency", &len);
274 if (p != NULL)
275 *p = cpu_to_be32(clock);
276
277 p = ft_get_prop(blob, "/" OF_SOC "/serial@4600/clock-frequency", &len);
278 if (p != NULL)
279 *p = cpu_to_be32(clock);
280
Kim Phillips255a35772007-05-16 16:52:19 -0500281#if defined(CONFIG_TSEC1)
Jon Loeliger709d3072006-08-03 16:17:56 -0500282 p = ft_get_prop(blob, "/" OF_SOC "/ethernet@24000/mac-address", &len);
Jon Loeliger7dbdf282007-04-20 14:11:38 -0500283 if (p != NULL)
284 memcpy(p, bd->bi_enetaddr, 6);
Jon Loeligerbd7851c2007-04-20 14:12:26 -0500285 p = ft_get_prop(blob, "/" OF_SOC "/ethernet@24000/local-mac-address", &len);
286 if (p)
287 memcpy(p, bd->bi_enetaddr, 6);
Jon Loeligerdebb7352006-04-26 17:58:56 -0500288#endif
Jon Loeliger5c9efb32006-04-27 10:15:16 -0500289
Kim Phillips255a35772007-05-16 16:52:19 -0500290#if defined(CONFIG_TSEC2)
Jon Loeliger709d3072006-08-03 16:17:56 -0500291 p = ft_get_prop(blob, "/" OF_SOC "/ethernet@25000/mac-address", &len);
Jon Loeliger7dbdf282007-04-20 14:11:38 -0500292 if (p != NULL)
293 memcpy(p, bd->bi_enet1addr, 6);
Jon Loeligerbd7851c2007-04-20 14:12:26 -0500294 p = ft_get_prop(blob, "/" OF_SOC "/ethernet@25000/local-mac-address", &len);
295 if (p != NULL)
296 memcpy(p, bd->bi_enet1addr, 6);
Jon Loeligerdebb7352006-04-26 17:58:56 -0500297#endif
298
Kim Phillips255a35772007-05-16 16:52:19 -0500299#if defined(CONFIG_TSEC3)
Jon Loeliger709d3072006-08-03 16:17:56 -0500300 p = ft_get_prop(blob, "/" OF_SOC "/ethernet@26000/mac-address", &len);
Jon Loeliger7dbdf282007-04-20 14:11:38 -0500301 if (p != NULL)
302 memcpy(p, bd->bi_enet2addr, 6);
Jon Loeligerbd7851c2007-04-20 14:12:26 -0500303 p = ft_get_prop(blob, "/" OF_SOC "/ethernet@26000/local-mac-address", &len);
304 if (p != NULL)
305 memcpy(p, bd->bi_enet2addr, 6);
Jon Loeligerdebb7352006-04-26 17:58:56 -0500306#endif
307
Kim Phillips255a35772007-05-16 16:52:19 -0500308#if defined(CONFIG_TSEC4)
Jon Loeliger709d3072006-08-03 16:17:56 -0500309 p = ft_get_prop(blob, "/" OF_SOC "/ethernet@27000/mac-address", &len);
Jon Loeliger7dbdf282007-04-20 14:11:38 -0500310 if (p != NULL)
311 memcpy(p, bd->bi_enet3addr, 6);
Jon Loeligerbd7851c2007-04-20 14:12:26 -0500312 p = ft_get_prop(blob, "/" OF_SOC "/ethernet@27000/local-mac-address", &len);
313 if (p != NULL)
314 memcpy(p, bd->bi_enet3addr, 6);
Jon Loeligerdebb7352006-04-26 17:58:56 -0500315#endif
316
317}
318#endif