libata: remove functions now handed by ACPI dock driver
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / drivers / acpi / dock.c
blobf19f643fb362bb9abac235d65ef8b34c97bb1a2b
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/init.h>
28 #include <linux/types.h>
29 #include <linux/notifier.h>
30 #include <linux/platform_device.h>
31 #include <linux/jiffies.h>
32 #include <linux/stddef.h>
33 #include <acpi/acpi_bus.h>
34 #include <acpi/acpi_drivers.h>
36 #define ACPI_DOCK_DRIVER_DESCRIPTION "ACPI Dock Station Driver"
38 ACPI_MODULE_NAME("dock");
39 MODULE_AUTHOR("Kristen Carlson Accardi");
40 MODULE_DESCRIPTION(ACPI_DOCK_DRIVER_DESCRIPTION);
41 MODULE_LICENSE("GPL");
43 static int immediate_undock = 1;
44 module_param(immediate_undock, bool, 0644);
45 MODULE_PARM_DESC(immediate_undock, "1 (default) will cause the driver to "
46 "undock immediately when the undock button is pressed, 0 will cause"
47 " the driver to wait for userspace to write the undock sysfs file "
48 " before undocking");
50 static struct atomic_notifier_head dock_notifier_list;
51 static char dock_device_name[] = "dock";
53 static const struct acpi_device_id dock_device_ids[] = {
54 {"LNXDOCK", 0},
55 {"", 0},
57 MODULE_DEVICE_TABLE(acpi, dock_device_ids);
59 struct dock_station {
60 acpi_handle handle;
61 unsigned long last_dock_time;
62 u32 flags;
63 spinlock_t dd_lock;
64 struct mutex hp_lock;
65 struct list_head dependent_devices;
66 struct list_head hotplug_devices;
68 struct list_head sibiling;
69 struct platform_device *dock_device;
71 static LIST_HEAD(dock_stations);
72 static int dock_station_count;
74 struct dock_dependent_device {
75 struct list_head list;
76 struct list_head hotplug_list;
77 acpi_handle handle;
78 acpi_notify_handler handler;
79 void *context;
82 #define DOCK_DOCKING 0x00000001
83 #define DOCK_UNDOCKING 0x00000002
84 #define DOCK_IS_DOCK 0x00000010
85 #define DOCK_IS_ATA 0x00000020
86 #define DOCK_IS_BAT 0x00000040
87 #define DOCK_EVENT 3
88 #define UNDOCK_EVENT 2
90 /*****************************************************************************
91 * Dock Dependent device functions *
92 *****************************************************************************/
93 /**
94 * alloc_dock_dependent_device - allocate and init a dependent device
95 * @handle: the acpi_handle of the dependent device
97 * Allocate memory for a dependent device structure for a device referenced
98 * by the acpi handle
100 static struct dock_dependent_device *
101 alloc_dock_dependent_device(acpi_handle handle)
103 struct dock_dependent_device *dd;
105 dd = kzalloc(sizeof(*dd), GFP_KERNEL);
106 if (dd) {
107 dd->handle = handle;
108 INIT_LIST_HEAD(&dd->list);
109 INIT_LIST_HEAD(&dd->hotplug_list);
111 return dd;
115 * add_dock_dependent_device - associate a device with the dock station
116 * @ds: The dock station
117 * @dd: The dependent device
119 * Add the dependent device to the dock's dependent device list.
121 static void
122 add_dock_dependent_device(struct dock_station *ds,
123 struct dock_dependent_device *dd)
125 spin_lock(&ds->dd_lock);
126 list_add_tail(&dd->list, &ds->dependent_devices);
127 spin_unlock(&ds->dd_lock);
131 * dock_add_hotplug_device - associate a hotplug handler with the dock station
132 * @ds: The dock station
133 * @dd: The dependent device struct
135 * Add the dependent device to the dock's hotplug device list
137 static void
138 dock_add_hotplug_device(struct dock_station *ds,
139 struct dock_dependent_device *dd)
141 mutex_lock(&ds->hp_lock);
142 list_add_tail(&dd->hotplug_list, &ds->hotplug_devices);
143 mutex_unlock(&ds->hp_lock);
147 * dock_del_hotplug_device - remove a hotplug handler from the dock station
148 * @ds: The dock station
149 * @dd: the dependent device struct
151 * Delete the dependent device from the dock's hotplug device list
153 static void
154 dock_del_hotplug_device(struct dock_station *ds,
155 struct dock_dependent_device *dd)
157 mutex_lock(&ds->hp_lock);
158 list_del(&dd->hotplug_list);
159 mutex_unlock(&ds->hp_lock);
163 * find_dock_dependent_device - get a device dependent on this dock
164 * @ds: the dock station
165 * @handle: the acpi_handle of the device we want
167 * iterate over the dependent device list for this dock. If the
168 * dependent device matches the handle, return.
170 static struct dock_dependent_device *
171 find_dock_dependent_device(struct dock_station *ds, acpi_handle handle)
173 struct dock_dependent_device *dd;
175 spin_lock(&ds->dd_lock);
176 list_for_each_entry(dd, &ds->dependent_devices, list) {
177 if (handle == dd->handle) {
178 spin_unlock(&ds->dd_lock);
179 return dd;
182 spin_unlock(&ds->dd_lock);
183 return NULL;
186 /*****************************************************************************
187 * Dock functions *
188 *****************************************************************************/
190 * is_dock - see if a device is a dock station
191 * @handle: acpi handle of the device
193 * If an acpi object has a _DCK method, then it is by definition a dock
194 * station, so return true.
196 static int is_dock(acpi_handle handle)
198 acpi_status status;
199 acpi_handle tmp;
201 status = acpi_get_handle(handle, "_DCK", &tmp);
202 if (ACPI_FAILURE(status))
203 return 0;
204 return 1;
207 static int is_ejectable(acpi_handle handle)
209 acpi_status status;
210 acpi_handle tmp;
212 status = acpi_get_handle(handle, "_EJ0", &tmp);
213 if (ACPI_FAILURE(status))
214 return 0;
215 return 1;
218 static int is_ata(acpi_handle handle)
220 acpi_handle tmp;
222 if ((ACPI_SUCCESS(acpi_get_handle(handle, "_GTF", &tmp))) ||
223 (ACPI_SUCCESS(acpi_get_handle(handle, "_GTM", &tmp))) ||
224 (ACPI_SUCCESS(acpi_get_handle(handle, "_STM", &tmp))) ||
225 (ACPI_SUCCESS(acpi_get_handle(handle, "_SDD", &tmp))))
226 return 1;
228 return 0;
231 static int is_battery(acpi_handle handle)
233 struct acpi_device_info *info;
234 struct acpi_buffer buffer = {ACPI_ALLOCATE_BUFFER, NULL};
235 int ret = 1;
237 if (!ACPI_SUCCESS(acpi_get_object_info(handle, &buffer)))
238 return 0;
239 info = buffer.pointer;
240 if (!(info->valid & ACPI_VALID_HID))
241 ret = 0;
242 else
243 ret = !strcmp("PNP0C0A", info->hardware_id.value);
245 kfree(buffer.pointer);
246 return ret;
249 static int is_ejectable_bay(acpi_handle handle)
251 acpi_handle phandle;
252 if (!is_ejectable(handle))
253 return 0;
254 if (is_battery(handle) || is_ata(handle))
255 return 1;
256 if (!acpi_get_parent(handle, &phandle) && is_ata(phandle))
257 return 1;
258 return 0;
262 * is_dock_device - see if a device is on a dock station
263 * @handle: acpi handle of the device
265 * If this device is either the dock station itself,
266 * or is a device dependent on the dock station, then it
267 * is a dock device
269 int is_dock_device(acpi_handle handle)
271 struct dock_station *dock_station;
273 if (!dock_station_count)
274 return 0;
276 if (is_dock(handle))
277 return 1;
278 list_for_each_entry(dock_station, &dock_stations, sibiling) {
279 if (find_dock_dependent_device(dock_station, handle))
280 return 1;
283 return 0;
286 EXPORT_SYMBOL_GPL(is_dock_device);
289 * dock_present - see if the dock station is present.
290 * @ds: the dock station
292 * execute the _STA method. note that present does not
293 * imply that we are docked.
295 static int dock_present(struct dock_station *ds)
297 unsigned long sta;
298 acpi_status status;
300 if (ds) {
301 status = acpi_evaluate_integer(ds->handle, "_STA", NULL, &sta);
302 if (ACPI_SUCCESS(status) && sta)
303 return 1;
305 return 0;
311 * dock_create_acpi_device - add new devices to acpi
312 * @handle - handle of the device to add
314 * This function will create a new acpi_device for the given
315 * handle if one does not exist already. This should cause
316 * acpi to scan for drivers for the given devices, and call
317 * matching driver's add routine.
319 * Returns a pointer to the acpi_device corresponding to the handle.
321 static struct acpi_device * dock_create_acpi_device(acpi_handle handle)
323 struct acpi_device *device = NULL;
324 struct acpi_device *parent_device;
325 acpi_handle parent;
326 int ret;
328 if (acpi_bus_get_device(handle, &device)) {
330 * no device created for this object,
331 * so we should create one.
333 acpi_get_parent(handle, &parent);
334 if (acpi_bus_get_device(parent, &parent_device))
335 parent_device = NULL;
337 ret = acpi_bus_add(&device, parent_device, handle,
338 ACPI_BUS_TYPE_DEVICE);
339 if (ret) {
340 pr_debug("error adding bus, %x\n",
341 -ret);
342 return NULL;
345 return device;
349 * dock_remove_acpi_device - remove the acpi_device struct from acpi
350 * @handle - the handle of the device to remove
352 * Tell acpi to remove the acpi_device. This should cause any loaded
353 * driver to have it's remove routine called.
355 static void dock_remove_acpi_device(acpi_handle handle)
357 struct acpi_device *device;
358 int ret;
360 if (!acpi_bus_get_device(handle, &device)) {
361 ret = acpi_bus_trim(device, 1);
362 if (ret)
363 pr_debug("error removing bus, %x\n", -ret);
369 * hotplug_dock_devices - insert or remove devices on the dock station
370 * @ds: the dock station
371 * @event: either bus check or eject request
373 * Some devices on the dock station need to have drivers called
374 * to perform hotplug operations after a dock event has occurred.
375 * Traverse the list of dock devices that have registered a
376 * hotplug handler, and call the handler.
378 static void hotplug_dock_devices(struct dock_station *ds, u32 event)
380 struct dock_dependent_device *dd;
382 mutex_lock(&ds->hp_lock);
385 * First call driver specific hotplug functions
387 list_for_each_entry(dd, &ds->hotplug_devices, hotplug_list) {
388 if (dd->handler)
389 dd->handler(dd->handle, event, dd->context);
393 * Now make sure that an acpi_device is created for each
394 * dependent device, or removed if this is an eject request.
395 * This will cause acpi_drivers to be stopped/started if they
396 * exist
398 list_for_each_entry(dd, &ds->dependent_devices, list) {
399 if (event == ACPI_NOTIFY_EJECT_REQUEST)
400 dock_remove_acpi_device(dd->handle);
401 else
402 dock_create_acpi_device(dd->handle);
404 mutex_unlock(&ds->hp_lock);
407 static void dock_event(struct dock_station *ds, u32 event, int num)
409 struct device *dev = &ds->dock_device->dev;
410 char event_string[13];
411 char *envp[] = { event_string, NULL };
413 if (num == UNDOCK_EVENT)
414 sprintf(event_string, "EVENT=undock");
415 else
416 sprintf(event_string, "EVENT=dock");
419 * Indicate that the status of the dock station has
420 * changed.
422 kobject_uevent_env(&dev->kobj, KOBJ_CHANGE, envp);
426 * eject_dock - respond to a dock eject request
427 * @ds: the dock station
429 * This is called after _DCK is called, to execute the dock station's
430 * _EJ0 method.
432 static void eject_dock(struct dock_station *ds)
434 struct acpi_object_list arg_list;
435 union acpi_object arg;
436 acpi_status status;
437 acpi_handle tmp;
439 /* all dock devices should have _EJ0, but check anyway */
440 status = acpi_get_handle(ds->handle, "_EJ0", &tmp);
441 if (ACPI_FAILURE(status)) {
442 pr_debug("No _EJ0 support for dock device\n");
443 return;
446 arg_list.count = 1;
447 arg_list.pointer = &arg;
448 arg.type = ACPI_TYPE_INTEGER;
449 arg.integer.value = 1;
451 if (ACPI_FAILURE(acpi_evaluate_object(ds->handle, "_EJ0",
452 &arg_list, NULL)))
453 pr_debug("Failed to evaluate _EJ0!\n");
457 * handle_dock - handle a dock event
458 * @ds: the dock station
459 * @dock: to dock, or undock - that is the question
461 * Execute the _DCK method in response to an acpi event
463 static void handle_dock(struct dock_station *ds, int dock)
465 acpi_status status;
466 struct acpi_object_list arg_list;
467 union acpi_object arg;
468 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
469 struct acpi_buffer name_buffer = { ACPI_ALLOCATE_BUFFER, NULL };
471 acpi_get_name(ds->handle, ACPI_FULL_PATHNAME, &name_buffer);
473 printk(KERN_INFO PREFIX "%s - %s\n",
474 (char *)name_buffer.pointer, dock ? "docking" : "undocking");
476 /* _DCK method has one argument */
477 arg_list.count = 1;
478 arg_list.pointer = &arg;
479 arg.type = ACPI_TYPE_INTEGER;
480 arg.integer.value = dock;
481 status = acpi_evaluate_object(ds->handle, "_DCK", &arg_list, &buffer);
482 if (ACPI_FAILURE(status) && status != AE_NOT_FOUND)
483 printk(KERN_ERR PREFIX "%s - failed to execute _DCK\n",
484 (char *)name_buffer.pointer);
485 kfree(buffer.pointer);
486 kfree(name_buffer.pointer);
489 static inline void dock(struct dock_station *ds)
491 handle_dock(ds, 1);
494 static inline void undock(struct dock_station *ds)
496 handle_dock(ds, 0);
499 static inline void begin_dock(struct dock_station *ds)
501 ds->flags |= DOCK_DOCKING;
504 static inline void complete_dock(struct dock_station *ds)
506 ds->flags &= ~(DOCK_DOCKING);
507 ds->last_dock_time = jiffies;
510 static inline void begin_undock(struct dock_station *ds)
512 ds->flags |= DOCK_UNDOCKING;
515 static inline void complete_undock(struct dock_station *ds)
517 ds->flags &= ~(DOCK_UNDOCKING);
520 static void dock_lock(struct dock_station *ds, int lock)
522 struct acpi_object_list arg_list;
523 union acpi_object arg;
524 acpi_status status;
526 arg_list.count = 1;
527 arg_list.pointer = &arg;
528 arg.type = ACPI_TYPE_INTEGER;
529 arg.integer.value = !!lock;
530 status = acpi_evaluate_object(ds->handle, "_LCK", &arg_list, NULL);
531 if (ACPI_FAILURE(status) && status != AE_NOT_FOUND) {
532 if (lock)
533 printk(KERN_WARNING PREFIX "Locking device failed\n");
534 else
535 printk(KERN_WARNING PREFIX "Unlocking device failed\n");
540 * dock_in_progress - see if we are in the middle of handling a dock event
541 * @ds: the dock station
543 * Sometimes while docking, false dock events can be sent to the driver
544 * because good connections aren't made or some other reason. Ignore these
545 * if we are in the middle of doing something.
547 static int dock_in_progress(struct dock_station *ds)
549 if ((ds->flags & DOCK_DOCKING) ||
550 time_before(jiffies, (ds->last_dock_time + HZ)))
551 return 1;
552 return 0;
556 * register_dock_notifier - add yourself to the dock notifier list
557 * @nb: the callers notifier block
559 * If a driver wishes to be notified about dock events, they can
560 * use this function to put a notifier block on the dock notifier list.
561 * this notifier call chain will be called after a dock event, but
562 * before hotplugging any new devices.
564 int register_dock_notifier(struct notifier_block *nb)
566 if (!dock_station_count)
567 return -ENODEV;
569 return atomic_notifier_chain_register(&dock_notifier_list, nb);
572 EXPORT_SYMBOL_GPL(register_dock_notifier);
575 * unregister_dock_notifier - remove yourself from the dock notifier list
576 * @nb: the callers notifier block
578 void unregister_dock_notifier(struct notifier_block *nb)
580 if (!dock_station_count)
581 return;
583 atomic_notifier_chain_unregister(&dock_notifier_list, nb);
586 EXPORT_SYMBOL_GPL(unregister_dock_notifier);
589 * register_hotplug_dock_device - register a hotplug function
590 * @handle: the handle of the device
591 * @handler: the acpi_notifier_handler to call after docking
592 * @context: device specific data
594 * If a driver would like to perform a hotplug operation after a dock
595 * event, they can register an acpi_notifiy_handler to be called by
596 * the dock driver after _DCK is executed.
599 register_hotplug_dock_device(acpi_handle handle, acpi_notify_handler handler,
600 void *context)
602 struct dock_dependent_device *dd;
603 struct dock_station *dock_station;
605 if (!dock_station_count)
606 return -ENODEV;
609 * make sure this handle is for a device dependent on the dock,
610 * this would include the dock station itself
612 list_for_each_entry(dock_station, &dock_stations, sibiling) {
613 dd = find_dock_dependent_device(dock_station, handle);
614 if (dd) {
615 dd->handler = handler;
616 dd->context = context;
617 dock_add_hotplug_device(dock_station, dd);
618 return 0;
622 return -EINVAL;
625 EXPORT_SYMBOL_GPL(register_hotplug_dock_device);
628 * unregister_hotplug_dock_device - remove yourself from the hotplug list
629 * @handle: the acpi handle of the device
631 void unregister_hotplug_dock_device(acpi_handle handle)
633 struct dock_dependent_device *dd;
634 struct dock_station *dock_station;
636 if (!dock_station_count)
637 return;
639 list_for_each_entry(dock_station, &dock_stations, sibiling) {
640 dd = find_dock_dependent_device(dock_station, handle);
641 if (dd)
642 dock_del_hotplug_device(dock_station, dd);
646 EXPORT_SYMBOL_GPL(unregister_hotplug_dock_device);
649 * handle_eject_request - handle an undock request checking for error conditions
651 * Check to make sure the dock device is still present, then undock and
652 * hotremove all the devices that may need removing.
654 static int handle_eject_request(struct dock_station *ds, u32 event)
656 if (dock_in_progress(ds))
657 return -EBUSY;
660 * here we need to generate the undock
661 * event prior to actually doing the undock
662 * so that the device struct still exists.
663 * Also, even send the dock event if the
664 * device is not present anymore
666 dock_event(ds, event, UNDOCK_EVENT);
668 hotplug_dock_devices(ds, ACPI_NOTIFY_EJECT_REQUEST);
669 undock(ds);
670 dock_lock(ds, 0);
671 eject_dock(ds);
672 if (dock_present(ds)) {
673 printk(KERN_ERR PREFIX "Unable to undock!\n");
674 return -EBUSY;
676 complete_undock(ds);
677 return 0;
681 * dock_notify - act upon an acpi dock notification
682 * @handle: the dock station handle
683 * @event: the acpi event
684 * @data: our driver data struct
686 * If we are notified to dock, then check to see if the dock is
687 * present and then dock. Notify all drivers of the dock event,
688 * and then hotplug and devices that may need hotplugging.
690 static void dock_notify(acpi_handle handle, u32 event, void *data)
692 struct dock_station *ds = data;
693 struct acpi_device *tmp;
694 int surprise_removal = 0;
697 * According to acpi spec 3.0a, if a DEVICE_CHECK notification
698 * is sent and _DCK is present, it is assumed to mean an undock
699 * request.
701 if ((ds->flags & DOCK_IS_DOCK) && event == ACPI_NOTIFY_DEVICE_CHECK)
702 event = ACPI_NOTIFY_EJECT_REQUEST;
705 * dock station: BUS_CHECK - docked or surprise removal
706 * DEVICE_CHECK - undocked
707 * other device: BUS_CHECK/DEVICE_CHECK - added or surprise removal
709 * To simplify event handling, dock dependent device handler always
710 * get ACPI_NOTIFY_BUS_CHECK/ACPI_NOTIFY_DEVICE_CHECK for add and
711 * ACPI_NOTIFY_EJECT_REQUEST for removal
713 switch (event) {
714 case ACPI_NOTIFY_BUS_CHECK:
715 case ACPI_NOTIFY_DEVICE_CHECK:
716 if (!dock_in_progress(ds) && acpi_bus_get_device(ds->handle,
717 &tmp)) {
718 begin_dock(ds);
719 dock(ds);
720 if (!dock_present(ds)) {
721 printk(KERN_ERR PREFIX "Unable to dock!\n");
722 complete_dock(ds);
723 break;
725 atomic_notifier_call_chain(&dock_notifier_list,
726 event, NULL);
727 hotplug_dock_devices(ds, event);
728 complete_dock(ds);
729 dock_event(ds, event, DOCK_EVENT);
730 dock_lock(ds, 1);
731 break;
733 if (dock_present(ds) || dock_in_progress(ds))
734 break;
735 /* This is a surprise removal */
736 surprise_removal = 1;
737 event = ACPI_NOTIFY_EJECT_REQUEST;
738 /* Fall back */
739 case ACPI_NOTIFY_EJECT_REQUEST:
740 begin_undock(ds);
741 if ((immediate_undock && !(ds->flags & DOCK_IS_ATA))
742 || surprise_removal)
743 handle_eject_request(ds, event);
744 else
745 dock_event(ds, event, UNDOCK_EVENT);
746 break;
747 default:
748 printk(KERN_ERR PREFIX "Unknown dock event %d\n", event);
752 struct dock_data {
753 acpi_handle handle;
754 unsigned long event;
755 struct dock_station *ds;
758 static void acpi_dock_deferred_cb(void *context)
760 struct dock_data *data = (struct dock_data *)context;
762 dock_notify(data->handle, data->event, data->ds);
763 kfree(data);
766 static int acpi_dock_notifier_call(struct notifier_block *this,
767 unsigned long event, void *data)
769 struct dock_station *dock_station;
770 acpi_handle handle = (acpi_handle)data;
772 if (event != ACPI_NOTIFY_BUS_CHECK && event != ACPI_NOTIFY_DEVICE_CHECK
773 && event != ACPI_NOTIFY_EJECT_REQUEST)
774 return 0;
775 list_for_each_entry(dock_station, &dock_stations, sibiling) {
776 if (dock_station->handle == handle) {
777 struct dock_data *dock_data;
779 dock_data = kmalloc(sizeof(*dock_data), GFP_KERNEL);
780 if (!dock_data)
781 return 0;
782 dock_data->handle = handle;
783 dock_data->event = event;
784 dock_data->ds = dock_station;
785 acpi_os_hotplug_execute(acpi_dock_deferred_cb,
786 dock_data);
787 return 0 ;
790 return 0;
793 static struct notifier_block dock_acpi_notifier = {
794 .notifier_call = acpi_dock_notifier_call,
798 * find_dock_devices - find devices on the dock station
799 * @handle: the handle of the device we are examining
800 * @lvl: unused
801 * @context: the dock station private data
802 * @rv: unused
804 * This function is called by acpi_walk_namespace. It will
805 * check to see if an object has an _EJD method. If it does, then it
806 * will see if it is dependent on the dock station.
808 static acpi_status
809 find_dock_devices(acpi_handle handle, u32 lvl, void *context, void **rv)
811 acpi_status status;
812 acpi_handle tmp, parent;
813 struct dock_station *ds = context;
814 struct dock_dependent_device *dd;
816 status = acpi_bus_get_ejd(handle, &tmp);
817 if (ACPI_FAILURE(status)) {
818 /* try the parent device as well */
819 status = acpi_get_parent(handle, &parent);
820 if (ACPI_FAILURE(status))
821 goto fdd_out;
822 /* see if parent is dependent on dock */
823 status = acpi_bus_get_ejd(parent, &tmp);
824 if (ACPI_FAILURE(status))
825 goto fdd_out;
828 if (tmp == ds->handle) {
829 dd = alloc_dock_dependent_device(handle);
830 if (dd)
831 add_dock_dependent_device(ds, dd);
833 fdd_out:
834 return AE_OK;
838 * show_docked - read method for "docked" file in sysfs
840 static ssize_t show_docked(struct device *dev,
841 struct device_attribute *attr, char *buf)
843 struct dock_station *dock_station = *((struct dock_station **)
844 dev->platform_data);
845 return snprintf(buf, PAGE_SIZE, "%d\n", dock_present(dock_station));
848 static DEVICE_ATTR(docked, S_IRUGO, show_docked, NULL);
851 * show_flags - read method for flags file in sysfs
853 static ssize_t show_flags(struct device *dev,
854 struct device_attribute *attr, char *buf)
856 struct dock_station *dock_station = *((struct dock_station **)
857 dev->platform_data);
858 return snprintf(buf, PAGE_SIZE, "%d\n", dock_station->flags);
861 static DEVICE_ATTR(flags, S_IRUGO, show_flags, NULL);
864 * write_undock - write method for "undock" file in sysfs
866 static ssize_t write_undock(struct device *dev, struct device_attribute *attr,
867 const char *buf, size_t count)
869 int ret;
870 struct dock_station *dock_station = *((struct dock_station **)
871 dev->platform_data);
873 if (!count)
874 return -EINVAL;
876 begin_undock(dock_station);
877 ret = handle_eject_request(dock_station, ACPI_NOTIFY_EJECT_REQUEST);
878 return ret ? ret: count;
880 static DEVICE_ATTR(undock, S_IWUSR, NULL, write_undock);
883 * show_dock_uid - read method for "uid" file in sysfs
885 static ssize_t show_dock_uid(struct device *dev,
886 struct device_attribute *attr, char *buf)
888 unsigned long lbuf;
889 struct dock_station *dock_station = *((struct dock_station **)
890 dev->platform_data);
891 acpi_status status = acpi_evaluate_integer(dock_station->handle,
892 "_UID", NULL, &lbuf);
893 if (ACPI_FAILURE(status))
894 return 0;
896 return snprintf(buf, PAGE_SIZE, "%lx\n", lbuf);
898 static DEVICE_ATTR(uid, S_IRUGO, show_dock_uid, NULL);
901 * dock_add - add a new dock station
902 * @handle: the dock station handle
904 * allocated and initialize a new dock station device. Find all devices
905 * that are on the dock station, and register for dock event notifications.
907 static int dock_add(acpi_handle handle)
909 int ret;
910 struct dock_dependent_device *dd;
911 struct dock_station *dock_station;
912 struct platform_device *dock_device;
914 /* allocate & initialize the dock_station private data */
915 dock_station = kzalloc(sizeof(*dock_station), GFP_KERNEL);
916 if (!dock_station)
917 return -ENOMEM;
918 dock_station->handle = handle;
919 dock_station->last_dock_time = jiffies - HZ;
920 INIT_LIST_HEAD(&dock_station->dependent_devices);
921 INIT_LIST_HEAD(&dock_station->hotplug_devices);
922 INIT_LIST_HEAD(&dock_station->sibiling);
923 spin_lock_init(&dock_station->dd_lock);
924 mutex_init(&dock_station->hp_lock);
925 ATOMIC_INIT_NOTIFIER_HEAD(&dock_notifier_list);
927 /* initialize platform device stuff */
928 dock_station->dock_device =
929 platform_device_register_simple(dock_device_name,
930 dock_station_count, NULL, 0);
931 dock_device = dock_station->dock_device;
932 if (IS_ERR(dock_device)) {
933 kfree(dock_station);
934 dock_station = NULL;
935 return PTR_ERR(dock_device);
937 platform_device_add_data(dock_device, &dock_station,
938 sizeof(struct dock_station *));
940 /* we want the dock device to send uevents */
941 dock_device->dev.uevent_suppress = 0;
943 if (is_dock(handle))
944 dock_station->flags |= DOCK_IS_DOCK;
945 if (is_ata(handle))
946 dock_station->flags |= DOCK_IS_ATA;
947 if (is_battery(handle))
948 dock_station->flags |= DOCK_IS_BAT;
950 ret = device_create_file(&dock_device->dev, &dev_attr_docked);
951 if (ret) {
952 printk("Error %d adding sysfs file\n", ret);
953 platform_device_unregister(dock_device);
954 kfree(dock_station);
955 dock_station = NULL;
956 return ret;
958 ret = device_create_file(&dock_device->dev, &dev_attr_undock);
959 if (ret) {
960 printk("Error %d adding sysfs file\n", ret);
961 device_remove_file(&dock_device->dev, &dev_attr_docked);
962 platform_device_unregister(dock_device);
963 kfree(dock_station);
964 dock_station = NULL;
965 return ret;
967 ret = device_create_file(&dock_device->dev, &dev_attr_uid);
968 if (ret) {
969 printk("Error %d adding sysfs file\n", ret);
970 device_remove_file(&dock_device->dev, &dev_attr_docked);
971 device_remove_file(&dock_device->dev, &dev_attr_undock);
972 platform_device_unregister(dock_device);
973 kfree(dock_station);
974 dock_station = NULL;
975 return ret;
977 ret = device_create_file(&dock_device->dev, &dev_attr_flags);
978 if (ret) {
979 printk("Error %d adding sysfs file\n", ret);
980 device_remove_file(&dock_device->dev, &dev_attr_docked);
981 device_remove_file(&dock_device->dev, &dev_attr_undock);
982 device_remove_file(&dock_device->dev, &dev_attr_uid);
983 platform_device_unregister(dock_device);
984 kfree(dock_station);
985 dock_station = NULL;
986 return ret;
989 /* Find dependent devices */
990 acpi_walk_namespace(ACPI_TYPE_DEVICE, ACPI_ROOT_OBJECT,
991 ACPI_UINT32_MAX, find_dock_devices, dock_station,
992 NULL);
994 /* add the dock station as a device dependent on itself */
995 dd = alloc_dock_dependent_device(handle);
996 if (!dd) {
997 kfree(dock_station);
998 dock_station = NULL;
999 ret = -ENOMEM;
1000 goto dock_add_err_unregister;
1002 add_dock_dependent_device(dock_station, dd);
1004 dock_station_count++;
1005 list_add(&dock_station->sibiling, &dock_stations);
1006 return 0;
1008 dock_add_err_unregister:
1009 device_remove_file(&dock_device->dev, &dev_attr_docked);
1010 device_remove_file(&dock_device->dev, &dev_attr_undock);
1011 device_remove_file(&dock_device->dev, &dev_attr_uid);
1012 device_remove_file(&dock_device->dev, &dev_attr_flags);
1013 platform_device_unregister(dock_device);
1014 kfree(dock_station);
1015 dock_station = NULL;
1016 return ret;
1020 * dock_remove - free up resources related to the dock station
1022 static int dock_remove(struct dock_station *dock_station)
1024 struct dock_dependent_device *dd, *tmp;
1025 struct platform_device *dock_device = dock_station->dock_device;
1027 if (!dock_station_count)
1028 return 0;
1030 /* remove dependent devices */
1031 list_for_each_entry_safe(dd, tmp, &dock_station->dependent_devices,
1032 list)
1033 kfree(dd);
1035 /* cleanup sysfs */
1036 device_remove_file(&dock_device->dev, &dev_attr_docked);
1037 device_remove_file(&dock_device->dev, &dev_attr_undock);
1038 device_remove_file(&dock_device->dev, &dev_attr_uid);
1039 device_remove_file(&dock_device->dev, &dev_attr_flags);
1040 platform_device_unregister(dock_device);
1042 /* free dock station memory */
1043 kfree(dock_station);
1044 dock_station = NULL;
1045 return 0;
1049 * find_dock - look for a dock station
1050 * @handle: acpi handle of a device
1051 * @lvl: unused
1052 * @context: counter of dock stations found
1053 * @rv: unused
1055 * This is called by acpi_walk_namespace to look for dock stations.
1057 static acpi_status
1058 find_dock(acpi_handle handle, u32 lvl, void *context, void **rv)
1060 acpi_status status = AE_OK;
1062 if (is_dock(handle)) {
1063 if (dock_add(handle) >= 0) {
1064 status = AE_CTRL_TERMINATE;
1067 return status;
1070 static acpi_status
1071 find_bay(acpi_handle handle, u32 lvl, void *context, void **rv)
1073 /* If bay is in a dock, it's already handled */
1074 if (is_ejectable_bay(handle) && !is_dock_device(handle))
1075 dock_add(handle);
1076 return AE_OK;
1079 static int __init dock_init(void)
1081 if (acpi_disabled)
1082 return 0;
1084 /* look for a dock station */
1085 acpi_walk_namespace(ACPI_TYPE_DEVICE, ACPI_ROOT_OBJECT,
1086 ACPI_UINT32_MAX, find_dock, NULL, NULL);
1088 /* look for bay */
1089 acpi_walk_namespace(ACPI_TYPE_DEVICE, ACPI_ROOT_OBJECT,
1090 ACPI_UINT32_MAX, find_bay, NULL, NULL);
1091 if (!dock_station_count) {
1092 printk(KERN_INFO PREFIX "No dock devices found.\n");
1093 return 0;
1096 register_acpi_bus_notifier(&dock_acpi_notifier);
1097 printk(KERN_INFO PREFIX "%s: %d docks/bays found\n",
1098 ACPI_DOCK_DRIVER_DESCRIPTION, dock_station_count);
1099 return 0;
1102 static void __exit dock_exit(void)
1104 struct dock_station *dock_station;
1106 unregister_acpi_bus_notifier(&dock_acpi_notifier);
1107 list_for_each_entry(dock_station, &dock_stations, sibiling)
1108 dock_remove(dock_station);
1112 * Must be called before drivers of devices in dock, otherwise we can't know
1113 * which devices are in a dock
1115 subsys_initcall(dock_init);
1116 module_exit(dock_exit);