]> git.karo-electronics.de Git - karo-tx-uboot.git/blob - cpu/mpc83xx/cpu.c
Add sync in do_reset() routine for MPC83xx after RPR register
[karo-tx-uboot.git] / cpu / mpc83xx / cpu.c
1 /*
2  * Copyright 2004 Freescale Semiconductor, Inc.
3  *
4  * See file CREDITS for list of people who contributed to this
5  * project.
6  *
7  * This program is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU General Public License as
9  * published by the Free Software Foundation; either version 2 of
10  * the License, or (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this program; if not, write to the Free Software
19  * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
20  * MA 02111-1307 USA
21  *
22  * Change log:
23  *
24  * 20050101: Eran Liberty (liberty@freescale.com)
25  *           Initial file creating (porting from 85XX & 8260)
26  */
27
28 /*
29  * CPU specific code for the MPC83xx family.
30  *
31  * Derived from the MPC8260 and MPC85xx.
32  */
33
34 #include <common.h>
35 #include <watchdog.h>
36 #include <command.h>
37 #include <mpc83xx.h>
38 #include <ft_build.h>
39 #include <asm/processor.h>
40
41
42 int checkcpu(void)
43 {
44         DECLARE_GLOBAL_DATA_PTR;
45         ulong clock = gd->cpu_clk;
46         u32 pvr = get_pvr();
47         char buf[32];
48
49         if ((pvr & 0xFFFF0000) != PVR_83xx) {
50                 puts("Not MPC83xx Family!!!\n");
51                 return -1;
52         }
53
54         puts("CPU:   MPC83xx, ");
55         switch(pvr) {
56         case PVR_8349_REV10:
57                 break;
58         case PVR_8349_REV11:
59                 break;
60         default:
61                 puts("Rev: Unknown\n");
62                 return -1;      /* Not sure what this is */
63         }
64         printf("Rev: %d.%d at %s MHz\n", (pvr & 0xf0) >> 4,
65                 (pvr & 0x0f), strmhz(buf, clock));
66
67         return 0;
68 }
69
70
71 void upmconfig (uint upm, uint *table, uint size)
72 {
73         hang();         /* FIXME: upconfig() needed? */
74 }
75
76
77 int
78 do_reset (cmd_tbl_t * cmdtp, int flag, int argc, char *argv[])
79 {
80         ulong msr;
81 #ifndef MPC83xx_RESET
82         ulong addr;
83 #endif
84
85         volatile immap_t *immap = (immap_t *) CFG_IMMRBAR;
86
87 #ifdef MPC83xx_RESET
88         /* Interrupts and MMU off */
89         __asm__ __volatile__ ("mfmsr    %0":"=r" (msr):);
90
91         msr &= ~( MSR_EE | MSR_IR | MSR_DR);
92         __asm__ __volatile__ ("mtmsr    %0"::"r" (msr));
93
94         /* enable Reset Control Reg */
95         immap->reset.rpr = 0x52535445;
96         __asm__ __volatile__ ("sync");
97         __asm__ __volatile__ ("isync");
98
99         /* confirm Reset Control Reg is enabled */
100         while(!((immap->reset.rcer) & RCER_CRE));
101
102         printf("Resetting the board.");
103         printf("\n");
104
105         udelay(200);
106
107         /* perform reset, only one bit */
108         immap->reset.rcr = RCR_SWHR;
109
110 #else   /* ! MPC83xx_RESET */
111
112         immap->reset.rmr = RMR_CSRE;    /* Checkstop Reset enable */
113
114         /* Interrupts and MMU off */
115         __asm__ __volatile__ ("mfmsr    %0":"=r" (msr):);
116
117         msr &= ~(MSR_ME | MSR_EE | MSR_IR | MSR_DR);
118         __asm__ __volatile__ ("mtmsr    %0"::"r" (msr));
119
120         /*
121          * Trying to execute the next instruction at a non-existing address
122          * should cause a machine check, resulting in reset
123          */
124         addr = CFG_RESET_ADDRESS;
125
126         printf("resetting the board.");
127         printf("\n");
128         ((void (*)(void)) addr) ();
129 #endif  /* MPC83xx_RESET */
130
131         return 1;
132 }
133
134
135 /*
136  * Get timebase clock frequency (like cpu_clk in Hz)
137  */
138
139 unsigned long get_tbclk(void)
140 {
141         DECLARE_GLOBAL_DATA_PTR;
142
143         ulong tbclk;
144
145         tbclk = (gd->bus_clk + 3L) / 4L;
146
147         return tbclk;
148 }
149
150
151 #if defined(CONFIG_WATCHDOG)
152 void watchdog_reset (void)
153 {
154         hang();         /* FIXME: implement watchdog_reset()? */
155 }
156 #endif /* CONFIG_WATCHDOG */
157
158 #if defined(CONFIG_OF_FLAT_TREE)
159 void
160 ft_cpu_setup(void *blob, bd_t *bd)
161 {
162         u32 *p;
163         int len;
164         ulong clock;
165
166         clock = bd->bi_busfreq;
167         p = ft_get_prop(blob, "/cpus/" OF_CPU "/bus-frequency", &len);
168         if (p != NULL)
169                 *p = cpu_to_be32(clock);
170
171         p = ft_get_prop(blob, "/" OF_SOC "/bus-frequency", &len);
172         if (p != NULL)
173                 *p = cpu_to_be32(clock);
174
175         p = ft_get_prop(blob, "/" OF_SOC "/serial@4500/clock-frequency", &len);
176         if (p != NULL)
177                 *p = cpu_to_be32(clock);
178
179         p = ft_get_prop(blob, "/" OF_SOC "/serial@4600/clock-frequency", &len);
180         if (p != NULL)
181                 *p = cpu_to_be32(clock);
182
183 #ifdef CONFIG_MPC83XX_TSEC1
184         p = ft_get_prop(blob, "/" OF_SOC "/ethernet@24000/address", &len);
185                 memcpy(p, bd->bi_enetaddr, 6);
186 #endif
187
188 #ifdef CONFIG_MPC83XX_TSEC2
189         p = ft_get_prop(blob, "/" OF_SOC "/ethernet@25000/address", &len);
190                 memcpy(p, bd->bi_enet1addr, 6);
191 #endif
192 }
193 #endif