blob: ef9cf4a21afe2845ded1a2bdbe6d9ebf6cc717e6 [file] [log] [blame]
Matthew Garrettda0af6e2012-05-11 16:08:27 +08001/*
2 * USB-ACPI glue code
3 *
4 * Copyright 2012 Red Hat <mjg@redhat.com>
5 *
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.
9 *
10 */
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>
Lan Tianyubafcaf62013-03-19 16:48:13 +080018#include <linux/usb/hcd.h>
Matthew Garrettda0af6e2012-05-11 16:08:27 +080019
Dan Williamsd99f6b42014-05-20 18:08:17 -070020#include "hub.h"
Matthew Garrettda0af6e2012-05-11 16:08:27 +080021
Lan Tianyuf7ac7782012-09-05 13:44:36 +080022/**
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
27 *
28 * Return true if the port has acpi power resource and false if no.
29 */
30bool usb_acpi_power_manageable(struct usb_device *hdev, int index)
31{
32 acpi_handle port_handle;
33 int port1 = index + 1;
34
35 port_handle = usb_get_hub_port_acpi_handle(hdev,
36 port1);
37 if (port_handle)
38 return acpi_bus_power_manageable(port_handle);
39 else
40 return false;
41}
42EXPORT_SYMBOL_GPL(usb_acpi_power_manageable);
43
44/**
45 * usb_acpi_set_power_state - control usb port's power via acpi power
46 * resource
47 * @hdev: USB device belonging to the usb hub
48 * @index: port index based zero
49 * @enable: power state expected to be set
50 *
51 * Notice to use usb_acpi_power_manageable() to check whether the usb port
52 * has acpi power resource before invoking this function.
53 *
54 * Returns 0 on success, else negative errno.
55 */
56int usb_acpi_set_power_state(struct usb_device *hdev, int index, bool enable)
57{
Dan Williamsd99f6b42014-05-20 18:08:17 -070058 struct usb_hub *hub = usb_hub_to_struct_hub(hdev);
59 struct usb_port *port_dev;
Lan Tianyuf7ac7782012-09-05 13:44:36 +080060 acpi_handle port_handle;
61 unsigned char state;
62 int port1 = index + 1;
63 int error = -EINVAL;
64
Dan Williamsd99f6b42014-05-20 18:08:17 -070065 if (!hub)
66 return -ENODEV;
67 port_dev = hub->ports[port1 - 1];
68
69 port_handle = (acpi_handle) usb_get_hub_port_acpi_handle(hdev, port1);
Lan Tianyuf7ac7782012-09-05 13:44:36 +080070 if (!port_handle)
71 return error;
72
73 if (enable)
74 state = ACPI_STATE_D0;
75 else
76 state = ACPI_STATE_D3_COLD;
77
78 error = acpi_bus_set_power(port_handle, state);
79 if (!error)
Dan Williamsd99f6b42014-05-20 18:08:17 -070080 dev_dbg(&port_dev->dev, "acpi: power was set to %d\n", enable);
Lan Tianyuf7ac7782012-09-05 13:44:36 +080081 else
Dan Williamsd99f6b42014-05-20 18:08:17 -070082 dev_dbg(&port_dev->dev, "acpi: power failed to be set\n");
Lan Tianyuf7ac7782012-09-05 13:44:36 +080083
84 return error;
85}
86EXPORT_SYMBOL_GPL(usb_acpi_set_power_state);
87
Dan Williams3bfd6592014-05-20 18:08:40 -070088static enum usb_port_connect_type usb_acpi_get_connect_type(acpi_handle handle,
89 struct acpi_pld_info *pld)
Matthew Garrett54d3f8c2012-05-11 16:08:28 +080090{
Dan Williamsd99f6b42014-05-20 18:08:17 -070091 enum usb_port_connect_type connect_type = USB_PORT_CONNECT_TYPE_UNKNOWN;
Matthew Garrett54d3f8c2012-05-11 16:08:28 +080092 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
Dan Williamsd99f6b42014-05-20 18:08:17 -070093 union acpi_object *upc;
94 acpi_status status;
Dan Williamsd99f6b42014-05-20 18:08:17 -070095
Lan Tianyu05f91682012-09-05 13:44:34 +080096 /*
Rahul Bedarkar025d4432014-01-04 11:24:41 +053097 * According to ACPI Spec 9.13. PLD indicates whether usb port is
Lan Tianyu05f91682012-09-05 13:44:34 +080098 * user visible and _UPC indicates whether it is connectable. If
99 * the port was visible and connectable, it could be freely connected
100 * and disconnected with USB devices. If no visible and connectable,
101 * a usb device is directly hard-wired to the port. If no visible and
102 * no connectable, the port would be not used.
103 */
Lan Tianyu05f91682012-09-05 13:44:34 +0800104 status = acpi_evaluate_object(handle, "_UPC", NULL, &buffer);
Matthew Garrett54d3f8c2012-05-11 16:08:28 +0800105 upc = buffer.pointer;
Matthew Garrett54d3f8c2012-05-11 16:08:28 +0800106 if (!upc || (upc->type != ACPI_TYPE_PACKAGE)
107 || upc->package.count != 4) {
Matthew Garrett54d3f8c2012-05-11 16:08:28 +0800108 goto out;
109 }
110
111 if (upc->package.elements[0].integer.value)
Linus Torvaldsd8dc91b2012-10-08 07:14:06 +0900112 if (pld->user_visible)
Dan Williamsd99f6b42014-05-20 18:08:17 -0700113 connect_type = USB_PORT_CONNECT_TYPE_HOT_PLUG;
Lan Tianyu05f91682012-09-05 13:44:34 +0800114 else
Dan Williamsd99f6b42014-05-20 18:08:17 -0700115 connect_type = USB_PORT_CONNECT_TYPE_HARD_WIRED;
Linus Torvaldsd8dc91b2012-10-08 07:14:06 +0900116 else if (!pld->user_visible)
Dan Williamsd99f6b42014-05-20 18:08:17 -0700117 connect_type = USB_PORT_NOT_USED;
Matthew Garrett54d3f8c2012-05-11 16:08:28 +0800118out:
119 kfree(upc);
Dan Williams3bfd6592014-05-20 18:08:40 -0700120 return connect_type;
Matthew Garrett54d3f8c2012-05-11 16:08:28 +0800121}
122
Dan Williams3bfd6592014-05-20 18:08:40 -0700123
124/*
125 * Private to usb-acpi, all the core needs to know is that
126 * port_dev->location is non-zero when it has been set by the firmware.
127 */
128#define USB_ACPI_LOCATION_VALID (1 << 31)
129
Mathias Nymanedfe57b2017-06-02 16:36:26 +0300130static struct acpi_device *usb_acpi_find_port(struct acpi_device *parent,
131 int raw)
132{
133 struct acpi_device *adev;
134
135 if (!parent)
136 return NULL;
137
138 list_for_each_entry(adev, &parent->children, node) {
139 if (acpi_device_adr(adev) == raw)
140 return adev;
141 }
142
143 return acpi_find_child_device(parent, raw, false);
144}
145
Rafael J. Wysockie3f02c52013-11-29 16:27:34 +0100146static struct acpi_device *usb_acpi_find_companion(struct device *dev)
Matthew Garrettda0af6e2012-05-11 16:08:27 +0800147{
148 struct usb_device *udev;
Dan Williamsa4204ff2014-05-20 18:08:22 -0700149 struct acpi_device *adev;
Matthew Garrettda0af6e2012-05-11 16:08:27 +0800150 acpi_handle *parent_handle;
151
Lan Tianyud5575422012-09-05 13:44:33 +0800152 /*
153 * In the ACPI DSDT table, only usb root hub and usb ports are
154 * acpi device nodes. The hierarchy like following.
155 * Device (EHC1)
156 * Device (HUBN)
157 * Device (PR01)
158 * Device (PR11)
159 * Device (PR12)
160 * Device (PR13)
161 * ...
162 * So all binding process is divided into two parts. binding
163 * root hub and usb ports.
164 */
165 if (is_usb_device(dev)) {
166 udev = to_usb_device(dev);
Dan Williamsa4204ff2014-05-20 18:08:22 -0700167 if (udev->parent)
Rafael J. Wysockie3f02c52013-11-29 16:27:34 +0100168 return NULL;
Lan Tianyu05f91682012-09-05 13:44:34 +0800169
Dan Williamsa4204ff2014-05-20 18:08:22 -0700170 /* root hub is only child (_ADR=0) under its parent, the HC */
171 adev = ACPI_COMPANION(dev->parent);
172 return acpi_find_child_device(adev, 0, false);
Lan Tianyud5575422012-09-05 13:44:33 +0800173 } else if (is_usb_port(dev)) {
Dan Williamsd99f6b42014-05-20 18:08:17 -0700174 struct usb_port *port_dev = to_usb_port(dev);
Dan Williamsa4204ff2014-05-20 18:08:22 -0700175 int port1 = port_dev->portnum;
Dan Williams3bfd6592014-05-20 18:08:40 -0700176 struct acpi_pld_info *pld;
177 acpi_handle *handle;
178 acpi_status status;
Rafael J. Wysockie3f02c52013-11-29 16:27:34 +0100179
Lan Tianyud5575422012-09-05 13:44:33 +0800180 /* Get the struct usb_device point of port's hub */
181 udev = to_usb_device(dev->parent->parent);
Matthew Garrettda0af6e2012-05-11 16:08:27 +0800182
Lan Tianyud5575422012-09-05 13:44:33 +0800183 /*
184 * The root hub ports' parent is the root hub. The non-root-hub
185 * ports' parent is the parent hub port which the hub is
186 * connected to.
187 */
188 if (!udev->parent) {
Lan Tianyubafcaf62013-03-19 16:48:13 +0800189 struct usb_hcd *hcd = bus_to_hcd(udev->bus);
Dan Williamsd99f6b42014-05-20 18:08:17 -0700190 int raw;
Lan Tianyubafcaf62013-03-19 16:48:13 +0800191
Dan Williamsd99f6b42014-05-20 18:08:17 -0700192 raw = usb_hcd_find_raw_port_number(hcd, port1);
Mathias Nymanedfe57b2017-06-02 16:36:26 +0300193
194 adev = usb_acpi_find_port(ACPI_COMPANION(&udev->dev),
195 raw);
196
Rafael J. Wysockie3f02c52013-11-29 16:27:34 +0100197 if (!adev)
198 return NULL;
Lan Tianyud5575422012-09-05 13:44:33 +0800199 } else {
200 parent_handle =
201 usb_get_hub_port_acpi_handle(udev->parent,
202 udev->portnum);
203 if (!parent_handle)
Rafael J. Wysockie3f02c52013-11-29 16:27:34 +0100204 return NULL;
Matthew Garrettda0af6e2012-05-11 16:08:27 +0800205
Rafael J. Wysockie3f02c52013-11-29 16:27:34 +0100206 acpi_bus_get_device(parent_handle, &adev);
Mathias Nymanedfe57b2017-06-02 16:36:26 +0300207
208 adev = usb_acpi_find_port(adev, port1);
209
Rafael J. Wysockie3f02c52013-11-29 16:27:34 +0100210 if (!adev)
211 return NULL;
Lan Tianyud5575422012-09-05 13:44:33 +0800212 }
Dan Williams3bfd6592014-05-20 18:08:40 -0700213 handle = adev->handle;
214 status = acpi_get_physical_device_location(handle, &pld);
215 if (ACPI_FAILURE(status) || !pld)
216 return adev;
217
218 port_dev->location = USB_ACPI_LOCATION_VALID
219 | pld->group_token << 8 | pld->group_position;
220 port_dev->connect_type = usb_acpi_get_connect_type(handle, pld);
221 ACPI_FREE(pld);
222
Rafael J. Wysockie3f02c52013-11-29 16:27:34 +0100223 return adev;
224 }
Matthew Garrettda0af6e2012-05-11 16:08:27 +0800225
Rafael J. Wysockie3f02c52013-11-29 16:27:34 +0100226 return NULL;
Matthew Garrettda0af6e2012-05-11 16:08:27 +0800227}
228
Rafael J. Wysocki53540092013-03-03 22:35:20 +0100229static bool usb_acpi_bus_match(struct device *dev)
230{
231 return is_usb_device(dev) || is_usb_port(dev);
232}
233
Matthew Garrettda0af6e2012-05-11 16:08:27 +0800234static struct acpi_bus_type usb_acpi_bus = {
Rafael J. Wysocki53540092013-03-03 22:35:20 +0100235 .name = "USB",
236 .match = usb_acpi_bus_match,
Rafael J. Wysockie3f02c52013-11-29 16:27:34 +0100237 .find_companion = usb_acpi_find_companion,
Matthew Garrettda0af6e2012-05-11 16:08:27 +0800238};
239
240int usb_acpi_register(void)
241{
242 return register_acpi_bus_type(&usb_acpi_bus);
243}
244
245void usb_acpi_unregister(void)
246{
247 unregister_acpi_bus_type(&usb_acpi_bus);
248}