blob: ec117c6c996cc0e2c25bd63c7c47897b2546492a [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#include <acpi/acpi_bus.h>
36#include <acpi/acpi_drivers.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
Len Brownc8f7a622006-07-09 17:22:28 -040054static struct atomic_notifier_head dock_notifier_list;
55
Frank Seidela340af12007-12-07 13:20:42 +010056static const struct acpi_device_id dock_device_ids[] = {
57 {"LNXDOCK", 0},
58 {"", 0},
59};
60MODULE_DEVICE_TABLE(acpi, dock_device_ids);
61
Len Brownc8f7a622006-07-09 17:22:28 -040062struct dock_station {
63 acpi_handle handle;
64 unsigned long last_dock_time;
65 u32 flags;
66 spinlock_t dd_lock;
Kristen Carlson Accardi8b0dc862006-10-30 11:18:45 -080067 struct mutex hp_lock;
Len Brownc8f7a622006-07-09 17:22:28 -040068 struct list_head dependent_devices;
69 struct list_head hotplug_devices;
Shaohua Lidb350b02008-08-28 10:03:58 +080070
Alex Chiang50d716e2009-10-01 11:59:23 -060071 struct list_head sibling;
Shaohua Lidb350b02008-08-28 10:03:58 +080072 struct platform_device *dock_device;
Len Brownc8f7a622006-07-09 17:22:28 -040073};
Shaohua Lidb350b02008-08-28 10:03:58 +080074static LIST_HEAD(dock_stations);
75static int dock_station_count;
Len Brownc8f7a622006-07-09 17:22:28 -040076
77struct dock_dependent_device {
78 struct list_head list;
79 struct list_head hotplug_list;
80 acpi_handle handle;
Vasiliy Kulikov9c8b04b2011-06-25 21:07:52 +040081 const struct acpi_dock_ops *ops;
Len Brownc8f7a622006-07-09 17:22:28 -040082 void *context;
83};
84
85#define DOCK_DOCKING 0x00000001
Kristen Carlson Accardia0cd35f2007-05-09 15:08:15 -070086#define DOCK_UNDOCKING 0x00000002
Shaohua Lidb350b02008-08-28 10:03:58 +080087#define DOCK_IS_DOCK 0x00000010
88#define DOCK_IS_ATA 0x00000020
89#define DOCK_IS_BAT 0x00000040
Kristen Carlson Accardi56690212006-08-01 14:59:19 -070090#define DOCK_EVENT 3
91#define UNDOCK_EVENT 2
Len Brownc8f7a622006-07-09 17:22:28 -040092
Len Brownc8f7a622006-07-09 17:22:28 -040093/*****************************************************************************
94 * Dock Dependent device functions *
95 *****************************************************************************/
96/**
Alex Chiangf69cfdd2009-10-19 15:14:29 -060097 * add_dock_dependent_device - associate a device with the dock station
98 * @ds: The dock station
99 * @handle: handle of the dependent device
Len Brownc8f7a622006-07-09 17:22:28 -0400100 *
Alex Chiangf69cfdd2009-10-19 15:14:29 -0600101 * Add the dependent device to the dock's dependent device list.
Len Brownc8f7a622006-07-09 17:22:28 -0400102 */
Alex Chiangf69cfdd2009-10-19 15:14:29 -0600103static int
104add_dock_dependent_device(struct dock_station *ds, acpi_handle handle)
Len Brownc8f7a622006-07-09 17:22:28 -0400105{
106 struct dock_dependent_device *dd;
107
108 dd = kzalloc(sizeof(*dd), GFP_KERNEL);
Alex Chiangf69cfdd2009-10-19 15:14:29 -0600109 if (!dd)
110 return -ENOMEM;
Len Brownc8f7a622006-07-09 17:22:28 -0400111
Alex Chiangf69cfdd2009-10-19 15:14:29 -0600112 dd->handle = handle;
113 INIT_LIST_HEAD(&dd->list);
114 INIT_LIST_HEAD(&dd->hotplug_list);
115
Len Brownc8f7a622006-07-09 17:22:28 -0400116 spin_lock(&ds->dd_lock);
117 list_add_tail(&dd->list, &ds->dependent_devices);
118 spin_unlock(&ds->dd_lock);
Alex Chiangf69cfdd2009-10-19 15:14:29 -0600119
120 return 0;
Len Brownc8f7a622006-07-09 17:22:28 -0400121}
122
123/**
124 * dock_add_hotplug_device - associate a hotplug handler with the dock station
125 * @ds: The dock station
126 * @dd: The dependent device struct
127 *
128 * Add the dependent device to the dock's hotplug device list
129 */
130static void
131dock_add_hotplug_device(struct dock_station *ds,
132 struct dock_dependent_device *dd)
133{
Kristen Carlson Accardi8b0dc862006-10-30 11:18:45 -0800134 mutex_lock(&ds->hp_lock);
Len Brownc8f7a622006-07-09 17:22:28 -0400135 list_add_tail(&dd->hotplug_list, &ds->hotplug_devices);
Kristen Carlson Accardi8b0dc862006-10-30 11:18:45 -0800136 mutex_unlock(&ds->hp_lock);
Len Brownc8f7a622006-07-09 17:22:28 -0400137}
138
139/**
140 * dock_del_hotplug_device - remove a hotplug handler from the dock station
141 * @ds: The dock station
142 * @dd: the dependent device struct
143 *
144 * Delete the dependent device from the dock's hotplug device list
145 */
146static void
147dock_del_hotplug_device(struct dock_station *ds,
148 struct dock_dependent_device *dd)
149{
Kristen Carlson Accardi8b0dc862006-10-30 11:18:45 -0800150 mutex_lock(&ds->hp_lock);
Len Brownc8f7a622006-07-09 17:22:28 -0400151 list_del(&dd->hotplug_list);
Kristen Carlson Accardi8b0dc862006-10-30 11:18:45 -0800152 mutex_unlock(&ds->hp_lock);
Len Brownc8f7a622006-07-09 17:22:28 -0400153}
154
155/**
156 * find_dock_dependent_device - get a device dependent on this dock
157 * @ds: the dock station
158 * @handle: the acpi_handle of the device we want
159 *
160 * iterate over the dependent device list for this dock. If the
161 * dependent device matches the handle, return.
162 */
163static struct dock_dependent_device *
164find_dock_dependent_device(struct dock_station *ds, acpi_handle handle)
165{
166 struct dock_dependent_device *dd;
167
168 spin_lock(&ds->dd_lock);
169 list_for_each_entry(dd, &ds->dependent_devices, list) {
170 if (handle == dd->handle) {
171 spin_unlock(&ds->dd_lock);
172 return dd;
173 }
174 }
175 spin_unlock(&ds->dd_lock);
176 return NULL;
177}
178
179/*****************************************************************************
180 * Dock functions *
181 *****************************************************************************/
182/**
183 * is_dock - see if a device is a dock station
184 * @handle: acpi handle of the device
185 *
186 * If an acpi object has a _DCK method, then it is by definition a dock
187 * station, so return true.
188 */
189static int is_dock(acpi_handle handle)
190{
191 acpi_status status;
192 acpi_handle tmp;
193
194 status = acpi_get_handle(handle, "_DCK", &tmp);
195 if (ACPI_FAILURE(status))
196 return 0;
197 return 1;
198}
199
Shaohua Lidb350b02008-08-28 10:03:58 +0800200static int is_ejectable(acpi_handle handle)
201{
202 acpi_status status;
203 acpi_handle tmp;
204
205 status = acpi_get_handle(handle, "_EJ0", &tmp);
206 if (ACPI_FAILURE(status))
207 return 0;
208 return 1;
209}
210
211static int is_ata(acpi_handle handle)
212{
213 acpi_handle tmp;
214
215 if ((ACPI_SUCCESS(acpi_get_handle(handle, "_GTF", &tmp))) ||
216 (ACPI_SUCCESS(acpi_get_handle(handle, "_GTM", &tmp))) ||
217 (ACPI_SUCCESS(acpi_get_handle(handle, "_STM", &tmp))) ||
218 (ACPI_SUCCESS(acpi_get_handle(handle, "_SDD", &tmp))))
219 return 1;
220
221 return 0;
222}
223
224static int is_battery(acpi_handle handle)
225{
226 struct acpi_device_info *info;
Shaohua Lidb350b02008-08-28 10:03:58 +0800227 int ret = 1;
228
Bob Moore15b8dd52009-06-29 13:39:29 +0800229 if (!ACPI_SUCCESS(acpi_get_object_info(handle, &info)))
Shaohua Lidb350b02008-08-28 10:03:58 +0800230 return 0;
Shaohua Lidb350b02008-08-28 10:03:58 +0800231 if (!(info->valid & ACPI_VALID_HID))
232 ret = 0;
233 else
Bob Moore15b8dd52009-06-29 13:39:29 +0800234 ret = !strcmp("PNP0C0A", info->hardware_id.string);
Shaohua Lidb350b02008-08-28 10:03:58 +0800235
Bob Moore15b8dd52009-06-29 13:39:29 +0800236 kfree(info);
Shaohua Lidb350b02008-08-28 10:03:58 +0800237 return ret;
238}
239
240static int is_ejectable_bay(acpi_handle handle)
241{
242 acpi_handle phandle;
Alex Chiang747479a2009-10-19 15:14:50 -0600243
Shaohua Lidb350b02008-08-28 10:03:58 +0800244 if (!is_ejectable(handle))
245 return 0;
246 if (is_battery(handle) || is_ata(handle))
247 return 1;
248 if (!acpi_get_parent(handle, &phandle) && is_ata(phandle))
249 return 1;
250 return 0;
251}
252
Len Brownc8f7a622006-07-09 17:22:28 -0400253/**
254 * is_dock_device - see if a device is on a dock station
255 * @handle: acpi handle of the device
256 *
257 * If this device is either the dock station itself,
258 * or is a device dependent on the dock station, then it
259 * is a dock device
260 */
261int is_dock_device(acpi_handle handle)
262{
Shaohua Lidb350b02008-08-28 10:03:58 +0800263 struct dock_station *dock_station;
264
265 if (!dock_station_count)
Len Brownc8f7a622006-07-09 17:22:28 -0400266 return 0;
267
Shaohua Lidb350b02008-08-28 10:03:58 +0800268 if (is_dock(handle))
Len Brownc8f7a622006-07-09 17:22:28 -0400269 return 1;
Alex Chiang747479a2009-10-19 15:14:50 -0600270
271 list_for_each_entry(dock_station, &dock_stations, sibling)
Shaohua Lidb350b02008-08-28 10:03:58 +0800272 if (find_dock_dependent_device(dock_station, handle))
273 return 1;
Len Brownc8f7a622006-07-09 17:22:28 -0400274
275 return 0;
276}
Len Brownc8f7a622006-07-09 17:22:28 -0400277EXPORT_SYMBOL_GPL(is_dock_device);
278
279/**
280 * dock_present - see if the dock station is present.
281 * @ds: the dock station
282 *
283 * execute the _STA method. note that present does not
284 * imply that we are docked.
285 */
286static int dock_present(struct dock_station *ds)
287{
Matthew Wilcox27663c52008-10-10 02:22:59 -0400288 unsigned long long sta;
Len Brownc8f7a622006-07-09 17:22:28 -0400289 acpi_status status;
290
291 if (ds) {
292 status = acpi_evaluate_integer(ds->handle, "_STA", NULL, &sta);
293 if (ACPI_SUCCESS(status) && sta)
294 return 1;
295 }
296 return 0;
297}
298
Len Brownc8f7a622006-07-09 17:22:28 -0400299/**
300 * dock_create_acpi_device - add new devices to acpi
301 * @handle - handle of the device to add
302 *
303 * This function will create a new acpi_device for the given
304 * handle if one does not exist already. This should cause
305 * acpi to scan for drivers for the given devices, and call
306 * matching driver's add routine.
307 *
308 * Returns a pointer to the acpi_device corresponding to the handle.
309 */
310static struct acpi_device * dock_create_acpi_device(acpi_handle handle)
311{
Alex Chiang747479a2009-10-19 15:14:50 -0600312 struct acpi_device *device;
Len Brownc8f7a622006-07-09 17:22:28 -0400313 int ret;
314
315 if (acpi_bus_get_device(handle, &device)) {
316 /*
317 * no device created for this object,
318 * so we should create one.
319 */
Rafael J. Wysockib8bd7592013-01-19 01:27:35 +0100320 ret = acpi_bus_scan(handle);
Rafael J. Wysocki636458d2012-12-21 00:36:47 +0100321 if (ret)
Alex Chiang747479a2009-10-19 15:14:50 -0600322 pr_debug("error adding bus, %x\n", -ret);
Rafael J. Wysocki0cd6ac52012-12-21 00:36:49 +0100323
324 acpi_bus_get_device(handle, &device);
Len Brownc8f7a622006-07-09 17:22:28 -0400325 }
326 return device;
327}
328
329/**
330 * dock_remove_acpi_device - remove the acpi_device struct from acpi
331 * @handle - the handle of the device to remove
332 *
333 * Tell acpi to remove the acpi_device. This should cause any loaded
334 * driver to have it's remove routine called.
335 */
336static void dock_remove_acpi_device(acpi_handle handle)
337{
338 struct acpi_device *device;
Len Brownc8f7a622006-07-09 17:22:28 -0400339
Rafael J. Wysockibfee26d2013-01-26 00:27:44 +0100340 if (!acpi_bus_get_device(handle, &device))
341 acpi_bus_trim(device);
Len Brownc8f7a622006-07-09 17:22:28 -0400342}
343
Len Brownc8f7a622006-07-09 17:22:28 -0400344/**
345 * hotplug_dock_devices - insert or remove devices on the dock station
346 * @ds: the dock station
347 * @event: either bus check or eject request
348 *
349 * Some devices on the dock station need to have drivers called
350 * to perform hotplug operations after a dock event has occurred.
351 * Traverse the list of dock devices that have registered a
352 * hotplug handler, and call the handler.
353 */
354static void hotplug_dock_devices(struct dock_station *ds, u32 event)
355{
356 struct dock_dependent_device *dd;
357
Kristen Carlson Accardi8b0dc862006-10-30 11:18:45 -0800358 mutex_lock(&ds->hp_lock);
Len Brownc8f7a622006-07-09 17:22:28 -0400359
360 /*
361 * First call driver specific hotplug functions
362 */
Alex Chiang747479a2009-10-19 15:14:50 -0600363 list_for_each_entry(dd, &ds->hotplug_devices, hotplug_list)
Shaohua Li1253f7a2008-08-28 10:06:16 +0800364 if (dd->ops && dd->ops->handler)
365 dd->ops->handler(dd->handle, event, dd->context);
Len Brownc8f7a622006-07-09 17:22:28 -0400366
367 /*
368 * Now make sure that an acpi_device is created for each
369 * dependent device, or removed if this is an eject request.
370 * This will cause acpi_drivers to be stopped/started if they
371 * exist
372 */
373 list_for_each_entry(dd, &ds->dependent_devices, list) {
374 if (event == ACPI_NOTIFY_EJECT_REQUEST)
375 dock_remove_acpi_device(dd->handle);
376 else
377 dock_create_acpi_device(dd->handle);
378 }
Kristen Carlson Accardi8b0dc862006-10-30 11:18:45 -0800379 mutex_unlock(&ds->hp_lock);
Len Brownc8f7a622006-07-09 17:22:28 -0400380}
381
382static void dock_event(struct dock_station *ds, u32 event, int num)
383{
Shaohua Lidb350b02008-08-28 10:03:58 +0800384 struct device *dev = &ds->dock_device->dev;
Holger Macht66b56822007-08-10 13:10:32 -0700385 char event_string[13];
Kristen Carlson Accardi79a8f702007-05-09 15:10:22 -0700386 char *envp[] = { event_string, NULL };
Shaohua Li1253f7a2008-08-28 10:06:16 +0800387 struct dock_dependent_device *dd;
Kristen Carlson Accardi79a8f702007-05-09 15:10:22 -0700388
389 if (num == UNDOCK_EVENT)
Holger Macht66b56822007-08-10 13:10:32 -0700390 sprintf(event_string, "EVENT=undock");
Kristen Carlson Accardi79a8f702007-05-09 15:10:22 -0700391 else
Holger Macht66b56822007-08-10 13:10:32 -0700392 sprintf(event_string, "EVENT=dock");
Kristen Carlson Accardi79a8f702007-05-09 15:10:22 -0700393
Kristen Carlson Accardi56690212006-08-01 14:59:19 -0700394 /*
Kristen Carlson Accardi8ea86e02006-12-11 12:05:08 -0800395 * Indicate that the status of the dock station has
396 * changed.
Kristen Carlson Accardi56690212006-08-01 14:59:19 -0700397 */
Shaohua Li1253f7a2008-08-28 10:06:16 +0800398 if (num == DOCK_EVENT)
399 kobject_uevent_env(&dev->kobj, KOBJ_CHANGE, envp);
400
401 list_for_each_entry(dd, &ds->hotplug_devices, hotplug_list)
402 if (dd->ops && dd->ops->uevent)
403 dd->ops->uevent(dd->handle, event, dd->context);
Alex Chiang747479a2009-10-19 15:14:50 -0600404
Shaohua Li1253f7a2008-08-28 10:06:16 +0800405 if (num != DOCK_EVENT)
406 kobject_uevent_env(&dev->kobj, KOBJ_CHANGE, envp);
Len Brownc8f7a622006-07-09 17:22:28 -0400407}
408
409/**
410 * eject_dock - respond to a dock eject request
411 * @ds: the dock station
412 *
413 * This is called after _DCK is called, to execute the dock station's
414 * _EJ0 method.
415 */
416static void eject_dock(struct dock_station *ds)
417{
418 struct acpi_object_list arg_list;
419 union acpi_object arg;
420 acpi_status status;
421 acpi_handle tmp;
422
423 /* all dock devices should have _EJ0, but check anyway */
424 status = acpi_get_handle(ds->handle, "_EJ0", &tmp);
425 if (ACPI_FAILURE(status)) {
426 pr_debug("No _EJ0 support for dock device\n");
427 return;
428 }
429
430 arg_list.count = 1;
431 arg_list.pointer = &arg;
432 arg.type = ACPI_TYPE_INTEGER;
433 arg.integer.value = 1;
434
Alex Chiang747479a2009-10-19 15:14:50 -0600435 status = acpi_evaluate_object(ds->handle, "_EJ0", &arg_list, NULL);
436 if (ACPI_FAILURE(status))
Len Brownc8f7a622006-07-09 17:22:28 -0400437 pr_debug("Failed to evaluate _EJ0!\n");
438}
439
440/**
441 * handle_dock - handle a dock event
442 * @ds: the dock station
443 * @dock: to dock, or undock - that is the question
444 *
445 * Execute the _DCK method in response to an acpi event
446 */
447static void handle_dock(struct dock_station *ds, int dock)
448{
449 acpi_status status;
450 struct acpi_object_list arg_list;
451 union acpi_object arg;
452 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
Len Brownc8f7a622006-07-09 17:22:28 -0400453
Toshi Kanicd730182012-11-20 23:42:30 +0000454 acpi_handle_info(ds->handle, "%s\n", dock ? "docking" : "undocking");
Len Brownc8f7a622006-07-09 17:22:28 -0400455
456 /* _DCK method has one argument */
457 arg_list.count = 1;
458 arg_list.pointer = &arg;
459 arg.type = ACPI_TYPE_INTEGER;
460 arg.integer.value = dock;
461 status = acpi_evaluate_object(ds->handle, "_DCK", &arg_list, &buffer);
Shaohua Lidb350b02008-08-28 10:03:58 +0800462 if (ACPI_FAILURE(status) && status != AE_NOT_FOUND)
Toshi Kanicd730182012-11-20 23:42:30 +0000463 acpi_handle_err(ds->handle, "Failed to execute _DCK (0x%x)\n",
464 status);
Thomas Renninger0a918a92008-10-11 00:15:04 -0400465
Len Brownc8f7a622006-07-09 17:22:28 -0400466 kfree(buffer.pointer);
Len Brownc8f7a622006-07-09 17:22:28 -0400467}
468
469static inline void dock(struct dock_station *ds)
470{
471 handle_dock(ds, 1);
472}
473
474static inline void undock(struct dock_station *ds)
475{
476 handle_dock(ds, 0);
477}
478
479static inline void begin_dock(struct dock_station *ds)
480{
481 ds->flags |= DOCK_DOCKING;
482}
483
484static inline void complete_dock(struct dock_station *ds)
485{
486 ds->flags &= ~(DOCK_DOCKING);
487 ds->last_dock_time = jiffies;
488}
489
Kristen Carlson Accardia0cd35f2007-05-09 15:08:15 -0700490static inline void begin_undock(struct dock_station *ds)
491{
492 ds->flags |= DOCK_UNDOCKING;
493}
494
495static inline void complete_undock(struct dock_station *ds)
496{
497 ds->flags &= ~(DOCK_UNDOCKING);
498}
499
Shaohua Li406f6922008-08-28 10:03:26 +0800500static void dock_lock(struct dock_station *ds, int lock)
501{
502 struct acpi_object_list arg_list;
503 union acpi_object arg;
504 acpi_status status;
505
506 arg_list.count = 1;
507 arg_list.pointer = &arg;
508 arg.type = ACPI_TYPE_INTEGER;
509 arg.integer.value = !!lock;
510 status = acpi_evaluate_object(ds->handle, "_LCK", &arg_list, NULL);
511 if (ACPI_FAILURE(status) && status != AE_NOT_FOUND) {
512 if (lock)
Toshi Kanicd730182012-11-20 23:42:30 +0000513 acpi_handle_warn(ds->handle,
514 "Locking device failed (0x%x)\n", status);
Shaohua Li406f6922008-08-28 10:03:26 +0800515 else
Toshi Kanicd730182012-11-20 23:42:30 +0000516 acpi_handle_warn(ds->handle,
517 "Unlocking device failed (0x%x)\n", status);
Shaohua Li406f6922008-08-28 10:03:26 +0800518 }
519}
520
Len Brownc8f7a622006-07-09 17:22:28 -0400521/**
522 * dock_in_progress - see if we are in the middle of handling a dock event
523 * @ds: the dock station
524 *
525 * Sometimes while docking, false dock events can be sent to the driver
526 * because good connections aren't made or some other reason. Ignore these
527 * if we are in the middle of doing something.
528 */
529static int dock_in_progress(struct dock_station *ds)
530{
531 if ((ds->flags & DOCK_DOCKING) ||
532 time_before(jiffies, (ds->last_dock_time + HZ)))
533 return 1;
534 return 0;
535}
536
537/**
538 * register_dock_notifier - add yourself to the dock notifier list
539 * @nb: the callers notifier block
540 *
541 * If a driver wishes to be notified about dock events, they can
542 * use this function to put a notifier block on the dock notifier list.
543 * this notifier call chain will be called after a dock event, but
544 * before hotplugging any new devices.
545 */
546int register_dock_notifier(struct notifier_block *nb)
547{
Shaohua Lidb350b02008-08-28 10:03:58 +0800548 if (!dock_station_count)
Prarit Bhargava2548c062006-12-04 14:50:17 -0800549 return -ENODEV;
550
Len Brownc8f7a622006-07-09 17:22:28 -0400551 return atomic_notifier_chain_register(&dock_notifier_list, nb);
552}
Len Brownc8f7a622006-07-09 17:22:28 -0400553EXPORT_SYMBOL_GPL(register_dock_notifier);
554
555/**
556 * unregister_dock_notifier - remove yourself from the dock notifier list
557 * @nb: the callers notifier block
558 */
559void unregister_dock_notifier(struct notifier_block *nb)
560{
Shaohua Lidb350b02008-08-28 10:03:58 +0800561 if (!dock_station_count)
Prarit Bhargava2548c062006-12-04 14:50:17 -0800562 return;
563
Len Brownc8f7a622006-07-09 17:22:28 -0400564 atomic_notifier_chain_unregister(&dock_notifier_list, nb);
565}
Len Brownc8f7a622006-07-09 17:22:28 -0400566EXPORT_SYMBOL_GPL(unregister_dock_notifier);
567
568/**
569 * register_hotplug_dock_device - register a hotplug function
570 * @handle: the handle of the device
Shaohua Li1253f7a2008-08-28 10:06:16 +0800571 * @ops: handlers to call after docking
Len Brownc8f7a622006-07-09 17:22:28 -0400572 * @context: device specific data
573 *
574 * If a driver would like to perform a hotplug operation after a dock
575 * event, they can register an acpi_notifiy_handler to be called by
576 * the dock driver after _DCK is executed.
577 */
578int
Vasiliy Kulikov9c8b04b2011-06-25 21:07:52 +0400579register_hotplug_dock_device(acpi_handle handle, const struct acpi_dock_ops *ops,
Len Brownc8f7a622006-07-09 17:22:28 -0400580 void *context)
581{
582 struct dock_dependent_device *dd;
Shaohua Lidb350b02008-08-28 10:03:58 +0800583 struct dock_station *dock_station;
Shaohua Li61b83692008-08-28 10:07:14 +0800584 int ret = -EINVAL;
Len Brownc8f7a622006-07-09 17:22:28 -0400585
Shaohua Lidb350b02008-08-28 10:03:58 +0800586 if (!dock_station_count)
Len Brownc8f7a622006-07-09 17:22:28 -0400587 return -ENODEV;
588
589 /*
590 * make sure this handle is for a device dependent on the dock,
591 * this would include the dock station itself
592 */
Alex Chiang50d716e2009-10-01 11:59:23 -0600593 list_for_each_entry(dock_station, &dock_stations, sibling) {
Shaohua Li61b83692008-08-28 10:07:14 +0800594 /*
595 * An ATA bay can be in a dock and itself can be ejected
Daniel Mack3ad2f3f2010-02-03 08:01:28 +0800596 * separately, so there are two 'dock stations' which need the
Shaohua Li61b83692008-08-28 10:07:14 +0800597 * ops
598 */
Shaohua Lidb350b02008-08-28 10:03:58 +0800599 dd = find_dock_dependent_device(dock_station, handle);
600 if (dd) {
Shaohua Li1253f7a2008-08-28 10:06:16 +0800601 dd->ops = ops;
Shaohua Lidb350b02008-08-28 10:03:58 +0800602 dd->context = context;
603 dock_add_hotplug_device(dock_station, dd);
Shaohua Li61b83692008-08-28 10:07:14 +0800604 ret = 0;
Shaohua Lidb350b02008-08-28 10:03:58 +0800605 }
Len Brownc8f7a622006-07-09 17:22:28 -0400606 }
607
Shaohua Li61b83692008-08-28 10:07:14 +0800608 return ret;
Len Brownc8f7a622006-07-09 17:22:28 -0400609}
Len Brownc8f7a622006-07-09 17:22:28 -0400610EXPORT_SYMBOL_GPL(register_hotplug_dock_device);
611
612/**
613 * unregister_hotplug_dock_device - remove yourself from the hotplug list
614 * @handle: the acpi handle of the device
615 */
616void unregister_hotplug_dock_device(acpi_handle handle)
617{
618 struct dock_dependent_device *dd;
Shaohua Lidb350b02008-08-28 10:03:58 +0800619 struct dock_station *dock_station;
Len Brownc8f7a622006-07-09 17:22:28 -0400620
Shaohua Lidb350b02008-08-28 10:03:58 +0800621 if (!dock_station_count)
Len Brownc8f7a622006-07-09 17:22:28 -0400622 return;
623
Alex Chiang50d716e2009-10-01 11:59:23 -0600624 list_for_each_entry(dock_station, &dock_stations, sibling) {
Shaohua Lidb350b02008-08-28 10:03:58 +0800625 dd = find_dock_dependent_device(dock_station, handle);
626 if (dd)
627 dock_del_hotplug_device(dock_station, dd);
628 }
Len Brownc8f7a622006-07-09 17:22:28 -0400629}
Len Brownc8f7a622006-07-09 17:22:28 -0400630EXPORT_SYMBOL_GPL(unregister_hotplug_dock_device);
631
632/**
brandon@ifup.orgc80fdbe2006-12-04 14:49:58 -0800633 * handle_eject_request - handle an undock request checking for error conditions
634 *
635 * Check to make sure the dock device is still present, then undock and
636 * hotremove all the devices that may need removing.
637 */
638static int handle_eject_request(struct dock_station *ds, u32 event)
639{
brandon@ifup.orgc80fdbe2006-12-04 14:49:58 -0800640 if (dock_in_progress(ds))
641 return -EBUSY;
642
643 /*
644 * here we need to generate the undock
645 * event prior to actually doing the undock
646 * so that the device struct still exists.
Holger Machtafd73012008-08-06 17:56:01 +0200647 * Also, even send the dock event if the
648 * device is not present anymore
brandon@ifup.orgc80fdbe2006-12-04 14:49:58 -0800649 */
650 dock_event(ds, event, UNDOCK_EVENT);
Holger Machtafd73012008-08-06 17:56:01 +0200651
brandon@ifup.orgc80fdbe2006-12-04 14:49:58 -0800652 hotplug_dock_devices(ds, ACPI_NOTIFY_EJECT_REQUEST);
653 undock(ds);
Shaohua Li406f6922008-08-28 10:03:26 +0800654 dock_lock(ds, 0);
brandon@ifup.orgc80fdbe2006-12-04 14:49:58 -0800655 eject_dock(ds);
656 if (dock_present(ds)) {
Toshi Kanicd730182012-11-20 23:42:30 +0000657 acpi_handle_err(ds->handle, "Unable to undock!\n");
brandon@ifup.orgc80fdbe2006-12-04 14:49:58 -0800658 return -EBUSY;
659 }
Kristen Carlson Accardia0cd35f2007-05-09 15:08:15 -0700660 complete_undock(ds);
brandon@ifup.orgc80fdbe2006-12-04 14:49:58 -0800661 return 0;
662}
663
664/**
Len Brownc8f7a622006-07-09 17:22:28 -0400665 * dock_notify - act upon an acpi dock notification
666 * @handle: the dock station handle
667 * @event: the acpi event
668 * @data: our driver data struct
669 *
670 * If we are notified to dock, then check to see if the dock is
671 * present and then dock. Notify all drivers of the dock event,
brandon@ifup.orgc80fdbe2006-12-04 14:49:58 -0800672 * and then hotplug and devices that may need hotplugging.
Len Brownc8f7a622006-07-09 17:22:28 -0400673 */
674static void dock_notify(acpi_handle handle, u32 event, void *data)
675{
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200676 struct dock_station *ds = data;
Shaohua Li8b595602008-08-28 10:02:03 +0800677 struct acpi_device *tmp;
Shaohua Lidb350b02008-08-28 10:03:58 +0800678 int surprise_removal = 0;
Len Brownc8f7a622006-07-09 17:22:28 -0400679
Shaohua Lidb350b02008-08-28 10:03:58 +0800680 /*
681 * According to acpi spec 3.0a, if a DEVICE_CHECK notification
682 * is sent and _DCK is present, it is assumed to mean an undock
683 * request.
684 */
685 if ((ds->flags & DOCK_IS_DOCK) && event == ACPI_NOTIFY_DEVICE_CHECK)
686 event = ACPI_NOTIFY_EJECT_REQUEST;
687
688 /*
689 * dock station: BUS_CHECK - docked or surprise removal
690 * DEVICE_CHECK - undocked
691 * other device: BUS_CHECK/DEVICE_CHECK - added or surprise removal
692 *
693 * To simplify event handling, dock dependent device handler always
694 * get ACPI_NOTIFY_BUS_CHECK/ACPI_NOTIFY_DEVICE_CHECK for add and
695 * ACPI_NOTIFY_EJECT_REQUEST for removal
696 */
Len Brownc8f7a622006-07-09 17:22:28 -0400697 switch (event) {
698 case ACPI_NOTIFY_BUS_CHECK:
Shaohua Lidb350b02008-08-28 10:03:58 +0800699 case ACPI_NOTIFY_DEVICE_CHECK:
Shaohua Li8b595602008-08-28 10:02:03 +0800700 if (!dock_in_progress(ds) && acpi_bus_get_device(ds->handle,
701 &tmp)) {
Len Brownc8f7a622006-07-09 17:22:28 -0400702 begin_dock(ds);
703 dock(ds);
704 if (!dock_present(ds)) {
Toshi Kanicd730182012-11-20 23:42:30 +0000705 acpi_handle_err(handle, "Unable to dock!\n");
Shaohua Li8b595602008-08-28 10:02:03 +0800706 complete_dock(ds);
Len Brownc8f7a622006-07-09 17:22:28 -0400707 break;
708 }
709 atomic_notifier_call_chain(&dock_notifier_list,
710 event, NULL);
711 hotplug_dock_devices(ds, event);
712 complete_dock(ds);
713 dock_event(ds, event, DOCK_EVENT);
Shaohua Li406f6922008-08-28 10:03:26 +0800714 dock_lock(ds, 1);
Lin Ming3a378982010-12-13 13:36:15 +0800715 acpi_update_all_gpes();
Shaohua Lidb350b02008-08-28 10:03:58 +0800716 break;
Len Brownc8f7a622006-07-09 17:22:28 -0400717 }
Shaohua Lidb350b02008-08-28 10:03:58 +0800718 if (dock_present(ds) || dock_in_progress(ds))
719 break;
720 /* This is a surprise removal */
721 surprise_removal = 1;
722 event = ACPI_NOTIFY_EJECT_REQUEST;
723 /* Fall back */
Len Brownc8f7a622006-07-09 17:22:28 -0400724 case ACPI_NOTIFY_EJECT_REQUEST:
Kristen Carlson Accardia0cd35f2007-05-09 15:08:15 -0700725 begin_undock(ds);
Shaohua Lif730ae12008-08-28 10:05:45 +0800726 if ((immediate_undock && !(ds->flags & DOCK_IS_ATA))
727 || surprise_removal)
Kristen Carlson Accardia0cd35f2007-05-09 15:08:15 -0700728 handle_eject_request(ds, event);
729 else
730 dock_event(ds, event, UNDOCK_EVENT);
Len Brownc8f7a622006-07-09 17:22:28 -0400731 break;
732 default:
Toshi Kanicd730182012-11-20 23:42:30 +0000733 acpi_handle_err(handle, "Unknown dock event %d\n", event);
Len Brownc8f7a622006-07-09 17:22:28 -0400734 }
735}
736
Zhang Rui19cd8472008-08-28 10:05:06 +0800737struct dock_data {
738 acpi_handle handle;
739 unsigned long event;
740 struct dock_station *ds;
741};
742
743static void acpi_dock_deferred_cb(void *context)
744{
Alex Chiang747479a2009-10-19 15:14:50 -0600745 struct dock_data *data = context;
Zhang Rui19cd8472008-08-28 10:05:06 +0800746
Rafael J. Wysocki3757b942013-02-13 14:36:47 +0100747 acpi_scan_lock_acquire();
Zhang Rui19cd8472008-08-28 10:05:06 +0800748 dock_notify(data->handle, data->event, data->ds);
Rafael J. Wysocki3757b942013-02-13 14:36:47 +0100749 acpi_scan_lock_release();
Zhang Rui19cd8472008-08-28 10:05:06 +0800750 kfree(data);
751}
752
Shaohua Li6bd00a62008-08-28 10:04:29 +0800753static int acpi_dock_notifier_call(struct notifier_block *this,
754 unsigned long event, void *data)
755{
756 struct dock_station *dock_station;
Alex Chiang747479a2009-10-19 15:14:50 -0600757 acpi_handle handle = data;
Shaohua Li6bd00a62008-08-28 10:04:29 +0800758
759 if (event != ACPI_NOTIFY_BUS_CHECK && event != ACPI_NOTIFY_DEVICE_CHECK
760 && event != ACPI_NOTIFY_EJECT_REQUEST)
761 return 0;
Rafael J. Wysocki3757b942013-02-13 14:36:47 +0100762
763 acpi_scan_lock_acquire();
764
Alex Chiang50d716e2009-10-01 11:59:23 -0600765 list_for_each_entry(dock_station, &dock_stations, sibling) {
Shaohua Li6bd00a62008-08-28 10:04:29 +0800766 if (dock_station->handle == handle) {
Alex Chiang747479a2009-10-19 15:14:50 -0600767 struct dock_data *dd;
Rafael J. Wysocki3757b942013-02-13 14:36:47 +0100768 acpi_status status;
Zhang Rui19cd8472008-08-28 10:05:06 +0800769
Alex Chiang747479a2009-10-19 15:14:50 -0600770 dd = kmalloc(sizeof(*dd), GFP_KERNEL);
771 if (!dd)
Rafael J. Wysocki3757b942013-02-13 14:36:47 +0100772 break;
773
Alex Chiang747479a2009-10-19 15:14:50 -0600774 dd->handle = handle;
775 dd->event = event;
776 dd->ds = dock_station;
Rafael J. Wysocki3757b942013-02-13 14:36:47 +0100777 status = acpi_os_hotplug_execute(acpi_dock_deferred_cb,
778 dd);
779 if (ACPI_FAILURE(status))
780 kfree(dd);
781
782 break;
Shaohua Li6bd00a62008-08-28 10:04:29 +0800783 }
784 }
Rafael J. Wysocki3757b942013-02-13 14:36:47 +0100785
786 acpi_scan_lock_release();
Shaohua Li6bd00a62008-08-28 10:04:29 +0800787 return 0;
788}
789
790static struct notifier_block dock_acpi_notifier = {
791 .notifier_call = acpi_dock_notifier_call,
792};
793
Len Brownc8f7a622006-07-09 17:22:28 -0400794/**
795 * find_dock_devices - find devices on the dock station
796 * @handle: the handle of the device we are examining
797 * @lvl: unused
798 * @context: the dock station private data
799 * @rv: unused
800 *
801 * This function is called by acpi_walk_namespace. It will
802 * check to see if an object has an _EJD method. If it does, then it
803 * will see if it is dependent on the dock station.
804 */
805static acpi_status
806find_dock_devices(acpi_handle handle, u32 lvl, void *context, void **rv)
807{
808 acpi_status status;
Kristen Carlson Accardife9a2f72007-02-02 22:33:00 -0500809 acpi_handle tmp, parent;
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200810 struct dock_station *ds = context;
Len Brownc8f7a622006-07-09 17:22:28 -0400811
812 status = acpi_bus_get_ejd(handle, &tmp);
Kristen Carlson Accardife9a2f72007-02-02 22:33:00 -0500813 if (ACPI_FAILURE(status)) {
814 /* try the parent device as well */
815 status = acpi_get_parent(handle, &parent);
816 if (ACPI_FAILURE(status))
817 goto fdd_out;
818 /* see if parent is dependent on dock */
819 status = acpi_bus_get_ejd(parent, &tmp);
820 if (ACPI_FAILURE(status))
821 goto fdd_out;
822 }
Len Brownc8f7a622006-07-09 17:22:28 -0400823
Alex Chiangf69cfdd2009-10-19 15:14:29 -0600824 if (tmp == ds->handle)
825 add_dock_dependent_device(ds, handle);
826
Kristen Carlson Accardife9a2f72007-02-02 22:33:00 -0500827fdd_out:
Len Brownc8f7a622006-07-09 17:22:28 -0400828 return AE_OK;
829}
830
brandon@ifup.orgc80fdbe2006-12-04 14:49:58 -0800831/*
832 * show_docked - read method for "docked" file in sysfs
833 */
834static ssize_t show_docked(struct device *dev,
835 struct device_attribute *attr, char *buf)
836{
Holger Machtfc5a9f82009-01-20 12:18:24 +0100837 struct acpi_device *tmp;
838
Alex Chiangfe06fba2009-10-19 15:14:45 -0600839 struct dock_station *dock_station = dev->platform_data;
brandon@ifup.orgc80fdbe2006-12-04 14:49:58 -0800840
Yasuaki Ishimatsu02df7342013-01-31 03:23:53 +0000841 if (!acpi_bus_get_device(dock_station->handle, &tmp))
Holger Machtfc5a9f82009-01-20 12:18:24 +0100842 return snprintf(buf, PAGE_SIZE, "1\n");
843 return snprintf(buf, PAGE_SIZE, "0\n");
brandon@ifup.orgc80fdbe2006-12-04 14:49:58 -0800844}
Adrian Bunke5685b92007-10-24 18:24:42 +0200845static DEVICE_ATTR(docked, S_IRUGO, show_docked, NULL);
brandon@ifup.orgc80fdbe2006-12-04 14:49:58 -0800846
847/*
Kristen Carlson Accardia0cd35f2007-05-09 15:08:15 -0700848 * show_flags - read method for flags file in sysfs
849 */
850static ssize_t show_flags(struct device *dev,
851 struct device_attribute *attr, char *buf)
852{
Alex Chiangfe06fba2009-10-19 15:14:45 -0600853 struct dock_station *dock_station = dev->platform_data;
Kristen Carlson Accardia0cd35f2007-05-09 15:08:15 -0700854 return snprintf(buf, PAGE_SIZE, "%d\n", dock_station->flags);
855
856}
Adrian Bunke5685b92007-10-24 18:24:42 +0200857static DEVICE_ATTR(flags, S_IRUGO, show_flags, NULL);
Kristen Carlson Accardia0cd35f2007-05-09 15:08:15 -0700858
859/*
brandon@ifup.orgc80fdbe2006-12-04 14:49:58 -0800860 * write_undock - write method for "undock" file in sysfs
861 */
862static ssize_t write_undock(struct device *dev, struct device_attribute *attr,
863 const char *buf, size_t count)
864{
865 int ret;
Alex Chiangfe06fba2009-10-19 15:14:45 -0600866 struct dock_station *dock_station = dev->platform_data;
brandon@ifup.orgc80fdbe2006-12-04 14:49:58 -0800867
868 if (!count)
869 return -EINVAL;
870
Rafael J. Wysocki81120062013-06-16 00:38:30 +0200871 acpi_scan_lock_acquire();
Holger Macht9171f832008-03-12 01:07:27 +0100872 begin_undock(dock_station);
brandon@ifup.orgc80fdbe2006-12-04 14:49:58 -0800873 ret = handle_eject_request(dock_station, ACPI_NOTIFY_EJECT_REQUEST);
Rafael J. Wysocki81120062013-06-16 00:38:30 +0200874 acpi_scan_lock_release();
brandon@ifup.orgc80fdbe2006-12-04 14:49:58 -0800875 return ret ? ret: count;
876}
Adrian Bunke5685b92007-10-24 18:24:42 +0200877static DEVICE_ATTR(undock, S_IWUSR, NULL, write_undock);
brandon@ifup.orgc80fdbe2006-12-04 14:49:58 -0800878
Ilya A. Volynets-Evenbakhac122bb2007-02-19 15:19:31 -0800879/*
880 * show_dock_uid - read method for "uid" file in sysfs
881 */
882static ssize_t show_dock_uid(struct device *dev,
883 struct device_attribute *attr, char *buf)
884{
Matthew Wilcox27663c52008-10-10 02:22:59 -0400885 unsigned long long lbuf;
Alex Chiangfe06fba2009-10-19 15:14:45 -0600886 struct dock_station *dock_station = dev->platform_data;
Kristen Carlson Accardi38ff4ff2007-05-09 15:04:24 -0700887 acpi_status status = acpi_evaluate_integer(dock_station->handle,
888 "_UID", NULL, &lbuf);
889 if (ACPI_FAILURE(status))
Ilya A. Volynets-Evenbakhac122bb2007-02-19 15:19:31 -0800890 return 0;
Kristen Carlson Accardi38ff4ff2007-05-09 15:04:24 -0700891
Matthew Wilcox27663c52008-10-10 02:22:59 -0400892 return snprintf(buf, PAGE_SIZE, "%llx\n", lbuf);
Ilya A. Volynets-Evenbakhac122bb2007-02-19 15:19:31 -0800893}
Adrian Bunke5685b92007-10-24 18:24:42 +0200894static DEVICE_ATTR(uid, S_IRUGO, show_dock_uid, NULL);
Ilya A. Volynets-Evenbakhac122bb2007-02-19 15:19:31 -0800895
Shaohua Li8652b002008-08-28 10:07:45 +0800896static ssize_t show_dock_type(struct device *dev,
897 struct device_attribute *attr, char *buf)
898{
Alex Chiangfe06fba2009-10-19 15:14:45 -0600899 struct dock_station *dock_station = dev->platform_data;
Shaohua Li8652b002008-08-28 10:07:45 +0800900 char *type;
901
902 if (dock_station->flags & DOCK_IS_DOCK)
903 type = "dock_station";
904 else if (dock_station->flags & DOCK_IS_ATA)
905 type = "ata_bay";
906 else if (dock_station->flags & DOCK_IS_BAT)
907 type = "battery_bay";
908 else
909 type = "unknown";
910
911 return snprintf(buf, PAGE_SIZE, "%s\n", type);
912}
913static DEVICE_ATTR(type, S_IRUGO, show_dock_type, NULL);
914
Alex Chiang5f46c2f2009-10-19 15:14:24 -0600915static struct attribute *dock_attributes[] = {
916 &dev_attr_docked.attr,
917 &dev_attr_flags.attr,
918 &dev_attr_undock.attr,
919 &dev_attr_uid.attr,
920 &dev_attr_type.attr,
921 NULL
922};
923
924static struct attribute_group dock_attribute_group = {
925 .attrs = dock_attributes
926};
927
Len Brownc8f7a622006-07-09 17:22:28 -0400928/**
929 * dock_add - add a new dock station
930 * @handle: the dock station handle
931 *
932 * allocated and initialize a new dock station device. Find all devices
933 * that are on the dock station, and register for dock event notifications.
934 */
Uwe Kleine-Königd38a5ed2010-10-19 09:13:39 +0200935static int __init dock_add(acpi_handle handle)
Len Brownc8f7a622006-07-09 17:22:28 -0400936{
Alex Chiangfe06fba2009-10-19 15:14:45 -0600937 int ret, id;
938 struct dock_station ds, *dock_station;
Alex Chiang747479a2009-10-19 15:14:50 -0600939 struct platform_device *dd;
Len Brownc8f7a622006-07-09 17:22:28 -0400940
Alex Chiangfe06fba2009-10-19 15:14:45 -0600941 id = dock_station_count;
Alex Chiang49c6fb22010-02-01 10:35:18 -0700942 memset(&ds, 0, sizeof(ds));
Alex Chiang747479a2009-10-19 15:14:50 -0600943 dd = platform_device_register_data(NULL, "dock", id, &ds, sizeof(ds));
944 if (IS_ERR(dd))
945 return PTR_ERR(dd);
Alex Chiang9751cb72009-10-19 15:14:40 -0600946
Alex Chiang747479a2009-10-19 15:14:50 -0600947 dock_station = dd->dev.platform_data;
948
Len Brownc8f7a622006-07-09 17:22:28 -0400949 dock_station->handle = handle;
Alex Chiang747479a2009-10-19 15:14:50 -0600950 dock_station->dock_device = dd;
Len Brownc8f7a622006-07-09 17:22:28 -0400951 dock_station->last_dock_time = jiffies - HZ;
Len Brownc8f7a622006-07-09 17:22:28 -0400952
Len Brownc8f7a622006-07-09 17:22:28 -0400953 mutex_init(&dock_station->hp_lock);
Alex Chiang747479a2009-10-19 15:14:50 -0600954 spin_lock_init(&dock_station->dd_lock);
955 INIT_LIST_HEAD(&dock_station->sibling);
956 INIT_LIST_HEAD(&dock_station->hotplug_devices);
Len Brownc8f7a622006-07-09 17:22:28 -0400957 ATOMIC_INIT_NOTIFIER_HEAD(&dock_notifier_list);
Alex Chiang747479a2009-10-19 15:14:50 -0600958 INIT_LIST_HEAD(&dock_station->dependent_devices);
Kristen Carlson Accardia0cd35f2007-05-09 15:08:15 -0700959
Kristen Carlson Accardi9ef2a9a2007-05-09 15:09:12 -0700960 /* we want the dock device to send uevents */
Alex Chiang747479a2009-10-19 15:14:50 -0600961 dev_set_uevent_suppress(&dd->dev, 0);
Kristen Carlson Accardi9ef2a9a2007-05-09 15:09:12 -0700962
Shaohua Lidb350b02008-08-28 10:03:58 +0800963 if (is_dock(handle))
964 dock_station->flags |= DOCK_IS_DOCK;
965 if (is_ata(handle))
966 dock_station->flags |= DOCK_IS_ATA;
967 if (is_battery(handle))
968 dock_station->flags |= DOCK_IS_BAT;
969
Alex Chiang747479a2009-10-19 15:14:50 -0600970 ret = sysfs_create_group(&dd->dev.kobj, &dock_attribute_group);
Shaohua Li8652b002008-08-28 10:07:45 +0800971 if (ret)
Alex Chiang5f46c2f2009-10-19 15:14:24 -0600972 goto err_unregister;
Kristen Carlson Accardi671adbe2006-12-04 14:49:43 -0800973
Len Brownc8f7a622006-07-09 17:22:28 -0400974 /* Find dependent devices */
975 acpi_walk_namespace(ACPI_TYPE_DEVICE, ACPI_ROOT_OBJECT,
Lin Ming22635762009-11-13 10:06:08 +0800976 ACPI_UINT32_MAX, find_dock_devices, NULL,
977 dock_station, NULL);
Len Brownc8f7a622006-07-09 17:22:28 -0400978
979 /* add the dock station as a device dependent on itself */
Alex Chiangf69cfdd2009-10-19 15:14:29 -0600980 ret = add_dock_dependent_device(dock_station, handle);
981 if (ret)
Alex Chiang5f46c2f2009-10-19 15:14:24 -0600982 goto err_rmgroup;
Len Brownc8f7a622006-07-09 17:22:28 -0400983
Shaohua Lidb350b02008-08-28 10:03:58 +0800984 dock_station_count++;
Alex Chiang50d716e2009-10-01 11:59:23 -0600985 list_add(&dock_station->sibling, &dock_stations);
Len Brownc8f7a622006-07-09 17:22:28 -0400986 return 0;
987
Alex Chiang5f46c2f2009-10-19 15:14:24 -0600988err_rmgroup:
Alex Chiang747479a2009-10-19 15:14:50 -0600989 sysfs_remove_group(&dd->dev.kobj, &dock_attribute_group);
Alex Chiang5f46c2f2009-10-19 15:14:24 -0600990err_unregister:
Alex Chiang747479a2009-10-19 15:14:50 -0600991 platform_device_unregister(dd);
Toshi Kanicd730182012-11-20 23:42:30 +0000992 acpi_handle_err(handle, "%s encountered error %d\n", __func__, ret);
Len Brownc8f7a622006-07-09 17:22:28 -0400993 return ret;
994}
995
996/**
997 * dock_remove - free up resources related to the dock station
998 */
Alex Chiang747479a2009-10-19 15:14:50 -0600999static int dock_remove(struct dock_station *ds)
Len Brownc8f7a622006-07-09 17:22:28 -04001000{
1001 struct dock_dependent_device *dd, *tmp;
Alex Chiang747479a2009-10-19 15:14:50 -06001002 struct platform_device *dock_device = ds->dock_device;
Len Brownc8f7a622006-07-09 17:22:28 -04001003
Shaohua Lidb350b02008-08-28 10:03:58 +08001004 if (!dock_station_count)
Len Brownc8f7a622006-07-09 17:22:28 -04001005 return 0;
1006
1007 /* remove dependent devices */
Alex Chiang747479a2009-10-19 15:14:50 -06001008 list_for_each_entry_safe(dd, tmp, &ds->dependent_devices, list)
1009 kfree(dd);
Len Brownc8f7a622006-07-09 17:22:28 -04001010
Alex Chiang747479a2009-10-19 15:14:50 -06001011 list_del(&ds->sibling);
Len Brownc8f7a622006-07-09 17:22:28 -04001012
Kristen Carlson Accardi671adbe2006-12-04 14:49:43 -08001013 /* cleanup sysfs */
Alex Chiang5f46c2f2009-10-19 15:14:24 -06001014 sysfs_remove_group(&dock_device->dev.kobj, &dock_attribute_group);
Kristen Carlson Accardi0f6f2802007-05-09 15:07:04 -07001015 platform_device_unregister(dock_device);
Kristen Carlson Accardi671adbe2006-12-04 14:49:43 -08001016
Len Brownc8f7a622006-07-09 17:22:28 -04001017 return 0;
1018}
1019
1020/**
Toshi Kani8ab0ab22012-10-23 01:30:26 +02001021 * find_dock_and_bay - look for dock stations and bays
Len Brownc8f7a622006-07-09 17:22:28 -04001022 * @handle: acpi handle of a device
1023 * @lvl: unused
Toshi Kani8ab0ab22012-10-23 01:30:26 +02001024 * @context: unused
Len Brownc8f7a622006-07-09 17:22:28 -04001025 * @rv: unused
1026 *
Toshi Kani8ab0ab22012-10-23 01:30:26 +02001027 * This is called by acpi_walk_namespace to look for dock stations and bays.
Len Brownc8f7a622006-07-09 17:22:28 -04001028 */
Uwe Kleine-Königd38a5ed2010-10-19 09:13:39 +02001029static __init acpi_status
Toshi Kani8ab0ab22012-10-23 01:30:26 +02001030find_dock_and_bay(acpi_handle handle, u32 lvl, void *context, void **rv)
Len Brownc8f7a622006-07-09 17:22:28 -04001031{
Toshi Kani8ab0ab22012-10-23 01:30:26 +02001032 if (is_dock(handle) || is_ejectable_bay(handle))
Zhang Rui1ee4d612010-03-22 15:46:49 +08001033 dock_add(handle);
Alex Chiang747479a2009-10-19 15:14:50 -06001034
Zhang Rui1ee4d612010-03-22 15:46:49 +08001035 return AE_OK;
Len Brownc8f7a622006-07-09 17:22:28 -04001036}
1037
1038static int __init dock_init(void)
1039{
Len Brown816c2ed2008-06-24 22:57:12 -04001040 if (acpi_disabled)
1041 return 0;
1042
Toshi Kani8ab0ab22012-10-23 01:30:26 +02001043 /* look for dock stations and bays */
Len Brownc8f7a622006-07-09 17:22:28 -04001044 acpi_walk_namespace(ACPI_TYPE_DEVICE, ACPI_ROOT_OBJECT,
Toshi Kani8ab0ab22012-10-23 01:30:26 +02001045 ACPI_UINT32_MAX, find_dock_and_bay, NULL, NULL, NULL);
Len Brownc8f7a622006-07-09 17:22:28 -04001046
Shaohua Lidb350b02008-08-28 10:03:58 +08001047 if (!dock_station_count) {
Toshi Kanicd730182012-11-20 23:42:30 +00001048 pr_info(PREFIX "No dock devices found.\n");
Shaohua Lidb350b02008-08-28 10:03:58 +08001049 return 0;
1050 }
Len Brownc8f7a622006-07-09 17:22:28 -04001051
Shaohua Li6bd00a62008-08-28 10:04:29 +08001052 register_acpi_bus_notifier(&dock_acpi_notifier);
Toshi Kanicd730182012-11-20 23:42:30 +00001053 pr_info(PREFIX "%s: %d docks/bays found\n",
Shaohua Lidb350b02008-08-28 10:03:58 +08001054 ACPI_DOCK_DRIVER_DESCRIPTION, dock_station_count);
Len Brownc8f7a622006-07-09 17:22:28 -04001055 return 0;
1056}
1057
1058static void __exit dock_exit(void)
1059{
Alex Chiang747479a2009-10-19 15:14:50 -06001060 struct dock_station *tmp, *dock_station;
Shaohua Lidb350b02008-08-28 10:03:58 +08001061
Shaohua Li6bd00a62008-08-28 10:04:29 +08001062 unregister_acpi_bus_notifier(&dock_acpi_notifier);
Alex Chiang50d716e2009-10-01 11:59:23 -06001063 list_for_each_entry_safe(dock_station, tmp, &dock_stations, sibling)
Shaohua Lidb350b02008-08-28 10:03:58 +08001064 dock_remove(dock_station);
Len Brownc8f7a622006-07-09 17:22:28 -04001065}
1066
Shaohua Lidb350b02008-08-28 10:03:58 +08001067/*
1068 * Must be called before drivers of devices in dock, otherwise we can't know
1069 * which devices are in a dock
1070 */
1071subsys_initcall(dock_init);
Len Brownc8f7a622006-07-09 17:22:28 -04001072module_exit(dock_exit);