blob: 39be11f0903b6b1bc789a9071a6d1c86aaa8a0cb [file] [log] [blame]
TsiChung Liewf6afe722007-06-18 13:50:13 -05001/*
2 *
3 * (C) Copyright 2000-2003
4 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
5 *
TsiChungLiew97401c32007-07-05 23:03:28 -05006 * (C) Copyright 2007 Freescale Semiconductor, Inc.
TsiChung Liewf6afe722007-06-18 13:50:13 -05007 * 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>
TsiChungLiew97401c32007-07-05 23:03:28 -050030#include <asm/immap.h>
TsiChung Liewf6afe722007-06-18 13:50:13 -050031
TsiChung Liew69b17572008-10-21 13:47:54 +000032#if defined(CONFIG_CMD_NET)
33#include <config.h>
34#include <net.h>
35#include <asm/fec.h>
36#endif
37
TsiChung Liewf6afe722007-06-18 13:50:13 -050038/*
39 * Breath some life into the CPU...
40 *
41 * Set up the memory map,
42 * initialize a bunch of registers,
43 * initialize the UPM's
44 */
45void cpu_init_f(void)
46{
47 volatile scm1_t *scm1 = (scm1_t *) MMAP_SCM1;
48 volatile scm2_t *scm2 = (scm2_t *) MMAP_SCM2;
49 volatile gpio_t *gpio = (gpio_t *) MMAP_GPIO;
50 volatile fbcs_t *fbcs = (fbcs_t *) MMAP_FBCS;
51 volatile wdog_t *wdog = (wdog_t *) MMAP_WDOG;
52
53 /* watchdog is enabled by default - disable the watchdog */
54#ifndef CONFIG_WATCHDOG
55 wdog->cr = 0;
56#endif
57
58 scm1->mpr0 = 0x77777777;
59 scm2->pacra = 0;
60 scm2->pacrb = 0;
61 scm2->pacrc = 0;
62 scm2->pacrd = 0;
63 scm2->pacre = 0;
64 scm2->pacrf = 0;
65 scm2->pacrg = 0;
66 scm1->pacrh = 0;
67
TsiChung Liewf6afe722007-06-18 13:50:13 -050068 /* Port configuration */
TsiChungLiew2325c9f2007-08-05 05:15:18 -050069 gpio->par_cs = 0;
TsiChung Liewf6afe722007-06-18 13:50:13 -050070
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020071#if (defined(CONFIG_SYS_CS0_BASE) && defined(CONFIG_SYS_CS0_MASK) && defined(CONFIG_SYS_CS0_CTRL))
72 fbcs->csar0 = CONFIG_SYS_CS0_BASE;
73 fbcs->cscr0 = CONFIG_SYS_CS0_CTRL;
74 fbcs->csmr0 = CONFIG_SYS_CS0_MASK;
TsiChung Liewf6afe722007-06-18 13:50:13 -050075#endif
76
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020077#if (defined(CONFIG_SYS_CS1_BASE) && defined(CONFIG_SYS_CS1_MASK) && defined(CONFIG_SYS_CS1_CTRL))
TsiChung Liewf6afe722007-06-18 13:50:13 -050078 /* Latch chipselect */
Stefan Roeseeb8c2942007-08-08 09:54:26 +020079 gpio->par_cs |= GPIO_PAR_CS1;
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020080 fbcs->csar1 = CONFIG_SYS_CS1_BASE;
81 fbcs->cscr1 = CONFIG_SYS_CS1_CTRL;
82 fbcs->csmr1 = CONFIG_SYS_CS1_MASK;
TsiChung Liewf6afe722007-06-18 13:50:13 -050083#endif
84
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020085#if (defined(CONFIG_SYS_CS2_BASE) && defined(CONFIG_SYS_CS2_MASK) && defined(CONFIG_SYS_CS2_CTRL))
Stefan Roeseeb8c2942007-08-08 09:54:26 +020086 gpio->par_cs |= GPIO_PAR_CS2;
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020087 fbcs->csar2 = CONFIG_SYS_CS2_BASE;
88 fbcs->cscr2 = CONFIG_SYS_CS2_CTRL;
89 fbcs->csmr2 = CONFIG_SYS_CS2_MASK;
TsiChung Liewf6afe722007-06-18 13:50:13 -050090#endif
91
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020092#if (defined(CONFIG_SYS_CS3_BASE) && defined(CONFIG_SYS_CS3_MASK) && defined(CONFIG_SYS_CS3_CTRL))
Stefan Roeseeb8c2942007-08-08 09:54:26 +020093 gpio->par_cs |= GPIO_PAR_CS3;
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020094 fbcs->csar3 = CONFIG_SYS_CS3_BASE;
95 fbcs->cscr3 = CONFIG_SYS_CS3_CTRL;
96 fbcs->csmr3 = CONFIG_SYS_CS3_MASK;
TsiChung Liewf6afe722007-06-18 13:50:13 -050097#endif
98
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020099#if (defined(CONFIG_SYS_CS4_BASE) && defined(CONFIG_SYS_CS4_MASK) && defined(CONFIG_SYS_CS4_CTRL))
Stefan Roeseeb8c2942007-08-08 09:54:26 +0200100 gpio->par_cs |= GPIO_PAR_CS4;
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200101 fbcs->csar4 = CONFIG_SYS_CS4_BASE;
102 fbcs->cscr4 = CONFIG_SYS_CS4_CTRL;
103 fbcs->csmr4 = CONFIG_SYS_CS4_MASK;
TsiChung Liewf6afe722007-06-18 13:50:13 -0500104#endif
105
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200106#if (defined(CONFIG_SYS_CS5_BASE) && defined(CONFIG_SYS_CS5_MASK) && defined(CONFIG_SYS_CS5_CTRL))
Stefan Roeseeb8c2942007-08-08 09:54:26 +0200107 gpio->par_cs |= GPIO_PAR_CS5;
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200108 fbcs->csar5 = CONFIG_SYS_CS5_BASE;
109 fbcs->cscr5 = CONFIG_SYS_CS5_CTRL;
110 fbcs->csmr5 = CONFIG_SYS_CS5_MASK;
TsiChung Liewf6afe722007-06-18 13:50:13 -0500111#endif
TsiChung6373c0c2007-07-10 15:45:43 -0500112
TsiChungLiew2325c9f2007-08-05 05:15:18 -0500113#ifdef CONFIG_FSL_I2C
114 gpio->par_feci2c = GPIO_PAR_FECI2C_SCL_SCL | GPIO_PAR_FECI2C_SDA_SDA;
115#endif
116
TsiChung6373c0c2007-07-10 15:45:43 -0500117 icache_enable();
TsiChung Liewf6afe722007-06-18 13:50:13 -0500118}
119
120/*
121 * initialize higher level parts of CPU like timers
122 */
123int cpu_init_r(void)
124{
TsiChung Liewf6afe722007-06-18 13:50:13 -0500125 return (0);
126}
TsiChungLiew74634c82007-08-05 03:55:21 -0500127
128void uart_port_conf(void)
129{
130 volatile gpio_t *gpio = (gpio_t *) MMAP_GPIO;
131
132 /* Setup Ports: */
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200133 switch (CONFIG_SYS_UART_PORT) {
TsiChungLiew74634c82007-08-05 03:55:21 -0500134 case 0:
135 gpio->par_uart = (GPIO_PAR_UART_TXD0 | GPIO_PAR_UART_RXD0);
136 break;
137 case 1:
138 gpio->par_uart =
139 (GPIO_PAR_UART_TXD1(3) | GPIO_PAR_UART_RXD1(3));
140 break;
141 case 2:
142 gpio->par_timer &= 0x0F;
143 gpio->par_timer |= (GPIO_PAR_TIN3_URXD2 | GPIO_PAR_TIN2_UTXD2);
144 break;
145 }
TsiChung Liew69b17572008-10-21 13:47:54 +0000146}
147
148#if defined(CONFIG_CMD_NET)
149int fecpin_setclear(struct eth_device *dev, int setclear)
150{
151 volatile gpio_t *gpio = (gpio_t *) MMAP_GPIO;
152
153 if (setclear) {
154 gpio->par_fec |= GPIO_PAR_FEC_7W_FEC | GPIO_PAR_FEC_MII_FEC;
155 gpio->par_feci2c |=
156 GPIO_PAR_FECI2C_MDC_EMDC | GPIO_PAR_FECI2C_MDIO_EMDIO;
157 } else {
158 gpio->par_fec &= ~(GPIO_PAR_FEC_7W_FEC | GPIO_PAR_FEC_MII_FEC);
159 gpio->par_feci2c &=
160 ~(GPIO_PAR_FECI2C_MDC_EMDC | GPIO_PAR_FECI2C_MDIO_EMDIO);
161 }
162 return 0;
TsiChungLiew74634c82007-08-05 03:55:21 -0500163}
TsiChung Liew69b17572008-10-21 13:47:54 +0000164#endif