summaryrefslogtreecommitdiffstats
path: root/target/linux/s3c24xx/patches-2.6.26/1116--neo-bluetooth-GTA01_GPIO_MODEM_RST-GTA02_GPIO_M.patch
diff options
context:
space:
mode:
authormirko <mirko@3c298f89-4303-0410-b956-a3cf2f4a3e73>2008-12-13 01:54:56 +0000
committermirko <mirko@3c298f89-4303-0410-b956-a3cf2f4a3e73>2008-12-13 01:54:56 +0000
commita95f9f92e2953d5829a29e95644dc4c4bc93f590 (patch)
tree01f2bf78edb2e3bb1466df9bca72e068632d0e74 /target/linux/s3c24xx/patches-2.6.26/1116--neo-bluetooth-GTA01_GPIO_MODEM_RST-GTA02_GPIO_M.patch
parent9fa649271dbc9c83417488203aeb1668a0238c54 (diff)
change prefix for kernelpatchbase 2.6.26
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@13619 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/s3c24xx/patches-2.6.26/1116--neo-bluetooth-GTA01_GPIO_MODEM_RST-GTA02_GPIO_M.patch')
-rwxr-xr-xtarget/linux/s3c24xx/patches-2.6.26/1116--neo-bluetooth-GTA01_GPIO_MODEM_RST-GTA02_GPIO_M.patch43
1 files changed, 43 insertions, 0 deletions
diff --git a/target/linux/s3c24xx/patches-2.6.26/1116--neo-bluetooth-GTA01_GPIO_MODEM_RST-GTA02_GPIO_M.patch b/target/linux/s3c24xx/patches-2.6.26/1116--neo-bluetooth-GTA01_GPIO_MODEM_RST-GTA02_GPIO_M.patch
new file mode 100755
index 000000000..0be60eb7a
--- /dev/null
+++ b/target/linux/s3c24xx/patches-2.6.26/1116--neo-bluetooth-GTA01_GPIO_MODEM_RST-GTA02_GPIO_M.patch
@@ -0,0 +1,43 @@
+From 09ddf24c0602256435dd4768ab5b3ccf1f6cd51c Mon Sep 17 00:00:00 2001
+From: Holger Freyther <zecke@openmoko.org>
+Date: Fri, 25 Jul 2008 23:06:05 +0100
+Subject: [PATCH] [neo bluetooth] GTA01_GPIO_MODEM_RST != GTA02_GPIO_MODEM_RST
+ The bluetooth enable and modem reset switched the order in
+ gta02. Do not poke the bluetooth dongle when we want to reset
+ the modem.
+
+Signed-Off-By: Holger Freyther <zecke@openmoko.org>
+---
+ arch/arm/plat-s3c24xx/neo1973_pm_gsm.c | 9 +++++++--
+ 1 files changed, 7 insertions(+), 2 deletions(-)
+
+diff --git a/arch/arm/plat-s3c24xx/neo1973_pm_gsm.c b/arch/arm/plat-s3c24xx/neo1973_pm_gsm.c
+index cde3dd8..5ad942e 100644
+--- a/arch/arm/plat-s3c24xx/neo1973_pm_gsm.c
++++ b/arch/arm/plat-s3c24xx/neo1973_pm_gsm.c
+@@ -60,7 +60,9 @@ static ssize_t gsm_read(struct device *dev, struct device_attribute *attr,
+ if (s3c2410_gpio_getpin(GTA01_GPIO_MODEM_ON))
+ goto out_1;
+ } else if (!strcmp(attr->attr.name, "reset")) {
+- if (s3c2410_gpio_getpin(GTA01_GPIO_MODEM_RST))
++ if (machine_is_neo1973_gta01() && s3c2410_gpio_getpin(GTA01_GPIO_MODEM_RST))
++ goto out_1;
++ else if (machine_is_neo1973_gta02() && s3c2410_gpio_getpin(GTA02_GPIO_MODEM_RST))
+ goto out_1;
+ } else if (!strcmp(attr->attr.name, "download")) {
+ if (machine_is_neo1973_gta01()) {
+@@ -135,7 +137,10 @@ static ssize_t gsm_write(struct device *dev, struct device_attribute *attr,
+ }
+ }
+ } else if (!strcmp(attr->attr.name, "reset")) {
+- s3c2410_gpio_setpin(GTA01_GPIO_MODEM_RST, on);
++ if (machine_is_neo1973_gta01())
++ s3c2410_gpio_setpin(GTA01_GPIO_MODEM_RST, on);
++ else if (machine_is_neo1973_gta02())
++ s3c2410_gpio_setpin(GTA02_GPIO_MODEM_RST, on);
+ } else if (!strcmp(attr->attr.name, "download")) {
+ if (machine_is_neo1973_gta01())
+ s3c2410_gpio_setpin(GTA01_GPIO_MODEM_DNLOAD, on);
+--
+1.5.6.3
+