]> git.ipfire.org Git - people/ms/u-boot.git/blame - board/freescale/mpc8641hpcn/mpc8641hpcn.c
pci/fsl_pci_init: Fold fsl_pci_setup_inbound_windows into fsl_pci_init
[people/ms/u-boot.git] / board / freescale / mpc8641hpcn / mpc8641hpcn.c
CommitLineData
debb7354 1/*
3d98b858 2 * Copyright 2006, 2007 Freescale Semiconductor.
debb7354
JL
3 *
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
63cec581 14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
debb7354
JL
15 * 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>
c8514622 27#include <asm/fsl_pci.h>
6a8e5692 28#include <asm/fsl_ddr_sdram.h>
3d98b858 29#include <asm/io.h>
ea9f7395
JL
30#include <libfdt.h>
31#include <fdt_support.h>
0b252f50 32#include <netdev.h>
debb7354 33
4ce91774 34#include "../common/pixis.h"
4d3d729c 35
4c77de3f 36phys_size_t fixed_sdram(void);
debb7354 37
80e955c7 38int board_early_init_f(void)
debb7354 39{
cb5965fb 40 return 0;
debb7354
JL
41}
42
80e955c7 43int checkboard(void)
debb7354 44{
9af9c6bd
KG
45 u8 vboot;
46 u8 *pixis_base = (u8 *)PIXIS_BASE;
47
48 printf ("Board: MPC8641HPCN, Sys ID: 0x%02x, "
49 "Sys Ver: 0x%02x, FPGA Ver: 0x%02x, ",
50 in_8(pixis_base + PIXIS_ID), in_8(pixis_base + PIXIS_VER),
51 in_8(pixis_base + PIXIS_PVER));
52
53 vboot = in_8(pixis_base + PIXIS_VBOOT);
54 if (vboot & PIXIS_VBOOT_FMAP)
55 printf ("vBank: %d\n", ((vboot & PIXIS_VBOOT_FBANK) >> 6));
56 else
57 puts ("Promjet\n");
58
2331e18b
BB
59#ifdef CONFIG_PHYS_64BIT
60 printf (" 36-bit physical address map\n");
61#endif
debb7354
JL
62 return 0;
63}
64
65
9973e3c6 66phys_size_t
debb7354
JL
67initdram(int board_type)
68{
4c77de3f 69 phys_size_t dram_size = 0;
debb7354
JL
70
71#if defined(CONFIG_SPD_EEPROM)
6a8e5692 72 dram_size = fsl_ddr_sdram();
debb7354 73#else
80e955c7 74 dram_size = fixed_sdram();
debb7354
JL
75#endif
76
6d0f6bcf 77#if defined(CONFIG_SYS_RAMBOOT)
debb7354
JL
78 puts(" DDR: ");
79 return dram_size;
80#endif
cb5965fb 81
debb7354
JL
82 puts(" DDR: ");
83 return dram_size;
84}
85
86
debb7354 87#if !defined(CONFIG_SPD_EEPROM)
5c9efb36
JL
88/*
89 * Fixed sdram init -- doesn't use serial presence detect.
90 */
4c77de3f 91phys_size_t
80e955c7 92fixed_sdram(void)
debb7354 93{
6d0f6bcf
JCPV
94#if !defined(CONFIG_SYS_RAMBOOT)
95 volatile immap_t *immap = (immap_t *) CONFIG_SYS_IMMR;
80e955c7 96 volatile ccsr_ddr_t *ddr = &immap->im_ddr1;
debb7354 97
6d0f6bcf
JCPV
98 ddr->cs0_bnds = CONFIG_SYS_DDR_CS0_BNDS;
99 ddr->cs0_config = CONFIG_SYS_DDR_CS0_CONFIG;
100 ddr->timing_cfg_3 = CONFIG_SYS_DDR_TIMING_3;
101 ddr->timing_cfg_0 = CONFIG_SYS_DDR_TIMING_0;
102 ddr->timing_cfg_1 = CONFIG_SYS_DDR_TIMING_1;
103 ddr->timing_cfg_2 = CONFIG_SYS_DDR_TIMING_2;
e7ee23ec 104 ddr->sdram_mode = CONFIG_SYS_DDR_MODE_1;
6d0f6bcf
JCPV
105 ddr->sdram_mode_2 = CONFIG_SYS_DDR_MODE_2;
106 ddr->sdram_interval = CONFIG_SYS_DDR_INTERVAL;
107 ddr->sdram_data_init = CONFIG_SYS_DDR_DATA_INIT;
108 ddr->sdram_clk_cntl = CONFIG_SYS_DDR_CLK_CTRL;
109 ddr->sdram_ocd_cntl = CONFIG_SYS_DDR_OCD_CTRL;
110 ddr->sdram_ocd_status = CONFIG_SYS_DDR_OCD_STATUS;
debb7354
JL
111
112#if defined (CONFIG_DDR_ECC)
113 ddr->err_disable = 0x0000008D;
114 ddr->err_sbe = 0x00ff0000;
115#endif
116 asm("sync;isync");
cb5965fb 117
debb7354
JL
118 udelay(500);
119
120#if defined (CONFIG_DDR_ECC)
121 /* Enable ECC checking */
e7ee23ec 122 ddr->sdram_cfg = (CONFIG_SYS_DDR_CONTROL | 0x20000000);
debb7354 123#else
e7ee23ec 124 ddr->sdram_cfg = CONFIG_SYS_DDR_CONTROL;
6d0f6bcf 125 ddr->sdram_cfg_2 = CONFIG_SYS_DDR_CONTROL2;
debb7354
JL
126#endif
127 asm("sync; isync");
cb5965fb 128
debb7354
JL
129 udelay(500);
130#endif
6d0f6bcf 131 return CONFIG_SYS_SDRAM_SIZE * 1024 * 1024;
debb7354
JL
132}
133#endif /* !defined(CONFIG_SPD_EEPROM) */
134
135
136#if defined(CONFIG_PCI)
98693b85 137static struct pci_controller pci1_hose;
80e955c7 138#endif /* CONFIG_PCI */
debb7354 139
63cec581
ES
140#ifdef CONFIG_PCI2
141static struct pci_controller pci2_hose;
142#endif /* CONFIG_PCI2 */
143
144int first_free_busno = 0;
145
80e955c7 146void pci_init_board(void)
debb7354 147{
63cec581
ES
148#ifdef CONFIG_PCI1
149{
6d0f6bcf 150 volatile ccsr_fsl_pci_t *pci = (ccsr_fsl_pci_t *) CONFIG_SYS_PCI1_ADDR;
63cec581 151 struct pci_controller *hose = &pci1_hose;
c2083e0e 152 struct pci_region *r = hose->regions;
af5d100e
BB
153 volatile immap_t *immap = (immap_t *) CONFIG_SYS_CCSRBAR;
154 volatile ccsr_gur_t *gur = &immap->im_gur;
155 uint devdisr = gur->devdisr;
156 uint io_sel = (gur->pordevsr & MPC8641_PORDEVSR_IO_SEL)
157 >> MPC8641_PORDEVSR_IO_SEL_SHIFT;
c2083e0e 158
63cec581 159#ifdef DEBUG
a551cee9
JL
160 uint host1_agent = (gur->porbmsr & MPC8641_PORBMSR_HA)
161 >> MPC8641_PORBMSR_HA_SHIFT;
63cec581
ES
162 uint pex1_agent = (host1_agent == 0) || (host1_agent == 1);
163#endif
164 if ((io_sel == 2 || io_sel == 3 || io_sel == 5
165 || io_sel == 6 || io_sel == 7 || io_sel == 0xF)
166 && !(devdisr & MPC86xx_DEVDISR_PCIEX1)) {
167 debug("PCI-EXPRESS 1: %s \n", pex1_agent ? "Agent" : "Host");
168 debug("0x%08x=0x%08x ", &pci->pme_msg_det, pci->pme_msg_det);
169 if (pci->pme_msg_det) {
170 pci->pme_msg_det = 0xffffffff;
171 debug(" with errors. Clearing. Now 0x%08x",
172 pci->pme_msg_det);
173 }
174 debug("\n");
175
63cec581 176 /* outbound memory */
c2083e0e 177 pci_set_region(r++,
49f46f3b 178 CONFIG_SYS_PCI1_MEM_BUS,
6d0f6bcf
JCPV
179 CONFIG_SYS_PCI1_MEM_PHYS,
180 CONFIG_SYS_PCI1_MEM_SIZE,
63cec581
ES
181 PCI_REGION_MEM);
182
183 /* outbound io */
c2083e0e 184 pci_set_region(r++,
49f46f3b 185 CONFIG_SYS_PCI1_IO_BUS,
6d0f6bcf
JCPV
186 CONFIG_SYS_PCI1_IO_PHYS,
187 CONFIG_SYS_PCI1_IO_SIZE,
63cec581
ES
188 PCI_REGION_IO);
189
c2083e0e 190 hose->region_count = r - hose->regions;
63cec581
ES
191
192 hose->first_busno=first_free_busno;
63cec581 193
fb3143b3 194 fsl_pci_init(hose, (u32)&pci->cfg_addr, (u32)&pci->cfg_data);
63cec581
ES
195
196 first_free_busno=hose->last_busno+1;
197 printf (" PCI-EXPRESS 1 on bus %02x - %02x\n",
198 hose->first_busno,hose->last_busno);
199
200 /*
201 * Activate ULI1575 legacy chip by performing a fake
202 * memory access. Needed to make ULI RTC work.
203 */
49f46f3b 204 in_be32((unsigned *) ((char *)(CONFIG_SYS_PCI1_MEM_VIRT
6d0f6bcf 205 + CONFIG_SYS_PCI1_MEM_SIZE - 0x1000000)));
63cec581
ES
206
207 } else {
208 puts("PCI-EXPRESS 1: Disabled\n");
209 }
210}
211#else
212 puts("PCI-EXPRESS1: Disabled\n");
213#endif /* CONFIG_PCI1 */
214
215#ifdef CONFIG_PCI2
216{
6d0f6bcf 217 volatile ccsr_fsl_pci_t *pci = (ccsr_fsl_pci_t *) CONFIG_SYS_PCI2_ADDR;
63cec581 218 struct pci_controller *hose = &pci2_hose;
c2083e0e 219 struct pci_region *r = hose->regions;
63cec581 220
63cec581 221 /* outbound memory */
c2083e0e 222 pci_set_region(r++,
49f46f3b 223 CONFIG_SYS_PCI2_MEM_BUS,
6d0f6bcf
JCPV
224 CONFIG_SYS_PCI2_MEM_PHYS,
225 CONFIG_SYS_PCI2_MEM_SIZE,
63cec581
ES
226 PCI_REGION_MEM);
227
228 /* outbound io */
c2083e0e 229 pci_set_region(r++,
49f46f3b 230 CONFIG_SYS_PCI2_IO_BUS,
6d0f6bcf
JCPV
231 CONFIG_SYS_PCI2_IO_PHYS,
232 CONFIG_SYS_PCI2_IO_SIZE,
63cec581
ES
233 PCI_REGION_IO);
234
c2083e0e 235 hose->region_count = r - hose->regions;
63cec581
ES
236
237 hose->first_busno=first_free_busno;
63cec581 238
fb3143b3 239 fsl_pci_init(hose, (u32)&pci->cfg_addr, (u32)&pci->cfg_data);
63cec581
ES
240
241 first_free_busno=hose->last_busno+1;
242 printf (" PCI-EXPRESS 2 on bus %02x - %02x\n",
243 hose->first_busno,hose->last_busno);
244}
245#else
246 puts("PCI-EXPRESS 2: Disabled\n");
247#endif /* CONFIG_PCI2 */
debb7354 248
debb7354
JL
249}
250
13f5433f 251
ea9f7395 252#if defined(CONFIG_OF_BOARD_SETUP)
debb7354
JL
253void
254ft_board_setup(void *blob, bd_t *bd)
255{
d52082b1
BB
256 int off;
257 u64 *tmp;
258 u32 *addrcells;
259
13f5433f 260 ft_cpu_setup(blob, bd);
ea9f7395 261
f75e89e9 262#ifdef CONFIG_PCI1
c2083e0e 263 ft_fsl_pci_setup(blob, "pci0", &pci1_hose);
f75e89e9
ES
264#endif
265#ifdef CONFIG_PCI2
c2083e0e 266 ft_fsl_pci_setup(blob, "pci1", &pci2_hose);
f75e89e9 267#endif
d52082b1
BB
268
269 /*
270 * Warn if it looks like the device tree doesn't match u-boot.
271 * This is just an estimation, based on the location of CCSR,
272 * which is defined by the "reg" property in the soc node.
273 */
274 off = fdt_path_offset(blob, "/soc8641");
275 addrcells = (u32 *)fdt_getprop(blob, 0, "#address-cells", NULL);
276 tmp = (u64 *)fdt_getprop(blob, off, "reg", NULL);
277
278 if (tmp) {
279 u64 addr;
3f510db5 280 if (addrcells && (*addrcells == 1))
d52082b1 281 addr = *(u32 *)tmp;
3f510db5
BB
282 else
283 addr = *tmp;
d52082b1
BB
284
285 if (addr != CONFIG_SYS_CCSRBAR_PHYS)
286 printf("WARNING: The CCSRBAR address in your .dts "
287 "does not match the address of the CCSR "
288 "in u-boot. This means your .dts might "
289 "be old.\n");
290 }
debb7354
JL
291}
292#endif
293
debb7354 294
239db37c
HW
295/*
296 * get_board_sys_clk
297 * Reads the FPGA on board for CONFIG_SYS_CLK_FREQ
298 */
299
80e955c7
JL
300unsigned long
301get_board_sys_clk(ulong dummy)
239db37c
HW
302{
303 u8 i, go_bit, rd_clks;
304 ulong val = 0;
048e7efe 305 u8 *pixis_base = (u8 *)PIXIS_BASE;
239db37c 306
048e7efe 307 go_bit = in_8(pixis_base + PIXIS_VCTL);
239db37c
HW
308 go_bit &= 0x01;
309
048e7efe 310 rd_clks = in_8(pixis_base + PIXIS_VCFGEN0);
239db37c
HW
311 rd_clks &= 0x1C;
312
313 /*
314 * Only if both go bit and the SCLK bit in VCFGEN0 are set
315 * should we be using the AUX register. Remember, we also set the
316 * GO bit to boot from the alternate bank on the on-board flash
317 */
318
319 if (go_bit) {
320 if (rd_clks == 0x1c)
048e7efe 321 i = in_8(pixis_base + PIXIS_AUX);
239db37c 322 else
048e7efe 323 i = in_8(pixis_base + PIXIS_SPD);
239db37c 324 } else {
048e7efe 325 i = in_8(pixis_base + PIXIS_SPD);
239db37c
HW
326 }
327
328 i &= 0x07;
329
330 switch (i) {
331 case 0:
332 val = 33000000;
333 break;
334 case 1:
335 val = 40000000;
336 break;
337 case 2:
338 val = 50000000;
339 break;
340 case 3:
341 val = 66000000;
342 break;
343 case 4:
344 val = 83000000;
345 break;
346 case 5:
347 val = 100000000;
348 break;
349 case 6:
350 val = 134000000;
351 break;
352 case 7:
353 val = 166000000;
354 break;
355 }
356
357 return val;
358}
0b252f50
BW
359
360int board_eth_init(bd_t *bis)
361{
362 /* Initialize TSECs */
363 cpu_eth_init(bis);
364 return pci_eth_init(bis);
365}
4ef630df
PT
366
367void board_reset(void)
368{
048e7efe
KG
369 u8 *pixis_base = (u8 *)PIXIS_BASE;
370
371 out_8(pixis_base + PIXIS_RST, 0);
4ef630df
PT
372
373 while (1)
374 ;
375}
f6ef8b7a 376
7649a590 377#ifdef CONFIG_MP
f6ef8b7a
BB
378extern void cpu_mp_lmb_reserve(struct lmb *lmb);
379
380void board_lmb_reserve(struct lmb *lmb)
381{
382 cpu_mp_lmb_reserve(lmb);
383}
384#endif