blob: b52abcc5259a41ea5c3ab15a426dcf75be3b36ed [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 Mundtdea3cf12010-01-19 20:09:28 +09005 * Copyright (C) 2009, 2010 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>
Paul Mundtdea3cf12010-01-19 20:09:28 +090022#include <linux/clk.h>
Paul Mundt4059e432012-05-18 15:43:48 +090023#include <linux/sh_intc.h>
Kuninori Morimoto5ac072e2009-03-03 16:22:00 +090024#include <mach/urquell.h>
25#include <cpu/sh7786.h>
26#include <asm/heartbeat.h>
27#include <asm/sizes.h>
Paul Mundt3366e352010-03-30 12:38:01 +090028#include <asm/smp-ops.h>
Kuninori Morimoto5ac072e2009-03-03 16:22:00 +090029
Kuninori Morimoto1bc57182009-04-10 13:35:28 -070030/*
31 * bit 1234 5678
Kuninori Morimoto6e979382009-04-07 08:41:57 +000032 *----------------------------
Kuninori Morimoto1bc57182009-04-10 13:35:28 -070033 * SW1 0101 0010 -> Pck 33MHz version
34 * (1101 0010) Pck 66MHz version
35 * SW2 0x1x xxxx -> little endian
Kuninori Morimoto6e979382009-04-07 08:41:57 +000036 * 29bit mode
Kuninori Morimoto1bc57182009-04-10 13:35:28 -070037 * SW47 0001 1000 -> CS0 : on-board flash
Kuninori Morimoto6e979382009-04-07 08:41:57 +000038 * CS1 : SRAM, registers, LAN, PCMCIA
Kuninori Morimoto1bc57182009-04-10 13:35:28 -070039 * 38400 bps for SCIF1
Kuninori Morimoto6e979382009-04-07 08:41:57 +000040 *
41 * Address
Kuninori Morimoto1bc57182009-04-10 13:35:28 -070042 * 0x00000000 - 0x04000000 (CS0) Nor Flash
43 * 0x04000000 - 0x04200000 (CS1) SRAM
44 * 0x05000000 - 0x05800000 (CS1) on board register
45 * 0x05800000 - 0x06000000 (CS1) LAN91C111
46 * 0x06000000 - 0x06400000 (CS1) PCMCIA
47 * 0x08000000 - 0x10000000 (CS2-CS3) DDR3
48 * 0x10000000 - 0x14000000 (CS4) PCIe
49 * 0x14000000 - 0x14800000 (CS5) Core0 LRAM/URAM
50 * 0x14800000 - 0x15000000 (CS5) Core1 LRAM/URAM
51 * 0x18000000 - 0x1C000000 (CS6) ATA/NAND-Flash
52 * 0x1C000000 - (CS7) SH7786 Control register
Kuninori Morimoto6e979382009-04-07 08:41:57 +000053 */
54
55/* HeartBeat */
Paul Mundta09d2832010-01-15 12:24:34 +090056static struct resource heartbeat_resource = {
57 .start = BOARDREG(SLEDR),
58 .end = BOARDREG(SLEDR),
59 .flags = IORESOURCE_MEM | IORESOURCE_MEM_16BIT,
Kuninori Morimoto5ac072e2009-03-03 16:22:00 +090060};
61
62static struct platform_device heartbeat_device = {
63 .name = "heartbeat",
64 .id = -1,
Paul Mundt14965f12010-01-19 20:10:33 +090065 .num_resources = 1,
Paul Mundta09d2832010-01-15 12:24:34 +090066 .resource = &heartbeat_resource,
Kuninori Morimoto5ac072e2009-03-03 16:22:00 +090067};
68
Kuninori Morimoto6e979382009-04-07 08:41:57 +000069/* LAN91C111 */
Kuninori Morimoto929ef1a2009-03-05 17:37:12 +090070static struct smc91x_platdata smc91x_info = {
71 .flags = SMC91X_USE_16BIT | SMC91X_NOWAIT,
72};
73
74static struct resource smc91x_eth_resources[] = {
75 [0] = {
76 .name = "SMC91C111" ,
77 .start = 0x05800300,
78 .end = 0x0580030f,
79 .flags = IORESOURCE_MEM,
80 },
81 [1] = {
Paul Mundt4059e432012-05-18 15:43:48 +090082 .start = evt2irq(0x360),
Kuninori Morimoto929ef1a2009-03-05 17:37:12 +090083 .flags = IORESOURCE_IRQ,
84 },
85};
86
87static struct platform_device smc91x_eth_device = {
88 .name = "smc91x",
89 .num_resources = ARRAY_SIZE(smc91x_eth_resources),
90 .resource = smc91x_eth_resources,
91 .dev = {
92 .platform_data = &smc91x_info,
93 },
94};
95
Kuninori Morimoto6e979382009-04-07 08:41:57 +000096/* Nor Flash */
Kuninori Morimoto5ac072e2009-03-03 16:22:00 +090097static struct mtd_partition nor_flash_partitions[] = {
98 {
99 .name = "loader",
100 .offset = 0x00000000,
101 .size = SZ_512K,
102 .mask_flags = MTD_WRITEABLE, /* Read-only */
103 },
104 {
105 .name = "bootenv",
106 .offset = MTDPART_OFS_APPEND,
107 .size = SZ_512K,
108 .mask_flags = MTD_WRITEABLE, /* Read-only */
109 },
110 {
111 .name = "kernel",
112 .offset = MTDPART_OFS_APPEND,
113 .size = SZ_4M,
114 },
115 {
116 .name = "data",
117 .offset = MTDPART_OFS_APPEND,
118 .size = MTDPART_SIZ_FULL,
119 },
120};
121
122static struct physmap_flash_data nor_flash_data = {
123 .width = 2,
124 .parts = nor_flash_partitions,
125 .nr_parts = ARRAY_SIZE(nor_flash_partitions),
126};
127
128static struct resource nor_flash_resources[] = {
129 [0] = {
130 .start = NOR_FLASH_ADDR,
131 .end = NOR_FLASH_ADDR + NOR_FLASH_SIZE - 1,
132 .flags = IORESOURCE_MEM,
133 }
134};
135
136static struct platform_device nor_flash_device = {
137 .name = "physmap-flash",
138 .dev = {
139 .platform_data = &nor_flash_data,
140 },
141 .num_resources = ARRAY_SIZE(nor_flash_resources),
142 .resource = nor_flash_resources,
143};
144
145static struct platform_device *urquell_devices[] __initdata = {
146 &heartbeat_device,
Kuninori Morimoto929ef1a2009-03-05 17:37:12 +0900147 &smc91x_eth_device,
Kuninori Morimoto5ac072e2009-03-03 16:22:00 +0900148 &nor_flash_device,
149};
150
151static int __init urquell_devices_setup(void)
152{
153 /* USB */
154 gpio_request(GPIO_FN_USB_OVC0, NULL);
155 gpio_request(GPIO_FN_USB_PENC0, NULL);
156
Kuninori Morimoto71c1d192009-03-26 00:24:01 +0000157 /* enable LAN */
158 __raw_writew(__raw_readw(UBOARDREG(IRL2MSKR)) & ~0x00000001,
159 UBOARDREG(IRL2MSKR));
160
Kuninori Morimoto5ac072e2009-03-03 16:22:00 +0900161 return platform_add_devices(urquell_devices,
162 ARRAY_SIZE(urquell_devices));
163}
164device_initcall(urquell_devices_setup);
165
166static void urquell_power_off(void)
167{
168 __raw_writew(0xa5a5, UBOARDREG(SRSTR));
169}
170
Kuninori Morimoto929ef1a2009-03-05 17:37:12 +0900171static void __init urquell_init_irq(void)
172{
173 plat_irq_setup_pins(IRQ_MODE_IRL3210_MASK);
174}
175
Paul Mundt5d0e9452009-06-15 19:02:37 +0900176static int urquell_mode_pins(void)
177{
178 return __raw_readw(UBOARDREG(MDSWMR));
179}
180
Paul Mundtdea3cf12010-01-19 20:09:28 +0900181static int urquell_clk_init(void)
182{
183 struct clk *clk;
184 int ret;
185
186 /*
187 * Only handle the EXTAL case, anyone interfacing a crystal
188 * resonator will need to provide their own input clock.
189 */
190 if (test_mode_pin(MODE_PIN9))
191 return -EINVAL;
192
193 clk = clk_get(NULL, "extal");
Paul Mundt79128252011-06-24 17:36:23 +0900194 if (IS_ERR(clk))
Paul Mundtdea3cf12010-01-19 20:09:28 +0900195 return PTR_ERR(clk);
196 ret = clk_set_rate(clk, 33333333);
197 clk_put(clk);
198
199 return ret;
200}
201
Kuninori Morimoto5ac072e2009-03-03 16:22:00 +0900202/* Initialize the board */
203static void __init urquell_setup(char **cmdline_p)
204{
205 printk(KERN_INFO "Renesas Technology Corp. Urquell support.\n");
206
207 pm_power_off = urquell_power_off;
Paul Mundt3366e352010-03-30 12:38:01 +0900208
209 register_smp_ops(&shx3_smp_ops);
Kuninori Morimoto5ac072e2009-03-03 16:22:00 +0900210}
211
212/*
213 * The Machine Vector
214 */
215static struct sh_machine_vector mv_urquell __initmv = {
216 .mv_name = "Urquell",
217 .mv_setup = urquell_setup,
Kuninori Morimoto929ef1a2009-03-05 17:37:12 +0900218 .mv_init_irq = urquell_init_irq,
Paul Mundt5d0e9452009-06-15 19:02:37 +0900219 .mv_mode_pins = urquell_mode_pins,
Paul Mundtdea3cf12010-01-19 20:09:28 +0900220 .mv_clk_init = urquell_clk_init,
Kuninori Morimoto5ac072e2009-03-03 16:22:00 +0900221};