blob: 79be04f7a0cb79aaaac088013a16919d672b01b2 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
TsiChungLiewb859ef12007-08-16 19:23:50 -05002/*
3 *
4 * (C) Copyright 2000-2003
5 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
6 *
Alison Wangd132fe62012-03-26 21:49:06 +00007 * Copyright (C) 2004-2007, 2012 Freescale Semiconductor, Inc.
TsiChungLiewb859ef12007-08-16 19:23:50 -05008 * TsiChung Liew (Tsi-Chung.Liew@freescale.com)
TsiChungLiewb859ef12007-08-16 19:23:50 -05009 */
10
11#include <common.h>
12#include <watchdog.h>
13#include <command.h>
Ben Warren2f2b6b62008-08-31 22:22:04 -070014#include <netdev.h>
TsiChungLiewb859ef12007-08-16 19:23:50 -050015
16#include <asm/immap.h>
Alison Wangd132fe62012-03-26 21:49:06 +000017#include <asm/io.h>
TsiChungLiewb859ef12007-08-16 19:23:50 -050018
19DECLARE_GLOBAL_DATA_PTR;
20
Mike Frysinger6d1f6982010-10-20 03:41:17 -040021int do_reset(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
TsiChungLiewb859ef12007-08-16 19:23:50 -050022{
Alison Wangd132fe62012-03-26 21:49:06 +000023 ccm_t *ccm = (ccm_t *) MMAP_CCM;
TsiChungLiewb859ef12007-08-16 19:23:50 -050024
Alison Wangd132fe62012-03-26 21:49:06 +000025 out_8(&ccm->rcr, CCM_RCR_SOFTRST);
TsiChungLiewb859ef12007-08-16 19:23:50 -050026 /* we don't return! */
27 return 0;
Alison Wangd132fe62012-03-26 21:49:06 +000028}
TsiChungLiewb859ef12007-08-16 19:23:50 -050029
Angelo Dureghello3146b4d2017-08-20 00:01:55 +020030#if defined(CONFIG_DISPLAY_CPUINFO)
31int print_cpuinfo(void)
TsiChungLiewb859ef12007-08-16 19:23:50 -050032{
Alison Wangd132fe62012-03-26 21:49:06 +000033 ccm_t *ccm = (ccm_t *) MMAP_CCM;
TsiChungLiewb859ef12007-08-16 19:23:50 -050034 u16 msk;
35 u16 id = 0;
36 u8 ver;
37
38 puts("CPU: ");
Alison Wangd132fe62012-03-26 21:49:06 +000039 msk = (in_be16(&ccm->cir) >> 6);
40 ver = (in_be16(&ccm->cir) & 0x003f);
TsiChungLiewb859ef12007-08-16 19:23:50 -050041 switch (msk) {
42 case 0x31:
43 id = 5235;
44 break;
45 }
46
47 if (id) {
Wolfgang Denk20591042008-10-19 02:35:49 +020048 char buf1[32], buf2[32];
49
TsiChungLiewb859ef12007-08-16 19:23:50 -050050 printf("Freescale MCF%d (Mask:%01x Version:%x)\n", id, msk,
51 ver);
Wolfgang Denk20591042008-10-19 02:35:49 +020052 printf(" CPU CLK %s MHz BUS CLK %s MHz\n",
TsiChung Liew10e9a6e2008-10-22 11:55:30 +000053 strmhz(buf1, gd->cpu_clk),
54 strmhz(buf2, gd->bus_clk));
TsiChungLiewb859ef12007-08-16 19:23:50 -050055 }
56
57 return 0;
58};
Angelo Dureghello3146b4d2017-08-20 00:01:55 +020059#endif /* CONFIG_DISPLAY_CPUINFO */
TsiChungLiewb859ef12007-08-16 19:23:50 -050060
61#if defined(CONFIG_WATCHDOG)
62/* Called by macro WATCHDOG_RESET */
63void watchdog_reset(void)
64{
Alison Wangd132fe62012-03-26 21:49:06 +000065 wdog_t *wdp = (wdog_t *) (MMAP_WDOG);
TsiChungLiewb859ef12007-08-16 19:23:50 -050066
Alison Wangd132fe62012-03-26 21:49:06 +000067 /* Count register */
68 out_be16(&wdp->sr, 0x5555);
TsiChungLiewb859ef12007-08-16 19:23:50 -050069 asm("nop");
Alison Wangd132fe62012-03-26 21:49:06 +000070 out_be16(&wdp->sr, 0xaaaa);
TsiChungLiewb859ef12007-08-16 19:23:50 -050071}
72
73int watchdog_disable(void)
74{
Alison Wangd132fe62012-03-26 21:49:06 +000075 wdog_t *wdp = (wdog_t *) (MMAP_WDOG);
TsiChungLiewb859ef12007-08-16 19:23:50 -050076
77 /* UserManual, once the wdog is disabled, wdog cannot be re-enabled */
Alison Wangd132fe62012-03-26 21:49:06 +000078 /* halted watchdog timer */
79 setbits_be16(&wdp->cr, WTM_WCR_HALTED);
TsiChungLiewb859ef12007-08-16 19:23:50 -050080
81 puts("WATCHDOG:disabled\n");
82 return (0);
83}
84
85int watchdog_init(void)
86{
Alison Wangd132fe62012-03-26 21:49:06 +000087 wdog_t *wdp = (wdog_t *) (MMAP_WDOG);
TsiChungLiewb859ef12007-08-16 19:23:50 -050088 u32 wdog_module = 0;
89
90 /* set timeout and enable watchdog */
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020091 wdog_module = ((CONFIG_SYS_CLK / CONFIG_SYS_HZ) * CONFIG_WATCHDOG_TIMEOUT);
TsiChungLiewb859ef12007-08-16 19:23:50 -050092 wdog_module |= (wdog_module / 8192);
Alison Wangd132fe62012-03-26 21:49:06 +000093 out_be16(&wdp->mr, wdog_module);
TsiChungLiewb859ef12007-08-16 19:23:50 -050094
Alison Wangd132fe62012-03-26 21:49:06 +000095 out_be16(&wdp->cr, WTM_WCR_EN);
TsiChungLiewb859ef12007-08-16 19:23:50 -050096 puts("WATCHDOG:enabled\n");
97
98 return (0);
99}
100#endif /* CONFIG_WATCHDOG */
Ben Warren90c96db2008-08-26 22:16:25 -0700101
102#if defined(CONFIG_MCFFEC)
103/* Default initializations for MCFFEC controllers. To override,
104 * create a board-specific function called:
105 * int board_eth_init(bd_t *bis)
106 */
107
Ben Warren90c96db2008-08-26 22:16:25 -0700108int cpu_eth_init(bd_t *bis)
109{
110 return mcffec_initialize(bis);
111}
112#endif