blob: be37586cb1b062ba5ec96502b223e6e97ab4d215 [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>
17#include <linux/device.h>
18#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>
36#include <asm/arch/mmc.h>
37#include <asm/arch/udc.h>
38#include <asm/arch/corgi.h>
39
40#include <asm/mach/sharpsl_param.h>
41#include <asm/hardware/scoop.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070042
43#include "generic.h"
Richard Purdie50a5de42005-09-13 01:25:30 -070044#include "sharpsl.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070045
46
47/*
48 * Corgi SCOOP Device
49 */
50static struct resource corgi_scoop_resources[] = {
51 [0] = {
52 .start = 0x10800000,
53 .end = 0x10800fff,
54 .flags = IORESOURCE_MEM,
55 },
56};
57
58static struct scoop_config corgi_scoop_setup = {
59 .io_dir = CORGI_SCOOP_IO_DIR,
60 .io_out = CORGI_SCOOP_IO_OUT,
61};
62
Richard Purdie0ce76252005-09-05 20:49:54 +010063static struct scoop_pcmcia_dev corgi_pcmcia_scoop[] = {
64{
65 .dev = &corgiscoop_device.dev,
66 .irq = CORGI_IRQ_GPIO_CF_IRQ,
67 .cd_irq = CORGI_IRQ_GPIO_CF_CD,
68 .cd_irq_str = "PCMCIA0 CD",
69},
70};
71
Linus Torvalds1da177e2005-04-16 15:20:36 -070072struct platform_device corgiscoop_device = {
73 .name = "sharp-scoop",
74 .id = -1,
75 .dev = {
76 .platform_data = &corgi_scoop_setup,
77 },
78 .num_resources = ARRAY_SIZE(corgi_scoop_resources),
79 .resource = corgi_scoop_resources,
80};
81
82
83/*
84 * Corgi SSP Device
85 *
86 * Set the parent as the scoop device because a lot of SSP devices
87 * also use scoop functions and this makes the power up/down order
88 * work correctly.
89 */
Richard Purdie41b1bce2005-09-06 15:19:05 -070090struct platform_device corgissp_device = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070091 .name = "corgi-ssp",
92 .dev = {
93 .parent = &corgiscoop_device.dev,
94 },
95 .id = -1,
96};
97
Richard Purdie50a5de42005-09-13 01:25:30 -070098struct corgissp_machinfo corgi_ssp_machinfo = {
99 .port = 1,
100 .cs_lcdcon = CORGI_GPIO_LCDCON_CS,
101 .cs_ads7846 = CORGI_GPIO_ADS7846_CS,
102 .cs_max1111 = CORGI_GPIO_MAX1111_CS,
103 .clk_lcdcon = 76,
104 .clk_ads7846 = 2,
105 .clk_max1111 = 8,
106};
107
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108
109/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110 * Corgi Backlight Device
111 */
Richard Purdie1351e6e2005-09-13 01:25:33 -0700112static struct corgibl_machinfo corgi_bl_machinfo = {
113 .max_intensity = 0x2f,
114 .set_bl_intensity = corgi_bl_set_intensity,
115};
116
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117static struct platform_device corgibl_device = {
118 .name = "corgi-bl",
119 .dev = {
120 .parent = &corgifb_device.dev,
Richard Purdie1351e6e2005-09-13 01:25:33 -0700121 .platform_data = &corgi_bl_machinfo,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122 },
123 .id = -1,
124};
125
126
127/*
Richard Purdief7ceff32005-09-06 15:19:07 -0700128 * Corgi Keyboard Device
129 */
130static struct platform_device corgikbd_device = {
131 .name = "corgi-keyboard",
132 .id = -1,
133};
134
135
136/*
137 * Corgi Touch Screen Device
138 */
Richard Purdie513b6e12005-09-13 01:25:33 -0700139static struct resource corgits_resources[] = {
140 [0] = {
141 .start = CORGI_IRQ_GPIO_TP_INT,
142 .end = CORGI_IRQ_GPIO_TP_INT,
143 .flags = IORESOURCE_IRQ,
144 },
145};
146
147static struct corgits_machinfo corgi_ts_machinfo = {
148 .get_hsync_len = corgi_get_hsync_len,
149 .put_hsync = corgi_put_hsync,
150 .wait_hsync = corgi_wait_hsync,
151};
152
Richard Purdief7ceff32005-09-06 15:19:07 -0700153static struct platform_device corgits_device = {
154 .name = "corgi-ts",
155 .dev = {
156 .parent = &corgissp_device.dev,
Richard Purdie513b6e12005-09-13 01:25:33 -0700157 .platform_data = &corgi_ts_machinfo,
Richard Purdief7ceff32005-09-06 15:19:07 -0700158 },
159 .id = -1,
Richard Purdie513b6e12005-09-13 01:25:33 -0700160 .num_resources = ARRAY_SIZE(corgits_resources),
161 .resource = corgits_resources,
Richard Purdief7ceff32005-09-06 15:19:07 -0700162};
163
164
165/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 * MMC/SD Device
167 *
Richard Purdieaa6c2e72005-09-09 18:54:03 +0100168 * The card detect interrupt isn't debounced so we delay it by 250ms
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 * to give the card a chance to fully insert/eject.
170 */
Richard Purdieaa6c2e72005-09-09 18:54:03 +0100171static struct pxamci_platform_data corgi_mci_platform_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172
Richard Purdieaa6c2e72005-09-09 18:54:03 +0100173static 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 -0700174{
175 int err;
176
177 /* setup GPIO for PXA25x MMC controller */
178 pxa_gpio_mode(GPIO6_MMCCLK_MD);
179 pxa_gpio_mode(GPIO8_MMCCS0_MD);
180 pxa_gpio_mode(CORGI_GPIO_nSD_DETECT | GPIO_IN);
181 pxa_gpio_mode(CORGI_GPIO_SD_PWR | GPIO_OUT);
182
Richard Purdieaa6c2e72005-09-09 18:54:03 +0100183 corgi_mci_platform_data.detect_delay = msecs_to_jiffies(250);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184
Richard Purdieaa6c2e72005-09-09 18:54:03 +0100185 err = request_irq(CORGI_IRQ_GPIO_nSD_DETECT, corgi_detect_int, SA_INTERRUPT,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 "MMC card detect", data);
187 if (err) {
188 printk(KERN_ERR "corgi_mci_init: MMC/SD: can't request MMC card detect IRQ\n");
189 return -1;
190 }
191
192 set_irq_type(CORGI_IRQ_GPIO_nSD_DETECT, IRQT_BOTHEDGE);
193
194 return 0;
195}
196
197static void corgi_mci_setpower(struct device *dev, unsigned int vdd)
198{
199 struct pxamci_platform_data* p_d = dev->platform_data;
200
Richard Purdiefdce05b2005-09-15 14:53:21 +0100201 if (( 1 << vdd) & p_d->ocr_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 GPSR1 = GPIO_bit(CORGI_GPIO_SD_PWR);
Richard Purdiefdce05b2005-09-15 14:53:21 +0100203 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 GPCR1 = GPIO_bit(CORGI_GPIO_SD_PWR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205}
206
Richard Purdie3870ee82005-09-06 15:19:07 -0700207static int corgi_mci_get_ro(struct device *dev)
208{
209 return GPLR(CORGI_GPIO_nSD_WP) & GPIO_bit(CORGI_GPIO_nSD_WP);
210}
211
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212static void corgi_mci_exit(struct device *dev, void *data)
213{
214 free_irq(CORGI_IRQ_GPIO_nSD_DETECT, data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215}
216
217static struct pxamci_platform_data corgi_mci_platform_data = {
218 .ocr_mask = MMC_VDD_32_33|MMC_VDD_33_34,
219 .init = corgi_mci_init,
Richard Purdie3870ee82005-09-06 15:19:07 -0700220 .get_ro = corgi_mci_get_ro,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 .setpower = corgi_mci_setpower,
222 .exit = corgi_mci_exit,
223};
224
225
Richard Purdief7ceff32005-09-06 15:19:07 -0700226
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227/*
228 * USB Device Controller
229 */
230static void corgi_udc_command(int cmd)
231{
232 switch(cmd) {
233 case PXA2XX_UDC_CMD_CONNECT:
234 GPSR(CORGI_GPIO_USB_PULLUP) = GPIO_bit(CORGI_GPIO_USB_PULLUP);
235 break;
236 case PXA2XX_UDC_CMD_DISCONNECT:
237 GPCR(CORGI_GPIO_USB_PULLUP) = GPIO_bit(CORGI_GPIO_USB_PULLUP);
238 break;
239 }
240}
241
242static struct pxa2xx_udc_mach_info udc_info __initdata = {
243 /* no connect GPIO; corgi can't tell connection status */
244 .udc_command = corgi_udc_command,
245};
246
247
248static struct platform_device *devices[] __initdata = {
249 &corgiscoop_device,
250 &corgissp_device,
251 &corgifb_device,
Richard Purdief7ceff32005-09-06 15:19:07 -0700252 &corgikbd_device,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 &corgibl_device,
Richard Purdief7ceff32005-09-06 15:19:07 -0700254 &corgits_device,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255};
256
257static void __init corgi_init(void)
258{
Richard Purdiefdce05b2005-09-15 14:53:21 +0100259 /* setup sleep mode values */
260 PWER = 0x00000002;
261 PFER = 0x00000000;
262 PRER = 0x00000002;
263 PGSR0 = 0x0158C000;
264 PGSR1 = 0x00FF0080;
265 PGSR2 = 0x0001C004;
266 /* Stop 3.6MHz and drive HIGH to PCMCIA and CS */
267 PCFR |= PCFR_OPDE;
268
Richard Purdie50a5de42005-09-13 01:25:30 -0700269 corgi_ssp_set_machinfo(&corgi_ssp_machinfo);
270
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 pxa_gpio_mode(CORGI_GPIO_USB_PULLUP | GPIO_OUT);
Richard Purdie513b6e12005-09-13 01:25:33 -0700272 pxa_gpio_mode(CORGI_GPIO_HSYNC | GPIO_IN);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 pxa_set_udc_info(&udc_info);
274 pxa_set_mci_info(&corgi_mci_platform_data);
275
Richard Purdie0ce76252005-09-05 20:49:54 +0100276 scoop_num = 1;
277 scoop_devs = &corgi_pcmcia_scoop[0];
278
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 platform_add_devices(devices, ARRAY_SIZE(devices));
280}
281
282static void __init fixup_corgi(struct machine_desc *desc,
283 struct tag *tags, char **cmdline, struct meminfo *mi)
284{
285 sharpsl_save_param();
286 mi->nr_banks=1;
287 mi->bank[0].start = 0xa0000000;
288 mi->bank[0].node = 0;
289 if (machine_is_corgi())
290 mi->bank[0].size = (32*1024*1024);
291 else
292 mi->bank[0].size = (64*1024*1024);
293}
294
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295#ifdef CONFIG_MACH_CORGI
296MACHINE_START(CORGI, "SHARP Corgi")
Russell Kinge9dea0c2005-07-03 17:38:58 +0100297 .phys_ram = 0xa0000000,
298 .phys_io = 0x40000000,
Russell King68070bd2005-07-04 10:44:34 +0100299 .io_pg_offst = (io_p2v(0x40000000) >> 18) & 0xfffc,
Russell Kinge9dea0c2005-07-03 17:38:58 +0100300 .fixup = fixup_corgi,
Richard Purdiefdce05b2005-09-15 14:53:21 +0100301 .map_io = pxa_map_io,
302 .init_irq = pxa_init_irq,
Russell Kinge9dea0c2005-07-03 17:38:58 +0100303 .init_machine = corgi_init,
304 .timer = &pxa_timer,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305MACHINE_END
306#endif
307
308#ifdef CONFIG_MACH_SHEPHERD
309MACHINE_START(SHEPHERD, "SHARP Shepherd")
Russell Kinge9dea0c2005-07-03 17:38:58 +0100310 .phys_ram = 0xa0000000,
311 .phys_io = 0x40000000,
Russell King68070bd2005-07-04 10:44:34 +0100312 .io_pg_offst = (io_p2v(0x40000000) >> 18) & 0xfffc,
Russell Kinge9dea0c2005-07-03 17:38:58 +0100313 .fixup = fixup_corgi,
Richard Purdiefdce05b2005-09-15 14:53:21 +0100314 .map_io = pxa_map_io,
315 .init_irq = pxa_init_irq,
Russell Kinge9dea0c2005-07-03 17:38:58 +0100316 .init_machine = corgi_init,
317 .timer = &pxa_timer,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318MACHINE_END
319#endif
320
321#ifdef CONFIG_MACH_HUSKY
322MACHINE_START(HUSKY, "SHARP Husky")
Russell Kinge9dea0c2005-07-03 17:38:58 +0100323 .phys_ram = 0xa0000000,
324 .phys_io = 0x40000000,
Russell King68070bd2005-07-04 10:44:34 +0100325 .io_pg_offst = (io_p2v(0x40000000) >> 18) & 0xfffc,
Russell Kinge9dea0c2005-07-03 17:38:58 +0100326 .fixup = fixup_corgi,
Richard Purdiefdce05b2005-09-15 14:53:21 +0100327 .map_io = pxa_map_io,
328 .init_irq = pxa_init_irq,
Russell Kinge9dea0c2005-07-03 17:38:58 +0100329 .init_machine = corgi_init,
330 .timer = &pxa_timer,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331MACHINE_END
332#endif
333