]> git.proxmox.com Git - mirror_ubuntu-zesty-kernel.git/blame - arch/arm/mach-pxa/corgi.c
[ARM] pxa/poodle: prepare scoop for the generic GPIO API
[mirror_ubuntu-zesty-kernel.git] / arch / arm / mach-pxa / corgi.c
CommitLineData
1da177e4
LT
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>
d052d1be 17#include <linux/platform_device.h>
1da177e4
LT
18#include <linux/major.h>
19#include <linux/fs.h>
20#include <linux/interrupt.h>
21#include <linux/mmc/host.h>
74617fb6 22#include <linux/pm.h>
9d708752 23#include <linux/gpio.h>
c3f8f650 24#include <linux/backlight.h>
edb403fb
EM
25#include <linux/spi/spi.h>
26#include <linux/spi/ads7846.h>
27#include <linux/spi/corgi_lcd.h>
ca4d6cfc 28#include <video/w100fb.h>
1da177e4
LT
29
30#include <asm/setup.h>
31#include <asm/memory.h>
32#include <asm/mach-types.h>
a09e64fb 33#include <mach/hardware.h>
1da177e4
LT
34#include <asm/irq.h>
35#include <asm/io.h>
74617fb6 36#include <asm/system.h>
1da177e4
LT
37
38#include <asm/mach/arch.h>
39#include <asm/mach/map.h>
40#include <asm/mach/irq.h>
41
a09e64fb
RK
42#include <mach/pxa-regs.h>
43#include <mach/pxa2xx-regs.h>
9ae808d8 44#include <mach/mfp-pxa25x.h>
f8787fdc 45#include <mach/i2c.h>
a09e64fb
RK
46#include <mach/irda.h>
47#include <mach/mmc.h>
48#include <mach/udc.h>
edb403fb 49#include <mach/pxa2xx_spi.h>
a09e64fb
RK
50#include <mach/corgi.h>
51#include <mach/sharpsl.h>
1da177e4
LT
52
53#include <asm/mach/sharpsl_param.h>
54#include <asm/hardware/scoop.h>
1da177e4
LT
55
56#include "generic.h"
46c41e62 57#include "devices.h"
50a5de44 58#include "sharpsl.h"
1da177e4 59
9ae808d8
EM
60static unsigned long corgi_pin_config[] __initdata = {
61 /* Static Memory I/O */
62 GPIO78_nCS_2, /* w100fb */
63 GPIO80_nCS_4, /* scoop */
64
65 /* SSP1 */
66 GPIO23_SSP1_SCLK,
67 GPIO25_SSP1_TXD,
68 GPIO26_SSP1_RXD,
69 GPIO24_GPIO, /* CORGI_GPIO_ADS7846_CS - SFRM as chip select */
70
71 /* I2S */
72 GPIO28_I2S_BITCLK_OUT,
73 GPIO29_I2S_SDATA_IN,
74 GPIO30_I2S_SDATA_OUT,
75 GPIO31_I2S_SYNC,
76 GPIO32_I2S_SYSCLK,
77
78 /* Infra-Red */
79 GPIO47_FICP_TXD,
80 GPIO46_FICP_RXD,
81
82 /* FFUART */
83 GPIO40_FFUART_DTR,
84 GPIO41_FFUART_RTS,
85 GPIO39_FFUART_TXD,
86 GPIO37_FFUART_DSR,
87 GPIO34_FFUART_RXD,
88 GPIO35_FFUART_CTS,
89
90 /* PC Card */
91 GPIO48_nPOE,
92 GPIO49_nPWE,
93 GPIO50_nPIOR,
94 GPIO51_nPIOW,
95 GPIO52_nPCE_1,
96 GPIO53_nPCE_2,
97 GPIO54_nPSKTSEL,
98 GPIO55_nPREG,
99 GPIO56_nPWAIT,
100 GPIO57_nIOIS16,
101
102 /* MMC */
103 GPIO6_MMC_CLK,
104 GPIO8_MMC_CS0,
105
106 /* GPIO */
107 GPIO9_GPIO, /* CORGI_GPIO_nSD_DETECT */
108 GPIO7_GPIO, /* CORGI_GPIO_nSD_WP */
109 GPIO33_GPIO, /* CORGI_GPIO_SD_PWR */
110 GPIO22_GPIO, /* CORGI_GPIO_IR_ON */
111 GPIO44_GPIO, /* CORGI_GPIO_HSYNC */
112
113 GPIO1_GPIO | WAKEUP_ON_EDGE_RISE,
114};
1da177e4
LT
115
116/*
117 * Corgi SCOOP Device
118 */
119static struct resource corgi_scoop_resources[] = {
120 [0] = {
121 .start = 0x10800000,
122 .end = 0x10800fff,
123 .flags = IORESOURCE_MEM,
124 },
125};
126
127static struct scoop_config corgi_scoop_setup = {
128 .io_dir = CORGI_SCOOP_IO_DIR,
129 .io_out = CORGI_SCOOP_IO_OUT,
130};
131
a63ae442
RP
132struct platform_device corgiscoop_device = {
133 .name = "sharp-scoop",
134 .id = -1,
135 .dev = {
136 .platform_data = &corgi_scoop_setup,
137 },
138 .num_resources = ARRAY_SIZE(corgi_scoop_resources),
139 .resource = corgi_scoop_resources,
140};
141
0ce7625f
RP
142static struct scoop_pcmcia_dev corgi_pcmcia_scoop[] = {
143{
144 .dev = &corgiscoop_device.dev,
145 .irq = CORGI_IRQ_GPIO_CF_IRQ,
146 .cd_irq = CORGI_IRQ_GPIO_CF_CD,
147 .cd_irq_str = "PCMCIA0 CD",
148},
149};
150
a63ae442
RP
151static struct scoop_pcmcia_config corgi_pcmcia_config = {
152 .devs = &corgi_pcmcia_scoop[0],
153 .num_devs = 1,
1da177e4
LT
154};
155
a63ae442
RP
156EXPORT_SYMBOL(corgiscoop_device);
157
ca4d6cfc
RP
158static struct w100_mem_info corgi_fb_mem = {
159 .ext_cntl = 0x00040003,
160 .sdram_mode_reg = 0x00650021,
161 .ext_timing_cntl = 0x10002a4a,
162 .io_cntl = 0x7ff87012,
163 .size = 0x1fffff,
164};
165
166static struct w100_gen_regs corgi_fb_regs = {
167 .lcd_format = 0x00000003,
168 .lcdd_cntl1 = 0x01CC0000,
169 .lcdd_cntl2 = 0x0003FFFF,
170 .genlcd_cntl1 = 0x00FFFF0D,
171 .genlcd_cntl2 = 0x003F3003,
172 .genlcd_cntl3 = 0x000102aa,
173};
174
175static struct w100_gpio_regs corgi_fb_gpio = {
176 .init_data1 = 0x000000bf,
177 .init_data2 = 0x00000000,
178 .gpio_dir1 = 0x00000000,
179 .gpio_oe1 = 0x03c0feff,
180 .gpio_dir2 = 0x00000000,
181 .gpio_oe2 = 0x00000000,
182};
183
184static struct w100_mode corgi_fb_modes[] = {
185{
186 .xres = 480,
187 .yres = 640,
188 .left_margin = 0x56,
189 .right_margin = 0x55,
190 .upper_margin = 0x03,
191 .lower_margin = 0x00,
192 .crtc_ss = 0x82360056,
193 .crtc_ls = 0xA0280000,
194 .crtc_gs = 0x80280028,
195 .crtc_vpos_gs = 0x02830002,
196 .crtc_rev = 0x00400008,
197 .crtc_dclk = 0xA0000000,
198 .crtc_gclk = 0x8015010F,
199 .crtc_goe = 0x80100110,
200 .crtc_ps1_active = 0x41060010,
201 .pll_freq = 75,
202 .fast_pll_freq = 100,
203 .sysclk_src = CLK_SRC_PLL,
204 .sysclk_divider = 0,
205 .pixclk_src = CLK_SRC_PLL,
206 .pixclk_divider = 2,
207 .pixclk_divider_rotated = 6,
208},{
209 .xres = 240,
210 .yres = 320,
211 .left_margin = 0x27,
212 .right_margin = 0x2e,
213 .upper_margin = 0x01,
214 .lower_margin = 0x00,
215 .crtc_ss = 0x81170027,
216 .crtc_ls = 0xA0140000,
217 .crtc_gs = 0xC0140014,
218 .crtc_vpos_gs = 0x00010141,
219 .crtc_rev = 0x00400008,
220 .crtc_dclk = 0xA0000000,
221 .crtc_gclk = 0x8015010F,
222 .crtc_goe = 0x80100110,
223 .crtc_ps1_active = 0x41060010,
224 .pll_freq = 0,
225 .fast_pll_freq = 0,
226 .sysclk_src = CLK_SRC_XTAL,
227 .sysclk_divider = 0,
228 .pixclk_src = CLK_SRC_XTAL,
229 .pixclk_divider = 1,
230 .pixclk_divider_rotated = 1,
231},
232
233};
234
235static struct w100fb_mach_info corgi_fb_info = {
ca4d6cfc
RP
236 .init_mode = INIT_MODE_ROTATED,
237 .mem = &corgi_fb_mem,
238 .regs = &corgi_fb_regs,
239 .modelist = &corgi_fb_modes[0],
240 .num_modes = 2,
241 .gpio = &corgi_fb_gpio,
242 .xtal_freq = 12500000,
243 .xtal_dbl = 0,
244};
245
246static struct resource corgi_fb_resources[] = {
247 [0] = {
248 .start = 0x08000000,
249 .end = 0x08ffffff,
250 .flags = IORESOURCE_MEM,
251 },
252};
253
254static struct platform_device corgifb_device = {
255 .name = "w100fb",
256 .id = -1,
257 .num_resources = ARRAY_SIZE(corgi_fb_resources),
258 .resource = corgi_fb_resources,
259 .dev = {
260 .platform_data = &corgi_fb_info,
ca4d6cfc
RP
261 },
262
263};
264
f7ceff34
RP
265/*
266 * Corgi Keyboard Device
267 */
268static struct platform_device corgikbd_device = {
269 .name = "corgi-keyboard",
270 .id = -1,
271};
272
273
3179108d
RP
274/*
275 * Corgi LEDs
276 */
277static struct platform_device corgiled_device = {
278 .name = "corgi-led",
279 .id = -1,
280};
281
1da177e4
LT
282/*
283 * MMC/SD Device
284 *
aa6c2e79 285 * The card detect interrupt isn't debounced so we delay it by 250ms
1da177e4
LT
286 * to give the card a chance to fully insert/eject.
287 */
aa6c2e79 288static struct pxamci_platform_data corgi_mci_platform_data;
1da177e4 289
40220c1a 290static int corgi_mci_init(struct device *dev, irq_handler_t corgi_detect_int, void *data)
1da177e4
LT
291{
292 int err;
293
9d708752
EM
294 err = gpio_request(CORGI_GPIO_nSD_DETECT, "nSD_DETECT");
295 if (err)
296 goto err_out;
1da177e4 297
9d708752 298 err = gpio_request(CORGI_GPIO_nSD_WP, "nSD_WP");
2687bd38 299 if (err)
9d708752
EM
300 goto err_free_1;
301
302 err = gpio_request(CORGI_GPIO_SD_PWR, "SD_PWR");
303 if (err)
304 goto err_free_2;
305
306 gpio_direction_input(CORGI_GPIO_nSD_DETECT);
307 gpio_direction_input(CORGI_GPIO_nSD_WP);
308 gpio_direction_output(CORGI_GPIO_SD_PWR, 0);
1da177e4 309
9d708752
EM
310 corgi_mci_platform_data.detect_delay = msecs_to_jiffies(250);
311
312 err = request_irq(CORGI_IRQ_GPIO_nSD_DETECT, corgi_detect_int,
313 IRQF_DISABLED | IRQF_TRIGGER_RISING |
314 IRQF_TRIGGER_FALLING,
315 "MMC card detect", data);
316 if (err) {
317 pr_err("%s: MMC/SD: can't request MMC card detect IRQ\n",
318 __func__);
319 goto err_free_3;
320 }
321 return 0;
322
323err_free_3:
324 gpio_free(CORGI_GPIO_SD_PWR);
325err_free_2:
326 gpio_free(CORGI_GPIO_nSD_WP);
327err_free_1:
328 gpio_free(CORGI_GPIO_nSD_DETECT);
329err_out:
2687bd38 330 return err;
1da177e4
LT
331}
332
333static void corgi_mci_setpower(struct device *dev, unsigned int vdd)
334{
335 struct pxamci_platform_data* p_d = dev->platform_data;
336
9d708752 337 gpio_set_value(CORGI_GPIO_SD_PWR, ((1 << vdd) & p_d->ocr_mask));
1da177e4
LT
338}
339
3870ee8c
RP
340static int corgi_mci_get_ro(struct device *dev)
341{
9d708752 342 return gpio_get_value(CORGI_GPIO_nSD_WP);
3870ee8c
RP
343}
344
1da177e4
LT
345static void corgi_mci_exit(struct device *dev, void *data)
346{
347 free_irq(CORGI_IRQ_GPIO_nSD_DETECT, data);
9d708752
EM
348 gpio_free(CORGI_GPIO_SD_PWR);
349 gpio_free(CORGI_GPIO_nSD_WP);
350 gpio_free(CORGI_GPIO_nSD_DETECT);
1da177e4
LT
351}
352
353static struct pxamci_platform_data corgi_mci_platform_data = {
354 .ocr_mask = MMC_VDD_32_33|MMC_VDD_33_34,
355 .init = corgi_mci_init,
3870ee8c 356 .get_ro = corgi_mci_get_ro,
1da177e4
LT
357 .setpower = corgi_mci_setpower,
358 .exit = corgi_mci_exit,
359};
360
361
ca1140b5
RP
362/*
363 * Irda
364 */
365static void corgi_irda_transceiver_mode(struct device *dev, int mode)
366{
9d708752 367 gpio_set_value(CORGI_GPIO_IR_ON, mode & IR_OFF);
0fc3ff31 368 pxa2xx_transceiver_mode(dev, mode);
ca1140b5
RP
369}
370
9d708752
EM
371static int corgi_irda_startup(struct device *dev)
372{
373 int err;
374
375 err = gpio_request(CORGI_GPIO_IR_ON, "IR_ON");
376 if (err)
377 return err;
378
379 gpio_direction_output(CORGI_GPIO_IR_ON, 1);
380 return 0;
381}
382
383static void corgi_irda_shutdown(struct device *dev)
384{
385 gpio_free(CORGI_GPIO_IR_ON);
386}
387
ca1140b5 388static struct pxaficp_platform_data corgi_ficp_platform_data = {
9d708752
EM
389 .transceiver_cap = IR_SIRMODE | IR_OFF,
390 .transceiver_mode = corgi_irda_transceiver_mode,
391 .startup = corgi_irda_startup,
392 .shutdown = corgi_irda_shutdown,
ca1140b5
RP
393};
394
f7ceff34 395
1da177e4
LT
396/*
397 * USB Device Controller
398 */
1da177e4
LT
399static struct pxa2xx_udc_mach_info udc_info __initdata = {
400 /* no connect GPIO; corgi can't tell connection status */
b2bbb20b 401 .gpio_pullup = CORGI_GPIO_USB_PULLUP,
1da177e4
LT
402};
403
edb403fb
EM
404#if defined(CONFIG_SPI_PXA2XX) || defined(CONFIG_SPI_PXA2XX_MASTER)
405static struct pxa2xx_spi_master corgi_spi_info = {
406 .num_chipselect = 3,
407};
408
409static struct ads7846_platform_data corgi_ads7846_info = {
410 .model = 7846,
411 .vref_delay_usecs = 100,
412 .x_plate_ohms = 419,
413 .y_plate_ohms = 486,
414 .gpio_pendown = CORGI_GPIO_TP_INT,
415};
416
417static void corgi_ads7846_cs(u32 command)
418{
419 gpio_set_value(CORGI_GPIO_ADS7846_CS, !(command == PXA2XX_CS_ASSERT));
420}
421
422static struct pxa2xx_spi_chip corgi_ads7846_chip = {
423 .cs_control = corgi_ads7846_cs,
424};
425
426static void corgi_notify_intensity(int intensity)
427{
428 /* Bit 5 is via SCOOP */
429 if (intensity & 0x0020)
430 set_scoop_gpio(&corgiscoop_device.dev, CORGI_SCP_BACKLIGHT_CONT);
431 else
432 reset_scoop_gpio(&corgiscoop_device.dev, CORGI_SCP_BACKLIGHT_CONT);
433}
434
435static void corgi_bl_kick_battery(void)
436{
437 void (*kick_batt)(void);
438
439 kick_batt = symbol_get(sharpsl_battery_kick);
440 if (kick_batt) {
441 kick_batt();
442 symbol_put(sharpsl_battery_kick);
443 }
444}
445
446static struct corgi_lcd_platform_data corgi_lcdcon_info = {
447 .init_mode = CORGI_LCD_MODE_VGA,
448 .max_intensity = 0x2f,
449 .default_intensity = 0x1f,
450 .limit_mask = 0x0b,
451 .notify = corgi_notify_intensity,
452 .kick_battery = corgi_bl_kick_battery,
453};
454
455static void corgi_lcdcon_cs(u32 command)
456{
457 gpio_set_value(CORGI_GPIO_LCDCON_CS, !(command == PXA2XX_CS_ASSERT));
458}
459
460static struct pxa2xx_spi_chip corgi_lcdcon_chip = {
461 .cs_control = corgi_lcdcon_cs,
462};
463
464static void corgi_max1111_cs(u32 command)
465{
466 gpio_set_value(CORGI_GPIO_MAX1111_CS, !(command == PXA2XX_CS_ASSERT));
467}
468
469static struct pxa2xx_spi_chip corgi_max1111_chip = {
470 .cs_control = corgi_max1111_cs,
471};
472
473static struct spi_board_info corgi_spi_devices[] = {
474 {
475 .modalias = "ads7846",
476 .max_speed_hz = 1200000,
477 .bus_num = 1,
478 .chip_select = 0,
479 .platform_data = &corgi_ads7846_info,
480 .controller_data= &corgi_ads7846_chip,
481 .irq = gpio_to_irq(CORGI_GPIO_TP_INT),
482 }, {
483 .modalias = "corgi-lcd",
484 .max_speed_hz = 50000,
485 .bus_num = 1,
486 .chip_select = 1,
487 .platform_data = &corgi_lcdcon_info,
488 .controller_data= &corgi_lcdcon_chip,
489 }, {
490 .modalias = "max1111",
491 .max_speed_hz = 450000,
492 .bus_num = 1,
493 .chip_select = 2,
494 .controller_data= &corgi_max1111_chip,
495 },
496};
497
498static void __init corgi_init_spi(void)
499{
500 int err;
501
502 err = gpio_request(CORGI_GPIO_ADS7846_CS, "ADS7846_CS");
503 if (err)
504 return;
505
506 err = gpio_request(CORGI_GPIO_LCDCON_CS, "LCDCON_CS");
507 if (err)
508 goto err_free_1;
509
510 err = gpio_request(CORGI_GPIO_MAX1111_CS, "MAX1111_CS");
511 if (err)
512 goto err_free_2;
513
514 gpio_direction_output(CORGI_GPIO_ADS7846_CS, 1);
515 gpio_direction_output(CORGI_GPIO_LCDCON_CS, 1);
516 gpio_direction_output(CORGI_GPIO_MAX1111_CS, 1);
517
518 pxa2xx_set_spi_info(1, &corgi_spi_info);
519 spi_register_board_info(ARRAY_AND_SIZE(corgi_spi_devices));
520 return;
521
522err_free_2:
523 gpio_free(CORGI_GPIO_LCDCON_CS);
524err_free_1:
525 gpio_free(CORGI_GPIO_ADS7846_CS);
526}
527#else
528static inline void corgi_init_spi(void) {}
529#endif
1da177e4
LT
530
531static struct platform_device *devices[] __initdata = {
532 &corgiscoop_device,
1da177e4 533 &corgifb_device,
f7ceff34 534 &corgikbd_device,
3179108d 535 &corgiled_device,
1da177e4
LT
536};
537
74617fb6
RP
538static void corgi_poweroff(void)
539{
74617fb6
RP
540 if (!machine_is_corgi())
541 /* Green LED off tells the bootloader to halt */
542 reset_scoop_gpio(&corgiscoop_device.dev, CORGI_SCP_LED_GREEN);
543 arm_machine_restart('h');
544}
545
546static void corgi_restart(char mode)
547{
74617fb6
RP
548 if (!machine_is_corgi())
549 /* Green LED on tells the bootloader to reboot */
550 set_scoop_gpio(&corgiscoop_device.dev, CORGI_SCP_LED_GREEN);
551 arm_machine_restart('h');
552}
553
1da177e4
LT
554static void __init corgi_init(void)
555{
74617fb6
RP
556 pm_power_off = corgi_poweroff;
557 arm_pm_restart = corgi_restart;
558
fdce05bb
RP
559 /* Stop 3.6MHz and drive HIGH to PCMCIA and CS */
560 PCFR |= PCFR_OPDE;
561
9ae808d8 562 pxa2xx_mfp_config(ARRAY_AND_SIZE(corgi_pin_config));
50a5de44 563
edb403fb 564 corgi_init_spi();
ca1140b5 565
1da177e4
LT
566 pxa_set_udc_info(&udc_info);
567 pxa_set_mci_info(&corgi_mci_platform_data);
ca1140b5 568 pxa_set_ficp_info(&corgi_ficp_platform_data);
f8787fdc 569 pxa_set_i2c_info(NULL);
1da177e4 570
a63ae442 571 platform_scoop_config = &corgi_pcmcia_config;
0ce7625f 572
1da177e4
LT
573 platform_add_devices(devices, ARRAY_SIZE(devices));
574}
575
576static void __init fixup_corgi(struct machine_desc *desc,
577 struct tag *tags, char **cmdline, struct meminfo *mi)
578{
579 sharpsl_save_param();
580 mi->nr_banks=1;
581 mi->bank[0].start = 0xa0000000;
582 mi->bank[0].node = 0;
583 if (machine_is_corgi())
584 mi->bank[0].size = (32*1024*1024);
585 else
586 mi->bank[0].size = (64*1024*1024);
587}
588
1da177e4
LT
589#ifdef CONFIG_MACH_CORGI
590MACHINE_START(CORGI, "SHARP Corgi")
e9dea0c6 591 .phys_io = 0x40000000,
68070bde 592 .io_pg_offst = (io_p2v(0x40000000) >> 18) & 0xfffc,
e9dea0c6 593 .fixup = fixup_corgi,
fdce05bb 594 .map_io = pxa_map_io,
cd49104d 595 .init_irq = pxa25x_init_irq,
e9dea0c6
RK
596 .init_machine = corgi_init,
597 .timer = &pxa_timer,
1da177e4
LT
598MACHINE_END
599#endif
600
601#ifdef CONFIG_MACH_SHEPHERD
602MACHINE_START(SHEPHERD, "SHARP Shepherd")
e9dea0c6 603 .phys_io = 0x40000000,
68070bde 604 .io_pg_offst = (io_p2v(0x40000000) >> 18) & 0xfffc,
e9dea0c6 605 .fixup = fixup_corgi,
fdce05bb 606 .map_io = pxa_map_io,
cd49104d 607 .init_irq = pxa25x_init_irq,
e9dea0c6
RK
608 .init_machine = corgi_init,
609 .timer = &pxa_timer,
1da177e4
LT
610MACHINE_END
611#endif
612
613#ifdef CONFIG_MACH_HUSKY
614MACHINE_START(HUSKY, "SHARP Husky")
e9dea0c6 615 .phys_io = 0x40000000,
68070bde 616 .io_pg_offst = (io_p2v(0x40000000) >> 18) & 0xfffc,
e9dea0c6 617 .fixup = fixup_corgi,
fdce05bb 618 .map_io = pxa_map_io,
cd49104d 619 .init_irq = pxa25x_init_irq,
e9dea0c6
RK
620 .init_machine = corgi_init,
621 .timer = &pxa_timer,
1da177e4
LT
622MACHINE_END
623#endif
624