2 * (C) Copyright 2003-2004
3 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
5 * See file CREDITS for list of people who contributed to this
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License as
10 * published by the Free Software Foundation; either version 2 of
11 * the License, or (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
29 static long int dram_size(long int *base, long int maxsize)
31 volatile long int *addr;
33 ulong save[32]; /* to make test non-destructive */
36 for (cnt = (maxsize / sizeof (long)) >> 1; cnt > 0; cnt >>= 1) {
37 addr = base + cnt; /* pointer arith! */
43 /* write 0 to base address */
48 /* check at base address */
49 if ((val = *addr) != 0) {
54 for (cnt = 1; cnt < maxsize / sizeof (long); cnt <<= 1) {
55 addr = base + cnt; /* pointer arith! */
61 return (cnt * sizeof (long));
67 static void sdram_start (int hi_addr)
69 long hi_addr_bit = hi_addr ? 0x01000000 : 0;
71 /* unlock mode register */
72 *(vu_long *)MPC5XXX_SDRAM_CTRL = 0xd04f0000 | hi_addr_bit;
73 /* precharge all banks */
74 *(vu_long *)MPC5XXX_SDRAM_CTRL = 0xd04f0002 | hi_addr_bit;
75 /* set mode register */
76 #if defined(CONFIG_MPC5200)
77 *(vu_long *)MPC5XXX_SDRAM_MODE = 0x408d0000;
78 #elif defined(CONFIG_MGT5100)
79 *(vu_long *)MPC5XXX_SDRAM_MODE = 0x008d0000;
81 /* precharge all banks */
82 *(vu_long *)MPC5XXX_SDRAM_CTRL = 0xd04f0002 | hi_addr_bit;
84 *(vu_long *)MPC5XXX_SDRAM_CTRL = 0xd04f0004 | hi_addr_bit;
85 /* set mode register */
86 *(vu_long *)MPC5XXX_SDRAM_MODE = 0x008d0000;
87 /* normal operation */
88 *(vu_long *)MPC5XXX_SDRAM_CTRL = 0x504f0000 | hi_addr_bit;
92 long int initdram (int board_type)
98 /* configure SDRAM start/end */
99 #if defined(CONFIG_MPC5200)
100 *(vu_long *)MPC5XXX_SDRAM_CS0CFG = 0x0000001e;/* 2G at 0x0 */
101 *(vu_long *)MPC5XXX_SDRAM_CS1CFG = 0x80000000;/* disabled */
103 /* setup config registers */
104 *(vu_long *)MPC5XXX_SDRAM_CONFIG1 = 0xc2233a00;
105 *(vu_long *)MPC5XXX_SDRAM_CONFIG2 = 0x88b70004;
107 #elif defined(CONFIG_MGT5100)
108 *(vu_long *)MPC5XXX_SDRAM_START = 0x00000000;
109 *(vu_long *)MPC5XXX_SDRAM_STOP = 0x0000ffff;/* 2G */
110 *(vu_long *)MPC5XXX_ADDECR |= (1 << 22); /* Enable SDRAM */
112 /* setup config registers */
113 *(vu_long *)MPC5XXX_SDRAM_CONFIG1 = 0xc2222600;
114 *(vu_long *)MPC5XXX_SDRAM_CONFIG2 = 0x88b70004;
116 /* address select register */
117 *(vu_long *)MPC5XXX_SDRAM_XLBSEL = 0x03000000;
120 test1 = dram_size((ulong *)CFG_SDRAM_BASE, 0x80000000);
122 test2 = dram_size((ulong *)CFG_SDRAM_BASE, 0x80000000);
129 #if defined(CONFIG_MPC5200)
130 *(vu_long *)MPC5XXX_SDRAM_CS0CFG =
131 (0x13 + __builtin_ffs(dramsize >> 20) - 1);
132 *(vu_long *)MPC5XXX_SDRAM_CS1CFG = dramsize; /* disabled */
133 #elif defined(CONFIG_MGT5100)
134 *(vu_long *)MPC5XXX_SDRAM_STOP = ((dramsize - 1) >> 15);
138 #ifdef CONFIG_MGT5100
139 *(vu_long *)MPC5XXX_ADDECR |= (1 << 22); /* Enable SDRAM */
140 dramsize = ((*(vu_long *)MPC5XXX_SDRAM_STOP + 1) << 15);
142 dramsize = ((1 << (*(vu_long *)MPC5XXX_SDRAM_CS0CFG - 0x13)) << 20);
144 #endif /* CFG_RAMBOOT */
145 /* return total ram size */
149 int checkboard (void)
151 #if defined(CONFIG_MPC5200)
152 puts ("Board: MicroSys PM520 \n");
153 #elif defined(CONFIG_MGT5100)
154 puts ("Board: MicroSys PM510 \n");
159 void flash_preinit(void)
162 * Now, when we are in RAM, enable flash write
163 * access for detection process.
164 * Note that CS_BOOT cannot be cleared when
165 * executing in flash.
167 #if defined(CONFIG_MGT5100)
168 *(vu_long *)MPC5XXX_ADDECR &= ~(1 << 25); /* disable CS_BOOT */
169 *(vu_long *)MPC5XXX_ADDECR |= (1 << 16); /* enable CS0 */
171 *(vu_long *)MPC5XXX_BOOTCS_CFG &= ~0x1; /* clear RO */
174 void flash_afterinit(ulong size)
176 if (size == 0x800000) { /* adjust mapping */
177 *(vu_long *)MPC5XXX_BOOTCS_START = *(vu_long *)MPC5XXX_CS0_START =
178 START_REG(CFG_BOOTCS_START | size);
179 *(vu_long *)MPC5XXX_BOOTCS_STOP = *(vu_long *)MPC5XXX_CS0_STOP =
180 STOP_REG(CFG_BOOTCS_START | size, size);
185 static struct pci_controller hose;
187 extern void pci_mpc5xxx_init(struct pci_controller *);
189 void pci_init_board(void)
191 pci_mpc5xxx_init(&hose);