blob: 4b98a5251f833f5e2eda2013e656a95a5fb3c81a [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * Renesas Technology Sales RTS7751R2D Support.
3 *
Paul Mundt9c575482007-02-15 18:20:52 +09004 * Copyright (C) 2002 - 2006 Atom Create Engineering Co., Ltd.
5 * Copyright (C) 2004 - 2007 Paul Mundt
Paul Mundtade2b3f2006-09-27 16:48:46 +09006 *
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
9 * for more details.
Linus Torvalds1da177e2005-04-16 15:20:36 -070010 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070011#include <linux/init.h>
Paul Mundtade2b3f2006-09-27 16:48:46 +090012#include <linux/platform_device.h>
Jean-Christophe PLAGNIOL-VILLARDc2e00902009-04-27 17:54:41 +090013#include <linux/mtd/mtd.h>
14#include <linux/mtd/partitions.h>
15#include <linux/mtd/physmap.h>
Jeff Garzik0a87e3e2008-02-01 18:02:30 -050016#include <linux/ata_platform.h>
Paul Mundtc87a7112007-03-01 18:47:08 +090017#include <linux/sm501.h>
Magnus Damm29ec6772008-01-15 12:47:53 +090018#include <linux/sm501-regs.h>
Paul Mundta56d2762006-09-27 11:43:24 +090019#include <linux/pm.h>
Magnus Dammcbd10df2008-01-15 12:44:44 +090020#include <linux/fb.h>
Magnus Damm6582d7b2008-01-23 16:21:18 +090021#include <linux/spi/spi.h>
22#include <linux/spi/spi_bitbang.h>
Paul Mundt2c7834a2006-09-27 18:17:31 +090023#include <asm/machvec.h>
Paul Mundt7639a452008-10-20 13:02:48 +090024#include <mach/r2d.h>
Paul Mundt9c575482007-02-15 18:20:52 +090025#include <asm/io.h>
Magnus Damm2d952b42008-02-07 20:21:10 +090026#include <asm/io_trapped.h>
Magnus Damm6582d7b2008-01-23 16:21:18 +090027#include <asm/spi.h>
Paul Mundtade2b3f2006-09-27 16:48:46 +090028
Paul Mundt9c575482007-02-15 18:20:52 +090029static struct resource cf_ide_resources[] = {
30 [0] = {
31 .start = PA_AREA5_IO + 0x1000,
Aoi Shinkai43f4b8c2007-09-21 15:18:33 +090032 .end = PA_AREA5_IO + 0x1000 + 0x10 - 0x2,
Paul Mundt9c575482007-02-15 18:20:52 +090033 .flags = IORESOURCE_MEM,
34 },
35 [1] = {
36 .start = PA_AREA5_IO + 0x80c,
Aoi Shinkai43f4b8c2007-09-21 15:18:33 +090037 .end = PA_AREA5_IO + 0x80c,
Paul Mundt9c575482007-02-15 18:20:52 +090038 .flags = IORESOURCE_MEM,
39 },
Magnus Dammabac3f72007-11-23 14:39:13 +090040#ifndef CONFIG_RTS7751R2D_1 /* For R2D-1 polling is preferred */
Paul Mundt9c575482007-02-15 18:20:52 +090041 [2] = {
Magnus Damm2eeec852007-08-12 15:29:16 +090042 .start = IRQ_CF_IDE,
Paul Mundt9c575482007-02-15 18:20:52 +090043 .flags = IORESOURCE_IRQ,
44 },
Magnus Dammabac3f72007-11-23 14:39:13 +090045#endif
Paul Mundt9c575482007-02-15 18:20:52 +090046};
47
48static struct pata_platform_info pata_info = {
49 .ioport_shift = 1,
50};
51
52static struct platform_device cf_ide_device = {
53 .name = "pata_platform",
54 .id = -1,
55 .num_resources = ARRAY_SIZE(cf_ide_resources),
56 .resource = cf_ide_resources,
57 .dev = {
58 .platform_data = &pata_info,
59 },
60};
61
Magnus Damm6582d7b2008-01-23 16:21:18 +090062static struct spi_board_info spi_bus[] = {
63 {
64 .modalias = "rtc-r9701",
65 .max_speed_hz = 1000000,
66 .mode = SPI_MODE_3,
67 },
68};
69
70static void r2d_chip_select(struct sh_spi_info *spi, int cs, int state)
71{
72 BUG_ON(cs != 0); /* Single Epson RTC-9701JE attached on CS0 */
Paul Mundt9d56dd32010-01-26 12:58:40 +090073 __raw_writew(state == BITBANG_CS_ACTIVE, PA_RTCCE);
Magnus Damm6582d7b2008-01-23 16:21:18 +090074}
75
76static struct sh_spi_info spi_info = {
77 .num_chipselect = 1,
78 .chip_select = r2d_chip_select,
79};
80
81static struct resource spi_sh_sci_resources[] = {
82 {
83 .start = 0xffe00000,
84 .end = 0xffe0001f,
85 .flags = IORESOURCE_MEM,
86 },
87};
88
89static struct platform_device spi_sh_sci_device = {
90 .name = "spi_sh_sci",
91 .id = -1,
92 .num_resources = ARRAY_SIZE(spi_sh_sci_resources),
93 .resource = spi_sh_sci_resources,
94 .dev = {
95 .platform_data = &spi_info,
96 },
97};
98
Magnus Dammf8b40d82007-08-12 15:30:40 +090099static struct resource heartbeat_resources[] = {
100 [0] = {
101 .start = PA_OUTPORT,
Paul Mundta1fd3062007-08-23 15:11:44 +0900102 .end = PA_OUTPORT,
Magnus Dammf8b40d82007-08-12 15:30:40 +0900103 .flags = IORESOURCE_MEM,
104 },
105};
106
107static struct platform_device heartbeat_device = {
108 .name = "heartbeat",
109 .id = -1,
110 .num_resources = ARRAY_SIZE(heartbeat_resources),
111 .resource = heartbeat_resources,
112};
113
Paul Mundtc87a7112007-03-01 18:47:08 +0900114static struct resource sm501_resources[] = {
115 [0] = {
116 .start = 0x10000000,
117 .end = 0x13e00000 - 1,
118 .flags = IORESOURCE_MEM,
119 },
120 [1] = {
121 .start = 0x13e00000,
122 .end = 0x13ffffff,
123 .flags = IORESOURCE_MEM,
124 },
125 [2] = {
Magnus Damm29ec6772008-01-15 12:47:53 +0900126 .start = IRQ_VOYAGER,
Paul Mundtc87a7112007-03-01 18:47:08 +0900127 .flags = IORESOURCE_IRQ,
128 },
129};
130
Magnus Dammcbd10df2008-01-15 12:44:44 +0900131static struct fb_videomode sm501_default_mode = {
132 .pixclock = 35714,
133 .xres = 640,
134 .yres = 480,
135 .left_margin = 105,
136 .right_margin = 50,
137 .upper_margin = 35,
138 .lower_margin = 0,
139 .hsync_len = 96,
140 .vsync_len = 2,
141 .sync = FB_SYNC_HOR_HIGH_ACT | FB_SYNC_VERT_HIGH_ACT,
142};
143
144static struct sm501_platdata_fbsub sm501_pdata_fbsub_pnl = {
145 .def_bpp = 16,
146 .def_mode = &sm501_default_mode,
147 .flags = SM501FB_FLAG_USE_INIT_MODE |
148 SM501FB_FLAG_USE_HWCURSOR |
149 SM501FB_FLAG_USE_HWACCEL |
150 SM501FB_FLAG_DISABLE_AT_EXIT,
151};
152
153static struct sm501_platdata_fbsub sm501_pdata_fbsub_crt = {
154 .flags = (SM501FB_FLAG_USE_INIT_MODE |
155 SM501FB_FLAG_USE_HWCURSOR |
156 SM501FB_FLAG_USE_HWACCEL |
157 SM501FB_FLAG_DISABLE_AT_EXIT),
158
159};
160
161static struct sm501_platdata_fb sm501_fb_pdata = {
162 .fb_route = SM501_FB_OWN,
163 .fb_crt = &sm501_pdata_fbsub_crt,
164 .fb_pnl = &sm501_pdata_fbsub_pnl,
165 .flags = SM501_FBPD_SWAP_FB_ENDIAN,
166};
167
Magnus Damm29ec6772008-01-15 12:47:53 +0900168static struct sm501_initdata sm501_initdata = {
Magnus Dammfa7ff082008-05-22 22:34:28 +0900169 .devices = SM501_USE_USB_HOST | SM501_USE_UART0,
Magnus Damm29ec6772008-01-15 12:47:53 +0900170};
171
Magnus Dammcbd10df2008-01-15 12:44:44 +0900172static struct sm501_platdata sm501_platform_data = {
Magnus Damm29ec6772008-01-15 12:47:53 +0900173 .init = &sm501_initdata,
Magnus Dammcbd10df2008-01-15 12:44:44 +0900174 .fb = &sm501_fb_pdata,
175};
176
Paul Mundtc87a7112007-03-01 18:47:08 +0900177static struct platform_device sm501_device = {
178 .name = "sm501",
179 .id = -1,
Magnus Dammcbd10df2008-01-15 12:44:44 +0900180 .dev = {
181 .platform_data = &sm501_platform_data,
182 },
Paul Mundtc87a7112007-03-01 18:47:08 +0900183 .num_resources = ARRAY_SIZE(sm501_resources),
184 .resource = sm501_resources,
185};
186
Jean-Christophe PLAGNIOL-VILLARDc2e00902009-04-27 17:54:41 +0900187static struct mtd_partition r2d_partitions[] = {
188 {
189 .name = "U-Boot",
190 .offset = 0x00000000,
191 .size = 0x00040000,
192 .mask_flags = MTD_WRITEABLE,
193 }, {
194 .name = "Environment",
195 .offset = MTDPART_OFS_NXTBLK,
196 .size = 0x00040000,
197 .mask_flags = MTD_WRITEABLE,
198 }, {
199 .name = "Kernel",
200 .offset = MTDPART_OFS_NXTBLK,
201 .size = 0x001c0000,
202 }, {
203 .name = "Flash_FS",
204 .offset = MTDPART_OFS_NXTBLK,
205 .size = MTDPART_SIZ_FULL,
206 }
207};
208
209static struct physmap_flash_data flash_data = {
210 .width = 2,
211 .nr_parts = ARRAY_SIZE(r2d_partitions),
212 .parts = r2d_partitions,
213};
214
215static struct resource flash_resource = {
216 .start = 0x00000000,
217 .end = 0x02000000,
218 .flags = IORESOURCE_MEM,
219};
220
221static struct platform_device flash_device = {
222 .name = "physmap-flash",
223 .id = -1,
224 .resource = &flash_resource,
225 .num_resources = 1,
226 .dev = {
227 .platform_data = &flash_data,
228 },
229};
230
Paul Mundtade2b3f2006-09-27 16:48:46 +0900231static struct platform_device *rts7751r2d_devices[] __initdata = {
Paul Mundtc87a7112007-03-01 18:47:08 +0900232 &sm501_device,
Magnus Dammf8b40d82007-08-12 15:30:40 +0900233 &heartbeat_device,
Magnus Damm6582d7b2008-01-23 16:21:18 +0900234 &spi_sh_sci_device,
Paul Mundtade2b3f2006-09-27 16:48:46 +0900235};
236
Magnus Damm2d952b42008-02-07 20:21:10 +0900237/*
238 * The CF is connected with a 16-bit bus where 8-bit operations are
239 * unsupported. The linux ata driver is however using 8-bit operations, so
240 * insert a trapped io filter to convert 8-bit operations into 16-bit.
241 */
242static struct trapped_io cf_trapped_io = {
243 .resource = cf_ide_resources,
244 .num_resources = 2,
245 .minimum_bus_width = 16,
246};
247
Paul Mundtade2b3f2006-09-27 16:48:46 +0900248static int __init rts7751r2d_devices_setup(void)
249{
Magnus Damm2d952b42008-02-07 20:21:10 +0900250 if (register_trapped_io(&cf_trapped_io) == 0)
251 platform_device_register(&cf_ide_device);
Paul Mundte305ec82008-04-25 16:10:53 +0900252
Jean-Christophe PLAGNIOL-VILLARDc2e00902009-04-27 17:54:41 +0900253 if (mach_is_r2d_plus())
254 platform_device_register(&flash_device);
255
Magnus Damm6582d7b2008-01-23 16:21:18 +0900256 spi_register_board_info(spi_bus, ARRAY_SIZE(spi_bus));
Paul Mundte305ec82008-04-25 16:10:53 +0900257
Paul Mundtade2b3f2006-09-27 16:48:46 +0900258 return platform_add_devices(rts7751r2d_devices,
259 ARRAY_SIZE(rts7751r2d_devices));
260}
Nobuhiro Iwamatsu95d210c2011-01-07 03:02:15 +0000261device_initcall(rts7751r2d_devices_setup);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262
Paul Mundta56d2762006-09-27 11:43:24 +0900263static void rts7751r2d_power_off(void)
264{
Paul Mundt9d56dd32010-01-26 12:58:40 +0900265 __raw_writew(0x0001, PA_POWOFF);
Paul Mundta56d2762006-09-27 11:43:24 +0900266}
267
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268/*
269 * Initialize the board
270 */
Paul Mundt2c7834a2006-09-27 18:17:31 +0900271static void __init rts7751r2d_setup(char **cmdline_p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272{
Magnus Damm29ec6772008-01-15 12:47:53 +0900273 void __iomem *sm501_reg;
Paul Mundt9d56dd32010-01-26 12:58:40 +0900274 u16 ver = __raw_readw(PA_VERREG);
Paul Mundt9c575482007-02-15 18:20:52 +0900275
276 printk(KERN_INFO "Renesas Technology Sales RTS7751R2D support.\n");
277
278 printk(KERN_INFO "FPGA version:%d (revision:%d)\n",
279 (ver >> 4) & 0xf, ver & 0xf);
Paul Mundt2c7834a2006-09-27 18:17:31 +0900280
Paul Mundt9d56dd32010-01-26 12:58:40 +0900281 __raw_writew(0x0000, PA_OUTPORT);
Paul Mundta56d2762006-09-27 11:43:24 +0900282 pm_power_off = rts7751r2d_power_off;
Paul Mundtade2b3f2006-09-27 16:48:46 +0900283
Magnus Damm29ec6772008-01-15 12:47:53 +0900284 /* sm501 dram configuration:
285 * ColSizeX = 11 - External Memory Column Size: 256 words.
286 * APX = 1 - External Memory Active to Pre-Charge Delay: 7 clocks.
287 * RstX = 1 - External Memory Reset: Normal.
288 * Rfsh = 1 - Local Memory Refresh to Command Delay: 12 clocks.
289 * BwC = 1 - Local Memory Block Write Cycle Time: 2 clocks.
290 * BwP = 1 - Local Memory Block Write to Pre-Charge Delay: 1 clock.
291 * AP = 1 - Internal Memory Active to Pre-Charge Delay: 7 clocks.
292 * Rst = 1 - Internal Memory Reset: Normal.
293 * RA = 1 - Internal Memory Remain in Active State: Do not remain.
294 */
295
296 sm501_reg = (void __iomem *)0xb3e00000 + SM501_DRAM_CONTROL;
297 writel(readl(sm501_reg) | 0x00f107c0, sm501_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298}
Paul Mundt2c7834a2006-09-27 18:17:31 +0900299
300/*
301 * The Machine Vector
302 */
Paul Mundt82f81f42007-05-15 15:19:34 +0900303static struct sh_machine_vector mv_rts7751r2d __initmv = {
Paul Mundt2c7834a2006-09-27 18:17:31 +0900304 .mv_name = "RTS7751R2D",
305 .mv_setup = rts7751r2d_setup,
Paul Mundt2c7834a2006-09-27 18:17:31 +0900306 .mv_init_irq = init_rts7751r2d_IRQ,
Paul Mundt2c7834a2006-09-27 18:17:31 +0900307 .mv_irq_demux = rts7751r2d_irq_demux,
Paul Mundt2c7834a2006-09-27 18:17:31 +0900308};