blob: e44656db5f23f3ac79baa99561ebbcbbb9af536d [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>
Simon Glass97589732020-05-10 11:40:02 -060012#include <init.h>
Simon Glass274e0b02020-05-10 11:39:56 -060013#include <net.h>
Simon Glassf5c208d2019-11-14 12:57:20 -070014#include <vsprintf.h>
TsiChungLiewb859ef12007-08-16 19:23:50 -050015#include <watchdog.h>
16#include <command.h>
Ben Warren2f2b6b62008-08-31 22:22:04 -070017#include <netdev.h>
Simon Glass3ba929a2020-10-30 21:38:53 -060018#include <asm/global_data.h>
TsiChungLiewb859ef12007-08-16 19:23:50 -050019
20#include <asm/immap.h>
Alison Wangd132fe62012-03-26 21:49:06 +000021#include <asm/io.h>
TsiChungLiewb859ef12007-08-16 19:23:50 -050022
23DECLARE_GLOBAL_DATA_PTR;
24
Simon Glassed38aef2020-05-10 11:40:03 -060025int do_reset(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
TsiChungLiewb859ef12007-08-16 19:23:50 -050026{
Alison Wangd132fe62012-03-26 21:49:06 +000027 ccm_t *ccm = (ccm_t *) MMAP_CCM;
TsiChungLiewb859ef12007-08-16 19:23:50 -050028
Alison Wangd132fe62012-03-26 21:49:06 +000029 out_8(&ccm->rcr, CCM_RCR_SOFTRST);
TsiChungLiewb859ef12007-08-16 19:23:50 -050030 /* we don't return! */
31 return 0;
Alison Wangd132fe62012-03-26 21:49:06 +000032}
TsiChungLiewb859ef12007-08-16 19:23:50 -050033
Angelo Dureghello3146b4d2017-08-20 00:01:55 +020034#if defined(CONFIG_DISPLAY_CPUINFO)
35int print_cpuinfo(void)
TsiChungLiewb859ef12007-08-16 19:23:50 -050036{
Alison Wangd132fe62012-03-26 21:49:06 +000037 ccm_t *ccm = (ccm_t *) MMAP_CCM;
TsiChungLiewb859ef12007-08-16 19:23:50 -050038 u16 msk;
39 u16 id = 0;
40 u8 ver;
41
42 puts("CPU: ");
Alison Wangd132fe62012-03-26 21:49:06 +000043 msk = (in_be16(&ccm->cir) >> 6);
44 ver = (in_be16(&ccm->cir) & 0x003f);
TsiChungLiewb859ef12007-08-16 19:23:50 -050045 switch (msk) {
46 case 0x31:
47 id = 5235;
48 break;
49 }
50
51 if (id) {
Wolfgang Denk20591042008-10-19 02:35:49 +020052 char buf1[32], buf2[32];
53
TsiChungLiewb859ef12007-08-16 19:23:50 -050054 printf("Freescale MCF%d (Mask:%01x Version:%x)\n", id, msk,
55 ver);
Wolfgang Denk20591042008-10-19 02:35:49 +020056 printf(" CPU CLK %s MHz BUS CLK %s MHz\n",
TsiChung Liew10e9a6e2008-10-22 11:55:30 +000057 strmhz(buf1, gd->cpu_clk),
58 strmhz(buf2, gd->bus_clk));
TsiChungLiewb859ef12007-08-16 19:23:50 -050059 }
60
61 return 0;
62};
Angelo Dureghello3146b4d2017-08-20 00:01:55 +020063#endif /* CONFIG_DISPLAY_CPUINFO */
TsiChungLiewb859ef12007-08-16 19:23:50 -050064
65#if defined(CONFIG_WATCHDOG)
66/* Called by macro WATCHDOG_RESET */
67void watchdog_reset(void)
68{
Alison Wangd132fe62012-03-26 21:49:06 +000069 wdog_t *wdp = (wdog_t *) (MMAP_WDOG);
TsiChungLiewb859ef12007-08-16 19:23:50 -050070
Alison Wangd132fe62012-03-26 21:49:06 +000071 /* Count register */
72 out_be16(&wdp->sr, 0x5555);
TsiChungLiewb859ef12007-08-16 19:23:50 -050073 asm("nop");
Alison Wangd132fe62012-03-26 21:49:06 +000074 out_be16(&wdp->sr, 0xaaaa);
TsiChungLiewb859ef12007-08-16 19:23:50 -050075}
76
77int watchdog_disable(void)
78{
Alison Wangd132fe62012-03-26 21:49:06 +000079 wdog_t *wdp = (wdog_t *) (MMAP_WDOG);
TsiChungLiewb859ef12007-08-16 19:23:50 -050080
81 /* UserManual, once the wdog is disabled, wdog cannot be re-enabled */
Alison Wangd132fe62012-03-26 21:49:06 +000082 /* halted watchdog timer */
83 setbits_be16(&wdp->cr, WTM_WCR_HALTED);
TsiChungLiewb859ef12007-08-16 19:23:50 -050084
85 puts("WATCHDOG:disabled\n");
86 return (0);
87}
88
89int watchdog_init(void)
90{
Alison Wangd132fe62012-03-26 21:49:06 +000091 wdog_t *wdp = (wdog_t *) (MMAP_WDOG);
TsiChungLiewb859ef12007-08-16 19:23:50 -050092 u32 wdog_module = 0;
93
94 /* set timeout and enable watchdog */
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020095 wdog_module = ((CONFIG_SYS_CLK / CONFIG_SYS_HZ) * CONFIG_WATCHDOG_TIMEOUT);
TsiChungLiewb859ef12007-08-16 19:23:50 -050096 wdog_module |= (wdog_module / 8192);
Alison Wangd132fe62012-03-26 21:49:06 +000097 out_be16(&wdp->mr, wdog_module);
TsiChungLiewb859ef12007-08-16 19:23:50 -050098
Alison Wangd132fe62012-03-26 21:49:06 +000099 out_be16(&wdp->cr, WTM_WCR_EN);
TsiChungLiewb859ef12007-08-16 19:23:50 -0500100 puts("WATCHDOG:enabled\n");
101
102 return (0);
103}
104#endif /* CONFIG_WATCHDOG */
Ben Warren90c96db2008-08-26 22:16:25 -0700105
106#if defined(CONFIG_MCFFEC)
107/* Default initializations for MCFFEC controllers. To override,
108 * create a board-specific function called:
Wolfgang Denk62fb2b42021-09-27 17:42:39 +0200109 * int board_eth_init(struct bd_info *bis)
Ben Warren90c96db2008-08-26 22:16:25 -0700110 */
111
Masahiro Yamadaf7ed78b2020-06-26 15:13:33 +0900112int cpu_eth_init(struct bd_info *bis)
Ben Warren90c96db2008-08-26 22:16:25 -0700113{
114 return mcffec_initialize(bis);
115}
116#endif