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