diff options
-rw-r--r-- | arch/arm/boot/dts/Makefile | 1 | ||||
-rw-r--r-- | arch/arm/boot/dts/r8a7740-armadillo800eva-reference.dts | 45 | ||||
-rw-r--r-- | arch/arm/mach-shmobile/Kconfig | 14 | ||||
-rw-r--r-- | arch/arm/mach-shmobile/Makefile | 1 | ||||
-rw-r--r-- | arch/arm/mach-shmobile/board-armadillo800eva-reference.c | 213 |
5 files changed, 274 insertions, 0 deletions
diff --git a/arch/arm/boot/dts/Makefile b/arch/arm/boot/dts/Makefile index b9f7121e6ecf..cb312592342b 100644 --- a/arch/arm/boot/dts/Makefile +++ b/arch/arm/boot/dts/Makefile | |||
@@ -162,6 +162,7 @@ dtb-$(CONFIG_ARCH_U8500) += snowball.dtb \ | |||
162 | dtb-$(CONFIG_ARCH_SHMOBILE) += emev2-kzm9d.dtb \ | 162 | dtb-$(CONFIG_ARCH_SHMOBILE) += emev2-kzm9d.dtb \ |
163 | r8a7740-armadillo800eva.dtb \ | 163 | r8a7740-armadillo800eva.dtb \ |
164 | r8a7778-bockw.dtb \ | 164 | r8a7778-bockw.dtb \ |
165 | r8a7740-armadillo800eva-reference.dtb \ | ||
165 | r8a7779-marzen-reference.dtb \ | 166 | r8a7779-marzen-reference.dtb \ |
166 | r8a7790-lager.dtb \ | 167 | r8a7790-lager.dtb \ |
167 | sh73a0-kzm9g.dtb \ | 168 | sh73a0-kzm9g.dtb \ |
diff --git a/arch/arm/boot/dts/r8a7740-armadillo800eva-reference.dts b/arch/arm/boot/dts/r8a7740-armadillo800eva-reference.dts new file mode 100644 index 000000000000..09ea22c26359 --- /dev/null +++ b/arch/arm/boot/dts/r8a7740-armadillo800eva-reference.dts | |||
@@ -0,0 +1,45 @@ | |||
1 | /* | ||
2 | * Reference Device Tree Source for the armadillo 800 eva board | ||
3 | * | ||
4 | * Copyright (C) 2012 Renesas Solutions Corp. | ||
5 | * | ||
6 | * This file is licensed under the terms of the GNU General Public License | ||
7 | * version 2. This program is licensed "as is" without any warranty of any | ||
8 | * kind, whether express or implied. | ||
9 | */ | ||
10 | |||
11 | /dts-v1/; | ||
12 | /include/ "r8a7740.dtsi" | ||
13 | |||
14 | / { | ||
15 | model = "armadillo 800 eva reference"; | ||
16 | compatible = "renesas,armadillo800eva-reference", "renesas,r8a7740"; | ||
17 | |||
18 | chosen { | ||
19 | bootargs = "console=tty0 console=ttySC1,115200 earlyprintk=sh-sci.1,115200 ignore_loglevel root=/dev/nfs ip=dhcp nfsroot=,rsize=4096,wsize=4096 rw"; | ||
20 | }; | ||
21 | |||
22 | memory { | ||
23 | device_type = "memory"; | ||
24 | reg = <0x40000000 0x20000000>; | ||
25 | }; | ||
26 | |||
27 | reg_3p3v: regulator@0 { | ||
28 | compatible = "regulator-fixed"; | ||
29 | regulator-name = "fixed-3.3V"; | ||
30 | regulator-min-microvolt = <3300000>; | ||
31 | regulator-max-microvolt = <3300000>; | ||
32 | regulator-always-on; | ||
33 | regulator-boot-on; | ||
34 | }; | ||
35 | |||
36 | }; | ||
37 | |||
38 | &i2c0 { | ||
39 | touchscreen: st1232@55 { | ||
40 | compatible = "sitronix,st1232"; | ||
41 | reg = <0x55>; | ||
42 | interrupt-parent = <&irqpin1>; | ||
43 | interrupts = <2 0>; /* IRQ10: hwirq 2 on irqpin1 */ | ||
44 | }; | ||
45 | }; | ||
diff --git a/arch/arm/mach-shmobile/Kconfig b/arch/arm/mach-shmobile/Kconfig index 1a517e2fe449..c6fb9ec8d15b 100644 --- a/arch/arm/mach-shmobile/Kconfig +++ b/arch/arm/mach-shmobile/Kconfig | |||
@@ -129,6 +129,20 @@ config MACH_ARMADILLO800EVA | |||
129 | select SND_SOC_WM8978 if SND_SIMPLE_CARD | 129 | select SND_SOC_WM8978 if SND_SIMPLE_CARD |
130 | select USE_OF | 130 | select USE_OF |
131 | 131 | ||
132 | config MACH_ARMADILLO800EVA_REFERENCE | ||
133 | bool "Armadillo-800 EVA board - Reference Device Tree Implementation" | ||
134 | depends on ARCH_R8A7740 | ||
135 | select ARCH_REQUIRE_GPIOLIB | ||
136 | select REGULATOR_FIXED_VOLTAGE if REGULATOR | ||
137 | select SND_SOC_WM8978 if SND_SIMPLE_CARD | ||
138 | select USE_OF | ||
139 | ---help--- | ||
140 | Use reference implementation of Aramdillo800 EVA board support | ||
141 | which makes a greater use of device tree at the expense | ||
142 | of not supporting a number of devices. | ||
143 | |||
144 | This is intended to aid developers | ||
145 | |||
132 | config MACH_BOCKW | 146 | config MACH_BOCKW |
133 | bool "BOCK-W platform" | 147 | bool "BOCK-W platform" |
134 | depends on ARCH_R8A7778 | 148 | depends on ARCH_R8A7778 |
diff --git a/arch/arm/mach-shmobile/Makefile b/arch/arm/mach-shmobile/Makefile index 068f1dadc46b..812de0452307 100644 --- a/arch/arm/mach-shmobile/Makefile +++ b/arch/arm/mach-shmobile/Makefile | |||
@@ -46,6 +46,7 @@ obj-$(CONFIG_MACH_MARZEN) += board-marzen.o | |||
46 | obj-$(CONFIG_MACH_MARZEN_REFERENCE) += board-marzen-reference.o | 46 | obj-$(CONFIG_MACH_MARZEN_REFERENCE) += board-marzen-reference.o |
47 | obj-$(CONFIG_MACH_LAGER) += board-lager.o | 47 | obj-$(CONFIG_MACH_LAGER) += board-lager.o |
48 | obj-$(CONFIG_MACH_ARMADILLO800EVA) += board-armadillo800eva.o | 48 | obj-$(CONFIG_MACH_ARMADILLO800EVA) += board-armadillo800eva.o |
49 | obj-$(CONFIG_MACH_ARMADILLO800EVA_REFERENCE) += board-armadillo800eva-reference.o | ||
49 | obj-$(CONFIG_MACH_KZM9D) += board-kzm9d.o | 50 | obj-$(CONFIG_MACH_KZM9D) += board-kzm9d.o |
50 | obj-$(CONFIG_MACH_KZM9G) += board-kzm9g.o | 51 | obj-$(CONFIG_MACH_KZM9G) += board-kzm9g.o |
51 | obj-$(CONFIG_MACH_KZM9G_REFERENCE) += board-kzm9g-reference.o | 52 | obj-$(CONFIG_MACH_KZM9G_REFERENCE) += board-kzm9g-reference.o |
diff --git a/arch/arm/mach-shmobile/board-armadillo800eva-reference.c b/arch/arm/mach-shmobile/board-armadillo800eva-reference.c new file mode 100644 index 000000000000..03b85fec2ddb --- /dev/null +++ b/arch/arm/mach-shmobile/board-armadillo800eva-reference.c | |||
@@ -0,0 +1,213 @@ | |||
1 | /* | ||
2 | * armadillo 800 eva board support | ||
3 | * | ||
4 | * Copyright (C) 2012 Renesas Solutions Corp. | ||
5 | * Copyright (C) 2012 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 | * | ||
20 | */ | ||
21 | |||
22 | #include <linux/clk.h> | ||
23 | #include <linux/err.h> | ||
24 | #include <linux/kernel.h> | ||
25 | #include <linux/gpio.h> | ||
26 | #include <linux/io.h> | ||
27 | #include <linux/pinctrl/machine.h> | ||
28 | #include <mach/common.h> | ||
29 | #include <mach/r8a7740.h> | ||
30 | #include <asm/mach/arch.h> | ||
31 | #include <asm/hardware/cache-l2x0.h> | ||
32 | |||
33 | /* | ||
34 | * CON1 Camera Module | ||
35 | * CON2 Extension Bus | ||
36 | * CON3 HDMI Output | ||
37 | * CON4 Composite Video Output | ||
38 | * CON5 H-UDI JTAG | ||
39 | * CON6 ARM JTAG | ||
40 | * CON7 SD1 | ||
41 | * CON8 SD2 | ||
42 | * CON9 RTC BackUp | ||
43 | * CON10 Monaural Mic Input | ||
44 | * CON11 Stereo Headphone Output | ||
45 | * CON12 Audio Line Output(L) | ||
46 | * CON13 Audio Line Output(R) | ||
47 | * CON14 AWL13 Module | ||
48 | * CON15 Extension | ||
49 | * CON16 LCD1 | ||
50 | * CON17 LCD2 | ||
51 | * CON19 Power Input | ||
52 | * CON20 USB1 | ||
53 | * CON21 USB2 | ||
54 | * CON22 Serial | ||
55 | * CON23 LAN | ||
56 | * CON24 USB3 | ||
57 | * LED1 Camera LED(Yellow) | ||
58 | * LED2 Power LED (Green) | ||
59 | * ED3-LED6 User LED(Yellow) | ||
60 | * LED7 LAN link LED(Green) | ||
61 | * LED8 LAN activity LED(Yellow) | ||
62 | */ | ||
63 | |||
64 | /* | ||
65 | * DipSwitch | ||
66 | * | ||
67 | * SW1 | ||
68 | * | ||
69 | * -12345678-+---------------+---------------------------- | ||
70 | * 1 | boot | hermit | ||
71 | * 0 | boot | OS auto boot | ||
72 | * -12345678-+---------------+---------------------------- | ||
73 | * 00 | boot device | eMMC | ||
74 | * 10 | boot device | SDHI0 (CON7) | ||
75 | * 01 | boot device | - | ||
76 | * 11 | boot device | Extension Buss (CS0) | ||
77 | * -12345678-+---------------+---------------------------- | ||
78 | * 0 | Extension Bus | D8-D15 disable, eMMC enable | ||
79 | * 1 | Extension Bus | D8-D15 enable, eMMC disable | ||
80 | * -12345678-+---------------+---------------------------- | ||
81 | * 0 | SDHI1 | COM8 disable, COM14 enable | ||
82 | * 1 | SDHI1 | COM8 enable, COM14 disable | ||
83 | * -12345678-+---------------+---------------------------- | ||
84 | * 0 | USB0 | COM20 enable, COM24 disable | ||
85 | * 1 | USB0 | COM20 disable, COM24 enable | ||
86 | * -12345678-+---------------+---------------------------- | ||
87 | * 00 | JTAG | SH-X2 | ||
88 | * 10 | JTAG | ARM | ||
89 | * 01 | JTAG | - | ||
90 | * 11 | JTAG | Boundary Scan | ||
91 | *-----------+---------------+---------------------------- | ||
92 | */ | ||
93 | |||
94 | /* | ||
95 | * FSI-WM8978 | ||
96 | * | ||
97 | * this command is required when playback. | ||
98 | * | ||
99 | * # amixer set "Headphone" 50 | ||
100 | * | ||
101 | * this command is required when capture. | ||
102 | * | ||
103 | * # amixer set "Input PGA" 15 | ||
104 | * # amixer set "Left Input Mixer MicP" on | ||
105 | * # amixer set "Left Input Mixer MicN" on | ||
106 | * # amixer set "Right Input Mixer MicN" on | ||
107 | * # amixer set "Right Input Mixer MicP" on | ||
108 | */ | ||
109 | |||
110 | /* | ||
111 | * USB function | ||
112 | * | ||
113 | * When you use USB Function, | ||
114 | * set SW1.6 ON, and connect cable to CN24. | ||
115 | * | ||
116 | * USBF needs workaround on R8A7740 chip. | ||
117 | * These are a little bit complex. | ||
118 | * see | ||
119 | * usbhsf_power_ctrl() | ||
120 | */ | ||
121 | |||
122 | static const struct pinctrl_map eva_pinctrl_map[] = { | ||
123 | /* SCIFA1 */ | ||
124 | PIN_MAP_MUX_GROUP_DEFAULT("sh-sci.1", "pfc-r8a7740", | ||
125 | "scifa1_data", "scifa1"), | ||
126 | }; | ||
127 | |||
128 | static void __init eva_clock_init(void) | ||
129 | { | ||
130 | struct clk *system = clk_get(NULL, "system_clk"); | ||
131 | struct clk *xtal1 = clk_get(NULL, "extal1"); | ||
132 | struct clk *usb24s = clk_get(NULL, "usb24s"); | ||
133 | struct clk *fsibck = clk_get(NULL, "fsibck"); | ||
134 | |||
135 | if (IS_ERR(system) || | ||
136 | IS_ERR(xtal1) || | ||
137 | IS_ERR(usb24s) || | ||
138 | IS_ERR(fsibck)) { | ||
139 | pr_err("armadillo800eva board clock init failed\n"); | ||
140 | goto clock_error; | ||
141 | } | ||
142 | |||
143 | /* armadillo 800 eva extal1 is 24MHz */ | ||
144 | clk_set_rate(xtal1, 24000000); | ||
145 | |||
146 | /* usb24s use extal1 (= system) clock (= 24MHz) */ | ||
147 | clk_set_parent(usb24s, system); | ||
148 | |||
149 | /* FSIBCK is 12.288MHz, and it is parent of FSI-B */ | ||
150 | clk_set_rate(fsibck, 12288000); | ||
151 | |||
152 | clock_error: | ||
153 | if (!IS_ERR(system)) | ||
154 | clk_put(system); | ||
155 | if (!IS_ERR(xtal1)) | ||
156 | clk_put(xtal1); | ||
157 | if (!IS_ERR(usb24s)) | ||
158 | clk_put(usb24s); | ||
159 | if (!IS_ERR(fsibck)) | ||
160 | clk_put(fsibck); | ||
161 | } | ||
162 | |||
163 | /* | ||
164 | * board init | ||
165 | */ | ||
166 | static void __init eva_init(void) | ||
167 | { | ||
168 | |||
169 | r8a7740_clock_init(MD_CK0 | MD_CK2); | ||
170 | eva_clock_init(); | ||
171 | |||
172 | pinctrl_register_mappings(eva_pinctrl_map, ARRAY_SIZE(eva_pinctrl_map)); | ||
173 | r8a7740_pinmux_init(); | ||
174 | |||
175 | r8a7740_meram_workaround(); | ||
176 | |||
177 | /* | ||
178 | * Touchscreen | ||
179 | * TODO: Move reset GPIO over to .dts when we can reference it | ||
180 | */ | ||
181 | gpio_request_one(166, GPIOF_OUT_INIT_HIGH, NULL); /* TP_RST_B */ | ||
182 | |||
183 | #ifdef CONFIG_CACHE_L2X0 | ||
184 | /* Early BRESP enable, Shared attribute override enable, 32K*8way */ | ||
185 | l2x0_init(IOMEM(0xf0002000), 0x40440000, 0x82000fff); | ||
186 | #endif | ||
187 | |||
188 | r8a7740_add_standard_devices_dt(); | ||
189 | r8a7740_pm_init(); | ||
190 | } | ||
191 | |||
192 | #define RESCNT2 IOMEM(0xe6188020) | ||
193 | static void eva_restart(char mode, const char *cmd) | ||
194 | { | ||
195 | /* Do soft power on reset */ | ||
196 | writel((1 << 31), RESCNT2); | ||
197 | } | ||
198 | |||
199 | static const char *eva_boards_compat_dt[] __initdata = { | ||
200 | "renesas,armadillo800eva-reference", | ||
201 | NULL, | ||
202 | }; | ||
203 | |||
204 | DT_MACHINE_START(ARMADILLO800EVA_DT, "armadillo800eva-reference") | ||
205 | .map_io = r8a7740_map_io, | ||
206 | .init_early = r8a7740_init_delay, | ||
207 | .init_irq = r8a7740_init_irq_of, | ||
208 | .init_machine = eva_init, | ||
209 | .init_time = shmobile_timer_init, | ||
210 | .init_late = shmobile_init_late, | ||
211 | .dt_compat = eva_boards_compat_dt, | ||
212 | .restart = eva_restart, | ||
213 | MACHINE_END | ||