blob: 07b5dd453565402d9ec8c69b691681bae063be5a [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"
44
45
46/*
47 * Corgi SCOOP Device
48 */
49static struct resource corgi_scoop_resources[] = {
50 [0] = {
51 .start = 0x10800000,
52 .end = 0x10800fff,
53 .flags = IORESOURCE_MEM,
54 },
55};
56
57static struct scoop_config corgi_scoop_setup = {
58 .io_dir = CORGI_SCOOP_IO_DIR,
59 .io_out = CORGI_SCOOP_IO_OUT,
60};
61
Richard Purdie0ce76252005-09-05 20:49:54 +010062static struct scoop_pcmcia_dev corgi_pcmcia_scoop[] = {
63{
64 .dev = &corgiscoop_device.dev,
65 .irq = CORGI_IRQ_GPIO_CF_IRQ,
66 .cd_irq = CORGI_IRQ_GPIO_CF_CD,
67 .cd_irq_str = "PCMCIA0 CD",
68},
69};
70
Linus Torvalds1da177e2005-04-16 15:20:36 -070071struct platform_device corgiscoop_device = {
72 .name = "sharp-scoop",
73 .id = -1,
74 .dev = {
75 .platform_data = &corgi_scoop_setup,
76 },
77 .num_resources = ARRAY_SIZE(corgi_scoop_resources),
78 .resource = corgi_scoop_resources,
79};
80
81
82/*
83 * Corgi SSP Device
84 *
85 * Set the parent as the scoop device because a lot of SSP devices
86 * also use scoop functions and this makes the power up/down order
87 * work correctly.
88 */
Richard Purdie41b1bce2005-09-06 15:19:05 -070089struct platform_device corgissp_device = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070090 .name = "corgi-ssp",
91 .dev = {
92 .parent = &corgiscoop_device.dev,
93 },
94 .id = -1,
95};
96
97
98/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070099 * Corgi Backlight Device
100 */
101static struct platform_device corgibl_device = {
102 .name = "corgi-bl",
103 .dev = {
104 .parent = &corgifb_device.dev,
105 },
106 .id = -1,
107};
108
109
110/*
Richard Purdief7ceff32005-09-06 15:19:07 -0700111 * Corgi Keyboard Device
112 */
113static struct platform_device corgikbd_device = {
114 .name = "corgi-keyboard",
115 .id = -1,
116};
117
118
119/*
120 * Corgi Touch Screen Device
121 */
122static struct platform_device corgits_device = {
123 .name = "corgi-ts",
124 .dev = {
125 .parent = &corgissp_device.dev,
126 },
127 .id = -1,
128};
129
130
131/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 * MMC/SD Device
133 *
Richard Purdieaa6c2e72005-09-09 18:54:03 +0100134 * The card detect interrupt isn't debounced so we delay it by 250ms
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 * to give the card a chance to fully insert/eject.
136 */
Richard Purdieaa6c2e72005-09-09 18:54:03 +0100137static struct pxamci_platform_data corgi_mci_platform_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138
Richard Purdieaa6c2e72005-09-09 18:54:03 +0100139static 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 -0700140{
141 int err;
142
143 /* setup GPIO for PXA25x MMC controller */
144 pxa_gpio_mode(GPIO6_MMCCLK_MD);
145 pxa_gpio_mode(GPIO8_MMCCS0_MD);
146 pxa_gpio_mode(CORGI_GPIO_nSD_DETECT | GPIO_IN);
147 pxa_gpio_mode(CORGI_GPIO_SD_PWR | GPIO_OUT);
148
Richard Purdieaa6c2e72005-09-09 18:54:03 +0100149 corgi_mci_platform_data.detect_delay = msecs_to_jiffies(250);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150
Richard Purdieaa6c2e72005-09-09 18:54:03 +0100151 err = request_irq(CORGI_IRQ_GPIO_nSD_DETECT, corgi_detect_int, SA_INTERRUPT,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 "MMC card detect", data);
153 if (err) {
154 printk(KERN_ERR "corgi_mci_init: MMC/SD: can't request MMC card detect IRQ\n");
155 return -1;
156 }
157
158 set_irq_type(CORGI_IRQ_GPIO_nSD_DETECT, IRQT_BOTHEDGE);
159
160 return 0;
161}
162
163static void corgi_mci_setpower(struct device *dev, unsigned int vdd)
164{
165 struct pxamci_platform_data* p_d = dev->platform_data;
166
167 if (( 1 << vdd) & p_d->ocr_mask) {
168 printk(KERN_DEBUG "%s: on\n", __FUNCTION__);
169 GPSR1 = GPIO_bit(CORGI_GPIO_SD_PWR);
170 } else {
171 printk(KERN_DEBUG "%s: off\n", __FUNCTION__);
172 GPCR1 = GPIO_bit(CORGI_GPIO_SD_PWR);
173 }
174}
175
Richard Purdie3870ee82005-09-06 15:19:07 -0700176static int corgi_mci_get_ro(struct device *dev)
177{
178 return GPLR(CORGI_GPIO_nSD_WP) & GPIO_bit(CORGI_GPIO_nSD_WP);
179}
180
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181static void corgi_mci_exit(struct device *dev, void *data)
182{
183 free_irq(CORGI_IRQ_GPIO_nSD_DETECT, data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184}
185
186static struct pxamci_platform_data corgi_mci_platform_data = {
187 .ocr_mask = MMC_VDD_32_33|MMC_VDD_33_34,
188 .init = corgi_mci_init,
Richard Purdie3870ee82005-09-06 15:19:07 -0700189 .get_ro = corgi_mci_get_ro,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 .setpower = corgi_mci_setpower,
191 .exit = corgi_mci_exit,
192};
193
194
Richard Purdief7ceff32005-09-06 15:19:07 -0700195
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196/*
197 * USB Device Controller
198 */
199static void corgi_udc_command(int cmd)
200{
201 switch(cmd) {
202 case PXA2XX_UDC_CMD_CONNECT:
203 GPSR(CORGI_GPIO_USB_PULLUP) = GPIO_bit(CORGI_GPIO_USB_PULLUP);
204 break;
205 case PXA2XX_UDC_CMD_DISCONNECT:
206 GPCR(CORGI_GPIO_USB_PULLUP) = GPIO_bit(CORGI_GPIO_USB_PULLUP);
207 break;
208 }
209}
210
211static struct pxa2xx_udc_mach_info udc_info __initdata = {
212 /* no connect GPIO; corgi can't tell connection status */
213 .udc_command = corgi_udc_command,
214};
215
216
217static struct platform_device *devices[] __initdata = {
218 &corgiscoop_device,
219 &corgissp_device,
220 &corgifb_device,
Richard Purdief7ceff32005-09-06 15:19:07 -0700221 &corgikbd_device,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 &corgibl_device,
Richard Purdief7ceff32005-09-06 15:19:07 -0700223 &corgits_device,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224};
225
226static void __init corgi_init(void)
227{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 pxa_gpio_mode(CORGI_GPIO_USB_PULLUP | GPIO_OUT);
229 pxa_set_udc_info(&udc_info);
230 pxa_set_mci_info(&corgi_mci_platform_data);
231
Richard Purdie0ce76252005-09-05 20:49:54 +0100232 scoop_num = 1;
233 scoop_devs = &corgi_pcmcia_scoop[0];
234
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 platform_add_devices(devices, ARRAY_SIZE(devices));
236}
237
238static void __init fixup_corgi(struct machine_desc *desc,
239 struct tag *tags, char **cmdline, struct meminfo *mi)
240{
241 sharpsl_save_param();
242 mi->nr_banks=1;
243 mi->bank[0].start = 0xa0000000;
244 mi->bank[0].node = 0;
245 if (machine_is_corgi())
246 mi->bank[0].size = (32*1024*1024);
247 else
248 mi->bank[0].size = (64*1024*1024);
249}
250
251static void __init corgi_init_irq(void)
252{
253 pxa_init_irq();
254}
255
256static struct map_desc corgi_io_desc[] __initdata = {
257/* virtual physical length */
258/* { 0xf1000000, 0x08000000, 0x01000000, MT_DEVICE },*/ /* LCDC (readable for Qt driver) */
259/* { 0xef700000, 0x10800000, 0x00001000, MT_DEVICE },*/ /* SCOOP */
260 { 0xef800000, 0x00000000, 0x00800000, MT_DEVICE }, /* Boot Flash */
261};
262
263static void __init corgi_map_io(void)
264{
265 pxa_map_io();
266 iotable_init(corgi_io_desc,ARRAY_SIZE(corgi_io_desc));
267
268 /* setup sleep mode values */
269 PWER = 0x00000002;
270 PFER = 0x00000000;
271 PRER = 0x00000002;
272 PGSR0 = 0x0158C000;
273 PGSR1 = 0x00FF0080;
274 PGSR2 = 0x0001C004;
275 /* Stop 3.6MHz and drive HIGH to PCMCIA and CS */
276 PCFR |= PCFR_OPDE;
277}
278
279#ifdef CONFIG_MACH_CORGI
280MACHINE_START(CORGI, "SHARP Corgi")
Russell Kinge9dea0c2005-07-03 17:38:58 +0100281 .phys_ram = 0xa0000000,
282 .phys_io = 0x40000000,
Russell King68070bd2005-07-04 10:44:34 +0100283 .io_pg_offst = (io_p2v(0x40000000) >> 18) & 0xfffc,
Russell Kinge9dea0c2005-07-03 17:38:58 +0100284 .fixup = fixup_corgi,
285 .map_io = corgi_map_io,
286 .init_irq = corgi_init_irq,
287 .init_machine = corgi_init,
288 .timer = &pxa_timer,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289MACHINE_END
290#endif
291
292#ifdef CONFIG_MACH_SHEPHERD
293MACHINE_START(SHEPHERD, "SHARP Shepherd")
Russell Kinge9dea0c2005-07-03 17:38:58 +0100294 .phys_ram = 0xa0000000,
295 .phys_io = 0x40000000,
Russell King68070bd2005-07-04 10:44:34 +0100296 .io_pg_offst = (io_p2v(0x40000000) >> 18) & 0xfffc,
Russell Kinge9dea0c2005-07-03 17:38:58 +0100297 .fixup = fixup_corgi,
298 .map_io = corgi_map_io,
299 .init_irq = corgi_init_irq,
300 .init_machine = corgi_init,
301 .timer = &pxa_timer,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302MACHINE_END
303#endif
304
305#ifdef CONFIG_MACH_HUSKY
306MACHINE_START(HUSKY, "SHARP Husky")
Russell Kinge9dea0c2005-07-03 17:38:58 +0100307 .phys_ram = 0xa0000000,
308 .phys_io = 0x40000000,
Russell King68070bd2005-07-04 10:44:34 +0100309 .io_pg_offst = (io_p2v(0x40000000) >> 18) & 0xfffc,
Russell Kinge9dea0c2005-07-03 17:38:58 +0100310 .fixup = fixup_corgi,
311 .map_io = corgi_map_io,
312 .init_irq = corgi_init_irq,
313 .init_machine = corgi_init,
314 .timer = &pxa_timer,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315MACHINE_END
316#endif
317