* [PATCH] ARM: OMAP: WiLink platform data for the PandaBoard
@ 2012-03-06 0:46 Mircea Gherzan
2012-03-06 21:38 ` Tony Lindgren
0 siblings, 1 reply; 2+ messages in thread
From: Mircea Gherzan @ 2012-03-06 0:46 UTC (permalink / raw)
To: linux-arm-kernel
The "uim" deamon requires sysfs entries that are filled in using
this platform data.
Signed-off-by: Mircea Gherzan <mgherzan@gmail.com>
---
arch/arm/mach-omap2/board-omap4panda.c | 23 +++++++++++++++++------
include/linux/ti_wilink_st.h | 2 ++
2 files changed, 19 insertions(+), 6 deletions(-)
diff --git a/arch/arm/mach-omap2/board-omap4panda.c b/arch/arm/mach-omap2/board-omap4panda.c
index b1d74d6..37b437f 100644
--- a/arch/arm/mach-omap2/board-omap4panda.c
+++ b/arch/arm/mach-omap2/board-omap4panda.c
@@ -27,6 +27,7 @@
#include <linux/i2c/twl.h>
#include <linux/regulator/machine.h>
#include <linux/regulator/fixed.h>
+#include <linux/ti_wilink_st.h>
#include <linux/wl12xx.h>
#include <mach/hardware.h>
@@ -56,15 +57,29 @@
#define HDMI_GPIO_HPD 63 /* Hotplug detect */
/* 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 = {
.name = "kim",
.id = -1,
.dev = {
- .platform_data = &wl1271_gpios,
+ .platform_data = &wilink_platform_data,
},
};
+static struct platform_device btwilink_device = {
+ .name = "btwilink",
+ .id = -1,
+};
+
static struct gpio_led gpio_leds[] = {
{
.name = "pandaboard::status1",
@@ -91,10 +106,6 @@ static struct platform_device leds_gpio = {
},
};
-static struct platform_device btwilink_device = {
- .name = "btwilink",
- .id = -1,
-};
static struct platform_device *panda_devices[] __initdata = {
&leds_gpio,
diff --git a/include/linux/ti_wilink_st.h b/include/linux/ti_wilink_st.h
index 2ef4385..3ca0269 100644
--- a/include/linux/ti_wilink_st.h
+++ b/include/linux/ti_wilink_st.h
@@ -25,6 +25,8 @@
#ifndef TI_WILINK_ST_H
#define TI_WILINK_ST_H
+#include <linux/skbuff.h>
+
/**
* enum proto-type - The protocol on WiLink chips which share a
* common physical interface like UART.
--
1.7.9.1
^ permalink raw reply related [flat|nested] 2+ messages in thread
* [PATCH] ARM: OMAP: WiLink platform data for the PandaBoard
2012-03-06 0:46 [PATCH] ARM: OMAP: WiLink platform data for the PandaBoard Mircea Gherzan
@ 2012-03-06 21:38 ` Tony Lindgren
0 siblings, 0 replies; 2+ messages in thread
From: Tony Lindgren @ 2012-03-06 21:38 UTC (permalink / raw)
To: linux-arm-kernel
Hi,
* Mircea Gherzan <mgherzan@gmail.com> [120305 16:15]:
> The "uim" deamon requires sysfs entries that are filled in using
> this platform data.
>
> Signed-off-by: Mircea Gherzan <mgherzan@gmail.com>
> ---
> arch/arm/mach-omap2/board-omap4panda.c | 23 +++++++++++++++++------
> include/linux/ti_wilink_st.h | 2 ++
> 2 files changed, 19 insertions(+), 6 deletions(-)
>
> diff --git a/arch/arm/mach-omap2/board-omap4panda.c b/arch/arm/mach-omap2/board-omap4panda.c
> index b1d74d6..37b437f 100644
> --- a/arch/arm/mach-omap2/board-omap4panda.c
> +++ b/arch/arm/mach-omap2/board-omap4panda.c
> @@ -27,6 +27,7 @@
> #include <linux/i2c/twl.h>
> #include <linux/regulator/machine.h>
> #include <linux/regulator/fixed.h>
> +#include <linux/ti_wilink_st.h>
> #include <linux/wl12xx.h>
>
> #include <mach/hardware.h>
> @@ -56,15 +57,29 @@
> #define HDMI_GPIO_HPD 63 /* Hotplug detect */
>
> /* 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,
> +};
> +
Please use tabs above before .xxx instead of spaces.
> +static struct platform_device btwilink_device = {
> + .name = "btwilink",
> + .id = -1,
> +};
> +
> static struct gpio_led gpio_leds[] = {
> {
> .name = "pandaboard::status1",
> @@ -91,10 +106,6 @@ static struct platform_device leds_gpio = {
> },
> };
>
> -static struct platform_device btwilink_device = {
> - .name = "btwilink",
> - .id = -1,
> -};
This change is probably not needed, right?
Regards,
Tony
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2012-03-06 21:38 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-03-06 0:46 [PATCH] ARM: OMAP: WiLink platform data for the PandaBoard Mircea Gherzan
2012-03-06 21:38 ` Tony Lindgren
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).