Matthew Garrett | da0af6e | 2012-05-11 16:08:27 +0800 | [diff] [blame] | 1 | /* |
| 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 Tianyu | bafcaf6 | 2013-03-19 16:48:13 +0800 | [diff] [blame] | 18 | #include <linux/usb/hcd.h> |
Matthew Garrett | da0af6e | 2012-05-11 16:08:27 +0800 | [diff] [blame] | 19 | |
Dan Williams | d99f6b4 | 2014-05-20 18:08:17 -0700 | [diff] [blame^] | 20 | #include "hub.h" |
Matthew Garrett | da0af6e | 2012-05-11 16:08:27 +0800 | [diff] [blame] | 21 | |
Lan Tianyu | f7ac778 | 2012-09-05 13:44:36 +0800 | [diff] [blame] | 22 | /** |
| 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 | */ |
| 30 | bool 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 | } |
| 42 | EXPORT_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 | */ |
| 56 | int usb_acpi_set_power_state(struct usb_device *hdev, int index, bool enable) |
| 57 | { |
Dan Williams | d99f6b4 | 2014-05-20 18:08:17 -0700 | [diff] [blame^] | 58 | struct usb_hub *hub = usb_hub_to_struct_hub(hdev); |
| 59 | struct usb_port *port_dev; |
Lan Tianyu | f7ac778 | 2012-09-05 13:44:36 +0800 | [diff] [blame] | 60 | acpi_handle port_handle; |
| 61 | unsigned char state; |
| 62 | int port1 = index + 1; |
| 63 | int error = -EINVAL; |
| 64 | |
Dan Williams | d99f6b4 | 2014-05-20 18:08:17 -0700 | [diff] [blame^] | 65 | 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 Tianyu | f7ac778 | 2012-09-05 13:44:36 +0800 | [diff] [blame] | 70 | 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 Williams | d99f6b4 | 2014-05-20 18:08:17 -0700 | [diff] [blame^] | 80 | dev_dbg(&port_dev->dev, "acpi: power was set to %d\n", enable); |
Lan Tianyu | f7ac778 | 2012-09-05 13:44:36 +0800 | [diff] [blame] | 81 | else |
Dan Williams | d99f6b4 | 2014-05-20 18:08:17 -0700 | [diff] [blame^] | 82 | dev_dbg(&port_dev->dev, "acpi: power failed to be set\n"); |
Lan Tianyu | f7ac778 | 2012-09-05 13:44:36 +0800 | [diff] [blame] | 83 | |
| 84 | return error; |
| 85 | } |
| 86 | EXPORT_SYMBOL_GPL(usb_acpi_set_power_state); |
| 87 | |
Lan Tianyu | 05f9168 | 2012-09-05 13:44:34 +0800 | [diff] [blame] | 88 | static int usb_acpi_check_port_connect_type(struct usb_device *hdev, |
| 89 | acpi_handle handle, int port1) |
Matthew Garrett | 54d3f8c | 2012-05-11 16:08:28 +0800 | [diff] [blame] | 90 | { |
Dan Williams | d99f6b4 | 2014-05-20 18:08:17 -0700 | [diff] [blame^] | 91 | enum usb_port_connect_type connect_type = USB_PORT_CONNECT_TYPE_UNKNOWN; |
Matthew Garrett | 54d3f8c | 2012-05-11 16:08:28 +0800 | [diff] [blame] | 92 | struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL }; |
Dan Williams | d99f6b4 | 2014-05-20 18:08:17 -0700 | [diff] [blame^] | 93 | struct usb_hub *hub = usb_hub_to_struct_hub(hdev); |
Linus Torvalds | d8dc91b | 2012-10-08 07:14:06 +0900 | [diff] [blame] | 94 | struct acpi_pld_info *pld; |
Dan Williams | d99f6b4 | 2014-05-20 18:08:17 -0700 | [diff] [blame^] | 95 | union acpi_object *upc; |
| 96 | acpi_status status; |
Matthew Garrett | 54d3f8c | 2012-05-11 16:08:28 +0800 | [diff] [blame] | 97 | int ret = 0; |
| 98 | |
Dan Williams | d99f6b4 | 2014-05-20 18:08:17 -0700 | [diff] [blame^] | 99 | if (!hub) |
| 100 | return 0; |
| 101 | |
Lan Tianyu | 05f9168 | 2012-09-05 13:44:34 +0800 | [diff] [blame] | 102 | /* |
Rahul Bedarkar | 025d443 | 2014-01-04 11:24:41 +0530 | [diff] [blame] | 103 | * According to ACPI Spec 9.13. PLD indicates whether usb port is |
Lan Tianyu | 05f9168 | 2012-09-05 13:44:34 +0800 | [diff] [blame] | 104 | * user visible and _UPC indicates whether it is connectable. If |
| 105 | * the port was visible and connectable, it could be freely connected |
| 106 | * and disconnected with USB devices. If no visible and connectable, |
| 107 | * a usb device is directly hard-wired to the port. If no visible and |
| 108 | * no connectable, the port would be not used. |
| 109 | */ |
| 110 | status = acpi_get_physical_device_location(handle, &pld); |
Matthew Garrett | 54d3f8c | 2012-05-11 16:08:28 +0800 | [diff] [blame] | 111 | if (ACPI_FAILURE(status)) |
| 112 | return -ENODEV; |
| 113 | |
Lan Tianyu | 05f9168 | 2012-09-05 13:44:34 +0800 | [diff] [blame] | 114 | status = acpi_evaluate_object(handle, "_UPC", NULL, &buffer); |
Matthew Garrett | 54d3f8c | 2012-05-11 16:08:28 +0800 | [diff] [blame] | 115 | upc = buffer.pointer; |
Matthew Garrett | 54d3f8c | 2012-05-11 16:08:28 +0800 | [diff] [blame] | 116 | if (!upc || (upc->type != ACPI_TYPE_PACKAGE) |
| 117 | || upc->package.count != 4) { |
| 118 | ret = -EINVAL; |
| 119 | goto out; |
| 120 | } |
| 121 | |
| 122 | if (upc->package.elements[0].integer.value) |
Linus Torvalds | d8dc91b | 2012-10-08 07:14:06 +0900 | [diff] [blame] | 123 | if (pld->user_visible) |
Dan Williams | d99f6b4 | 2014-05-20 18:08:17 -0700 | [diff] [blame^] | 124 | connect_type = USB_PORT_CONNECT_TYPE_HOT_PLUG; |
Lan Tianyu | 05f9168 | 2012-09-05 13:44:34 +0800 | [diff] [blame] | 125 | else |
Dan Williams | d99f6b4 | 2014-05-20 18:08:17 -0700 | [diff] [blame^] | 126 | connect_type = USB_PORT_CONNECT_TYPE_HARD_WIRED; |
Linus Torvalds | d8dc91b | 2012-10-08 07:14:06 +0900 | [diff] [blame] | 127 | else if (!pld->user_visible) |
Dan Williams | d99f6b4 | 2014-05-20 18:08:17 -0700 | [diff] [blame^] | 128 | connect_type = USB_PORT_NOT_USED; |
| 129 | hub->ports[port1 - 1]->connect_type = connect_type; |
Matthew Garrett | 54d3f8c | 2012-05-11 16:08:28 +0800 | [diff] [blame] | 130 | |
| 131 | out: |
Linus Torvalds | d8dc91b | 2012-10-08 07:14:06 +0900 | [diff] [blame] | 132 | ACPI_FREE(pld); |
Matthew Garrett | 54d3f8c | 2012-05-11 16:08:28 +0800 | [diff] [blame] | 133 | kfree(upc); |
| 134 | return ret; |
| 135 | } |
| 136 | |
Rafael J. Wysocki | e3f02c5 | 2013-11-29 16:27:34 +0100 | [diff] [blame] | 137 | static struct acpi_device *usb_acpi_find_companion(struct device *dev) |
Matthew Garrett | da0af6e | 2012-05-11 16:08:27 +0800 | [diff] [blame] | 138 | { |
Dan Williams | d99f6b4 | 2014-05-20 18:08:17 -0700 | [diff] [blame^] | 139 | int port1; |
Matthew Garrett | da0af6e | 2012-05-11 16:08:27 +0800 | [diff] [blame] | 140 | struct usb_device *udev; |
Matthew Garrett | da0af6e | 2012-05-11 16:08:27 +0800 | [diff] [blame] | 141 | acpi_handle *parent_handle; |
| 142 | |
Lan Tianyu | d557542 | 2012-09-05 13:44:33 +0800 | [diff] [blame] | 143 | /* |
| 144 | * In the ACPI DSDT table, only usb root hub and usb ports are |
| 145 | * acpi device nodes. The hierarchy like following. |
| 146 | * Device (EHC1) |
| 147 | * Device (HUBN) |
| 148 | * Device (PR01) |
| 149 | * Device (PR11) |
| 150 | * Device (PR12) |
| 151 | * Device (PR13) |
| 152 | * ... |
| 153 | * So all binding process is divided into two parts. binding |
| 154 | * root hub and usb ports. |
| 155 | */ |
| 156 | if (is_usb_device(dev)) { |
| 157 | udev = to_usb_device(dev); |
Dan Williams | d99f6b4 | 2014-05-20 18:08:17 -0700 | [diff] [blame^] | 158 | port1 = udev->portnum; |
Lan Tianyu | 05f9168 | 2012-09-05 13:44:34 +0800 | [diff] [blame] | 159 | if (udev->parent) { |
Dan Williams | d99f6b4 | 2014-05-20 18:08:17 -0700 | [diff] [blame^] | 160 | struct usb_hub *hub; |
Lan Tianyu | 05f9168 | 2012-09-05 13:44:34 +0800 | [diff] [blame] | 161 | |
Dan Williams | d99f6b4 | 2014-05-20 18:08:17 -0700 | [diff] [blame^] | 162 | hub = usb_hub_to_struct_hub(udev->parent); |
Lan Tianyu | 05f9168 | 2012-09-05 13:44:34 +0800 | [diff] [blame] | 163 | /* |
| 164 | * According usb port's connect type to set usb device's |
| 165 | * removability. |
| 166 | */ |
Dan Williams | d99f6b4 | 2014-05-20 18:08:17 -0700 | [diff] [blame^] | 167 | switch (hub->ports[port1 - 1]->connect_type) { |
Lan Tianyu | 05f9168 | 2012-09-05 13:44:34 +0800 | [diff] [blame] | 168 | case USB_PORT_CONNECT_TYPE_HOT_PLUG: |
| 169 | udev->removable = USB_DEVICE_REMOVABLE; |
| 170 | break; |
| 171 | case USB_PORT_CONNECT_TYPE_HARD_WIRED: |
| 172 | udev->removable = USB_DEVICE_FIXED; |
| 173 | break; |
| 174 | default: |
| 175 | udev->removable = USB_DEVICE_REMOVABLE_UNKNOWN; |
| 176 | break; |
| 177 | } |
| 178 | |
Rafael J. Wysocki | e3f02c5 | 2013-11-29 16:27:34 +0100 | [diff] [blame] | 179 | return NULL; |
Lan Tianyu | 05f9168 | 2012-09-05 13:44:34 +0800 | [diff] [blame] | 180 | } |
| 181 | |
Lan Tianyu | d557542 | 2012-09-05 13:44:33 +0800 | [diff] [blame] | 182 | /* root hub's parent is the usb hcd. */ |
Rafael J. Wysocki | e3f02c5 | 2013-11-29 16:27:34 +0100 | [diff] [blame] | 183 | return acpi_find_child_device(ACPI_COMPANION(dev->parent), |
Dan Williams | d99f6b4 | 2014-05-20 18:08:17 -0700 | [diff] [blame^] | 184 | port1, false); |
Lan Tianyu | d557542 | 2012-09-05 13:44:33 +0800 | [diff] [blame] | 185 | } else if (is_usb_port(dev)) { |
Dan Williams | d99f6b4 | 2014-05-20 18:08:17 -0700 | [diff] [blame^] | 186 | struct usb_port *port_dev = to_usb_port(dev); |
Rafael J. Wysocki | e3f02c5 | 2013-11-29 16:27:34 +0100 | [diff] [blame] | 187 | struct acpi_device *adev = NULL; |
| 188 | |
Lan Tianyu | d557542 | 2012-09-05 13:44:33 +0800 | [diff] [blame] | 189 | /* Get the struct usb_device point of port's hub */ |
| 190 | udev = to_usb_device(dev->parent->parent); |
Dan Williams | d99f6b4 | 2014-05-20 18:08:17 -0700 | [diff] [blame^] | 191 | port1 = port_dev->portnum; |
Matthew Garrett | da0af6e | 2012-05-11 16:08:27 +0800 | [diff] [blame] | 192 | |
Lan Tianyu | d557542 | 2012-09-05 13:44:33 +0800 | [diff] [blame] | 193 | /* |
| 194 | * The root hub ports' parent is the root hub. The non-root-hub |
| 195 | * ports' parent is the parent hub port which the hub is |
| 196 | * connected to. |
| 197 | */ |
| 198 | if (!udev->parent) { |
Lan Tianyu | bafcaf6 | 2013-03-19 16:48:13 +0800 | [diff] [blame] | 199 | struct usb_hcd *hcd = bus_to_hcd(udev->bus); |
Dan Williams | d99f6b4 | 2014-05-20 18:08:17 -0700 | [diff] [blame^] | 200 | int raw; |
Lan Tianyu | bafcaf6 | 2013-03-19 16:48:13 +0800 | [diff] [blame] | 201 | |
Dan Williams | d99f6b4 | 2014-05-20 18:08:17 -0700 | [diff] [blame^] | 202 | raw = usb_hcd_find_raw_port_number(hcd, port1); |
Rafael J. Wysocki | e3f02c5 | 2013-11-29 16:27:34 +0100 | [diff] [blame] | 203 | adev = acpi_find_child_device(ACPI_COMPANION(&udev->dev), |
Dan Williams | d99f6b4 | 2014-05-20 18:08:17 -0700 | [diff] [blame^] | 204 | raw, false); |
Rafael J. Wysocki | e3f02c5 | 2013-11-29 16:27:34 +0100 | [diff] [blame] | 205 | if (!adev) |
| 206 | return NULL; |
Lan Tianyu | d557542 | 2012-09-05 13:44:33 +0800 | [diff] [blame] | 207 | } else { |
| 208 | parent_handle = |
| 209 | usb_get_hub_port_acpi_handle(udev->parent, |
| 210 | udev->portnum); |
| 211 | if (!parent_handle) |
Rafael J. Wysocki | e3f02c5 | 2013-11-29 16:27:34 +0100 | [diff] [blame] | 212 | return NULL; |
Matthew Garrett | da0af6e | 2012-05-11 16:08:27 +0800 | [diff] [blame] | 213 | |
Rafael J. Wysocki | e3f02c5 | 2013-11-29 16:27:34 +0100 | [diff] [blame] | 214 | acpi_bus_get_device(parent_handle, &adev); |
Dan Williams | d99f6b4 | 2014-05-20 18:08:17 -0700 | [diff] [blame^] | 215 | adev = acpi_find_child_device(adev, port1, false); |
Rafael J. Wysocki | e3f02c5 | 2013-11-29 16:27:34 +0100 | [diff] [blame] | 216 | if (!adev) |
| 217 | return NULL; |
Lan Tianyu | d557542 | 2012-09-05 13:44:33 +0800 | [diff] [blame] | 218 | } |
Dan Williams | d99f6b4 | 2014-05-20 18:08:17 -0700 | [diff] [blame^] | 219 | usb_acpi_check_port_connect_type(udev, adev->handle, port1); |
Rafael J. Wysocki | e3f02c5 | 2013-11-29 16:27:34 +0100 | [diff] [blame] | 220 | return adev; |
| 221 | } |
Matthew Garrett | da0af6e | 2012-05-11 16:08:27 +0800 | [diff] [blame] | 222 | |
Rafael J. Wysocki | e3f02c5 | 2013-11-29 16:27:34 +0100 | [diff] [blame] | 223 | return NULL; |
Matthew Garrett | da0af6e | 2012-05-11 16:08:27 +0800 | [diff] [blame] | 224 | } |
| 225 | |
Rafael J. Wysocki | 5354009 | 2013-03-03 22:35:20 +0100 | [diff] [blame] | 226 | static bool usb_acpi_bus_match(struct device *dev) |
| 227 | { |
| 228 | return is_usb_device(dev) || is_usb_port(dev); |
| 229 | } |
| 230 | |
Matthew Garrett | da0af6e | 2012-05-11 16:08:27 +0800 | [diff] [blame] | 231 | static struct acpi_bus_type usb_acpi_bus = { |
Rafael J. Wysocki | 5354009 | 2013-03-03 22:35:20 +0100 | [diff] [blame] | 232 | .name = "USB", |
| 233 | .match = usb_acpi_bus_match, |
Rafael J. Wysocki | e3f02c5 | 2013-11-29 16:27:34 +0100 | [diff] [blame] | 234 | .find_companion = usb_acpi_find_companion, |
Matthew Garrett | da0af6e | 2012-05-11 16:08:27 +0800 | [diff] [blame] | 235 | }; |
| 236 | |
| 237 | int usb_acpi_register(void) |
| 238 | { |
| 239 | return register_acpi_bus_type(&usb_acpi_bus); |
| 240 | } |
| 241 | |
| 242 | void usb_acpi_unregister(void) |
| 243 | { |
| 244 | unregister_acpi_bus_type(&usb_acpi_bus); |
| 245 | } |