]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - arch/powerpc/cpu/mpc8xx/cpu_init.c
Merge branch 'master' of git://git.denx.de/u-boot-tegra
[karo-tx-uboot.git] / arch / powerpc / cpu / mpc8xx / cpu_init.c
1 /*
2  * (C) Copyright 2000-2002
3  * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4  *
5  * SPDX-License-Identifier:     GPL-2.0+
6  */
7
8 #include <common.h>
9 #include <watchdog.h>
10
11 #include <mpc8xx.h>
12 #include <commproc.h>
13
14 #if defined(CONFIG_SYS_RTCSC) || defined(CONFIG_SYS_RMDS)
15 DECLARE_GLOBAL_DATA_PTR;
16 #endif
17
18 #if defined(CONFIG_SYS_I2C_UCODE_PATCH) || defined(CONFIG_SYS_SPI_UCODE_PATCH) || \
19     defined(CONFIG_SYS_SMC_UCODE_PATCH)
20 void cpm_load_patch (volatile immap_t * immr);
21 #endif
22
23 /*
24  * Breath some life into the CPU...
25  *
26  * Set up the memory map,
27  * initialize a bunch of registers,
28  * initialize the UPM's
29  */
30 void cpu_init_f (volatile immap_t * immr)
31 {
32         volatile memctl8xx_t *memctl = &immr->im_memctl;
33 # ifdef CONFIG_SYS_PLPRCR
34         ulong mfmask;
35 # endif
36         ulong reg;
37
38         /* SYPCR - contains watchdog control (11-9) */
39
40         immr->im_siu_conf.sc_sypcr = CONFIG_SYS_SYPCR;
41
42 #if defined(CONFIG_WATCHDOG)
43         reset_8xx_watchdog (immr);
44 #endif /* CONFIG_WATCHDOG */
45
46         /* SIUMCR - contains debug pin configuration (11-6) */
47         immr->im_siu_conf.sc_siumcr |= CONFIG_SYS_SIUMCR;
48         /* initialize timebase status and control register (11-26) */
49         /* unlock TBSCRK */
50
51         immr->im_sitk.sitk_tbscrk = KAPWR_KEY;
52         immr->im_sit.sit_tbscr = CONFIG_SYS_TBSCR;
53
54         /* initialize the PIT (11-31) */
55
56         immr->im_sitk.sitk_piscrk = KAPWR_KEY;
57         immr->im_sit.sit_piscr = CONFIG_SYS_PISCR;
58
59         /* System integration timers. Don't change EBDF! (15-27) */
60
61         immr->im_clkrstk.cark_sccrk = KAPWR_KEY;
62         reg = immr->im_clkrst.car_sccr;
63         reg &= SCCR_MASK;
64         reg |= CONFIG_SYS_SCCR;
65         immr->im_clkrst.car_sccr = reg;
66
67         /* PLL (CPU clock) settings (15-30) */
68
69         immr->im_clkrstk.cark_plprcrk = KAPWR_KEY;
70
71         /* If CONFIG_SYS_PLPRCR (set in the various *_config.h files) tries to
72          * set the MF field, then just copy CONFIG_SYS_PLPRCR over car_plprcr,
73          * otherwise OR in CONFIG_SYS_PLPRCR so we do not change the current MF
74          * field value.
75          *
76          * For newer (starting MPC866) chips PLPRCR layout is different.
77          */
78 #ifdef CONFIG_SYS_PLPRCR
79         if (get_immr(0xFFFF) >= MPC8xx_NEW_CLK)
80            mfmask = PLPRCR_MFACT_MSK;
81         else
82            mfmask = PLPRCR_MF_MSK;
83
84         if ((CONFIG_SYS_PLPRCR & mfmask) != 0)
85            reg = CONFIG_SYS_PLPRCR;                     /* reset control bits   */
86         else {
87            reg = immr->im_clkrst.car_plprcr;
88            reg &= mfmask;                       /* isolate MF-related fields */
89            reg |= CONFIG_SYS_PLPRCR;                    /* reset control bits   */
90         }
91         immr->im_clkrst.car_plprcr = reg;
92 #endif
93
94         /*
95          * Memory Controller:
96          */
97
98         /* perform BR0 reset that MPC850 Rev. A can't guarantee */
99         reg = memctl->memc_br0;
100         reg &= BR_PS_MSK;       /* Clear everything except Port Size bits */
101         reg |= BR_V;            /* then add just the "Bank Valid" bit     */
102         memctl->memc_br0 = reg;
103
104         /* Map banks 0 (and maybe 1) to the FLASH banks 0 (and 1) at
105          * preliminary addresses - these have to be modified later
106          * when FLASH size has been determined
107          *
108          * Depending on the size of the memory region defined by
109          * CONFIG_SYS_OR0_REMAP some boards (wide address mask) allow to map the
110          * CONFIG_SYS_MONITOR_BASE, while others (narrower address mask) can't
111          * map CONFIG_SYS_MONITOR_BASE.
112          *
113          * For example, for CONFIG_IVMS8, the CONFIG_SYS_MONITOR_BASE is
114          * 0xff000000, but CONFIG_SYS_OR0_REMAP's address mask is 0xfff80000.
115          *
116          * If BR0 wasn't loaded with address base 0xff000000, then BR0's
117          * base address remains as 0x00000000. However, the address mask
118          * have been narrowed to 512Kb, so CONFIG_SYS_MONITOR_BASE wasn't mapped
119          * into the Bank0.
120          *
121          * This is why CONFIG_IVMS8 and similar boards must load BR0 with
122          * CONFIG_SYS_BR0_PRELIM in advance.
123          *
124          * [Thanks to Michael Liao for this explanation.
125          *  I owe him a free beer. - wd]
126          */
127
128 #if defined(CONFIG_HERMES)      || \
129     defined(CONFIG_ICU862)      || \
130     defined(CONFIG_IP860)       || \
131     defined(CONFIG_IVML24)      || \
132     defined(CONFIG_IVMS8)       || \
133     defined(CONFIG_LWMON)       || \
134     defined(CONFIG_MHPC)        || \
135     defined(CONFIG_R360MPI)     || \
136     defined(CONFIG_RMU)         || \
137     defined(CONFIG_SPD823TS)
138
139         memctl->memc_br0 = CONFIG_SYS_BR0_PRELIM;
140 #endif
141
142 #if defined(CONFIG_SYS_OR0_REMAP)
143         memctl->memc_or0 = CONFIG_SYS_OR0_REMAP;
144 #endif
145 #if defined(CONFIG_SYS_OR1_REMAP)
146         memctl->memc_or1 = CONFIG_SYS_OR1_REMAP;
147 #endif
148 #if defined(CONFIG_SYS_OR5_REMAP)
149         memctl->memc_or5 = CONFIG_SYS_OR5_REMAP;
150 #endif
151
152         /* now restrict to preliminary range */
153         memctl->memc_br0 = CONFIG_SYS_BR0_PRELIM;
154         memctl->memc_or0 = CONFIG_SYS_OR0_PRELIM;
155
156 #if (defined(CONFIG_SYS_OR1_PRELIM) && defined(CONFIG_SYS_BR1_PRELIM))
157         memctl->memc_or1 = CONFIG_SYS_OR1_PRELIM;
158         memctl->memc_br1 = CONFIG_SYS_BR1_PRELIM;
159 #endif
160
161 #if defined(CONFIG_IP860) /* disable CS0 now that Flash is mapped on CS1 */
162         memctl->memc_br0 = 0;
163 #endif
164
165 #if defined(CONFIG_SYS_OR2_PRELIM) && defined(CONFIG_SYS_BR2_PRELIM)
166         memctl->memc_or2 = CONFIG_SYS_OR2_PRELIM;
167         memctl->memc_br2 = CONFIG_SYS_BR2_PRELIM;
168 #endif
169
170 #if defined(CONFIG_SYS_OR3_PRELIM) && defined(CONFIG_SYS_BR3_PRELIM)
171         memctl->memc_or3 = CONFIG_SYS_OR3_PRELIM;
172         memctl->memc_br3 = CONFIG_SYS_BR3_PRELIM;
173 #endif
174
175 #if defined(CONFIG_SYS_OR4_PRELIM) && defined(CONFIG_SYS_BR4_PRELIM)
176         memctl->memc_or4 = CONFIG_SYS_OR4_PRELIM;
177         memctl->memc_br4 = CONFIG_SYS_BR4_PRELIM;
178 #endif
179
180 #if defined(CONFIG_SYS_OR5_PRELIM) && defined(CONFIG_SYS_BR5_PRELIM)
181         memctl->memc_or5 = CONFIG_SYS_OR5_PRELIM;
182         memctl->memc_br5 = CONFIG_SYS_BR5_PRELIM;
183 #endif
184
185 #if defined(CONFIG_SYS_OR6_PRELIM) && defined(CONFIG_SYS_BR6_PRELIM)
186         memctl->memc_or6 = CONFIG_SYS_OR6_PRELIM;
187         memctl->memc_br6 = CONFIG_SYS_BR6_PRELIM;
188 #endif
189
190 #if defined(CONFIG_SYS_OR7_PRELIM) && defined(CONFIG_SYS_BR7_PRELIM)
191         memctl->memc_or7 = CONFIG_SYS_OR7_PRELIM;
192         memctl->memc_br7 = CONFIG_SYS_BR7_PRELIM;
193 #endif
194
195         /*
196          * Reset CPM
197          */
198         immr->im_cpm.cp_cpcr = CPM_CR_RST | CPM_CR_FLG;
199         do {                    /* Spin until command processed     */
200                 __asm__ ("eieio");
201         } while (immr->im_cpm.cp_cpcr & CPM_CR_FLG);
202
203 #ifdef CONFIG_SYS_RCCR                  /* must be done before cpm_load_patch() */
204         /* write config value */
205         immr->im_cpm.cp_rccr = CONFIG_SYS_RCCR;
206 #endif
207
208 #if defined(CONFIG_SYS_I2C_UCODE_PATCH) || defined(CONFIG_SYS_SPI_UCODE_PATCH) || \
209     defined(CONFIG_SYS_SMC_UCODE_PATCH)
210         cpm_load_patch (immr);  /* load mpc8xx  microcode patch */
211 #endif
212 }
213
214 /*
215  * initialize higher level parts of CPU like timers
216  */
217 int cpu_init_r (void)
218 {
219 #if defined(CONFIG_SYS_RTCSC) || defined(CONFIG_SYS_RMDS)
220         bd_t *bd = gd->bd;
221         volatile immap_t *immr = (volatile immap_t *) (bd->bi_immr_base);
222 #endif
223
224 #ifdef CONFIG_SYS_RTCSC
225         /* Unlock RTSC register */
226         immr->im_sitk.sitk_rtcsck = KAPWR_KEY;
227         /* write config value */
228         immr->im_sit.sit_rtcsc = CONFIG_SYS_RTCSC;
229 #endif
230
231 #ifdef CONFIG_SYS_RMDS
232         /* write config value */
233         immr->im_cpm.cp_rmds = CONFIG_SYS_RMDS;
234 #endif
235         return (0);
236 }