ARM: spitz: fix touchscreen max presure
[safe/jmp/linux-2.6] / arch / arm / mach-pxa / spitz.c
1 /*
2  * Support for Sharp SL-Cxx00 Series of PDAs
3  * Models: SL-C3000 (Spitz), SL-C1000 (Akita) and SL-C3100 (Borzoi)
4  *
5  * Copyright (c) 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/platform_device.h>
17 #include <linux/delay.h>
18 #include <linux/gpio.h>
19 #include <linux/leds.h>
20 #include <linux/mtd/physmap.h>
21 #include <linux/i2c.h>
22 #include <linux/i2c/pca953x.h>
23 #include <linux/spi/spi.h>
24 #include <linux/spi/ads7846.h>
25 #include <linux/spi/corgi_lcd.h>
26 #include <linux/mtd/sharpsl.h>
27
28 #include <asm/setup.h>
29 #include <asm/mach-types.h>
30 #include <asm/mach/arch.h>
31 #include <asm/mach/sharpsl_param.h>
32 #include <asm/hardware/scoop.h>
33
34
35 #include <mach/pxa27x.h>
36 #include <mach/pxa27x-udc.h>
37 #include <mach/reset.h>
38 #include <plat/i2c.h>
39 #include <mach/irda.h>
40 #include <mach/mmc.h>
41 #include <mach/ohci.h>
42 #include <mach/pxafb.h>
43 #include <mach/pxa2xx_spi.h>
44 #include <mach/spitz.h>
45
46 #include "generic.h"
47 #include "devices.h"
48 #include "sharpsl.h"
49
50 static unsigned long spitz_pin_config[] __initdata = {
51         /* Chip Selects */
52         GPIO78_nCS_2,   /* SCOOP #2 */
53         GPIO79_nCS_3,   /* NAND */
54         GPIO80_nCS_4,   /* SCOOP #1 */
55
56         /* LCD - 16bpp Active TFT */
57         GPIO58_LCD_LDD_0,
58         GPIO59_LCD_LDD_1,
59         GPIO60_LCD_LDD_2,
60         GPIO61_LCD_LDD_3,
61         GPIO62_LCD_LDD_4,
62         GPIO63_LCD_LDD_5,
63         GPIO64_LCD_LDD_6,
64         GPIO65_LCD_LDD_7,
65         GPIO66_LCD_LDD_8,
66         GPIO67_LCD_LDD_9,
67         GPIO68_LCD_LDD_10,
68         GPIO69_LCD_LDD_11,
69         GPIO70_LCD_LDD_12,
70         GPIO71_LCD_LDD_13,
71         GPIO72_LCD_LDD_14,
72         GPIO73_LCD_LDD_15,
73         GPIO74_LCD_FCLK,
74         GPIO75_LCD_LCLK,
75         GPIO76_LCD_PCLK,
76
77         /* PC Card */
78         GPIO48_nPOE,
79         GPIO49_nPWE,
80         GPIO50_nPIOR,
81         GPIO51_nPIOW,
82         GPIO85_nPCE_1,
83         GPIO54_nPCE_2,
84         GPIO55_nPREG,
85         GPIO56_nPWAIT,
86         GPIO57_nIOIS16,
87         GPIO104_PSKTSEL,
88
89         /* I2S */
90         GPIO28_I2S_BITCLK_OUT,
91         GPIO29_I2S_SDATA_IN,
92         GPIO30_I2S_SDATA_OUT,
93         GPIO31_I2S_SYNC,
94
95         /* MMC */
96         GPIO32_MMC_CLK,
97         GPIO112_MMC_CMD,
98         GPIO92_MMC_DAT_0,
99         GPIO109_MMC_DAT_1,
100         GPIO110_MMC_DAT_2,
101         GPIO111_MMC_DAT_3,
102
103         /* GPIOs */
104         GPIO9_GPIO,     /* SPITZ_GPIO_nSD_DETECT */
105         GPIO81_GPIO,    /* SPITZ_GPIO_nSD_WP */
106         GPIO41_GPIO,    /* SPITZ_GPIO_USB_CONNECT */
107         GPIO37_GPIO,    /* SPITZ_GPIO_USB_HOST */
108         GPIO35_GPIO,    /* SPITZ_GPIO_USB_DEVICE */
109         GPIO22_GPIO,    /* SPITZ_GPIO_HSYNC */
110         GPIO94_GPIO,    /* SPITZ_GPIO_CF_CD */
111         GPIO105_GPIO,   /* SPITZ_GPIO_CF_IRQ */
112         GPIO106_GPIO,   /* SPITZ_GPIO_CF2_IRQ */
113
114         /* I2C */
115         GPIO117_I2C_SCL,
116         GPIO118_I2C_SDA,
117
118         GPIO1_GPIO | WAKEUP_ON_EDGE_RISE,
119 };
120
121 /*
122  * Spitz SCOOP Device #1
123  */
124 static struct resource spitz_scoop_resources[] = {
125         [0] = {
126                 .start          = 0x10800000,
127                 .end            = 0x10800fff,
128                 .flags          = IORESOURCE_MEM,
129         },
130 };
131
132 static struct scoop_config spitz_scoop_setup = {
133         .io_dir         = SPITZ_SCP_IO_DIR,
134         .io_out         = SPITZ_SCP_IO_OUT,
135         .suspend_clr    = SPITZ_SCP_SUS_CLR,
136         .suspend_set    = SPITZ_SCP_SUS_SET,
137         .gpio_base      = SPITZ_SCP_GPIO_BASE,
138 };
139
140 struct platform_device spitzscoop_device = {
141         .name           = "sharp-scoop",
142         .id             = 0,
143         .dev            = {
144                 .platform_data  = &spitz_scoop_setup,
145         },
146         .num_resources  = ARRAY_SIZE(spitz_scoop_resources),
147         .resource       = spitz_scoop_resources,
148 };
149
150 /*
151  * Spitz SCOOP Device #2
152  */
153 static struct resource spitz_scoop2_resources[] = {
154         [0] = {
155                 .start          = 0x08800040,
156                 .end            = 0x08800fff,
157                 .flags          = IORESOURCE_MEM,
158         },
159 };
160
161 static struct scoop_config spitz_scoop2_setup = {
162         .io_dir         = SPITZ_SCP2_IO_DIR,
163         .io_out         = SPITZ_SCP2_IO_OUT,
164         .suspend_clr    = SPITZ_SCP2_SUS_CLR,
165         .suspend_set    = SPITZ_SCP2_SUS_SET,
166         .gpio_base      = SPITZ_SCP2_GPIO_BASE,
167 };
168
169 struct platform_device spitzscoop2_device = {
170         .name           = "sharp-scoop",
171         .id             = 1,
172         .dev            = {
173                 .platform_data  = &spitz_scoop2_setup,
174         },
175         .num_resources  = ARRAY_SIZE(spitz_scoop2_resources),
176         .resource       = spitz_scoop2_resources,
177 };
178
179 #define SPITZ_PWR_SD 0x01
180 #define SPITZ_PWR_CF 0x02
181
182 /* Power control is shared with between one of the CF slots and SD */
183 static void spitz_card_pwr_ctrl(int device, unsigned short new_cpr)
184 {
185         unsigned short cpr = read_scoop_reg(&spitzscoop_device.dev, SCOOP_CPR);
186
187         if (new_cpr & 0x0007) {
188                 gpio_set_value(SPITZ_GPIO_CF_POWER, 1);
189                 if (!(cpr & 0x0002) && !(cpr & 0x0004))
190                         mdelay(5);
191                 if (device == SPITZ_PWR_CF)
192                         cpr |= 0x0002;
193                 if (device == SPITZ_PWR_SD)
194                         cpr |= 0x0004;
195                 write_scoop_reg(&spitzscoop_device.dev, SCOOP_CPR, cpr | new_cpr);
196         } else {
197                 if (device == SPITZ_PWR_CF)
198                         cpr &= ~0x0002;
199                 if (device == SPITZ_PWR_SD)
200                         cpr &= ~0x0004;
201                 if (!(cpr & 0x0002) && !(cpr & 0x0004)) {
202                         write_scoop_reg(&spitzscoop_device.dev, SCOOP_CPR, 0x0000);
203                         mdelay(1);
204                         gpio_set_value(SPITZ_GPIO_CF_POWER, 0);
205                 } else {
206                         write_scoop_reg(&spitzscoop_device.dev, SCOOP_CPR, cpr | new_cpr);
207                 }
208         }
209 }
210
211 static void spitz_pcmcia_pwr(struct device *scoop, unsigned short cpr, int nr)
212 {
213         /* Only need to override behaviour for slot 0 */
214         if (nr == 0)
215                 spitz_card_pwr_ctrl(SPITZ_PWR_CF, cpr);
216         else
217                 write_scoop_reg(scoop, SCOOP_CPR, cpr);
218 }
219
220 static struct scoop_pcmcia_dev spitz_pcmcia_scoop[] = {
221 {
222         .dev        = &spitzscoop_device.dev,
223         .irq        = SPITZ_IRQ_GPIO_CF_IRQ,
224         .cd_irq     = SPITZ_IRQ_GPIO_CF_CD,
225         .cd_irq_str = "PCMCIA0 CD",
226 },{
227         .dev        = &spitzscoop2_device.dev,
228         .irq        = SPITZ_IRQ_GPIO_CF2_IRQ,
229         .cd_irq     = -1,
230 },
231 };
232
233 static struct scoop_pcmcia_config spitz_pcmcia_config = {
234         .devs         = &spitz_pcmcia_scoop[0],
235         .num_devs     = 2,
236         .power_ctrl   = spitz_pcmcia_pwr,
237 };
238
239 EXPORT_SYMBOL(spitzscoop_device);
240 EXPORT_SYMBOL(spitzscoop2_device);
241
242 /*
243  * Spitz Keyboard Device
244  */
245 static struct platform_device spitzkbd_device = {
246         .name           = "spitz-keyboard",
247         .id             = -1,
248 };
249
250
251 /*
252  * Spitz LEDs
253  */
254 static struct gpio_led spitz_gpio_leds[] = {
255         {
256                 .name                   = "spitz:amber:charge",
257                 .default_trigger        = "sharpsl-charge",
258                 .gpio                   = SPITZ_GPIO_LED_ORANGE,
259         },
260         {
261                 .name                   = "spitz:green:hddactivity",
262                 .default_trigger        = "ide-disk",
263                 .gpio                   = SPITZ_GPIO_LED_GREEN,
264         },
265 };
266
267 static struct gpio_led_platform_data spitz_gpio_leds_info = {
268         .leds           = spitz_gpio_leds,
269         .num_leds       = ARRAY_SIZE(spitz_gpio_leds),
270 };
271
272 static struct platform_device spitzled_device = {
273         .name           = "leds-gpio",
274         .id             = -1,
275         .dev            = {
276                 .platform_data = &spitz_gpio_leds_info,
277         },
278 };
279
280 #if defined(CONFIG_SPI_PXA2XX) || defined(CONFIG_SPI_PXA2XX_MODULE)
281 static struct pxa2xx_spi_master spitz_spi_info = {
282         .num_chipselect = 3,
283 };
284
285 static void spitz_wait_for_hsync(void)
286 {
287         while (gpio_get_value(SPITZ_GPIO_HSYNC))
288                 cpu_relax();
289
290         while (!gpio_get_value(SPITZ_GPIO_HSYNC))
291                 cpu_relax();
292 }
293
294 static struct ads7846_platform_data spitz_ads7846_info = {
295         .model                  = 7846,
296         .vref_delay_usecs       = 100,
297         .x_plate_ohms           = 419,
298         .y_plate_ohms           = 486,
299         .pressure_max           = 1024,
300         .gpio_pendown           = SPITZ_GPIO_TP_INT,
301         .wait_for_sync          = spitz_wait_for_hsync,
302 };
303
304 static struct pxa2xx_spi_chip spitz_ads7846_chip = {
305         .gpio_cs                = SPITZ_GPIO_ADS7846_CS,
306 };
307
308 static void spitz_bl_kick_battery(void)
309 {
310         void (*kick_batt)(void);
311
312         kick_batt = symbol_get(sharpsl_battery_kick);
313         if (kick_batt) {
314                 kick_batt();
315                 symbol_put(sharpsl_battery_kick);
316         }
317 }
318
319 static struct corgi_lcd_platform_data spitz_lcdcon_info = {
320         .init_mode              = CORGI_LCD_MODE_VGA,
321         .max_intensity          = 0x2f,
322         .default_intensity      = 0x1f,
323         .limit_mask             = 0x0b,
324         .gpio_backlight_cont    = SPITZ_GPIO_BACKLIGHT_CONT,
325         .gpio_backlight_on      = SPITZ_GPIO_BACKLIGHT_ON,
326         .kick_battery           = spitz_bl_kick_battery,
327 };
328
329 static struct pxa2xx_spi_chip spitz_lcdcon_chip = {
330         .gpio_cs        = SPITZ_GPIO_LCDCON_CS,
331 };
332
333 static struct pxa2xx_spi_chip spitz_max1111_chip = {
334         .gpio_cs        = SPITZ_GPIO_MAX1111_CS,
335 };
336
337 static struct spi_board_info spitz_spi_devices[] = {
338         {
339                 .modalias       = "ads7846",
340                 .max_speed_hz   = 1200000,
341                 .bus_num        = 2,
342                 .chip_select    = 0,
343                 .platform_data  = &spitz_ads7846_info,
344                 .controller_data= &spitz_ads7846_chip,
345                 .irq            = gpio_to_irq(SPITZ_GPIO_TP_INT),
346         }, {
347                 .modalias       = "corgi-lcd",
348                 .max_speed_hz   = 50000,
349                 .bus_num        = 2,
350                 .chip_select    = 1,
351                 .platform_data  = &spitz_lcdcon_info,
352                 .controller_data= &spitz_lcdcon_chip,
353         }, {
354                 .modalias       = "max1111",
355                 .max_speed_hz   = 450000,
356                 .bus_num        = 2,
357                 .chip_select    = 2,
358                 .controller_data= &spitz_max1111_chip,
359         },
360 };
361
362 static void __init spitz_init_spi(void)
363 {
364         if (machine_is_akita()) {
365                 spitz_lcdcon_info.gpio_backlight_cont = AKITA_GPIO_BACKLIGHT_CONT;
366                 spitz_lcdcon_info.gpio_backlight_on = AKITA_GPIO_BACKLIGHT_ON;
367         }
368
369         pxa2xx_set_spi_info(2, &spitz_spi_info);
370         spi_register_board_info(ARRAY_AND_SIZE(spitz_spi_devices));
371 }
372 #else
373 static inline void spitz_init_spi(void) {}
374 #endif
375
376 /*
377  * MMC/SD Device
378  *
379  * The card detect interrupt isn't debounced so we delay it by 250ms
380  * to give the card a chance to fully insert/eject.
381  */
382
383 static struct pxamci_platform_data spitz_mci_platform_data;
384
385 static int spitz_mci_init(struct device *dev, irq_handler_t spitz_detect_int, void *data)
386 {
387         int err;
388
389         err = gpio_request(SPITZ_GPIO_nSD_DETECT, "nSD_DETECT");
390         if (err)
391                 goto err_out;
392
393         err = gpio_request(SPITZ_GPIO_nSD_WP, "nSD_WP");
394         if (err)
395                 goto err_free_1;
396
397         gpio_direction_input(SPITZ_GPIO_nSD_DETECT);
398         gpio_direction_input(SPITZ_GPIO_nSD_WP);
399
400         spitz_mci_platform_data.detect_delay = msecs_to_jiffies(250);
401
402         err = request_irq(SPITZ_IRQ_GPIO_nSD_DETECT, spitz_detect_int,
403                           IRQF_DISABLED | IRQF_TRIGGER_RISING |
404                           IRQF_TRIGGER_FALLING,
405                           "MMC card detect", data);
406         if (err) {
407                 pr_err("%s: MMC/SD: can't request MMC card detect IRQ\n",
408                                 __func__);
409                 goto err_free_2;
410         }
411         return 0;
412
413 err_free_2:
414         gpio_free(SPITZ_GPIO_nSD_WP);
415 err_free_1:
416         gpio_free(SPITZ_GPIO_nSD_DETECT);
417 err_out:
418         return err;
419 }
420
421 static void spitz_mci_setpower(struct device *dev, unsigned int vdd)
422 {
423         struct pxamci_platform_data* p_d = dev->platform_data;
424
425         if (( 1 << vdd) & p_d->ocr_mask)
426                 spitz_card_pwr_ctrl(SPITZ_PWR_SD, 0x0004);
427         else
428                 spitz_card_pwr_ctrl(SPITZ_PWR_SD, 0x0000);
429 }
430
431 static int spitz_mci_get_ro(struct device *dev)
432 {
433         return gpio_get_value(SPITZ_GPIO_nSD_WP);
434 }
435
436 static void spitz_mci_exit(struct device *dev, void *data)
437 {
438         free_irq(SPITZ_IRQ_GPIO_nSD_DETECT, data);
439         gpio_free(SPITZ_GPIO_nSD_WP);
440         gpio_free(SPITZ_GPIO_nSD_DETECT);
441 }
442
443 static struct pxamci_platform_data spitz_mci_platform_data = {
444         .ocr_mask       = MMC_VDD_32_33|MMC_VDD_33_34,
445         .init           = spitz_mci_init,
446         .get_ro         = spitz_mci_get_ro,
447         .setpower       = spitz_mci_setpower,
448         .exit           = spitz_mci_exit,
449 };
450
451
452 /*
453  * USB Host (OHCI)
454  */
455 static int spitz_ohci_init(struct device *dev)
456 {
457         int err;
458
459         err = gpio_request(SPITZ_GPIO_USB_HOST, "USB_HOST");
460         if (err)
461                 return err;
462
463         /* Only Port 2 is connected
464          * Setup USB Port 2 Output Control Register
465          */
466         UP2OCR = UP2OCR_HXS | UP2OCR_HXOE | UP2OCR_DPPDE | UP2OCR_DMPDE;
467
468         return gpio_direction_output(SPITZ_GPIO_USB_HOST, 1);
469 }
470
471 static void spitz_ohci_exit(struct device *dev)
472 {
473         gpio_free(SPITZ_GPIO_USB_HOST);
474 }
475
476 static struct pxaohci_platform_data spitz_ohci_platform_data = {
477         .port_mode      = PMM_NPS_MODE,
478         .init           = spitz_ohci_init,
479         .exit           = spitz_ohci_exit,
480         .flags          = ENABLE_PORT_ALL | NO_OC_PROTECTION,
481         .power_budget   = 150,
482 };
483
484
485 /*
486  * Irda
487  */
488 static int spitz_irda_startup(struct device *dev)
489 {
490         int rc;
491
492         rc = gpio_request(SPITZ_GPIO_IR_ON, "IrDA on");
493         if (rc)
494                 goto err;
495
496         rc = gpio_direction_output(SPITZ_GPIO_IR_ON, 1);
497         if (rc)
498                 goto err_dir;
499
500         return 0;
501
502 err_dir:
503         gpio_free(SPITZ_GPIO_IR_ON);
504 err:
505         return rc;
506 }
507
508 static void spitz_irda_shutdown(struct device *dev)
509 {
510         gpio_free(SPITZ_GPIO_IR_ON);
511 }
512
513 static void spitz_irda_transceiver_mode(struct device *dev, int mode)
514 {
515         gpio_set_value(SPITZ_GPIO_IR_ON, mode & IR_OFF);
516         pxa2xx_transceiver_mode(dev, mode);
517 }
518
519 #ifdef CONFIG_MACH_AKITA
520 static void akita_irda_transceiver_mode(struct device *dev, int mode)
521 {
522         gpio_set_value(AKITA_GPIO_IR_ON, mode & IR_OFF);
523         pxa2xx_transceiver_mode(dev, mode);
524 }
525 #endif
526
527 static struct pxaficp_platform_data spitz_ficp_platform_data = {
528         .transceiver_cap        = IR_SIRMODE | IR_OFF,
529         .transceiver_mode       = spitz_irda_transceiver_mode,
530         .startup                = spitz_irda_startup,
531         .shutdown               = spitz_irda_shutdown,
532 };
533
534
535 /*
536  * Spitz PXA Framebuffer
537  */
538
539 static struct pxafb_mode_info spitz_pxafb_modes[] = {
540 {
541         .pixclock       = 19231,
542         .xres           = 480,
543         .yres           = 640,
544         .bpp            = 16,
545         .hsync_len      = 40,
546         .left_margin    = 46,
547         .right_margin   = 125,
548         .vsync_len      = 3,
549         .upper_margin   = 1,
550         .lower_margin   = 0,
551         .sync           = 0,
552 },{
553         .pixclock       = 134617,
554         .xres           = 240,
555         .yres           = 320,
556         .bpp            = 16,
557         .hsync_len      = 20,
558         .left_margin    = 20,
559         .right_margin   = 46,
560         .vsync_len      = 2,
561         .upper_margin   = 1,
562         .lower_margin   = 0,
563         .sync           = 0,
564 },
565 };
566
567 static struct pxafb_mach_info spitz_pxafb_info = {
568         .modes          = &spitz_pxafb_modes[0],
569         .num_modes      = 2,
570         .fixed_modes    = 1,
571         .lcd_conn       = LCD_COLOR_TFT_16BPP | LCD_ALTERNATE_MAPPING,
572 };
573
574 static struct mtd_partition sharpsl_nand_partitions[] = {
575         {
576                 .name = "System Area",
577                 .offset = 0,
578                 .size = 7 * 1024 * 1024,
579         },
580         {
581                 .name = "Root Filesystem",
582                 .offset = 7 * 1024 * 1024,
583         },
584         {
585                 .name = "Home Filesystem",
586                 .offset = MTDPART_OFS_APPEND,
587                 .size = MTDPART_SIZ_FULL,
588         },
589 };
590
591 static uint8_t scan_ff_pattern[] = { 0xff, 0xff };
592
593 static struct nand_bbt_descr sharpsl_bbt = {
594         .options = 0,
595         .offs = 4,
596         .len = 2,
597         .pattern = scan_ff_pattern
598 };
599
600 static struct sharpsl_nand_platform_data sharpsl_nand_platform_data = {
601         .badblock_pattern       = &sharpsl_bbt,
602         .partitions             = sharpsl_nand_partitions,
603         .nr_partitions          = ARRAY_SIZE(sharpsl_nand_partitions),
604 };
605
606 static struct resource sharpsl_nand_resources[] = {
607         {
608                 .start  = 0x0C000000,
609                 .end    = 0x0C000FFF,
610                 .flags  = IORESOURCE_MEM,
611         },
612 };
613
614 static struct platform_device sharpsl_nand_device = {
615         .name           = "sharpsl-nand",
616         .id             = -1,
617         .resource       = sharpsl_nand_resources,
618         .num_resources  = ARRAY_SIZE(sharpsl_nand_resources),
619         .dev.platform_data      = &sharpsl_nand_platform_data,
620 };
621
622
623 static struct mtd_partition sharpsl_rom_parts[] = {
624         {
625                 .name   ="Boot PROM Filesystem",
626                 .offset = 0x00140000,
627                 .size   = MTDPART_SIZ_FULL,
628         },
629 };
630
631 static struct physmap_flash_data sharpsl_rom_data = {
632         .width          = 2,
633         .nr_parts       = ARRAY_SIZE(sharpsl_rom_parts),
634         .parts          = sharpsl_rom_parts,
635 };
636
637 static struct resource sharpsl_rom_resources[] = {
638         {
639                 .start  = 0x00000000,
640                 .end    = 0x007fffff,
641                 .flags  = IORESOURCE_MEM,
642         },
643 };
644
645 static struct platform_device sharpsl_rom_device = {
646         .name   = "physmap-flash",
647         .id     = -1,
648         .resource = sharpsl_rom_resources,
649         .num_resources = ARRAY_SIZE(sharpsl_rom_resources),
650         .dev.platform_data = &sharpsl_rom_data,
651 };
652
653 static struct platform_device *devices[] __initdata = {
654         &spitzscoop_device,
655         &spitzkbd_device,
656         &spitzled_device,
657         &sharpsl_nand_device,
658         &sharpsl_rom_device,
659 };
660
661 static void spitz_poweroff(void)
662 {
663         arm_machine_restart('g', NULL);
664 }
665
666 static void spitz_restart(char mode, const char *cmd)
667 {
668         /* Bootloader magic for a reboot */
669         if((MSC0 & 0xffff0000) == 0x7ff00000)
670                 MSC0 = (MSC0 & 0xffff) | 0x7ee00000;
671
672         spitz_poweroff();
673 }
674
675 static void __init common_init(void)
676 {
677         init_gpio_reset(SPITZ_GPIO_ON_RESET, 1, 0);
678         pm_power_off = spitz_poweroff;
679         arm_pm_restart = spitz_restart;
680
681         if (machine_is_spitz()) {
682                 sharpsl_nand_partitions[1].size = 5 * 1024 * 1024;
683         } else if (machine_is_akita()) {
684                 sharpsl_nand_partitions[1].size = 58 * 1024 * 1024;
685         } else if (machine_is_borzoi()) {
686                 sharpsl_nand_partitions[1].size = 32 * 1024 * 1024;
687         }
688
689         PMCR = 0x00;
690
691         /* Stop 3.6MHz and drive HIGH to PCMCIA and CS */
692         PCFR |= PCFR_OPDE;
693
694         pxa2xx_mfp_config(ARRAY_AND_SIZE(spitz_pin_config));
695
696         spitz_init_spi();
697
698         platform_add_devices(devices, ARRAY_SIZE(devices));
699         pxa_set_mci_info(&spitz_mci_platform_data);
700         pxa_set_ohci_info(&spitz_ohci_platform_data);
701         pxa_set_ficp_info(&spitz_ficp_platform_data);
702         set_pxa_fb_info(&spitz_pxafb_info);
703         pxa_set_i2c_info(NULL);
704 }
705
706 #if defined(CONFIG_MACH_SPITZ) || defined(CONFIG_MACH_BORZOI)
707 static void __init spitz_init(void)
708 {
709         platform_scoop_config = &spitz_pcmcia_config;
710
711         common_init();
712
713         platform_device_register(&spitzscoop2_device);
714 }
715 #endif
716
717 #ifdef CONFIG_MACH_AKITA
718 /*
719  * Akita IO Expander
720  */
721 static struct pca953x_platform_data akita_ioexp = {
722         .gpio_base              = AKITA_IOEXP_GPIO_BASE,
723 };
724
725 static struct i2c_board_info akita_i2c_board_info[] = {
726         {
727                 .type           = "max7310",
728                 .addr           = 0x18,
729                 .platform_data  = &akita_ioexp,
730         },
731 };
732
733 static struct nand_bbt_descr sharpsl_akita_bbt = {
734         .options = 0,
735         .offs = 4,
736         .len = 1,
737         .pattern = scan_ff_pattern
738 };
739
740 static struct nand_ecclayout akita_oobinfo = {
741         .eccbytes = 24,
742         .eccpos = {
743                    0x5, 0x1, 0x2, 0x3, 0x6, 0x7, 0x15, 0x11,
744                    0x12, 0x13, 0x16, 0x17, 0x25, 0x21, 0x22, 0x23,
745                    0x26, 0x27, 0x35, 0x31, 0x32, 0x33, 0x36, 0x37},
746         .oobfree = {{0x08, 0x09}}
747 };
748
749 static void __init akita_init(void)
750 {
751         spitz_ficp_platform_data.transceiver_mode = akita_irda_transceiver_mode;
752
753         sharpsl_nand_platform_data.badblock_pattern = &sharpsl_akita_bbt;
754         sharpsl_nand_platform_data.ecc_layout = &akita_oobinfo;
755
756         /* We just pretend the second element of the array doesn't exist */
757         spitz_pcmcia_config.num_devs = 1;
758         platform_scoop_config = &spitz_pcmcia_config;
759
760         i2c_register_board_info(0, ARRAY_AND_SIZE(akita_i2c_board_info));
761
762         common_init();
763 }
764 #endif
765
766 static void __init fixup_spitz(struct machine_desc *desc,
767                 struct tag *tags, char **cmdline, struct meminfo *mi)
768 {
769         sharpsl_save_param();
770         mi->nr_banks = 1;
771         mi->bank[0].start = 0xa0000000;
772         mi->bank[0].node = 0;
773         mi->bank[0].size = (64*1024*1024);
774 }
775
776 #ifdef CONFIG_MACH_SPITZ
777 MACHINE_START(SPITZ, "SHARP Spitz")
778         .phys_io        = 0x40000000,
779         .io_pg_offst    = (io_p2v(0x40000000) >> 18) & 0xfffc,
780         .fixup          = fixup_spitz,
781         .map_io         = pxa_map_io,
782         .init_irq       = pxa27x_init_irq,
783         .init_machine   = spitz_init,
784         .timer          = &pxa_timer,
785 MACHINE_END
786 #endif
787
788 #ifdef CONFIG_MACH_BORZOI
789 MACHINE_START(BORZOI, "SHARP Borzoi")
790         .phys_io        = 0x40000000,
791         .io_pg_offst    = (io_p2v(0x40000000) >> 18) & 0xfffc,
792         .fixup          = fixup_spitz,
793         .map_io         = pxa_map_io,
794         .init_irq       = pxa27x_init_irq,
795         .init_machine   = spitz_init,
796         .timer          = &pxa_timer,
797 MACHINE_END
798 #endif
799
800 #ifdef CONFIG_MACH_AKITA
801 MACHINE_START(AKITA, "SHARP Akita")
802         .phys_io        = 0x40000000,
803         .io_pg_offst    = (io_p2v(0x40000000) >> 18) & 0xfffc,
804         .fixup          = fixup_spitz,
805         .map_io         = pxa_map_io,
806         .init_irq       = pxa27x_init_irq,
807         .init_machine   = akita_init,
808         .timer          = &pxa_timer,
809 MACHINE_END
810 #endif