| Paul Mundt | 5283ecb | 2006-09-27 15:59:17 +0900 | [diff] [blame] | 1 | /* | 
|  | 2 | * arch/sh/boards/renesas/r7780rp/setup.c | 
|  | 3 | * | 
| Paul Mundt | 32351a2 | 2007-03-12 14:38:59 +0900 | [diff] [blame] | 4 | * Renesas Solutions Highlander Support. | 
|  | 5 | * | 
| Paul Mundt | 5283ecb | 2006-09-27 15:59:17 +0900 | [diff] [blame] | 6 | * Copyright (C) 2002 Atom Create Engineering Co., Ltd. | 
| Paul Mundt | c293396 | 2008-03-25 16:49:30 +0900 | [diff] [blame] | 7 | * Copyright (C) 2005 - 2008 Paul Mundt | 
| Paul Mundt | 5283ecb | 2006-09-27 15:59:17 +0900 | [diff] [blame] | 8 | * | 
| Paul Mundt | 32351a2 | 2007-03-12 14:38:59 +0900 | [diff] [blame] | 9 | * This contains support for the R7780RP-1, R7780MP, and R7785RP | 
|  | 10 | * Highlander modules. | 
| Paul Mundt | 5283ecb | 2006-09-27 15:59:17 +0900 | [diff] [blame] | 11 | * | 
|  | 12 | * This file is subject to the terms and conditions of the GNU General Public | 
|  | 13 | * License.  See the file "COPYING" in the main directory of this archive | 
|  | 14 | * for more details. | 
|  | 15 | */ | 
|  | 16 | #include <linux/init.h> | 
|  | 17 | #include <linux/platform_device.h> | 
| Jeff Garzik | 0a87e3e | 2008-02-01 18:02:30 -0500 | [diff] [blame] | 18 | #include <linux/ata_platform.h> | 
| Paul Mundt | b5751e2 | 2007-11-02 14:17:19 +0900 | [diff] [blame] | 19 | #include <linux/types.h> | 
| Nobuhiro Iwamatsu | 15ba400 | 2009-06-16 07:42:20 +0000 | [diff] [blame] | 20 | #include <linux/mtd/physmap.h> | 
| Paul Mundt | c293396 | 2008-03-25 16:49:30 +0900 | [diff] [blame] | 21 | #include <linux/i2c.h> | 
| Paul Mundt | 604437f | 2009-01-09 15:11:58 +0900 | [diff] [blame] | 22 | #include <linux/irq.h> | 
| Yoshihiro Shimoda | 6239b20 | 2009-05-26 09:33:05 +0000 | [diff] [blame] | 23 | #include <linux/interrupt.h> | 
|  | 24 | #include <linux/usb/r8a66597.h> | 
| Magnus Damm | 2c59b0b | 2009-07-22 14:41:35 +0000 | [diff] [blame] | 25 | #include <linux/usb/m66592.h> | 
| Magnus Damm | c6f93a3 | 2007-10-15 10:36:45 +0900 | [diff] [blame] | 26 | #include <net/ax88796.h> | 
| Paul Mundt | 5283ecb | 2006-09-27 15:59:17 +0900 | [diff] [blame] | 27 | #include <asm/machvec.h> | 
| Paul Mundt | 7639a45 | 2008-10-20 13:02:48 +0900 | [diff] [blame] | 28 | #include <mach/highlander.h> | 
| Paul Mundt | 5283ecb | 2006-09-27 15:59:17 +0900 | [diff] [blame] | 29 | #include <asm/clock.h> | 
| Paul Mundt | 8786c95 | 2007-08-20 13:03:41 +0900 | [diff] [blame] | 30 | #include <asm/heartbeat.h> | 
| Paul Mundt | 5283ecb | 2006-09-27 15:59:17 +0900 | [diff] [blame] | 31 | #include <asm/io.h> | 
| Magnus Damm | c1a34e4 | 2008-02-07 20:23:53 +0900 | [diff] [blame] | 32 | #include <asm/io_trapped.h> | 
| Paul Mundt | 5283ecb | 2006-09-27 15:59:17 +0900 | [diff] [blame] | 33 |  | 
| Yoshihiro Shimoda | 6239b20 | 2009-05-26 09:33:05 +0000 | [diff] [blame] | 34 | static struct r8a66597_platdata r8a66597_data = { | 
|  | 35 | .xtal = R8A66597_PLATDATA_XTAL_12MHZ, | 
|  | 36 | .vif = 1, | 
|  | 37 | }; | 
|  | 38 |  | 
| Yoshihiro Shimoda | e6c972f | 2007-07-17 13:38:54 +0900 | [diff] [blame] | 39 | static struct resource r8a66597_usb_host_resources[] = { | 
|  | 40 | [0] = { | 
| Yoshihiro Shimoda | e6c972f | 2007-07-17 13:38:54 +0900 | [diff] [blame] | 41 | .start	= 0xA4200000, | 
|  | 42 | .end	= 0xA42000FF, | 
|  | 43 | .flags	= IORESOURCE_MEM, | 
|  | 44 | }, | 
|  | 45 | [1] = { | 
| Magnus Damm | 897cfcd8 | 2007-09-10 12:06:03 +0900 | [diff] [blame] | 46 | .start	= IRQ_EXT1,		/* irq number */ | 
|  | 47 | .end	= IRQ_EXT1, | 
| Yoshihiro Shimoda | 6239b20 | 2009-05-26 09:33:05 +0000 | [diff] [blame] | 48 | .flags	= IORESOURCE_IRQ | IRQF_TRIGGER_LOW, | 
| Yoshihiro Shimoda | e6c972f | 2007-07-17 13:38:54 +0900 | [diff] [blame] | 49 | }, | 
|  | 50 | }; | 
|  | 51 |  | 
|  | 52 | static struct platform_device r8a66597_usb_host_device = { | 
|  | 53 | .name		= "r8a66597_hcd", | 
|  | 54 | .id		= -1, | 
|  | 55 | .dev = { | 
|  | 56 | .dma_mask		= NULL,		/* don't use dma */ | 
|  | 57 | .coherent_dma_mask	= 0xffffffff, | 
| Yoshihiro Shimoda | 6239b20 | 2009-05-26 09:33:05 +0000 | [diff] [blame] | 58 | .platform_data		= &r8a66597_data, | 
| Yoshihiro Shimoda | e6c972f | 2007-07-17 13:38:54 +0900 | [diff] [blame] | 59 | }, | 
|  | 60 | .num_resources	= ARRAY_SIZE(r8a66597_usb_host_resources), | 
|  | 61 | .resource	= r8a66597_usb_host_resources, | 
|  | 62 | }; | 
|  | 63 |  | 
| Magnus Damm | 2c59b0b | 2009-07-22 14:41:35 +0000 | [diff] [blame] | 64 | static struct m66592_platdata usbf_platdata = { | 
|  | 65 | .xtal = M66592_PLATDATA_XTAL_24MHZ, | 
|  | 66 | .vif = 1, | 
|  | 67 | }; | 
|  | 68 |  | 
| Yoshihiro Shimoda | e6c972f | 2007-07-17 13:38:54 +0900 | [diff] [blame] | 69 | static struct resource m66592_usb_peripheral_resources[] = { | 
|  | 70 | [0] = { | 
|  | 71 | .name	= "m66592_udc", | 
|  | 72 | .start	= 0xb0000000, | 
|  | 73 | .end	= 0xb00000FF, | 
|  | 74 | .flags	= IORESOURCE_MEM, | 
|  | 75 | }, | 
|  | 76 | [1] = { | 
|  | 77 | .name	= "m66592_udc", | 
| Magnus Damm | 897cfcd8 | 2007-09-10 12:06:03 +0900 | [diff] [blame] | 78 | .start	= IRQ_EXT4,		/* irq number */ | 
|  | 79 | .end	= IRQ_EXT4, | 
| Yoshihiro Shimoda | e6c972f | 2007-07-17 13:38:54 +0900 | [diff] [blame] | 80 | .flags	= IORESOURCE_IRQ, | 
|  | 81 | }, | 
|  | 82 | }; | 
|  | 83 |  | 
|  | 84 | static struct platform_device m66592_usb_peripheral_device = { | 
|  | 85 | .name		= "m66592_udc", | 
|  | 86 | .id		= -1, | 
|  | 87 | .dev = { | 
|  | 88 | .dma_mask		= NULL,		/* don't use dma */ | 
|  | 89 | .coherent_dma_mask	= 0xffffffff, | 
| Magnus Damm | 2c59b0b | 2009-07-22 14:41:35 +0000 | [diff] [blame] | 90 | .platform_data		= &usbf_platdata, | 
| Yoshihiro Shimoda | e6c972f | 2007-07-17 13:38:54 +0900 | [diff] [blame] | 91 | }, | 
|  | 92 | .num_resources	= ARRAY_SIZE(m66592_usb_peripheral_resources), | 
|  | 93 | .resource	= m66592_usb_peripheral_resources, | 
|  | 94 | }; | 
|  | 95 |  | 
| Paul Mundt | 0c020e3 | 2006-12-06 10:43:44 +0900 | [diff] [blame] | 96 | static struct resource cf_ide_resources[] = { | 
|  | 97 | [0] = { | 
| Paul Mundt | 71074d3 | 2007-02-14 14:49:04 +0900 | [diff] [blame] | 98 | .start	= PA_AREA5_IO + 0x1000, | 
|  | 99 | .end	= PA_AREA5_IO + 0x1000 + 0x08 - 1, | 
|  | 100 | .flags	= IORESOURCE_MEM, | 
| Paul Mundt | 0c020e3 | 2006-12-06 10:43:44 +0900 | [diff] [blame] | 101 | }, | 
|  | 102 | [1] = { | 
| Paul Mundt | 71074d3 | 2007-02-14 14:49:04 +0900 | [diff] [blame] | 103 | .start	= PA_AREA5_IO + 0x80c, | 
|  | 104 | .end	= PA_AREA5_IO + 0x80c + 0x16 - 1, | 
|  | 105 | .flags	= IORESOURCE_MEM, | 
| Paul Mundt | 0c020e3 | 2006-12-06 10:43:44 +0900 | [diff] [blame] | 106 | }, | 
|  | 107 | [2] = { | 
| Magnus Damm | 897cfcd8 | 2007-09-10 12:06:03 +0900 | [diff] [blame] | 108 | .start	= IRQ_CF, | 
| Paul Mundt | 0c020e3 | 2006-12-06 10:43:44 +0900 | [diff] [blame] | 109 | .flags	= IORESOURCE_IRQ, | 
|  | 110 | }, | 
|  | 111 | }; | 
|  | 112 |  | 
| Paul Mundt | 71074d3 | 2007-02-14 14:49:04 +0900 | [diff] [blame] | 113 | static struct pata_platform_info pata_info = { | 
|  | 114 | .ioport_shift	= 1, | 
|  | 115 | }; | 
|  | 116 |  | 
| Paul Mundt | 0c020e3 | 2006-12-06 10:43:44 +0900 | [diff] [blame] | 117 | static struct platform_device cf_ide_device  = { | 
|  | 118 | .name		= "pata_platform", | 
|  | 119 | .id		= -1, | 
|  | 120 | .num_resources	= ARRAY_SIZE(cf_ide_resources), | 
|  | 121 | .resource	= cf_ide_resources, | 
| Paul Mundt | 71074d3 | 2007-02-14 14:49:04 +0900 | [diff] [blame] | 122 | .dev	= { | 
|  | 123 | .platform_data	= &pata_info, | 
|  | 124 | }, | 
| Paul Mundt | 0c020e3 | 2006-12-06 10:43:44 +0900 | [diff] [blame] | 125 | }; | 
|  | 126 |  | 
| Paul Mundt | 3b4d953 | 2007-02-13 15:42:28 +0900 | [diff] [blame] | 127 | static struct resource heartbeat_resources[] = { | 
|  | 128 | [0] = { | 
|  | 129 | .start	= PA_OBLED, | 
| Paul Mundt | a1fd306 | 2007-08-23 15:11:44 +0900 | [diff] [blame] | 130 | .end	= PA_OBLED, | 
| Paul Mundt | 3b4d953 | 2007-02-13 15:42:28 +0900 | [diff] [blame] | 131 | .flags	= IORESOURCE_MEM, | 
|  | 132 | }, | 
|  | 133 | }; | 
|  | 134 |  | 
| Paul Mundt | 8786c95 | 2007-08-20 13:03:41 +0900 | [diff] [blame] | 135 | #ifndef CONFIG_SH_R7785RP | 
|  | 136 | static unsigned char heartbeat_bit_pos[] = { 2, 1, 0, 3, 6, 5, 4, 7 }; | 
|  | 137 |  | 
|  | 138 | static struct heartbeat_data heartbeat_data = { | 
|  | 139 | .bit_pos	= heartbeat_bit_pos, | 
|  | 140 | .nr_bits	= ARRAY_SIZE(heartbeat_bit_pos), | 
|  | 141 | }; | 
|  | 142 | #endif | 
|  | 143 |  | 
| Paul Mundt | 3b4d953 | 2007-02-13 15:42:28 +0900 | [diff] [blame] | 144 | static struct platform_device heartbeat_device = { | 
|  | 145 | .name		= "heartbeat", | 
|  | 146 | .id		= -1, | 
| Paul Mundt | 32351a2 | 2007-03-12 14:38:59 +0900 | [diff] [blame] | 147 |  | 
|  | 148 | /* R7785RP has a slightly more sensible FPGA.. */ | 
|  | 149 | #ifndef CONFIG_SH_R7785RP | 
| Paul Mundt | 3b4d953 | 2007-02-13 15:42:28 +0900 | [diff] [blame] | 150 | .dev	= { | 
| Paul Mundt | a1fd306 | 2007-08-23 15:11:44 +0900 | [diff] [blame] | 151 | .platform_data	= &heartbeat_data, | 
| Paul Mundt | 3b4d953 | 2007-02-13 15:42:28 +0900 | [diff] [blame] | 152 | }, | 
| Paul Mundt | 32351a2 | 2007-03-12 14:38:59 +0900 | [diff] [blame] | 153 | #endif | 
| Paul Mundt | 3b4d953 | 2007-02-13 15:42:28 +0900 | [diff] [blame] | 154 | .num_resources	= ARRAY_SIZE(heartbeat_resources), | 
|  | 155 | .resource	= heartbeat_resources, | 
|  | 156 | }; | 
|  | 157 |  | 
| Magnus Damm | c6f93a3 | 2007-10-15 10:36:45 +0900 | [diff] [blame] | 158 | static struct ax_plat_data ax88796_platdata = { | 
|  | 159 | .flags          = AXFLG_HAS_93CX6, | 
|  | 160 | .wordlength     = 2, | 
|  | 161 | .dcr_val        = 0x1, | 
|  | 162 | .rcr_val        = 0x40, | 
|  | 163 | }; | 
|  | 164 |  | 
|  | 165 | static struct resource ax88796_resources[] = { | 
|  | 166 | { | 
|  | 167 | #ifdef CONFIG_SH_R7780RP | 
|  | 168 | .start  = 0xa5800400, | 
|  | 169 | .end    = 0xa5800400 + (0x20 * 0x2) - 1, | 
|  | 170 | #else | 
|  | 171 | .start  = 0xa4100400, | 
|  | 172 | .end    = 0xa4100400 + (0x20 * 0x2) - 1, | 
|  | 173 | #endif | 
|  | 174 | .flags  = IORESOURCE_MEM, | 
|  | 175 | }, | 
|  | 176 | { | 
|  | 177 | .start  = IRQ_AX88796, | 
|  | 178 | .end    = IRQ_AX88796, | 
|  | 179 | .flags  = IORESOURCE_IRQ, | 
|  | 180 | }, | 
|  | 181 | }; | 
|  | 182 |  | 
|  | 183 | static struct platform_device ax88796_device = { | 
|  | 184 | .name           = "ax88796", | 
|  | 185 | .id             = 0, | 
|  | 186 |  | 
|  | 187 | .dev    = { | 
|  | 188 | .platform_data = &ax88796_platdata, | 
|  | 189 | }, | 
|  | 190 |  | 
|  | 191 | .num_resources  = ARRAY_SIZE(ax88796_resources), | 
|  | 192 | .resource       = ax88796_resources, | 
|  | 193 | }; | 
|  | 194 |  | 
| Nobuhiro Iwamatsu | 15ba400 | 2009-06-16 07:42:20 +0000 | [diff] [blame] | 195 | static struct mtd_partition nor_flash_partitions[] = { | 
|  | 196 | { | 
|  | 197 | .name		= "loader", | 
|  | 198 | .offset		= 0x00000000, | 
|  | 199 | .size		= 512 * 1024, | 
|  | 200 | }, | 
|  | 201 | { | 
|  | 202 | .name		= "bootenv", | 
|  | 203 | .offset		= MTDPART_OFS_APPEND, | 
|  | 204 | .size		= 512 * 1024, | 
|  | 205 | }, | 
|  | 206 | { | 
|  | 207 | .name		= "kernel", | 
|  | 208 | .offset		= MTDPART_OFS_APPEND, | 
|  | 209 | .size		= 4 * 1024 * 1024, | 
|  | 210 | }, | 
|  | 211 | { | 
|  | 212 | .name		= "data", | 
|  | 213 | .offset		= MTDPART_OFS_APPEND, | 
|  | 214 | .size		= MTDPART_SIZ_FULL, | 
|  | 215 | }, | 
|  | 216 | }; | 
|  | 217 |  | 
|  | 218 | static struct physmap_flash_data nor_flash_data = { | 
|  | 219 | .width		= 4, | 
|  | 220 | .parts		= nor_flash_partitions, | 
|  | 221 | .nr_parts	= ARRAY_SIZE(nor_flash_partitions), | 
|  | 222 | }; | 
|  | 223 |  | 
|  | 224 | /* This config is flash board for mass production. */ | 
|  | 225 | static struct resource nor_flash_resources[] = { | 
|  | 226 | [0]	= { | 
|  | 227 | .start	= PA_NORFLASH_ADDR, | 
|  | 228 | .end	= PA_NORFLASH_ADDR + PA_NORFLASH_SIZE - 1, | 
|  | 229 | .flags	= IORESOURCE_MEM, | 
|  | 230 | } | 
|  | 231 | }; | 
|  | 232 |  | 
|  | 233 | static struct platform_device nor_flash_device = { | 
|  | 234 | .name		= "physmap-flash", | 
|  | 235 | .dev		= { | 
|  | 236 | .platform_data	= &nor_flash_data, | 
|  | 237 | }, | 
|  | 238 | .num_resources	= ARRAY_SIZE(nor_flash_resources), | 
|  | 239 | .resource	= nor_flash_resources, | 
|  | 240 | }; | 
|  | 241 |  | 
| Paul Mundt | c293396 | 2008-03-25 16:49:30 +0900 | [diff] [blame] | 242 | static struct resource smbus_resources[] = { | 
|  | 243 | [0] = { | 
|  | 244 | .start	= PA_SMCR, | 
|  | 245 | .end	= PA_SMCR + 0x100 - 1, | 
|  | 246 | .flags	= IORESOURCE_MEM, | 
|  | 247 | }, | 
|  | 248 | [1] = { | 
|  | 249 | .start	= IRQ_SMBUS, | 
|  | 250 | .end	= IRQ_SMBUS, | 
|  | 251 | .flags	= IORESOURCE_IRQ, | 
|  | 252 | }, | 
|  | 253 | }; | 
|  | 254 |  | 
|  | 255 | static struct platform_device smbus_device = { | 
|  | 256 | .name		= "i2c-highlander", | 
|  | 257 | .id		= 0, | 
|  | 258 | .num_resources	= ARRAY_SIZE(smbus_resources), | 
|  | 259 | .resource	= smbus_resources, | 
|  | 260 | }; | 
|  | 261 |  | 
|  | 262 | static struct i2c_board_info __initdata highlander_i2c_devices[] = { | 
|  | 263 | { | 
| Jean Delvare | 3760f73 | 2008-04-29 23:11:40 +0200 | [diff] [blame] | 264 | I2C_BOARD_INFO("r2025sd", 0x32), | 
| Paul Mundt | c293396 | 2008-03-25 16:49:30 +0900 | [diff] [blame] | 265 | }, | 
|  | 266 | }; | 
| Magnus Damm | c6f93a3 | 2007-10-15 10:36:45 +0900 | [diff] [blame] | 267 |  | 
| Paul Mundt | 5283ecb | 2006-09-27 15:59:17 +0900 | [diff] [blame] | 268 | static struct platform_device *r7780rp_devices[] __initdata = { | 
| Yoshihiro Shimoda | e6c972f | 2007-07-17 13:38:54 +0900 | [diff] [blame] | 269 | &r8a66597_usb_host_device, | 
|  | 270 | &m66592_usb_peripheral_device, | 
| Paul Mundt | 3b4d953 | 2007-02-13 15:42:28 +0900 | [diff] [blame] | 271 | &heartbeat_device, | 
| Paul Mundt | c293396 | 2008-03-25 16:49:30 +0900 | [diff] [blame] | 272 | &smbus_device, | 
| Nobuhiro Iwamatsu | 15ba400 | 2009-06-16 07:42:20 +0000 | [diff] [blame] | 273 | &nor_flash_device, | 
| Magnus Damm | da2d7f4 | 2008-01-25 16:04:29 +0900 | [diff] [blame] | 274 | #ifndef CONFIG_SH_R7780RP | 
| Magnus Damm | c6f93a3 | 2007-10-15 10:36:45 +0900 | [diff] [blame] | 275 | &ax88796_device, | 
| Magnus Damm | da2d7f4 | 2008-01-25 16:04:29 +0900 | [diff] [blame] | 276 | #endif | 
| Paul Mundt | 5283ecb | 2006-09-27 15:59:17 +0900 | [diff] [blame] | 277 | }; | 
|  | 278 |  | 
| Magnus Damm | c1a34e4 | 2008-02-07 20:23:53 +0900 | [diff] [blame] | 279 | /* | 
|  | 280 | * The CF is connected using a 16-bit bus where 8-bit operations are | 
|  | 281 | * unsupported. The linux ata driver is however using 8-bit operations, so | 
|  | 282 | * insert a trapped io filter to convert 8-bit operations into 16-bit. | 
|  | 283 | */ | 
|  | 284 | static struct trapped_io cf_trapped_io = { | 
|  | 285 | .resource		= cf_ide_resources, | 
|  | 286 | .num_resources		= 2, | 
|  | 287 | .minimum_bus_width	= 16, | 
|  | 288 | }; | 
|  | 289 |  | 
| Paul Mundt | 5283ecb | 2006-09-27 15:59:17 +0900 | [diff] [blame] | 290 | static int __init r7780rp_devices_setup(void) | 
|  | 291 | { | 
| Paul Mundt | c293396 | 2008-03-25 16:49:30 +0900 | [diff] [blame] | 292 | int ret = 0; | 
|  | 293 |  | 
| Magnus Damm | c1a34e4 | 2008-02-07 20:23:53 +0900 | [diff] [blame] | 294 | #ifndef CONFIG_SH_R7780RP | 
|  | 295 | if (register_trapped_io(&cf_trapped_io) == 0) | 
| Paul Mundt | c293396 | 2008-03-25 16:49:30 +0900 | [diff] [blame] | 296 | ret |= platform_device_register(&cf_ide_device); | 
| Magnus Damm | c1a34e4 | 2008-02-07 20:23:53 +0900 | [diff] [blame] | 297 | #endif | 
| Paul Mundt | c293396 | 2008-03-25 16:49:30 +0900 | [diff] [blame] | 298 |  | 
|  | 299 | ret |= platform_add_devices(r7780rp_devices, | 
| Paul Mundt | 5283ecb | 2006-09-27 15:59:17 +0900 | [diff] [blame] | 300 | ARRAY_SIZE(r7780rp_devices)); | 
| Paul Mundt | c293396 | 2008-03-25 16:49:30 +0900 | [diff] [blame] | 301 |  | 
|  | 302 | ret |= i2c_register_board_info(0, highlander_i2c_devices, | 
|  | 303 | ARRAY_SIZE(highlander_i2c_devices)); | 
|  | 304 |  | 
|  | 305 | return ret; | 
| Paul Mundt | 5283ecb | 2006-09-27 15:59:17 +0900 | [diff] [blame] | 306 | } | 
| Paul Mundt | 32351a2 | 2007-03-12 14:38:59 +0900 | [diff] [blame] | 307 | device_initcall(r7780rp_devices_setup); | 
| Paul Mundt | 5283ecb | 2006-09-27 15:59:17 +0900 | [diff] [blame] | 308 |  | 
|  | 309 | /* | 
|  | 310 | * Platform specific clocks | 
|  | 311 | */ | 
| Nobuhiro Iwamatsu | 39f4490 | 2009-06-16 07:44:10 +0000 | [diff] [blame] | 312 | static int ivdr_clk_enable(struct clk *clk) | 
| Paul Mundt | 5283ecb | 2006-09-27 15:59:17 +0900 | [diff] [blame] | 313 | { | 
| Paul Mundt | 9d56dd3 | 2010-01-26 12:58:40 +0900 | [diff] [blame] | 314 | __raw_writew(__raw_readw(PA_IVDRCTL) | (1 << IVDR_CK_ON), PA_IVDRCTL); | 
| Nobuhiro Iwamatsu | 39f4490 | 2009-06-16 07:44:10 +0000 | [diff] [blame] | 315 | return 0; | 
| Paul Mundt | 5283ecb | 2006-09-27 15:59:17 +0900 | [diff] [blame] | 316 | } | 
|  | 317 |  | 
|  | 318 | static void ivdr_clk_disable(struct clk *clk) | 
|  | 319 | { | 
| Paul Mundt | 9d56dd3 | 2010-01-26 12:58:40 +0900 | [diff] [blame] | 320 | __raw_writew(__raw_readw(PA_IVDRCTL) & ~(1 << IVDR_CK_ON), PA_IVDRCTL); | 
| Paul Mundt | 5283ecb | 2006-09-27 15:59:17 +0900 | [diff] [blame] | 321 | } | 
|  | 322 |  | 
|  | 323 | static struct clk_ops ivdr_clk_ops = { | 
|  | 324 | .enable		= ivdr_clk_enable, | 
|  | 325 | .disable	= ivdr_clk_disable, | 
|  | 326 | }; | 
|  | 327 |  | 
|  | 328 | static struct clk ivdr_clk = { | 
|  | 329 | .name		= "ivdr_clk", | 
|  | 330 | .ops		= &ivdr_clk_ops, | 
|  | 331 | }; | 
|  | 332 |  | 
|  | 333 | static struct clk *r7780rp_clocks[] = { | 
|  | 334 | &ivdr_clk, | 
|  | 335 | }; | 
|  | 336 |  | 
| Paul Mundt | 5283ecb | 2006-09-27 15:59:17 +0900 | [diff] [blame] | 337 | static void r7780rp_power_off(void) | 
|  | 338 | { | 
| Paul Mundt | 32351a2 | 2007-03-12 14:38:59 +0900 | [diff] [blame] | 339 | if (mach_is_r7780mp() || mach_is_r7785rp()) | 
| Paul Mundt | 9d56dd3 | 2010-01-26 12:58:40 +0900 | [diff] [blame] | 340 | __raw_writew(0x0001, PA_POFF); | 
| Paul Mundt | 5283ecb | 2006-09-27 15:59:17 +0900 | [diff] [blame] | 341 | } | 
|  | 342 |  | 
|  | 343 | /* | 
|  | 344 | * Initialize the board | 
|  | 345 | */ | 
| Paul Mundt | 32351a2 | 2007-03-12 14:38:59 +0900 | [diff] [blame] | 346 | static void __init highlander_setup(char **cmdline_p) | 
| Paul Mundt | 5283ecb | 2006-09-27 15:59:17 +0900 | [diff] [blame] | 347 | { | 
| Paul Mundt | 9d56dd3 | 2010-01-26 12:58:40 +0900 | [diff] [blame] | 348 | u16 ver = __raw_readw(PA_VERREG); | 
| Paul Mundt | 5283ecb | 2006-09-27 15:59:17 +0900 | [diff] [blame] | 349 | int i; | 
|  | 350 |  | 
| Paul Mundt | 32351a2 | 2007-03-12 14:38:59 +0900 | [diff] [blame] | 351 | printk(KERN_INFO "Renesas Solutions Highlander %s support.\n", | 
|  | 352 | mach_is_r7780rp() ? "R7780RP-1" : | 
|  | 353 | mach_is_r7780mp() ? "R7780MP"	 : | 
|  | 354 | "R7785RP"); | 
| Paul Mundt | 5283ecb | 2006-09-27 15:59:17 +0900 | [diff] [blame] | 355 |  | 
|  | 356 | printk(KERN_INFO "Board version: %d (revision %d), " | 
|  | 357 | "FPGA version: %d (revision %d)\n", | 
|  | 358 | (ver >> 12) & 0xf, (ver >> 8) & 0xf, | 
|  | 359 | (ver >>  4) & 0xf, ver & 0xf); | 
|  | 360 |  | 
| Paul Mundt | 61dc6ea | 2008-10-23 12:35:43 +0900 | [diff] [blame] | 361 | highlander_plat_pinmux_setup(); | 
|  | 362 |  | 
| Paul Mundt | 5283ecb | 2006-09-27 15:59:17 +0900 | [diff] [blame] | 363 | /* | 
|  | 364 | * Enable the important clocks right away.. | 
|  | 365 | */ | 
|  | 366 | for (i = 0; i < ARRAY_SIZE(r7780rp_clocks); i++) { | 
|  | 367 | struct clk *clk = r7780rp_clocks[i]; | 
|  | 368 |  | 
|  | 369 | clk_register(clk); | 
|  | 370 | clk_enable(clk); | 
|  | 371 | } | 
|  | 372 |  | 
| Paul Mundt | 9d56dd3 | 2010-01-26 12:58:40 +0900 | [diff] [blame] | 373 | __raw_writew(0x0000, PA_OBLED);	/* Clear LED. */ | 
| Paul Mundt | 32351a2 | 2007-03-12 14:38:59 +0900 | [diff] [blame] | 374 |  | 
|  | 375 | if (mach_is_r7780rp()) | 
| Paul Mundt | 9d56dd3 | 2010-01-26 12:58:40 +0900 | [diff] [blame] | 376 | __raw_writew(0x0001, PA_SDPOW);	/* SD Power ON */ | 
| Paul Mundt | 32351a2 | 2007-03-12 14:38:59 +0900 | [diff] [blame] | 377 |  | 
| Paul Mundt | 9d56dd3 | 2010-01-26 12:58:40 +0900 | [diff] [blame] | 378 | __raw_writew(__raw_readw(PA_IVDRCTL) | 0x01, PA_IVDRCTL);	/* Si13112 */ | 
| Paul Mundt | 5283ecb | 2006-09-27 15:59:17 +0900 | [diff] [blame] | 379 |  | 
|  | 380 | pm_power_off = r7780rp_power_off; | 
|  | 381 | } | 
| Paul Mundt | 2c7834a | 2006-09-27 18:17:31 +0900 | [diff] [blame] | 382 |  | 
| Magnus Damm | 897cfcd8 | 2007-09-10 12:06:03 +0900 | [diff] [blame] | 383 | static unsigned char irl2irq[HL_NR_IRL]; | 
|  | 384 |  | 
| Paul Mundt | ae8a534 | 2008-04-25 17:58:21 +0900 | [diff] [blame] | 385 | static int highlander_irq_demux(int irq) | 
| Magnus Damm | 897cfcd8 | 2007-09-10 12:06:03 +0900 | [diff] [blame] | 386 | { | 
| Roel Kluin | 9016332 | 2009-11-02 16:14:42 +0000 | [diff] [blame] | 387 | if (irq >= HL_NR_IRL || irq < 0 || !irl2irq[irq]) | 
| Magnus Damm | 897cfcd8 | 2007-09-10 12:06:03 +0900 | [diff] [blame] | 388 | return irq; | 
|  | 389 |  | 
|  | 390 | return irl2irq[irq]; | 
|  | 391 | } | 
|  | 392 |  | 
| Paul Mundt | ae8a534 | 2008-04-25 17:58:21 +0900 | [diff] [blame] | 393 | static void __init highlander_init_irq(void) | 
| Magnus Damm | 897cfcd8 | 2007-09-10 12:06:03 +0900 | [diff] [blame] | 394 | { | 
| Paul Mundt | ae8a534 | 2008-04-25 17:58:21 +0900 | [diff] [blame] | 395 | unsigned char *ucp = highlander_plat_irq_setup(); | 
| Magnus Damm | 897cfcd8 | 2007-09-10 12:06:03 +0900 | [diff] [blame] | 396 |  | 
|  | 397 | if (ucp) { | 
|  | 398 | plat_irq_setup_pins(IRQ_MODE_IRL3210); | 
|  | 399 | memcpy(irl2irq, ucp, HL_NR_IRL); | 
|  | 400 | } | 
|  | 401 | } | 
|  | 402 |  | 
| Paul Mundt | 2c7834a | 2006-09-27 18:17:31 +0900 | [diff] [blame] | 403 | /* | 
|  | 404 | * The Machine Vector | 
|  | 405 | */ | 
| Paul Mundt | 82f81f4 | 2007-05-15 15:19:34 +0900 | [diff] [blame] | 406 | static struct sh_machine_vector mv_highlander __initmv = { | 
| Paul Mundt | 32351a2 | 2007-03-12 14:38:59 +0900 | [diff] [blame] | 407 | .mv_name		= "Highlander", | 
| Paul Mundt | 32351a2 | 2007-03-12 14:38:59 +0900 | [diff] [blame] | 408 | .mv_setup		= highlander_setup, | 
|  | 409 | .mv_init_irq		= highlander_init_irq, | 
| Magnus Damm | 897cfcd8 | 2007-09-10 12:06:03 +0900 | [diff] [blame] | 410 | .mv_irq_demux		= highlander_irq_demux, | 
| Paul Mundt | 2c7834a | 2006-09-27 18:17:31 +0900 | [diff] [blame] | 411 | }; |