Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | * Renesas Technology Sales RTS7751R2D Support. |
| 3 | * |
Paul Mundt | 9c57548 | 2007-02-15 18:20:52 +0900 | [diff] [blame] | 4 | * Copyright (C) 2002 - 2006 Atom Create Engineering Co., Ltd. |
| 5 | * Copyright (C) 2004 - 2007 Paul Mundt |
Paul Mundt | ade2b3f | 2006-09-27 16:48:46 +0900 | [diff] [blame] | 6 | * |
| 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 11 | #include <linux/init.h> |
Paul Mundt | ade2b3f | 2006-09-27 16:48:46 +0900 | [diff] [blame] | 12 | #include <linux/platform_device.h> |
Jean-Christophe PLAGNIOL-VILLARD | c2e0090 | 2009-04-27 17:54:41 +0900 | [diff] [blame] | 13 | #include <linux/mtd/mtd.h> |
| 14 | #include <linux/mtd/partitions.h> |
| 15 | #include <linux/mtd/physmap.h> |
Jeff Garzik | 0a87e3e | 2008-02-01 18:02:30 -0500 | [diff] [blame] | 16 | #include <linux/ata_platform.h> |
Paul Mundt | c87a711 | 2007-03-01 18:47:08 +0900 | [diff] [blame] | 17 | #include <linux/sm501.h> |
Magnus Damm | 29ec677 | 2008-01-15 12:47:53 +0900 | [diff] [blame] | 18 | #include <linux/sm501-regs.h> |
Paul Mundt | a56d276 | 2006-09-27 11:43:24 +0900 | [diff] [blame] | 19 | #include <linux/pm.h> |
Magnus Damm | cbd10df | 2008-01-15 12:44:44 +0900 | [diff] [blame] | 20 | #include <linux/fb.h> |
Magnus Damm | 6582d7b | 2008-01-23 16:21:18 +0900 | [diff] [blame] | 21 | #include <linux/spi/spi.h> |
| 22 | #include <linux/spi/spi_bitbang.h> |
Paul Mundt | 2c7834a | 2006-09-27 18:17:31 +0900 | [diff] [blame] | 23 | #include <asm/machvec.h> |
Paul Mundt | 7639a45 | 2008-10-20 13:02:48 +0900 | [diff] [blame] | 24 | #include <mach/r2d.h> |
Paul Mundt | 9c57548 | 2007-02-15 18:20:52 +0900 | [diff] [blame] | 25 | #include <asm/io.h> |
Magnus Damm | 2d952b4 | 2008-02-07 20:21:10 +0900 | [diff] [blame] | 26 | #include <asm/io_trapped.h> |
Magnus Damm | 6582d7b | 2008-01-23 16:21:18 +0900 | [diff] [blame] | 27 | #include <asm/spi.h> |
Paul Mundt | ade2b3f | 2006-09-27 16:48:46 +0900 | [diff] [blame] | 28 | |
Paul Mundt | 9c57548 | 2007-02-15 18:20:52 +0900 | [diff] [blame] | 29 | static struct resource cf_ide_resources[] = { |
| 30 | [0] = { |
| 31 | .start = PA_AREA5_IO + 0x1000, |
Aoi Shinkai | 43f4b8c | 2007-09-21 15:18:33 +0900 | [diff] [blame] | 32 | .end = PA_AREA5_IO + 0x1000 + 0x10 - 0x2, |
Paul Mundt | 9c57548 | 2007-02-15 18:20:52 +0900 | [diff] [blame] | 33 | .flags = IORESOURCE_MEM, |
| 34 | }, |
| 35 | [1] = { |
| 36 | .start = PA_AREA5_IO + 0x80c, |
Aoi Shinkai | 43f4b8c | 2007-09-21 15:18:33 +0900 | [diff] [blame] | 37 | .end = PA_AREA5_IO + 0x80c, |
Paul Mundt | 9c57548 | 2007-02-15 18:20:52 +0900 | [diff] [blame] | 38 | .flags = IORESOURCE_MEM, |
| 39 | }, |
Magnus Damm | abac3f7 | 2007-11-23 14:39:13 +0900 | [diff] [blame] | 40 | #ifndef CONFIG_RTS7751R2D_1 /* For R2D-1 polling is preferred */ |
Paul Mundt | 9c57548 | 2007-02-15 18:20:52 +0900 | [diff] [blame] | 41 | [2] = { |
Magnus Damm | 2eeec85 | 2007-08-12 15:29:16 +0900 | [diff] [blame] | 42 | .start = IRQ_CF_IDE, |
Paul Mundt | 9c57548 | 2007-02-15 18:20:52 +0900 | [diff] [blame] | 43 | .flags = IORESOURCE_IRQ, |
| 44 | }, |
Magnus Damm | abac3f7 | 2007-11-23 14:39:13 +0900 | [diff] [blame] | 45 | #endif |
Paul Mundt | 9c57548 | 2007-02-15 18:20:52 +0900 | [diff] [blame] | 46 | }; |
| 47 | |
| 48 | static struct pata_platform_info pata_info = { |
| 49 | .ioport_shift = 1, |
| 50 | }; |
| 51 | |
| 52 | static 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 Damm | 6582d7b | 2008-01-23 16:21:18 +0900 | [diff] [blame] | 62 | static struct spi_board_info spi_bus[] = { |
| 63 | { |
| 64 | .modalias = "rtc-r9701", |
| 65 | .max_speed_hz = 1000000, |
| 66 | .mode = SPI_MODE_3, |
| 67 | }, |
| 68 | }; |
| 69 | |
| 70 | static 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 Mundt | 9d56dd3 | 2010-01-26 12:58:40 +0900 | [diff] [blame] | 73 | __raw_writew(state == BITBANG_CS_ACTIVE, PA_RTCCE); |
Magnus Damm | 6582d7b | 2008-01-23 16:21:18 +0900 | [diff] [blame] | 74 | } |
| 75 | |
| 76 | static struct sh_spi_info spi_info = { |
| 77 | .num_chipselect = 1, |
| 78 | .chip_select = r2d_chip_select, |
| 79 | }; |
| 80 | |
| 81 | static struct resource spi_sh_sci_resources[] = { |
| 82 | { |
| 83 | .start = 0xffe00000, |
| 84 | .end = 0xffe0001f, |
| 85 | .flags = IORESOURCE_MEM, |
| 86 | }, |
| 87 | }; |
| 88 | |
| 89 | static 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 Damm | f8b40d8 | 2007-08-12 15:30:40 +0900 | [diff] [blame] | 99 | static struct resource heartbeat_resources[] = { |
| 100 | [0] = { |
| 101 | .start = PA_OUTPORT, |
Paul Mundt | a1fd306 | 2007-08-23 15:11:44 +0900 | [diff] [blame] | 102 | .end = PA_OUTPORT, |
Magnus Damm | f8b40d8 | 2007-08-12 15:30:40 +0900 | [diff] [blame] | 103 | .flags = IORESOURCE_MEM, |
| 104 | }, |
| 105 | }; |
| 106 | |
| 107 | static 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 Mundt | c87a711 | 2007-03-01 18:47:08 +0900 | [diff] [blame] | 114 | static 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 Damm | 29ec677 | 2008-01-15 12:47:53 +0900 | [diff] [blame] | 126 | .start = IRQ_VOYAGER, |
Paul Mundt | c87a711 | 2007-03-01 18:47:08 +0900 | [diff] [blame] | 127 | .flags = IORESOURCE_IRQ, |
| 128 | }, |
| 129 | }; |
| 130 | |
Magnus Damm | cbd10df | 2008-01-15 12:44:44 +0900 | [diff] [blame] | 131 | static 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 | |
| 144 | static 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 | |
| 153 | static 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 | |
| 161 | static 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 Damm | 29ec677 | 2008-01-15 12:47:53 +0900 | [diff] [blame] | 168 | static struct sm501_initdata sm501_initdata = { |
Magnus Damm | fa7ff08 | 2008-05-22 22:34:28 +0900 | [diff] [blame] | 169 | .devices = SM501_USE_USB_HOST | SM501_USE_UART0, |
Magnus Damm | 29ec677 | 2008-01-15 12:47:53 +0900 | [diff] [blame] | 170 | }; |
| 171 | |
Magnus Damm | cbd10df | 2008-01-15 12:44:44 +0900 | [diff] [blame] | 172 | static struct sm501_platdata sm501_platform_data = { |
Magnus Damm | 29ec677 | 2008-01-15 12:47:53 +0900 | [diff] [blame] | 173 | .init = &sm501_initdata, |
Magnus Damm | cbd10df | 2008-01-15 12:44:44 +0900 | [diff] [blame] | 174 | .fb = &sm501_fb_pdata, |
| 175 | }; |
| 176 | |
Paul Mundt | c87a711 | 2007-03-01 18:47:08 +0900 | [diff] [blame] | 177 | static struct platform_device sm501_device = { |
| 178 | .name = "sm501", |
| 179 | .id = -1, |
Magnus Damm | cbd10df | 2008-01-15 12:44:44 +0900 | [diff] [blame] | 180 | .dev = { |
| 181 | .platform_data = &sm501_platform_data, |
| 182 | }, |
Paul Mundt | c87a711 | 2007-03-01 18:47:08 +0900 | [diff] [blame] | 183 | .num_resources = ARRAY_SIZE(sm501_resources), |
| 184 | .resource = sm501_resources, |
| 185 | }; |
| 186 | |
Jean-Christophe PLAGNIOL-VILLARD | c2e0090 | 2009-04-27 17:54:41 +0900 | [diff] [blame] | 187 | static 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 | |
| 209 | static struct physmap_flash_data flash_data = { |
| 210 | .width = 2, |
| 211 | .nr_parts = ARRAY_SIZE(r2d_partitions), |
| 212 | .parts = r2d_partitions, |
| 213 | }; |
| 214 | |
| 215 | static struct resource flash_resource = { |
| 216 | .start = 0x00000000, |
| 217 | .end = 0x02000000, |
| 218 | .flags = IORESOURCE_MEM, |
| 219 | }; |
| 220 | |
| 221 | static 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 Mundt | ade2b3f | 2006-09-27 16:48:46 +0900 | [diff] [blame] | 231 | static struct platform_device *rts7751r2d_devices[] __initdata = { |
Paul Mundt | c87a711 | 2007-03-01 18:47:08 +0900 | [diff] [blame] | 232 | &sm501_device, |
Magnus Damm | f8b40d8 | 2007-08-12 15:30:40 +0900 | [diff] [blame] | 233 | &heartbeat_device, |
Magnus Damm | 6582d7b | 2008-01-23 16:21:18 +0900 | [diff] [blame] | 234 | &spi_sh_sci_device, |
Paul Mundt | ade2b3f | 2006-09-27 16:48:46 +0900 | [diff] [blame] | 235 | }; |
| 236 | |
Magnus Damm | 2d952b4 | 2008-02-07 20:21:10 +0900 | [diff] [blame] | 237 | /* |
| 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 | */ |
| 242 | static struct trapped_io cf_trapped_io = { |
| 243 | .resource = cf_ide_resources, |
| 244 | .num_resources = 2, |
| 245 | .minimum_bus_width = 16, |
| 246 | }; |
| 247 | |
Paul Mundt | ade2b3f | 2006-09-27 16:48:46 +0900 | [diff] [blame] | 248 | static int __init rts7751r2d_devices_setup(void) |
| 249 | { |
Magnus Damm | 2d952b4 | 2008-02-07 20:21:10 +0900 | [diff] [blame] | 250 | if (register_trapped_io(&cf_trapped_io) == 0) |
| 251 | platform_device_register(&cf_ide_device); |
Paul Mundt | e305ec8 | 2008-04-25 16:10:53 +0900 | [diff] [blame] | 252 | |
Jean-Christophe PLAGNIOL-VILLARD | c2e0090 | 2009-04-27 17:54:41 +0900 | [diff] [blame] | 253 | if (mach_is_r2d_plus()) |
| 254 | platform_device_register(&flash_device); |
| 255 | |
Magnus Damm | 6582d7b | 2008-01-23 16:21:18 +0900 | [diff] [blame] | 256 | spi_register_board_info(spi_bus, ARRAY_SIZE(spi_bus)); |
Paul Mundt | e305ec8 | 2008-04-25 16:10:53 +0900 | [diff] [blame] | 257 | |
Paul Mundt | ade2b3f | 2006-09-27 16:48:46 +0900 | [diff] [blame] | 258 | return platform_add_devices(rts7751r2d_devices, |
| 259 | ARRAY_SIZE(rts7751r2d_devices)); |
| 260 | } |
Nobuhiro Iwamatsu | 95d210c | 2011-01-07 03:02:15 +0000 | [diff] [blame] | 261 | device_initcall(rts7751r2d_devices_setup); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 262 | |
Paul Mundt | a56d276 | 2006-09-27 11:43:24 +0900 | [diff] [blame] | 263 | static void rts7751r2d_power_off(void) |
| 264 | { |
Paul Mundt | 9d56dd3 | 2010-01-26 12:58:40 +0900 | [diff] [blame] | 265 | __raw_writew(0x0001, PA_POWOFF); |
Paul Mundt | a56d276 | 2006-09-27 11:43:24 +0900 | [diff] [blame] | 266 | } |
| 267 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 268 | /* |
| 269 | * Initialize the board |
| 270 | */ |
Paul Mundt | 2c7834a | 2006-09-27 18:17:31 +0900 | [diff] [blame] | 271 | static void __init rts7751r2d_setup(char **cmdline_p) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 272 | { |
Magnus Damm | 29ec677 | 2008-01-15 12:47:53 +0900 | [diff] [blame] | 273 | void __iomem *sm501_reg; |
Paul Mundt | 9d56dd3 | 2010-01-26 12:58:40 +0900 | [diff] [blame] | 274 | u16 ver = __raw_readw(PA_VERREG); |
Paul Mundt | 9c57548 | 2007-02-15 18:20:52 +0900 | [diff] [blame] | 275 | |
| 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 Mundt | 2c7834a | 2006-09-27 18:17:31 +0900 | [diff] [blame] | 280 | |
Paul Mundt | 9d56dd3 | 2010-01-26 12:58:40 +0900 | [diff] [blame] | 281 | __raw_writew(0x0000, PA_OUTPORT); |
Paul Mundt | a56d276 | 2006-09-27 11:43:24 +0900 | [diff] [blame] | 282 | pm_power_off = rts7751r2d_power_off; |
Paul Mundt | ade2b3f | 2006-09-27 16:48:46 +0900 | [diff] [blame] | 283 | |
Magnus Damm | 29ec677 | 2008-01-15 12:47:53 +0900 | [diff] [blame] | 284 | /* 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 298 | } |
Paul Mundt | 2c7834a | 2006-09-27 18:17:31 +0900 | [diff] [blame] | 299 | |
| 300 | /* |
| 301 | * The Machine Vector |
| 302 | */ |
Paul Mundt | 82f81f4 | 2007-05-15 15:19:34 +0900 | [diff] [blame] | 303 | static struct sh_machine_vector mv_rts7751r2d __initmv = { |
Paul Mundt | 2c7834a | 2006-09-27 18:17:31 +0900 | [diff] [blame] | 304 | .mv_name = "RTS7751R2D", |
| 305 | .mv_setup = rts7751r2d_setup, |
Paul Mundt | 2c7834a | 2006-09-27 18:17:31 +0900 | [diff] [blame] | 306 | .mv_init_irq = init_rts7751r2d_IRQ, |
Paul Mundt | 2c7834a | 2006-09-27 18:17:31 +0900 | [diff] [blame] | 307 | .mv_irq_demux = rts7751r2d_irq_demux, |
Paul Mundt | 2c7834a | 2006-09-27 18:17:31 +0900 | [diff] [blame] | 308 | }; |