blob: 157a8e41ac73d191023fa8995c70a52cdc0a1b90 [file] [log] [blame]
TsiChungLiew8999e6b2008-01-15 13:37:34 -06001/*
2 *
3 * (C) Copyright 2000-2003
4 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
5 *
Alison Wang027f76f2012-03-26 21:49:07 +00006 * Copyright (C) 2004-2007, 2012 Freescale Semiconductor, Inc.
TsiChungLiew8999e6b2008-01-15 13:37:34 -06007 * TsiChung Liew (Tsi-Chung.Liew@freescale.com)
8 *
9 * See file CREDITS for list of people who contributed to this
10 * project.
11 *
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License as
14 * published by the Free Software Foundation; either version 2 of
15 * the License, or (at your option) any later version.
16 *
17 * This program is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 * GNU General Public License for more details.
21 *
22 * You should have received a copy of the GNU General Public License
23 * along with this program; if not, write to the Free Software
24 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
25 * MA 02111-1307 USA
26 */
27
28#include <common.h>
29#include <watchdog.h>
30#include <command.h>
Ben Warren2f2b6b62008-08-31 22:22:04 -070031#include <netdev.h>
TsiChungLiew8999e6b2008-01-15 13:37:34 -060032
33#include <asm/immap.h>
Alison Wang027f76f2012-03-26 21:49:07 +000034#include <asm/io.h>
TsiChungLiew8999e6b2008-01-15 13:37:34 -060035
36DECLARE_GLOBAL_DATA_PTR;
37
Mike Frysinger6d1f6982010-10-20 03:41:17 -040038int do_reset(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
TsiChungLiew8999e6b2008-01-15 13:37:34 -060039{
Alison Wang027f76f2012-03-26 21:49:07 +000040 gptmr_t *gptmr = (gptmr_t *) (MMAP_GPTMR);
TsiChungLiew8999e6b2008-01-15 13:37:34 -060041
Alison Wang027f76f2012-03-26 21:49:07 +000042 out_be16(&gptmr->pre, 10);
43 out_be16(&gptmr->cnt, 1);
TsiChungLiew8999e6b2008-01-15 13:37:34 -060044
45 /* enable watchdog, set timeout to 0 and wait */
Alison Wang027f76f2012-03-26 21:49:07 +000046 out_8(&gptmr->mode, GPT_TMS_SGPIO);
47 out_8(&gptmr->ctrl, GPT_CTRL_WDEN | GPT_CTRL_CE);
TsiChungLiew8999e6b2008-01-15 13:37:34 -060048
49 /* we don't return! */
50 return 1;
51};
52
53int checkcpu(void)
54{
Alison Wang027f76f2012-03-26 21:49:07 +000055 siu_t *siu = (siu_t *) MMAP_SIU;
TsiChungLiew8999e6b2008-01-15 13:37:34 -060056 u16 id = 0;
57
58 puts("CPU: ");
59
Alison Wang027f76f2012-03-26 21:49:07 +000060 switch ((in_be32(&siu->jtagid) & 0x000FF000) >> 12) {
TsiChungLiew8999e6b2008-01-15 13:37:34 -060061 case 0x0C:
62 id = 5485;
63 break;
64 case 0x0D:
65 id = 5484;
66 break;
67 case 0x0E:
68 id = 5483;
69 break;
70 case 0x0F:
71 id = 5482;
72 break;
73 case 0x10:
74 id = 5481;
75 break;
76 case 0x11:
77 id = 5480;
78 break;
79 case 0x12:
80 id = 5475;
81 break;
82 case 0x13:
83 id = 5474;
84 break;
85 case 0x14:
86 id = 5473;
87 break;
88 case 0x15:
89 id = 5472;
90 break;
91 case 0x16:
92 id = 5471;
93 break;
94 case 0x17:
95 id = 5470;
96 break;
97 }
98
99 if (id) {
Wolfgang Denk20591042008-10-19 02:35:49 +0200100 char buf1[32], buf2[32];
101
TsiChungLiew8999e6b2008-01-15 13:37:34 -0600102 printf("Freescale MCF%d\n", id);
Wolfgang Denk20591042008-10-19 02:35:49 +0200103 printf(" CPU CLK %s MHz BUS CLK %s MHz\n",
104 strmhz(buf1, gd->cpu_clk),
105 strmhz(buf2, gd->bus_clk));
TsiChungLiew8999e6b2008-01-15 13:37:34 -0600106 }
107
108 return 0;
109};
110
111#if defined(CONFIG_HW_WATCHDOG)
112/* Called by macro WATCHDOG_RESET */
113void hw_watchdog_reset(void)
114{
Alison Wang027f76f2012-03-26 21:49:07 +0000115 gptmr_t *gptmr = (gptmr_t *) (MMAP_GPTMR);
TsiChungLiew8999e6b2008-01-15 13:37:34 -0600116
Alison Wang027f76f2012-03-26 21:49:07 +0000117 out_8(&gptmr->ocpw, 0xa5);
TsiChungLiew8999e6b2008-01-15 13:37:34 -0600118}
119
120int watchdog_disable(void)
121{
Alison Wang027f76f2012-03-26 21:49:07 +0000122 gptmr_t *gptmr = (gptmr_t *) (MMAP_GPTMR);
TsiChungLiew8999e6b2008-01-15 13:37:34 -0600123
124 /* UserManual, once the wdog is disabled, wdog cannot be re-enabled */
Alison Wang027f76f2012-03-26 21:49:07 +0000125 out_8(&gptmr->mode, 0);
126 out_8(&gptmr->ctrl, 0);
TsiChungLiew8999e6b2008-01-15 13:37:34 -0600127
128 puts("WATCHDOG:disabled\n");
129
130 return (0);
131}
132
133int watchdog_init(void)
134{
Alison Wang027f76f2012-03-26 21:49:07 +0000135 gptmr_t *gptmr = (gptmr_t *) (MMAP_GPTMR);
TsiChungLiew8999e6b2008-01-15 13:37:34 -0600136
Alison Wang027f76f2012-03-26 21:49:07 +0000137 out_be16(&gptmr->pre, CONFIG_WATCHDOG_TIMEOUT);
138 out_be16(&gptmr->cnt, CONFIG_SYS_TIMER_PRESCALER * 1000);
TsiChungLiew8999e6b2008-01-15 13:37:34 -0600139
Alison Wang027f76f2012-03-26 21:49:07 +0000140 out_8(&gptmr->mode, GPT_TMS_SGPIO);
141 out_8(&gptmr->ctrl, GPT_CTRL_CE | GPT_CTRL_WDEN);
TsiChungLiew8999e6b2008-01-15 13:37:34 -0600142 puts("WATCHDOG:enabled\n");
143
144 return (0);
145}
146#endif /* CONFIG_HW_WATCHDOG */
Ben Warrene7edd4e2008-08-26 22:12:36 -0700147
Ben Warren90c96db2008-08-26 22:16:25 -0700148#if defined(CONFIG_FSLDMAFEC) || defined(CONFIG_MCFFEC)
149/* Default initializations for MCFFEC controllers. To override,
150 * create a board-specific function called:
151 * int board_eth_init(bd_t *bis)
152 */
153
Ben Warrene7edd4e2008-08-26 22:12:36 -0700154int cpu_eth_init(bd_t *bis)
155{
Ben Warren90c96db2008-08-26 22:16:25 -0700156#if defined(CONFIG_FSLDMAFEC)
157 mcdmafec_initialize(bis);
158#endif
159#if defined(CONFIG_MCFFEC)
160 mcffec_initialize(bis);
161#endif
162 return 0;
Ben Warrene7edd4e2008-08-26 22:12:36 -0700163}
164#endif