Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
TsiChungLiew | fc3ca3b6 | 2007-08-16 15:05:11 -0500 | [diff] [blame] | 2 | /* |
| 3 | * |
| 4 | * (C) Copyright 2000-2003 |
| 5 | * Wolfgang Denk, DENX Software Engineering, wd@denx.de. |
| 6 | * |
Alison Wang | 8d8dac9 | 2012-03-26 21:49:08 +0000 | [diff] [blame] | 7 | * (C) Copyright 2004-2007, 2012 Freescale Semiconductor, Inc. |
TsiChungLiew | fc3ca3b6 | 2007-08-16 15:05:11 -0500 | [diff] [blame] | 8 | * TsiChung Liew (Tsi-Chung.Liew@freescale.com) |
TsiChungLiew | fc3ca3b6 | 2007-08-16 15:05:11 -0500 | [diff] [blame] | 9 | */ |
| 10 | |
| 11 | #include <common.h> |
Simon Glass | 1d91ba7 | 2019-11-14 12:57:37 -0700 | [diff] [blame] | 12 | #include <cpu_func.h> |
Simon Glass | 9758973 | 2020-05-10 11:40:02 -0600 | [diff] [blame] | 13 | #include <init.h> |
TsiChungLiew | fc3ca3b6 | 2007-08-16 15:05:11 -0500 | [diff] [blame] | 14 | #include <watchdog.h> |
TsiChungLiew | fc3ca3b6 | 2007-08-16 15:05:11 -0500 | [diff] [blame] | 15 | #include <asm/immap.h> |
TsiChung Liew | 4d5414d | 2010-03-11 15:04:21 -0600 | [diff] [blame] | 16 | #include <asm/processor.h> |
TsiChungLiew | fc3ca3b6 | 2007-08-16 15:05:11 -0500 | [diff] [blame] | 17 | #include <asm/rtc.h> |
Alison Wang | 8d8dac9 | 2012-03-26 21:49:08 +0000 | [diff] [blame] | 18 | #include <asm/io.h> |
Marek Vasut | a334ec9 | 2012-10-03 13:28:44 +0000 | [diff] [blame] | 19 | #include <linux/compiler.h> |
TsiChungLiew | fc3ca3b6 | 2007-08-16 15:05:11 -0500 | [diff] [blame] | 20 | |
TsiChung Liew | 69b1757 | 2008-10-21 13:47:54 +0000 | [diff] [blame] | 21 | #if defined(CONFIG_CMD_NET) |
| 22 | #include <config.h> |
| 23 | #include <net.h> |
| 24 | #include <asm/fec.h> |
| 25 | #endif |
| 26 | |
Alison Wang | fdc2fb1 | 2012-10-18 19:25:51 +0000 | [diff] [blame] | 27 | void init_fbcs(void) |
TsiChungLiew | fc3ca3b6 | 2007-08-16 15:05:11 -0500 | [diff] [blame] | 28 | { |
Marek Vasut | a334ec9 | 2012-10-03 13:28:44 +0000 | [diff] [blame] | 29 | fbcs_t *fbcs __maybe_unused = (fbcs_t *) MMAP_FBCS; |
TsiChungLiew | fc3ca3b6 | 2007-08-16 15:05:11 -0500 | [diff] [blame] | 30 | |
Alison Wang | fdc2fb1 | 2012-10-18 19:25:51 +0000 | [diff] [blame] | 31 | #if !defined(CONFIG_SERIAL_BOOT) |
Tom Rini | 6a5dccc | 2022-11-16 13:10:41 -0500 | [diff] [blame] | 32 | #if (defined(CFG_SYS_CS0_BASE) && defined(CFG_SYS_CS0_MASK) && defined(CFG_SYS_CS0_CTRL)) |
| 33 | out_be32(&fbcs->csar0, CFG_SYS_CS0_BASE); |
| 34 | out_be32(&fbcs->cscr0, CFG_SYS_CS0_CTRL); |
| 35 | out_be32(&fbcs->csmr0, CFG_SYS_CS0_MASK); |
TsiChungLiew | fc3ca3b6 | 2007-08-16 15:05:11 -0500 | [diff] [blame] | 36 | #endif |
TsiChung Liew | 23cf8fd | 2008-07-23 20:38:53 -0500 | [diff] [blame] | 37 | #endif |
TsiChungLiew | fc3ca3b6 | 2007-08-16 15:05:11 -0500 | [diff] [blame] | 38 | |
Tom Rini | 6a5dccc | 2022-11-16 13:10:41 -0500 | [diff] [blame] | 39 | #if (defined(CFG_SYS_CS1_BASE) && defined(CFG_SYS_CS1_MASK) && defined(CFG_SYS_CS1_CTRL)) |
TsiChungLiew | fc3ca3b6 | 2007-08-16 15:05:11 -0500 | [diff] [blame] | 40 | /* Latch chipselect */ |
Tom Rini | 6a5dccc | 2022-11-16 13:10:41 -0500 | [diff] [blame] | 41 | out_be32(&fbcs->csar1, CFG_SYS_CS1_BASE); |
| 42 | out_be32(&fbcs->cscr1, CFG_SYS_CS1_CTRL); |
| 43 | out_be32(&fbcs->csmr1, CFG_SYS_CS1_MASK); |
TsiChungLiew | fc3ca3b6 | 2007-08-16 15:05:11 -0500 | [diff] [blame] | 44 | #endif |
| 45 | |
Tom Rini | 6a5dccc | 2022-11-16 13:10:41 -0500 | [diff] [blame] | 46 | #if (defined(CFG_SYS_CS2_BASE) && defined(CFG_SYS_CS2_MASK) && defined(CFG_SYS_CS2_CTRL)) |
| 47 | out_be32(&fbcs->csar2, CFG_SYS_CS2_BASE); |
| 48 | out_be32(&fbcs->cscr2, CFG_SYS_CS2_CTRL); |
| 49 | out_be32(&fbcs->csmr2, CFG_SYS_CS2_MASK); |
TsiChungLiew | fc3ca3b6 | 2007-08-16 15:05:11 -0500 | [diff] [blame] | 50 | #endif |
| 51 | |
Tom Rini | 6a5dccc | 2022-11-16 13:10:41 -0500 | [diff] [blame] | 52 | #if (defined(CFG_SYS_CS3_BASE) && defined(CFG_SYS_CS3_MASK) && defined(CFG_SYS_CS3_CTRL)) |
| 53 | out_be32(&fbcs->csar3, CFG_SYS_CS3_BASE); |
| 54 | out_be32(&fbcs->cscr3, CFG_SYS_CS3_CTRL); |
| 55 | out_be32(&fbcs->csmr3, CFG_SYS_CS3_MASK); |
TsiChungLiew | fc3ca3b6 | 2007-08-16 15:05:11 -0500 | [diff] [blame] | 56 | #endif |
| 57 | |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 58 | #if (defined(CONFIG_SYS_CS4_BASE) && defined(CONFIG_SYS_CS4_MASK) && defined(CONFIG_SYS_CS4_CTRL)) |
Alison Wang | 8d8dac9 | 2012-03-26 21:49:08 +0000 | [diff] [blame] | 59 | out_be32(&fbcs->csar4, CONFIG_SYS_CS4_BASE); |
| 60 | out_be32(&fbcs->cscr4, CONFIG_SYS_CS4_CTRL); |
| 61 | out_be32(&fbcs->csmr4, CONFIG_SYS_CS4_MASK); |
TsiChungLiew | fc3ca3b6 | 2007-08-16 15:05:11 -0500 | [diff] [blame] | 62 | #endif |
| 63 | |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 64 | #if (defined(CONFIG_SYS_CS5_BASE) && defined(CONFIG_SYS_CS5_MASK) && defined(CONFIG_SYS_CS5_CTRL)) |
Alison Wang | 8d8dac9 | 2012-03-26 21:49:08 +0000 | [diff] [blame] | 65 | out_be32(&fbcs->csar5, CONFIG_SYS_CS5_BASE); |
| 66 | out_be32(&fbcs->cscr5, CONFIG_SYS_CS5_CTRL); |
| 67 | out_be32(&fbcs->csmr5, CONFIG_SYS_CS5_MASK); |
TsiChungLiew | fc3ca3b6 | 2007-08-16 15:05:11 -0500 | [diff] [blame] | 68 | #endif |
Alison Wang | fdc2fb1 | 2012-10-18 19:25:51 +0000 | [diff] [blame] | 69 | } |
| 70 | |
Angelo Dureghello | 71abddd | 2019-03-13 21:46:52 +0100 | [diff] [blame] | 71 | #ifdef CONFIG_CF_DSPI |
| 72 | void cfspi_port_conf(void) |
| 73 | { |
| 74 | gpio_t *gpio = (gpio_t *)MMAP_GPIO; |
| 75 | |
Angelo Dureghello | 71abddd | 2019-03-13 21:46:52 +0100 | [diff] [blame] | 76 | #ifdef CONFIG_MCF5441x |
| 77 | pm_t *pm = (pm_t *)MMAP_PM; |
| 78 | |
| 79 | out_8(&gpio->par_dspi0, |
| 80 | GPIO_PAR_DSPI0_SIN_DSPI0SIN | GPIO_PAR_DSPI0_SOUT_DSPI0SOUT | |
| 81 | GPIO_PAR_DSPI0_SCK_DSPI0SCK); |
| 82 | out_8(&gpio->srcr_dspiow, 3); |
| 83 | |
| 84 | /* DSPI0 */ |
| 85 | out_8(&pm->pmcr0, 23); |
| 86 | #endif |
| 87 | } |
| 88 | #endif |
| 89 | |
Alison Wang | fdc2fb1 | 2012-10-18 19:25:51 +0000 | [diff] [blame] | 90 | /* |
| 91 | * Breath some life into the CPU... |
| 92 | * |
| 93 | * Set up the memory map, |
| 94 | * initialize a bunch of registers, |
| 95 | * initialize the UPM's |
| 96 | */ |
| 97 | void cpu_init_f(void) |
| 98 | { |
| 99 | gpio_t *gpio = (gpio_t *) MMAP_GPIO; |
| 100 | |
| 101 | #ifdef CONFIG_MCF5441x |
| 102 | scm_t *scm = (scm_t *) MMAP_SCM; |
| 103 | pm_t *pm = (pm_t *) MMAP_PM; |
| 104 | |
| 105 | /* Disable Switch */ |
| 106 | *(unsigned long *)(MMAP_L2_SW0 + 0x00000024) = 0; |
| 107 | |
| 108 | /* Disable core watchdog */ |
| 109 | out_be16(&scm->cwcr, 0); |
| 110 | out_8(&gpio->par_fbctl, |
| 111 | GPIO_PAR_FBCTL_ALE_FB_ALE | GPIO_PAR_FBCTL_OE_FB_OE | |
| 112 | GPIO_PAR_FBCTL_FBCLK | GPIO_PAR_FBCTL_RW | |
| 113 | GPIO_PAR_FBCTL_TA_TA); |
| 114 | out_8(&gpio->par_be, |
| 115 | GPIO_PAR_BE_BE3_BE3 | GPIO_PAR_BE_BE2_BE2 | |
| 116 | GPIO_PAR_BE_BE1_BE1 | GPIO_PAR_BE_BE0_BE0); |
| 117 | |
| 118 | /* eDMA */ |
| 119 | out_8(&pm->pmcr0, 17); |
| 120 | |
| 121 | /* INTR0 - INTR2 */ |
| 122 | out_8(&pm->pmcr0, 18); |
| 123 | out_8(&pm->pmcr0, 19); |
| 124 | out_8(&pm->pmcr0, 20); |
| 125 | |
| 126 | /* I2C */ |
| 127 | out_8(&pm->pmcr0, 22); |
| 128 | out_8(&pm->pmcr1, 4); |
| 129 | out_8(&pm->pmcr1, 7); |
| 130 | |
| 131 | /* DTMR0 - DTMR3*/ |
| 132 | out_8(&pm->pmcr0, 28); |
| 133 | out_8(&pm->pmcr0, 29); |
| 134 | out_8(&pm->pmcr0, 30); |
| 135 | out_8(&pm->pmcr0, 31); |
| 136 | |
| 137 | /* PIT0 - PIT3 */ |
| 138 | out_8(&pm->pmcr0, 32); |
| 139 | out_8(&pm->pmcr0, 33); |
| 140 | out_8(&pm->pmcr0, 34); |
| 141 | out_8(&pm->pmcr0, 35); |
| 142 | |
| 143 | /* Edge Port */ |
| 144 | out_8(&pm->pmcr0, 36); |
| 145 | out_8(&pm->pmcr0, 37); |
| 146 | |
| 147 | /* USB OTG */ |
| 148 | out_8(&pm->pmcr0, 44); |
| 149 | /* USB Host */ |
| 150 | out_8(&pm->pmcr0, 45); |
| 151 | |
| 152 | /* ESDHC */ |
| 153 | out_8(&pm->pmcr0, 51); |
| 154 | |
| 155 | /* ENET0 - ENET1 */ |
| 156 | out_8(&pm->pmcr0, 53); |
| 157 | out_8(&pm->pmcr0, 54); |
| 158 | |
| 159 | /* NAND */ |
| 160 | out_8(&pm->pmcr0, 63); |
| 161 | |
| 162 | #ifdef CONFIG_SYS_I2C_0 |
| 163 | out_8(&gpio->par_cani2c, 0xF0); |
| 164 | /* I2C0 pull up */ |
| 165 | out_be16(&gpio->pcr_b, 0x003C); |
| 166 | /* I2C0 max speed */ |
| 167 | out_8(&gpio->srcr_cani2c, 0x03); |
| 168 | #endif |
| 169 | #ifdef CONFIG_SYS_I2C_2 |
| 170 | /* I2C2 */ |
| 171 | out_8(&gpio->par_ssi0h, 0xA0); |
| 172 | /* I2C2, UART7 */ |
| 173 | out_8(&gpio->par_ssi0h, 0xA8); |
| 174 | /* UART7 */ |
| 175 | out_8(&gpio->par_ssi0l, 0x2); |
| 176 | /* UART8, UART9 */ |
| 177 | out_8(&gpio->par_cani2c, 0xAA); |
| 178 | /* UART4, UART0 */ |
| 179 | out_8(&gpio->par_uart0, 0xAF); |
| 180 | /* UART5, UART1 */ |
| 181 | out_8(&gpio->par_uart1, 0xAF); |
| 182 | /* UART6, UART2 */ |
| 183 | out_8(&gpio->par_uart2, 0xAF); |
| 184 | /* I2C2 pull up */ |
| 185 | out_be16(&gpio->pcr_h, 0xF000); |
| 186 | #endif |
| 187 | #ifdef CONFIG_SYS_I2C_5 |
| 188 | /* I2C5 */ |
| 189 | out_8(&gpio->par_uart1, 0x0A); |
| 190 | /* I2C5 pull up */ |
| 191 | out_be16(&gpio->pcr_e, 0x0003); |
| 192 | out_be16(&gpio->pcr_f, 0xC000); |
| 193 | #endif |
| 194 | |
| 195 | /* Lowest slew rate for UART0,1,2 */ |
| 196 | out_8(&gpio->srcr_uart, 0x00); |
Angelo Dureghello | 95a6998 | 2018-01-25 22:42:52 +0100 | [diff] [blame] | 197 | |
Yangbo Lu | 7334038 | 2019-06-21 11:42:28 +0800 | [diff] [blame] | 198 | #ifdef CONFIG_FSL_ESDHC_IMX |
Angelo Dureghello | 95a6998 | 2018-01-25 22:42:52 +0100 | [diff] [blame] | 199 | /* eSDHC pin as faster speed */ |
| 200 | out_8(&gpio->srcr_sdhc, 0x03); |
| 201 | |
| 202 | /* All esdhc pins as SD */ |
| 203 | out_8(&gpio->par_sdhch, 0xff); |
| 204 | out_8(&gpio->par_sdhcl, 0xff); |
| 205 | #endif |
Alison Wang | fdc2fb1 | 2012-10-18 19:25:51 +0000 | [diff] [blame] | 206 | #endif /* CONFIG_MCF5441x */ |
| 207 | |
Alison Wang | fdc2fb1 | 2012-10-18 19:25:51 +0000 | [diff] [blame] | 208 | /* FlexBus Chipselect */ |
| 209 | init_fbcs(); |
TsiChungLiew | fc3ca3b6 | 2007-08-16 15:05:11 -0500 | [diff] [blame] | 210 | |
Tom Rini | 6a5dccc | 2022-11-16 13:10:41 -0500 | [diff] [blame] | 211 | #ifdef CFG_SYS_CS0_BASE |
TsiChung Liew | 4d5414d | 2010-03-11 15:04:21 -0600 | [diff] [blame] | 212 | /* |
| 213 | * now the flash base address is no longer at 0 (Newer ColdFire family |
| 214 | * boot at address 0 instead of 0xFFnn_nnnn). The vector table must |
| 215 | * also move to the new location. |
| 216 | */ |
Tom Rini | 6a5dccc | 2022-11-16 13:10:41 -0500 | [diff] [blame] | 217 | if (CFG_SYS_CS0_BASE != 0) |
| 218 | setvbr(CFG_SYS_CS0_BASE); |
Angelo Dureghello | 7211b92 | 2017-05-15 00:17:48 +0200 | [diff] [blame] | 219 | #endif |
TsiChung Liew | 4d5414d | 2010-03-11 15:04:21 -0600 | [diff] [blame] | 220 | |
TsiChungLiew | fc3ca3b6 | 2007-08-16 15:05:11 -0500 | [diff] [blame] | 221 | icache_enable(); |
| 222 | } |
| 223 | |
| 224 | /* |
| 225 | * initialize higher level parts of CPU like timers |
| 226 | */ |
| 227 | int cpu_init_r(void) |
| 228 | { |
TsiChung Liew | 1be9e09 | 2008-07-09 15:47:27 -0500 | [diff] [blame] | 229 | #ifdef CONFIG_MCFRTC |
Alison Wang | 8d8dac9 | 2012-03-26 21:49:08 +0000 | [diff] [blame] | 230 | rtc_t *rtc = (rtc_t *)(CONFIG_SYS_MCFRTC_BASE); |
| 231 | rtcex_t *rtcex = (rtcex_t *)&rtc->extended; |
TsiChungLiew | fc3ca3b6 | 2007-08-16 15:05:11 -0500 | [diff] [blame] | 232 | |
Alison Wang | 8d8dac9 | 2012-03-26 21:49:08 +0000 | [diff] [blame] | 233 | out_be32(&rtcex->gocu, (CONFIG_SYS_RTC_OSCILLATOR >> 16) & 0xffff); |
| 234 | out_be32(&rtcex->gocl, CONFIG_SYS_RTC_OSCILLATOR & 0xffff); |
TsiChungLiew | fc3ca3b6 | 2007-08-16 15:05:11 -0500 | [diff] [blame] | 235 | #endif |
| 236 | |
| 237 | return (0); |
| 238 | } |
| 239 | |
TsiChung Liew | f9556a7 | 2010-03-09 19:17:52 -0600 | [diff] [blame] | 240 | void uart_port_conf(int port) |
TsiChungLiew | fc3ca3b6 | 2007-08-16 15:05:11 -0500 | [diff] [blame] | 241 | { |
Alison Wang | 8d8dac9 | 2012-03-26 21:49:08 +0000 | [diff] [blame] | 242 | gpio_t *gpio = (gpio_t *) MMAP_GPIO; |
Alison Wang | fdc2fb1 | 2012-10-18 19:25:51 +0000 | [diff] [blame] | 243 | #ifdef CONFIG_MCF5441x |
| 244 | pm_t *pm = (pm_t *) MMAP_PM; |
| 245 | #endif |
TsiChungLiew | fc3ca3b6 | 2007-08-16 15:05:11 -0500 | [diff] [blame] | 246 | |
| 247 | /* Setup Ports: */ |
TsiChung Liew | f9556a7 | 2010-03-09 19:17:52 -0600 | [diff] [blame] | 248 | switch (port) { |
Alison Wang | fdc2fb1 | 2012-10-18 19:25:51 +0000 | [diff] [blame] | 249 | #ifdef CONFIG_MCF5441x |
| 250 | case 0: |
| 251 | /* UART0 */ |
| 252 | out_8(&pm->pmcr0, 24); |
| 253 | clrbits_8(&gpio->par_uart0, |
| 254 | ~(GPIO_PAR_UART0_U0RXD_MASK | GPIO_PAR_UART0_U0TXD_MASK)); |
| 255 | setbits_8(&gpio->par_uart0, |
| 256 | GPIO_PAR_UART0_U0RXD_U0RXD | GPIO_PAR_UART0_U0TXD_U0TXD); |
| 257 | break; |
| 258 | case 1: |
| 259 | /* UART1 */ |
| 260 | out_8(&pm->pmcr0, 25); |
| 261 | clrbits_8(&gpio->par_uart1, |
| 262 | ~(GPIO_PAR_UART1_U1RXD_MASK | GPIO_PAR_UART1_U1TXD_MASK)); |
| 263 | setbits_8(&gpio->par_uart1, |
| 264 | GPIO_PAR_UART1_U1RXD_U1RXD | GPIO_PAR_UART1_U1TXD_U1TXD); |
| 265 | break; |
| 266 | case 2: |
| 267 | /* UART2 */ |
| 268 | out_8(&pm->pmcr0, 26); |
| 269 | clrbits_8(&gpio->par_uart2, |
| 270 | ~(GPIO_PAR_UART2_U2RXD_MASK | GPIO_PAR_UART2_U2TXD_MASK)); |
| 271 | setbits_8(&gpio->par_uart2, |
| 272 | GPIO_PAR_UART2_U2RXD_U2RXD | GPIO_PAR_UART2_U2TXD_U2TXD); |
| 273 | break; |
| 274 | case 3: |
| 275 | /* UART3 */ |
| 276 | out_8(&pm->pmcr0, 27); |
| 277 | clrbits_8(&gpio->par_dspi0, |
| 278 | ~(GPIO_PAR_DSPI0_SIN_MASK | GPIO_PAR_DSPI0_SOUT_MASK)); |
| 279 | setbits_8(&gpio->par_dspi0, |
| 280 | GPIO_PAR_DSPI0_SIN_U3RXD | GPIO_PAR_DSPI0_SOUT_U3TXD); |
| 281 | break; |
| 282 | case 4: |
| 283 | /* UART4 */ |
| 284 | out_8(&pm->pmcr1, 24); |
| 285 | clrbits_8(&gpio->par_uart0, |
| 286 | ~(GPIO_PAR_UART0_U0CTS_MASK | GPIO_PAR_UART0_U0RTS_MASK)); |
| 287 | setbits_8(&gpio->par_uart0, |
| 288 | GPIO_PAR_UART0_U0CTS_U4TXD | GPIO_PAR_UART0_U0RTS_U4RXD); |
| 289 | break; |
| 290 | case 5: |
| 291 | /* UART5 */ |
| 292 | out_8(&pm->pmcr1, 25); |
| 293 | clrbits_8(&gpio->par_uart1, |
| 294 | ~(GPIO_PAR_UART1_U1CTS_MASK | GPIO_PAR_UART1_U1RTS_MASK)); |
| 295 | setbits_8(&gpio->par_uart1, |
| 296 | GPIO_PAR_UART1_U1CTS_U5TXD | GPIO_PAR_UART1_U1RTS_U5RXD); |
| 297 | break; |
| 298 | case 6: |
| 299 | /* UART6 */ |
| 300 | out_8(&pm->pmcr1, 26); |
| 301 | clrbits_8(&gpio->par_uart2, |
| 302 | ~(GPIO_PAR_UART2_U2CTS_MASK | GPIO_PAR_UART2_U2RTS_MASK)); |
| 303 | setbits_8(&gpio->par_uart2, |
| 304 | GPIO_PAR_UART2_U2CTS_U6TXD | GPIO_PAR_UART2_U2RTS_U6RXD); |
| 305 | break; |
| 306 | case 7: |
| 307 | /* UART7 */ |
| 308 | out_8(&pm->pmcr1, 27); |
| 309 | clrbits_8(&gpio->par_ssi0h, ~GPIO_PAR_SSI0H_RXD_MASK); |
| 310 | clrbits_8(&gpio->par_ssi0l, ~GPIO_PAR_SSI0L_BCLK_MASK); |
| 311 | setbits_8(&gpio->par_ssi0h, GPIO_PAR_SSI0H_FS_U7TXD); |
| 312 | setbits_8(&gpio->par_ssi0l, GPIO_PAR_SSI0L_BCLK_U7RXD); |
| 313 | break; |
| 314 | case 8: |
| 315 | /* UART8 */ |
| 316 | out_8(&pm->pmcr0, 28); |
| 317 | clrbits_8(&gpio->par_cani2c, |
| 318 | ~(GPIO_PAR_CANI2C_I2C0SCL_MASK | GPIO_PAR_CANI2C_I2C0SDA_MASK)); |
| 319 | setbits_8(&gpio->par_cani2c, |
| 320 | GPIO_PAR_CANI2C_I2C0SCL_U8TXD | GPIO_PAR_CANI2C_I2C0SDA_U8RXD); |
| 321 | break; |
| 322 | case 9: |
| 323 | /* UART9 */ |
| 324 | out_8(&pm->pmcr1, 29); |
| 325 | clrbits_8(&gpio->par_cani2c, |
| 326 | ~(GPIO_PAR_CANI2C_CAN1TX_MASK | GPIO_PAR_CANI2C_CAN1RX_MASK)); |
| 327 | setbits_8(&gpio->par_cani2c, |
| 328 | GPIO_PAR_CANI2C_CAN1TX_U9TXD | GPIO_PAR_CANI2C_CAN1RX_U9RXD); |
| 329 | break; |
TsiChung Liew | f9556a7 | 2010-03-09 19:17:52 -0600 | [diff] [blame] | 330 | #endif |
TsiChungLiew | fc3ca3b6 | 2007-08-16 15:05:11 -0500 | [diff] [blame] | 331 | } |
TsiChung Liew | 69b1757 | 2008-10-21 13:47:54 +0000 | [diff] [blame] | 332 | } |
| 333 | |
| 334 | #if defined(CONFIG_CMD_NET) |
Angelo Durgehello | 8ff47f7 | 2019-11-15 23:54:16 +0100 | [diff] [blame] | 335 | int fecpin_setclear(fec_info_t *info, int setclear) |
TsiChung Liew | 69b1757 | 2008-10-21 13:47:54 +0000 | [diff] [blame] | 336 | { |
Alison Wang | 8d8dac9 | 2012-03-26 21:49:08 +0000 | [diff] [blame] | 337 | gpio_t *gpio = (gpio_t *) MMAP_GPIO; |
Angelo Durgehello | 8ff47f7 | 2019-11-15 23:54:16 +0100 | [diff] [blame] | 338 | u32 fec0_base; |
| 339 | |
| 340 | if (fec_get_base_addr(0, &fec0_base)) |
| 341 | return -1; |
TsiChung Liew | 69b1757 | 2008-10-21 13:47:54 +0000 | [diff] [blame] | 342 | |
Alison Wang | fdc2fb1 | 2012-10-18 19:25:51 +0000 | [diff] [blame] | 343 | #ifdef CONFIG_MCF5441x |
| 344 | if (setclear) { |
| 345 | out_8(&gpio->par_fec, 0x03); |
| 346 | out_8(&gpio->srcr_fec, 0x0F); |
| 347 | clrsetbits_8(&gpio->par_simp0h, ~GPIO_PAR_SIMP0H_DAT_MASK, |
| 348 | GPIO_PAR_SIMP0H_DAT_GPIO); |
| 349 | clrsetbits_8(&gpio->pddr_g, ~GPIO_PDDR_G4_MASK, |
| 350 | GPIO_PDDR_G4_OUTPUT); |
| 351 | clrbits_8(&gpio->podr_g, ~GPIO_PODR_G4_MASK); |
| 352 | |
| 353 | } else |
| 354 | clrbits_8(&gpio->par_fec, ~GPIO_PAR_FEC_FEC_MASK); |
| 355 | #endif |
TsiChung Liew | a424ba2 | 2009-06-30 14:18:29 +0000 | [diff] [blame] | 356 | return 0; |
| 357 | } |
Alison Wang | fdc2fb1 | 2012-10-18 19:25:51 +0000 | [diff] [blame] | 358 | #endif |