ARM: OMAP: WiLink platform data for the PandaBoard

The "uim" deamon requires sysfs entries that are filled in using
this platform data.

Signed-off-by: Mircea Gherzan <mgherzan@gmail.com>
Signed-off-by: Tony Lindgren <tony@atomide.com>
This commit is contained in:
Mircea Gherzan
2012-05-09 14:19:13 -07:00
committed by Tony Lindgren
parent a78a4cbd41
commit 9624f61552
2 changed files with 14 additions and 2 deletions

View File

@@ -28,6 +28,7 @@
#include <linux/mfd/twl6040.h> #include <linux/mfd/twl6040.h>
#include <linux/regulator/machine.h> #include <linux/regulator/machine.h>
#include <linux/regulator/fixed.h> #include <linux/regulator/fixed.h>
#include <linux/ti_wilink_st.h>
#include <linux/wl12xx.h> #include <linux/wl12xx.h>
#include <linux/platform_data/omap-abe-twl6040.h> #include <linux/platform_data/omap-abe-twl6040.h>
@@ -58,12 +59,21 @@
#define HDMI_GPIO_HPD 63 /* Hotplug detect */ #define HDMI_GPIO_HPD 63 /* Hotplug detect */
/* wl127x BT, FM, GPS connectivity chip */ /* wl127x BT, FM, GPS connectivity chip */
static int wl1271_gpios[] = {46, -1, -1}; static struct ti_st_plat_data wilink_platform_data = {
.nshutdown_gpio = 46,
.dev_name = "/dev/ttyO1",
.flow_cntrl = 1,
.baud_rate = 3000000,
.chip_enable = NULL,
.suspend = NULL,
.resume = NULL,
};
static struct platform_device wl1271_device = { static struct platform_device wl1271_device = {
.name = "kim", .name = "kim",
.id = -1, .id = -1,
.dev = { .dev = {
.platform_data = &wl1271_gpios, .platform_data = &wilink_platform_data,
}, },
}; };

View File

@@ -25,6 +25,8 @@
#ifndef TI_WILINK_ST_H #ifndef TI_WILINK_ST_H
#define TI_WILINK_ST_H #define TI_WILINK_ST_H
#include <linux/skbuff.h>
/** /**
* enum proto-type - The protocol on WiLink chips which share a * enum proto-type - The protocol on WiLink chips which share a
* common physical interface like UART. * common physical interface like UART.