wdenk | e65527f | 2004-02-12 00:47:09 +0000 | [diff] [blame] | 1 | /* |
| 2 | * (C) Copyright 2003 |
| 3 | * Josef Baumgartner <josef.baumgartner@telex.de> |
| 4 | * |
Heiko Schocher | ac1956e | 2006-04-20 08:42:42 +0200 | [diff] [blame] | 5 | * MCF5282 additionals |
| 6 | * (C) Copyright 2005 |
| 7 | * BuS Elektronik GmbH & Co. KG <esw@bus-elektronik.de> |
Michael Durrant | a4991f2 | 2010-01-20 19:33:02 -0600 | [diff] [blame] | 8 | * (c) Copyright 2010 |
| 9 | * Arcturus Networks Inc. <www.arcturusnetworks.com> |
Heiko Schocher | ac1956e | 2006-04-20 08:42:42 +0200 | [diff] [blame] | 10 | * |
Alison Wang | 95bed1f | 2012-03-26 21:49:04 +0000 | [diff] [blame] | 11 | * Copyright (C) 2004-2007, 2012 Freescale Semiconductor, Inc. |
TsiChungLiew | 3467469 | 2007-08-16 13:20:50 -0500 | [diff] [blame] | 12 | * TsiChung Liew (Tsi-Chung.Liew@freescale.com) |
| 13 | * Hayden Fraser (Hayden.Fraser@freescale.com) |
| 14 | * |
Matthew Fettke | 761e2e9 | 2008-02-04 15:38:20 -0600 | [diff] [blame] | 15 | * MCF5275 additions |
| 16 | * Copyright (C) 2008 Arthur Shipkowski (art@videon-central.com) |
| 17 | * |
wdenk | e65527f | 2004-02-12 00:47:09 +0000 | [diff] [blame] | 18 | * See file CREDITS for list of people who contributed to this |
| 19 | * project. |
| 20 | * |
| 21 | * This program is free software; you can redistribute it and/or |
| 22 | * modify it under the terms of the GNU General Public License as |
| 23 | * published by the Free Software Foundation; either version 2 of |
| 24 | * the License, or (at your option) any later version. |
| 25 | * |
| 26 | * This program is distributed in the hope that it will be useful, |
| 27 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
Wolfgang Denk | c2c4944 | 2006-05-10 17:43:20 +0200 | [diff] [blame] | 28 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
wdenk | e65527f | 2004-02-12 00:47:09 +0000 | [diff] [blame] | 29 | * GNU General Public License for more details. |
| 30 | * |
| 31 | * You should have received a copy of the GNU General Public License |
| 32 | * along with this program; if not, write to the Free Software |
| 33 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, |
| 34 | * MA 02111-1307 USA |
| 35 | */ |
| 36 | |
| 37 | #include <common.h> |
| 38 | #include <watchdog.h> |
TsiChungLiew | 8cd73be | 2007-08-15 19:21:21 -0500 | [diff] [blame] | 39 | #include <asm/immap.h> |
Alison Wang | 95bed1f | 2012-03-26 21:49:04 +0000 | [diff] [blame] | 40 | #include <asm/io.h> |
stroese | 53395a2 | 2004-12-16 18:09:49 +0000 | [diff] [blame] | 41 | |
TsiChung Liew | 69b1757 | 2008-10-21 13:47:54 +0000 | [diff] [blame] | 42 | #if defined(CONFIG_CMD_NET) |
| 43 | #include <config.h> |
| 44 | #include <net.h> |
| 45 | #include <asm/fec.h> |
| 46 | #endif |
| 47 | |
TsiChung Liew | 7f1a046 | 2008-10-21 10:03:07 +0000 | [diff] [blame] | 48 | #ifndef CONFIG_M5272 |
| 49 | /* Only 5272 Flexbus chipselect is different from the rest */ |
| 50 | void init_fbcs(void) |
| 51 | { |
Alison Wang | 95bed1f | 2012-03-26 21:49:04 +0000 | [diff] [blame] | 52 | fbcs_t *fbcs = (fbcs_t *) (MMAP_FBCS); |
TsiChung Liew | 7f1a046 | 2008-10-21 10:03:07 +0000 | [diff] [blame] | 53 | |
| 54 | #if (defined(CONFIG_SYS_CS0_BASE) && defined(CONFIG_SYS_CS0_MASK) \ |
| 55 | && defined(CONFIG_SYS_CS0_CTRL)) |
Alison Wang | 95bed1f | 2012-03-26 21:49:04 +0000 | [diff] [blame] | 56 | out_be32(&fbcs->csar0, CONFIG_SYS_CS0_BASE); |
| 57 | out_be32(&fbcs->cscr0, CONFIG_SYS_CS0_CTRL); |
| 58 | out_be32(&fbcs->csmr0, CONFIG_SYS_CS0_MASK); |
TsiChung Liew | 7f1a046 | 2008-10-21 10:03:07 +0000 | [diff] [blame] | 59 | #else |
| 60 | #warning "Chip Select 0 are not initialized/used" |
| 61 | #endif |
| 62 | #if (defined(CONFIG_SYS_CS1_BASE) && defined(CONFIG_SYS_CS1_MASK) \ |
| 63 | && defined(CONFIG_SYS_CS1_CTRL)) |
Alison Wang | 95bed1f | 2012-03-26 21:49:04 +0000 | [diff] [blame] | 64 | out_be32(&fbcs->csar1, CONFIG_SYS_CS1_BASE); |
| 65 | out_be32(&fbcs->cscr1, CONFIG_SYS_CS1_CTRL); |
| 66 | out_be32(&fbcs->csmr1, CONFIG_SYS_CS1_MASK); |
TsiChung Liew | 7f1a046 | 2008-10-21 10:03:07 +0000 | [diff] [blame] | 67 | #endif |
| 68 | #if (defined(CONFIG_SYS_CS2_BASE) && defined(CONFIG_SYS_CS2_MASK) \ |
| 69 | && defined(CONFIG_SYS_CS2_CTRL)) |
Alison Wang | 95bed1f | 2012-03-26 21:49:04 +0000 | [diff] [blame] | 70 | out_be32(&fbcs->csar2, CONFIG_SYS_CS2_BASE); |
| 71 | out_be32(&fbcs->cscr2, CONFIG_SYS_CS2_CTRL); |
| 72 | out_be32(&fbcs->csmr2, CONFIG_SYS_CS2_MASK); |
TsiChung Liew | 7f1a046 | 2008-10-21 10:03:07 +0000 | [diff] [blame] | 73 | #endif |
| 74 | #if (defined(CONFIG_SYS_CS3_BASE) && defined(CONFIG_SYS_CS3_MASK) \ |
| 75 | && defined(CONFIG_SYS_CS3_CTRL)) |
Alison Wang | 95bed1f | 2012-03-26 21:49:04 +0000 | [diff] [blame] | 76 | out_be32(&fbcs->csar3, CONFIG_SYS_CS3_BASE); |
| 77 | out_be32(&fbcs->cscr3, CONFIG_SYS_CS3_CTRL); |
| 78 | out_be32(&fbcs->csmr3, CONFIG_SYS_CS3_MASK); |
TsiChung Liew | 7f1a046 | 2008-10-21 10:03:07 +0000 | [diff] [blame] | 79 | #endif |
| 80 | #if (defined(CONFIG_SYS_CS4_BASE) && defined(CONFIG_SYS_CS4_MASK) \ |
| 81 | && defined(CONFIG_SYS_CS4_CTRL)) |
Alison Wang | 95bed1f | 2012-03-26 21:49:04 +0000 | [diff] [blame] | 82 | out_be32(&fbcs->csar4, CONFIG_SYS_CS4_BASE); |
| 83 | out_be32(&fbcs->cscr4, CONFIG_SYS_CS4_CTRL); |
| 84 | out_be32(&fbcs->csmr4, CONFIG_SYS_CS4_MASK); |
TsiChung Liew | 7f1a046 | 2008-10-21 10:03:07 +0000 | [diff] [blame] | 85 | #endif |
| 86 | #if (defined(CONFIG_SYS_CS5_BASE) && defined(CONFIG_SYS_CS5_MASK) \ |
| 87 | && defined(CONFIG_SYS_CS5_CTRL)) |
Alison Wang | 95bed1f | 2012-03-26 21:49:04 +0000 | [diff] [blame] | 88 | out_be32(&fbcs->csar5, CONFIG_SYS_CS5_BASE); |
| 89 | out_be32(&fbcs->cscr5, CONFIG_SYS_CS5_CTRL); |
| 90 | out_be32(&fbcs->csmr5, CONFIG_SYS_CS5_MASK); |
TsiChung Liew | 7f1a046 | 2008-10-21 10:03:07 +0000 | [diff] [blame] | 91 | #endif |
| 92 | #if (defined(CONFIG_SYS_CS6_BASE) && defined(CONFIG_SYS_CS6_MASK) \ |
| 93 | && defined(CONFIG_SYS_CS6_CTRL)) |
Alison Wang | 95bed1f | 2012-03-26 21:49:04 +0000 | [diff] [blame] | 94 | out_be32(&fbcs->csar6, CONFIG_SYS_CS6_BASE); |
| 95 | out_be32(&fbcs->cscr6, CONFIG_SYS_CS6_CTRL); |
| 96 | out_be32(&fbcs->csmr6, CONFIG_SYS_CS6_MASK); |
TsiChung Liew | 7f1a046 | 2008-10-21 10:03:07 +0000 | [diff] [blame] | 97 | #endif |
| 98 | #if (defined(CONFIG_SYS_CS7_BASE) && defined(CONFIG_SYS_CS7_MASK) \ |
| 99 | && defined(CONFIG_SYS_CS7_CTRL)) |
Alison Wang | 95bed1f | 2012-03-26 21:49:04 +0000 | [diff] [blame] | 100 | out_be32(&fbcs->csar7, CONFIG_SYS_CS7_BASE); |
| 101 | out_be32(&fbcs->cscr7, CONFIG_SYS_CS7_CTRL); |
| 102 | out_be32(&fbcs->csmr7, CONFIG_SYS_CS7_MASK); |
TsiChung Liew | 7f1a046 | 2008-10-21 10:03:07 +0000 | [diff] [blame] | 103 | #endif |
| 104 | } |
| 105 | #endif |
| 106 | |
TsiChung Liew | b354aef | 2009-06-12 11:29:00 +0000 | [diff] [blame] | 107 | #if defined(CONFIG_M5208) |
| 108 | void cpu_init_f(void) |
| 109 | { |
Alison Wang | 95bed1f | 2012-03-26 21:49:04 +0000 | [diff] [blame] | 110 | scm1_t *scm1 = (scm1_t *) MMAP_SCM1; |
TsiChung Liew | b354aef | 2009-06-12 11:29:00 +0000 | [diff] [blame] | 111 | |
| 112 | #ifndef CONFIG_WATCHDOG |
Alison Wang | 95bed1f | 2012-03-26 21:49:04 +0000 | [diff] [blame] | 113 | wdog_t *wdg = (wdog_t *) MMAP_WDOG; |
TsiChung Liew | b354aef | 2009-06-12 11:29:00 +0000 | [diff] [blame] | 114 | |
| 115 | /* Disable the watchdog if we aren't using it */ |
Alison Wang | 95bed1f | 2012-03-26 21:49:04 +0000 | [diff] [blame] | 116 | out_be16(&wdg->cr, 0); |
TsiChung Liew | b354aef | 2009-06-12 11:29:00 +0000 | [diff] [blame] | 117 | #endif |
| 118 | |
Alison Wang | 95bed1f | 2012-03-26 21:49:04 +0000 | [diff] [blame] | 119 | out_be32(&scm1->mpr, 0x77777777); |
| 120 | out_be32(&scm1->pacra, 0); |
| 121 | out_be32(&scm1->pacrb, 0); |
| 122 | out_be32(&scm1->pacrc, 0); |
| 123 | out_be32(&scm1->pacrd, 0); |
| 124 | out_be32(&scm1->pacre, 0); |
| 125 | out_be32(&scm1->pacrf, 0); |
TsiChung Liew | b354aef | 2009-06-12 11:29:00 +0000 | [diff] [blame] | 126 | |
| 127 | /* FlexBus Chipselect */ |
| 128 | init_fbcs(); |
| 129 | |
| 130 | icache_enable(); |
| 131 | } |
| 132 | |
| 133 | /* initialize higher level parts of CPU like timers */ |
| 134 | int cpu_init_r(void) |
| 135 | { |
| 136 | return (0); |
| 137 | } |
| 138 | |
TsiChung Liew | f9556a7 | 2010-03-09 19:17:52 -0600 | [diff] [blame] | 139 | void uart_port_conf(int port) |
TsiChung Liew | b354aef | 2009-06-12 11:29:00 +0000 | [diff] [blame] | 140 | { |
Alison Wang | 95bed1f | 2012-03-26 21:49:04 +0000 | [diff] [blame] | 141 | gpio_t *gpio = (gpio_t *) MMAP_GPIO; |
TsiChung Liew | b354aef | 2009-06-12 11:29:00 +0000 | [diff] [blame] | 142 | |
| 143 | /* Setup Ports: */ |
TsiChung Liew | f9556a7 | 2010-03-09 19:17:52 -0600 | [diff] [blame] | 144 | switch (port) { |
TsiChung Liew | b354aef | 2009-06-12 11:29:00 +0000 | [diff] [blame] | 145 | case 0: |
Alison Wang | 95bed1f | 2012-03-26 21:49:04 +0000 | [diff] [blame] | 146 | clrbits_be16(&gpio->par_uart, ~GPIO_PAR_UART0_UNMASK); |
| 147 | setbits_be16(&gpio->par_uart, GPIO_PAR_UART_U0TXD | GPIO_PAR_UART_U0RXD); |
TsiChung Liew | b354aef | 2009-06-12 11:29:00 +0000 | [diff] [blame] | 148 | break; |
| 149 | case 1: |
Alison Wang | 95bed1f | 2012-03-26 21:49:04 +0000 | [diff] [blame] | 150 | clrbits_be16(&gpio->par_uart, ~GPIO_PAR_UART0_UNMASK); |
| 151 | setbits_be16(&gpio->par_uart, GPIO_PAR_UART_U1TXD | GPIO_PAR_UART_U1RXD); |
TsiChung Liew | b354aef | 2009-06-12 11:29:00 +0000 | [diff] [blame] | 152 | break; |
| 153 | case 2: |
| 154 | #ifdef CONFIG_SYS_UART2_PRI_GPIO |
Alison Wang | 95bed1f | 2012-03-26 21:49:04 +0000 | [diff] [blame] | 155 | clrbits_8(&gpio->par_timer, |
| 156 | ~(GPIO_PAR_TMR_TIN0_UNMASK | GPIO_PAR_TMR_TIN1_UNMASK)); |
| 157 | setbits_8(&gpio->par_timer, |
| 158 | GPIO_PAR_TMR_TIN0_U2TXD | GPIO_PAR_TMR_TIN1_U2RXD); |
TsiChung Liew | b354aef | 2009-06-12 11:29:00 +0000 | [diff] [blame] | 159 | #endif |
| 160 | #ifdef CONFIG_SYS_UART2_ALT1_GPIO |
Alison Wang | 95bed1f | 2012-03-26 21:49:04 +0000 | [diff] [blame] | 161 | clrbits_8(&gpio->par_feci2c, |
| 162 | ~(GPIO_PAR_FECI2C_MDC_UNMASK | GPIO_PAR_FECI2C_MDIO_UNMASK)); |
| 163 | setbits_8(&gpio->par_feci2c, |
| 164 | GPIO_PAR_FECI2C_MDC_U2TXD | GPIO_PAR_FECI2C_MDIO_U2RXD); |
TsiChung Liew | b354aef | 2009-06-12 11:29:00 +0000 | [diff] [blame] | 165 | #endif |
| 166 | #ifdef CONFIG_SYS_UART2_ALT1_GPIO |
Alison Wang | 95bed1f | 2012-03-26 21:49:04 +0000 | [diff] [blame] | 167 | clrbits_8(&gpio->par_feci2c, |
| 168 | ~(GPIO_PAR_FECI2C_SDA_UNMASK | GPIO_PAR_FECI2C_SCL_UNMASK)); |
| 169 | setbits_8(&gpio->par_feci2c, |
| 170 | GPIO_PAR_FECI2C_SDA_U2TXD | GPIO_PAR_FECI2C_SCL_U2RXD); |
TsiChung Liew | b354aef | 2009-06-12 11:29:00 +0000 | [diff] [blame] | 171 | #endif |
| 172 | break; |
| 173 | } |
| 174 | } |
| 175 | |
| 176 | #if defined(CONFIG_CMD_NET) |
| 177 | int fecpin_setclear(struct eth_device *dev, int setclear) |
| 178 | { |
Alison Wang | 95bed1f | 2012-03-26 21:49:04 +0000 | [diff] [blame] | 179 | gpio_t *gpio = (gpio_t *) MMAP_GPIO; |
TsiChung Liew | b354aef | 2009-06-12 11:29:00 +0000 | [diff] [blame] | 180 | |
| 181 | if (setclear) { |
Alison Wang | 95bed1f | 2012-03-26 21:49:04 +0000 | [diff] [blame] | 182 | setbits_8(&gpio->par_fec, |
| 183 | GPIO_PAR_FEC_7W_FEC | GPIO_PAR_FEC_MII_FEC); |
| 184 | setbits_8(&gpio->par_feci2c, |
| 185 | GPIO_PAR_FECI2C_MDC_MDC | GPIO_PAR_FECI2C_MDIO_MDIO); |
TsiChung Liew | b354aef | 2009-06-12 11:29:00 +0000 | [diff] [blame] | 186 | } else { |
Alison Wang | 95bed1f | 2012-03-26 21:49:04 +0000 | [diff] [blame] | 187 | clrbits_8(&gpio->par_fec, |
| 188 | ~(GPIO_PAR_FEC_7W_UNMASK & GPIO_PAR_FEC_MII_UNMASK)); |
| 189 | clrbits_8(&gpio->par_feci2c, ~GPIO_PAR_FECI2C_RMII_UNMASK); |
TsiChung Liew | b354aef | 2009-06-12 11:29:00 +0000 | [diff] [blame] | 190 | } |
| 191 | return 0; |
| 192 | } |
| 193 | #endif /* CONFIG_CMD_NET */ |
| 194 | #endif /* CONFIG_M5208 */ |
| 195 | |
TsiChungLiew | 3467469 | 2007-08-16 13:20:50 -0500 | [diff] [blame] | 196 | #if defined(CONFIG_M5253) |
| 197 | /* |
| 198 | * Breath some life into the CPU... |
| 199 | * |
| 200 | * Set up the memory map, |
| 201 | * initialize a bunch of registers, |
| 202 | * initialize the UPM's |
| 203 | */ |
| 204 | void cpu_init_f(void) |
| 205 | { |
| 206 | mbar_writeByte(MCFSIM_MPARK, 0x40); /* 5249 Internal Core takes priority over DMA */ |
| 207 | mbar_writeByte(MCFSIM_SYPCR, 0x00); |
| 208 | mbar_writeByte(MCFSIM_SWIVR, 0x0f); |
| 209 | mbar_writeByte(MCFSIM_SWSR, 0x00); |
| 210 | mbar_writeByte(MCFSIM_SWDICR, 0x00); |
| 211 | mbar_writeByte(MCFSIM_TIMER1ICR, 0x00); |
| 212 | mbar_writeByte(MCFSIM_TIMER2ICR, 0x88); |
| 213 | mbar_writeByte(MCFSIM_I2CICR, 0x00); |
| 214 | mbar_writeByte(MCFSIM_UART1ICR, 0x00); |
| 215 | mbar_writeByte(MCFSIM_UART2ICR, 0x00); |
| 216 | mbar_writeByte(MCFSIM_ICR6, 0x00); |
| 217 | mbar_writeByte(MCFSIM_ICR7, 0x00); |
| 218 | mbar_writeByte(MCFSIM_ICR8, 0x00); |
| 219 | mbar_writeByte(MCFSIM_ICR9, 0x00); |
| 220 | mbar_writeByte(MCFSIM_QSPIICR, 0x00); |
| 221 | |
| 222 | mbar2_writeLong(MCFSIM_GPIO_INT_EN, 0x00000080); |
| 223 | mbar2_writeByte(MCFSIM_INTBASE, 0x40); /* Base interrupts at 64 */ |
| 224 | mbar2_writeByte(MCFSIM_SPURVEC, 0x00); |
| 225 | |
Wolfgang Denk | 55334c7 | 2008-12-16 01:02:17 +0100 | [diff] [blame] | 226 | /*mbar2_writeLong(MCFSIM_IDECONFIG1, 0x00000020); */ /* Enable a 1 cycle pre-drive cycle on CS1 */ |
TsiChungLiew | 3467469 | 2007-08-16 13:20:50 -0500 | [diff] [blame] | 227 | |
TsiChung Liew | 7f1a046 | 2008-10-21 10:03:07 +0000 | [diff] [blame] | 228 | /* FlexBus Chipselect */ |
| 229 | init_fbcs(); |
TsiChungLiew | 3467469 | 2007-08-16 13:20:50 -0500 | [diff] [blame] | 230 | |
TsiChung Liew | 0c1e325 | 2008-08-19 03:01:19 +0600 | [diff] [blame] | 231 | #ifdef CONFIG_FSL_I2C |
TsiChung Liew | 7f1a046 | 2008-10-21 10:03:07 +0000 | [diff] [blame] | 232 | CONFIG_SYS_I2C_PINMUX_REG = |
| 233 | CONFIG_SYS_I2C_PINMUX_REG & CONFIG_SYS_I2C_PINMUX_CLR; |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 234 | CONFIG_SYS_I2C_PINMUX_REG |= CONFIG_SYS_I2C_PINMUX_SET; |
| 235 | #ifdef CONFIG_SYS_I2C2_OFFSET |
| 236 | CONFIG_SYS_I2C2_PINMUX_REG &= CONFIG_SYS_I2C2_PINMUX_CLR; |
| 237 | CONFIG_SYS_I2C2_PINMUX_REG |= CONFIG_SYS_I2C2_PINMUX_SET; |
TsiChung Liew | 0c1e325 | 2008-08-19 03:01:19 +0600 | [diff] [blame] | 238 | #endif |
| 239 | #endif |
| 240 | |
TsiChungLiew | 3467469 | 2007-08-16 13:20:50 -0500 | [diff] [blame] | 241 | /* enable instruction cache now */ |
| 242 | icache_enable(); |
| 243 | } |
| 244 | |
| 245 | /*initialize higher level parts of CPU like timers */ |
| 246 | int cpu_init_r(void) |
| 247 | { |
| 248 | return (0); |
| 249 | } |
| 250 | |
TsiChung Liew | f9556a7 | 2010-03-09 19:17:52 -0600 | [diff] [blame] | 251 | void uart_port_conf(int port) |
TsiChungLiew | 3467469 | 2007-08-16 13:20:50 -0500 | [diff] [blame] | 252 | { |
Alison Wang | 95bed1f | 2012-03-26 21:49:04 +0000 | [diff] [blame] | 253 | u32 *par = (u32 *) MMAP_PAR; |
TsiChung Liew | f9556a7 | 2010-03-09 19:17:52 -0600 | [diff] [blame] | 254 | |
TsiChungLiew | 3467469 | 2007-08-16 13:20:50 -0500 | [diff] [blame] | 255 | /* Setup Ports: */ |
TsiChung Liew | f9556a7 | 2010-03-09 19:17:52 -0600 | [diff] [blame] | 256 | switch (port) { |
TsiChungLiew | 3467469 | 2007-08-16 13:20:50 -0500 | [diff] [blame] | 257 | case 1: |
Alison Wang | 95bed1f | 2012-03-26 21:49:04 +0000 | [diff] [blame] | 258 | clrbits_be32(par, 0x00180000); |
| 259 | setbits_be32(par, 0x00180000); |
TsiChungLiew | 3467469 | 2007-08-16 13:20:50 -0500 | [diff] [blame] | 260 | break; |
| 261 | case 2: |
Alison Wang | 95bed1f | 2012-03-26 21:49:04 +0000 | [diff] [blame] | 262 | clrbits_be32(par, 0x00000003); |
| 263 | clrbits_be32(par, 0xFFFFFFFC); |
TsiChungLiew | 3467469 | 2007-08-16 13:20:50 -0500 | [diff] [blame] | 264 | break; |
| 265 | } |
| 266 | } |
| 267 | #endif /* #if defined(CONFIG_M5253) */ |
| 268 | |
Zachary P. Landau | 0bba862 | 2006-01-26 17:35:56 -0500 | [diff] [blame] | 269 | #if defined(CONFIG_M5271) |
TsiChungLiew | 8cd73be | 2007-08-15 19:21:21 -0500 | [diff] [blame] | 270 | void cpu_init_f(void) |
Zachary P. Landau | 0bba862 | 2006-01-26 17:35:56 -0500 | [diff] [blame] | 271 | { |
| 272 | #ifndef CONFIG_WATCHDOG |
| 273 | /* Disable the watchdog if we aren't using it */ |
| 274 | mbar_writeShort(MCF_WTM_WCR, 0); |
| 275 | #endif |
| 276 | |
TsiChung Liew | 7f1a046 | 2008-10-21 10:03:07 +0000 | [diff] [blame] | 277 | /* FlexBus Chipselect */ |
| 278 | init_fbcs(); |
| 279 | |
Richard Retanubun | fbb5521 | 2009-01-29 14:36:06 -0500 | [diff] [blame] | 280 | #ifdef CONFIG_SYS_MCF_SYNCR |
| 281 | /* Set clockspeed according to board header file */ |
| 282 | mbar_writeLong(MCF_FMPLL_SYNCR, CONFIG_SYS_MCF_SYNCR); |
| 283 | #else |
Zachary P. Landau | 0bba862 | 2006-01-26 17:35:56 -0500 | [diff] [blame] | 284 | /* Set clockspeed to 100MHz */ |
Richard Retanubun | fbb5521 | 2009-01-29 14:36:06 -0500 | [diff] [blame] | 285 | mbar_writeLong(MCF_FMPLL_SYNCR, |
Zachary P. Landau | 0bba862 | 2006-01-26 17:35:56 -0500 | [diff] [blame] | 286 | MCF_FMPLL_SYNCR_MFD(0) | MCF_FMPLL_SYNCR_RFD(0)); |
Richard Retanubun | fbb5521 | 2009-01-29 14:36:06 -0500 | [diff] [blame] | 287 | #endif |
Mike Frysinger | 9b72828 | 2011-10-15 10:10:42 +0000 | [diff] [blame] | 288 | while (!(mbar_readByte(MCF_FMPLL_SYNSR) & MCF_FMPLL_SYNSR_LOCK)) ; |
Zachary P. Landau | 0bba862 | 2006-01-26 17:35:56 -0500 | [diff] [blame] | 289 | } |
| 290 | |
| 291 | /* |
| 292 | * initialize higher level parts of CPU like timers |
| 293 | */ |
TsiChungLiew | 8cd73be | 2007-08-15 19:21:21 -0500 | [diff] [blame] | 294 | int cpu_init_r(void) |
Zachary P. Landau | 0bba862 | 2006-01-26 17:35:56 -0500 | [diff] [blame] | 295 | { |
| 296 | return (0); |
| 297 | } |
TsiChungLiew | 8cd73be | 2007-08-15 19:21:21 -0500 | [diff] [blame] | 298 | |
TsiChung Liew | f9556a7 | 2010-03-09 19:17:52 -0600 | [diff] [blame] | 299 | void uart_port_conf(int port) |
TsiChungLiew | 8cd73be | 2007-08-15 19:21:21 -0500 | [diff] [blame] | 300 | { |
TsiChung Liew | f9556a7 | 2010-03-09 19:17:52 -0600 | [diff] [blame] | 301 | u16 temp; |
| 302 | |
TsiChungLiew | 8cd73be | 2007-08-15 19:21:21 -0500 | [diff] [blame] | 303 | /* Setup Ports: */ |
TsiChung Liew | f9556a7 | 2010-03-09 19:17:52 -0600 | [diff] [blame] | 304 | switch (port) { |
TsiChungLiew | 8cd73be | 2007-08-15 19:21:21 -0500 | [diff] [blame] | 305 | case 0: |
TsiChung Liew | f9556a7 | 2010-03-09 19:17:52 -0600 | [diff] [blame] | 306 | temp = mbar_readShort(MCF_GPIO_PAR_UART) & 0xFFF3; |
| 307 | temp |= (MCF_GPIO_PAR_UART_U0TXD | MCF_GPIO_PAR_UART_U0RXD); |
| 308 | mbar_writeShort(MCF_GPIO_PAR_UART, temp); |
TsiChungLiew | 8cd73be | 2007-08-15 19:21:21 -0500 | [diff] [blame] | 309 | break; |
| 310 | case 1: |
TsiChung Liew | f9556a7 | 2010-03-09 19:17:52 -0600 | [diff] [blame] | 311 | temp = mbar_readShort(MCF_GPIO_PAR_UART) & 0xF0FF; |
| 312 | temp |= (MCF_GPIO_PAR_UART_U1RXD_UART1 | MCF_GPIO_PAR_UART_U1TXD_UART1); |
| 313 | mbar_writeShort(MCF_GPIO_PAR_UART, temp); |
TsiChungLiew | 8cd73be | 2007-08-15 19:21:21 -0500 | [diff] [blame] | 314 | break; |
| 315 | case 2: |
TsiChung Liew | f9556a7 | 2010-03-09 19:17:52 -0600 | [diff] [blame] | 316 | temp = mbar_readShort(MCF_GPIO_PAR_UART) & 0xCFFF; |
| 317 | temp |= (0x3000); |
| 318 | mbar_writeShort(MCF_GPIO_PAR_UART, temp); |
TsiChungLiew | 8cd73be | 2007-08-15 19:21:21 -0500 | [diff] [blame] | 319 | break; |
| 320 | } |
TsiChung Liew | 69b1757 | 2008-10-21 13:47:54 +0000 | [diff] [blame] | 321 | } |
| 322 | |
| 323 | #if defined(CONFIG_CMD_NET) |
| 324 | int fecpin_setclear(struct eth_device *dev, int setclear) |
| 325 | { |
| 326 | if (setclear) { |
| 327 | /* Enable Ethernet pins */ |
Richard Retanubun | 0ad94fd | 2009-01-23 10:47:13 -0500 | [diff] [blame] | 328 | mbar_writeByte(MCF_GPIO_PAR_FECI2C, |
| 329 | (mbar_readByte(MCF_GPIO_PAR_FECI2C) | 0xF0)); |
TsiChung Liew | 69b1757 | 2008-10-21 13:47:54 +0000 | [diff] [blame] | 330 | } else { |
| 331 | } |
| 332 | |
| 333 | return 0; |
TsiChungLiew | 8cd73be | 2007-08-15 19:21:21 -0500 | [diff] [blame] | 334 | } |
TsiChung Liew | 69b1757 | 2008-10-21 13:47:54 +0000 | [diff] [blame] | 335 | #endif /* CONFIG_CMD_NET */ |
Richard Retanubun | 9324138 | 2011-03-24 08:58:11 +0000 | [diff] [blame] | 336 | |
| 337 | #if defined(CONFIG_CF_QSPI) |
| 338 | |
| 339 | /* Configure PIOs for SIN, SOUT, and SCK */ |
| 340 | void cfspi_port_conf(void) |
| 341 | { |
| 342 | mbar_writeByte(MCF_GPIO_PAR_QSPI, |
| 343 | MCF_GPIO_PAR_QSPI_SIN_SIN | |
| 344 | MCF_GPIO_PAR_QSPI_SOUT_SOUT | |
| 345 | MCF_GPIO_PAR_QSPI_SCK_SCK); |
| 346 | } |
| 347 | #endif /* CONFIG_CF_QSPI */ |
| 348 | |
| 349 | #endif /* CONFIG_M5271 */ |
Zachary P. Landau | 0bba862 | 2006-01-26 17:35:56 -0500 | [diff] [blame] | 350 | |
stroese | 53395a2 | 2004-12-16 18:09:49 +0000 | [diff] [blame] | 351 | #if defined(CONFIG_M5272) |
wdenk | e65527f | 2004-02-12 00:47:09 +0000 | [diff] [blame] | 352 | /* |
| 353 | * Breath some life into the CPU... |
| 354 | * |
| 355 | * Set up the memory map, |
| 356 | * initialize a bunch of registers, |
| 357 | * initialize the UPM's |
| 358 | */ |
TsiChungLiew | 8cd73be | 2007-08-15 19:21:21 -0500 | [diff] [blame] | 359 | void cpu_init_f(void) |
wdenk | e65527f | 2004-02-12 00:47:09 +0000 | [diff] [blame] | 360 | { |
| 361 | /* if we come from RAM we assume the CPU is |
| 362 | * already initialized. |
| 363 | */ |
| 364 | #ifndef CONFIG_MONITOR_IS_IN_RAM |
Alison Wang | 95bed1f | 2012-03-26 21:49:04 +0000 | [diff] [blame] | 365 | sysctrl_t *sysctrl = (sysctrl_t *) (CONFIG_SYS_MBAR); |
| 366 | gpio_t *gpio = (gpio_t *) (MMAP_GPIO); |
| 367 | csctrl_t *csctrl = (csctrl_t *) (MMAP_FBCS); |
wdenk | e65527f | 2004-02-12 00:47:09 +0000 | [diff] [blame] | 368 | |
Alison Wang | 95bed1f | 2012-03-26 21:49:04 +0000 | [diff] [blame] | 369 | out_be16(&sysctrl->sc_scr, CONFIG_SYS_SCR); |
| 370 | out_be16(&sysctrl->sc_spr, CONFIG_SYS_SPR); |
wdenk | e65527f | 2004-02-12 00:47:09 +0000 | [diff] [blame] | 371 | |
Wolfgang Denk | c2c4944 | 2006-05-10 17:43:20 +0200 | [diff] [blame] | 372 | /* Setup Ports: */ |
Alison Wang | 95bed1f | 2012-03-26 21:49:04 +0000 | [diff] [blame] | 373 | out_be32(&gpio->gpio_pacnt, CONFIG_SYS_PACNT); |
| 374 | out_be16(&gpio->gpio_paddr, CONFIG_SYS_PADDR); |
| 375 | out_be16(&gpio->gpio_padat, CONFIG_SYS_PADAT); |
| 376 | out_be32(&gpio->gpio_pbcnt, CONFIG_SYS_PBCNT); |
| 377 | out_be16(&gpio->gpio_pbddr, CONFIG_SYS_PBDDR); |
| 378 | out_be16(&gpio->gpio_pbdat, CONFIG_SYS_PBDAT); |
| 379 | out_be32(&gpio->gpio_pdcnt, CONFIG_SYS_PDCNT); |
wdenk | e65527f | 2004-02-12 00:47:09 +0000 | [diff] [blame] | 380 | |
| 381 | /* Memory Controller: */ |
Alison Wang | 95bed1f | 2012-03-26 21:49:04 +0000 | [diff] [blame] | 382 | out_be32(&csctrl->cs_br0, CONFIG_SYS_BR0_PRELIM); |
| 383 | out_be32(&csctrl->cs_or0, CONFIG_SYS_OR0_PRELIM); |
wdenk | e65527f | 2004-02-12 00:47:09 +0000 | [diff] [blame] | 384 | |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 385 | #if (defined(CONFIG_SYS_OR1_PRELIM) && defined(CONFIG_SYS_BR1_PRELIM)) |
Alison Wang | 95bed1f | 2012-03-26 21:49:04 +0000 | [diff] [blame] | 386 | out_be32(&csctrl->cs_br1, CONFIG_SYS_BR1_PRELIM); |
| 387 | out_be32(&csctrl->cs_or1, CONFIG_SYS_OR1_PRELIM); |
wdenk | e65527f | 2004-02-12 00:47:09 +0000 | [diff] [blame] | 388 | #endif |
| 389 | |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 390 | #if defined(CONFIG_SYS_OR2_PRELIM) && defined(CONFIG_SYS_BR2_PRELIM) |
Alison Wang | 95bed1f | 2012-03-26 21:49:04 +0000 | [diff] [blame] | 391 | out_be32(&csctrl->cs_br2, CONFIG_SYS_BR2_PRELIM); |
| 392 | out_be32(&csctrl->cs_or2, CONFIG_SYS_OR2_PRELIM); |
wdenk | e65527f | 2004-02-12 00:47:09 +0000 | [diff] [blame] | 393 | #endif |
| 394 | |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 395 | #if defined(CONFIG_SYS_OR3_PRELIM) && defined(CONFIG_SYS_BR3_PRELIM) |
Alison Wang | 95bed1f | 2012-03-26 21:49:04 +0000 | [diff] [blame] | 396 | out_be32(&csctrl->cs_br3, CONFIG_SYS_BR3_PRELIM); |
| 397 | out_be32(&csctrl->cs_or3, CONFIG_SYS_OR3_PRELIM); |
wdenk | e65527f | 2004-02-12 00:47:09 +0000 | [diff] [blame] | 398 | #endif |
| 399 | |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 400 | #if defined(CONFIG_SYS_OR4_PRELIM) && defined(CONFIG_SYS_BR4_PRELIM) |
Alison Wang | 95bed1f | 2012-03-26 21:49:04 +0000 | [diff] [blame] | 401 | out_be32(&csctrl->cs_br4, CONFIG_SYS_BR4_PRELIM); |
| 402 | out_be32(&csctrl->cs_or4, CONFIG_SYS_OR4_PRELIM); |
wdenk | e65527f | 2004-02-12 00:47:09 +0000 | [diff] [blame] | 403 | #endif |
| 404 | |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 405 | #if defined(CONFIG_SYS_OR5_PRELIM) && defined(CONFIG_SYS_BR5_PRELIM) |
Alison Wang | 95bed1f | 2012-03-26 21:49:04 +0000 | [diff] [blame] | 406 | out_be32(&csctrl->cs_br5, CONFIG_SYS_BR5_PRELIM); |
| 407 | out_be32(&csctrl->cs_or5, CONFIG_SYS_OR5_PRELIM); |
wdenk | e65527f | 2004-02-12 00:47:09 +0000 | [diff] [blame] | 408 | #endif |
| 409 | |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 410 | #if defined(CONFIG_SYS_OR6_PRELIM) && defined(CONFIG_SYS_BR6_PRELIM) |
Alison Wang | 95bed1f | 2012-03-26 21:49:04 +0000 | [diff] [blame] | 411 | out_be32(&csctrl->cs_br6, CONFIG_SYS_BR6_PRELIM); |
| 412 | out_be32(&csctrl->cs_or6, CONFIG_SYS_OR6_PRELIM); |
wdenk | e65527f | 2004-02-12 00:47:09 +0000 | [diff] [blame] | 413 | #endif |
| 414 | |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 415 | #if defined(CONFIG_SYS_OR7_PRELIM) && defined(CONFIG_SYS_BR7_PRELIM) |
Alison Wang | 95bed1f | 2012-03-26 21:49:04 +0000 | [diff] [blame] | 416 | out_be32(&csctrl->cs_br7, CONFIG_SYS_BR7_PRELIM); |
| 417 | out_be32(&csctrl->cs_or7, CONFIG_SYS_OR7_PRELIM); |
wdenk | e65527f | 2004-02-12 00:47:09 +0000 | [diff] [blame] | 418 | #endif |
| 419 | |
TsiChungLiew | 8cd73be | 2007-08-15 19:21:21 -0500 | [diff] [blame] | 420 | #endif /* #ifndef CONFIG_MONITOR_IS_IN_RAM */ |
wdenk | e65527f | 2004-02-12 00:47:09 +0000 | [diff] [blame] | 421 | |
Wolfgang Denk | c2c4944 | 2006-05-10 17:43:20 +0200 | [diff] [blame] | 422 | /* enable instruction cache now */ |
| 423 | icache_enable(); |
wdenk | e65527f | 2004-02-12 00:47:09 +0000 | [diff] [blame] | 424 | |
| 425 | } |
| 426 | |
| 427 | /* |
| 428 | * initialize higher level parts of CPU like timers |
| 429 | */ |
TsiChungLiew | 8cd73be | 2007-08-15 19:21:21 -0500 | [diff] [blame] | 430 | int cpu_init_r(void) |
wdenk | e65527f | 2004-02-12 00:47:09 +0000 | [diff] [blame] | 431 | { |
| 432 | return (0); |
| 433 | } |
wdenk | e65527f | 2004-02-12 00:47:09 +0000 | [diff] [blame] | 434 | |
TsiChung Liew | f9556a7 | 2010-03-09 19:17:52 -0600 | [diff] [blame] | 435 | void uart_port_conf(int port) |
TsiChungLiew | 8cd73be | 2007-08-15 19:21:21 -0500 | [diff] [blame] | 436 | { |
Alison Wang | 95bed1f | 2012-03-26 21:49:04 +0000 | [diff] [blame] | 437 | gpio_t *gpio = (gpio_t *) MMAP_GPIO; |
wdenk | e65527f | 2004-02-12 00:47:09 +0000 | [diff] [blame] | 438 | |
TsiChungLiew | 8cd73be | 2007-08-15 19:21:21 -0500 | [diff] [blame] | 439 | /* Setup Ports: */ |
TsiChung Liew | f9556a7 | 2010-03-09 19:17:52 -0600 | [diff] [blame] | 440 | switch (port) { |
TsiChungLiew | 8cd73be | 2007-08-15 19:21:21 -0500 | [diff] [blame] | 441 | case 0: |
Alison Wang | 95bed1f | 2012-03-26 21:49:04 +0000 | [diff] [blame] | 442 | clrbits_be32(&gpio->gpio_pbcnt, |
| 443 | GPIO_PBCNT_PB0MSK | GPIO_PBCNT_PB1MSK); |
| 444 | setbits_be32(&gpio->gpio_pbcnt, |
| 445 | GPIO_PBCNT_URT0_TXD | GPIO_PBCNT_URT0_RXD); |
TsiChungLiew | 8cd73be | 2007-08-15 19:21:21 -0500 | [diff] [blame] | 446 | break; |
| 447 | case 1: |
Alison Wang | 95bed1f | 2012-03-26 21:49:04 +0000 | [diff] [blame] | 448 | clrbits_be32(&gpio->gpio_pdcnt, |
| 449 | GPIO_PDCNT_PD1MSK | GPIO_PDCNT_PD4MSK); |
| 450 | setbits_be32(&gpio->gpio_pdcnt, |
| 451 | GPIO_PDCNT_URT1_RXD | GPIO_PDCNT_URT1_TXD); |
TsiChungLiew | 8cd73be | 2007-08-15 19:21:21 -0500 | [diff] [blame] | 452 | break; |
| 453 | } |
| 454 | } |
TsiChung Liew | 69b1757 | 2008-10-21 13:47:54 +0000 | [diff] [blame] | 455 | |
| 456 | #if defined(CONFIG_CMD_NET) |
| 457 | int fecpin_setclear(struct eth_device *dev, int setclear) |
| 458 | { |
Alison Wang | 95bed1f | 2012-03-26 21:49:04 +0000 | [diff] [blame] | 459 | gpio_t *gpio = (gpio_t *) MMAP_GPIO; |
TsiChung Liew | 69b1757 | 2008-10-21 13:47:54 +0000 | [diff] [blame] | 460 | |
| 461 | if (setclear) { |
Alison Wang | 95bed1f | 2012-03-26 21:49:04 +0000 | [diff] [blame] | 462 | setbits_be32(&gpio->gpio_pbcnt, |
| 463 | GPIO_PBCNT_E_MDC | GPIO_PBCNT_E_RXER | |
| 464 | GPIO_PBCNT_E_RXD1 | GPIO_PBCNT_E_RXD2 | |
| 465 | GPIO_PBCNT_E_RXD3 | GPIO_PBCNT_E_TXD1 | |
| 466 | GPIO_PBCNT_E_TXD2 | GPIO_PBCNT_E_TXD3); |
TsiChung Liew | 69b1757 | 2008-10-21 13:47:54 +0000 | [diff] [blame] | 467 | } else { |
| 468 | } |
| 469 | return 0; |
| 470 | } |
| 471 | #endif /* CONFIG_CMD_NET */ |
TsiChungLiew | 8cd73be | 2007-08-15 19:21:21 -0500 | [diff] [blame] | 472 | #endif /* #if defined(CONFIG_M5272) */ |
| 473 | |
Matthew Fettke | 761e2e9 | 2008-02-04 15:38:20 -0600 | [diff] [blame] | 474 | #if defined(CONFIG_M5275) |
| 475 | |
| 476 | /* |
| 477 | * Breathe some life into the CPU... |
| 478 | * |
| 479 | * Set up the memory map, |
| 480 | * initialize a bunch of registers, |
| 481 | * initialize the UPM's |
| 482 | */ |
| 483 | void cpu_init_f(void) |
| 484 | { |
TsiChung Liew | 7f1a046 | 2008-10-21 10:03:07 +0000 | [diff] [blame] | 485 | /* |
| 486 | * if we come from RAM we assume the CPU is |
Matthew Fettke | 761e2e9 | 2008-02-04 15:38:20 -0600 | [diff] [blame] | 487 | * already initialized. |
| 488 | */ |
| 489 | |
| 490 | #ifndef CONFIG_MONITOR_IS_IN_RAM |
Alison Wang | 95bed1f | 2012-03-26 21:49:04 +0000 | [diff] [blame] | 491 | wdog_t *wdog_reg = (wdog_t *) (MMAP_WDOG); |
| 492 | gpio_t *gpio_reg = (gpio_t *) (MMAP_GPIO); |
Matthew Fettke | 761e2e9 | 2008-02-04 15:38:20 -0600 | [diff] [blame] | 493 | |
| 494 | /* Kill watchdog so we can initialize the PLL */ |
Alison Wang | 95bed1f | 2012-03-26 21:49:04 +0000 | [diff] [blame] | 495 | out_be16(&wdog_reg->wcr, 0); |
Matthew Fettke | 761e2e9 | 2008-02-04 15:38:20 -0600 | [diff] [blame] | 496 | |
TsiChung Liew | 7f1a046 | 2008-10-21 10:03:07 +0000 | [diff] [blame] | 497 | /* FlexBus Chipselect */ |
| 498 | init_fbcs(); |
Matthew Fettke | 761e2e9 | 2008-02-04 15:38:20 -0600 | [diff] [blame] | 499 | #endif /* #ifndef CONFIG_MONITOR_IS_IN_RAM */ |
| 500 | |
| 501 | #ifdef CONFIG_FSL_I2C |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 502 | CONFIG_SYS_I2C_PINMUX_REG &= CONFIG_SYS_I2C_PINMUX_CLR; |
| 503 | CONFIG_SYS_I2C_PINMUX_REG |= CONFIG_SYS_I2C_PINMUX_SET; |
Matthew Fettke | 761e2e9 | 2008-02-04 15:38:20 -0600 | [diff] [blame] | 504 | #endif |
| 505 | |
| 506 | /* enable instruction cache now */ |
| 507 | icache_enable(); |
| 508 | } |
| 509 | |
| 510 | /* |
| 511 | * initialize higher level parts of CPU like timers |
| 512 | */ |
| 513 | int cpu_init_r(void) |
| 514 | { |
| 515 | return (0); |
| 516 | } |
| 517 | |
TsiChung Liew | f9556a7 | 2010-03-09 19:17:52 -0600 | [diff] [blame] | 518 | void uart_port_conf(int port) |
Matthew Fettke | 761e2e9 | 2008-02-04 15:38:20 -0600 | [diff] [blame] | 519 | { |
Alison Wang | 95bed1f | 2012-03-26 21:49:04 +0000 | [diff] [blame] | 520 | gpio_t *gpio = (gpio_t *) MMAP_GPIO; |
Matthew Fettke | 761e2e9 | 2008-02-04 15:38:20 -0600 | [diff] [blame] | 521 | |
| 522 | /* Setup Ports: */ |
TsiChung Liew | f9556a7 | 2010-03-09 19:17:52 -0600 | [diff] [blame] | 523 | switch (port) { |
Matthew Fettke | 761e2e9 | 2008-02-04 15:38:20 -0600 | [diff] [blame] | 524 | case 0: |
Alison Wang | 95bed1f | 2012-03-26 21:49:04 +0000 | [diff] [blame] | 525 | clrbits_be16(&gpio->par_uart, UART0_ENABLE_MASK); |
| 526 | setbits_be16(&gpio->par_uart, UART0_ENABLE_MASK); |
Matthew Fettke | 761e2e9 | 2008-02-04 15:38:20 -0600 | [diff] [blame] | 527 | break; |
| 528 | case 1: |
Alison Wang | 95bed1f | 2012-03-26 21:49:04 +0000 | [diff] [blame] | 529 | clrbits_be16(&gpio->par_uart, UART1_ENABLE_MASK); |
| 530 | setbits_be16(&gpio->par_uart, UART1_ENABLE_MASK); |
Matthew Fettke | 761e2e9 | 2008-02-04 15:38:20 -0600 | [diff] [blame] | 531 | break; |
| 532 | case 2: |
Alison Wang | 95bed1f | 2012-03-26 21:49:04 +0000 | [diff] [blame] | 533 | clrbits_be16(&gpio->par_uart, UART2_ENABLE_MASK); |
| 534 | setbits_be16(&gpio->par_uart, UART2_ENABLE_MASK); |
Matthew Fettke | 761e2e9 | 2008-02-04 15:38:20 -0600 | [diff] [blame] | 535 | break; |
| 536 | } |
| 537 | } |
TsiChung Liew | 69b1757 | 2008-10-21 13:47:54 +0000 | [diff] [blame] | 538 | |
| 539 | #if defined(CONFIG_CMD_NET) |
| 540 | int fecpin_setclear(struct eth_device *dev, int setclear) |
| 541 | { |
| 542 | struct fec_info_s *info = (struct fec_info_s *) dev->priv; |
Alison Wang | 95bed1f | 2012-03-26 21:49:04 +0000 | [diff] [blame] | 543 | gpio_t *gpio = (gpio_t *)MMAP_GPIO; |
TsiChung Liew | 69b1757 | 2008-10-21 13:47:54 +0000 | [diff] [blame] | 544 | |
| 545 | if (setclear) { |
| 546 | /* Enable Ethernet pins */ |
| 547 | if (info->iobase == CONFIG_SYS_FEC0_IOBASE) { |
Alison Wang | 95bed1f | 2012-03-26 21:49:04 +0000 | [diff] [blame] | 548 | setbits_be16(&gpio->par_feci2c, 0x0f00); |
| 549 | setbits_8(&gpio->par_fec0hl, 0xc0); |
TsiChung Liew | 69b1757 | 2008-10-21 13:47:54 +0000 | [diff] [blame] | 550 | } else { |
Alison Wang | 95bed1f | 2012-03-26 21:49:04 +0000 | [diff] [blame] | 551 | setbits_be16(&gpio->par_feci2c, 0x00a0); |
| 552 | setbits_8(&gpio->par_fec1hl, 0xc0); |
TsiChung Liew | 69b1757 | 2008-10-21 13:47:54 +0000 | [diff] [blame] | 553 | } |
| 554 | } else { |
| 555 | if (info->iobase == CONFIG_SYS_FEC0_IOBASE) { |
Alison Wang | 95bed1f | 2012-03-26 21:49:04 +0000 | [diff] [blame] | 556 | clrbits_be16(&gpio->par_feci2c, 0x0f00); |
| 557 | clrbits_8(&gpio->par_fec0hl, 0xc0); |
TsiChung Liew | 69b1757 | 2008-10-21 13:47:54 +0000 | [diff] [blame] | 558 | } else { |
Alison Wang | 95bed1f | 2012-03-26 21:49:04 +0000 | [diff] [blame] | 559 | clrbits_be16(&gpio->par_feci2c, 0x00a0); |
| 560 | clrbits_8(&gpio->par_fec1hl, 0xc0); |
TsiChung Liew | 69b1757 | 2008-10-21 13:47:54 +0000 | [diff] [blame] | 561 | } |
| 562 | } |
| 563 | |
| 564 | return 0; |
| 565 | } |
| 566 | #endif /* CONFIG_CMD_NET */ |
Matthew Fettke | 761e2e9 | 2008-02-04 15:38:20 -0600 | [diff] [blame] | 567 | #endif /* #if defined(CONFIG_M5275) */ |
| 568 | |
TsiChungLiew | 8cd73be | 2007-08-15 19:21:21 -0500 | [diff] [blame] | 569 | #if defined(CONFIG_M5282) |
wdenk | e65527f | 2004-02-12 00:47:09 +0000 | [diff] [blame] | 570 | /* |
| 571 | * Breath some life into the CPU... |
| 572 | * |
| 573 | * Set up the memory map, |
| 574 | * initialize a bunch of registers, |
| 575 | * initialize the UPM's |
| 576 | */ |
TsiChungLiew | 8cd73be | 2007-08-15 19:21:21 -0500 | [diff] [blame] | 577 | void cpu_init_f(void) |
wdenk | e65527f | 2004-02-12 00:47:09 +0000 | [diff] [blame] | 578 | { |
Heiko Schocher | ac1956e | 2006-04-20 08:42:42 +0200 | [diff] [blame] | 579 | #ifndef CONFIG_WATCHDOG |
| 580 | /* disable watchdog if we aren't using it */ |
| 581 | MCFWTM_WCR = 0; |
| 582 | #endif |
| 583 | |
| 584 | #ifndef CONFIG_MONITOR_IS_IN_RAM |
| 585 | /* Set speed /PLL */ |
TsiChungLiew | 8cd73be | 2007-08-15 19:21:21 -0500 | [diff] [blame] | 586 | MCFCLOCK_SYNCR = |
TsiChung Liew | 7f1a046 | 2008-10-21 10:03:07 +0000 | [diff] [blame] | 587 | MCFCLOCK_SYNCR_MFD(CONFIG_SYS_MFD) | |
| 588 | MCFCLOCK_SYNCR_RFD(CONFIG_SYS_RFD); |
TsiChungLiew | 8cd73be | 2007-08-15 19:21:21 -0500 | [diff] [blame] | 589 | while (!(MCFCLOCK_SYNSR & MCFCLOCK_SYNSR_LOCK)) ; |
| 590 | |
| 591 | MCFGPIO_PBCDPAR = 0xc0; |
Heiko Schocher | ac1956e | 2006-04-20 08:42:42 +0200 | [diff] [blame] | 592 | |
| 593 | /* Set up the GPIO ports */ |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 594 | #ifdef CONFIG_SYS_PEPAR |
| 595 | MCFGPIO_PEPAR = CONFIG_SYS_PEPAR; |
Heiko Schocher | ac1956e | 2006-04-20 08:42:42 +0200 | [diff] [blame] | 596 | #endif |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 597 | #ifdef CONFIG_SYS_PFPAR |
| 598 | MCFGPIO_PFPAR = CONFIG_SYS_PFPAR; |
Heiko Schocher | ac1956e | 2006-04-20 08:42:42 +0200 | [diff] [blame] | 599 | #endif |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 600 | #ifdef CONFIG_SYS_PJPAR |
| 601 | MCFGPIO_PJPAR = CONFIG_SYS_PJPAR; |
Heiko Schocher | ac1956e | 2006-04-20 08:42:42 +0200 | [diff] [blame] | 602 | #endif |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 603 | #ifdef CONFIG_SYS_PSDPAR |
| 604 | MCFGPIO_PSDPAR = CONFIG_SYS_PSDPAR; |
Heiko Schocher | ac1956e | 2006-04-20 08:42:42 +0200 | [diff] [blame] | 605 | #endif |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 606 | #ifdef CONFIG_SYS_PASPAR |
| 607 | MCFGPIO_PASPAR = CONFIG_SYS_PASPAR; |
Heiko Schocher | ac1956e | 2006-04-20 08:42:42 +0200 | [diff] [blame] | 608 | #endif |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 609 | #ifdef CONFIG_SYS_PEHLPAR |
| 610 | MCFGPIO_PEHLPAR = CONFIG_SYS_PEHLPAR; |
Heiko Schocher | ac1956e | 2006-04-20 08:42:42 +0200 | [diff] [blame] | 611 | #endif |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 612 | #ifdef CONFIG_SYS_PQSPAR |
| 613 | MCFGPIO_PQSPAR = CONFIG_SYS_PQSPAR; |
Heiko Schocher | ac1956e | 2006-04-20 08:42:42 +0200 | [diff] [blame] | 614 | #endif |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 615 | #ifdef CONFIG_SYS_PTCPAR |
| 616 | MCFGPIO_PTCPAR = CONFIG_SYS_PTCPAR; |
Heiko Schocher | ac1956e | 2006-04-20 08:42:42 +0200 | [diff] [blame] | 617 | #endif |
Michael Durrant | a4991f2 | 2010-01-20 19:33:02 -0600 | [diff] [blame] | 618 | #if defined(CONFIG_SYS_PORTTC) |
| 619 | MCFGPIO_PORTTC = CONFIG_SYS_PORTTC; |
| 620 | #endif |
| 621 | #if defined(CONFIG_SYS_DDRTC) |
| 622 | MCFGPIO_DDRTC = CONFIG_SYS_DDRTC; |
| 623 | #endif |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 624 | #ifdef CONFIG_SYS_PTDPAR |
| 625 | MCFGPIO_PTDPAR = CONFIG_SYS_PTDPAR; |
Heiko Schocher | ac1956e | 2006-04-20 08:42:42 +0200 | [diff] [blame] | 626 | #endif |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 627 | #ifdef CONFIG_SYS_PUAPAR |
| 628 | MCFGPIO_PUAPAR = CONFIG_SYS_PUAPAR; |
Heiko Schocher | ac1956e | 2006-04-20 08:42:42 +0200 | [diff] [blame] | 629 | #endif |
| 630 | |
Michael Durrant | a4991f2 | 2010-01-20 19:33:02 -0600 | [diff] [blame] | 631 | #if defined(CONFIG_SYS_DDRD) |
| 632 | MCFGPIO_DDRD = CONFIG_SYS_DDRD; |
| 633 | #endif |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 634 | #ifdef CONFIG_SYS_DDRUA |
| 635 | MCFGPIO_DDRUA = CONFIG_SYS_DDRUA; |
Heiko Schocher | ac1956e | 2006-04-20 08:42:42 +0200 | [diff] [blame] | 636 | #endif |
Heiko Schocher | ac1956e | 2006-04-20 08:42:42 +0200 | [diff] [blame] | 637 | |
TsiChung Liew | 7f1a046 | 2008-10-21 10:03:07 +0000 | [diff] [blame] | 638 | /* FlexBus Chipselect */ |
| 639 | init_fbcs(); |
Heiko Schocher | ac1956e | 2006-04-20 08:42:42 +0200 | [diff] [blame] | 640 | |
TsiChungLiew | 8cd73be | 2007-08-15 19:21:21 -0500 | [diff] [blame] | 641 | #endif /* CONFIG_MONITOR_IS_IN_RAM */ |
wdenk | e65527f | 2004-02-12 00:47:09 +0000 | [diff] [blame] | 642 | |
Heiko Schocher | ac1956e | 2006-04-20 08:42:42 +0200 | [diff] [blame] | 643 | /* defer enabling cache until boot (see do_go) */ |
| 644 | /* icache_enable(); */ |
wdenk | e65527f | 2004-02-12 00:47:09 +0000 | [diff] [blame] | 645 | } |
| 646 | |
| 647 | /* |
| 648 | * initialize higher level parts of CPU like timers |
| 649 | */ |
TsiChungLiew | 8cd73be | 2007-08-15 19:21:21 -0500 | [diff] [blame] | 650 | int cpu_init_r(void) |
wdenk | e65527f | 2004-02-12 00:47:09 +0000 | [diff] [blame] | 651 | { |
| 652 | return (0); |
| 653 | } |
TsiChungLiew | 8cd73be | 2007-08-15 19:21:21 -0500 | [diff] [blame] | 654 | |
TsiChung Liew | f9556a7 | 2010-03-09 19:17:52 -0600 | [diff] [blame] | 655 | void uart_port_conf(int port) |
TsiChungLiew | 8cd73be | 2007-08-15 19:21:21 -0500 | [diff] [blame] | 656 | { |
| 657 | /* Setup Ports: */ |
TsiChung Liew | f9556a7 | 2010-03-09 19:17:52 -0600 | [diff] [blame] | 658 | switch (port) { |
TsiChungLiew | 8cd73be | 2007-08-15 19:21:21 -0500 | [diff] [blame] | 659 | case 0: |
| 660 | MCFGPIO_PUAPAR &= 0xFc; |
| 661 | MCFGPIO_PUAPAR |= 0x03; |
| 662 | break; |
| 663 | case 1: |
| 664 | MCFGPIO_PUAPAR &= 0xF3; |
| 665 | MCFGPIO_PUAPAR |= 0x0C; |
| 666 | break; |
| 667 | case 2: |
| 668 | MCFGPIO_PASPAR &= 0xFF0F; |
| 669 | MCFGPIO_PASPAR |= 0x00A0; |
| 670 | break; |
| 671 | } |
TsiChung Liew | 69b1757 | 2008-10-21 13:47:54 +0000 | [diff] [blame] | 672 | } |
| 673 | |
| 674 | #if defined(CONFIG_CMD_NET) |
| 675 | int fecpin_setclear(struct eth_device *dev, int setclear) |
| 676 | { |
| 677 | if (setclear) { |
| 678 | MCFGPIO_PASPAR |= 0x0F00; |
| 679 | MCFGPIO_PEHLPAR = CONFIG_SYS_PEHLPAR; |
| 680 | } else { |
| 681 | MCFGPIO_PASPAR &= 0xF0FF; |
| 682 | MCFGPIO_PEHLPAR &= ~CONFIG_SYS_PEHLPAR; |
| 683 | } |
| 684 | return 0; |
TsiChungLiew | 8cd73be | 2007-08-15 19:21:21 -0500 | [diff] [blame] | 685 | } |
TsiChung Liew | 69b1757 | 2008-10-21 13:47:54 +0000 | [diff] [blame] | 686 | #endif /* CONFIG_CMD_NET */ |
wdenk | e65527f | 2004-02-12 00:47:09 +0000 | [diff] [blame] | 687 | #endif |
stroese | 53395a2 | 2004-12-16 18:09:49 +0000 | [diff] [blame] | 688 | |
| 689 | #if defined(CONFIG_M5249) |
| 690 | /* |
| 691 | * Breath some life into the CPU... |
| 692 | * |
| 693 | * Set up the memory map, |
| 694 | * initialize a bunch of registers, |
| 695 | * initialize the UPM's |
| 696 | */ |
TsiChungLiew | 8cd73be | 2007-08-15 19:21:21 -0500 | [diff] [blame] | 697 | void cpu_init_f(void) |
stroese | 53395a2 | 2004-12-16 18:09:49 +0000 | [diff] [blame] | 698 | { |
stroese | 53395a2 | 2004-12-16 18:09:49 +0000 | [diff] [blame] | 699 | /* |
| 700 | * NOTE: by setting the GPIO_FUNCTION registers, we ensure that the UART pins |
TsiChungLiew | 8cd73be | 2007-08-15 19:21:21 -0500 | [diff] [blame] | 701 | * (UART0: gpio 30,27, UART1: gpio 31, 28) will be used as UART pins |
| 702 | * which is their primary function. |
| 703 | * ~Jeremy |
stroese | 53395a2 | 2004-12-16 18:09:49 +0000 | [diff] [blame] | 704 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 705 | mbar2_writeLong(MCFSIM_GPIO_FUNC, CONFIG_SYS_GPIO_FUNC); |
| 706 | mbar2_writeLong(MCFSIM_GPIO1_FUNC, CONFIG_SYS_GPIO1_FUNC); |
| 707 | mbar2_writeLong(MCFSIM_GPIO_EN, CONFIG_SYS_GPIO_EN); |
| 708 | mbar2_writeLong(MCFSIM_GPIO1_EN, CONFIG_SYS_GPIO1_EN); |
| 709 | mbar2_writeLong(MCFSIM_GPIO_OUT, CONFIG_SYS_GPIO_OUT); |
| 710 | mbar2_writeLong(MCFSIM_GPIO1_OUT, CONFIG_SYS_GPIO1_OUT); |
stroese | 53395a2 | 2004-12-16 18:09:49 +0000 | [diff] [blame] | 711 | |
| 712 | /* |
| 713 | * dBug Compliance: |
| 714 | * You can verify these values by using dBug's 'ird' |
| 715 | * (Internal Register Display) command |
| 716 | * ~Jeremy |
| 717 | * |
Wolfgang Denk | c2c4944 | 2006-05-10 17:43:20 +0200 | [diff] [blame] | 718 | */ |
TsiChungLiew | 8cd73be | 2007-08-15 19:21:21 -0500 | [diff] [blame] | 719 | mbar_writeByte(MCFSIM_MPARK, 0x30); /* 5249 Internal Core takes priority over DMA */ |
stroese | 53395a2 | 2004-12-16 18:09:49 +0000 | [diff] [blame] | 720 | mbar_writeByte(MCFSIM_SYPCR, 0x00); |
| 721 | mbar_writeByte(MCFSIM_SWIVR, 0x0f); |
| 722 | mbar_writeByte(MCFSIM_SWSR, 0x00); |
| 723 | mbar_writeLong(MCFSIM_IMR, 0xfffffbff); |
| 724 | mbar_writeByte(MCFSIM_SWDICR, 0x00); |
| 725 | mbar_writeByte(MCFSIM_TIMER1ICR, 0x00); |
| 726 | mbar_writeByte(MCFSIM_TIMER2ICR, 0x88); |
| 727 | mbar_writeByte(MCFSIM_I2CICR, 0x00); |
| 728 | mbar_writeByte(MCFSIM_UART1ICR, 0x00); |
| 729 | mbar_writeByte(MCFSIM_UART2ICR, 0x00); |
| 730 | mbar_writeByte(MCFSIM_ICR6, 0x00); |
| 731 | mbar_writeByte(MCFSIM_ICR7, 0x00); |
| 732 | mbar_writeByte(MCFSIM_ICR8, 0x00); |
| 733 | mbar_writeByte(MCFSIM_ICR9, 0x00); |
| 734 | mbar_writeByte(MCFSIM_QSPIICR, 0x00); |
| 735 | |
| 736 | mbar2_writeLong(MCFSIM_GPIO_INT_EN, 0x00000080); |
Wolfgang Denk | c2c4944 | 2006-05-10 17:43:20 +0200 | [diff] [blame] | 737 | mbar2_writeByte(MCFSIM_INTBASE, 0x40); /* Base interrupts at 64 */ |
stroese | 53395a2 | 2004-12-16 18:09:49 +0000 | [diff] [blame] | 738 | mbar2_writeByte(MCFSIM_SPURVEC, 0x00); |
TsiChungLiew | 8cd73be | 2007-08-15 19:21:21 -0500 | [diff] [blame] | 739 | 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] | 740 | |
| 741 | /* Setup interrupt priorities for gpio7 */ |
| 742 | /* mbar2_writeLong(MCFSIM_INTLEV5, 0x70000000); */ |
| 743 | |
| 744 | /* IDE Config registers */ |
| 745 | mbar2_writeLong(MCFSIM_IDECONFIG1, 0x00000020); |
| 746 | mbar2_writeLong(MCFSIM_IDECONFIG2, 0x00000000); |
| 747 | |
TsiChung Liew | 7f1a046 | 2008-10-21 10:03:07 +0000 | [diff] [blame] | 748 | /* FlexBus Chipselect */ |
| 749 | init_fbcs(); |
stroese | 53395a2 | 2004-12-16 18:09:49 +0000 | [diff] [blame] | 750 | |
| 751 | /* enable instruction cache now */ |
| 752 | icache_enable(); |
| 753 | } |
| 754 | |
| 755 | /* |
| 756 | * initialize higher level parts of CPU like timers |
| 757 | */ |
TsiChungLiew | 8cd73be | 2007-08-15 19:21:21 -0500 | [diff] [blame] | 758 | int cpu_init_r(void) |
stroese | 53395a2 | 2004-12-16 18:09:49 +0000 | [diff] [blame] | 759 | { |
| 760 | return (0); |
| 761 | } |
TsiChungLiew | 8cd73be | 2007-08-15 19:21:21 -0500 | [diff] [blame] | 762 | |
TsiChung Liew | f9556a7 | 2010-03-09 19:17:52 -0600 | [diff] [blame] | 763 | void uart_port_conf(int port) |
TsiChungLiew | 8cd73be | 2007-08-15 19:21:21 -0500 | [diff] [blame] | 764 | { |
TsiChungLiew | 8cd73be | 2007-08-15 19:21:21 -0500 | [diff] [blame] | 765 | } |
| 766 | #endif /* #if defined(CONFIG_M5249) */ |