blob: 90afee5079dcbc57dd3ce2efa55d837a35bfc61f [file] [log] [blame]
Greg Kroah-Hartman5fd54ac2017-11-03 11:28:30 +01001// SPDX-License-Identifier: GPL-2.0
Matthew Garrettda0af6e2012-05-11 16:08:27 +08002/*
3 * USB-ACPI glue code
4 *
5 * Copyright 2012 Red Hat <mjg@redhat.com>
6 *
7 * This program is free software; you can redistribute it and/or modify it
8 * under the terms of the GNU General Public License as published by the Free
9 * Software Foundation, version 2.
10 *
11 */
12#include <linux/module.h>
13#include <linux/usb.h>
14#include <linux/device.h>
15#include <linux/errno.h>
16#include <linux/kernel.h>
17#include <linux/acpi.h>
18#include <linux/pci.h>
Lan Tianyubafcaf62013-03-19 16:48:13 +080019#include <linux/usb/hcd.h>
Matthew Garrettda0af6e2012-05-11 16:08:27 +080020
Dan Williamsd99f6b42014-05-20 18:08:17 -070021#include "hub.h"
Matthew Garrettda0af6e2012-05-11 16:08:27 +080022
Lan Tianyuf7ac7782012-09-05 13:44:36 +080023/**
24 * usb_acpi_power_manageable - check whether usb port has
25 * acpi power resource.
26 * @hdev: USB device belonging to the usb hub
27 * @index: port index based zero
28 *
29 * Return true if the port has acpi power resource and false if no.
30 */
31bool usb_acpi_power_manageable(struct usb_device *hdev, int index)
32{
33 acpi_handle port_handle;
34 int port1 = index + 1;
35
36 port_handle = usb_get_hub_port_acpi_handle(hdev,
37 port1);
38 if (port_handle)
39 return acpi_bus_power_manageable(port_handle);
40 else
41 return false;
42}
43EXPORT_SYMBOL_GPL(usb_acpi_power_manageable);
44
45/**
46 * usb_acpi_set_power_state - control usb port's power via acpi power
47 * resource
48 * @hdev: USB device belonging to the usb hub
49 * @index: port index based zero
50 * @enable: power state expected to be set
51 *
52 * Notice to use usb_acpi_power_manageable() to check whether the usb port
53 * has acpi power resource before invoking this function.
54 *
55 * Returns 0 on success, else negative errno.
56 */
57int usb_acpi_set_power_state(struct usb_device *hdev, int index, bool enable)
58{
Dan Williamsd99f6b42014-05-20 18:08:17 -070059 struct usb_hub *hub = usb_hub_to_struct_hub(hdev);
60 struct usb_port *port_dev;
Lan Tianyuf7ac7782012-09-05 13:44:36 +080061 acpi_handle port_handle;
62 unsigned char state;
63 int port1 = index + 1;
64 int error = -EINVAL;
65
Dan Williamsd99f6b42014-05-20 18:08:17 -070066 if (!hub)
67 return -ENODEV;
68 port_dev = hub->ports[port1 - 1];
69
70 port_handle = (acpi_handle) usb_get_hub_port_acpi_handle(hdev, port1);
Lan Tianyuf7ac7782012-09-05 13:44:36 +080071 if (!port_handle)
72 return error;
73
74 if (enable)
75 state = ACPI_STATE_D0;
76 else
77 state = ACPI_STATE_D3_COLD;
78
79 error = acpi_bus_set_power(port_handle, state);
80 if (!error)
Dan Williamsd99f6b42014-05-20 18:08:17 -070081 dev_dbg(&port_dev->dev, "acpi: power was set to %d\n", enable);
Lan Tianyuf7ac7782012-09-05 13:44:36 +080082 else
Dan Williamsd99f6b42014-05-20 18:08:17 -070083 dev_dbg(&port_dev->dev, "acpi: power failed to be set\n");
Lan Tianyuf7ac7782012-09-05 13:44:36 +080084
85 return error;
86}
87EXPORT_SYMBOL_GPL(usb_acpi_set_power_state);
88
Dan Williams3bfd6592014-05-20 18:08:40 -070089static enum usb_port_connect_type usb_acpi_get_connect_type(acpi_handle handle,
90 struct acpi_pld_info *pld)
Matthew Garrett54d3f8c2012-05-11 16:08:28 +080091{
Dan Williamsd99f6b42014-05-20 18:08:17 -070092 enum usb_port_connect_type connect_type = USB_PORT_CONNECT_TYPE_UNKNOWN;
Matthew Garrett54d3f8c2012-05-11 16:08:28 +080093 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
Dan Williamsd99f6b42014-05-20 18:08:17 -070094 union acpi_object *upc;
95 acpi_status status;
Dan Williamsd99f6b42014-05-20 18:08:17 -070096
Lan Tianyu05f91682012-09-05 13:44:34 +080097 /*
Rahul Bedarkar025d4432014-01-04 11:24:41 +053098 * According to ACPI Spec 9.13. PLD indicates whether usb port is
Lan Tianyu05f91682012-09-05 13:44:34 +080099 * user visible and _UPC indicates whether it is connectable. If
100 * the port was visible and connectable, it could be freely connected
101 * and disconnected with USB devices. If no visible and connectable,
102 * a usb device is directly hard-wired to the port. If no visible and
103 * no connectable, the port would be not used.
104 */
Lan Tianyu05f91682012-09-05 13:44:34 +0800105 status = acpi_evaluate_object(handle, "_UPC", NULL, &buffer);
Matthew Garrett54d3f8c2012-05-11 16:08:28 +0800106 upc = buffer.pointer;
Matthew Garrett54d3f8c2012-05-11 16:08:28 +0800107 if (!upc || (upc->type != ACPI_TYPE_PACKAGE)
108 || upc->package.count != 4) {
Matthew Garrett54d3f8c2012-05-11 16:08:28 +0800109 goto out;
110 }
111
112 if (upc->package.elements[0].integer.value)
Linus Torvaldsd8dc91b2012-10-08 07:14:06 +0900113 if (pld->user_visible)
Dan Williamsd99f6b42014-05-20 18:08:17 -0700114 connect_type = USB_PORT_CONNECT_TYPE_HOT_PLUG;
Lan Tianyu05f91682012-09-05 13:44:34 +0800115 else
Dan Williamsd99f6b42014-05-20 18:08:17 -0700116 connect_type = USB_PORT_CONNECT_TYPE_HARD_WIRED;
Linus Torvaldsd8dc91b2012-10-08 07:14:06 +0900117 else if (!pld->user_visible)
Dan Williamsd99f6b42014-05-20 18:08:17 -0700118 connect_type = USB_PORT_NOT_USED;
Matthew Garrett54d3f8c2012-05-11 16:08:28 +0800119out:
120 kfree(upc);
Dan Williams3bfd6592014-05-20 18:08:40 -0700121 return connect_type;
Matthew Garrett54d3f8c2012-05-11 16:08:28 +0800122}
123
Dan Williams3bfd6592014-05-20 18:08:40 -0700124
125/*
126 * Private to usb-acpi, all the core needs to know is that
127 * port_dev->location is non-zero when it has been set by the firmware.
128 */
129#define USB_ACPI_LOCATION_VALID (1 << 31)
130
Mathias Nymaned18c5f2017-06-02 16:36:26 +0300131static struct acpi_device *usb_acpi_find_port(struct acpi_device *parent,
132 int raw)
133{
134 struct acpi_device *adev;
135
136 if (!parent)
137 return NULL;
138
139 list_for_each_entry(adev, &parent->children, node) {
140 if (acpi_device_adr(adev) == raw)
141 return adev;
142 }
143
144 return acpi_find_child_device(parent, raw, false);
145}
146
Rafael J. Wysockie3f02c52013-11-29 16:27:34 +0100147static struct acpi_device *usb_acpi_find_companion(struct device *dev)
Matthew Garrettda0af6e2012-05-11 16:08:27 +0800148{
149 struct usb_device *udev;
Dan Williamsa4204ff2014-05-20 18:08:22 -0700150 struct acpi_device *adev;
Matthew Garrettda0af6e2012-05-11 16:08:27 +0800151 acpi_handle *parent_handle;
152
Lan Tianyud5575422012-09-05 13:44:33 +0800153 /*
154 * In the ACPI DSDT table, only usb root hub and usb ports are
155 * acpi device nodes. The hierarchy like following.
156 * Device (EHC1)
157 * Device (HUBN)
158 * Device (PR01)
159 * Device (PR11)
160 * Device (PR12)
161 * Device (PR13)
162 * ...
163 * So all binding process is divided into two parts. binding
164 * root hub and usb ports.
165 */
166 if (is_usb_device(dev)) {
167 udev = to_usb_device(dev);
Dan Williamsa4204ff2014-05-20 18:08:22 -0700168 if (udev->parent)
Rafael J. Wysockie3f02c52013-11-29 16:27:34 +0100169 return NULL;
Lan Tianyu05f91682012-09-05 13:44:34 +0800170
Dan Williamsa4204ff2014-05-20 18:08:22 -0700171 /* root hub is only child (_ADR=0) under its parent, the HC */
172 adev = ACPI_COMPANION(dev->parent);
173 return acpi_find_child_device(adev, 0, false);
Lan Tianyud5575422012-09-05 13:44:33 +0800174 } else if (is_usb_port(dev)) {
Dan Williamsd99f6b42014-05-20 18:08:17 -0700175 struct usb_port *port_dev = to_usb_port(dev);
Dan Williamsa4204ff2014-05-20 18:08:22 -0700176 int port1 = port_dev->portnum;
Dan Williams3bfd6592014-05-20 18:08:40 -0700177 struct acpi_pld_info *pld;
178 acpi_handle *handle;
179 acpi_status status;
Rafael J. Wysockie3f02c52013-11-29 16:27:34 +0100180
Lan Tianyud5575422012-09-05 13:44:33 +0800181 /* Get the struct usb_device point of port's hub */
182 udev = to_usb_device(dev->parent->parent);
Matthew Garrettda0af6e2012-05-11 16:08:27 +0800183
Lan Tianyud5575422012-09-05 13:44:33 +0800184 /*
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
187 * connected to.
188 */
189 if (!udev->parent) {
Lan Tianyubafcaf62013-03-19 16:48:13 +0800190 struct usb_hcd *hcd = bus_to_hcd(udev->bus);
Dan Williamsd99f6b42014-05-20 18:08:17 -0700191 int raw;
Lan Tianyubafcaf62013-03-19 16:48:13 +0800192
Dan Williamsd99f6b42014-05-20 18:08:17 -0700193 raw = usb_hcd_find_raw_port_number(hcd, port1);
Mathias Nymaned18c5f2017-06-02 16:36:26 +0300194
195 adev = usb_acpi_find_port(ACPI_COMPANION(&udev->dev),
196 raw);
197
Rafael J. Wysockie3f02c52013-11-29 16:27:34 +0100198 if (!adev)
199 return NULL;
Lan Tianyud5575422012-09-05 13:44:33 +0800200 } else {
201 parent_handle =
202 usb_get_hub_port_acpi_handle(udev->parent,
203 udev->portnum);
204 if (!parent_handle)
Rafael J. Wysockie3f02c52013-11-29 16:27:34 +0100205 return NULL;
Matthew Garrettda0af6e2012-05-11 16:08:27 +0800206
Rafael J. Wysockie3f02c52013-11-29 16:27:34 +0100207 acpi_bus_get_device(parent_handle, &adev);
Mathias Nymaned18c5f2017-06-02 16:36:26 +0300208
209 adev = usb_acpi_find_port(adev, port1);
210
Rafael J. Wysockie3f02c52013-11-29 16:27:34 +0100211 if (!adev)
212 return NULL;
Lan Tianyud5575422012-09-05 13:44:33 +0800213 }
Dan Williams3bfd6592014-05-20 18:08:40 -0700214 handle = adev->handle;
215 status = acpi_get_physical_device_location(handle, &pld);
216 if (ACPI_FAILURE(status) || !pld)
217 return adev;
218
219 port_dev->location = USB_ACPI_LOCATION_VALID
220 | pld->group_token << 8 | pld->group_position;
221 port_dev->connect_type = usb_acpi_get_connect_type(handle, pld);
222 ACPI_FREE(pld);
223
Rafael J. Wysockie3f02c52013-11-29 16:27:34 +0100224 return adev;
225 }
Matthew Garrettda0af6e2012-05-11 16:08:27 +0800226
Rafael J. Wysockie3f02c52013-11-29 16:27:34 +0100227 return NULL;
Matthew Garrettda0af6e2012-05-11 16:08:27 +0800228}
229
Rafael J. Wysocki53540092013-03-03 22:35:20 +0100230static bool usb_acpi_bus_match(struct device *dev)
231{
232 return is_usb_device(dev) || is_usb_port(dev);
233}
234
Matthew Garrettda0af6e2012-05-11 16:08:27 +0800235static struct acpi_bus_type usb_acpi_bus = {
Rafael J. Wysocki53540092013-03-03 22:35:20 +0100236 .name = "USB",
237 .match = usb_acpi_bus_match,
Rafael J. Wysockie3f02c52013-11-29 16:27:34 +0100238 .find_companion = usb_acpi_find_companion,
Matthew Garrettda0af6e2012-05-11 16:08:27 +0800239};
240
241int usb_acpi_register(void)
242{
243 return register_acpi_bus_type(&usb_acpi_bus);
244}
245
246void usb_acpi_unregister(void)
247{
248 unregister_acpi_bus_type(&usb_acpi_bus);
249}