Blame view
board/RPXClassic/RPXClassic.c
6.54 KB
5b1d71372 Initial revision |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 |
/* * (C) Copyright 2001 * Stäubli Faverges - <www.staubli.com> * Pierre AUBERT p.aubert@staubli.com * U-Boot port on RPXClassic LF (CLLF_BW31) board * * (C) Copyright 2000 * Wolfgang Denk, DENX Software Engineering, wd@denx.de. * * See file CREDITS for list of people who contributed to this * project. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License as * published by the Free Software Foundation; either version 2 of * the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, * MA 02111-1307 USA */ #include <common.h> #include <i2c.h> #include <config.h> #include <mpc8xx.h> /* ------------------------------------------------------------------------- */ static long int dram_size (long int, long int *, long int); static unsigned char aschex_to_byte (unsigned char *cp); /* ------------------------------------------------------------------------- */ #define _NOT_USED_ 0xFFFFCC25 const uint sdram_table[] = { /* * Single Read. (Offset 00h in UPMA RAM) */ 0xCFFFCC24, 0x0FFFCC04, 0X0CAFCC04, 0X03AFCC08, 0x3FBFCC27, /* last */ _NOT_USED_, _NOT_USED_, _NOT_USED_, /* * Burst Read. (Offset 08h in UPMA RAM) */ 0xCFFFCC24, 0x0FFFCC04, 0x0CAFCC84, 0x03AFCC88, 0x3FBFCC27, /* last */ _NOT_USED_, _NOT_USED_, _NOT_USED_, _NOT_USED_, _NOT_USED_, _NOT_USED_, _NOT_USED_, _NOT_USED_, _NOT_USED_, _NOT_USED_, _NOT_USED_, /* * Single Write. (Offset 18h in UPMA RAM) */ 0xCFFFCC24, 0x0FFFCC04, 0x0CFFCC04, 0x03FFCC00, 0x3FFFCC27, /* last */ _NOT_USED_, _NOT_USED_, _NOT_USED_, /* * Burst Write. (Offset 20h in UPMA RAM) */ 0xCFFFCC24, 0x0FFFCC04, 0x0CFFCC80, 0x03FFCC8C, 0x0CFFCC00, 0x33FFCC27, /* last */ _NOT_USED_, _NOT_USED_, _NOT_USED_, _NOT_USED_, _NOT_USED_, _NOT_USED_, _NOT_USED_, _NOT_USED_, _NOT_USED_, _NOT_USED_, /* * Refresh. (Offset 30h in UPMA RAM) */ 0xC0FFCC24, 0x03FFCC24, 0x0FFFCC24, 0x0FFFCC24, 0x3FFFCC27, /* last */ _NOT_USED_, _NOT_USED_, _NOT_USED_, _NOT_USED_, _NOT_USED_, _NOT_USED_, _NOT_USED_, /* * Exception. (Offset 3Ch in UPMA RAM) */ _NOT_USED_, _NOT_USED_, _NOT_USED_, _NOT_USED_ }; /* ------------------------------------------------------------------------- */ /* * Check Board Identity: */ int checkboard (void) { puts ("Board: RPXClassic "); return (0); } /*----------------------------------------------------------------------------- * board_get_enetaddr -- Read the MAC Address in the I2C EEPROM *----------------------------------------------------------------------------- */ void board_get_enetaddr (uchar * enet) { int i; char buff[256], *cp; /* Initialize I2C */ i2c_init (CFG_I2C_SPEED, CFG_I2C_SLAVE); /* Read 256 bytes in EEPROM */ |
77ddac948 Cleanup for GCC-4.x |
118 119 |
i2c_read (0x54, 0, 1, (uchar *)buff, 128); i2c_read (0x54, 128, 1, (uchar *)buff + 128, 128); |
5b1d71372 Initial revision |
120 121 122 123 124 125 126 |
/* Retrieve MAC address in buffer (key EA) */ for (cp = buff;;) { if (cp[0] == 'E' && cp[1] == 'A') { cp += 3; /* Read MAC address */ for (i = 0; i < 6; i++, cp += 2) { |
77ddac948 Cleanup for GCC-4.x |
127 |
enet[i] = aschex_to_byte ((unsigned char *)cp); |
5b1d71372 Initial revision |
128 129 130 |
} } /* Scan to the end of the record */ |
b2184c314 * Patch by Daniel... |
131 132 |
while ((*cp != ' ') && (*cp != (char)0xff)) { |
5b1d71372 Initial revision |
133 134 135 136 137 |
cp++; } /* If the next character is a , 0 or ff, we are done. */ cp++; |
b2184c314 * Patch by Daniel... |
138 139 |
if ((*cp == ' ') || (*cp == 0) || (*cp == (char)0xff)) |
5b1d71372 Initial revision |
140 141 142 143 144 145 146 |
break; } #ifdef CONFIG_FEC_ENET /* The MAC address is the same as normal ethernet except the 3rd byte */ /* (See the E.P. Planet Core Overview manual */ enet[3] |= 0x80; |
5b1d71372 Initial revision |
147 148 149 150 151 152 153 154 155 156 157 158 |
#endif printf ("MAC address = %02x:%02x:%02x:%02x:%02x:%02x ", enet[0], enet[1], enet[2], enet[3], enet[4], enet[5]); } void rpxclassic_init (void) { /* Enable NVRAM */ *((uchar *) BCSR0) |= BCSR0_ENNVRAM; |
b2184c314 * Patch by Daniel... |
159 160 161 162 163 164 165 166 |
#ifdef CONFIG_FEC_ENET /* Validate the fast ethernet tranceiver */ *((volatile uchar *) BCSR2) &= ~BCSR2_MIICTL; *((volatile uchar *) BCSR2) &= ~BCSR2_MIIPWRDWN; *((volatile uchar *) BCSR2) |= BCSR2_MIIRST; *((volatile uchar *) BCSR2) |= BCSR2_MIIPWRDWN; #endif |
5b1d71372 Initial revision |
167 168 169 |
} /* ------------------------------------------------------------------------- */ |
9973e3c61 Change initdram()... |
170 |
phys_size_t initdram (int board_type) |
5b1d71372 Initial revision |
171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 |
{ volatile immap_t *immap = (immap_t *) CFG_IMMR; volatile memctl8xx_t *memctl = &immap->im_memctl; long int size10; upmconfig (UPMA, (uint *) sdram_table, sizeof (sdram_table) / sizeof (uint)); /* Refresh clock prescalar */ memctl->memc_mptpr = CFG_MPTPR; memctl->memc_mar = 0x00000000; /* Map controller banks 1 to the SDRAM bank */ memctl->memc_or1 = CFG_OR1_PRELIM; memctl->memc_br1 = CFG_BR1_PRELIM; memctl->memc_mamr = CFG_MAMR_10COL & (~(MAMR_PTAE)); /* no refresh yet */ udelay (200); /* perform SDRAM initializsation sequence */ memctl->memc_mcr = 0x80002230; /* SDRAM bank 0 - refresh twice */ udelay (1); memctl->memc_mamr |= MAMR_PTAE; /* enable refresh */ udelay (1000); /* Check Bank 0 Memory Size * try 10 column mode */ |
77ddac948 Cleanup for GCC-4.x |
204 |
size10 = dram_size (CFG_MAMR_10COL, SDRAM_BASE_PRELIM, |
5b1d71372 Initial revision |
205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 |
SDRAM_MAX_SIZE); return (size10); } /* ------------------------------------------------------------------------- */ /* * Check memory range for valid RAM. A simple memory test determines * the actually available RAM size between addresses `base' and * `base + maxsize'. Some (not all) hardware errors are detected: * - short between address lines * - short between data lines */ static long int dram_size (long int mamr_value, long int *base, long int maxsize) { volatile immap_t *immap = (immap_t *) CFG_IMMR; volatile memctl8xx_t *memctl = &immap->im_memctl; |
5b1d71372 Initial revision |
224 225 |
memctl->memc_mamr = mamr_value; |
c83bf6a2d Add a common get_... |
226 |
return (get_ram_size(base, maxsize)); |
5b1d71372 Initial revision |
227 |
} |
b2184c314 * Patch by Daniel... |
228 |
/*----------------------------------------------------------------------------- |
8bde7f776 * Code cleanup: |
229 |
* aschex_to_byte -- |
b2184c314 * Patch by Daniel... |
230 231 |
*----------------------------------------------------------------------------- */ |
5b1d71372 Initial revision |
232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 |
static unsigned char aschex_to_byte (unsigned char *cp) { u_char byte, c; c = *cp++; if ((c >= 'A') && (c <= 'F')) { c -= 'A'; c += 10; } else if ((c >= 'a') && (c <= 'f')) { c -= 'a'; c += 10; } else { c -= '0'; } byte = c * 16; c = *cp; if ((c >= 'A') && (c <= 'F')) { c -= 'A'; c += 10; } else if ((c >= 'a') && (c <= 'f')) { c -= 'a'; c += 10; } else { c -= '0'; } byte += c; return (byte); } |