aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/linux/linux-gumstix-2.6.15/modular-init-bluetooth.patch
blob: c5d96f87d91dd57e08f8f0019b5dd0f98938b20e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
Index: linux-2.6.15gum/net/bluetooth/Kconfig
===================================================================
--- linux-2.6.15gum.orig/net/bluetooth/Kconfig
+++ linux-2.6.15gum/net/bluetooth/Kconfig
@@ -30,6 +30,12 @@ menuconfig BT
 	  Bluetooth kernel modules are provided in the BlueZ packages.
 	  For more information, see <http://www.bluez.org/>.
 
+config BT_GUMSTIX
+	tristate
+	default m if BT=m
+	default y if BT=y
+	depends on BT && ARCH_GUMSTIX
+
 config BT_L2CAP
 	tristate "L2CAP protocol support"
 	depends on BT
Index: linux-2.6.15gum/net/bluetooth/Makefile
===================================================================
--- linux-2.6.15gum.orig/net/bluetooth/Makefile
+++ linux-2.6.15gum/net/bluetooth/Makefile
@@ -9,5 +9,6 @@ obj-$(CONFIG_BT_RFCOMM)	+= rfcomm/
 obj-$(CONFIG_BT_BNEP)	+= bnep/
 obj-$(CONFIG_BT_CMTP)	+= cmtp/
 obj-$(CONFIG_BT_HIDP)	+= hidp/
+obj-$(CONFIG_BT_GUMSTIX)+= gumstix_bluetooth.o
 
 bluetooth-objs := af_bluetooth.o hci_core.o hci_conn.o hci_event.o hci_sock.o hci_sysfs.o lib.o
Index: linux-2.6.15gum/net/bluetooth/af_bluetooth.c
===================================================================
--- linux-2.6.15gum.orig/net/bluetooth/af_bluetooth.c
+++ linux-2.6.15gum/net/bluetooth/af_bluetooth.c
@@ -304,10 +304,18 @@ static struct net_proto_family bt_sock_f
 	.create	= bt_sock_create,
 };
 
+#ifdef CONFIG_ARCH_GUMSTIX
+extern void gumstix_bluetooth_load(void);
+#endif
+
 static int __init bt_init(void)
 {
 	BT_INFO("Core ver %s", VERSION);
 
+#ifdef CONFIG_ARCH_GUMSTIX
+	gumstix_bluetooth_load();
+#endif
+
 	sock_register(&bt_sock_family_ops);
 
 	BT_INFO("HCI device and connection manager initialized");
Index: linux-2.6.15gum/net/bluetooth/gumstix_bluetooth.c
===================================================================
--- /dev/null
+++ linux-2.6.15gum/net/bluetooth/gumstix_bluetooth.c
@@ -0,0 +1,50 @@
+/*
+ *  Gumstix bluetooth module intialization driver
+ *
+ *  Author:     Craig Hughes
+ *  Created:    December 9, 2004
+ *  Copyright:  (C) 2004 Craig Hughes
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ */
+
+#include <linux/module.h>
+
+#include <asm/hardware.h>
+#include <asm/arch/pxa-regs.h>
+#include <asm/delay.h>
+
+#include <asm/arch/gumstix.h>
+
+static void gumstix_bluetooth_load(void)
+{
+}
+
+EXPORT_SYMBOL(gumstix_bluetooth_load);
+
+int __init gumstix_bluetooth_init(void)
+{
+	/* Set up GPIOs to use the BTUART */
+	pxa_gpio_mode(GPIO42_HWRXD_MD);
+	pxa_gpio_mode(GPIO43_HWTXD_MD);
+	pxa_gpio_mode(GPIO44_HWCTS_MD);
+	pxa_gpio_mode(GPIO45_HWRTS_MD);
+
+	return 0;
+}
+
+void __exit gumstix_bluetooth_exit(void)
+{
+}
+
+module_init(gumstix_bluetooth_init);
+module_exit(gumstix_bluetooth_exit);
+
+MODULE_LICENSE("GPL");
+MODULE_AUTHOR("Craig Hughes <craig@gumstix.com>");
+MODULE_DESCRIPTION("Gumstix board bluetooth module initialization driver");
+MODULE_VERSION("1:0.1");