blob: 36b8bac9b1247f25ad1fa88c3d010af9b7e4f131 [file] [log] [blame]
Kuninori Morimoto5ac072e2009-03-03 16:22:00 +09001/*
2 * Renesas Technology Corp. SH7786 Urquell Support.
3 *
4 * Copyright (C) 2008 Kuninori Morimoto <morimoto.kuninori@renesas.com>
Paul Mundt5d0e9452009-06-15 19:02:37 +09005 * Copyright (C) 2009 Paul Mundt
Kuninori Morimoto6e979382009-04-07 08:41:57 +00006 *
7 * Based on board-sh7785lcr.c
Kuninori Morimoto5ac072e2009-03-03 16:22:00 +09008 * Copyright (C) 2008 Yoshihiro Shimoda
9 *
10 * This file is subject to the terms and conditions of the GNU General Public
11 * License. See the file "COPYING" in the main directory of this archive
12 * for more details.
13 */
14#include <linux/init.h>
15#include <linux/platform_device.h>
16#include <linux/fb.h>
Kuninori Morimoto929ef1a2009-03-05 17:37:12 +090017#include <linux/smc91x.h>
Kuninori Morimoto5ac072e2009-03-03 16:22:00 +090018#include <linux/mtd/physmap.h>
19#include <linux/delay.h>
20#include <linux/gpio.h>
21#include <linux/irq.h>
22#include <mach/urquell.h>
23#include <cpu/sh7786.h>
24#include <asm/heartbeat.h>
25#include <asm/sizes.h>
26
Kuninori Morimoto1bc57182009-04-10 13:35:28 -070027/*
28 * bit 1234 5678
Kuninori Morimoto6e979382009-04-07 08:41:57 +000029 *----------------------------
Kuninori Morimoto1bc57182009-04-10 13:35:28 -070030 * SW1 0101 0010 -> Pck 33MHz version
31 * (1101 0010) Pck 66MHz version
32 * SW2 0x1x xxxx -> little endian
Kuninori Morimoto6e979382009-04-07 08:41:57 +000033 * 29bit mode
Kuninori Morimoto1bc57182009-04-10 13:35:28 -070034 * SW47 0001 1000 -> CS0 : on-board flash
Kuninori Morimoto6e979382009-04-07 08:41:57 +000035 * CS1 : SRAM, registers, LAN, PCMCIA
Kuninori Morimoto1bc57182009-04-10 13:35:28 -070036 * 38400 bps for SCIF1
Kuninori Morimoto6e979382009-04-07 08:41:57 +000037 *
38 * Address
Kuninori Morimoto1bc57182009-04-10 13:35:28 -070039 * 0x00000000 - 0x04000000 (CS0) Nor Flash
40 * 0x04000000 - 0x04200000 (CS1) SRAM
41 * 0x05000000 - 0x05800000 (CS1) on board register
42 * 0x05800000 - 0x06000000 (CS1) LAN91C111
43 * 0x06000000 - 0x06400000 (CS1) PCMCIA
44 * 0x08000000 - 0x10000000 (CS2-CS3) DDR3
45 * 0x10000000 - 0x14000000 (CS4) PCIe
46 * 0x14000000 - 0x14800000 (CS5) Core0 LRAM/URAM
47 * 0x14800000 - 0x15000000 (CS5) Core1 LRAM/URAM
48 * 0x18000000 - 0x1C000000 (CS6) ATA/NAND-Flash
49 * 0x1C000000 - (CS7) SH7786 Control register
Kuninori Morimoto6e979382009-04-07 08:41:57 +000050 */
51
52/* HeartBeat */
Kuninori Morimoto5ac072e2009-03-03 16:22:00 +090053static struct resource heartbeat_resources[] = {
54 [0] = {
55 .start = BOARDREG(SLEDR),
56 .end = BOARDREG(SLEDR),
57 .flags = IORESOURCE_MEM,
58 },
59};
60
61static struct heartbeat_data heartbeat_data = {
62 .regsize = 16,
63};
64
65static struct platform_device heartbeat_device = {
66 .name = "heartbeat",
67 .id = -1,
68 .dev = {
69 .platform_data = &heartbeat_data,
70 },
71 .num_resources = ARRAY_SIZE(heartbeat_resources),
72 .resource = heartbeat_resources,
73};
74
Kuninori Morimoto6e979382009-04-07 08:41:57 +000075/* LAN91C111 */
Kuninori Morimoto929ef1a2009-03-05 17:37:12 +090076static struct smc91x_platdata smc91x_info = {
77 .flags = SMC91X_USE_16BIT | SMC91X_NOWAIT,
78};
79
80static struct resource smc91x_eth_resources[] = {
81 [0] = {
82 .name = "SMC91C111" ,
83 .start = 0x05800300,
84 .end = 0x0580030f,
85 .flags = IORESOURCE_MEM,
86 },
87 [1] = {
88 .start = 11,
89 .flags = IORESOURCE_IRQ,
90 },
91};
92
93static struct platform_device smc91x_eth_device = {
94 .name = "smc91x",
95 .num_resources = ARRAY_SIZE(smc91x_eth_resources),
96 .resource = smc91x_eth_resources,
97 .dev = {
98 .platform_data = &smc91x_info,
99 },
100};
101
Kuninori Morimoto6e979382009-04-07 08:41:57 +0000102/* Nor Flash */
Kuninori Morimoto5ac072e2009-03-03 16:22:00 +0900103static struct mtd_partition nor_flash_partitions[] = {
104 {
105 .name = "loader",
106 .offset = 0x00000000,
107 .size = SZ_512K,
108 .mask_flags = MTD_WRITEABLE, /* Read-only */
109 },
110 {
111 .name = "bootenv",
112 .offset = MTDPART_OFS_APPEND,
113 .size = SZ_512K,
114 .mask_flags = MTD_WRITEABLE, /* Read-only */
115 },
116 {
117 .name = "kernel",
118 .offset = MTDPART_OFS_APPEND,
119 .size = SZ_4M,
120 },
121 {
122 .name = "data",
123 .offset = MTDPART_OFS_APPEND,
124 .size = MTDPART_SIZ_FULL,
125 },
126};
127
128static struct physmap_flash_data nor_flash_data = {
129 .width = 2,
130 .parts = nor_flash_partitions,
131 .nr_parts = ARRAY_SIZE(nor_flash_partitions),
132};
133
134static struct resource nor_flash_resources[] = {
135 [0] = {
136 .start = NOR_FLASH_ADDR,
137 .end = NOR_FLASH_ADDR + NOR_FLASH_SIZE - 1,
138 .flags = IORESOURCE_MEM,
139 }
140};
141
142static struct platform_device nor_flash_device = {
143 .name = "physmap-flash",
144 .dev = {
145 .platform_data = &nor_flash_data,
146 },
147 .num_resources = ARRAY_SIZE(nor_flash_resources),
148 .resource = nor_flash_resources,
149};
150
151static struct platform_device *urquell_devices[] __initdata = {
152 &heartbeat_device,
Kuninori Morimoto929ef1a2009-03-05 17:37:12 +0900153 &smc91x_eth_device,
Kuninori Morimoto5ac072e2009-03-03 16:22:00 +0900154 &nor_flash_device,
155};
156
157static int __init urquell_devices_setup(void)
158{
159 /* USB */
160 gpio_request(GPIO_FN_USB_OVC0, NULL);
161 gpio_request(GPIO_FN_USB_PENC0, NULL);
162
Kuninori Morimoto71c1d192009-03-26 00:24:01 +0000163 /* enable LAN */
164 __raw_writew(__raw_readw(UBOARDREG(IRL2MSKR)) & ~0x00000001,
165 UBOARDREG(IRL2MSKR));
166
Kuninori Morimoto5ac072e2009-03-03 16:22:00 +0900167 return platform_add_devices(urquell_devices,
168 ARRAY_SIZE(urquell_devices));
169}
170device_initcall(urquell_devices_setup);
171
172static void urquell_power_off(void)
173{
174 __raw_writew(0xa5a5, UBOARDREG(SRSTR));
175}
176
Kuninori Morimoto929ef1a2009-03-05 17:37:12 +0900177static void __init urquell_init_irq(void)
178{
179 plat_irq_setup_pins(IRQ_MODE_IRL3210_MASK);
180}
181
Paul Mundt5d0e9452009-06-15 19:02:37 +0900182static int urquell_mode_pins(void)
183{
184 return __raw_readw(UBOARDREG(MDSWMR));
185}
186
Kuninori Morimoto5ac072e2009-03-03 16:22:00 +0900187/* Initialize the board */
188static void __init urquell_setup(char **cmdline_p)
189{
190 printk(KERN_INFO "Renesas Technology Corp. Urquell support.\n");
191
192 pm_power_off = urquell_power_off;
193}
194
195/*
196 * The Machine Vector
197 */
198static struct sh_machine_vector mv_urquell __initmv = {
199 .mv_name = "Urquell",
200 .mv_setup = urquell_setup,
Kuninori Morimoto929ef1a2009-03-05 17:37:12 +0900201 .mv_init_irq = urquell_init_irq,
Paul Mundt5d0e9452009-06-15 19:02:37 +0900202 .mv_mode_pins = urquell_mode_pins,
Kuninori Morimoto5ac072e2009-03-03 16:22:00 +0900203};