]> git.karo-electronics.de Git - karo-tx-linux.git/blob - drivers/usb/core/usb-acpi.c
usb-acpi: Comply with the ACPI API change
[karo-tx-linux.git] / drivers / usb / core / usb-acpi.c
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>
18 #include <acpi/acpi_bus.h>
19
20 #include "usb.h"
21
22 static int usb_acpi_check_upc(struct usb_device *udev, acpi_handle handle)
23 {
24         acpi_status status;
25         struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
26         union acpi_object *upc;
27         int ret = 0;
28
29         status = acpi_evaluate_object(handle, "_UPC", NULL, &buffer);
30
31         if (ACPI_FAILURE(status))
32                 return -ENODEV;
33
34         upc = buffer.pointer;
35
36         if (!upc || (upc->type != ACPI_TYPE_PACKAGE)
37                 || upc->package.count != 4) {
38                 ret = -EINVAL;
39                 goto out;
40         }
41
42         if (upc->package.elements[0].integer.value)
43                 udev->removable = USB_DEVICE_REMOVABLE;
44         else
45                 udev->removable = USB_DEVICE_FIXED;
46
47 out:
48         kfree(upc);
49         return ret;
50 }
51
52 static int usb_acpi_check_pld(struct usb_device *udev, acpi_handle handle)
53 {
54         acpi_status status;
55         struct acpi_pld_info *pld;
56
57         status = acpi_get_physical_device_location(handle, &pld);
58
59         if (ACPI_FAILURE(status))
60                 return -ENODEV;
61
62         if (pld->user_visible)
63                 udev->removable = USB_DEVICE_REMOVABLE;
64         else
65                 udev->removable = USB_DEVICE_FIXED;
66
67         ACPI_FREE(pld);
68         return 0;
69 }
70
71 static int usb_acpi_find_device(struct device *dev, acpi_handle *handle)
72 {
73         struct usb_device *udev;
74         struct device *parent;
75         acpi_handle *parent_handle;
76
77         if (!is_usb_device(dev))
78                 return -ENODEV;
79
80         udev = to_usb_device(dev);
81         parent = dev->parent;
82         parent_handle = DEVICE_ACPI_HANDLE(parent);
83
84         if (!parent_handle)
85                 return -ENODEV;
86
87         *handle = acpi_get_child(parent_handle, udev->portnum);
88
89         if (!*handle)
90                 return -ENODEV;
91
92         /*
93          * PLD will tell us whether a port is removable to the user or
94          * not. If we don't get an answer from PLD (it's not present
95          * or it's malformed) then try to infer it from UPC. If a
96          * device isn't connectable then it's probably not removable.
97          */
98         if (usb_acpi_check_pld(udev, *handle) != 0)
99                 usb_acpi_check_upc(udev, *handle);
100
101         return 0;
102 }
103
104 static struct acpi_bus_type usb_acpi_bus = {
105         .bus = &usb_bus_type,
106         .find_bridge = NULL,
107         .find_device = usb_acpi_find_device,
108 };
109
110 int usb_acpi_register(void)
111 {
112         return register_acpi_bus_type(&usb_acpi_bus);
113 }
114
115 void usb_acpi_unregister(void)
116 {
117         unregister_acpi_bus_type(&usb_acpi_bus);
118 }