2019-05-27 09:55:06 +03:00
// SPDX-License-Identifier: GPL-2.0-or-later
2005-04-17 02:20:36 +04:00
/*
2011-08-26 02:59:06 +04:00
* Copyright ( c ) 2004 Evgeniy Polyakov < zbr @ ioremap . net >
2005-04-17 02:20:36 +04:00
*/
# include <linux/spinlock.h>
# include <linux/list.h>
2017-02-08 20:51:30 +03:00
# include <linux/sched/signal.h>
2005-04-17 02:20:36 +04:00
# include <linux/delay.h>
2011-07-10 21:21:52 +04:00
# include <linux/export.h>
2005-04-17 02:20:36 +04:00
2017-06-05 16:52:08 +03:00
# include "w1_internal.h"
2005-04-17 02:20:36 +04:00
DEFINE_SPINLOCK ( w1_flock ) ;
static LIST_HEAD ( w1_families ) ;
2014-01-16 08:29:25 +04:00
/**
* w1_register_family ( ) - register a device family driver
* @ newf : family to register
*/
2005-04-17 02:20:36 +04:00
int w1_register_family ( struct w1_family * newf )
{
struct list_head * ent , * n ;
struct w1_family * f ;
int ret = 0 ;
spin_lock ( & w1_flock ) ;
list_for_each_safe ( ent , n , & w1_families ) {
f = list_entry ( ent , struct w1_family , family_entry ) ;
if ( f - > fid = = newf - > fid ) {
ret = - EEXIST ;
break ;
}
}
if ( ! ret ) {
atomic_set ( & newf - > refcnt , 0 ) ;
list_add_tail ( & newf - > family_entry , & w1_families ) ;
}
spin_unlock ( & w1_flock ) ;
2008-10-16 09:04:38 +04:00
/* check default devices against the new set of drivers */
w1_reconnect_slaves ( newf , 1 ) ;
2005-06-04 01:29:25 +04:00
2005-04-17 02:20:36 +04:00
return ret ;
}
2017-05-16 23:02:12 +03:00
EXPORT_SYMBOL ( w1_register_family ) ;
2005-04-17 02:20:36 +04:00
2014-01-16 08:29:25 +04:00
/**
* w1_unregister_family ( ) - unregister a device family driver
* @ fent : family to unregister
*/
2005-04-17 02:20:36 +04:00
void w1_unregister_family ( struct w1_family * fent )
{
struct list_head * ent , * n ;
struct w1_family * f ;
spin_lock ( & w1_flock ) ;
list_for_each_safe ( ent , n , & w1_families ) {
f = list_entry ( ent , struct w1_family , family_entry ) ;
if ( f - > fid = = fent - > fid ) {
list_del ( & fent - > family_entry ) ;
break ;
}
}
spin_unlock ( & w1_flock ) ;
2008-10-16 09:04:38 +04:00
/* deatch devices using this family code */
w1_reconnect_slaves ( fent , 0 ) ;
2005-04-17 02:20:36 +04:00
while ( atomic_read ( & fent - > refcnt ) ) {
2014-06-19 04:52:00 +04:00
pr_info ( " Waiting for family %u to become free: refcnt=%d. \n " ,
2005-04-17 02:20:36 +04:00
fent - > fid , atomic_read ( & fent - > refcnt ) ) ;
if ( msleep_interruptible ( 1000 ) )
flush_signals ( current ) ;
}
}
2017-05-16 23:02:12 +03:00
EXPORT_SYMBOL ( w1_unregister_family ) ;
2005-04-17 02:20:36 +04:00
/*
* Should be called under w1_flock held .
*/
struct w1_family * w1_family_registered ( u8 fid )
{
struct list_head * ent , * n ;
struct w1_family * f = NULL ;
int ret = 0 ;
list_for_each_safe ( ent , n , & w1_families ) {
f = list_entry ( ent , struct w1_family , family_entry ) ;
if ( f - > fid = = fid ) {
ret = 1 ;
break ;
}
}
return ( ret ) ? f : NULL ;
}
2006-04-24 10:46:14 +04:00
static void __w1_family_put ( struct w1_family * f )
{
2008-10-16 09:04:52 +04:00
atomic_dec ( & f - > refcnt ) ;
2006-04-24 10:46:14 +04:00
}
2005-04-17 02:20:36 +04:00
void w1_family_put ( struct w1_family * f )
{
spin_lock ( & w1_flock ) ;
__w1_family_put ( f ) ;
spin_unlock ( & w1_flock ) ;
}
2006-04-24 10:46:14 +04:00
#if 0
2005-04-17 02:20:36 +04:00
void w1_family_get ( struct w1_family * f )
{
spin_lock ( & w1_flock ) ;
__w1_family_get ( f ) ;
spin_unlock ( & w1_flock ) ;
}
2006-04-24 10:46:14 +04:00
# endif /* 0 */
2005-04-17 02:20:36 +04:00
void __w1_family_get ( struct w1_family * f )
{
2014-03-17 21:06:10 +04:00
smp_mb__before_atomic ( ) ;
2005-04-17 02:20:36 +04:00
atomic_inc ( & f - > refcnt ) ;
2014-03-17 21:06:10 +04:00
smp_mb__after_atomic ( ) ;
2005-04-17 02:20:36 +04:00
}