]> git.karo-electronics.de Git - karo-tx-linux.git/blob - arch/arm/mach-pxa/corgi.c
[PATCH] SharpSL: Abstract c7x0 specifics from Corgi Touchscreen driver
[karo-tx-linux.git] / arch / arm / mach-pxa / corgi.c
1 /*
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>
42
43 #include "generic.h"
44 #include "sharpsl.h"
45
46
47 /*
48  * Corgi SCOOP Device
49  */
50 static struct resource corgi_scoop_resources[] = {
51         [0] = {
52                 .start          = 0x10800000,
53                 .end            = 0x10800fff,
54                 .flags          = IORESOURCE_MEM,
55         },
56 };
57
58 static struct scoop_config corgi_scoop_setup = {
59         .io_dir         = CORGI_SCOOP_IO_DIR,
60         .io_out         = CORGI_SCOOP_IO_OUT,
61 };
62
63 static 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
72 struct 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  */
90 struct platform_device corgissp_device = {
91         .name           = "corgi-ssp",
92         .dev            = {
93                 .parent = &corgiscoop_device.dev,
94         },
95         .id             = -1,
96 };
97
98 struct 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
108
109 /*
110  * Corgi Backlight Device
111  */
112 static struct platform_device corgibl_device = {
113         .name           = "corgi-bl",
114         .dev            = {
115                 .parent = &corgifb_device.dev,
116         },
117         .id             = -1,
118 };
119
120
121 /*
122  * Corgi Keyboard Device
123  */
124 static struct platform_device corgikbd_device = {
125         .name           = "corgi-keyboard",
126         .id             = -1,
127 };
128
129
130 /*
131  * Corgi Touch Screen Device
132  */
133 static struct resource corgits_resources[] = {
134         [0] = {
135                 .start          = CORGI_IRQ_GPIO_TP_INT,
136                 .end            = CORGI_IRQ_GPIO_TP_INT,
137                 .flags          = IORESOURCE_IRQ,
138         },
139 };
140
141 static struct corgits_machinfo  corgi_ts_machinfo = {
142         .get_hsync_len   = corgi_get_hsync_len,
143         .put_hsync       = corgi_put_hsync,
144         .wait_hsync      = corgi_wait_hsync,
145 };
146
147 static struct platform_device corgits_device = {
148         .name           = "corgi-ts",
149         .dev            = {
150                 .parent = &corgissp_device.dev,
151                 .platform_data  = &corgi_ts_machinfo,
152         },
153         .id             = -1,
154         .num_resources  = ARRAY_SIZE(corgits_resources),
155         .resource       = corgits_resources,
156 };
157
158
159 /*
160  * MMC/SD Device
161  *
162  * The card detect interrupt isn't debounced so we delay it by 250ms
163  * to give the card a chance to fully insert/eject.
164  */
165 static struct pxamci_platform_data corgi_mci_platform_data;
166
167 static int corgi_mci_init(struct device *dev, irqreturn_t (*corgi_detect_int)(int, void *, struct pt_regs *), void *data)
168 {
169         int err;
170
171         /* setup GPIO for PXA25x MMC controller */
172         pxa_gpio_mode(GPIO6_MMCCLK_MD);
173         pxa_gpio_mode(GPIO8_MMCCS0_MD);
174         pxa_gpio_mode(CORGI_GPIO_nSD_DETECT | GPIO_IN);
175         pxa_gpio_mode(CORGI_GPIO_SD_PWR | GPIO_OUT);
176
177         corgi_mci_platform_data.detect_delay = msecs_to_jiffies(250);
178
179         err = request_irq(CORGI_IRQ_GPIO_nSD_DETECT, corgi_detect_int, SA_INTERRUPT,
180                              "MMC card detect", data);
181         if (err) {
182                 printk(KERN_ERR "corgi_mci_init: MMC/SD: can't request MMC card detect IRQ\n");
183                 return -1;
184         }
185
186         set_irq_type(CORGI_IRQ_GPIO_nSD_DETECT, IRQT_BOTHEDGE);
187
188         return 0;
189 }
190
191 static void corgi_mci_setpower(struct device *dev, unsigned int vdd)
192 {
193         struct pxamci_platform_data* p_d = dev->platform_data;
194
195         if (( 1 << vdd) & p_d->ocr_mask) {
196                 printk(KERN_DEBUG "%s: on\n", __FUNCTION__);
197                 GPSR1 = GPIO_bit(CORGI_GPIO_SD_PWR);
198         } else {
199                 printk(KERN_DEBUG "%s: off\n", __FUNCTION__);
200                 GPCR1 = GPIO_bit(CORGI_GPIO_SD_PWR);
201         }
202 }
203
204 static int corgi_mci_get_ro(struct device *dev)
205 {
206         return GPLR(CORGI_GPIO_nSD_WP) & GPIO_bit(CORGI_GPIO_nSD_WP);
207 }
208
209 static void corgi_mci_exit(struct device *dev, void *data)
210 {
211         free_irq(CORGI_IRQ_GPIO_nSD_DETECT, data);
212 }
213
214 static struct pxamci_platform_data corgi_mci_platform_data = {
215         .ocr_mask       = MMC_VDD_32_33|MMC_VDD_33_34,
216         .init           = corgi_mci_init,
217         .get_ro         = corgi_mci_get_ro,
218         .setpower       = corgi_mci_setpower,
219         .exit           = corgi_mci_exit,
220 };
221
222
223
224 /*
225  * USB Device Controller
226  */
227 static void corgi_udc_command(int cmd)
228 {
229         switch(cmd)     {
230         case PXA2XX_UDC_CMD_CONNECT:
231                 GPSR(CORGI_GPIO_USB_PULLUP) = GPIO_bit(CORGI_GPIO_USB_PULLUP);
232                 break;
233         case PXA2XX_UDC_CMD_DISCONNECT:
234                 GPCR(CORGI_GPIO_USB_PULLUP) = GPIO_bit(CORGI_GPIO_USB_PULLUP);
235                 break;
236         }
237 }
238
239 static struct pxa2xx_udc_mach_info udc_info __initdata = {
240         /* no connect GPIO; corgi can't tell connection status */
241         .udc_command            = corgi_udc_command,
242 };
243
244
245 static struct platform_device *devices[] __initdata = {
246         &corgiscoop_device,
247         &corgissp_device,
248         &corgifb_device,
249         &corgikbd_device,
250         &corgibl_device,
251         &corgits_device,
252 };
253
254 static void __init corgi_init(void)
255 {
256         corgi_ssp_set_machinfo(&corgi_ssp_machinfo);
257
258         pxa_gpio_mode(CORGI_GPIO_USB_PULLUP | GPIO_OUT);
259         pxa_gpio_mode(CORGI_GPIO_HSYNC | GPIO_IN);
260         pxa_set_udc_info(&udc_info);
261         pxa_set_mci_info(&corgi_mci_platform_data);
262
263         scoop_num = 1;
264         scoop_devs = &corgi_pcmcia_scoop[0];
265
266         platform_add_devices(devices, ARRAY_SIZE(devices));
267 }
268
269 static void __init fixup_corgi(struct machine_desc *desc,
270                 struct tag *tags, char **cmdline, struct meminfo *mi)
271 {
272         sharpsl_save_param();
273         mi->nr_banks=1;
274         mi->bank[0].start = 0xa0000000;
275         mi->bank[0].node = 0;
276         if (machine_is_corgi())
277                 mi->bank[0].size = (32*1024*1024);
278         else
279                 mi->bank[0].size = (64*1024*1024);
280 }
281
282 static void __init corgi_init_irq(void)
283 {
284         pxa_init_irq();
285 }
286
287 static struct map_desc corgi_io_desc[] __initdata = {
288 /*    virtual     physical    length      */
289 /*      { 0xf1000000, 0x08000000, 0x01000000, MT_DEVICE },*/ /* LCDC (readable for Qt driver) */
290 /*      { 0xef700000, 0x10800000, 0x00001000, MT_DEVICE },*/  /* SCOOP */
291         { 0xef800000, 0x00000000, 0x00800000, MT_DEVICE }, /* Boot Flash */
292 };
293
294 static void __init corgi_map_io(void)
295 {
296         pxa_map_io();
297         iotable_init(corgi_io_desc,ARRAY_SIZE(corgi_io_desc));
298
299         /* setup sleep mode values */
300         PWER  = 0x00000002;
301         PFER  = 0x00000000;
302         PRER  = 0x00000002;
303         PGSR0 = 0x0158C000;
304         PGSR1 = 0x00FF0080;
305         PGSR2 = 0x0001C004;
306         /* Stop 3.6MHz and drive HIGH to PCMCIA and CS */
307         PCFR |= PCFR_OPDE;
308 }
309
310 #ifdef CONFIG_MACH_CORGI
311 MACHINE_START(CORGI, "SHARP Corgi")
312         .phys_ram       = 0xa0000000,
313         .phys_io        = 0x40000000,
314         .io_pg_offst    = (io_p2v(0x40000000) >> 18) & 0xfffc,
315         .fixup          = fixup_corgi,
316         .map_io         = corgi_map_io,
317         .init_irq       = corgi_init_irq,
318         .init_machine   = corgi_init,
319         .timer          = &pxa_timer,
320 MACHINE_END
321 #endif
322
323 #ifdef CONFIG_MACH_SHEPHERD
324 MACHINE_START(SHEPHERD, "SHARP Shepherd")
325         .phys_ram       = 0xa0000000,
326         .phys_io        = 0x40000000,
327         .io_pg_offst    = (io_p2v(0x40000000) >> 18) & 0xfffc,
328         .fixup          = fixup_corgi,
329         .map_io         = corgi_map_io,
330         .init_irq       = corgi_init_irq,
331         .init_machine   = corgi_init,
332         .timer          = &pxa_timer,
333 MACHINE_END
334 #endif
335
336 #ifdef CONFIG_MACH_HUSKY
337 MACHINE_START(HUSKY, "SHARP Husky")
338         .phys_ram       = 0xa0000000,
339         .phys_io        = 0x40000000,
340         .io_pg_offst    = (io_p2v(0x40000000) >> 18) & 0xfffc,
341         .fixup          = fixup_corgi,
342         .map_io         = corgi_map_io,
343         .init_irq       = corgi_init_irq,
344         .init_machine   = corgi_init,
345         .timer          = &pxa_timer,
346 MACHINE_END
347 #endif
348