blob: a01b5e65a747c91b973d5f30773e131f5c67f98e [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
TsiChung Liew8e585f02007-06-18 13:50:13 -05002/*
3 *
4 * (C) Copyright 2000-2003
5 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
6 *
Alison Wangaa0d99f2012-03-26 21:49:05 +00007 * Copyright (C) 2004-2008, 2012 Freescale Semiconductor, Inc.
TsiChung Liew8e585f02007-06-18 13:50:13 -05008 * TsiChung Liew (Tsi-Chung.Liew@freescale.com)
TsiChung Liew8e585f02007-06-18 13:50:13 -05009 */
10
11#include <common.h>
12#include <watchdog.h>
13#include <command.h>
Ben Warren89973f82008-08-31 22:22:04 -070014#include <netdev.h>
TsiChung Liew8e585f02007-06-18 13:50:13 -050015
TsiChungLiew7a17e752007-07-05 23:01:22 -050016#include <asm/immap.h>
Alison Wangaa0d99f2012-03-26 21:49:05 +000017#include <asm/io.h>
TsiChung Liew8e585f02007-06-18 13:50:13 -050018
Wolfgang Denk1218abf2007-09-15 20:48:41 +020019DECLARE_GLOBAL_DATA_PTR;
20
Mike Frysinger882b7d72010-10-20 03:41:17 -040021int do_reset(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
TsiChung Liew8e585f02007-06-18 13:50:13 -050022{
Alison Wangaa0d99f2012-03-26 21:49:05 +000023 rcm_t *rcm = (rcm_t *) (MMAP_RCM);
TsiChung Liew8e585f02007-06-18 13:50:13 -050024
TsiChung Liew8e585f02007-06-18 13:50:13 -050025 udelay(1000);
Alison Wangaa0d99f2012-03-26 21:49:05 +000026 setbits_8(&rcm->rcr, RCM_RCR_SOFTRST);
TsiChung Liew8e585f02007-06-18 13:50:13 -050027
28 /* we don't return! */
29 return 0;
30};
31
Angelo Dureghellob9153fe32017-08-20 00:01:55 +020032#if defined(CONFIG_DISPLAY_CPUINFO)
33int print_cpuinfo(void)
TsiChung Liew8e585f02007-06-18 13:50:13 -050034{
Alison Wangaa0d99f2012-03-26 21:49:05 +000035 ccm_t *ccm = (ccm_t *) MMAP_CCM;
TsiChung Liew8e585f02007-06-18 13:50:13 -050036 u16 msk;
37 u16 id = 0;
38 u8 ver;
39
40 puts("CPU: ");
Alison Wangaa0d99f2012-03-26 21:49:05 +000041 msk = (in_be16(&ccm->cir) >> 6);
42 ver = (in_be16(&ccm->cir) & 0x003f);
TsiChung Liew8e585f02007-06-18 13:50:13 -050043 switch (msk) {
TsiChung Liew536e7da2008-10-22 11:38:21 +000044#ifdef CONFIG_MCF5301x
45 case 0x78:
46 id = 53010;
47 break;
48 case 0x77:
49 id = 53012;
50 break;
51 case 0x76:
52 id = 53015;
53 break;
54 case 0x74:
55 id = 53011;
56 break;
57 case 0x73:
58 id = 53013;
59 break;
60#endif
61#ifdef CONFIG_MCF532x
TsiChung Liew8e585f02007-06-18 13:50:13 -050062 case 0x54:
63 id = 5329;
64 break;
65 case 0x59:
66 id = 5328;
67 break;
68 case 0x61:
69 id = 5327;
70 break;
TsiChungLiewaa5f1f92008-01-14 17:23:08 -060071 case 0x65:
72 id = 5373;
73 break;
74 case 0x68:
75 id = 53721;
76 break;
77 case 0x69:
78 id = 5372;
79 break;
80 case 0x6B:
81 id = 5372;
82 break;
TsiChung Liew536e7da2008-10-22 11:38:21 +000083#endif
TsiChung Liew8e585f02007-06-18 13:50:13 -050084 }
85
86 if (id) {
Wolfgang Denk08ef89e2008-10-19 02:35:49 +020087 char buf1[32], buf2[32];
88
TsiChung Liew8e585f02007-06-18 13:50:13 -050089 printf("Freescale MCF%d (Mask:%01x Version:%x)\n", id, msk,
90 ver);
Wolfgang Denk08ef89e2008-10-19 02:35:49 +020091 printf(" CPU CLK %s MHz BUS CLK %s MHz\n",
TsiChung Liew1b270842008-10-22 11:55:30 +000092 strmhz(buf1, gd->cpu_clk),
93 strmhz(buf2, gd->bus_clk));
TsiChung Liew8e585f02007-06-18 13:50:13 -050094 }
95
96 return 0;
97};
Angelo Dureghellob9153fe32017-08-20 00:01:55 +020098#endif /* CONFIG_DISPLAY_CPUINFO */
TsiChung Liew8e585f02007-06-18 13:50:13 -050099
100#if defined(CONFIG_WATCHDOG)
101/* Called by macro WATCHDOG_RESET */
102void watchdog_reset(void)
103{
Alison Wangaa0d99f2012-03-26 21:49:05 +0000104 wdog_t *wdp = (wdog_t *) (MMAP_WDOG);
TsiChung Liew8e585f02007-06-18 13:50:13 -0500105
Alison Wangaa0d99f2012-03-26 21:49:05 +0000106 /* Count register */
107 out_be16(&wdp->sr, 0x5555);
108 out_be16(&wdp->sr, 0xaaaa);
TsiChung Liew8e585f02007-06-18 13:50:13 -0500109}
110
111int watchdog_disable(void)
112{
Alison Wangaa0d99f2012-03-26 21:49:05 +0000113 wdog_t *wdp = (wdog_t *) (MMAP_WDOG);
TsiChung Liew8e585f02007-06-18 13:50:13 -0500114
115 /* UserManual, once the wdog is disabled, wdog cannot be re-enabled */
Alison Wangaa0d99f2012-03-26 21:49:05 +0000116 /* halted watchdog timer */
117 setbits_be16(&wdp->cr, WTM_WCR_HALTED);
TsiChung Liew8e585f02007-06-18 13:50:13 -0500118
119 puts("WATCHDOG:disabled\n");
120 return (0);
121}
122
123int watchdog_init(void)
124{
Alison Wangaa0d99f2012-03-26 21:49:05 +0000125 wdog_t *wdp = (wdog_t *) (MMAP_WDOG);
TsiChung Liew8e585f02007-06-18 13:50:13 -0500126 u32 wdog_module = 0;
127
128 /* set timeout and enable watchdog */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200129 wdog_module = ((CONFIG_SYS_CLK / 1000) * CONFIG_WATCHDOG_TIMEOUT);
TsiChungLiewaa5f1f92008-01-14 17:23:08 -0600130#ifdef CONFIG_M5329
Alison Wangaa0d99f2012-03-26 21:49:05 +0000131 out_be16(&wdp->mr, wdog_module / 8192);
TsiChungLiewaa5f1f92008-01-14 17:23:08 -0600132#else
Alison Wangaa0d99f2012-03-26 21:49:05 +0000133 out_be16(&wdp->mr, wdog_module / 4096);
TsiChungLiewaa5f1f92008-01-14 17:23:08 -0600134#endif
TsiChung Liew8e585f02007-06-18 13:50:13 -0500135
Alison Wangaa0d99f2012-03-26 21:49:05 +0000136 out_be16(&wdp->cr, WTM_WCR_EN);
TsiChung Liew8e585f02007-06-18 13:50:13 -0500137 puts("WATCHDOG:enabled\n");
138
139 return (0);
140}
TsiChungLiew7a17e752007-07-05 23:01:22 -0500141#endif /* CONFIG_WATCHDOG */
Ben Warren86882b82008-08-26 22:16:25 -0700142
143#if defined(CONFIG_MCFFEC)
144/* Default initializations for MCFFEC controllers. To override,
145 * create a board-specific function called:
146 * int board_eth_init(bd_t *bis)
147 */
148
Ben Warren86882b82008-08-26 22:16:25 -0700149int cpu_eth_init(bd_t *bis)
150{
151 return mcffec_initialize(bis);
152}
153#endif