TsiChungLiew | 4a442d3 | 2007-08-16 19:23:50 -0500 | [diff] [blame] | 1 | /* |
| 2 | * |
| 3 | * (C) Copyright 2000-2003 |
| 4 | * Wolfgang Denk, DENX Software Engineering, wd@denx.de. |
| 5 | * |
| 6 | * (C) Copyright 2007 Freescale Semiconductor, Inc. |
| 7 | * TsiChung Liew (Tsi-Chung.Liew@freescale.com) |
| 8 | * |
| 9 | * See file CREDITS for list of people who contributed to this |
| 10 | * project. |
| 11 | * |
| 12 | * This program is free software; you can redistribute it and/or |
| 13 | * modify it under the terms of the GNU General Public License as |
| 14 | * published by the Free Software Foundation; either version 2 of |
| 15 | * the License, or (at your option) any later version. |
| 16 | * |
| 17 | * This program is distributed in the hope that it will be useful, |
| 18 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 19 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 20 | * GNU General Public License for more details. |
| 21 | * |
| 22 | * You should have received a copy of the GNU General Public License |
| 23 | * along with this program; if not, write to the Free Software |
| 24 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, |
| 25 | * MA 02111-1307 USA |
| 26 | */ |
| 27 | |
| 28 | #include <common.h> |
| 29 | #include <watchdog.h> |
| 30 | |
| 31 | #include <asm/immap.h> |
| 32 | |
| 33 | /* |
| 34 | * Breath some life into the CPU... |
| 35 | * |
| 36 | * Set up the memory map, |
| 37 | * initialize a bunch of registers, |
| 38 | * initialize the UPM's |
| 39 | */ |
| 40 | void cpu_init_f(void) |
| 41 | { |
| 42 | volatile gpio_t *gpio = (gpio_t *) MMAP_GPIO; |
| 43 | volatile fbcs_t *fbcs = (fbcs_t *) MMAP_FBCS; |
| 44 | volatile wdog_t *wdog = (wdog_t *) MMAP_WDOG; |
| 45 | volatile scm_t *scm = (scm_t *) MMAP_SCM; |
| 46 | |
| 47 | /* watchdog is enabled by default - disable the watchdog */ |
| 48 | #ifndef CONFIG_WATCHDOG |
| 49 | wdog->cr = 0; |
| 50 | #endif |
| 51 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 52 | scm->rambar = (CONFIG_SYS_INIT_RAM_ADDR | SCM_RAMBAR_BDE); |
TsiChungLiew | 4a442d3 | 2007-08-16 19:23:50 -0500 | [diff] [blame] | 53 | |
| 54 | /* Port configuration */ |
| 55 | gpio->par_cs = 0; |
| 56 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 57 | #if (defined(CONFIG_SYS_CS0_BASE) && defined(CONFIG_SYS_CS0_MASK) && defined(CONFIG_SYS_CS0_CTRL)) |
| 58 | fbcs->csar0 = CONFIG_SYS_CS0_BASE; |
| 59 | fbcs->cscr0 = CONFIG_SYS_CS0_CTRL; |
| 60 | fbcs->csmr0 = CONFIG_SYS_CS0_MASK; |
TsiChungLiew | 4a442d3 | 2007-08-16 19:23:50 -0500 | [diff] [blame] | 61 | #endif |
| 62 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 63 | #if (defined(CONFIG_SYS_CS1_BASE) && defined(CONFIG_SYS_CS1_MASK) && defined(CONFIG_SYS_CS1_CTRL)) |
TsiChungLiew | 4a442d3 | 2007-08-16 19:23:50 -0500 | [diff] [blame] | 64 | gpio->par_cs |= GPIO_PAR_CS_CS1; |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 65 | fbcs->csar1 = CONFIG_SYS_CS1_BASE; |
| 66 | fbcs->cscr1 = CONFIG_SYS_CS1_CTRL; |
| 67 | fbcs->csmr1 = CONFIG_SYS_CS1_MASK; |
TsiChungLiew | 4a442d3 | 2007-08-16 19:23:50 -0500 | [diff] [blame] | 68 | #endif |
| 69 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 70 | #if (defined(CONFIG_SYS_CS2_BASE) && defined(CONFIG_SYS_CS2_MASK) && defined(CONFIG_SYS_CS2_CTRL)) |
TsiChungLiew | 4a442d3 | 2007-08-16 19:23:50 -0500 | [diff] [blame] | 71 | gpio->par_cs |= GPIO_PAR_CS_CS2; |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 72 | fbcs->csar2 = CONFIG_SYS_CS2_BASE; |
| 73 | fbcs->cscr2 = CONFIG_SYS_CS2_CTRL; |
| 74 | fbcs->csmr2 = CONFIG_SYS_CS2_MASK; |
TsiChungLiew | 4a442d3 | 2007-08-16 19:23:50 -0500 | [diff] [blame] | 75 | #endif |
| 76 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 77 | #if (defined(CONFIG_SYS_CS3_BASE) && defined(CONFIG_SYS_CS3_MASK) && defined(CONFIG_SYS_CS3_CTRL)) |
TsiChungLiew | 4a442d3 | 2007-08-16 19:23:50 -0500 | [diff] [blame] | 78 | gpio->par_cs |= GPIO_PAR_CS_CS3; |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 79 | fbcs->csar3 = CONFIG_SYS_CS3_BASE; |
| 80 | fbcs->cscr3 = CONFIG_SYS_CS3_CTRL; |
| 81 | fbcs->csmr3 = CONFIG_SYS_CS3_MASK; |
TsiChungLiew | 4a442d3 | 2007-08-16 19:23:50 -0500 | [diff] [blame] | 82 | #endif |
| 83 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 84 | #if (defined(CONFIG_SYS_CS4_BASE) && defined(CONFIG_SYS_CS4_MASK) && defined(CONFIG_SYS_CS4_CTRL)) |
TsiChungLiew | 4a442d3 | 2007-08-16 19:23:50 -0500 | [diff] [blame] | 85 | gpio->par_cs |= GPIO_PAR_CS_CS4; |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 86 | fbcs->csar4 = CONFIG_SYS_CS4_BASE; |
| 87 | fbcs->cscr4 = CONFIG_SYS_CS4_CTRL; |
| 88 | fbcs->csmr4 = CONFIG_SYS_CS4_MASK; |
TsiChungLiew | 4a442d3 | 2007-08-16 19:23:50 -0500 | [diff] [blame] | 89 | #endif |
| 90 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 91 | #if (defined(CONFIG_SYS_CS5_BASE) && defined(CONFIG_SYS_CS5_MASK) && defined(CONFIG_SYS_CS5_CTRL)) |
TsiChungLiew | 4a442d3 | 2007-08-16 19:23:50 -0500 | [diff] [blame] | 92 | gpio->par_cs |= GPIO_PAR_CS_CS5; |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 93 | fbcs->csar5 = CONFIG_SYS_CS5_BASE; |
| 94 | fbcs->cscr5 = CONFIG_SYS_CS5_CTRL; |
| 95 | fbcs->csmr5 = CONFIG_SYS_CS5_MASK; |
TsiChungLiew | 4a442d3 | 2007-08-16 19:23:50 -0500 | [diff] [blame] | 96 | #endif |
| 97 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 98 | #if (defined(CONFIG_SYS_CS6_BASE) && defined(CONFIG_SYS_CS6_MASK) && defined(CONFIG_SYS_CS6_CTRL)) |
TsiChungLiew | 4a442d3 | 2007-08-16 19:23:50 -0500 | [diff] [blame] | 99 | gpio->par_cs |= GPIO_PAR_CS_CS6; |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 100 | fbcs->csar6 = CONFIG_SYS_CS6_BASE; |
| 101 | fbcs->cscr6 = CONFIG_SYS_CS6_CTRL; |
| 102 | fbcs->csmr6 = CONFIG_SYS_CS6_MASK; |
TsiChungLiew | 4a442d3 | 2007-08-16 19:23:50 -0500 | [diff] [blame] | 103 | #endif |
| 104 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 105 | #if (defined(CONFIG_SYS_CS7_BASE) && defined(CONFIG_SYS_CS7_MASK) && defined(CONFIG_SYS_CS7_CTRL)) |
TsiChungLiew | 4a442d3 | 2007-08-16 19:23:50 -0500 | [diff] [blame] | 106 | gpio->par_cs |= GPIO_PAR_CS_CS7; |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 107 | fbcs->csar7 = CONFIG_SYS_CS7_BASE; |
| 108 | fbcs->cscr7 = CONFIG_SYS_CS7_CTRL; |
| 109 | fbcs->csmr7 = CONFIG_SYS_CS7_MASK; |
TsiChungLiew | 4a442d3 | 2007-08-16 19:23:50 -0500 | [diff] [blame] | 110 | #endif |
| 111 | |
| 112 | #ifdef CONFIG_FSL_I2C |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 113 | CONFIG_SYS_I2C_PINMUX_REG &= CONFIG_SYS_I2C_PINMUX_CLR; |
| 114 | CONFIG_SYS_I2C_PINMUX_REG |= CONFIG_SYS_I2C_PINMUX_SET; |
TsiChungLiew | 4a442d3 | 2007-08-16 19:23:50 -0500 | [diff] [blame] | 115 | #endif |
| 116 | |
| 117 | icache_enable(); |
| 118 | } |
| 119 | |
| 120 | /* |
| 121 | * initialize higher level parts of CPU like timers |
| 122 | */ |
| 123 | int cpu_init_r(void) |
| 124 | { |
| 125 | return (0); |
| 126 | } |
| 127 | |
| 128 | void uart_port_conf(void) |
| 129 | { |
Stefan Roese | 8280f6a | 2007-08-18 14:33:02 +0200 | [diff] [blame] | 130 | volatile gpio_t *gpio = (gpio_t *) MMAP_GPIO; |
TsiChungLiew | 4a442d3 | 2007-08-16 19:23:50 -0500 | [diff] [blame] | 131 | |
Stefan Roese | 8280f6a | 2007-08-18 14:33:02 +0200 | [diff] [blame] | 132 | /* Setup Ports: */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 133 | switch (CONFIG_SYS_UART_PORT) { |
Stefan Roese | 8280f6a | 2007-08-18 14:33:02 +0200 | [diff] [blame] | 134 | case 0: |
| 135 | gpio->par_uart = (GPIO_PAR_UART_U0RXD | GPIO_PAR_UART_U0TXD); |
| 136 | break; |
| 137 | case 1: |
| 138 | gpio->par_uart = |
| 139 | (GPIO_PAR_UART_U1RXD_U1RXD | GPIO_PAR_UART_U1TXD_U1TXD); |
| 140 | break; |
| 141 | case 2: |
| 142 | gpio->par_timer = (GPIO_PAR_UART_U2RXD | GPIO_PAR_UART_U2TXD); |
| 143 | break; |
| 144 | } |
TsiChungLiew | 4a442d3 | 2007-08-16 19:23:50 -0500 | [diff] [blame] | 145 | } |