blob: 2b3ded17629d9ba2bceb98399d59970cedec119f [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>
27#include <spd.h>
28#include <miiphy.h>
29
30#ifdef CONFIG_PCI
31#include <asm/mpc8349_pci.h>
32#include <pci.h>
33#endif
34
35#ifdef CONFIG_SPD_EEPROM
36#include <spd_sdram.h>
37#else
38#include <asm/mmu.h>
39#endif
Kim Phillipsbf0b5422006-11-01 00:10:40 -060040#if defined(CONFIG_OF_FLAT_TREE)
41#include <ft_build.h>
42#endif
Timur Tabi2ad6b512006-10-31 18:44:42 -060043
44#ifndef CONFIG_SPD_EEPROM
45/*************************************************************************
46 * fixed sdram init -- doesn't use serial presence detect.
47 ************************************************************************/
48int fixed_sdram(void)
49{
Timur Tabid239d742006-11-03 12:00:28 -060050 volatile immap_t *im = (immap_t *) CFG_IMMR;
Timur Tabi2ad6b512006-10-31 18:44:42 -060051 u32 ddr_size; /* The size of RAM, in bytes */
52 u32 ddr_size_log2 = 0;
53
54 for (ddr_size = CFG_DDR_SIZE * 0x100000; ddr_size > 1; ddr_size >>= 1) {
55 if (ddr_size & 1) {
56 return -1;
57 }
58 ddr_size_log2++;
59 }
60
61 im->sysconf.ddrlaw[0].ar =
62 LAWAR_EN | ((ddr_size_log2 - 1) & LAWAR_SIZE);
63 im->sysconf.ddrlaw[0].bar = (CFG_DDR_SDRAM_BASE >> 12) & 0xfffff;
64
65 /* Only one CS0 for DDR */
66 im->ddr.csbnds[0].csbnds = 0x0000000f;
67 im->ddr.cs_config[0] = CFG_DDR_CONFIG;
68
69 debug("cs0_bnds = 0x%08x\n", im->ddr.csbnds[0].csbnds);
70 debug("cs0_config = 0x%08x\n", im->ddr.cs_config[0]);
71
72 debug("DDR:bar=0x%08x\n", im->sysconf.ddrlaw[0].bar);
73 debug("DDR:ar=0x%08x\n", im->sysconf.ddrlaw[0].ar);
74
75 im->ddr.timing_cfg_1 = CFG_DDR_TIMING_1;
76 im->ddr.timing_cfg_2 = CFG_DDR_TIMING_2;/* Was "2 << TIMING_CFG2_WR_DATA_DELAY_SHIFT" */
77 im->ddr.sdram_cfg = SDRAM_CFG_SREN | SDRAM_CFG_SDRAM_TYPE_DDR;
78 im->ddr.sdram_mode =
79 (0x0000 << SDRAM_MODE_ESD_SHIFT) | (0x0032 << SDRAM_MODE_SD_SHIFT);
80 im->ddr.sdram_interval =
81 (0x0410 << SDRAM_INTERVAL_REFINT_SHIFT) | (0x0100 <<
82 SDRAM_INTERVAL_BSTOPRE_SHIFT);
83 im->ddr.sdram_clk_cntl =
84 DDR_SDRAM_CLK_CNTL_SS_EN | DDR_SDRAM_CLK_CNTL_CLK_ADJUST_05;
85
86 udelay(200);
87
88 im->ddr.sdram_cfg |= SDRAM_CFG_MEM_EN;
89
90 debug("DDR:timing_cfg_1=0x%08x\n", im->ddr.timing_cfg_1);
91 debug("DDR:timing_cfg_2=0x%08x\n", im->ddr.timing_cfg_2);
92 debug("DDR:sdram_mode=0x%08x\n", im->ddr.sdram_mode);
93 debug("DDR:sdram_interval=0x%08x\n", im->ddr.sdram_interval);
94 debug("DDR:sdram_cfg=0x%08x\n", im->ddr.sdram_cfg);
95
96 return CFG_DDR_SIZE;
97}
98#endif
99
100#ifdef CONFIG_PCI
101/*
102 * Initialize PCI Devices, report devices found
103 */
104#ifndef CONFIG_PCI_PNP
105static struct pci_config_table pci_mpc83xxmitx_config_table[] = {
106 {
107 PCI_ANY_ID,
108 PCI_ANY_ID,
109 PCI_ANY_ID,
110 PCI_ANY_ID,
111 0x0f,
112 PCI_ANY_ID,
113 pci_cfgfunc_config_device,
114 {
115 PCI_ENET0_IOADDR,
116 PCI_ENET0_MEMADDR,
117 PCI_COMMAND_MEMORY | PCI_COMMAND_MASTER}
118 },
119 {}
120}
121#endif
122
123volatile static struct pci_controller hose[] = {
124 {
125#ifndef CONFIG_PCI_PNP
126 config_table:pci_mpc83xxmitx_config_table,
127#endif
128 },
129 {
130#ifndef CONFIG_PCI_PNP
131 config_table:pci_mpc83xxmitx_config_table,
132#endif
133 }
134};
135#endif /* CONFIG_PCI */
136
Timur Tabi2ad6b512006-10-31 18:44:42 -0600137long int initdram(int board_type)
138{
Timur Tabid239d742006-11-03 12:00:28 -0600139 volatile immap_t *im = (immap_t *) CFG_IMMR;
Timur Tabi2ad6b512006-10-31 18:44:42 -0600140 u32 msize = 0;
141#ifdef CONFIG_DDR_ECC
142 volatile ddr83xx_t *ddr = &im->ddr;
143#endif
144
145 if ((im->sysconf.immrbar & IMMRBAR_BASE_ADDR) != (u32) im)
146 return -1;
147
148 /* DDR SDRAM - Main SODIMM */
149 im->sysconf.ddrlaw[0].bar = CFG_DDR_BASE & LAWBAR_BAR;
150#ifdef CONFIG_SPD_EEPROM
151 msize = spd_sdram();
152#else
153 msize = fixed_sdram();
154#endif
155
156#ifdef CONFIG_DDR_ECC
157 if (ddr->sdram_cfg & SDRAM_CFG_ECC_EN)
158 /* Unlike every other board, on the 83xx spd_sdram() returns
159 megabytes instead of just bytes. That's why we need to
160 multiple by 1MB when calling ddr_enable_ecc(). */
161 ddr_enable_ecc(msize * 1048576);
162#endif
163
Timur Tabi2ad6b512006-10-31 18:44:42 -0600164 puts(" DDR RAM: ");
Timur Tabifab16802007-01-31 15:54:20 -0600165 /* return total bus RAM size(bytes) */
Timur Tabi2ad6b512006-10-31 18:44:42 -0600166 return msize * 1024 * 1024;
167}
168
169int checkboard(void)
170{
Timur Tabi7a78f142007-01-31 15:54:29 -0600171#ifdef CONFIG_MPC8349ITX
Timur Tabibe5e6182006-11-03 19:15:00 -0600172 puts("Board: Freescale MPC8349E-mITX\n");
Timur Tabi7a78f142007-01-31 15:54:29 -0600173#else
174 puts("Board: Freescale MPC8349E-mITX-GP\n");
175#endif
Timur Tabi2ad6b512006-10-31 18:44:42 -0600176
177 return 0;
178}
179
Timur Tabibe5e6182006-11-03 19:15:00 -0600180/*
Timur Tabi2ad6b512006-10-31 18:44:42 -0600181 * Implement a work-around for a hardware problem with compact
182 * flash.
183 *
184 * Program the UPM if compact flash is enabled.
185 */
186int misc_init_f(void)
187{
Timur Tabi7a78f142007-01-31 15:54:29 -0600188#ifdef CONFIG_VSC7385
Timur Tabi2ad6b512006-10-31 18:44:42 -0600189 volatile u32 *vsc7385_cpuctrl;
190
191 /* 0x1c0c0 is the VSC7385 CPU Control (CPUCTRL) Register. The power up
192 default of VSC7385 L1_IRQ and L2_IRQ requests are active high. That
193 means it is 0 when the IRQ is not active. This makes the wire-AND
194 logic always assert IRQ7 to CPU even if there is no request from the
195 switch. Since the compact flash and the switch share the same IRQ,
196 the Linux kernel will think that the compact flash is requesting irq
197 and get stuck when it tries to clear the IRQ. Thus we need to set
198 the L2_IRQ0 and L2_IRQ1 to active low.
199
200 The following code sets the L1_IRQ and L2_IRQ polarity to active low.
201 Without this code, compact flash will not work in Linux because
202 unlike U-Boot, Linux uses the IRQ, so this code is necessary if we
203 don't enable compact flash for U-Boot.
204 */
205
206 vsc7385_cpuctrl = (volatile u32 *)(CFG_VSC7385_BASE + 0x1c0c0);
207 *vsc7385_cpuctrl |= 0x0c;
Timur Tabi7a78f142007-01-31 15:54:29 -0600208#endif
Timur Tabi2ad6b512006-10-31 18:44:42 -0600209
210#ifdef CONFIG_COMPACT_FLASH
211 /* UPM Table Configuration Code */
212 static uint UPMATable[] = {
213 0xcffffc00, 0x0fffff00, 0x0fafff00, 0x0fafff00,
214 0x0faffd00, 0x0faffc04, 0x0ffffc00, 0x3ffffc01,
215 0xfffffc00, 0xfffffc00, 0xfffffc00, 0xfffffc00,
216 0xfffffc00, 0xfffffc00, 0xfffffc00, 0xfffffc00,
217 0xfffffc00, 0xfffffc00, 0xfffffc00, 0xfff7fc00,
218 0xfffffc00, 0xfffffc00, 0xfffffc00, 0xfffffc01,
219 0xcffffc00, 0x0fffff00, 0x0ff3ff00, 0x0ff3ff00,
220 0x0ff3fe00, 0x0ffffc00, 0x3ffffc05, 0xfffffc00,
221 0xfffffc00, 0xfffffc00, 0xfffffc00, 0xfffffc00,
222 0xfffffc00, 0xfffffc00, 0xfffffc00, 0xfffffc00,
223 0xfffffc00, 0xfffffc00, 0xfffffc00, 0xfffffc00,
224 0xfffffc00, 0xfffffc00, 0xfffffc00, 0xfffffc01,
225 0xfffffc00, 0xfffffc00, 0xfffffc00, 0xfffffc00,
226 0xfffffc00, 0xfffffc00, 0xfffffc00, 0xfffffc00,
227 0xfffffc00, 0xfffffc00, 0xfffffc00, 0xfffffc01,
228 0xfffffc00, 0xfffffc00, 0xfffffc00, 0xfffffc01
229 };
Timur Tabid239d742006-11-03 12:00:28 -0600230 volatile immap_t *immap = (immap_t *) CFG_IMMR;
Timur Tabi2ad6b512006-10-31 18:44:42 -0600231 volatile lbus83xx_t *lbus = &immap->lbus;
232
233 lbus->bank[3].br = CFG_BR3_PRELIM;
234 lbus->bank[3].or = CFG_OR3_PRELIM;
235
236 /* Program the MAMR. RFEN=0, OP=00, UWPL=1, AM=000, DS=01, G0CL=000,
237 GPL4=0, RLF=0001, WLF=0001, TLF=0001, MAD=000000
238 */
239 lbus->mamr = 0x08404440;
240
241 upmconfig(0, UPMATable, sizeof(UPMATable) / sizeof(UPMATable[0]));
242
243 puts("UPMA: Configured for compact flash\n");
244#endif
245
246 return 0;
247}
248
Timur Tabibe5e6182006-11-03 19:15:00 -0600249/*
Timur Tabi2ad6b512006-10-31 18:44:42 -0600250 * Make sure the EEPROM has the HRCW correctly programmed.
251 * Make sure the RTC is correctly programmed.
252 *
253 * The MPC8349E-mITX can be configured to load the HRCW from
254 * EEPROM instead of flash. This is controlled via jumpers
255 * LGPL0, 1, and 3. Normally, these jumpers are set to 000 (all
256 * jumpered), but if they're set to 001 or 010, then the HRCW is
257 * read from the "I2C EEPROM".
258 *
259 * This function makes sure that the I2C EEPROM is programmed
260 * correctly.
261 */
262int misc_init_r(void)
263{
264 int rc = 0;
265
266#ifdef CONFIG_HARD_I2C
267
Sam Song05031db2006-12-14 19:03:21 +0800268 unsigned int orig_bus = i2c_get_bus_num();
Timur Tabibe5e6182006-11-03 19:15:00 -0600269 u8 i2c_data;
Timur Tabi2ad6b512006-10-31 18:44:42 -0600270
271#ifdef CFG_I2C_RTC_ADDR
Timur Tabie857a5b2006-11-28 12:09:35 -0600272 u8 ds1339_data[17];
Timur Tabi2ad6b512006-10-31 18:44:42 -0600273#endif
274
275#ifdef CFG_I2C_EEPROM_ADDR
276 static u8 eeprom_data[] = /* HRCW data */
277 {
Timur Tabi7a78f142007-01-31 15:54:29 -0600278 0xAA, 0x55, 0xAA, /* Preamble */
279 0x7C, /* ACS=0, BYTE_EN=1111, CONT=1 */
280 0x02, 0x40, /* RCWL ADDR=0x0_0900 */
281 (CFG_HRCW_LOW >> 24) & 0xFF,
282 (CFG_HRCW_LOW >> 16) & 0xFF,
283 (CFG_HRCW_LOW >> 8) & 0xFF,
284 CFG_HRCW_LOW & 0xFF,
285 0x7C, /* ACS=0, BYTE_EN=1111, CONT=1 */
286 0x02, 0x41, /* RCWH ADDR=0x0_0904 */
287 (CFG_HRCW_HIGH >> 24) & 0xFF,
288 (CFG_HRCW_HIGH >> 16) & 0xFF,
289 (CFG_HRCW_HIGH >> 8) & 0xFF,
290 CFG_HRCW_HIGH & 0xFF
Timur Tabi2ad6b512006-10-31 18:44:42 -0600291 };
292
293 u8 data[sizeof(eeprom_data)];
Timur Tabibe5e6182006-11-03 19:15:00 -0600294#endif
Timur Tabi2ad6b512006-10-31 18:44:42 -0600295
Timur Tabibe5e6182006-11-03 19:15:00 -0600296 printf("Board revision: ");
Timur Tabi9ca880a2006-10-31 21:23:16 -0600297 i2c_set_bus_num(1);
Timur Tabibe5e6182006-11-03 19:15:00 -0600298 if (i2c_read(CFG_I2C_8574A_ADDR2, 0, 0, &i2c_data, sizeof(i2c_data)) == 0)
299 printf("%u.%u (PCF8475A)\n", (i2c_data & 0x02) >> 1, i2c_data & 0x01);
300 else if (i2c_read(CFG_I2C_8574_ADDR2, 0, 0, &i2c_data, sizeof(i2c_data)) == 0)
301 printf("%u.%u (PCF8475)\n", (i2c_data & 0x02) >> 1, i2c_data & 0x01);
302 else {
303 printf("Unknown\n");
304 rc = 1;
305 }
306
307#ifdef CFG_I2C_EEPROM_ADDR
308 i2c_set_bus_num(0);
Timur Tabi2ad6b512006-10-31 18:44:42 -0600309
310 if (i2c_read(CFG_I2C_EEPROM_ADDR, 0, 2, data, sizeof(data)) == 0) {
311 if (memcmp(data, eeprom_data, sizeof(data)) != 0) {
312 if (i2c_write
313 (CFG_I2C_EEPROM_ADDR, 0, 2, eeprom_data,
314 sizeof(eeprom_data)) != 0) {
315 puts("Failure writing the HRCW to EEPROM via I2C.\n");
316 rc = 1;
317 }
318 }
319 } else {
320 puts("Failure reading the HRCW from EEPROM via I2C.\n");
321 rc = 1;
322 }
323#endif
324
325#ifdef CFG_I2C_RTC_ADDR
Timur Tabibe5e6182006-11-03 19:15:00 -0600326 i2c_set_bus_num(1);
Timur Tabi2ad6b512006-10-31 18:44:42 -0600327
328 if (i2c_read(CFG_I2C_RTC_ADDR, 0, 1, ds1339_data, sizeof(ds1339_data))
329 == 0) {
330
331 /* Work-around for MPC8349E-mITX bug #13601.
332 If the RTC does not contain valid register values, the DS1339
333 Linux driver will not work.
334 */
335
336 /* Make sure status register bits 6-2 are zero */
337 ds1339_data[0x0f] &= ~0x7c;
338
339 /* Check for a valid day register value */
340 ds1339_data[0x03] &= ~0xf8;
341 if (ds1339_data[0x03] == 0) {
342 ds1339_data[0x03] = 1;
343 }
344
345 /* Check for a valid date register value */
346 ds1339_data[0x04] &= ~0xc0;
347 if ((ds1339_data[0x04] == 0) ||
348 ((ds1339_data[0x04] & 0x0f) > 9) ||
349 (ds1339_data[0x04] >= 0x32)) {
350 ds1339_data[0x04] = 1;
351 }
352
353 /* Check for a valid month register value */
354 ds1339_data[0x05] &= ~0x60;
355
356 if ((ds1339_data[0x05] == 0) ||
357 ((ds1339_data[0x05] & 0x0f) > 9) ||
358 ((ds1339_data[0x05] >= 0x13)
359 && (ds1339_data[0x05] <= 0x19))) {
360 ds1339_data[0x05] = 1;
361 }
362
363 /* Enable Oscillator and rate select */
364 ds1339_data[0x0e] = 0x1c;
365
366 /* Work-around for MPC8349E-mITX bug #13330.
367 Ensure that the RTC control register contains the value 0x1c.
368 This affects SATA performance.
369 */
370
371 if (i2c_write
372 (CFG_I2C_RTC_ADDR, 0, 1, ds1339_data,
373 sizeof(ds1339_data))) {
374 puts("Failure writing to the RTC via I2C.\n");
375 rc = 1;
376 }
377 } else {
378 puts("Failure reading from the RTC via I2C.\n");
379 rc = 1;
380 }
381#endif
382
383 i2c_set_bus_num(orig_bus);
384#endif
385
386 return rc;
387}
Kim Phillipsbf0b5422006-11-01 00:10:40 -0600388
389#if defined(CONFIG_OF_FLAT_TREE) && defined(CONFIG_OF_BOARD_SETUP)
390void
391ft_board_setup(void *blob, bd_t *bd)
392{
393 u32 *p;
394 int len;
395
396#ifdef CONFIG_PCI
397 ft_pci_setup(blob, bd);
398#endif
399 ft_cpu_setup(blob, bd);
400
401 p = ft_get_prop(blob, "/memory/reg", &len);
402 if (p != NULL) {
403 *p++ = cpu_to_be32(bd->bi_memstart);
404 *p = cpu_to_be32(bd->bi_memsize);
405 }
406}
407#endif