Magnus Damm | 0468b2d | 2013-03-28 00:49:34 +0900 | [diff] [blame] | 1 | /* |
| 2 | * r8a7790 processor support |
| 3 | * |
| 4 | * Copyright (C) 2013 Renesas Solutions Corp. |
| 5 | * Copyright (C) 2013 Magnus Damm |
| 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 | */ |
| 20 | |
| 21 | #include <linux/irq.h> |
Magnus Damm | 0468b2d | 2013-03-28 00:49:34 +0900 | [diff] [blame] | 22 | #include <linux/kernel.h> |
| 23 | #include <linux/of_platform.h> |
Laurent Pinchart | 43ca9cb | 2013-04-08 11:36:17 +0200 | [diff] [blame] | 24 | #include <linux/platform_data/gpio-rcar.h> |
Magnus Damm | 8f5ec0a | 2013-03-28 00:49:54 +0900 | [diff] [blame] | 25 | #include <linux/platform_data/irq-renesas-irqc.h> |
Magnus Damm | 99ade1a | 2013-06-28 20:27:04 +0900 | [diff] [blame] | 26 | #include <linux/serial_sci.h> |
| 27 | #include <linux/sh_timer.h> |
Magnus Damm | 0468b2d | 2013-03-28 00:49:34 +0900 | [diff] [blame] | 28 | #include <mach/common.h> |
| 29 | #include <mach/irqs.h> |
| 30 | #include <mach/r8a7790.h> |
| 31 | #include <asm/mach/arch.h> |
| 32 | |
Laurent Pinchart | cde214a | 2013-08-08 00:34:53 +0200 | [diff] [blame] | 33 | static const struct resource pfc_resources[] __initconst = { |
Magnus Damm | 69e351d | 2013-03-28 00:50:03 +0900 | [diff] [blame] | 34 | DEFINE_RES_MEM(0xe6060000, 0x250), |
| 35 | }; |
| 36 | |
Laurent Pinchart | 43ca9cb | 2013-04-08 11:36:17 +0200 | [diff] [blame] | 37 | #define R8A7790_GPIO(idx) \ |
Laurent Pinchart | cde214a | 2013-08-08 00:34:53 +0200 | [diff] [blame] | 38 | static const struct resource r8a7790_gpio##idx##_resources[] __initconst = { \ |
Laurent Pinchart | 43ca9cb | 2013-04-08 11:36:17 +0200 | [diff] [blame] | 39 | DEFINE_RES_MEM(0xe6050000 + 0x1000 * (idx), 0x50), \ |
| 40 | DEFINE_RES_IRQ(gic_spi(4 + (idx))), \ |
| 41 | }; \ |
| 42 | \ |
Laurent Pinchart | cde214a | 2013-08-08 00:34:53 +0200 | [diff] [blame] | 43 | static const struct gpio_rcar_config \ |
| 44 | r8a7790_gpio##idx##_platform_data __initconst = { \ |
Laurent Pinchart | 43ca9cb | 2013-04-08 11:36:17 +0200 | [diff] [blame] | 45 | .gpio_base = 32 * (idx), \ |
| 46 | .irq_base = 0, \ |
| 47 | .number_of_pins = 32, \ |
| 48 | .pctl_name = "pfc-r8a7790", \ |
Simon Horman | d93906b8 | 2013-05-13 17:53:52 +0900 | [diff] [blame] | 49 | .has_both_edge_trigger = 1, \ |
Laurent Pinchart | 43ca9cb | 2013-04-08 11:36:17 +0200 | [diff] [blame] | 50 | }; \ |
| 51 | |
| 52 | R8A7790_GPIO(0); |
| 53 | R8A7790_GPIO(1); |
| 54 | R8A7790_GPIO(2); |
| 55 | R8A7790_GPIO(3); |
| 56 | R8A7790_GPIO(4); |
| 57 | R8A7790_GPIO(5); |
| 58 | |
| 59 | #define r8a7790_register_gpio(idx) \ |
| 60 | platform_device_register_resndata(&platform_bus, "gpio_rcar", idx, \ |
| 61 | r8a7790_gpio##idx##_resources, \ |
| 62 | ARRAY_SIZE(r8a7790_gpio##idx##_resources), \ |
| 63 | &r8a7790_gpio##idx##_platform_data, \ |
| 64 | sizeof(r8a7790_gpio##idx##_platform_data)) |
| 65 | |
Kuninori Morimoto | b448c90 | 2013-11-28 19:02:12 -0800 | [diff] [blame^] | 66 | static struct resource i2c_resources[] __initdata = { |
| 67 | /* I2C0 */ |
| 68 | DEFINE_RES_MEM(0xE6508000, 0x40), |
| 69 | DEFINE_RES_IRQ(gic_spi(287)), |
| 70 | /* I2C1 */ |
| 71 | DEFINE_RES_MEM(0xE6518000, 0x40), |
| 72 | DEFINE_RES_IRQ(gic_spi(288)), |
| 73 | /* I2C2 */ |
| 74 | DEFINE_RES_MEM(0xE6530000, 0x40), |
| 75 | DEFINE_RES_IRQ(gic_spi(286)), |
| 76 | /* I2C3 */ |
| 77 | DEFINE_RES_MEM(0xE6540000, 0x40), |
| 78 | DEFINE_RES_IRQ(gic_spi(290)), |
| 79 | |
| 80 | }; |
| 81 | |
| 82 | #define r8a7790_register_i2c(idx) \ |
| 83 | platform_device_register_simple( \ |
| 84 | "i2c-rcar", idx, \ |
| 85 | i2c_resources + (2 * idx), 2); \ |
| 86 | |
Magnus Damm | 69e351d | 2013-03-28 00:50:03 +0900 | [diff] [blame] | 87 | void __init r8a7790_pinmux_init(void) |
| 88 | { |
| 89 | platform_device_register_simple("pfc-r8a7790", -1, pfc_resources, |
| 90 | ARRAY_SIZE(pfc_resources)); |
Laurent Pinchart | 43ca9cb | 2013-04-08 11:36:17 +0200 | [diff] [blame] | 91 | r8a7790_register_gpio(0); |
| 92 | r8a7790_register_gpio(1); |
| 93 | r8a7790_register_gpio(2); |
| 94 | r8a7790_register_gpio(3); |
| 95 | r8a7790_register_gpio(4); |
| 96 | r8a7790_register_gpio(5); |
Kuninori Morimoto | b448c90 | 2013-11-28 19:02:12 -0800 | [diff] [blame^] | 97 | r8a7790_register_i2c(0); |
| 98 | r8a7790_register_i2c(1); |
| 99 | r8a7790_register_i2c(2); |
| 100 | r8a7790_register_i2c(3); |
Magnus Damm | 69e351d | 2013-03-28 00:50:03 +0900 | [diff] [blame] | 101 | } |
| 102 | |
Magnus Damm | 55d9fab | 2013-03-28 00:49:44 +0900 | [diff] [blame] | 103 | #define SCIF_COMMON(scif_type, baseaddr, irq) \ |
| 104 | .type = scif_type, \ |
| 105 | .mapbase = baseaddr, \ |
| 106 | .flags = UPF_BOOT_AUTOCONF | UPF_IOREMAP, \ |
| 107 | .irqs = SCIx_IRQ_MUXED(irq) |
| 108 | |
| 109 | #define SCIFA_DATA(index, baseaddr, irq) \ |
| 110 | [index] = { \ |
| 111 | SCIF_COMMON(PORT_SCIFA, baseaddr, irq), \ |
| 112 | .scbrr_algo_id = SCBRR_ALGO_4, \ |
| 113 | .scscr = SCSCR_RE | SCSCR_TE | SCSCR_CKE0, \ |
| 114 | } |
| 115 | |
| 116 | #define SCIFB_DATA(index, baseaddr, irq) \ |
| 117 | [index] = { \ |
| 118 | SCIF_COMMON(PORT_SCIFB, baseaddr, irq), \ |
| 119 | .scbrr_algo_id = SCBRR_ALGO_4, \ |
| 120 | .scscr = SCSCR_RE | SCSCR_TE, \ |
| 121 | } |
| 122 | |
| 123 | #define SCIF_DATA(index, baseaddr, irq) \ |
| 124 | [index] = { \ |
| 125 | SCIF_COMMON(PORT_SCIF, baseaddr, irq), \ |
| 126 | .scbrr_algo_id = SCBRR_ALGO_2, \ |
Ulrich Hecht | c972f02 | 2013-05-31 17:57:04 +0200 | [diff] [blame] | 127 | .scscr = SCSCR_RE | SCSCR_TE, \ |
Magnus Damm | 55d9fab | 2013-03-28 00:49:44 +0900 | [diff] [blame] | 128 | } |
| 129 | |
Ulrich Hecht | d44f830 | 2013-05-31 17:57:02 +0200 | [diff] [blame] | 130 | #define HSCIF_DATA(index, baseaddr, irq) \ |
| 131 | [index] = { \ |
| 132 | SCIF_COMMON(PORT_HSCIF, baseaddr, irq), \ |
| 133 | .scbrr_algo_id = SCBRR_ALGO_6, \ |
| 134 | .scscr = SCSCR_RE | SCSCR_TE, \ |
| 135 | } |
| 136 | |
| 137 | enum { SCIFA0, SCIFA1, SCIFB0, SCIFB1, SCIFB2, SCIFA2, SCIF0, SCIF1, |
| 138 | HSCIF0, HSCIF1 }; |
Magnus Damm | 55d9fab | 2013-03-28 00:49:44 +0900 | [diff] [blame] | 139 | |
Laurent Pinchart | cde214a | 2013-08-08 00:34:53 +0200 | [diff] [blame] | 140 | static const struct plat_sci_port scif[] __initconst = { |
Magnus Damm | 55d9fab | 2013-03-28 00:49:44 +0900 | [diff] [blame] | 141 | SCIFA_DATA(SCIFA0, 0xe6c40000, gic_spi(144)), /* SCIFA0 */ |
| 142 | SCIFA_DATA(SCIFA1, 0xe6c50000, gic_spi(145)), /* SCIFA1 */ |
| 143 | SCIFB_DATA(SCIFB0, 0xe6c20000, gic_spi(148)), /* SCIFB0 */ |
| 144 | SCIFB_DATA(SCIFB1, 0xe6c30000, gic_spi(149)), /* SCIFB1 */ |
| 145 | SCIFB_DATA(SCIFB2, 0xe6ce0000, gic_spi(150)), /* SCIFB2 */ |
| 146 | SCIFA_DATA(SCIFA2, 0xe6c60000, gic_spi(151)), /* SCIFA2 */ |
| 147 | SCIF_DATA(SCIF0, 0xe6e60000, gic_spi(152)), /* SCIF0 */ |
| 148 | SCIF_DATA(SCIF1, 0xe6e68000, gic_spi(153)), /* SCIF1 */ |
Ulrich Hecht | d44f830 | 2013-05-31 17:57:02 +0200 | [diff] [blame] | 149 | HSCIF_DATA(HSCIF0, 0xe62c0000, gic_spi(154)), /* HSCIF0 */ |
| 150 | HSCIF_DATA(HSCIF1, 0xe62c8000, gic_spi(155)), /* HSCIF1 */ |
Magnus Damm | 55d9fab | 2013-03-28 00:49:44 +0900 | [diff] [blame] | 151 | }; |
| 152 | |
| 153 | static inline void r8a7790_register_scif(int idx) |
| 154 | { |
| 155 | platform_device_register_data(&platform_bus, "sh-sci", idx, &scif[idx], |
| 156 | sizeof(struct plat_sci_port)); |
| 157 | } |
| 158 | |
Laurent Pinchart | cde214a | 2013-08-08 00:34:53 +0200 | [diff] [blame] | 159 | static const struct renesas_irqc_config irqc0_data __initconst = { |
Magnus Damm | 8f5ec0a | 2013-03-28 00:49:54 +0900 | [diff] [blame] | 160 | .irq_base = irq_pin(0), /* IRQ0 -> IRQ3 */ |
| 161 | }; |
| 162 | |
Laurent Pinchart | cde214a | 2013-08-08 00:34:53 +0200 | [diff] [blame] | 163 | static const struct resource irqc0_resources[] __initconst = { |
Magnus Damm | 8f5ec0a | 2013-03-28 00:49:54 +0900 | [diff] [blame] | 164 | DEFINE_RES_MEM(0xe61c0000, 0x200), /* IRQC Event Detector Block_0 */ |
| 165 | DEFINE_RES_IRQ(gic_spi(0)), /* IRQ0 */ |
| 166 | DEFINE_RES_IRQ(gic_spi(1)), /* IRQ1 */ |
| 167 | DEFINE_RES_IRQ(gic_spi(2)), /* IRQ2 */ |
| 168 | DEFINE_RES_IRQ(gic_spi(3)), /* IRQ3 */ |
| 169 | }; |
| 170 | |
| 171 | #define r8a7790_register_irqc(idx) \ |
| 172 | platform_device_register_resndata(&platform_bus, "renesas_irqc", \ |
| 173 | idx, irqc##idx##_resources, \ |
| 174 | ARRAY_SIZE(irqc##idx##_resources), \ |
| 175 | &irqc##idx##_data, \ |
| 176 | sizeof(struct renesas_irqc_config)) |
| 177 | |
Laurent Pinchart | cde214a | 2013-08-08 00:34:53 +0200 | [diff] [blame] | 178 | static const struct resource thermal_resources[] __initconst = { |
Simon Horman | 0b8eeba | 2013-06-26 16:22:21 +0900 | [diff] [blame] | 179 | DEFINE_RES_MEM(0xe61f0000, 0x14), |
| 180 | DEFINE_RES_MEM(0xe61f0100, 0x38), |
| 181 | DEFINE_RES_IRQ(gic_spi(69)), |
| 182 | }; |
| 183 | |
| 184 | #define r8a7790_register_thermal() \ |
| 185 | platform_device_register_simple("rcar_thermal", -1, \ |
| 186 | thermal_resources, \ |
| 187 | ARRAY_SIZE(thermal_resources)) |
| 188 | |
Laurent Pinchart | cde214a | 2013-08-08 00:34:53 +0200 | [diff] [blame] | 189 | static const struct sh_timer_config cmt00_platform_data __initconst = { |
Magnus Damm | 99ade1a | 2013-06-28 20:27:04 +0900 | [diff] [blame] | 190 | .name = "CMT00", |
| 191 | .timer_bit = 0, |
| 192 | .clockevent_rating = 80, |
| 193 | }; |
| 194 | |
Laurent Pinchart | cde214a | 2013-08-08 00:34:53 +0200 | [diff] [blame] | 195 | static const struct resource cmt00_resources[] __initconst = { |
Magnus Damm | 99ade1a | 2013-06-28 20:27:04 +0900 | [diff] [blame] | 196 | DEFINE_RES_MEM(0xffca0510, 0x0c), |
| 197 | DEFINE_RES_MEM(0xffca0500, 0x04), |
| 198 | DEFINE_RES_IRQ(gic_spi(142)), /* CMT0_0 */ |
| 199 | }; |
| 200 | |
| 201 | #define r8a7790_register_cmt(idx) \ |
| 202 | platform_device_register_resndata(&platform_bus, "sh_cmt", \ |
| 203 | idx, cmt##idx##_resources, \ |
| 204 | ARRAY_SIZE(cmt##idx##_resources), \ |
| 205 | &cmt##idx##_platform_data, \ |
| 206 | sizeof(struct sh_timer_config)) |
| 207 | |
Simon Horman | 6dace67 | 2013-06-28 13:42:16 +0900 | [diff] [blame] | 208 | void __init r8a7790_add_dt_devices(void) |
Magnus Damm | 0468b2d | 2013-03-28 00:49:34 +0900 | [diff] [blame] | 209 | { |
Magnus Damm | 55d9fab | 2013-03-28 00:49:44 +0900 | [diff] [blame] | 210 | r8a7790_register_scif(SCIFA0); |
| 211 | r8a7790_register_scif(SCIFA1); |
| 212 | r8a7790_register_scif(SCIFB0); |
| 213 | r8a7790_register_scif(SCIFB1); |
| 214 | r8a7790_register_scif(SCIFB2); |
| 215 | r8a7790_register_scif(SCIFA2); |
| 216 | r8a7790_register_scif(SCIF0); |
| 217 | r8a7790_register_scif(SCIF1); |
Ulrich Hecht | d44f830 | 2013-05-31 17:57:02 +0200 | [diff] [blame] | 218 | r8a7790_register_scif(HSCIF0); |
| 219 | r8a7790_register_scif(HSCIF1); |
Simon Horman | 6dace67 | 2013-06-28 13:42:16 +0900 | [diff] [blame] | 220 | r8a7790_register_cmt(00); |
| 221 | } |
| 222 | |
| 223 | void __init r8a7790_add_standard_devices(void) |
| 224 | { |
| 225 | r8a7790_add_dt_devices(); |
Magnus Damm | 8f5ec0a | 2013-03-28 00:49:54 +0900 | [diff] [blame] | 226 | r8a7790_register_irqc(0); |
Simon Horman | 0b8eeba | 2013-06-26 16:22:21 +0900 | [diff] [blame] | 227 | r8a7790_register_thermal(); |
Magnus Damm | 0468b2d | 2013-03-28 00:49:34 +0900 | [diff] [blame] | 228 | } |
| 229 | |
Magnus Damm | 0efd7fa | 2013-08-08 07:27:01 +0900 | [diff] [blame] | 230 | void __init r8a7790_init_early(void) |
Magnus Damm | 8333d8c | 2013-06-28 20:27:13 +0900 | [diff] [blame] | 231 | { |
| 232 | #ifndef CONFIG_ARM_ARCH_TIMER |
| 233 | shmobile_setup_delay(1300, 2, 4); /* Cortex-A15 @ 1300MHz */ |
| 234 | #endif |
| 235 | } |
| 236 | |
Magnus Damm | 0468b2d | 2013-03-28 00:49:34 +0900 | [diff] [blame] | 237 | #ifdef CONFIG_USE_OF |
Magnus Damm | 0468b2d | 2013-03-28 00:49:34 +0900 | [diff] [blame] | 238 | |
Laurent Pinchart | cde214a | 2013-08-08 00:34:53 +0200 | [diff] [blame] | 239 | static const char * const r8a7790_boards_compat_dt[] __initconst = { |
Magnus Damm | 0468b2d | 2013-03-28 00:49:34 +0900 | [diff] [blame] | 240 | "renesas,r8a7790", |
| 241 | NULL, |
| 242 | }; |
| 243 | |
| 244 | DT_MACHINE_START(R8A7790_DT, "Generic R8A7790 (Flattened Device Tree)") |
Magnus Damm | ad09cb8 | 2013-08-29 08:22:07 +0900 | [diff] [blame] | 245 | .smp = smp_ops(r8a7790_smp_ops), |
Magnus Damm | 0efd7fa | 2013-08-08 07:27:01 +0900 | [diff] [blame] | 246 | .init_early = r8a7790_init_early, |
Magnus Damm | 50c517d | 2013-09-12 09:32:49 +0900 | [diff] [blame] | 247 | .init_time = rcar_gen2_timer_init, |
Magnus Damm | 0468b2d | 2013-03-28 00:49:34 +0900 | [diff] [blame] | 248 | .dt_compat = r8a7790_boards_compat_dt, |
| 249 | MACHINE_END |
| 250 | #endif /* CONFIG_USE_OF */ |