Release 4.7 drivers/usb/core/usb.h
#include <linux/pm.h>
#include <linux/acpi.h>
struct usb_hub_descriptor;
struct usb_dev_state;
/* Functions local to drivers/usb/core/ */
extern int usb_create_sysfs_dev_files(struct usb_device *dev);
extern void usb_remove_sysfs_dev_files(struct usb_device *dev);
extern void usb_create_sysfs_intf_files(struct usb_interface *intf);
extern void usb_remove_sysfs_intf_files(struct usb_interface *intf);
extern int usb_create_ep_devs(struct device *parent,
struct usb_host_endpoint *endpoint,
struct usb_device *udev);
extern void usb_remove_ep_devs(struct usb_host_endpoint *endpoint);
extern void usb_enable_endpoint(struct usb_device *dev,
struct usb_host_endpoint *ep, bool reset_toggle);
extern void usb_enable_interface(struct usb_device *dev,
struct usb_interface *intf, bool reset_toggles);
extern void usb_disable_endpoint(struct usb_device *dev, unsigned int epaddr,
bool reset_hardware);
extern void usb_disable_interface(struct usb_device *dev,
struct usb_interface *intf, bool reset_hardware);
extern void usb_release_interface_cache(struct kref *ref);
extern void usb_disable_device(struct usb_device *dev, int skip_ep0);
extern int usb_deauthorize_device(struct usb_device *);
extern int usb_authorize_device(struct usb_device *);
extern void usb_deauthorize_interface(struct usb_interface *);
extern void usb_authorize_interface(struct usb_interface *);
extern void usb_detect_quirks(struct usb_device *udev);
extern void usb_detect_interface_quirks(struct usb_device *udev);
extern int usb_remove_device(struct usb_device *udev);
extern int usb_get_device_descriptor(struct usb_device *dev,
unsigned int size);
extern int usb_get_bos_descriptor(struct usb_device *dev);
extern void usb_release_bos_descriptor(struct usb_device *dev);
extern char *usb_cache_string(struct usb_device *udev, int index);
extern int usb_set_configuration(struct usb_device *dev, int configuration);
extern int usb_choose_configuration(struct usb_device *udev);
static inline unsigned usb_get_max_power(struct usb_device *udev,
struct usb_host_config *c)
{
/* SuperSpeed power is in 8 mA units; others are in 2 mA units */
unsigned mul = (udev->speed >= USB_SPEED_SUPER ? 8 : 2);
return c->desc.bMaxPower * mul;
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
sebastian andrzej siewior | sebastian andrzej siewior | 41 | 97.62% | 1 | 50.00% |
mathias nyman | mathias nyman | 1 | 2.38% | 1 | 50.00% |
| Total | 42 | 100.00% | 2 | 100.00% |
extern void usb_kick_hub_wq(struct usb_device *dev);
extern int usb_match_one_id_intf(struct usb_device *dev,
struct usb_host_interface *intf,
const struct usb_device_id *id);
extern int usb_match_device(struct usb_device *dev,
const struct usb_device_id *id);
extern void usb_forced_unbind_intf(struct usb_interface *intf);
extern void usb_unbind_and_rebind_marked_interfaces(struct usb_device *udev);
extern void usb_hub_release_all_ports(struct usb_device *hdev,
struct usb_dev_state *owner);
extern bool usb_device_is_owned(struct usb_device *udev);
extern int usb_hub_init(void);
extern void usb_hub_cleanup(void);
extern int usb_major_init(void);
extern void usb_major_cleanup(void);
extern int usb_device_supports_lpm(struct usb_device *udev);
#ifdef CONFIG_PM
extern int usb_suspend(struct device *dev, pm_message_t msg);
extern int usb_resume(struct device *dev, pm_message_t msg);
extern int usb_resume_complete(struct device *dev);
extern int usb_port_suspend(struct usb_device *dev, pm_message_t msg);
extern int usb_port_resume(struct usb_device *dev, pm_message_t msg);
extern void usb_autosuspend_device(struct usb_device *udev);
extern int usb_autoresume_device(struct usb_device *udev);
extern int usb_remote_wakeup(struct usb_device *dev);
extern int usb_runtime_suspend(struct device *dev);
extern int usb_runtime_resume(struct device *dev);
extern int usb_runtime_idle(struct device *dev);
extern int usb_set_usb2_hardware_lpm(struct usb_device *udev, int enable);
#else
static inline int usb_port_suspend(struct usb_device *udev, pm_message_t msg)
{
return 0;
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
rafael j. wysocki | rafael j. wysocki | 18 | 100.00% | 1 | 100.00% |
| Total | 18 | 100.00% | 1 | 100.00% |
static inline int usb_port_resume(struct usb_device *udev, pm_message_t msg)
{
return 0;
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
rafael j. wysocki | rafael j. wysocki | 18 | 100.00% | 1 | 100.00% |
| Total | 18 | 100.00% | 1 | 100.00% |
#define usb_autosuspend_device(udev) do {} while (0)
static inline int usb_autoresume_device(struct usb_device *udev)
{
return 0;
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
alan stern | alan stern | 15 | 100.00% | 3 | 100.00% |
| Total | 15 | 100.00% | 3 | 100.00% |
static inline int usb_set_usb2_hardware_lpm(struct usb_device *udev, int enable)
{
return 0;
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
andiry xu | andiry xu | 18 | 100.00% | 1 | 100.00% |
| Total | 18 | 100.00% | 1 | 100.00% |
#endif
extern struct bus_type usb_bus_type;
extern struct mutex usb_port_peer_mutex;
extern struct device_type usb_device_type;
extern struct device_type usb_if_device_type;
extern struct device_type usb_ep_device_type;
extern struct device_type usb_port_device_type;
extern struct usb_device_driver usb_generic_driver;
static inline int is_usb_device(const struct device *dev)
{
return dev->type == &usb_device_type;
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
alan stern | alan stern | 17 | 80.95% | 1 | 25.00% |
kay sievers | kay sievers | 2 | 9.52% | 1 | 25.00% |
luiz fernando capitulino | luiz fernando capitulino | 1 | 4.76% | 1 | 25.00% |
greg kroah-hartman | greg kroah-hartman | 1 | 4.76% | 1 | 25.00% |
| Total | 21 | 100.00% | 4 | 100.00% |
static inline int is_usb_interface(const struct device *dev)
{
return dev->type == &usb_if_device_type;
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
kay sievers | kay sievers | 21 | 100.00% | 1 | 100.00% |
| Total | 21 | 100.00% | 1 | 100.00% |
static inline int is_usb_endpoint(const struct device *dev)
{
return dev->type == &usb_ep_device_type;
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
kay sievers | kay sievers | 21 | 100.00% | 1 | 100.00% |
| Total | 21 | 100.00% | 1 | 100.00% |
static inline int is_usb_port(const struct device *dev)
{
return dev->type == &usb_port_device_type;
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
lan tianyu | lan tianyu | 21 | 100.00% | 1 | 100.00% |
| Total | 21 | 100.00% | 1 | 100.00% |
/* Do the same for device drivers and interface drivers. */
static inline int is_usb_device_driver(struct device_driver *drv)
{
return container_of(drv, struct usbdrv_wrap, driver)->
for_devices;
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
alan stern | alan stern | 25 | 100.00% | 1 | 100.00% |
| Total | 25 | 100.00% | 1 | 100.00% |
/* for labeling diagnostics */
extern const char *usbcore_name;
/* sysfs stuff */
extern const struct attribute_group *usb_device_groups[];
extern const struct attribute_group *usb_interface_groups[];
/* usbfs stuff */
extern struct mutex usbfs_mutex;
extern struct usb_driver usbfs_driver;
extern const struct file_operations usbfs_devices_fops;
extern const struct file_operations usbdev_file_operations;
extern void usbfs_conn_disc_event(void);
extern int usb_devio_init(void);
extern void usb_devio_cleanup(void);
/*
* Firmware specific cookie identifying a port's location. '0' == no location
* data available
*/
typedef u32 usb_port_location_t;
/* internal notify stuff */
extern void usb_notify_add_device(struct usb_device *udev);
extern void usb_notify_remove_device(struct usb_device *udev);
extern void usb_notify_add_bus(struct usb_bus *ubus);
extern void usb_notify_remove_bus(struct usb_bus *ubus);
extern void usb_hub_adjust_deviceremovable(struct usb_device *hdev,
struct usb_hub_descriptor *desc);
#ifdef CONFIG_ACPI
extern int usb_acpi_register(void);
extern void usb_acpi_unregister(void);
extern acpi_handle usb_get_hub_port_acpi_handle(struct usb_device *hdev,
int port1);
#else
static inline int usb_acpi_register(void) { return 0; }Contributors
| Person | Tokens | Prop | Commits | CommitProp |
matthew garrett | matthew garrett | 12 | 100.00% | 1 | 100.00% |
| Total | 12 | 100.00% | 1 | 100.00% |
;
static inline void usb_acpi_unregister(void) { }Contributors
| Person | Tokens | Prop | Commits | CommitProp |
matthew garrett | matthew garrett | 8 | 100.00% | 1 | 100.00% |
| Total | 8 | 100.00% | 1 | 100.00% |
;
#endif
Overall Contributors
| Person | Tokens | Prop | Commits | CommitProp |
alan stern | alan stern | 345 | 33.37% | 28 | 39.44% |
greg kroah-hartman | greg kroah-hartman | 188 | 18.18% | 12 | 16.90% |
kay sievers | kay sievers | 74 | 7.16% | 3 | 4.23% |
rafael j. wysocki | rafael j. wysocki | 66 | 6.38% | 2 | 2.82% |
lan tianyu | lan tianyu | 63 | 6.09% | 4 | 5.63% |
andiry xu | andiry xu | 51 | 4.93% | 2 | 2.82% |
matthew garrett | matthew garrett | 43 | 4.16% | 1 | 1.41% |
sebastian andrzej siewior | sebastian andrzej siewior | 41 | 3.97% | 1 | 1.41% |
david brownell | david brownell | 39 | 3.77% | 4 | 5.63% |
laurent pinchart | laurent pinchart | 31 | 3.00% | 1 | 1.41% |
inaky perez-gonzalez | inaky perez-gonzalez | 27 | 2.61% | 1 | 1.41% |
oliver neukum | oliver neukum | 20 | 1.93% | 2 | 2.82% |
stefan koch | stefan koch | 18 | 1.74% | 1 | 1.41% |
dan williams | dan williams | 10 | 0.97% | 2 | 2.82% |
lu baolu | lu baolu | 10 | 0.97% | 1 | 1.41% |
luiz fernando capitulino | luiz fernando capitulino | 3 | 0.29% | 2 | 2.82% |
valentina manea | valentina manea | 2 | 0.19% | 1 | 1.41% |
petr mladek | petr mladek | 1 | 0.10% | 1 | 1.41% |
mathias nyman | mathias nyman | 1 | 0.10% | 1 | 1.41% |
michal nazarewicz | michal nazarewicz | 1 | 0.10% | 1 | 1.41% |
| Total | 1034 | 100.00% | 71 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.