4cc2937cc022f680ca1ddc90971690d5690ef6cd
[firefly-linux-kernel-4.4.55.git] / drivers / acpi / container.c
1 /*
2  * acpi_container.c  - ACPI Generic Container Driver
3  * ($Revision: )
4  *
5  * Copyright (C) 2004 Anil S Keshavamurthy (anil.s.keshavamurthy@intel.com)
6  * Copyright (C) 2004 Keiichiro Tokunaga (tokunaga.keiich@jp.fujitsu.com)
7  * Copyright (C) 2004 Motoyuki Ito (motoyuki@soft.fujitsu.com)
8  * Copyright (C) 2004 Intel Corp.
9  * Copyright (C) 2004 FUJITSU LIMITED
10  *
11  * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
12  *
13  *  This program is free software; you can redistribute it and/or modify
14  *  it under the terms of the GNU General Public License as published by
15  *  the Free Software Foundation; either version 2 of the License, or (at
16  *  your option) any later version.
17  *
18  *  This program is distributed in the hope that it will be useful, but
19  *  WITHOUT ANY WARRANTY; without even the implied warranty of
20  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
21  *  General Public License for more details.
22  *
23  *  You should have received a copy of the GNU General Public License along
24  *  with this program; if not, write to the Free Software Foundation, Inc.,
25  *  59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
26  *
27  * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
28  */
29 #include <linux/kernel.h>
30 #include <linux/module.h>
31 #include <linux/init.h>
32 #include <linux/slab.h>
33 #include <linux/types.h>
34 #include <linux/acpi.h>
35 #include <acpi/acpi_bus.h>
36 #include <acpi/acpi_drivers.h>
37
38 #define PREFIX "ACPI: "
39
40 #define _COMPONENT                      ACPI_CONTAINER_COMPONENT
41 ACPI_MODULE_NAME("container");
42
43 static const struct acpi_device_id container_device_ids[] = {
44         {"ACPI0004", 0},
45         {"PNP0A05", 0},
46         {"PNP0A06", 0},
47         {"", 0},
48 };
49
50 static int container_device_attach(struct acpi_device *device,
51                                    const struct acpi_device_id *not_used)
52 {
53         /*
54          * FIXME: This is necessary, so that acpi_eject_store() doesn't return
55          * -ENODEV for containers.
56          */
57         return 1;
58 }
59
60 static struct acpi_scan_handler container_device_handler = {
61         .ids = container_device_ids,
62         .attach = container_device_attach,
63 };
64
65 static int is_device_present(acpi_handle handle)
66 {
67         acpi_handle temp;
68         acpi_status status;
69         unsigned long long sta;
70
71
72         status = acpi_get_handle(handle, "_STA", &temp);
73         if (ACPI_FAILURE(status))
74                 return 1;       /* _STA not found, assume device present */
75
76         status = acpi_evaluate_integer(handle, "_STA", NULL, &sta);
77         if (ACPI_FAILURE(status))
78                 return 0;       /* Firmware error */
79
80         return ((sta & ACPI_STA_DEVICE_PRESENT) == ACPI_STA_DEVICE_PRESENT);
81 }
82
83 static void container_notify_cb(acpi_handle handle, u32 type, void *context)
84 {
85         struct acpi_device *device = NULL;
86         int result;
87         int present;
88         acpi_status status;
89         u32 ost_code = ACPI_OST_SC_NON_SPECIFIC_FAILURE; /* default */
90
91         switch (type) {
92         case ACPI_NOTIFY_BUS_CHECK:
93                 /* Fall through */
94         case ACPI_NOTIFY_DEVICE_CHECK:
95                 pr_debug("Container driver received %s event\n",
96                        (type == ACPI_NOTIFY_BUS_CHECK) ?
97                        "ACPI_NOTIFY_BUS_CHECK" : "ACPI_NOTIFY_DEVICE_CHECK");
98
99                 present = is_device_present(handle);
100                 status = acpi_bus_get_device(handle, &device);
101                 if (!present) {
102                         if (ACPI_SUCCESS(status)) {
103                                 /* device exist and this is a remove request */
104                                 device->flags.eject_pending = 1;
105                                 kobject_uevent(&device->dev.kobj, KOBJ_OFFLINE);
106                                 return;
107                         }
108                         break;
109                 }
110
111                 if (!ACPI_FAILURE(status) || device)
112                         break;
113
114                 result = acpi_bus_scan(handle);
115                 if (result) {
116                         acpi_handle_warn(handle, "Failed to add container\n");
117                         break;
118                 }
119                 result = acpi_bus_get_device(handle, &device);
120                 if (result) {
121                         acpi_handle_warn(handle, "Missing device object\n");
122                         break;
123                 }
124
125                 kobject_uevent(&device->dev.kobj, KOBJ_ONLINE);
126                 ost_code = ACPI_OST_SC_SUCCESS;
127                 break;
128
129         case ACPI_NOTIFY_EJECT_REQUEST:
130                 if (!acpi_bus_get_device(handle, &device) && device) {
131                         device->flags.eject_pending = 1;
132                         kobject_uevent(&device->dev.kobj, KOBJ_OFFLINE);
133                         return;
134                 }
135                 break;
136
137         default:
138                 /* non-hotplug event; possibly handled by other handler */
139                 return;
140         }
141
142         /* Inform firmware that the hotplug operation has completed */
143         (void) acpi_evaluate_hotplug_ost(handle, type, ost_code, NULL);
144         return;
145 }
146
147 static bool is_container(acpi_handle handle)
148 {
149         struct acpi_device_info *info;
150         bool ret = false;
151
152         if (ACPI_FAILURE(acpi_get_object_info(handle, &info)))
153                 return false;
154
155         if (info->valid & ACPI_VALID_HID) {
156                 const struct acpi_device_id *id;
157
158                 for (id = container_device_ids; id->id[0]; id++) {
159                         ret = !strcmp((char *)id->id, info->hardware_id.string);
160                         if (ret)
161                                 break;
162                 }
163         }
164         kfree(info);
165         return ret;
166 }
167
168 static acpi_status acpi_container_register_notify_handler(acpi_handle handle,
169                                                           u32 lvl, void *ctxt,
170                                                           void **retv)
171 {
172         if (is_container(handle))
173                 acpi_install_notify_handler(handle, ACPI_SYSTEM_NOTIFY,
174                                             container_notify_cb, NULL);
175
176         return AE_OK;
177 }
178
179 void __init acpi_container_init(void)
180 {
181         acpi_walk_namespace(ACPI_TYPE_DEVICE, ACPI_ROOT_OBJECT, ACPI_UINT32_MAX,
182                             acpi_container_register_notify_handler, NULL,
183                             NULL, NULL);
184
185         acpi_scan_add_handler(&container_device_handler);
186 }