2 * Renesas Technology Sales RTS7751R2D Support.
4 * Copyright (C) 2002 - 2006 Atom Create Engineering Co., Ltd.
5 * Copyright (C) 2004 - 2007 Paul Mundt
7 * This file is subject to the terms and conditions of the GNU General Public
8 * License. See the file "COPYING" in the main directory of this archive
11 #include <linux/init.h>
12 #include <linux/platform_device.h>
13 #include <linux/pata_platform.h>
14 #include <linux/serial_8250.h>
15 #include <linux/sm501.h>
17 #include <asm/machvec.h>
18 #include <asm/rts7751r2d.h>
19 #include <asm/voyagergx.h>
22 static void __init
voyagergx_serial_init(void)
29 val
= readl((void __iomem
*)GPIO_MUX_HIGH
);
31 writel(val
, (void __iomem
*)GPIO_MUX_HIGH
);
36 val
= readl((void __iomem
*)POWER_MODE0_GATE
);
37 val
|= (POWER_MODE0_GATE_U0
| POWER_MODE0_GATE_U1
);
38 writel(val
, (void __iomem
*)POWER_MODE0_GATE
);
40 val
= readl((void __iomem
*)POWER_MODE1_GATE
);
41 val
|= (POWER_MODE1_GATE_U0
| POWER_MODE1_GATE_U1
);
42 writel(val
, (void __iomem
*)POWER_MODE1_GATE
);
45 static struct resource cf_ide_resources
[] = {
47 .start
= PA_AREA5_IO
+ 0x1000,
48 .end
= PA_AREA5_IO
+ 0x1000 + 0x10 - 0x2,
49 .flags
= IORESOURCE_MEM
,
52 .start
= PA_AREA5_IO
+ 0x80c,
53 .end
= PA_AREA5_IO
+ 0x80c,
54 .flags
= IORESOURCE_MEM
,
58 .flags
= IORESOURCE_IRQ
,
62 static struct pata_platform_info pata_info
= {
66 static struct platform_device cf_ide_device
= {
67 .name
= "pata_platform",
69 .num_resources
= ARRAY_SIZE(cf_ide_resources
),
70 .resource
= cf_ide_resources
,
72 .platform_data
= &pata_info
,
76 static struct resource heartbeat_resources
[] = {
80 .flags
= IORESOURCE_MEM
,
84 static struct platform_device heartbeat_device
= {
87 .num_resources
= ARRAY_SIZE(heartbeat_resources
),
88 .resource
= heartbeat_resources
,
91 #ifdef CONFIG_MFD_SM501
92 static struct plat_serial8250_port uart_platform_data
[] = {
94 .membase
= (void __iomem
*)VOYAGER_UART_BASE
,
95 .mapbase
= VOYAGER_UART_BASE
,
98 .flags
= UPF_BOOT_AUTOCONF
| UPF_SKIP_TEST
,
100 .uartclk
= (9600 * 16),
105 static struct platform_device uart_device
= {
106 .name
= "serial8250",
107 .id
= PLAT8250_DEV_PLATFORM
,
109 .platform_data
= uart_platform_data
,
113 static struct resource sm501_resources
[] = {
116 .end
= 0x13e00000 - 1,
117 .flags
= IORESOURCE_MEM
,
122 .flags
= IORESOURCE_MEM
,
125 .start
= IRQ_SM501_CV
,
126 .flags
= IORESOURCE_IRQ
,
130 static struct platform_device sm501_device
= {
133 .num_resources
= ARRAY_SIZE(sm501_resources
),
134 .resource
= sm501_resources
,
137 #endif /* CONFIG_MFD_SM501 */
139 static struct platform_device
*rts7751r2d_devices
[] __initdata
= {
140 #ifdef CONFIG_MFD_SM501
148 static int __init
rts7751r2d_devices_setup(void)
150 return platform_add_devices(rts7751r2d_devices
,
151 ARRAY_SIZE(rts7751r2d_devices
));
153 __initcall(rts7751r2d_devices_setup
);
155 static void rts7751r2d_power_off(void)
157 ctrl_outw(0x0001, PA_POWOFF
);
160 static inline unsigned char is_ide_ioaddr(unsigned long addr
)
162 return ((cf_ide_resources
[0].start
<= addr
&&
163 addr
<= cf_ide_resources
[0].end
) ||
164 (cf_ide_resources
[1].start
<= addr
&&
165 addr
<= cf_ide_resources
[1].end
));
168 void rts7751r2d_writeb(u8 b
, void __iomem
*addr
)
170 unsigned long tmp
= (unsigned long __force
)addr
;
172 if (is_ide_ioaddr(tmp
))
173 ctrl_outw((u16
)b
, tmp
);
178 u8
rts7751r2d_readb(void __iomem
*addr
)
180 unsigned long tmp
= (unsigned long __force
)addr
;
182 if (is_ide_ioaddr(tmp
))
183 return ctrl_inw(tmp
) & 0xff;
185 return ctrl_inb(tmp
);
189 * Initialize the board
191 static void __init
rts7751r2d_setup(char **cmdline_p
)
193 u16 ver
= ctrl_inw(PA_VERREG
);
195 printk(KERN_INFO
"Renesas Technology Sales RTS7751R2D support.\n");
197 printk(KERN_INFO
"FPGA version:%d (revision:%d)\n",
198 (ver
>> 4) & 0xf, ver
& 0xf);
200 ctrl_outw(0x0000, PA_OUTPORT
);
201 pm_power_off
= rts7751r2d_power_off
;
203 voyagergx_serial_init();
209 static struct sh_machine_vector mv_rts7751r2d __initmv
= {
210 .mv_name
= "RTS7751R2D",
211 .mv_setup
= rts7751r2d_setup
,
212 .mv_init_irq
= init_rts7751r2d_IRQ
,
213 .mv_irq_demux
= rts7751r2d_irq_demux
,
214 .mv_writeb
= rts7751r2d_writeb
,
215 .mv_readb
= rts7751r2d_readb
,
216 #if defined(CONFIG_MFD_SM501) && defined(CONFIG_USB_OHCI_HCD)
217 .mv_consistent_alloc
= voyagergx_consistent_alloc
,
218 .mv_consistent_free
= voyagergx_consistent_free
,