[PATCH] LED: add device support for tosa
[powerpc.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/platform_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/irda.h>
36 #include <asm/arch/mmc.h>
37 #include <asm/arch/udc.h>
38 #include <asm/arch/corgi.h>
39 #include <asm/arch/sharpsl.h>
40
41 #include <asm/mach/sharpsl_param.h>
42 #include <asm/hardware/scoop.h>
43
44 #include "generic.h"
45 #include "sharpsl.h"
46
47
48 /*
49  * Corgi SCOOP Device
50  */
51 static struct resource corgi_scoop_resources[] = {
52         [0] = {
53                 .start          = 0x10800000,
54                 .end            = 0x10800fff,
55                 .flags          = IORESOURCE_MEM,
56         },
57 };
58
59 static struct scoop_config corgi_scoop_setup = {
60         .io_dir         = CORGI_SCOOP_IO_DIR,
61         .io_out         = CORGI_SCOOP_IO_OUT,
62 };
63
64 struct platform_device corgiscoop_device = {
65         .name           = "sharp-scoop",
66         .id             = -1,
67         .dev            = {
68                 .platform_data  = &corgi_scoop_setup,
69         },
70         .num_resources  = ARRAY_SIZE(corgi_scoop_resources),
71         .resource       = corgi_scoop_resources,
72 };
73
74 static void corgi_pcmcia_init(void)
75 {
76         /* Setup default state of GPIO outputs
77            before we enable them as outputs. */
78         GPSR(GPIO48_nPOE) = GPIO_bit(GPIO48_nPOE) |
79                 GPIO_bit(GPIO49_nPWE) | GPIO_bit(GPIO50_nPIOR) |
80                 GPIO_bit(GPIO51_nPIOW) | GPIO_bit(GPIO52_nPCE_1) |
81                 GPIO_bit(GPIO53_nPCE_2);
82
83         pxa_gpio_mode(GPIO48_nPOE_MD);
84         pxa_gpio_mode(GPIO49_nPWE_MD);
85         pxa_gpio_mode(GPIO50_nPIOR_MD);
86         pxa_gpio_mode(GPIO51_nPIOW_MD);
87         pxa_gpio_mode(GPIO55_nPREG_MD);
88         pxa_gpio_mode(GPIO56_nPWAIT_MD);
89         pxa_gpio_mode(GPIO57_nIOIS16_MD);
90         pxa_gpio_mode(GPIO52_nPCE_1_MD);
91         pxa_gpio_mode(GPIO53_nPCE_2_MD);
92         pxa_gpio_mode(GPIO54_pSKTSEL_MD);
93 }
94
95 static struct scoop_pcmcia_dev corgi_pcmcia_scoop[] = {
96 {
97         .dev        = &corgiscoop_device.dev,
98         .irq        = CORGI_IRQ_GPIO_CF_IRQ,
99         .cd_irq     = CORGI_IRQ_GPIO_CF_CD,
100         .cd_irq_str = "PCMCIA0 CD",
101 },
102 };
103
104 static struct scoop_pcmcia_config corgi_pcmcia_config = {
105         .devs         = &corgi_pcmcia_scoop[0],
106         .num_devs     = 1,
107         .pcmcia_init  = corgi_pcmcia_init,
108 };
109
110 EXPORT_SYMBOL(corgiscoop_device);
111
112
113 /*
114  * Corgi SSP Device
115  *
116  * Set the parent as the scoop device because a lot of SSP devices
117  * also use scoop functions and this makes the power up/down order
118  * work correctly.
119  */
120 struct platform_device corgissp_device = {
121         .name           = "corgi-ssp",
122         .dev            = {
123                 .parent = &corgiscoop_device.dev,
124         },
125         .id             = -1,
126 };
127
128 struct corgissp_machinfo corgi_ssp_machinfo = {
129         .port           = 1,
130         .cs_lcdcon      = CORGI_GPIO_LCDCON_CS,
131         .cs_ads7846     = CORGI_GPIO_ADS7846_CS,
132         .cs_max1111     = CORGI_GPIO_MAX1111_CS,
133         .clk_lcdcon     = 76,
134         .clk_ads7846    = 2,
135         .clk_max1111    = 8,
136 };
137
138
139 /*
140  * Corgi Backlight Device
141  */
142 static struct corgibl_machinfo corgi_bl_machinfo = {
143         .max_intensity = 0x2f,
144         .set_bl_intensity = corgi_bl_set_intensity,
145 };
146
147 static struct platform_device corgibl_device = {
148         .name           = "corgi-bl",
149         .dev            = {
150                 .parent = &corgifb_device.dev,
151                 .platform_data  = &corgi_bl_machinfo,
152         },
153         .id             = -1,
154 };
155
156
157 /*
158  * Corgi Keyboard Device
159  */
160 static struct platform_device corgikbd_device = {
161         .name           = "corgi-keyboard",
162         .id             = -1,
163 };
164
165
166 /*
167  * Corgi LEDs
168  */
169 static struct platform_device corgiled_device = {
170         .name           = "corgi-led",
171         .id             = -1,
172 };
173
174 /*
175  * Corgi Touch Screen Device
176  */
177 static struct resource corgits_resources[] = {
178         [0] = {
179                 .start          = CORGI_IRQ_GPIO_TP_INT,
180                 .end            = CORGI_IRQ_GPIO_TP_INT,
181                 .flags          = IORESOURCE_IRQ,
182         },
183 };
184
185 static struct corgits_machinfo  corgi_ts_machinfo = {
186         .get_hsync_len   = corgi_get_hsync_len,
187         .put_hsync       = corgi_put_hsync,
188         .wait_hsync      = corgi_wait_hsync,
189 };
190
191 static struct platform_device corgits_device = {
192         .name           = "corgi-ts",
193         .dev            = {
194                 .parent = &corgissp_device.dev,
195                 .platform_data  = &corgi_ts_machinfo,
196         },
197         .id             = -1,
198         .num_resources  = ARRAY_SIZE(corgits_resources),
199         .resource       = corgits_resources,
200 };
201
202
203 /*
204  * MMC/SD Device
205  *
206  * The card detect interrupt isn't debounced so we delay it by 250ms
207  * to give the card a chance to fully insert/eject.
208  */
209 static struct pxamci_platform_data corgi_mci_platform_data;
210
211 static int corgi_mci_init(struct device *dev, irqreturn_t (*corgi_detect_int)(int, void *, struct pt_regs *), void *data)
212 {
213         int err;
214
215         /* setup GPIO for PXA25x MMC controller */
216         pxa_gpio_mode(GPIO6_MMCCLK_MD);
217         pxa_gpio_mode(GPIO8_MMCCS0_MD);
218         pxa_gpio_mode(CORGI_GPIO_nSD_DETECT | GPIO_IN);
219         pxa_gpio_mode(CORGI_GPIO_SD_PWR | GPIO_OUT);
220
221         corgi_mci_platform_data.detect_delay = msecs_to_jiffies(250);
222
223         err = request_irq(CORGI_IRQ_GPIO_nSD_DETECT, corgi_detect_int,
224                           SA_INTERRUPT | SA_TRIGGER_RISING | SA_TRIGGER_FALLING,
225                           "MMC card detect", data);
226         if (err) {
227                 printk(KERN_ERR "corgi_mci_init: MMC/SD: can't request MMC card detect IRQ\n");
228                 return -1;
229         }
230
231         return 0;
232 }
233
234 static void corgi_mci_setpower(struct device *dev, unsigned int vdd)
235 {
236         struct pxamci_platform_data* p_d = dev->platform_data;
237
238         if (( 1 << vdd) & p_d->ocr_mask)
239                 GPSR1 = GPIO_bit(CORGI_GPIO_SD_PWR);
240         else
241                 GPCR1 = GPIO_bit(CORGI_GPIO_SD_PWR);
242 }
243
244 static int corgi_mci_get_ro(struct device *dev)
245 {
246         return GPLR(CORGI_GPIO_nSD_WP) & GPIO_bit(CORGI_GPIO_nSD_WP);
247 }
248
249 static void corgi_mci_exit(struct device *dev, void *data)
250 {
251         free_irq(CORGI_IRQ_GPIO_nSD_DETECT, data);
252 }
253
254 static struct pxamci_platform_data corgi_mci_platform_data = {
255         .ocr_mask       = MMC_VDD_32_33|MMC_VDD_33_34,
256         .init           = corgi_mci_init,
257         .get_ro         = corgi_mci_get_ro,
258         .setpower       = corgi_mci_setpower,
259         .exit           = corgi_mci_exit,
260 };
261
262
263 /*
264  * Irda
265  */
266 static void corgi_irda_transceiver_mode(struct device *dev, int mode)
267 {
268         if (mode & IR_OFF)
269                 GPSR(CORGI_GPIO_IR_ON) = GPIO_bit(CORGI_GPIO_IR_ON);
270         else
271                 GPCR(CORGI_GPIO_IR_ON) = GPIO_bit(CORGI_GPIO_IR_ON);
272 }
273
274 static struct pxaficp_platform_data corgi_ficp_platform_data = {
275         .transceiver_cap  = IR_SIRMODE | IR_OFF,
276         .transceiver_mode = corgi_irda_transceiver_mode,
277 };
278
279
280 /*
281  * USB Device Controller
282  */
283 static void corgi_udc_command(int cmd)
284 {
285         switch(cmd)     {
286         case PXA2XX_UDC_CMD_CONNECT:
287                 GPSR(CORGI_GPIO_USB_PULLUP) = GPIO_bit(CORGI_GPIO_USB_PULLUP);
288                 break;
289         case PXA2XX_UDC_CMD_DISCONNECT:
290                 GPCR(CORGI_GPIO_USB_PULLUP) = GPIO_bit(CORGI_GPIO_USB_PULLUP);
291                 break;
292         }
293 }
294
295 static struct pxa2xx_udc_mach_info udc_info __initdata = {
296         /* no connect GPIO; corgi can't tell connection status */
297         .udc_command            = corgi_udc_command,
298 };
299
300
301 static struct platform_device *devices[] __initdata = {
302         &corgiscoop_device,
303         &corgissp_device,
304         &corgifb_device,
305         &corgikbd_device,
306         &corgibl_device,
307         &corgits_device,
308         &corgiled_device,
309 };
310
311 static void __init corgi_init(void)
312 {
313         /* setup sleep mode values */
314         PWER  = 0x00000002;
315         PFER  = 0x00000000;
316         PRER  = 0x00000002;
317         PGSR0 = 0x0158C000;
318         PGSR1 = 0x00FF0080;
319         PGSR2 = 0x0001C004;
320         /* Stop 3.6MHz and drive HIGH to PCMCIA and CS */
321         PCFR |= PCFR_OPDE;
322
323         corgi_ssp_set_machinfo(&corgi_ssp_machinfo);
324
325         pxa_gpio_mode(CORGI_GPIO_IR_ON | GPIO_OUT);
326         pxa_gpio_mode(CORGI_GPIO_USB_PULLUP | GPIO_OUT);
327         pxa_gpio_mode(CORGI_GPIO_HSYNC | GPIO_IN);
328
329         pxa_set_udc_info(&udc_info);
330         pxa_set_mci_info(&corgi_mci_platform_data);
331         pxa_set_ficp_info(&corgi_ficp_platform_data);
332
333         platform_scoop_config = &corgi_pcmcia_config;
334
335         platform_add_devices(devices, ARRAY_SIZE(devices));
336 }
337
338 static void __init fixup_corgi(struct machine_desc *desc,
339                 struct tag *tags, char **cmdline, struct meminfo *mi)
340 {
341         sharpsl_save_param();
342         mi->nr_banks=1;
343         mi->bank[0].start = 0xa0000000;
344         mi->bank[0].node = 0;
345         if (machine_is_corgi())
346                 mi->bank[0].size = (32*1024*1024);
347         else
348                 mi->bank[0].size = (64*1024*1024);
349 }
350
351 #ifdef CONFIG_MACH_CORGI
352 MACHINE_START(CORGI, "SHARP Corgi")
353         .phys_io        = 0x40000000,
354         .io_pg_offst    = (io_p2v(0x40000000) >> 18) & 0xfffc,
355         .fixup          = fixup_corgi,
356         .map_io         = pxa_map_io,
357         .init_irq       = pxa_init_irq,
358         .init_machine   = corgi_init,
359         .timer          = &pxa_timer,
360 MACHINE_END
361 #endif
362
363 #ifdef CONFIG_MACH_SHEPHERD
364 MACHINE_START(SHEPHERD, "SHARP Shepherd")
365         .phys_io        = 0x40000000,
366         .io_pg_offst    = (io_p2v(0x40000000) >> 18) & 0xfffc,
367         .fixup          = fixup_corgi,
368         .map_io         = pxa_map_io,
369         .init_irq       = pxa_init_irq,
370         .init_machine   = corgi_init,
371         .timer          = &pxa_timer,
372 MACHINE_END
373 #endif
374
375 #ifdef CONFIG_MACH_HUSKY
376 MACHINE_START(HUSKY, "SHARP Husky")
377         .phys_io        = 0x40000000,
378         .io_pg_offst    = (io_p2v(0x40000000) >> 18) & 0xfffc,
379         .fixup          = fixup_corgi,
380         .map_io         = pxa_map_io,
381         .init_irq       = pxa_init_irq,
382         .init_machine   = corgi_init,
383         .timer          = &pxa_timer,
384 MACHINE_END
385 #endif
386