blob: 10688ad73c6d8129fdf067a6797d1fc1ee3ee6a2 [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);
Greg Kroah-Hartman36679ea2006-06-14 12:14:34 -07007extern void usb_create_ep_files(struct device *parent, struct usb_host_endpoint *endpoint,
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -07008 struct usb_device *udev);
9extern void usb_remove_ep_files(struct usb_host_endpoint *endpoint);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010
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);
Alan Stern4f62efe2005-10-24 16:24:14 -040019extern char *usb_cache_string(struct usb_device *udev, int index);
Linus Torvalds1da177e2005-04-16 15:20:36 -070020extern int usb_set_configuration(struct usb_device *dev, int configuration);
21
Linus Torvalds1da177e2005-04-16 15:20:36 -070022extern void usb_kick_khubd(struct usb_device *dev);
David Brownell979d5192005-09-22 22:32:24 -070023extern void usb_suspend_root_hub(struct usb_device *hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070024extern void usb_resume_root_hub(struct usb_device *dev);
25
Greg KH6d5e8252005-04-18 17:39:24 -070026extern int usb_hub_init(void);
27extern void usb_hub_cleanup(void);
28extern int usb_major_init(void);
29extern void usb_major_cleanup(void);
30extern int usb_host_init(void);
31extern void usb_host_cleanup(void);
32
Alan Sternd388dab2006-07-01 22:14:24 -040033#ifdef CONFIG_PM
34
Alan Sterna8e7c562006-07-01 22:11:02 -040035extern int usb_suspend_both(struct usb_device *udev, pm_message_t msg);
36extern int usb_resume_both(struct usb_device *udev);
Alan Stern140d8f62006-07-01 22:07:21 -040037extern int usb_port_suspend(struct usb_device *dev);
38extern int usb_port_resume(struct usb_device *dev);
David Brownell5edbfb72005-09-22 22:45:26 -070039
Alan Sternd388dab2006-07-01 22:14:24 -040040#else
41
42#define usb_suspend_both(udev, msg) 0
Alexey Dobriyan42d8a2d2006-08-20 18:58:42 +040043static inline int usb_resume_both(struct usb_device *udev)
44{
45 return 0;
46}
Alan Sternd388dab2006-07-01 22:14:24 -040047#define usb_port_suspend(dev) 0
48#define usb_port_resume(dev) 0
49
50#endif
51
Alan Stern645daaa2006-08-30 15:47:02 -040052#ifdef CONFIG_USB_SUSPEND
53
54#define USB_AUTOSUSPEND_DELAY (HZ*2)
55
56extern void usb_autosuspend_device(struct usb_device *udev, int dec_busy_cnt);
57extern int usb_autoresume_device(struct usb_device *udev, int inc_busy_cnt);
58
59#else
60
61#define usb_autosuspend_device(udev, dec_busy_cnt) do {} while (0)
62#define usb_autoresume_device(udev, inc_busy_cnt) 0
63
64#endif
65
Alan Stern36e56a32006-07-01 22:08:06 -040066extern struct bus_type usb_bus_type;
Alan Stern8bb54ab2006-07-01 22:08:49 -040067extern struct usb_device_driver usb_generic_driver;
68
69/* Here's how we tell apart devices and interfaces. Luckily there's
70 * no such thing as a platform USB device, so we can steal the use
71 * of the platform_data field. */
72
Luiz Fernando N. Capitulino095bc332006-08-26 23:48:11 -030073static inline int is_usb_device(const struct device *dev)
Alan Stern8bb54ab2006-07-01 22:08:49 -040074{
75 return dev->platform_data == &usb_generic_driver;
76}
77
78/* Do the same for device drivers and interface drivers. */
79
80static inline int is_usb_device_driver(struct device_driver *drv)
81{
82 return container_of(drv, struct usbdrv_wrap, driver)->
83 for_devices;
84}
David Brownell5edbfb72005-09-22 22:45:26 -070085
David Brownelldb690872005-09-13 19:56:33 -070086/* Interfaces and their "power state" are owned by usbcore */
87
88static inline void mark_active(struct usb_interface *f)
89{
Alan Stern4d064c02006-07-01 22:11:44 -040090 f->is_active = 1;
David Brownelldb690872005-09-13 19:56:33 -070091}
92
93static inline void mark_quiesced(struct usb_interface *f)
94{
Alan Stern4d064c02006-07-01 22:11:44 -040095 f->is_active = 0;
David Brownelldb690872005-09-13 19:56:33 -070096}
97
Luiz Fernando N. Capitulino095bc332006-08-26 23:48:11 -030098static inline int is_active(const struct usb_interface *f)
David Brownelldb690872005-09-13 19:56:33 -070099{
Alan Stern4d064c02006-07-01 22:11:44 -0400100 return f->is_active;
David Brownelldb690872005-09-13 19:56:33 -0700101}
102
103
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104/* for labeling diagnostics */
105extern const char *usbcore_name;
106
107/* usbfs stuff */
Alan Stern4a2a8a22006-07-01 22:05:01 -0400108extern struct mutex usbfs_mutex;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109extern struct usb_driver usbfs_driver;
Luiz Fernando N. Capitulino066202d2006-08-05 20:37:11 -0300110extern const struct file_operations usbfs_devices_fops;
111extern const struct file_operations usbfs_device_file_operations;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112extern void usbfs_conn_disc_event(void);
113
Kay Sieversfbf82fd2005-07-31 01:05:53 +0200114extern int usbdev_init(void);
115extern void usbdev_cleanup(void);
Greg KH6d5e8252005-04-18 17:39:24 -0700116
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117struct dev_state {
118 struct list_head list; /* state list */
119 struct usb_device *dev;
120 struct file *file;
121 spinlock_t lock; /* protects the async urb lists */
122 struct list_head async_pending;
123 struct list_head async_completed;
124 wait_queue_head_t wait; /* wake up if a request completed */
125 unsigned int discsignr;
Linus Torvaldsd7dd8a72005-10-10 16:31:30 -0700126 pid_t disc_pid;
127 uid_t disc_uid, disc_euid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 void __user *disccontext;
129 unsigned long ifclaimed;
David Quigley7a019552006-06-30 01:55:48 -0700130 u32 secid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131};
132
Greg Kroah-Hartman3099e752005-06-20 21:15:16 -0700133/* internal notify stuff */
134extern void usb_notify_add_device(struct usb_device *udev);
135extern void usb_notify_remove_device(struct usb_device *udev);
136extern void usb_notify_add_bus(struct usb_bus *ubus);
137extern void usb_notify_remove_bus(struct usb_bus *ubus);
138