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 static struct plat_serial8250_port uart_platform_data[] = {
114 .membase = (void __iomem *)0xb3e30000,
115 .mapbase = 0xb3e30000,
118 .flags = UPF_BOOT_AUTOCONF | UPF_SHARE_IRQ,
120 .uartclk = (9600 * 16),
125 static struct platform_device uart_device = {
126 .name = "serial8250",
127 .id = PLAT8250_DEV_PLATFORM,
129 .platform_data = uart_platform_data,
133 static struct resource sm501_resources[] = {
136 .end = 0x13e00000 - 1,
137 .flags = IORESOURCE_MEM,
142 .flags = IORESOURCE_MEM,
145 .start = IRQ_VOYAGER,
146 .flags = IORESOURCE_IRQ,
150 static struct fb_videomode sm501_default_mode = {
160 .sync = FB_SYNC_HOR_HIGH_ACT | FB_SYNC_VERT_HIGH_ACT,
163 static struct sm501_platdata_fbsub sm501_pdata_fbsub_pnl = {
165 .def_mode = &sm501_default_mode,
166 .flags = SM501FB_FLAG_USE_INIT_MODE |
167 SM501FB_FLAG_USE_HWCURSOR |
168 SM501FB_FLAG_USE_HWACCEL |
169 SM501FB_FLAG_DISABLE_AT_EXIT,
172 static struct sm501_platdata_fbsub sm501_pdata_fbsub_crt = {
173 .flags = (SM501FB_FLAG_USE_INIT_MODE |
174 SM501FB_FLAG_USE_HWCURSOR |
175 SM501FB_FLAG_USE_HWACCEL |
176 SM501FB_FLAG_DISABLE_AT_EXIT),
180 static struct sm501_platdata_fb sm501_fb_pdata = {
181 .fb_route = SM501_FB_OWN,
182 .fb_crt = &sm501_pdata_fbsub_crt,
183 .fb_pnl = &sm501_pdata_fbsub_pnl,
184 .flags = SM501_FBPD_SWAP_FB_ENDIAN,
187 static struct sm501_initdata sm501_initdata = {
192 .devices = SM501_USE_USB_HOST,
195 static struct sm501_platdata sm501_platform_data = {
196 .init = &sm501_initdata,
197 .fb = &sm501_fb_pdata,
200 static struct platform_device sm501_device = {
204 .platform_data = &sm501_platform_data,
206 .num_resources = ARRAY_SIZE(sm501_resources),
207 .resource = sm501_resources,
210 static struct platform_device *rts7751r2d_devices[] __initdata = {
218 * The CF is connected with a 16-bit bus where 8-bit operations are
219 * unsupported. The linux ata driver is however using 8-bit operations, so
220 * insert a trapped io filter to convert 8-bit operations into 16-bit.
222 static struct trapped_io cf_trapped_io = {
223 .resource = cf_ide_resources,
225 .minimum_bus_width = 16,
228 static int __init rts7751r2d_devices_setup(void)
230 if (register_trapped_io(&cf_trapped_io) == 0)
231 platform_device_register(&cf_ide_device);
233 spi_register_board_info(spi_bus, ARRAY_SIZE(spi_bus));
235 return platform_add_devices(rts7751r2d_devices,
236 ARRAY_SIZE(rts7751r2d_devices));
238 __initcall(rts7751r2d_devices_setup);
240 static void rts7751r2d_power_off(void)
242 ctrl_outw(0x0001, PA_POWOFF);
246 * Initialize the board
248 static void __init rts7751r2d_setup(char **cmdline_p)
250 void __iomem *sm501_reg;
251 u16 ver = ctrl_inw(PA_VERREG);
253 printk(KERN_INFO "Renesas Technology Sales RTS7751R2D support.\n");
255 printk(KERN_INFO "FPGA version:%d (revision:%d)\n",
256 (ver >> 4) & 0xf, ver & 0xf);
258 ctrl_outw(0x0000, PA_OUTPORT);
259 pm_power_off = rts7751r2d_power_off;
261 /* sm501 dram configuration:
262 * ColSizeX = 11 - External Memory Column Size: 256 words.
263 * APX = 1 - External Memory Active to Pre-Charge Delay: 7 clocks.
264 * RstX = 1 - External Memory Reset: Normal.
265 * Rfsh = 1 - Local Memory Refresh to Command Delay: 12 clocks.
266 * BwC = 1 - Local Memory Block Write Cycle Time: 2 clocks.
267 * BwP = 1 - Local Memory Block Write to Pre-Charge Delay: 1 clock.
268 * AP = 1 - Internal Memory Active to Pre-Charge Delay: 7 clocks.
269 * Rst = 1 - Internal Memory Reset: Normal.
270 * RA = 1 - Internal Memory Remain in Active State: Do not remain.
273 sm501_reg = (void __iomem *)0xb3e00000 + SM501_DRAM_CONTROL;
274 writel(readl(sm501_reg) | 0x00f107c0, sm501_reg);
277 * Power Mode Gate - Enable UART0
280 sm501_reg = (void __iomem *)0xb3e00000 + SM501_POWER_MODE_0_GATE;
281 writel(readl(sm501_reg) | (1 << SM501_GATE_UART0), sm501_reg);
283 sm501_reg = (void __iomem *)0xb3e00000 + SM501_POWER_MODE_1_GATE;
284 writel(readl(sm501_reg) | (1 << SM501_GATE_UART0), sm501_reg);
290 static struct sh_machine_vector mv_rts7751r2d __initmv = {
291 .mv_name = "RTS7751R2D",
292 .mv_setup = rts7751r2d_setup,
293 .mv_init_irq = init_rts7751r2d_IRQ,
294 .mv_irq_demux = rts7751r2d_irq_demux,