Kuninori Morimoto | 6c01ba4 | 2011-11-10 18:45:52 -0800 | [diff] [blame] | 1 | /* |
| 2 | * R8A7740 processor support |
| 3 | * |
| 4 | * Copyright (C) 2011 Renesas Solutions Corp. |
| 5 | * Copyright (C) 2011 Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> |
| 6 | * |
| 7 | * This program is free software; you can redistribute it and/or modify |
| 8 | * it under the terms of the GNU General Public License as published by |
| 9 | * the Free Software Foundation; version 2 of the License. |
| 10 | * |
| 11 | * This program is distributed in the hope that it will be useful, |
| 12 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 14 | * GNU General Public License for more details. |
| 15 | * |
| 16 | * You should have received a copy of the GNU General Public License |
| 17 | * along with this program; if not, write to the Free Software |
| 18 | * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA |
| 19 | */ |
Kuninori Morimoto | 6831f3a | 2011-11-10 18:46:23 -0800 | [diff] [blame] | 20 | #include <linux/delay.h> |
Kuninori Morimoto | 3841e6f5 | 2012-04-24 02:10:05 -0700 | [diff] [blame] | 21 | #include <linux/dma-mapping.h> |
Kuninori Morimoto | 6c01ba4 | 2011-11-10 18:45:52 -0800 | [diff] [blame] | 22 | #include <linux/kernel.h> |
| 23 | #include <linux/init.h> |
Kuninori Morimoto | 6831f3a | 2011-11-10 18:46:23 -0800 | [diff] [blame] | 24 | #include <linux/io.h> |
Kuninori Morimoto | 6c01ba4 | 2011-11-10 18:45:52 -0800 | [diff] [blame] | 25 | #include <linux/platform_device.h> |
| 26 | #include <linux/serial_sci.h> |
| 27 | #include <linux/sh_timer.h> |
| 28 | #include <mach/r8a7740.h> |
Magnus Damm | d3ab722 | 2012-02-29 21:37:35 +0900 | [diff] [blame] | 29 | #include <mach/common.h> |
Rob Herring | 250a272 | 2012-01-03 16:57:33 -0600 | [diff] [blame] | 30 | #include <mach/irqs.h> |
Kuninori Morimoto | 6c01ba4 | 2011-11-10 18:45:52 -0800 | [diff] [blame] | 31 | #include <asm/mach-types.h> |
Magnus Damm | d3ab722 | 2012-02-29 21:37:35 +0900 | [diff] [blame] | 32 | #include <asm/mach/map.h> |
Kuninori Morimoto | 6c01ba4 | 2011-11-10 18:45:52 -0800 | [diff] [blame] | 33 | #include <asm/mach/arch.h> |
Magnus Damm | 23e5bc0 | 2012-03-06 17:36:53 +0900 | [diff] [blame] | 34 | #include <asm/mach/time.h> |
Kuninori Morimoto | 6c01ba4 | 2011-11-10 18:45:52 -0800 | [diff] [blame] | 35 | |
Magnus Damm | d3ab722 | 2012-02-29 21:37:35 +0900 | [diff] [blame] | 36 | static struct map_desc r8a7740_io_desc[] __initdata = { |
| 37 | /* |
| 38 | * for CPGA/INTC/PFC |
| 39 | * 0xe6000000-0xefffffff -> 0xe6000000-0xefffffff |
| 40 | */ |
| 41 | { |
| 42 | .virtual = 0xe6000000, |
| 43 | .pfn = __phys_to_pfn(0xe6000000), |
| 44 | .length = 160 << 20, |
| 45 | .type = MT_DEVICE_NONSHARED |
| 46 | }, |
| 47 | #ifdef CONFIG_CACHE_L2X0 |
| 48 | /* |
| 49 | * for l2x0_init() |
| 50 | * 0xf0100000-0xf0101000 -> 0xf0002000-0xf0003000 |
| 51 | */ |
| 52 | { |
| 53 | .virtual = 0xf0002000, |
| 54 | .pfn = __phys_to_pfn(0xf0100000), |
| 55 | .length = PAGE_SIZE, |
| 56 | .type = MT_DEVICE_NONSHARED |
| 57 | }, |
| 58 | #endif |
| 59 | }; |
| 60 | |
| 61 | void __init r8a7740_map_io(void) |
| 62 | { |
| 63 | iotable_init(r8a7740_io_desc, ARRAY_SIZE(r8a7740_io_desc)); |
Kuninori Morimoto | 3841e6f5 | 2012-04-24 02:10:05 -0700 | [diff] [blame] | 64 | |
| 65 | /* |
| 66 | * DMA memory at 0xff200000 - 0xffdfffff. The default 2MB size isn't |
| 67 | * enough to allocate the frame buffer memory. |
| 68 | */ |
| 69 | init_consistent_dma_size(12 << 20); |
Magnus Damm | d3ab722 | 2012-02-29 21:37:35 +0900 | [diff] [blame] | 70 | } |
| 71 | |
Kuninori Morimoto | 6c01ba4 | 2011-11-10 18:45:52 -0800 | [diff] [blame] | 72 | /* SCIFA0 */ |
| 73 | static struct plat_sci_port scif0_platform_data = { |
| 74 | .mapbase = 0xe6c40000, |
| 75 | .flags = UPF_BOOT_AUTOCONF, |
| 76 | .scscr = SCSCR_RE | SCSCR_TE, |
| 77 | .scbrr_algo_id = SCBRR_ALGO_4, |
| 78 | .type = PORT_SCIFA, |
Kuninori Morimoto | 215d6cc | 2011-11-10 18:46:35 -0800 | [diff] [blame] | 79 | .irqs = SCIx_IRQ_MUXED(evt2irq(0x0c00)), |
Kuninori Morimoto | 6c01ba4 | 2011-11-10 18:45:52 -0800 | [diff] [blame] | 80 | }; |
| 81 | |
| 82 | static struct platform_device scif0_device = { |
| 83 | .name = "sh-sci", |
| 84 | .id = 0, |
| 85 | .dev = { |
| 86 | .platform_data = &scif0_platform_data, |
| 87 | }, |
| 88 | }; |
| 89 | |
| 90 | /* SCIFA1 */ |
| 91 | static struct plat_sci_port scif1_platform_data = { |
| 92 | .mapbase = 0xe6c50000, |
| 93 | .flags = UPF_BOOT_AUTOCONF, |
| 94 | .scscr = SCSCR_RE | SCSCR_TE, |
| 95 | .scbrr_algo_id = SCBRR_ALGO_4, |
| 96 | .type = PORT_SCIFA, |
Kuninori Morimoto | 215d6cc | 2011-11-10 18:46:35 -0800 | [diff] [blame] | 97 | .irqs = SCIx_IRQ_MUXED(evt2irq(0x0c20)), |
Kuninori Morimoto | 6c01ba4 | 2011-11-10 18:45:52 -0800 | [diff] [blame] | 98 | }; |
| 99 | |
| 100 | static struct platform_device scif1_device = { |
| 101 | .name = "sh-sci", |
| 102 | .id = 1, |
| 103 | .dev = { |
| 104 | .platform_data = &scif1_platform_data, |
| 105 | }, |
| 106 | }; |
| 107 | |
| 108 | /* SCIFA2 */ |
| 109 | static struct plat_sci_port scif2_platform_data = { |
| 110 | .mapbase = 0xe6c60000, |
| 111 | .flags = UPF_BOOT_AUTOCONF, |
| 112 | .scscr = SCSCR_RE | SCSCR_TE, |
| 113 | .scbrr_algo_id = SCBRR_ALGO_4, |
| 114 | .type = PORT_SCIFA, |
Kuninori Morimoto | 215d6cc | 2011-11-10 18:46:35 -0800 | [diff] [blame] | 115 | .irqs = SCIx_IRQ_MUXED(evt2irq(0x0c40)), |
Kuninori Morimoto | 6c01ba4 | 2011-11-10 18:45:52 -0800 | [diff] [blame] | 116 | }; |
| 117 | |
| 118 | static struct platform_device scif2_device = { |
| 119 | .name = "sh-sci", |
| 120 | .id = 2, |
| 121 | .dev = { |
| 122 | .platform_data = &scif2_platform_data, |
| 123 | }, |
| 124 | }; |
| 125 | |
| 126 | /* SCIFA3 */ |
| 127 | static struct plat_sci_port scif3_platform_data = { |
| 128 | .mapbase = 0xe6c70000, |
| 129 | .flags = UPF_BOOT_AUTOCONF, |
| 130 | .scscr = SCSCR_RE | SCSCR_TE, |
| 131 | .scbrr_algo_id = SCBRR_ALGO_4, |
| 132 | .type = PORT_SCIFA, |
Kuninori Morimoto | 215d6cc | 2011-11-10 18:46:35 -0800 | [diff] [blame] | 133 | .irqs = SCIx_IRQ_MUXED(evt2irq(0x0c60)), |
Kuninori Morimoto | 6c01ba4 | 2011-11-10 18:45:52 -0800 | [diff] [blame] | 134 | }; |
| 135 | |
| 136 | static struct platform_device scif3_device = { |
| 137 | .name = "sh-sci", |
| 138 | .id = 3, |
| 139 | .dev = { |
| 140 | .platform_data = &scif3_platform_data, |
| 141 | }, |
| 142 | }; |
| 143 | |
| 144 | /* SCIFA4 */ |
| 145 | static struct plat_sci_port scif4_platform_data = { |
| 146 | .mapbase = 0xe6c80000, |
| 147 | .flags = UPF_BOOT_AUTOCONF, |
| 148 | .scscr = SCSCR_RE | SCSCR_TE, |
| 149 | .scbrr_algo_id = SCBRR_ALGO_4, |
| 150 | .type = PORT_SCIFA, |
Kuninori Morimoto | 215d6cc | 2011-11-10 18:46:35 -0800 | [diff] [blame] | 151 | .irqs = SCIx_IRQ_MUXED(evt2irq(0x0d20)), |
Kuninori Morimoto | 6c01ba4 | 2011-11-10 18:45:52 -0800 | [diff] [blame] | 152 | }; |
| 153 | |
| 154 | static struct platform_device scif4_device = { |
| 155 | .name = "sh-sci", |
| 156 | .id = 4, |
| 157 | .dev = { |
| 158 | .platform_data = &scif4_platform_data, |
| 159 | }, |
| 160 | }; |
| 161 | |
| 162 | /* SCIFA5 */ |
| 163 | static struct plat_sci_port scif5_platform_data = { |
| 164 | .mapbase = 0xe6cb0000, |
| 165 | .flags = UPF_BOOT_AUTOCONF, |
| 166 | .scscr = SCSCR_RE | SCSCR_TE, |
| 167 | .scbrr_algo_id = SCBRR_ALGO_4, |
| 168 | .type = PORT_SCIFA, |
Kuninori Morimoto | 215d6cc | 2011-11-10 18:46:35 -0800 | [diff] [blame] | 169 | .irqs = SCIx_IRQ_MUXED(evt2irq(0x0d40)), |
Kuninori Morimoto | 6c01ba4 | 2011-11-10 18:45:52 -0800 | [diff] [blame] | 170 | }; |
| 171 | |
| 172 | static struct platform_device scif5_device = { |
| 173 | .name = "sh-sci", |
| 174 | .id = 5, |
| 175 | .dev = { |
| 176 | .platform_data = &scif5_platform_data, |
| 177 | }, |
| 178 | }; |
| 179 | |
| 180 | /* SCIFA6 */ |
| 181 | static struct plat_sci_port scif6_platform_data = { |
| 182 | .mapbase = 0xe6cc0000, |
| 183 | .flags = UPF_BOOT_AUTOCONF, |
| 184 | .scscr = SCSCR_RE | SCSCR_TE, |
| 185 | .scbrr_algo_id = SCBRR_ALGO_4, |
| 186 | .type = PORT_SCIFA, |
Kuninori Morimoto | 215d6cc | 2011-11-10 18:46:35 -0800 | [diff] [blame] | 187 | .irqs = SCIx_IRQ_MUXED(evt2irq(0x04c0)), |
Kuninori Morimoto | 6c01ba4 | 2011-11-10 18:45:52 -0800 | [diff] [blame] | 188 | }; |
| 189 | |
| 190 | static struct platform_device scif6_device = { |
| 191 | .name = "sh-sci", |
| 192 | .id = 6, |
| 193 | .dev = { |
| 194 | .platform_data = &scif6_platform_data, |
| 195 | }, |
| 196 | }; |
| 197 | |
| 198 | /* SCIFA7 */ |
| 199 | static struct plat_sci_port scif7_platform_data = { |
| 200 | .mapbase = 0xe6cd0000, |
| 201 | .flags = UPF_BOOT_AUTOCONF, |
| 202 | .scscr = SCSCR_RE | SCSCR_TE, |
| 203 | .scbrr_algo_id = SCBRR_ALGO_4, |
| 204 | .type = PORT_SCIFA, |
Kuninori Morimoto | 215d6cc | 2011-11-10 18:46:35 -0800 | [diff] [blame] | 205 | .irqs = SCIx_IRQ_MUXED(evt2irq(0x04e0)), |
Kuninori Morimoto | 6c01ba4 | 2011-11-10 18:45:52 -0800 | [diff] [blame] | 206 | }; |
| 207 | |
| 208 | static struct platform_device scif7_device = { |
| 209 | .name = "sh-sci", |
| 210 | .id = 7, |
| 211 | .dev = { |
| 212 | .platform_data = &scif7_platform_data, |
| 213 | }, |
| 214 | }; |
| 215 | |
| 216 | /* SCIFB */ |
| 217 | static struct plat_sci_port scifb_platform_data = { |
| 218 | .mapbase = 0xe6c30000, |
| 219 | .flags = UPF_BOOT_AUTOCONF, |
| 220 | .scscr = SCSCR_RE | SCSCR_TE, |
| 221 | .scbrr_algo_id = SCBRR_ALGO_4, |
| 222 | .type = PORT_SCIFB, |
Kuninori Morimoto | 215d6cc | 2011-11-10 18:46:35 -0800 | [diff] [blame] | 223 | .irqs = SCIx_IRQ_MUXED(evt2irq(0x0d60)), |
Kuninori Morimoto | 6c01ba4 | 2011-11-10 18:45:52 -0800 | [diff] [blame] | 224 | }; |
| 225 | |
| 226 | static struct platform_device scifb_device = { |
| 227 | .name = "sh-sci", |
| 228 | .id = 8, |
| 229 | .dev = { |
| 230 | .platform_data = &scifb_platform_data, |
| 231 | }, |
| 232 | }; |
| 233 | |
| 234 | /* CMT */ |
| 235 | static struct sh_timer_config cmt10_platform_data = { |
| 236 | .name = "CMT10", |
| 237 | .channel_offset = 0x10, |
| 238 | .timer_bit = 0, |
| 239 | .clockevent_rating = 125, |
| 240 | .clocksource_rating = 125, |
| 241 | }; |
| 242 | |
| 243 | static struct resource cmt10_resources[] = { |
| 244 | [0] = { |
| 245 | .name = "CMT10", |
| 246 | .start = 0xe6138010, |
| 247 | .end = 0xe613801b, |
| 248 | .flags = IORESOURCE_MEM, |
| 249 | }, |
| 250 | [1] = { |
Kuninori Morimoto | 215d6cc | 2011-11-10 18:46:35 -0800 | [diff] [blame] | 251 | .start = evt2irq(0x0b00), |
Kuninori Morimoto | 6c01ba4 | 2011-11-10 18:45:52 -0800 | [diff] [blame] | 252 | .flags = IORESOURCE_IRQ, |
| 253 | }, |
| 254 | }; |
| 255 | |
| 256 | static struct platform_device cmt10_device = { |
| 257 | .name = "sh_cmt", |
| 258 | .id = 10, |
| 259 | .dev = { |
| 260 | .platform_data = &cmt10_platform_data, |
| 261 | }, |
| 262 | .resource = cmt10_resources, |
| 263 | .num_resources = ARRAY_SIZE(cmt10_resources), |
| 264 | }; |
| 265 | |
| 266 | static struct platform_device *r8a7740_early_devices[] __initdata = { |
| 267 | &scif0_device, |
| 268 | &scif1_device, |
| 269 | &scif2_device, |
| 270 | &scif3_device, |
| 271 | &scif4_device, |
| 272 | &scif5_device, |
| 273 | &scif6_device, |
| 274 | &scif7_device, |
| 275 | &scifb_device, |
| 276 | &cmt10_device, |
| 277 | }; |
| 278 | |
Kuninori Morimoto | 6831f3a | 2011-11-10 18:46:23 -0800 | [diff] [blame] | 279 | /* I2C */ |
| 280 | static struct resource i2c0_resources[] = { |
| 281 | [0] = { |
| 282 | .name = "IIC0", |
| 283 | .start = 0xfff20000, |
| 284 | .end = 0xfff20425 - 1, |
| 285 | .flags = IORESOURCE_MEM, |
| 286 | }, |
| 287 | [1] = { |
Kuninori Morimoto | 215d6cc | 2011-11-10 18:46:35 -0800 | [diff] [blame] | 288 | .start = intcs_evt2irq(0xe00), |
| 289 | .end = intcs_evt2irq(0xe60), |
Kuninori Morimoto | 6831f3a | 2011-11-10 18:46:23 -0800 | [diff] [blame] | 290 | .flags = IORESOURCE_IRQ, |
| 291 | }, |
| 292 | }; |
| 293 | |
| 294 | static struct resource i2c1_resources[] = { |
| 295 | [0] = { |
| 296 | .name = "IIC1", |
| 297 | .start = 0xe6c20000, |
| 298 | .end = 0xe6c20425 - 1, |
| 299 | .flags = IORESOURCE_MEM, |
| 300 | }, |
| 301 | [1] = { |
Kuninori Morimoto | 215d6cc | 2011-11-10 18:46:35 -0800 | [diff] [blame] | 302 | .start = evt2irq(0x780), /* IIC1_ALI1 */ |
| 303 | .end = evt2irq(0x7e0), /* IIC1_DTEI1 */ |
Kuninori Morimoto | 6831f3a | 2011-11-10 18:46:23 -0800 | [diff] [blame] | 304 | .flags = IORESOURCE_IRQ, |
| 305 | }, |
| 306 | }; |
| 307 | |
| 308 | static struct platform_device i2c0_device = { |
| 309 | .name = "i2c-sh_mobile", |
| 310 | .id = 0, |
| 311 | .resource = i2c0_resources, |
| 312 | .num_resources = ARRAY_SIZE(i2c0_resources), |
| 313 | }; |
| 314 | |
| 315 | static struct platform_device i2c1_device = { |
| 316 | .name = "i2c-sh_mobile", |
| 317 | .id = 1, |
| 318 | .resource = i2c1_resources, |
| 319 | .num_resources = ARRAY_SIZE(i2c1_resources), |
| 320 | }; |
| 321 | |
| 322 | static struct platform_device *r8a7740_late_devices[] __initdata = { |
| 323 | &i2c0_device, |
| 324 | &i2c1_device, |
| 325 | }; |
| 326 | |
| 327 | #define ICCR 0x0004 |
| 328 | #define ICSTART 0x0070 |
| 329 | |
| 330 | #define i2c_read(reg, offset) ioread8(reg + offset) |
| 331 | #define i2c_write(reg, offset, data) iowrite8(data, reg + offset) |
| 332 | |
| 333 | /* |
| 334 | * r8a7740 chip has lasting errata on I2C I/O pad reset. |
| 335 | * this is work-around for it. |
| 336 | */ |
| 337 | static void r8a7740_i2c_workaround(struct platform_device *pdev) |
| 338 | { |
| 339 | struct resource *res; |
| 340 | void __iomem *reg; |
| 341 | |
| 342 | res = platform_get_resource(pdev, IORESOURCE_MEM, 0); |
| 343 | if (unlikely(!res)) { |
| 344 | pr_err("r8a7740 i2c workaround fail (cannot find resource)\n"); |
| 345 | return; |
| 346 | } |
| 347 | |
| 348 | reg = ioremap(res->start, resource_size(res)); |
| 349 | if (unlikely(!reg)) { |
| 350 | pr_err("r8a7740 i2c workaround fail (cannot map IO)\n"); |
| 351 | return; |
| 352 | } |
| 353 | |
| 354 | i2c_write(reg, ICCR, i2c_read(reg, ICCR) | 0x80); |
| 355 | i2c_read(reg, ICCR); /* dummy read */ |
| 356 | |
| 357 | i2c_write(reg, ICSTART, i2c_read(reg, ICSTART) | 0x10); |
| 358 | i2c_read(reg, ICSTART); /* dummy read */ |
| 359 | |
Kuninori Morimoto | 4228716 | 2012-04-13 02:41:06 -0700 | [diff] [blame] | 360 | udelay(10); |
Kuninori Morimoto | 6831f3a | 2011-11-10 18:46:23 -0800 | [diff] [blame] | 361 | |
| 362 | i2c_write(reg, ICCR, 0x01); |
Kuninori Morimoto | 6831f3a | 2011-11-10 18:46:23 -0800 | [diff] [blame] | 363 | i2c_write(reg, ICSTART, 0x00); |
Kuninori Morimoto | 4228716 | 2012-04-13 02:41:06 -0700 | [diff] [blame] | 364 | |
| 365 | udelay(10); |
Kuninori Morimoto | 6831f3a | 2011-11-10 18:46:23 -0800 | [diff] [blame] | 366 | |
| 367 | i2c_write(reg, ICCR, 0x10); |
Kuninori Morimoto | 4228716 | 2012-04-13 02:41:06 -0700 | [diff] [blame] | 368 | udelay(10); |
Kuninori Morimoto | 6831f3a | 2011-11-10 18:46:23 -0800 | [diff] [blame] | 369 | i2c_write(reg, ICCR, 0x00); |
Kuninori Morimoto | 4228716 | 2012-04-13 02:41:06 -0700 | [diff] [blame] | 370 | udelay(10); |
Kuninori Morimoto | 6831f3a | 2011-11-10 18:46:23 -0800 | [diff] [blame] | 371 | i2c_write(reg, ICCR, 0x10); |
Kuninori Morimoto | 4228716 | 2012-04-13 02:41:06 -0700 | [diff] [blame] | 372 | udelay(10); |
Kuninori Morimoto | 6831f3a | 2011-11-10 18:46:23 -0800 | [diff] [blame] | 373 | |
| 374 | iounmap(reg); |
| 375 | } |
| 376 | |
Kuninori Morimoto | 6c01ba4 | 2011-11-10 18:45:52 -0800 | [diff] [blame] | 377 | void __init r8a7740_add_standard_devices(void) |
| 378 | { |
Kuninori Morimoto | 6831f3a | 2011-11-10 18:46:23 -0800 | [diff] [blame] | 379 | /* I2C work-around */ |
| 380 | r8a7740_i2c_workaround(&i2c0_device); |
| 381 | r8a7740_i2c_workaround(&i2c1_device); |
| 382 | |
Kuninori Morimoto | 6c01ba4 | 2011-11-10 18:45:52 -0800 | [diff] [blame] | 383 | platform_add_devices(r8a7740_early_devices, |
| 384 | ARRAY_SIZE(r8a7740_early_devices)); |
Kuninori Morimoto | 6831f3a | 2011-11-10 18:46:23 -0800 | [diff] [blame] | 385 | platform_add_devices(r8a7740_late_devices, |
| 386 | ARRAY_SIZE(r8a7740_late_devices)); |
Kuninori Morimoto | 6c01ba4 | 2011-11-10 18:45:52 -0800 | [diff] [blame] | 387 | } |
| 388 | |
Magnus Damm | 23e5bc0 | 2012-03-06 17:36:53 +0900 | [diff] [blame] | 389 | static void __init r8a7740_earlytimer_init(void) |
| 390 | { |
| 391 | r8a7740_clock_init(0); |
| 392 | shmobile_earlytimer_init(); |
| 393 | } |
| 394 | |
Kuninori Morimoto | 6c01ba4 | 2011-11-10 18:45:52 -0800 | [diff] [blame] | 395 | void __init r8a7740_add_early_devices(void) |
| 396 | { |
| 397 | early_platform_add_devices(r8a7740_early_devices, |
| 398 | ARRAY_SIZE(r8a7740_early_devices)); |
Magnus Damm | d3ab722 | 2012-02-29 21:37:35 +0900 | [diff] [blame] | 399 | |
| 400 | /* setup early console here as well */ |
| 401 | shmobile_setup_console(); |
Magnus Damm | 23e5bc0 | 2012-03-06 17:36:53 +0900 | [diff] [blame] | 402 | |
| 403 | /* override timer setup with soc-specific code */ |
| 404 | shmobile_timer.init = r8a7740_earlytimer_init; |
Kuninori Morimoto | 6c01ba4 | 2011-11-10 18:45:52 -0800 | [diff] [blame] | 405 | } |