]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - cpu/mpc512x/cpu.c
Merge branch 'master' into next
[karo-tx-uboot.git] / cpu / mpc512x / cpu.c
1 /*
2  * Copyright (C) 2004-2006 Freescale Semiconductor, Inc.
3  * (C) Copyright 2007 DENX Software Engineering
4  *
5  * See file CREDITS for list of people who contributed to this
6  * project.
7  *
8  * This program is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU General Public License as
10  * published by the Free Software Foundation; either version 2 of
11  * the License, or (at your option) any later version.
12  *
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  * GNU General Public License for more details.
17  *
18  * You should have received a copy of the GNU General Public License
19  * along with this program; if not, write to the Free Software
20  * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
21  * MA 02111-1307 USA
22  */
23
24 /*
25  * CPU specific code for the MPC512x family.
26  *
27  * Derived from the MPC83xx code.
28  */
29
30 #include <common.h>
31 #include <command.h>
32 #include <mpc512x.h>
33 #include <netdev.h>
34 #include <asm/processor.h>
35
36 #if defined(CONFIG_OF_LIBFDT)
37 #include <fdt_support.h>
38 #endif
39
40 DECLARE_GLOBAL_DATA_PTR;
41
42 int checkcpu (void)
43 {
44         volatile immap_t *immr = (immap_t *) CONFIG_SYS_IMMR;
45         ulong clock = gd->cpu_clk;
46         u32 pvr = get_pvr ();
47         u32 spridr = immr->sysconf.spridr;
48         char buf1[32], buf2[32];
49
50         puts ("CPU:   ");
51
52         switch (spridr & 0xffff0000) {
53         case SPR_5121E:
54                 puts ("MPC5121e ");
55                 break;
56         default:
57                 printf ("Unknown part ID %08x ", spridr & 0xffff0000);
58         }
59         printf ("rev. %d.%d, Core ", SVR_MJREV (spridr), SVR_MNREV (spridr));
60
61         switch (pvr & 0xffff0000) {
62         case PVR_E300C4:
63                 puts ("e300c4 ");
64                 break;
65         default:
66                 puts ("unknown ");
67         }
68         printf ("at %s MHz, CSB at %s MHz\n",
69                 strmhz(buf1, clock),
70                 strmhz(buf2, gd->csb_clk) );
71         return 0;
72 }
73
74
75 int
76 do_reset (cmd_tbl_t * cmdtp, int flag, int argc, char *argv[])
77 {
78         ulong msr;
79         volatile immap_t *immap = (immap_t *) CONFIG_SYS_IMMR;
80
81         /* Interrupts and MMU off */
82         __asm__ __volatile__ ("mfmsr    %0":"=r" (msr):);
83
84         msr &= ~( MSR_EE | MSR_IR | MSR_DR);
85         __asm__ __volatile__ ("mtmsr    %0"::"r" (msr));
86
87         /*
88          * Enable Reset Control Reg - "RSTE" is the magic word that let us go
89          */
90         immap->reset.rpr = 0x52535445;
91
92         /* Verify Reset Control Reg is enabled */
93         while (!((immap->reset.rcer) & RCER_CRE))
94                 ;
95
96         printf ("Resetting the board.\n");
97         udelay(200);
98
99         /* Perform reset */
100         immap->reset.rcr = RCR_SWHR;
101
102         /* Unreached... */
103         return 1;
104 }
105
106
107 /*
108  * Get timebase clock frequency (like cpu_clk in Hz)
109  */
110 unsigned long get_tbclk (void)
111 {
112         ulong tbclk;
113
114         tbclk = (gd->bus_clk + 3L) / 4L;
115
116         return tbclk;
117 }
118
119
120 #if defined(CONFIG_WATCHDOG)
121 void watchdog_reset (void)
122 {
123         int re_enable = disable_interrupts ();
124
125         /* Reset watchdog */
126         volatile immap_t *immr = (immap_t *) CONFIG_SYS_IMMR;
127         immr->wdt.swsrr = 0x556c;
128         immr->wdt.swsrr = 0xaa39;
129
130         if (re_enable)
131                 enable_interrupts ();
132 }
133 #endif
134
135 #ifdef CONFIG_OF_LIBFDT
136
137 #ifdef CONFIG_OF_SUPPORT_OLD_DEVICE_TREES
138 /*
139  * fdt setup for old device trees
140  * fix up
141  *      cpu clocks
142  *      soc clocks
143  *      ethernet addresses
144  */
145 static void old_ft_cpu_setup(void *blob, bd_t *bd)
146 {
147         /*
148          * avoid fixing up by path because that
149          * produces scary error messages
150          */
151
152         /*
153          * old device trees have ethernet nodes with
154          * device_type = "network"
155          */
156         do_fixup_by_prop(blob, "device_type", "network", 8,
157                 "local-mac-address", bd->bi_enetaddr, 6, 0);
158         do_fixup_by_prop(blob, "device_type", "network", 8,
159                 "address", bd->bi_enetaddr, 6, 0);
160         /*
161          * old device trees have soc nodes with
162          * device_type = "soc"
163          */
164         do_fixup_by_prop_u32(blob, "device_type", "soc", 4,
165                 "bus-frequency", bd->bi_ipsfreq, 0);
166 }
167 #endif
168
169 static void ft_clock_setup(void *blob, bd_t *bd)
170 {
171         char *cpu_path = "/cpus/" OF_CPU;
172
173         /*
174          * fixup cpu clocks using path
175          */
176         do_fixup_by_path_u32(blob, cpu_path,
177                 "timebase-frequency", OF_TBCLK, 1);
178         do_fixup_by_path_u32(blob, cpu_path,
179                 "bus-frequency", bd->bi_busfreq, 1);
180         do_fixup_by_path_u32(blob, cpu_path,
181                 "clock-frequency", bd->bi_intfreq, 1);
182         /*
183          * fixup soc clocks using compatible
184          */
185         do_fixup_by_compat_u32(blob, OF_SOC_COMPAT,
186                 "bus-frequency", bd->bi_ipsfreq, 1);
187 }
188
189 void ft_cpu_setup(void *blob, bd_t *bd)
190 {
191 #ifdef CONFIG_OF_SUPPORT_OLD_DEVICE_TREES
192         old_ft_cpu_setup(blob, bd);
193 #endif
194         ft_clock_setup(blob, bd);
195 #ifdef CONFIG_HAS_ETH0
196         fdt_fixup_ethernet(blob);
197 #endif
198 }
199 #endif
200
201 #ifdef CONFIG_MPC512x_FEC
202 /* Default initializations for FEC controllers.  To override,
203  * create a board-specific function called:
204  *      int board_eth_init(bd_t *bis)
205  */
206
207 int cpu_eth_init(bd_t *bis)
208 {
209         return mpc512x_fec_initialize(bis);
210 }
211 #endif