USB: fix root-hub resume when CONFIG_USB_SUSPEND is not set
[deliverable/linux.git] / drivers / usb / core / usb.h
CommitLineData
1da177e4
LT
1/* 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);
36679ea5 7extern void usb_create_ep_files(struct device *parent, struct usb_host_endpoint *endpoint,
84412f62
GKH
8 struct usb_device *udev);
9extern void usb_remove_ep_files(struct usb_host_endpoint *endpoint);
1da177e4
LT
10
11extern void usb_disable_endpoint (struct usb_device *dev, unsigned int epaddr);
12extern void usb_disable_interface (struct usb_device *dev,
13 struct usb_interface *intf);
14extern void usb_release_interface_cache(struct kref *ref);
15extern void usb_disable_device (struct usb_device *dev, int skip_ep0);
16
17extern int usb_get_device_descriptor(struct usb_device *dev,
18 unsigned int size);
4f62efe6 19extern char *usb_cache_string(struct usb_device *udev, int index);
1da177e4
LT
20extern int usb_set_configuration(struct usb_device *dev, int configuration);
21
1da177e4
LT
22extern void usb_kick_khubd(struct usb_device *dev);
23extern void usb_resume_root_hub(struct usb_device *dev);
24
6d5e8254
GK
25extern int usb_hub_init(void);
26extern void usb_hub_cleanup(void);
27extern int usb_major_init(void);
28extern void usb_major_cleanup(void);
29extern int usb_host_init(void);
30extern void usb_host_cleanup(void);
31
d388dab7
AS
32#ifdef CONFIG_PM
33
a8e7c565
AS
34extern int usb_suspend_both(struct usb_device *udev, pm_message_t msg);
35extern int usb_resume_both(struct usb_device *udev);
140d8f68
AS
36extern int usb_port_suspend(struct usb_device *dev);
37extern int usb_port_resume(struct usb_device *dev);
5edbfb7c 38
d388dab7
AS
39#else
40
41#define usb_suspend_both(udev, msg) 0
42d8a2d2
AD
42static inline int usb_resume_both(struct usb_device *udev)
43{
44 return 0;
45}
d388dab7
AS
46#define usb_port_suspend(dev) 0
47#define usb_port_resume(dev) 0
48
49#endif
50
645daaab
AS
51#ifdef CONFIG_USB_SUSPEND
52
53#define USB_AUTOSUSPEND_DELAY (HZ*2)
54
55extern void usb_autosuspend_device(struct usb_device *udev, int dec_busy_cnt);
56extern int usb_autoresume_device(struct usb_device *udev, int inc_busy_cnt);
57
58#else
59
60#define usb_autosuspend_device(udev, dec_busy_cnt) do {} while (0)
61#define usb_autoresume_device(udev, inc_busy_cnt) 0
62
63#endif
64
36e56a34 65extern struct bus_type usb_bus_type;
8bb54ab5
AS
66extern struct usb_device_driver usb_generic_driver;
67
68/* Here's how we tell apart devices and interfaces. Luckily there's
69 * no such thing as a platform USB device, so we can steal the use
70 * of the platform_data field. */
71
095bc335 72static inline int is_usb_device(const struct device *dev)
8bb54ab5
AS
73{
74 return dev->platform_data == &usb_generic_driver;
75}
76
77/* Do the same for device drivers and interface drivers. */
78
79static inline int is_usb_device_driver(struct device_driver *drv)
80{
81 return container_of(drv, struct usbdrv_wrap, driver)->
82 for_devices;
83}
5edbfb7c 84
db690874
DB
85/* Interfaces and their "power state" are owned by usbcore */
86
87static inline void mark_active(struct usb_interface *f)
88{
4d064c08 89 f->is_active = 1;
db690874
DB
90}
91
92static inline void mark_quiesced(struct usb_interface *f)
93{
4d064c08 94 f->is_active = 0;
db690874
DB
95}
96
095bc335 97static inline int is_active(const struct usb_interface *f)
db690874 98{
4d064c08 99 return f->is_active;
db690874
DB
100}
101
102
1da177e4
LT
103/* for labeling diagnostics */
104extern const char *usbcore_name;
105
106/* usbfs stuff */
4a2a8a2c 107extern struct mutex usbfs_mutex;
1da177e4 108extern struct usb_driver usbfs_driver;
066202dd
LFC
109extern const struct file_operations usbfs_devices_fops;
110extern const struct file_operations usbfs_device_file_operations;
1da177e4
LT
111extern void usbfs_conn_disc_event(void);
112
fbf82fd2
KS
113extern int usbdev_init(void);
114extern void usbdev_cleanup(void);
6d5e8254 115
1da177e4
LT
116struct dev_state {
117 struct list_head list; /* state list */
118 struct usb_device *dev;
119 struct file *file;
120 spinlock_t lock; /* protects the async urb lists */
121 struct list_head async_pending;
122 struct list_head async_completed;
123 wait_queue_head_t wait; /* wake up if a request completed */
124 unsigned int discsignr;
d7dd8a72
LT
125 pid_t disc_pid;
126 uid_t disc_uid, disc_euid;
1da177e4
LT
127 void __user *disccontext;
128 unsigned long ifclaimed;
7a01955f 129 u32 secid;
1da177e4
LT
130};
131
3099e75a
GKH
132/* internal notify stuff */
133extern void usb_notify_add_device(struct usb_device *udev);
134extern void usb_notify_remove_device(struct usb_device *udev);
135extern void usb_notify_add_bus(struct usb_bus *ubus);
136extern void usb_notify_remove_bus(struct usb_bus *ubus);
137
This page took 0.178004 seconds and 5 git commands to generate.