blob: 5a7b873f29b3cd853a9975626182dcb38d5463c0 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Support for Sharp SL-C7xx PDAs
3 * Models: SL-C700 (Corgi), SL-C750 (Shepherd), SL-C760 (Husky)
4 *
5 * Copyright (c) 2004-2005 Richard Purdie
6 *
7 * Based on Sharp's 2.4 kernel patches/lubbock.c
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License version 2 as
11 * published by the Free Software Foundation.
12 *
13 */
14
15#include <linux/kernel.h>
16#include <linux/init.h>
Russell Kingd052d1b2005-10-29 19:07:23 +010017#include <linux/platform_device.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include <linux/major.h>
19#include <linux/fs.h>
20#include <linux/interrupt.h>
21#include <linux/mmc/host.h>
22
23#include <asm/setup.h>
24#include <asm/memory.h>
25#include <asm/mach-types.h>
26#include <asm/hardware.h>
27#include <asm/irq.h>
28#include <asm/io.h>
29
30#include <asm/mach/arch.h>
31#include <asm/mach/map.h>
32#include <asm/mach/irq.h>
33
34#include <asm/arch/pxa-regs.h>
35#include <asm/arch/irq.h>
Richard Purdieca1140b2005-10-30 14:38:53 +000036#include <asm/arch/irda.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070037#include <asm/arch/mmc.h>
38#include <asm/arch/udc.h>
39#include <asm/arch/corgi.h>
Richard Purdie10362602005-10-10 10:17:45 +010040#include <asm/arch/sharpsl.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070041
42#include <asm/mach/sharpsl_param.h>
43#include <asm/hardware/scoop.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070044
45#include "generic.h"
Richard Purdie50a5de42005-09-13 01:25:30 -070046#include "sharpsl.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070047
48
49/*
50 * Corgi SCOOP Device
51 */
52static struct resource corgi_scoop_resources[] = {
53 [0] = {
54 .start = 0x10800000,
55 .end = 0x10800fff,
56 .flags = IORESOURCE_MEM,
57 },
58};
59
60static struct scoop_config corgi_scoop_setup = {
61 .io_dir = CORGI_SCOOP_IO_DIR,
62 .io_out = CORGI_SCOOP_IO_OUT,
63};
64
65struct platform_device corgiscoop_device = {
66 .name = "sharp-scoop",
67 .id = -1,
68 .dev = {
69 .platform_data = &corgi_scoop_setup,
70 },
71 .num_resources = ARRAY_SIZE(corgi_scoop_resources),
72 .resource = corgi_scoop_resources,
73};
74
Richard Purdiea63ae442005-11-08 19:15:43 +000075static void corgi_pcmcia_init(void)
76{
77 /* Setup default state of GPIO outputs
78 before we enable them as outputs. */
79 GPSR(GPIO48_nPOE) = GPIO_bit(GPIO48_nPOE) |
80 GPIO_bit(GPIO49_nPWE) | GPIO_bit(GPIO50_nPIOR) |
81 GPIO_bit(GPIO51_nPIOW) | GPIO_bit(GPIO52_nPCE_1) |
82 GPIO_bit(GPIO53_nPCE_2);
83
84 pxa_gpio_mode(GPIO48_nPOE_MD);
85 pxa_gpio_mode(GPIO49_nPWE_MD);
86 pxa_gpio_mode(GPIO50_nPIOR_MD);
87 pxa_gpio_mode(GPIO51_nPIOW_MD);
88 pxa_gpio_mode(GPIO55_nPREG_MD);
89 pxa_gpio_mode(GPIO56_nPWAIT_MD);
90 pxa_gpio_mode(GPIO57_nIOIS16_MD);
91 pxa_gpio_mode(GPIO52_nPCE_1_MD);
92 pxa_gpio_mode(GPIO53_nPCE_2_MD);
93 pxa_gpio_mode(GPIO54_pSKTSEL_MD);
94}
95
96static struct scoop_pcmcia_dev corgi_pcmcia_scoop[] = {
97{
98 .dev = &corgiscoop_device.dev,
99 .irq = CORGI_IRQ_GPIO_CF_IRQ,
100 .cd_irq = CORGI_IRQ_GPIO_CF_CD,
101 .cd_irq_str = "PCMCIA0 CD",
102},
103};
104
105static struct scoop_pcmcia_config corgi_pcmcia_config = {
106 .devs = &corgi_pcmcia_scoop[0],
107 .num_devs = 1,
108 .pcmcia_init = corgi_pcmcia_init,
109};
110
111EXPORT_SYMBOL(corgiscoop_device);
112
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113
114/*
115 * Corgi SSP Device
116 *
117 * Set the parent as the scoop device because a lot of SSP devices
118 * also use scoop functions and this makes the power up/down order
119 * work correctly.
120 */
Richard Purdie41b1bce2005-09-06 15:19:05 -0700121struct platform_device corgissp_device = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122 .name = "corgi-ssp",
123 .dev = {
124 .parent = &corgiscoop_device.dev,
125 },
126 .id = -1,
127};
128
Richard Purdie50a5de42005-09-13 01:25:30 -0700129struct corgissp_machinfo corgi_ssp_machinfo = {
130 .port = 1,
131 .cs_lcdcon = CORGI_GPIO_LCDCON_CS,
132 .cs_ads7846 = CORGI_GPIO_ADS7846_CS,
133 .cs_max1111 = CORGI_GPIO_MAX1111_CS,
134 .clk_lcdcon = 76,
135 .clk_ads7846 = 2,
136 .clk_max1111 = 8,
137};
138
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139
140/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 * Corgi Backlight Device
142 */
Richard Purdie1351e6e2005-09-13 01:25:33 -0700143static struct corgibl_machinfo corgi_bl_machinfo = {
144 .max_intensity = 0x2f,
145 .set_bl_intensity = corgi_bl_set_intensity,
146};
147
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148static struct platform_device corgibl_device = {
149 .name = "corgi-bl",
150 .dev = {
151 .parent = &corgifb_device.dev,
Richard Purdie1351e6e2005-09-13 01:25:33 -0700152 .platform_data = &corgi_bl_machinfo,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 },
154 .id = -1,
155};
156
157
158/*
Richard Purdief7ceff32005-09-06 15:19:07 -0700159 * Corgi Keyboard Device
160 */
161static struct platform_device corgikbd_device = {
162 .name = "corgi-keyboard",
163 .id = -1,
164};
165
166
167/*
168 * Corgi Touch Screen Device
169 */
Richard Purdie513b6e12005-09-13 01:25:33 -0700170static struct resource corgits_resources[] = {
171 [0] = {
172 .start = CORGI_IRQ_GPIO_TP_INT,
173 .end = CORGI_IRQ_GPIO_TP_INT,
174 .flags = IORESOURCE_IRQ,
175 },
176};
177
178static struct corgits_machinfo corgi_ts_machinfo = {
179 .get_hsync_len = corgi_get_hsync_len,
180 .put_hsync = corgi_put_hsync,
181 .wait_hsync = corgi_wait_hsync,
182};
183
Richard Purdief7ceff32005-09-06 15:19:07 -0700184static struct platform_device corgits_device = {
185 .name = "corgi-ts",
186 .dev = {
187 .parent = &corgissp_device.dev,
Richard Purdie513b6e12005-09-13 01:25:33 -0700188 .platform_data = &corgi_ts_machinfo,
Richard Purdief7ceff32005-09-06 15:19:07 -0700189 },
190 .id = -1,
Richard Purdie513b6e12005-09-13 01:25:33 -0700191 .num_resources = ARRAY_SIZE(corgits_resources),
192 .resource = corgits_resources,
Richard Purdief7ceff32005-09-06 15:19:07 -0700193};
194
195
196/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 * MMC/SD Device
198 *
Richard Purdieaa6c2e72005-09-09 18:54:03 +0100199 * The card detect interrupt isn't debounced so we delay it by 250ms
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 * to give the card a chance to fully insert/eject.
201 */
Richard Purdieaa6c2e72005-09-09 18:54:03 +0100202static struct pxamci_platform_data corgi_mci_platform_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203
Richard Purdieaa6c2e72005-09-09 18:54:03 +0100204static int corgi_mci_init(struct device *dev, irqreturn_t (*corgi_detect_int)(int, void *, struct pt_regs *), void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205{
206 int err;
207
208 /* setup GPIO for PXA25x MMC controller */
209 pxa_gpio_mode(GPIO6_MMCCLK_MD);
210 pxa_gpio_mode(GPIO8_MMCCS0_MD);
211 pxa_gpio_mode(CORGI_GPIO_nSD_DETECT | GPIO_IN);
212 pxa_gpio_mode(CORGI_GPIO_SD_PWR | GPIO_OUT);
213
Richard Purdieaa6c2e72005-09-09 18:54:03 +0100214 corgi_mci_platform_data.detect_delay = msecs_to_jiffies(250);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215
Russell King9ded96f2006-01-08 01:02:07 -0800216 err = request_irq(CORGI_IRQ_GPIO_nSD_DETECT, corgi_detect_int,
217 SA_INTERRUPT | SA_TRIGGER_RISING | SA_TRIGGER_FALLING,
218 "MMC card detect", data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 if (err) {
220 printk(KERN_ERR "corgi_mci_init: MMC/SD: can't request MMC card detect IRQ\n");
221 return -1;
222 }
223
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 return 0;
225}
226
227static void corgi_mci_setpower(struct device *dev, unsigned int vdd)
228{
229 struct pxamci_platform_data* p_d = dev->platform_data;
230
Richard Purdiefdce05b2005-09-15 14:53:21 +0100231 if (( 1 << vdd) & p_d->ocr_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 GPSR1 = GPIO_bit(CORGI_GPIO_SD_PWR);
Richard Purdiefdce05b2005-09-15 14:53:21 +0100233 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 GPCR1 = GPIO_bit(CORGI_GPIO_SD_PWR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235}
236
Richard Purdie3870ee82005-09-06 15:19:07 -0700237static int corgi_mci_get_ro(struct device *dev)
238{
239 return GPLR(CORGI_GPIO_nSD_WP) & GPIO_bit(CORGI_GPIO_nSD_WP);
240}
241
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242static void corgi_mci_exit(struct device *dev, void *data)
243{
244 free_irq(CORGI_IRQ_GPIO_nSD_DETECT, data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245}
246
247static struct pxamci_platform_data corgi_mci_platform_data = {
248 .ocr_mask = MMC_VDD_32_33|MMC_VDD_33_34,
249 .init = corgi_mci_init,
Richard Purdie3870ee82005-09-06 15:19:07 -0700250 .get_ro = corgi_mci_get_ro,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 .setpower = corgi_mci_setpower,
252 .exit = corgi_mci_exit,
253};
254
255
Richard Purdieca1140b2005-10-30 14:38:53 +0000256/*
257 * Irda
258 */
259static void corgi_irda_transceiver_mode(struct device *dev, int mode)
260{
261 if (mode & IR_OFF)
262 GPSR(CORGI_GPIO_IR_ON) = GPIO_bit(CORGI_GPIO_IR_ON);
263 else
264 GPCR(CORGI_GPIO_IR_ON) = GPIO_bit(CORGI_GPIO_IR_ON);
265}
266
267static struct pxaficp_platform_data corgi_ficp_platform_data = {
268 .transceiver_cap = IR_SIRMODE | IR_OFF,
269 .transceiver_mode = corgi_irda_transceiver_mode,
270};
271
Richard Purdief7ceff32005-09-06 15:19:07 -0700272
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273/*
274 * USB Device Controller
275 */
276static void corgi_udc_command(int cmd)
277{
278 switch(cmd) {
279 case PXA2XX_UDC_CMD_CONNECT:
280 GPSR(CORGI_GPIO_USB_PULLUP) = GPIO_bit(CORGI_GPIO_USB_PULLUP);
281 break;
282 case PXA2XX_UDC_CMD_DISCONNECT:
283 GPCR(CORGI_GPIO_USB_PULLUP) = GPIO_bit(CORGI_GPIO_USB_PULLUP);
284 break;
285 }
286}
287
288static struct pxa2xx_udc_mach_info udc_info __initdata = {
289 /* no connect GPIO; corgi can't tell connection status */
290 .udc_command = corgi_udc_command,
291};
292
293
294static struct platform_device *devices[] __initdata = {
295 &corgiscoop_device,
296 &corgissp_device,
297 &corgifb_device,
Richard Purdief7ceff32005-09-06 15:19:07 -0700298 &corgikbd_device,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 &corgibl_device,
Richard Purdief7ceff32005-09-06 15:19:07 -0700300 &corgits_device,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301};
302
303static void __init corgi_init(void)
304{
Richard Purdiefdce05b2005-09-15 14:53:21 +0100305 /* setup sleep mode values */
306 PWER = 0x00000002;
307 PFER = 0x00000000;
308 PRER = 0x00000002;
309 PGSR0 = 0x0158C000;
310 PGSR1 = 0x00FF0080;
311 PGSR2 = 0x0001C004;
312 /* Stop 3.6MHz and drive HIGH to PCMCIA and CS */
313 PCFR |= PCFR_OPDE;
314
Richard Purdie50a5de42005-09-13 01:25:30 -0700315 corgi_ssp_set_machinfo(&corgi_ssp_machinfo);
316
Richard Purdieca1140b2005-10-30 14:38:53 +0000317 pxa_gpio_mode(CORGI_GPIO_IR_ON | GPIO_OUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 pxa_gpio_mode(CORGI_GPIO_USB_PULLUP | GPIO_OUT);
Richard Purdie513b6e12005-09-13 01:25:33 -0700319 pxa_gpio_mode(CORGI_GPIO_HSYNC | GPIO_IN);
Richard Purdieca1140b2005-10-30 14:38:53 +0000320
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 pxa_set_udc_info(&udc_info);
322 pxa_set_mci_info(&corgi_mci_platform_data);
Richard Purdieca1140b2005-10-30 14:38:53 +0000323 pxa_set_ficp_info(&corgi_ficp_platform_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324
Richard Purdiea63ae442005-11-08 19:15:43 +0000325 platform_scoop_config = &corgi_pcmcia_config;
Richard Purdie0ce76252005-09-05 20:49:54 +0100326
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 platform_add_devices(devices, ARRAY_SIZE(devices));
328}
329
330static void __init fixup_corgi(struct machine_desc *desc,
331 struct tag *tags, char **cmdline, struct meminfo *mi)
332{
333 sharpsl_save_param();
334 mi->nr_banks=1;
335 mi->bank[0].start = 0xa0000000;
336 mi->bank[0].node = 0;
337 if (machine_is_corgi())
338 mi->bank[0].size = (32*1024*1024);
339 else
340 mi->bank[0].size = (64*1024*1024);
341}
342
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343#ifdef CONFIG_MACH_CORGI
344MACHINE_START(CORGI, "SHARP Corgi")
Russell Kinge9dea0c2005-07-03 17:38:58 +0100345 .phys_ram = 0xa0000000,
346 .phys_io = 0x40000000,
Russell King68070bd2005-07-04 10:44:34 +0100347 .io_pg_offst = (io_p2v(0x40000000) >> 18) & 0xfffc,
Russell Kinge9dea0c2005-07-03 17:38:58 +0100348 .fixup = fixup_corgi,
Richard Purdiefdce05b2005-09-15 14:53:21 +0100349 .map_io = pxa_map_io,
350 .init_irq = pxa_init_irq,
Russell Kinge9dea0c2005-07-03 17:38:58 +0100351 .init_machine = corgi_init,
352 .timer = &pxa_timer,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353MACHINE_END
354#endif
355
356#ifdef CONFIG_MACH_SHEPHERD
357MACHINE_START(SHEPHERD, "SHARP Shepherd")
Russell Kinge9dea0c2005-07-03 17:38:58 +0100358 .phys_ram = 0xa0000000,
359 .phys_io = 0x40000000,
Russell King68070bd2005-07-04 10:44:34 +0100360 .io_pg_offst = (io_p2v(0x40000000) >> 18) & 0xfffc,
Russell Kinge9dea0c2005-07-03 17:38:58 +0100361 .fixup = fixup_corgi,
Richard Purdiefdce05b2005-09-15 14:53:21 +0100362 .map_io = pxa_map_io,
363 .init_irq = pxa_init_irq,
Russell Kinge9dea0c2005-07-03 17:38:58 +0100364 .init_machine = corgi_init,
365 .timer = &pxa_timer,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366MACHINE_END
367#endif
368
369#ifdef CONFIG_MACH_HUSKY
370MACHINE_START(HUSKY, "SHARP Husky")
Russell Kinge9dea0c2005-07-03 17:38:58 +0100371 .phys_ram = 0xa0000000,
372 .phys_io = 0x40000000,
Russell King68070bd2005-07-04 10:44:34 +0100373 .io_pg_offst = (io_p2v(0x40000000) >> 18) & 0xfffc,
Russell Kinge9dea0c2005-07-03 17:38:58 +0100374 .fixup = fixup_corgi,
Richard Purdiefdce05b2005-09-15 14:53:21 +0100375 .map_io = pxa_map_io,
376 .init_irq = pxa_init_irq,
Russell Kinge9dea0c2005-07-03 17:38:58 +0100377 .init_machine = corgi_init,
378 .timer = &pxa_timer,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379MACHINE_END
380#endif
381