]> git.ipfire.org Git - people/ms/u-boot.git/blame - cpu/mpc8xx/cpu_init.c
* Patch by Martin Krause, 17 Jul 2003:
[people/ms/u-boot.git] / cpu / mpc8xx / cpu_init.c
CommitLineData
4a9cbbe8
WD
1/*
2 * (C) Copyright 2000-2002
3 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
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#include <common.h>
25#include <watchdog.h>
26
27#include <mpc8xx.h>
28#include <commproc.h>
29
30#if defined(CFG_I2C_UCODE_PATCH) || defined(CFG_SPI_UCODE_PATCH)
31void cpm_load_patch (volatile immap_t * immr);
32#endif
33
34/*
35 * Breath some life into the CPU...
36 *
37 * Set up the memory map,
38 * initialize a bunch of registers,
39 * initialize the UPM's
40 */
41void cpu_init_f (volatile immap_t * immr)
42{
43#ifndef CONFIG_MBX
44 volatile memctl8xx_t *memctl = &immr->im_memctl;
4a9cbbe8 45#endif
3bac3513 46 ulong reg;
4a9cbbe8
WD
47
48 /* SYPCR - contains watchdog control (11-9) */
49
50 immr->im_siu_conf.sc_sypcr = CFG_SYPCR;
51
52#if defined(CONFIG_WATCHDOG)
53 reset_8xx_watchdog (immr);
54#endif /* CONFIG_WATCHDOG */
55
56 /* SIUMCR - contains debug pin configuration (11-6) */
dc7c9a1a 57#ifndef CONFIG_SVM_SC8xx
4a9cbbe8 58 immr->im_siu_conf.sc_siumcr |= CFG_SIUMCR;
dc7c9a1a
WD
59#else
60 immr->im_siu_conf.sc_siumcr = CFG_SIUMCR;
61#endif
4a9cbbe8
WD
62 /* initialize timebase status and control register (11-26) */
63 /* unlock TBSCRK */
64
65 immr->im_sitk.sitk_tbscrk = KAPWR_KEY;
66 immr->im_sit.sit_tbscr = CFG_TBSCR;
67
68 /* initialize the PIT (11-31) */
69
70 immr->im_sitk.sitk_piscrk = KAPWR_KEY;
71 immr->im_sit.sit_piscr = CFG_PISCR;
72
1cb8e980
WD
73 /* System integration timers. Don't change EBDF! (15-27) */
74
75 immr->im_clkrstk.cark_sccrk = KAPWR_KEY;
76 reg = immr->im_clkrst.car_sccr;
77 reg &= SCCR_MASK;
78 reg |= CFG_SCCR;
79 immr->im_clkrst.car_sccr = reg;
80
4a9cbbe8
WD
81 /* PLL (CPU clock) settings (15-30) */
82
83 immr->im_clkrstk.cark_plprcrk = KAPWR_KEY;
84
85#ifndef CONFIG_MBX /* MBX board does things different */
86
87 /* If CFG_PLPRCR (set in the various *_config.h files) tries to
88 * set the MF field, then just copy CFG_PLPRCR over car_plprcr,
89 * otherwise OR in CFG_PLPRCR so we do not change the currentMF
90 * field value.
91 */
92#if ((CFG_PLPRCR & PLPRCR_MF_MSK) != 0)
93 reg = CFG_PLPRCR; /* reset control bits */
94#else
95 reg = immr->im_clkrst.car_plprcr;
96 reg &= PLPRCR_MF_MSK; /* isolate MF field */
97 reg |= CFG_PLPRCR; /* reset control bits */
98#endif
99 immr->im_clkrst.car_plprcr = reg;
100
4a9cbbe8
WD
101 /*
102 * Memory Controller:
103 */
104
105 /* perform BR0 reset that MPC850 Rev. A can't guarantee */
106 reg = memctl->memc_br0;
107 reg &= BR_PS_MSK; /* Clear everything except Port Size bits */
108 reg |= BR_V; /* then add just the "Bank Valid" bit */
109 memctl->memc_br0 = reg;
110
111 /* Map banks 0 (and maybe 1) to the FLASH banks 0 (and 1) at
112 * preliminary addresses - these have to be modified later
113 * when FLASH size has been determined
114 *
115 * Depending on the size of the memory region defined by
116 * CFG_OR0_REMAP some boards (wide address mask) allow to map the
117 * CFG_MONITOR_BASE, while others (narrower address mask) can't
118 * map CFG_MONITOR_BASE.
119 *
120 * For example, for CONFIG_IVMS8, the CFG_MONITOR_BASE is
121 * 0xff000000, but CFG_OR0_REMAP's address mask is 0xfff80000.
122 *
123 * If BR0 wasn't loaded with address base 0xff000000, then BR0's
124 * base address remains as 0x00000000. However, the address mask
125 * have been narrowed to 512Kb, so CFG_MONITOR_BASE wasn't mapped
126 * into the Bank0.
127 *
128 * This is why CONFIG_IVMS8 and similar boards must load BR0 with
129 * CFG_BR0_PRELIM in advance.
130 *
131 * [Thanks to Michael Liao for this explanation.
132 * I owe him a free beer. - wd]
133 */
134
135#if defined(CONFIG_GTH) || \
136 defined(CONFIG_HERMES) || \
137 defined(CONFIG_ICU862) || \
138 defined(CONFIG_IP860) || \
139 defined(CONFIG_IVML24) || \
140 defined(CONFIG_IVMS8) || \
141 defined(CONFIG_LWMON) || \
142 defined(CONFIG_MHPC) || \
143 defined(CONFIG_PCU_E) || \
144 defined(CONFIG_R360MPI) || \
145 defined(CONFIG_RPXCLASSIC) || \
146 defined(CONFIG_RPXLITE) || \
147 defined(CONFIG_SPD823TS) || \
2535d602 148 defined(CONFIG_MPC86xADS) || \
4a9cbbe8
WD
149 (defined(CONFIG_MPC860T) && defined(CONFIG_FADS))
150
151 memctl->memc_br0 = CFG_BR0_PRELIM;
152#endif
153
154#if defined(CFG_OR0_REMAP)
155 memctl->memc_or0 = CFG_OR0_REMAP;
156#endif
157#if defined(CFG_OR1_REMAP)
158 memctl->memc_or1 = CFG_OR1_REMAP;
159#endif
160#if defined(CFG_OR5_REMAP)
161 memctl->memc_or5 = CFG_OR5_REMAP;
162#endif
163
164 /* now restrict to preliminary range */
165 memctl->memc_br0 = CFG_BR0_PRELIM;
166 memctl->memc_or0 = CFG_OR0_PRELIM;
167
168#if (defined(CFG_OR1_PRELIM) && defined(CFG_BR1_PRELIM))
169 memctl->memc_or1 = CFG_OR1_PRELIM;
170 memctl->memc_br1 = CFG_BR1_PRELIM;
171#endif
172
173#if defined(CONFIG_IP860) /* disable CS0 now that Flash is mapped on CS1 */
174 memctl->memc_br0 = 0;
175#endif
176
177#if defined(CFG_OR2_PRELIM) && defined(CFG_BR2_PRELIM)
178 memctl->memc_or2 = CFG_OR2_PRELIM;
179 memctl->memc_br2 = CFG_BR2_PRELIM;
180#endif
181
182#if defined(CFG_OR3_PRELIM) && defined(CFG_BR3_PRELIM)
183 memctl->memc_or3 = CFG_OR3_PRELIM;
184 memctl->memc_br3 = CFG_BR3_PRELIM;
185#endif
186
187#if defined(CFG_OR4_PRELIM) && defined(CFG_BR4_PRELIM)
188 memctl->memc_or4 = CFG_OR4_PRELIM;
189 memctl->memc_br4 = CFG_BR4_PRELIM;
190#endif
191
192#if defined(CFG_OR5_PRELIM) && defined(CFG_BR5_PRELIM)
193 memctl->memc_or5 = CFG_OR5_PRELIM;
194 memctl->memc_br5 = CFG_BR5_PRELIM;
195#endif
196
197#if defined(CFG_OR6_PRELIM) && defined(CFG_BR6_PRELIM)
198 memctl->memc_or6 = CFG_OR6_PRELIM;
199 memctl->memc_br6 = CFG_BR6_PRELIM;
200#endif
201
202#if defined(CFG_OR7_PRELIM) && defined(CFG_BR7_PRELIM)
203 memctl->memc_or7 = CFG_OR7_PRELIM;
204 memctl->memc_br7 = CFG_BR7_PRELIM;
205#endif
206
207#endif /* ! CONFIG_MBX */
208
209 /*
210 * Reset CPM
211 */
212 immr->im_cpm.cp_cpcr = CPM_CR_RST | CPM_CR_FLG;
213 do { /* Spin until command processed */
214 __asm__ ("eieio");
215 } while (immr->im_cpm.cp_cpcr & CPM_CR_FLG);
216
217#ifdef CONFIG_MBX
218 /*
219 * on the MBX, things are a little bit different:
220 * - we need to read the VPD to get board information
221 * - the plprcr is set up dynamically
222 * - the memory controller is set up dynamically
223 */
224 mbx_init ();
225#endif /* CONFIG_MBX */
226
227#ifdef CONFIG_RPXCLASSIC
228 rpxclassic_init ();
229#endif
230
231#ifdef CFG_RCCR /* must be done before cpm_load_patch() */
232 /* write config value */
233 immr->im_cpm.cp_rccr = CFG_RCCR;
234#endif
235
236#if defined(CFG_I2C_UCODE_PATCH) || defined(CFG_SPI_UCODE_PATCH)
237 cpm_load_patch (immr); /* load mpc8xx microcode patch */
238#endif
239}
240
241/*
242 * initialize higher level parts of CPU like timers
243 */
244int cpu_init_r (void)
245{
246#if defined(CFG_RTCSC) || defined(CFG_RMDS)
247 DECLARE_GLOBAL_DATA_PTR;
248
249 bd_t *bd = gd->bd;
250 volatile immap_t *immr = (volatile immap_t *) (bd->bi_immr_base);
251#endif
252
253#ifdef CFG_RTCSC
254 /* Unlock RTSC register */
255 immr->im_sitk.sitk_rtcsck = KAPWR_KEY;
256 /* write config value */
257 immr->im_sit.sit_rtcsc = CFG_RTCSC;
258#endif
259
260#ifdef CFG_RMDS
261 /* write config value */
262 immr->im_cpm.cp_rmds = CFG_RMDS;
263#endif
264 return (0);
265}