xref: /openbmc/u-boot/arch/m68k/cpu/mcf52x2/cpu_init.c (revision 76b00aca)
1 /*
2  * (C) Copyright 2003
3  * Josef Baumgartner <josef.baumgartner@telex.de>
4  *
5  * MCF5282 additionals
6  * (C) Copyright 2005
7  * BuS Elektronik GmbH & Co. KG <esw@bus-elektronik.de>
8  * (c) Copyright 2010
9  * Arcturus Networks Inc. <www.arcturusnetworks.com>
10  *
11  * Copyright (C) 2004-2007, 2012 Freescale Semiconductor, Inc.
12  * TsiChung Liew (Tsi-Chung.Liew@freescale.com)
13  * Hayden Fraser (Hayden.Fraser@freescale.com)
14  *
15  * MCF5275 additions
16  * Copyright (C) 2008 Arthur Shipkowski (art@videon-central.com)
17  *
18  * SPDX-License-Identifier:	GPL-2.0+
19  */
20 
21 #include <common.h>
22 #include <watchdog.h>
23 #include <asm/immap.h>
24 #include <asm/io.h>
25 
26 #if defined(CONFIG_CMD_NET)
27 #include <config.h>
28 #include <net.h>
29 #include <asm/fec.h>
30 #endif
31 
32 #ifndef CONFIG_M5272
33 /* Only 5272 Flexbus chipselect is different from the rest */
34 void init_fbcs(void)
35 {
36 	fbcs_t *fbcs = (fbcs_t *) (MMAP_FBCS);
37 
38 #if (defined(CONFIG_SYS_CS0_BASE) && defined(CONFIG_SYS_CS0_MASK) \
39      && defined(CONFIG_SYS_CS0_CTRL))
40 	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);
43 #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))
48 	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);
51 #endif
52 #if (defined(CONFIG_SYS_CS2_BASE) && defined(CONFIG_SYS_CS2_MASK) \
53      && defined(CONFIG_SYS_CS2_CTRL))
54 	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);
57 #endif
58 #if (defined(CONFIG_SYS_CS3_BASE) && defined(CONFIG_SYS_CS3_MASK) \
59      && defined(CONFIG_SYS_CS3_CTRL))
60 	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);
63 #endif
64 #if (defined(CONFIG_SYS_CS4_BASE) && defined(CONFIG_SYS_CS4_MASK) \
65      && defined(CONFIG_SYS_CS4_CTRL))
66 	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);
69 #endif
70 #if (defined(CONFIG_SYS_CS5_BASE) && defined(CONFIG_SYS_CS5_MASK) \
71      && defined(CONFIG_SYS_CS5_CTRL))
72 	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);
75 #endif
76 #if (defined(CONFIG_SYS_CS6_BASE) && defined(CONFIG_SYS_CS6_MASK) \
77      && defined(CONFIG_SYS_CS6_CTRL))
78 	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);
81 #endif
82 #if (defined(CONFIG_SYS_CS7_BASE) && defined(CONFIG_SYS_CS7_MASK) \
83      && defined(CONFIG_SYS_CS7_CTRL))
84 	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);
87 #endif
88 }
89 #endif
90 
91 #if defined(CONFIG_M5208)
92 void cpu_init_f(void)
93 {
94 	scm1_t *scm1 = (scm1_t *) MMAP_SCM1;
95 
96 #ifndef CONFIG_WATCHDOG
97 	wdog_t *wdg = (wdog_t *) MMAP_WDOG;
98 
99 	/* Disable the watchdog if we aren't using it */
100 	out_be16(&wdg->cr, 0);
101 #endif
102 
103 	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);
110 
111 	/* FlexBus Chipselect */
112 	init_fbcs();
113 
114 	icache_enable();
115 }
116 
117 /* initialize higher level parts of CPU like timers */
118 int cpu_init_r(void)
119 {
120 	return (0);
121 }
122 
123 void uart_port_conf(int port)
124 {
125 	gpio_t *gpio = (gpio_t *) MMAP_GPIO;
126 
127 	/* Setup Ports: */
128 	switch (port) {
129 	case 0:
130 		clrbits_be16(&gpio->par_uart, ~GPIO_PAR_UART0_UNMASK);
131 		setbits_be16(&gpio->par_uart, GPIO_PAR_UART_U0TXD | GPIO_PAR_UART_U0RXD);
132 		break;
133 	case 1:
134 		clrbits_be16(&gpio->par_uart, ~GPIO_PAR_UART0_UNMASK);
135 		setbits_be16(&gpio->par_uart, GPIO_PAR_UART_U1TXD | GPIO_PAR_UART_U1RXD);
136 		break;
137 	case 2:
138 #ifdef CONFIG_SYS_UART2_PRI_GPIO
139 		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);
143 #endif
144 #ifdef CONFIG_SYS_UART2_ALT1_GPIO
145 		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);
149 #endif
150 #ifdef CONFIG_SYS_UART2_ALT1_GPIO
151 		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);
155 #endif
156 		break;
157 	}
158 }
159 
160 #if defined(CONFIG_CMD_NET)
161 int fecpin_setclear(struct eth_device *dev, int setclear)
162 {
163 	gpio_t *gpio = (gpio_t *) MMAP_GPIO;
164 
165 	if (setclear) {
166 		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);
170 	} else {
171 		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);
174 	}
175 	return 0;
176 }
177 #endif				/* CONFIG_CMD_NET */
178 #endif				/* CONFIG_M5208 */
179 
180 #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  */
188 void 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 
210 	/*mbar2_writeLong(MCFSIM_IDECONFIG1, 0x00000020); */ /* Enable a 1 cycle pre-drive cycle on CS1 */
211 
212 	/* FlexBus Chipselect */
213 	init_fbcs();
214 
215 #ifdef CONFIG_SYS_I2C_FSL
216 	CONFIG_SYS_I2C_PINMUX_REG =
217 	    CONFIG_SYS_I2C_PINMUX_REG & CONFIG_SYS_I2C_PINMUX_CLR;
218 	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;
222 #endif
223 #endif
224 
225 	/* enable instruction cache now */
226 	icache_enable();
227 }
228 
229 /*initialize higher level parts of CPU like timers */
230 int cpu_init_r(void)
231 {
232 	return (0);
233 }
234 
235 void uart_port_conf(int port)
236 {
237 	u32 *par = (u32 *) MMAP_PAR;
238 
239 	/* Setup Ports: */
240 	switch (port) {
241 	case 1:
242 		clrbits_be32(par, 0x00180000);
243 		setbits_be32(par, 0x00180000);
244 		break;
245 	case 2:
246 		clrbits_be32(par, 0x00000003);
247 		clrbits_be32(par, 0xFFFFFFFC);
248 		break;
249 	}
250 }
251 #endif				/* #if defined(CONFIG_M5253) */
252 
253 #if defined(CONFIG_M5271)
254 void cpu_init_f(void)
255 {
256 #ifndef CONFIG_WATCHDOG
257 	/* Disable the watchdog if we aren't using it */
258 	mbar_writeShort(MCF_WTM_WCR, 0);
259 #endif
260 
261 	/* FlexBus Chipselect */
262 	init_fbcs();
263 
264 #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
268 	/* Set clockspeed to 100MHz */
269 	mbar_writeLong(MCF_FMPLL_SYNCR,
270 			MCF_FMPLL_SYNCR_MFD(0) | MCF_FMPLL_SYNCR_RFD(0));
271 #endif
272 	while (!(mbar_readByte(MCF_FMPLL_SYNSR) & MCF_FMPLL_SYNSR_LOCK)) ;
273 }
274 
275 /*
276  * initialize higher level parts of CPU like timers
277  */
278 int cpu_init_r(void)
279 {
280 	return (0);
281 }
282 
283 void uart_port_conf(int port)
284 {
285 	u16 temp;
286 
287 	/* Setup Ports: */
288 	switch (port) {
289 	case 0:
290 		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);
293 		break;
294 	case 1:
295 		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);
298 		break;
299 	case 2:
300 		temp = mbar_readShort(MCF_GPIO_PAR_UART) & 0xCFFF;
301 		temp |= (0x3000);
302 		mbar_writeShort(MCF_GPIO_PAR_UART, temp);
303 		break;
304 	}
305 }
306 
307 #if defined(CONFIG_CMD_NET)
308 int fecpin_setclear(struct eth_device *dev, int setclear)
309 {
310 	if (setclear) {
311 		/* Enable Ethernet pins */
312 		mbar_writeByte(MCF_GPIO_PAR_FECI2C,
313 			       (mbar_readByte(MCF_GPIO_PAR_FECI2C) | 0xF0));
314 	} else {
315 	}
316 
317 	return 0;
318 }
319 #endif				/* CONFIG_CMD_NET */
320 
321 #endif				/* CONFIG_M5271 */
322 
323 #if defined(CONFIG_M5272)
324 /*
325  * Breath some life into the CPU...
326  *
327  * Set up the memory map,
328  * initialize a bunch of registers,
329  * initialize the UPM's
330  */
331 void cpu_init_f(void)
332 {
333 	/* if we come from RAM we assume the CPU is
334 	 * already initialized.
335 	 */
336 #ifndef CONFIG_MONITOR_IS_IN_RAM
337 	sysctrl_t *sysctrl = (sysctrl_t *) (CONFIG_SYS_MBAR);
338 	gpio_t *gpio = (gpio_t *) (MMAP_GPIO);
339 	csctrl_t *csctrl = (csctrl_t *) (MMAP_FBCS);
340 
341 	out_be16(&sysctrl->sc_scr, CONFIG_SYS_SCR);
342 	out_be16(&sysctrl->sc_spr, CONFIG_SYS_SPR);
343 
344 	/* Setup Ports: */
345 	out_be32(&gpio->gpio_pacnt, CONFIG_SYS_PACNT);
346 	out_be16(&gpio->gpio_paddr, CONFIG_SYS_PADDR);
347 	out_be16(&gpio->gpio_padat, CONFIG_SYS_PADAT);
348 	out_be32(&gpio->gpio_pbcnt, CONFIG_SYS_PBCNT);
349 	out_be16(&gpio->gpio_pbddr, CONFIG_SYS_PBDDR);
350 	out_be16(&gpio->gpio_pbdat, CONFIG_SYS_PBDAT);
351 	out_be32(&gpio->gpio_pdcnt, CONFIG_SYS_PDCNT);
352 
353 	/* Memory Controller: */
354 	out_be32(&csctrl->cs_br0, CONFIG_SYS_BR0_PRELIM);
355 	out_be32(&csctrl->cs_or0, CONFIG_SYS_OR0_PRELIM);
356 
357 #if (defined(CONFIG_SYS_OR1_PRELIM) && defined(CONFIG_SYS_BR1_PRELIM))
358 	out_be32(&csctrl->cs_br1, CONFIG_SYS_BR1_PRELIM);
359 	out_be32(&csctrl->cs_or1, CONFIG_SYS_OR1_PRELIM);
360 #endif
361 
362 #if defined(CONFIG_SYS_OR2_PRELIM) && defined(CONFIG_SYS_BR2_PRELIM)
363 	out_be32(&csctrl->cs_br2, CONFIG_SYS_BR2_PRELIM);
364 	out_be32(&csctrl->cs_or2, CONFIG_SYS_OR2_PRELIM);
365 #endif
366 
367 #if defined(CONFIG_SYS_OR3_PRELIM) && defined(CONFIG_SYS_BR3_PRELIM)
368 	out_be32(&csctrl->cs_br3, CONFIG_SYS_BR3_PRELIM);
369 	out_be32(&csctrl->cs_or3, CONFIG_SYS_OR3_PRELIM);
370 #endif
371 
372 #if defined(CONFIG_SYS_OR4_PRELIM) && defined(CONFIG_SYS_BR4_PRELIM)
373 	out_be32(&csctrl->cs_br4, CONFIG_SYS_BR4_PRELIM);
374 	out_be32(&csctrl->cs_or4, CONFIG_SYS_OR4_PRELIM);
375 #endif
376 
377 #if defined(CONFIG_SYS_OR5_PRELIM) && defined(CONFIG_SYS_BR5_PRELIM)
378 	out_be32(&csctrl->cs_br5, CONFIG_SYS_BR5_PRELIM);
379 	out_be32(&csctrl->cs_or5, CONFIG_SYS_OR5_PRELIM);
380 #endif
381 
382 #if defined(CONFIG_SYS_OR6_PRELIM) && defined(CONFIG_SYS_BR6_PRELIM)
383 	out_be32(&csctrl->cs_br6, CONFIG_SYS_BR6_PRELIM);
384 	out_be32(&csctrl->cs_or6, CONFIG_SYS_OR6_PRELIM);
385 #endif
386 
387 #if defined(CONFIG_SYS_OR7_PRELIM) && defined(CONFIG_SYS_BR7_PRELIM)
388 	out_be32(&csctrl->cs_br7, CONFIG_SYS_BR7_PRELIM);
389 	out_be32(&csctrl->cs_or7, CONFIG_SYS_OR7_PRELIM);
390 #endif
391 
392 #endif				/* #ifndef CONFIG_MONITOR_IS_IN_RAM */
393 
394 	/* enable instruction cache now */
395 	icache_enable();
396 
397 }
398 
399 /*
400  * initialize higher level parts of CPU like timers
401  */
402 int cpu_init_r(void)
403 {
404 	return (0);
405 }
406 
407 void uart_port_conf(int port)
408 {
409 	gpio_t *gpio = (gpio_t *) MMAP_GPIO;
410 
411 	/* Setup Ports: */
412 	switch (port) {
413 	case 0:
414 		clrbits_be32(&gpio->gpio_pbcnt,
415 			GPIO_PBCNT_PB0MSK | GPIO_PBCNT_PB1MSK);
416 		setbits_be32(&gpio->gpio_pbcnt,
417 			GPIO_PBCNT_URT0_TXD | GPIO_PBCNT_URT0_RXD);
418 		break;
419 	case 1:
420 		clrbits_be32(&gpio->gpio_pdcnt,
421 			GPIO_PDCNT_PD1MSK | GPIO_PDCNT_PD4MSK);
422 		setbits_be32(&gpio->gpio_pdcnt,
423 			GPIO_PDCNT_URT1_RXD | GPIO_PDCNT_URT1_TXD);
424 		break;
425 	}
426 }
427 
428 #if defined(CONFIG_CMD_NET)
429 int fecpin_setclear(struct eth_device *dev, int setclear)
430 {
431 	gpio_t *gpio = (gpio_t *) MMAP_GPIO;
432 
433 	if (setclear) {
434 		setbits_be32(&gpio->gpio_pbcnt,
435 			GPIO_PBCNT_E_MDC | GPIO_PBCNT_E_RXER |
436 			GPIO_PBCNT_E_RXD1 | GPIO_PBCNT_E_RXD2 |
437 			GPIO_PBCNT_E_RXD3 | GPIO_PBCNT_E_TXD1 |
438 			GPIO_PBCNT_E_TXD2 | GPIO_PBCNT_E_TXD3);
439 	} else {
440 	}
441 	return 0;
442 }
443 #endif				/* CONFIG_CMD_NET */
444 #endif				/* #if defined(CONFIG_M5272) */
445 
446 #if defined(CONFIG_M5275)
447 
448 /*
449  * Breathe some life into the CPU...
450  *
451  * Set up the memory map,
452  * initialize a bunch of registers,
453  * initialize the UPM's
454  */
455 void cpu_init_f(void)
456 {
457 	/*
458 	 * if we come from RAM we assume the CPU is
459 	 * already initialized.
460 	 */
461 
462 #ifndef CONFIG_MONITOR_IS_IN_RAM
463 	wdog_t *wdog_reg = (wdog_t *) (MMAP_WDOG);
464 	gpio_t *gpio_reg = (gpio_t *) (MMAP_GPIO);
465 
466 	/* Kill watchdog so we can initialize the PLL */
467 	out_be16(&wdog_reg->wcr, 0);
468 
469 	/* FlexBus Chipselect */
470 	init_fbcs();
471 #endif				/* #ifndef CONFIG_MONITOR_IS_IN_RAM */
472 
473 #ifdef CONFIG_SYS_I2C_FSL
474 	CONFIG_SYS_I2C_PINMUX_REG &= CONFIG_SYS_I2C_PINMUX_CLR;
475 	CONFIG_SYS_I2C_PINMUX_REG |= CONFIG_SYS_I2C_PINMUX_SET;
476 #endif
477 
478 	/* enable instruction cache now */
479 	icache_enable();
480 }
481 
482 /*
483  * initialize higher level parts of CPU like timers
484  */
485 int cpu_init_r(void)
486 {
487 	return (0);
488 }
489 
490 void uart_port_conf(int port)
491 {
492 	gpio_t *gpio = (gpio_t *) MMAP_GPIO;
493 
494 	/* Setup Ports: */
495 	switch (port) {
496 	case 0:
497 		clrbits_be16(&gpio->par_uart, UART0_ENABLE_MASK);
498 		setbits_be16(&gpio->par_uart, UART0_ENABLE_MASK);
499 		break;
500 	case 1:
501 		clrbits_be16(&gpio->par_uart, UART1_ENABLE_MASK);
502 		setbits_be16(&gpio->par_uart, UART1_ENABLE_MASK);
503 		break;
504 	case 2:
505 		clrbits_be16(&gpio->par_uart, UART2_ENABLE_MASK);
506 		setbits_be16(&gpio->par_uart, UART2_ENABLE_MASK);
507 		break;
508 	}
509 }
510 
511 #if defined(CONFIG_CMD_NET)
512 int fecpin_setclear(struct eth_device *dev, int setclear)
513 {
514 	struct fec_info_s *info = (struct fec_info_s *) dev->priv;
515 	gpio_t *gpio = (gpio_t *)MMAP_GPIO;
516 
517 	if (setclear) {
518 		/* Enable Ethernet pins */
519 		if (info->iobase == CONFIG_SYS_FEC0_IOBASE) {
520 			setbits_be16(&gpio->par_feci2c, 0x0f00);
521 			setbits_8(&gpio->par_fec0hl, 0xc0);
522 		} else {
523 			setbits_be16(&gpio->par_feci2c, 0x00a0);
524 			setbits_8(&gpio->par_fec1hl, 0xc0);
525 		}
526 	} else {
527 		if (info->iobase == CONFIG_SYS_FEC0_IOBASE) {
528 			clrbits_be16(&gpio->par_feci2c, 0x0f00);
529 			clrbits_8(&gpio->par_fec0hl, 0xc0);
530 		} else {
531 			clrbits_be16(&gpio->par_feci2c, 0x00a0);
532 			clrbits_8(&gpio->par_fec1hl, 0xc0);
533 		}
534 	}
535 
536 	return 0;
537 }
538 #endif				/* CONFIG_CMD_NET */
539 #endif				/* #if defined(CONFIG_M5275) */
540 
541 #if defined(CONFIG_M5282)
542 /*
543  * Breath some life into the CPU...
544  *
545  * Set up the memory map,
546  * initialize a bunch of registers,
547  * initialize the UPM's
548  */
549 void cpu_init_f(void)
550 {
551 #ifndef CONFIG_WATCHDOG
552 	/* disable watchdog if we aren't using it */
553 	MCFWTM_WCR = 0;
554 #endif
555 
556 #ifndef CONFIG_MONITOR_IS_IN_RAM
557 	/* Set speed /PLL */
558 	MCFCLOCK_SYNCR =
559 	    MCFCLOCK_SYNCR_MFD(CONFIG_SYS_MFD) |
560 	    MCFCLOCK_SYNCR_RFD(CONFIG_SYS_RFD);
561 	while (!(MCFCLOCK_SYNSR & MCFCLOCK_SYNSR_LOCK)) ;
562 
563 	MCFGPIO_PBCDPAR = 0xc0;
564 
565 	/* Set up the GPIO ports */
566 #ifdef CONFIG_SYS_PEPAR
567 	MCFGPIO_PEPAR = CONFIG_SYS_PEPAR;
568 #endif
569 #ifdef	CONFIG_SYS_PFPAR
570 	MCFGPIO_PFPAR = CONFIG_SYS_PFPAR;
571 #endif
572 #ifdef CONFIG_SYS_PJPAR
573 	MCFGPIO_PJPAR = CONFIG_SYS_PJPAR;
574 #endif
575 #ifdef CONFIG_SYS_PSDPAR
576 	MCFGPIO_PSDPAR = CONFIG_SYS_PSDPAR;
577 #endif
578 #ifdef CONFIG_SYS_PASPAR
579 	MCFGPIO_PASPAR = CONFIG_SYS_PASPAR;
580 #endif
581 #ifdef CONFIG_SYS_PEHLPAR
582 	MCFGPIO_PEHLPAR = CONFIG_SYS_PEHLPAR;
583 #endif
584 #ifdef CONFIG_SYS_PQSPAR
585 	MCFGPIO_PQSPAR = CONFIG_SYS_PQSPAR;
586 #endif
587 #ifdef CONFIG_SYS_PTCPAR
588 	MCFGPIO_PTCPAR = CONFIG_SYS_PTCPAR;
589 #endif
590 #if defined(CONFIG_SYS_PORTTC)
591 	MCFGPIO_PORTTC = CONFIG_SYS_PORTTC;
592 #endif
593 #if defined(CONFIG_SYS_DDRTC)
594 	MCFGPIO_DDRTC  = CONFIG_SYS_DDRTC;
595 #endif
596 #ifdef CONFIG_SYS_PTDPAR
597 	MCFGPIO_PTDPAR = CONFIG_SYS_PTDPAR;
598 #endif
599 #ifdef CONFIG_SYS_PUAPAR
600 	MCFGPIO_PUAPAR = CONFIG_SYS_PUAPAR;
601 #endif
602 
603 #if defined(CONFIG_SYS_DDRD)
604 	MCFGPIO_DDRD = CONFIG_SYS_DDRD;
605 #endif
606 #ifdef CONFIG_SYS_DDRUA
607 	MCFGPIO_DDRUA = CONFIG_SYS_DDRUA;
608 #endif
609 
610 	/* FlexBus Chipselect */
611 	init_fbcs();
612 
613 #endif				/* CONFIG_MONITOR_IS_IN_RAM */
614 
615 	/* defer enabling cache until boot (see do_go) */
616 	/* icache_enable(); */
617 }
618 
619 /*
620  * initialize higher level parts of CPU like timers
621  */
622 int cpu_init_r(void)
623 {
624 	return (0);
625 }
626 
627 void uart_port_conf(int port)
628 {
629 	/* Setup Ports: */
630 	switch (port) {
631 	case 0:
632 		MCFGPIO_PUAPAR &= 0xFc;
633 		MCFGPIO_PUAPAR |= 0x03;
634 		break;
635 	case 1:
636 		MCFGPIO_PUAPAR &= 0xF3;
637 		MCFGPIO_PUAPAR |= 0x0C;
638 		break;
639 	case 2:
640 		MCFGPIO_PASPAR &= 0xFF0F;
641 		MCFGPIO_PASPAR |= 0x00A0;
642 		break;
643 	}
644 }
645 
646 #if defined(CONFIG_CMD_NET)
647 int fecpin_setclear(struct eth_device *dev, int setclear)
648 {
649 	if (setclear) {
650 		MCFGPIO_PASPAR |= 0x0F00;
651 		MCFGPIO_PEHLPAR = CONFIG_SYS_PEHLPAR;
652 	} else {
653 		MCFGPIO_PASPAR &= 0xF0FF;
654 		MCFGPIO_PEHLPAR &= ~CONFIG_SYS_PEHLPAR;
655 	}
656 	return 0;
657 }
658 #endif			/* CONFIG_CMD_NET */
659 #endif
660 
661 #if defined(CONFIG_M5249)
662 /*
663  * Breath some life into the CPU...
664  *
665  * Set up the memory map,
666  * initialize a bunch of registers,
667  * initialize the UPM's
668  */
669 void cpu_init_f(void)
670 {
671 	/*
672 	 *  NOTE: by setting the GPIO_FUNCTION registers, we ensure that the UART pins
673 	 *        (UART0: gpio 30,27, UART1: gpio 31, 28) will be used as UART pins
674 	 *        which is their primary function.
675 	 *        ~Jeremy
676 	 */
677 	mbar2_writeLong(MCFSIM_GPIO_FUNC, CONFIG_SYS_GPIO_FUNC);
678 	mbar2_writeLong(MCFSIM_GPIO1_FUNC, CONFIG_SYS_GPIO1_FUNC);
679 	mbar2_writeLong(MCFSIM_GPIO_EN, CONFIG_SYS_GPIO_EN);
680 	mbar2_writeLong(MCFSIM_GPIO1_EN, CONFIG_SYS_GPIO1_EN);
681 	mbar2_writeLong(MCFSIM_GPIO_OUT, CONFIG_SYS_GPIO_OUT);
682 	mbar2_writeLong(MCFSIM_GPIO1_OUT, CONFIG_SYS_GPIO1_OUT);
683 
684 	/*
685 	 *  dBug Compliance:
686 	 *    You can verify these values by using dBug's 'ird'
687 	 *    (Internal Register Display) command
688 	 *    ~Jeremy
689 	 *
690 	 */
691 	mbar_writeByte(MCFSIM_MPARK, 0x30);	/* 5249 Internal Core takes priority over DMA */
692 	mbar_writeByte(MCFSIM_SYPCR, 0x00);
693 	mbar_writeByte(MCFSIM_SWIVR, 0x0f);
694 	mbar_writeByte(MCFSIM_SWSR, 0x00);
695 	mbar_writeLong(MCFSIM_IMR, 0xfffffbff);
696 	mbar_writeByte(MCFSIM_SWDICR, 0x00);
697 	mbar_writeByte(MCFSIM_TIMER1ICR, 0x00);
698 	mbar_writeByte(MCFSIM_TIMER2ICR, 0x88);
699 	mbar_writeByte(MCFSIM_I2CICR, 0x00);
700 	mbar_writeByte(MCFSIM_UART1ICR, 0x00);
701 	mbar_writeByte(MCFSIM_UART2ICR, 0x00);
702 	mbar_writeByte(MCFSIM_ICR6, 0x00);
703 	mbar_writeByte(MCFSIM_ICR7, 0x00);
704 	mbar_writeByte(MCFSIM_ICR8, 0x00);
705 	mbar_writeByte(MCFSIM_ICR9, 0x00);
706 	mbar_writeByte(MCFSIM_QSPIICR, 0x00);
707 
708 	mbar2_writeLong(MCFSIM_GPIO_INT_EN, 0x00000080);
709 	mbar2_writeByte(MCFSIM_INTBASE, 0x40);	/* Base interrupts at 64 */
710 	mbar2_writeByte(MCFSIM_SPURVEC, 0x00);
711 	mbar2_writeLong(MCFSIM_IDECONFIG1, 0x00000020);	/* Enable a 1 cycle pre-drive cycle on CS1 */
712 
713 	/* Setup interrupt priorities for gpio7 */
714 	/* mbar2_writeLong(MCFSIM_INTLEV5, 0x70000000); */
715 
716 	/* IDE Config registers */
717 	mbar2_writeLong(MCFSIM_IDECONFIG1, 0x00000020);
718 	mbar2_writeLong(MCFSIM_IDECONFIG2, 0x00000000);
719 
720 	/* FlexBus Chipselect */
721 	init_fbcs();
722 
723 	/* enable instruction cache now */
724 	icache_enable();
725 }
726 
727 /*
728  * initialize higher level parts of CPU like timers
729  */
730 int cpu_init_r(void)
731 {
732 	return (0);
733 }
734 
735 void uart_port_conf(int port)
736 {
737 }
738 #endif				/* #if defined(CONFIG_M5249) */
739