Skip to content

Commit

Permalink
omap: panda: Add TI-ST driver support
Browse files Browse the repository at this point in the history
Added the KIM (Kernel initialization module for the
Shared Transport driver) device entry in the board file

Only the Blutooth enable GPIO is set for now

Signed-off-by: Guy Eilam <guy@wizery.com>
Signed-off-by: Tony Lindgren <tony@atomide.com>
  • Loading branch information
Guy Eilam authored and Tony Lindgren committed Mar 3, 2011
1 parent f463eff commit ec179ea
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions arch/arm/mach-omap2/board-omap4panda.c
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,16 @@
#define GPIO_WIFI_PMENA 43
#define GPIO_WIFI_IRQ 53

/* wl127x BT, FM, GPS connectivity chip */
static int wl1271_gpios[] = {46, -1, -1};
static struct platform_device wl1271_device = {
.name = "kim",
.id = -1,
.dev = {
.platform_data = &wl1271_gpios,
},
};

static struct gpio_led gpio_leds[] = {
{
.name = "pandaboard::status1",
Expand Down Expand Up @@ -78,6 +88,7 @@ static struct platform_device leds_gpio = {

static struct platform_device *panda_devices[] __initdata = {
&leds_gpio,
&wl1271_device,
};

static void __init omap4_panda_init_early(void)
Expand Down

0 comments on commit ec179ea

Please sign in to comment.