blob: a03ca74929d07607030c98b3717d0d482f5e35e0 [file] [log] [blame]
Jon Loeligerdebb7352006-04-26 17:58:56 -05001/*
Haiying Wang3d98b852007-01-22 12:37:30 -06002 * Copyright 2006, 2007 Freescale Semiconductor.
Jon Loeligerdebb7352006-04-26 17:58:56 -05003 *
4 * See file CREDITS for list of people who contributed to this
5 * project.
6 *
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License as
9 * published by the Free Software Foundation; either version 2 of
10 * the License, or (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
Ed Swarthout63cec582007-08-02 14:09:49 -050014 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
Jon Loeligerdebb7352006-04-26 17:58:56 -050015 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
20 * MA 02111-1307 USA
21 */
22
23#include <common.h>
24#include <pci.h>
25#include <asm/processor.h>
26#include <asm/immap_86xx.h>
Ed Swarthout63cec582007-08-02 14:09:49 -050027#include <asm/immap_fsl_pci.h>
Kumar Gala6a8e5692008-08-26 15:01:35 -050028#include <asm/fsl_ddr_sdram.h>
Haiying Wang3d98b852007-01-22 12:37:30 -060029#include <asm/io.h>
Jon Loeligerea9f7392007-11-28 14:47:18 -060030#include <libfdt.h>
31#include <fdt_support.h>
Ben Warren0b252f52008-08-31 21:41:08 -070032#include <netdev.h>
Jon Loeligerdebb7352006-04-26 17:58:56 -050033
Jon Loeliger4ce91772007-08-15 12:20:40 -050034#include "../common/pixis.h"
Jon Loeliger4d3d7292006-05-31 11:24:28 -050035
Jon Loeligerdebb7352006-04-26 17:58:56 -050036long int fixed_sdram(void);
37
Jon Loeliger80e955c2006-08-22 12:25:27 -050038int board_early_init_f(void)
Jon Loeligerdebb7352006-04-26 17:58:56 -050039{
Jon Loeligercb5965f2006-05-31 12:44:44 -050040 return 0;
Jon Loeligerdebb7352006-04-26 17:58:56 -050041}
42
Jon Loeliger80e955c2006-08-22 12:25:27 -050043int checkboard(void)
Jon Loeligerdebb7352006-04-26 17:58:56 -050044{
Wolfgang Denk9b55a252008-07-11 01:16:00 +020045 printf ("Board: MPC8641HPCN, System ID: 0x%02x, "
46 "System Version: 0x%02x, FPGA Version: 0x%02x\n",
Kumar Gala7de8c212008-06-19 01:45:27 -050047 in8(PIXIS_BASE + PIXIS_ID), in8(PIXIS_BASE + PIXIS_VER),
48 in8(PIXIS_BASE + PIXIS_PVER));
Jon Loeligerdebb7352006-04-26 17:58:56 -050049 return 0;
50}
51
52
Becky Bruce9973e3c2008-06-09 16:03:40 -050053phys_size_t
Jon Loeligerdebb7352006-04-26 17:58:56 -050054initdram(int board_type)
55{
56 long dram_size = 0;
Jon Loeligerdebb7352006-04-26 17:58:56 -050057
58#if defined(CONFIG_SPD_EEPROM)
Kumar Gala6a8e5692008-08-26 15:01:35 -050059 dram_size = fsl_ddr_sdram();
Jon Loeligerdebb7352006-04-26 17:58:56 -050060#else
Jon Loeliger80e955c2006-08-22 12:25:27 -050061 dram_size = fixed_sdram();
Jon Loeligerdebb7352006-04-26 17:58:56 -050062#endif
63
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020064#if defined(CONFIG_SYS_RAMBOOT)
Jon Loeligerdebb7352006-04-26 17:58:56 -050065 puts(" DDR: ");
66 return dram_size;
67#endif
Jon Loeligercb5965f2006-05-31 12:44:44 -050068
Jon Loeligerdebb7352006-04-26 17:58:56 -050069 puts(" DDR: ");
70 return dram_size;
71}
72
73
Jon Loeligerdebb7352006-04-26 17:58:56 -050074#if !defined(CONFIG_SPD_EEPROM)
Jon Loeliger5c9efb32006-04-27 10:15:16 -050075/*
76 * Fixed sdram init -- doesn't use serial presence detect.
77 */
Jon Loeliger80e955c2006-08-22 12:25:27 -050078long int
79fixed_sdram(void)
Jon Loeligerdebb7352006-04-26 17:58:56 -050080{
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020081#if !defined(CONFIG_SYS_RAMBOOT)
82 volatile immap_t *immap = (immap_t *) CONFIG_SYS_IMMR;
Jon Loeliger80e955c2006-08-22 12:25:27 -050083 volatile ccsr_ddr_t *ddr = &immap->im_ddr1;
Jon Loeligerdebb7352006-04-26 17:58:56 -050084
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020085 ddr->cs0_bnds = CONFIG_SYS_DDR_CS0_BNDS;
86 ddr->cs0_config = CONFIG_SYS_DDR_CS0_CONFIG;
87 ddr->timing_cfg_3 = CONFIG_SYS_DDR_TIMING_3;
88 ddr->timing_cfg_0 = CONFIG_SYS_DDR_TIMING_0;
89 ddr->timing_cfg_1 = CONFIG_SYS_DDR_TIMING_1;
90 ddr->timing_cfg_2 = CONFIG_SYS_DDR_TIMING_2;
91 ddr->sdram_mode_1 = CONFIG_SYS_DDR_MODE_1;
92 ddr->sdram_mode_2 = CONFIG_SYS_DDR_MODE_2;
93 ddr->sdram_interval = CONFIG_SYS_DDR_INTERVAL;
94 ddr->sdram_data_init = CONFIG_SYS_DDR_DATA_INIT;
95 ddr->sdram_clk_cntl = CONFIG_SYS_DDR_CLK_CTRL;
96 ddr->sdram_ocd_cntl = CONFIG_SYS_DDR_OCD_CTRL;
97 ddr->sdram_ocd_status = CONFIG_SYS_DDR_OCD_STATUS;
Jon Loeligerdebb7352006-04-26 17:58:56 -050098
99#if defined (CONFIG_DDR_ECC)
100 ddr->err_disable = 0x0000008D;
101 ddr->err_sbe = 0x00ff0000;
102#endif
103 asm("sync;isync");
Jon Loeligercb5965f2006-05-31 12:44:44 -0500104
Jon Loeligerdebb7352006-04-26 17:58:56 -0500105 udelay(500);
106
107#if defined (CONFIG_DDR_ECC)
108 /* Enable ECC checking */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200109 ddr->sdram_cfg_1 = (CONFIG_SYS_DDR_CONTROL | 0x20000000);
Jon Loeligerdebb7352006-04-26 17:58:56 -0500110#else
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200111 ddr->sdram_cfg_1 = CONFIG_SYS_DDR_CONTROL;
112 ddr->sdram_cfg_2 = CONFIG_SYS_DDR_CONTROL2;
Jon Loeligerdebb7352006-04-26 17:58:56 -0500113#endif
114 asm("sync; isync");
Jon Loeligercb5965f2006-05-31 12:44:44 -0500115
Jon Loeligerdebb7352006-04-26 17:58:56 -0500116 udelay(500);
117#endif
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200118 return CONFIG_SYS_SDRAM_SIZE * 1024 * 1024;
Jon Loeligerdebb7352006-04-26 17:58:56 -0500119}
120#endif /* !defined(CONFIG_SPD_EEPROM) */
121
122
123#if defined(CONFIG_PCI)
Becky Bruce98693b82008-10-31 17:14:00 -0500124static struct pci_controller pci1_hose;
Jon Loeliger80e955c2006-08-22 12:25:27 -0500125#endif /* CONFIG_PCI */
Jon Loeligerdebb7352006-04-26 17:58:56 -0500126
Ed Swarthout63cec582007-08-02 14:09:49 -0500127#ifdef CONFIG_PCI2
128static struct pci_controller pci2_hose;
129#endif /* CONFIG_PCI2 */
130
131int first_free_busno = 0;
132
Kumar Galac2083e02008-10-22 14:38:55 -0500133extern int fsl_pci_setup_inbound_windows(struct pci_region *r);
134extern void fsl_pci_init(struct pci_controller *hose);
Ed Swarthout63cec582007-08-02 14:09:49 -0500135
Jon Loeliger80e955c2006-08-22 12:25:27 -0500136void pci_init_board(void)
Jon Loeligerdebb7352006-04-26 17:58:56 -0500137{
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200138 volatile immap_t *immap = (immap_t *) CONFIG_SYS_CCSRBAR;
Ed Swarthout63cec582007-08-02 14:09:49 -0500139 volatile ccsr_gur_t *gur = &immap->im_gur;
140 uint devdisr = gur->devdisr;
Jon Loeligera551cee2008-02-20 14:22:26 -0600141 uint io_sel = (gur->pordevsr & MPC8641_PORDEVSR_IO_SEL)
142 >> MPC8641_PORDEVSR_IO_SEL_SHIFT;
Jon Loeligerdebb7352006-04-26 17:58:56 -0500143
Ed Swarthout63cec582007-08-02 14:09:49 -0500144#ifdef CONFIG_PCI1
145{
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200146 volatile ccsr_fsl_pci_t *pci = (ccsr_fsl_pci_t *) CONFIG_SYS_PCI1_ADDR;
Ed Swarthout63cec582007-08-02 14:09:49 -0500147 struct pci_controller *hose = &pci1_hose;
Kumar Galac2083e02008-10-22 14:38:55 -0500148 struct pci_region *r = hose->regions;
149
Ed Swarthout63cec582007-08-02 14:09:49 -0500150#ifdef DEBUG
Jon Loeligera551cee2008-02-20 14:22:26 -0600151 uint host1_agent = (gur->porbmsr & MPC8641_PORBMSR_HA)
152 >> MPC8641_PORBMSR_HA_SHIFT;
Ed Swarthout63cec582007-08-02 14:09:49 -0500153 uint pex1_agent = (host1_agent == 0) || (host1_agent == 1);
154#endif
155 if ((io_sel == 2 || io_sel == 3 || io_sel == 5
156 || io_sel == 6 || io_sel == 7 || io_sel == 0xF)
157 && !(devdisr & MPC86xx_DEVDISR_PCIEX1)) {
158 debug("PCI-EXPRESS 1: %s \n", pex1_agent ? "Agent" : "Host");
159 debug("0x%08x=0x%08x ", &pci->pme_msg_det, pci->pme_msg_det);
160 if (pci->pme_msg_det) {
161 pci->pme_msg_det = 0xffffffff;
162 debug(" with errors. Clearing. Now 0x%08x",
163 pci->pme_msg_det);
164 }
165 debug("\n");
166
167 /* inbound */
Kumar Galac2083e02008-10-22 14:38:55 -0500168 r += fsl_pci_setup_inbound_windows(r);
Ed Swarthout63cec582007-08-02 14:09:49 -0500169
170 /* outbound memory */
Kumar Galac2083e02008-10-22 14:38:55 -0500171 pci_set_region(r++,
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200172 CONFIG_SYS_PCI1_MEM_BASE,
173 CONFIG_SYS_PCI1_MEM_PHYS,
174 CONFIG_SYS_PCI1_MEM_SIZE,
Ed Swarthout63cec582007-08-02 14:09:49 -0500175 PCI_REGION_MEM);
176
177 /* outbound io */
Kumar Galac2083e02008-10-22 14:38:55 -0500178 pci_set_region(r++,
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200179 CONFIG_SYS_PCI1_IO_BASE,
180 CONFIG_SYS_PCI1_IO_PHYS,
181 CONFIG_SYS_PCI1_IO_SIZE,
Ed Swarthout63cec582007-08-02 14:09:49 -0500182 PCI_REGION_IO);
183
Kumar Galac2083e02008-10-22 14:38:55 -0500184 hose->region_count = r - hose->regions;
Ed Swarthout63cec582007-08-02 14:09:49 -0500185
186 hose->first_busno=first_free_busno;
187 pci_setup_indirect(hose, (int) &pci->cfg_addr, (int) &pci->cfg_data);
188
189 fsl_pci_init(hose);
190
191 first_free_busno=hose->last_busno+1;
192 printf (" PCI-EXPRESS 1 on bus %02x - %02x\n",
193 hose->first_busno,hose->last_busno);
194
195 /*
196 * Activate ULI1575 legacy chip by performing a fake
197 * memory access. Needed to make ULI RTC work.
198 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200199 in_be32((unsigned *) ((char *)(CONFIG_SYS_PCI1_MEM_BASE
200 + CONFIG_SYS_PCI1_MEM_SIZE - 0x1000000)));
Ed Swarthout63cec582007-08-02 14:09:49 -0500201
202 } else {
203 puts("PCI-EXPRESS 1: Disabled\n");
204 }
205}
206#else
207 puts("PCI-EXPRESS1: Disabled\n");
208#endif /* CONFIG_PCI1 */
209
210#ifdef CONFIG_PCI2
211{
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200212 volatile ccsr_fsl_pci_t *pci = (ccsr_fsl_pci_t *) CONFIG_SYS_PCI2_ADDR;
Ed Swarthout63cec582007-08-02 14:09:49 -0500213 struct pci_controller *hose = &pci2_hose;
Kumar Galac2083e02008-10-22 14:38:55 -0500214 struct pci_region *r = hose->regions;
Ed Swarthout63cec582007-08-02 14:09:49 -0500215
216 /* inbound */
Kumar Galac2083e02008-10-22 14:38:55 -0500217 r += fsl_pci_setup_inbound_windows(r);
Ed Swarthout63cec582007-08-02 14:09:49 -0500218
219 /* outbound memory */
Kumar Galac2083e02008-10-22 14:38:55 -0500220 pci_set_region(r++,
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200221 CONFIG_SYS_PCI2_MEM_BASE,
222 CONFIG_SYS_PCI2_MEM_PHYS,
223 CONFIG_SYS_PCI2_MEM_SIZE,
Ed Swarthout63cec582007-08-02 14:09:49 -0500224 PCI_REGION_MEM);
225
226 /* outbound io */
Kumar Galac2083e02008-10-22 14:38:55 -0500227 pci_set_region(r++,
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200228 CONFIG_SYS_PCI2_IO_BASE,
229 CONFIG_SYS_PCI2_IO_PHYS,
230 CONFIG_SYS_PCI2_IO_SIZE,
Ed Swarthout63cec582007-08-02 14:09:49 -0500231 PCI_REGION_IO);
232
Kumar Galac2083e02008-10-22 14:38:55 -0500233 hose->region_count = r - hose->regions;
Ed Swarthout63cec582007-08-02 14:09:49 -0500234
235 hose->first_busno=first_free_busno;
236 pci_setup_indirect(hose, (int) &pci->cfg_addr, (int) &pci->cfg_data);
237
238 fsl_pci_init(hose);
239
240 first_free_busno=hose->last_busno+1;
241 printf (" PCI-EXPRESS 2 on bus %02x - %02x\n",
242 hose->first_busno,hose->last_busno);
243}
244#else
245 puts("PCI-EXPRESS 2: Disabled\n");
246#endif /* CONFIG_PCI2 */
247
Jon Loeligerdebb7352006-04-26 17:58:56 -0500248}
249
Jon Loeliger13f54332008-02-18 14:01:56 -0600250
Jon Loeligerea9f7392007-11-28 14:47:18 -0600251#if defined(CONFIG_OF_BOARD_SETUP)
Kumar Galac2083e02008-10-22 14:38:55 -0500252extern void ft_fsl_pci_setup(void *blob, const char *pci_alias,
253 struct pci_controller *hose);
Jon Loeliger13f54332008-02-18 14:01:56 -0600254
Jon Loeligerdebb7352006-04-26 17:58:56 -0500255void
256ft_board_setup(void *blob, bd_t *bd)
257{
Jon Loeliger13f54332008-02-18 14:01:56 -0600258 ft_cpu_setup(blob, bd);
Jon Loeligerea9f7392007-11-28 14:47:18 -0600259
Ed Swarthoutf75e89e2007-08-30 01:58:48 -0500260#ifdef CONFIG_PCI1
Kumar Galac2083e02008-10-22 14:38:55 -0500261 ft_fsl_pci_setup(blob, "pci0", &pci1_hose);
Ed Swarthoutf75e89e2007-08-30 01:58:48 -0500262#endif
263#ifdef CONFIG_PCI2
Kumar Galac2083e02008-10-22 14:38:55 -0500264 ft_fsl_pci_setup(blob, "pci1", &pci2_hose);
Ed Swarthoutf75e89e2007-08-30 01:58:48 -0500265#endif
Jon Loeligerdebb7352006-04-26 17:58:56 -0500266}
267#endif
268
Jon Loeligerdebb7352006-04-26 17:58:56 -0500269
Haiying Wang239db372006-07-28 12:41:18 -0400270/*
271 * get_board_sys_clk
272 * Reads the FPGA on board for CONFIG_SYS_CLK_FREQ
273 */
274
Jon Loeliger80e955c2006-08-22 12:25:27 -0500275unsigned long
276get_board_sys_clk(ulong dummy)
Haiying Wang239db372006-07-28 12:41:18 -0400277{
278 u8 i, go_bit, rd_clks;
279 ulong val = 0;
280
281 go_bit = in8(PIXIS_BASE + PIXIS_VCTL);
282 go_bit &= 0x01;
283
284 rd_clks = in8(PIXIS_BASE + PIXIS_VCFGEN0);
285 rd_clks &= 0x1C;
286
287 /*
288 * Only if both go bit and the SCLK bit in VCFGEN0 are set
289 * should we be using the AUX register. Remember, we also set the
290 * GO bit to boot from the alternate bank on the on-board flash
291 */
292
293 if (go_bit) {
294 if (rd_clks == 0x1c)
295 i = in8(PIXIS_BASE + PIXIS_AUX);
296 else
297 i = in8(PIXIS_BASE + PIXIS_SPD);
298 } else {
299 i = in8(PIXIS_BASE + PIXIS_SPD);
300 }
301
302 i &= 0x07;
303
304 switch (i) {
305 case 0:
306 val = 33000000;
307 break;
308 case 1:
309 val = 40000000;
310 break;
311 case 2:
312 val = 50000000;
313 break;
314 case 3:
315 val = 66000000;
316 break;
317 case 4:
318 val = 83000000;
319 break;
320 case 5:
321 val = 100000000;
322 break;
323 case 6:
324 val = 134000000;
325 break;
326 case 7:
327 val = 166000000;
328 break;
329 }
330
331 return val;
332}
Ben Warren0b252f52008-08-31 21:41:08 -0700333
334int board_eth_init(bd_t *bis)
335{
336 /* Initialize TSECs */
337 cpu_eth_init(bis);
338 return pci_eth_init(bis);
339}