blob: 704f9636bcab0972806bef10a63d65eeec0f1dfe [file] [log] [blame]
Timur Tabi2ad6b512006-10-31 18:44:42 -06001/*
2 * Copyright (C) Freescale Semiconductor, Inc. 2006. All rights reserved.
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
14 * MERCHANTABILITY or FITNESS for A PARTICULAR PURPOSE. See the
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 <ioports.h>
25#include <mpc83xx.h>
26#include <i2c.h>
Timur Tabi2ad6b512006-10-31 18:44:42 -060027#include <miiphy.h>
Timur Tabi89c77842008-02-08 13:15:55 -060028#include <vsc7385.h>
Timur Tabi2ad6b512006-10-31 18:44:42 -060029#ifdef CONFIG_PCI
30#include <asm/mpc8349_pci.h>
31#include <pci.h>
32#endif
Timur Tabi2ad6b512006-10-31 18:44:42 -060033#include <spd_sdram.h>
Timur Tabi2ad6b512006-10-31 18:44:42 -060034#include <asm/mmu.h>
Kim Phillipsb3458d22007-12-20 15:57:28 -060035#if defined(CONFIG_OF_LIBFDT)
Kim Phillips3fde9e82007-08-15 22:30:33 -050036#include <libfdt.h>
Kim Phillipsbf0b5422006-11-01 00:10:40 -060037#endif
Timur Tabi2ad6b512006-10-31 18:44:42 -060038
39#ifndef CONFIG_SPD_EEPROM
40/*************************************************************************
41 * fixed sdram init -- doesn't use serial presence detect.
42 ************************************************************************/
43int fixed_sdram(void)
44{
Timur Tabid239d742006-11-03 12:00:28 -060045 volatile immap_t *im = (immap_t *) CFG_IMMR;
Timur Tabi2ad6b512006-10-31 18:44:42 -060046 u32 ddr_size; /* The size of RAM, in bytes */
47 u32 ddr_size_log2 = 0;
48
49 for (ddr_size = CFG_DDR_SIZE * 0x100000; ddr_size > 1; ddr_size >>= 1) {
50 if (ddr_size & 1) {
51 return -1;
52 }
53 ddr_size_log2++;
54 }
55
56 im->sysconf.ddrlaw[0].ar =
57 LAWAR_EN | ((ddr_size_log2 - 1) & LAWAR_SIZE);
58 im->sysconf.ddrlaw[0].bar = (CFG_DDR_SDRAM_BASE >> 12) & 0xfffff;
59
60 /* Only one CS0 for DDR */
61 im->ddr.csbnds[0].csbnds = 0x0000000f;
62 im->ddr.cs_config[0] = CFG_DDR_CONFIG;
63
64 debug("cs0_bnds = 0x%08x\n", im->ddr.csbnds[0].csbnds);
65 debug("cs0_config = 0x%08x\n", im->ddr.cs_config[0]);
66
67 debug("DDR:bar=0x%08x\n", im->sysconf.ddrlaw[0].bar);
68 debug("DDR:ar=0x%08x\n", im->sysconf.ddrlaw[0].ar);
69
70 im->ddr.timing_cfg_1 = CFG_DDR_TIMING_1;
71 im->ddr.timing_cfg_2 = CFG_DDR_TIMING_2;/* Was "2 << TIMING_CFG2_WR_DATA_DELAY_SHIFT" */
Kim Phillipsbbea46f2007-08-16 22:52:48 -050072 im->ddr.sdram_cfg = SDRAM_CFG_SREN | SDRAM_CFG_SDRAM_TYPE_DDR1;
Timur Tabi2ad6b512006-10-31 18:44:42 -060073 im->ddr.sdram_mode =
74 (0x0000 << SDRAM_MODE_ESD_SHIFT) | (0x0032 << SDRAM_MODE_SD_SHIFT);
75 im->ddr.sdram_interval =
76 (0x0410 << SDRAM_INTERVAL_REFINT_SHIFT) | (0x0100 <<
77 SDRAM_INTERVAL_BSTOPRE_SHIFT);
Timur Tabif64702b2007-04-30 13:59:50 -050078 im->ddr.sdram_clk_cntl = CFG_DDR_SDRAM_CLK_CNTL;
Timur Tabi2ad6b512006-10-31 18:44:42 -060079
80 udelay(200);
81
82 im->ddr.sdram_cfg |= SDRAM_CFG_MEM_EN;
83
84 debug("DDR:timing_cfg_1=0x%08x\n", im->ddr.timing_cfg_1);
85 debug("DDR:timing_cfg_2=0x%08x\n", im->ddr.timing_cfg_2);
86 debug("DDR:sdram_mode=0x%08x\n", im->ddr.sdram_mode);
87 debug("DDR:sdram_interval=0x%08x\n", im->ddr.sdram_interval);
88 debug("DDR:sdram_cfg=0x%08x\n", im->ddr.sdram_cfg);
89
90 return CFG_DDR_SIZE;
91}
92#endif
93
94#ifdef CONFIG_PCI
95/*
96 * Initialize PCI Devices, report devices found
97 */
98#ifndef CONFIG_PCI_PNP
99static struct pci_config_table pci_mpc83xxmitx_config_table[] = {
100 {
101 PCI_ANY_ID,
102 PCI_ANY_ID,
103 PCI_ANY_ID,
104 PCI_ANY_ID,
105 0x0f,
106 PCI_ANY_ID,
107 pci_cfgfunc_config_device,
108 {
109 PCI_ENET0_IOADDR,
110 PCI_ENET0_MEMADDR,
111 PCI_COMMAND_MEMORY | PCI_COMMAND_MASTER}
112 },
113 {}
114}
115#endif
116
117volatile static struct pci_controller hose[] = {
118 {
119#ifndef CONFIG_PCI_PNP
120 config_table:pci_mpc83xxmitx_config_table,
121#endif
122 },
123 {
124#ifndef CONFIG_PCI_PNP
125 config_table:pci_mpc83xxmitx_config_table,
126#endif
127 }
128};
129#endif /* CONFIG_PCI */
130
Timur Tabi2ad6b512006-10-31 18:44:42 -0600131long int initdram(int board_type)
132{
Timur Tabid239d742006-11-03 12:00:28 -0600133 volatile immap_t *im = (immap_t *) CFG_IMMR;
Timur Tabi2ad6b512006-10-31 18:44:42 -0600134 u32 msize = 0;
135#ifdef CONFIG_DDR_ECC
136 volatile ddr83xx_t *ddr = &im->ddr;
137#endif
138
139 if ((im->sysconf.immrbar & IMMRBAR_BASE_ADDR) != (u32) im)
140 return -1;
141
142 /* DDR SDRAM - Main SODIMM */
143 im->sysconf.ddrlaw[0].bar = CFG_DDR_BASE & LAWBAR_BAR;
144#ifdef CONFIG_SPD_EEPROM
145 msize = spd_sdram();
146#else
147 msize = fixed_sdram();
148#endif
149
150#ifdef CONFIG_DDR_ECC
151 if (ddr->sdram_cfg & SDRAM_CFG_ECC_EN)
152 /* Unlike every other board, on the 83xx spd_sdram() returns
153 megabytes instead of just bytes. That's why we need to
154 multiple by 1MB when calling ddr_enable_ecc(). */
155 ddr_enable_ecc(msize * 1048576);
156#endif
157
Timur Tabifab16802007-01-31 15:54:20 -0600158 /* return total bus RAM size(bytes) */
Timur Tabi2ad6b512006-10-31 18:44:42 -0600159 return msize * 1024 * 1024;
160}
161
162int checkboard(void)
163{
Timur Tabi7a78f142007-01-31 15:54:29 -0600164#ifdef CONFIG_MPC8349ITX
Timur Tabibe5e6182006-11-03 19:15:00 -0600165 puts("Board: Freescale MPC8349E-mITX\n");
Timur Tabi7a78f142007-01-31 15:54:29 -0600166#else
167 puts("Board: Freescale MPC8349E-mITX-GP\n");
168#endif
Timur Tabi2ad6b512006-10-31 18:44:42 -0600169
170 return 0;
171}
172
Timur Tabibe5e6182006-11-03 19:15:00 -0600173/*
Timur Tabi2ad6b512006-10-31 18:44:42 -0600174 * Implement a work-around for a hardware problem with compact
175 * flash.
176 *
177 * Program the UPM if compact flash is enabled.
178 */
179int misc_init_f(void)
180{
Timur Tabi89c77842008-02-08 13:15:55 -0600181#ifdef CONFIG_VSC7385_ENET
Timur Tabi2ad6b512006-10-31 18:44:42 -0600182 volatile u32 *vsc7385_cpuctrl;
183
184 /* 0x1c0c0 is the VSC7385 CPU Control (CPUCTRL) Register. The power up
185 default of VSC7385 L1_IRQ and L2_IRQ requests are active high. That
186 means it is 0 when the IRQ is not active. This makes the wire-AND
187 logic always assert IRQ7 to CPU even if there is no request from the
188 switch. Since the compact flash and the switch share the same IRQ,
189 the Linux kernel will think that the compact flash is requesting irq
190 and get stuck when it tries to clear the IRQ. Thus we need to set
191 the L2_IRQ0 and L2_IRQ1 to active low.
192
193 The following code sets the L1_IRQ and L2_IRQ polarity to active low.
194 Without this code, compact flash will not work in Linux because
195 unlike U-Boot, Linux uses the IRQ, so this code is necessary if we
196 don't enable compact flash for U-Boot.
197 */
198
199 vsc7385_cpuctrl = (volatile u32 *)(CFG_VSC7385_BASE + 0x1c0c0);
200 *vsc7385_cpuctrl |= 0x0c;
Timur Tabi7a78f142007-01-31 15:54:29 -0600201#endif
Timur Tabi2ad6b512006-10-31 18:44:42 -0600202
203#ifdef CONFIG_COMPACT_FLASH
204 /* UPM Table Configuration Code */
205 static uint UPMATable[] = {
206 0xcffffc00, 0x0fffff00, 0x0fafff00, 0x0fafff00,
207 0x0faffd00, 0x0faffc04, 0x0ffffc00, 0x3ffffc01,
208 0xfffffc00, 0xfffffc00, 0xfffffc00, 0xfffffc00,
209 0xfffffc00, 0xfffffc00, 0xfffffc00, 0xfffffc00,
210 0xfffffc00, 0xfffffc00, 0xfffffc00, 0xfff7fc00,
211 0xfffffc00, 0xfffffc00, 0xfffffc00, 0xfffffc01,
212 0xcffffc00, 0x0fffff00, 0x0ff3ff00, 0x0ff3ff00,
213 0x0ff3fe00, 0x0ffffc00, 0x3ffffc05, 0xfffffc00,
214 0xfffffc00, 0xfffffc00, 0xfffffc00, 0xfffffc00,
215 0xfffffc00, 0xfffffc00, 0xfffffc00, 0xfffffc00,
216 0xfffffc00, 0xfffffc00, 0xfffffc00, 0xfffffc00,
217 0xfffffc00, 0xfffffc00, 0xfffffc00, 0xfffffc01,
218 0xfffffc00, 0xfffffc00, 0xfffffc00, 0xfffffc00,
219 0xfffffc00, 0xfffffc00, 0xfffffc00, 0xfffffc00,
220 0xfffffc00, 0xfffffc00, 0xfffffc00, 0xfffffc01,
221 0xfffffc00, 0xfffffc00, 0xfffffc00, 0xfffffc01
222 };
Timur Tabid239d742006-11-03 12:00:28 -0600223 volatile immap_t *immap = (immap_t *) CFG_IMMR;
Timur Tabi2ad6b512006-10-31 18:44:42 -0600224 volatile lbus83xx_t *lbus = &immap->lbus;
225
226 lbus->bank[3].br = CFG_BR3_PRELIM;
227 lbus->bank[3].or = CFG_OR3_PRELIM;
228
229 /* Program the MAMR. RFEN=0, OP=00, UWPL=1, AM=000, DS=01, G0CL=000,
230 GPL4=0, RLF=0001, WLF=0001, TLF=0001, MAD=000000
231 */
232 lbus->mamr = 0x08404440;
233
234 upmconfig(0, UPMATable, sizeof(UPMATable) / sizeof(UPMATable[0]));
235
236 puts("UPMA: Configured for compact flash\n");
237#endif
238
239 return 0;
240}
241
Timur Tabibe5e6182006-11-03 19:15:00 -0600242/*
Timur Tabi89c77842008-02-08 13:15:55 -0600243 * Miscellaneous late-boot configurations
244 *
Timur Tabi2ad6b512006-10-31 18:44:42 -0600245 * Make sure the EEPROM has the HRCW correctly programmed.
246 * Make sure the RTC is correctly programmed.
247 *
248 * The MPC8349E-mITX can be configured to load the HRCW from
249 * EEPROM instead of flash. This is controlled via jumpers
250 * LGPL0, 1, and 3. Normally, these jumpers are set to 000 (all
251 * jumpered), but if they're set to 001 or 010, then the HRCW is
252 * read from the "I2C EEPROM".
253 *
254 * This function makes sure that the I2C EEPROM is programmed
255 * correctly.
Timur Tabi89c77842008-02-08 13:15:55 -0600256 *
257 * If a VSC7385 microcode image is present, then upload it.
Timur Tabi2ad6b512006-10-31 18:44:42 -0600258 */
259int misc_init_r(void)
260{
261 int rc = 0;
262
263#ifdef CONFIG_HARD_I2C
264
Sam Song05031db2006-12-14 19:03:21 +0800265 unsigned int orig_bus = i2c_get_bus_num();
Timur Tabibe5e6182006-11-03 19:15:00 -0600266 u8 i2c_data;
Timur Tabi2ad6b512006-10-31 18:44:42 -0600267
268#ifdef CFG_I2C_RTC_ADDR
Timur Tabie857a5b2006-11-28 12:09:35 -0600269 u8 ds1339_data[17];
Timur Tabi2ad6b512006-10-31 18:44:42 -0600270#endif
271
272#ifdef CFG_I2C_EEPROM_ADDR
273 static u8 eeprom_data[] = /* HRCW data */
274 {
Timur Tabi7a78f142007-01-31 15:54:29 -0600275 0xAA, 0x55, 0xAA, /* Preamble */
276 0x7C, /* ACS=0, BYTE_EN=1111, CONT=1 */
277 0x02, 0x40, /* RCWL ADDR=0x0_0900 */
278 (CFG_HRCW_LOW >> 24) & 0xFF,
279 (CFG_HRCW_LOW >> 16) & 0xFF,
280 (CFG_HRCW_LOW >> 8) & 0xFF,
281 CFG_HRCW_LOW & 0xFF,
282 0x7C, /* ACS=0, BYTE_EN=1111, CONT=1 */
283 0x02, 0x41, /* RCWH ADDR=0x0_0904 */
284 (CFG_HRCW_HIGH >> 24) & 0xFF,
285 (CFG_HRCW_HIGH >> 16) & 0xFF,
286 (CFG_HRCW_HIGH >> 8) & 0xFF,
287 CFG_HRCW_HIGH & 0xFF
Timur Tabi2ad6b512006-10-31 18:44:42 -0600288 };
289
290 u8 data[sizeof(eeprom_data)];
Timur Tabibe5e6182006-11-03 19:15:00 -0600291#endif
Timur Tabi2ad6b512006-10-31 18:44:42 -0600292
Timur Tabibe5e6182006-11-03 19:15:00 -0600293 printf("Board revision: ");
Timur Tabi9ca880a2006-10-31 21:23:16 -0600294 i2c_set_bus_num(1);
Timur Tabibe5e6182006-11-03 19:15:00 -0600295 if (i2c_read(CFG_I2C_8574A_ADDR2, 0, 0, &i2c_data, sizeof(i2c_data)) == 0)
296 printf("%u.%u (PCF8475A)\n", (i2c_data & 0x02) >> 1, i2c_data & 0x01);
297 else if (i2c_read(CFG_I2C_8574_ADDR2, 0, 0, &i2c_data, sizeof(i2c_data)) == 0)
298 printf("%u.%u (PCF8475)\n", (i2c_data & 0x02) >> 1, i2c_data & 0x01);
299 else {
300 printf("Unknown\n");
301 rc = 1;
302 }
303
304#ifdef CFG_I2C_EEPROM_ADDR
305 i2c_set_bus_num(0);
Timur Tabi2ad6b512006-10-31 18:44:42 -0600306
307 if (i2c_read(CFG_I2C_EEPROM_ADDR, 0, 2, data, sizeof(data)) == 0) {
308 if (memcmp(data, eeprom_data, sizeof(data)) != 0) {
309 if (i2c_write
310 (CFG_I2C_EEPROM_ADDR, 0, 2, eeprom_data,
311 sizeof(eeprom_data)) != 0) {
312 puts("Failure writing the HRCW to EEPROM via I2C.\n");
313 rc = 1;
314 }
315 }
316 } else {
317 puts("Failure reading the HRCW from EEPROM via I2C.\n");
318 rc = 1;
319 }
320#endif
321
322#ifdef CFG_I2C_RTC_ADDR
Timur Tabibe5e6182006-11-03 19:15:00 -0600323 i2c_set_bus_num(1);
Timur Tabi2ad6b512006-10-31 18:44:42 -0600324
325 if (i2c_read(CFG_I2C_RTC_ADDR, 0, 1, ds1339_data, sizeof(ds1339_data))
326 == 0) {
327
328 /* Work-around for MPC8349E-mITX bug #13601.
329 If the RTC does not contain valid register values, the DS1339
330 Linux driver will not work.
331 */
332
333 /* Make sure status register bits 6-2 are zero */
334 ds1339_data[0x0f] &= ~0x7c;
335
336 /* Check for a valid day register value */
337 ds1339_data[0x03] &= ~0xf8;
338 if (ds1339_data[0x03] == 0) {
339 ds1339_data[0x03] = 1;
340 }
341
342 /* Check for a valid date register value */
343 ds1339_data[0x04] &= ~0xc0;
344 if ((ds1339_data[0x04] == 0) ||
345 ((ds1339_data[0x04] & 0x0f) > 9) ||
346 (ds1339_data[0x04] >= 0x32)) {
347 ds1339_data[0x04] = 1;
348 }
349
350 /* Check for a valid month register value */
351 ds1339_data[0x05] &= ~0x60;
352
353 if ((ds1339_data[0x05] == 0) ||
354 ((ds1339_data[0x05] & 0x0f) > 9) ||
355 ((ds1339_data[0x05] >= 0x13)
356 && (ds1339_data[0x05] <= 0x19))) {
357 ds1339_data[0x05] = 1;
358 }
359
360 /* Enable Oscillator and rate select */
361 ds1339_data[0x0e] = 0x1c;
362
363 /* Work-around for MPC8349E-mITX bug #13330.
364 Ensure that the RTC control register contains the value 0x1c.
365 This affects SATA performance.
366 */
367
368 if (i2c_write
369 (CFG_I2C_RTC_ADDR, 0, 1, ds1339_data,
370 sizeof(ds1339_data))) {
371 puts("Failure writing to the RTC via I2C.\n");
372 rc = 1;
373 }
374 } else {
375 puts("Failure reading from the RTC via I2C.\n");
376 rc = 1;
377 }
378#endif
379
380 i2c_set_bus_num(orig_bus);
381#endif
382
Timur Tabi89c77842008-02-08 13:15:55 -0600383#ifdef CONFIG_VSC7385_IMAGE
384 if (vsc7385_upload_firmware((void *) CONFIG_VSC7385_IMAGE,
385 CONFIG_VSC7385_IMAGE_SIZE)) {
386 puts("Failure uploading VSC7385 microcode.\n");
387 rc = 1;
388 }
389#endif
390
Timur Tabi2ad6b512006-10-31 18:44:42 -0600391 return rc;
392}
Kim Phillipsbf0b5422006-11-01 00:10:40 -0600393
Kim Phillips3fde9e82007-08-15 22:30:33 -0500394#if defined(CONFIG_OF_BOARD_SETUP)
395void ft_board_setup(void *blob, bd_t *bd)
Kim Phillipsbf0b5422006-11-01 00:10:40 -0600396{
Kim Phillips3fde9e82007-08-15 22:30:33 -0500397 ft_cpu_setup(blob, bd);
398#ifdef CONFIG_PCI
399 ft_pci_setup(blob, bd);
400#endif
Kim Phillipsbf0b5422006-11-01 00:10:40 -0600401}
402#endif