1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27#include <common.h>
28#include <asm/io.h>
29#include <asm/mpc512x.h>
30#include <asm/processor.h>
31
32DECLARE_GLOBAL_DATA_PTR;
33
34
35
36
37void cpu_init_f (volatile immap_t * im)
38{
39 u32 ips_div;
40
41
42 gd = (gd_t *) (CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_GBL_DATA_OFFSET);
43
44
45 memset ((void *) gd, 0, sizeof (gd_t));
46
47
48#if defined(CONFIG_SYS_CS0_START) && defined(CONFIG_SYS_CS0_SIZE)
49 out_be32(&im->sysconf.lpcs0aw,
50 CSAW_START(CONFIG_SYS_CS0_START) |
51 CSAW_STOP(CONFIG_SYS_CS0_START, CONFIG_SYS_CS0_SIZE));
52 sync_law(&im->sysconf.lpcs0aw);
53#endif
54#if defined(CONFIG_SYS_CS0_CFG)
55 out_be32(&im->lpc.cs_cfg[0], CONFIG_SYS_CS0_CFG);
56#endif
57
58#if defined(CONFIG_SYS_CS1_START) && defined(CONFIG_SYS_CS1_SIZE)
59 out_be32(&im->sysconf.lpcs1aw,
60 CSAW_START(CONFIG_SYS_CS1_START) |
61 CSAW_STOP(CONFIG_SYS_CS1_START, CONFIG_SYS_CS1_SIZE));
62 sync_law(&im->sysconf.lpcs1aw);
63#endif
64#if defined(CONFIG_SYS_CS1_CFG)
65 out_be32(&im->lpc.cs_cfg[1], CONFIG_SYS_CS1_CFG);
66#endif
67
68#if defined(CONFIG_SYS_CS2_START) && (defined CONFIG_SYS_CS2_SIZE)
69 out_be32(&im->sysconf.lpcs2aw,
70 CSAW_START(CONFIG_SYS_CS2_START) |
71 CSAW_STOP(CONFIG_SYS_CS2_START, CONFIG_SYS_CS2_SIZE));
72 sync_law(&im->sysconf.lpcs2aw);
73#endif
74#if defined(CONFIG_SYS_CS2_CFG)
75 out_be32(&im->lpc.cs_cfg[2], CONFIG_SYS_CS2_CFG);
76#endif
77
78#if defined(CONFIG_SYS_CS3_START) && defined(CONFIG_SYS_CS3_SIZE)
79 out_be32(&im->sysconf.lpcs3aw,
80 CSAW_START(CONFIG_SYS_CS3_START) |
81 CSAW_STOP(CONFIG_SYS_CS3_START, CONFIG_SYS_CS3_SIZE));
82 sync_law(&im->sysconf.lpcs3aw);
83#endif
84#if defined(CONFIG_SYS_CS3_CFG)
85 out_be32(&im->lpc.cs_cfg[3], CONFIG_SYS_CS3_CFG);
86#endif
87
88#if defined(CONFIG_SYS_CS4_START) && defined(CONFIG_SYS_CS4_SIZE)
89 out_be32(&im->sysconf.lpcs4aw,
90 CSAW_START(CONFIG_SYS_CS4_START) |
91 CSAW_STOP(CONFIG_SYS_CS4_START, CONFIG_SYS_CS4_SIZE));
92 sync_law(&im->sysconf.lpcs4aw);
93#endif
94#if defined(CONFIG_SYS_CS4_CFG)
95 out_be32(&im->lpc.cs_cfg[4], CONFIG_SYS_CS4_CFG);
96#endif
97
98#if defined(CONFIG_SYS_CS5_START) && defined(CONFIG_SYS_CS5_SIZE)
99 out_be32(&im->sysconf.lpcs5aw,
100 CSAW_START(CONFIG_SYS_CS5_START) |
101 CSAW_STOP(CONFIG_SYS_CS5_START, CONFIG_SYS_CS5_SIZE));
102 sync_law(&im->sysconf.lpcs5aw);
103#endif
104#if defined(CONFIG_SYS_CS5_CFG)
105 out_be32(&im->lpc.cs_cfg[5], CONFIG_SYS_CS5_CFG);
106#endif
107
108#if defined(CONFIG_SYS_CS6_START) && defined(CONFIG_SYS_CS6_SIZE)
109 out_be32(&im->sysconf.lpcs6aw,
110 CSAW_START(CONFIG_SYS_CS6_START) |
111 CSAW_STOP(CONFIG_SYS_CS6_START, CONFIG_SYS_CS6_SIZE));
112 sync_law(&im->sysconf.lpcs6aw);
113#endif
114#if defined(CONFIG_SYS_CS6_CFG)
115 out_be32(&im->lpc.cs_cfg[6], CONFIG_SYS_CS6_CFG);
116#endif
117
118#if defined(CONFIG_SYS_CS7_START) && defined(CONFIG_SYS_CS7_SIZE)
119 out_be32(&im->sysconf.lpcs7aw,
120 CSAW_START(CONFIG_SYS_CS7_START) |
121 CSAW_STOP(CONFIG_SYS_CS7_START, CONFIG_SYS_CS7_SIZE));
122 sync_law(&im->sysconf.lpcs7aw);
123#endif
124#if defined(CONFIG_SYS_CS7_CFG)
125 out_be32(&im->lpc.cs_cfg[7], CONFIG_SYS_CS7_CFG);
126#endif
127
128#if defined CONFIG_SYS_CS_ALETIMING
129 if (SVR_MJREV(in_be32(&im->sysconf.spridr)) >= 2)
130 out_be32(&im->lpc.altr, CONFIG_SYS_CS_ALETIMING);
131#endif
132#if defined CONFIG_SYS_CS_BURST
133 out_be32(&im->lpc.cs_bcr, CONFIG_SYS_CS_BURST);
134#endif
135#if defined CONFIG_SYS_CS_DEADCYCLE
136 out_be32(&im->lpc.cs_dccr, CONFIG_SYS_CS_DEADCYCLE);
137#endif
138#if defined CONFIG_SYS_CS_HOLDCYCLE
139 out_be32(&im->lpc.cs_hccr, CONFIG_SYS_CS_HOLDCYCLE);
140#endif
141
142
143
144#ifdef CONFIG_SYS_ACR_PIPE_DEP
145
146 out_be32(&im->arbiter.acr,
147 (im->arbiter.acr & ~ACR_PIPE_DEP) |
148 (CONFIG_SYS_ACR_PIPE_DEP << ACR_PIPE_DEP_SHIFT)
149 );
150#endif
151
152#ifdef CONFIG_SYS_ACR_RPTCNT
153
154 out_be32(im->arbiter.acr,
155 (im->arbiter.acr & ~(ACR_RPTCNT)) |
156 (CONFIG_SYS_ACR_RPTCNT << ACR_RPTCNT_SHIFT)
157 );
158#endif
159
160
161 gd->arch.reset_status = im->reset.rsr;
162 out_be32(&im->reset.rsr, ~RSR_RES);
163
164
165
166
167 out_be32(&im->reset.rmr, RMR_CSRE & (1 << RMR_CSRE_SHIFT));
168
169
170 ips_div = in_be32(&im->clk.scfr[0]);
171 ips_div &= ~(SCFR1_IPS_DIV_MASK);
172 ips_div |= SCFR1_IPS_DIV << SCFR1_IPS_DIV_SHIFT;
173 out_be32(&im->clk.scfr[0], ips_div);
174
175#ifdef SCFR1_LPC_DIV
176 clrsetbits_be32(&im->clk.scfr[0], SCFR1_LPC_DIV_MASK,
177 SCFR1_LPC_DIV << SCFR1_LPC_DIV_SHIFT);
178#endif
179
180#ifdef SCFR1_NFC_DIV
181 clrsetbits_be32(&im->clk.scfr[0], SCFR1_NFC_DIV_MASK,
182 SCFR1_NFC_DIV << SCFR1_NFC_DIV_SHIFT);
183#endif
184
185#ifdef SCFR1_DIU_DIV
186 clrsetbits_be32(&im->clk.scfr[0], SCFR1_DIU_DIV_MASK,
187 SCFR1_DIU_DIV << SCFR1_DIU_DIV_SHIFT);
188#endif
189
190
191
192
193
194
195
196
197 setbits_be32(&im->sysconf.spcr, SPCR_TBEN);
198
199
200
201
202 out_be32(&im->clk.sccr[0], SCCR1_CLOCKS_EN);
203 out_be32(&im->clk.sccr[1], SCCR2_CLOCKS_EN);
204#if defined(CONFIG_IIM) || defined(CONFIG_CMD_FUSE)
205 setbits_be32(&im->clk.sccr[1], CLOCK_SCCR2_IIM_EN);
206#endif
207}
208
209int cpu_init_r (void)
210{
211 return 0;
212}
213