blob: c553415b555a5a122b5f4966d97c9915ad2efc1e [file] [log] [blame]
Jon Loeligerdebb7352006-04-26 17:58:56 -05001/*
Timur Tabi9ff32d82010-03-29 12:51:07 -05002 * Copyright 2006,2009-2010 Freescale Semiconductor, Inc.
Jon Loeligercb5965f2006-05-31 12:44:44 -05003 * 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>
Becky Bruce4f93f8b2008-01-23 16:31:06 -060031#include <asm/fsl_law.h>
Jon Loeligerdebb7352006-04-26 17:58:56 -050032
Poonam Aggrwal0e870982009-07-31 12:08:14 +053033DECLARE_GLOBAL_DATA_PTR;
34
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}
Peter Tyserf9a109b2009-04-20 11:08:46 -050043void board_reset(void) __attribute__((weak, alias("__board_reset")));
Peter Tyser4ef630d2009-02-05 11:25:25 -060044
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;
Jon Loeligerdebb7352006-04-26 17:58:56 -050051 uint major, minor;
Peter Tysera1c8a712009-02-06 14:30:40 -060052 char buf1[32], buf2[32];
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;
Kumar Gala480f6172009-06-18 08:23:01 -050055 struct cpu_type *cpu;
Peter Tysera1c8a712009-02-06 14:30:40 -060056 uint msscr0 = mfspr(MSSCR0);
Jon Loeligerdebb7352006-04-26 17:58:56 -050057
58 svr = get_svr();
Jon Loeligerdebb7352006-04-26 17:58:56 -050059 major = SVR_MAJ(svr);
60 minor = SVR_MIN(svr);
61
Poonam Aggrwal21170c82009-09-03 19:42:40 +053062 if (cpu_numcores() > 1) {
63#ifndef CONFIG_MP
64 puts("Unicore software on multiprocessor system!!\n"
65 "To enable mutlticore build define CONFIG_MP\n");
66#endif
67 }
Peter Tysera1c8a712009-02-06 14:30:40 -060068 puts("CPU: ");
69
Simon Glass67ac13b2012-12-13 20:48:48 +000070 cpu = gd->arch.cpu;
Poonam Aggrwal0e870982009-07-31 12:08:14 +053071
Poonam Aggrwal58442dc2009-09-02 13:35:21 +053072 puts(cpu->name);
Kumar Gala480f6172009-06-18 08:23:01 -050073
Jon Loeligerdebb7352006-04-26 17:58:56 -050074 printf(", Version: %d.%d, (0x%08x)\n", major, minor, svr);
Peter Tysera1c8a712009-02-06 14:30:40 -060075 puts("Core: ");
76
77 pvr = get_pvr();
Peter Tysera1c8a712009-02-06 14:30:40 -060078 major = PVR_E600_MAJ(pvr);
79 minor = PVR_E600_MIN(pvr);
80
81 printf("E600 Core %d", (msscr0 & 0x20) ? 1 : 0 );
82 if (gur->pordevsr & MPC86xx_PORDEVSR_CORE1TE)
83 puts("\n Core1Translation Enabled");
84 debug(" (MSSCR0=%x, PORDEVSR=%x)", msscr0, gur->pordevsr);
85
86 printf(", Version: %d.%d, (0x%08x)\n", major, minor, pvr);
Jon Loeligerdebb7352006-04-26 17:58:56 -050087
88 get_sys_info(&sysinfo);
89
Peter Tysera1c8a712009-02-06 14:30:40 -060090 puts("Clock Configuration:\n");
91 printf(" CPU:%-4s MHz, ", strmhz(buf1, sysinfo.freqProcessor));
92 printf("MPX:%-4s MHz\n", strmhz(buf1, sysinfo.freqSystemBus));
93 printf(" DDR:%-4s MHz (%s MT/s data rate), ",
94 strmhz(buf1, sysinfo.freqSystemBus / 2),
95 strmhz(buf2, sysinfo.freqSystemBus));
Jon Loeliger5c9efb32006-04-27 10:15:16 -050096
Trent Piephoada591d2008-12-03 15:16:37 -080097 if (sysinfo.freqLocalBus > LCRR_CLKDIV) {
Peter Tysera1c8a712009-02-06 14:30:40 -060098 printf("LBC:%-4s MHz\n", strmhz(buf1, sysinfo.freqLocalBus));
Jon Loeligerdebb7352006-04-26 17:58:56 -050099 } else {
Wolfgang Denka9f3acb2009-01-12 14:50:35 +0100100 printf("LBC: unknown (LCRR[CLKDIV] = 0x%02lx)\n",
Trent Piephoada591d2008-12-03 15:16:37 -0800101 sysinfo.freqLocalBus);
Jon Loeligerdebb7352006-04-26 17:58:56 -0500102 }
103
Peter Tysera1c8a712009-02-06 14:30:40 -0600104 puts("L1: D-cache 32 KB enabled\n");
105 puts(" I-cache 32 KB enabled\n");
106
107 puts("L2: ");
108 if (get_l2cr() & 0x80000000) {
109#if defined(CONFIG_MPC8610)
110 puts("256");
111#elif defined(CONFIG_MPC8641)
112 puts("512");
113#endif
114 puts(" KB enabled\n");
115 } else {
Jon Loeligercb5965f2006-05-31 12:44:44 -0500116 puts("Disabled\n");
Peter Tysera1c8a712009-02-06 14:30:40 -0600117 }
Jon Loeliger5c9efb32006-04-27 10:15:16 -0500118
119 return 0;
Jon Loeligerdebb7352006-04-26 17:58:56 -0500120}
121
122
Peter Tyserc22a7112010-12-03 10:28:47 -0600123int do_reset(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
Jon Loeligerdebb7352006-04-26 17:58:56 -0500124{
Peter Tyser4ef630d2009-02-05 11:25:25 -0600125 volatile immap_t *immap = (immap_t *)CONFIG_SYS_IMMR;
126 volatile ccsr_gur_t *gur = &immap->im_gur;
Jon Loeligerdebb7352006-04-26 17:58:56 -0500127
Peter Tyser4ef630d2009-02-05 11:25:25 -0600128 /* Attempt board-specific reset */
129 board_reset();
Jon Loeligerdebb7352006-04-26 17:58:56 -0500130
Peter Tyser4ef630d2009-02-05 11:25:25 -0600131 /* Next try asserting HRESET_REQ */
132 out_be32(&gur->rstcr, MPC86xx_RSTCR_HRST_REQ);
Jon Loeligerdebb7352006-04-26 17:58:56 -0500133
Peter Tyser4ef630d2009-02-05 11:25:25 -0600134 while (1)
135 ;
Peter Tyserc22a7112010-12-03 10:28:47 -0600136
137 return 1;
Jon Loeligerdebb7352006-04-26 17:58:56 -0500138}
139
140
Jon Loeligerdebb7352006-04-26 17:58:56 -0500141/*
142 * Get timebase clock frequency
143 */
Jon Loeligerffff3ae2006-08-22 12:06:18 -0500144unsigned long
145get_tbclk(void)
Jon Loeligerdebb7352006-04-26 17:58:56 -0500146{
Jon Loeligerffff3ae2006-08-22 12:06:18 -0500147 sys_info_t sys_info;
Jon Loeligerdebb7352006-04-26 17:58:56 -0500148
149 get_sys_info(&sys_info);
Jon Loeliger5c9efb32006-04-27 10:15:16 -0500150 return (sys_info.freqSystemBus + 3L) / 4L;
Jon Loeligerdebb7352006-04-26 17:58:56 -0500151}
152
Jon Loeligerdebb7352006-04-26 17:58:56 -0500153
154#if defined(CONFIG_WATCHDOG)
155void
156watchdog_reset(void)
157{
Jason Jin3473ab72008-05-13 11:50:36 +0800158#if defined(CONFIG_MPC8610)
159 /*
160 * This actually feed the hard enabled watchdog.
161 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200162 volatile immap_t *immap = (immap_t *)CONFIG_SYS_IMMR;
Jason Jin3473ab72008-05-13 11:50:36 +0800163 volatile ccsr_wdt_t *wdt = &immap->im_wdt;
164 volatile ccsr_gur_t *gur = &immap->im_gur;
165 u32 tmp = gur->pordevsr;
166
167 if (tmp & 0x4000) {
168 wdt->swsrr = 0x556c;
169 wdt->swsrr = 0xaa39;
170 }
171#endif
Jon Loeligerdebb7352006-04-26 17:58:56 -0500172}
173#endif /* CONFIG_WATCHDOG */
174
Becky Bruce4f93f8b2008-01-23 16:31:06 -0600175/*
176 * Print out the state of various machine registers.
Becky Brucee34a0e92008-05-08 19:02:51 -0500177 * Currently prints out LAWs, BR0/OR0, and BATs
Becky Bruce4f93f8b2008-01-23 16:31:06 -0600178 */
179void mpc86xx_reginfo(void)
180{
Becky Brucee34a0e92008-05-08 19:02:51 -0500181 print_bats();
Becky Bruce4f93f8b2008-01-23 16:31:06 -0600182 print_laws();
Becky Brucef51cdaf2010-06-17 11:37:20 -0500183 print_lbc_regs();
Jon Loeligerdebb7352006-04-26 17:58:56 -0500184}
Timur Tabi9ff32d82010-03-29 12:51:07 -0500185
186/*
187 * Set the DDR BATs to reflect the actual size of DDR.
188 *
189 * dram_size is the actual size of DDR, in bytes
190 *
191 * Note: we assume that CONFIG_MAX_MEM_MAPPED is 2G or smaller as we only
192 * are using a single BAT to cover DDR.
193 *
194 * If this is not true, (e.g. CONFIG_MAX_MEM_MAPPED is 2GB but HID0_XBSEN
195 * is not defined) then we might have a situation where U-Boot will attempt
196 * to relocated itself outside of the region mapped by DBAT0.
197 * This will cause a machine check.
198 *
199 * Currently we are limited to power of two sized DDR since we only use a
200 * single bat. If a non-power of two size is used that is less than
201 * CONFIG_MAX_MEM_MAPPED u-boot will crash.
202 *
203 */
204void setup_ddr_bat(phys_addr_t dram_size)
205{
206 unsigned long batu, bl;
207
208 bl = TO_BATU_BL(min(dram_size, CONFIG_MAX_MEM_MAPPED));
209
210 if (BATU_SIZE(bl) != dram_size) {
211 u64 sz = (u64)dram_size - BATU_SIZE(bl);
212 print_size(sz, " left unmapped\n");
213 }
214
215 batu = bl | BATU_VS | BATU_VP;
216 write_bat(DBAT0, batu, CONFIG_SYS_DBAT0L);
217 write_bat(IBAT0, batu, CONFIG_SYS_IBAT0L);
218}