blob: 66476d21544dc759a13db3da39ec547a1cd458d9 [file] [log] [blame]
Magnus Damm0468b2d2013-03-28 00:49:34 +09001/*
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 Damm0468b2d2013-03-28 00:49:34 +090022#include <linux/kernel.h>
23#include <linux/of_platform.h>
Laurent Pinchart43ca9cb2013-04-08 11:36:17 +020024#include <linux/platform_data/gpio-rcar.h>
Magnus Damm8f5ec0a2013-03-28 00:49:54 +090025#include <linux/platform_data/irq-renesas-irqc.h>
Magnus Damm99ade1a2013-06-28 20:27:04 +090026#include <linux/serial_sci.h>
27#include <linux/sh_timer.h>
Magnus Damm0468b2d2013-03-28 00:49:34 +090028#include <mach/common.h>
29#include <mach/irqs.h>
30#include <mach/r8a7790.h>
31#include <asm/mach/arch.h>
32
Laurent Pinchartcde214a2013-08-08 00:34:53 +020033static const struct resource pfc_resources[] __initconst = {
Magnus Damm69e351d2013-03-28 00:50:03 +090034 DEFINE_RES_MEM(0xe6060000, 0x250),
35};
36
Laurent Pinchart43ca9cb2013-04-08 11:36:17 +020037#define R8A7790_GPIO(idx) \
Laurent Pinchartcde214a2013-08-08 00:34:53 +020038static const struct resource r8a7790_gpio##idx##_resources[] __initconst = { \
Laurent Pinchart43ca9cb2013-04-08 11:36:17 +020039 DEFINE_RES_MEM(0xe6050000 + 0x1000 * (idx), 0x50), \
40 DEFINE_RES_IRQ(gic_spi(4 + (idx))), \
41}; \
42 \
Laurent Pinchartcde214a2013-08-08 00:34:53 +020043static const struct gpio_rcar_config \
44r8a7790_gpio##idx##_platform_data __initconst = { \
Laurent Pinchart43ca9cb2013-04-08 11:36:17 +020045 .gpio_base = 32 * (idx), \
46 .irq_base = 0, \
47 .number_of_pins = 32, \
48 .pctl_name = "pfc-r8a7790", \
Simon Hormand93906b82013-05-13 17:53:52 +090049 .has_both_edge_trigger = 1, \
Laurent Pinchart43ca9cb2013-04-08 11:36:17 +020050}; \
51
52R8A7790_GPIO(0);
53R8A7790_GPIO(1);
54R8A7790_GPIO(2);
55R8A7790_GPIO(3);
56R8A7790_GPIO(4);
57R8A7790_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 Morimotob448c902013-11-28 19:02:12 -080066static 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 Damm69e351d2013-03-28 00:50:03 +090087void __init r8a7790_pinmux_init(void)
88{
89 platform_device_register_simple("pfc-r8a7790", -1, pfc_resources,
90 ARRAY_SIZE(pfc_resources));
Laurent Pinchart43ca9cb2013-04-08 11:36:17 +020091 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 Morimotob448c902013-11-28 19:02:12 -080097 r8a7790_register_i2c(0);
98 r8a7790_register_i2c(1);
99 r8a7790_register_i2c(2);
100 r8a7790_register_i2c(3);
Magnus Damm69e351d2013-03-28 00:50:03 +0900101}
102
Laurent Pinchart6319ea52013-12-06 10:59:46 +0100103#define __R8A7790_SCIF(scif_type, _scscr, index, baseaddr, irq) \
Laurent Pinchart302d8892013-11-03 13:50:31 +0100104static struct plat_sci_port scif##index##_platform_data = { \
105 .type = scif_type, \
Laurent Pinchart302d8892013-11-03 13:50:31 +0100106 .flags = UPF_BOOT_AUTOCONF | UPF_IOREMAP, \
Laurent Pinchart302d8892013-11-03 13:50:31 +0100107 .scscr = _scscr, \
Laurent Pinchartc0a384f2013-11-01 01:44:07 +0100108}; \
109 \
110static struct resource scif##index##_resources[] = { \
111 DEFINE_RES_MEM(baseaddr, 0x100), \
112 DEFINE_RES_IRQ(irq), \
Magnus Damm55d9fab2013-03-28 00:49:44 +0900113}
114
Laurent Pinchart302d8892013-11-03 13:50:31 +0100115#define R8A7790_SCIF(index, baseaddr, irq) \
116 __R8A7790_SCIF(PORT_SCIF, SCSCR_RE | SCSCR_TE, \
Laurent Pinchart6319ea52013-12-06 10:59:46 +0100117 index, baseaddr, irq)
Magnus Damm55d9fab2013-03-28 00:49:44 +0900118
Laurent Pinchart302d8892013-11-03 13:50:31 +0100119#define R8A7790_SCIFA(index, baseaddr, irq) \
120 __R8A7790_SCIF(PORT_SCIFA, SCSCR_RE | SCSCR_TE | SCSCR_CKE0, \
Laurent Pinchart6319ea52013-12-06 10:59:46 +0100121 index, baseaddr, irq)
Magnus Damm55d9fab2013-03-28 00:49:44 +0900122
Laurent Pinchart302d8892013-11-03 13:50:31 +0100123#define R8A7790_SCIFB(index, baseaddr, irq) \
124 __R8A7790_SCIF(PORT_SCIFB, SCSCR_RE | SCSCR_TE, \
Laurent Pinchart6319ea52013-12-06 10:59:46 +0100125 index, baseaddr, irq)
Ulrich Hechtd44f8302013-05-31 17:57:02 +0200126
Laurent Pinchart302d8892013-11-03 13:50:31 +0100127#define R8A7790_HSCIF(index, baseaddr, irq) \
128 __R8A7790_SCIF(PORT_HSCIF, SCSCR_RE | SCSCR_TE, \
Laurent Pinchart6319ea52013-12-06 10:59:46 +0100129 index, baseaddr, irq)
Magnus Damm55d9fab2013-03-28 00:49:44 +0900130
Laurent Pinchart302d8892013-11-03 13:50:31 +0100131R8A7790_SCIFA(0, 0xe6c40000, gic_spi(144)); /* SCIFA0 */
132R8A7790_SCIFA(1, 0xe6c50000, gic_spi(145)); /* SCIFA1 */
133R8A7790_SCIFB(2, 0xe6c20000, gic_spi(148)); /* SCIFB0 */
134R8A7790_SCIFB(3, 0xe6c30000, gic_spi(149)); /* SCIFB1 */
135R8A7790_SCIFB(4, 0xe6ce0000, gic_spi(150)); /* SCIFB2 */
136R8A7790_SCIFA(5, 0xe6c60000, gic_spi(151)); /* SCIFA2 */
137R8A7790_SCIF(6, 0xe6e60000, gic_spi(152)); /* SCIF0 */
138R8A7790_SCIF(7, 0xe6e68000, gic_spi(153)); /* SCIF1 */
139R8A7790_HSCIF(8, 0xe62c0000, gic_spi(154)); /* HSCIF0 */
140R8A7790_HSCIF(9, 0xe62c8000, gic_spi(155)); /* HSCIF1 */
Magnus Damm55d9fab2013-03-28 00:49:44 +0900141
Laurent Pinchart302d8892013-11-03 13:50:31 +0100142#define r8a7790_register_scif(index) \
Laurent Pinchartc0a384f2013-11-01 01:44:07 +0100143 platform_device_register_resndata(&platform_bus, "sh-sci", index, \
144 scif##index##_resources, \
145 ARRAY_SIZE(scif##index##_resources), \
146 &scif##index##_platform_data, \
147 sizeof(scif##index##_platform_data))
Magnus Damm55d9fab2013-03-28 00:49:44 +0900148
Laurent Pinchartcde214a2013-08-08 00:34:53 +0200149static const struct renesas_irqc_config irqc0_data __initconst = {
Magnus Damm8f5ec0a2013-03-28 00:49:54 +0900150 .irq_base = irq_pin(0), /* IRQ0 -> IRQ3 */
151};
152
Laurent Pinchartcde214a2013-08-08 00:34:53 +0200153static const struct resource irqc0_resources[] __initconst = {
Magnus Damm8f5ec0a2013-03-28 00:49:54 +0900154 DEFINE_RES_MEM(0xe61c0000, 0x200), /* IRQC Event Detector Block_0 */
155 DEFINE_RES_IRQ(gic_spi(0)), /* IRQ0 */
156 DEFINE_RES_IRQ(gic_spi(1)), /* IRQ1 */
157 DEFINE_RES_IRQ(gic_spi(2)), /* IRQ2 */
158 DEFINE_RES_IRQ(gic_spi(3)), /* IRQ3 */
159};
160
161#define r8a7790_register_irqc(idx) \
162 platform_device_register_resndata(&platform_bus, "renesas_irqc", \
163 idx, irqc##idx##_resources, \
164 ARRAY_SIZE(irqc##idx##_resources), \
165 &irqc##idx##_data, \
166 sizeof(struct renesas_irqc_config))
167
Laurent Pinchartcde214a2013-08-08 00:34:53 +0200168static const struct resource thermal_resources[] __initconst = {
Simon Horman0b8eeba2013-06-26 16:22:21 +0900169 DEFINE_RES_MEM(0xe61f0000, 0x14),
170 DEFINE_RES_MEM(0xe61f0100, 0x38),
171 DEFINE_RES_IRQ(gic_spi(69)),
172};
173
174#define r8a7790_register_thermal() \
175 platform_device_register_simple("rcar_thermal", -1, \
176 thermal_resources, \
177 ARRAY_SIZE(thermal_resources))
178
Laurent Pinchartcde214a2013-08-08 00:34:53 +0200179static const struct sh_timer_config cmt00_platform_data __initconst = {
Magnus Damm99ade1a2013-06-28 20:27:04 +0900180 .name = "CMT00",
181 .timer_bit = 0,
182 .clockevent_rating = 80,
183};
184
Laurent Pinchartcde214a2013-08-08 00:34:53 +0200185static const struct resource cmt00_resources[] __initconst = {
Magnus Damm99ade1a2013-06-28 20:27:04 +0900186 DEFINE_RES_MEM(0xffca0510, 0x0c),
187 DEFINE_RES_MEM(0xffca0500, 0x04),
188 DEFINE_RES_IRQ(gic_spi(142)), /* CMT0_0 */
189};
190
191#define r8a7790_register_cmt(idx) \
192 platform_device_register_resndata(&platform_bus, "sh_cmt", \
193 idx, cmt##idx##_resources, \
194 ARRAY_SIZE(cmt##idx##_resources), \
195 &cmt##idx##_platform_data, \
196 sizeof(struct sh_timer_config))
197
Simon Horman6dace672013-06-28 13:42:16 +0900198void __init r8a7790_add_dt_devices(void)
Magnus Damm0468b2d2013-03-28 00:49:34 +0900199{
Laurent Pinchart302d8892013-11-03 13:50:31 +0100200 r8a7790_register_scif(0);
201 r8a7790_register_scif(1);
202 r8a7790_register_scif(2);
203 r8a7790_register_scif(3);
204 r8a7790_register_scif(4);
205 r8a7790_register_scif(5);
206 r8a7790_register_scif(6);
207 r8a7790_register_scif(7);
208 r8a7790_register_scif(8);
209 r8a7790_register_scif(9);
Simon Horman6dace672013-06-28 13:42:16 +0900210 r8a7790_register_cmt(00);
211}
212
213void __init r8a7790_add_standard_devices(void)
214{
215 r8a7790_add_dt_devices();
Magnus Damm8f5ec0a2013-03-28 00:49:54 +0900216 r8a7790_register_irqc(0);
Simon Horman0b8eeba2013-06-26 16:22:21 +0900217 r8a7790_register_thermal();
Magnus Damm0468b2d2013-03-28 00:49:34 +0900218}
219
Magnus Damm0efd7fa2013-08-08 07:27:01 +0900220void __init r8a7790_init_early(void)
Magnus Damm8333d8c2013-06-28 20:27:13 +0900221{
222#ifndef CONFIG_ARM_ARCH_TIMER
223 shmobile_setup_delay(1300, 2, 4); /* Cortex-A15 @ 1300MHz */
224#endif
225}
226
Magnus Damm0468b2d2013-03-28 00:49:34 +0900227#ifdef CONFIG_USE_OF
Magnus Damm0468b2d2013-03-28 00:49:34 +0900228
Laurent Pinchartcde214a2013-08-08 00:34:53 +0200229static const char * const r8a7790_boards_compat_dt[] __initconst = {
Magnus Damm0468b2d2013-03-28 00:49:34 +0900230 "renesas,r8a7790",
231 NULL,
232};
233
234DT_MACHINE_START(R8A7790_DT, "Generic R8A7790 (Flattened Device Tree)")
Magnus Dammad09cb82013-08-29 08:22:07 +0900235 .smp = smp_ops(r8a7790_smp_ops),
Magnus Damm0efd7fa2013-08-08 07:27:01 +0900236 .init_early = r8a7790_init_early,
Magnus Damm50c517d2013-09-12 09:32:49 +0900237 .init_time = rcar_gen2_timer_init,
Magnus Damm0468b2d2013-03-28 00:49:34 +0900238 .dt_compat = r8a7790_boards_compat_dt,
239MACHINE_END
240#endif /* CONFIG_USE_OF */