1415a613bSKumar Gala /*
2415a613bSKumar Gala  * Copyright 2004 Freescale Semiconductor.
3415a613bSKumar Gala  *
4415a613bSKumar Gala  * (C) Copyright 2002 Scott McNutt <smcnutt@artesyncp.com>
5415a613bSKumar Gala  *
6415a613bSKumar Gala  * See file CREDITS for list of people who contributed to this
7415a613bSKumar Gala  * project.
8415a613bSKumar Gala  *
9415a613bSKumar Gala  * This program is free software; you can redistribute it and/or
10415a613bSKumar Gala  * modify it under the terms of the GNU General Public License as
11415a613bSKumar Gala  * published by the Free Software Foundation; either version 2 of
12415a613bSKumar Gala  * the License, or (at your option) any later version.
13415a613bSKumar Gala  *
14415a613bSKumar Gala  * This program is distributed in the hope that it will be useful,
15415a613bSKumar Gala  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16415a613bSKumar Gala  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.	 See the
17415a613bSKumar Gala  * GNU General Public License for more details.
18415a613bSKumar Gala  *
19415a613bSKumar Gala  * You should have received a copy of the GNU General Public License
20415a613bSKumar Gala  * along with this program; if not, write to the Free Software
21415a613bSKumar Gala  * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
22415a613bSKumar Gala  * MA 02111-1307 USA
23415a613bSKumar Gala  */
24415a613bSKumar Gala 
25415a613bSKumar Gala #include <common.h>
26415a613bSKumar Gala #include <pci.h>
27415a613bSKumar Gala #include <asm/processor.h>
28aa11d85cSJon Loeliger #include <asm/mmu.h>
29415a613bSKumar Gala #include <asm/immap_85xx.h>
30aa11d85cSJon Loeliger #include <asm/fsl_ddr_sdram.h>
31415a613bSKumar Gala #include <ioports.h>
32a30a549aSJon Loeliger #include <spd_sdram.h>
33415a613bSKumar Gala #include <libfdt.h>
34415a613bSKumar Gala #include <fdt_support.h>
35415a613bSKumar Gala 
36415a613bSKumar Gala #include "../common/cadmus.h"
37415a613bSKumar Gala #include "../common/eeprom.h"
38415a613bSKumar Gala #include "../common/via.h"
39415a613bSKumar Gala 
40415a613bSKumar Gala #if defined(CONFIG_DDR_ECC) && !defined(CONFIG_ECC_INIT_VIA_DDRCONTROLLER)
41415a613bSKumar Gala extern void ddr_enable_ecc(unsigned int dram_size);
42415a613bSKumar Gala #endif
43415a613bSKumar Gala 
44415a613bSKumar Gala void local_bus_init(void);
45415a613bSKumar Gala void sdram_init(void);
46415a613bSKumar Gala 
47415a613bSKumar Gala /*
48415a613bSKumar Gala  * I/O Port configuration table
49415a613bSKumar Gala  *
50415a613bSKumar Gala  * if conf is 1, then that port pin will be configured at boot time
51415a613bSKumar Gala  * according to the five values podr/pdir/ppar/psor/pdat for that entry
52415a613bSKumar Gala  */
53415a613bSKumar Gala 
54415a613bSKumar Gala const iop_conf_t iop_conf_tab[4][32] = {
55415a613bSKumar Gala 
56415a613bSKumar Gala     /* Port A configuration */
57415a613bSKumar Gala     {   /*            conf ppar psor pdir podr pdat */
58415a613bSKumar Gala 	/* PA31 */ {   0,   1,   0,   1,   0,   0   }, /* FCC1 TxENB */
59415a613bSKumar Gala 	/* PA30 */ {   0,   1,   0,   0,   0,   0   }, /* FCC1 TxClav   */
60415a613bSKumar Gala 	/* PA29 */ {   0,   1,   0,   1,   0,   0   }, /* FCC1 TxSOC  */
61415a613bSKumar Gala 	/* PA28 */ {   0,   1,   0,   1,   0,   0   }, /* FCC1 RxENB */
62415a613bSKumar Gala 	/* PA27 */ {   0,   1,   0,   0,   0,   0   }, /* FCC1 RxSOC */
63415a613bSKumar Gala 	/* PA26 */ {   0,   1,   0,   0,   0,   0   }, /* FCC1 RxClav */
64415a613bSKumar Gala 	/* PA25 */ {   0,   1,   0,   1,   0,   0   }, /* FCC1 ATMTXD[0] */
65415a613bSKumar Gala 	/* PA24 */ {   0,   1,   0,   1,   0,   0   }, /* FCC1 ATMTXD[1] */
66415a613bSKumar Gala 	/* PA23 */ {   0,   1,   0,   1,   0,   0   }, /* FCC1 ATMTXD[2] */
67415a613bSKumar Gala 	/* PA22 */ {   0,   1,   0,   1,   0,   0   }, /* FCC1 ATMTXD[3] */
68415a613bSKumar Gala 	/* PA21 */ {   0,   1,   0,   1,   0,   0   }, /* FCC1 ATMTXD[4] */
69415a613bSKumar Gala 	/* PA20 */ {   0,   1,   0,   1,   0,   0   }, /* FCC1 ATMTXD[5] */
70415a613bSKumar Gala 	/* PA19 */ {   0,   1,   0,   1,   0,   0   }, /* FCC1 ATMTXD[6] */
71415a613bSKumar Gala 	/* PA18 */ {   0,   1,   0,   1,   0,   0   }, /* FCC1 ATMTXD[7] */
72415a613bSKumar Gala 	/* PA17 */ {   0,   1,   0,   0,   0,   0   }, /* FCC1 ATMRXD[7] */
73415a613bSKumar Gala 	/* PA16 */ {   0,   1,   0,   0,   0,   0   }, /* FCC1 ATMRXD[6] */
74415a613bSKumar Gala 	/* PA15 */ {   0,   1,   0,   0,   0,   0   }, /* FCC1 ATMRXD[5] */
75415a613bSKumar Gala 	/* PA14 */ {   0,   1,   0,   0,   0,   0   }, /* FCC1 ATMRXD[4] */
76415a613bSKumar Gala 	/* PA13 */ {   0,   1,   0,   0,   0,   0   }, /* FCC1 ATMRXD[3] */
77415a613bSKumar Gala 	/* PA12 */ {   0,   1,   0,   0,   0,   0   }, /* FCC1 ATMRXD[2] */
78415a613bSKumar Gala 	/* PA11 */ {   0,   1,   0,   0,   0,   0   }, /* FCC1 ATMRXD[1] */
79415a613bSKumar Gala 	/* PA10 */ {   0,   1,   0,   0,   0,   0   }, /* FCC1 ATMRXD[0] */
80415a613bSKumar Gala 	/* PA9  */ {   0,   1,   1,   1,   0,   0   }, /* FCC1 L1TXD */
81415a613bSKumar Gala 	/* PA8  */ {   0,   1,   1,   0,   0,   0   }, /* FCC1 L1RXD */
82415a613bSKumar Gala 	/* PA7  */ {   0,   0,   0,   1,   0,   0   }, /* PA7 */
83415a613bSKumar Gala 	/* PA6  */ {   0,   1,   1,   1,   0,   0   }, /* TDM A1 L1RSYNC */
84415a613bSKumar Gala 	/* PA5  */ {   0,   0,   0,   1,   0,   0   }, /* PA5 */
85415a613bSKumar Gala 	/* PA4  */ {   0,   0,   0,   1,   0,   0   }, /* PA4 */
86415a613bSKumar Gala 	/* PA3  */ {   0,   0,   0,   1,   0,   0   }, /* PA3 */
87415a613bSKumar Gala 	/* PA2  */ {   0,   0,   0,   1,   0,   0   }, /* PA2 */
88415a613bSKumar Gala 	/* PA1  */ {   1,   0,   0,   0,   0,   0   }, /* FREERUN */
89415a613bSKumar Gala 	/* PA0  */ {   0,   0,   0,   1,   0,   0   }  /* PA0 */
90415a613bSKumar Gala     },
91415a613bSKumar Gala 
92415a613bSKumar Gala     /* Port B configuration */
93415a613bSKumar Gala     {   /*            conf ppar psor pdir podr pdat */
94415a613bSKumar Gala 	/* PB31 */ {   1,   1,   0,   1,   0,   0   }, /* FCC2 MII TX_ER */
95415a613bSKumar Gala 	/* PB30 */ {   1,   1,   0,   0,   0,   0   }, /* FCC2 MII RX_DV */
96415a613bSKumar Gala 	/* PB29 */ {   1,   1,   1,   1,   0,   0   }, /* FCC2 MII TX_EN */
97415a613bSKumar Gala 	/* PB28 */ {   1,   1,   0,   0,   0,   0   }, /* FCC2 MII RX_ER */
98415a613bSKumar Gala 	/* PB27 */ {   1,   1,   0,   0,   0,   0   }, /* FCC2 MII COL */
99415a613bSKumar Gala 	/* PB26 */ {   1,   1,   0,   0,   0,   0   }, /* FCC2 MII CRS */
100415a613bSKumar Gala 	/* PB25 */ {   1,   1,   0,   1,   0,   0   }, /* FCC2 MII TxD[3] */
101415a613bSKumar Gala 	/* PB24 */ {   1,   1,   0,   1,   0,   0   }, /* FCC2 MII TxD[2] */
102415a613bSKumar Gala 	/* PB23 */ {   1,   1,   0,   1,   0,   0   }, /* FCC2 MII TxD[1] */
103415a613bSKumar Gala 	/* PB22 */ {   1,   1,   0,   1,   0,   0   }, /* FCC2 MII TxD[0] */
104415a613bSKumar Gala 	/* PB21 */ {   1,   1,   0,   0,   0,   0   }, /* FCC2 MII RxD[0] */
105415a613bSKumar Gala 	/* PB20 */ {   1,   1,   0,   0,   0,   0   }, /* FCC2 MII RxD[1] */
106415a613bSKumar Gala 	/* PB19 */ {   1,   1,   0,   0,   0,   0   }, /* FCC2 MII RxD[2] */
107415a613bSKumar Gala 	/* PB18 */ {   1,   1,   0,   0,   0,   0   }, /* FCC2 MII RxD[3] */
108415a613bSKumar Gala 	/* PB17 */ {   0,   1,   0,   0,   0,   0   }, /* FCC3:RX_DIV */
109415a613bSKumar Gala 	/* PB16 */ {   0,   1,   0,   0,   0,   0   }, /* FCC3:RX_ERR */
110415a613bSKumar Gala 	/* PB15 */ {   0,   1,   0,   1,   0,   0   }, /* FCC3:TX_ERR */
111415a613bSKumar Gala 	/* PB14 */ {   0,   1,   0,   1,   0,   0   }, /* FCC3:TX_EN */
112415a613bSKumar Gala 	/* PB13 */ {   0,   1,   0,   0,   0,   0   }, /* FCC3:COL */
113415a613bSKumar Gala 	/* PB12 */ {   0,   1,   0,   0,   0,   0   }, /* FCC3:CRS */
114415a613bSKumar Gala 	/* PB11 */ {   0,   1,   0,   0,   0,   0   }, /* FCC3:RXD */
115415a613bSKumar Gala 	/* PB10 */ {   0,   1,   0,   0,   0,   0   }, /* FCC3:RXD */
116415a613bSKumar Gala 	/* PB9  */ {   0,   1,   0,   0,   0,   0   }, /* FCC3:RXD */
117415a613bSKumar Gala 	/* PB8  */ {   0,   1,   0,   0,   0,   0   }, /* FCC3:RXD */
118415a613bSKumar Gala 	/* PB7  */ {   0,   1,   0,   1,   0,   0   }, /* FCC3:TXD */
119415a613bSKumar Gala 	/* PB6  */ {   0,   1,   0,   1,   0,   0   }, /* FCC3:TXD */
120415a613bSKumar Gala 	/* PB5  */ {   0,   1,   0,   1,   0,   0   }, /* FCC3:TXD */
121415a613bSKumar Gala 	/* PB4  */ {   0,   1,   0,   1,   0,   0   }, /* FCC3:TXD */
122415a613bSKumar Gala 	/* PB3  */ {   0,   0,   0,   0,   0,   0   }, /* pin doesn't exist */
123415a613bSKumar Gala 	/* PB2  */ {   0,   0,   0,   0,   0,   0   }, /* pin doesn't exist */
124415a613bSKumar Gala 	/* PB1  */ {   0,   0,   0,   0,   0,   0   }, /* pin doesn't exist */
125415a613bSKumar Gala 	/* PB0  */ {   0,   0,   0,   0,   0,   0   }  /* pin doesn't exist */
126415a613bSKumar Gala     },
127415a613bSKumar Gala 
128415a613bSKumar Gala     /* Port C */
129415a613bSKumar Gala     {   /*            conf ppar psor pdir podr pdat */
130415a613bSKumar Gala 	/* PC31 */ {   0,   0,   0,   1,   0,   0   }, /* PC31 */
131415a613bSKumar Gala 	/* PC30 */ {   0,   0,   0,   1,   0,   0   }, /* PC30 */
132415a613bSKumar Gala 	/* PC29 */ {   0,   1,   1,   0,   0,   0   }, /* SCC1 EN *CLSN */
133415a613bSKumar Gala 	/* PC28 */ {   0,   0,   0,   1,   0,   0   }, /* PC28 */
134415a613bSKumar Gala 	/* PC27 */ {   0,   0,   0,   1,   0,   0   }, /* UART Clock in */
135415a613bSKumar Gala 	/* PC26 */ {   0,   0,   0,   1,   0,   0   }, /* PC26 */
136415a613bSKumar Gala 	/* PC25 */ {   0,   0,   0,   1,   0,   0   }, /* PC25 */
137415a613bSKumar Gala 	/* PC24 */ {   0,   0,   0,   1,   0,   0   }, /* PC24 */
138415a613bSKumar Gala 	/* PC23 */ {   0,   1,   0,   1,   0,   0   }, /* ATMTFCLK */
139415a613bSKumar Gala 	/* PC22 */ {   0,   1,   0,   0,   0,   0   }, /* ATMRFCLK */
140415a613bSKumar Gala 	/* PC21 */ {   0,   1,   0,   0,   0,   0   }, /* SCC1 EN RXCLK */
141415a613bSKumar Gala 	/* PC20 */ {   0,   1,   0,   0,   0,   0   }, /* SCC1 EN TXCLK */
142415a613bSKumar Gala 	/* PC19 */ {   1,   1,   0,   0,   0,   0   }, /* FCC2 MII RX_CLK CLK13 */
143415a613bSKumar Gala 	/* PC18 */ {   1,   1,   0,   0,   0,   0   }, /* FCC Tx Clock (CLK14) */
144415a613bSKumar Gala 	/* PC17 */ {   0,   0,   0,   1,   0,   0   }, /* PC17 */
145415a613bSKumar Gala 	/* PC16 */ {   0,   1,   0,   0,   0,   0   }, /* FCC Tx Clock (CLK16) */
146415a613bSKumar Gala 	/* PC15 */ {   1,   1,   0,   0,   0,   0   }, /* PC15 */
147415a613bSKumar Gala 	/* PC14 */ {   0,   1,   0,   0,   0,   0   }, /* SCC1 EN *CD */
148415a613bSKumar Gala 	/* PC13 */ {   0,   0,   0,   1,   0,   0   }, /* PC13 */
149415a613bSKumar Gala 	/* PC12 */ {   0,   1,   0,   1,   0,   0   }, /* PC12 */
150415a613bSKumar Gala 	/* PC11 */ {   0,   0,   0,   1,   0,   0   }, /* LXT971 transmit control */
151415a613bSKumar Gala 	/* PC10 */ {   1,   0,   0,   1,   0,   0   }, /* FETHMDC */
152415a613bSKumar Gala 	/* PC9  */ {   1,   0,   0,   0,   0,   0   }, /* FETHMDIO */
153415a613bSKumar Gala 	/* PC8  */ {   0,   0,   0,   1,   0,   0   }, /* PC8 */
154415a613bSKumar Gala 	/* PC7  */ {   0,   0,   0,   1,   0,   0   }, /* PC7 */
155415a613bSKumar Gala 	/* PC6  */ {   0,   0,   0,   1,   0,   0   }, /* PC6 */
156415a613bSKumar Gala 	/* PC5  */ {   0,   0,   0,   1,   0,   0   }, /* PC5 */
157415a613bSKumar Gala 	/* PC4  */ {   0,   0,   0,   1,   0,   0   }, /* PC4 */
158415a613bSKumar Gala 	/* PC3  */ {   0,   0,   0,   1,   0,   0   }, /* PC3 */
159415a613bSKumar Gala 	/* PC2  */ {   0,   0,   0,   1,   0,   1   }, /* ENET FDE */
160415a613bSKumar Gala 	/* PC1  */ {   0,   0,   0,   1,   0,   0   }, /* ENET DSQE */
161415a613bSKumar Gala 	/* PC0  */ {   0,   0,   0,   1,   0,   0   }, /* ENET LBK */
162415a613bSKumar Gala     },
163415a613bSKumar Gala 
164415a613bSKumar Gala     /* Port D */
165415a613bSKumar Gala     {   /*            conf ppar psor pdir podr pdat */
166415a613bSKumar Gala 	/* PD31 */ {   1,   1,   0,   0,   0,   0   }, /* SCC1 EN RxD */
167415a613bSKumar Gala 	/* PD30 */ {   1,   1,   1,   1,   0,   0   }, /* SCC1 EN TxD */
168415a613bSKumar Gala 	/* PD29 */ {   1,   1,   0,   1,   0,   0   }, /* SCC1 EN TENA */
169415a613bSKumar Gala 	/* PD28 */ {   0,   1,   0,   0,   0,   0   }, /* PD28 */
170415a613bSKumar Gala 	/* PD27 */ {   0,   1,   1,   1,   0,   0   }, /* PD27 */
171415a613bSKumar Gala 	/* PD26 */ {   0,   0,   0,   1,   0,   0   }, /* PD26 */
172415a613bSKumar Gala 	/* PD25 */ {   0,   0,   0,   1,   0,   0   }, /* PD25 */
173415a613bSKumar Gala 	/* PD24 */ {   0,   0,   0,   1,   0,   0   }, /* PD24 */
174415a613bSKumar Gala 	/* PD23 */ {   0,   0,   0,   1,   0,   0   }, /* PD23 */
175415a613bSKumar Gala 	/* PD22 */ {   0,   0,   0,   1,   0,   0   }, /* PD22 */
176415a613bSKumar Gala 	/* PD21 */ {   0,   0,   0,   1,   0,   0   }, /* PD21 */
177415a613bSKumar Gala 	/* PD20 */ {   0,   0,   0,   1,   0,   0   }, /* PD20 */
178415a613bSKumar Gala 	/* PD19 */ {   0,   0,   0,   1,   0,   0   }, /* PD19 */
179415a613bSKumar Gala 	/* PD18 */ {   0,   0,   0,   1,   0,   0   }, /* PD18 */
180415a613bSKumar Gala 	/* PD17 */ {   0,   1,   0,   0,   0,   0   }, /* FCC1 ATMRXPRTY */
181415a613bSKumar Gala 	/* PD16 */ {   0,   1,   0,   1,   0,   0   }, /* FCC1 ATMTXPRTY */
182415a613bSKumar Gala 	/* PD15 */ {   0,   1,   1,   0,   1,   0   }, /* I2C SDA */
183415a613bSKumar Gala 	/* PD14 */ {   0,   0,   0,   1,   0,   0   }, /* LED */
184415a613bSKumar Gala 	/* PD13 */ {   0,   0,   0,   0,   0,   0   }, /* PD13 */
185415a613bSKumar Gala 	/* PD12 */ {   0,   0,   0,   0,   0,   0   }, /* PD12 */
186415a613bSKumar Gala 	/* PD11 */ {   0,   0,   0,   0,   0,   0   }, /* PD11 */
187415a613bSKumar Gala 	/* PD10 */ {   0,   0,   0,   0,   0,   0   }, /* PD10 */
188415a613bSKumar Gala 	/* PD9  */ {   0,   1,   0,   1,   0,   0   }, /* SMC1 TXD */
189415a613bSKumar Gala 	/* PD8  */ {   0,   1,   0,   0,   0,   0   }, /* SMC1 RXD */
190415a613bSKumar Gala 	/* PD7  */ {   0,   0,   0,   1,   0,   1   }, /* PD7 */
191415a613bSKumar Gala 	/* PD6  */ {   0,   0,   0,   1,   0,   1   }, /* PD6 */
192415a613bSKumar Gala 	/* PD5  */ {   0,   0,   0,   1,   0,   1   }, /* PD5 */
193415a613bSKumar Gala 	/* PD4  */ {   0,   0,   0,   1,   0,   1   }, /* PD4 */
194415a613bSKumar Gala 	/* PD3  */ {   0,   0,   0,   0,   0,   0   }, /* pin doesn't exist */
195415a613bSKumar Gala 	/* PD2  */ {   0,   0,   0,   0,   0,   0   }, /* pin doesn't exist */
196415a613bSKumar Gala 	/* PD1  */ {   0,   0,   0,   0,   0,   0   }, /* pin doesn't exist */
197415a613bSKumar Gala 	/* PD0  */ {   0,   0,   0,   0,   0,   0   }  /* pin doesn't exist */
198415a613bSKumar Gala     }
199415a613bSKumar Gala };
200415a613bSKumar Gala 
201415a613bSKumar Gala int checkboard (void)
202415a613bSKumar Gala {
2036d0f6bcfSJean-Christophe PLAGNIOL-VILLARD 	volatile ccsr_gur_t *gur = (void *)(CONFIG_SYS_MPC85xx_GUTS_ADDR);
204415a613bSKumar Gala 
205415a613bSKumar Gala 	/* PCI slot in USER bits CSR[6:7] by convention. */
206415a613bSKumar Gala 	uint pci_slot = get_pci_slot ();
207415a613bSKumar Gala 
208415a613bSKumar Gala 	uint pci_dual = get_pci_dual ();	/* PCI DUAL in CM_PCI[3] */
209415a613bSKumar Gala 	uint pci1_32 = gur->pordevsr & 0x10000;	/* PORDEVSR[15] */
210415a613bSKumar Gala 	uint pci1_clk_sel = gur->porpllsr & 0x8000;	/* PORPLLSR[16] */
211415a613bSKumar Gala 	uint pci2_clk_sel = gur->porpllsr & 0x4000;	/* PORPLLSR[17] */
212415a613bSKumar Gala 
213415a613bSKumar Gala 	uint pci1_speed = get_clock_freq ();	/* PCI PSPEED in [4:5] */
214415a613bSKumar Gala 
215415a613bSKumar Gala 	uint cpu_board_rev = get_cpu_board_revision ();
216415a613bSKumar Gala 
217415a613bSKumar Gala 	printf ("Board: CDS Version 0x%02x, PCI Slot %d\n",
218415a613bSKumar Gala 		get_board_version (), pci_slot);
219415a613bSKumar Gala 
220415a613bSKumar Gala 	printf ("CPU Board Revision %d.%d (0x%04x)\n",
221415a613bSKumar Gala 		MPC85XX_CPU_BOARD_MAJOR (cpu_board_rev),
222415a613bSKumar Gala 		MPC85XX_CPU_BOARD_MINOR (cpu_board_rev), cpu_board_rev);
223415a613bSKumar Gala 
224415a613bSKumar Gala 	printf ("    PCI1: %d bit, %s MHz, %s\n",
225415a613bSKumar Gala 		(pci1_32) ? 32 : 64,
226415a613bSKumar Gala 		(pci1_speed == 33000000) ? "33" :
227415a613bSKumar Gala 		(pci1_speed == 66000000) ? "66" : "unknown",
228415a613bSKumar Gala 		pci1_clk_sel ? "sync" : "async");
229415a613bSKumar Gala 
230415a613bSKumar Gala 	if (pci_dual) {
231415a613bSKumar Gala 		printf ("    PCI2: 32 bit, 66 MHz, %s\n",
232415a613bSKumar Gala 			pci2_clk_sel ? "sync" : "async");
233415a613bSKumar Gala 	} else {
234415a613bSKumar Gala 		printf ("    PCI2: disabled\n");
235415a613bSKumar Gala 	}
236415a613bSKumar Gala 
237415a613bSKumar Gala 	/*
238415a613bSKumar Gala 	 * Initialize local bus.
239415a613bSKumar Gala 	 */
240415a613bSKumar Gala 	local_bus_init ();
241415a613bSKumar Gala 
242415a613bSKumar Gala 	return 0;
243415a613bSKumar Gala }
244415a613bSKumar Gala 
2459973e3c6SBecky Bruce phys_size_t
246415a613bSKumar Gala initdram(int board_type)
247415a613bSKumar Gala {
248415a613bSKumar Gala 	long dram_size = 0;
249415a613bSKumar Gala 
250415a613bSKumar Gala 	puts("Initializing\n");
251415a613bSKumar Gala 
252415a613bSKumar Gala #if defined(CONFIG_DDR_DLL)
253415a613bSKumar Gala 	{
254415a613bSKumar Gala 		/*
255415a613bSKumar Gala 		 * Work around to stabilize DDR DLL MSYNC_IN.
256415a613bSKumar Gala 		 * Errata DDR9 seems to have been fixed.
257415a613bSKumar Gala 		 * This is now the workaround for Errata DDR11:
258415a613bSKumar Gala 		 *    Override DLL = 1, Course Adj = 1, Tap Select = 0
259415a613bSKumar Gala 		 */
260415a613bSKumar Gala 
2616d0f6bcfSJean-Christophe PLAGNIOL-VILLARD 		volatile ccsr_gur_t *gur = (void *)(CONFIG_SYS_MPC85xx_GUTS_ADDR);
262415a613bSKumar Gala 
263415a613bSKumar Gala 		gur->ddrdllcr = 0x81000000;
264415a613bSKumar Gala 		asm("sync;isync;msync");
265415a613bSKumar Gala 		udelay(200);
266415a613bSKumar Gala 	}
267415a613bSKumar Gala #endif
268aa11d85cSJon Loeliger 	dram_size = fsl_ddr_sdram();
269aa11d85cSJon Loeliger 	dram_size = setup_ddr_tlbs(dram_size / 0x100000);
270aa11d85cSJon Loeliger 	dram_size *= 0x100000;
271415a613bSKumar Gala 
272415a613bSKumar Gala #if defined(CONFIG_DDR_ECC) && !defined(CONFIG_ECC_INIT_VIA_DDRCONTROLLER)
273415a613bSKumar Gala 	/*
274415a613bSKumar Gala 	 * Initialize and enable DDR ECC.
275415a613bSKumar Gala 	 */
276415a613bSKumar Gala 	ddr_enable_ecc(dram_size);
277415a613bSKumar Gala #endif
278415a613bSKumar Gala 	/*
279415a613bSKumar Gala 	 * SDRAM Initialization
280415a613bSKumar Gala 	 */
281415a613bSKumar Gala 	sdram_init();
282415a613bSKumar Gala 
283415a613bSKumar Gala 	puts("    DDR: ");
284415a613bSKumar Gala 	return dram_size;
285415a613bSKumar Gala }
286415a613bSKumar Gala 
287415a613bSKumar Gala /*
288415a613bSKumar Gala  * Initialize Local Bus
289415a613bSKumar Gala  */
290415a613bSKumar Gala void
291415a613bSKumar Gala local_bus_init(void)
292415a613bSKumar Gala {
2936d0f6bcfSJean-Christophe PLAGNIOL-VILLARD 	volatile ccsr_gur_t *gur = (void *)(CONFIG_SYS_MPC85xx_GUTS_ADDR);
2946d0f6bcfSJean-Christophe PLAGNIOL-VILLARD 	volatile ccsr_lbc_t *lbc = (void *)(CONFIG_SYS_MPC85xx_LBC_ADDR);
295415a613bSKumar Gala 
296415a613bSKumar Gala 	uint clkdiv;
297415a613bSKumar Gala 	uint lbc_hz;
298415a613bSKumar Gala 	sys_info_t sysinfo;
299415a613bSKumar Gala 	uint temp_lbcdll;
300415a613bSKumar Gala 
301415a613bSKumar Gala 	/*
302415a613bSKumar Gala 	 * Errata LBC11.
303415a613bSKumar Gala 	 * Fix Local Bus clock glitch when DLL is enabled.
304415a613bSKumar Gala 	 *
3058ed44d91SWolfgang Denk 	 * If localbus freq is < 66MHz, DLL bypass mode must be used.
3068ed44d91SWolfgang Denk 	 * If localbus freq is > 133MHz, DLL can be safely enabled.
307415a613bSKumar Gala 	 * Between 66 and 133, the DLL is enabled with an override workaround.
308415a613bSKumar Gala 	 */
309415a613bSKumar Gala 
310415a613bSKumar Gala 	get_sys_info(&sysinfo);
311*a5d212a2STrent Piepho 	clkdiv = lbc->lcrr & LCRR_CLKDIV;
312415a613bSKumar Gala 	lbc_hz = sysinfo.freqSystemBus / 1000000 / clkdiv;
313415a613bSKumar Gala 
314415a613bSKumar Gala 	if (lbc_hz < 66) {
315415a613bSKumar Gala 		lbc->lcrr |= 0x80000000;	/* DLL Bypass */
316415a613bSKumar Gala 
317415a613bSKumar Gala 	} else if (lbc_hz >= 133) {
318415a613bSKumar Gala 		lbc->lcrr &= (~0x80000000);		/* DLL Enabled */
319415a613bSKumar Gala 
320415a613bSKumar Gala 	} else {
321415a613bSKumar Gala 		lbc->lcrr &= (~0x8000000);	/* DLL Enabled */
322415a613bSKumar Gala 		udelay(200);
323415a613bSKumar Gala 
324415a613bSKumar Gala 		/*
325415a613bSKumar Gala 		 * Sample LBC DLL ctrl reg, upshift it to set the
326415a613bSKumar Gala 		 * override bits.
327415a613bSKumar Gala 		 */
328415a613bSKumar Gala 		temp_lbcdll = gur->lbcdllcr;
329415a613bSKumar Gala 		gur->lbcdllcr = (((temp_lbcdll & 0xff) << 16) | 0x80000000);
330415a613bSKumar Gala 		asm("sync;isync;msync");
331415a613bSKumar Gala 	}
332415a613bSKumar Gala }
333415a613bSKumar Gala 
334415a613bSKumar Gala /*
335415a613bSKumar Gala  * Initialize SDRAM memory on the Local Bus.
336415a613bSKumar Gala  */
337415a613bSKumar Gala void
338415a613bSKumar Gala sdram_init(void)
339415a613bSKumar Gala {
3406d0f6bcfSJean-Christophe PLAGNIOL-VILLARD #if defined(CONFIG_SYS_OR2_PRELIM) && defined(CONFIG_SYS_BR2_PRELIM)
341415a613bSKumar Gala 
342415a613bSKumar Gala 	uint idx;
3436d0f6bcfSJean-Christophe PLAGNIOL-VILLARD 	volatile ccsr_lbc_t *lbc = (void *)(CONFIG_SYS_MPC85xx_LBC_ADDR);
3446d0f6bcfSJean-Christophe PLAGNIOL-VILLARD 	uint *sdram_addr = (uint *)CONFIG_SYS_LBC_SDRAM_BASE;
345415a613bSKumar Gala 	uint cpu_board_rev;
346415a613bSKumar Gala 	uint lsdmr_common;
347415a613bSKumar Gala 
348415a613bSKumar Gala 	puts("    SDRAM: ");
349415a613bSKumar Gala 
3506d0f6bcfSJean-Christophe PLAGNIOL-VILLARD 	print_size (CONFIG_SYS_LBC_SDRAM_SIZE * 1024 * 1024, "\n");
351415a613bSKumar Gala 
352415a613bSKumar Gala 	/*
353415a613bSKumar Gala 	 * Setup SDRAM Base and Option Registers
354415a613bSKumar Gala 	 */
3556d0f6bcfSJean-Christophe PLAGNIOL-VILLARD 	lbc->or2 = CONFIG_SYS_OR2_PRELIM;
356415a613bSKumar Gala 	asm("msync");
357415a613bSKumar Gala 
3586d0f6bcfSJean-Christophe PLAGNIOL-VILLARD 	lbc->br2 = CONFIG_SYS_BR2_PRELIM;
359415a613bSKumar Gala 	asm("msync");
360415a613bSKumar Gala 
3616d0f6bcfSJean-Christophe PLAGNIOL-VILLARD 	lbc->lbcr = CONFIG_SYS_LBC_LBCR;
362415a613bSKumar Gala 	asm("msync");
363415a613bSKumar Gala 
364415a613bSKumar Gala 
3656d0f6bcfSJean-Christophe PLAGNIOL-VILLARD 	lbc->lsrt = CONFIG_SYS_LBC_LSRT;
3666d0f6bcfSJean-Christophe PLAGNIOL-VILLARD 	lbc->mrtpr = CONFIG_SYS_LBC_MRTPR;
367415a613bSKumar Gala 	asm("msync");
368415a613bSKumar Gala 
369415a613bSKumar Gala 	/*
370415a613bSKumar Gala 	 * Determine which address lines to use baed on CPU board rev.
371415a613bSKumar Gala 	 */
372415a613bSKumar Gala 	cpu_board_rev = get_cpu_board_revision();
3736d0f6bcfSJean-Christophe PLAGNIOL-VILLARD 	lsdmr_common = CONFIG_SYS_LBC_LSDMR_COMMON;
374415a613bSKumar Gala 	if (cpu_board_rev == MPC85XX_CPU_BOARD_REV_1_0) {
3756d0f6bcfSJean-Christophe PLAGNIOL-VILLARD 		lsdmr_common |= CONFIG_SYS_LBC_LSDMR_BSMA1617;
376415a613bSKumar Gala 	} else if (cpu_board_rev == MPC85XX_CPU_BOARD_REV_1_1) {
3776d0f6bcfSJean-Christophe PLAGNIOL-VILLARD 		lsdmr_common |= CONFIG_SYS_LBC_LSDMR_BSMA1516;
378415a613bSKumar Gala 	} else {
379415a613bSKumar Gala 		/*
380415a613bSKumar Gala 		 * Assume something unable to identify itself is
381415a613bSKumar Gala 		 * really old, and likely has lines 16/17 mapped.
382415a613bSKumar Gala 		 */
3836d0f6bcfSJean-Christophe PLAGNIOL-VILLARD 		lsdmr_common |= CONFIG_SYS_LBC_LSDMR_BSMA1617;
384415a613bSKumar Gala 	}
385415a613bSKumar Gala 
386415a613bSKumar Gala 	/*
387415a613bSKumar Gala 	 * Issue PRECHARGE ALL command.
388415a613bSKumar Gala 	 */
3896d0f6bcfSJean-Christophe PLAGNIOL-VILLARD 	lbc->lsdmr = lsdmr_common | CONFIG_SYS_LBC_LSDMR_OP_PCHALL;
390415a613bSKumar Gala 	asm("sync;msync");
391415a613bSKumar Gala 	*sdram_addr = 0xff;
392415a613bSKumar Gala 	ppcDcbf((unsigned long) sdram_addr);
393415a613bSKumar Gala 	udelay(100);
394415a613bSKumar Gala 
395415a613bSKumar Gala 	/*
396415a613bSKumar Gala 	 * Issue 8 AUTO REFRESH commands.
397415a613bSKumar Gala 	 */
398415a613bSKumar Gala 	for (idx = 0; idx < 8; idx++) {
3996d0f6bcfSJean-Christophe PLAGNIOL-VILLARD 		lbc->lsdmr = lsdmr_common | CONFIG_SYS_LBC_LSDMR_OP_ARFRSH;
400415a613bSKumar Gala 		asm("sync;msync");
401415a613bSKumar Gala 		*sdram_addr = 0xff;
402415a613bSKumar Gala 		ppcDcbf((unsigned long) sdram_addr);
403415a613bSKumar Gala 		udelay(100);
404415a613bSKumar Gala 	}
405415a613bSKumar Gala 
406415a613bSKumar Gala 	/*
407415a613bSKumar Gala 	 * Issue 8 MODE-set command.
408415a613bSKumar Gala 	 */
4096d0f6bcfSJean-Christophe PLAGNIOL-VILLARD 	lbc->lsdmr = lsdmr_common | CONFIG_SYS_LBC_LSDMR_OP_MRW;
410415a613bSKumar Gala 	asm("sync;msync");
411415a613bSKumar Gala 	*sdram_addr = 0xff;
412415a613bSKumar Gala 	ppcDcbf((unsigned long) sdram_addr);
413415a613bSKumar Gala 	udelay(100);
414415a613bSKumar Gala 
415415a613bSKumar Gala 	/*
416415a613bSKumar Gala 	 * Issue NORMAL OP command.
417415a613bSKumar Gala 	 */
4186d0f6bcfSJean-Christophe PLAGNIOL-VILLARD 	lbc->lsdmr = lsdmr_common | CONFIG_SYS_LBC_LSDMR_OP_NORMAL;
419415a613bSKumar Gala 	asm("sync;msync");
420415a613bSKumar Gala 	*sdram_addr = 0xff;
421415a613bSKumar Gala 	ppcDcbf((unsigned long) sdram_addr);
422415a613bSKumar Gala 	udelay(200);    /* Overkill. Must wait > 200 bus cycles */
423415a613bSKumar Gala 
424415a613bSKumar Gala #endif	/* enable SDRAM init */
425415a613bSKumar Gala }
426415a613bSKumar Gala 
427415a613bSKumar Gala #if defined(CONFIG_PCI)
428415a613bSKumar Gala /* For some reason the Tundra PCI bridge shows up on itself as a
429415a613bSKumar Gala  * different device.  Work around that by refusing to configure it.
430415a613bSKumar Gala  */
431415a613bSKumar Gala void dummy_func(struct pci_controller* hose, pci_dev_t dev, struct pci_config_table *tab) { }
432415a613bSKumar Gala 
433415a613bSKumar Gala static struct pci_config_table pci_mpc85xxcds_config_table[] = {
434415a613bSKumar Gala 	{0x10e3, 0x0513, PCI_ANY_ID, 1, 3, PCI_ANY_ID, dummy_func, {0,0,0}},
435415a613bSKumar Gala 	{0x1106, 0x0686, PCI_ANY_ID, 1, VIA_ID, 0, mpc85xx_config_via, {0,0,0}},
436415a613bSKumar Gala 	{0x1106, 0x0571, PCI_ANY_ID, 1, VIA_ID, 1,
437415a613bSKumar Gala 		mpc85xx_config_via_usbide, {0,0,0}},
438415a613bSKumar Gala 	{0x1105, 0x3038, PCI_ANY_ID, 1, VIA_ID, 2,
439415a613bSKumar Gala 		mpc85xx_config_via_usb, {0,0,0}},
440415a613bSKumar Gala 	{0x1106, 0x3038, PCI_ANY_ID, 1, VIA_ID, 3,
441415a613bSKumar Gala 		mpc85xx_config_via_usb2, {0,0,0}},
442415a613bSKumar Gala 	{0x1106, 0x3058, PCI_ANY_ID, 1, VIA_ID, 5,
443415a613bSKumar Gala 		mpc85xx_config_via_power, {0,0,0}},
444415a613bSKumar Gala 	{0x1106, 0x3068, PCI_ANY_ID, 1, VIA_ID, 6,
445415a613bSKumar Gala 		mpc85xx_config_via_ac97, {0,0,0}},
446415a613bSKumar Gala 	{},
447415a613bSKumar Gala };
448415a613bSKumar Gala 
449415a613bSKumar Gala static struct pci_controller hose[] = {
450415a613bSKumar Gala 	{ config_table: pci_mpc85xxcds_config_table,},
451415a613bSKumar Gala #ifdef CONFIG_MPC85XX_PCI2
452415a613bSKumar Gala 	{},
453415a613bSKumar Gala #endif
454415a613bSKumar Gala };
455415a613bSKumar Gala 
456415a613bSKumar Gala #endif	/* CONFIG_PCI */
457415a613bSKumar Gala 
458415a613bSKumar Gala void
459415a613bSKumar Gala pci_init_board(void)
460415a613bSKumar Gala {
461415a613bSKumar Gala #ifdef CONFIG_PCI
462415a613bSKumar Gala 	pci_mpc85xx_init(hose);
463415a613bSKumar Gala #endif
464415a613bSKumar Gala }
465415a613bSKumar Gala 
466415a613bSKumar Gala #if defined(CONFIG_OF_BOARD_SETUP)
467415a613bSKumar Gala void
468415a613bSKumar Gala ft_pci_setup(void *blob, bd_t *bd)
469415a613bSKumar Gala {
470415a613bSKumar Gala 	int node, tmp[2];
471415a613bSKumar Gala 	const char *path;
472415a613bSKumar Gala 
473415a613bSKumar Gala 	node = fdt_path_offset(blob, "/aliases");
474415a613bSKumar Gala 	tmp[0] = 0;
475415a613bSKumar Gala 	if (node >= 0) {
476415a613bSKumar Gala #ifdef CONFIG_PCI1
477415a613bSKumar Gala 		path = fdt_getprop(blob, node, "pci0", NULL);
478415a613bSKumar Gala 		if (path) {
479415a613bSKumar Gala 			tmp[1] = hose[0].last_busno - hose[0].first_busno;
480415a613bSKumar Gala 			do_fixup_by_path(blob, path, "bus-range", &tmp, 8, 1);
481415a613bSKumar Gala 		}
482415a613bSKumar Gala #endif
483415a613bSKumar Gala #ifdef CONFIG_MPC85XX_PCI2
484415a613bSKumar Gala 		path = fdt_getprop(blob, node, "pci1", NULL);
485415a613bSKumar Gala 		if (path) {
486415a613bSKumar Gala 			tmp[1] = hose[1].last_busno - hose[1].first_busno;
487415a613bSKumar Gala 			do_fixup_by_path(blob, path, "bus-range", &tmp, 8, 1);
488415a613bSKumar Gala 		}
489415a613bSKumar Gala #endif
490415a613bSKumar Gala 	}
491415a613bSKumar Gala }
492415a613bSKumar Gala #endif
493