1 /***************************************************************************/
4 * linux/arch/m68knommu/platform/527x/config.c
6 * Sub-architcture dependant initialization code for the Freescale
9 * Copyright (C) 1999-2004, Greg Ungerer (gerg@snapgear.com)
10 * Copyright (C) 2001-2004, SnapGear Inc. (www.snapgear.com)
13 /***************************************************************************/
15 #include <linux/kernel.h>
16 #include <linux/param.h>
17 #include <linux/init.h>
19 #include <asm/machdep.h>
20 #include <asm/coldfire.h>
21 #include <asm/mcfsim.h>
22 #include <asm/mcfuart.h>
24 /***************************************************************************/
26 static struct mcf_platform_uart m527x_uart_platform
[] = {
28 .mapbase
= MCF_MBAR
+ MCFUART_BASE1
,
29 .irq
= MCFINT_VECBASE
+ MCFINT_UART0
,
32 .mapbase
= MCF_MBAR
+ MCFUART_BASE2
,
33 .irq
= MCFINT_VECBASE
+ MCFINT_UART1
,
36 .mapbase
= MCF_MBAR
+ MCFUART_BASE3
,
37 .irq
= MCFINT_VECBASE
+ MCFINT_UART2
,
42 static struct platform_device m527x_uart
= {
45 .dev
.platform_data
= m527x_uart_platform
,
48 static struct resource m527x_fec0_resources
[] = {
50 .start
= MCF_MBAR
+ 0x1000,
51 .end
= MCF_MBAR
+ 0x1000 + 0x7ff,
52 .flags
= IORESOURCE_MEM
,
57 .flags
= IORESOURCE_IRQ
,
62 .flags
= IORESOURCE_IRQ
,
67 .flags
= IORESOURCE_IRQ
,
71 static struct resource m527x_fec1_resources
[] = {
73 .start
= MCF_MBAR
+ 0x1800,
74 .end
= MCF_MBAR
+ 0x1800 + 0x7ff,
75 .flags
= IORESOURCE_MEM
,
80 .flags
= IORESOURCE_IRQ
,
85 .flags
= IORESOURCE_IRQ
,
90 .flags
= IORESOURCE_IRQ
,
94 static struct platform_device m527x_fec
[] = {
98 .num_resources
= ARRAY_SIZE(m527x_fec0_resources
),
99 .resource
= m527x_fec0_resources
,
104 .num_resources
= ARRAY_SIZE(m527x_fec1_resources
),
105 .resource
= m527x_fec1_resources
,
109 static struct platform_device
*m527x_devices
[] __initdata
= {
117 /***************************************************************************/
119 static void __init
m527x_uart_init_line(int line
, int irq
)
123 if ((line
< 0) || (line
> 2))
127 * External Pin Mask Setting & Enable External Pin for Interface
129 sepmask
= readw(MCF_IPSBAR
+ MCF_GPIO_PAR_UART
);
131 sepmask
|= UART0_ENABLE_MASK
;
133 sepmask
|= UART1_ENABLE_MASK
;
135 sepmask
|= UART2_ENABLE_MASK
;
136 writew(sepmask
, MCF_IPSBAR
+ MCF_GPIO_PAR_UART
);
139 static void __init
m527x_uarts_init(void)
141 const int nrlines
= ARRAY_SIZE(m527x_uart_platform
);
144 for (line
= 0; (line
< nrlines
); line
++)
145 m527x_uart_init_line(line
, m527x_uart_platform
[line
].irq
);
148 /***************************************************************************/
150 static void __init
m527x_fec_init(void)
155 /* Set multi-function pins to ethernet mode for fec0 */
156 #if defined(CONFIG_M5271)
157 v
= readb(MCF_IPSBAR
+ 0x100047);
158 writeb(v
| 0xf0, MCF_IPSBAR
+ 0x100047);
160 par
= readw(MCF_IPSBAR
+ 0x100082);
161 writew(par
| 0xf00, MCF_IPSBAR
+ 0x100082);
162 v
= readb(MCF_IPSBAR
+ 0x100078);
163 writeb(v
| 0xc0, MCF_IPSBAR
+ 0x100078);
167 /* Set multi-function pins to ethernet mode for fec1 */
168 par
= readw(MCF_IPSBAR
+ 0x100082);
169 writew(par
| 0xa0, MCF_IPSBAR
+ 0x100082);
170 v
= readb(MCF_IPSBAR
+ 0x100079);
171 writeb(v
| 0xc0, MCF_IPSBAR
+ 0x100079);
175 /***************************************************************************/
177 static void m527x_cpu_reset(void)
180 __raw_writeb(MCF_RCR_SWRESET
, MCF_IPSBAR
+ MCF_RCR
);
183 /***************************************************************************/
185 void __init
config_BSP(char *commandp
, int size
)
187 mach_reset
= m527x_cpu_reset
;
192 /***************************************************************************/
194 static int __init
init_BSP(void)
196 platform_add_devices(m527x_devices
, ARRAY_SIZE(m527x_devices
));
200 arch_initcall(init_BSP
);
202 /***************************************************************************/