blob: afe9de73666ad8117f8e63b4abd054c16e012427 [file] [log] [blame]
Paul Mundt5283ecb2006-09-27 15:59:17 +09001/*
2 * arch/sh/boards/renesas/r7780rp/setup.c
3 *
Paul Mundt32351a22007-03-12 14:38:59 +09004 * Renesas Solutions Highlander Support.
5 *
Paul Mundt5283ecb2006-09-27 15:59:17 +09006 * Copyright (C) 2002 Atom Create Engineering Co., Ltd.
Paul Mundt71074d32007-02-14 14:49:04 +09007 * Copyright (C) 2005 - 2007 Paul Mundt
Paul Mundt5283ecb2006-09-27 15:59:17 +09008 *
Paul Mundt32351a22007-03-12 14:38:59 +09009 * This contains support for the R7780RP-1, R7780MP, and R7785RP
10 * Highlander modules.
Paul Mundt5283ecb2006-09-27 15:59:17 +090011 *
12 * This file is subject to the terms and conditions of the GNU General Public
13 * License. See the file "COPYING" in the main directory of this archive
14 * for more details.
15 */
16#include <linux/init.h>
17#include <linux/platform_device.h>
Paul Mundt71074d32007-02-14 14:49:04 +090018#include <linux/pata_platform.h>
Paul Mundt5283ecb2006-09-27 15:59:17 +090019#include <asm/machvec.h>
Paul Mundt082c44d2006-10-19 16:16:18 +090020#include <asm/r7780rp.h>
Paul Mundt5283ecb2006-09-27 15:59:17 +090021#include <asm/clock.h>
Paul Mundt8786c952007-08-20 13:03:41 +090022#include <asm/heartbeat.h>
Paul Mundt5283ecb2006-09-27 15:59:17 +090023#include <asm/io.h>
24
Yoshihiro Shimodae6c972f2007-07-17 13:38:54 +090025static struct resource r8a66597_usb_host_resources[] = {
26 [0] = {
27 .name = "r8a66597_hcd",
28 .start = 0xA4200000,
29 .end = 0xA42000FF,
30 .flags = IORESOURCE_MEM,
31 },
32 [1] = {
33 .name = "r8a66597_hcd",
Magnus Damm897cfcd82007-09-10 12:06:03 +090034 .start = IRQ_EXT1, /* irq number */
35 .end = IRQ_EXT1,
Yoshihiro Shimodae6c972f2007-07-17 13:38:54 +090036 .flags = IORESOURCE_IRQ,
37 },
38};
39
40static struct platform_device r8a66597_usb_host_device = {
41 .name = "r8a66597_hcd",
42 .id = -1,
43 .dev = {
44 .dma_mask = NULL, /* don't use dma */
45 .coherent_dma_mask = 0xffffffff,
46 },
47 .num_resources = ARRAY_SIZE(r8a66597_usb_host_resources),
48 .resource = r8a66597_usb_host_resources,
49};
50
51static struct resource m66592_usb_peripheral_resources[] = {
52 [0] = {
53 .name = "m66592_udc",
54 .start = 0xb0000000,
55 .end = 0xb00000FF,
56 .flags = IORESOURCE_MEM,
57 },
58 [1] = {
59 .name = "m66592_udc",
Magnus Damm897cfcd82007-09-10 12:06:03 +090060 .start = IRQ_EXT4, /* irq number */
61 .end = IRQ_EXT4,
Yoshihiro Shimodae6c972f2007-07-17 13:38:54 +090062 .flags = IORESOURCE_IRQ,
63 },
64};
65
66static struct platform_device m66592_usb_peripheral_device = {
67 .name = "m66592_udc",
68 .id = -1,
69 .dev = {
70 .dma_mask = NULL, /* don't use dma */
71 .coherent_dma_mask = 0xffffffff,
72 },
73 .num_resources = ARRAY_SIZE(m66592_usb_peripheral_resources),
74 .resource = m66592_usb_peripheral_resources,
75};
76
Paul Mundt0c020e32006-12-06 10:43:44 +090077static struct resource cf_ide_resources[] = {
78 [0] = {
Paul Mundt71074d32007-02-14 14:49:04 +090079 .start = PA_AREA5_IO + 0x1000,
80 .end = PA_AREA5_IO + 0x1000 + 0x08 - 1,
81 .flags = IORESOURCE_MEM,
Paul Mundt0c020e32006-12-06 10:43:44 +090082 },
83 [1] = {
Paul Mundt71074d32007-02-14 14:49:04 +090084 .start = PA_AREA5_IO + 0x80c,
85 .end = PA_AREA5_IO + 0x80c + 0x16 - 1,
86 .flags = IORESOURCE_MEM,
Paul Mundt0c020e32006-12-06 10:43:44 +090087 },
88 [2] = {
Magnus Damm897cfcd82007-09-10 12:06:03 +090089 .start = IRQ_CF,
Paul Mundt0c020e32006-12-06 10:43:44 +090090 .flags = IORESOURCE_IRQ,
91 },
92};
93
Paul Mundt71074d32007-02-14 14:49:04 +090094static struct pata_platform_info pata_info = {
95 .ioport_shift = 1,
96};
97
Paul Mundt0c020e32006-12-06 10:43:44 +090098static struct platform_device cf_ide_device = {
99 .name = "pata_platform",
100 .id = -1,
101 .num_resources = ARRAY_SIZE(cf_ide_resources),
102 .resource = cf_ide_resources,
Paul Mundt71074d32007-02-14 14:49:04 +0900103 .dev = {
104 .platform_data = &pata_info,
105 },
Paul Mundt0c020e32006-12-06 10:43:44 +0900106};
107
Paul Mundt3b4d9532007-02-13 15:42:28 +0900108static struct resource heartbeat_resources[] = {
109 [0] = {
110 .start = PA_OBLED,
Paul Mundta1fd3062007-08-23 15:11:44 +0900111 .end = PA_OBLED,
Paul Mundt3b4d9532007-02-13 15:42:28 +0900112 .flags = IORESOURCE_MEM,
113 },
114};
115
Paul Mundt8786c952007-08-20 13:03:41 +0900116#ifndef CONFIG_SH_R7785RP
117static unsigned char heartbeat_bit_pos[] = { 2, 1, 0, 3, 6, 5, 4, 7 };
118
119static struct heartbeat_data heartbeat_data = {
120 .bit_pos = heartbeat_bit_pos,
121 .nr_bits = ARRAY_SIZE(heartbeat_bit_pos),
122};
123#endif
124
Paul Mundt3b4d9532007-02-13 15:42:28 +0900125static struct platform_device heartbeat_device = {
126 .name = "heartbeat",
127 .id = -1,
Paul Mundt32351a22007-03-12 14:38:59 +0900128
129 /* R7785RP has a slightly more sensible FPGA.. */
130#ifndef CONFIG_SH_R7785RP
Paul Mundt3b4d9532007-02-13 15:42:28 +0900131 .dev = {
Paul Mundta1fd3062007-08-23 15:11:44 +0900132 .platform_data = &heartbeat_data,
Paul Mundt3b4d9532007-02-13 15:42:28 +0900133 },
Paul Mundt32351a22007-03-12 14:38:59 +0900134#endif
Paul Mundt3b4d9532007-02-13 15:42:28 +0900135 .num_resources = ARRAY_SIZE(heartbeat_resources),
136 .resource = heartbeat_resources,
137};
138
Paul Mundt5283ecb2006-09-27 15:59:17 +0900139static struct platform_device *r7780rp_devices[] __initdata = {
Yoshihiro Shimodae6c972f2007-07-17 13:38:54 +0900140 &r8a66597_usb_host_device,
141 &m66592_usb_peripheral_device,
Paul Mundt0c020e32006-12-06 10:43:44 +0900142 &cf_ide_device,
Paul Mundt3b4d9532007-02-13 15:42:28 +0900143 &heartbeat_device,
Paul Mundt5283ecb2006-09-27 15:59:17 +0900144};
145
146static int __init r7780rp_devices_setup(void)
147{
148 return platform_add_devices(r7780rp_devices,
149 ARRAY_SIZE(r7780rp_devices));
150}
Paul Mundt32351a22007-03-12 14:38:59 +0900151device_initcall(r7780rp_devices_setup);
Paul Mundt5283ecb2006-09-27 15:59:17 +0900152
153/*
154 * Platform specific clocks
155 */
156static void ivdr_clk_enable(struct clk *clk)
157{
Ryusuke Sakato39374aa2007-05-07 10:48:56 +0900158 ctrl_outw(ctrl_inw(PA_IVDRCTL) | (1 << IVDR_CK_ON), PA_IVDRCTL);
Paul Mundt5283ecb2006-09-27 15:59:17 +0900159}
160
161static void ivdr_clk_disable(struct clk *clk)
162{
Ryusuke Sakato39374aa2007-05-07 10:48:56 +0900163 ctrl_outw(ctrl_inw(PA_IVDRCTL) & ~(1 << IVDR_CK_ON), PA_IVDRCTL);
Paul Mundt5283ecb2006-09-27 15:59:17 +0900164}
165
166static struct clk_ops ivdr_clk_ops = {
167 .enable = ivdr_clk_enable,
168 .disable = ivdr_clk_disable,
169};
170
171static struct clk ivdr_clk = {
172 .name = "ivdr_clk",
173 .ops = &ivdr_clk_ops,
174};
175
176static struct clk *r7780rp_clocks[] = {
177 &ivdr_clk,
178};
179
Paul Mundt5283ecb2006-09-27 15:59:17 +0900180static void r7780rp_power_off(void)
181{
Paul Mundt32351a22007-03-12 14:38:59 +0900182 if (mach_is_r7780mp() || mach_is_r7785rp())
183 ctrl_outw(0x0001, PA_POFF);
Paul Mundt5283ecb2006-09-27 15:59:17 +0900184}
185
186/*
187 * Initialize the board
188 */
Paul Mundt32351a22007-03-12 14:38:59 +0900189static void __init highlander_setup(char **cmdline_p)
Paul Mundt5283ecb2006-09-27 15:59:17 +0900190{
191 u16 ver = ctrl_inw(PA_VERREG);
192 int i;
193
Paul Mundt32351a22007-03-12 14:38:59 +0900194 printk(KERN_INFO "Renesas Solutions Highlander %s support.\n",
195 mach_is_r7780rp() ? "R7780RP-1" :
196 mach_is_r7780mp() ? "R7780MP" :
197 "R7785RP");
Paul Mundt5283ecb2006-09-27 15:59:17 +0900198
199 printk(KERN_INFO "Board version: %d (revision %d), "
200 "FPGA version: %d (revision %d)\n",
201 (ver >> 12) & 0xf, (ver >> 8) & 0xf,
202 (ver >> 4) & 0xf, ver & 0xf);
203
204 /*
205 * Enable the important clocks right away..
206 */
207 for (i = 0; i < ARRAY_SIZE(r7780rp_clocks); i++) {
208 struct clk *clk = r7780rp_clocks[i];
209
210 clk_register(clk);
211 clk_enable(clk);
212 }
213
214 ctrl_outw(0x0000, PA_OBLED); /* Clear LED. */
Paul Mundt32351a22007-03-12 14:38:59 +0900215
216 if (mach_is_r7780rp())
217 ctrl_outw(0x0001, PA_SDPOW); /* SD Power ON */
218
Paul Mundt2c081e72006-12-25 18:28:33 +0900219 ctrl_outw(ctrl_inw(PA_IVDRCTL) | 0x01, PA_IVDRCTL); /* Si13112 */
Paul Mundt5283ecb2006-09-27 15:59:17 +0900220
221 pm_power_off = r7780rp_power_off;
222}
Paul Mundt2c7834a2006-09-27 18:17:31 +0900223
Magnus Damm897cfcd82007-09-10 12:06:03 +0900224static unsigned char irl2irq[HL_NR_IRL];
225
226int highlander_irq_demux(int irq)
227{
228 if (irq >= HL_NR_IRL || !irl2irq[irq])
229 return irq;
230
231 return irl2irq[irq];
232}
233
234void __init highlander_init_irq(void)
235{
236 unsigned char *ucp = NULL;
237
238 do {
239#ifdef CONFIG_SH_R7780MP
240 ucp = highlander_init_irq_r7780mp();
241 if (ucp)
242 break;
243#endif
244#ifdef CONFIG_SH_R7785RP
245 ucp = highlander_init_irq_r7785rp();
246 if (ucp)
247 break;
248#endif
249#ifdef CONFIG_SH_R7780RP
250 highlander_init_irq_r7780rp();
251 ucp = irl2irq;
252 break;
253#endif
254 } while (0);
255
256 if (ucp) {
257 plat_irq_setup_pins(IRQ_MODE_IRL3210);
258 memcpy(irl2irq, ucp, HL_NR_IRL);
259 }
260}
261
Paul Mundt2c7834a2006-09-27 18:17:31 +0900262/*
263 * The Machine Vector
264 */
Paul Mundt82f81f42007-05-15 15:19:34 +0900265static struct sh_machine_vector mv_highlander __initmv = {
Paul Mundt32351a22007-03-12 14:38:59 +0900266 .mv_name = "Highlander",
Paul Mundt32351a22007-03-12 14:38:59 +0900267 .mv_setup = highlander_setup,
268 .mv_init_irq = highlander_init_irq,
Magnus Damm897cfcd82007-09-10 12:06:03 +0900269 .mv_irq_demux = highlander_irq_demux,
Paul Mundt2c7834a2006-09-27 18:17:31 +0900270};