blob: ec64efaba27170e097a56362ddb0de2ff48e26ab [file] [log] [blame]
Peter Tyser1c2b3292008-12-17 16:36:23 -06001/*
2 * Copyright 2008 Extreme Engineering Solutions, Inc.
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 <asm/fsl_ddr_sdram.h>
25#include <asm/mmu.h>
26
27#if defined(CONFIG_DDR_ECC) && !defined(CONFIG_ECC_INIT_VIA_DDRCONTROLLER)
28extern void ddr_enable_ecc(unsigned int dram_size);
29#endif
30
31phys_size_t initdram(int board_type)
32{
33 phys_size_t dram_size = fsl_ddr_sdram();
34
Peter Tysere7d65972009-05-22 10:26:36 -050035#ifdef CONFIG_MPC85xx
Peter Tyser1c2b3292008-12-17 16:36:23 -060036 dram_size = setup_ddr_tlbs(dram_size / 0x100000);
Peter Tyser1c2b3292008-12-17 16:36:23 -060037 dram_size *= 0x100000;
Peter Tysere7d65972009-05-22 10:26:36 -050038#endif
Peter Tyser1c2b3292008-12-17 16:36:23 -060039
40#if defined(CONFIG_DDR_ECC) && !defined(CONFIG_ECC_INIT_VIA_DDRCONTROLLER)
41 /* Initialize and enable DDR ECC */
42 ddr_enable_ecc(dram_size);
43#endif
44
45 return dram_size;
46}
47
48#if defined(CONFIG_DDR_ECC) || (CONFIG_NUM_DDR_CONTROLLERS > 1)
49void board_add_ram_info(int use_default)
50{
51#if (CONFIG_NUM_DDR_CONTROLLERS > 1)
Peter Tysere7d65972009-05-22 10:26:36 -050052#if defined(CONFIG_MPC85xx)
Peter Tyser1c2b3292008-12-17 16:36:23 -060053 volatile ccsr_ddr_t *ddr1 = (void *)(CONFIG_SYS_MPC85xx_DDR_ADDR);
Peter Tysere7d65972009-05-22 10:26:36 -050054#elif defined(CONFIG_MPC86xx)
55 volatile immap_t *immap = (immap_t *)CONFIG_SYS_IMMR;
56 volatile ccsr_ddr_t *ddr1 = &immap->im_ddr1;
57#endif
Peter Tyser1c2b3292008-12-17 16:36:23 -060058#endif
59
60 puts(" (");
61
62#if (CONFIG_NUM_DDR_CONTROLLERS > 1)
63 /* Print interleaving information */
64 if (ddr1->cs0_config & 0x20000000) {
65 switch ((ddr1->cs0_config >> 24) & 0xf) {
66 case 0:
67 puts("cache line");
68 break;
69 case 1:
70 puts("page");
71 break;
72 case 2:
73 puts("bank");
74 break;
75 case 3:
76 puts("super-bank");
77 break;
78 default:
79 puts("invalid");
80 break;
81 }
82 } else {
83 puts("no");
84 }
85
86 puts(" interleaving");
87#endif
88
89#if (CONFIG_NUM_DDR_CONTROLLERS > 1) && defined(CONFIG_DDR_ECC)
90 puts(", ");
91#endif
92
93#if defined(CONFIG_DDR_ECC)
94 puts("ECC enabled");
95#endif
96
97 puts(")");
98}
99#endif /* CONFIG_DDR_ECC || CONFIG_NUM_DDR_CONTROLLERS > 1 */