Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
linux
Commits
caeae7ae
Commit
caeae7ae
authored
Feb 25, 2004
by
David S. Miller
Browse files
Options
Browse Files
Download
Plain Diff
Merge
http://linux-mh.bkbits.net/bluetooth-2.6
into nuts.davemloft.net:/disk1/BK/net-2.6
parents
f11682f8
7f9e1ee0
Changes
17
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
17 changed files
with
221 additions
and
121 deletions
+221
-121
drivers/bluetooth/bfusb.c
drivers/bluetooth/bfusb.c
+30
-21
drivers/bluetooth/bluecard_cs.c
drivers/bluetooth/bluecard_cs.c
+17
-9
drivers/bluetooth/bt3c_cs.c
drivers/bluetooth/bt3c_cs.c
+18
-10
drivers/bluetooth/btuart_cs.c
drivers/bluetooth/btuart_cs.c
+18
-10
drivers/bluetooth/dtl1_cs.c
drivers/bluetooth/dtl1_cs.c
+17
-9
drivers/bluetooth/hci_bcsp.c
drivers/bluetooth/hci_bcsp.c
+1
-1
drivers/bluetooth/hci_h4.c
drivers/bluetooth/hci_h4.c
+2
-2
drivers/bluetooth/hci_ldisc.c
drivers/bluetooth/hci_ldisc.c
+14
-6
drivers/bluetooth/hci_uart.h
drivers/bluetooth/hci_uart.h
+1
-1
drivers/bluetooth/hci_usb.c
drivers/bluetooth/hci_usb.c
+55
-42
drivers/bluetooth/hci_usb.h
drivers/bluetooth/hci_usb.h
+1
-1
drivers/bluetooth/hci_vhci.c
drivers/bluetooth/hci_vhci.c
+17
-8
drivers/bluetooth/hci_vhci.h
drivers/bluetooth/hci_vhci.h
+1
-1
include/net/bluetooth/hci_core.h
include/net/bluetooth/hci_core.h
+3
-0
net/bluetooth/hci_core.c
net/bluetooth/hci_core.c
+21
-0
net/bluetooth/hci_sysfs.c
net/bluetooth/hci_sysfs.c
+3
-0
net/bluetooth/syms.c
net/bluetooth/syms.c
+2
-0
No files found.
drivers/bluetooth/bfusb.c
View file @
caeae7ae
...
...
@@ -70,7 +70,7 @@ MODULE_DEVICE_TABLE(usb, bfusb_table);
#define BFUSB_MAX_BULK_RX 2
struct
bfusb
{
struct
hci_dev
hdev
;
struct
hci_dev
*
hdev
;
unsigned
long
state
;
...
...
@@ -155,7 +155,7 @@ static int bfusb_send_bulk(struct bfusb *bfusb, struct sk_buff *skb)
err
=
usb_submit_urb
(
urb
,
GFP_ATOMIC
);
if
(
err
)
{
BT_ERR
(
"%s bulk tx submit failed urb %p err %d"
,
bfusb
->
hdev
.
name
,
urb
,
err
);
bfusb
->
hdev
->
name
,
urb
,
err
);
skb_unlink
(
skb
);
usb_free_urb
(
urb
);
}
else
...
...
@@ -200,13 +200,13 @@ static void bfusb_tx_complete(struct urb *urb, struct pt_regs *regs)
atomic_dec
(
&
bfusb
->
pending_tx
);
if
(
!
test_bit
(
HCI_RUNNING
,
&
bfusb
->
hdev
.
flags
))
if
(
!
test_bit
(
HCI_RUNNING
,
&
bfusb
->
hdev
->
flags
))
return
;
if
(
!
urb
->
status
)
bfusb
->
hdev
.
stat
.
byte_tx
+=
skb
->
len
;
bfusb
->
hdev
->
stat
.
byte_tx
+=
skb
->
len
;
else
bfusb
->
hdev
.
stat
.
err_tx
++
;
bfusb
->
hdev
->
stat
.
err_tx
++
;
read_lock
(
&
bfusb
->
lock
);
...
...
@@ -250,7 +250,7 @@ static int bfusb_rx_submit(struct bfusb *bfusb, struct urb *urb)
err
=
usb_submit_urb
(
urb
,
GFP_ATOMIC
);
if
(
err
)
{
BT_ERR
(
"%s bulk rx submit failed urb %p err %d"
,
bfusb
->
hdev
.
name
,
urb
,
err
);
bfusb
->
hdev
->
name
,
urb
,
err
);
skb_unlink
(
skb
);
kfree_skb
(
skb
);
usb_free_urb
(
urb
);
...
...
@@ -264,7 +264,7 @@ static inline int bfusb_recv_block(struct bfusb *bfusb, int hdr, unsigned char *
BT_DBG
(
"bfusb %p hdr 0x%02x data %p len %d"
,
bfusb
,
hdr
,
data
,
len
);
if
(
hdr
&
0x10
)
{
BT_ERR
(
"%s error in block"
,
bfusb
->
hdev
.
name
);
BT_ERR
(
"%s error in block"
,
bfusb
->
hdev
->
name
);
if
(
bfusb
->
reassembly
)
kfree_skb
(
bfusb
->
reassembly
);
bfusb
->
reassembly
=
NULL
;
...
...
@@ -277,13 +277,13 @@ static inline int bfusb_recv_block(struct bfusb *bfusb, int hdr, unsigned char *
int
pkt_len
=
0
;
if
(
bfusb
->
reassembly
)
{
BT_ERR
(
"%s unexpected start block"
,
bfusb
->
hdev
.
name
);
BT_ERR
(
"%s unexpected start block"
,
bfusb
->
hdev
->
name
);
kfree_skb
(
bfusb
->
reassembly
);
bfusb
->
reassembly
=
NULL
;
}
if
(
len
<
1
)
{
BT_ERR
(
"%s no packet type found"
,
bfusb
->
hdev
.
name
);
BT_ERR
(
"%s no packet type found"
,
bfusb
->
hdev
->
name
);
return
-
EPROTO
;
}
...
...
@@ -295,7 +295,7 @@ static inline int bfusb_recv_block(struct bfusb *bfusb, int hdr, unsigned char *
struct
hci_event_hdr
*
hdr
=
(
struct
hci_event_hdr
*
)
data
;
pkt_len
=
HCI_EVENT_HDR_SIZE
+
hdr
->
plen
;
}
else
{
BT_ERR
(
"%s event block is too short"
,
bfusb
->
hdev
.
name
);
BT_ERR
(
"%s event block is too short"
,
bfusb
->
hdev
->
name
);
return
-
EILSEQ
;
}
break
;
...
...
@@ -305,7 +305,7 @@ static inline int bfusb_recv_block(struct bfusb *bfusb, int hdr, unsigned char *
struct
hci_acl_hdr
*
hdr
=
(
struct
hci_acl_hdr
*
)
data
;
pkt_len
=
HCI_ACL_HDR_SIZE
+
__le16_to_cpu
(
hdr
->
dlen
);
}
else
{
BT_ERR
(
"%s data block is too short"
,
bfusb
->
hdev
.
name
);
BT_ERR
(
"%s data block is too short"
,
bfusb
->
hdev
->
name
);
return
-
EILSEQ
;
}
break
;
...
...
@@ -315,7 +315,7 @@ static inline int bfusb_recv_block(struct bfusb *bfusb, int hdr, unsigned char *
struct
hci_sco_hdr
*
hdr
=
(
struct
hci_sco_hdr
*
)
data
;
pkt_len
=
HCI_SCO_HDR_SIZE
+
hdr
->
dlen
;
}
else
{
BT_ERR
(
"%s audio block is too short"
,
bfusb
->
hdev
.
name
);
BT_ERR
(
"%s audio block is too short"
,
bfusb
->
hdev
->
name
);
return
-
EILSEQ
;
}
break
;
...
...
@@ -323,17 +323,17 @@ static inline int bfusb_recv_block(struct bfusb *bfusb, int hdr, unsigned char *
skb
=
bt_skb_alloc
(
pkt_len
,
GFP_ATOMIC
);
if
(
!
skb
)
{
BT_ERR
(
"%s no memory for the packet"
,
bfusb
->
hdev
.
name
);
BT_ERR
(
"%s no memory for the packet"
,
bfusb
->
hdev
->
name
);
return
-
ENOMEM
;
}
skb
->
dev
=
(
void
*
)
&
bfusb
->
hdev
;
skb
->
dev
=
(
void
*
)
bfusb
->
hdev
;
skb
->
pkt_type
=
pkt_type
;
bfusb
->
reassembly
=
skb
;
}
else
{
if
(
!
bfusb
->
reassembly
)
{
BT_ERR
(
"%s unexpected continuation block"
,
bfusb
->
hdev
.
name
);
BT_ERR
(
"%s unexpected continuation block"
,
bfusb
->
hdev
->
name
);
return
-
EIO
;
}
}
...
...
@@ -359,7 +359,7 @@ static void bfusb_rx_complete(struct urb *urb, struct pt_regs *regs)
BT_DBG
(
"bfusb %p urb %p skb %p len %d"
,
bfusb
,
urb
,
skb
,
skb
->
len
);
if
(
!
test_bit
(
HCI_RUNNING
,
&
bfusb
->
hdev
.
flags
))
if
(
!
test_bit
(
HCI_RUNNING
,
&
bfusb
->
hdev
->
flags
))
return
;
read_lock
(
&
bfusb
->
lock
);
...
...
@@ -367,7 +367,7 @@ static void bfusb_rx_complete(struct urb *urb, struct pt_regs *regs)
if
(
urb
->
status
||
!
count
)
goto
resubmit
;
bfusb
->
hdev
.
stat
.
byte_rx
+=
count
;
bfusb
->
hdev
->
stat
.
byte_rx
+=
count
;
skb_put
(
skb
,
count
);
...
...
@@ -386,7 +386,7 @@ static void bfusb_rx_complete(struct urb *urb, struct pt_regs *regs)
if
(
count
<
len
)
{
BT_ERR
(
"%s block extends over URB buffer ranges"
,
bfusb
->
hdev
.
name
);
bfusb
->
hdev
->
name
);
}
if
((
hdr
&
0xe1
)
==
0xc1
)
...
...
@@ -411,7 +411,7 @@ static void bfusb_rx_complete(struct urb *urb, struct pt_regs *regs)
err
=
usb_submit_urb
(
urb
,
GFP_ATOMIC
);
if
(
err
)
{
BT_ERR
(
"%s bulk resubmit failed urb %p err %d"
,
bfusb
->
hdev
.
name
,
urb
,
err
);
bfusb
->
hdev
->
name
,
urb
,
err
);
}
read_unlock
(
&
bfusb
->
lock
);
...
...
@@ -698,7 +698,13 @@ static int bfusb_probe(struct usb_interface *intf, const struct usb_device_id *i
release_firmware
(
firmware
);
/* Initialize and register HCI device */
hdev
=
&
bfusb
->
hdev
;
hdev
=
hci_alloc_dev
();
if
(
!
hdev
)
{
BT_ERR
(
"Can't allocate HCI device"
);
goto
error
;
}
bfusb
->
hdev
=
hdev
;
hdev
->
type
=
HCI_USB
;
hdev
->
driver_data
=
bfusb
;
...
...
@@ -715,6 +721,7 @@ static int bfusb_probe(struct usb_interface *intf, const struct usb_device_id *i
if
(
hci_register_dev
(
hdev
)
<
0
)
{
BT_ERR
(
"Can't register HCI device"
);
hci_free_dev
(
hdev
);
goto
error
;
}
...
...
@@ -735,7 +742,7 @@ static int bfusb_probe(struct usb_interface *intf, const struct usb_device_id *i
static
void
bfusb_disconnect
(
struct
usb_interface
*
intf
)
{
struct
bfusb
*
bfusb
=
usb_get_intfdata
(
intf
);
struct
hci_dev
*
hdev
=
&
bfusb
->
hdev
;
struct
hci_dev
*
hdev
=
bfusb
->
hdev
;
BT_DBG
(
"intf %p"
,
intf
);
...
...
@@ -748,6 +755,8 @@ static void bfusb_disconnect(struct usb_interface *intf)
if
(
hci_unregister_dev
(
hdev
)
<
0
)
BT_ERR
(
"Can't unregister HCI device %s"
,
hdev
->
name
);
hci_free_dev
(
hdev
);
}
static
struct
usb_driver
bfusb_driver
=
{
...
...
drivers/bluetooth/bluecard_cs.c
View file @
caeae7ae
...
...
@@ -72,7 +72,7 @@ typedef struct bluecard_info_t {
dev_link_t
link
;
dev_node_t
node
;
struct
hci_dev
hdev
;
struct
hci_dev
*
hdev
;
spinlock_t
lock
;
/* For serializing operations */
struct
timer_list
timer
;
/* For LED control */
...
...
@@ -333,7 +333,7 @@ static void bluecard_write_wakeup(bluecard_info_t *info)
skb_queue_head
(
&
(
info
->
txq
),
skb
);
}
info
->
hdev
.
stat
.
byte_tx
+=
len
;
info
->
hdev
->
stat
.
byte_tx
+=
len
;
/* Change buffer */
change_bit
(
XMIT_BUFFER_NUMBER
,
&
(
info
->
tx_state
));
...
...
@@ -404,7 +404,7 @@ static void bluecard_receive(bluecard_info_t *info, unsigned int offset)
if
(
info
->
rx_state
==
RECV_WAIT_PACKET_TYPE
)
{
info
->
rx_skb
->
dev
=
(
void
*
)
&
(
info
->
hdev
)
;
info
->
rx_skb
->
dev
=
(
void
*
)
info
->
hdev
;
info
->
rx_skb
->
pkt_type
=
buf
[
i
];
switch
(
info
->
rx_skb
->
pkt_type
)
{
...
...
@@ -440,7 +440,7 @@ static void bluecard_receive(bluecard_info_t *info, unsigned int offset)
default:
/* unknown packet */
printk
(
KERN_WARNING
"bluecard_cs: Unknown HCI packet with type 0x%02x received.
\n
"
,
info
->
rx_skb
->
pkt_type
);
info
->
hdev
.
stat
.
err_rx
++
;
info
->
hdev
->
stat
.
err_rx
++
;
kfree_skb
(
info
->
rx_skb
);
info
->
rx_skb
=
NULL
;
...
...
@@ -495,7 +495,7 @@ static void bluecard_receive(bluecard_info_t *info, unsigned int offset)
}
info
->
hdev
.
stat
.
byte_rx
+=
len
;
info
->
hdev
->
stat
.
byte_rx
+=
len
;
}
...
...
@@ -778,8 +778,13 @@ int bluecard_open(bluecard_info_t *info)
/* Initialize and register HCI device */
hdev
=
hci_alloc_dev
();
if
(
!
hdev
)
{
printk
(
KERN_WARNING
"bluecard_cs: Can't allocate HCI device.
\n
"
);
return
-
ENOMEM
;
}
hdev
=
&
(
info
->
hdev
)
;
info
->
hdev
=
hdev
;
hdev
->
type
=
HCI_PCCARD
;
hdev
->
driver_data
=
info
;
...
...
@@ -794,7 +799,8 @@ int bluecard_open(bluecard_info_t *info)
hdev
->
owner
=
THIS_MODULE
;
if
(
hci_register_dev
(
hdev
)
<
0
)
{
printk
(
KERN_WARNING
"bluecard_cs: Can't register HCI device %s.
\n
"
,
hdev
->
name
);
printk
(
KERN_WARNING
"bluecard_cs: Can't register HCI device.
\n
"
);
hci_free_dev
(
hdev
);
return
-
ENODEV
;
}
...
...
@@ -805,7 +811,7 @@ int bluecard_open(bluecard_info_t *info)
int
bluecard_close
(
bluecard_info_t
*
info
)
{
unsigned
int
iobase
=
info
->
link
.
io
.
BasePort1
;
struct
hci_dev
*
hdev
=
&
(
info
->
hdev
)
;
struct
hci_dev
*
hdev
=
info
->
hdev
;
bluecard_hci_close
(
hdev
);
...
...
@@ -821,6 +827,8 @@ int bluecard_close(bluecard_info_t *info)
if
(
hci_unregister_dev
(
hdev
)
<
0
)
printk
(
KERN_WARNING
"bluecard_cs: Can't unregister HCI device %s.
\n
"
,
hdev
->
name
);
hci_free_dev
(
hdev
);
return
0
;
}
...
...
@@ -988,7 +996,7 @@ void bluecard_config(dev_link_t *link)
if
(
bluecard_open
(
info
)
!=
0
)
goto
failed
;
strcpy
(
info
->
node
.
dev_name
,
info
->
hdev
.
name
);
strcpy
(
info
->
node
.
dev_name
,
info
->
hdev
->
name
);
link
->
dev
=
&
info
->
node
;
link
->
state
&=
~
DEV_CONFIG_PENDING
;
...
...
drivers/bluetooth/bt3c_cs.c
View file @
caeae7ae
...
...
@@ -79,7 +79,7 @@ typedef struct bt3c_info_t {
dev_link_t
link
;
dev_node_t
node
;
struct
hci_dev
hdev
;
struct
hci_dev
*
hdev
;
spinlock_t
lock
;
/* For serializing operations */
...
...
@@ -227,7 +227,7 @@ static void bt3c_write_wakeup(bt3c_info_t *info, int from)
kfree_skb
(
skb
);
info
->
hdev
.
stat
.
byte_tx
+=
len
;
info
->
hdev
->
stat
.
byte_tx
+=
len
;
}
while
(
0
);
...
...
@@ -253,7 +253,7 @@ static void bt3c_receive(bt3c_info_t *info)
bt3c_address
(
iobase
,
0x7480
);
while
(
size
<
avail
)
{
size
++
;
info
->
hdev
.
stat
.
byte_rx
++
;
info
->
hdev
->
stat
.
byte_rx
++
;
/* Allocate packet */
if
(
info
->
rx_skb
==
NULL
)
{
...
...
@@ -268,7 +268,7 @@ static void bt3c_receive(bt3c_info_t *info)
if
(
info
->
rx_state
==
RECV_WAIT_PACKET_TYPE
)
{
info
->
rx_skb
->
dev
=
(
void
*
)
&
(
info
->
hdev
)
;
info
->
rx_skb
->
dev
=
(
void
*
)
info
->
hdev
;
info
->
rx_skb
->
pkt_type
=
inb
(
iobase
+
DATA_L
);
inb
(
iobase
+
DATA_H
);
//printk("bt3c: PACKET_TYPE=%02x\n", info->rx_skb->pkt_type);
...
...
@@ -293,8 +293,8 @@ static void bt3c_receive(bt3c_info_t *info)
default:
/* Unknown packet */
printk
(
KERN_WARNING
"bt3c_cs: Unknown HCI packet with type 0x%02x received.
\n
"
,
info
->
rx_skb
->
pkt_type
);
info
->
hdev
.
stat
.
err_rx
++
;
clear_bit
(
HCI_RUNNING
,
&
(
info
->
hdev
.
flags
));
info
->
hdev
->
stat
.
err_rx
++
;
clear_bit
(
HCI_RUNNING
,
&
(
info
->
hdev
->
flags
));
kfree_skb
(
info
->
rx_skb
);
info
->
rx_skb
=
NULL
;
...
...
@@ -534,8 +534,13 @@ int bt3c_open(bt3c_info_t *info)
/* Initialize and register HCI device */
hdev
=
hci_alloc_dev
();
if
(
!
hdev
)
{
printk
(
KERN_WARNING
"bt3c_cs: Can't allocate HCI device.
\n
"
);
return
-
ENOMEM
;
}
hdev
=
&
(
info
->
hdev
)
;
info
->
hdev
=
hdev
;
hdev
->
type
=
HCI_PCCARD
;
hdev
->
driver_data
=
info
;
...
...
@@ -550,7 +555,8 @@ int bt3c_open(bt3c_info_t *info)
hdev
->
owner
=
THIS_MODULE
;
if
(
hci_register_dev
(
hdev
)
<
0
)
{
printk
(
KERN_WARNING
"bt3c_cs: Can't register HCI device %s.
\n
"
,
hdev
->
name
);
printk
(
KERN_WARNING
"bt3c_cs: Can't register HCI device.
\n
"
);
hci_free_dev
(
hdev
);
return
-
ENODEV
;
}
...
...
@@ -560,13 +566,15 @@ int bt3c_open(bt3c_info_t *info)
int
bt3c_close
(
bt3c_info_t
*
info
)
{
struct
hci_dev
*
hdev
=
&
(
info
->
hdev
)
;
struct
hci_dev
*
hdev
=
info
->
hdev
;
bt3c_hci_close
(
hdev
);
if
(
hci_unregister_dev
(
hdev
)
<
0
)
printk
(
KERN_WARNING
"bt3c_cs: Can't unregister HCI device %s.
\n
"
,
hdev
->
name
);
hci_free_dev
(
hdev
);
return
0
;
}
...
...
@@ -781,7 +789,7 @@ void bt3c_config(dev_link_t *link)
if
(
bt3c_open
(
info
)
!=
0
)
goto
failed
;
strcpy
(
info
->
node
.
dev_name
,
info
->
hdev
.
name
);
strcpy
(
info
->
node
.
dev_name
,
info
->
hdev
->
name
);
link
->
dev
=
&
info
->
node
;
link
->
state
&=
~
DEV_CONFIG_PENDING
;
...
...
drivers/bluetooth/btuart_cs.c
View file @
caeae7ae
...
...
@@ -77,7 +77,7 @@ typedef struct btuart_info_t {
dev_link_t
link
;
dev_node_t
node
;
struct
hci_dev
hdev
;
struct
hci_dev
*
hdev
;
spinlock_t
lock
;
/* For serializing operations */
...
...
@@ -181,7 +181,7 @@ static void btuart_write_wakeup(btuart_info_t *info)
skb_queue_head
(
&
(
info
->
txq
),
skb
);
}
info
->
hdev
.
stat
.
byte_tx
+=
len
;
info
->
hdev
->
stat
.
byte_tx
+=
len
;
}
while
(
test_bit
(
XMIT_WAKEUP
,
&
(
info
->
tx_state
)));
...
...
@@ -202,7 +202,7 @@ static void btuart_receive(btuart_info_t *info)
iobase
=
info
->
link
.
io
.
BasePort1
;
do
{
info
->
hdev
.
stat
.
byte_rx
++
;
info
->
hdev
->
stat
.
byte_rx
++
;
/* Allocate packet */
if
(
info
->
rx_skb
==
NULL
)
{
...
...
@@ -216,7 +216,7 @@ static void btuart_receive(btuart_info_t *info)
if
(
info
->
rx_state
==
RECV_WAIT_PACKET_TYPE
)
{
info
->
rx_skb
->
dev
=
(
void
*
)
&
(
info
->
hdev
)
;
info
->
rx_skb
->
dev
=
(
void
*
)
info
->
hdev
;
info
->
rx_skb
->
pkt_type
=
inb
(
iobase
+
UART_RX
);
switch
(
info
->
rx_skb
->
pkt_type
)
{
...
...
@@ -239,8 +239,8 @@ static void btuart_receive(btuart_info_t *info)
default:
/* Unknown packet */
printk
(
KERN_WARNING
"btuart_cs: Unknown HCI packet with type 0x%02x received.
\n
"
,
info
->
rx_skb
->
pkt_type
);
info
->
hdev
.
stat
.
err_rx
++
;
clear_bit
(
HCI_RUNNING
,
&
(
info
->
hdev
.
flags
));
info
->
hdev
->
stat
.
err_rx
++
;
clear_bit
(
HCI_RUNNING
,
&
(
info
->
hdev
->
flags
));
kfree_skb
(
info
->
rx_skb
);
info
->
rx_skb
=
NULL
;
...
...
@@ -529,8 +529,13 @@ int btuart_open(btuart_info_t *info)
/* Initialize and register HCI device */
hdev
=
hci_alloc_dev
();
if
(
!
hdev
)
{
printk
(
KERN_WARNING
"btuart_cs: Can't allocate HCI device.
\n
"
);
return
-
ENOMEM
;
}
hdev
=
&
(
info
->
hdev
)
;
info
->
hdev
=
hdev
;
hdev
->
type
=
HCI_PCCARD
;
hdev
->
driver_data
=
info
;
...
...
@@ -545,7 +550,8 @@ int btuart_open(btuart_info_t *info)
hdev
->
owner
=
THIS_MODULE
;
if
(
hci_register_dev
(
hdev
)
<
0
)
{
printk
(
KERN_WARNING
"btuart_cs: Can't register HCI device %s.
\n
"
,
hdev
->
name
);
printk
(
KERN_WARNING
"btuart_cs: Can't register HCI device.
\n
"
);
hci_free_dev
(
hdev
);
return
-
ENODEV
;
}
...
...
@@ -557,7 +563,7 @@ int btuart_close(btuart_info_t *info)
{
unsigned
long
flags
;
unsigned
int
iobase
=
info
->
link
.
io
.
BasePort1
;
struct
hci_dev
*
hdev
=
&
(
info
->
hdev
)
;
struct
hci_dev
*
hdev
=
info
->
hdev
;
btuart_hci_close
(
hdev
);
...
...
@@ -574,6 +580,8 @@ int btuart_close(btuart_info_t *info)
if
(
hci_unregister_dev
(
hdev
)
<
0
)
printk
(
KERN_WARNING
"btuart_cs: Can't unregister HCI device %s.
\n
"
,
hdev
->
name
);
hci_free_dev
(
hdev
);
return
0
;
}
...
...
@@ -789,7 +797,7 @@ void btuart_config(dev_link_t *link)
if
(
btuart_open
(
info
)
!=
0
)
goto
failed
;
strcpy
(
info
->
node
.
dev_name
,
info
->
hdev
.
name
);
strcpy
(
info
->
node
.
dev_name
,
info
->
hdev
->
name
);
link
->
dev
=
&
info
->
node
;
link
->
state
&=
~
DEV_CONFIG_PENDING
;
...
...
drivers/bluetooth/dtl1_cs.c
View file @
caeae7ae
...
...
@@ -77,7 +77,7 @@ typedef struct dtl1_info_t {
dev_link_t
link
;
dev_node_t
node
;
struct
hci_dev
hdev
;
struct
hci_dev
*
hdev
;
spinlock_t
lock
;
/* For serializing operations */
...
...
@@ -188,7 +188,7 @@ static void dtl1_write_wakeup(dtl1_info_t *info)
skb_queue_head
(
&
(
info
->
txq
),
skb
);
}
info
->
hdev
.
stat
.
byte_tx
+=
len
;
info
->
hdev
->
stat
.
byte_tx
+=
len
;
}
while
(
test_bit
(
XMIT_WAKEUP
,
&
(
info
->
tx_state
)));
...
...
@@ -233,7 +233,7 @@ static void dtl1_receive(dtl1_info_t *info)
iobase
=
info
->
link
.
io
.
BasePort1
;
do
{
info
->
hdev
.
stat
.
byte_rx
++
;
info
->
hdev
->
stat
.
byte_rx
++
;
/* Allocate packet */
if
(
info
->
rx_skb
==
NULL
)
...
...
@@ -277,7 +277,7 @@ static void dtl1_receive(dtl1_info_t *info)
case
0x83
:
case
0x84
:
/* send frame to the HCI layer */
info
->
rx_skb
->
dev
=
(
void
*
)
&
(
info
->
hdev
)
;
info
->
rx_skb
->
dev
=
(
void
*
)
info
->
hdev
;
info
->
rx_skb
->
pkt_type
&=
0x0f
;
hci_recv_frame
(
info
->
rx_skb
);
break
;
...
...
@@ -508,8 +508,13 @@ int dtl1_open(dtl1_info_t *info)
/* Initialize and register HCI device */
hdev
=
hci_alloc_dev
();
if
(
!
hdev
)
{
printk
(
KERN_WARNING
"dtl1_cs: Can't allocate HCI device.
\n
"
);
return
-
ENOMEM
;
}
hdev
=
&
(
info
->
hdev
)
;
info
->
hdev
=
hdev
;
hdev
->
type
=
HCI_PCCARD
;
hdev
->
driver_data
=
info
;
...
...
@@ -522,9 +527,10 @@ int dtl1_open(dtl1_info_t *info)
hdev
->
ioctl
=
dtl1_hci_ioctl
;
hdev
->
owner
=
THIS_MODULE
;
if
(
hci_register_dev
(
hdev
)
<
0
)
{
printk
(
KERN_WARNING
"dtl1_cs: Can't register HCI device %s.
\n
"
,
hdev
->
name
);
printk
(
KERN_WARNING
"dtl1_cs: Can't register HCI device.
\n
"
);
hci_free_dev
(
hdev
);
return
-
ENODEV
;
}
...
...
@@ -536,7 +542,7 @@ int dtl1_close(dtl1_info_t *info)
{
unsigned
long
flags
;
unsigned
int
iobase
=
info
->
link
.
io
.
BasePort1
;
struct
hci_dev
*
hdev
=
&
(
info
->
hdev
)
;
struct
hci_dev
*
hdev
=
info
->
hdev
;
dtl1_hci_close
(
hdev
);
...
...
@@ -553,6 +559,8 @@ int dtl1_close(dtl1_info_t *info)
if
(
hci_unregister_dev
(
hdev
)
<
0
)
printk
(
KERN_WARNING
"dtl1_cs: Can't unregister HCI device %s.
\n
"
,
hdev
->
name
);
hci_free_dev
(
hdev
);
return
0
;
}
...
...
@@ -741,7 +749,7 @@ void dtl1_config(dev_link_t *link)
if
(
dtl1_open
(
info
)
!=
0
)
goto
failed
;
strcpy
(
info
->
node
.
dev_name
,
info
->
hdev
.
name
);
strcpy
(
info
->
node
.
dev_name
,
info
->
hdev
->
name
);
link
->
dev
=
&
info
->
node
;
link
->
state
&=
~
DEV_CONFIG_PENDING
;
...
...
drivers/bluetooth/hci_bcsp.c
View file @
caeae7ae
...
...
@@ -617,7 +617,7 @@ static int bcsp_recv(struct hci_uart *hu, void *data, int count)
bcsp
->
rx_count
=
0
;
return
0
;
}
bcsp
->
rx_skb
->
dev
=
(
void
*
)
&
hu
->
hdev
;
bcsp
->
rx_skb
->
dev
=
(
void
*
)
hu
->
hdev
;
break
;
}
break
;
...
...
drivers/bluetooth/hci_h4.c
View file @
caeae7ae
...
...
@@ -229,7 +229,7 @@ static int h4_recv(struct hci_uart *hu, void *data, int count)
default:
BT_ERR
(
"Unknown HCI packet type %2.2x"
,
(
__u8
)
*
ptr
);
hu
->
hdev
.
stat
.
err_rx
++
;
hu
->
hdev
->
stat
.
err_rx
++
;
ptr
++
;
count
--
;
continue
;
};
...
...
@@ -243,7 +243,7 @@ static int h4_recv(struct hci_uart *hu, void *data, int count)
h4
->
rx_count
=
0
;
return
0
;
}
h4
->
rx_skb
->
dev
=
(
void
*
)
&
hu
->
hdev
;
h4
->
rx_skb
->
dev
=
(
void
*
)
hu
->
hdev
;
h4
->
rx_skb
->
pkt_type
=
type
;
}
return
count
;
...
...
drivers/bluetooth/hci_ldisc.c
View file @
caeae7ae
...
...
@@ -96,7 +96,7 @@ static struct hci_uart_proto *hci_uart_get_proto(unsigned int id)
static
inline
void
hci_uart_tx_complete
(
struct
hci_uart
*
hu
,
int
pkt_type
)
{
struct
hci_dev
*
hdev
=
&
hu
->
hdev
;
struct
hci_dev
*
hdev
=
hu
->
hdev
;
/* Update HCI stat counters */
switch
(
pkt_type
)
{
...
...
@@ -127,7 +127,7 @@ static inline struct sk_buff *hci_uart_dequeue(struct hci_uart *hu)
int
hci_uart_tx_wakeup
(
struct
hci_uart
*
hu
)
{
struct
tty_struct
*
tty
=
hu
->
tty
;
struct
hci_dev
*
hdev
=
&
hu
->
hdev
;
struct
hci_dev
*
hdev
=
hu
->
hdev
;
struct
sk_buff
*
skb
;
if
(
test_and_set_bit
(
HCI_UART_SENDING
,
&
hu
->
tx_state
))
{
...
...
@@ -306,12 +306,13 @@ static void hci_uart_tty_close(struct tty_struct *tty)
tty
->
disc_data
=
NULL
;
if
(
hu
)
{
struct
hci_dev
*
hdev
=
&
hu
->
hdev
;
struct
hci_dev
*
hdev
=
hu
->
hdev
;
hci_uart_close
(
hdev
);
if
(
test_and_clear_bit
(
HCI_UART_PROTO_SET
,
&
hu
->
flags
))
{
hu
->
proto
->
close
(
hu
);
hci_unregister_dev
(
hdev
);
hci_free_dev
(
hdev
);
}
}
}
...
...
@@ -380,7 +381,7 @@ static void hci_uart_tty_receive(struct tty_struct *tty, const __u8 *data, char
spin_lock
(
&
hu
->
rx_lock
);
hu
->
proto
->
recv
(
hu
,
(
void
*
)
data
,
count
);
hu
->
hdev
.
stat
.
byte_rx
+=
count
;
hu
->
hdev
->
stat
.
byte_rx
+=
count
;
spin_unlock
(
&
hu
->
rx_lock
);
if
(
test_and_clear_bit
(
TTY_THROTTLED
,
&
tty
->
flags
)
&&
tty
->
driver
->
unthrottle
)
...
...
@@ -394,7 +395,13 @@ static int hci_uart_register_dev(struct hci_uart *hu)
BT_DBG
(
""
);
/* Initialize and register HCI device */
hdev
=
&
hu
->
hdev
;
hdev
=
hci_alloc_dev
();
if
(
!
hdev
)
{
BT_ERR
(
"Can't allocate HCI device"
);
return
-
ENOMEM
;
}
hu
->
hdev
=
hdev
;
hdev
->
type
=
HCI_UART
;
hdev
->
driver_data
=
hu
;
...
...
@@ -408,7 +415,8 @@ static int hci_uart_register_dev(struct hci_uart *hu)
hdev
->
owner
=
THIS_MODULE
;
if
(
hci_register_dev
(
hdev
)
<
0
)
{
BT_ERR
(
"Can't register HCI device %s"
,
hdev
->
name
);
BT_ERR
(
"Can't register HCI device"
);
hci_free_dev
(
hdev
);
return
-
ENODEV
;
}
...
...
drivers/bluetooth/hci_uart.h
View file @
caeae7ae
...
...
@@ -56,7 +56,7 @@ struct hci_uart_proto {
struct
hci_uart
{
struct
tty_struct
*
tty
;
struct
hci_dev
hdev
;
struct
hci_dev
*
hdev
;
unsigned
long
flags
;
struct
hci_uart_proto
*
proto
;
...
...
drivers/bluetooth/hci_usb.c
View file @
caeae7ae
This diff is collapsed.
Click to expand it.
drivers/bluetooth/hci_usb.h
View file @
caeae7ae
...
...
@@ -112,7 +112,7 @@ struct _urb *_urb_dequeue(struct _urb_queue *q);
#endif
struct
hci_usb
{
struct
hci_dev
hdev
;
struct
hci_dev
*
hdev
;
unsigned
long
state
;
...
...
drivers/bluetooth/hci_vhci.c
View file @
caeae7ae
...
...
@@ -142,7 +142,7 @@ static inline ssize_t hci_vhci_get_user(struct hci_vhci_struct *hci_vhci, const
return
-
EFAULT
;
}
skb
->
dev
=
(
void
*
)
&
hci_vhci
->
hdev
;
skb
->
dev
=
(
void
*
)
hci_vhci
->
hdev
;
skb
->
pkt_type
=
*
((
__u8
*
)
skb
->
data
);
skb_pull
(
skb
,
1
);
...
...
@@ -175,18 +175,18 @@ static inline ssize_t hci_vhci_put_user(struct hci_vhci_struct *hci_vhci,
return
-
EFAULT
;
total
+=
len
;
hci_vhci
->
hdev
.
stat
.
byte_tx
+=
len
;
hci_vhci
->
hdev
->
stat
.
byte_tx
+=
len
;
switch
(
skb
->
pkt_type
)
{
case
HCI_COMMAND_PKT
:
hci_vhci
->
hdev
.
stat
.
cmd_tx
++
;
hci_vhci
->
hdev
->
stat
.
cmd_tx
++
;
break
;
case
HCI_ACLDATA_PKT
:
hci_vhci
->
hdev
.
stat
.
acl_tx
++
;
hci_vhci
->
hdev
->
stat
.
acl_tx
++
;
break
;
case
HCI_SCODATA_PKT
:
hci_vhci
->
hdev
.
stat
.
cmd_tx
++
;
hci_vhci
->
hdev
->
stat
.
cmd_tx
++
;
break
;
};
...
...
@@ -275,7 +275,13 @@ static int hci_vhci_chr_open(struct inode *inode, struct file * file)
init_waitqueue_head
(
&
hci_vhci
->
read_wait
);
/* Initialize and register HCI device */
hdev
=
&
hci_vhci
->
hdev
;
hdev
=
hci_alloc_dev
();
if
(
!
hdev
)
{
kfree
(
hci_vhci
);
return
-
ENOMEM
;
}
hci_vhci
->
hdev
=
hdev
;
hdev
->
type
=
HCI_VHCI
;
hdev
->
driver_data
=
hci_vhci
;
...
...
@@ -290,6 +296,7 @@ static int hci_vhci_chr_open(struct inode *inode, struct file * file)
if
(
hci_register_dev
(
hdev
)
<
0
)
{
kfree
(
hci_vhci
);
hci_free_dev
(
hdev
);
return
-
EBUSY
;
}
...
...
@@ -301,10 +308,12 @@ static int hci_vhci_chr_close(struct inode *inode, struct file *file)
{
struct
hci_vhci_struct
*
hci_vhci
=
(
struct
hci_vhci_struct
*
)
file
->
private_data
;
if
(
hci_unregister_dev
(
&
hci_vhci
->
hdev
)
<
0
)
{
BT_ERR
(
"Can't unregister HCI device %s"
,
hci_vhci
->
hdev
.
name
);
if
(
hci_unregister_dev
(
hci_vhci
->
hdev
)
<
0
)
{
BT_ERR
(
"Can't unregister HCI device %s"
,
hci_vhci
->
hdev
->
name
);
}
hci_free_dev
(
hci_vhci
->
hdev
);
file
->
private_data
=
NULL
;
return
0
;
}
...
...
drivers/bluetooth/hci_vhci.h
View file @
caeae7ae
...
...
@@ -32,7 +32,7 @@
#ifdef __KERNEL__
struct
hci_vhci_struct
{
struct
hci_dev
hdev
;
struct
hci_dev
*
hdev
;
__u32
flags
;
wait_queue_head_t
read_wait
;
struct
sk_buff_head
readq
;
...
...
include/net/bluetooth/hci_core.h
View file @
caeae7ae
...
...
@@ -348,6 +348,9 @@ static inline struct hci_dev *hci_dev_hold(struct hci_dev *d)
struct
hci_dev
*
hci_dev_get
(
int
index
);
struct
hci_dev
*
hci_get_route
(
bdaddr_t
*
src
,
bdaddr_t
*
dst
);
struct
hci_dev
*
hci_alloc_dev
(
void
);
void
hci_free_dev
(
struct
hci_dev
*
hdev
);
int
hci_register_dev
(
struct
hci_dev
*
hdev
);
int
hci_unregister_dev
(
struct
hci_dev
*
hdev
);
int
hci_suspend_dev
(
struct
hci_dev
*
hdev
);
...
...
net/bluetooth/hci_core.c
View file @
caeae7ae
...
...
@@ -762,6 +762,27 @@ int hci_get_dev_info(unsigned long arg)
/* ---- Interface to HCI drivers ---- */
/* Alloc HCI device */
struct
hci_dev
*
hci_alloc_dev
(
void
)
{
struct
hci_dev
*
hdev
;
hdev
=
kmalloc
(
sizeof
(
struct
hci_dev
),
GFP_KERNEL
);
if
(
!
hdev
)
return
NULL
;
memset
(
hdev
,
0
,
sizeof
(
struct
hci_dev
));
return
hdev
;
}
/* Free HCI device */
void
hci_free_dev
(
struct
hci_dev
*
hdev
)
{
/* will free via class release */
class_device_put
(
&
hdev
->
class_dev
);
}
/* Register HCI device */
int
hci_register_dev
(
struct
hci_dev
*
hdev
)
{
...
...
net/bluetooth/hci_sysfs.c
View file @
caeae7ae
...
...
@@ -96,6 +96,9 @@ static int bt_hotplug(struct class_device *cdev, char **envp, int num_envp, char
static
void
bt_release
(
struct
class_device
*
cdev
)
{
struct
hci_dev
*
hdev
=
class_get_devdata
(
cdev
);
kfree
(
hdev
);
}
static
struct
class
bt_class
=
{
...
...
net/bluetooth/syms.c
View file @
caeae7ae
...
...
@@ -42,6 +42,8 @@
#include <net/bluetooth/hci_core.h>
/* HCI Core */
EXPORT_SYMBOL
(
hci_alloc_dev
);
EXPORT_SYMBOL
(
hci_free_dev
);
EXPORT_SYMBOL
(
hci_register_dev
);
EXPORT_SYMBOL
(
hci_unregister_dev
);
EXPORT_SYMBOL
(
hci_suspend_dev
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment