blob: 439217653e8a44278e5caa5fe27d7cecf4e01f3d [file] [log] [blame]
Andre Schwarz2a293292008-07-09 18:30:44 +02001/*
2 * (C) Copyright 2003
3 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4 *
5 * (C) Copyright 2004
6 * Mark Jonas, Freescale Semiconductor, mark.jonas@motorola.com.
7 *
8 * (C) Copyright 2005-2007
9 * Andre Schwarz, Matrix Vision GmbH, andre.schwarz@matrix-vision.de
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
30#include <common.h>
31#include <mpc5xxx.h>
32#include <malloc.h>
33#include <pci.h>
34#include <i2c.h>
Stefan Roese37628252008-08-06 14:05:38 +020035#include <fpga.h>
Andre Schwarz2a293292008-07-09 18:30:44 +020036#include <environment.h>
37#include <fdt_support.h>
Ben Warrencba88512008-08-31 10:39:12 -070038#include <netdev.h>
Andre Schwarz2a293292008-07-09 18:30:44 +020039#include <asm/io.h>
40#include "fpga.h"
41#include "mvbc_p.h"
André Schwarza8e1d952009-08-27 14:48:35 +020042#include "../common/mv_common.h"
Andre Schwarz2a293292008-07-09 18:30:44 +020043
44#define SDRAM_MODE 0x00CD0000
45#define SDRAM_CONTROL 0x504F0000
46#define SDRAM_CONFIG1 0xD2322800
47#define SDRAM_CONFIG2 0x8AD70000
48
49DECLARE_GLOBAL_DATA_PTR;
50
51static void sdram_start (int hi_addr)
52{
53 long hi_bit = hi_addr ? 0x01000000 : 0;
54
55 /* unlock mode register */
56 out_be32((u32*)MPC5XXX_SDRAM_CTRL, SDRAM_CONTROL | 0x80000000 | hi_bit);
57
58 /* precharge all banks */
59 out_be32((u32*)MPC5XXX_SDRAM_CTRL, SDRAM_CONTROL | 0x80000002 | hi_bit);
60
61 /* precharge all banks */
62 out_be32((u32*)MPC5XXX_SDRAM_CTRL, SDRAM_CONTROL | 0x80000002 | hi_bit);
63
64 /* auto refresh */
65 out_be32((u32*)MPC5XXX_SDRAM_CTRL, SDRAM_CONTROL | 0x80000004 | hi_bit);
66
67 /* set mode register */
68 out_be32((u32*)MPC5XXX_SDRAM_MODE, SDRAM_MODE);
69
70 /* normal operation */
71 out_be32((u32*)MPC5XXX_SDRAM_CTRL, SDRAM_CONTROL | hi_bit);
72}
73
74phys_addr_t initdram (int board_type)
75{
76 ulong dramsize = 0;
77 ulong test1,
78 test2;
79
80 /* setup SDRAM chip selects */
81 out_be32((u32*)MPC5XXX_SDRAM_CS0CFG, 0x0000001e);
82
83 /* setup config registers */
84 out_be32((u32*)MPC5XXX_SDRAM_CONFIG1, SDRAM_CONFIG1);
85 out_be32((u32*)MPC5XXX_SDRAM_CONFIG2, SDRAM_CONFIG2);
86
87 /* find RAM size using SDRAM CS0 only */
88 sdram_start(0);
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020089 test1 = get_ram_size((long *)CONFIG_SYS_SDRAM_BASE, 0x80000000);
Andre Schwarz2a293292008-07-09 18:30:44 +020090 sdram_start(1);
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020091 test2 = get_ram_size((long *)CONFIG_SYS_SDRAM_BASE, 0x80000000);
Andre Schwarz2a293292008-07-09 18:30:44 +020092 if (test1 > test2) {
93 sdram_start(0);
94 dramsize = test1;
95 } else
96 dramsize = test2;
97
98 if (dramsize < (1 << 20))
99 dramsize = 0;
100
101 if (dramsize > 0)
102 out_be32((u32*)MPC5XXX_SDRAM_CS0CFG, 0x13 +
103 __builtin_ffs(dramsize >> 20) - 1);
104 else
105 out_be32((u32*)MPC5XXX_SDRAM_CS0CFG, 0);
106
107 return dramsize;
108}
109
110void mvbc_init_gpio(void)
111{
112 struct mpc5xxx_gpio *gpio = (struct mpc5xxx_gpio*)MPC5XXX_GPIO;
113
114 printf("Ports : 0x%08x\n", gpio->port_config);
Stefan Roese37628252008-08-06 14:05:38 +0200115 printf("PORCFG: 0x%08lx\n", *(vu_long*)MPC5XXX_CDM_PORCFG);
Andre Schwarz2a293292008-07-09 18:30:44 +0200116
117 out_be32(&gpio->simple_ddr, SIMPLE_DDR);
118 out_be32(&gpio->simple_dvo, SIMPLE_DVO);
119 out_be32(&gpio->simple_ode, SIMPLE_ODE);
120 out_be32(&gpio->simple_gpioe, SIMPLE_GPIOEN);
121
Andre Schwarzf6f431d2008-08-18 12:02:51 +0200122 out_8(&gpio->sint_ode, SINT_ODE);
123 out_8(&gpio->sint_ddr, SINT_DDR);
124 out_8(&gpio->sint_dvo, SINT_DVO);
125 out_8(&gpio->sint_inten, SINT_INTEN);
126 out_be16(&gpio->sint_itype, SINT_ITYPE);
127 out_8(&gpio->sint_gpioe, SINT_GPIOEN);
Andre Schwarz2a293292008-07-09 18:30:44 +0200128
129 out_8((u8*)MPC5XXX_WU_GPIO_ODE, WKUP_ODE);
130 out_8((u8*)MPC5XXX_WU_GPIO_DIR, WKUP_DIR);
131 out_8((u8*)MPC5XXX_WU_GPIO_DATA_O, WKUP_DO);
132 out_8((u8*)MPC5XXX_WU_GPIO_ENABLE, WKUP_EN);
133
134 printf("simple_gpioe: 0x%08x\n", gpio->simple_gpioe);
135 printf("sint_gpioe : 0x%08x\n", gpio->sint_gpioe);
136}
137
Andre Schwarz2a293292008-07-09 18:30:44 +0200138int misc_init_r(void)
139{
140 char *s = getenv("reset_env");
141
142 if (!s) {
143 if (in_8((u8*)MPC5XXX_WU_GPIO_DATA_I) & MPC5XXX_GPIO_WKUP_6)
144 return 0;
145 udelay(50000);
146 if (in_8((u8*)MPC5XXX_WU_GPIO_DATA_I) & MPC5XXX_GPIO_WKUP_6)
147 return 0;
148 udelay(50000);
149 if (in_8((u8*)MPC5XXX_WU_GPIO_DATA_I) & MPC5XXX_GPIO_WKUP_6)
150 return 0;
151 }
152 printf(" === FACTORY RESET ===\n");
André Schwarza8e1d952009-08-27 14:48:35 +0200153 mv_reset_environment();
Andre Schwarz2a293292008-07-09 18:30:44 +0200154 saveenv();
155
156 return -1;
157}
158
159int checkboard(void)
160{
161 mvbc_init_gpio();
162 printf("Board: Matrix Vision mvBlueCOUGAR-P\n");
163
164 return 0;
165}
166
167void flash_preinit(void)
168{
169 /*
170 * Now, when we are in RAM, enable flash write
171 * access for detection process.
172 * Note that CS_BOOT cannot be cleared when
173 * executing in flash.
174 */
175 clrbits_be32((u32*)MPC5XXX_BOOTCS_CFG, 0x1);
176}
177
178void flash_afterinit(ulong size)
179{
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200180 out_be32((u32*)MPC5XXX_BOOTCS_START, START_REG(CONFIG_SYS_BOOTCS_START |
Andre Schwarz2a293292008-07-09 18:30:44 +0200181 size));
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200182 out_be32((u32*)MPC5XXX_CS0_START, START_REG(CONFIG_SYS_BOOTCS_START |
Andre Schwarz2a293292008-07-09 18:30:44 +0200183 size));
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200184 out_be32((u32*)MPC5XXX_BOOTCS_STOP, STOP_REG(CONFIG_SYS_BOOTCS_START | size,
Andre Schwarz2a293292008-07-09 18:30:44 +0200185 size));
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200186 out_be32((u32*)MPC5XXX_CS0_STOP, STOP_REG(CONFIG_SYS_BOOTCS_START | size,
Andre Schwarz2a293292008-07-09 18:30:44 +0200187 size));
188}
189
190void pci_mvbc_fixup_irq(struct pci_controller *hose, pci_dev_t dev)
191{
192 unsigned char line = 0xff;
André Schwarza8e1d952009-08-27 14:48:35 +0200193 char *s = getenv("pci_latency");
Andre Schwarz2a293292008-07-09 18:30:44 +0200194 u32 base;
André Schwarza8e1d952009-08-27 14:48:35 +0200195 u8 val = 0;
196
197 if (s)
198 val = simple_strtoul(s, NULL, 16);
Andre Schwarz2a293292008-07-09 18:30:44 +0200199
200 if (PCI_BUS(dev) == 0) {
201 switch (PCI_DEV (dev)) {
202 case 0xa: /* FPGA */
203 line = 3;
204 pci_hose_read_config_dword(hose, dev, PCI_BASE_ADDRESS_0, &base);
André Schwarza8e1d952009-08-27 14:48:35 +0200205 printf("found FPGA - enable arbitration\n");
Andre Schwarz2a293292008-07-09 18:30:44 +0200206 writel(0x03, (u32*)(base + 0x80c0));
207 writel(0xf0, (u32*)(base + 0x8080));
André Schwarza8e1d952009-08-27 14:48:35 +0200208 if (val)
209 pci_hose_write_config_byte(hose, dev, PCI_LATENCY_TIMER, val);
Andre Schwarz2a293292008-07-09 18:30:44 +0200210 break;
211 case 0xb: /* LAN */
212 line = 2;
André Schwarza8e1d952009-08-27 14:48:35 +0200213 if (val)
214 pci_hose_write_config_byte(hose, dev, PCI_LATENCY_TIMER, val);
Andre Schwarz2a293292008-07-09 18:30:44 +0200215 break;
216 case 0x1a:
217 break;
218 default:
219 printf ("***pci_scan: illegal dev = 0x%08x\n", PCI_DEV (dev));
220 break;
221 }
222 pci_hose_write_config_byte(hose, dev, PCI_INTERRUPT_LINE, line);
223 }
224}
225
226struct pci_controller hose = {
227 fixup_irq:pci_mvbc_fixup_irq
228};
229
Andre Schwarz2a293292008-07-09 18:30:44 +0200230extern void pci_mpc5xxx_init(struct pci_controller *);
231
232void pci_init_board(void)
233{
Andre Schwarz2a293292008-07-09 18:30:44 +0200234 mvbc_p_init_fpga();
André Schwarza8e1d952009-08-27 14:48:35 +0200235 mv_load_fpga();
Andre Schwarz2a293292008-07-09 18:30:44 +0200236 pci_mpc5xxx_init(&hose);
237}
238
Andre Schwarz2a293292008-07-09 18:30:44 +0200239void show_boot_progress(int val)
240{
241 struct mpc5xxx_gpio *gpio = (struct mpc5xxx_gpio*)MPC5XXX_GPIO;
242
243 switch(val) {
244 case 0: /* FPGA ok */
André Schwarza8e1d952009-08-27 14:48:35 +0200245 setbits_be32(&gpio->simple_dvo, LED_G0);
Andre Schwarz2a293292008-07-09 18:30:44 +0200246 break;
André Schwarza8e1d952009-08-27 14:48:35 +0200247 case 65:
248 setbits_be32(&gpio->simple_dvo, LED_G1);
Andre Schwarz2a293292008-07-09 18:30:44 +0200249 break;
250 case 12:
André Schwarza8e1d952009-08-27 14:48:35 +0200251 setbits_be32(&gpio->simple_dvo, LED_Y);
Andre Schwarz2a293292008-07-09 18:30:44 +0200252 break;
253 case 15:
André Schwarza8e1d952009-08-27 14:48:35 +0200254 setbits_be32(&gpio->simple_dvo, LED_R);
Andre Schwarz2a293292008-07-09 18:30:44 +0200255 break;
256 default:
257 break;
258 }
259
260}
261
262void ft_board_setup(void *blob, bd_t *bd)
263{
264 ft_cpu_setup(blob, bd);
Andre Schwarz2a293292008-07-09 18:30:44 +0200265}
Ben Warrencba88512008-08-31 10:39:12 -0700266
267int board_eth_init(bd_t *bis)
268{
Ben Warren050019d2008-08-31 10:44:19 -0700269 cpu_eth_init(bis); /* Built in FEC comes first */
270 return pci_eth_init(bis);
Ben Warrencba88512008-08-31 10:39:12 -0700271}