2 * Renesas Technology Corp. SH7786 Urquell Support.
4 * Copyright (C) 2008 Kuninori Morimoto <morimoto.kuninori@renesas.com>
6 * Based on board-sh7785lcr.c
7 * Copyright (C) 2008 Yoshihiro Shimoda
9 * This file is subject to the terms and conditions of the GNU General Public
10 * License. See the file "COPYING" in the main directory of this archive
13 #include <linux/init.h>
14 #include <linux/platform_device.h>
16 #include <linux/smc91x.h>
17 #include <linux/mtd/physmap.h>
18 #include <linux/delay.h>
19 #include <linux/gpio.h>
20 #include <linux/irq.h>
21 #include <mach/urquell.h>
22 #include <cpu/sh7786.h>
23 #include <asm/heartbeat.h>
24 #include <asm/sizes.h>
28 *----------------------------
29 * SW1 0101 0010 -> Pck 33MHz version
30 * (1101 0010) Pck 66MHz version
31 * SW2 0x1x xxxx -> little endian
33 * SW47 0001 1000 -> CS0 : on-board flash
34 * CS1 : SRAM, registers, LAN, PCMCIA
38 * 0x00000000 - 0x04000000 (CS0) Nor Flash
39 * 0x04000000 - 0x04200000 (CS1) SRAM
40 * 0x05000000 - 0x05800000 (CS1) on board register
41 * 0x05800000 - 0x06000000 (CS1) LAN91C111
42 * 0x06000000 - 0x06400000 (CS1) PCMCIA
43 * 0x08000000 - 0x10000000 (CS2-CS3) DDR3
44 * 0x10000000 - 0x14000000 (CS4) PCIe
45 * 0x14000000 - 0x14800000 (CS5) Core0 LRAM/URAM
46 * 0x14800000 - 0x15000000 (CS5) Core1 LRAM/URAM
47 * 0x18000000 - 0x1C000000 (CS6) ATA/NAND-Flash
48 * 0x1C000000 - (CS7) SH7786 Control register
52 static struct resource heartbeat_resources[] = {
54 .start = BOARDREG(SLEDR),
55 .end = BOARDREG(SLEDR),
56 .flags = IORESOURCE_MEM,
60 static struct heartbeat_data heartbeat_data = {
64 static struct platform_device heartbeat_device = {
68 .platform_data = &heartbeat_data,
70 .num_resources = ARRAY_SIZE(heartbeat_resources),
71 .resource = heartbeat_resources,
75 static struct smc91x_platdata smc91x_info = {
76 .flags = SMC91X_USE_16BIT | SMC91X_NOWAIT,
79 static struct resource smc91x_eth_resources[] = {
84 .flags = IORESOURCE_MEM,
88 .flags = IORESOURCE_IRQ,
92 static struct platform_device smc91x_eth_device = {
94 .num_resources = ARRAY_SIZE(smc91x_eth_resources),
95 .resource = smc91x_eth_resources,
97 .platform_data = &smc91x_info,
102 static struct mtd_partition nor_flash_partitions[] = {
105 .offset = 0x00000000,
107 .mask_flags = MTD_WRITEABLE, /* Read-only */
111 .offset = MTDPART_OFS_APPEND,
113 .mask_flags = MTD_WRITEABLE, /* Read-only */
117 .offset = MTDPART_OFS_APPEND,
122 .offset = MTDPART_OFS_APPEND,
123 .size = MTDPART_SIZ_FULL,
127 static struct physmap_flash_data nor_flash_data = {
129 .parts = nor_flash_partitions,
130 .nr_parts = ARRAY_SIZE(nor_flash_partitions),
133 static struct resource nor_flash_resources[] = {
135 .start = NOR_FLASH_ADDR,
136 .end = NOR_FLASH_ADDR + NOR_FLASH_SIZE - 1,
137 .flags = IORESOURCE_MEM,
141 static struct platform_device nor_flash_device = {
142 .name = "physmap-flash",
144 .platform_data = &nor_flash_data,
146 .num_resources = ARRAY_SIZE(nor_flash_resources),
147 .resource = nor_flash_resources,
150 static struct platform_device *urquell_devices[] __initdata = {
156 static int __init urquell_devices_setup(void)
159 gpio_request(GPIO_FN_USB_OVC0, NULL);
160 gpio_request(GPIO_FN_USB_PENC0, NULL);
163 __raw_writew(__raw_readw(UBOARDREG(IRL2MSKR)) & ~0x00000001,
164 UBOARDREG(IRL2MSKR));
166 return platform_add_devices(urquell_devices,
167 ARRAY_SIZE(urquell_devices));
169 device_initcall(urquell_devices_setup);
171 static void urquell_power_off(void)
173 __raw_writew(0xa5a5, UBOARDREG(SRSTR));
176 static void __init urquell_init_irq(void)
178 plat_irq_setup_pins(IRQ_MODE_IRL3210_MASK);
181 /* Initialize the board */
182 static void __init urquell_setup(char **cmdline_p)
184 printk(KERN_INFO "Renesas Technology Corp. Urquell support.\n");
186 pm_power_off = urquell_power_off;
192 static struct sh_machine_vector mv_urquell __initmv = {
193 .mv_name = "Urquell",
194 .mv_setup = urquell_setup,
195 .mv_init_irq = urquell_init_irq,