2 * Support for Sharp SL-C7xx PDAs
3 * Models: SL-C700 (Corgi), SL-C750 (Shepherd), SL-C760 (Husky)
5 * Copyright (c) 2004-2005 Richard Purdie
7 * Based on Sharp's 2.4 kernel patches/lubbock.c
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.
15 #include <linux/kernel.h>
16 #include <linux/init.h>
17 #include <linux/device.h>
18 #include <linux/major.h>
20 #include <linux/interrupt.h>
21 #include <linux/mmc/host.h>
23 #include <asm/setup.h>
24 #include <asm/memory.h>
25 #include <asm/mach-types.h>
26 #include <asm/hardware.h>
30 #include <asm/mach/arch.h>
31 #include <asm/mach/map.h>
32 #include <asm/mach/irq.h>
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>
40 #include <asm/mach/sharpsl_param.h>
41 #include <asm/hardware/scoop.h>
42 #include <video/w100fb.h>
50 static struct resource corgi_scoop_resources[] = {
54 .flags = IORESOURCE_MEM,
58 static struct scoop_config corgi_scoop_setup = {
59 .io_dir = CORGI_SCOOP_IO_DIR,
60 .io_out = CORGI_SCOOP_IO_OUT,
63 static struct scoop_pcmcia_dev corgi_pcmcia_scoop[] = {
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",
72 struct platform_device corgiscoop_device = {
73 .name = "sharp-scoop",
76 .platform_data = &corgi_scoop_setup,
78 .num_resources = ARRAY_SIZE(corgi_scoop_resources),
79 .resource = corgi_scoop_resources,
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
90 static struct platform_device corgissp_device = {
93 .parent = &corgiscoop_device.dev,
100 * Corgi w100 Frame Buffer Device
102 static struct w100fb_mach_info corgi_fb_info = {
103 .w100fb_ssp_send = corgi_ssp_lcdtg_send,
108 static struct resource corgi_fb_resources[] = {
112 .flags = IORESOURCE_MEM,
116 static struct platform_device corgifb_device = {
120 .platform_data = &corgi_fb_info,
121 .parent = &corgissp_device.dev,
123 .num_resources = ARRAY_SIZE(corgi_fb_resources),
124 .resource = corgi_fb_resources,
129 * Corgi Backlight Device
131 static struct platform_device corgibl_device = {
134 .parent = &corgifb_device.dev,
143 * The card detect interrupt isn't debounced so we delay it by HZ/4
144 * to give the card a chance to fully insert/eject.
146 static struct mmc_detect {
147 struct timer_list detect_timer;
151 static void mmc_detect_callback(unsigned long data)
153 mmc_detect_change(mmc_detect.devid);
156 static irqreturn_t corgi_mmc_detect_int(int irq, void *devid, struct pt_regs *regs)
158 mmc_detect.devid=devid;
159 mod_timer(&mmc_detect.detect_timer, jiffies + HZ/4);
163 static int corgi_mci_init(struct device *dev, irqreturn_t (*unused_detect_int)(int, void *, struct pt_regs *), void *data)
167 /* setup GPIO for PXA25x MMC controller */
168 pxa_gpio_mode(GPIO6_MMCCLK_MD);
169 pxa_gpio_mode(GPIO8_MMCCS0_MD);
170 pxa_gpio_mode(CORGI_GPIO_nSD_DETECT | GPIO_IN);
171 pxa_gpio_mode(CORGI_GPIO_SD_PWR | GPIO_OUT);
173 init_timer(&mmc_detect.detect_timer);
174 mmc_detect.detect_timer.function = mmc_detect_callback;
175 mmc_detect.detect_timer.data = (unsigned long) &mmc_detect;
177 err = request_irq(CORGI_IRQ_GPIO_nSD_DETECT, corgi_mmc_detect_int, SA_INTERRUPT,
178 "MMC card detect", data);
180 printk(KERN_ERR "corgi_mci_init: MMC/SD: can't request MMC card detect IRQ\n");
184 set_irq_type(CORGI_IRQ_GPIO_nSD_DETECT, IRQT_BOTHEDGE);
189 static void corgi_mci_setpower(struct device *dev, unsigned int vdd)
191 struct pxamci_platform_data* p_d = dev->platform_data;
193 if (( 1 << vdd) & p_d->ocr_mask) {
194 printk(KERN_DEBUG "%s: on\n", __FUNCTION__);
195 GPSR1 = GPIO_bit(CORGI_GPIO_SD_PWR);
197 printk(KERN_DEBUG "%s: off\n", __FUNCTION__);
198 GPCR1 = GPIO_bit(CORGI_GPIO_SD_PWR);
202 static void corgi_mci_exit(struct device *dev, void *data)
204 free_irq(CORGI_IRQ_GPIO_nSD_DETECT, data);
205 del_timer(&mmc_detect.detect_timer);
208 static struct pxamci_platform_data corgi_mci_platform_data = {
209 .ocr_mask = MMC_VDD_32_33|MMC_VDD_33_34,
210 .init = corgi_mci_init,
211 .setpower = corgi_mci_setpower,
212 .exit = corgi_mci_exit,
217 * USB Device Controller
219 static void corgi_udc_command(int cmd)
222 case PXA2XX_UDC_CMD_CONNECT:
223 GPSR(CORGI_GPIO_USB_PULLUP) = GPIO_bit(CORGI_GPIO_USB_PULLUP);
225 case PXA2XX_UDC_CMD_DISCONNECT:
226 GPCR(CORGI_GPIO_USB_PULLUP) = GPIO_bit(CORGI_GPIO_USB_PULLUP);
231 static struct pxa2xx_udc_mach_info udc_info __initdata = {
232 /* no connect GPIO; corgi can't tell connection status */
233 .udc_command = corgi_udc_command,
237 static struct platform_device *devices[] __initdata = {
244 static void __init corgi_init(void)
246 corgi_fb_info.comadj=sharpsl_param.comadj;
247 corgi_fb_info.phadadj=sharpsl_param.phadadj;
249 pxa_gpio_mode(CORGI_GPIO_USB_PULLUP | GPIO_OUT);
250 pxa_set_udc_info(&udc_info);
251 pxa_set_mci_info(&corgi_mci_platform_data);
254 scoop_devs = &corgi_pcmcia_scoop[0];
256 platform_add_devices(devices, ARRAY_SIZE(devices));
259 static void __init fixup_corgi(struct machine_desc *desc,
260 struct tag *tags, char **cmdline, struct meminfo *mi)
262 sharpsl_save_param();
264 mi->bank[0].start = 0xa0000000;
265 mi->bank[0].node = 0;
266 if (machine_is_corgi())
267 mi->bank[0].size = (32*1024*1024);
269 mi->bank[0].size = (64*1024*1024);
272 static void __init corgi_init_irq(void)
277 static struct map_desc corgi_io_desc[] __initdata = {
278 /* virtual physical length */
279 /* { 0xf1000000, 0x08000000, 0x01000000, MT_DEVICE },*/ /* LCDC (readable for Qt driver) */
280 /* { 0xef700000, 0x10800000, 0x00001000, MT_DEVICE },*/ /* SCOOP */
281 { 0xef800000, 0x00000000, 0x00800000, MT_DEVICE }, /* Boot Flash */
284 static void __init corgi_map_io(void)
287 iotable_init(corgi_io_desc,ARRAY_SIZE(corgi_io_desc));
289 /* setup sleep mode values */
296 /* Stop 3.6MHz and drive HIGH to PCMCIA and CS */
300 #ifdef CONFIG_MACH_CORGI
301 MACHINE_START(CORGI, "SHARP Corgi")
302 .phys_ram = 0xa0000000,
303 .phys_io = 0x40000000,
304 .io_pg_offst = (io_p2v(0x40000000) >> 18) & 0xfffc,
305 .fixup = fixup_corgi,
306 .map_io = corgi_map_io,
307 .init_irq = corgi_init_irq,
308 .init_machine = corgi_init,
313 #ifdef CONFIG_MACH_SHEPHERD
314 MACHINE_START(SHEPHERD, "SHARP Shepherd")
315 .phys_ram = 0xa0000000,
316 .phys_io = 0x40000000,
317 .io_pg_offst = (io_p2v(0x40000000) >> 18) & 0xfffc,
318 .fixup = fixup_corgi,
319 .map_io = corgi_map_io,
320 .init_irq = corgi_init_irq,
321 .init_machine = corgi_init,
326 #ifdef CONFIG_MACH_HUSKY
327 MACHINE_START(HUSKY, "SHARP Husky")
328 .phys_ram = 0xa0000000,
329 .phys_io = 0x40000000,
330 .io_pg_offst = (io_p2v(0x40000000) >> 18) & 0xfffc,
331 .fixup = fixup_corgi,
332 .map_io = corgi_map_io,
333 .init_irq = corgi_init_irq,
334 .init_machine = corgi_init,