]> Git Repo - linux.git/blob - drivers/usb/core/usb.h
usbcore: make usb_generic a usb_device_driver
[linux.git] / drivers / usb / core / usb.h
1 /* Functions local to drivers/usb/core/ */
2
3 extern void usb_create_sysfs_dev_files (struct usb_device *dev);
4 extern void usb_remove_sysfs_dev_files (struct usb_device *dev);
5 extern void usb_create_sysfs_intf_files (struct usb_interface *intf);
6 extern void usb_remove_sysfs_intf_files (struct usb_interface *intf);
7 extern void usb_create_ep_files(struct device *parent, struct usb_host_endpoint *endpoint,
8                                 struct usb_device *udev);
9 extern void usb_remove_ep_files(struct usb_host_endpoint *endpoint);
10
11 extern void usb_disable_endpoint (struct usb_device *dev, unsigned int epaddr);
12 extern void usb_disable_interface (struct usb_device *dev,
13                 struct usb_interface *intf);
14 extern void usb_release_interface_cache(struct kref *ref);
15 extern void usb_disable_device (struct usb_device *dev, int skip_ep0);
16
17 extern int usb_get_device_descriptor(struct usb_device *dev,
18                 unsigned int size);
19 extern char *usb_cache_string(struct usb_device *udev, int index);
20 extern int usb_set_configuration(struct usb_device *dev, int configuration);
21
22 extern void usb_kick_khubd(struct usb_device *dev);
23 extern void usb_suspend_root_hub(struct usb_device *hdev);
24 extern void usb_resume_root_hub(struct usb_device *dev);
25
26 extern int  usb_hub_init(void);
27 extern void usb_hub_cleanup(void);
28 extern int usb_major_init(void);
29 extern void usb_major_cleanup(void);
30 extern int usb_host_init(void);
31 extern void usb_host_cleanup(void);
32
33 extern int usb_port_suspend(struct usb_device *dev);
34 extern int usb_port_resume(struct usb_device *dev);
35
36 extern struct bus_type usb_bus_type;
37 extern struct usb_device_driver usb_generic_driver;
38
39 /* Here's how we tell apart devices and interfaces.  Luckily there's
40  * no such thing as a platform USB device, so we can steal the use
41  * of the platform_data field. */
42
43 static inline int is_usb_device(struct device *dev)
44 {
45         return dev->platform_data == &usb_generic_driver;
46 }
47
48 /* Do the same for device drivers and interface drivers. */
49
50 static inline int is_usb_device_driver(struct device_driver *drv)
51 {
52         return container_of(drv, struct usbdrv_wrap, driver)->
53                         for_devices;
54 }
55
56 /* Interfaces and their "power state" are owned by usbcore */
57
58 static inline void mark_active(struct usb_interface *f)
59 {
60         f->dev.power.power_state.event = PM_EVENT_ON;
61 }
62
63 static inline void mark_quiesced(struct usb_interface *f)
64 {
65         f->dev.power.power_state.event = PM_EVENT_FREEZE;
66 }
67
68 static inline int is_active(struct usb_interface *f)
69 {
70         return f->dev.power.power_state.event == PM_EVENT_ON;
71 }
72
73
74 /* for labeling diagnostics */
75 extern const char *usbcore_name;
76
77 /* usbfs stuff */
78 extern struct mutex usbfs_mutex;
79 extern struct usb_driver usbfs_driver;
80 extern struct file_operations usbfs_devices_fops;
81 extern struct file_operations usbfs_device_file_operations;
82 extern void usbfs_conn_disc_event(void);
83
84 extern int usbdev_init(void);
85 extern void usbdev_cleanup(void);
86
87 struct dev_state {
88         struct list_head list;      /* state list */
89         struct usb_device *dev;
90         struct file *file;
91         spinlock_t lock;            /* protects the async urb lists */
92         struct list_head async_pending;
93         struct list_head async_completed;
94         wait_queue_head_t wait;     /* wake up if a request completed */
95         unsigned int discsignr;
96         pid_t disc_pid;
97         uid_t disc_uid, disc_euid;
98         void __user *disccontext;
99         unsigned long ifclaimed;
100         u32 secid;
101 };
102
103 /* internal notify stuff */
104 extern void usb_notify_add_device(struct usb_device *udev);
105 extern void usb_notify_remove_device(struct usb_device *udev);
106 extern void usb_notify_add_bus(struct usb_bus *ubus);
107 extern void usb_notify_remove_bus(struct usb_bus *ubus);
108
This page took 0.0377150000000001 seconds and 4 git commands to generate.