blob: 8021bc15e390ced5c905bd31d6ee226f806cc71a [file] [log] [blame]
Rafal Jaworowski8993e542007-07-27 14:43:59 +02001/*
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>
Heiko Schocher76756e42009-03-26 07:33:59 +010033#include <net.h>
Ben Warrena0aad082008-08-31 10:36:38 -070034#include <netdev.h>
Rafal Jaworowski8993e542007-07-27 14:43:59 +020035#include <asm/processor.h>
36
Grzegorz Bernacki281ff9a2008-01-08 17:16:15 +010037#if defined(CONFIG_OF_LIBFDT)
38#include <fdt_support.h>
39#endif
40
Rafal Jaworowski8993e542007-07-27 14:43:59 +020041DECLARE_GLOBAL_DATA_PTR;
42
43int checkcpu (void)
44{
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020045 volatile immap_t *immr = (immap_t *) CONFIG_SYS_IMMR;
Rafal Jaworowski8993e542007-07-27 14:43:59 +020046 ulong clock = gd->cpu_clk;
47 u32 pvr = get_pvr ();
48 u32 spridr = immr->sysconf.spridr;
Wolfgang Denk08ef89e2008-10-19 02:35:49 +020049 char buf1[32], buf2[32];
Rafal Jaworowski8993e542007-07-27 14:43:59 +020050
Wolfgang Denk77d19a82007-08-12 21:34:34 +020051 puts ("CPU: ");
Rafal Jaworowski8993e542007-07-27 14:43:59 +020052
53 switch (spridr & 0xffff0000) {
54 case SPR_5121E:
55 puts ("MPC5121e ");
56 break;
57 default:
58 printf ("Unknown part ID %08x ", spridr & 0xffff0000);
59 }
60 printf ("rev. %d.%d, Core ", SVR_MJREV (spridr), SVR_MNREV (spridr));
61
62 switch (pvr & 0xffff0000) {
63 case PVR_E300C4:
64 puts ("e300c4 ");
65 break;
66 default:
67 puts ("unknown ");
68 }
Wolfgang Denk08ef89e2008-10-19 02:35:49 +020069 printf ("at %s MHz, CSB at %s MHz\n",
70 strmhz(buf1, clock),
71 strmhz(buf2, gd->csb_clk) );
Rafal Jaworowski8993e542007-07-27 14:43:59 +020072 return 0;
73}
74
75
76int
77do_reset (cmd_tbl_t * cmdtp, int flag, int argc, char *argv[])
78{
79 ulong msr;
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020080 volatile immap_t *immap = (immap_t *) CONFIG_SYS_IMMR;
Rafal Jaworowski8993e542007-07-27 14:43:59 +020081
82 /* Interrupts and MMU off */
83 __asm__ __volatile__ ("mfmsr %0":"=r" (msr):);
84
85 msr &= ~( MSR_EE | MSR_IR | MSR_DR);
86 __asm__ __volatile__ ("mtmsr %0"::"r" (msr));
87
88 /*
89 * Enable Reset Control Reg - "RSTE" is the magic word that let us go
90 */
91 immap->reset.rpr = 0x52535445;
92
93 /* Verify Reset Control Reg is enabled */
94 while (!((immap->reset.rcer) & RCER_CRE))
95 ;
96
97 printf ("Resetting the board.\n");
98 udelay(200);
99
100 /* Perform reset */
101 immap->reset.rcr = RCR_SWHR;
102
103 /* Unreached... */
104 return 1;
105}
106
107
108/*
109 * Get timebase clock frequency (like cpu_clk in Hz)
110 */
111unsigned long get_tbclk (void)
112{
113 ulong tbclk;
114
115 tbclk = (gd->bus_clk + 3L) / 4L;
116
117 return tbclk;
118}
119
120
121#if defined(CONFIG_WATCHDOG)
122void watchdog_reset (void)
123{
124 int re_enable = disable_interrupts ();
125
126 /* Reset watchdog */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200127 volatile immap_t *immr = (immap_t *) CONFIG_SYS_IMMR;
Rafal Jaworowski8993e542007-07-27 14:43:59 +0200128 immr->wdt.swsrr = 0x556c;
129 immr->wdt.swsrr = 0xaa39;
130
131 if (re_enable)
132 enable_interrupts ();
133}
134#endif
Grzegorz Bernacki281ff9a2008-01-08 17:16:15 +0100135
136#ifdef CONFIG_OF_LIBFDT
John Rigbyef11df62008-08-05 17:38:57 -0600137
138#ifdef CONFIG_OF_SUPPORT_OLD_DEVICE_TREES
139/*
140 * fdt setup for old device trees
141 * fix up
142 * cpu clocks
143 * soc clocks
144 * ethernet addresses
145 */
146static void old_ft_cpu_setup(void *blob, bd_t *bd)
147{
148 /*
149 * avoid fixing up by path because that
150 * produces scary error messages
151 */
Mike Frysinger6bacfa62009-02-11 19:18:41 -0500152 uchar enetaddr[6];
John Rigbyef11df62008-08-05 17:38:57 -0600153
154 /*
155 * old device trees have ethernet nodes with
156 * device_type = "network"
157 */
Mike Frysinger6bacfa62009-02-11 19:18:41 -0500158 eth_getenv_enetaddr("ethaddr", enetaddr);
John Rigbyef11df62008-08-05 17:38:57 -0600159 do_fixup_by_prop(blob, "device_type", "network", 8,
Mike Frysinger6bacfa62009-02-11 19:18:41 -0500160 "local-mac-address", enetaddr, 6, 0);
John Rigbyef11df62008-08-05 17:38:57 -0600161 do_fixup_by_prop(blob, "device_type", "network", 8,
Mike Frysinger6bacfa62009-02-11 19:18:41 -0500162 "address", enetaddr, 6, 0);
John Rigbyef11df62008-08-05 17:38:57 -0600163 /*
164 * old device trees have soc nodes with
165 * device_type = "soc"
166 */
167 do_fixup_by_prop_u32(blob, "device_type", "soc", 4,
168 "bus-frequency", bd->bi_ipsfreq, 0);
169}
170#endif
171
172static void ft_clock_setup(void *blob, bd_t *bd)
173{
John Rigbyef11df62008-08-05 17:38:57 -0600174 char *cpu_path = "/cpus/" OF_CPU;
John Rigbyef11df62008-08-05 17:38:57 -0600175
176 /*
177 * fixup cpu clocks using path
178 */
179 do_fixup_by_path_u32(blob, cpu_path,
180 "timebase-frequency", OF_TBCLK, 1);
181 do_fixup_by_path_u32(blob, cpu_path,
182 "bus-frequency", bd->bi_busfreq, 1);
183 do_fixup_by_path_u32(blob, cpu_path,
184 "clock-frequency", bd->bi_intfreq, 1);
185 /*
186 * fixup soc clocks using compatible
187 */
188 do_fixup_by_compat_u32(blob, OF_SOC_COMPAT,
189 "bus-frequency", bd->bi_ipsfreq, 1);
190}
191
Grzegorz Bernacki281ff9a2008-01-08 17:16:15 +0100192void ft_cpu_setup(void *blob, bd_t *bd)
193{
John Rigbyef11df62008-08-05 17:38:57 -0600194#ifdef CONFIG_OF_SUPPORT_OLD_DEVICE_TREES
195 old_ft_cpu_setup(blob, bd);
196#endif
197 ft_clock_setup(blob, bd);
198#ifdef CONFIG_HAS_ETH0
Kumar Galaba37aa02008-08-19 15:41:18 -0500199 fdt_fixup_ethernet(blob);
John Rigbyef11df62008-08-05 17:38:57 -0600200#endif
Grzegorz Bernacki281ff9a2008-01-08 17:16:15 +0100201}
202#endif
Ben Warrena0aad082008-08-31 10:36:38 -0700203
204#ifdef CONFIG_MPC512x_FEC
205/* Default initializations for FEC controllers. To override,
206 * create a board-specific function called:
207 * int board_eth_init(bd_t *bis)
208 */
209
210int cpu_eth_init(bd_t *bis)
211{
212 return mpc512x_fec_initialize(bis);
213}
214#endif