1 // SPDX-License-Identifier: GPL-2.0
5 * Copyright 2012 Red Hat <mjg@redhat.com>
7 #include <linux/module.h>
9 #include <linux/device.h>
10 #include <linux/errno.h>
11 #include <linux/kernel.h>
12 #include <linux/acpi.h>
13 #include <linux/pci.h>
14 #include <linux/usb/hcd.h>
19 * usb_acpi_power_manageable - check whether usb port has
20 * acpi power resource.
21 * @hdev: USB device belonging to the usb hub
22 * @index: port index based zero
24 * Return true if the port has acpi power resource and false if no.
26 bool usb_acpi_power_manageable(struct usb_device *hdev, int index)
28 acpi_handle port_handle;
29 int port1 = index + 1;
31 port_handle = usb_get_hub_port_acpi_handle(hdev,
34 return acpi_bus_power_manageable(port_handle);
38 EXPORT_SYMBOL_GPL(usb_acpi_power_manageable);
41 * usb_acpi_set_power_state - control usb port's power via acpi power
43 * @hdev: USB device belonging to the usb hub
44 * @index: port index based zero
45 * @enable: power state expected to be set
47 * Notice to use usb_acpi_power_manageable() to check whether the usb port
48 * has acpi power resource before invoking this function.
50 * Returns 0 on success, else negative errno.
52 int usb_acpi_set_power_state(struct usb_device *hdev, int index, bool enable)
54 struct usb_hub *hub = usb_hub_to_struct_hub(hdev);
55 struct usb_port *port_dev;
56 acpi_handle port_handle;
58 int port1 = index + 1;
63 port_dev = hub->ports[port1 - 1];
65 port_handle = (acpi_handle) usb_get_hub_port_acpi_handle(hdev, port1);
70 state = ACPI_STATE_D0;
72 state = ACPI_STATE_D3_COLD;
74 error = acpi_bus_set_power(port_handle, state);
76 dev_dbg(&port_dev->dev, "acpi: power was set to %d\n", enable);
78 dev_dbg(&port_dev->dev, "acpi: power failed to be set\n");
82 EXPORT_SYMBOL_GPL(usb_acpi_set_power_state);
84 static enum usb_port_connect_type usb_acpi_get_connect_type(acpi_handle handle,
85 struct acpi_pld_info *pld)
87 enum usb_port_connect_type connect_type = USB_PORT_CONNECT_TYPE_UNKNOWN;
88 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
89 union acpi_object *upc;
93 * According to 9.14 in ACPI Spec 6.2. _PLD indicates whether usb port
94 * is user visible and _UPC indicates whether it is connectable. If
95 * the port was visible and connectable, it could be freely connected
96 * and disconnected with USB devices. If no visible and connectable,
97 * a usb device is directly hard-wired to the port. If no visible and
98 * no connectable, the port would be not used.
100 status = acpi_evaluate_object(handle, "_UPC", NULL, &buffer);
101 upc = buffer.pointer;
102 if (!upc || (upc->type != ACPI_TYPE_PACKAGE)
103 || upc->package.count != 4) {
107 if (upc->package.elements[0].integer.value)
108 if (pld->user_visible)
109 connect_type = USB_PORT_CONNECT_TYPE_HOT_PLUG;
111 connect_type = USB_PORT_CONNECT_TYPE_HARD_WIRED;
112 else if (!pld->user_visible)
113 connect_type = USB_PORT_NOT_USED;
121 * Private to usb-acpi, all the core needs to know is that
122 * port_dev->location is non-zero when it has been set by the firmware.
124 #define USB_ACPI_LOCATION_VALID (1 << 31)
126 static struct acpi_device *usb_acpi_find_port(struct acpi_device *parent,
129 struct acpi_device *adev;
134 list_for_each_entry(adev, &parent->children, node) {
135 if (acpi_device_adr(adev) == raw)
139 return acpi_find_child_device(parent, raw, false);
142 static struct acpi_device *usb_acpi_find_companion(struct device *dev)
144 struct usb_device *udev;
145 struct acpi_device *adev;
146 acpi_handle *parent_handle;
149 * In the ACPI DSDT table, only usb root hub and usb ports are
150 * acpi device nodes. The hierarchy like following.
158 * So all binding process is divided into two parts. binding
159 * root hub and usb ports.
161 if (is_usb_device(dev)) {
162 udev = to_usb_device(dev);
166 /* root hub is only child (_ADR=0) under its parent, the HC */
167 adev = ACPI_COMPANION(dev->parent);
168 return acpi_find_child_device(adev, 0, false);
169 } else if (is_usb_port(dev)) {
170 struct usb_port *port_dev = to_usb_port(dev);
171 int port1 = port_dev->portnum;
172 struct acpi_pld_info *pld;
176 /* Get the struct usb_device point of port's hub */
177 udev = to_usb_device(dev->parent->parent);
180 * The root hub ports' parent is the root hub. The non-root-hub
181 * ports' parent is the parent hub port which the hub is
185 struct usb_hcd *hcd = bus_to_hcd(udev->bus);
188 raw = usb_hcd_find_raw_port_number(hcd, port1);
190 adev = usb_acpi_find_port(ACPI_COMPANION(&udev->dev),
197 usb_get_hub_port_acpi_handle(udev->parent,
202 acpi_bus_get_device(parent_handle, &adev);
204 adev = usb_acpi_find_port(adev, port1);
209 handle = adev->handle;
210 status = acpi_get_physical_device_location(handle, &pld);
211 if (ACPI_FAILURE(status) || !pld)
214 port_dev->location = USB_ACPI_LOCATION_VALID
215 | pld->group_token << 8 | pld->group_position;
216 port_dev->connect_type = usb_acpi_get_connect_type(handle, pld);
225 static bool usb_acpi_bus_match(struct device *dev)
227 return is_usb_device(dev) || is_usb_port(dev);
230 static struct acpi_bus_type usb_acpi_bus = {
232 .match = usb_acpi_bus_match,
233 .find_companion = usb_acpi_find_companion,
236 int usb_acpi_register(void)
238 return register_acpi_bus_type(&usb_acpi_bus);
241 void usb_acpi_unregister(void)
243 unregister_acpi_bus_type(&usb_acpi_bus);