common: Drop net.h from common header
[pandora-u-boot.git] / arch / m68k / cpu / mcf532x / 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-2008, 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         rcm_t *rcm = (rcm_t *) (MMAP_RCM);
26
27         udelay(1000);
28         setbits_8(&rcm->rcr, RCM_RCR_SOFTRST);
29
30         /* we don't return! */
31         return 0;
32 };
33
34 #if defined(CONFIG_DISPLAY_CPUINFO)
35 int print_cpuinfo(void)
36 {
37         ccm_t *ccm = (ccm_t *) MMAP_CCM;
38         u16 msk;
39         u16 id = 0;
40         u8 ver;
41
42         puts("CPU:   ");
43         msk = (in_be16(&ccm->cir) >> 6);
44         ver = (in_be16(&ccm->cir) & 0x003f);
45         switch (msk) {
46 #ifdef CONFIG_MCF5301x
47         case 0x78:
48                 id = 53010;
49                 break;
50         case 0x77:
51                 id = 53012;
52                 break;
53         case 0x76:
54                 id = 53015;
55                 break;
56         case 0x74:
57                 id = 53011;
58                 break;
59         case 0x73:
60                 id = 53013;
61                 break;
62 #endif
63 #ifdef CONFIG_MCF532x
64         case 0x54:
65                 id = 5329;
66                 break;
67         case 0x59:
68                 id = 5328;
69                 break;
70         case 0x61:
71                 id = 5327;
72                 break;
73         case 0x65:
74                 id = 5373;
75                 break;
76         case 0x68:
77                 id = 53721;
78                 break;
79         case 0x69:
80                 id = 5372;
81                 break;
82         case 0x6B:
83                 id = 5372;
84                 break;
85 #endif
86         }
87
88         if (id) {
89                 char buf1[32], buf2[32];
90
91                 printf("Freescale MCF%d (Mask:%01x Version:%x)\n", id, msk,
92                        ver);
93                 printf("       CPU CLK %s MHz BUS CLK %s MHz\n",
94                        strmhz(buf1, gd->cpu_clk),
95                        strmhz(buf2, gd->bus_clk));
96         }
97
98         return 0;
99 };
100 #endif /* CONFIG_DISPLAY_CPUINFO */
101
102 #if defined(CONFIG_WATCHDOG)
103 /* Called by macro WATCHDOG_RESET */
104 void watchdog_reset(void)
105 {
106         wdog_t *wdp = (wdog_t *) (MMAP_WDOG);
107
108         /* Count register */
109         out_be16(&wdp->sr, 0x5555);
110         out_be16(&wdp->sr, 0xaaaa);
111 }
112
113 int watchdog_disable(void)
114 {
115         wdog_t *wdp = (wdog_t *) (MMAP_WDOG);
116
117         /* UserManual, once the wdog is disabled, wdog cannot be re-enabled */
118         /* halted watchdog timer */
119         setbits_be16(&wdp->cr, WTM_WCR_HALTED);
120
121         puts("WATCHDOG:disabled\n");
122         return (0);
123 }
124
125 int watchdog_init(void)
126 {
127         wdog_t *wdp = (wdog_t *) (MMAP_WDOG);
128         u32 wdog_module = 0;
129
130         /* set timeout and enable watchdog */
131         wdog_module = ((CONFIG_SYS_CLK / 1000) * CONFIG_WATCHDOG_TIMEOUT);
132 #ifdef CONFIG_M5329
133         out_be16(&wdp->mr, wdog_module / 8192);
134 #else
135         out_be16(&wdp->mr, wdog_module / 4096);
136 #endif
137
138         out_be16(&wdp->cr, WTM_WCR_EN);
139         puts("WATCHDOG:enabled\n");
140
141         return (0);
142 }
143 #endif                          /* CONFIG_WATCHDOG */
144
145 #if defined(CONFIG_MCFFEC)
146 /* Default initializations for MCFFEC controllers.  To override,
147  * create a board-specific function called:
148  *      int board_eth_init(bd_t *bis)
149  */
150 int cpu_eth_init(bd_t *bis)
151 {
152         return mcffec_initialize(bis);
153 }
154 #endif