* [PATCH] Add parent dev in rfcomm tty sysfs registration
@ 2008-12-08 18:57 Alban Browaeys
2008-12-08 19:07 ` Marcel Holtmann
0 siblings, 1 reply; 2+ messages in thread
From: Alban Browaeys @ 2008-12-08 18:57 UTC (permalink / raw)
To: linux-bluetooth
[-- Attachment #1: Type: text/plain, Size: 1400 bytes --]
This is an attempt at getting the parent device to be bound to the sysfs
entry of rfcomm tty.
This let hal detect it properly when connecting. No more.
Thus one have to :
$ rfcomm connect 0
after adding his configuration for the device to connect to in
/etc/bluetooth/rfcomm.conf
One need a patch to hal (for to add the address and channel data to the
hald/linux/device.c serial handler) and an fdi for to add the
capabilities to get the serial line to be recognized as a modem by
NetworkManager.
Maybe it could be achieved at bind. Though this would either requires a
change to rfcomm to get the sysfs data available at bind and not connect
or to have hal poll bluez (I don't know yet if udev send event at rfcomm
bind /dev/rfcommX creation so if polling could be avoided).
Also this does not address the lack of presence of rfcomm tty in
/sys/devices. This I am too lost in the different device_move to know if
it is registered in /sys/devices then moved to /sys/class/bluetooth or
if something is missing for to get the entries in /sys/devices . Tty
available documentation implying it should be automatic lead me to think
device_move is the key of this issue.
So it is not a panacea but with this at least it becomes "possible" to
get something out of hal and with a single script that rfcomm connect to
get the bluetooth serial device in NetworkManager.
Greetings
Alban
[-- Attachment #2: rfcomm_addparentdev_insysfs_registration.diff --]
[-- Type: text/x-patch, Size: 836 bytes --]
diff --git a/net/bluetooth/rfcomm/tty.c b/net/bluetooth/rfcomm/tty.c
index d3340dd..c553acf 100644
--- a/net/bluetooth/rfcomm/tty.c
+++ b/net/bluetooth/rfcomm/tty.c
@@ -205,6 +205,7 @@ static DEVICE_ATTR(channel, S_IRUGO, show_channel, NULL);
static int rfcomm_dev_add(struct rfcomm_dev_req *req, struct rfcomm_dlc *dlc)
{
struct rfcomm_dev *dev;
+ struct device * hdev;
struct list_head *head = &rfcomm_dev_list, *p;
int err = 0;
@@ -306,7 +307,12 @@ out:
return err;
}
- dev->tty_dev = tty_register_device(rfcomm_tty_driver, dev->id, NULL);
+ hdev = rfcomm_get_device(dev);
+
+ printk("HDEV : %p", hdev);
+
+ dev->tty_dev = tty_register_device(rfcomm_tty_driver, dev->id, hdev);
+ //dev->tty_dev = tty_register_device(rfcomm_tty_driver, dev->id, NULL);
if (IS_ERR(dev->tty_dev)) {
err = PTR_ERR(dev->tty_dev);
^ permalink raw reply related [flat|nested] 2+ messages in thread* Re: [PATCH] Add parent dev in rfcomm tty sysfs registration
2008-12-08 18:57 [PATCH] Add parent dev in rfcomm tty sysfs registration Alban Browaeys
@ 2008-12-08 19:07 ` Marcel Holtmann
0 siblings, 0 replies; 2+ messages in thread
From: Marcel Holtmann @ 2008-12-08 19:07 UTC (permalink / raw)
To: Alban Browaeys; +Cc: linux-bluetooth
Hi Alban,
> This is an attempt at getting the parent device to be bound to the sysfs
> entry of rfcomm tty.
> This let hal detect it properly when connecting. No more.
>
> Thus one have to :
> $ rfcomm connect 0
> after adding his configuration for the device to connect to in
> /etc/bluetooth/rfcomm.conf
> One need a patch to hal (for to add the address and channel data to the
> hald/linux/device.c serial handler) and an fdi for to add the
> capabilities to get the serial line to be recognized as a modem by
> NetworkManager.
>
> Maybe it could be achieved at bind. Though this would either requires a
> change to rfcomm to get the sysfs data available at bind and not connect
> or to have hal poll bluez (I don't know yet if udev send event at rfcomm
> bind /dev/rfcommX creation so if polling could be avoided).
>
>
> Also this does not address the lack of presence of rfcomm tty in
> /sys/devices. This I am too lost in the different device_move to know if
> it is registered in /sys/devices then moved to /sys/class/bluetooth or
> if something is missing for to get the entries in /sys/devices . Tty
> available documentation implying it should be automatic lead me to think
> device_move is the key of this issue.
>
> So it is not a panacea but with this at least it becomes "possible" to
> get something out of hal and with a single script that rfcomm connect to
> get the bluetooth serial device in NetworkManager.
so how do you handle the case where we have BDADDR_ANY as source and
multiple adapters attached. At time of binding the RFCOMM TTY we don't
know which adapter it will use when actually opening it.
Regards
Marcel
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2008-12-08 19:07 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-12-08 18:57 [PATCH] Add parent dev in rfcomm tty sysfs registration Alban Browaeys
2008-12-08 19:07 ` Marcel Holtmann
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox