wdenk | e65527f | 2004-02-12 00:47:09 +0000 | [diff] [blame] | 1 | /* |
| 2 | * (C) Copyright 2003 |
| 3 | * Josef Baumgartner <josef.baumgartner@telex.de> |
| 4 | * |
| 5 | * See file CREDITS for list of people who contributed to this |
| 6 | * project. |
| 7 | * |
| 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. |
| 12 | * |
| 13 | * This program is distributed in the hope that it will be useful, |
| 14 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
Wolfgang Denk | c2c4944 | 2006-05-10 17:43:20 +0200 | [diff] [blame^] | 15 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
wdenk | e65527f | 2004-02-12 00:47:09 +0000 | [diff] [blame] | 16 | * GNU General Public License for more details. |
| 17 | * |
| 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, |
| 21 | * MA 02111-1307 USA |
| 22 | */ |
| 23 | |
| 24 | #include <common.h> |
| 25 | #include <watchdog.h> |
| 26 | |
Zachary P. Landau | 0bba862 | 2006-01-26 17:35:56 -0500 | [diff] [blame] | 27 | #ifdef CONFIG_M5271 |
| 28 | #include <asm/m5271.h> |
| 29 | #include <asm/immap_5271.h> |
| 30 | #endif |
| 31 | |
wdenk | e65527f | 2004-02-12 00:47:09 +0000 | [diff] [blame] | 32 | #ifdef CONFIG_M5272 |
| 33 | #include <asm/m5272.h> |
| 34 | #include <asm/immap_5272.h> |
| 35 | #endif |
| 36 | |
| 37 | #ifdef CONFIG_M5282 |
| 38 | #include <asm/m5282.h> |
| 39 | #include <asm/immap_5282.h> |
| 40 | #endif |
| 41 | |
stroese | 53395a2 | 2004-12-16 18:09:49 +0000 | [diff] [blame] | 42 | #ifdef CONFIG_M5249 |
| 43 | #include <asm/m5249.h> |
| 44 | #endif |
| 45 | |
Zachary P. Landau | 0bba862 | 2006-01-26 17:35:56 -0500 | [diff] [blame] | 46 | #if defined(CONFIG_M5271) |
| 47 | void cpu_init_f (void) |
| 48 | { |
| 49 | #ifndef CONFIG_WATCHDOG |
| 50 | /* Disable the watchdog if we aren't using it */ |
| 51 | mbar_writeShort(MCF_WTM_WCR, 0); |
| 52 | #endif |
| 53 | |
| 54 | /* Set clockspeed to 100MHz */ |
| 55 | mbar_writeShort(MCF_FMPLL_SYNCR, |
| 56 | MCF_FMPLL_SYNCR_MFD(0) | MCF_FMPLL_SYNCR_RFD(0)); |
| 57 | while (!mbar_readByte(MCF_FMPLL_SYNSR) & MCF_FMPLL_SYNSR_LOCK); |
| 58 | |
| 59 | /* Enable UART pins */ |
| 60 | mbar_writeShort(MCF_GPIO_PAR_UART, MCF_GPIO_PAR_UART_U0TXD | |
Wolfgang Denk | c2c4944 | 2006-05-10 17:43:20 +0200 | [diff] [blame^] | 61 | MCF_GPIO_PAR_UART_U0RXD | |
| 62 | MCF_GPIO_PAR_UART_U1RXD_UART1 | |
| 63 | MCF_GPIO_PAR_UART_U1TXD_UART1); |
Zachary P. Landau | 0bba862 | 2006-01-26 17:35:56 -0500 | [diff] [blame] | 64 | |
| 65 | /* Enable Ethernet pins */ |
| 66 | mbar_writeByte(MCF_GPIO_PAR_FECI2C, CFG_FECI2C); |
| 67 | } |
| 68 | |
| 69 | /* |
| 70 | * initialize higher level parts of CPU like timers |
| 71 | */ |
Wolfgang Denk | c2c4944 | 2006-05-10 17:43:20 +0200 | [diff] [blame^] | 72 | int cpu_init_r (void) |
Zachary P. Landau | 0bba862 | 2006-01-26 17:35:56 -0500 | [diff] [blame] | 73 | { |
| 74 | return (0); |
| 75 | } |
| 76 | #endif |
| 77 | |
stroese | 53395a2 | 2004-12-16 18:09:49 +0000 | [diff] [blame] | 78 | #if defined(CONFIG_M5272) |
wdenk | e65527f | 2004-02-12 00:47:09 +0000 | [diff] [blame] | 79 | /* |
| 80 | * Breath some life into the CPU... |
| 81 | * |
| 82 | * Set up the memory map, |
| 83 | * initialize a bunch of registers, |
| 84 | * initialize the UPM's |
| 85 | */ |
| 86 | void cpu_init_f (void) |
| 87 | { |
| 88 | /* if we come from RAM we assume the CPU is |
| 89 | * already initialized. |
| 90 | */ |
| 91 | #ifndef CONFIG_MONITOR_IS_IN_RAM |
| 92 | volatile immap_t *regp = (immap_t *)CFG_MBAR; |
| 93 | |
| 94 | volatile unsigned char *mbar; |
| 95 | mbar = (volatile unsigned char *) CFG_MBAR; |
| 96 | |
| 97 | regp->sysctrl_reg.sc_scr = CFG_SCR; |
| 98 | regp->sysctrl_reg.sc_spr = CFG_SPR; |
| 99 | |
Wolfgang Denk | c2c4944 | 2006-05-10 17:43:20 +0200 | [diff] [blame^] | 100 | /* Setup Ports: */ |
wdenk | e65527f | 2004-02-12 00:47:09 +0000 | [diff] [blame] | 101 | regp->gpio_reg.gpio_pacnt = CFG_PACNT; |
| 102 | regp->gpio_reg.gpio_paddr = CFG_PADDR; |
| 103 | regp->gpio_reg.gpio_padat = CFG_PADAT; |
| 104 | regp->gpio_reg.gpio_pbcnt = CFG_PBCNT; |
| 105 | regp->gpio_reg.gpio_pbddr = CFG_PBDDR; |
| 106 | regp->gpio_reg.gpio_pbdat = CFG_PBDAT; |
| 107 | regp->gpio_reg.gpio_pdcnt = CFG_PDCNT; |
| 108 | |
| 109 | /* Memory Controller: */ |
| 110 | regp->csctrl_reg.cs_br0 = CFG_BR0_PRELIM; |
| 111 | regp->csctrl_reg.cs_or0 = CFG_OR0_PRELIM; |
| 112 | |
| 113 | #if (defined(CFG_OR1_PRELIM) && defined(CFG_BR1_PRELIM)) |
| 114 | regp->csctrl_reg.cs_br1 = CFG_BR1_PRELIM; |
| 115 | regp->csctrl_reg.cs_or1 = CFG_OR1_PRELIM; |
| 116 | #endif |
| 117 | |
| 118 | #if defined(CFG_OR2_PRELIM) && defined(CFG_BR2_PRELIM) |
| 119 | regp->csctrl_reg.cs_br2 = CFG_BR2_PRELIM; |
| 120 | regp->csctrl_reg.cs_or2 = CFG_OR2_PRELIM; |
| 121 | #endif |
| 122 | |
| 123 | #if defined(CFG_OR3_PRELIM) && defined(CFG_BR3_PRELIM) |
| 124 | regp->csctrl_reg.cs_br3 = CFG_BR3_PRELIM; |
| 125 | regp->csctrl_reg.cs_or3 = CFG_OR3_PRELIM; |
| 126 | #endif |
| 127 | |
| 128 | #if defined(CFG_OR4_PRELIM) && defined(CFG_BR4_PRELIM) |
| 129 | regp->csctrl_reg.cs_br4 = CFG_BR4_PRELIM; |
| 130 | regp->csctrl_reg.cs_or4 = CFG_OR4_PRELIM; |
| 131 | #endif |
| 132 | |
| 133 | #if defined(CFG_OR5_PRELIM) && defined(CFG_BR5_PRELIM) |
| 134 | regp->csctrl_reg.cs_br5 = CFG_BR5_PRELIM; |
| 135 | regp->csctrl_reg.cs_or5 = CFG_OR5_PRELIM; |
| 136 | #endif |
| 137 | |
| 138 | #if defined(CFG_OR6_PRELIM) && defined(CFG_BR6_PRELIM) |
| 139 | regp->csctrl_reg.cs_br6 = CFG_BR6_PRELIM; |
| 140 | regp->csctrl_reg.cs_or6 = CFG_OR6_PRELIM; |
| 141 | #endif |
| 142 | |
| 143 | #if defined(CFG_OR7_PRELIM) && defined(CFG_BR7_PRELIM) |
| 144 | regp->csctrl_reg.cs_br7 = CFG_BR7_PRELIM; |
| 145 | regp->csctrl_reg.cs_or7 = CFG_OR7_PRELIM; |
| 146 | #endif |
| 147 | |
| 148 | #endif /* #ifndef CONFIG_MONITOR_IS_IN_RAM */ |
| 149 | |
Wolfgang Denk | c2c4944 | 2006-05-10 17:43:20 +0200 | [diff] [blame^] | 150 | /* enable instruction cache now */ |
| 151 | icache_enable(); |
wdenk | e65527f | 2004-02-12 00:47:09 +0000 | [diff] [blame] | 152 | |
| 153 | } |
| 154 | |
| 155 | /* |
| 156 | * initialize higher level parts of CPU like timers |
| 157 | */ |
Wolfgang Denk | c2c4944 | 2006-05-10 17:43:20 +0200 | [diff] [blame^] | 158 | int cpu_init_r (void) |
wdenk | e65527f | 2004-02-12 00:47:09 +0000 | [diff] [blame] | 159 | { |
| 160 | return (0); |
| 161 | } |
stroese | 53395a2 | 2004-12-16 18:09:49 +0000 | [diff] [blame] | 162 | #endif /* #if defined(CONFIG_M5272) */ |
wdenk | e65527f | 2004-02-12 00:47:09 +0000 | [diff] [blame] | 163 | |
| 164 | |
| 165 | #ifdef CONFIG_M5282 |
| 166 | /* |
| 167 | * Breath some life into the CPU... |
| 168 | * |
| 169 | * Set up the memory map, |
| 170 | * initialize a bunch of registers, |
| 171 | * initialize the UPM's |
| 172 | */ |
| 173 | void cpu_init_f (void) |
| 174 | { |
| 175 | |
| 176 | } |
| 177 | |
| 178 | /* |
| 179 | * initialize higher level parts of CPU like timers |
| 180 | */ |
Wolfgang Denk | c2c4944 | 2006-05-10 17:43:20 +0200 | [diff] [blame^] | 181 | int cpu_init_r (void) |
wdenk | e65527f | 2004-02-12 00:47:09 +0000 | [diff] [blame] | 182 | { |
| 183 | return (0); |
| 184 | } |
| 185 | #endif |
stroese | 53395a2 | 2004-12-16 18:09:49 +0000 | [diff] [blame] | 186 | |
| 187 | #if defined(CONFIG_M5249) |
| 188 | /* |
| 189 | * Breath some life into the CPU... |
| 190 | * |
| 191 | * Set up the memory map, |
| 192 | * initialize a bunch of registers, |
| 193 | * initialize the UPM's |
| 194 | */ |
| 195 | void cpu_init_f (void) |
| 196 | { |
| 197 | #ifndef CFG_PLL_BYPASS |
| 198 | /* |
| 199 | * Setup the PLL to run at the specified speed |
| 200 | * |
| 201 | */ |
| 202 | volatile unsigned long cpll = mbar2_readLong(MCFSIM_PLLCR); |
| 203 | unsigned long pllcr; |
| 204 | #ifdef CFG_FAST_CLK |
Wolfgang Denk | c2c4944 | 2006-05-10 17:43:20 +0200 | [diff] [blame^] | 205 | pllcr = 0x925a3100; /* ~140MHz clock (PLL bypass = 0) */ |
stroese | 53395a2 | 2004-12-16 18:09:49 +0000 | [diff] [blame] | 206 | #else |
Wolfgang Denk | c2c4944 | 2006-05-10 17:43:20 +0200 | [diff] [blame^] | 207 | pllcr = 0x135a4140; /* ~72MHz clock (PLL bypass = 0) */ |
stroese | 53395a2 | 2004-12-16 18:09:49 +0000 | [diff] [blame] | 208 | #endif |
Wolfgang Denk | c2c4944 | 2006-05-10 17:43:20 +0200 | [diff] [blame^] | 209 | cpll = cpll & 0xfffffffe; /* Set PLL bypass mode = 0 (PSTCLK = crystal) */ |
| 210 | mbar2_writeLong(MCFSIM_PLLCR, cpll); /* Set the PLL to bypass mode (PSTCLK = crystal) */ |
| 211 | mbar2_writeLong(MCFSIM_PLLCR, pllcr); /* set the clock speed */ |
| 212 | pllcr ^= 0x00000001; /* Set pll bypass to 1 */ |
| 213 | mbar2_writeLong(MCFSIM_PLLCR, pllcr); /* Start locking (pll bypass = 1) */ |
| 214 | udelay(0x20); /* Wait for a lock ... */ |
stroese | 53395a2 | 2004-12-16 18:09:49 +0000 | [diff] [blame] | 215 | #endif /* #ifndef CFG_PLL_BYPASS */ |
| 216 | |
| 217 | /* |
| 218 | * NOTE: by setting the GPIO_FUNCTION registers, we ensure that the UART pins |
Wolfgang Denk | c2c4944 | 2006-05-10 17:43:20 +0200 | [diff] [blame^] | 219 | * (UART0: gpio 30,27, UART1: gpio 31, 28) will be used as UART pins |
| 220 | * which is their primary function. |
| 221 | * ~Jeremy |
stroese | 53395a2 | 2004-12-16 18:09:49 +0000 | [diff] [blame] | 222 | */ |
| 223 | mbar2_writeLong(MCFSIM_GPIO_FUNC, CFG_GPIO_FUNC); |
| 224 | mbar2_writeLong(MCFSIM_GPIO1_FUNC, CFG_GPIO1_FUNC); |
| 225 | mbar2_writeLong(MCFSIM_GPIO_EN, CFG_GPIO_EN); |
| 226 | mbar2_writeLong(MCFSIM_GPIO1_EN, CFG_GPIO1_EN); |
| 227 | mbar2_writeLong(MCFSIM_GPIO_OUT, CFG_GPIO_OUT); |
| 228 | mbar2_writeLong(MCFSIM_GPIO1_OUT, CFG_GPIO1_OUT); |
| 229 | |
| 230 | /* |
| 231 | * dBug Compliance: |
| 232 | * You can verify these values by using dBug's 'ird' |
| 233 | * (Internal Register Display) command |
| 234 | * ~Jeremy |
| 235 | * |
Wolfgang Denk | c2c4944 | 2006-05-10 17:43:20 +0200 | [diff] [blame^] | 236 | */ |
stroese | 53395a2 | 2004-12-16 18:09:49 +0000 | [diff] [blame] | 237 | mbar_writeByte(MCFSIM_MPARK, 0x30); /* 5249 Internal Core takes priority over DMA */ |
| 238 | mbar_writeByte(MCFSIM_SYPCR, 0x00); |
| 239 | mbar_writeByte(MCFSIM_SWIVR, 0x0f); |
| 240 | mbar_writeByte(MCFSIM_SWSR, 0x00); |
| 241 | mbar_writeLong(MCFSIM_IMR, 0xfffffbff); |
| 242 | mbar_writeByte(MCFSIM_SWDICR, 0x00); |
| 243 | mbar_writeByte(MCFSIM_TIMER1ICR, 0x00); |
| 244 | mbar_writeByte(MCFSIM_TIMER2ICR, 0x88); |
| 245 | mbar_writeByte(MCFSIM_I2CICR, 0x00); |
| 246 | mbar_writeByte(MCFSIM_UART1ICR, 0x00); |
| 247 | mbar_writeByte(MCFSIM_UART2ICR, 0x00); |
| 248 | mbar_writeByte(MCFSIM_ICR6, 0x00); |
| 249 | mbar_writeByte(MCFSIM_ICR7, 0x00); |
| 250 | mbar_writeByte(MCFSIM_ICR8, 0x00); |
| 251 | mbar_writeByte(MCFSIM_ICR9, 0x00); |
| 252 | mbar_writeByte(MCFSIM_QSPIICR, 0x00); |
| 253 | |
| 254 | mbar2_writeLong(MCFSIM_GPIO_INT_EN, 0x00000080); |
Wolfgang Denk | c2c4944 | 2006-05-10 17:43:20 +0200 | [diff] [blame^] | 255 | mbar2_writeByte(MCFSIM_INTBASE, 0x40); /* Base interrupts at 64 */ |
stroese | 53395a2 | 2004-12-16 18:09:49 +0000 | [diff] [blame] | 256 | mbar2_writeByte(MCFSIM_SPURVEC, 0x00); |
Wolfgang Denk | c2c4944 | 2006-05-10 17:43:20 +0200 | [diff] [blame^] | 257 | mbar2_writeLong(MCFSIM_IDECONFIG1, 0x00000020); /* Enable a 1 cycle pre-drive cycle on CS1 */ |
stroese | 53395a2 | 2004-12-16 18:09:49 +0000 | [diff] [blame] | 258 | |
| 259 | /* Setup interrupt priorities for gpio7 */ |
| 260 | /* mbar2_writeLong(MCFSIM_INTLEV5, 0x70000000); */ |
| 261 | |
| 262 | /* IDE Config registers */ |
| 263 | mbar2_writeLong(MCFSIM_IDECONFIG1, 0x00000020); |
| 264 | mbar2_writeLong(MCFSIM_IDECONFIG2, 0x00000000); |
| 265 | |
| 266 | /* |
| 267 | * Setup chip selects... |
| 268 | */ |
| 269 | |
| 270 | mbar_writeShort(MCFSIM_CSAR1, CFG_CSAR1); |
| 271 | mbar_writeShort(MCFSIM_CSCR1, CFG_CSCR1); |
| 272 | mbar_writeLong(MCFSIM_CSMR1, CFG_CSMR1); |
| 273 | |
| 274 | mbar_writeShort(MCFSIM_CSAR0, CFG_CSAR0); |
| 275 | mbar_writeShort(MCFSIM_CSCR0, CFG_CSCR0); |
| 276 | mbar_writeLong(MCFSIM_CSMR0, CFG_CSMR0); |
| 277 | |
| 278 | /* enable instruction cache now */ |
| 279 | icache_enable(); |
| 280 | } |
| 281 | |
| 282 | /* |
| 283 | * initialize higher level parts of CPU like timers |
| 284 | */ |
Wolfgang Denk | c2c4944 | 2006-05-10 17:43:20 +0200 | [diff] [blame^] | 285 | int cpu_init_r (void) |
stroese | 53395a2 | 2004-12-16 18:09:49 +0000 | [diff] [blame] | 286 | { |
| 287 | return (0); |
| 288 | } |
| 289 | #endif /* #if defined(CONFIG_M5249) */ |