blob: b012222794902b022048e62f0ff2b12375c9f5e3 [file] [log] [blame]
wdenkbf9e3b32004-02-12 00:47:09 +00001/*
2 * (C) Copyright 2003
3 * Josef Baumgartner <josef.baumgartner@telex.de>
4 *
5 * See file CREDITS for list of people who contributed to this
6 * project.
7 *
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License as
10 * published by the Free Software Foundation; either version 2 of
11 * the License, or (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
21 * MA 02111-1307 USA
22 */
23
24#include <common.h>
25#include <watchdog.h>
26#include <command.h>
27
28#ifdef CONFIG_M5272
29#include <asm/immap_5272.h>
30#include <asm/m5272.h>
31#endif
32
33#ifdef CONFIG_M5282
34
35#endif
36
37
38#ifdef CONFIG_M5272
39int do_reset (cmd_tbl_t *cmdtp, bd_t *bd, int flag, int argc, char *argv[]) {
40 volatile wdog_t * wdp = (wdog_t *)(CFG_MBAR + MCFSIM_WRRR);
41
42 wdp->wdog_wrrr = 0;
43 udelay (1000);
44
45 /* enable watchdog, set timeout to 0 and wait */
46 wdp->wdog_wrrr = 1;
47 while (1);
48
49 /* we don't return! */
50 return 0;
51};
52
53int checkcpu(void) {
54 ulong *dirp = (ulong *)(CFG_MBAR + MCFSIM_DIR);
55 uchar msk;
56 char *suf;
57
58 puts ("CPU: ");
59 msk = (*dirp > 28) & 0xf;
60 switch (msk) {
61 case 0x2: suf = "1K75N"; break;
62 case 0x4: suf = "3K75N"; break;
63 default:
64 suf = NULL;
65 printf ("MOTOROLA MCF5272 (Mask:%01x)\n", msk);
66 break;
67 }
68
69 if (suf)
70 printf ("MOTOROLA MCF5272 %s\n", suf);
71 return 0;
72};
73
74
75#if defined(CONFIG_WATCHDOG)
76/* Called by macro WATCHDOG_RESET */
77void watchdog_reset (void)
78{
79 volatile immap_t * regp = (volatile immap_t *)CFG_MBAR;
80 regp->wdog_reg.wdog_wcr = 0;
81}
82
83int watchdog_disable (void)
84{
85 volatile immap_t *regp = (volatile immap_t *)CFG_MBAR;
86
87 regp->wdog_reg.wdog_wcr = 0; /* reset watchdog counter */
88 regp->wdog_reg.wdog_wirr = 0; /* disable watchdog interrupt */
89 regp->wdog_reg.wdog_wrrr = 0; /* disable watchdog timer */
90
91 puts ("WATCHDOG:disabled\n");
92 return (0);
93}
94
95int watchdog_init (void)
96{
97 volatile immap_t *regp = (volatile immap_t *)CFG_MBAR;
98
99 regp->wdog_reg.wdog_wirr = 0; /* disable watchdog interrupt */
100
101 /* set timeout and enable watchdog */
102 regp->wdog_reg.wdog_wrrr = ((CONFIG_WATCHDOG_TIMEOUT * CFG_HZ) / (32768 * 1000)) - 1;
103 regp->wdog_reg.wdog_wcr = 0; /* reset watchdog counter */
104
105 puts ("WATCHDOG:enabled\n");
106 return (0);
107}
108#endif /* #ifdef CONFIG_WATCHDOG */
109
110#endif /* #ifdef CONFIG_M5272 */
111
112
113#ifdef CONFIG_M5282
114int checkcpu (void)
115{
116 puts ("CPU: MOTOROLA Coldfire MCF5282\n");
117 return 0;
118}
119
120int do_reset (cmd_tbl_t *cmdtp, bd_t *bd, int flag, int argc, char *argv[]) {
121 return 0;
122};
123#endif