blob: b2a107d3bf0fc2f44b0d25d4ada9e528c8b48cc5 [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
Peter Tyser4ef630d2009-02-05 11:25:25 -060035/*
36 * Default board reset function
37 */
38static void
39__board_reset(void)
40{
41 /* Do nothing */
42}
43void board_reset(void) __attribute((weak, alias("__board_reset")));
44
45
Jon Loeligerffff3ae2006-08-22 12:06:18 -050046int
47checkcpu(void)
Jon Loeligerdebb7352006-04-26 17:58:56 -050048{
49 sys_info_t sysinfo;
50 uint pvr, svr;
51 uint ver;
52 uint major, minor;
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020053 volatile immap_t *immap = (immap_t *) CONFIG_SYS_IMMR;
Jon Loeliger9553df82007-10-16 15:26:51 -050054 volatile ccsr_gur_t *gur = &immap->im_gur;
Jon Loeliger5c9efb32006-04-27 10:15:16 -050055
Jon Loeligerdebb7352006-04-26 17:58:56 -050056 puts("Freescale PowerPC\n");
57
58 pvr = get_pvr();
59 ver = PVR_VER(pvr);
60 major = PVR_MAJ(pvr);
61 minor = PVR_MIN(pvr);
62
Jon Loeliger5c9efb32006-04-27 10:15:16 -050063 puts("CPU:\n");
Jon Loeligercb5965f2006-05-31 12:44:44 -050064 puts(" Core: ");
Jon Loeliger5c9efb32006-04-27 10:15:16 -050065
Jon Loeligerdebb7352006-04-26 17:58:56 -050066 switch (ver) {
67 case PVR_VER(PVR_86xx):
Jon Loeliger9553df82007-10-16 15:26:51 -050068 {
69 uint msscr0 = mfspr(MSSCR0);
70 printf("E600 Core %d", (msscr0 & 0x20) ? 1 : 0 );
71 if (gur->pordevsr & MPC86xx_PORDEVSR_CORE1TE)
72 puts("\n Core1Translation Enabled");
73 debug(" (MSSCR0=%x, PORDEVSR=%x)", msscr0, gur->pordevsr);
74 }
75 break;
Jon Loeligerdebb7352006-04-26 17:58:56 -050076 default:
Jon Loeligerffff3ae2006-08-22 12:06:18 -050077 puts("Unknown");
78 break;
Jon Loeligerdebb7352006-04-26 17:58:56 -050079 }
80 printf(", Version: %d.%d, (0x%08x)\n", major, minor, pvr);
81
82 svr = get_svr();
Andy Fleming1ced1212008-02-06 01:19:40 -060083 ver = SVR_SOC_VER(svr);
Jon Loeligerdebb7352006-04-26 17:58:56 -050084 major = SVR_MAJ(svr);
85 minor = SVR_MIN(svr);
86
87 puts(" System: ");
Jon Loeliger5c9efb32006-04-27 10:15:16 -050088 switch (ver) {
Jon Loeligerdebb7352006-04-26 17:58:56 -050089 case SVR_8641:
Jon Loeligerd14ba6a2006-09-14 08:40:36 -050090 if (SVR_SUBVER(svr) == 1) {
Jon Loeligerdebb7352006-04-26 17:58:56 -050091 puts("8641D");
Jon Loeligerd14ba6a2006-09-14 08:40:36 -050092 } else {
93 puts("8641");
94 }
95 break;
Jon Loeliger9553df82007-10-16 15:26:51 -050096 case SVR_8610:
97 puts("8610");
98 break;
Jon Loeligerdebb7352006-04-26 17:58:56 -050099 default:
100 puts("Unknown");
101 break;
102 }
103 printf(", Version: %d.%d, (0x%08x)\n", major, minor, svr);
104
105 get_sys_info(&sysinfo);
106
107 puts(" Clocks: ");
108 printf("CPU:%4lu MHz, ", sysinfo.freqProcessor / 1000000);
109 printf("MPX:%4lu MHz, ", sysinfo.freqSystemBus / 1000000);
110 printf("DDR:%4lu MHz, ", sysinfo.freqSystemBus / 2000000);
Jon Loeliger5c9efb32006-04-27 10:15:16 -0500111
Trent Piephoada591d2008-12-03 15:16:37 -0800112 if (sysinfo.freqLocalBus > LCRR_CLKDIV) {
113 printf("LBC:%4lu MHz\n", sysinfo.freqLocalBus / 1000000);
Jon Loeligerdebb7352006-04-26 17:58:56 -0500114 } else {
Wolfgang Denka9f3acb2009-01-12 14:50:35 +0100115 printf("LBC: unknown (LCRR[CLKDIV] = 0x%02lx)\n",
Trent Piephoada591d2008-12-03 15:16:37 -0800116 sysinfo.freqLocalBus);
Jon Loeligerdebb7352006-04-26 17:58:56 -0500117 }
118
Jon Loeligercb5965f2006-05-31 12:44:44 -0500119 puts(" L2: ");
Jon Loeliger126aa702006-05-30 17:47:00 -0500120 if (get_l2cr() & 0x80000000)
Jon Loeligercb5965f2006-05-31 12:44:44 -0500121 puts("Enabled\n");
Jon Loeliger126aa702006-05-30 17:47:00 -0500122 else
Jon Loeligercb5965f2006-05-31 12:44:44 -0500123 puts("Disabled\n");
Jon Loeliger5c9efb32006-04-27 10:15:16 -0500124
125 return 0;
Jon Loeligerdebb7352006-04-26 17:58:56 -0500126}
127
128
Jon Loeligerdebb7352006-04-26 17:58:56 -0500129void
Jon Loeliger126aa702006-05-30 17:47:00 -0500130do_reset(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
Jon Loeligerdebb7352006-04-26 17:58:56 -0500131{
Peter Tyser4ef630d2009-02-05 11:25:25 -0600132 volatile immap_t *immap = (immap_t *)CONFIG_SYS_IMMR;
133 volatile ccsr_gur_t *gur = &immap->im_gur;
Jon Loeligerdebb7352006-04-26 17:58:56 -0500134
Peter Tyser4ef630d2009-02-05 11:25:25 -0600135 /* Attempt board-specific reset */
136 board_reset();
Jon Loeligerdebb7352006-04-26 17:58:56 -0500137
Peter Tyser4ef630d2009-02-05 11:25:25 -0600138 /* Next try asserting HRESET_REQ */
139 out_be32(&gur->rstcr, MPC86xx_RSTCR_HRST_REQ);
Jon Loeligerdebb7352006-04-26 17:58:56 -0500140
Peter Tyser4ef630d2009-02-05 11:25:25 -0600141 while (1)
142 ;
Jon Loeligerdebb7352006-04-26 17:58:56 -0500143}
144
145
Jon Loeligerdebb7352006-04-26 17:58:56 -0500146/*
147 * Get timebase clock frequency
148 */
Jon Loeligerffff3ae2006-08-22 12:06:18 -0500149unsigned long
150get_tbclk(void)
Jon Loeligerdebb7352006-04-26 17:58:56 -0500151{
Jon Loeligerffff3ae2006-08-22 12:06:18 -0500152 sys_info_t sys_info;
Jon Loeligerdebb7352006-04-26 17:58:56 -0500153
154 get_sys_info(&sys_info);
Jon Loeliger5c9efb32006-04-27 10:15:16 -0500155 return (sys_info.freqSystemBus + 3L) / 4L;
Jon Loeligerdebb7352006-04-26 17:58:56 -0500156}
157
Jon Loeligerdebb7352006-04-26 17:58:56 -0500158
159#if defined(CONFIG_WATCHDOG)
160void
161watchdog_reset(void)
162{
Jason Jin3473ab72008-05-13 11:50:36 +0800163#if defined(CONFIG_MPC8610)
164 /*
165 * This actually feed the hard enabled watchdog.
166 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200167 volatile immap_t *immap = (immap_t *)CONFIG_SYS_IMMR;
Jason Jin3473ab72008-05-13 11:50:36 +0800168 volatile ccsr_wdt_t *wdt = &immap->im_wdt;
169 volatile ccsr_gur_t *gur = &immap->im_gur;
170 u32 tmp = gur->pordevsr;
171
172 if (tmp & 0x4000) {
173 wdt->swsrr = 0x556c;
174 wdt->swsrr = 0xaa39;
175 }
176#endif
Jon Loeligerdebb7352006-04-26 17:58:56 -0500177}
178#endif /* CONFIG_WATCHDOG */
179
Jon Loeligerdebb7352006-04-26 17:58:56 -0500180
181#if defined(CONFIG_DDR_ECC)
Jon Loeligerffff3ae2006-08-22 12:06:18 -0500182void
183dma_init(void)
Jon Loeliger5c9efb32006-04-27 10:15:16 -0500184{
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200185 volatile immap_t *immap = (immap_t *) CONFIG_SYS_IMMR;
Jon Loeligerdebb7352006-04-26 17:58:56 -0500186 volatile ccsr_dma_t *dma = &immap->im_dma;
187
188 dma->satr0 = 0x00040000;
189 dma->datr0 = 0x00040000;
190 asm("sync; isync");
Jon Loeligerdebb7352006-04-26 17:58:56 -0500191}
192
Jon Loeligerffff3ae2006-08-22 12:06:18 -0500193uint
194dma_check(void)
Jon Loeliger5c9efb32006-04-27 10:15:16 -0500195{
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200196 volatile immap_t *immap = (immap_t *) CONFIG_SYS_IMMR;
Jon Loeligerdebb7352006-04-26 17:58:56 -0500197 volatile ccsr_dma_t *dma = &immap->im_dma;
198 volatile uint status = dma->sr0;
199
200 /* While the channel is busy, spin */
Jon Loeligerffff3ae2006-08-22 12:06:18 -0500201 while ((status & 4) == 4) {
Jon Loeligerdebb7352006-04-26 17:58:56 -0500202 status = dma->sr0;
203 }
204
205 if (status != 0) {
Jon Loeligerffff3ae2006-08-22 12:06:18 -0500206 printf("DMA Error: status = %x\n", status);
Jon Loeligerdebb7352006-04-26 17:58:56 -0500207 }
208 return status;
209}
210
Jon Loeligerffff3ae2006-08-22 12:06:18 -0500211int
212dma_xfer(void *dest, uint count, void *src)
Jon Loeliger5c9efb32006-04-27 10:15:16 -0500213{
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200214 volatile immap_t *immap = (immap_t *) CONFIG_SYS_IMMR;
Jon Loeligerdebb7352006-04-26 17:58:56 -0500215 volatile ccsr_dma_t *dma = &immap->im_dma;
216
217 dma->dar0 = (uint) dest;
218 dma->sar0 = (uint) src;
219 dma->bcr0 = count;
220 dma->mr0 = 0xf000004;
221 asm("sync;isync");
222 dma->mr0 = 0xf000005;
223 asm("sync;isync");
224 return dma_check();
225}
Jon Loeliger5c9efb32006-04-27 10:15:16 -0500226
Jon Loeligerdebb7352006-04-26 17:58:56 -0500227#endif /* CONFIG_DDR_ECC */
228
229
Becky Bruce4f93f8b2008-01-23 16:31:06 -0600230/*
231 * Print out the state of various machine registers.
Becky Brucee34a0e92008-05-08 19:02:51 -0500232 * Currently prints out LAWs, BR0/OR0, and BATs
Becky Bruce4f93f8b2008-01-23 16:31:06 -0600233 */
234void mpc86xx_reginfo(void)
235{
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200236 immap_t *immap = (immap_t *)CONFIG_SYS_IMMR;
Becky Bruce4f93f8b2008-01-23 16:31:06 -0600237 ccsr_lbc_t *lbc = &immap->im_lbc;
238
Becky Brucee34a0e92008-05-08 19:02:51 -0500239 print_bats();
Becky Bruce4f93f8b2008-01-23 16:31:06 -0600240 print_laws();
241
242 printf ("Local Bus Controller Registers\n"
243 "\tBR0\t0x%08X\tOR0\t0x%08X \n", in_be32(&lbc->br0), in_be32(&lbc->or0));
244 printf("\tBR1\t0x%08X\tOR1\t0x%08X \n", in_be32(&lbc->br1), in_be32(&lbc->or1));
245 printf("\tBR2\t0x%08X\tOR2\t0x%08X \n", in_be32(&lbc->br2), in_be32(&lbc->or2));
246 printf("\tBR3\t0x%08X\tOR3\t0x%08X \n", in_be32(&lbc->br3), in_be32(&lbc->or3));
247 printf("\tBR4\t0x%08X\tOR4\t0x%08X \n", in_be32(&lbc->br4), in_be32(&lbc->or4));
248 printf("\tBR5\t0x%08X\tOR5\t0x%08X \n", in_be32(&lbc->br5), in_be32(&lbc->or5));
249 printf("\tBR6\t0x%08X\tOR6\t0x%08X \n", in_be32(&lbc->br6), in_be32(&lbc->or6));
250 printf("\tBR7\t0x%08X\tOR7\t0x%08X \n", in_be32(&lbc->br7), in_be32(&lbc->or7));
Jon Loeligerdebb7352006-04-26 17:58:56 -0500251
252}
Ben Warrendd354792008-06-23 22:57:27 -0700253
Andy Fleming75b9d4a2008-08-31 16:33:26 -0500254/*
255 * Initializes on-chip ethernet controllers.
256 * to override, implement board_eth_init()
Ben Warrendd354792008-06-23 22:57:27 -0700257 */
Ben Warrendd354792008-06-23 22:57:27 -0700258int cpu_eth_init(bd_t *bis)
259{
Andy Fleming75b9d4a2008-08-31 16:33:26 -0500260#if defined(CONFIG_TSEC_ENET)
261 tsec_standard_init(bis);
Ben Warrendd354792008-06-23 22:57:27 -0700262#endif
Andy Fleming75b9d4a2008-08-31 16:33:26 -0500263
Ben Warrendd354792008-06-23 22:57:27 -0700264 return 0;
265}