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/ata_platform.h>
14 #include <linux/serial_8250.h>
15 #include <linux/sm501.h>
16 #include <linux/sm501-regs.h>
19 #include <linux/spi/spi.h>
20 #include <linux/spi/spi_bitbang.h>
21 #include <asm/machvec.h>
22 #include <asm/rts7751r2d.h>
24 #include <asm/io_trapped.h>
27 static struct resource cf_ide_resources
[] = {
29 .start
= PA_AREA5_IO
+ 0x1000,
30 .end
= PA_AREA5_IO
+ 0x1000 + 0x10 - 0x2,
31 .flags
= IORESOURCE_MEM
,
34 .start
= PA_AREA5_IO
+ 0x80c,
35 .end
= PA_AREA5_IO
+ 0x80c,
36 .flags
= IORESOURCE_MEM
,
38 #ifndef CONFIG_RTS7751R2D_1 /* For R2D-1 polling is preferred */
41 .flags
= IORESOURCE_IRQ
,
46 static struct pata_platform_info pata_info
= {
50 static struct platform_device cf_ide_device
= {
51 .name
= "pata_platform",
53 .num_resources
= ARRAY_SIZE(cf_ide_resources
),
54 .resource
= cf_ide_resources
,
56 .platform_data
= &pata_info
,
60 static struct spi_board_info spi_bus
[] = {
62 .modalias
= "rtc-r9701",
63 .max_speed_hz
= 1000000,
68 static void r2d_chip_select(struct sh_spi_info
*spi
, int cs
, int state
)
70 BUG_ON(cs
!= 0); /* Single Epson RTC-9701JE attached on CS0 */
71 ctrl_outw(state
== BITBANG_CS_ACTIVE
, PA_RTCCE
);
74 static struct sh_spi_info spi_info
= {
76 .chip_select
= r2d_chip_select
,
79 static struct resource spi_sh_sci_resources
[] = {
83 .flags
= IORESOURCE_MEM
,
87 static struct platform_device spi_sh_sci_device
= {
90 .num_resources
= ARRAY_SIZE(spi_sh_sci_resources
),
91 .resource
= spi_sh_sci_resources
,
93 .platform_data
= &spi_info
,
97 static struct resource heartbeat_resources
[] = {
101 .flags
= IORESOURCE_MEM
,
105 static struct platform_device heartbeat_device
= {
108 .num_resources
= ARRAY_SIZE(heartbeat_resources
),
109 .resource
= heartbeat_resources
,
112 #ifdef CONFIG_MFD_SM501
113 static struct plat_serial8250_port uart_platform_data
[] = {
115 .membase
= (void __iomem
*)0xb3e30000,
116 .mapbase
= 0xb3e30000,
119 .flags
= UPF_BOOT_AUTOCONF
| UPF_SHARE_IRQ
,
121 .uartclk
= (9600 * 16),
126 static struct platform_device uart_device
= {
127 .name
= "serial8250",
128 .id
= PLAT8250_DEV_PLATFORM
,
130 .platform_data
= uart_platform_data
,
134 static struct resource sm501_resources
[] = {
137 .end
= 0x13e00000 - 1,
138 .flags
= IORESOURCE_MEM
,
143 .flags
= IORESOURCE_MEM
,
146 .start
= IRQ_VOYAGER
,
147 .flags
= IORESOURCE_IRQ
,
151 static struct fb_videomode sm501_default_mode
= {
161 .sync
= FB_SYNC_HOR_HIGH_ACT
| FB_SYNC_VERT_HIGH_ACT
,
164 static struct sm501_platdata_fbsub sm501_pdata_fbsub_pnl
= {
166 .def_mode
= &sm501_default_mode
,
167 .flags
= SM501FB_FLAG_USE_INIT_MODE
|
168 SM501FB_FLAG_USE_HWCURSOR
|
169 SM501FB_FLAG_USE_HWACCEL
|
170 SM501FB_FLAG_DISABLE_AT_EXIT
,
173 static struct sm501_platdata_fbsub sm501_pdata_fbsub_crt
= {
174 .flags
= (SM501FB_FLAG_USE_INIT_MODE
|
175 SM501FB_FLAG_USE_HWCURSOR
|
176 SM501FB_FLAG_USE_HWACCEL
|
177 SM501FB_FLAG_DISABLE_AT_EXIT
),
181 static struct sm501_platdata_fb sm501_fb_pdata
= {
182 .fb_route
= SM501_FB_OWN
,
183 .fb_crt
= &sm501_pdata_fbsub_crt
,
184 .fb_pnl
= &sm501_pdata_fbsub_pnl
,
185 .flags
= SM501_FBPD_SWAP_FB_ENDIAN
,
188 static struct sm501_initdata sm501_initdata
= {
193 .devices
= SM501_USE_USB_HOST
,
196 static struct sm501_platdata sm501_platform_data
= {
197 .init
= &sm501_initdata
,
198 .fb
= &sm501_fb_pdata
,
201 static struct platform_device sm501_device
= {
205 .platform_data
= &sm501_platform_data
,
207 .num_resources
= ARRAY_SIZE(sm501_resources
),
208 .resource
= sm501_resources
,
211 #endif /* CONFIG_MFD_SM501 */
213 static struct platform_device
*rts7751r2d_devices
[] __initdata
= {
214 #ifdef CONFIG_MFD_SM501
223 * The CF is connected with a 16-bit bus where 8-bit operations are
224 * unsupported. The linux ata driver is however using 8-bit operations, so
225 * insert a trapped io filter to convert 8-bit operations into 16-bit.
227 static struct trapped_io cf_trapped_io
= {
228 .resource
= cf_ide_resources
,
230 .minimum_bus_width
= 16,
233 static int __init
rts7751r2d_devices_setup(void)
235 if (register_trapped_io(&cf_trapped_io
) == 0)
236 platform_device_register(&cf_ide_device
);
237 spi_register_board_info(spi_bus
, ARRAY_SIZE(spi_bus
));
238 return platform_add_devices(rts7751r2d_devices
,
239 ARRAY_SIZE(rts7751r2d_devices
));
241 __initcall(rts7751r2d_devices_setup
);
243 static void rts7751r2d_power_off(void)
245 ctrl_outw(0x0001, PA_POWOFF
);
249 * Initialize the board
251 static void __init
rts7751r2d_setup(char **cmdline_p
)
253 void __iomem
*sm501_reg
;
254 u16 ver
= ctrl_inw(PA_VERREG
);
256 printk(KERN_INFO
"Renesas Technology Sales RTS7751R2D support.\n");
258 printk(KERN_INFO
"FPGA version:%d (revision:%d)\n",
259 (ver
>> 4) & 0xf, ver
& 0xf);
261 ctrl_outw(0x0000, PA_OUTPORT
);
262 pm_power_off
= rts7751r2d_power_off
;
264 /* sm501 dram configuration:
265 * ColSizeX = 11 - External Memory Column Size: 256 words.
266 * APX = 1 - External Memory Active to Pre-Charge Delay: 7 clocks.
267 * RstX = 1 - External Memory Reset: Normal.
268 * Rfsh = 1 - Local Memory Refresh to Command Delay: 12 clocks.
269 * BwC = 1 - Local Memory Block Write Cycle Time: 2 clocks.
270 * BwP = 1 - Local Memory Block Write to Pre-Charge Delay: 1 clock.
271 * AP = 1 - Internal Memory Active to Pre-Charge Delay: 7 clocks.
272 * Rst = 1 - Internal Memory Reset: Normal.
273 * RA = 1 - Internal Memory Remain in Active State: Do not remain.
276 sm501_reg
= (void __iomem
*)0xb3e00000 + SM501_DRAM_CONTROL
;
277 writel(readl(sm501_reg
) | 0x00f107c0, sm501_reg
);
280 * Power Mode Gate - Enable UART0
283 sm501_reg
= (void __iomem
*)0xb3e00000 + SM501_POWER_MODE_0_GATE
;
284 writel(readl(sm501_reg
) | (1 << SM501_GATE_UART0
), sm501_reg
);
286 sm501_reg
= (void __iomem
*)0xb3e00000 + SM501_POWER_MODE_1_GATE
;
287 writel(readl(sm501_reg
) | (1 << SM501_GATE_UART0
), sm501_reg
);
293 static struct sh_machine_vector mv_rts7751r2d __initmv
= {
294 .mv_name
= "RTS7751R2D",
295 .mv_setup
= rts7751r2d_setup
,
296 .mv_init_irq
= init_rts7751r2d_IRQ
,
297 .mv_irq_demux
= rts7751r2d_irq_demux
,