blob: 32d6c40da081620a8c58533da7ac1837c163ece1 [file] [log] [blame]
wdenkbf9e3b32004-02-12 00:47:09 +00001/*
2 * (C) Copyright 2003
3 * Josef Baumgartner <josef.baumgartner@telex.de>
4 *
Heiko Schocher9acb6262006-04-20 08:42:42 +02005 * MCF5282 additionals
6 * (C) Copyright 2005
7 * BuS Elektronik GmbH & Co. KG <esw@bus-elektronik.de>
8 *
Matthew Fettkef71d9d92008-02-04 15:38:20 -06009 * MCF5275 additions
10 * Copyright (C) 2008 Arthur Shipkowski (art@videon-central.com)
11 *
wdenkbf9e3b32004-02-12 00:47:09 +000012 * See file CREDITS for list of people who contributed to this
13 * project.
14 *
15 * This program is free software; you can redistribute it and/or
16 * modify it under the terms of the GNU General Public License as
17 * published by the Free Software Foundation; either version 2 of
18 * the License, or (at your option) any later version.
19 *
20 * This program is distributed in the hope that it will be useful,
21 * but WITHOUT ANY WARRANTY; without even the implied warranty of
22 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23 * GNU General Public License for more details.
24 *
25 * You should have received a copy of the GNU General Public License
26 * along with this program; if not, write to the Free Software
27 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
28 * MA 02111-1307 USA
29 */
30
31#include <common.h>
32#include <watchdog.h>
33#include <command.h>
TsiChungLiew83ec20b2007-08-15 19:21:21 -050034#include <asm/immap.h>
Ben Warren89973f82008-08-31 22:22:04 -070035#include <netdev.h>
wdenkbf9e3b32004-02-12 00:47:09 +000036
Zachary P. Landaueacbd312006-01-26 17:35:56 -050037#ifdef CONFIG_M5271
Bartlomiej Sieka363d1d82007-01-23 13:25:22 +010038/*
39 * Both MCF5270 and MCF5271 are members of the MPC5271 family. Try to
40 * determine which one we are running on, based on the Chip Identification
41 * Register (CIR).
42 */
TsiChungLiew83ec20b2007-08-15 19:21:21 -050043int checkcpu(void)
Zachary P. Landaueacbd312006-01-26 17:35:56 -050044{
Marian Balakowiczb75ef852006-05-09 11:45:31 +020045 char buf[32];
Bartlomiej Sieka363d1d82007-01-23 13:25:22 +010046 unsigned short cir; /* Chip Identification Register */
47 unsigned short pin; /* Part identification number */
48 unsigned char prn; /* Part revision number */
49 char *cpu_model;
Marian Balakowiczb75ef852006-05-09 11:45:31 +020050
Bartlomiej Sieka363d1d82007-01-23 13:25:22 +010051 cir = mbar_readShort(MCF_CCM_CIR);
52 pin = cir >> MCF_CCM_CIR_PIN_LEN;
53 prn = cir & MCF_CCM_CIR_PRN_MASK;
54
55 switch (pin) {
56 case MCF_CCM_CIR_PIN_MCF5270:
57 cpu_model = "5270";
58 break;
59 case MCF_CCM_CIR_PIN_MCF5271:
60 cpu_model = "5271";
61 break;
62 default:
63 cpu_model = NULL;
64 break;
65 }
66
67 if (cpu_model)
68 printf("CPU: Freescale ColdFire MCF%s rev. %hu, at %s MHz\n",
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020069 cpu_model, prn, strmhz(buf, CONFIG_SYS_CLK));
Bartlomiej Sieka363d1d82007-01-23 13:25:22 +010070 else
71 printf("CPU: Unknown - Freescale ColdFire MCF5271 family"
TsiChungLiew83ec20b2007-08-15 19:21:21 -050072 " (PIN: 0x%x) rev. %hu, at %s MHz\n",
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020073 pin, prn, strmhz(buf, CONFIG_SYS_CLK));
Bartlomiej Sieka363d1d82007-01-23 13:25:22 +010074
Zachary P. Landaueacbd312006-01-26 17:35:56 -050075 return 0;
76}
77
TsiChungLiew83ec20b2007-08-15 19:21:21 -050078int do_reset(cmd_tbl_t * cmdtp, bd_t * bd, int flag, int argc, char *argv[])
79{
Zachary P. Landaueacbd312006-01-26 17:35:56 -050080 mbar_writeByte(MCF_RCM_RCR,
TsiChungLiew83ec20b2007-08-15 19:21:21 -050081 MCF_RCM_RCR_SOFTRST | MCF_RCM_RCR_FRCRSTOUT);
Zachary P. Landaueacbd312006-01-26 17:35:56 -050082 return 0;
83};
84
85#if defined(CONFIG_WATCHDOG)
TsiChungLiew83ec20b2007-08-15 19:21:21 -050086void watchdog_reset(void)
Zachary P. Landaueacbd312006-01-26 17:35:56 -050087{
88 mbar_writeShort(MCF_WTM_WSR, 0x5555);
89 mbar_writeShort(MCF_WTM_WSR, 0xAAAA);
90}
91
TsiChungLiew83ec20b2007-08-15 19:21:21 -050092int watchdog_disable(void)
Zachary P. Landaueacbd312006-01-26 17:35:56 -050093{
94 mbar_writeShort(MCF_WTM_WCR, 0);
95 return (0);
96}
97
TsiChungLiew83ec20b2007-08-15 19:21:21 -050098int watchdog_init(void)
Zachary P. Landaueacbd312006-01-26 17:35:56 -050099{
Zachary P. Landaueacbd312006-01-26 17:35:56 -0500100 mbar_writeShort(MCF_WTM_WCR, MCF_WTM_WCR_EN);
101 return (0);
102}
TsiChungLiew83ec20b2007-08-15 19:21:21 -0500103#endif /* #ifdef CONFIG_WATCHDOG */
Zachary P. Landaueacbd312006-01-26 17:35:56 -0500104
105#endif
wdenkbf9e3b32004-02-12 00:47:09 +0000106
107#ifdef CONFIG_M5272
TsiChungLiew83ec20b2007-08-15 19:21:21 -0500108int do_reset(cmd_tbl_t * cmdtp, bd_t * bd, int flag, int argc, char *argv[])
109{
110 volatile wdog_t *wdp = (wdog_t *) (MMAP_WDOG);
wdenkbf9e3b32004-02-12 00:47:09 +0000111
112 wdp->wdog_wrrr = 0;
TsiChungLiew83ec20b2007-08-15 19:21:21 -0500113 udelay(1000);
wdenkbf9e3b32004-02-12 00:47:09 +0000114
115 /* enable watchdog, set timeout to 0 and wait */
116 wdp->wdog_wrrr = 1;
TsiChungLiew83ec20b2007-08-15 19:21:21 -0500117 while (1) ;
wdenkbf9e3b32004-02-12 00:47:09 +0000118
119 /* we don't return! */
120 return 0;
121};
122
TsiChungLiew83ec20b2007-08-15 19:21:21 -0500123int checkcpu(void)
124{
125 volatile sysctrl_t *sysctrl = (sysctrl_t *) (MMAP_CFG);
wdenkbf9e3b32004-02-12 00:47:09 +0000126 uchar msk;
TsiChungLiew83ec20b2007-08-15 19:21:21 -0500127 char *suf;
wdenkbf9e3b32004-02-12 00:47:09 +0000128
TsiChungLiew83ec20b2007-08-15 19:21:21 -0500129 puts("CPU: ");
130 msk = (sysctrl->sc_dir > 28) & 0xf;
wdenkbf9e3b32004-02-12 00:47:09 +0000131 switch (msk) {
TsiChungLiew83ec20b2007-08-15 19:21:21 -0500132 case 0x2:
133 suf = "1K75N";
134 break;
135 case 0x4:
136 suf = "3K75N";
137 break;
138 default:
139 suf = NULL;
140 printf("Freescale MCF5272 (Mask:%01x)\n", msk);
141 break;
142 }
wdenkbf9e3b32004-02-12 00:47:09 +0000143
144 if (suf)
TsiChungLiew83ec20b2007-08-15 19:21:21 -0500145 printf("Freescale MCF5272 %s\n", suf);
wdenkbf9e3b32004-02-12 00:47:09 +0000146 return 0;
147};
148
wdenkbf9e3b32004-02-12 00:47:09 +0000149#if defined(CONFIG_WATCHDOG)
150/* Called by macro WATCHDOG_RESET */
TsiChungLiew83ec20b2007-08-15 19:21:21 -0500151void watchdog_reset(void)
wdenkbf9e3b32004-02-12 00:47:09 +0000152{
TsiChungLiew83ec20b2007-08-15 19:21:21 -0500153 volatile wdog_t *wdt = (volatile wdog_t *)(MMAP_WDOG);
154 wdt->wdog_wcr = 0;
wdenkbf9e3b32004-02-12 00:47:09 +0000155}
156
TsiChungLiew83ec20b2007-08-15 19:21:21 -0500157int watchdog_disable(void)
wdenkbf9e3b32004-02-12 00:47:09 +0000158{
TsiChungLiew83ec20b2007-08-15 19:21:21 -0500159 volatile wdog_t *wdt = (volatile wdog_t *)(MMAP_WDOG);
wdenkbf9e3b32004-02-12 00:47:09 +0000160
TsiChungLiew83ec20b2007-08-15 19:21:21 -0500161 wdt->wdog_wcr = 0; /* reset watchdog counter */
162 wdt->wdog_wirr = 0; /* disable watchdog interrupt */
163 wdt->wdog_wrrr = 0; /* disable watchdog timer */
wdenkbf9e3b32004-02-12 00:47:09 +0000164
TsiChungLiew83ec20b2007-08-15 19:21:21 -0500165 puts("WATCHDOG:disabled\n");
wdenkbf9e3b32004-02-12 00:47:09 +0000166 return (0);
167}
168
TsiChungLiew83ec20b2007-08-15 19:21:21 -0500169int watchdog_init(void)
wdenkbf9e3b32004-02-12 00:47:09 +0000170{
TsiChungLiew83ec20b2007-08-15 19:21:21 -0500171 volatile wdog_t *wdt = (volatile wdog_t *)(MMAP_WDOG);
wdenkbf9e3b32004-02-12 00:47:09 +0000172
TsiChungLiew83ec20b2007-08-15 19:21:21 -0500173 wdt->wdog_wirr = 0; /* disable watchdog interrupt */
wdenkbf9e3b32004-02-12 00:47:09 +0000174
175 /* set timeout and enable watchdog */
TsiChungLiew83ec20b2007-08-15 19:21:21 -0500176 wdt->wdog_wrrr =
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200177 ((CONFIG_WATCHDOG_TIMEOUT * CONFIG_SYS_HZ) / (32768 * 1000)) - 1;
TsiChungLiew83ec20b2007-08-15 19:21:21 -0500178 wdt->wdog_wcr = 0; /* reset watchdog counter */
wdenkbf9e3b32004-02-12 00:47:09 +0000179
TsiChungLiew83ec20b2007-08-15 19:21:21 -0500180 puts("WATCHDOG:enabled\n");
wdenkbf9e3b32004-02-12 00:47:09 +0000181 return (0);
182}
TsiChungLiew83ec20b2007-08-15 19:21:21 -0500183#endif /* #ifdef CONFIG_WATCHDOG */
wdenkbf9e3b32004-02-12 00:47:09 +0000184
TsiChungLiew83ec20b2007-08-15 19:21:21 -0500185#endif /* #ifdef CONFIG_M5272 */
wdenkbf9e3b32004-02-12 00:47:09 +0000186
Matthew Fettkef71d9d92008-02-04 15:38:20 -0600187#ifdef CONFIG_M5275
188int do_reset(cmd_tbl_t *cmdtp, bd_t *bd, int flag, int argc, char *argv[])
189{
190 volatile rcm_t *rcm = (rcm_t *)(MMAP_RCM);
191
192 udelay(1000);
193
194 rcm->rcr = RCM_RCR_SOFTRST;
195
196 /* we don't return! */
197 return 0;
198};
199
200int checkcpu(void)
201{
202 char buf[32];
203
204 printf("CPU: Freescale Coldfire MCF5275 at %s MHz\n",
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200205 strmhz(buf, CONFIG_SYS_CLK));
Matthew Fettkef71d9d92008-02-04 15:38:20 -0600206 return 0;
207};
208
209
210#if defined(CONFIG_WATCHDOG)
211/* Called by macro WATCHDOG_RESET */
212void watchdog_reset(void)
213{
214 volatile wdog_t *wdt = (volatile wdog_t *)(MMAP_WDOG);
215 wdt->wsr = 0x5555;
216 wdt->wsr = 0xAAAA;
217}
218
219int watchdog_disable(void)
220{
221 volatile wdog_t *wdt = (volatile wdog_t *)(MMAP_WDOG);
222
223 wdt->wsr = 0x5555; /* reset watchdog counter */
224 wdt->wsr = 0xAAAA;
225 wdt->wcr = 0; /* disable watchdog timer */
226
227 puts("WATCHDOG:disabled\n");
228 return (0);
229}
230
231int watchdog_init(void)
232{
233 volatile wdog_t *wdt = (volatile wdog_t *)(MMAP_WDOG);
234
235 wdt->wcr = 0; /* disable watchdog */
236
237 /* set timeout and enable watchdog */
238 wdt->wmr =
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200239 ((CONFIG_WATCHDOG_TIMEOUT * CONFIG_SYS_HZ) / (32768 * 1000)) - 1;
Matthew Fettkef71d9d92008-02-04 15:38:20 -0600240 wdt->wsr = 0x5555; /* reset watchdog counter */
241 wdt->wsr = 0xAAAA;
242
243 puts("WATCHDOG:enabled\n");
244 return (0);
245}
246#endif /* #ifdef CONFIG_WATCHDOG */
247
248#endif /* #ifdef CONFIG_M5275 */
249
wdenkbf9e3b32004-02-12 00:47:09 +0000250#ifdef CONFIG_M5282
TsiChungLiew83ec20b2007-08-15 19:21:21 -0500251int checkcpu(void)
wdenkbf9e3b32004-02-12 00:47:09 +0000252{
Wolfgang Denk4176c792006-06-10 19:27:47 +0200253 unsigned char resetsource = MCFRESET_RSR;
Heiko Schocher9acb6262006-04-20 08:42:42 +0200254
TsiChungLiew83ec20b2007-08-15 19:21:21 -0500255 printf("CPU: Freescale Coldfire MCF5282 (PIN: %2.2x REV: %2.2x)\n",
256 MCFCCM_CIR >> 8, MCFCCM_CIR & MCFCCM_CIR_PRN_MASK);
257 printf("Reset:%s%s%s%s%s%s%s\n",
258 (resetsource & MCFRESET_RSR_LOL) ? " Loss of Lock" : "",
259 (resetsource & MCFRESET_RSR_LOC) ? " Loss of Clock" : "",
260 (resetsource & MCFRESET_RSR_EXT) ? " External" : "",
261 (resetsource & MCFRESET_RSR_POR) ? " Power On" : "",
262 (resetsource & MCFRESET_RSR_WDR) ? " Watchdog" : "",
263 (resetsource & MCFRESET_RSR_SOFT) ? " Software" : "",
264 (resetsource & MCFRESET_RSR_LVD) ? " Low Voltage" : "");
wdenkbf9e3b32004-02-12 00:47:09 +0000265 return 0;
266}
267
TsiChungLiew83ec20b2007-08-15 19:21:21 -0500268int do_reset(cmd_tbl_t * cmdtp, bd_t * bd, int flag, int argc, char *argv[])
Heiko Schocher9acb6262006-04-20 08:42:42 +0200269{
270 MCFRESET_RCR = MCFRESET_RCR_SOFTRST;
wdenkbf9e3b32004-02-12 00:47:09 +0000271 return 0;
272};
273#endif
stroese8c725b92004-12-16 18:09:49 +0000274
TsiChungLiewa1436a82007-08-16 13:20:50 -0500275#ifdef CONFIG_M5249
TsiChungLiew83ec20b2007-08-15 19:21:21 -0500276int checkcpu(void)
stroese8c725b92004-12-16 18:09:49 +0000277{
278 char buf[32];
279
TsiChungLiew83ec20b2007-08-15 19:21:21 -0500280 printf("CPU: Freescale Coldfire MCF5249 at %s MHz\n",
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200281 strmhz(buf, CONFIG_SYS_CLK));
stroese8c725b92004-12-16 18:09:49 +0000282 return 0;
283}
284
TsiChungLiew83ec20b2007-08-15 19:21:21 -0500285int do_reset(cmd_tbl_t * cmdtp, bd_t * bd, int flag, int argc, char *argv[])
286{
stroese8c725b92004-12-16 18:09:49 +0000287 /* enable watchdog, set timeout to 0 and wait */
288 mbar_writeByte(MCFSIM_SYPCR, 0xc0);
TsiChungLiew83ec20b2007-08-15 19:21:21 -0500289 while (1) ;
stroese8c725b92004-12-16 18:09:49 +0000290
291 /* we don't return! */
292 return 0;
293};
294#endif
TsiChungLiewa1436a82007-08-16 13:20:50 -0500295
296#ifdef CONFIG_M5253
297int checkcpu(void)
298{
299 char buf[32];
300
301 unsigned char resetsource = mbar_readLong(SIM_RSR);
302 printf("CPU: Freescale Coldfire MCF5253 at %s MHz\n",
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200303 strmhz(buf, CONFIG_SYS_CLK));
TsiChungLiewa1436a82007-08-16 13:20:50 -0500304
305 if ((resetsource & SIM_RSR_HRST) || (resetsource & SIM_RSR_SWTR)) {
306 printf("Reset:%s%s\n",
307 (resetsource & SIM_RSR_HRST) ? " Hardware/ System Reset"
308 : "",
309 (resetsource & SIM_RSR_SWTR) ? " Software Watchdog" :
310 "");
311 }
312 return 0;
313}
314
315int do_reset(cmd_tbl_t * cmdtp, bd_t * bd, int flag, int argc, char *argv[])
316{
317 /* enable watchdog, set timeout to 0 and wait */
318 mbar_writeByte(SIM_SYPCR, 0xc0);
319 while (1) ;
320
321 /* we don't return! */
322 return 0;
323};
324#endif
Ben Warren86882b82008-08-26 22:16:25 -0700325
326#if defined(CONFIG_MCFFEC)
327/* Default initializations for MCFFEC controllers. To override,
328 * create a board-specific function called:
329 * int board_eth_init(bd_t *bis)
330 */
331
Ben Warren86882b82008-08-26 22:16:25 -0700332int cpu_eth_init(bd_t *bis)
333{
334 return mcffec_initialize(bis);
335}
336#endif