blob: ba2c2289119a004ca5c3a8322929534abc22d775 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
TsiChungLiew4a442d32007-08-16 19:23:50 -05002/*
3 *
4 * (C) Copyright 2000-2003
5 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
6 *
Alison Wangc6d88632012-03-26 21:49:06 +00007 * Copyright (C) 2004-2007, 2012 Freescale Semiconductor, Inc.
TsiChungLiew4a442d32007-08-16 19:23:50 -05008 * TsiChung Liew (Tsi-Chung.Liew@freescale.com)
TsiChungLiew4a442d32007-08-16 19:23:50 -05009 */
10
11#include <common.h>
Simon Glass691d7192020-05-10 11:40:02 -060012#include <init.h>
Simon Glass90526e92020-05-10 11:39:56 -060013#include <net.h>
Simon Glass2189d5f2019-11-14 12:57:20 -070014#include <vsprintf.h>
TsiChungLiew4a442d32007-08-16 19:23:50 -050015#include <watchdog.h>
16#include <command.h>
Ben Warren89973f82008-08-31 22:22:04 -070017#include <netdev.h>
Simon Glass401d1c42020-10-30 21:38:53 -060018#include <asm/global_data.h>
TsiChungLiew4a442d32007-08-16 19:23:50 -050019
20#include <asm/immap.h>
Alison Wangc6d88632012-03-26 21:49:06 +000021#include <asm/io.h>
TsiChungLiew4a442d32007-08-16 19:23:50 -050022
23DECLARE_GLOBAL_DATA_PTR;
24
Simon Glass09140112020-05-10 11:40:03 -060025int do_reset(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
TsiChungLiew4a442d32007-08-16 19:23:50 -050026{
Alison Wangc6d88632012-03-26 21:49:06 +000027 ccm_t *ccm = (ccm_t *) MMAP_CCM;
TsiChungLiew4a442d32007-08-16 19:23:50 -050028
Alison Wangc6d88632012-03-26 21:49:06 +000029 out_8(&ccm->rcr, CCM_RCR_SOFTRST);
TsiChungLiew4a442d32007-08-16 19:23:50 -050030 /* we don't return! */
31 return 0;
Alison Wangc6d88632012-03-26 21:49:06 +000032}
TsiChungLiew4a442d32007-08-16 19:23:50 -050033
Angelo Dureghellob9153fe32017-08-20 00:01:55 +020034#if defined(CONFIG_DISPLAY_CPUINFO)
35int print_cpuinfo(void)
TsiChungLiew4a442d32007-08-16 19:23:50 -050036{
Alison Wangc6d88632012-03-26 21:49:06 +000037 ccm_t *ccm = (ccm_t *) MMAP_CCM;
TsiChungLiew4a442d32007-08-16 19:23:50 -050038 u16 msk;
39 u16 id = 0;
40 u8 ver;
41
42 puts("CPU: ");
Alison Wangc6d88632012-03-26 21:49:06 +000043 msk = (in_be16(&ccm->cir) >> 6);
44 ver = (in_be16(&ccm->cir) & 0x003f);
TsiChungLiew4a442d32007-08-16 19:23:50 -050045 switch (msk) {
46 case 0x31:
47 id = 5235;
48 break;
49 }
50
51 if (id) {
Wolfgang Denk08ef89e2008-10-19 02:35:49 +020052 char buf1[32], buf2[32];
53
TsiChungLiew4a442d32007-08-16 19:23:50 -050054 printf("Freescale MCF%d (Mask:%01x Version:%x)\n", id, msk,
55 ver);
Wolfgang Denk08ef89e2008-10-19 02:35:49 +020056 printf(" CPU CLK %s MHz BUS CLK %s MHz\n",
TsiChung Liew1b270842008-10-22 11:55:30 +000057 strmhz(buf1, gd->cpu_clk),
58 strmhz(buf2, gd->bus_clk));
TsiChungLiew4a442d32007-08-16 19:23:50 -050059 }
60
61 return 0;
62};
Angelo Dureghellob9153fe32017-08-20 00:01:55 +020063#endif /* CONFIG_DISPLAY_CPUINFO */
TsiChungLiew4a442d32007-08-16 19:23:50 -050064
65#if defined(CONFIG_WATCHDOG)
66/* Called by macro WATCHDOG_RESET */
67void watchdog_reset(void)
68{
Alison Wangc6d88632012-03-26 21:49:06 +000069 wdog_t *wdp = (wdog_t *) (MMAP_WDOG);
TsiChungLiew4a442d32007-08-16 19:23:50 -050070
Alison Wangc6d88632012-03-26 21:49:06 +000071 /* Count register */
72 out_be16(&wdp->sr, 0x5555);
TsiChungLiew4a442d32007-08-16 19:23:50 -050073 asm("nop");
Alison Wangc6d88632012-03-26 21:49:06 +000074 out_be16(&wdp->sr, 0xaaaa);
TsiChungLiew4a442d32007-08-16 19:23:50 -050075}
76
77int watchdog_disable(void)
78{
Alison Wangc6d88632012-03-26 21:49:06 +000079 wdog_t *wdp = (wdog_t *) (MMAP_WDOG);
TsiChungLiew4a442d32007-08-16 19:23:50 -050080
81 /* UserManual, once the wdog is disabled, wdog cannot be re-enabled */
Alison Wangc6d88632012-03-26 21:49:06 +000082 /* halted watchdog timer */
83 setbits_be16(&wdp->cr, WTM_WCR_HALTED);
TsiChungLiew4a442d32007-08-16 19:23:50 -050084
85 puts("WATCHDOG:disabled\n");
86 return (0);
87}
88
89int watchdog_init(void)
90{
Alison Wangc6d88632012-03-26 21:49:06 +000091 wdog_t *wdp = (wdog_t *) (MMAP_WDOG);
TsiChungLiew4a442d32007-08-16 19:23:50 -050092 u32 wdog_module = 0;
93
94 /* set timeout and enable watchdog */
Tom Rini7102d322022-11-19 18:45:45 -050095 wdog_module = ((CFG_SYS_CLK / CONFIG_SYS_HZ) * CONFIG_WATCHDOG_TIMEOUT_MSECS);
TsiChungLiew4a442d32007-08-16 19:23:50 -050096 wdog_module |= (wdog_module / 8192);
Alison Wangc6d88632012-03-26 21:49:06 +000097 out_be16(&wdp->mr, wdog_module);
TsiChungLiew4a442d32007-08-16 19:23:50 -050098
Alison Wangc6d88632012-03-26 21:49:06 +000099 out_be16(&wdp->cr, WTM_WCR_EN);
TsiChungLiew4a442d32007-08-16 19:23:50 -0500100 puts("WATCHDOG:enabled\n");
101
102 return (0);
103}
104#endif /* CONFIG_WATCHDOG */
Ben Warren86882b82008-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 Denk0cf207e2021-09-27 17:42:39 +0200109 * int board_eth_init(struct bd_info *bis)
Ben Warren86882b82008-08-26 22:16:25 -0700110 */
111
Masahiro Yamadab75d8dc2020-06-26 15:13:33 +0900112int cpu_eth_init(struct bd_info *bis)
Ben Warren86882b82008-08-26 22:16:25 -0700113{
114 return mcffec_initialize(bis);
115}
116#endif