blob: edcb092fecd7f7986a9fa4e92794a5f1774367e1 [file] [log] [blame]
wdenke65527f2004-02-12 00:47:09 +00001/*
2 * (C) Copyright 2003
3 * Josef Baumgartner <josef.baumgartner@telex.de>
4 *
Heiko Schocherac1956e2006-04-20 08:42:42 +02005 * MCF5282 additionals
6 * (C) Copyright 2005
7 * BuS Elektronik GmbH & Co. KG <esw@bus-elektronik.de>
Michael Durranta4991f22010-01-20 19:33:02 -06008 * (c) Copyright 2010
9 * Arcturus Networks Inc. <www.arcturusnetworks.com>
Heiko Schocherac1956e2006-04-20 08:42:42 +020010 *
Alison Wang95bed1f2012-03-26 21:49:04 +000011 * Copyright (C) 2004-2007, 2012 Freescale Semiconductor, Inc.
TsiChungLiew34674692007-08-16 13:20:50 -050012 * TsiChung Liew (Tsi-Chung.Liew@freescale.com)
13 * Hayden Fraser (Hayden.Fraser@freescale.com)
14 *
Matthew Fettke761e2e92008-02-04 15:38:20 -060015 * MCF5275 additions
16 * Copyright (C) 2008 Arthur Shipkowski (art@videon-central.com)
17 *
Wolfgang Denkbd8ec7e2013-10-07 13:07:26 +020018 * SPDX-License-Identifier: GPL-2.0+
wdenke65527f2004-02-12 00:47:09 +000019 */
20
21#include <common.h>
22#include <watchdog.h>
TsiChungLiew8cd73be2007-08-15 19:21:21 -050023#include <asm/immap.h>
Alison Wang95bed1f2012-03-26 21:49:04 +000024#include <asm/io.h>
stroese53395a22004-12-16 18:09:49 +000025
TsiChung Liew69b17572008-10-21 13:47:54 +000026#if defined(CONFIG_CMD_NET)
27#include <config.h>
28#include <net.h>
29#include <asm/fec.h>
30#endif
31
TsiChung Liew7f1a0462008-10-21 10:03:07 +000032#ifndef CONFIG_M5272
33/* Only 5272 Flexbus chipselect is different from the rest */
34void init_fbcs(void)
35{
Alison Wang95bed1f2012-03-26 21:49:04 +000036 fbcs_t *fbcs = (fbcs_t *) (MMAP_FBCS);
TsiChung Liew7f1a0462008-10-21 10:03:07 +000037
38#if (defined(CONFIG_SYS_CS0_BASE) && defined(CONFIG_SYS_CS0_MASK) \
39 && defined(CONFIG_SYS_CS0_CTRL))
Alison Wang95bed1f2012-03-26 21:49:04 +000040 out_be32(&fbcs->csar0, CONFIG_SYS_CS0_BASE);
41 out_be32(&fbcs->cscr0, CONFIG_SYS_CS0_CTRL);
42 out_be32(&fbcs->csmr0, CONFIG_SYS_CS0_MASK);
TsiChung Liew7f1a0462008-10-21 10:03:07 +000043#else
44#warning "Chip Select 0 are not initialized/used"
45#endif
46#if (defined(CONFIG_SYS_CS1_BASE) && defined(CONFIG_SYS_CS1_MASK) \
47 && defined(CONFIG_SYS_CS1_CTRL))
Alison Wang95bed1f2012-03-26 21:49:04 +000048 out_be32(&fbcs->csar1, CONFIG_SYS_CS1_BASE);
49 out_be32(&fbcs->cscr1, CONFIG_SYS_CS1_CTRL);
50 out_be32(&fbcs->csmr1, CONFIG_SYS_CS1_MASK);
TsiChung Liew7f1a0462008-10-21 10:03:07 +000051#endif
52#if (defined(CONFIG_SYS_CS2_BASE) && defined(CONFIG_SYS_CS2_MASK) \
53 && defined(CONFIG_SYS_CS2_CTRL))
Alison Wang95bed1f2012-03-26 21:49:04 +000054 out_be32(&fbcs->csar2, CONFIG_SYS_CS2_BASE);
55 out_be32(&fbcs->cscr2, CONFIG_SYS_CS2_CTRL);
56 out_be32(&fbcs->csmr2, CONFIG_SYS_CS2_MASK);
TsiChung Liew7f1a0462008-10-21 10:03:07 +000057#endif
58#if (defined(CONFIG_SYS_CS3_BASE) && defined(CONFIG_SYS_CS3_MASK) \
59 && defined(CONFIG_SYS_CS3_CTRL))
Alison Wang95bed1f2012-03-26 21:49:04 +000060 out_be32(&fbcs->csar3, CONFIG_SYS_CS3_BASE);
61 out_be32(&fbcs->cscr3, CONFIG_SYS_CS3_CTRL);
62 out_be32(&fbcs->csmr3, CONFIG_SYS_CS3_MASK);
TsiChung Liew7f1a0462008-10-21 10:03:07 +000063#endif
64#if (defined(CONFIG_SYS_CS4_BASE) && defined(CONFIG_SYS_CS4_MASK) \
65 && defined(CONFIG_SYS_CS4_CTRL))
Alison Wang95bed1f2012-03-26 21:49:04 +000066 out_be32(&fbcs->csar4, CONFIG_SYS_CS4_BASE);
67 out_be32(&fbcs->cscr4, CONFIG_SYS_CS4_CTRL);
68 out_be32(&fbcs->csmr4, CONFIG_SYS_CS4_MASK);
TsiChung Liew7f1a0462008-10-21 10:03:07 +000069#endif
70#if (defined(CONFIG_SYS_CS5_BASE) && defined(CONFIG_SYS_CS5_MASK) \
71 && defined(CONFIG_SYS_CS5_CTRL))
Alison Wang95bed1f2012-03-26 21:49:04 +000072 out_be32(&fbcs->csar5, CONFIG_SYS_CS5_BASE);
73 out_be32(&fbcs->cscr5, CONFIG_SYS_CS5_CTRL);
74 out_be32(&fbcs->csmr5, CONFIG_SYS_CS5_MASK);
TsiChung Liew7f1a0462008-10-21 10:03:07 +000075#endif
76#if (defined(CONFIG_SYS_CS6_BASE) && defined(CONFIG_SYS_CS6_MASK) \
77 && defined(CONFIG_SYS_CS6_CTRL))
Alison Wang95bed1f2012-03-26 21:49:04 +000078 out_be32(&fbcs->csar6, CONFIG_SYS_CS6_BASE);
79 out_be32(&fbcs->cscr6, CONFIG_SYS_CS6_CTRL);
80 out_be32(&fbcs->csmr6, CONFIG_SYS_CS6_MASK);
TsiChung Liew7f1a0462008-10-21 10:03:07 +000081#endif
82#if (defined(CONFIG_SYS_CS7_BASE) && defined(CONFIG_SYS_CS7_MASK) \
83 && defined(CONFIG_SYS_CS7_CTRL))
Alison Wang95bed1f2012-03-26 21:49:04 +000084 out_be32(&fbcs->csar7, CONFIG_SYS_CS7_BASE);
85 out_be32(&fbcs->cscr7, CONFIG_SYS_CS7_CTRL);
86 out_be32(&fbcs->csmr7, CONFIG_SYS_CS7_MASK);
TsiChung Liew7f1a0462008-10-21 10:03:07 +000087#endif
88}
89#endif
90
TsiChung Liewb354aef2009-06-12 11:29:00 +000091#if defined(CONFIG_M5208)
92void cpu_init_f(void)
93{
Alison Wang95bed1f2012-03-26 21:49:04 +000094 scm1_t *scm1 = (scm1_t *) MMAP_SCM1;
TsiChung Liewb354aef2009-06-12 11:29:00 +000095
96#ifndef CONFIG_WATCHDOG
Alison Wang95bed1f2012-03-26 21:49:04 +000097 wdog_t *wdg = (wdog_t *) MMAP_WDOG;
TsiChung Liewb354aef2009-06-12 11:29:00 +000098
99 /* Disable the watchdog if we aren't using it */
Alison Wang95bed1f2012-03-26 21:49:04 +0000100 out_be16(&wdg->cr, 0);
TsiChung Liewb354aef2009-06-12 11:29:00 +0000101#endif
102
Alison Wang95bed1f2012-03-26 21:49:04 +0000103 out_be32(&scm1->mpr, 0x77777777);
104 out_be32(&scm1->pacra, 0);
105 out_be32(&scm1->pacrb, 0);
106 out_be32(&scm1->pacrc, 0);
107 out_be32(&scm1->pacrd, 0);
108 out_be32(&scm1->pacre, 0);
109 out_be32(&scm1->pacrf, 0);
TsiChung Liewb354aef2009-06-12 11:29:00 +0000110
111 /* FlexBus Chipselect */
112 init_fbcs();
113
114 icache_enable();
115}
116
117/* initialize higher level parts of CPU like timers */
118int cpu_init_r(void)
119{
120 return (0);
121}
122
TsiChung Liewf9556a72010-03-09 19:17:52 -0600123void uart_port_conf(int port)
TsiChung Liewb354aef2009-06-12 11:29:00 +0000124{
Alison Wang95bed1f2012-03-26 21:49:04 +0000125 gpio_t *gpio = (gpio_t *) MMAP_GPIO;
TsiChung Liewb354aef2009-06-12 11:29:00 +0000126
127 /* Setup Ports: */
TsiChung Liewf9556a72010-03-09 19:17:52 -0600128 switch (port) {
TsiChung Liewb354aef2009-06-12 11:29:00 +0000129 case 0:
Alison Wang95bed1f2012-03-26 21:49:04 +0000130 clrbits_be16(&gpio->par_uart, ~GPIO_PAR_UART0_UNMASK);
131 setbits_be16(&gpio->par_uart, GPIO_PAR_UART_U0TXD | GPIO_PAR_UART_U0RXD);
TsiChung Liewb354aef2009-06-12 11:29:00 +0000132 break;
133 case 1:
Alison Wang95bed1f2012-03-26 21:49:04 +0000134 clrbits_be16(&gpio->par_uart, ~GPIO_PAR_UART0_UNMASK);
135 setbits_be16(&gpio->par_uart, GPIO_PAR_UART_U1TXD | GPIO_PAR_UART_U1RXD);
TsiChung Liewb354aef2009-06-12 11:29:00 +0000136 break;
137 case 2:
138#ifdef CONFIG_SYS_UART2_PRI_GPIO
Alison Wang95bed1f2012-03-26 21:49:04 +0000139 clrbits_8(&gpio->par_timer,
140 ~(GPIO_PAR_TMR_TIN0_UNMASK | GPIO_PAR_TMR_TIN1_UNMASK));
141 setbits_8(&gpio->par_timer,
142 GPIO_PAR_TMR_TIN0_U2TXD | GPIO_PAR_TMR_TIN1_U2RXD);
TsiChung Liewb354aef2009-06-12 11:29:00 +0000143#endif
144#ifdef CONFIG_SYS_UART2_ALT1_GPIO
Alison Wang95bed1f2012-03-26 21:49:04 +0000145 clrbits_8(&gpio->par_feci2c,
146 ~(GPIO_PAR_FECI2C_MDC_UNMASK | GPIO_PAR_FECI2C_MDIO_UNMASK));
147 setbits_8(&gpio->par_feci2c,
148 GPIO_PAR_FECI2C_MDC_U2TXD | GPIO_PAR_FECI2C_MDIO_U2RXD);
TsiChung Liewb354aef2009-06-12 11:29:00 +0000149#endif
150#ifdef CONFIG_SYS_UART2_ALT1_GPIO
Alison Wang95bed1f2012-03-26 21:49:04 +0000151 clrbits_8(&gpio->par_feci2c,
152 ~(GPIO_PAR_FECI2C_SDA_UNMASK | GPIO_PAR_FECI2C_SCL_UNMASK));
153 setbits_8(&gpio->par_feci2c,
154 GPIO_PAR_FECI2C_SDA_U2TXD | GPIO_PAR_FECI2C_SCL_U2RXD);
TsiChung Liewb354aef2009-06-12 11:29:00 +0000155#endif
156 break;
157 }
158}
159
160#if defined(CONFIG_CMD_NET)
161int fecpin_setclear(struct eth_device *dev, int setclear)
162{
Alison Wang95bed1f2012-03-26 21:49:04 +0000163 gpio_t *gpio = (gpio_t *) MMAP_GPIO;
TsiChung Liewb354aef2009-06-12 11:29:00 +0000164
165 if (setclear) {
Alison Wang95bed1f2012-03-26 21:49:04 +0000166 setbits_8(&gpio->par_fec,
167 GPIO_PAR_FEC_7W_FEC | GPIO_PAR_FEC_MII_FEC);
168 setbits_8(&gpio->par_feci2c,
169 GPIO_PAR_FECI2C_MDC_MDC | GPIO_PAR_FECI2C_MDIO_MDIO);
TsiChung Liewb354aef2009-06-12 11:29:00 +0000170 } else {
Alison Wang95bed1f2012-03-26 21:49:04 +0000171 clrbits_8(&gpio->par_fec,
172 ~(GPIO_PAR_FEC_7W_UNMASK & GPIO_PAR_FEC_MII_UNMASK));
173 clrbits_8(&gpio->par_feci2c, ~GPIO_PAR_FECI2C_RMII_UNMASK);
TsiChung Liewb354aef2009-06-12 11:29:00 +0000174 }
175 return 0;
176}
177#endif /* CONFIG_CMD_NET */
178#endif /* CONFIG_M5208 */
179
TsiChungLiew34674692007-08-16 13:20:50 -0500180#if defined(CONFIG_M5253)
181/*
182 * Breath some life into the CPU...
183 *
184 * Set up the memory map,
185 * initialize a bunch of registers,
186 * initialize the UPM's
187 */
188void cpu_init_f(void)
189{
190 mbar_writeByte(MCFSIM_MPARK, 0x40); /* 5249 Internal Core takes priority over DMA */
191 mbar_writeByte(MCFSIM_SYPCR, 0x00);
192 mbar_writeByte(MCFSIM_SWIVR, 0x0f);
193 mbar_writeByte(MCFSIM_SWSR, 0x00);
194 mbar_writeByte(MCFSIM_SWDICR, 0x00);
195 mbar_writeByte(MCFSIM_TIMER1ICR, 0x00);
196 mbar_writeByte(MCFSIM_TIMER2ICR, 0x88);
197 mbar_writeByte(MCFSIM_I2CICR, 0x00);
198 mbar_writeByte(MCFSIM_UART1ICR, 0x00);
199 mbar_writeByte(MCFSIM_UART2ICR, 0x00);
200 mbar_writeByte(MCFSIM_ICR6, 0x00);
201 mbar_writeByte(MCFSIM_ICR7, 0x00);
202 mbar_writeByte(MCFSIM_ICR8, 0x00);
203 mbar_writeByte(MCFSIM_ICR9, 0x00);
204 mbar_writeByte(MCFSIM_QSPIICR, 0x00);
205
206 mbar2_writeLong(MCFSIM_GPIO_INT_EN, 0x00000080);
207 mbar2_writeByte(MCFSIM_INTBASE, 0x40); /* Base interrupts at 64 */
208 mbar2_writeByte(MCFSIM_SPURVEC, 0x00);
209
Wolfgang Denk55334c72008-12-16 01:02:17 +0100210 /*mbar2_writeLong(MCFSIM_IDECONFIG1, 0x00000020); */ /* Enable a 1 cycle pre-drive cycle on CS1 */
TsiChungLiew34674692007-08-16 13:20:50 -0500211
TsiChung Liew7f1a0462008-10-21 10:03:07 +0000212 /* FlexBus Chipselect */
213 init_fbcs();
TsiChungLiew34674692007-08-16 13:20:50 -0500214
Heiko Schocherf2850742012-10-24 13:48:22 +0200215#ifdef CONFIG_SYS_I2C_FSL
TsiChung Liew7f1a0462008-10-21 10:03:07 +0000216 CONFIG_SYS_I2C_PINMUX_REG =
217 CONFIG_SYS_I2C_PINMUX_REG & CONFIG_SYS_I2C_PINMUX_CLR;
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200218 CONFIG_SYS_I2C_PINMUX_REG |= CONFIG_SYS_I2C_PINMUX_SET;
219#ifdef CONFIG_SYS_I2C2_OFFSET
220 CONFIG_SYS_I2C2_PINMUX_REG &= CONFIG_SYS_I2C2_PINMUX_CLR;
221 CONFIG_SYS_I2C2_PINMUX_REG |= CONFIG_SYS_I2C2_PINMUX_SET;
TsiChung Liew0c1e3252008-08-19 03:01:19 +0600222#endif
223#endif
224
TsiChungLiew34674692007-08-16 13:20:50 -0500225 /* enable instruction cache now */
226 icache_enable();
227}
228
229/*initialize higher level parts of CPU like timers */
230int cpu_init_r(void)
231{
232 return (0);
233}
234
TsiChung Liewf9556a72010-03-09 19:17:52 -0600235void uart_port_conf(int port)
TsiChungLiew34674692007-08-16 13:20:50 -0500236{
Alison Wang95bed1f2012-03-26 21:49:04 +0000237 u32 *par = (u32 *) MMAP_PAR;
TsiChung Liewf9556a72010-03-09 19:17:52 -0600238
TsiChungLiew34674692007-08-16 13:20:50 -0500239 /* Setup Ports: */
TsiChung Liewf9556a72010-03-09 19:17:52 -0600240 switch (port) {
TsiChungLiew34674692007-08-16 13:20:50 -0500241 case 1:
Alison Wang95bed1f2012-03-26 21:49:04 +0000242 clrbits_be32(par, 0x00180000);
243 setbits_be32(par, 0x00180000);
TsiChungLiew34674692007-08-16 13:20:50 -0500244 break;
245 case 2:
Alison Wang95bed1f2012-03-26 21:49:04 +0000246 clrbits_be32(par, 0x00000003);
247 clrbits_be32(par, 0xFFFFFFFC);
TsiChungLiew34674692007-08-16 13:20:50 -0500248 break;
249 }
250}
251#endif /* #if defined(CONFIG_M5253) */
252
Zachary P. Landau0bba8622006-01-26 17:35:56 -0500253#if defined(CONFIG_M5271)
TsiChungLiew8cd73be2007-08-15 19:21:21 -0500254void cpu_init_f(void)
Zachary P. Landau0bba8622006-01-26 17:35:56 -0500255{
256#ifndef CONFIG_WATCHDOG
257 /* Disable the watchdog if we aren't using it */
258 mbar_writeShort(MCF_WTM_WCR, 0);
259#endif
260
TsiChung Liew7f1a0462008-10-21 10:03:07 +0000261 /* FlexBus Chipselect */
262 init_fbcs();
263
Richard Retanubunfbb55212009-01-29 14:36:06 -0500264#ifdef CONFIG_SYS_MCF_SYNCR
265 /* Set clockspeed according to board header file */
266 mbar_writeLong(MCF_FMPLL_SYNCR, CONFIG_SYS_MCF_SYNCR);
267#else
Zachary P. Landau0bba8622006-01-26 17:35:56 -0500268 /* Set clockspeed to 100MHz */
Richard Retanubunfbb55212009-01-29 14:36:06 -0500269 mbar_writeLong(MCF_FMPLL_SYNCR,
Zachary P. Landau0bba8622006-01-26 17:35:56 -0500270 MCF_FMPLL_SYNCR_MFD(0) | MCF_FMPLL_SYNCR_RFD(0));
Richard Retanubunfbb55212009-01-29 14:36:06 -0500271#endif
Mike Frysinger9b728282011-10-15 10:10:42 +0000272 while (!(mbar_readByte(MCF_FMPLL_SYNSR) & MCF_FMPLL_SYNSR_LOCK)) ;
Zachary P. Landau0bba8622006-01-26 17:35:56 -0500273}
274
275/*
276 * initialize higher level parts of CPU like timers
277 */
TsiChungLiew8cd73be2007-08-15 19:21:21 -0500278int cpu_init_r(void)
Zachary P. Landau0bba8622006-01-26 17:35:56 -0500279{
280 return (0);
281}
TsiChungLiew8cd73be2007-08-15 19:21:21 -0500282
TsiChung Liewf9556a72010-03-09 19:17:52 -0600283void uart_port_conf(int port)
TsiChungLiew8cd73be2007-08-15 19:21:21 -0500284{
TsiChung Liewf9556a72010-03-09 19:17:52 -0600285 u16 temp;
286
TsiChungLiew8cd73be2007-08-15 19:21:21 -0500287 /* Setup Ports: */
TsiChung Liewf9556a72010-03-09 19:17:52 -0600288 switch (port) {
TsiChungLiew8cd73be2007-08-15 19:21:21 -0500289 case 0:
TsiChung Liewf9556a72010-03-09 19:17:52 -0600290 temp = mbar_readShort(MCF_GPIO_PAR_UART) & 0xFFF3;
291 temp |= (MCF_GPIO_PAR_UART_U0TXD | MCF_GPIO_PAR_UART_U0RXD);
292 mbar_writeShort(MCF_GPIO_PAR_UART, temp);
TsiChungLiew8cd73be2007-08-15 19:21:21 -0500293 break;
294 case 1:
TsiChung Liewf9556a72010-03-09 19:17:52 -0600295 temp = mbar_readShort(MCF_GPIO_PAR_UART) & 0xF0FF;
296 temp |= (MCF_GPIO_PAR_UART_U1RXD_UART1 | MCF_GPIO_PAR_UART_U1TXD_UART1);
297 mbar_writeShort(MCF_GPIO_PAR_UART, temp);
TsiChungLiew8cd73be2007-08-15 19:21:21 -0500298 break;
299 case 2:
TsiChung Liewf9556a72010-03-09 19:17:52 -0600300 temp = mbar_readShort(MCF_GPIO_PAR_UART) & 0xCFFF;
301 temp |= (0x3000);
302 mbar_writeShort(MCF_GPIO_PAR_UART, temp);
TsiChungLiew8cd73be2007-08-15 19:21:21 -0500303 break;
304 }
TsiChung Liew69b17572008-10-21 13:47:54 +0000305}
306
307#if defined(CONFIG_CMD_NET)
308int fecpin_setclear(struct eth_device *dev, int setclear)
309{
310 if (setclear) {
311 /* Enable Ethernet pins */
Richard Retanubun0ad94fd2009-01-23 10:47:13 -0500312 mbar_writeByte(MCF_GPIO_PAR_FECI2C,
313 (mbar_readByte(MCF_GPIO_PAR_FECI2C) | 0xF0));
TsiChung Liew69b17572008-10-21 13:47:54 +0000314 } else {
315 }
316
317 return 0;
TsiChungLiew8cd73be2007-08-15 19:21:21 -0500318}
TsiChung Liew69b17572008-10-21 13:47:54 +0000319#endif /* CONFIG_CMD_NET */
Richard Retanubun93241382011-03-24 08:58:11 +0000320
321#if defined(CONFIG_CF_QSPI)
322
323/* Configure PIOs for SIN, SOUT, and SCK */
324void cfspi_port_conf(void)
325{
326 mbar_writeByte(MCF_GPIO_PAR_QSPI,
327 MCF_GPIO_PAR_QSPI_SIN_SIN |
328 MCF_GPIO_PAR_QSPI_SOUT_SOUT |
329 MCF_GPIO_PAR_QSPI_SCK_SCK);
330}
331#endif /* CONFIG_CF_QSPI */
332
333#endif /* CONFIG_M5271 */
Zachary P. Landau0bba8622006-01-26 17:35:56 -0500334
stroese53395a22004-12-16 18:09:49 +0000335#if defined(CONFIG_M5272)
wdenke65527f2004-02-12 00:47:09 +0000336/*
337 * Breath some life into the CPU...
338 *
339 * Set up the memory map,
340 * initialize a bunch of registers,
341 * initialize the UPM's
342 */
TsiChungLiew8cd73be2007-08-15 19:21:21 -0500343void cpu_init_f(void)
wdenke65527f2004-02-12 00:47:09 +0000344{
345 /* if we come from RAM we assume the CPU is
346 * already initialized.
347 */
348#ifndef CONFIG_MONITOR_IS_IN_RAM
Alison Wang95bed1f2012-03-26 21:49:04 +0000349 sysctrl_t *sysctrl = (sysctrl_t *) (CONFIG_SYS_MBAR);
350 gpio_t *gpio = (gpio_t *) (MMAP_GPIO);
351 csctrl_t *csctrl = (csctrl_t *) (MMAP_FBCS);
wdenke65527f2004-02-12 00:47:09 +0000352
Alison Wang95bed1f2012-03-26 21:49:04 +0000353 out_be16(&sysctrl->sc_scr, CONFIG_SYS_SCR);
354 out_be16(&sysctrl->sc_spr, CONFIG_SYS_SPR);
wdenke65527f2004-02-12 00:47:09 +0000355
Wolfgang Denkc2c49442006-05-10 17:43:20 +0200356 /* Setup Ports: */
Alison Wang95bed1f2012-03-26 21:49:04 +0000357 out_be32(&gpio->gpio_pacnt, CONFIG_SYS_PACNT);
358 out_be16(&gpio->gpio_paddr, CONFIG_SYS_PADDR);
359 out_be16(&gpio->gpio_padat, CONFIG_SYS_PADAT);
360 out_be32(&gpio->gpio_pbcnt, CONFIG_SYS_PBCNT);
361 out_be16(&gpio->gpio_pbddr, CONFIG_SYS_PBDDR);
362 out_be16(&gpio->gpio_pbdat, CONFIG_SYS_PBDAT);
363 out_be32(&gpio->gpio_pdcnt, CONFIG_SYS_PDCNT);
wdenke65527f2004-02-12 00:47:09 +0000364
365 /* Memory Controller: */
Alison Wang95bed1f2012-03-26 21:49:04 +0000366 out_be32(&csctrl->cs_br0, CONFIG_SYS_BR0_PRELIM);
367 out_be32(&csctrl->cs_or0, CONFIG_SYS_OR0_PRELIM);
wdenke65527f2004-02-12 00:47:09 +0000368
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200369#if (defined(CONFIG_SYS_OR1_PRELIM) && defined(CONFIG_SYS_BR1_PRELIM))
Alison Wang95bed1f2012-03-26 21:49:04 +0000370 out_be32(&csctrl->cs_br1, CONFIG_SYS_BR1_PRELIM);
371 out_be32(&csctrl->cs_or1, CONFIG_SYS_OR1_PRELIM);
wdenke65527f2004-02-12 00:47:09 +0000372#endif
373
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200374#if defined(CONFIG_SYS_OR2_PRELIM) && defined(CONFIG_SYS_BR2_PRELIM)
Alison Wang95bed1f2012-03-26 21:49:04 +0000375 out_be32(&csctrl->cs_br2, CONFIG_SYS_BR2_PRELIM);
376 out_be32(&csctrl->cs_or2, CONFIG_SYS_OR2_PRELIM);
wdenke65527f2004-02-12 00:47:09 +0000377#endif
378
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200379#if defined(CONFIG_SYS_OR3_PRELIM) && defined(CONFIG_SYS_BR3_PRELIM)
Alison Wang95bed1f2012-03-26 21:49:04 +0000380 out_be32(&csctrl->cs_br3, CONFIG_SYS_BR3_PRELIM);
381 out_be32(&csctrl->cs_or3, CONFIG_SYS_OR3_PRELIM);
wdenke65527f2004-02-12 00:47:09 +0000382#endif
383
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200384#if defined(CONFIG_SYS_OR4_PRELIM) && defined(CONFIG_SYS_BR4_PRELIM)
Alison Wang95bed1f2012-03-26 21:49:04 +0000385 out_be32(&csctrl->cs_br4, CONFIG_SYS_BR4_PRELIM);
386 out_be32(&csctrl->cs_or4, CONFIG_SYS_OR4_PRELIM);
wdenke65527f2004-02-12 00:47:09 +0000387#endif
388
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200389#if defined(CONFIG_SYS_OR5_PRELIM) && defined(CONFIG_SYS_BR5_PRELIM)
Alison Wang95bed1f2012-03-26 21:49:04 +0000390 out_be32(&csctrl->cs_br5, CONFIG_SYS_BR5_PRELIM);
391 out_be32(&csctrl->cs_or5, CONFIG_SYS_OR5_PRELIM);
wdenke65527f2004-02-12 00:47:09 +0000392#endif
393
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200394#if defined(CONFIG_SYS_OR6_PRELIM) && defined(CONFIG_SYS_BR6_PRELIM)
Alison Wang95bed1f2012-03-26 21:49:04 +0000395 out_be32(&csctrl->cs_br6, CONFIG_SYS_BR6_PRELIM);
396 out_be32(&csctrl->cs_or6, CONFIG_SYS_OR6_PRELIM);
wdenke65527f2004-02-12 00:47:09 +0000397#endif
398
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200399#if defined(CONFIG_SYS_OR7_PRELIM) && defined(CONFIG_SYS_BR7_PRELIM)
Alison Wang95bed1f2012-03-26 21:49:04 +0000400 out_be32(&csctrl->cs_br7, CONFIG_SYS_BR7_PRELIM);
401 out_be32(&csctrl->cs_or7, CONFIG_SYS_OR7_PRELIM);
wdenke65527f2004-02-12 00:47:09 +0000402#endif
403
TsiChungLiew8cd73be2007-08-15 19:21:21 -0500404#endif /* #ifndef CONFIG_MONITOR_IS_IN_RAM */
wdenke65527f2004-02-12 00:47:09 +0000405
Wolfgang Denkc2c49442006-05-10 17:43:20 +0200406 /* enable instruction cache now */
407 icache_enable();
wdenke65527f2004-02-12 00:47:09 +0000408
409}
410
411/*
412 * initialize higher level parts of CPU like timers
413 */
TsiChungLiew8cd73be2007-08-15 19:21:21 -0500414int cpu_init_r(void)
wdenke65527f2004-02-12 00:47:09 +0000415{
416 return (0);
417}
wdenke65527f2004-02-12 00:47:09 +0000418
TsiChung Liewf9556a72010-03-09 19:17:52 -0600419void uart_port_conf(int port)
TsiChungLiew8cd73be2007-08-15 19:21:21 -0500420{
Alison Wang95bed1f2012-03-26 21:49:04 +0000421 gpio_t *gpio = (gpio_t *) MMAP_GPIO;
wdenke65527f2004-02-12 00:47:09 +0000422
TsiChungLiew8cd73be2007-08-15 19:21:21 -0500423 /* Setup Ports: */
TsiChung Liewf9556a72010-03-09 19:17:52 -0600424 switch (port) {
TsiChungLiew8cd73be2007-08-15 19:21:21 -0500425 case 0:
Alison Wang95bed1f2012-03-26 21:49:04 +0000426 clrbits_be32(&gpio->gpio_pbcnt,
427 GPIO_PBCNT_PB0MSK | GPIO_PBCNT_PB1MSK);
428 setbits_be32(&gpio->gpio_pbcnt,
429 GPIO_PBCNT_URT0_TXD | GPIO_PBCNT_URT0_RXD);
TsiChungLiew8cd73be2007-08-15 19:21:21 -0500430 break;
431 case 1:
Alison Wang95bed1f2012-03-26 21:49:04 +0000432 clrbits_be32(&gpio->gpio_pdcnt,
433 GPIO_PDCNT_PD1MSK | GPIO_PDCNT_PD4MSK);
434 setbits_be32(&gpio->gpio_pdcnt,
435 GPIO_PDCNT_URT1_RXD | GPIO_PDCNT_URT1_TXD);
TsiChungLiew8cd73be2007-08-15 19:21:21 -0500436 break;
437 }
438}
TsiChung Liew69b17572008-10-21 13:47:54 +0000439
440#if defined(CONFIG_CMD_NET)
441int fecpin_setclear(struct eth_device *dev, int setclear)
442{
Alison Wang95bed1f2012-03-26 21:49:04 +0000443 gpio_t *gpio = (gpio_t *) MMAP_GPIO;
TsiChung Liew69b17572008-10-21 13:47:54 +0000444
445 if (setclear) {
Alison Wang95bed1f2012-03-26 21:49:04 +0000446 setbits_be32(&gpio->gpio_pbcnt,
447 GPIO_PBCNT_E_MDC | GPIO_PBCNT_E_RXER |
448 GPIO_PBCNT_E_RXD1 | GPIO_PBCNT_E_RXD2 |
449 GPIO_PBCNT_E_RXD3 | GPIO_PBCNT_E_TXD1 |
450 GPIO_PBCNT_E_TXD2 | GPIO_PBCNT_E_TXD3);
TsiChung Liew69b17572008-10-21 13:47:54 +0000451 } else {
452 }
453 return 0;
454}
455#endif /* CONFIG_CMD_NET */
TsiChungLiew8cd73be2007-08-15 19:21:21 -0500456#endif /* #if defined(CONFIG_M5272) */
457
Matthew Fettke761e2e92008-02-04 15:38:20 -0600458#if defined(CONFIG_M5275)
459
460/*
461 * Breathe some life into the CPU...
462 *
463 * Set up the memory map,
464 * initialize a bunch of registers,
465 * initialize the UPM's
466 */
467void cpu_init_f(void)
468{
TsiChung Liew7f1a0462008-10-21 10:03:07 +0000469 /*
470 * if we come from RAM we assume the CPU is
Matthew Fettke761e2e92008-02-04 15:38:20 -0600471 * already initialized.
472 */
473
474#ifndef CONFIG_MONITOR_IS_IN_RAM
Alison Wang95bed1f2012-03-26 21:49:04 +0000475 wdog_t *wdog_reg = (wdog_t *) (MMAP_WDOG);
476 gpio_t *gpio_reg = (gpio_t *) (MMAP_GPIO);
Matthew Fettke761e2e92008-02-04 15:38:20 -0600477
478 /* Kill watchdog so we can initialize the PLL */
Alison Wang95bed1f2012-03-26 21:49:04 +0000479 out_be16(&wdog_reg->wcr, 0);
Matthew Fettke761e2e92008-02-04 15:38:20 -0600480
TsiChung Liew7f1a0462008-10-21 10:03:07 +0000481 /* FlexBus Chipselect */
482 init_fbcs();
Matthew Fettke761e2e92008-02-04 15:38:20 -0600483#endif /* #ifndef CONFIG_MONITOR_IS_IN_RAM */
484
Heiko Schocherf2850742012-10-24 13:48:22 +0200485#ifdef CONFIG_SYS_I2C_FSL
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200486 CONFIG_SYS_I2C_PINMUX_REG &= CONFIG_SYS_I2C_PINMUX_CLR;
487 CONFIG_SYS_I2C_PINMUX_REG |= CONFIG_SYS_I2C_PINMUX_SET;
Matthew Fettke761e2e92008-02-04 15:38:20 -0600488#endif
489
490 /* enable instruction cache now */
491 icache_enable();
492}
493
494/*
495 * initialize higher level parts of CPU like timers
496 */
497int cpu_init_r(void)
498{
499 return (0);
500}
501
TsiChung Liewf9556a72010-03-09 19:17:52 -0600502void uart_port_conf(int port)
Matthew Fettke761e2e92008-02-04 15:38:20 -0600503{
Alison Wang95bed1f2012-03-26 21:49:04 +0000504 gpio_t *gpio = (gpio_t *) MMAP_GPIO;
Matthew Fettke761e2e92008-02-04 15:38:20 -0600505
506 /* Setup Ports: */
TsiChung Liewf9556a72010-03-09 19:17:52 -0600507 switch (port) {
Matthew Fettke761e2e92008-02-04 15:38:20 -0600508 case 0:
Alison Wang95bed1f2012-03-26 21:49:04 +0000509 clrbits_be16(&gpio->par_uart, UART0_ENABLE_MASK);
510 setbits_be16(&gpio->par_uart, UART0_ENABLE_MASK);
Matthew Fettke761e2e92008-02-04 15:38:20 -0600511 break;
512 case 1:
Alison Wang95bed1f2012-03-26 21:49:04 +0000513 clrbits_be16(&gpio->par_uart, UART1_ENABLE_MASK);
514 setbits_be16(&gpio->par_uart, UART1_ENABLE_MASK);
Matthew Fettke761e2e92008-02-04 15:38:20 -0600515 break;
516 case 2:
Alison Wang95bed1f2012-03-26 21:49:04 +0000517 clrbits_be16(&gpio->par_uart, UART2_ENABLE_MASK);
518 setbits_be16(&gpio->par_uart, UART2_ENABLE_MASK);
Matthew Fettke761e2e92008-02-04 15:38:20 -0600519 break;
520 }
521}
TsiChung Liew69b17572008-10-21 13:47:54 +0000522
523#if defined(CONFIG_CMD_NET)
524int fecpin_setclear(struct eth_device *dev, int setclear)
525{
526 struct fec_info_s *info = (struct fec_info_s *) dev->priv;
Alison Wang95bed1f2012-03-26 21:49:04 +0000527 gpio_t *gpio = (gpio_t *)MMAP_GPIO;
TsiChung Liew69b17572008-10-21 13:47:54 +0000528
529 if (setclear) {
530 /* Enable Ethernet pins */
531 if (info->iobase == CONFIG_SYS_FEC0_IOBASE) {
Alison Wang95bed1f2012-03-26 21:49:04 +0000532 setbits_be16(&gpio->par_feci2c, 0x0f00);
533 setbits_8(&gpio->par_fec0hl, 0xc0);
TsiChung Liew69b17572008-10-21 13:47:54 +0000534 } else {
Alison Wang95bed1f2012-03-26 21:49:04 +0000535 setbits_be16(&gpio->par_feci2c, 0x00a0);
536 setbits_8(&gpio->par_fec1hl, 0xc0);
TsiChung Liew69b17572008-10-21 13:47:54 +0000537 }
538 } else {
539 if (info->iobase == CONFIG_SYS_FEC0_IOBASE) {
Alison Wang95bed1f2012-03-26 21:49:04 +0000540 clrbits_be16(&gpio->par_feci2c, 0x0f00);
541 clrbits_8(&gpio->par_fec0hl, 0xc0);
TsiChung Liew69b17572008-10-21 13:47:54 +0000542 } else {
Alison Wang95bed1f2012-03-26 21:49:04 +0000543 clrbits_be16(&gpio->par_feci2c, 0x00a0);
544 clrbits_8(&gpio->par_fec1hl, 0xc0);
TsiChung Liew69b17572008-10-21 13:47:54 +0000545 }
546 }
547
548 return 0;
549}
550#endif /* CONFIG_CMD_NET */
Matthew Fettke761e2e92008-02-04 15:38:20 -0600551#endif /* #if defined(CONFIG_M5275) */
552
TsiChungLiew8cd73be2007-08-15 19:21:21 -0500553#if defined(CONFIG_M5282)
wdenke65527f2004-02-12 00:47:09 +0000554/*
555 * Breath some life into the CPU...
556 *
557 * Set up the memory map,
558 * initialize a bunch of registers,
559 * initialize the UPM's
560 */
TsiChungLiew8cd73be2007-08-15 19:21:21 -0500561void cpu_init_f(void)
wdenke65527f2004-02-12 00:47:09 +0000562{
Heiko Schocherac1956e2006-04-20 08:42:42 +0200563#ifndef CONFIG_WATCHDOG
564 /* disable watchdog if we aren't using it */
565 MCFWTM_WCR = 0;
566#endif
567
568#ifndef CONFIG_MONITOR_IS_IN_RAM
569 /* Set speed /PLL */
TsiChungLiew8cd73be2007-08-15 19:21:21 -0500570 MCFCLOCK_SYNCR =
TsiChung Liew7f1a0462008-10-21 10:03:07 +0000571 MCFCLOCK_SYNCR_MFD(CONFIG_SYS_MFD) |
572 MCFCLOCK_SYNCR_RFD(CONFIG_SYS_RFD);
TsiChungLiew8cd73be2007-08-15 19:21:21 -0500573 while (!(MCFCLOCK_SYNSR & MCFCLOCK_SYNSR_LOCK)) ;
574
575 MCFGPIO_PBCDPAR = 0xc0;
Heiko Schocherac1956e2006-04-20 08:42:42 +0200576
577 /* Set up the GPIO ports */
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200578#ifdef CONFIG_SYS_PEPAR
579 MCFGPIO_PEPAR = CONFIG_SYS_PEPAR;
Heiko Schocherac1956e2006-04-20 08:42:42 +0200580#endif
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200581#ifdef CONFIG_SYS_PFPAR
582 MCFGPIO_PFPAR = CONFIG_SYS_PFPAR;
Heiko Schocherac1956e2006-04-20 08:42:42 +0200583#endif
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200584#ifdef CONFIG_SYS_PJPAR
585 MCFGPIO_PJPAR = CONFIG_SYS_PJPAR;
Heiko Schocherac1956e2006-04-20 08:42:42 +0200586#endif
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200587#ifdef CONFIG_SYS_PSDPAR
588 MCFGPIO_PSDPAR = CONFIG_SYS_PSDPAR;
Heiko Schocherac1956e2006-04-20 08:42:42 +0200589#endif
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200590#ifdef CONFIG_SYS_PASPAR
591 MCFGPIO_PASPAR = CONFIG_SYS_PASPAR;
Heiko Schocherac1956e2006-04-20 08:42:42 +0200592#endif
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200593#ifdef CONFIG_SYS_PEHLPAR
594 MCFGPIO_PEHLPAR = CONFIG_SYS_PEHLPAR;
Heiko Schocherac1956e2006-04-20 08:42:42 +0200595#endif
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200596#ifdef CONFIG_SYS_PQSPAR
597 MCFGPIO_PQSPAR = CONFIG_SYS_PQSPAR;
Heiko Schocherac1956e2006-04-20 08:42:42 +0200598#endif
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200599#ifdef CONFIG_SYS_PTCPAR
600 MCFGPIO_PTCPAR = CONFIG_SYS_PTCPAR;
Heiko Schocherac1956e2006-04-20 08:42:42 +0200601#endif
Michael Durranta4991f22010-01-20 19:33:02 -0600602#if defined(CONFIG_SYS_PORTTC)
603 MCFGPIO_PORTTC = CONFIG_SYS_PORTTC;
604#endif
605#if defined(CONFIG_SYS_DDRTC)
606 MCFGPIO_DDRTC = CONFIG_SYS_DDRTC;
607#endif
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200608#ifdef CONFIG_SYS_PTDPAR
609 MCFGPIO_PTDPAR = CONFIG_SYS_PTDPAR;
Heiko Schocherac1956e2006-04-20 08:42:42 +0200610#endif
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200611#ifdef CONFIG_SYS_PUAPAR
612 MCFGPIO_PUAPAR = CONFIG_SYS_PUAPAR;
Heiko Schocherac1956e2006-04-20 08:42:42 +0200613#endif
614
Michael Durranta4991f22010-01-20 19:33:02 -0600615#if defined(CONFIG_SYS_DDRD)
616 MCFGPIO_DDRD = CONFIG_SYS_DDRD;
617#endif
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200618#ifdef CONFIG_SYS_DDRUA
619 MCFGPIO_DDRUA = CONFIG_SYS_DDRUA;
Heiko Schocherac1956e2006-04-20 08:42:42 +0200620#endif
Heiko Schocherac1956e2006-04-20 08:42:42 +0200621
TsiChung Liew7f1a0462008-10-21 10:03:07 +0000622 /* FlexBus Chipselect */
623 init_fbcs();
Heiko Schocherac1956e2006-04-20 08:42:42 +0200624
TsiChungLiew8cd73be2007-08-15 19:21:21 -0500625#endif /* CONFIG_MONITOR_IS_IN_RAM */
wdenke65527f2004-02-12 00:47:09 +0000626
Heiko Schocherac1956e2006-04-20 08:42:42 +0200627 /* defer enabling cache until boot (see do_go) */
628 /* icache_enable(); */
wdenke65527f2004-02-12 00:47:09 +0000629}
630
631/*
632 * initialize higher level parts of CPU like timers
633 */
TsiChungLiew8cd73be2007-08-15 19:21:21 -0500634int cpu_init_r(void)
wdenke65527f2004-02-12 00:47:09 +0000635{
636 return (0);
637}
TsiChungLiew8cd73be2007-08-15 19:21:21 -0500638
TsiChung Liewf9556a72010-03-09 19:17:52 -0600639void uart_port_conf(int port)
TsiChungLiew8cd73be2007-08-15 19:21:21 -0500640{
641 /* Setup Ports: */
TsiChung Liewf9556a72010-03-09 19:17:52 -0600642 switch (port) {
TsiChungLiew8cd73be2007-08-15 19:21:21 -0500643 case 0:
644 MCFGPIO_PUAPAR &= 0xFc;
645 MCFGPIO_PUAPAR |= 0x03;
646 break;
647 case 1:
648 MCFGPIO_PUAPAR &= 0xF3;
649 MCFGPIO_PUAPAR |= 0x0C;
650 break;
651 case 2:
652 MCFGPIO_PASPAR &= 0xFF0F;
653 MCFGPIO_PASPAR |= 0x00A0;
654 break;
655 }
TsiChung Liew69b17572008-10-21 13:47:54 +0000656}
657
658#if defined(CONFIG_CMD_NET)
659int fecpin_setclear(struct eth_device *dev, int setclear)
660{
661 if (setclear) {
662 MCFGPIO_PASPAR |= 0x0F00;
663 MCFGPIO_PEHLPAR = CONFIG_SYS_PEHLPAR;
664 } else {
665 MCFGPIO_PASPAR &= 0xF0FF;
666 MCFGPIO_PEHLPAR &= ~CONFIG_SYS_PEHLPAR;
667 }
668 return 0;
TsiChungLiew8cd73be2007-08-15 19:21:21 -0500669}
TsiChung Liew69b17572008-10-21 13:47:54 +0000670#endif /* CONFIG_CMD_NET */
wdenke65527f2004-02-12 00:47:09 +0000671#endif
stroese53395a22004-12-16 18:09:49 +0000672
673#if defined(CONFIG_M5249)
674/*
675 * Breath some life into the CPU...
676 *
677 * Set up the memory map,
678 * initialize a bunch of registers,
679 * initialize the UPM's
680 */
TsiChungLiew8cd73be2007-08-15 19:21:21 -0500681void cpu_init_f(void)
stroese53395a22004-12-16 18:09:49 +0000682{
stroese53395a22004-12-16 18:09:49 +0000683 /*
684 * NOTE: by setting the GPIO_FUNCTION registers, we ensure that the UART pins
TsiChungLiew8cd73be2007-08-15 19:21:21 -0500685 * (UART0: gpio 30,27, UART1: gpio 31, 28) will be used as UART pins
686 * which is their primary function.
687 * ~Jeremy
stroese53395a22004-12-16 18:09:49 +0000688 */
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200689 mbar2_writeLong(MCFSIM_GPIO_FUNC, CONFIG_SYS_GPIO_FUNC);
690 mbar2_writeLong(MCFSIM_GPIO1_FUNC, CONFIG_SYS_GPIO1_FUNC);
691 mbar2_writeLong(MCFSIM_GPIO_EN, CONFIG_SYS_GPIO_EN);
692 mbar2_writeLong(MCFSIM_GPIO1_EN, CONFIG_SYS_GPIO1_EN);
693 mbar2_writeLong(MCFSIM_GPIO_OUT, CONFIG_SYS_GPIO_OUT);
694 mbar2_writeLong(MCFSIM_GPIO1_OUT, CONFIG_SYS_GPIO1_OUT);
stroese53395a22004-12-16 18:09:49 +0000695
696 /*
697 * dBug Compliance:
698 * You can verify these values by using dBug's 'ird'
699 * (Internal Register Display) command
700 * ~Jeremy
701 *
Wolfgang Denkc2c49442006-05-10 17:43:20 +0200702 */
TsiChungLiew8cd73be2007-08-15 19:21:21 -0500703 mbar_writeByte(MCFSIM_MPARK, 0x30); /* 5249 Internal Core takes priority over DMA */
stroese53395a22004-12-16 18:09:49 +0000704 mbar_writeByte(MCFSIM_SYPCR, 0x00);
705 mbar_writeByte(MCFSIM_SWIVR, 0x0f);
706 mbar_writeByte(MCFSIM_SWSR, 0x00);
707 mbar_writeLong(MCFSIM_IMR, 0xfffffbff);
708 mbar_writeByte(MCFSIM_SWDICR, 0x00);
709 mbar_writeByte(MCFSIM_TIMER1ICR, 0x00);
710 mbar_writeByte(MCFSIM_TIMER2ICR, 0x88);
711 mbar_writeByte(MCFSIM_I2CICR, 0x00);
712 mbar_writeByte(MCFSIM_UART1ICR, 0x00);
713 mbar_writeByte(MCFSIM_UART2ICR, 0x00);
714 mbar_writeByte(MCFSIM_ICR6, 0x00);
715 mbar_writeByte(MCFSIM_ICR7, 0x00);
716 mbar_writeByte(MCFSIM_ICR8, 0x00);
717 mbar_writeByte(MCFSIM_ICR9, 0x00);
718 mbar_writeByte(MCFSIM_QSPIICR, 0x00);
719
720 mbar2_writeLong(MCFSIM_GPIO_INT_EN, 0x00000080);
Wolfgang Denkc2c49442006-05-10 17:43:20 +0200721 mbar2_writeByte(MCFSIM_INTBASE, 0x40); /* Base interrupts at 64 */
stroese53395a22004-12-16 18:09:49 +0000722 mbar2_writeByte(MCFSIM_SPURVEC, 0x00);
TsiChungLiew8cd73be2007-08-15 19:21:21 -0500723 mbar2_writeLong(MCFSIM_IDECONFIG1, 0x00000020); /* Enable a 1 cycle pre-drive cycle on CS1 */
stroese53395a22004-12-16 18:09:49 +0000724
725 /* Setup interrupt priorities for gpio7 */
726 /* mbar2_writeLong(MCFSIM_INTLEV5, 0x70000000); */
727
728 /* IDE Config registers */
729 mbar2_writeLong(MCFSIM_IDECONFIG1, 0x00000020);
730 mbar2_writeLong(MCFSIM_IDECONFIG2, 0x00000000);
731
TsiChung Liew7f1a0462008-10-21 10:03:07 +0000732 /* FlexBus Chipselect */
733 init_fbcs();
stroese53395a22004-12-16 18:09:49 +0000734
735 /* enable instruction cache now */
736 icache_enable();
737}
738
739/*
740 * initialize higher level parts of CPU like timers
741 */
TsiChungLiew8cd73be2007-08-15 19:21:21 -0500742int cpu_init_r(void)
stroese53395a22004-12-16 18:09:49 +0000743{
744 return (0);
745}
TsiChungLiew8cd73be2007-08-15 19:21:21 -0500746
TsiChung Liewf9556a72010-03-09 19:17:52 -0600747void uart_port_conf(int port)
TsiChungLiew8cd73be2007-08-15 19:21:21 -0500748{
TsiChungLiew8cd73be2007-08-15 19:21:21 -0500749}
750#endif /* #if defined(CONFIG_M5249) */