6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License as published by the Free
8 * Software Foundation, version 2.
11 #include <linux/module.h>
12 #include <linux/usb.h>
13 #include <linux/device.h>
14 #include <linux/errno.h>
15 #include <linux/kernel.h>
16 #include <linux/acpi.h>
17 #include <linux/pci.h>
18 #include <linux/usb/hcd.h>
23 * usb_acpi_power_manageable - check whether usb port has
24 * acpi power resource.
25 * @hdev: USB device belonging to the usb hub
26 * @index: port index based zero
28 * Return true if the port has acpi power resource and false if no.
30 bool usb_acpi_power_manageable(struct usb_device *hdev, int index)
32 acpi_handle port_handle;
33 int port1 = index + 1;
35 port_handle = usb_get_hub_port_acpi_handle(hdev,
38 return acpi_bus_power_manageable(port_handle);
42 EXPORT_SYMBOL_GPL(usb_acpi_power_manageable);
45 * usb_acpi_set_power_state - control usb port's power via acpi power
47 * @hdev: USB device belonging to the usb hub
48 * @index: port index based zero
49 * @enable: power state expected to be set
51 * Notice to use usb_acpi_power_manageable() to check whether the usb port
52 * has acpi power resource before invoking this function.
54 * Returns 0 on success, else negative errno.
56 int usb_acpi_set_power_state(struct usb_device *hdev, int index, bool enable)
58 acpi_handle port_handle;
60 int port1 = index + 1;
63 port_handle = (acpi_handle)usb_get_hub_port_acpi_handle(hdev,
69 state = ACPI_STATE_D0;
71 state = ACPI_STATE_D3_COLD;
73 error = acpi_bus_set_power(port_handle, state);
75 dev_dbg(&hdev->dev, "The power of hub port %d was set to %d\n",
78 dev_dbg(&hdev->dev, "The power of hub port failed to be set\n");
82 EXPORT_SYMBOL_GPL(usb_acpi_set_power_state);
84 static int usb_acpi_check_port_connect_type(struct usb_device *hdev,
85 acpi_handle handle, int port1)
88 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
89 union acpi_object *upc;
90 struct acpi_pld_info *pld;
94 * According to ACPI Spec 9.13. PLD indicates whether usb port is
95 * user visible and _UPC indicates whether it is connectable. If
96 * the port was visible and connectable, it could be freely connected
97 * and disconnected with USB devices. If no visible and connectable,
98 * a usb device is directly hard-wired to the port. If no visible and
99 * no connectable, the port would be not used.
101 status = acpi_get_physical_device_location(handle, &pld);
102 if (ACPI_FAILURE(status))
105 status = acpi_evaluate_object(handle, "_UPC", NULL, &buffer);
106 upc = buffer.pointer;
107 if (!upc || (upc->type != ACPI_TYPE_PACKAGE)
108 || upc->package.count != 4) {
113 if (upc->package.elements[0].integer.value)
114 if (pld->user_visible)
115 usb_set_hub_port_connect_type(hdev, port1,
116 USB_PORT_CONNECT_TYPE_HOT_PLUG);
118 usb_set_hub_port_connect_type(hdev, port1,
119 USB_PORT_CONNECT_TYPE_HARD_WIRED);
120 else if (!pld->user_visible)
121 usb_set_hub_port_connect_type(hdev, port1, USB_PORT_NOT_USED);
129 static struct acpi_device *usb_acpi_find_companion(struct device *dev)
131 struct usb_device *udev;
132 acpi_handle *parent_handle;
136 * In the ACPI DSDT table, only usb root hub and usb ports are
137 * acpi device nodes. The hierarchy like following.
145 * So all binding process is divided into two parts. binding
146 * root hub and usb ports.
148 if (is_usb_device(dev)) {
149 udev = to_usb_device(dev);
151 enum usb_port_connect_type type;
154 * According usb port's connect type to set usb device's
157 type = usb_get_hub_port_connect_type(udev->parent,
160 case USB_PORT_CONNECT_TYPE_HOT_PLUG:
161 udev->removable = USB_DEVICE_REMOVABLE;
163 case USB_PORT_CONNECT_TYPE_HARD_WIRED:
164 udev->removable = USB_DEVICE_FIXED;
167 udev->removable = USB_DEVICE_REMOVABLE_UNKNOWN;
174 /* root hub's parent is the usb hcd. */
175 return acpi_find_child_device(ACPI_COMPANION(dev->parent),
176 udev->portnum, false);
177 } else if (is_usb_port(dev)) {
178 struct acpi_device *adev = NULL;
180 sscanf(dev_name(dev), "port%d", &port_num);
181 /* Get the struct usb_device point of port's hub */
182 udev = to_usb_device(dev->parent->parent);
185 * The root hub ports' parent is the root hub. The non-root-hub
186 * ports' parent is the parent hub port which the hub is
190 struct usb_hcd *hcd = bus_to_hcd(udev->bus);
193 raw_port_num = usb_hcd_find_raw_port_number(hcd,
195 adev = acpi_find_child_device(ACPI_COMPANION(&udev->dev),
196 raw_port_num, false);
201 usb_get_hub_port_acpi_handle(udev->parent,
206 acpi_bus_get_device(parent_handle, &adev);
207 adev = acpi_find_child_device(adev, port_num, false);
211 usb_acpi_check_port_connect_type(udev, adev->handle, port_num);
218 static bool usb_acpi_bus_match(struct device *dev)
220 return is_usb_device(dev) || is_usb_port(dev);
223 static struct acpi_bus_type usb_acpi_bus = {
225 .match = usb_acpi_bus_match,
226 .find_companion = usb_acpi_find_companion,
229 int usb_acpi_register(void)
231 return register_acpi_bus_type(&usb_acpi_bus);
234 void usb_acpi_unregister(void)
236 unregister_acpi_bus_type(&usb_acpi_bus);