2005-04-17 02:20:36 +04:00
/* Bluetooth HCI driver model support. */
2011-05-27 17:12:25 +04:00
# include <linux/module.h>
2005-04-17 02:20:36 +04:00
# include <net/bluetooth/bluetooth.h>
# include <net/bluetooth/hci_core.h>
2010-03-21 07:27:45 +03:00
static struct class * bt_class ;
2008-08-18 15:23:53 +04:00
static void bt_link_release ( struct device * dev )
{
2012-02-10 00:58:34 +04:00
struct hci_conn * conn = to_hci_conn ( dev ) ;
kfree ( conn ) ;
2008-08-18 15:23:53 +04:00
}
2017-08-19 12:24:47 +03:00
static const struct device_type bt_link = {
2008-08-18 15:23:53 +04:00
. name = " link " ,
. release = bt_link_release ,
} ;
2011-12-18 00:53:02 +04:00
/*
* The rfcomm tty device will possibly retain even when conn
* is down , and sysfs doesn ' t support move zombie device ,
* so we should move the device before conn device is destroyed .
*/
static int __match_tty ( struct device * dev , void * data )
{
return ! strncmp ( dev_name ( dev ) , " rfcomm " , 6 ) ;
}
void hci_conn_init_sysfs ( struct hci_conn * conn )
{
struct hci_dev * hdev = conn - > hdev ;
BT_DBG ( " conn %p " , conn ) ;
conn - > dev . type = & bt_link ;
conn - > dev . class = bt_class ;
conn - > dev . parent = & hdev - > dev ;
device_initialize ( & conn - > dev ) ;
}
void hci_conn_add_sysfs ( struct hci_conn * conn )
2008-08-18 15:23:53 +04:00
{
2009-05-06 00:09:01 +04:00
struct hci_dev * hdev = conn - > hdev ;
2008-08-18 15:23:53 +04:00
2011-12-18 00:53:02 +04:00
BT_DBG ( " conn %p " , conn ) ;
2009-05-06 00:09:01 +04:00
dev_set_name ( & conn - > dev , " %s:%d " , hdev - > name , conn - > handle ) ;
2008-08-18 15:23:53 +04:00
if ( device_add ( & conn - > dev ) < 0 ) {
BT_ERR ( " Failed to register connection device " ) ;
return ;
}
2009-05-09 05:20:43 +04:00
hci_dev_hold ( hdev ) ;
2008-08-18 15:23:53 +04:00
}
2011-12-18 00:53:02 +04:00
void hci_conn_del_sysfs ( struct hci_conn * conn )
2008-08-18 15:23:53 +04:00
{
struct hci_dev * hdev = conn - > hdev ;
2009-05-03 05:24:06 +04:00
if ( ! device_is_registered ( & conn - > dev ) )
return ;
2009-04-23 15:50:54 +04:00
2008-08-18 15:23:53 +04:00
while ( 1 ) {
struct device * dev ;
dev = device_find_child ( & conn - > dev , NULL , __match_tty ) ;
if ( ! dev )
break ;
2009-03-04 14:44:00 +03:00
device_move ( dev , NULL , DPM_ORDER_DEV_LAST ) ;
2008-08-18 15:23:53 +04:00
put_device ( dev ) ;
}
device_del ( & conn - > dev ) ;
2009-05-09 05:20:43 +04:00
2008-08-18 15:23:53 +04:00
hci_dev_put ( hdev ) ;
}
static void bt_host_release ( struct device * dev )
2006-07-03 12:02:41 +04:00
{
2012-02-10 00:58:34 +04:00
struct hci_dev * hdev = to_hci_dev ( dev ) ;
kfree ( hdev ) ;
2012-01-07 18:47:21 +04:00
module_put ( THIS_MODULE ) ;
2006-07-06 14:38:46 +04:00
}
2017-08-19 12:24:47 +03:00
static const struct device_type bt_host = {
2008-08-18 15:23:53 +04:00
. name = " host " ,
. release = bt_host_release ,
} ;
2006-07-03 12:02:41 +04:00
2011-10-08 16:58:47 +04:00
void hci_init_sysfs ( struct hci_dev * hdev )
{
struct device * dev = & hdev - > dev ;
dev - > type = & bt_host ;
dev - > class = bt_class ;
2012-01-07 18:47:21 +04:00
__module_get ( THIS_MODULE ) ;
2011-10-08 16:58:47 +04:00
device_initialize ( dev ) ;
}
2005-04-17 02:20:36 +04:00
int __init bt_sysfs_init ( void )
{
2006-07-03 12:02:41 +04:00
bt_class = class_create ( THIS_MODULE , " bluetooth " ) ;
2006-07-03 12:02:37 +04:00
2013-07-15 05:50:32 +04:00
return PTR_ERR_OR_ZERO ( bt_class ) ;
2005-04-17 02:20:36 +04:00
}
2006-09-29 02:29:37 +04:00
void bt_sysfs_cleanup ( void )
2005-04-17 02:20:36 +04:00
{
2006-07-03 12:02:41 +04:00
class_destroy ( bt_class ) ;
2005-04-17 02:20:36 +04:00
}