blob: a179fb3d01f083c173c754f42396ebe4b54a62e2 [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>
Becky Brucee34a0e92008-05-08 19:02:51 -050029#include <asm/mmu.h>
Jon Loeligerdebb7352006-04-26 17:58:56 -050030#include <mpc86xx.h>
Andy Fleming75b9d4a2008-08-31 16:33:26 -050031#include <tsec.h>
Becky Bruce4f93f8b2008-01-23 16:31:06 -060032#include <asm/fsl_law.h>
Jon Loeligerdebb7352006-04-26 17:58:56 -050033
Jon Loeligerdebb7352006-04-26 17:58:56 -050034
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 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020044 volatile immap_t *immap = (immap_t *) CONFIG_SYS_IMMR;
Jon Loeliger9553df82007-10-16 15:26:51 -050045 volatile ccsr_gur_t *gur = &immap->im_gur;
Jon Loeliger5c9efb32006-04-27 10:15:16 -050046
Jon Loeligerdebb7352006-04-26 17:58:56 -050047 puts("Freescale PowerPC\n");
48
49 pvr = get_pvr();
50 ver = PVR_VER(pvr);
51 major = PVR_MAJ(pvr);
52 minor = PVR_MIN(pvr);
53
Jon Loeliger5c9efb32006-04-27 10:15:16 -050054 puts("CPU:\n");
Jon Loeligercb5965f2006-05-31 12:44:44 -050055 puts(" Core: ");
Jon Loeliger5c9efb32006-04-27 10:15:16 -050056
Jon Loeligerdebb7352006-04-26 17:58:56 -050057 switch (ver) {
58 case PVR_VER(PVR_86xx):
Jon Loeliger9553df82007-10-16 15:26:51 -050059 {
60 uint msscr0 = mfspr(MSSCR0);
61 printf("E600 Core %d", (msscr0 & 0x20) ? 1 : 0 );
62 if (gur->pordevsr & MPC86xx_PORDEVSR_CORE1TE)
63 puts("\n Core1Translation Enabled");
64 debug(" (MSSCR0=%x, PORDEVSR=%x)", msscr0, gur->pordevsr);
65 }
66 break;
Jon Loeligerdebb7352006-04-26 17:58:56 -050067 default:
Jon Loeligerffff3ae2006-08-22 12:06:18 -050068 puts("Unknown");
69 break;
Jon Loeligerdebb7352006-04-26 17:58:56 -050070 }
71 printf(", Version: %d.%d, (0x%08x)\n", major, minor, pvr);
72
73 svr = get_svr();
Andy Fleming1ced1212008-02-06 01:19:40 -060074 ver = SVR_SOC_VER(svr);
Jon Loeligerdebb7352006-04-26 17:58:56 -050075 major = SVR_MAJ(svr);
76 minor = SVR_MIN(svr);
77
78 puts(" System: ");
Jon Loeliger5c9efb32006-04-27 10:15:16 -050079 switch (ver) {
Jon Loeligerdebb7352006-04-26 17:58:56 -050080 case SVR_8641:
Jon Loeligerd14ba6a2006-09-14 08:40:36 -050081 if (SVR_SUBVER(svr) == 1) {
Jon Loeligerdebb7352006-04-26 17:58:56 -050082 puts("8641D");
Jon Loeligerd14ba6a2006-09-14 08:40:36 -050083 } else {
84 puts("8641");
85 }
86 break;
Jon Loeliger9553df82007-10-16 15:26:51 -050087 case SVR_8610:
88 puts("8610");
89 break;
Jon Loeligerdebb7352006-04-26 17:58:56 -050090 default:
91 puts("Unknown");
92 break;
93 }
94 printf(", Version: %d.%d, (0x%08x)\n", major, minor, svr);
95
96 get_sys_info(&sysinfo);
97
98 puts(" Clocks: ");
99 printf("CPU:%4lu MHz, ", sysinfo.freqProcessor / 1000000);
100 printf("MPX:%4lu MHz, ", sysinfo.freqSystemBus / 1000000);
101 printf("DDR:%4lu MHz, ", sysinfo.freqSystemBus / 2000000);
Jon Loeliger5c9efb32006-04-27 10:15:16 -0500102
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200103#if defined(CONFIG_SYS_LBC_LCRR)
104 lcrr = CONFIG_SYS_LBC_LCRR;
Jon Loeligerdebb7352006-04-26 17:58:56 -0500105#else
106 {
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200107 volatile immap_t *immap = (immap_t *) CONFIG_SYS_IMMR;
Jon Loeligerffff3ae2006-08-22 12:06:18 -0500108 volatile ccsr_lbc_t *lbc = &immap->im_lbc;
Jon Loeligerdebb7352006-04-26 17:58:56 -0500109
Jon Loeligerffff3ae2006-08-22 12:06:18 -0500110 lcrr = lbc->lcrr;
Jon Loeligerdebb7352006-04-26 17:58:56 -0500111 }
112#endif
Trent Piephoa5d212a2008-12-03 15:16:34 -0800113 clkdiv = lcrr & LCRR_CLKDIV;
Jon Loeligerdebb7352006-04-26 17:58:56 -0500114 if (clkdiv == 2 || clkdiv == 4 || clkdiv == 8) {
Trent Piepho9863d6a2008-12-03 15:16:36 -0800115 clkdiv *= 2;
Jon Loeligerdebb7352006-04-26 17:58:56 -0500116 printf("LBC:%4lu MHz\n",
117 sysinfo.freqSystemBus / 1000000 / clkdiv);
118 } else {
119 printf(" LBC: unknown (lcrr: 0x%08x)\n", lcrr);
120 }
121
Jon Loeligercb5965f2006-05-31 12:44:44 -0500122 puts(" L2: ");
Jon Loeliger126aa702006-05-30 17:47:00 -0500123 if (get_l2cr() & 0x80000000)
Jon Loeligercb5965f2006-05-31 12:44:44 -0500124 puts("Enabled\n");
Jon Loeliger126aa702006-05-30 17:47:00 -0500125 else
Jon Loeligercb5965f2006-05-31 12:44:44 -0500126 puts("Disabled\n");
Jon Loeliger5c9efb32006-04-27 10:15:16 -0500127
128 return 0;
Jon Loeligerdebb7352006-04-26 17:58:56 -0500129}
130
131
Jon Loeligerdebb7352006-04-26 17:58:56 -0500132static inline void
133soft_restart(unsigned long addr)
134{
Jason Jina8318ec2007-10-26 18:32:00 +0800135#if !defined(CONFIG_MPC8641HPCN) && !defined(CONFIG_MPC8610HPCD)
Jon Loeliger5c9efb32006-04-27 10:15:16 -0500136
Jon Loeligerffff3ae2006-08-22 12:06:18 -0500137 /*
138 * SRR0 has system reset vector, SRR1 has default MSR value
139 * rfi restores MSR from SRR1 and sets the PC to the SRR0 value
140 */
Jon Loeligerdebb7352006-04-26 17:58:56 -0500141
142 __asm__ __volatile__ ("mtspr 26, %0" :: "r" (addr));
143 __asm__ __volatile__ ("li 4, (1 << 6)" ::: "r4");
144 __asm__ __volatile__ ("mtspr 27, 4");
145 __asm__ __volatile__ ("rfi");
146
147#else /* CONFIG_MPC8641HPCN */
Jon Loeligercb5965f2006-05-31 12:44:44 -0500148
149 out8(PIXIS_BASE + PIXIS_RST, 0);
150
Jon Loeligerdebb7352006-04-26 17:58:56 -0500151#endif /* !CONFIG_MPC8641HPCN */
Jon Loeligercb5965f2006-05-31 12:44:44 -0500152
Jon Loeligerffff3ae2006-08-22 12:06:18 -0500153 while (1) ; /* not reached */
Jon Loeligerdebb7352006-04-26 17:58:56 -0500154}
155
156
Jon Loeliger126aa702006-05-30 17:47:00 -0500157/*
158 * No generic way to do board reset. Simply call soft_reset.
159 */
Jon Loeligerdebb7352006-04-26 17:58:56 -0500160void
Jon Loeliger126aa702006-05-30 17:47:00 -0500161do_reset(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
Jon Loeligerdebb7352006-04-26 17:58:56 -0500162{
Jason Jina8318ec2007-10-26 18:32:00 +0800163#if !defined(CONFIG_MPC8641HPCN) && !defined(CONFIG_MPC8610HPCD)
Jon Loeligerdebb7352006-04-26 17:58:56 -0500164
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200165#ifdef CONFIG_SYS_RESET_ADDRESS
166 ulong addr = CONFIG_SYS_RESET_ADDRESS;
Jon Loeligerdebb7352006-04-26 17:58:56 -0500167#else
168 /*
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200169 * note: when CONFIG_SYS_MONITOR_BASE points to a RAM address,
170 * CONFIG_SYS_MONITOR_BASE - sizeof (ulong) is usually a valid
Jon Loeligerdebb7352006-04-26 17:58:56 -0500171 * address. Better pick an address known to be invalid on your
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200172 * system and assign it to CONFIG_SYS_RESET_ADDRESS.
Jon Loeligerdebb7352006-04-26 17:58:56 -0500173 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200174 ulong addr = CONFIG_SYS_MONITOR_BASE - sizeof(ulong);
Jon Loeligerdebb7352006-04-26 17:58:56 -0500175#endif
176
Jon Loeliger5c9efb32006-04-27 10:15:16 -0500177 /* flush and disable I/D cache */
Jon Loeligerdebb7352006-04-26 17:58:56 -0500178 __asm__ __volatile__ ("mfspr 3, 1008" ::: "r3");
179 __asm__ __volatile__ ("ori 5, 5, 0xcc00" ::: "r5");
180 __asm__ __volatile__ ("ori 4, 3, 0xc00" ::: "r4");
181 __asm__ __volatile__ ("andc 5, 3, 5" ::: "r5");
182 __asm__ __volatile__ ("sync");
183 __asm__ __volatile__ ("mtspr 1008, 4");
184 __asm__ __volatile__ ("isync");
185 __asm__ __volatile__ ("sync");
186 __asm__ __volatile__ ("mtspr 1008, 5");
187 __asm__ __volatile__ ("isync");
188 __asm__ __volatile__ ("sync");
189
Jon Loeliger126aa702006-05-30 17:47:00 -0500190 soft_restart(addr);
Jon Loeligerdebb7352006-04-26 17:58:56 -0500191
192#else /* CONFIG_MPC8641HPCN */
Jon Loeligerdebb7352006-04-26 17:58:56 -0500193
Haiying Wang3d98b852007-01-22 12:37:30 -0600194 out8(PIXIS_BASE + PIXIS_RST, 0);
Jon Loeliger5c9efb32006-04-27 10:15:16 -0500195
Jon Loeligerdebb7352006-04-26 17:58:56 -0500196#endif /* !CONFIG_MPC8641HPCN */
Jon Loeliger5c9efb32006-04-27 10:15:16 -0500197
Jon Loeligerffff3ae2006-08-22 12:06:18 -0500198 while (1) ; /* not reached */
Jon Loeligerdebb7352006-04-26 17:58:56 -0500199}
200
201
Jon Loeligerdebb7352006-04-26 17:58:56 -0500202/*
203 * Get timebase clock frequency
204 */
Jon Loeligerffff3ae2006-08-22 12:06:18 -0500205unsigned long
206get_tbclk(void)
Jon Loeligerdebb7352006-04-26 17:58:56 -0500207{
Jon Loeligerffff3ae2006-08-22 12:06:18 -0500208 sys_info_t sys_info;
Jon Loeligerdebb7352006-04-26 17:58:56 -0500209
210 get_sys_info(&sys_info);
Jon Loeliger5c9efb32006-04-27 10:15:16 -0500211 return (sys_info.freqSystemBus + 3L) / 4L;
Jon Loeligerdebb7352006-04-26 17:58:56 -0500212}
213
Jon Loeligerdebb7352006-04-26 17:58:56 -0500214
215#if defined(CONFIG_WATCHDOG)
216void
217watchdog_reset(void)
218{
Jason Jin3473ab72008-05-13 11:50:36 +0800219#if defined(CONFIG_MPC8610)
220 /*
221 * This actually feed the hard enabled watchdog.
222 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200223 volatile immap_t *immap = (immap_t *)CONFIG_SYS_IMMR;
Jason Jin3473ab72008-05-13 11:50:36 +0800224 volatile ccsr_wdt_t *wdt = &immap->im_wdt;
225 volatile ccsr_gur_t *gur = &immap->im_gur;
226 u32 tmp = gur->pordevsr;
227
228 if (tmp & 0x4000) {
229 wdt->swsrr = 0x556c;
230 wdt->swsrr = 0xaa39;
231 }
232#endif
Jon Loeligerdebb7352006-04-26 17:58:56 -0500233}
234#endif /* CONFIG_WATCHDOG */
235
Jon Loeligerdebb7352006-04-26 17:58:56 -0500236
237#if defined(CONFIG_DDR_ECC)
Jon Loeligerffff3ae2006-08-22 12:06:18 -0500238void
239dma_init(void)
Jon Loeliger5c9efb32006-04-27 10:15:16 -0500240{
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200241 volatile immap_t *immap = (immap_t *) CONFIG_SYS_IMMR;
Jon Loeligerdebb7352006-04-26 17:58:56 -0500242 volatile ccsr_dma_t *dma = &immap->im_dma;
243
244 dma->satr0 = 0x00040000;
245 dma->datr0 = 0x00040000;
246 asm("sync; isync");
Jon Loeligerdebb7352006-04-26 17:58:56 -0500247}
248
Jon Loeligerffff3ae2006-08-22 12:06:18 -0500249uint
250dma_check(void)
Jon Loeliger5c9efb32006-04-27 10:15:16 -0500251{
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200252 volatile immap_t *immap = (immap_t *) CONFIG_SYS_IMMR;
Jon Loeligerdebb7352006-04-26 17:58:56 -0500253 volatile ccsr_dma_t *dma = &immap->im_dma;
254 volatile uint status = dma->sr0;
255
256 /* While the channel is busy, spin */
Jon Loeligerffff3ae2006-08-22 12:06:18 -0500257 while ((status & 4) == 4) {
Jon Loeligerdebb7352006-04-26 17:58:56 -0500258 status = dma->sr0;
259 }
260
261 if (status != 0) {
Jon Loeligerffff3ae2006-08-22 12:06:18 -0500262 printf("DMA Error: status = %x\n", status);
Jon Loeligerdebb7352006-04-26 17:58:56 -0500263 }
264 return status;
265}
266
Jon Loeligerffff3ae2006-08-22 12:06:18 -0500267int
268dma_xfer(void *dest, uint count, void *src)
Jon Loeliger5c9efb32006-04-27 10:15:16 -0500269{
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200270 volatile immap_t *immap = (immap_t *) CONFIG_SYS_IMMR;
Jon Loeligerdebb7352006-04-26 17:58:56 -0500271 volatile ccsr_dma_t *dma = &immap->im_dma;
272
273 dma->dar0 = (uint) dest;
274 dma->sar0 = (uint) src;
275 dma->bcr0 = count;
276 dma->mr0 = 0xf000004;
277 asm("sync;isync");
278 dma->mr0 = 0xf000005;
279 asm("sync;isync");
280 return dma_check();
281}
Jon Loeliger5c9efb32006-04-27 10:15:16 -0500282
Jon Loeligerdebb7352006-04-26 17:58:56 -0500283#endif /* CONFIG_DDR_ECC */
284
285
Becky Bruce4f93f8b2008-01-23 16:31:06 -0600286/*
287 * Print out the state of various machine registers.
Becky Brucee34a0e92008-05-08 19:02:51 -0500288 * Currently prints out LAWs, BR0/OR0, and BATs
Becky Bruce4f93f8b2008-01-23 16:31:06 -0600289 */
290void mpc86xx_reginfo(void)
291{
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200292 immap_t *immap = (immap_t *)CONFIG_SYS_IMMR;
Becky Bruce4f93f8b2008-01-23 16:31:06 -0600293 ccsr_lbc_t *lbc = &immap->im_lbc;
294
Becky Brucee34a0e92008-05-08 19:02:51 -0500295 print_bats();
Becky Bruce4f93f8b2008-01-23 16:31:06 -0600296 print_laws();
297
298 printf ("Local Bus Controller Registers\n"
299 "\tBR0\t0x%08X\tOR0\t0x%08X \n", in_be32(&lbc->br0), in_be32(&lbc->or0));
300 printf("\tBR1\t0x%08X\tOR1\t0x%08X \n", in_be32(&lbc->br1), in_be32(&lbc->or1));
301 printf("\tBR2\t0x%08X\tOR2\t0x%08X \n", in_be32(&lbc->br2), in_be32(&lbc->or2));
302 printf("\tBR3\t0x%08X\tOR3\t0x%08X \n", in_be32(&lbc->br3), in_be32(&lbc->or3));
303 printf("\tBR4\t0x%08X\tOR4\t0x%08X \n", in_be32(&lbc->br4), in_be32(&lbc->or4));
304 printf("\tBR5\t0x%08X\tOR5\t0x%08X \n", in_be32(&lbc->br5), in_be32(&lbc->or5));
305 printf("\tBR6\t0x%08X\tOR6\t0x%08X \n", in_be32(&lbc->br6), in_be32(&lbc->or6));
306 printf("\tBR7\t0x%08X\tOR7\t0x%08X \n", in_be32(&lbc->br7), in_be32(&lbc->or7));
Jon Loeligerdebb7352006-04-26 17:58:56 -0500307
308}
Ben Warrendd354792008-06-23 22:57:27 -0700309
Andy Fleming75b9d4a2008-08-31 16:33:26 -0500310/*
311 * Initializes on-chip ethernet controllers.
312 * to override, implement board_eth_init()
Ben Warrendd354792008-06-23 22:57:27 -0700313 */
Ben Warrendd354792008-06-23 22:57:27 -0700314int cpu_eth_init(bd_t *bis)
315{
Andy Fleming75b9d4a2008-08-31 16:33:26 -0500316#if defined(CONFIG_TSEC_ENET)
317 tsec_standard_init(bis);
Ben Warrendd354792008-06-23 22:57:27 -0700318#endif
Andy Fleming75b9d4a2008-08-31 16:33:26 -0500319
Ben Warrendd354792008-06-23 22:57:27 -0700320 return 0;
321}