2017-11-03 15:18:41 +07:00
|
|
|
// SPDX-License-Identifier: GPL-2.0
|
2016-10-29 04:16:36 +07:00
|
|
|
/*
|
|
|
|
* Released under the GPLv2 only.
|
|
|
|
*/
|
|
|
|
|
2008-11-26 04:39:18 +07:00
|
|
|
#include <linux/pm.h>
|
2012-09-05 12:44:33 +07:00
|
|
|
#include <linux/acpi.h>
|
2008-11-26 04:39:18 +07:00
|
|
|
|
2013-01-21 21:18:00 +07:00
|
|
|
struct usb_hub_descriptor;
|
2014-03-10 15:36:40 +07:00
|
|
|
struct usb_dev_state;
|
2012-07-06 13:13:52 +07:00
|
|
|
|
2005-04-17 05:20:36 +07:00
|
|
|
/* Functions local to drivers/usb/core/ */
|
|
|
|
|
2008-01-31 06:21:33 +07:00
|
|
|
extern int usb_create_sysfs_dev_files(struct usb_device *dev);
|
|
|
|
extern void usb_remove_sysfs_dev_files(struct usb_device *dev);
|
2011-04-14 22:47:09 +07:00
|
|
|
extern void usb_create_sysfs_intf_files(struct usb_interface *intf);
|
2008-01-31 06:21:33 +07:00
|
|
|
extern void usb_remove_sysfs_intf_files(struct usb_interface *intf);
|
2008-12-06 02:10:34 +07:00
|
|
|
extern int usb_create_ep_devs(struct device *parent,
|
2008-01-31 06:21:33 +07:00
|
|
|
struct usb_host_endpoint *endpoint,
|
2006-06-15 02:14:34 +07:00
|
|
|
struct usb_device *udev);
|
2008-12-06 02:10:34 +07:00
|
|
|
extern void usb_remove_ep_devs(struct usb_host_endpoint *endpoint);
|
2005-04-17 05:20:36 +07:00
|
|
|
|
2007-07-31 04:05:22 +07:00
|
|
|
extern void usb_enable_endpoint(struct usb_device *dev,
|
2008-12-31 23:31:33 +07:00
|
|
|
struct usb_host_endpoint *ep, bool reset_toggle);
|
|
|
|
extern void usb_enable_interface(struct usb_device *dev,
|
|
|
|
struct usb_interface *intf, bool reset_toggles);
|
2009-01-16 05:03:33 +07:00
|
|
|
extern void usb_disable_endpoint(struct usb_device *dev, unsigned int epaddr,
|
|
|
|
bool reset_hardware);
|
2008-01-31 06:21:33 +07:00
|
|
|
extern void usb_disable_interface(struct usb_device *dev,
|
2009-01-16 05:03:33 +07:00
|
|
|
struct usb_interface *intf, bool reset_hardware);
|
2005-04-17 05:20:36 +07:00
|
|
|
extern void usb_release_interface_cache(struct kref *ref);
|
2008-01-31 06:21:33 +07:00
|
|
|
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 *);
|
2015-08-26 02:10:08 +07:00
|
|
|
extern void usb_deauthorize_interface(struct usb_interface *);
|
|
|
|
extern void usb_authorize_interface(struct usb_interface *);
|
2007-01-26 20:26:21 +07:00
|
|
|
extern void usb_detect_quirks(struct usb_device *udev);
|
2012-07-19 17:39:13 +07:00
|
|
|
extern void usb_detect_interface_quirks(struct usb_device *udev);
|
2018-03-19 23:26:06 +07:00
|
|
|
extern void usb_release_quirk_list(void);
|
2009-10-28 02:20:13 +07:00
|
|
|
extern int usb_remove_device(struct usb_device *udev);
|
2005-04-17 05:20:36 +07:00
|
|
|
|
|
|
|
extern int usb_get_device_descriptor(struct usb_device *dev,
|
|
|
|
unsigned int size);
|
2017-12-14 14:50:39 +07:00
|
|
|
extern int usb_set_isoch_delay(struct usb_device *dev);
|
2011-09-24 04:19:47 +07:00
|
|
|
extern int usb_get_bos_descriptor(struct usb_device *dev);
|
|
|
|
extern void usb_release_bos_descriptor(struct usb_device *dev);
|
2005-10-25 03:24:14 +07:00
|
|
|
extern char *usb_cache_string(struct usb_device *udev, int index);
|
2005-04-17 05:20:36 +07:00
|
|
|
extern int usb_set_configuration(struct usb_device *dev, int configuration);
|
2007-08-03 11:44:27 +07:00
|
|
|
extern int usb_choose_configuration(struct usb_device *udev);
|
2005-04-17 05:20:36 +07:00
|
|
|
|
2012-12-18 21:25:46 +07:00
|
|
|
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 */
|
2015-12-10 14:59:25 +07:00
|
|
|
unsigned mul = (udev->speed >= USB_SPEED_SUPER ? 8 : 2);
|
2012-12-18 21:25:46 +07:00
|
|
|
|
|
|
|
return c->desc.bMaxPower * mul;
|
|
|
|
}
|
|
|
|
|
2014-09-19 22:32:22 +07:00
|
|
|
extern void usb_kick_hub_wq(struct usb_device *dev);
|
2012-07-19 17:39:13 +07:00
|
|
|
extern int usb_match_one_id_intf(struct usb_device *dev,
|
|
|
|
struct usb_host_interface *intf,
|
|
|
|
const struct usb_device_id *id);
|
2007-01-26 20:26:21 +07:00
|
|
|
extern int usb_match_device(struct usb_device *dev,
|
|
|
|
const struct usb_device_id *id);
|
2008-06-24 03:00:40 +07:00
|
|
|
extern void usb_forced_unbind_intf(struct usb_interface *intf);
|
2014-03-12 22:30:38 +07:00
|
|
|
extern void usb_unbind_and_rebind_marked_interfaces(struct usb_device *udev);
|
2005-04-17 05:20:36 +07:00
|
|
|
|
2012-07-06 13:13:52 +07:00
|
|
|
extern void usb_hub_release_all_ports(struct usb_device *hdev,
|
2014-03-10 15:36:40 +07:00
|
|
|
struct usb_dev_state *owner);
|
2009-06-29 21:56:54 +07:00
|
|
|
extern bool usb_device_is_owned(struct usb_device *udev);
|
|
|
|
|
2005-04-19 07:39:24 +07:00
|
|
|
extern int usb_hub_init(void);
|
|
|
|
extern void usb_hub_cleanup(void);
|
|
|
|
extern int usb_major_init(void);
|
|
|
|
extern void usb_major_cleanup(void);
|
2015-06-16 08:08:26 +07:00
|
|
|
extern int usb_device_supports_lpm(struct usb_device *udev);
|
2017-10-18 14:15:01 +07:00
|
|
|
extern int usb_port_disable(struct usb_device *udev);
|
2005-04-19 07:39:24 +07:00
|
|
|
|
2006-07-02 09:14:24 +07:00
|
|
|
#ifdef CONFIG_PM
|
|
|
|
|
2008-08-13 01:34:10 +07:00
|
|
|
extern int usb_suspend(struct device *dev, pm_message_t msg);
|
2008-11-26 04:39:18 +07:00
|
|
|
extern int usb_resume(struct device *dev, pm_message_t msg);
|
2012-01-11 14:38:35 +07:00
|
|
|
extern int usb_resume_complete(struct device *dev);
|
2008-08-13 01:34:10 +07:00
|
|
|
|
2008-11-26 04:39:18 +07:00
|
|
|
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);
|
2006-09-27 01:50:20 +07:00
|
|
|
|
2014-11-30 05:47:05 +07:00
|
|
|
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);
|
2019-01-12 02:54:24 +07:00
|
|
|
extern int usb_enable_usb2_hardware_lpm(struct usb_device *udev);
|
|
|
|
extern int usb_disable_usb2_hardware_lpm(struct usb_device *udev);
|
2014-11-30 05:47:05 +07:00
|
|
|
|
2006-07-02 09:14:24 +07:00
|
|
|
#else
|
|
|
|
|
2008-11-26 04:39:18 +07:00
|
|
|
static inline int usb_port_suspend(struct usb_device *udev, pm_message_t msg)
|
2007-05-31 03:51:28 +07:00
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2008-11-26 04:39:18 +07:00
|
|
|
static inline int usb_port_resume(struct usb_device *udev, pm_message_t msg)
|
2007-05-31 03:51:28 +07:00
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2007-02-21 03:03:32 +07:00
|
|
|
#define usb_autosuspend_device(udev) do {} while (0)
|
2006-11-20 23:38:46 +07:00
|
|
|
static inline int usb_autoresume_device(struct usb_device *udev)
|
2006-09-27 01:50:20 +07:00
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
2006-08-31 02:47:02 +07:00
|
|
|
|
2019-01-12 02:54:24 +07:00
|
|
|
static inline int usb_enable_usb2_hardware_lpm(struct usb_device *udev)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline int usb_disable_usb2_hardware_lpm(struct usb_device *udev)
|
2011-09-24 04:19:52 +07:00
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
2014-11-30 05:47:05 +07:00
|
|
|
|
2006-08-31 02:47:02 +07:00
|
|
|
#endif
|
|
|
|
|
2006-07-02 09:08:06 +07:00
|
|
|
extern struct bus_type usb_bus_type;
|
2014-05-21 08:08:28 +07:00
|
|
|
extern struct mutex usb_port_peer_mutex;
|
2007-03-13 21:59:31 +07:00
|
|
|
extern struct device_type usb_device_type;
|
|
|
|
extern struct device_type usb_if_device_type;
|
2009-05-05 00:48:32 +07:00
|
|
|
extern struct device_type usb_ep_device_type;
|
2012-09-05 12:44:33 +07:00
|
|
|
extern struct device_type usb_port_device_type;
|
2006-07-02 09:08:49 +07:00
|
|
|
extern struct usb_device_driver usb_generic_driver;
|
|
|
|
|
2006-08-27 09:48:11 +07:00
|
|
|
static inline int is_usb_device(const struct device *dev)
|
2006-07-02 09:08:49 +07:00
|
|
|
{
|
2007-03-13 21:59:31 +07:00
|
|
|
return dev->type == &usb_device_type;
|
2006-07-02 09:08:49 +07:00
|
|
|
}
|
|
|
|
|
2009-05-05 00:48:32 +07:00
|
|
|
static inline int is_usb_interface(const struct device *dev)
|
|
|
|
{
|
|
|
|
return dev->type == &usb_if_device_type;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline int is_usb_endpoint(const struct device *dev)
|
|
|
|
{
|
|
|
|
return dev->type == &usb_ep_device_type;
|
|
|
|
}
|
|
|
|
|
2012-09-05 12:44:33 +07:00
|
|
|
static inline int is_usb_port(const struct device *dev)
|
|
|
|
{
|
|
|
|
return dev->type == &usb_port_device_type;
|
|
|
|
}
|
|
|
|
|
2006-07-02 09:08:49 +07: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;
|
|
|
|
}
|
2005-09-23 12:45:26 +07:00
|
|
|
|
2005-04-17 05:20:36 +07:00
|
|
|
/* for labeling diagnostics */
|
|
|
|
extern const char *usbcore_name;
|
|
|
|
|
2008-05-01 02:37:19 +07:00
|
|
|
/* sysfs stuff */
|
2009-06-25 00:06:31 +07:00
|
|
|
extern const struct attribute_group *usb_device_groups[];
|
|
|
|
extern const struct attribute_group *usb_interface_groups[];
|
2008-05-01 02:37:19 +07:00
|
|
|
|
2005-04-17 05:20:36 +07:00
|
|
|
/* usbfs stuff */
|
|
|
|
extern struct usb_driver usbfs_driver;
|
2006-08-06 06:37:11 +07:00
|
|
|
extern const struct file_operations usbfs_devices_fops;
|
2007-03-13 21:59:31 +07:00
|
|
|
extern const struct file_operations usbdev_file_operations;
|
2005-04-17 05:20:36 +07:00
|
|
|
extern void usbfs_conn_disc_event(void);
|
|
|
|
|
2007-03-13 21:59:31 +07:00
|
|
|
extern int usb_devio_init(void);
|
|
|
|
extern void usb_devio_cleanup(void);
|
2005-04-19 07:39:24 +07:00
|
|
|
|
2014-05-21 08:08:40 +07:00
|
|
|
/*
|
|
|
|
* Firmware specific cookie identifying a port's location. '0' == no location
|
|
|
|
* data available
|
|
|
|
*/
|
|
|
|
typedef u32 usb_port_location_t;
|
|
|
|
|
2005-06-21 11:15:16 +07:00
|
|
|
/* 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);
|
2013-01-21 21:18:00 +07:00
|
|
|
extern void usb_hub_adjust_deviceremovable(struct usb_device *hdev,
|
|
|
|
struct usb_hub_descriptor *desc);
|
2005-06-21 11:15:16 +07:00
|
|
|
|
2012-05-11 15:08:27 +07:00
|
|
|
#ifdef CONFIG_ACPI
|
|
|
|
extern int usb_acpi_register(void);
|
|
|
|
extern void usb_acpi_unregister(void);
|
2012-09-05 12:44:33 +07:00
|
|
|
extern acpi_handle usb_get_hub_port_acpi_handle(struct usb_device *hdev,
|
|
|
|
int port1);
|
2012-05-11 15:08:27 +07:00
|
|
|
#else
|
|
|
|
static inline int usb_acpi_register(void) { return 0; };
|
|
|
|
static inline void usb_acpi_unregister(void) { };
|
|
|
|
#endif
|