2 * linux/arch/arm/mach-s3c2440/mach-gta02.c
4 * S3C2440 Machine Support for the FIC GTA02 (Neo1973)
6 * Copyright (C) 2006-2007 by Openmoko, Inc.
7 * Author: Harald Welte <laforge@openmoko.org>
10 * This program is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU General Public License as
12 * published by the Free Software Foundation; either version 2 of
13 * the License, or (at your option) any later version.
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
27 #include <linux/kernel.h>
28 #include <linux/types.h>
29 #include <linux/interrupt.h>
30 #include <linux/list.h>
31 #include <linux/delay.h>
32 #include <linux/timer.h>
33 #include <linux/init.h>
34 #include <linux/workqueue.h>
35 #include <linux/platform_device.h>
36 #include <linux/serial_core.h>
37 #include <linux/spi/spi.h>
38 #include <linux/spi/glamo.h>
39 #include <linux/spi/spi_bitbang.h>
40 #include <linux/mmc/host.h>
42 #include <linux/mtd/mtd.h>
43 #include <linux/mtd/nand.h>
44 #include <linux/mtd/nand_ecc.h>
45 #include <linux/mtd/partitions.h>
46 #include <linux/mtd/physmap.h>
48 #include <linux/i2c.h>
49 #include <linux/backlight.h>
50 #include <linux/regulator/machine.h>
52 #include <linux/mfd/pcf50633/core.h>
53 #include <linux/mfd/pcf50633/mbc.h>
54 #include <linux/mfd/pcf50633/adc.h>
55 #include <linux/mfd/pcf50633/gpio.h>
56 #include <linux/mfd/pcf50633/pmic.h>
58 #include <linux/lis302dl.h>
60 #include <asm/mach/arch.h>
61 #include <asm/mach/map.h>
62 #include <asm/mach/irq.h>
64 #include <mach/hardware.h>
67 #include <asm/mach-types.h>
69 #include <mach/regs-irq.h>
70 #include <mach/regs-gpio.h>
71 #include <mach/regs-gpioj.h>
76 #include <mach/spi-gpio.h>
77 #include <mach/regs-mem.h>
78 #include <mach/spi-gpio.h>
82 #include <mach/gta02.h>
84 #include <plat/regs-serial.h>
85 #include <plat/nand.h>
86 #include <plat/devs.h>
91 #include <plat/usb-control.h>
92 #include <asm/plat-s3c24xx/neo1973.h>
93 #include <mach/neo1973-pm-gsm.h>
94 #include <mach/gta02-pm-wlan.h>
95 #include <plat/regs-timer.h>
97 #include <linux/jbt6k74.h>
99 #include <linux/glamofb.h>
101 #include <linux/hdq.h>
102 #include <linux/bq27000_battery.h>
103 #include <linux/gta01_battery.h>
105 #include "../plat-s3c24xx/neo1973_pm_gps.h"
107 #include <../drivers/input/touchscreen/ts_filter_chain.h>
108 #ifdef CONFIG_TOUCHSCREEN_FILTER
109 #include <../drivers/input/touchscreen/ts_filter_linear.h>
110 #include <../drivers/input/touchscreen/ts_filter_mean.h>
111 #include <../drivers/input/touchscreen/ts_filter_median.h>
112 #include <../drivers/input/touchscreen/ts_filter_group.h>
117 #include <linux/neo1973_vibrator.h>
119 /* arbitrates which sensor IRQ owns the shared SPI bus */
120 static spinlock_t motion_irq_lock;
123 /* -------------------------------------------------------------------------------
126 * Calls into vibrator and hdq and based on the return values
127 * determines if we the FIQ source be kept alive
130 #define DIVISOR_FROM_US(x) ((x) << 3)
132 #ifdef CONFIG_HDQ_GPIO_BITBANG
133 #define FIQ_DIVISOR_HDQ DIVISOR_FROM_US(HDQ_SAMPLE_PERIOD_US)
134 extern int hdq_fiq_handler(void);
137 #ifdef CONFIG_LEDS_NEO1973_VIBRATOR
138 #define FIQ_DIVISOR_VIBRATOR DIVISOR_FROM_US(100)
139 extern int neo1973_vibrator_fiq_handler(void);
142 /* Global data related to our fiq source */
143 static u32 gta02_fiq_ack_mask;
144 static struct s3c2410_pwm gta02_fiq_pwm_timer;
145 static u16 gta02_fiq_timer_index;
146 static int gta02_fiq_irq;
148 static void gta02_fiq_handler(void)
150 u16 divisor = 0xffff;
152 /* Vibrator servicing */
154 /* disable further timer interrupts if nobody has any work
155 * or adjust rate according to who still has work
157 * CAUTION: it means forground code must disable FIQ around
158 * its own non-atomic S3C2410_INTMSK changes... not common
159 * thankfully and taken care of by the fiq-basis patch
162 #ifdef CONFIG_LEDS_NEO1973_VIBRATOR
163 if (neo1973_vibrator_fiq_handler())
164 divisor = FIQ_DIVISOR_VIBRATOR;
167 #ifdef CONFIG_HDQ_GPIO_BITBANG
168 if (hdq_fiq_handler())
169 divisor = FIQ_DIVISOR_HDQ;
172 if (divisor == 0xffff) /* mask the fiq irq source */
173 __raw_writel(__raw_readl(S3C2410_INTMSK) | gta02_fiq_ack_mask,
175 else /* still working, maybe at a different rate */
176 __raw_writel(divisor, S3C2410_TCNTB(gta02_fiq_timer_index));
178 __raw_writel(gta02_fiq_ack_mask, S3C2410_SRCPND);
181 static void gta02_fiq_kick(void)
186 /* we have to take care about FIQ because this modification is
187 * non-atomic, FIQ could come in after the read and before the
188 * writeback and its changes to the register would be lost
189 * (platform INTMSK mod code is taken care of already)
191 local_save_flags(flags);
193 /* allow FIQs to resume */
194 __raw_writel(__raw_readl(S3C2410_INTMSK) &
195 ~(1 << (gta02_fiq_irq - S3C2410_CPUIRQ_OFFSET)),
197 tcon = __raw_readl(S3C2410_TCON) & ~S3C2410_TCON_T3START;
198 /* fake the timer to a count of 1 */
199 __raw_writel(1, S3C2410_TCNTB(gta02_fiq_timer_index));
200 __raw_writel(tcon | S3C2410_TCON_T3MANUALUPD, S3C2410_TCON);
201 __raw_writel(tcon | S3C2410_TCON_T3MANUALUPD | S3C2410_TCON_T3START,
203 __raw_writel(tcon | S3C2410_TCON_T3START, S3C2410_TCON);
204 local_irq_restore(flags);
207 static int gta02_fiq_enable(void)
209 int irq_index_fiq = IRQ_TIMER3;
214 gta02_fiq_irq = irq_index_fiq;
215 gta02_fiq_ack_mask = 1 << (irq_index_fiq - S3C2410_CPUIRQ_OFFSET);
216 gta02_fiq_timer_index = (irq_index_fiq - IRQ_TIMER0);
218 /* set up the timer to operate as a pwm device */
220 rc = s3c2410_pwm_init(>a02_fiq_pwm_timer);
224 gta02_fiq_pwm_timer.timerid = PWM0 + gta02_fiq_timer_index;
225 gta02_fiq_pwm_timer.prescaler = (6 - 1) / 2;
226 gta02_fiq_pwm_timer.divider = S3C2410_TCFG1_MUX3_DIV2;
227 /* default rate == ~32us */
228 gta02_fiq_pwm_timer.counter = gta02_fiq_pwm_timer.comparer = 3000;
230 rc = s3c2410_pwm_enable(>a02_fiq_pwm_timer);
234 s3c2410_pwm_start(>a02_fiq_pwm_timer);
236 /* let our selected interrupt be a magic FIQ interrupt */
237 __raw_writel(gta02_fiq_ack_mask, S3C2410_INTMOD);
239 /* it's ready to go as soon as we unmask the source in S3C2410_INTMSK */
242 set_fiq_c_handler(gta02_fiq_handler);
247 printk(KERN_ERR "Could not initialize FIQ for GTA02: %d\n", rc);
252 static void gta02_fiq_disable(void)
254 __raw_writel(0, S3C2410_INTMOD);
256 gta02_fiq_irq = 0; /* no active source interrupt now either */
259 /* -------------------- /GTA02 FIQ Handler ------------------------------------- */
262 * this gets called every 1ms when we paniced.
265 static long gta02_panic_blink(long count)
268 static long last_blink;
271 if (count - last_blink < 100) /* 200ms period, fast blink */
275 s3c2410_gpio_cfgpin(GTA02_GPIO_AUX_LED, S3C2410_GPIO_OUTPUT);
276 neo1973_gpb_setpin(GTA02_GPIO_AUX_LED, led);
284 * returns PCB revision information in b9,b8 and b2,b1,b0
285 * Pre-GTA02 A6 returns 0x000
286 * GTA02 A6 returns 0x101
290 int gta02_get_pcb_revision(void)
294 static unsigned long pinlist[] = {
301 static int pin_offset[] = {
305 for (n = 0 ; n < ARRAY_SIZE(pinlist); n++) {
307 * set the PCB version GPIO to be pulled-down input
308 * force low briefly first
310 s3c2410_gpio_cfgpin(pinlist[n], S3C2410_GPIO_OUTPUT);
311 s3c2410_gpio_setpin(pinlist[n], 0);
312 /* misnomer: it is a pullDOWN in 2442 */
313 s3c2410_gpio_pullup(pinlist[n], 1);
314 s3c2410_gpio_cfgpin(pinlist[n], S3C2410_GPIO_INPUT);
318 if (s3c2410_gpio_getpin(pinlist[n]))
319 u |= 1 << pin_offset[n];
322 * when not being interrogated, all of the revision GPIO
323 * are set to output HIGH without pulldown so no current flows
324 * if they are NC or pulled up.
326 s3c2410_gpio_setpin(pinlist[n], 1);
327 s3c2410_gpio_cfgpin(pinlist[n], S3C2410_GPIO_OUTPUT);
328 /* misnomer: it is a pullDOWN in 2442 */
329 s3c2410_gpio_pullup(pinlist[n], 0);
335 struct platform_device gta02_version_device = {
336 .name = "neo1973-version",
340 struct platform_device gta02_resume_reason_device = {
341 .name = "neo1973-resume",
345 struct platform_device gta02_memconfig_device = {
346 .name = "neo1973-memconfig",
350 static struct map_desc gta02_iodesc[] __initdata = {
352 .virtual = 0xe0000000,
353 .pfn = __phys_to_pfn(S3C2410_CS3+0x01000000),
359 #define UCON (S3C2410_UCON_DEFAULT | S3C2443_UCON_RXERR_IRQEN)
360 #define ULCON S3C2410_LCON_CS8 | S3C2410_LCON_PNONE | S3C2410_LCON_STOPB
361 #define UFCON S3C2410_UFCON_RXTRIG8 | S3C2410_UFCON_FIFOMODE
363 static struct s3c2410_uartcfg gta02_uartcfgs[] = {
388 struct pcf50633 *gta02_pcf;
390 #ifdef CONFIG_CHARGER_PCF50633
391 static int gta02_get_charger_online_status(void)
393 struct pcf50633 *pcf = gta02_pcf;
395 return pcf50633_mbc_get_usb_online_status(pcf);
398 static int gta02_get_charger_active_status(void)
400 struct pcf50633 *pcf = gta02_pcf;
402 return pcf50633_mbc_get_status(pcf) & PCF50633_MBC_USB_ACTIVE;
405 #define ADC_NOM_CHG_DETECT_1A 6
406 #define ADC_NOM_CHG_DETECT_USB 43
409 gta02_configure_pmu_for_charger(struct pcf50633 *pcf, void *unused, int res)
413 /* Interpret charger type */
414 if (res < ((ADC_NOM_CHG_DETECT_USB + ADC_NOM_CHG_DETECT_1A) / 2)) {
416 /* Stop GPO driving out now that we have a IA charger */
417 pcf50633_gpio_set(pcf, PCF50633_GPO, 0);
423 pcf50633_mbc_usb_curlim_set(pcf, ma);
426 static struct delayed_work gta02_charger_work;
427 static int gta02_usb_vbus_draw;
429 static void gta02_charger_worker(struct work_struct *work)
431 struct pcf50633 *pcf = gta02_pcf;
433 if (gta02_usb_vbus_draw) {
434 pcf50633_mbc_usb_curlim_set(pcf, gta02_usb_vbus_draw);
437 #ifdef CONFIG_PCF50633_ADC
438 pcf50633_adc_async_read(pcf,
439 PCF50633_ADCC1_MUX_ADCIN1,
440 PCF50633_ADCC1_AVERAGE_16,
441 gta02_configure_pmu_for_charger, NULL);
443 /* If the PCF50633 ADC is disabled we fallback to a 100mA limit for safety. */
444 pcf50633_mbc_usb_curlim_set(pcf, 100);
450 #define GTA02_CHARGER_CONFIGURE_TIMEOUT ((3000 * HZ) / 1000)
451 static void gta02_pmu_event_callback(struct pcf50633 *pcf, int irq)
453 if (irq == PCF50633_IRQ_USBINS) {
454 schedule_delayed_work(>a02_charger_work,
455 GTA02_CHARGER_CONFIGURE_TIMEOUT);
457 } else if (irq == PCF50633_IRQ_USBREM) {
458 cancel_delayed_work_sync(>a02_charger_work);
459 gta02_usb_vbus_draw = 0;
463 static void gta02_pmu_force_shutdown(struct pcf50633 *pcf)
465 pcf50633_reg_set_bit_mask(pcf, PCF50633_REG_OOCSHDWN,
466 PCF50633_OOCSHDWN_GOSTDBY, PCF50633_OOCSHDWN_GOSTDBY);
470 static void gta02_udc_vbus_draw(unsigned int ma)
475 gta02_usb_vbus_draw = ma;
477 schedule_delayed_work(>a02_charger_work,
478 GTA02_CHARGER_CONFIGURE_TIMEOUT);
481 static int gta02_udc_vbus_status(void)
483 struct pcf50633 *pcf = gta02_pcf;
488 return pcf50633_mbc_get_usb_online_status(pcf);
490 #else /* !CONFIG_CHARGER_PCF50633 */
491 #define gta02_get_charger_online_status NULL
492 #define gta02_get_charger_active_status NULL
493 #define gta02_pmu_event_callback NULL
494 #define gta02_pmu_force_shutdown NULL
495 #define gta02_udc_vbus_draw NULL
496 #define gta02_udc_vbus_status NULL
499 static struct platform_device gta01_pm_gps_dev = {
500 .name = "neo1973-pm-gps",
503 static struct platform_device gta01_pm_bt_dev = {
504 .name = "neo1973-pm-bt",
507 static struct platform_device gta02_pm_gsm_dev = {
508 .name = "neo1973-pm-gsm",
511 /* this is called when pc50633 is probed, unfortunately quite late in the
512 * day since it is an I2C bus device. Here we can belatedly define some
513 * platform devices with the advantage that we can mark the pcf50633 as the
514 * parent. This makes them get suspended and resumed with their parent
515 * the pcf50633 still around.
518 static struct platform_device gta02_glamo_dev;
519 static void mangle_glamo_res_by_system_rev(void);
521 static void gta02_pmu_attach_child_devices(struct pcf50633 *pcf);
522 static void gta02_pmu_regulator_registered(struct pcf50633 *pcf, int id);
524 static struct platform_device gta02_pm_wlan_dev = {
525 .name = "gta02-pm-wlan",
528 static struct regulator_consumer_supply ldo4_consumers[] = {
530 .dev = >a01_pm_bt_dev.dev,
535 static struct regulator_consumer_supply ldo5_consumers[] = {
537 .dev = >a01_pm_gps_dev.dev,
543 * We need this dummy thing to fill the regulator consumers
545 static struct platform_device gta02_mmc_dev = {
546 /* details filled in by glamo core */
549 static struct regulator_consumer_supply hcldo_consumers[] = {
551 .dev = >a02_mmc_dev.dev,
556 static char *gta02_batteries[] = {
560 struct pcf50633_platform_data gta02_pcf_pdata = {
562 [0] = PCF50633_INT1_USBINS |
563 PCF50633_INT1_USBREM |
565 [1] = PCF50633_INT2_ONKEYF,
566 [2] = PCF50633_INT3_ONKEY1S,
567 [3] = PCF50633_INT4_LOWSYS |
568 PCF50633_INT4_LOWBAT |
569 PCF50633_INT4_HIGHTMP,
572 .batteries = gta02_batteries,
573 .num_batteries = ARRAY_SIZE(gta02_batteries),
574 .chg_ref_current_ma = 1000,
577 [PCF50633_REGULATOR_AUTO] = {
582 .valid_modes_mask = REGULATOR_MODE_NORMAL,
589 .num_consumer_supplies = 0,
591 [PCF50633_REGULATOR_DOWN1] = {
596 .valid_modes_mask = REGULATOR_MODE_NORMAL,
600 .num_consumer_supplies = 0,
602 [PCF50633_REGULATOR_DOWN2] = {
607 .valid_modes_mask = REGULATOR_MODE_NORMAL,
614 .num_consumer_supplies = 0,
616 [PCF50633_REGULATOR_HCLDO] = {
621 .valid_modes_mask = REGULATOR_MODE_NORMAL,
622 .valid_ops_mask = REGULATOR_CHANGE_VOLTAGE,
625 .num_consumer_supplies = 1,
626 .consumer_supplies = hcldo_consumers,
628 [PCF50633_REGULATOR_LDO1] = {
630 .name = "GSENSOR_3V3",
633 .valid_modes_mask = REGULATOR_MODE_NORMAL,
636 .num_consumer_supplies = 0,
638 [PCF50633_REGULATOR_LDO2] = {
643 .valid_modes_mask = REGULATOR_MODE_NORMAL,
646 .num_consumer_supplies = 0,
648 [PCF50633_REGULATOR_LDO3] = {
652 .valid_modes_mask = REGULATOR_MODE_NORMAL,
655 .num_consumer_supplies = 0,
657 [PCF50633_REGULATOR_LDO4] = {
662 .valid_modes_mask = REGULATOR_MODE_NORMAL,
665 .num_consumer_supplies = 1,
666 .consumer_supplies = ldo4_consumers,
668 [PCF50633_REGULATOR_LDO5] = {
673 .valid_modes_mask = REGULATOR_MODE_NORMAL,
679 .num_consumer_supplies = 1,
680 .consumer_supplies = ldo5_consumers,
682 [PCF50633_REGULATOR_LDO6] = {
687 .valid_modes_mask = REGULATOR_MODE_NORMAL,
689 .num_consumer_supplies = 0,
691 [PCF50633_REGULATOR_MEMLDO] = {
695 .valid_modes_mask = REGULATOR_MODE_NORMAL,
700 .num_consumer_supplies = 0,
704 .probe_done = gta02_pmu_attach_child_devices,
705 .regulator_registered = gta02_pmu_regulator_registered,
706 .mbc_event_callback = gta02_pmu_event_callback,
707 .force_shutdown = gta02_pmu_force_shutdown,
710 static void mangle_pmu_pdata_by_system_rev(void)
712 struct regulator_init_data *reg_init_data;
714 reg_init_data = gta02_pcf_pdata.reg_init_data;
716 switch (S3C_SYSTEM_REV_ATAG) {
717 case GTA02v1_SYSTEM_REV:
718 /* FIXME: this is only in v1 due to wrong PMU variant */
719 reg_init_data[PCF50633_REGULATOR_DOWN2]
720 .constraints.state_mem.enabled = 1;
722 case GTA02v2_SYSTEM_REV:
723 case GTA02v3_SYSTEM_REV:
724 case GTA02v4_SYSTEM_REV:
725 case GTA02v5_SYSTEM_REV:
726 case GTA02v6_SYSTEM_REV:
727 reg_init_data[PCF50633_REGULATOR_LDO1]
728 .constraints.min_uV = 3300000;
729 reg_init_data[PCF50633_REGULATOR_LDO1]
730 .constraints.min_uV = 3300000;
731 reg_init_data[PCF50633_REGULATOR_LDO1]
732 .constraints.state_mem.enabled = 0;
734 reg_init_data[PCF50633_REGULATOR_LDO5]
735 .constraints.min_uV = 3000000;
736 reg_init_data[PCF50633_REGULATOR_LDO5]
737 .constraints.max_uV = 3000000;
739 reg_init_data[PCF50633_REGULATOR_LDO6]
740 .constraints.min_uV = 3000000;
741 reg_init_data[PCF50633_REGULATOR_LDO6]
742 .constraints.max_uV = 3000000;
743 reg_init_data[PCF50633_REGULATOR_LDO6]
744 .constraints.apply_uV = 1;
751 static int gta02_bat_get_voltage(void)
753 struct pcf50633 *pcf = gta02_pcf;
755 adc = pcf50633_adc_sync_read(pcf,
756 PCF50633_ADCC1_MUX_BATSNS_RES,
757 PCF50633_ADCC1_AVERAGE_16);
758 /* The formula from DS is for divide-by-two mode, current driver uses
760 mv = (adc * 6000) / 1023;
764 static struct gta01_bat_platform_data gta01_bat_pdata = {
765 #ifdef CONFIG_CHARGER_PCF50633
766 .get_charging_status = gta02_get_charger_active_status,
768 .get_voltage = gta02_bat_get_voltage,
771 struct platform_device gta01_bat = {
772 .name = "gta01_battery",
775 .platform_data = >a01_bat_pdata,
779 #ifdef CONFIG_HDQ_GPIO_BITBANG
780 /* BQ27000 Battery */
782 struct bq27000_platform_data bq27000_pdata = {
785 .hdq_read = hdq_read,
786 .hdq_write = hdq_write,
787 .hdq_initialized = hdq_initialized,
788 .get_charger_online_status = gta02_get_charger_online_status,
789 .get_charger_active_status = gta02_get_charger_active_status
792 struct platform_device bq27000_battery_device = {
793 .name = "bq27000-battery",
795 .platform_data = &bq27000_pdata,
801 static void gta02_hdq_attach_child_devices(struct device *parent_device)
803 switch (S3C_SYSTEM_REV_ATAG) {
804 case GTA02v5_SYSTEM_REV:
805 case GTA02v6_SYSTEM_REV:
806 bq27000_battery_device.dev.parent = parent_device;
807 platform_device_register(&bq27000_battery_device);
814 static void gta02_hdq_gpio_direction_out(void)
816 s3c2410_gpio_cfgpin(GTA02v5_GPIO_HDQ, S3C2410_GPIO_OUTPUT);
819 static void gta02_hdq_gpio_direction_in(void)
821 s3c2410_gpio_cfgpin(GTA02v5_GPIO_HDQ, S3C2410_GPIO_INPUT);
824 static void gta02_hdq_gpio_set_value(int val)
827 s3c2410_gpio_setpin(GTA02v5_GPIO_HDQ, val);
830 static int gta02_hdq_gpio_get_value(void)
832 return s3c2410_gpio_getpin(GTA02v5_GPIO_HDQ);
835 static struct resource gta02_hdq_resources[] = {
837 .start = GTA02v5_GPIO_HDQ,
838 .end = GTA02v5_GPIO_HDQ,
842 struct hdq_platform_data gta02_hdq_platform_data = {
843 .attach_child_devices = gta02_hdq_attach_child_devices,
844 .gpio_dir_out = gta02_hdq_gpio_direction_out,
845 .gpio_dir_in = gta02_hdq_gpio_direction_in,
846 .gpio_set = gta02_hdq_gpio_set_value,
847 .gpio_get = gta02_hdq_gpio_get_value,
849 .enable_fiq = gta02_fiq_enable,
850 .disable_fiq = gta02_fiq_disable,
851 .kick_fiq = gta02_fiq_kick,
855 struct platform_device gta02_hdq_device = {
858 .resource = gta02_hdq_resources,
860 .platform_data = >a02_hdq_platform_data,
866 #ifdef CONFIG_LEDS_NEO1973_VIBRATOR
867 /* vibrator (child of FIQ) */
869 static struct resource gta02_vibrator_resources[] = {
871 .start = GTA02_GPIO_VIBRATOR_ON,
872 .end = GTA02_GPIO_VIBRATOR_ON,
875 struct neo1973_vib_platform_data gta02_vib_pdata = {
876 .enable_fiq = gta02_fiq_enable,
877 .disable_fiq = gta02_fiq_disable,
878 .kick_fiq = gta02_fiq_kick,
881 static struct platform_device gta02_vibrator_dev = {
882 .name = "neo1973-vibrator",
883 .num_resources = ARRAY_SIZE(gta02_vibrator_resources),
884 .resource = gta02_vibrator_resources,
886 .platform_data = >a02_vib_pdata,
893 #define GTA02_FLASH_BASE 0x18000000 /* GCS3 */
894 #define GTA02_FLASH_SIZE 0x200000 /* 2MBytes */
896 static struct physmap_flash_data gta02_nor_flash_data = {
900 static struct resource gta02_nor_flash_resource = {
901 .start = GTA02_FLASH_BASE,
902 .end = GTA02_FLASH_BASE + GTA02_FLASH_SIZE - 1,
903 .flags = IORESOURCE_MEM,
906 static struct platform_device gta02_nor_flash = {
907 .name = "physmap-flash",
910 .platform_data = >a02_nor_flash_data,
912 .resource = >a02_nor_flash_resource,
917 struct platform_device s3c24xx_pwm_device = {
918 .name = "s3c24xx_pwm",
922 static struct i2c_board_info gta02_i2c_devs[] __initdata = {
924 I2C_BOARD_INFO("pcf50633", 0x73),
925 .irq = GTA02_IRQ_PCF50633,
926 .platform_data = >a02_pcf_pdata,
929 I2C_BOARD_INFO("wm8753", 0x1a),
933 static struct s3c2410_nand_set gta02_nand_sets[] = {
935 .name = "neo1973-nand",
937 .flags = S3C2410_NAND_BBT,
941 /* choose a set of timings derived from S3C@2442B MCP54
942 * data sheet (K5D2G13ACM-D075 MCP Memory)
945 static struct s3c2410_platform_nand gta02_nand_info = {
949 .nr_sets = ARRAY_SIZE(gta02_nand_sets),
950 .sets = gta02_nand_sets,
955 static void gta02_s3c_mmc_set_power(unsigned char power_mode,
958 static int is_on = -1;
961 on = power_mode == MMC_POWER_ON || power_mode == MMC_POWER_UP;
963 gta02_wlan_reset(!on);
968 static struct s3c24xx_mci_pdata gta02_s3c_mmc_cfg = {
969 .set_power = gta02_s3c_mmc_set_power,
972 static void gta02_udc_command(enum s3c2410_udc_cmd_e cmd)
975 case S3C2410_UDC_P_ENABLE:
976 printk(KERN_DEBUG "%s S3C2410_UDC_P_ENABLE\n", __func__);
977 neo1973_gpb_setpin(GTA02_GPIO_USB_PULLUP, 1);
979 case S3C2410_UDC_P_DISABLE:
980 printk(KERN_DEBUG "%s S3C2410_UDC_P_DISABLE\n", __func__);
981 neo1973_gpb_setpin(GTA02_GPIO_USB_PULLUP, 0);
983 case S3C2410_UDC_P_RESET:
984 printk(KERN_DEBUG "%s S3C2410_UDC_P_RESET\n", __func__);
992 /* get PMU to set USB current limit accordingly */
994 static struct s3c2410_udc_mach_info gta02_udc_cfg = {
995 .vbus_draw = gta02_udc_vbus_draw,
996 .udc_command = gta02_udc_command,
997 .get_vbus_status= gta02_udc_vbus_status,
1002 /* Touchscreen configuration. */
1004 #ifdef CONFIG_TOUCHSCREEN_FILTER
1005 const static struct ts_filter_group_configuration gta02_ts_group = {
1008 .threshold = 6, /* At least half of the points in a group. */
1012 const static struct ts_filter_median_configuration gta02_ts_median = {
1014 .decimation_below = 3,
1015 .decimation_threshold = 8 * 3,
1016 .decimation_above = 4,
1019 const static struct ts_filter_mean_configuration gta02_ts_mean = {
1023 const static struct ts_filter_linear_configuration gta02_ts_linear = {
1024 .constants = {1, 0, 0, 0, 1, 0, 1}, /* Don't modify coords. */
1030 const static struct ts_filter_chain_configuration gta02_filter_configuration[] =
1032 #ifdef CONFIG_TOUCHSCREEN_FILTER
1033 {&ts_filter_group_api, >a02_ts_group.config},
1034 {&ts_filter_median_api, >a02_ts_median.config},
1035 {&ts_filter_mean_api, >a02_ts_mean.config},
1036 {&ts_filter_linear_api, >a02_ts_linear.config},
1041 const static struct s3c2410_ts_mach_info gta02_ts_cfg = {
1043 .presc = 0xff, /* slow as we can go */
1044 .filter_config = gta02_filter_configuration,
1049 static void gta02_bl_set_intensity(int intensity)
1051 struct pcf50633 *pcf = gta02_pcf;
1052 int old_intensity = pcf50633_reg_read(pcf, PCF50633_REG_LEDOUT);
1058 * One code path that leads here is from a kernel panic. Trying to turn
1059 * the backlight on just gives us a nearly endless stream of complaints
1060 * and accomplishes nothing. We can't win. Just give up.
1062 * In the unlikely event that there's another path leading here while
1063 * we're atomic, we print at least a warning.
1067 "gta02_bl_set_intensity called while atomic\n");
1071 if (!(pcf50633_reg_read(pcf, PCF50633_REG_LEDENA) & 3))
1074 old_intensity = pcf50633_reg_read(pcf, PCF50633_REG_LEDOUT);
1076 if (intensity == old_intensity)
1079 /* We can't do this anywhere else */
1080 pcf50633_reg_write(pcf, PCF50633_REG_LEDDIM, 5);
1083 * The PCF50633 cannot handle LEDOUT = 0 (datasheet p60)
1084 * if seen, you have to re-enable the LED unit
1086 if (!intensity || !old_intensity)
1087 pcf50633_reg_write(pcf, PCF50633_REG_LEDENA, 0);
1089 if (!intensity) /* illegal to set LEDOUT to 0 */
1090 ret = pcf50633_reg_set_bit_mask(pcf, PCF50633_REG_LEDOUT, 0x3f,
1093 ret = pcf50633_reg_set_bit_mask(pcf, PCF50633_REG_LEDOUT, 0x3f,
1097 pcf50633_reg_write(pcf, PCF50633_REG_LEDENA, 2);
1101 static struct generic_bl_info gta02_bl_info = {
1103 .max_intensity = 0xff,
1104 .default_intensity = 0xff,
1105 .set_bl_intensity = gta02_bl_set_intensity,
1108 static struct platform_device gta02_bl_dev = {
1109 .name = "generic-bl",
1112 .platform_data = >a02_bl_info,
1116 /* SPI: LCM control interface attached to Glamo3362 */
1118 static void gta02_jbt6k74_reset(int devidx, int level)
1120 glamo_lcm_reset(level);
1123 static void gta02_jbt6k74_probe_completed(struct device *dev)
1125 struct pcf50633 *pcf = gta02_pcf;
1127 /* Switch on backlight. Qi does not do it for us */
1128 pcf50633_reg_write(pcf, PCF50633_REG_LEDOUT, 0x01);
1129 pcf50633_reg_write(pcf, PCF50633_REG_LEDENA, 0x00);
1130 pcf50633_reg_write(pcf, PCF50633_REG_LEDDIM, 0x01);
1131 pcf50633_reg_write(pcf, PCF50633_REG_LEDENA, 0x01);
1133 gta02_bl_dev.dev.parent = dev;
1134 platform_device_register(>a02_bl_dev);
1137 const struct jbt6k74_platform_data jbt6k74_pdata = {
1138 .reset = gta02_jbt6k74_reset,
1139 .probe_completed = gta02_jbt6k74_probe_completed,
1142 #if 0 /* currently this is not used and we use gpio spi */
1143 static struct glamo_spi_info glamo_spi_cfg = {
1144 .board_size = ARRAY_SIZE(gta02_spi_board_info),
1145 .board_info = gta02_spi_board_info,
1149 static struct glamo_spigpio_info glamo_spigpio_cfg = {
1150 .pin_clk = GLAMO_GPIO10_OUTPUT,
1151 .pin_mosi = GLAMO_GPIO11_OUTPUT,
1152 .pin_cs = GLAMO_GPIO12_OUTPUT,
1157 /*----------- SPI: Accelerometers attached to SPI of s3c244x ----------------- */
1159 void gta02_lis302dl_suspend_io(struct lis302dl_info *lis, int resume)
1161 struct lis302dl_platform_data *pdata = lis->pdata;
1165 * we don't want to power them with a high level
1166 * because GSENSOR_3V3 is not up during suspend
1168 s3c2410_gpio_setpin(pdata->pin_chip_select, 0);
1169 s3c2410_gpio_setpin(pdata->pin_clk, 0);
1170 s3c2410_gpio_setpin(pdata->pin_mosi, 0);
1171 /* misnomer: it is a pullDOWN in 2442 */
1172 s3c2410_gpio_pullup(pdata->pin_miso, 1);
1176 /* back to normal */
1177 s3c2410_gpio_setpin(pdata->pin_chip_select, 1);
1178 s3c2410_gpio_setpin(pdata->pin_clk, 1);
1179 /* misnomer: it is a pullDOWN in 2442 */
1180 s3c2410_gpio_pullup(pdata->pin_miso, 0);
1182 s3c2410_gpio_cfgpin(pdata->pin_chip_select, S3C2410_GPIO_OUTPUT);
1183 s3c2410_gpio_cfgpin(pdata->pin_clk, S3C2410_GPIO_OUTPUT);
1184 s3c2410_gpio_cfgpin(pdata->pin_mosi, S3C2410_GPIO_OUTPUT);
1185 s3c2410_gpio_cfgpin(pdata->pin_miso, S3C2410_GPIO_INPUT);
1189 struct lis302dl_platform_data lis302_pdata_top = {
1190 .name = "lis302-1 (top)",
1191 .pin_chip_select= S3C2410_GPD12,
1192 .pin_clk = S3C2410_GPG7,
1193 .pin_mosi = S3C2410_GPG6,
1194 .pin_miso = S3C2410_GPG5,
1195 .interrupt = GTA02_IRQ_GSENSOR_1,
1196 .open_drain = 1, /* altered at runtime by PCB rev */
1197 .lis302dl_suspend_io = gta02_lis302dl_suspend_io,
1200 struct lis302dl_platform_data lis302_pdata_bottom = {
1201 .name = "lis302-2 (bottom)",
1202 .pin_chip_select= S3C2410_GPD13,
1203 .pin_clk = S3C2410_GPG7,
1204 .pin_mosi = S3C2410_GPG6,
1205 .pin_miso = S3C2410_GPG5,
1206 .interrupt = GTA02_IRQ_GSENSOR_2,
1207 .open_drain = 1, /* altered at runtime by PCB rev */
1208 .lis302dl_suspend_io = gta02_lis302dl_suspend_io,
1211 static struct spi_board_info gta02_spi_board_info[] = {
1213 .modalias = "jbt6k74",
1215 .platform_data = &jbt6k74_pdata,
1216 /* controller_data */
1218 .max_speed_hz = 100 * 1000,
1223 .modalias = "lis302dl",
1225 .platform_data = &lis302_pdata_top,
1226 /* controller_data */
1228 .max_speed_hz = 100 * 1000,
1234 .modalias = "lis302dl",
1236 .platform_data = &lis302_pdata_bottom,
1237 /* controller_data */
1239 .max_speed_hz = 100 * 1000,
1246 static void gta02_lis302_chip_select(struct s3c2410_spigpio_info *info, int csid, int cs)
1250 * Huh... "quirk"... CS on this device is not really "CS" like you can
1253 * When it is 0 it selects SPI interface mode.
1254 * When it is 1 it selects I2C interface mode.
1256 * Because we have 2 devices on one interface we have to make sure
1257 * that the "disabled" device (actually in I2C mode) don't think we're
1260 * When we talk to the "enabled" device, the "disabled" device sees
1261 * the clocks as I2C clocks, creating havoc.
1263 * I2C sees MOSI going LOW while CLK HIGH as a START action, thus we
1264 * must ensure this is never issued.
1267 int cs_gpio, other_cs_gpio;
1269 cs_gpio = csid ? S3C2410_GPD13 : S3C2410_GPD12;
1270 other_cs_gpio = (1 - csid) ? S3C2410_GPD13 : S3C2410_GPD12;
1273 if (cs == BITBANG_CS_ACTIVE) {
1274 s3c2410_gpio_setpin(other_cs_gpio, 1);
1275 s3c2410_gpio_setpin(cs_gpio, 1);
1276 s3c2410_gpio_setpin(info->pin_clk, 1);
1277 s3c2410_gpio_setpin(cs_gpio, 0);
1279 s3c2410_gpio_setpin(cs_gpio, 1);
1280 s3c2410_gpio_setpin(other_cs_gpio, 1);
1284 static struct s3c2410_spigpio_info gta02_spigpio_cfg = {
1285 .pin_clk = S3C2410_GPG7,
1286 .pin_mosi = S3C2410_GPG6,
1287 .pin_miso = S3C2410_GPG5,
1289 .num_chipselect = 2,
1290 .chip_select = gta02_lis302_chip_select,
1291 .non_blocking_transfer = 1,
1294 static struct platform_device gta02_spi_gpio_dev = {
1295 .name = "spi_s3c24xx_gpio",
1297 .platform_data = >a02_spigpio_cfg,
1301 /*----------- / SPI: Accelerometers attached to SPI of s3c244x ----------------- */
1303 static struct resource gta02_led_resources[] = {
1305 .name = "gta02-power:orange",
1306 .start = GTA02_GPIO_PWR_LED1,
1307 .end = GTA02_GPIO_PWR_LED1,
1309 .name = "gta02-power:blue",
1310 .start = GTA02_GPIO_PWR_LED2,
1311 .end = GTA02_GPIO_PWR_LED2,
1313 .name = "gta02-aux:red",
1314 .start = GTA02_GPIO_AUX_LED,
1315 .end = GTA02_GPIO_AUX_LED,
1319 struct platform_device gta02_led_dev = {
1320 .name = "gta02-led",
1321 .num_resources = ARRAY_SIZE(gta02_led_resources),
1322 .resource = gta02_led_resources,
1325 static struct resource gta02_button_resources[] = {
1327 .start = GTA02_GPIO_AUX_KEY,
1328 .end = GTA02_GPIO_AUX_KEY,
1331 .start = GTA02_GPIO_HOLD_KEY,
1332 .end = GTA02_GPIO_HOLD_KEY,
1335 .start = GTA02_GPIO_JACK_INSERT,
1336 .end = GTA02_GPIO_JACK_INSERT,
1348 static struct platform_device gta02_button_dev = {
1349 .name = "neo1973-button",
1350 .num_resources = ARRAY_SIZE(gta02_button_resources),
1351 .resource = gta02_button_resources,
1355 static struct platform_device gta02_pm_usbhost_dev = {
1356 .name = "neo1973-pm-host",
1361 static struct s3c2410_hcd_info gta02_usb_info = {
1363 .flags = S3C_HCDFLG_USED,
1370 static int glamo_irq_is_wired(void)
1376 * GTA02 S-Media IRQs prior to A5 are broken due to a lack of
1377 * a pullup on the INT# line. Check for the bad behaviour.
1379 s3c2410_gpio_setpin(S3C2410_GPG4, 0);
1380 s3c2410_gpio_cfgpin(S3C2410_GPG4, S3C2410_GPG4_OUTP);
1381 s3c2410_gpio_cfgpin(S3C2410_GPG4, S3C2410_GPG4_INP);
1383 * we force it low ourselves for a moment and resume being input.
1384 * If there is a pullup, it won't stay low for long. But if the
1385 * level converter is there as on < A5 revision, the weak keeper
1386 * on the input of the LC will hold the line low indefinitiely
1389 rc = s3c2410_gpio_getpin(S3C2410_GPG4);
1390 while ((!rc) && ((count++) < 10));
1391 if (rc) { /* it got pulled back up, it's good */
1392 printk(KERN_INFO "Detected S-Media IRQ# pullup, "
1393 "enabling interrupt\n");
1395 } else /* Gah we can't work with this level converter */
1396 printk(KERN_WARNING "** Detected bad IRQ# circuit found"
1397 " on pre-A5 GTA02: S-Media interrupt disabled **\n");
1401 static int gta02_glamo_can_set_mmc_power(void)
1403 switch (S3C_SYSTEM_REV_ATAG) {
1404 case GTA02v3_SYSTEM_REV:
1405 case GTA02v4_SYSTEM_REV:
1406 case GTA02v5_SYSTEM_REV:
1407 case GTA02v6_SYSTEM_REV:
1414 /* Smedia Glamo 3362 */
1417 * we crank down SD Card clock dynamically when GPS is powered
1420 static int gta02_glamo_mci_use_slow(void)
1422 return neo1973_pm_gps_is_on();
1425 static void gta02_glamo_external_reset(int level)
1427 s3c2410_gpio_setpin(GTA02_GPIO_3D_RESET, level);
1428 s3c2410_gpio_cfgpin(GTA02_GPIO_3D_RESET, S3C2410_GPIO_OUTPUT);
1431 static struct glamofb_platform_data gta02_glamo_pdata = {
1434 /* 24.5MHz --> 40.816ns */
1442 .fb_mem_size = 0x400000, /* glamo has 8 megs of SRAM. we use 4 */
1458 //.spi_info = &glamo_spi_cfg,
1459 .spigpio_info = &glamo_spigpio_cfg,
1461 /* glamo MMC function platform data */
1462 .mmc_dev = >a02_mmc_dev,
1463 .glamo_can_set_mci_power = gta02_glamo_can_set_mmc_power,
1464 .glamo_mci_use_slow = gta02_glamo_mci_use_slow,
1465 .glamo_irq_is_wired = glamo_irq_is_wired,
1466 .glamo_external_reset = gta02_glamo_external_reset
1469 static struct resource gta02_glamo_resources[] = {
1471 .start = S3C2410_CS1,
1472 .end = S3C2410_CS1 + 0x1000000 - 1,
1473 .flags = IORESOURCE_MEM,
1476 .start = GTA02_IRQ_3D,
1477 .end = GTA02_IRQ_3D,
1478 .flags = IORESOURCE_IRQ,
1481 .start = GTA02_GPIO_3D_RESET,
1482 .end = GTA02_GPIO_3D_RESET,
1486 static struct platform_device gta02_glamo_dev = {
1487 .name = "glamo3362",
1488 .num_resources = ARRAY_SIZE(gta02_glamo_resources),
1489 .resource = gta02_glamo_resources,
1491 .platform_data = >a02_glamo_pdata,
1495 static void mangle_glamo_res_by_system_rev(void)
1497 switch (S3C_SYSTEM_REV_ATAG) {
1498 case GTA02v1_SYSTEM_REV:
1501 gta02_glamo_resources[2].start = GTA02_GPIO_3D_RESET;
1502 gta02_glamo_resources[2].end = GTA02_GPIO_3D_RESET;
1506 switch (S3C_SYSTEM_REV_ATAG) {
1507 case GTA02v1_SYSTEM_REV:
1508 case GTA02v2_SYSTEM_REV:
1509 case GTA02v3_SYSTEM_REV:
1510 /* case GTA02v4_SYSTEM_REV: - FIXME: handle this later */
1511 /* The hardware is missing a pull-up resistor and thus can't
1512 * support the Smedia Glamo IRQ */
1513 gta02_glamo_resources[1].start = 0;
1514 gta02_glamo_resources[1].end = 0;
1519 static void __init gta02_map_io(void)
1521 s3c24xx_init_io(gta02_iodesc, ARRAY_SIZE(gta02_iodesc));
1522 s3c24xx_init_clocks(12000000);
1523 s3c24xx_init_uarts(gta02_uartcfgs, ARRAY_SIZE(gta02_uartcfgs));
1526 static irqreturn_t gta02_modem_irq(int irq, void *param)
1528 printk(KERN_DEBUG "modem wakeup interrupt\n");
1529 gta_gsm_interrupts++;
1533 static irqreturn_t ar6000_wow_irq(int irq, void *param)
1535 printk(KERN_DEBUG "ar6000_wow interrupt\n");
1542 static char hardware_ecc_str[4] __initdata = "";
1544 static int __init hardware_ecc_setup(char *str)
1547 strlcpy(hardware_ecc_str, str, sizeof(hardware_ecc_str));
1551 __setup("hardware_ecc=", hardware_ecc_setup);
1553 /* these are the guys that don't need to be children of PMU */
1555 static struct platform_device *gta02_devices[] __initdata = {
1556 >a02_version_device,
1559 >a02_memconfig_device,
1561 &s3c_device_usbgadget,
1565 &s3c24xx_pwm_device,
1567 >a02_pm_wlan_dev, /* not dependent on PMU */
1573 /* these guys DO need to be children of PMU */
1575 static struct platform_device *gta02_devices_pmu_children[] = {
1576 &s3c_device_ts, /* input 1 */
1578 >a02_pm_usbhost_dev,
1579 >a02_spi_gpio_dev, /* input 2 and 3 */
1580 >a02_button_dev, /* input 4 */
1581 >a02_resume_reason_device,
1585 static void gta02_pmu_regulator_registered(struct pcf50633 *pcf, int id)
1587 struct platform_device *regulator, *pdev;
1591 regulator = pcf->regulator_pdev[id];
1594 case PCF50633_REGULATOR_LDO4:
1595 pdev = >a01_pm_bt_dev;
1597 case PCF50633_REGULATOR_LDO5:
1598 pdev = >a01_pm_gps_dev;
1600 case PCF50633_REGULATOR_HCLDO:
1601 pdev = >a02_glamo_dev;
1607 pdev->dev.parent = ®ulator->dev;
1608 platform_device_register(pdev);
1611 /* this is called when pc50633 is probed, unfortunately quite late in the
1612 * day since it is an I2C bus device. Here we can belatedly define some
1613 * platform devices with the advantage that we can mark the pcf50633 as the
1614 * parent. This makes them get suspended and resumed with their parent
1615 * the pcf50633 still around.
1618 static void gta02_pmu_attach_child_devices(struct pcf50633 *pcf)
1622 for (n = 0; n < ARRAY_SIZE(gta02_devices_pmu_children); n++)
1623 gta02_devices_pmu_children[n]->dev.parent = pcf->dev;
1625 mangle_glamo_res_by_system_rev();
1626 platform_add_devices(gta02_devices_pmu_children,
1627 ARRAY_SIZE(gta02_devices_pmu_children));
1630 static void gta02_poweroff(void)
1632 pcf50633_reg_set_bit_mask(gta02_pcf, PCF50633_REG_OOCSHDWN,
1633 PCF50633_OOCSHDWN_GOSTDBY, PCF50633_OOCSHDWN_GOSTDBY);
1636 static void __init gta02_machine_init(void)
1640 /* set the panic callback to make AUX blink fast */
1641 panic_blink = gta02_panic_blink;
1643 switch (S3C_SYSTEM_REV_ATAG) {
1644 case GTA02v6_SYSTEM_REV:
1645 /* we need push-pull interrupt from motion sensors */
1646 lis302_pdata_top.open_drain = 0;
1647 lis302_pdata_bottom.open_drain = 0;
1653 spin_lock_init(&motion_irq_lock);
1655 #ifdef CONFIG_CHARGER_PCF50633
1656 INIT_DELAYED_WORK(>a02_charger_work, gta02_charger_worker);
1659 /* Glamo chip select optimization */
1660 /* *((u32 *)(S3C2410_MEMREG(((1 + 1) << 2)))) = 0x1280; */
1662 /* do not force soft ecc if we are asked to use hardware_ecc */
1663 if (hardware_ecc_str[0] == '1')
1664 gta02_nand_info.software_ecc = 0;
1666 s3c_device_usb.dev.platform_data = >a02_usb_info;
1667 s3c_device_nand.dev.platform_data = >a02_nand_info;
1668 s3c_device_sdi.dev.platform_data = >a02_s3c_mmc_cfg;
1670 /* acc sensor chip selects */
1671 s3c2410_gpio_setpin(S3C2410_GPD12, 1);
1672 s3c2410_gpio_cfgpin(S3C2410_GPD12, S3C2410_GPIO_OUTPUT);
1673 s3c2410_gpio_setpin(S3C2410_GPD13, 1);
1674 s3c2410_gpio_cfgpin(S3C2410_GPD13, S3C2410_GPIO_OUTPUT);
1676 s3c24xx_udc_set_platdata(>a02_udc_cfg);
1677 s3c_i2c0_set_platdata(NULL);
1678 set_s3c2410ts_info(>a02_ts_cfg);
1680 mangle_glamo_res_by_system_rev();
1682 i2c_register_board_info(0, gta02_i2c_devs, ARRAY_SIZE(gta02_i2c_devs));
1683 spi_register_board_info(gta02_spi_board_info,
1684 ARRAY_SIZE(gta02_spi_board_info));
1686 mangle_pmu_pdata_by_system_rev();
1688 platform_add_devices(gta02_devices, ARRAY_SIZE(gta02_devices));
1692 /* Make sure the modem can wake us up */
1693 set_irq_type(GTA02_IRQ_MODEM, IRQ_TYPE_EDGE_RISING);
1694 rc = request_irq(GTA02_IRQ_MODEM, gta02_modem_irq, IRQF_DISABLED,
1697 printk(KERN_ERR "GTA02: can't request GSM modem wakeup IRQ\n");
1698 enable_irq_wake(GTA02_IRQ_MODEM);
1700 /* Make sure the wifi module can wake us up*/
1701 set_irq_type(GTA02_IRQ_WLAN_GPIO1, IRQ_TYPE_EDGE_RISING);
1702 rc = request_irq(GTA02_IRQ_WLAN_GPIO1, ar6000_wow_irq, IRQF_DISABLED,
1706 printk(KERN_ERR "GTA02: can't request ar6k wakeup IRQ\n");
1707 enable_irq_wake(GTA02_IRQ_WLAN_GPIO1);
1709 pm_power_off = gta02_poweroff;
1711 /* Register the HDQ and vibrator as children of pwm device */
1712 #ifdef CONFIG_HDQ_GPIO_BITBANG
1713 gta02_hdq_device.dev.parent = &s3c24xx_pwm_device.dev;
1714 platform_device_register(>a02_hdq_device);
1716 #ifdef CONFIG_LEDS_NEO1973_VIBRATOR
1717 gta02_vibrator_dev.dev.parent = &s3c24xx_pwm_device.dev;
1718 platform_device_register(>a02_vibrator_dev);
1722 void DEBUG_LED(int n)
1727 neo1973_gpb_setpin(GTA02_GPIO_PWR_LED1, 1);
1730 neo1973_gpb_setpin(GTA02_GPIO_PWR_LED2, 1);
1733 neo1973_gpb_setpin(GTA02_GPIO_AUX_LED, 1);
1736 // printk(KERN_ERR"die %d\n", *p);
1738 EXPORT_SYMBOL_GPL(DEBUG_LED);
1740 MACHINE_START(NEO1973_GTA02, "GTA02")
1741 .phys_io = S3C2410_PA_UART,
1742 .io_pg_offst = (((u32)S3C24XX_VA_UART) >> 18) & 0xfffc,
1743 .boot_params = S3C2410_SDRAM_PA + 0x100,
1744 .map_io = gta02_map_io,
1745 .init_irq = s3c24xx_init_irq,
1746 .init_machine = gta02_machine_init,
1747 .timer = &s3c24xx_timer,