blob: 3741a990403eca413f7ec27efdc502461f5ee48b [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/* Functions local to drivers/usb/core/ */
2
3extern void usb_create_sysfs_dev_files (struct usb_device *dev);
4extern void usb_remove_sysfs_dev_files (struct usb_device *dev);
5extern void usb_create_sysfs_intf_files (struct usb_interface *intf);
6extern void usb_remove_sysfs_intf_files (struct usb_interface *intf);
7
8extern void usb_disable_endpoint (struct usb_device *dev, unsigned int epaddr);
9extern void usb_disable_interface (struct usb_device *dev,
10 struct usb_interface *intf);
11extern void usb_release_interface_cache(struct kref *ref);
12extern void usb_disable_device (struct usb_device *dev, int skip_ep0);
13
14extern int usb_get_device_descriptor(struct usb_device *dev,
15 unsigned int size);
16extern int usb_set_configuration(struct usb_device *dev, int configuration);
17
18extern void usb_lock_all_devices(void);
19extern void usb_unlock_all_devices(void);
20
21extern void usb_kick_khubd(struct usb_device *dev);
22extern void usb_resume_root_hub(struct usb_device *dev);
23
Greg KH6d5e8252005-04-18 17:39:24 -070024extern int usb_hub_init(void);
25extern void usb_hub_cleanup(void);
26extern int usb_major_init(void);
27extern void usb_major_cleanup(void);
28extern int usb_host_init(void);
29extern void usb_host_cleanup(void);
30
David Brownelldb690872005-09-13 19:56:33 -070031/* Interfaces and their "power state" are owned by usbcore */
32
33static inline void mark_active(struct usb_interface *f)
34{
35 f->dev.power.power_state.event = PM_EVENT_ON;
36}
37
38static inline void mark_quiesced(struct usb_interface *f)
39{
40 f->dev.power.power_state.event = PM_EVENT_FREEZE;
41}
42
43static inline int is_active(struct usb_interface *f)
44{
45 return f->dev.power.power_state.event == PM_EVENT_ON;
46}
47
48
Linus Torvalds1da177e2005-04-16 15:20:36 -070049/* for labeling diagnostics */
50extern const char *usbcore_name;
51
52/* usbfs stuff */
53extern struct usb_driver usbfs_driver;
54extern struct file_operations usbfs_devices_fops;
55extern struct file_operations usbfs_device_file_operations;
56extern void usbfs_conn_disc_event(void);
57
Kay Sieversfbf82fd2005-07-31 01:05:53 +020058extern int usbdev_init(void);
59extern void usbdev_cleanup(void);
60extern void usbdev_add(struct usb_device *dev);
61extern void usbdev_remove(struct usb_device *dev);
62extern struct usb_device *usbdev_lookup_minor(int minor);
Greg KH6d5e8252005-04-18 17:39:24 -070063
Linus Torvalds1da177e2005-04-16 15:20:36 -070064struct dev_state {
65 struct list_head list; /* state list */
66 struct usb_device *dev;
67 struct file *file;
68 spinlock_t lock; /* protects the async urb lists */
69 struct list_head async_pending;
70 struct list_head async_completed;
71 wait_queue_head_t wait; /* wake up if a request completed */
72 unsigned int discsignr;
Linus Torvaldsd7dd8a72005-10-10 16:31:30 -070073 pid_t disc_pid;
74 uid_t disc_uid, disc_euid;
Linus Torvalds1da177e2005-04-16 15:20:36 -070075 void __user *disccontext;
76 unsigned long ifclaimed;
77};
78