]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/blobdiff - arch/arm/mach-omap2/board-n800.c
Merge branch 'omap-fixes'
[linux-2.6-omap-h63xx.git] / arch / arm / mach-omap2 / board-n800.c
index 2c64d2d47ed9fd70d159d6780eddc6ca79528641..f1552f0d7b61948e921ed8e94422a8f0a9ddef6f 100644 (file)
@@ -26,6 +26,7 @@
 #include <linux/i2c.h>
 #include <linux/i2c/lm8323.h>
 #include <linux/i2c/menelaus.h>
+#include <linux/i2c/lp5521.h>
 #include <mach/hardware.h>
 #include <asm/mach-types.h>
 #include <asm/mach/arch.h>
@@ -40,6 +41,7 @@
 #include <mach/gpio-switch.h>
 #include <mach/omapfb.h>
 #include <mach/blizzard.h>
+#include <mach/board-nokia.h>
 
 #include <../drivers/cbus/tahvo.h>
 #include <../drivers/media/video/tcm825x.h>
@@ -111,12 +113,16 @@ static s16 rx44_keymap[LM8323_KEYMAP_SIZE] = {
 };
 
 static struct lm8323_platform_data lm8323_pdata = {
-       .repeat = 0, /* Repeat is handled in userspace for now. */
-       .keymap = rx44_keymap,
-
-       .name = "Internal keyboard",
-       .pwm1_name = "keyboard",
-       .pwm2_name = "cover",
+       .repeat         = 0, /* Repeat is handled in userspace for now. */
+       .keymap         = rx44_keymap,
+       .size_x         = 8,
+       .size_y         = 8,
+       .debounce_time  = 12,
+       .active_time    = 500,
+
+       .name           = "Internal keyboard",
+       .pwm1_name      = "n810::keyboard",
+       .pwm2_name      = "n810::cover",
 };
 #endif
 
@@ -127,14 +133,13 @@ void __init nokia_n800_init_irq(void)
        omap_gpio_init();
 
 #ifdef CONFIG_OMAP_STI
-       if (omap_request_gpio(N800_STI_GPIO) < 0) {
+       if (gpio_request(N800_STI_GPIO, "STI") < 0) {
                printk(KERN_ERR "Failed to request GPIO %d for STI\n",
                       N800_STI_GPIO);
                return;
        }
 
-       omap_set_gpio_direction(N800_STI_GPIO, 0);
-       omap_set_gpio_dataout(N800_STI_GPIO, 0);
+       gpio_direction_output(N800_STI_GPIO, 0);
 #endif
 }
 
@@ -178,7 +183,7 @@ static void mipid_shutdown(struct mipid_platform_data *pdata)
 {
        if (pdata->nreset_gpio != -1) {
                pr_info("shutdown LCD\n");
-               omap_set_gpio_dataout(pdata->nreset_gpio, 0);
+               gpio_set_value(pdata->nreset_gpio, 0);
                msleep(120);
        }
 }
@@ -232,12 +237,12 @@ static void blizzard_power_up(struct device *dev)
        msleep(10);
 
        blizzard_enable_clocks(1);
-       omap_set_gpio_dataout(N800_BLIZZARD_POWERDOWN_GPIO, 1);
+       gpio_set_value(N800_BLIZZARD_POWERDOWN_GPIO, 1);
 }
 
 static void blizzard_power_down(struct device *dev)
 {
-       omap_set_gpio_dataout(N800_BLIZZARD_POWERDOWN_GPIO, 0);
+       gpio_set_value(N800_BLIZZARD_POWERDOWN_GPIO, 0);
        blizzard_enable_clocks(0);
 
        /* Vcore to 1.005V */
@@ -255,11 +260,10 @@ static void __init blizzard_dev_init(void)
 {
        int r;
 
-       r = omap_request_gpio(N800_BLIZZARD_POWERDOWN_GPIO);
+       r = gpio_request(N800_BLIZZARD_POWERDOWN_GPIO, "Blizzard pd");
        if (r < 0)
                return;
-       omap_set_gpio_direction(N800_BLIZZARD_POWERDOWN_GPIO, 0);
-       omap_set_gpio_dataout(N800_BLIZZARD_POWERDOWN_GPIO, 1);
+       gpio_direction_output(N800_BLIZZARD_POWERDOWN_GPIO, 1);
 
        blizzard_get_clocks();
        omapfb_set_ctrl_platform_data(&n800_blizzard_data);
@@ -305,7 +309,7 @@ static void tsc2301_dev_init(void)
        r = gpio_request(gpio, "tsc2301 KBD IRQ");
        if (r >= 0) {
                gpio_direction_input(gpio);
-               tsc2301_config.keyb_int = OMAP_GPIO_IRQ(gpio);
+               tsc2301_config.keyb_int = gpio_to_irq(gpio);
        } else {
                printk(KERN_ERR "unable to get KBD GPIO");
        }
@@ -314,7 +318,7 @@ static void tsc2301_dev_init(void)
        r = gpio_request(gpio, "tsc2301 DAV IRQ");
        if (r >= 0) {
                gpio_direction_input(gpio);
-               tsc2301_config.dav_int = OMAP_GPIO_IRQ(gpio);
+               tsc2301_config.dav_int = gpio_to_irq(gpio);
        } else {
                printk(KERN_ERR "unable to get DAV GPIO");
        }
@@ -333,15 +337,15 @@ static int __init tea5761_dev_init(void)
                pr_debug("Enabling tea5761 at GPIO %d\n",
                         enable_gpio);
 
-               if (omap_request_gpio(enable_gpio) < 0) {
+               if (gpio_request(enable_gpio, "TEA5761 enable") < 0) {
                        printk(KERN_ERR "Can't request GPIO %d\n",
                               enable_gpio);
                        return -ENODEV;
                }
 
-               omap_set_gpio_direction(enable_gpio, 0);
+               gpio_direction_output(enable_gpio, 0);
                udelay(50);
-               omap_set_gpio_dataout(enable_gpio, 1);
+               gpio_set_value(enable_gpio, 1);
        }
 
        return 0;
@@ -565,10 +569,20 @@ static struct omap_gpio_switch n800_gpio_switches[] __initdata = {
        },
 };
 
+#if defined(CONFIG_CBUS_RETU_HEADSET)
+static struct platform_device retu_headset_device = {
+       .name   = "retu-headset",
+       .id     = -1,
+};
+#endif
+
 static struct platform_device *n800_devices[] __initdata = {
 #if defined(CONFIG_CBUS_RETU) && defined(CONFIG_LEDS_OMAP_PWM)
        &n800_keypad_led_device,
 #endif
+#if defined(CONFIG_CBUS_RETU_HEADSET)
+       &retu_headset_device,
+#endif
 };
 
 #ifdef CONFIG_MENELAUS
@@ -630,6 +644,14 @@ static struct i2c_board_info __initdata n800_i2c_board_info_1[] = {
        },
 };
 
+static struct lp5521_platform_data n810_lp5521_platform_data = {
+       .mode           = LP5521_MODE_DIRECT_CONTROL,
+       .label          = "n810",
+       .red_present    = true,
+       .green_present  = true,
+       .blue_present   = true,
+};
+
 extern struct tcm825x_platform_data n800_tcm825x_platform_data;
 
 static struct i2c_board_info __initdata_or_module n8x0_i2c_board_info_2[] = {
@@ -659,6 +681,7 @@ static struct i2c_board_info __initdata_or_module n810_i2c_board_info_2[] = {
        },
        {
                I2C_BOARD_INFO("lp5521", 0x32),
+               .platform_data = &n810_lp5521_platform_data,
        },
 };
 
@@ -700,7 +723,6 @@ static void __init nokia_n800_init(void)
 {
        nokia_n800_common_init();
 
-       n800_audio_init(&tsc2301_config);
        n800_ts_set_config();
        tsc2301_dev_init();
        tea5761_dev_init();