2003-07-17 01:24:51 -07:00
/*
* namedev . h
*
* Userspace devfs
*
* Copyright ( C ) 2003 Greg Kroah - Hartman < greg @ kroah . com >
*
* This program is free software ; you can redistribute it and / or modify it
* under the terms of the GNU General Public License as published by the
* Free Software Foundation version 2 of the License .
*
* This program is distributed in the hope that it will be useful , but
* WITHOUT ANY WARRANTY ; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE . See the GNU
* General Public License for more details .
*
* You should have received a copy of the GNU General Public License along
* with this program ; if not , write to the Free Software Foundation , Inc . ,
* 675 Mass Ave , Cambridge , MA 0213 9 , USA .
*
*/
# ifndef NAMEDEV_H
# define NAMEDEV_H
2003-08-05 23:57:23 -07:00
# include "udev.h"
2003-07-23 18:56:56 -04:00
# include "list.h"
2003-07-19 05:06:55 -07:00
struct sysfs_class_device ;
2003-07-17 01:24:51 -07:00
2003-07-23 18:56:56 -04:00
enum config_type {
KERNEL_NAME = 0 , /* must be 0 to let memset() default to this value */
LABEL = 1 ,
NUMBER = 2 ,
TOPOLOGY = 3 ,
REPLACE = 4 ,
2003-10-14 23:32:17 -07:00
CALLOUT = 5 ,
2003-07-23 18:56:56 -04:00
} ;
# define BUS_SIZE 30
# define FILE_SIZE 50
# define VALUE_SIZE 100
# define ID_SIZE 50
# define PLACE_SIZE 50
2003-12-30 01:08:02 -08:00
# define PROGRAM_SIZE 100
2003-07-23 18:56:56 -04:00
2003-12-02 18:38:30 -08:00
# define TYPE_LABEL "LABEL"
# define TYPE_NUMBER "NUMBER"
# define TYPE_TOPOLOGY "TOPOLOGY"
# define TYPE_REPLACE "REPLACE"
# define TYPE_CALLOUT "CALLOUT"
2003-12-16 23:36:19 -08:00
# define FIELD_BUS "BUS"
# define FIELD_ID "ID"
# define FIELD_SYSFS "SYSFS_"
# define FIELD_PLACE "PLACE"
# define FIELD_PROGRAM "PROGRAM"
# define FIELD_KERNEL "KERNEL"
# define FIELD_NAME "NAME"
# define FIELD_SYMLINK "SYMLINK"
2003-12-02 18:38:30 -08:00
# define CALLOUT_MAXARG 8
2003-12-22 22:31:35 -08:00
# define MAX_SYSFS_PAIRS 5
struct sysfs_pair {
char file [ FILE_SIZE ] ;
char value [ VALUE_SIZE ] ;
} ;
2003-07-23 18:56:56 -04:00
struct config_device {
struct list_head node ;
enum config_type type ;
char bus [ BUS_SIZE ] ;
char id [ ID_SIZE ] ;
char place [ PLACE_SIZE ] ;
char kernel_name [ NAME_SIZE ] ;
2003-12-30 01:08:02 -08:00
char exec_program [ PROGRAM_SIZE ] ;
2003-12-03 18:33:58 -08:00
char name [ NAME_SIZE ] ;
2003-12-07 09:12:07 -08:00
char symlink [ NAME_SIZE ] ;
2003-12-22 22:31:35 -08:00
struct sysfs_pair sysfs_pair [ MAX_SYSFS_PAIRS ] ;
2003-12-03 18:33:58 -08:00
} ;
struct perm_device {
struct list_head node ;
2003-11-24 22:27:17 -08:00
2003-10-21 22:28:32 -07:00
char name [ NAME_SIZE ] ;
char owner [ OWNER_SIZE ] ;
char group [ GROUP_SIZE ] ;
mode_t mode ;
2003-07-23 18:56:56 -04:00
} ;
2003-12-02 18:38:30 -08:00
extern struct list_head config_device_list ;
2003-12-03 18:33:58 -08:00
extern struct list_head perm_device_list ;
2003-07-23 18:56:56 -04:00
2003-07-17 01:24:51 -07:00
extern int namedev_init ( void ) ;
2003-10-21 22:28:32 -07:00
extern int namedev_name_device ( struct sysfs_class_device * class_dev , struct udevice * dev ) ;
2003-12-02 18:38:30 -08:00
extern int namedev_init_permissions ( void ) ;
2003-12-03 01:08:46 -08:00
extern int namedev_init_rules ( void ) ;
2003-12-02 18:38:30 -08:00
2003-12-03 18:33:58 -08:00
extern int add_perm_dev ( struct perm_device * new_dev ) ;
2003-12-02 18:38:30 -08:00
extern void dump_config_dev ( struct config_device * dev ) ;
extern void dump_config_dev_list ( void ) ;
2003-12-03 18:33:58 -08:00
extern void dump_perm_dev ( struct perm_device * dev ) ;
extern void dump_perm_dev_list ( void ) ;
2003-07-17 01:24:51 -07:00
2003-12-03 01:08:46 -08:00
extern int get_pair ( char * * orig_string , char * * left , char * * right ) ;
2003-07-17 01:24:51 -07:00
# endif