blob: b75372e0563f51188d7320a41263871046169755 [file] [log] [blame]
Magnus Dammf2aaf662010-02-05 11:15:07 +00001/*
2 * G4EVM board support
3 *
4 * Copyright (C) 2010 Magnus Damm
5 * Copyright (C) 2008 Yoshihiro Shimoda
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#include <linux/kernel.h>
21#include <linux/init.h>
22#include <linux/interrupt.h>
23#include <linux/irq.h>
24#include <linux/platform_device.h>
25#include <linux/delay.h>
26#include <linux/mtd/mtd.h>
27#include <linux/mtd/partitions.h>
28#include <linux/mtd/physmap.h>
NISHIMOTO Hirokiaa18ef62010-02-12 08:11:18 +000029#include <linux/usb/r8a66597.h>
Magnus Dammf2aaf662010-02-05 11:15:07 +000030#include <linux/io.h>
NISHIMOTO Hiroki6676a1702010-02-23 10:55:10 +000031#include <linux/input.h>
32#include <linux/input/sh_keysc.h>
Kuninori Morimoto819ee862010-03-29 06:31:36 +000033#include <linux/mfd/sh_mobile_sdhi.h>
NISHIMOTO Hiroki276b4f62010-02-12 08:10:06 +000034#include <linux/gpio.h>
35#include <mach/sh7377.h>
Magnus Dammf2aaf662010-02-05 11:15:07 +000036#include <mach/common.h>
37#include <asm/mach-types.h>
38#include <asm/mach/arch.h>
39#include <asm/mach/map.h>
40
Kuninori Morimoto819ee862010-03-29 06:31:36 +000041/*
42 * SDHI
43 *
44 * SDHI0 : card detection is possible
45 * SDHI1 : card detection is impossible
46 *
47 * [G4-MAIN-BOARD]
48 * JP74 : short # DBG_2V8A for SDHI0
49 * JP75 : NC # DBG_3V3A for SDHI0
50 * JP76 : NC # DBG_3V3A_SD for SDHI0
51 * JP77 : NC # 3V3A_SDIO for SDHI1
52 * JP78 : short # DBG_2V8A for SDHI1
53 * JP79 : NC # DBG_3V3A for SDHI1
54 * JP80 : NC # DBG_3V3A_SD for SDHI1
55 *
56 * [G4-CORE-BOARD]
57 * S32 : all off # to dissever from G3-CORE_DBG board
58 * S33 : all off # to dissever from G3-CORE_DBG board
59 *
60 * [G3-CORE_DBG-BOARD]
61 * S1 : all off # to dissever from G3-CORE_DBG board
62 * S3 : all off # to dissever from G3-CORE_DBG board
63 * S4 : all off # to dissever from G3-CORE_DBG board
64 */
65
Magnus Dammf2aaf662010-02-05 11:15:07 +000066static struct mtd_partition nor_flash_partitions[] = {
67 {
68 .name = "loader",
69 .offset = 0x00000000,
70 .size = 512 * 1024,
71 },
72 {
73 .name = "bootenv",
74 .offset = MTDPART_OFS_APPEND,
75 .size = 512 * 1024,
76 },
77 {
78 .name = "kernel_ro",
79 .offset = MTDPART_OFS_APPEND,
80 .size = 8 * 1024 * 1024,
81 .mask_flags = MTD_WRITEABLE,
82 },
83 {
84 .name = "kernel",
85 .offset = MTDPART_OFS_APPEND,
86 .size = 8 * 1024 * 1024,
87 },
88 {
89 .name = "data",
90 .offset = MTDPART_OFS_APPEND,
91 .size = MTDPART_SIZ_FULL,
92 },
93};
94
95static struct physmap_flash_data nor_flash_data = {
96 .width = 2,
97 .parts = nor_flash_partitions,
98 .nr_parts = ARRAY_SIZE(nor_flash_partitions),
99};
100
101static struct resource nor_flash_resources[] = {
102 [0] = {
103 .start = 0x00000000,
104 .end = 0x08000000 - 1,
105 .flags = IORESOURCE_MEM,
106 }
107};
108
109static struct platform_device nor_flash_device = {
110 .name = "physmap-flash",
111 .dev = {
112 .platform_data = &nor_flash_data,
113 },
114 .num_resources = ARRAY_SIZE(nor_flash_resources),
115 .resource = nor_flash_resources,
116};
117
NISHIMOTO Hirokiaa18ef62010-02-12 08:11:18 +0000118/* USBHS */
119void usb_host_port_power(int port, int power)
120{
121 if (!power) /* only power-on supported for now */
122 return;
123
124 /* set VBOUT/PWEN and EXTLP0 in DVSTCTR */
125 __raw_writew(__raw_readw(0xe6890008) | 0x600, 0xe6890008);
126}
127
128static struct r8a66597_platdata usb_host_data = {
129 .on_chip = 1,
130 .port_power = usb_host_port_power,
131};
132
133static struct resource usb_host_resources[] = {
134 [0] = {
135 .name = "USBHS",
136 .start = 0xe6890000,
137 .end = 0xe68900e5,
138 .flags = IORESOURCE_MEM,
139 },
140 [1] = {
Magnus Damm043296d2010-05-20 14:39:21 +0000141 .start = evt2irq(0x0a20), /* USBHS_USHI0 */
NISHIMOTO Hirokiaa18ef62010-02-12 08:11:18 +0000142 .flags = IORESOURCE_IRQ,
143 },
144};
145
146static struct platform_device usb_host_device = {
147 .name = "r8a66597_hcd",
148 .id = 0,
149 .dev = {
150 .platform_data = &usb_host_data,
151 .dma_mask = NULL,
152 .coherent_dma_mask = 0xffffffff,
153 },
154 .num_resources = ARRAY_SIZE(usb_host_resources),
155 .resource = usb_host_resources,
156};
Magnus Dammf2aaf662010-02-05 11:15:07 +0000157
NISHIMOTO Hiroki6676a1702010-02-23 10:55:10 +0000158/* KEYSC */
159static struct sh_keysc_info keysc_info = {
160 .mode = SH_KEYSC_MODE_5,
161 .scan_timing = 3,
162 .delay = 100,
163 .keycodes = {
164 KEY_A, KEY_B, KEY_C, KEY_D, KEY_E, KEY_F,
165 KEY_G, KEY_H, KEY_I, KEY_J, KEY_K, KEY_L,
166 KEY_M, KEY_N, KEY_U, KEY_P, KEY_Q, KEY_R,
167 KEY_S, KEY_T, KEY_U, KEY_V, KEY_W, KEY_X,
168 KEY_Y, KEY_Z, KEY_HOME, KEY_SLEEP, KEY_WAKEUP, KEY_COFFEE,
169 KEY_0, KEY_1, KEY_2, KEY_3, KEY_4, KEY_5,
170 KEY_6, KEY_7, KEY_8, KEY_9, KEY_STOP, KEY_COMPUTER,
171 },
172};
173
174static struct resource keysc_resources[] = {
175 [0] = {
176 .name = "KEYSC",
177 .start = 0xe61b0000,
178 .end = 0xe61b000f,
179 .flags = IORESOURCE_MEM,
180 },
181 [1] = {
Magnus Damm043296d2010-05-20 14:39:21 +0000182 .start = evt2irq(0x0be0), /* KEYSC_KEY */
NISHIMOTO Hiroki6676a1702010-02-23 10:55:10 +0000183 .flags = IORESOURCE_IRQ,
184 },
185};
186
187static struct platform_device keysc_device = {
188 .name = "sh_keysc",
189 .id = 0, /* keysc0 clock */
190 .num_resources = ARRAY_SIZE(keysc_resources),
191 .resource = keysc_resources,
192 .dev = {
193 .platform_data = &keysc_info,
194 },
195};
196
Kuninori Morimoto819ee862010-03-29 06:31:36 +0000197/* SDHI */
198static struct resource sdhi0_resources[] = {
199 [0] = {
200 .name = "SDHI0",
201 .start = 0xe6d50000,
202 .end = 0xe6d501ff,
203 .flags = IORESOURCE_MEM,
204 },
205 [1] = {
Magnus Damm043296d2010-05-20 14:39:21 +0000206 .start = evt2irq(0x0e00), /* SDHI0 */
Kuninori Morimoto819ee862010-03-29 06:31:36 +0000207 .flags = IORESOURCE_IRQ,
208 },
209};
210
211static struct platform_device sdhi0_device = {
212 .name = "sh_mobile_sdhi",
213 .num_resources = ARRAY_SIZE(sdhi0_resources),
214 .resource = sdhi0_resources,
215 .id = 0,
216};
217
218static struct resource sdhi1_resources[] = {
219 [0] = {
220 .name = "SDHI1",
221 .start = 0xe6d60000,
222 .end = 0xe6d601ff,
223 .flags = IORESOURCE_MEM,
224 },
225 [1] = {
Magnus Damm043296d2010-05-20 14:39:21 +0000226 .start = evt2irq(0x0e80), /* SDHI1 */
Kuninori Morimoto819ee862010-03-29 06:31:36 +0000227 .flags = IORESOURCE_IRQ,
228 },
229};
230
231static struct platform_device sdhi1_device = {
232 .name = "sh_mobile_sdhi",
233 .num_resources = ARRAY_SIZE(sdhi1_resources),
234 .resource = sdhi1_resources,
235 .id = 1,
236};
237
Magnus Dammf2aaf662010-02-05 11:15:07 +0000238static struct platform_device *g4evm_devices[] __initdata = {
239 &nor_flash_device,
NISHIMOTO Hirokiaa18ef62010-02-12 08:11:18 +0000240 &usb_host_device,
NISHIMOTO Hiroki6676a1702010-02-23 10:55:10 +0000241 &keysc_device,
Kuninori Morimoto819ee862010-03-29 06:31:36 +0000242 &sdhi0_device,
243 &sdhi1_device,
Magnus Dammf2aaf662010-02-05 11:15:07 +0000244};
245
246static struct map_desc g4evm_io_desc[] __initdata = {
247 /* create a 1:1 entity map for 0xe6xxxxxx
248 * used by CPGA, INTC and PFC.
249 */
250 {
251 .virtual = 0xe6000000,
252 .pfn = __phys_to_pfn(0xe6000000),
253 .length = 256 << 20,
254 .type = MT_DEVICE_NONSHARED
255 },
256};
257
258static void __init g4evm_map_io(void)
259{
260 iotable_init(g4evm_io_desc, ARRAY_SIZE(g4evm_io_desc));
261
Magnus Damm4ae04ac2010-02-08 11:02:54 +0000262 /* setup early devices, clocks and console here as well */
Magnus Dammf2aaf662010-02-05 11:15:07 +0000263 sh7377_add_early_devices();
264 sh7367_clock_init(); /* use g3 clocks for now */
Magnus Damm4ae04ac2010-02-08 11:02:54 +0000265 shmobile_setup_console();
Magnus Dammf2aaf662010-02-05 11:15:07 +0000266}
267
Kuninori Morimoto819ee862010-03-29 06:31:36 +0000268#define GPIO_SDHID0_D0 0xe60520fc
269#define GPIO_SDHID0_D1 0xe60520fd
270#define GPIO_SDHID0_D2 0xe60520fe
271#define GPIO_SDHID0_D3 0xe60520ff
272#define GPIO_SDHICMD0 0xe6052100
273
274#define GPIO_SDHID1_D0 0xe6052103
275#define GPIO_SDHID1_D1 0xe6052104
276#define GPIO_SDHID1_D2 0xe6052105
277#define GPIO_SDHID1_D3 0xe6052106
278#define GPIO_SDHICMD1 0xe6052107
279
280/*
281 * FIXME !!
282 *
283 * gpio_pull_up is quick_hack.
284 *
285 * current gpio frame work doesn't have
286 * the method to control only pull up/down/free.
287 * this function should be replaced by correct gpio function
288 */
289static void __init gpio_pull_up(u32 addr)
290{
291 u8 data = __raw_readb(addr);
292
293 data &= 0x0F;
294 data |= 0xC0;
295 __raw_writeb(data, addr);
296}
297
Magnus Dammf2aaf662010-02-05 11:15:07 +0000298static void __init g4evm_init(void)
299{
NISHIMOTO Hiroki276b4f62010-02-12 08:10:06 +0000300 sh7377_pinmux_init();
301
302 /* Lit DS14 LED */
303 gpio_request(GPIO_PORT109, NULL);
304 gpio_direction_output(GPIO_PORT109, 1);
305 gpio_export(GPIO_PORT109, 1);
306
307 /* Lit DS15 LED */
308 gpio_request(GPIO_PORT110, NULL);
309 gpio_direction_output(GPIO_PORT110, 1);
310 gpio_export(GPIO_PORT110, 1);
311
312 /* Lit DS16 LED */
313 gpio_request(GPIO_PORT112, NULL);
314 gpio_direction_output(GPIO_PORT112, 1);
315 gpio_export(GPIO_PORT112, 1);
316
317 /* Lit DS17 LED */
318 gpio_request(GPIO_PORT113, NULL);
319 gpio_direction_output(GPIO_PORT113, 1);
320 gpio_export(GPIO_PORT113, 1);
321
NISHIMOTO Hirokiaa18ef62010-02-12 08:11:18 +0000322 /* USBHS */
323 gpio_request(GPIO_FN_VBUS_0, NULL);
324 gpio_request(GPIO_FN_PWEN, NULL);
325 gpio_request(GPIO_FN_OVCN, NULL);
326 gpio_request(GPIO_FN_OVCN2, NULL);
327 gpio_request(GPIO_FN_EXTLP, NULL);
328 gpio_request(GPIO_FN_IDIN, NULL);
329
330 /* enable clock in SMSTPCR3 */
331 __raw_writel(__raw_readl(0xe615013c) & ~(1 << 22), 0xe615013c);
332
333 /* setup USB phy */
334 __raw_writew(0x0200, 0xe605810a); /* USBCR1 */
335 __raw_writew(0x00e0, 0xe60581c0); /* CPFCH */
336 __raw_writew(0x6010, 0xe60581c6); /* CGPOSR */
337 __raw_writew(0x8a0a, 0xe605810c); /* USBCR2 */
338
NISHIMOTO Hiroki6676a1702010-02-23 10:55:10 +0000339 /* KEYSC @ CN31 */
340 gpio_request(GPIO_FN_PORT60_KEYOUT5, NULL);
341 gpio_request(GPIO_FN_PORT61_KEYOUT4, NULL);
342 gpio_request(GPIO_FN_PORT62_KEYOUT3, NULL);
343 gpio_request(GPIO_FN_PORT63_KEYOUT2, NULL);
344 gpio_request(GPIO_FN_PORT64_KEYOUT1, NULL);
345 gpio_request(GPIO_FN_PORT65_KEYOUT0, NULL);
346 gpio_request(GPIO_FN_PORT66_KEYIN0_PU, NULL);
347 gpio_request(GPIO_FN_PORT67_KEYIN1_PU, NULL);
348 gpio_request(GPIO_FN_PORT68_KEYIN2_PU, NULL);
349 gpio_request(GPIO_FN_PORT69_KEYIN3_PU, NULL);
350 gpio_request(GPIO_FN_PORT70_KEYIN4_PU, NULL);
351 gpio_request(GPIO_FN_PORT71_KEYIN5_PU, NULL);
352 gpio_request(GPIO_FN_PORT72_KEYIN6_PU, NULL);
353
Kuninori Morimoto819ee862010-03-29 06:31:36 +0000354 /* SDHI0 */
355 gpio_request(GPIO_FN_SDHICLK0, NULL);
356 gpio_request(GPIO_FN_SDHICD0, NULL);
357 gpio_request(GPIO_FN_SDHID0_0, NULL);
358 gpio_request(GPIO_FN_SDHID0_1, NULL);
359 gpio_request(GPIO_FN_SDHID0_2, NULL);
360 gpio_request(GPIO_FN_SDHID0_3, NULL);
361 gpio_request(GPIO_FN_SDHICMD0, NULL);
362 gpio_request(GPIO_FN_SDHIWP0, NULL);
363 gpio_pull_up(GPIO_SDHID0_D0);
364 gpio_pull_up(GPIO_SDHID0_D1);
365 gpio_pull_up(GPIO_SDHID0_D2);
366 gpio_pull_up(GPIO_SDHID0_D3);
367 gpio_pull_up(GPIO_SDHICMD0);
368
369 /* SDHI1 */
370 gpio_request(GPIO_FN_SDHICLK1, NULL);
371 gpio_request(GPIO_FN_SDHID1_0, NULL);
372 gpio_request(GPIO_FN_SDHID1_1, NULL);
373 gpio_request(GPIO_FN_SDHID1_2, NULL);
374 gpio_request(GPIO_FN_SDHID1_3, NULL);
375 gpio_request(GPIO_FN_SDHICMD1, NULL);
376 gpio_pull_up(GPIO_SDHID1_D0);
377 gpio_pull_up(GPIO_SDHID1_D1);
378 gpio_pull_up(GPIO_SDHID1_D2);
379 gpio_pull_up(GPIO_SDHID1_D3);
380 gpio_pull_up(GPIO_SDHICMD1);
381
Magnus Dammf2aaf662010-02-05 11:15:07 +0000382 sh7377_add_standard_devices();
383
384 platform_add_devices(g4evm_devices, ARRAY_SIZE(g4evm_devices));
385}
386
387MACHINE_START(G4EVM, "g4evm")
388 .phys_io = 0xe6000000,
389 .io_pg_offst = ((0xe6000000) >> 18) & 0xfffc,
390 .map_io = g4evm_map_io,
391 .init_irq = sh7377_init_irq,
392 .init_machine = g4evm_init,
393 .timer = &shmobile_timer,
394MACHINE_END