Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* Functions local to drivers/usb/core/ */ |
| 2 | |
Greg Kroah-Hartman | 84cca82 | 2008-01-30 15:21:33 -0800 | [diff] [blame] | 3 | extern int usb_create_sysfs_dev_files(struct usb_device *dev); |
| 4 | extern void usb_remove_sysfs_dev_files(struct usb_device *dev); |
| 5 | extern int usb_create_sysfs_intf_files(struct usb_interface *intf); |
| 6 | extern void usb_remove_sysfs_intf_files(struct usb_interface *intf); |
| 7 | extern int usb_create_ep_files(struct device *parent, |
| 8 | struct usb_host_endpoint *endpoint, |
Greg Kroah-Hartman | 84412f6 | 2006-06-14 12:14:34 -0700 | [diff] [blame] | 9 | struct usb_device *udev); |
| 10 | extern void usb_remove_ep_files(struct usb_host_endpoint *endpoint); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 11 | |
Alan Stern | bdd016b | 2007-07-30 17:05:22 -0400 | [diff] [blame] | 12 | extern void usb_enable_endpoint(struct usb_device *dev, |
| 13 | struct usb_host_endpoint *ep); |
Greg Kroah-Hartman | 84cca82 | 2008-01-30 15:21:33 -0800 | [diff] [blame] | 14 | extern void usb_disable_endpoint(struct usb_device *dev, unsigned int epaddr); |
| 15 | extern void usb_disable_interface(struct usb_device *dev, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 16 | struct usb_interface *intf); |
| 17 | extern void usb_release_interface_cache(struct kref *ref); |
Greg Kroah-Hartman | 84cca82 | 2008-01-30 15:21:33 -0800 | [diff] [blame] | 18 | extern void usb_disable_device(struct usb_device *dev, int skip_ep0); |
| 19 | extern int usb_deauthorize_device(struct usb_device *); |
| 20 | extern int usb_authorize_device(struct usb_device *); |
Oliver Neukum | 7ceec1f | 2007-01-26 14:26:21 +0100 | [diff] [blame] | 21 | extern void usb_detect_quirks(struct usb_device *udev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 22 | |
| 23 | extern int usb_get_device_descriptor(struct usb_device *dev, |
| 24 | unsigned int size); |
Alan Stern | 4f62efe | 2005-10-24 16:24:14 -0400 | [diff] [blame] | 25 | extern char *usb_cache_string(struct usb_device *udev, int index); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 26 | extern int usb_set_configuration(struct usb_device *dev, int configuration); |
Greg Kroah-Hartman | b5ea060 | 2007-08-02 22:44:27 -0600 | [diff] [blame] | 27 | extern int usb_choose_configuration(struct usb_device *udev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 28 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 29 | extern void usb_kick_khubd(struct usb_device *dev); |
Greg Kroah-Hartman | bb41702 | 2007-01-26 14:26:21 +0100 | [diff] [blame] | 30 | extern int usb_match_device(struct usb_device *dev, |
| 31 | const struct usb_device_id *id); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 32 | |
Greg KH | 6d5e825 | 2005-04-18 17:39:24 -0700 | [diff] [blame] | 33 | extern int usb_hub_init(void); |
| 34 | extern void usb_hub_cleanup(void); |
| 35 | extern int usb_major_init(void); |
| 36 | extern void usb_major_cleanup(void); |
| 37 | extern int usb_host_init(void); |
| 38 | extern void usb_host_cleanup(void); |
| 39 | |
Alan Stern | d388dab | 2006-07-01 22:14:24 -0400 | [diff] [blame] | 40 | #ifdef CONFIG_PM |
| 41 | |
Alan Stern | 718efa6 | 2007-03-09 15:41:13 -0500 | [diff] [blame] | 42 | extern void usb_autosuspend_work(struct work_struct *work); |
Alan Stern | 140d8f6 | 2006-07-01 22:07:21 -0400 | [diff] [blame] | 43 | extern int usb_port_suspend(struct usb_device *dev); |
| 44 | extern int usb_port_resume(struct usb_device *dev); |
Alan Stern | 6b157c9 | 2007-03-13 16:37:30 -0400 | [diff] [blame] | 45 | extern int usb_external_suspend_device(struct usb_device *udev, |
| 46 | pm_message_t msg); |
| 47 | extern int usb_external_resume_device(struct usb_device *udev); |
David Brownell | 5edbfb7 | 2005-09-22 22:45:26 -0700 | [diff] [blame] | 48 | |
Alan Stern | e0318eb | 2006-09-26 14:50:20 -0400 | [diff] [blame] | 49 | static inline void usb_pm_lock(struct usb_device *udev) |
| 50 | { |
| 51 | mutex_lock_nested(&udev->pm_mutex, udev->level); |
| 52 | } |
| 53 | |
| 54 | static inline void usb_pm_unlock(struct usb_device *udev) |
| 55 | { |
| 56 | mutex_unlock(&udev->pm_mutex); |
| 57 | } |
| 58 | |
Alan Stern | d388dab | 2006-07-01 22:14:24 -0400 | [diff] [blame] | 59 | #else |
| 60 | |
Alan Stern | 4956ecc | 2007-05-30 16:51:28 -0400 | [diff] [blame] | 61 | static inline int usb_port_suspend(struct usb_device *udev) |
| 62 | { |
| 63 | return 0; |
| 64 | } |
| 65 | |
| 66 | static inline int usb_port_resume(struct usb_device *udev) |
| 67 | { |
| 68 | return 0; |
| 69 | } |
| 70 | |
Alan Stern | e0318eb | 2006-09-26 14:50:20 -0400 | [diff] [blame] | 71 | static inline void usb_pm_lock(struct usb_device *udev) {} |
| 72 | static inline void usb_pm_unlock(struct usb_device *udev) {} |
Alan Stern | d388dab | 2006-07-01 22:14:24 -0400 | [diff] [blame] | 73 | |
| 74 | #endif |
| 75 | |
Alan Stern | 645daaa | 2006-08-30 15:47:02 -0400 | [diff] [blame] | 76 | #ifdef CONFIG_USB_SUSPEND |
| 77 | |
Alan Stern | 94fcda1 | 2006-11-20 11:38:46 -0500 | [diff] [blame] | 78 | extern void usb_autosuspend_device(struct usb_device *udev); |
Alan Stern | 19c2623 | 2007-02-20 15:03:32 -0500 | [diff] [blame] | 79 | extern void usb_try_autosuspend_device(struct usb_device *udev); |
Alan Stern | 94fcda1 | 2006-11-20 11:38:46 -0500 | [diff] [blame] | 80 | extern int usb_autoresume_device(struct usb_device *udev); |
Alan Stern | 645daaa | 2006-08-30 15:47:02 -0400 | [diff] [blame] | 81 | |
| 82 | #else |
| 83 | |
Alan Stern | 19c2623 | 2007-02-20 15:03:32 -0500 | [diff] [blame] | 84 | #define usb_autosuspend_device(udev) do {} while (0) |
| 85 | #define usb_try_autosuspend_device(udev) do {} while (0) |
Alan Stern | 94fcda1 | 2006-11-20 11:38:46 -0500 | [diff] [blame] | 86 | static inline int usb_autoresume_device(struct usb_device *udev) |
Alan Stern | e0318eb | 2006-09-26 14:50:20 -0400 | [diff] [blame] | 87 | { |
| 88 | return 0; |
| 89 | } |
Alan Stern | 645daaa | 2006-08-30 15:47:02 -0400 | [diff] [blame] | 90 | |
| 91 | #endif |
| 92 | |
Alan Stern | bd85928 | 2006-09-19 10:14:07 -0400 | [diff] [blame] | 93 | extern struct workqueue_struct *ksuspend_usb_wq; |
Alan Stern | 36e56a3 | 2006-07-01 22:08:06 -0400 | [diff] [blame] | 94 | extern struct bus_type usb_bus_type; |
Kay Sievers | 9f8b17e | 2007-03-13 15:59:31 +0100 | [diff] [blame] | 95 | extern struct device_type usb_device_type; |
| 96 | extern struct device_type usb_if_device_type; |
Alan Stern | 8bb54ab | 2006-07-01 22:08:49 -0400 | [diff] [blame] | 97 | extern struct usb_device_driver usb_generic_driver; |
| 98 | |
Luiz Fernando N. Capitulino | 095bc33 | 2006-08-26 23:48:11 -0300 | [diff] [blame] | 99 | static inline int is_usb_device(const struct device *dev) |
Alan Stern | 8bb54ab | 2006-07-01 22:08:49 -0400 | [diff] [blame] | 100 | { |
Kay Sievers | 9f8b17e | 2007-03-13 15:59:31 +0100 | [diff] [blame] | 101 | return dev->type == &usb_device_type; |
Alan Stern | 8bb54ab | 2006-07-01 22:08:49 -0400 | [diff] [blame] | 102 | } |
| 103 | |
| 104 | /* Do the same for device drivers and interface drivers. */ |
| 105 | |
| 106 | static inline int is_usb_device_driver(struct device_driver *drv) |
| 107 | { |
| 108 | return container_of(drv, struct usbdrv_wrap, driver)-> |
| 109 | for_devices; |
| 110 | } |
David Brownell | 5edbfb7 | 2005-09-22 22:45:26 -0700 | [diff] [blame] | 111 | |
David Brownell | db69087 | 2005-09-13 19:56:33 -0700 | [diff] [blame] | 112 | /* Interfaces and their "power state" are owned by usbcore */ |
| 113 | |
| 114 | static inline void mark_active(struct usb_interface *f) |
| 115 | { |
Alan Stern | 4d064c0 | 2006-07-01 22:11:44 -0400 | [diff] [blame] | 116 | f->is_active = 1; |
David Brownell | db69087 | 2005-09-13 19:56:33 -0700 | [diff] [blame] | 117 | } |
| 118 | |
| 119 | static inline void mark_quiesced(struct usb_interface *f) |
| 120 | { |
Alan Stern | 4d064c0 | 2006-07-01 22:11:44 -0400 | [diff] [blame] | 121 | f->is_active = 0; |
David Brownell | db69087 | 2005-09-13 19:56:33 -0700 | [diff] [blame] | 122 | } |
| 123 | |
Luiz Fernando N. Capitulino | 095bc33 | 2006-08-26 23:48:11 -0300 | [diff] [blame] | 124 | static inline int is_active(const struct usb_interface *f) |
David Brownell | db69087 | 2005-09-13 19:56:33 -0700 | [diff] [blame] | 125 | { |
Alan Stern | 4d064c0 | 2006-07-01 22:11:44 -0400 | [diff] [blame] | 126 | return f->is_active; |
David Brownell | db69087 | 2005-09-13 19:56:33 -0700 | [diff] [blame] | 127 | } |
| 128 | |
| 129 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 130 | /* for labeling diagnostics */ |
| 131 | extern const char *usbcore_name; |
| 132 | |
Alan Stern | 2e5f10e | 2008-04-30 15:37:19 -0400 | [diff] [blame^] | 133 | /* sysfs stuff */ |
| 134 | extern struct attribute_group *usb_device_groups[]; |
| 135 | extern struct attribute_group *usb_interface_groups[]; |
| 136 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 137 | /* usbfs stuff */ |
Alan Stern | 4a2a8a2 | 2006-07-01 22:05:01 -0400 | [diff] [blame] | 138 | extern struct mutex usbfs_mutex; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 139 | extern struct usb_driver usbfs_driver; |
Luiz Fernando N. Capitulino | 066202d | 2006-08-05 20:37:11 -0300 | [diff] [blame] | 140 | extern const struct file_operations usbfs_devices_fops; |
Kay Sievers | 9f8b17e | 2007-03-13 15:59:31 +0100 | [diff] [blame] | 141 | extern const struct file_operations usbdev_file_operations; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 142 | extern void usbfs_conn_disc_event(void); |
| 143 | |
Kay Sievers | 9f8b17e | 2007-03-13 15:59:31 +0100 | [diff] [blame] | 144 | extern int usb_devio_init(void); |
| 145 | extern void usb_devio_cleanup(void); |
Greg KH | 6d5e825 | 2005-04-18 17:39:24 -0700 | [diff] [blame] | 146 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 147 | struct dev_state { |
| 148 | struct list_head list; /* state list */ |
| 149 | struct usb_device *dev; |
| 150 | struct file *file; |
| 151 | spinlock_t lock; /* protects the async urb lists */ |
| 152 | struct list_head async_pending; |
| 153 | struct list_head async_completed; |
| 154 | wait_queue_head_t wait; /* wake up if a request completed */ |
| 155 | unsigned int discsignr; |
Eric W. Biederman | 2425c08 | 2006-10-02 02:17:28 -0700 | [diff] [blame] | 156 | struct pid *disc_pid; |
Linus Torvalds | d7dd8a7 | 2005-10-10 16:31:30 -0700 | [diff] [blame] | 157 | uid_t disc_uid, disc_euid; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 158 | void __user *disccontext; |
| 159 | unsigned long ifclaimed; |
David Quigley | 7a01955 | 2006-06-30 01:55:48 -0700 | [diff] [blame] | 160 | u32 secid; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 161 | }; |
| 162 | |
Greg Kroah-Hartman | 3099e75 | 2005-06-20 21:15:16 -0700 | [diff] [blame] | 163 | /* internal notify stuff */ |
| 164 | extern void usb_notify_add_device(struct usb_device *udev); |
| 165 | extern void usb_notify_remove_device(struct usb_device *udev); |
| 166 | extern void usb_notify_add_bus(struct usb_bus *ubus); |
| 167 | extern void usb_notify_remove_bus(struct usb_bus *ubus); |
| 168 | |