Merge branch 'for-linus' of git://git.linaro.org/people/rmk/linux-arm
[linux-2.6.git] / drivers / acpi / dock.c
blob14de9f46972ee798926e9a1805c356fc02bb291e
1 /*
2 * dock.c - ACPI dock station driver
4 * Copyright (C) 2006 Kristen Carlson Accardi <kristen.c.accardi@intel.com>
6 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
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.
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.
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.
22 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
25 #include <linux/kernel.h>
26 #include <linux/module.h>
27 #include <linux/slab.h>
28 #include <linux/init.h>
29 #include <linux/types.h>
30 #include <linux/notifier.h>
31 #include <linux/platform_device.h>
32 #include <linux/jiffies.h>
33 #include <linux/stddef.h>
34 #include <linux/acpi.h>
35 #include <acpi/acpi_bus.h>
36 #include <acpi/acpi_drivers.h>
38 #define PREFIX "ACPI: "
40 #define ACPI_DOCK_DRIVER_DESCRIPTION "ACPI Dock Station Driver"
42 ACPI_MODULE_NAME("dock");
43 MODULE_AUTHOR("Kristen Carlson Accardi");
44 MODULE_DESCRIPTION(ACPI_DOCK_DRIVER_DESCRIPTION);
45 MODULE_LICENSE("GPL");
47 static bool immediate_undock = 1;
48 module_param(immediate_undock, bool, 0644);
49 MODULE_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");
54 static struct atomic_notifier_head dock_notifier_list;
56 static const struct acpi_device_id dock_device_ids[] = {
57 {"LNXDOCK", 0},
58 {"", 0},
60 MODULE_DEVICE_TABLE(acpi, dock_device_ids);
62 struct dock_station {
63 acpi_handle handle;
64 unsigned long last_dock_time;
65 u32 flags;
66 spinlock_t dd_lock;
67 struct mutex hp_lock;
68 struct list_head dependent_devices;
70 struct list_head sibling;
71 struct platform_device *dock_device;
73 static LIST_HEAD(dock_stations);
74 static int dock_station_count;
75 static DEFINE_MUTEX(hotplug_lock);
77 struct dock_dependent_device {
78 struct list_head list;
79 acpi_handle handle;
80 const struct acpi_dock_ops *hp_ops;
81 void *hp_context;
82 unsigned int hp_refcount;
83 void (*hp_release)(void *);
86 #define DOCK_DOCKING 0x00000001
87 #define DOCK_UNDOCKING 0x00000002
88 #define DOCK_IS_DOCK 0x00000010
89 #define DOCK_IS_ATA 0x00000020
90 #define DOCK_IS_BAT 0x00000040
91 #define DOCK_EVENT 3
92 #define UNDOCK_EVENT 2
94 /*****************************************************************************
95 * Dock Dependent device functions *
96 *****************************************************************************/
97 /**
98 * add_dock_dependent_device - associate a device with the dock station
99 * @ds: The dock station
100 * @handle: handle of the dependent device
102 * Add the dependent device to the dock's dependent device list.
104 static int
105 add_dock_dependent_device(struct dock_station *ds, acpi_handle handle)
107 struct dock_dependent_device *dd;
109 dd = kzalloc(sizeof(*dd), GFP_KERNEL);
110 if (!dd)
111 return -ENOMEM;
113 dd->handle = handle;
114 INIT_LIST_HEAD(&dd->list);
116 spin_lock(&ds->dd_lock);
117 list_add_tail(&dd->list, &ds->dependent_devices);
118 spin_unlock(&ds->dd_lock);
120 return 0;
124 * dock_init_hotplug - Initialize a hotplug device on a docking station.
125 * @dd: Dock-dependent device.
126 * @ops: Dock operations to attach to the dependent device.
127 * @context: Data to pass to the @ops callbacks and @release.
128 * @init: Optional initialization routine to run after setting up context.
129 * @release: Optional release routine to run on removal.
131 static int dock_init_hotplug(struct dock_dependent_device *dd,
132 const struct acpi_dock_ops *ops, void *context,
133 void (*init)(void *), void (*release)(void *))
135 int ret = 0;
137 mutex_lock(&hotplug_lock);
139 if (dd->hp_context) {
140 ret = -EEXIST;
141 } else {
142 dd->hp_refcount = 1;
143 dd->hp_ops = ops;
144 dd->hp_context = context;
145 dd->hp_release = release;
148 if (!WARN_ON(ret) && init)
149 init(context);
151 mutex_unlock(&hotplug_lock);
152 return ret;
156 * dock_release_hotplug - Decrement hotplug reference counter of dock device.
157 * @dd: Dock-dependent device.
159 * Decrement the reference counter of @dd and if 0, detach its hotplug
160 * operations from it, reset its context pointer and run the optional release
161 * routine if present.
163 static void dock_release_hotplug(struct dock_dependent_device *dd)
165 void (*release)(void *) = NULL;
166 void *context = NULL;
168 mutex_lock(&hotplug_lock);
170 if (dd->hp_context && !--dd->hp_refcount) {
171 dd->hp_ops = NULL;
172 context = dd->hp_context;
173 dd->hp_context = NULL;
174 release = dd->hp_release;
175 dd->hp_release = NULL;
178 if (release && context)
179 release(context);
181 mutex_unlock(&hotplug_lock);
184 static void dock_hotplug_event(struct dock_dependent_device *dd, u32 event,
185 bool uevent)
187 acpi_notify_handler cb = NULL;
188 bool run = false;
190 mutex_lock(&hotplug_lock);
192 if (dd->hp_context) {
193 run = true;
194 dd->hp_refcount++;
195 if (dd->hp_ops)
196 cb = uevent ? dd->hp_ops->uevent : dd->hp_ops->handler;
199 mutex_unlock(&hotplug_lock);
201 if (!run)
202 return;
204 if (cb)
205 cb(dd->handle, event, dd->hp_context);
207 dock_release_hotplug(dd);
211 * find_dock_dependent_device - get a device dependent on this dock
212 * @ds: the dock station
213 * @handle: the acpi_handle of the device we want
215 * iterate over the dependent device list for this dock. If the
216 * dependent device matches the handle, return.
218 static struct dock_dependent_device *
219 find_dock_dependent_device(struct dock_station *ds, acpi_handle handle)
221 struct dock_dependent_device *dd;
223 spin_lock(&ds->dd_lock);
224 list_for_each_entry(dd, &ds->dependent_devices, list) {
225 if (handle == dd->handle) {
226 spin_unlock(&ds->dd_lock);
227 return dd;
230 spin_unlock(&ds->dd_lock);
231 return NULL;
234 /*****************************************************************************
235 * Dock functions *
236 *****************************************************************************/
238 * is_dock - see if a device is a dock station
239 * @handle: acpi handle of the device
241 * If an acpi object has a _DCK method, then it is by definition a dock
242 * station, so return true.
244 static int is_dock(acpi_handle handle)
246 acpi_status status;
247 acpi_handle tmp;
249 status = acpi_get_handle(handle, "_DCK", &tmp);
250 if (ACPI_FAILURE(status))
251 return 0;
252 return 1;
255 static int is_ejectable(acpi_handle handle)
257 acpi_status status;
258 acpi_handle tmp;
260 status = acpi_get_handle(handle, "_EJ0", &tmp);
261 if (ACPI_FAILURE(status))
262 return 0;
263 return 1;
266 static int is_ata(acpi_handle handle)
268 acpi_handle tmp;
270 if ((ACPI_SUCCESS(acpi_get_handle(handle, "_GTF", &tmp))) ||
271 (ACPI_SUCCESS(acpi_get_handle(handle, "_GTM", &tmp))) ||
272 (ACPI_SUCCESS(acpi_get_handle(handle, "_STM", &tmp))) ||
273 (ACPI_SUCCESS(acpi_get_handle(handle, "_SDD", &tmp))))
274 return 1;
276 return 0;
279 static int is_battery(acpi_handle handle)
281 struct acpi_device_info *info;
282 int ret = 1;
284 if (!ACPI_SUCCESS(acpi_get_object_info(handle, &info)))
285 return 0;
286 if (!(info->valid & ACPI_VALID_HID))
287 ret = 0;
288 else
289 ret = !strcmp("PNP0C0A", info->hardware_id.string);
291 kfree(info);
292 return ret;
295 static int is_ejectable_bay(acpi_handle handle)
297 acpi_handle phandle;
299 if (!is_ejectable(handle))
300 return 0;
301 if (is_battery(handle) || is_ata(handle))
302 return 1;
303 if (!acpi_get_parent(handle, &phandle) && is_ata(phandle))
304 return 1;
305 return 0;
309 * is_dock_device - see if a device is on a dock station
310 * @handle: acpi handle of the device
312 * If this device is either the dock station itself,
313 * or is a device dependent on the dock station, then it
314 * is a dock device
316 int is_dock_device(acpi_handle handle)
318 struct dock_station *dock_station;
320 if (!dock_station_count)
321 return 0;
323 if (is_dock(handle))
324 return 1;
326 list_for_each_entry(dock_station, &dock_stations, sibling)
327 if (find_dock_dependent_device(dock_station, handle))
328 return 1;
330 return 0;
332 EXPORT_SYMBOL_GPL(is_dock_device);
335 * dock_present - see if the dock station is present.
336 * @ds: the dock station
338 * execute the _STA method. note that present does not
339 * imply that we are docked.
341 static int dock_present(struct dock_station *ds)
343 unsigned long long sta;
344 acpi_status status;
346 if (ds) {
347 status = acpi_evaluate_integer(ds->handle, "_STA", NULL, &sta);
348 if (ACPI_SUCCESS(status) && sta)
349 return 1;
351 return 0;
355 * dock_create_acpi_device - add new devices to acpi
356 * @handle - handle of the device to add
358 * This function will create a new acpi_device for the given
359 * handle if one does not exist already. This should cause
360 * acpi to scan for drivers for the given devices, and call
361 * matching driver's add routine.
363 * Returns a pointer to the acpi_device corresponding to the handle.
365 static struct acpi_device * dock_create_acpi_device(acpi_handle handle)
367 struct acpi_device *device;
368 int ret;
370 if (acpi_bus_get_device(handle, &device)) {
372 * no device created for this object,
373 * so we should create one.
375 ret = acpi_bus_scan(handle);
376 if (ret)
377 pr_debug("error adding bus, %x\n", -ret);
379 acpi_bus_get_device(handle, &device);
381 return device;
385 * dock_remove_acpi_device - remove the acpi_device struct from acpi
386 * @handle - the handle of the device to remove
388 * Tell acpi to remove the acpi_device. This should cause any loaded
389 * driver to have it's remove routine called.
391 static void dock_remove_acpi_device(acpi_handle handle)
393 struct acpi_device *device;
395 if (!acpi_bus_get_device(handle, &device))
396 acpi_bus_trim(device);
400 * hotplug_dock_devices - insert or remove devices on the dock station
401 * @ds: the dock station
402 * @event: either bus check or eject request
404 * Some devices on the dock station need to have drivers called
405 * to perform hotplug operations after a dock event has occurred.
406 * Traverse the list of dock devices that have registered a
407 * hotplug handler, and call the handler.
409 static void hotplug_dock_devices(struct dock_station *ds, u32 event)
411 struct dock_dependent_device *dd;
413 mutex_lock(&ds->hp_lock);
416 * First call driver specific hotplug functions
418 list_for_each_entry(dd, &ds->dependent_devices, list)
419 dock_hotplug_event(dd, event, false);
422 * Now make sure that an acpi_device is created for each
423 * dependent device, or removed if this is an eject request.
424 * This will cause acpi_drivers to be stopped/started if they
425 * exist
427 list_for_each_entry(dd, &ds->dependent_devices, list) {
428 if (event == ACPI_NOTIFY_EJECT_REQUEST)
429 dock_remove_acpi_device(dd->handle);
430 else
431 dock_create_acpi_device(dd->handle);
433 mutex_unlock(&ds->hp_lock);
436 static void dock_event(struct dock_station *ds, u32 event, int num)
438 struct device *dev = &ds->dock_device->dev;
439 char event_string[13];
440 char *envp[] = { event_string, NULL };
441 struct dock_dependent_device *dd;
443 if (num == UNDOCK_EVENT)
444 sprintf(event_string, "EVENT=undock");
445 else
446 sprintf(event_string, "EVENT=dock");
449 * Indicate that the status of the dock station has
450 * changed.
452 if (num == DOCK_EVENT)
453 kobject_uevent_env(&dev->kobj, KOBJ_CHANGE, envp);
455 list_for_each_entry(dd, &ds->dependent_devices, list)
456 dock_hotplug_event(dd, event, true);
458 if (num != DOCK_EVENT)
459 kobject_uevent_env(&dev->kobj, KOBJ_CHANGE, envp);
463 * eject_dock - respond to a dock eject request
464 * @ds: the dock station
466 * This is called after _DCK is called, to execute the dock station's
467 * _EJ0 method.
469 static void eject_dock(struct dock_station *ds)
471 struct acpi_object_list arg_list;
472 union acpi_object arg;
473 acpi_status status;
474 acpi_handle tmp;
476 /* all dock devices should have _EJ0, but check anyway */
477 status = acpi_get_handle(ds->handle, "_EJ0", &tmp);
478 if (ACPI_FAILURE(status)) {
479 pr_debug("No _EJ0 support for dock device\n");
480 return;
483 arg_list.count = 1;
484 arg_list.pointer = &arg;
485 arg.type = ACPI_TYPE_INTEGER;
486 arg.integer.value = 1;
488 status = acpi_evaluate_object(ds->handle, "_EJ0", &arg_list, NULL);
489 if (ACPI_FAILURE(status))
490 pr_debug("Failed to evaluate _EJ0!\n");
494 * handle_dock - handle a dock event
495 * @ds: the dock station
496 * @dock: to dock, or undock - that is the question
498 * Execute the _DCK method in response to an acpi event
500 static void handle_dock(struct dock_station *ds, int dock)
502 acpi_status status;
503 struct acpi_object_list arg_list;
504 union acpi_object arg;
505 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
507 acpi_handle_info(ds->handle, "%s\n", dock ? "docking" : "undocking");
509 /* _DCK method has one argument */
510 arg_list.count = 1;
511 arg_list.pointer = &arg;
512 arg.type = ACPI_TYPE_INTEGER;
513 arg.integer.value = dock;
514 status = acpi_evaluate_object(ds->handle, "_DCK", &arg_list, &buffer);
515 if (ACPI_FAILURE(status) && status != AE_NOT_FOUND)
516 acpi_handle_err(ds->handle, "Failed to execute _DCK (0x%x)\n",
517 status);
519 kfree(buffer.pointer);
522 static inline void dock(struct dock_station *ds)
524 handle_dock(ds, 1);
527 static inline void undock(struct dock_station *ds)
529 handle_dock(ds, 0);
532 static inline void begin_dock(struct dock_station *ds)
534 ds->flags |= DOCK_DOCKING;
537 static inline void complete_dock(struct dock_station *ds)
539 ds->flags &= ~(DOCK_DOCKING);
540 ds->last_dock_time = jiffies;
543 static inline void begin_undock(struct dock_station *ds)
545 ds->flags |= DOCK_UNDOCKING;
548 static inline void complete_undock(struct dock_station *ds)
550 ds->flags &= ~(DOCK_UNDOCKING);
553 static void dock_lock(struct dock_station *ds, int lock)
555 struct acpi_object_list arg_list;
556 union acpi_object arg;
557 acpi_status status;
559 arg_list.count = 1;
560 arg_list.pointer = &arg;
561 arg.type = ACPI_TYPE_INTEGER;
562 arg.integer.value = !!lock;
563 status = acpi_evaluate_object(ds->handle, "_LCK", &arg_list, NULL);
564 if (ACPI_FAILURE(status) && status != AE_NOT_FOUND) {
565 if (lock)
566 acpi_handle_warn(ds->handle,
567 "Locking device failed (0x%x)\n", status);
568 else
569 acpi_handle_warn(ds->handle,
570 "Unlocking device failed (0x%x)\n", status);
575 * dock_in_progress - see if we are in the middle of handling a dock event
576 * @ds: the dock station
578 * Sometimes while docking, false dock events can be sent to the driver
579 * because good connections aren't made or some other reason. Ignore these
580 * if we are in the middle of doing something.
582 static int dock_in_progress(struct dock_station *ds)
584 if ((ds->flags & DOCK_DOCKING) ||
585 time_before(jiffies, (ds->last_dock_time + HZ)))
586 return 1;
587 return 0;
591 * register_dock_notifier - add yourself to the dock notifier list
592 * @nb: the callers notifier block
594 * If a driver wishes to be notified about dock events, they can
595 * use this function to put a notifier block on the dock notifier list.
596 * this notifier call chain will be called after a dock event, but
597 * before hotplugging any new devices.
599 int register_dock_notifier(struct notifier_block *nb)
601 if (!dock_station_count)
602 return -ENODEV;
604 return atomic_notifier_chain_register(&dock_notifier_list, nb);
606 EXPORT_SYMBOL_GPL(register_dock_notifier);
609 * unregister_dock_notifier - remove yourself from the dock notifier list
610 * @nb: the callers notifier block
612 void unregister_dock_notifier(struct notifier_block *nb)
614 if (!dock_station_count)
615 return;
617 atomic_notifier_chain_unregister(&dock_notifier_list, nb);
619 EXPORT_SYMBOL_GPL(unregister_dock_notifier);
622 * register_hotplug_dock_device - register a hotplug function
623 * @handle: the handle of the device
624 * @ops: handlers to call after docking
625 * @context: device specific data
626 * @init: Optional initialization routine to run after registration
627 * @release: Optional release routine to run on unregistration
629 * If a driver would like to perform a hotplug operation after a dock
630 * event, they can register an acpi_notifiy_handler to be called by
631 * the dock driver after _DCK is executed.
633 int register_hotplug_dock_device(acpi_handle handle,
634 const struct acpi_dock_ops *ops, void *context,
635 void (*init)(void *), void (*release)(void *))
637 struct dock_dependent_device *dd;
638 struct dock_station *dock_station;
639 int ret = -EINVAL;
641 if (WARN_ON(!context))
642 return -EINVAL;
644 if (!dock_station_count)
645 return -ENODEV;
648 * make sure this handle is for a device dependent on the dock,
649 * this would include the dock station itself
651 list_for_each_entry(dock_station, &dock_stations, sibling) {
653 * An ATA bay can be in a dock and itself can be ejected
654 * separately, so there are two 'dock stations' which need the
655 * ops
657 dd = find_dock_dependent_device(dock_station, handle);
658 if (dd && !dock_init_hotplug(dd, ops, context, init, release))
659 ret = 0;
662 return ret;
664 EXPORT_SYMBOL_GPL(register_hotplug_dock_device);
667 * unregister_hotplug_dock_device - remove yourself from the hotplug list
668 * @handle: the acpi handle of the device
670 void unregister_hotplug_dock_device(acpi_handle handle)
672 struct dock_dependent_device *dd;
673 struct dock_station *dock_station;
675 if (!dock_station_count)
676 return;
678 list_for_each_entry(dock_station, &dock_stations, sibling) {
679 dd = find_dock_dependent_device(dock_station, handle);
680 if (dd)
681 dock_release_hotplug(dd);
684 EXPORT_SYMBOL_GPL(unregister_hotplug_dock_device);
687 * handle_eject_request - handle an undock request checking for error conditions
689 * Check to make sure the dock device is still present, then undock and
690 * hotremove all the devices that may need removing.
692 static int handle_eject_request(struct dock_station *ds, u32 event)
694 if (dock_in_progress(ds))
695 return -EBUSY;
698 * here we need to generate the undock
699 * event prior to actually doing the undock
700 * so that the device struct still exists.
701 * Also, even send the dock event if the
702 * device is not present anymore
704 dock_event(ds, event, UNDOCK_EVENT);
706 hotplug_dock_devices(ds, ACPI_NOTIFY_EJECT_REQUEST);
707 undock(ds);
708 dock_lock(ds, 0);
709 eject_dock(ds);
710 if (dock_present(ds)) {
711 acpi_handle_err(ds->handle, "Unable to undock!\n");
712 return -EBUSY;
714 complete_undock(ds);
715 return 0;
719 * dock_notify - act upon an acpi dock notification
720 * @handle: the dock station handle
721 * @event: the acpi event
722 * @data: our driver data struct
724 * If we are notified to dock, then check to see if the dock is
725 * present and then dock. Notify all drivers of the dock event,
726 * and then hotplug and devices that may need hotplugging.
728 static void dock_notify(acpi_handle handle, u32 event, void *data)
730 struct dock_station *ds = data;
731 struct acpi_device *tmp;
732 int surprise_removal = 0;
735 * According to acpi spec 3.0a, if a DEVICE_CHECK notification
736 * is sent and _DCK is present, it is assumed to mean an undock
737 * request.
739 if ((ds->flags & DOCK_IS_DOCK) && event == ACPI_NOTIFY_DEVICE_CHECK)
740 event = ACPI_NOTIFY_EJECT_REQUEST;
743 * dock station: BUS_CHECK - docked or surprise removal
744 * DEVICE_CHECK - undocked
745 * other device: BUS_CHECK/DEVICE_CHECK - added or surprise removal
747 * To simplify event handling, dock dependent device handler always
748 * get ACPI_NOTIFY_BUS_CHECK/ACPI_NOTIFY_DEVICE_CHECK for add and
749 * ACPI_NOTIFY_EJECT_REQUEST for removal
751 switch (event) {
752 case ACPI_NOTIFY_BUS_CHECK:
753 case ACPI_NOTIFY_DEVICE_CHECK:
754 if (!dock_in_progress(ds) && acpi_bus_get_device(ds->handle,
755 &tmp)) {
756 begin_dock(ds);
757 dock(ds);
758 if (!dock_present(ds)) {
759 acpi_handle_err(handle, "Unable to dock!\n");
760 complete_dock(ds);
761 break;
763 atomic_notifier_call_chain(&dock_notifier_list,
764 event, NULL);
765 hotplug_dock_devices(ds, event);
766 complete_dock(ds);
767 dock_event(ds, event, DOCK_EVENT);
768 dock_lock(ds, 1);
769 acpi_update_all_gpes();
770 break;
772 if (dock_present(ds) || dock_in_progress(ds))
773 break;
774 /* This is a surprise removal */
775 surprise_removal = 1;
776 event = ACPI_NOTIFY_EJECT_REQUEST;
777 /* Fall back */
778 case ACPI_NOTIFY_EJECT_REQUEST:
779 begin_undock(ds);
780 if ((immediate_undock && !(ds->flags & DOCK_IS_ATA))
781 || surprise_removal)
782 handle_eject_request(ds, event);
783 else
784 dock_event(ds, event, UNDOCK_EVENT);
785 break;
786 default:
787 acpi_handle_err(handle, "Unknown dock event %d\n", event);
791 struct dock_data {
792 acpi_handle handle;
793 unsigned long event;
794 struct dock_station *ds;
797 static void acpi_dock_deferred_cb(void *context)
799 struct dock_data *data = context;
801 acpi_scan_lock_acquire();
802 dock_notify(data->handle, data->event, data->ds);
803 acpi_scan_lock_release();
804 kfree(data);
807 static int acpi_dock_notifier_call(struct notifier_block *this,
808 unsigned long event, void *data)
810 struct dock_station *dock_station;
811 acpi_handle handle = data;
813 if (event != ACPI_NOTIFY_BUS_CHECK && event != ACPI_NOTIFY_DEVICE_CHECK
814 && event != ACPI_NOTIFY_EJECT_REQUEST)
815 return 0;
817 acpi_scan_lock_acquire();
819 list_for_each_entry(dock_station, &dock_stations, sibling) {
820 if (dock_station->handle == handle) {
821 struct dock_data *dd;
822 acpi_status status;
824 dd = kmalloc(sizeof(*dd), GFP_KERNEL);
825 if (!dd)
826 break;
828 dd->handle = handle;
829 dd->event = event;
830 dd->ds = dock_station;
831 status = acpi_os_hotplug_execute(acpi_dock_deferred_cb,
832 dd);
833 if (ACPI_FAILURE(status))
834 kfree(dd);
836 break;
840 acpi_scan_lock_release();
841 return 0;
844 static struct notifier_block dock_acpi_notifier = {
845 .notifier_call = acpi_dock_notifier_call,
849 * find_dock_devices - find devices on the dock station
850 * @handle: the handle of the device we are examining
851 * @lvl: unused
852 * @context: the dock station private data
853 * @rv: unused
855 * This function is called by acpi_walk_namespace. It will
856 * check to see if an object has an _EJD method. If it does, then it
857 * will see if it is dependent on the dock station.
859 static acpi_status
860 find_dock_devices(acpi_handle handle, u32 lvl, void *context, void **rv)
862 acpi_status status;
863 acpi_handle tmp, parent;
864 struct dock_station *ds = context;
866 status = acpi_bus_get_ejd(handle, &tmp);
867 if (ACPI_FAILURE(status)) {
868 /* try the parent device as well */
869 status = acpi_get_parent(handle, &parent);
870 if (ACPI_FAILURE(status))
871 goto fdd_out;
872 /* see if parent is dependent on dock */
873 status = acpi_bus_get_ejd(parent, &tmp);
874 if (ACPI_FAILURE(status))
875 goto fdd_out;
878 if (tmp == ds->handle)
879 add_dock_dependent_device(ds, handle);
881 fdd_out:
882 return AE_OK;
886 * show_docked - read method for "docked" file in sysfs
888 static ssize_t show_docked(struct device *dev,
889 struct device_attribute *attr, char *buf)
891 struct acpi_device *tmp;
893 struct dock_station *dock_station = dev->platform_data;
895 if (!acpi_bus_get_device(dock_station->handle, &tmp))
896 return snprintf(buf, PAGE_SIZE, "1\n");
897 return snprintf(buf, PAGE_SIZE, "0\n");
899 static DEVICE_ATTR(docked, S_IRUGO, show_docked, NULL);
902 * show_flags - read method for flags file in sysfs
904 static ssize_t show_flags(struct device *dev,
905 struct device_attribute *attr, char *buf)
907 struct dock_station *dock_station = dev->platform_data;
908 return snprintf(buf, PAGE_SIZE, "%d\n", dock_station->flags);
911 static DEVICE_ATTR(flags, S_IRUGO, show_flags, NULL);
914 * write_undock - write method for "undock" file in sysfs
916 static ssize_t write_undock(struct device *dev, struct device_attribute *attr,
917 const char *buf, size_t count)
919 int ret;
920 struct dock_station *dock_station = dev->platform_data;
922 if (!count)
923 return -EINVAL;
925 acpi_scan_lock_acquire();
926 begin_undock(dock_station);
927 ret = handle_eject_request(dock_station, ACPI_NOTIFY_EJECT_REQUEST);
928 acpi_scan_lock_release();
929 return ret ? ret: count;
931 static DEVICE_ATTR(undock, S_IWUSR, NULL, write_undock);
934 * show_dock_uid - read method for "uid" file in sysfs
936 static ssize_t show_dock_uid(struct device *dev,
937 struct device_attribute *attr, char *buf)
939 unsigned long long lbuf;
940 struct dock_station *dock_station = dev->platform_data;
941 acpi_status status = acpi_evaluate_integer(dock_station->handle,
942 "_UID", NULL, &lbuf);
943 if (ACPI_FAILURE(status))
944 return 0;
946 return snprintf(buf, PAGE_SIZE, "%llx\n", lbuf);
948 static DEVICE_ATTR(uid, S_IRUGO, show_dock_uid, NULL);
950 static ssize_t show_dock_type(struct device *dev,
951 struct device_attribute *attr, char *buf)
953 struct dock_station *dock_station = dev->platform_data;
954 char *type;
956 if (dock_station->flags & DOCK_IS_DOCK)
957 type = "dock_station";
958 else if (dock_station->flags & DOCK_IS_ATA)
959 type = "ata_bay";
960 else if (dock_station->flags & DOCK_IS_BAT)
961 type = "battery_bay";
962 else
963 type = "unknown";
965 return snprintf(buf, PAGE_SIZE, "%s\n", type);
967 static DEVICE_ATTR(type, S_IRUGO, show_dock_type, NULL);
969 static struct attribute *dock_attributes[] = {
970 &dev_attr_docked.attr,
971 &dev_attr_flags.attr,
972 &dev_attr_undock.attr,
973 &dev_attr_uid.attr,
974 &dev_attr_type.attr,
975 NULL
978 static struct attribute_group dock_attribute_group = {
979 .attrs = dock_attributes
983 * dock_add - add a new dock station
984 * @handle: the dock station handle
986 * allocated and initialize a new dock station device. Find all devices
987 * that are on the dock station, and register for dock event notifications.
989 static int __init dock_add(acpi_handle handle)
991 int ret, id;
992 struct dock_station ds, *dock_station;
993 struct platform_device *dd;
995 id = dock_station_count;
996 memset(&ds, 0, sizeof(ds));
997 dd = platform_device_register_data(NULL, "dock", id, &ds, sizeof(ds));
998 if (IS_ERR(dd))
999 return PTR_ERR(dd);
1001 dock_station = dd->dev.platform_data;
1003 dock_station->handle = handle;
1004 dock_station->dock_device = dd;
1005 dock_station->last_dock_time = jiffies - HZ;
1007 mutex_init(&dock_station->hp_lock);
1008 spin_lock_init(&dock_station->dd_lock);
1009 INIT_LIST_HEAD(&dock_station->sibling);
1010 ATOMIC_INIT_NOTIFIER_HEAD(&dock_notifier_list);
1011 INIT_LIST_HEAD(&dock_station->dependent_devices);
1013 /* we want the dock device to send uevents */
1014 dev_set_uevent_suppress(&dd->dev, 0);
1016 if (is_dock(handle))
1017 dock_station->flags |= DOCK_IS_DOCK;
1018 if (is_ata(handle))
1019 dock_station->flags |= DOCK_IS_ATA;
1020 if (is_battery(handle))
1021 dock_station->flags |= DOCK_IS_BAT;
1023 ret = sysfs_create_group(&dd->dev.kobj, &dock_attribute_group);
1024 if (ret)
1025 goto err_unregister;
1027 /* Find dependent devices */
1028 acpi_walk_namespace(ACPI_TYPE_DEVICE, ACPI_ROOT_OBJECT,
1029 ACPI_UINT32_MAX, find_dock_devices, NULL,
1030 dock_station, NULL);
1032 /* add the dock station as a device dependent on itself */
1033 ret = add_dock_dependent_device(dock_station, handle);
1034 if (ret)
1035 goto err_rmgroup;
1037 dock_station_count++;
1038 list_add(&dock_station->sibling, &dock_stations);
1039 return 0;
1041 err_rmgroup:
1042 sysfs_remove_group(&dd->dev.kobj, &dock_attribute_group);
1043 err_unregister:
1044 platform_device_unregister(dd);
1045 acpi_handle_err(handle, "%s encountered error %d\n", __func__, ret);
1046 return ret;
1050 * find_dock_and_bay - look for dock stations and bays
1051 * @handle: acpi handle of a device
1052 * @lvl: unused
1053 * @context: unused
1054 * @rv: unused
1056 * This is called by acpi_walk_namespace to look for dock stations and bays.
1058 static __init acpi_status
1059 find_dock_and_bay(acpi_handle handle, u32 lvl, void *context, void **rv)
1061 if (is_dock(handle) || is_ejectable_bay(handle))
1062 dock_add(handle);
1064 return AE_OK;
1067 int __init acpi_dock_init(void)
1069 if (acpi_disabled)
1070 return 0;
1072 /* look for dock stations and bays */
1073 acpi_walk_namespace(ACPI_TYPE_DEVICE, ACPI_ROOT_OBJECT,
1074 ACPI_UINT32_MAX, find_dock_and_bay, NULL, NULL, NULL);
1076 if (!dock_station_count) {
1077 pr_info(PREFIX "No dock devices found.\n");
1078 return 0;
1081 register_acpi_bus_notifier(&dock_acpi_notifier);
1082 pr_info(PREFIX "%s: %d docks/bays found\n",
1083 ACPI_DOCK_DRIVER_DESCRIPTION, dock_station_count);
1084 return 0;