6 * Copyright (C) 2003,2004 Greg Kroah-Hartman <greg@kroah.com>
8 * This program is free software; you can redistribute it and/or modify it
9 * under the terms of the GNU General Public License as published by the
10 * Free Software Foundation version 2 of the License.
12 * This program is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * General Public License for more details.
17 * You should have received a copy of the GNU General Public License along
18 * with this program; if not, write to the Free Software Foundation, Inc.,
19 * 675 Mass Ave, Cambridge, MA 02139, USA.
29 struct sysfs_class_device
;
33 #define VALUE_SIZE 100
36 #define PROGRAM_SIZE 100
38 #define FIELD_BUS "BUS"
39 #define FIELD_SYSFS "SYSFS"
41 #define FIELD_PLACE "PLACE"
42 #define FIELD_PROGRAM "PROGRAM"
43 #define FIELD_RESULT "RESULT"
44 #define FIELD_KERNEL "KERNEL"
45 #define FIELD_NAME "NAME"
46 #define FIELD_SYMLINK "SYMLINK"
47 #define FIELD_OWNER "OWNER"
48 #define FIELD_GROUP "GROUP"
49 #define FIELD_MODE "MODE"
51 #define ATTR_PARTITIONS "all_partitions"
52 #define PARTITIONS_COUNT 15
54 #define MAX_SYSFS_PAIRS 5
56 #define RULEFILE_SUFFIX ".rules"
57 #define PERMFILE_SUFFIX ".permissions"
59 #define set_empty_perms(dev, m, o, g) \
62 if (dev->owner[0] == '\0') \
63 strfieldcpy(dev->owner, o); \
64 if (dev->group[0] == '\0') \
65 strfieldcpy(dev->group, g);
69 char value
[VALUE_SIZE
];
72 struct config_device
{
73 struct list_head node
;
77 char place
[PLACE_SIZE
];
78 char kernel
[NAME_SIZE
];
79 char program
[PROGRAM_SIZE
];
80 char result
[PROGRAM_SIZE
];
82 char symlink
[NAME_SIZE
];
83 struct sysfs_pair sysfs_pair
[MAX_SYSFS_PAIRS
];
84 char owner
[OWNER_SIZE
];
85 char group
[GROUP_SIZE
];
88 char config_file
[NAME_SIZE
];
93 struct list_head node
;
96 char owner
[OWNER_SIZE
];
97 char group
[GROUP_SIZE
];
101 extern struct list_head config_device_list
;
102 extern struct list_head perm_device_list
;
104 extern int namedev_init(void);
105 extern int namedev_name_device(struct udevice
*udev
, struct sysfs_class_device
*class_dev
);
106 extern int namedev_init_permissions(void);
107 extern int namedev_init_rules(void);
109 extern void dump_config_dev(struct config_device
*dev
);
110 extern void dump_config_dev_list(void);
111 extern void dump_perm_dev(struct perm_device
*dev
);
112 extern void dump_perm_dev_list(void);