common: Drop net.h from common header
[oweals/u-boot.git] / arch / m68k / cpu / mcf523x / cpu.c
1 // SPDX-License-Identifier: GPL-2.0+
2 /*
3  *
4  * (C) Copyright 2000-2003
5  * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
6  *
7  * Copyright (C) 2004-2007, 2012 Freescale Semiconductor, Inc.
8  * TsiChung Liew (Tsi-Chung.Liew@freescale.com)
9  */
10
11 #include <common.h>
12 #include <net.h>
13 #include <vsprintf.h>
14 #include <watchdog.h>
15 #include <command.h>
16 #include <netdev.h>
17
18 #include <asm/immap.h>
19 #include <asm/io.h>
20
21 DECLARE_GLOBAL_DATA_PTR;
22
23 int do_reset(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
24 {
25         ccm_t *ccm = (ccm_t *) MMAP_CCM;
26
27         out_8(&ccm->rcr, CCM_RCR_SOFTRST);
28         /* we don't return! */
29         return 0;
30 }
31
32 #if defined(CONFIG_DISPLAY_CPUINFO)
33 int print_cpuinfo(void)
34 {
35         ccm_t *ccm = (ccm_t *) MMAP_CCM;
36         u16 msk;
37         u16 id = 0;
38         u8 ver;
39
40         puts("CPU:   ");
41         msk = (in_be16(&ccm->cir) >> 6);
42         ver = (in_be16(&ccm->cir) & 0x003f);
43         switch (msk) {
44         case 0x31:
45                 id = 5235;
46                 break;
47         }
48
49         if (id) {
50                 char buf1[32], buf2[32];
51
52                 printf("Freescale MCF%d (Mask:%01x Version:%x)\n", id, msk,
53                        ver);
54                 printf("       CPU CLK %s MHz BUS CLK %s MHz\n",
55                        strmhz(buf1, gd->cpu_clk),
56                        strmhz(buf2, gd->bus_clk));
57         }
58
59         return 0;
60 };
61 #endif /* CONFIG_DISPLAY_CPUINFO */
62
63 #if defined(CONFIG_WATCHDOG)
64 /* Called by macro WATCHDOG_RESET */
65 void watchdog_reset(void)
66 {
67         wdog_t *wdp = (wdog_t *) (MMAP_WDOG);
68
69         /* Count register */
70         out_be16(&wdp->sr, 0x5555);
71         asm("nop");
72         out_be16(&wdp->sr, 0xaaaa);
73 }
74
75 int watchdog_disable(void)
76 {
77         wdog_t *wdp = (wdog_t *) (MMAP_WDOG);
78
79         /* UserManual, once the wdog is disabled, wdog cannot be re-enabled */
80         /* halted watchdog timer */
81         setbits_be16(&wdp->cr, WTM_WCR_HALTED);
82
83         puts("WATCHDOG:disabled\n");
84         return (0);
85 }
86
87 int watchdog_init(void)
88 {
89         wdog_t *wdp = (wdog_t *) (MMAP_WDOG);
90         u32 wdog_module = 0;
91
92         /* set timeout and enable watchdog */
93         wdog_module = ((CONFIG_SYS_CLK / CONFIG_SYS_HZ) * CONFIG_WATCHDOG_TIMEOUT);
94         wdog_module |= (wdog_module / 8192);
95         out_be16(&wdp->mr, wdog_module);
96
97         out_be16(&wdp->cr, WTM_WCR_EN);
98         puts("WATCHDOG:enabled\n");
99
100         return (0);
101 }
102 #endif                          /* CONFIG_WATCHDOG */
103
104 #if defined(CONFIG_MCFFEC)
105 /* Default initializations for MCFFEC controllers.  To override,
106  * create a board-specific function called:
107  *      int board_eth_init(bd_t *bis)
108  */
109
110 int cpu_eth_init(bd_t *bis)
111 {
112         return mcffec_initialize(bis);
113 }
114 #endif