mirror of
https://git.yoctoproject.org/meta-ti
synced 2026-07-16 22:38:04 +00:00
linux-mainline 3.2: kernel recipe based on mainline 3.2.16 with additional patches for e.g. beagleboard on top
This patchset is managed in https://github.com/beagleboard/kernel/tree/beagleboard-3.2 by Robert Nelson and myself. Tested on beagleboard-xM/Angstrom Signed-off-by: Koen Kooi <koen@dominion.thruhere.net> Signed-off-by: Denys Dmytriyenko <denys@ti.com>
This commit is contained in:
committed by
Denys Dmytriyenko
parent
aff1018e66
commit
4e18d70247
@@ -0,0 +1,27 @@
|
||||
From 70fa21fa8918eaa6eb4e7bc98be328412804f52c Mon Sep 17 00:00:00 2001
|
||||
From: Robert Nelson <robertcnelson@gmail.com>
|
||||
Date: Tue, 2 Aug 2011 21:55:34 -0500
|
||||
Subject: [PATCH 1/3] panda: fix wl12xx regulator
|
||||
|
||||
pulled from: http://elinux.org/Panda_How_to_kernel_3_0_rel
|
||||
|
||||
Signed-off-by: Robert Nelson <robertcnelson@gmail.com>
|
||||
---
|
||||
arch/arm/mach-omap2/twl-common.c | 1 +
|
||||
1 files changed, 1 insertions(+), 0 deletions(-)
|
||||
|
||||
diff --git a/arch/arm/mach-omap2/twl-common.c b/arch/arm/mach-omap2/twl-common.c
|
||||
index 10b20c6..5a1f23a 100644
|
||||
--- a/arch/arm/mach-omap2/twl-common.c
|
||||
+++ b/arch/arm/mach-omap2/twl-common.c
|
||||
@@ -281,6 +281,7 @@ static struct regulator_init_data omap4_vusb_idata = {
|
||||
static struct regulator_init_data omap4_clk32kg_idata = {
|
||||
.constraints = {
|
||||
.valid_ops_mask = REGULATOR_CHANGE_STATUS,
|
||||
+ .always_on = true,
|
||||
},
|
||||
};
|
||||
|
||||
--
|
||||
1.7.7.4
|
||||
|
||||
@@ -0,0 +1,88 @@
|
||||
From b0bd9a744aaaa95cae2640d00b3e046862399f4d Mon Sep 17 00:00:00 2001
|
||||
From: Robert Nelson <robertcnelson@gmail.com>
|
||||
Date: Fri, 16 Mar 2012 10:23:09 -0500
|
||||
Subject: [PATCH 2/3] panda enable bluetooth
|
||||
|
||||
The PandaBoard features a Texas Instruments WiLink7 Bluetooth
|
||||
chip, supported by the "btwilink" driver. 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: Robert Nelson <robertcnelson@gmail.com>
|
||||
---
|
||||
arch/arm/mach-omap2/board-omap4panda.c | 21 +++++++++++++++++++--
|
||||
include/linux/ti_wilink_st.h | 2 ++
|
||||
2 files changed, 21 insertions(+), 2 deletions(-)
|
||||
|
||||
diff --git a/arch/arm/mach-omap2/board-omap4panda.c b/arch/arm/mach-omap2/board-omap4panda.c
|
||||
index 51b1c93..9f133ce 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,9 +106,11 @@ static struct platform_device leds_gpio = {
|
||||
},
|
||||
};
|
||||
|
||||
+
|
||||
static struct platform_device *panda_devices[] __initdata = {
|
||||
&leds_gpio,
|
||||
&wl1271_device,
|
||||
+ &btwilink_device,
|
||||
};
|
||||
|
||||
static const struct usbhs_omap_board_data usbhs_bdata __initconst = {
|
||||
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.7.4
|
||||
|
||||
+35
@@ -0,0 +1,35 @@
|
||||
From d55373d5923e5486c0f63c3fe907bb3b168673b4 Mon Sep 17 00:00:00 2001
|
||||
From: Ricardo Salveti de Araujo <ricardo.salveti@linaro.org>
|
||||
Date: Tue, 25 Oct 2011 10:06:39 +0200
|
||||
Subject: [PATCH 3/3] ti-st/st-kim: fixing firmware path
|
||||
|
||||
Signed-off-by: Ricardo Salveti de Araujo <ricardo.salveti@linaro.org>
|
||||
---
|
||||
drivers/misc/ti-st/st_kim.c | 4 ++--
|
||||
1 files changed, 2 insertions(+), 2 deletions(-)
|
||||
|
||||
diff --git a/drivers/misc/ti-st/st_kim.c b/drivers/misc/ti-st/st_kim.c
|
||||
index 43ef8d1..00c2ecd 100644
|
||||
--- a/drivers/misc/ti-st/st_kim.c
|
||||
+++ b/drivers/misc/ti-st/st_kim.c
|
||||
@@ -224,7 +224,7 @@ static long read_local_version(struct kim_data_s *kim_gdata, char *bts_scr_name)
|
||||
if (version & 0x8000)
|
||||
maj_ver |= 0x0008;
|
||||
|
||||
- sprintf(bts_scr_name, "TIInit_%d.%d.%d.bts", chip, maj_ver, min_ver);
|
||||
+ sprintf(bts_scr_name, "ti-connectivity/TIInit_%d.%d.%d.bts", chip, maj_ver, min_ver);
|
||||
|
||||
/* to be accessed later via sysfs entry */
|
||||
kim_gdata->version.full = version;
|
||||
@@ -267,7 +267,7 @@ static long download_firmware(struct kim_data_s *kim_gdata)
|
||||
long len = 0;
|
||||
unsigned char *ptr = NULL;
|
||||
unsigned char *action_ptr = NULL;
|
||||
- unsigned char bts_scr_name[30] = { 0 }; /* 30 char long bts scr name? */
|
||||
+ unsigned char bts_scr_name[50] = { 0 }; /* 50 char long bts scr name? */
|
||||
int wr_room_space;
|
||||
int cmd_size;
|
||||
unsigned long timeout;
|
||||
--
|
||||
1.7.7.4
|
||||
|
||||
Reference in New Issue
Block a user