blob: a45df2b734f4d87ecf93f08a6676565984b77d31 [file] [log] [blame]
wdenkf5c5ef42005-04-05 16:26:47 +00001/*
Stefan Roesed96f41e2005-11-30 13:06:40 +01002 * (C) Copyright 2005
3 * Stefan Roese, DENX Software Engineering, sr@denx.de.
4 *
wdenkf5c5ef42005-04-05 16:26:47 +00005 * Copyright 2004 Freescale Semiconductor.
6 * (C) Copyright 2002,2003, Motorola Inc.
7 * Xianghua Xiao, (X.Xiao@motorola.com)
8 *
9 * (C) Copyright 2002 Scott McNutt <smcnutt@artesyncp.com>
10 *
11 * See file CREDITS for list of people who contributed to this
12 * project.
13 *
14 * This program is free software; you can redistribute it and/or
15 * modify it under the terms of the GNU General Public License as
16 * published by the Free Software Foundation; either version 2 of
17 * the License, or (at your option) any later version.
18 *
19 * This program is distributed in the hope that it will be useful,
20 * but WITHOUT ANY WARRANTY; without even the implied warranty of
21 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 * GNU General Public License for more details.
23 *
24 * You should have received a copy of the GNU General Public License
25 * along with this program; if not, write to the Free Software
26 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
27 * MA 02111-1307 USA
28 */
29
wdenkf5c5ef42005-04-05 16:26:47 +000030#include <common.h>
31#include <pci.h>
32#include <asm/processor.h>
33#include <asm/immap_85xx.h>
34#include <ioports.h>
Stefan Roesed96f41e2005-11-30 13:06:40 +010035#include <flash.h>
wdenkf5c5ef42005-04-05 16:26:47 +000036
Wolfgang Denkd87080b2006-03-31 18:32:53 +020037DECLARE_GLOBAL_DATA_PTR;
38
Stefan Roesed96f41e2005-11-30 13:06:40 +010039extern flash_info_t flash_info[]; /* FLASH chips info */
wdenkf5c5ef42005-04-05 16:26:47 +000040
41void local_bus_init (void);
Stefan Roesef18e8742006-03-01 17:00:49 +010042ulong flash_get_size (ulong base, int banknum);
Wolfgang Denk966083e2006-07-21 15:24:56 +020043
Wolfgang Denkbd3143f2006-07-19 14:49:35 +020044#ifdef CONFIG_PS2MULT
Wolfgang Grandeggerb99ba162008-06-05 13:12:00 +020045void ps2mult_early_init (void);
Wolfgang Denkbd3143f2006-07-19 14:49:35 +020046#endif
wdenkf5c5ef42005-04-05 16:26:47 +000047
Stefan Roesed96f41e2005-11-30 13:06:40 +010048#ifdef CONFIG_CPM2
wdenkf5c5ef42005-04-05 16:26:47 +000049/*
50 * I/O Port configuration table
51 *
52 * if conf is 1, then that port pin will be configured at boot time
53 * according to the five values podr/pdir/ppar/psor/pdat for that entry
54 */
55
56const iop_conf_t iop_conf_tab[4][32] = {
57
Wolfgang Grandeggerb99ba162008-06-05 13:12:00 +020058 /* Port A: conf, ppar, psor, pdir, podr, pdat */
59 {
60 {1, 1, 1, 0, 0, 0}, /* PA31: FCC1 MII COL */
61 {1, 1, 1, 0, 0, 0}, /* PA30: FCC1 MII CRS */
62 {1, 1, 1, 1, 0, 0}, /* PA29: FCC1 MII TX_ER */
63 {1, 1, 1, 1, 0, 0}, /* PA28: FCC1 MII TX_EN */
64 {1, 1, 1, 0, 0, 0}, /* PA27: FCC1 MII RX_DV */
65 {1, 1, 1, 0, 0, 0}, /* PA26: FCC1 MII RX_ER */
66 {0, 1, 0, 1, 0, 0}, /* PA25: FCC1 ATMTXD[0] */
67 {0, 1, 0, 1, 0, 0}, /* PA24: FCC1 ATMTXD[1] */
68 {0, 1, 0, 1, 0, 0}, /* PA23: FCC1 ATMTXD[2] */
69 {0, 1, 0, 1, 0, 0}, /* PA22: FCC1 ATMTXD[3] */
70 {1, 1, 0, 1, 0, 0}, /* PA21: FCC1 MII TxD[3] */
71 {1, 1, 0, 1, 0, 0}, /* PA20: FCC1 MII TxD[2] */
72 {1, 1, 0, 1, 0, 0}, /* PA19: FCC1 MII TxD[1] */
73 {1, 1, 0, 1, 0, 0}, /* PA18: FCC1 MII TxD[0] */
74 {1, 1, 0, 0, 0, 0}, /* PA17: FCC1 MII RxD[0] */
75 {1, 1, 0, 0, 0, 0}, /* PA16: FCC1 MII RxD[1] */
76 {1, 1, 0, 0, 0, 0}, /* PA15: FCC1 MII RxD[2] */
77 {1, 1, 0, 0, 0, 0}, /* PA14: FCC1 MII RxD[3] */
78 {0, 1, 0, 0, 0, 0}, /* PA13: FCC1 ATMRXD[3] */
79 {0, 1, 0, 0, 0, 0}, /* PA12: FCC1 ATMRXD[2] */
80 {0, 1, 0, 0, 0, 0}, /* PA11: FCC1 ATMRXD[1] */
81 {0, 1, 0, 0, 0, 0}, /* PA10: FCC1 ATMRXD[0] */
82 {0, 1, 1, 1, 0, 0}, /* PA9 : FCC1 L1TXD */
83 {0, 1, 1, 0, 0, 0}, /* PA8 : FCC1 L1RXD */
84 {0, 0, 0, 1, 0, 0}, /* PA7 : PA7 */
85 {0, 1, 1, 1, 0, 0}, /* PA6 : TDM A1 L1RSYNC */
86 {0, 0, 0, 1, 0, 0}, /* PA5 : PA5 */
87 {0, 0, 0, 1, 0, 0}, /* PA4 : PA4 */
88 {0, 0, 0, 1, 0, 0}, /* PA3 : PA3 */
89 {0, 0, 0, 1, 0, 0}, /* PA2 : PA2 */
90 {0, 0, 0, 0, 0, 0}, /* PA1 : FREERUN */
91 {0, 0, 0, 1, 0, 0} /* PA0 : PA0 */
92 },
wdenkf5c5ef42005-04-05 16:26:47 +000093
Wolfgang Grandeggerb99ba162008-06-05 13:12:00 +020094 /* Port B: conf, ppar, psor, pdir, podr, pdat */
95 {
96 {1, 1, 0, 1, 0, 0}, /* PB31: FCC2 MII TX_ER */
97 {1, 1, 0, 0, 0, 0}, /* PB30: FCC2 MII RX_DV */
98 {1, 1, 1, 1, 0, 0}, /* PB29: FCC2 MII TX_EN */
99 {1, 1, 0, 0, 0, 0}, /* PB28: FCC2 MII RX_ER */
100 {1, 1, 0, 0, 0, 0}, /* PB27: FCC2 MII COL */
101 {1, 1, 0, 0, 0, 0}, /* PB26: FCC2 MII CRS */
102 {1, 1, 0, 1, 0, 0}, /* PB25: FCC2 MII TxD[3] */
103 {1, 1, 0, 1, 0, 0}, /* PB24: FCC2 MII TxD[2] */
104 {1, 1, 0, 1, 0, 0}, /* PB23: FCC2 MII TxD[1] */
105 {1, 1, 0, 1, 0, 0}, /* PB22: FCC2 MII TxD[0] */
106 {1, 1, 0, 0, 0, 0}, /* PB21: FCC2 MII RxD[0] */
107 {1, 1, 0, 0, 0, 0}, /* PB20: FCC2 MII RxD[1] */
108 {1, 1, 0, 0, 0, 0}, /* PB19: FCC2 MII RxD[2] */
109 {1, 1, 0, 0, 0, 0}, /* PB18: FCC2 MII RxD[3] */
110 {1, 1, 0, 0, 0, 0}, /* PB17: FCC3:RX_DIV */
111 {1, 1, 0, 0, 0, 0}, /* PB16: FCC3:RX_ERR */
112 {1, 1, 0, 1, 0, 0}, /* PB15: FCC3:TX_ERR */
113 {1, 1, 0, 1, 0, 0}, /* PB14: FCC3:TX_EN */
114 {1, 1, 0, 0, 0, 0}, /* PB13: FCC3:COL */
115 {1, 1, 0, 0, 0, 0}, /* PB12: FCC3:CRS */
116 {1, 1, 0, 0, 0, 0}, /* PB11: FCC3:RXD */
117 {1, 1, 0, 0, 0, 0}, /* PB10: FCC3:RXD */
118 {1, 1, 0, 0, 0, 0}, /* PB9 : FCC3:RXD */
119 {1, 1, 0, 0, 0, 0}, /* PB8 : FCC3:RXD */
120 {1, 1, 0, 1, 0, 0}, /* PB7 : FCC3:TXD */
121 {1, 1, 0, 1, 0, 0}, /* PB6 : FCC3:TXD */
122 {1, 1, 0, 1, 0, 0}, /* PB5 : FCC3:TXD */
123 {1, 1, 0, 1, 0, 0}, /* PB4 : FCC3:TXD */
124 {0, 0, 0, 0, 0, 0}, /* PB3 : pin doesn't exist */
125 {0, 0, 0, 0, 0, 0}, /* PB2 : pin doesn't exist */
126 {0, 0, 0, 0, 0, 0}, /* PB1 : pin doesn't exist */
127 {0, 0, 0, 0, 0, 0} /* PB0 : pin doesn't exist */
128 },
wdenkf5c5ef42005-04-05 16:26:47 +0000129
Wolfgang Grandeggerb99ba162008-06-05 13:12:00 +0200130 /* Port C: conf, ppar, psor, pdir, podr, pdat */
131 {
132 {0, 0, 0, 1, 0, 0}, /* PC31: PC31 */
133 {0, 0, 0, 1, 0, 0}, /* PC30: PC30 */
134 {0, 1, 1, 0, 0, 0}, /* PC29: SCC1 EN *CLSN */
135 {0, 0, 0, 1, 0, 0}, /* PC28: PC28 */
136 {0, 0, 0, 1, 0, 0}, /* PC27: UART Clock in */
137 {0, 0, 0, 1, 0, 0}, /* PC26: PC26 */
138 {0, 0, 0, 1, 0, 0}, /* PC25: PC25 */
139 {0, 0, 0, 1, 0, 0}, /* PC24: PC24 */
140 {0, 1, 0, 1, 0, 0}, /* PC23: ATMTFCLK */
141 {0, 1, 0, 0, 0, 0}, /* PC22: ATMRFCLK */
142 {1, 1, 0, 0, 0, 0}, /* PC21: SCC1 EN RXCLK */
143 {1, 1, 0, 0, 0, 0}, /* PC20: SCC1 EN TXCLK */
144 {1, 1, 0, 0, 0, 0}, /* PC19: FCC2 MII RX_CLK CLK13 */
145 {1, 1, 0, 0, 0, 0}, /* PC18: FCC Tx Clock (CLK14) */
146 {1, 1, 0, 0, 0, 0}, /* PC17: PC17 */
147 {1, 1, 0, 0, 0, 0}, /* PC16: FCC Tx Clock (CLK16) */
148 {0, 1, 0, 0, 0, 0}, /* PC15: PC15 */
149 {0, 1, 0, 0, 0, 0}, /* PC14: SCC1 EN *CD */
150 {0, 1, 0, 0, 0, 0}, /* PC13: PC13 */
151 {0, 1, 0, 1, 0, 0}, /* PC12: PC12 */
152 {0, 0, 0, 1, 0, 0}, /* PC11: LXT971 transmit control */
153 {0, 0, 0, 1, 0, 0}, /* PC10: FETHMDC */
154 {0, 0, 0, 0, 0, 0}, /* PC9 : FETHMDIO */
155 {0, 0, 0, 1, 0, 0}, /* PC8 : PC8 */
156 {0, 0, 0, 1, 0, 0}, /* PC7 : PC7 */
157 {0, 0, 0, 1, 0, 0}, /* PC6 : PC6 */
158 {0, 0, 0, 1, 0, 0}, /* PC5 : PC5 */
159 {0, 0, 0, 1, 0, 0}, /* PC4 : PC4 */
160 {0, 0, 0, 1, 0, 0}, /* PC3 : PC3 */
161 {0, 0, 0, 1, 0, 1}, /* PC2 : ENET FDE */
162 {0, 0, 0, 1, 0, 0}, /* PC1 : ENET DSQE */
163 {0, 0, 0, 1, 0, 0}, /* PC0 : ENET LBK */
164 },
wdenkf5c5ef42005-04-05 16:26:47 +0000165
Wolfgang Grandeggerb99ba162008-06-05 13:12:00 +0200166 /* Port D: conf, ppar, psor, pdir, podr, pdat */
167 {
Wolfgang Grandegger5d5bd832008-06-05 13:12:01 +0200168#ifdef CONFIG_TQM8560
Wolfgang Grandeggerb99ba162008-06-05 13:12:00 +0200169 {1, 1, 0, 0, 0, 0}, /* PD31: SCC1 EN RxD */
170 {1, 1, 1, 1, 0, 0}, /* PD30: SCC1 EN TxD */
171 {1, 1, 0, 1, 0, 0}, /* PD29: SCC1 EN TENA */
Wolfgang Grandegger5d5bd832008-06-05 13:12:01 +0200172#else /* !CONFIG_TQM8560 */
173 {0, 0, 0, 0, 0, 0}, /* PD31: PD31 */
174 {0, 0, 0, 0, 0, 0}, /* PD30: PD30 */
175 {0, 0, 0, 0, 0, 0}, /* PD29: PD29 */
176#endif /* CONFIG_TQM8560 */
Wolfgang Grandeggerb99ba162008-06-05 13:12:00 +0200177 {1, 1, 0, 0, 0, 0}, /* PD28: PD28 */
178 {1, 1, 0, 1, 0, 0}, /* PD27: PD27 */
179 {1, 1, 0, 1, 0, 0}, /* PD26: PD26 */
180 {0, 0, 0, 1, 0, 0}, /* PD25: PD25 */
181 {0, 0, 0, 1, 0, 0}, /* PD24: PD24 */
182 {0, 0, 0, 1, 0, 0}, /* PD23: PD23 */
183 {0, 0, 0, 1, 0, 0}, /* PD22: PD22 */
184 {0, 0, 0, 1, 0, 0}, /* PD21: PD21 */
185 {0, 0, 0, 1, 0, 0}, /* PD20: PD20 */
186 {0, 0, 0, 1, 0, 0}, /* PD19: PD19 */
187 {0, 0, 0, 1, 0, 0}, /* PD18: PD18 */
188 {0, 1, 0, 0, 0, 0}, /* PD17: FCC1 ATMRXPRTY */
189 {0, 1, 0, 1, 0, 0}, /* PD16: FCC1 ATMTXPRTY */
190 {0, 1, 1, 0, 1, 0}, /* PD15: I2C SDA */
191 {0, 0, 0, 1, 0, 0}, /* PD14: LED */
192 {0, 0, 0, 0, 0, 0}, /* PD13: PD13 */
193 {0, 0, 0, 0, 0, 0}, /* PD12: PD12 */
194 {0, 0, 0, 0, 0, 0}, /* PD11: PD11 */
195 {0, 0, 0, 0, 0, 0}, /* PD10: PD10 */
196 {0, 1, 0, 1, 0, 0}, /* PD9 : SMC1 TXD */
197 {0, 1, 0, 0, 0, 0}, /* PD8 : SMC1 RXD */
198 {0, 0, 0, 1, 0, 1}, /* PD7 : PD7 */
199 {0, 0, 0, 1, 0, 1}, /* PD6 : PD6 */
200 {0, 0, 0, 1, 0, 1}, /* PD5 : PD5 */
201 {0, 0, 0, 1, 0, 1}, /* PD4 : PD4 */
202 {0, 0, 0, 0, 0, 0}, /* PD3 : pin doesn't exist */
203 {0, 0, 0, 0, 0, 0}, /* PD2 : pin doesn't exist */
204 {0, 0, 0, 0, 0, 0}, /* PD1 : pin doesn't exist */
205 {0, 0, 0, 0, 0, 0} /* PD0 : pin doesn't exist */
206 }
wdenkf5c5ef42005-04-05 16:26:47 +0000207};
Stefan Roesed96f41e2005-11-30 13:06:40 +0100208#endif /* CONFIG_CPM2 */
wdenkf5c5ef42005-04-05 16:26:47 +0000209
Stefan Roesed96f41e2005-11-30 13:06:40 +0100210#define CASL_STRING1 "casl=xx"
211#define CASL_STRING2 "casl="
wdenkf5c5ef42005-04-05 16:26:47 +0000212
Stefan Roesed96f41e2005-11-30 13:06:40 +0100213static const int casl_table[] = { 20, 25, 30 };
214#define N_CASL (sizeof(casl_table) / sizeof(casl_table[0]))
215
Wolfgang Grandeggerb99ba162008-06-05 13:12:00 +0200216int cas_latency (void)
wdenkf5c5ef42005-04-05 16:26:47 +0000217{
Wolfgang Grandeggerb99ba162008-06-05 13:12:00 +0200218 char *s = getenv ("serial#");
Stefan Roesed96f41e2005-11-30 13:06:40 +0100219 int casl;
220 int val;
221 int i;
222
223 casl = CONFIG_DDR_DEFAULT_CL;
224
225 if (s != NULL) {
Wolfgang Grandeggerb99ba162008-06-05 13:12:00 +0200226 if (strncmp(s + strlen (s) - strlen (CASL_STRING1),
227 CASL_STRING2, strlen (CASL_STRING2)) == 0) {
228 val = simple_strtoul (s + strlen (s) - 2, NULL, 10);
Stefan Roesed96f41e2005-11-30 13:06:40 +0100229
Wolfgang Grandeggerb99ba162008-06-05 13:12:00 +0200230 for (i = 0; i < N_CASL; ++i) {
Stefan Roesed96f41e2005-11-30 13:06:40 +0100231 if (val == casl_table[i]) {
232 return val;
233 }
234 }
235 }
236 }
237
238 return casl;
wdenkf5c5ef42005-04-05 16:26:47 +0000239}
240
241int checkboard (void)
242{
Wolfgang Grandeggerb99ba162008-06-05 13:12:00 +0200243 char *s = getenv ("serial#");
Stefan Roesed96f41e2005-11-30 13:06:40 +0100244
Wolfgang Grandeggerb99ba162008-06-05 13:12:00 +0200245 printf ("Board: %s", CONFIG_BOARDNAME);
Stefan Roesed96f41e2005-11-30 13:06:40 +0100246 if (s != NULL) {
Wolfgang Grandeggerb99ba162008-06-05 13:12:00 +0200247 puts (", serial# ");
248 puts (s);
Stefan Roesed96f41e2005-11-30 13:06:40 +0100249 }
Wolfgang Grandeggerb99ba162008-06-05 13:12:00 +0200250 putc ('\n');
wdenkf5c5ef42005-04-05 16:26:47 +0000251
252#ifdef CONFIG_PCI
253 printf ("PCI1: 32 bit, %d MHz (compiled)\n",
254 CONFIG_SYS_CLK_FREQ / 1000000);
255#else
256 printf ("PCI1: disabled\n");
257#endif
Stefan Roesed96f41e2005-11-30 13:06:40 +0100258
wdenkf5c5ef42005-04-05 16:26:47 +0000259 /*
260 * Initialize local bus.
261 */
262 local_bus_init ();
263
264 return 0;
265}
266
Stefan Roesed96f41e2005-11-30 13:06:40 +0100267int misc_init_r (void)
wdenkf5c5ef42005-04-05 16:26:47 +0000268{
Kumar Gala04db4002007-11-29 02:10:09 -0600269 volatile ccsr_lbc_t *memctl = (void *)(CFG_MPC85xx_LBC_ADDR);
wdenkf5c5ef42005-04-05 16:26:47 +0000270
Stefan Roesed96f41e2005-11-30 13:06:40 +0100271 /*
272 * Adjust flash start and offset to detected values
273 */
274 gd->bd->bi_flashstart = 0 - gd->bd->bi_flashsize;
275 gd->bd->bi_flashoffset = 0;
Stefan Roese9d2a8732005-08-31 12:55:50 +0200276
Stefan Roesed96f41e2005-11-30 13:06:40 +0100277 /*
Wolfgang Grandegger45dee2e2008-06-05 13:12:03 +0200278 * Recalculate CS configuration if second FLASH bank is available
Stefan Roesed96f41e2005-11-30 13:06:40 +0100279 */
Wolfgang Grandegger45dee2e2008-06-05 13:12:03 +0200280 if (flash_info[0].size > 0) {
281 memctl->or1 = ((-flash_info[0].size) & 0xffff8000) |
282 (CFG_OR1_PRELIM & 0x00007fff);
283 memctl->br1 = gd->bd->bi_flashstart |
284 (CFG_BR1_PRELIM & 0x00007fff);
wdenkf5c5ef42005-04-05 16:26:47 +0000285 /*
Wolfgang Grandegger45dee2e2008-06-05 13:12:03 +0200286 * Re-check to get correct base address for bank 1
wdenkf5c5ef42005-04-05 16:26:47 +0000287 */
Wolfgang Grandegger45dee2e2008-06-05 13:12:03 +0200288 flash_get_size (gd->bd->bi_flashstart, 0);
289 } else {
290 memctl->or1 = 0;
291 memctl->br1 = 0;
wdenkf5c5ef42005-04-05 16:26:47 +0000292 }
wdenkf5c5ef42005-04-05 16:26:47 +0000293
wdenkf5c5ef42005-04-05 16:26:47 +0000294 /*
Wolfgang Grandegger45dee2e2008-06-05 13:12:03 +0200295 * If bank 1 is equipped, bank 0 is mapped after bank 1
wdenkf5c5ef42005-04-05 16:26:47 +0000296 */
Wolfgang Grandegger45dee2e2008-06-05 13:12:03 +0200297 memctl->or0 = ((-flash_info[1].size) & 0xffff8000) |
298 (CFG_OR0_PRELIM & 0x00007fff);
299 memctl->br0 = (gd->bd->bi_flashstart + flash_info[0].size) |
300 (CFG_BR0_PRELIM & 0x00007fff);
301 /*
302 * Re-check to get correct base address for bank 0
303 */
304 flash_get_size (gd->bd->bi_flashstart + flash_info[0].size, 1);
wdenkf5c5ef42005-04-05 16:26:47 +0000305
Wolfgang Grandegger45dee2e2008-06-05 13:12:03 +0200306 /*
307 * Re-do flash protection upon new addresses
308 */
309 flash_protect (FLAG_PROTECT_CLEAR,
310 gd->bd->bi_flashstart, 0xffffffff,
311 &flash_info[CFG_MAX_FLASH_BANKS - 1]);
Stefan Roesed96f41e2005-11-30 13:06:40 +0100312
Wolfgang Grandegger45dee2e2008-06-05 13:12:03 +0200313 /* Monitor protection ON by default */
314 flash_protect (FLAG_PROTECT_SET,
315 CFG_MONITOR_BASE,
316 CFG_MONITOR_BASE + monitor_flash_len - 1,
317 &flash_info[CFG_MAX_FLASH_BANKS - 1]);
Stefan Roesed96f41e2005-11-30 13:06:40 +0100318
Wolfgang Grandegger45dee2e2008-06-05 13:12:03 +0200319 /* Environment protection ON by default */
320 flash_protect (FLAG_PROTECT_SET,
321 CFG_ENV_ADDR,
322 CFG_ENV_ADDR + CFG_ENV_SECT_SIZE - 1,
323 &flash_info[CFG_MAX_FLASH_BANKS - 1]);
Stefan Roesed96f41e2005-11-30 13:06:40 +0100324
Wolfgang Grandegger45dee2e2008-06-05 13:12:03 +0200325#ifdef CFG_ENV_ADDR_REDUND
326 /* Redundant environment protection ON by default */
327 flash_protect (FLAG_PROTECT_SET,
328 CFG_ENV_ADDR_REDUND,
329 CFG_ENV_ADDR_REDUND + CFG_ENV_SIZE_REDUND - 1,
330 &flash_info[CFG_MAX_FLASH_BANKS - 1]);
331#endif
Stefan Roesed96f41e2005-11-30 13:06:40 +0100332
333 return 0;
wdenkf5c5ef42005-04-05 16:26:47 +0000334}
335
wdenkf5c5ef42005-04-05 16:26:47 +0000336/*
337 * Initialize Local Bus
338 */
wdenkf5c5ef42005-04-05 16:26:47 +0000339void local_bus_init (void)
340{
Kumar Galaf59b55a2007-11-27 23:25:02 -0600341 volatile ccsr_gur_t *gur = (void *)(CFG_MPC85xx_GUTS_ADDR);
Kumar Gala04db4002007-11-29 02:10:09 -0600342 volatile ccsr_lbc_t *lbc = (void *)(CFG_MPC85xx_LBC_ADDR);
wdenkf5c5ef42005-04-05 16:26:47 +0000343
344 uint clkdiv;
345 uint lbc_hz;
346 sys_info_t sysinfo;
347
348 /*
349 * Errata LBC11.
350 * Fix Local Bus clock glitch when DLL is enabled.
351 *
352 * If localbus freq is < 66Mhz, DLL bypass mode must be used.
353 * If localbus freq is > 133Mhz, DLL can be safely enabled.
354 * Between 66 and 133, the DLL is enabled with an override workaround.
355 */
356
357 get_sys_info (&sysinfo);
358 clkdiv = lbc->lcrr & 0x0f;
359 lbc_hz = sysinfo.freqSystemBus / 1000000 / clkdiv;
360
361 if (lbc_hz < 66) {
362 lbc->lcrr = CFG_LBC_LCRR | 0x80000000; /* DLL Bypass */
363 lbc->ltedr = 0xa4c80000; /* DK: !!! */
364
365 } else if (lbc_hz >= 133) {
366 lbc->lcrr = CFG_LBC_LCRR & (~0x80000000); /* DLL Enabled */
367
368 } else {
369 /*
370 * On REV1 boards, need to change CLKDIV before enable DLL.
371 * Default CLKDIV is 8, change it to 4 temporarily.
372 */
373 uint pvr = get_pvr ();
374 uint temp_lbcdll = 0;
375
376 if (pvr == PVR_85xx_REV1) {
377 /* FIXME: Justify the high bit here. */
378 lbc->lcrr = 0x10000004;
379 }
380
381 lbc->lcrr = CFG_LBC_LCRR & (~0x80000000); /* DLL Enabled */
382 udelay (200);
383
384 /*
385 * Sample LBC DLL ctrl reg, upshift it to set the
386 * override bits.
387 */
388 temp_lbcdll = gur->lbcdllcr;
389 gur->lbcdllcr = (((temp_lbcdll & 0xff) << 16) | 0x80000000);
390 asm ("sync;isync;msync");
391 }
392}
393
wdenkf5c5ef42005-04-05 16:26:47 +0000394#if defined(CONFIG_PCI)
395/*
396 * Initialize PCI Devices, report devices found.
397 */
398
399#ifndef CONFIG_PCI_PNP
400static struct pci_config_table pci_mpc85xxads_config_table[] = {
401 {PCI_ANY_ID, PCI_ANY_ID, PCI_ANY_ID, PCI_ANY_ID,
402 PCI_IDSEL_NUMBER, PCI_ANY_ID,
403 pci_cfgfunc_config_device, {PCI_ENET0_IOADDR,
404 PCI_ENET0_MEMADDR,
Wolfgang Grandeggerb99ba162008-06-05 13:12:00 +0200405 PCI_COMMAND_MEMORY | PCI_COMMAND_MASTER}},
wdenkf5c5ef42005-04-05 16:26:47 +0000406 {}
407};
408#endif
409
wdenkf5c5ef42005-04-05 16:26:47 +0000410static struct pci_controller hose = {
411#ifndef CONFIG_PCI_PNP
Wolfgang Grandeggerb99ba162008-06-05 13:12:00 +0200412 config_table:pci_mpc85xxads_config_table,
wdenkf5c5ef42005-04-05 16:26:47 +0000413#endif
414};
415
416#endif /* CONFIG_PCI */
417
wdenkf5c5ef42005-04-05 16:26:47 +0000418void pci_init_board (void)
419{
420#ifdef CONFIG_PCI
wdenkf5c5ef42005-04-05 16:26:47 +0000421 pci_mpc85xx_init (&hose);
422#endif /* CONFIG_PCI */
423}
Wolfgang Denkbc8bb6d2006-06-16 16:40:54 +0200424
425#ifdef CONFIG_BOARD_EARLY_INIT_R
426int board_early_init_r (void)
427{
428#ifdef CONFIG_PS2MULT
Wolfgang Grandeggerb99ba162008-06-05 13:12:00 +0200429 ps2mult_early_init ();
Wolfgang Denkbc8bb6d2006-06-16 16:40:54 +0200430#endif /* CONFIG_PS2MULT */
431 return (0);
432}
433#endif /* CONFIG_BOARD_EARLY_INIT_R */