2005-04-17 02:20:36 +04:00
/*
* attribute_container . c - implementation of a simple container for classes
*
* Copyright ( c ) 2005 - James Bottomley < James . Bottomley @ steeleye . com >
*
* This file is licensed under GPLv2
*
* The basic idea here is to enable a device to be attached to an
* aritrary numer of classes without having to allocate storage for them .
* Instead , the contained classes select the devices they need to attach
* to via a matching function .
*/
# include <linux/attribute_container.h>
# include <linux/device.h>
# include <linux/kernel.h>
# include <linux/slab.h>
# include <linux/list.h>
# include <linux/module.h>
2007-06-10 23:39:12 +04:00
# include <linux/mutex.h>
2005-04-17 02:20:36 +04:00
2005-10-13 20:54:41 +04:00
# include "base.h"
2005-04-17 02:20:36 +04:00
/* This is a private structure used to tie the classdev and the
* container . . it should never be visible outside this file */
struct internal_container {
2005-08-22 19:06:19 +04:00
struct klist_node node ;
2005-04-17 02:20:36 +04:00
struct attribute_container * cont ;
2008-02-22 02:13:36 +03:00
struct device classdev ;
2005-04-17 02:20:36 +04:00
} ;
2005-09-08 05:44:33 +04:00
static void internal_container_klist_get ( struct klist_node * n )
{
struct internal_container * ic =
container_of ( n , struct internal_container , node ) ;
2008-02-22 02:13:36 +03:00
get_device ( & ic - > classdev ) ;
2005-09-08 05:44:33 +04:00
}
static void internal_container_klist_put ( struct klist_node * n )
{
struct internal_container * ic =
container_of ( n , struct internal_container , node ) ;
2008-02-22 02:13:36 +03:00
put_device ( & ic - > classdev ) ;
2005-09-08 05:44:33 +04:00
}
2005-04-17 02:20:36 +04:00
/**
* attribute_container_classdev_to_container - given a classdev , return the container
*
* @ classdev : the class device created by attribute_container_add_device .
*
* Returns the container associated with this classdev .
*/
struct attribute_container *
2008-02-22 02:13:36 +03:00
attribute_container_classdev_to_container ( struct device * classdev )
2005-04-17 02:20:36 +04:00
{
struct internal_container * ic =
container_of ( classdev , struct internal_container , classdev ) ;
return ic - > cont ;
}
EXPORT_SYMBOL_GPL ( attribute_container_classdev_to_container ) ;
2007-12-05 21:24:40 +03:00
static LIST_HEAD ( attribute_container_list ) ;
2005-04-17 02:20:36 +04:00
2007-04-26 11:12:09 +04:00
static DEFINE_MUTEX ( attribute_container_mutex ) ;
2005-04-17 02:20:36 +04:00
/**
* attribute_container_register - register an attribute container
*
* @ cont : The container to register . This must be allocated by the
* callee and should also be zeroed by it .
*/
int
attribute_container_register ( struct attribute_container * cont )
{
INIT_LIST_HEAD ( & cont - > node ) ;
2014-08-12 01:24:09 +04:00
klist_init ( & cont - > containers , internal_container_klist_get ,
2005-09-08 05:44:33 +04:00
internal_container_klist_put ) ;
2014-08-12 01:24:08 +04:00
2007-04-26 11:12:09 +04:00
mutex_lock ( & attribute_container_mutex ) ;
2005-04-17 02:20:36 +04:00
list_add_tail ( & cont - > node , & attribute_container_list ) ;
2007-04-26 11:12:09 +04:00
mutex_unlock ( & attribute_container_mutex ) ;
2005-04-17 02:20:36 +04:00
return 0 ;
}
EXPORT_SYMBOL_GPL ( attribute_container_register ) ;
/**
* attribute_container_unregister - remove a container registration
*
* @ cont : previously registered container to remove
*/
int
attribute_container_unregister ( struct attribute_container * cont )
{
int retval = - EBUSY ;
2015-03-08 13:30:14 +03:00
2007-04-26 11:12:09 +04:00
mutex_lock ( & attribute_container_mutex ) ;
2005-08-22 19:06:19 +04:00
spin_lock ( & cont - > containers . k_lock ) ;
if ( ! list_empty ( & cont - > containers . k_list ) )
2005-04-17 02:20:36 +04:00
goto out ;
retval = 0 ;
list_del ( & cont - > node ) ;
out :
2005-08-22 19:06:19 +04:00
spin_unlock ( & cont - > containers . k_lock ) ;
2007-04-26 11:12:09 +04:00
mutex_unlock ( & attribute_container_mutex ) ;
2005-04-17 02:20:36 +04:00
return retval ;
2014-08-12 01:24:08 +04:00
2005-04-17 02:20:36 +04:00
}
EXPORT_SYMBOL_GPL ( attribute_container_unregister ) ;
/* private function used as class release */
2008-02-22 02:13:36 +03:00
static void attribute_container_release ( struct device * classdev )
2005-04-17 02:20:36 +04:00
{
2014-08-12 01:24:08 +04:00
struct internal_container * ic
2005-04-17 02:20:36 +04:00
= container_of ( classdev , struct internal_container , classdev ) ;
2008-02-22 02:13:36 +03:00
struct device * dev = classdev - > parent ;
2005-04-17 02:20:36 +04:00
kfree ( ic ) ;
put_device ( dev ) ;
}
/**
* attribute_container_add_device - see if any container is interested in dev
*
* @ dev : device to add attributes to
* @ fn : function to trigger addition of class device .
*
* This function allocates storage for the class device ( s ) to be
* attached to dev ( one for each matching attribute_container ) . If no
* fn is provided , the code will simply register the class device via
2008-02-22 02:13:36 +03:00
* device_add . If a function is provided , it is expected to add
2005-04-17 02:20:36 +04:00
* the class device at the appropriate time . One of the things that
* might be necessary is to allocate and initialise the classdev and
* then add it a later time . To do this , call this routine for
* allocation and initialisation and then use
2008-02-22 02:13:36 +03:00
* attribute_container_device_trigger ( ) to call device_add ( ) on
2005-04-17 02:20:36 +04:00
* it . Note : after this , the class device contains a reference to dev
* which is not relinquished until the release of the classdev .
*/
void
attribute_container_add_device ( struct device * dev ,
int ( * fn ) ( struct attribute_container * ,
struct device * ,
2008-02-22 02:13:36 +03:00
struct device * ) )
2005-04-17 02:20:36 +04:00
{
struct attribute_container * cont ;
2007-04-26 11:12:09 +04:00
mutex_lock ( & attribute_container_mutex ) ;
2005-04-17 02:20:36 +04:00
list_for_each_entry ( cont , & attribute_container_list , node ) {
struct internal_container * ic ;
if ( attribute_container_no_classdevs ( cont ) )
continue ;
if ( ! cont - > match ( cont , dev ) )
continue ;
2005-09-13 12:25:01 +04:00
ic = kzalloc ( sizeof ( * ic ) , GFP_KERNEL ) ;
2005-04-17 02:20:36 +04:00
if ( ! ic ) {
2012-10-28 12:05:41 +04:00
dev_err ( dev , " failed to allocate class container \n " ) ;
2005-04-17 02:20:36 +04:00
continue ;
}
2005-09-13 12:25:01 +04:00
2005-04-17 02:20:36 +04:00
ic - > cont = cont ;
2008-02-22 02:13:36 +03:00
device_initialize ( & ic - > classdev ) ;
ic - > classdev . parent = get_device ( dev ) ;
2005-04-17 02:20:36 +04:00
ic - > classdev . class = cont - > class ;
2008-02-22 02:13:36 +03:00
cont - > class - > dev_release = attribute_container_release ;
2013-07-04 02:04:56 +04:00
dev_set_name ( & ic - > classdev , " %s " , dev_name ( dev ) ) ;
2005-04-17 02:20:36 +04:00
if ( fn )
fn ( cont , dev , & ic - > classdev ) ;
else
attribute_container_add_class_device ( & ic - > classdev ) ;
2005-08-22 19:06:19 +04:00
klist_add_tail ( & ic - > node , & cont - > containers ) ;
2005-04-17 02:20:36 +04:00
}
2007-04-26 11:12:09 +04:00
mutex_unlock ( & attribute_container_mutex ) ;
2005-04-17 02:20:36 +04:00
}
2005-08-22 19:06:19 +04:00
/* FIXME: can't break out of this unless klist_iter_exit is also
* called before doing the break
*/
# define klist_for_each_entry(pos, head, member, iter) \
for ( klist_iter_init ( head , iter ) ; ( pos = ( { \
struct klist_node * n = klist_next ( iter ) ; \
2005-09-08 05:44:33 +04:00
n ? container_of ( n , typeof ( * pos ) , member ) : \
( { klist_iter_exit ( iter ) ; NULL ; } ) ; \
2014-08-12 01:24:09 +04:00
} ) ) ! = NULL ; )
2014-08-12 01:24:08 +04:00
2005-08-22 19:06:19 +04:00
2005-04-17 02:20:36 +04:00
/**
* attribute_container_remove_device - make device eligible for removal .
*
* @ dev : The generic device
* @ fn : A function to call to remove the device
*
* This routine triggers device removal . If fn is NULL , then it is
2008-02-22 02:13:36 +03:00
* simply done via device_unregister ( note that if something
2005-04-17 02:20:36 +04:00
* still has a reference to the classdev , then the memory occupied
* will not be freed until the classdev is released ) . If you want a
* two phase release : remove from visibility and then delete the
* device , then you should use this routine with a fn that calls
2008-02-22 02:13:36 +03:00
* device_del ( ) and then use attribute_container_device_trigger ( )
* to do the final put on the classdev .
2005-04-17 02:20:36 +04:00
*/
void
attribute_container_remove_device ( struct device * dev ,
void ( * fn ) ( struct attribute_container * ,
struct device * ,
2008-02-22 02:13:36 +03:00
struct device * ) )
2005-04-17 02:20:36 +04:00
{
struct attribute_container * cont ;
2007-04-26 11:12:09 +04:00
mutex_lock ( & attribute_container_mutex ) ;
2005-04-17 02:20:36 +04:00
list_for_each_entry ( cont , & attribute_container_list , node ) {
2005-08-22 19:06:19 +04:00
struct internal_container * ic ;
struct klist_iter iter ;
2005-04-17 02:20:36 +04:00
if ( attribute_container_no_classdevs ( cont ) )
continue ;
if ( ! cont - > match ( cont , dev ) )
continue ;
2005-08-22 19:06:19 +04:00
klist_for_each_entry ( ic , & cont - > containers , node , & iter ) {
2008-02-22 02:13:36 +03:00
if ( dev ! = ic - > classdev . parent )
2005-04-17 02:20:36 +04:00
continue ;
2005-09-08 05:44:33 +04:00
klist_del ( & ic - > node ) ;
2005-04-17 02:20:36 +04:00
if ( fn )
fn ( cont , dev , & ic - > classdev ) ;
else {
attribute_container_remove_attrs ( & ic - > classdev ) ;
2008-02-22 02:13:36 +03:00
device_unregister ( & ic - > classdev ) ;
2005-04-17 02:20:36 +04:00
}
}
}
2007-04-26 11:12:09 +04:00
mutex_unlock ( & attribute_container_mutex ) ;
2005-04-17 02:20:36 +04:00
}
/**
* attribute_container_device_trigger - execute a trigger for each matching classdev
*
* @ dev : The generic device to run the trigger for
* @ fn the function to execute for each classdev .
*
2016-06-01 04:18:40 +03:00
* This function is for executing a trigger when you need to know both
2005-04-17 02:20:36 +04:00
* the container and the classdev . If you only care about the
* container , then use attribute_container_trigger ( ) instead .
*/
void
2014-08-12 01:24:08 +04:00
attribute_container_device_trigger ( struct device * dev ,
2005-04-17 02:20:36 +04:00
int ( * fn ) ( struct attribute_container * ,
struct device * ,
2008-02-22 02:13:36 +03:00
struct device * ) )
2005-04-17 02:20:36 +04:00
{
struct attribute_container * cont ;
2007-04-26 11:12:09 +04:00
mutex_lock ( & attribute_container_mutex ) ;
2005-04-17 02:20:36 +04:00
list_for_each_entry ( cont , & attribute_container_list , node ) {
2005-08-22 19:06:19 +04:00
struct internal_container * ic ;
struct klist_iter iter ;
2005-04-17 02:20:36 +04:00
if ( ! cont - > match ( cont , dev ) )
continue ;
2005-08-16 01:13:19 +04:00
if ( attribute_container_no_classdevs ( cont ) ) {
fn ( cont , dev , NULL ) ;
continue ;
}
2005-08-22 19:06:19 +04:00
klist_for_each_entry ( ic , & cont - > containers , node , & iter ) {
2008-02-22 02:13:36 +03:00
if ( dev = = ic - > classdev . parent )
2005-04-17 02:20:36 +04:00
fn ( cont , dev , & ic - > classdev ) ;
}
}
2007-04-26 11:12:09 +04:00
mutex_unlock ( & attribute_container_mutex ) ;
2005-04-17 02:20:36 +04:00
}
/**
* attribute_container_trigger - trigger a function for each matching container
*
* @ dev : The generic device to activate the trigger for
* @ fn : the function to trigger
*
* This routine triggers a function that only needs to know the
* matching containers ( not the classdev ) associated with a device .
* It is more lightweight than attribute_container_device_trigger , so
* should be used in preference unless the triggering function
* actually needs to know the classdev .
*/
void
attribute_container_trigger ( struct device * dev ,
int ( * fn ) ( struct attribute_container * ,
struct device * ) )
{
struct attribute_container * cont ;
2007-04-26 11:12:09 +04:00
mutex_lock ( & attribute_container_mutex ) ;
2005-04-17 02:20:36 +04:00
list_for_each_entry ( cont , & attribute_container_list , node ) {
if ( cont - > match ( cont , dev ) )
fn ( cont , dev ) ;
}
2007-04-26 11:12:09 +04:00
mutex_unlock ( & attribute_container_mutex ) ;
2005-04-17 02:20:36 +04:00
}
/**
* attribute_container_add_attrs - add attributes
*
* @ classdev : The class device
*
* This simply creates all the class device sysfs files from the
* attributes listed in the container
*/
int
2008-02-22 02:13:36 +03:00
attribute_container_add_attrs ( struct device * classdev )
2005-04-17 02:20:36 +04:00
{
struct attribute_container * cont =
attribute_container_classdev_to_container ( classdev ) ;
2008-02-22 02:13:36 +03:00
struct device_attribute * * attrs = cont - > attrs ;
2005-04-17 02:20:36 +04:00
int i , error ;
2008-01-03 03:48:47 +03:00
BUG_ON ( attrs & & cont - > grp ) ;
if ( ! attrs & & ! cont - > grp )
2005-04-17 02:20:36 +04:00
return 0 ;
2008-01-03 03:48:47 +03:00
if ( cont - > grp )
return sysfs_create_group ( & classdev - > kobj , cont - > grp ) ;
2005-04-17 02:20:36 +04:00
for ( i = 0 ; attrs [ i ] ; i + + ) {
2010-03-20 20:44:12 +03:00
sysfs_attr_init ( & attrs [ i ] - > attr ) ;
2008-02-22 02:13:36 +03:00
error = device_create_file ( classdev , attrs [ i ] ) ;
2005-04-17 02:20:36 +04:00
if ( error )
return error ;
}
return 0 ;
}
/**
2008-02-22 02:13:36 +03:00
* attribute_container_add_class_device - same function as device_add
2005-04-17 02:20:36 +04:00
*
* @ classdev : the class device to add
*
2008-02-22 02:13:36 +03:00
* This performs essentially the same function as device_add except for
2005-04-17 02:20:36 +04:00
* attribute containers , namely add the classdev to the system and then
* create the attribute files
*/
int
2008-02-22 02:13:36 +03:00
attribute_container_add_class_device ( struct device * classdev )
2005-04-17 02:20:36 +04:00
{
2008-02-22 02:13:36 +03:00
int error = device_add ( classdev ) ;
2015-03-08 13:30:14 +03:00
2005-04-17 02:20:36 +04:00
if ( error )
return error ;
return attribute_container_add_attrs ( classdev ) ;
}
/**
* attribute_container_add_class_device_adapter - simple adapter for triggers
*
* This function is identical to attribute_container_add_class_device except
* that it is designed to be called from the triggers
*/
int
attribute_container_add_class_device_adapter ( struct attribute_container * cont ,
struct device * dev ,
2008-02-22 02:13:36 +03:00
struct device * classdev )
2005-04-17 02:20:36 +04:00
{
return attribute_container_add_class_device ( classdev ) ;
}
/**
* attribute_container_remove_attrs - remove any attribute files
*
* @ classdev : The class device to remove the files from
*
*/
void
2008-02-22 02:13:36 +03:00
attribute_container_remove_attrs ( struct device * classdev )
2005-04-17 02:20:36 +04:00
{
struct attribute_container * cont =
attribute_container_classdev_to_container ( classdev ) ;
2008-02-22 02:13:36 +03:00
struct device_attribute * * attrs = cont - > attrs ;
2005-04-17 02:20:36 +04:00
int i ;
2008-01-03 03:48:47 +03:00
if ( ! attrs & & ! cont - > grp )
2005-04-17 02:20:36 +04:00
return ;
2008-01-03 03:48:47 +03:00
if ( cont - > grp ) {
sysfs_remove_group ( & classdev - > kobj , cont - > grp ) ;
return ;
}
2005-04-17 02:20:36 +04:00
for ( i = 0 ; attrs [ i ] ; i + + )
2008-02-22 02:13:36 +03:00
device_remove_file ( classdev , attrs [ i ] ) ;
2005-04-17 02:20:36 +04:00
}
/**
* attribute_container_class_device_del - equivalent of class_device_del
*
* @ classdev : the class device
*
* This function simply removes all the attribute files and then calls
2008-02-22 02:13:36 +03:00
* device_del .
2005-04-17 02:20:36 +04:00
*/
void
2008-02-22 02:13:36 +03:00
attribute_container_class_device_del ( struct device * classdev )
2005-04-17 02:20:36 +04:00
{
attribute_container_remove_attrs ( classdev ) ;
2008-02-22 02:13:36 +03:00
device_del ( classdev ) ;
2005-04-17 02:20:36 +04:00
}
2005-08-15 02:09:01 +04:00
/**
* attribute_container_find_class_device - find the corresponding class_device
*
* @ cont : the container
* @ dev : the generic device
*
* Looks up the device in the container ' s list of class devices and returns
* the corresponding class_device .
*/
2008-02-22 02:13:36 +03:00
struct device *
2005-08-15 02:09:01 +04:00
attribute_container_find_class_device ( struct attribute_container * cont ,
struct device * dev )
{
2008-02-22 02:13:36 +03:00
struct device * cdev = NULL ;
2005-08-15 02:09:01 +04:00
struct internal_container * ic ;
2005-08-22 19:06:19 +04:00
struct klist_iter iter ;
2005-08-15 02:09:01 +04:00
2005-08-22 19:06:19 +04:00
klist_for_each_entry ( ic , & cont - > containers , node , & iter ) {
2008-02-22 02:13:36 +03:00
if ( ic - > classdev . parent = = dev ) {
2005-08-15 02:09:01 +04:00
cdev = & ic - > classdev ;
2005-08-22 19:06:19 +04:00
/* FIXME: must exit iterator then break */
klist_iter_exit ( & iter ) ;
2005-08-15 02:09:01 +04:00
break ;
}
}
return cdev ;
}
EXPORT_SYMBOL_GPL ( attribute_container_find_class_device ) ;