2 * arch/arm/mach-pxa/raumfeld.c
4 * Support for the following Raumfeld devices:
10 * See http://www.raumfeld.com for details.
12 * Copyright (c) 2009 Daniel Mack <daniel@caiaq.de>
14 * This program is free software; you can redistribute it and/or modify
15 * it under the terms of the GNU General Public License version 2 as
16 * published by the Free Software Foundation.
19 #include <linux/init.h>
20 #include <linux/kernel.h>
21 #include <linux/platform_device.h>
22 #include <linux/interrupt.h>
23 #include <linux/gpio.h>
24 #include <linux/smsc911x.h>
25 #include <linux/input.h>
26 #include <linux/rotary_encoder.h>
27 #include <linux/gpio_keys.h>
28 #include <linux/input/eeti_ts.h>
29 #include <linux/leds.h>
30 #include <linux/w1-gpio.h>
31 #include <linux/sched.h>
32 #include <linux/pwm_backlight.h>
33 #include <linux/i2c.h>
34 #include <linux/i2c/pxa-i2c.h>
35 #include <linux/spi/spi.h>
36 #include <linux/spi/spi_gpio.h>
37 #include <linux/lis3lv02d.h>
38 #include <linux/pda_power.h>
39 #include <linux/power_supply.h>
40 #include <linux/regulator/max8660.h>
41 #include <linux/regulator/machine.h>
42 #include <linux/regulator/fixed.h>
43 #include <linux/regulator/consumer.h>
44 #include <linux/delay.h>
46 #include <asm/mach-types.h>
47 #include <asm/mach/arch.h>
49 #include <mach/hardware.h>
50 #include <mach/pxa3xx-regs.h>
51 #include <mach/mfp-pxa3xx.h>
52 #include <mach/mfp-pxa300.h>
53 #include <mach/ohci.h>
54 #include <mach/pxafb.h>
56 #include <plat/pxa3xx_nand.h>
62 /* common GPIO definitions */
65 #define GPIO_ON_OFF (14)
66 #define GPIO_VOLENC_A (19)
67 #define GPIO_VOLENC_B (20)
68 #define GPIO_CHARGE_DONE (23)
69 #define GPIO_CHARGE_IND (27)
70 #define GPIO_TOUCH_IRQ (32)
71 #define GPIO_ETH_IRQ (40)
72 #define GPIO_SPI_MISO (98)
73 #define GPIO_ACCEL_IRQ (104)
74 #define GPIO_RESCUE_BOOT (115)
75 #define GPIO_DOCK_DETECT (116)
76 #define GPIO_KEY1 (117)
77 #define GPIO_KEY2 (118)
78 #define GPIO_KEY3 (119)
79 #define GPIO_CHARGE_USB_OK (112)
80 #define GPIO_CHARGE_DC_OK (101)
81 #define GPIO_CHARGE_USB_SUSP (102)
84 #define GPIO_SHUTDOWN_SUPPLY (16)
85 #define GPIO_SHUTDOWN_BATT (18)
86 #define GPIO_CHRG_PEN2 (31)
87 #define GPIO_TFT_VA_EN (33)
88 #define GPIO_SPDIF_CS (34)
89 #define GPIO_LED2 (35)
90 #define GPIO_LED1 (36)
91 #define GPIO_SPDIF_RESET (38)
92 #define GPIO_SPI_CLK (95)
93 #define GPIO_MCLK_DAC_CS (96)
94 #define GPIO_SPI_MOSI (97)
95 #define GPIO_W1_PULLUP_ENABLE (105)
96 #define GPIO_DISPLAY_ENABLE (106)
97 #define GPIO_MCLK_RESET (111)
98 #define GPIO_W2W_RESET (113)
99 #define GPIO_W2W_PDN (114)
100 #define GPIO_CODEC_RESET (120)
101 #define GPIO_AUDIO_VA_ENABLE (124)
102 #define GPIO_ACCEL_CS (125)
103 #define GPIO_ONE_WIRE (126)
106 * GPIO configurations
108 static mfp_cfg_t raumfeld_controller_pin_config
[] __initdata
= {
125 GPIO21_I2C_SCL
| MFP_LPM_FLOAT
| MFP_PULL_FLOAT
,
126 GPIO22_I2C_SDA
| MFP_LPM_FLOAT
| MFP_PULL_FLOAT
,
129 GPIO34_GPIO
, /* SPDIF_CS */
130 GPIO96_GPIO
, /* MCLK_CS */
131 GPIO125_GPIO
, /* ACCEL_CS */
142 GPIO126_GPIO
| MFP_LPM_FLOAT
,
143 GPIO105_GPIO
| MFP_PULL_LOW
| MFP_LPM_PULL_LOW
,
146 GPIO101_GPIO
| MFP_PULL_HIGH
,
148 GPIO112_GPIO
| MFP_PULL_HIGH
,
154 GPIO116_GPIO
| MFP_LPM_FLOAT
| MFP_PULL_FLOAT
,
181 static mfp_cfg_t raumfeld_connector_pin_config
[] __initdata
= {
198 GPIO21_I2C_SCL
| MFP_LPM_FLOAT
| MFP_PULL_FLOAT
,
199 GPIO22_I2C_SDA
| MFP_LPM_FLOAT
| MFP_PULL_FLOAT
,
202 GPIO34_GPIO
, /* SPDIF_CS */
203 GPIO96_GPIO
, /* MCLK_CS */
204 GPIO125_GPIO
, /* ACCEL_CS */
216 GPIO40_GPIO
| MFP_PULL_HIGH
, /* IRQ */
226 /* SSP2 for S/PDIF */
233 GPIO35_GPIO
| MFP_LPM_PULL_LOW
,
234 GPIO36_GPIO
| MFP_LPM_DRIVE_HIGH
,
237 static mfp_cfg_t raumfeld_speaker_pin_config
[] __initdata
= {
254 GPIO21_I2C_SCL
| MFP_LPM_FLOAT
| MFP_PULL_FLOAT
,
255 GPIO22_I2C_SDA
| MFP_LPM_FLOAT
| MFP_PULL_FLOAT
,
258 GPIO34_GPIO
, /* SPDIF_CS */
259 GPIO96_GPIO
, /* MCLK_CS */
260 GPIO125_GPIO
, /* ACCEL_CS */
272 GPIO40_GPIO
| MFP_PULL_HIGH
, /* IRQ */
283 GPIO35_GPIO
| MFP_LPM_PULL_LOW
,
284 GPIO36_GPIO
| MFP_LPM_DRIVE_HIGH
,
288 * SMSC LAN9220 Ethernet
291 static struct resource smc91x_resources
[] = {
293 .start
= PXA3xx_CS2_PHYS
,
294 .end
= PXA3xx_CS2_PHYS
+ 0xfffff,
295 .flags
= IORESOURCE_MEM
,
298 .start
= gpio_to_irq(GPIO_ETH_IRQ
),
299 .end
= gpio_to_irq(GPIO_ETH_IRQ
),
300 .flags
= IORESOURCE_IRQ
| IRQF_TRIGGER_FALLING
,
304 static struct smsc911x_platform_config raumfeld_smsc911x_config
= {
305 .phy_interface
= PHY_INTERFACE_MODE_MII
,
306 .irq_polarity
= SMSC911X_IRQ_POLARITY_ACTIVE_LOW
,
307 .irq_type
= SMSC911X_IRQ_TYPE_OPEN_DRAIN
,
308 .flags
= SMSC911X_USE_32BIT
| SMSC911X_SAVE_MAC_ADDRESS
,
311 static struct platform_device smc91x_device
= {
314 .num_resources
= ARRAY_SIZE(smc91x_resources
),
315 .resource
= smc91x_resources
,
317 .platform_data
= &raumfeld_smsc911x_config
,
325 static struct mtd_partition raumfeld_nand_partitions
[] = {
327 .name
= "Bootloader",
330 .mask_flags
= MTD_WRITEABLE
, /* force read-only */
333 .name
= "BootloaderEnvironment",
338 .name
= "BootloaderSplashScreen",
345 .size
= MTDPART_SIZ_FULL
,
349 static struct pxa3xx_nand_platform_data raumfeld_nand_info
= {
352 .parts
= raumfeld_nand_partitions
,
353 .nr_parts
= ARRAY_SIZE(raumfeld_nand_partitions
),
360 static struct pxaohci_platform_data raumfeld_ohci_info
= {
361 .port_mode
= PMM_GLOBAL_MODE
,
362 .flags
= ENABLE_PORT1
,
366 * Rotary encoder input device
369 static struct rotary_encoder_platform_data raumfeld_rotary_encoder_info
= {
373 .gpio_a
= GPIO_VOLENC_A
,
374 .gpio_b
= GPIO_VOLENC_B
,
379 static struct platform_device rotary_encoder_device
= {
380 .name
= "rotary-encoder",
383 .platform_data
= &raumfeld_rotary_encoder_info
,
391 static struct gpio_keys_button gpio_keys_button
[] = {
398 .debounce_interval
= 5, /* ms */
407 .debounce_interval
= 5, /* ms */
416 .debounce_interval
= 5, /* ms */
422 .gpio
= GPIO_RESCUE_BOOT
,
425 .debounce_interval
= 5, /* ms */
426 .desc
= "rescue boot button",
431 .gpio
= GPIO_DOCK_DETECT
,
434 .debounce_interval
= 5, /* ms */
435 .desc
= "dock detect",
443 .debounce_interval
= 5, /* ms */
444 .desc
= "on_off button",
448 static struct gpio_keys_platform_data gpio_keys_platform_data
= {
449 .buttons
= gpio_keys_button
,
450 .nbuttons
= ARRAY_SIZE(gpio_keys_button
),
454 static struct platform_device raumfeld_gpio_keys_device
= {
458 .platform_data
= &gpio_keys_platform_data
,
466 static struct gpio_led raumfeld_leds
[] = {
468 .name
= "raumfeld:1",
471 .default_state
= LEDS_GPIO_DEFSTATE_ON
,
474 .name
= "raumfeld:2",
477 .default_state
= LEDS_GPIO_DEFSTATE_OFF
,
481 static struct gpio_led_platform_data raumfeld_led_platform_data
= {
482 .leds
= raumfeld_leds
,
483 .num_leds
= ARRAY_SIZE(raumfeld_leds
),
486 static struct platform_device raumfeld_led_device
= {
490 .platform_data
= &raumfeld_led_platform_data
,
495 * One-wire (W1 bus) support
498 static void w1_enable_external_pullup(int enable
)
500 gpio_set_value(GPIO_W1_PULLUP_ENABLE
, enable
);
504 static struct w1_gpio_platform_data w1_gpio_platform_data
= {
505 .pin
= GPIO_ONE_WIRE
,
507 .enable_external_pullup
= w1_enable_external_pullup
,
510 struct platform_device raumfeld_w1_gpio_device
= {
513 .platform_data
= &w1_gpio_platform_data
517 static void __init
raumfeld_w1_init(void)
519 int ret
= gpio_request(GPIO_W1_PULLUP_ENABLE
,
520 "W1 external pullup enable");
523 pr_warning("Unable to request GPIO_W1_PULLUP_ENABLE\n");
525 gpio_direction_output(GPIO_W1_PULLUP_ENABLE
, 0);
527 platform_device_register(&raumfeld_w1_gpio_device
);
534 /* PWM controlled backlight */
535 static struct platform_pwm_backlight_data raumfeld_pwm_backlight_data
= {
537 .max_brightness
= 100,
538 .dft_brightness
= 100,
539 /* 10000 ns = 10 ms ^= 100 kHz */
540 .pwm_period_ns
= 10000,
543 static struct platform_device raumfeld_pwm_backlight_device
= {
544 .name
= "pwm-backlight",
546 .parent
= &pxa27x_device_pwm0
.dev
,
547 .platform_data
= &raumfeld_pwm_backlight_data
,
551 /* LT3593 controlled backlight */
552 static struct gpio_led raumfeld_lt3593_led
= {
554 .gpio
= mfp_to_gpio(MFP_PIN_GPIO17
),
555 .default_state
= LEDS_GPIO_DEFSTATE_ON
,
558 static struct gpio_led_platform_data raumfeld_lt3593_platform_data
= {
559 .leds
= &raumfeld_lt3593_led
,
563 static struct platform_device raumfeld_lt3593_device
= {
564 .name
= "leds-lt3593",
567 .platform_data
= &raumfeld_lt3593_platform_data
,
571 static struct pxafb_mode_info sharp_lq043t3dx02_mode
= {
585 static struct pxafb_mach_info raumfeld_sharp_lcd_info
= {
586 .modes
= &sharp_lq043t3dx02_mode
,
588 .video_mem_size
= 0x400000,
589 .lcd_conn
= LCD_COLOR_TFT_16BPP
| LCD_PCLK_EDGE_FALL
,
590 #ifdef CONFIG_PXA3XX_GCU
591 .acceleration_enabled
= 1,
595 static void __init
raumfeld_lcd_init(void)
599 ret
= gpio_request(GPIO_TFT_VA_EN
, "display VA enable");
601 pr_warning("Unable to request GPIO_TFT_VA_EN\n");
603 gpio_direction_output(GPIO_TFT_VA_EN
, 1);
607 ret
= gpio_request(GPIO_DISPLAY_ENABLE
, "display enable");
609 pr_warning("Unable to request GPIO_DISPLAY_ENABLE\n");
611 gpio_direction_output(GPIO_DISPLAY_ENABLE
, 1);
613 /* Hardware revision 2 has the backlight regulator controlled
614 * by an LT3593, earlier and later devices use PWM for that. */
615 if ((system_rev
& 0xff) == 2) {
616 platform_device_register(&raumfeld_lt3593_device
);
618 mfp_cfg_t raumfeld_pwm_pin_config
= GPIO17_PWM0_OUT
;
619 pxa3xx_mfp_config(&raumfeld_pwm_pin_config
, 1);
620 platform_device_register(&raumfeld_pwm_backlight_device
);
623 pxa_set_fb_info(NULL
, &raumfeld_sharp_lcd_info
);
624 platform_device_register(&pxa3xx_device_gcu
);
631 struct spi_gpio_platform_data raumfeld_spi_platform_data
= {
633 .mosi
= GPIO_SPI_MOSI
,
634 .miso
= GPIO_SPI_MISO
,
638 static struct platform_device raumfeld_spi_device
= {
642 .platform_data
= &raumfeld_spi_platform_data
,
646 static struct lis3lv02d_platform_data lis3_pdata
= {
647 .click_flags
= LIS3_CLICK_SINGLE_X
|
648 LIS3_CLICK_SINGLE_Y
|
650 .irq_cfg
= LIS3_IRQ1_CLICK
| LIS3_IRQ2_CLICK
,
651 .wakeup_flags
= LIS3_WAKEUP_X_LO
| LIS3_WAKEUP_X_HI
|
652 LIS3_WAKEUP_Y_LO
| LIS3_WAKEUP_Y_HI
|
653 LIS3_WAKEUP_Z_LO
| LIS3_WAKEUP_Z_HI
,
655 .click_thresh_x
= 10,
656 .click_thresh_y
= 10,
657 .click_thresh_z
= 10,
662 .modalias = "ak4104-codec", \
663 .max_speed_hz = 10000, \
666 .controller_data = (void *) GPIO_SPDIF_CS, \
671 .modalias = "lis3lv02d_spi", \
672 .max_speed_hz = 1000000, \
675 .controller_data = (void *) GPIO_ACCEL_CS, \
676 .platform_data = &lis3_pdata, \
677 .irq = gpio_to_irq(GPIO_ACCEL_IRQ), \
680 #define SPI_DAC7512 \
682 .modalias = "dac7512", \
683 .max_speed_hz = 1000000, \
686 .controller_data = (void *) GPIO_MCLK_DAC_CS, \
689 static struct spi_board_info connector_spi_devices
[] __initdata
= {
694 static struct spi_board_info speaker_spi_devices
[] __initdata
= {
698 static struct spi_board_info controller_spi_devices
[] __initdata
= {
703 * MMC for Marvell Libertas 8688 via SDIO
706 static int raumfeld_mci_init(struct device
*dev
, irq_handler_t isr
, void *data
)
708 gpio_set_value(GPIO_W2W_RESET
, 1);
709 gpio_set_value(GPIO_W2W_PDN
, 1);
714 static void raumfeld_mci_exit(struct device
*dev
, void *data
)
716 gpio_set_value(GPIO_W2W_RESET
, 0);
717 gpio_set_value(GPIO_W2W_PDN
, 0);
720 static struct pxamci_platform_data raumfeld_mci_platform_data
= {
721 .init
= raumfeld_mci_init
,
722 .exit
= raumfeld_mci_exit
,
723 .detect_delay_ms
= 200,
724 .gpio_card_detect
= -1,
730 * External power / charge logic
733 static int power_supply_init(struct device
*dev
)
738 static void power_supply_exit(struct device
*dev
)
742 static int raumfeld_is_ac_online(void)
744 return !gpio_get_value(GPIO_CHARGE_DC_OK
);
747 static int raumfeld_is_usb_online(void)
752 static char *raumfeld_power_supplicants
[] = { "ds2760-battery.0" };
754 static void raumfeld_power_signal_charged(void)
756 struct power_supply
*psy
=
757 power_supply_get_by_name(raumfeld_power_supplicants
[0]);
760 power_supply_set_battery_charged(psy
);
763 static int raumfeld_power_resume(void)
765 /* check if GPIO_CHARGE_DONE went low while we were sleeping */
766 if (!gpio_get_value(GPIO_CHARGE_DONE
))
767 raumfeld_power_signal_charged();
772 static struct pda_power_pdata power_supply_info
= {
773 .init
= power_supply_init
,
774 .is_ac_online
= raumfeld_is_ac_online
,
775 .is_usb_online
= raumfeld_is_usb_online
,
776 .exit
= power_supply_exit
,
777 .supplied_to
= raumfeld_power_supplicants
,
778 .num_supplicants
= ARRAY_SIZE(raumfeld_power_supplicants
),
779 .resume
= raumfeld_power_resume
,
782 static struct resource power_supply_resources
[] = {
785 .flags
= IORESOURCE_IRQ
|
786 IORESOURCE_IRQ_HIGHEDGE
| IORESOURCE_IRQ_LOWEDGE
,
787 .start
= GPIO_CHARGE_DC_OK
,
788 .end
= GPIO_CHARGE_DC_OK
,
792 static irqreturn_t
charge_done_irq(int irq
, void *dev_id
)
794 raumfeld_power_signal_charged();
798 static struct platform_device raumfeld_power_supply
= {
802 .platform_data
= &power_supply_info
,
804 .resource
= power_supply_resources
,
805 .num_resources
= ARRAY_SIZE(power_supply_resources
),
808 static void __init
raumfeld_power_init(void)
812 /* Set PEN2 high to enable maximum charge current */
813 ret
= gpio_request(GPIO_CHRG_PEN2
, "CHRG_PEN2");
815 pr_warning("Unable to request GPIO_CHRG_PEN2\n");
817 gpio_direction_output(GPIO_CHRG_PEN2
, 1);
819 ret
= gpio_request(GPIO_CHARGE_DC_OK
, "CABLE_DC_OK");
821 pr_warning("Unable to request GPIO_CHARGE_DC_OK\n");
823 ret
= gpio_request(GPIO_CHARGE_USB_SUSP
, "CHARGE_USB_SUSP");
825 pr_warning("Unable to request GPIO_CHARGE_USB_SUSP\n");
827 gpio_direction_output(GPIO_CHARGE_USB_SUSP
, 0);
829 power_supply_resources
[0].start
= gpio_to_irq(GPIO_CHARGE_DC_OK
);
830 power_supply_resources
[0].end
= gpio_to_irq(GPIO_CHARGE_DC_OK
);
832 ret
= request_irq(gpio_to_irq(GPIO_CHARGE_DONE
),
833 &charge_done_irq
, IORESOURCE_IRQ_LOWEDGE
,
834 "charge_done", NULL
);
837 printk(KERN_ERR
"%s: unable to register irq %d\n", __func__
,
840 platform_device_register(&raumfeld_power_supply
);
843 /* Fixed regulator for AUDIO_VA, 0-0048 maps to the cs4270 codec device */
845 static struct regulator_consumer_supply audio_va_consumer_supply
=
846 REGULATOR_SUPPLY("va", "0-0048");
848 struct regulator_init_data audio_va_initdata
= {
849 .consumer_supplies
= &audio_va_consumer_supply
,
850 .num_consumer_supplies
= 1,
852 .valid_ops_mask
= REGULATOR_CHANGE_STATUS
,
856 static struct fixed_voltage_config audio_va_config
= {
857 .supply_name
= "audio_va",
858 .microvolts
= 5000000,
859 .gpio
= GPIO_AUDIO_VA_ENABLE
,
861 .enabled_at_boot
= 0,
862 .init_data
= &audio_va_initdata
,
865 static struct platform_device audio_va_device
= {
866 .name
= "reg-fixed-voltage",
869 .platform_data
= &audio_va_config
,
873 /* Dummy supplies for Codec's VD/VLC */
875 static struct regulator_consumer_supply audio_dummy_supplies
[] = {
876 REGULATOR_SUPPLY("vd", "0-0048"),
877 REGULATOR_SUPPLY("vlc", "0-0048"),
880 struct regulator_init_data audio_dummy_initdata
= {
881 .consumer_supplies
= audio_dummy_supplies
,
882 .num_consumer_supplies
= ARRAY_SIZE(audio_dummy_supplies
),
884 .valid_ops_mask
= REGULATOR_CHANGE_STATUS
,
888 static struct fixed_voltage_config audio_dummy_config
= {
889 .supply_name
= "audio_vd",
890 .microvolts
= 3300000,
892 .init_data
= &audio_dummy_initdata
,
895 static struct platform_device audio_supply_dummy_device
= {
896 .name
= "reg-fixed-voltage",
899 .platform_data
= &audio_dummy_config
,
903 static struct platform_device
*audio_regulator_devices
[] = {
905 &audio_supply_dummy_device
,
909 * Regulator support via MAX8660
912 static struct regulator_consumer_supply vcc_mmc_supply
=
913 REGULATOR_SUPPLY("vmmc", "pxa2xx-mci.0");
915 static struct regulator_init_data vcc_mmc_init_data
= {
919 .valid_modes_mask
= REGULATOR_MODE_NORMAL
,
920 .valid_ops_mask
= REGULATOR_CHANGE_STATUS
|
921 REGULATOR_CHANGE_VOLTAGE
|
922 REGULATOR_CHANGE_MODE
,
924 .consumer_supplies
= &vcc_mmc_supply
,
925 .num_consumer_supplies
= 1,
928 struct max8660_subdev_data max8660_v6_subdev_data
= {
931 .platform_data
= &vcc_mmc_init_data
,
934 static struct max8660_platform_data max8660_pdata
= {
935 .subdevs
= &max8660_v6_subdev_data
,
943 static struct i2c_board_info raumfeld_pwri2c_board_info
= {
946 .platform_data
= &max8660_pdata
,
949 static struct i2c_board_info raumfeld_connector_i2c_board_info __initdata
= {
954 static struct eeti_ts_platform_data eeti_ts_pdata
= {
955 .irq_active_high
= 1,
958 static struct i2c_board_info raumfeld_controller_i2c_board_info __initdata
= {
961 .irq
= gpio_to_irq(GPIO_TOUCH_IRQ
),
962 .platform_data
= &eeti_ts_pdata
,
965 static struct platform_device
*raumfeld_common_devices
[] = {
966 &raumfeld_gpio_keys_device
,
967 &raumfeld_led_device
,
968 &raumfeld_spi_device
,
971 static void __init
raumfeld_audio_init(void)
975 ret
= gpio_request(GPIO_CODEC_RESET
, "cs4270 reset");
977 pr_warning("unable to request GPIO_CODEC_RESET\n");
979 gpio_direction_output(GPIO_CODEC_RESET
, 1);
981 ret
= gpio_request(GPIO_SPDIF_RESET
, "ak4104 s/pdif reset");
983 pr_warning("unable to request GPIO_SPDIF_RESET\n");
985 gpio_direction_output(GPIO_SPDIF_RESET
, 1);
987 ret
= gpio_request(GPIO_MCLK_RESET
, "MCLK reset");
989 pr_warning("unable to request GPIO_MCLK_RESET\n");
991 gpio_direction_output(GPIO_MCLK_RESET
, 1);
993 platform_add_devices(ARRAY_AND_SIZE(audio_regulator_devices
));
996 static void __init
raumfeld_common_init(void)
1000 /* The on/off button polarity has changed after revision 1 */
1001 if ((system_rev
& 0xff) > 1) {
1004 for (i
= 0; i
< ARRAY_SIZE(gpio_keys_button
); i
++)
1005 if (!strcmp(gpio_keys_button
[i
].desc
, "on_off button"))
1006 gpio_keys_button
[i
].active_low
= 1;
1009 enable_irq_wake(IRQ_WAKEUP0
);
1011 pxa3xx_set_nand_info(&raumfeld_nand_info
);
1012 pxa3xx_set_i2c_power_info(NULL
);
1013 pxa_set_ohci_info(&raumfeld_ohci_info
);
1014 pxa_set_mci_info(&raumfeld_mci_platform_data
);
1015 pxa_set_i2c_info(NULL
);
1016 pxa_set_ffuart_info(NULL
);
1018 ret
= gpio_request(GPIO_W2W_RESET
, "Wi2Wi reset");
1020 pr_warning("Unable to request GPIO_W2W_RESET\n");
1022 gpio_direction_output(GPIO_W2W_RESET
, 0);
1024 ret
= gpio_request(GPIO_W2W_PDN
, "Wi2Wi powerup");
1026 pr_warning("Unable to request GPIO_W2W_PDN\n");
1028 gpio_direction_output(GPIO_W2W_PDN
, 0);
1030 /* this can be used to switch off the device */
1031 ret
= gpio_request(GPIO_SHUTDOWN_SUPPLY
, "supply shutdown");
1033 pr_warning("Unable to request GPIO_SHUTDOWN_SUPPLY\n");
1035 gpio_direction_output(GPIO_SHUTDOWN_SUPPLY
, 0);
1037 platform_add_devices(ARRAY_AND_SIZE(raumfeld_common_devices
));
1038 i2c_register_board_info(1, &raumfeld_pwri2c_board_info
, 1);
1041 static void __init
raumfeld_controller_init(void)
1045 pxa3xx_mfp_config(ARRAY_AND_SIZE(raumfeld_controller_pin_config
));
1046 platform_device_register(&rotary_encoder_device
);
1047 spi_register_board_info(ARRAY_AND_SIZE(controller_spi_devices
));
1048 i2c_register_board_info(0, &raumfeld_controller_i2c_board_info
, 1);
1050 ret
= gpio_request(GPIO_SHUTDOWN_BATT
, "battery shutdown");
1052 pr_warning("Unable to request GPIO_SHUTDOWN_BATT\n");
1054 gpio_direction_output(GPIO_SHUTDOWN_BATT
, 0);
1056 raumfeld_common_init();
1057 raumfeld_power_init();
1058 raumfeld_lcd_init();
1062 static void __init
raumfeld_connector_init(void)
1064 pxa3xx_mfp_config(ARRAY_AND_SIZE(raumfeld_connector_pin_config
));
1065 spi_register_board_info(ARRAY_AND_SIZE(connector_spi_devices
));
1066 i2c_register_board_info(0, &raumfeld_connector_i2c_board_info
, 1);
1068 platform_device_register(&smc91x_device
);
1070 raumfeld_audio_init();
1071 raumfeld_common_init();
1074 static void __init
raumfeld_speaker_init(void)
1076 pxa3xx_mfp_config(ARRAY_AND_SIZE(raumfeld_speaker_pin_config
));
1077 spi_register_board_info(ARRAY_AND_SIZE(speaker_spi_devices
));
1078 i2c_register_board_info(0, &raumfeld_connector_i2c_board_info
, 1);
1080 platform_device_register(&smc91x_device
);
1081 platform_device_register(&rotary_encoder_device
);
1083 raumfeld_audio_init();
1084 raumfeld_common_init();
1087 /* physical memory regions */
1088 #define RAUMFELD_SDRAM_BASE 0xa0000000 /* SDRAM region */
1090 #ifdef CONFIG_MACH_RAUMFELD_RC
1091 MACHINE_START(RAUMFELD_RC
, "Raumfeld Controller")
1092 .boot_params
= RAUMFELD_SDRAM_BASE
+ 0x100,
1093 .init_machine
= raumfeld_controller_init
,
1094 .map_io
= pxa3xx_map_io
,
1095 .init_irq
= pxa3xx_init_irq
,
1096 .timer
= &pxa_timer
,
1100 #ifdef CONFIG_MACH_RAUMFELD_CONNECTOR
1101 MACHINE_START(RAUMFELD_CONNECTOR
, "Raumfeld Connector")
1102 .boot_params
= RAUMFELD_SDRAM_BASE
+ 0x100,
1103 .init_machine
= raumfeld_connector_init
,
1104 .map_io
= pxa3xx_map_io
,
1105 .init_irq
= pxa3xx_init_irq
,
1106 .timer
= &pxa_timer
,
1110 #ifdef CONFIG_MACH_RAUMFELD_SPEAKER
1111 MACHINE_START(RAUMFELD_SPEAKER
, "Raumfeld Speaker")
1112 .boot_params
= RAUMFELD_SDRAM_BASE
+ 0x100,
1113 .init_machine
= raumfeld_speaker_init
,
1114 .map_io
= pxa3xx_map_io
,
1115 .init_irq
= pxa3xx_init_irq
,
1116 .timer
= &pxa_timer
,