blob: 8c3967cb4830b3dc81a5d7e04cbb023a01fb7a7a [file] [log] [blame]
Len Brownc8f7a622006-07-09 17:22:28 -04001/*
2 * dock.c - ACPI dock station driver
3 *
4 * Copyright (C) 2006 Kristen Carlson Accardi <kristen.c.accardi@intel.com>
5 *
6 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or (at
11 * your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful, but
14 * WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License along
19 * with this program; if not, write to the Free Software Foundation, Inc.,
20 * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
21 *
22 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
23 */
24
25#include <linux/kernel.h>
26#include <linux/module.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090027#include <linux/slab.h>
Len Brownc8f7a622006-07-09 17:22:28 -040028#include <linux/init.h>
29#include <linux/types.h>
30#include <linux/notifier.h>
Kristen Carlson Accardi671adbe2006-12-04 14:49:43 -080031#include <linux/platform_device.h>
Al Viro914e2632006-10-18 13:55:46 -040032#include <linux/jiffies.h>
Randy Dunlap62a6d7f2007-03-26 21:38:49 -080033#include <linux/stddef.h>
Toshi Kanicd730182012-11-20 23:42:30 +000034#include <linux/acpi.h>
Len Brownc8f7a622006-07-09 17:22:28 -040035
Rashika3f9eed52013-12-17 15:00:04 +053036#include "internal.h"
37
Len Browna192a952009-07-28 16:45:54 -040038#define PREFIX "ACPI: "
39
Len Brown7cda93e2007-02-12 23:50:02 -050040#define ACPI_DOCK_DRIVER_DESCRIPTION "ACPI Dock Station Driver"
Len Brownc8f7a622006-07-09 17:22:28 -040041
Len Brownf52fd662007-02-12 22:42:12 -050042ACPI_MODULE_NAME("dock");
Len Brownc8f7a622006-07-09 17:22:28 -040043MODULE_AUTHOR("Kristen Carlson Accardi");
Len Brown7cda93e2007-02-12 23:50:02 -050044MODULE_DESCRIPTION(ACPI_DOCK_DRIVER_DESCRIPTION);
Len Brownc8f7a622006-07-09 17:22:28 -040045MODULE_LICENSE("GPL");
46
Rusty Russell90ab5ee2012-01-13 09:32:20 +103047static bool immediate_undock = 1;
Kristen Carlson Accardia0cd35f2007-05-09 15:08:15 -070048module_param(immediate_undock, bool, 0644);
49MODULE_PARM_DESC(immediate_undock, "1 (default) will cause the driver to "
50 "undock immediately when the undock button is pressed, 0 will cause"
51 " the driver to wait for userspace to write the undock sysfs file "
52 " before undocking");
53
Frank Seidela340af12007-12-07 13:20:42 +010054static const struct acpi_device_id dock_device_ids[] = {
55 {"LNXDOCK", 0},
56 {"", 0},
57};
58MODULE_DEVICE_TABLE(acpi, dock_device_ids);
59
Len Brownc8f7a622006-07-09 17:22:28 -040060struct dock_station {
61 acpi_handle handle;
62 unsigned long last_dock_time;
63 u32 flags;
Len Brownc8f7a622006-07-09 17:22:28 -040064 struct list_head dependent_devices;
Shaohua Lidb350b02008-08-28 10:03:58 +080065
Alex Chiang50d716e2009-10-01 11:59:23 -060066 struct list_head sibling;
Shaohua Lidb350b02008-08-28 10:03:58 +080067 struct platform_device *dock_device;
Len Brownc8f7a622006-07-09 17:22:28 -040068};
Shaohua Lidb350b02008-08-28 10:03:58 +080069static LIST_HEAD(dock_stations);
70static int dock_station_count;
Rafael J. Wysocki21a31012013-06-24 11:22:53 +020071static DEFINE_MUTEX(hotplug_lock);
Len Brownc8f7a622006-07-09 17:22:28 -040072
73struct dock_dependent_device {
74 struct list_head list;
Rafael J. Wysocki3b52b212014-02-21 01:10:09 +010075 struct acpi_device *adev;
Rafael J. Wysocki21a31012013-06-24 11:22:53 +020076 const struct acpi_dock_ops *hp_ops;
77 void *hp_context;
78 unsigned int hp_refcount;
79 void (*hp_release)(void *);
Len Brownc8f7a622006-07-09 17:22:28 -040080};
81
82#define DOCK_DOCKING 0x00000001
Kristen Carlson Accardia0cd35f2007-05-09 15:08:15 -070083#define DOCK_UNDOCKING 0x00000002
Shaohua Lidb350b02008-08-28 10:03:58 +080084#define DOCK_IS_DOCK 0x00000010
85#define DOCK_IS_ATA 0x00000020
86#define DOCK_IS_BAT 0x00000040
Kristen Carlson Accardi56690212006-08-01 14:59:19 -070087#define DOCK_EVENT 3
88#define UNDOCK_EVENT 2
Len Brownc8f7a622006-07-09 17:22:28 -040089
Rafael J. Wysockif09ce742013-07-05 03:03:25 +020090enum dock_callback_type {
91 DOCK_CALL_HANDLER,
92 DOCK_CALL_FIXUP,
93 DOCK_CALL_UEVENT,
94};
95
Len Brownc8f7a622006-07-09 17:22:28 -040096/*****************************************************************************
97 * Dock Dependent device functions *
98 *****************************************************************************/
99/**
Alex Chiangf69cfdd2009-10-19 15:14:29 -0600100 * add_dock_dependent_device - associate a device with the dock station
Rafael J. Wysocki3b52b212014-02-21 01:10:09 +0100101 * @ds: Dock station.
102 * @adev: Dependent ACPI device object.
Len Brownc8f7a622006-07-09 17:22:28 -0400103 *
Alex Chiangf69cfdd2009-10-19 15:14:29 -0600104 * Add the dependent device to the dock's dependent device list.
Len Brownc8f7a622006-07-09 17:22:28 -0400105 */
Rafael J. Wysocki3b52b212014-02-21 01:10:09 +0100106static int add_dock_dependent_device(struct dock_station *ds,
107 struct acpi_device *adev)
Len Brownc8f7a622006-07-09 17:22:28 -0400108{
109 struct dock_dependent_device *dd;
110
111 dd = kzalloc(sizeof(*dd), GFP_KERNEL);
Alex Chiangf69cfdd2009-10-19 15:14:29 -0600112 if (!dd)
113 return -ENOMEM;
Len Brownc8f7a622006-07-09 17:22:28 -0400114
Rafael J. Wysocki3b52b212014-02-21 01:10:09 +0100115 dd->adev = adev;
Alex Chiangf69cfdd2009-10-19 15:14:29 -0600116 INIT_LIST_HEAD(&dd->list);
Len Brownc8f7a622006-07-09 17:22:28 -0400117 list_add_tail(&dd->list, &ds->dependent_devices);
Alex Chiangf69cfdd2009-10-19 15:14:29 -0600118
119 return 0;
Len Brownc8f7a622006-07-09 17:22:28 -0400120}
121
Rafael J. Wysockia30c4c52013-06-30 23:50:24 +0200122static void remove_dock_dependent_devices(struct dock_station *ds)
123{
124 struct dock_dependent_device *dd, *aux;
125
126 list_for_each_entry_safe(dd, aux, &ds->dependent_devices, list) {
127 list_del(&dd->list);
128 kfree(dd);
129 }
130}
131
Len Brownc8f7a622006-07-09 17:22:28 -0400132/**
Rafael J. Wysocki21a31012013-06-24 11:22:53 +0200133 * dock_init_hotplug - Initialize a hotplug device on a docking station.
134 * @dd: Dock-dependent device.
135 * @ops: Dock operations to attach to the dependent device.
136 * @context: Data to pass to the @ops callbacks and @release.
137 * @init: Optional initialization routine to run after setting up context.
138 * @release: Optional release routine to run on removal.
Len Brownc8f7a622006-07-09 17:22:28 -0400139 */
Rafael J. Wysocki21a31012013-06-24 11:22:53 +0200140static int dock_init_hotplug(struct dock_dependent_device *dd,
141 const struct acpi_dock_ops *ops, void *context,
142 void (*init)(void *), void (*release)(void *))
Len Brownc8f7a622006-07-09 17:22:28 -0400143{
Rafael J. Wysocki21a31012013-06-24 11:22:53 +0200144 int ret = 0;
145
146 mutex_lock(&hotplug_lock);
Rafael J. Wysocki4ec24062013-06-30 23:47:14 +0200147 if (WARN_ON(dd->hp_context)) {
Rafael J. Wysocki21a31012013-06-24 11:22:53 +0200148 ret = -EEXIST;
149 } else {
150 dd->hp_refcount = 1;
151 dd->hp_ops = ops;
152 dd->hp_context = context;
153 dd->hp_release = release;
Rafael J. Wysocki4ec24062013-06-30 23:47:14 +0200154 if (init)
155 init(context);
Rafael J. Wysocki21a31012013-06-24 11:22:53 +0200156 }
Rafael J. Wysocki21a31012013-06-24 11:22:53 +0200157 mutex_unlock(&hotplug_lock);
158 return ret;
Len Brownc8f7a622006-07-09 17:22:28 -0400159}
160
161/**
Rafael J. Wysocki21a31012013-06-24 11:22:53 +0200162 * dock_release_hotplug - Decrement hotplug reference counter of dock device.
163 * @dd: Dock-dependent device.
Len Brownc8f7a622006-07-09 17:22:28 -0400164 *
Rafael J. Wysocki21a31012013-06-24 11:22:53 +0200165 * Decrement the reference counter of @dd and if 0, detach its hotplug
166 * operations from it, reset its context pointer and run the optional release
167 * routine if present.
Len Brownc8f7a622006-07-09 17:22:28 -0400168 */
Rafael J. Wysocki21a31012013-06-24 11:22:53 +0200169static void dock_release_hotplug(struct dock_dependent_device *dd)
Len Brownc8f7a622006-07-09 17:22:28 -0400170{
Rafael J. Wysocki21a31012013-06-24 11:22:53 +0200171 mutex_lock(&hotplug_lock);
Rafael J. Wysocki21a31012013-06-24 11:22:53 +0200172 if (dd->hp_context && !--dd->hp_refcount) {
Rafael J. Wysocki4ec24062013-06-30 23:47:14 +0200173 void (*release)(void *) = dd->hp_release;
174 void *context = dd->hp_context;
175
Rafael J. Wysocki21a31012013-06-24 11:22:53 +0200176 dd->hp_ops = NULL;
Rafael J. Wysocki21a31012013-06-24 11:22:53 +0200177 dd->hp_context = NULL;
Rafael J. Wysocki21a31012013-06-24 11:22:53 +0200178 dd->hp_release = NULL;
Rafael J. Wysocki4ec24062013-06-30 23:47:14 +0200179 if (release)
180 release(context);
Rafael J. Wysocki21a31012013-06-24 11:22:53 +0200181 }
Rafael J. Wysocki21a31012013-06-24 11:22:53 +0200182 mutex_unlock(&hotplug_lock);
183}
184
185static void dock_hotplug_event(struct dock_dependent_device *dd, u32 event,
Rafael J. Wysockif09ce742013-07-05 03:03:25 +0200186 enum dock_callback_type cb_type)
Rafael J. Wysocki21a31012013-06-24 11:22:53 +0200187{
188 acpi_notify_handler cb = NULL;
189 bool run = false;
190
191 mutex_lock(&hotplug_lock);
192
193 if (dd->hp_context) {
194 run = true;
195 dd->hp_refcount++;
Rafael J. Wysockif09ce742013-07-05 03:03:25 +0200196 if (dd->hp_ops) {
197 switch (cb_type) {
198 case DOCK_CALL_FIXUP:
199 cb = dd->hp_ops->fixup;
200 break;
201 case DOCK_CALL_UEVENT:
202 cb = dd->hp_ops->uevent;
203 break;
204 default:
205 cb = dd->hp_ops->handler;
206 }
207 }
Rafael J. Wysocki21a31012013-06-24 11:22:53 +0200208 }
209
210 mutex_unlock(&hotplug_lock);
211
212 if (!run)
213 return;
214
215 if (cb)
Rafael J. Wysocki3b52b212014-02-21 01:10:09 +0100216 cb(dd->adev->handle, event, dd->hp_context);
Rafael J. Wysocki21a31012013-06-24 11:22:53 +0200217
218 dock_release_hotplug(dd);
Len Brownc8f7a622006-07-09 17:22:28 -0400219}
220
Rafael J. Wysocki1e2380c2014-02-16 01:51:01 +0100221static struct dock_station *find_dock_station(acpi_handle handle)
222{
223 struct dock_station *ds;
224
225 list_for_each_entry(ds, &dock_stations, sibling)
226 if (ds->handle == handle)
227 return ds;
228
229 return NULL;
230}
231
Len Brownc8f7a622006-07-09 17:22:28 -0400232/**
233 * find_dock_dependent_device - get a device dependent on this dock
234 * @ds: the dock station
Rafael J. Wysocki3b52b212014-02-21 01:10:09 +0100235 * @adev: ACPI device object to find.
Len Brownc8f7a622006-07-09 17:22:28 -0400236 *
237 * iterate over the dependent device list for this dock. If the
238 * dependent device matches the handle, return.
239 */
240static struct dock_dependent_device *
Rafael J. Wysocki3b52b212014-02-21 01:10:09 +0100241find_dock_dependent_device(struct dock_station *ds, struct acpi_device *adev)
Len Brownc8f7a622006-07-09 17:22:28 -0400242{
243 struct dock_dependent_device *dd;
244
Jiang Liued633e72013-06-29 00:24:35 +0800245 list_for_each_entry(dd, &ds->dependent_devices, list)
Rafael J. Wysocki3b52b212014-02-21 01:10:09 +0100246 if (adev == dd->adev)
Len Brownc8f7a622006-07-09 17:22:28 -0400247 return dd;
Jiang Liued633e72013-06-29 00:24:35 +0800248
Len Brownc8f7a622006-07-09 17:22:28 -0400249 return NULL;
250}
251
Rafael J. Wysocki1e2380c2014-02-16 01:51:01 +0100252void register_dock_dependent_device(struct acpi_device *adev,
253 acpi_handle dshandle)
254{
255 struct dock_station *ds = find_dock_station(dshandle);
Rafael J. Wysocki1e2380c2014-02-16 01:51:01 +0100256
Rafael J. Wysocki3b52b212014-02-21 01:10:09 +0100257 if (ds && !find_dock_dependent_device(ds, adev))
258 add_dock_dependent_device(ds, adev);
Rafael J. Wysocki1e2380c2014-02-16 01:51:01 +0100259}
260
Len Brownc8f7a622006-07-09 17:22:28 -0400261/*****************************************************************************
262 * Dock functions *
263 *****************************************************************************/
Shaohua Lidb350b02008-08-28 10:03:58 +0800264
Len Brownc8f7a622006-07-09 17:22:28 -0400265/**
266 * is_dock_device - see if a device is on a dock station
Rafael J. Wysocki3b52b212014-02-21 01:10:09 +0100267 * @adev: ACPI device object to check.
Len Brownc8f7a622006-07-09 17:22:28 -0400268 *
269 * If this device is either the dock station itself,
270 * or is a device dependent on the dock station, then it
271 * is a dock device
272 */
Rafael J. Wysocki3b52b212014-02-21 01:10:09 +0100273int is_dock_device(struct acpi_device *adev)
Len Brownc8f7a622006-07-09 17:22:28 -0400274{
Shaohua Lidb350b02008-08-28 10:03:58 +0800275 struct dock_station *dock_station;
276
277 if (!dock_station_count)
Len Brownc8f7a622006-07-09 17:22:28 -0400278 return 0;
279
Rafael J. Wysocki3b52b212014-02-21 01:10:09 +0100280 if (acpi_dock_match(adev->handle))
Len Brownc8f7a622006-07-09 17:22:28 -0400281 return 1;
Alex Chiang747479a2009-10-19 15:14:50 -0600282
283 list_for_each_entry(dock_station, &dock_stations, sibling)
Rafael J. Wysocki3b52b212014-02-21 01:10:09 +0100284 if (find_dock_dependent_device(dock_station, adev))
Shaohua Lidb350b02008-08-28 10:03:58 +0800285 return 1;
Len Brownc8f7a622006-07-09 17:22:28 -0400286
287 return 0;
288}
Len Brownc8f7a622006-07-09 17:22:28 -0400289EXPORT_SYMBOL_GPL(is_dock_device);
290
291/**
292 * dock_present - see if the dock station is present.
293 * @ds: the dock station
294 *
295 * execute the _STA method. note that present does not
296 * imply that we are docked.
297 */
298static int dock_present(struct dock_station *ds)
299{
Matthew Wilcox27663c52008-10-10 02:22:59 -0400300 unsigned long long sta;
Len Brownc8f7a622006-07-09 17:22:28 -0400301 acpi_status status;
302
303 if (ds) {
304 status = acpi_evaluate_integer(ds->handle, "_STA", NULL, &sta);
305 if (ACPI_SUCCESS(status) && sta)
306 return 1;
307 }
308 return 0;
309}
310
Len Brownc8f7a622006-07-09 17:22:28 -0400311/**
Rafael J. Wysocki37f90872013-06-30 23:46:42 +0200312 * hot_remove_dock_devices - Remove dock station devices.
313 * @ds: Dock station.
314 */
315static void hot_remove_dock_devices(struct dock_station *ds)
316{
317 struct dock_dependent_device *dd;
318
319 /*
320 * Walk the list in reverse order so that devices that have been added
321 * last are removed first (in case there are some indirect dependencies
322 * between them).
323 */
324 list_for_each_entry_reverse(dd, &ds->dependent_devices, list)
325 dock_hotplug_event(dd, ACPI_NOTIFY_EJECT_REQUEST, false);
326
327 list_for_each_entry_reverse(dd, &ds->dependent_devices, list)
Rafael J. Wysocki3b52b212014-02-21 01:10:09 +0100328 acpi_bus_trim(dd->adev);
Rafael J. Wysocki37f90872013-06-30 23:46:42 +0200329}
330
331/**
332 * hotplug_dock_devices - Insert devices on a dock station.
Len Brownc8f7a622006-07-09 17:22:28 -0400333 * @ds: the dock station
Rafael J. Wysocki37f90872013-06-30 23:46:42 +0200334 * @event: either bus check or device check request
Len Brownc8f7a622006-07-09 17:22:28 -0400335 *
336 * Some devices on the dock station need to have drivers called
337 * to perform hotplug operations after a dock event has occurred.
338 * Traverse the list of dock devices that have registered a
339 * hotplug handler, and call the handler.
340 */
341static void hotplug_dock_devices(struct dock_station *ds, u32 event)
342{
343 struct dock_dependent_device *dd;
344
Rafael J. Wysockif09ce742013-07-05 03:03:25 +0200345 /* Call driver specific post-dock fixups. */
346 list_for_each_entry(dd, &ds->dependent_devices, list)
347 dock_hotplug_event(dd, event, DOCK_CALL_FIXUP);
348
Rafael J. Wysocki37f90872013-06-30 23:46:42 +0200349 /* Call driver specific hotplug functions. */
Rafael J. Wysocki21a31012013-06-24 11:22:53 +0200350 list_for_each_entry(dd, &ds->dependent_devices, list)
Rafael J. Wysockif09ce742013-07-05 03:03:25 +0200351 dock_hotplug_event(dd, event, DOCK_CALL_HANDLER);
Len Brownc8f7a622006-07-09 17:22:28 -0400352
353 /*
Rafael J. Wysocki3b52b212014-02-21 01:10:09 +0100354 * Check if all devices have been enumerated already. If not, run
355 * acpi_bus_scan() for them and that will cause scan handlers to be
356 * attached to device objects or acpi_drivers to be stopped/started if
357 * they are present.
Len Brownc8f7a622006-07-09 17:22:28 -0400358 */
Rafael J. Wysocki3b52b212014-02-21 01:10:09 +0100359 list_for_each_entry(dd, &ds->dependent_devices, list) {
360 struct acpi_device *adev = dd->adev;
361
362 if (!acpi_device_enumerated(adev)) {
363 int ret = acpi_bus_scan(adev->handle);
364 if (ret)
365 dev_dbg(&adev->dev, "scan error %d\n", -ret);
366 }
367 }
Len Brownc8f7a622006-07-09 17:22:28 -0400368}
369
370static void dock_event(struct dock_station *ds, u32 event, int num)
371{
Shaohua Lidb350b02008-08-28 10:03:58 +0800372 struct device *dev = &ds->dock_device->dev;
Holger Macht66b56822007-08-10 13:10:32 -0700373 char event_string[13];
Kristen Carlson Accardi79a8f702007-05-09 15:10:22 -0700374 char *envp[] = { event_string, NULL };
Shaohua Li1253f7a2008-08-28 10:06:16 +0800375 struct dock_dependent_device *dd;
Kristen Carlson Accardi79a8f702007-05-09 15:10:22 -0700376
377 if (num == UNDOCK_EVENT)
Holger Macht66b56822007-08-10 13:10:32 -0700378 sprintf(event_string, "EVENT=undock");
Kristen Carlson Accardi79a8f702007-05-09 15:10:22 -0700379 else
Holger Macht66b56822007-08-10 13:10:32 -0700380 sprintf(event_string, "EVENT=dock");
Kristen Carlson Accardi79a8f702007-05-09 15:10:22 -0700381
Kristen Carlson Accardi56690212006-08-01 14:59:19 -0700382 /*
Kristen Carlson Accardi8ea86e02006-12-11 12:05:08 -0800383 * Indicate that the status of the dock station has
384 * changed.
Kristen Carlson Accardi56690212006-08-01 14:59:19 -0700385 */
Shaohua Li1253f7a2008-08-28 10:06:16 +0800386 if (num == DOCK_EVENT)
387 kobject_uevent_env(&dev->kobj, KOBJ_CHANGE, envp);
388
Rafael J. Wysocki21a31012013-06-24 11:22:53 +0200389 list_for_each_entry(dd, &ds->dependent_devices, list)
Rafael J. Wysockif09ce742013-07-05 03:03:25 +0200390 dock_hotplug_event(dd, event, DOCK_CALL_UEVENT);
Alex Chiang747479a2009-10-19 15:14:50 -0600391
Shaohua Li1253f7a2008-08-28 10:06:16 +0800392 if (num != DOCK_EVENT)
393 kobject_uevent_env(&dev->kobj, KOBJ_CHANGE, envp);
Len Brownc8f7a622006-07-09 17:22:28 -0400394}
395
396/**
Len Brownc8f7a622006-07-09 17:22:28 -0400397 * handle_dock - handle a dock event
398 * @ds: the dock station
399 * @dock: to dock, or undock - that is the question
400 *
401 * Execute the _DCK method in response to an acpi event
402 */
403static void handle_dock(struct dock_station *ds, int dock)
404{
405 acpi_status status;
406 struct acpi_object_list arg_list;
407 union acpi_object arg;
Zhang Rui6a868e12013-09-03 08:32:10 +0800408 unsigned long long value;
Len Brownc8f7a622006-07-09 17:22:28 -0400409
Toshi Kanicd730182012-11-20 23:42:30 +0000410 acpi_handle_info(ds->handle, "%s\n", dock ? "docking" : "undocking");
Len Brownc8f7a622006-07-09 17:22:28 -0400411
412 /* _DCK method has one argument */
413 arg_list.count = 1;
414 arg_list.pointer = &arg;
415 arg.type = ACPI_TYPE_INTEGER;
416 arg.integer.value = dock;
Zhang Rui6a868e12013-09-03 08:32:10 +0800417 status = acpi_evaluate_integer(ds->handle, "_DCK", &arg_list, &value);
Shaohua Lidb350b02008-08-28 10:03:58 +0800418 if (ACPI_FAILURE(status) && status != AE_NOT_FOUND)
Toshi Kanicd730182012-11-20 23:42:30 +0000419 acpi_handle_err(ds->handle, "Failed to execute _DCK (0x%x)\n",
420 status);
Len Brownc8f7a622006-07-09 17:22:28 -0400421}
422
423static inline void dock(struct dock_station *ds)
424{
425 handle_dock(ds, 1);
426}
427
428static inline void undock(struct dock_station *ds)
429{
430 handle_dock(ds, 0);
431}
432
433static inline void begin_dock(struct dock_station *ds)
434{
435 ds->flags |= DOCK_DOCKING;
436}
437
438static inline void complete_dock(struct dock_station *ds)
439{
440 ds->flags &= ~(DOCK_DOCKING);
441 ds->last_dock_time = jiffies;
442}
443
Kristen Carlson Accardia0cd35f2007-05-09 15:08:15 -0700444static inline void begin_undock(struct dock_station *ds)
445{
446 ds->flags |= DOCK_UNDOCKING;
447}
448
449static inline void complete_undock(struct dock_station *ds)
450{
451 ds->flags &= ~(DOCK_UNDOCKING);
452}
453
Len Brownc8f7a622006-07-09 17:22:28 -0400454/**
455 * dock_in_progress - see if we are in the middle of handling a dock event
456 * @ds: the dock station
457 *
458 * Sometimes while docking, false dock events can be sent to the driver
459 * because good connections aren't made or some other reason. Ignore these
460 * if we are in the middle of doing something.
461 */
462static int dock_in_progress(struct dock_station *ds)
463{
464 if ((ds->flags & DOCK_DOCKING) ||
465 time_before(jiffies, (ds->last_dock_time + HZ)))
466 return 1;
467 return 0;
468}
469
470/**
Len Brownc8f7a622006-07-09 17:22:28 -0400471 * register_hotplug_dock_device - register a hotplug function
472 * @handle: the handle of the device
Shaohua Li1253f7a2008-08-28 10:06:16 +0800473 * @ops: handlers to call after docking
Len Brownc8f7a622006-07-09 17:22:28 -0400474 * @context: device specific data
Rafael J. Wysocki21a31012013-06-24 11:22:53 +0200475 * @init: Optional initialization routine to run after registration
476 * @release: Optional release routine to run on unregistration
Len Brownc8f7a622006-07-09 17:22:28 -0400477 *
478 * If a driver would like to perform a hotplug operation after a dock
479 * event, they can register an acpi_notifiy_handler to be called by
480 * the dock driver after _DCK is executed.
481 */
Rafael J. Wysocki21a31012013-06-24 11:22:53 +0200482int register_hotplug_dock_device(acpi_handle handle,
483 const struct acpi_dock_ops *ops, void *context,
484 void (*init)(void *), void (*release)(void *))
Len Brownc8f7a622006-07-09 17:22:28 -0400485{
486 struct dock_dependent_device *dd;
Shaohua Lidb350b02008-08-28 10:03:58 +0800487 struct dock_station *dock_station;
Rafael J. Wysocki3b52b212014-02-21 01:10:09 +0100488 struct acpi_device *adev;
Shaohua Li61b83692008-08-28 10:07:14 +0800489 int ret = -EINVAL;
Len Brownc8f7a622006-07-09 17:22:28 -0400490
Rafael J. Wysocki21a31012013-06-24 11:22:53 +0200491 if (WARN_ON(!context))
492 return -EINVAL;
493
Shaohua Lidb350b02008-08-28 10:03:58 +0800494 if (!dock_station_count)
Len Brownc8f7a622006-07-09 17:22:28 -0400495 return -ENODEV;
496
Rafael J. Wysocki3b52b212014-02-21 01:10:09 +0100497 ret = acpi_bus_get_device(handle, &adev);
498 if (ret)
499 return ret;
500
Len Brownc8f7a622006-07-09 17:22:28 -0400501 /*
502 * make sure this handle is for a device dependent on the dock,
503 * this would include the dock station itself
504 */
Alex Chiang50d716e2009-10-01 11:59:23 -0600505 list_for_each_entry(dock_station, &dock_stations, sibling) {
Shaohua Li61b83692008-08-28 10:07:14 +0800506 /*
507 * An ATA bay can be in a dock and itself can be ejected
Daniel Mack3ad2f3f2010-02-03 08:01:28 +0800508 * separately, so there are two 'dock stations' which need the
Shaohua Li61b83692008-08-28 10:07:14 +0800509 * ops
510 */
Rafael J. Wysocki3b52b212014-02-21 01:10:09 +0100511 dd = find_dock_dependent_device(dock_station, adev);
Rafael J. Wysocki21a31012013-06-24 11:22:53 +0200512 if (dd && !dock_init_hotplug(dd, ops, context, init, release))
Shaohua Li61b83692008-08-28 10:07:14 +0800513 ret = 0;
Len Brownc8f7a622006-07-09 17:22:28 -0400514 }
515
Shaohua Li61b83692008-08-28 10:07:14 +0800516 return ret;
Len Brownc8f7a622006-07-09 17:22:28 -0400517}
Len Brownc8f7a622006-07-09 17:22:28 -0400518EXPORT_SYMBOL_GPL(register_hotplug_dock_device);
519
520/**
521 * unregister_hotplug_dock_device - remove yourself from the hotplug list
522 * @handle: the acpi handle of the device
523 */
524void unregister_hotplug_dock_device(acpi_handle handle)
525{
526 struct dock_dependent_device *dd;
Shaohua Lidb350b02008-08-28 10:03:58 +0800527 struct dock_station *dock_station;
Rafael J. Wysocki3b52b212014-02-21 01:10:09 +0100528 struct acpi_device *adev;
Len Brownc8f7a622006-07-09 17:22:28 -0400529
Shaohua Lidb350b02008-08-28 10:03:58 +0800530 if (!dock_station_count)
Len Brownc8f7a622006-07-09 17:22:28 -0400531 return;
532
Rafael J. Wysocki3b52b212014-02-21 01:10:09 +0100533 if (acpi_bus_get_device(handle, &adev))
534 return;
535
Alex Chiang50d716e2009-10-01 11:59:23 -0600536 list_for_each_entry(dock_station, &dock_stations, sibling) {
Rafael J. Wysocki3b52b212014-02-21 01:10:09 +0100537 dd = find_dock_dependent_device(dock_station, adev);
Shaohua Lidb350b02008-08-28 10:03:58 +0800538 if (dd)
Rafael J. Wysocki21a31012013-06-24 11:22:53 +0200539 dock_release_hotplug(dd);
Shaohua Lidb350b02008-08-28 10:03:58 +0800540 }
Len Brownc8f7a622006-07-09 17:22:28 -0400541}
Len Brownc8f7a622006-07-09 17:22:28 -0400542EXPORT_SYMBOL_GPL(unregister_hotplug_dock_device);
543
544/**
brandon@ifup.orgc80fdbe2006-12-04 14:49:58 -0800545 * handle_eject_request - handle an undock request checking for error conditions
546 *
547 * Check to make sure the dock device is still present, then undock and
548 * hotremove all the devices that may need removing.
549 */
550static int handle_eject_request(struct dock_station *ds, u32 event)
551{
brandon@ifup.orgc80fdbe2006-12-04 14:49:58 -0800552 if (dock_in_progress(ds))
553 return -EBUSY;
554
555 /*
556 * here we need to generate the undock
557 * event prior to actually doing the undock
558 * so that the device struct still exists.
Holger Machtafd73012008-08-06 17:56:01 +0200559 * Also, even send the dock event if the
560 * device is not present anymore
brandon@ifup.orgc80fdbe2006-12-04 14:49:58 -0800561 */
562 dock_event(ds, event, UNDOCK_EVENT);
Holger Machtafd73012008-08-06 17:56:01 +0200563
Rafael J. Wysocki37f90872013-06-30 23:46:42 +0200564 hot_remove_dock_devices(ds);
brandon@ifup.orgc80fdbe2006-12-04 14:49:58 -0800565 undock(ds);
Jiang Liuc9b54712013-06-29 00:24:42 +0800566 acpi_evaluate_lck(ds->handle, 0);
567 acpi_evaluate_ej0(ds->handle);
brandon@ifup.orgc80fdbe2006-12-04 14:49:58 -0800568 if (dock_present(ds)) {
Toshi Kanicd730182012-11-20 23:42:30 +0000569 acpi_handle_err(ds->handle, "Unable to undock!\n");
brandon@ifup.orgc80fdbe2006-12-04 14:49:58 -0800570 return -EBUSY;
571 }
Kristen Carlson Accardia0cd35f2007-05-09 15:08:15 -0700572 complete_undock(ds);
brandon@ifup.orgc80fdbe2006-12-04 14:49:58 -0800573 return 0;
574}
575
576/**
Rafael J. Wysocki1e2380c2014-02-16 01:51:01 +0100577 * dock_notify - Handle ACPI dock notification.
578 * @adev: Dock station's ACPI device object.
579 * @event: Event code.
Len Brownc8f7a622006-07-09 17:22:28 -0400580 *
581 * If we are notified to dock, then check to see if the dock is
582 * present and then dock. Notify all drivers of the dock event,
brandon@ifup.orgc80fdbe2006-12-04 14:49:58 -0800583 * and then hotplug and devices that may need hotplugging.
Len Brownc8f7a622006-07-09 17:22:28 -0400584 */
Rafael J. Wysocki1e2380c2014-02-16 01:51:01 +0100585int dock_notify(struct acpi_device *adev, u32 event)
Len Brownc8f7a622006-07-09 17:22:28 -0400586{
Rafael J. Wysocki1e2380c2014-02-16 01:51:01 +0100587 acpi_handle handle = adev->handle;
588 struct dock_station *ds = find_dock_station(handle);
Shaohua Lidb350b02008-08-28 10:03:58 +0800589 int surprise_removal = 0;
Len Brownc8f7a622006-07-09 17:22:28 -0400590
Rafael J. Wysocki1e2380c2014-02-16 01:51:01 +0100591 if (!ds)
592 return -ENODEV;
593
Shaohua Lidb350b02008-08-28 10:03:58 +0800594 /*
595 * According to acpi spec 3.0a, if a DEVICE_CHECK notification
596 * is sent and _DCK is present, it is assumed to mean an undock
597 * request.
598 */
599 if ((ds->flags & DOCK_IS_DOCK) && event == ACPI_NOTIFY_DEVICE_CHECK)
600 event = ACPI_NOTIFY_EJECT_REQUEST;
601
602 /*
603 * dock station: BUS_CHECK - docked or surprise removal
604 * DEVICE_CHECK - undocked
605 * other device: BUS_CHECK/DEVICE_CHECK - added or surprise removal
606 *
607 * To simplify event handling, dock dependent device handler always
608 * get ACPI_NOTIFY_BUS_CHECK/ACPI_NOTIFY_DEVICE_CHECK for add and
609 * ACPI_NOTIFY_EJECT_REQUEST for removal
610 */
Len Brownc8f7a622006-07-09 17:22:28 -0400611 switch (event) {
612 case ACPI_NOTIFY_BUS_CHECK:
Shaohua Lidb350b02008-08-28 10:03:58 +0800613 case ACPI_NOTIFY_DEVICE_CHECK:
Rafael J. Wysocki0a8e5c32014-02-10 13:44:20 +0100614 if (!dock_in_progress(ds) && !acpi_device_enumerated(adev)) {
Len Brownc8f7a622006-07-09 17:22:28 -0400615 begin_dock(ds);
616 dock(ds);
617 if (!dock_present(ds)) {
Toshi Kanicd730182012-11-20 23:42:30 +0000618 acpi_handle_err(handle, "Unable to dock!\n");
Shaohua Li8b595602008-08-28 10:02:03 +0800619 complete_dock(ds);
Len Brownc8f7a622006-07-09 17:22:28 -0400620 break;
621 }
Len Brownc8f7a622006-07-09 17:22:28 -0400622 hotplug_dock_devices(ds, event);
623 complete_dock(ds);
624 dock_event(ds, event, DOCK_EVENT);
Jiang Liuc9b54712013-06-29 00:24:42 +0800625 acpi_evaluate_lck(ds->handle, 1);
Lin Ming3a378982010-12-13 13:36:15 +0800626 acpi_update_all_gpes();
Shaohua Lidb350b02008-08-28 10:03:58 +0800627 break;
Len Brownc8f7a622006-07-09 17:22:28 -0400628 }
Shaohua Lidb350b02008-08-28 10:03:58 +0800629 if (dock_present(ds) || dock_in_progress(ds))
630 break;
631 /* This is a surprise removal */
632 surprise_removal = 1;
633 event = ACPI_NOTIFY_EJECT_REQUEST;
634 /* Fall back */
Len Brownc8f7a622006-07-09 17:22:28 -0400635 case ACPI_NOTIFY_EJECT_REQUEST:
Kristen Carlson Accardia0cd35f2007-05-09 15:08:15 -0700636 begin_undock(ds);
Shaohua Lif730ae12008-08-28 10:05:45 +0800637 if ((immediate_undock && !(ds->flags & DOCK_IS_ATA))
638 || surprise_removal)
Kristen Carlson Accardia0cd35f2007-05-09 15:08:15 -0700639 handle_eject_request(ds, event);
640 else
641 dock_event(ds, event, UNDOCK_EVENT);
Len Brownc8f7a622006-07-09 17:22:28 -0400642 break;
Len Brownc8f7a622006-07-09 17:22:28 -0400643 }
Rafael J. Wysocki1e2380c2014-02-16 01:51:01 +0100644 return 0;
Len Brownc8f7a622006-07-09 17:22:28 -0400645}
646
brandon@ifup.orgc80fdbe2006-12-04 14:49:58 -0800647/*
648 * show_docked - read method for "docked" file in sysfs
649 */
650static ssize_t show_docked(struct device *dev,
651 struct device_attribute *attr, char *buf)
652{
Alex Chiangfe06fba2009-10-19 15:14:45 -0600653 struct dock_station *dock_station = dev->platform_data;
Rafael J. Wysockiab62f9c2014-02-15 01:29:06 +0100654 struct acpi_device *adev = NULL;
brandon@ifup.orgc80fdbe2006-12-04 14:49:58 -0800655
Rafael J. Wysockiab62f9c2014-02-15 01:29:06 +0100656 acpi_bus_get_device(dock_station->handle, &adev);
657 return snprintf(buf, PAGE_SIZE, "%u\n", acpi_device_enumerated(adev));
brandon@ifup.orgc80fdbe2006-12-04 14:49:58 -0800658}
Adrian Bunke5685b92007-10-24 18:24:42 +0200659static DEVICE_ATTR(docked, S_IRUGO, show_docked, NULL);
brandon@ifup.orgc80fdbe2006-12-04 14:49:58 -0800660
661/*
Kristen Carlson Accardia0cd35f2007-05-09 15:08:15 -0700662 * show_flags - read method for flags file in sysfs
663 */
664static ssize_t show_flags(struct device *dev,
665 struct device_attribute *attr, char *buf)
666{
Alex Chiangfe06fba2009-10-19 15:14:45 -0600667 struct dock_station *dock_station = dev->platform_data;
Kristen Carlson Accardia0cd35f2007-05-09 15:08:15 -0700668 return snprintf(buf, PAGE_SIZE, "%d\n", dock_station->flags);
669
670}
Adrian Bunke5685b92007-10-24 18:24:42 +0200671static DEVICE_ATTR(flags, S_IRUGO, show_flags, NULL);
Kristen Carlson Accardia0cd35f2007-05-09 15:08:15 -0700672
673/*
brandon@ifup.orgc80fdbe2006-12-04 14:49:58 -0800674 * write_undock - write method for "undock" file in sysfs
675 */
676static ssize_t write_undock(struct device *dev, struct device_attribute *attr,
677 const char *buf, size_t count)
678{
679 int ret;
Alex Chiangfe06fba2009-10-19 15:14:45 -0600680 struct dock_station *dock_station = dev->platform_data;
brandon@ifup.orgc80fdbe2006-12-04 14:49:58 -0800681
682 if (!count)
683 return -EINVAL;
684
Rafael J. Wysocki81120062013-06-16 00:38:30 +0200685 acpi_scan_lock_acquire();
Holger Macht9171f832008-03-12 01:07:27 +0100686 begin_undock(dock_station);
brandon@ifup.orgc80fdbe2006-12-04 14:49:58 -0800687 ret = handle_eject_request(dock_station, ACPI_NOTIFY_EJECT_REQUEST);
Rafael J. Wysocki81120062013-06-16 00:38:30 +0200688 acpi_scan_lock_release();
brandon@ifup.orgc80fdbe2006-12-04 14:49:58 -0800689 return ret ? ret: count;
690}
Adrian Bunke5685b92007-10-24 18:24:42 +0200691static DEVICE_ATTR(undock, S_IWUSR, NULL, write_undock);
brandon@ifup.orgc80fdbe2006-12-04 14:49:58 -0800692
Ilya A. Volynets-Evenbakhac122bb2007-02-19 15:19:31 -0800693/*
694 * show_dock_uid - read method for "uid" file in sysfs
695 */
696static ssize_t show_dock_uid(struct device *dev,
697 struct device_attribute *attr, char *buf)
698{
Matthew Wilcox27663c52008-10-10 02:22:59 -0400699 unsigned long long lbuf;
Alex Chiangfe06fba2009-10-19 15:14:45 -0600700 struct dock_station *dock_station = dev->platform_data;
Kristen Carlson Accardi38ff4ff2007-05-09 15:04:24 -0700701 acpi_status status = acpi_evaluate_integer(dock_station->handle,
702 "_UID", NULL, &lbuf);
703 if (ACPI_FAILURE(status))
Ilya A. Volynets-Evenbakhac122bb2007-02-19 15:19:31 -0800704 return 0;
Kristen Carlson Accardi38ff4ff2007-05-09 15:04:24 -0700705
Matthew Wilcox27663c52008-10-10 02:22:59 -0400706 return snprintf(buf, PAGE_SIZE, "%llx\n", lbuf);
Ilya A. Volynets-Evenbakhac122bb2007-02-19 15:19:31 -0800707}
Adrian Bunke5685b92007-10-24 18:24:42 +0200708static DEVICE_ATTR(uid, S_IRUGO, show_dock_uid, NULL);
Ilya A. Volynets-Evenbakhac122bb2007-02-19 15:19:31 -0800709
Shaohua Li8652b002008-08-28 10:07:45 +0800710static ssize_t show_dock_type(struct device *dev,
711 struct device_attribute *attr, char *buf)
712{
Alex Chiangfe06fba2009-10-19 15:14:45 -0600713 struct dock_station *dock_station = dev->platform_data;
Shaohua Li8652b002008-08-28 10:07:45 +0800714 char *type;
715
716 if (dock_station->flags & DOCK_IS_DOCK)
717 type = "dock_station";
718 else if (dock_station->flags & DOCK_IS_ATA)
719 type = "ata_bay";
720 else if (dock_station->flags & DOCK_IS_BAT)
721 type = "battery_bay";
722 else
723 type = "unknown";
724
725 return snprintf(buf, PAGE_SIZE, "%s\n", type);
726}
727static DEVICE_ATTR(type, S_IRUGO, show_dock_type, NULL);
728
Alex Chiang5f46c2f2009-10-19 15:14:24 -0600729static struct attribute *dock_attributes[] = {
730 &dev_attr_docked.attr,
731 &dev_attr_flags.attr,
732 &dev_attr_undock.attr,
733 &dev_attr_uid.attr,
734 &dev_attr_type.attr,
735 NULL
736};
737
738static struct attribute_group dock_attribute_group = {
739 .attrs = dock_attributes
740};
741
Len Brownc8f7a622006-07-09 17:22:28 -0400742/**
Rafael J. Wysocki1e2380c2014-02-16 01:51:01 +0100743 * acpi_dock_add - Add a new dock station
744 * @adev: Dock station ACPI device object.
Len Brownc8f7a622006-07-09 17:22:28 -0400745 *
Rafael J. Wysocki1e2380c2014-02-16 01:51:01 +0100746 * allocated and initialize a new dock station device.
Len Brownc8f7a622006-07-09 17:22:28 -0400747 */
Rafael J. Wysocki1e2380c2014-02-16 01:51:01 +0100748void acpi_dock_add(struct acpi_device *adev)
Len Brownc8f7a622006-07-09 17:22:28 -0400749{
Rafael J. Wysocki2efbca42013-07-05 03:23:36 +0200750 struct dock_station *dock_station, ds = { NULL, };
Rafael J. Wysockiaf8874492014-02-16 00:09:47 +0100751 struct platform_device_info pdevinfo;
Rafael J. Wysocki1e2380c2014-02-16 01:51:01 +0100752 acpi_handle handle = adev->handle;
Alex Chiang747479a2009-10-19 15:14:50 -0600753 struct platform_device *dd;
Rafael J. Wysocki2efbca42013-07-05 03:23:36 +0200754 int ret;
Len Brownc8f7a622006-07-09 17:22:28 -0400755
Rafael J. Wysockiaf8874492014-02-16 00:09:47 +0100756 memset(&pdevinfo, 0, sizeof(pdevinfo));
757 pdevinfo.name = "dock";
758 pdevinfo.id = dock_station_count;
759 pdevinfo.acpi_node.companion = adev;
760 pdevinfo.data = &ds;
761 pdevinfo.size_data = sizeof(ds);
762 dd = platform_device_register_full(&pdevinfo);
Alex Chiang747479a2009-10-19 15:14:50 -0600763 if (IS_ERR(dd))
Rafael J. Wysocki1e2380c2014-02-16 01:51:01 +0100764 return;
Alex Chiang9751cb72009-10-19 15:14:40 -0600765
Alex Chiang747479a2009-10-19 15:14:50 -0600766 dock_station = dd->dev.platform_data;
767
Len Brownc8f7a622006-07-09 17:22:28 -0400768 dock_station->handle = handle;
Alex Chiang747479a2009-10-19 15:14:50 -0600769 dock_station->dock_device = dd;
Len Brownc8f7a622006-07-09 17:22:28 -0400770 dock_station->last_dock_time = jiffies - HZ;
Len Brownc8f7a622006-07-09 17:22:28 -0400771
Alex Chiang747479a2009-10-19 15:14:50 -0600772 INIT_LIST_HEAD(&dock_station->sibling);
Alex Chiang747479a2009-10-19 15:14:50 -0600773 INIT_LIST_HEAD(&dock_station->dependent_devices);
Kristen Carlson Accardia0cd35f2007-05-09 15:08:15 -0700774
Kristen Carlson Accardi9ef2a9a2007-05-09 15:09:12 -0700775 /* we want the dock device to send uevents */
Alex Chiang747479a2009-10-19 15:14:50 -0600776 dev_set_uevent_suppress(&dd->dev, 0);
Kristen Carlson Accardi9ef2a9a2007-05-09 15:09:12 -0700777
Jiang Liuc9b54712013-06-29 00:24:42 +0800778 if (acpi_dock_match(handle))
Shaohua Lidb350b02008-08-28 10:03:58 +0800779 dock_station->flags |= DOCK_IS_DOCK;
Jiang Liuc9b54712013-06-29 00:24:42 +0800780 if (acpi_ata_match(handle))
Shaohua Lidb350b02008-08-28 10:03:58 +0800781 dock_station->flags |= DOCK_IS_ATA;
Rafael J. Wysockib43109f2014-02-16 00:09:34 +0100782 if (acpi_device_is_battery(adev))
Shaohua Lidb350b02008-08-28 10:03:58 +0800783 dock_station->flags |= DOCK_IS_BAT;
784
Alex Chiang747479a2009-10-19 15:14:50 -0600785 ret = sysfs_create_group(&dd->dev.kobj, &dock_attribute_group);
Shaohua Li8652b002008-08-28 10:07:45 +0800786 if (ret)
Alex Chiang5f46c2f2009-10-19 15:14:24 -0600787 goto err_unregister;
Kristen Carlson Accardi671adbe2006-12-04 14:49:43 -0800788
Len Brownc8f7a622006-07-09 17:22:28 -0400789 /* add the dock station as a device dependent on itself */
Rafael J. Wysocki3b52b212014-02-21 01:10:09 +0100790 ret = add_dock_dependent_device(dock_station, adev);
Alex Chiangf69cfdd2009-10-19 15:14:29 -0600791 if (ret)
Alex Chiang5f46c2f2009-10-19 15:14:24 -0600792 goto err_rmgroup;
Len Brownc8f7a622006-07-09 17:22:28 -0400793
Shaohua Lidb350b02008-08-28 10:03:58 +0800794 dock_station_count++;
Alex Chiang50d716e2009-10-01 11:59:23 -0600795 list_add(&dock_station->sibling, &dock_stations);
Rafael J. Wysocki1e2380c2014-02-16 01:51:01 +0100796 adev->flags.is_dock_station = true;
797 dev_info(&adev->dev, "ACPI dock station (docks/bays count: %d)\n",
798 dock_station_count);
799 return;
Len Brownc8f7a622006-07-09 17:22:28 -0400800
Alex Chiang5f46c2f2009-10-19 15:14:24 -0600801err_rmgroup:
Rafael J. Wysockia30c4c52013-06-30 23:50:24 +0200802 remove_dock_dependent_devices(dock_station);
Alex Chiang747479a2009-10-19 15:14:50 -0600803 sysfs_remove_group(&dd->dev.kobj, &dock_attribute_group);
Alex Chiang5f46c2f2009-10-19 15:14:24 -0600804err_unregister:
Alex Chiang747479a2009-10-19 15:14:50 -0600805 platform_device_unregister(dd);
Toshi Kanicd730182012-11-20 23:42:30 +0000806 acpi_handle_err(handle, "%s encountered error %d\n", __func__, ret);
Len Brownc8f7a622006-07-09 17:22:28 -0400807}