blob: 225bdc2d2570de56d314f37723fcb376cf7a8a62 [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>
TsiChungLiew4a442d32007-08-16 19:23:50 -050018
19#include <asm/immap.h>
Alison Wangc6d88632012-03-26 21:49:06 +000020#include <asm/io.h>
TsiChungLiew4a442d32007-08-16 19:23:50 -050021
22DECLARE_GLOBAL_DATA_PTR;
23
Mike Frysinger882b7d72010-10-20 03:41:17 -040024int do_reset(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
TsiChungLiew4a442d32007-08-16 19:23:50 -050025{
Alison Wangc6d88632012-03-26 21:49:06 +000026 ccm_t *ccm = (ccm_t *) MMAP_CCM;
TsiChungLiew4a442d32007-08-16 19:23:50 -050027
Alison Wangc6d88632012-03-26 21:49:06 +000028 out_8(&ccm->rcr, CCM_RCR_SOFTRST);
TsiChungLiew4a442d32007-08-16 19:23:50 -050029 /* we don't return! */
30 return 0;
Alison Wangc6d88632012-03-26 21:49:06 +000031}
TsiChungLiew4a442d32007-08-16 19:23:50 -050032
Angelo Dureghellob9153fe32017-08-20 00:01:55 +020033#if defined(CONFIG_DISPLAY_CPUINFO)
34int print_cpuinfo(void)
TsiChungLiew4a442d32007-08-16 19:23:50 -050035{
Alison Wangc6d88632012-03-26 21:49:06 +000036 ccm_t *ccm = (ccm_t *) MMAP_CCM;
TsiChungLiew4a442d32007-08-16 19:23:50 -050037 u16 msk;
38 u16 id = 0;
39 u8 ver;
40
41 puts("CPU: ");
Alison Wangc6d88632012-03-26 21:49:06 +000042 msk = (in_be16(&ccm->cir) >> 6);
43 ver = (in_be16(&ccm->cir) & 0x003f);
TsiChungLiew4a442d32007-08-16 19:23:50 -050044 switch (msk) {
45 case 0x31:
46 id = 5235;
47 break;
48 }
49
50 if (id) {
Wolfgang Denk08ef89e2008-10-19 02:35:49 +020051 char buf1[32], buf2[32];
52
TsiChungLiew4a442d32007-08-16 19:23:50 -050053 printf("Freescale MCF%d (Mask:%01x Version:%x)\n", id, msk,
54 ver);
Wolfgang Denk08ef89e2008-10-19 02:35:49 +020055 printf(" CPU CLK %s MHz BUS CLK %s MHz\n",
TsiChung Liew1b270842008-10-22 11:55:30 +000056 strmhz(buf1, gd->cpu_clk),
57 strmhz(buf2, gd->bus_clk));
TsiChungLiew4a442d32007-08-16 19:23:50 -050058 }
59
60 return 0;
61};
Angelo Dureghellob9153fe32017-08-20 00:01:55 +020062#endif /* CONFIG_DISPLAY_CPUINFO */
TsiChungLiew4a442d32007-08-16 19:23:50 -050063
64#if defined(CONFIG_WATCHDOG)
65/* Called by macro WATCHDOG_RESET */
66void watchdog_reset(void)
67{
Alison Wangc6d88632012-03-26 21:49:06 +000068 wdog_t *wdp = (wdog_t *) (MMAP_WDOG);
TsiChungLiew4a442d32007-08-16 19:23:50 -050069
Alison Wangc6d88632012-03-26 21:49:06 +000070 /* Count register */
71 out_be16(&wdp->sr, 0x5555);
TsiChungLiew4a442d32007-08-16 19:23:50 -050072 asm("nop");
Alison Wangc6d88632012-03-26 21:49:06 +000073 out_be16(&wdp->sr, 0xaaaa);
TsiChungLiew4a442d32007-08-16 19:23:50 -050074}
75
76int watchdog_disable(void)
77{
Alison Wangc6d88632012-03-26 21:49:06 +000078 wdog_t *wdp = (wdog_t *) (MMAP_WDOG);
TsiChungLiew4a442d32007-08-16 19:23:50 -050079
80 /* UserManual, once the wdog is disabled, wdog cannot be re-enabled */
Alison Wangc6d88632012-03-26 21:49:06 +000081 /* halted watchdog timer */
82 setbits_be16(&wdp->cr, WTM_WCR_HALTED);
TsiChungLiew4a442d32007-08-16 19:23:50 -050083
84 puts("WATCHDOG:disabled\n");
85 return (0);
86}
87
88int watchdog_init(void)
89{
Alison Wangc6d88632012-03-26 21:49:06 +000090 wdog_t *wdp = (wdog_t *) (MMAP_WDOG);
TsiChungLiew4a442d32007-08-16 19:23:50 -050091 u32 wdog_module = 0;
92
93 /* set timeout and enable watchdog */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020094 wdog_module = ((CONFIG_SYS_CLK / CONFIG_SYS_HZ) * CONFIG_WATCHDOG_TIMEOUT);
TsiChungLiew4a442d32007-08-16 19:23:50 -050095 wdog_module |= (wdog_module / 8192);
Alison Wangc6d88632012-03-26 21:49:06 +000096 out_be16(&wdp->mr, wdog_module);
TsiChungLiew4a442d32007-08-16 19:23:50 -050097
Alison Wangc6d88632012-03-26 21:49:06 +000098 out_be16(&wdp->cr, WTM_WCR_EN);
TsiChungLiew4a442d32007-08-16 19:23:50 -050099 puts("WATCHDOG:enabled\n");
100
101 return (0);
102}
103#endif /* CONFIG_WATCHDOG */
Ben Warren86882b82008-08-26 22:16:25 -0700104
105#if defined(CONFIG_MCFFEC)
106/* Default initializations for MCFFEC controllers. To override,
107 * create a board-specific function called:
108 * int board_eth_init(bd_t *bis)
109 */
110
Ben Warren86882b82008-08-26 22:16:25 -0700111int cpu_eth_init(bd_t *bis)
112{
113 return mcffec_initialize(bis);
114}
115#endif