2 * (C) Copyright 2003 Motorola Inc.
3 * Modified by Xianghua Xiao, X.Xiao@motorola.com
6 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
8 * See file CREDITS for list of people who contributed to this
11 * This program is free software; you can redistribute it and/or
12 * modify it under the terms of the GNU General Public License as
13 * published by the Free Software Foundation; either version 2 of
14 * the License, or (at your option) any later version.
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
21 * You should have received a copy of the GNU General Public License
22 * along with this program; if not, write to the Free Software
23 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
29 #include <asm/processor.h>
33 DECLARE_GLOBAL_DATA_PTR;
37 static void config_8560_ioports (volatile immap_t * immr)
41 for (portnum = 0; portnum < 4; portnum++) {
48 iop_conf_t *iopc = (iop_conf_t *) & iop_conf_tab[portnum][0];
49 iop_conf_t *eiopc = iopc + 32;
54 * index 0 refers to pin 31,
55 * index 31 refers to pin 0
57 while (iopc < eiopc) {
77 volatile ioport_t *iop = ioport_addr (immr, portnum);
81 * the (somewhat confused) paragraph at the
82 * bottom of page 35-5 warns that there might
83 * be "unknown behaviour" when programming
84 * PSORx and PDIRx, if PPARx = 1, so I
85 * decided this meant I had to disable the
86 * dedicated function first, and enable it
90 iop->psor = (iop->psor & tpmsk) | psor;
91 iop->podr = (iop->podr & tpmsk) | podr;
92 iop->pdat = (iop->pdat & tpmsk) | pdat;
93 iop->pdir = (iop->pdir & tpmsk) | pdir;
101 * Breathe some life into the CPU...
103 * Set up the memory map
104 * initialize a bunch of registers
107 void cpu_init_f (void)
109 volatile immap_t *immap = (immap_t *)CFG_IMMR;
110 volatile ccsr_lbc_t *memctl = &immap->im_lbc;
111 extern void m8560_cpm_reset (void);
113 /* Pointer is writable since we allocated a register for it */
114 gd = (gd_t *) (CFG_INIT_RAM_ADDR + CFG_GBL_DATA_OFFSET);
116 /* Clear initial global data */
117 memset ((void *) gd, 0, sizeof (gd_t));
121 config_8560_ioports(immap);
124 /* Map banks 0 and 1 to the FLASH banks 0 and 1 at preliminary
125 * addresses - these have to be modified later when FLASH size
126 * has been determined
128 #if defined(CFG_OR0_REMAP)
129 memctl->or0 = CFG_OR0_REMAP;
131 #if defined(CFG_OR1_REMAP)
132 memctl->or1 = CFG_OR1_REMAP;
135 /* now restrict to preliminary range */
136 #if defined(CFG_BR0_PRELIM) && defined(CFG_OR0_PRELIM)
137 memctl->br0 = CFG_BR0_PRELIM;
138 memctl->or0 = CFG_OR0_PRELIM;
141 #if defined(CFG_BR1_PRELIM) && defined(CFG_OR1_PRELIM)
142 memctl->or1 = CFG_OR1_PRELIM;
143 memctl->br1 = CFG_BR1_PRELIM;
146 #if defined(CFG_BR2_PRELIM) && defined(CFG_OR2_PRELIM)
147 memctl->or2 = CFG_OR2_PRELIM;
148 memctl->br2 = CFG_BR2_PRELIM;
151 #if defined(CFG_BR3_PRELIM) && defined(CFG_OR3_PRELIM)
152 memctl->or3 = CFG_OR3_PRELIM;
153 memctl->br3 = CFG_BR3_PRELIM;
156 #if defined(CFG_BR4_PRELIM) && defined(CFG_OR4_PRELIM)
157 memctl->or4 = CFG_OR4_PRELIM;
158 memctl->br4 = CFG_BR4_PRELIM;
161 #if defined(CFG_BR5_PRELIM) && defined(CFG_OR5_PRELIM)
162 memctl->or5 = CFG_OR5_PRELIM;
163 memctl->br5 = CFG_BR5_PRELIM;
166 #if defined(CFG_BR6_PRELIM) && defined(CFG_OR6_PRELIM)
167 memctl->or6 = CFG_OR6_PRELIM;
168 memctl->br6 = CFG_BR6_PRELIM;
171 #if defined(CFG_BR7_PRELIM) && defined(CFG_OR7_PRELIM)
172 memctl->or7 = CFG_OR7_PRELIM;
173 memctl->br7 = CFG_BR7_PRELIM;
176 #if defined(CONFIG_CPM2)
183 * Initialize L2 as cache.
185 * The newer 8548, etc, parts have twice as much cache, but
186 * use the same bit-encoding as the older 8555, etc, parts.
188 * FIXME: Use PVR_VER(pvr) == 1 test here instead of SVR_VER()?
193 #if defined(CONFIG_L2_CACHE)
194 volatile immap_t *immap = (immap_t *)CFG_IMMR;
195 volatile ccsr_l2cache_t *l2cache = &immap->im_l2cache;
196 volatile uint cache_ctl;
203 cache_ctl = l2cache->l2ctl;
205 switch (cache_ctl & 0x30000000) {
207 if (ver == SVR_8548 || ver == SVR_8548_E) {
208 printf ("L2 cache 512KB:");
210 printf ("L2 cache 256KB:");
217 printf ("L2 cache unknown size (0x%08x)\n", cache_ctl);
222 l2cache->l2ctl = 0x68000000; /* invalidate */
223 cache_ctl = l2cache->l2ctl;
226 l2cache->l2ctl = 0xa8000000; /* enable 256KB L2 cache */
227 cache_ctl = l2cache->l2ctl;
230 printf(" enabled\n");
232 printf("L2 cache: disabled\n");