blob: 9ddc3f189bb74b958e1a7037ce9cd3925fc96138 [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>
27#include <linux/init.h>
28#include <linux/types.h>
29#include <linux/notifier.h>
Kristen Carlson Accardi671adbe2006-12-04 14:49:43 -080030#include <linux/platform_device.h>
Al Viro914e2632006-10-18 13:55:46 -040031#include <linux/jiffies.h>
Randy Dunlap62a6d7f2007-03-26 21:38:49 -080032#include <linux/stddef.h>
Len Brownc8f7a622006-07-09 17:22:28 -040033#include <acpi/acpi_bus.h>
34#include <acpi/acpi_drivers.h>
35
Len Brown7cda93e2007-02-12 23:50:02 -050036#define ACPI_DOCK_DRIVER_DESCRIPTION "ACPI Dock Station Driver"
Len Brownc8f7a622006-07-09 17:22:28 -040037
Len Brownf52fd662007-02-12 22:42:12 -050038ACPI_MODULE_NAME("dock");
Len Brownc8f7a622006-07-09 17:22:28 -040039MODULE_AUTHOR("Kristen Carlson Accardi");
Len Brown7cda93e2007-02-12 23:50:02 -050040MODULE_DESCRIPTION(ACPI_DOCK_DRIVER_DESCRIPTION);
Len Brownc8f7a622006-07-09 17:22:28 -040041MODULE_LICENSE("GPL");
42
43static struct atomic_notifier_head dock_notifier_list;
Kristen Carlson Accardi671adbe2006-12-04 14:49:43 -080044static struct platform_device dock_device;
45static char dock_device_name[] = "dock";
Len Brownc8f7a622006-07-09 17:22:28 -040046
47struct dock_station {
48 acpi_handle handle;
49 unsigned long last_dock_time;
50 u32 flags;
51 spinlock_t dd_lock;
Kristen Carlson Accardi8b0dc862006-10-30 11:18:45 -080052 struct mutex hp_lock;
Len Brownc8f7a622006-07-09 17:22:28 -040053 struct list_head dependent_devices;
54 struct list_head hotplug_devices;
55};
56
57struct dock_dependent_device {
58 struct list_head list;
59 struct list_head hotplug_list;
60 acpi_handle handle;
61 acpi_notify_handler handler;
62 void *context;
63};
64
65#define DOCK_DOCKING 0x00000001
Kristen Carlson Accardi56690212006-08-01 14:59:19 -070066#define DOCK_EVENT 3
67#define UNDOCK_EVENT 2
Len Brownc8f7a622006-07-09 17:22:28 -040068
69static struct dock_station *dock_station;
70
71/*****************************************************************************
72 * Dock Dependent device functions *
73 *****************************************************************************/
74/**
75 * alloc_dock_dependent_device - allocate and init a dependent device
76 * @handle: the acpi_handle of the dependent device
77 *
78 * Allocate memory for a dependent device structure for a device referenced
79 * by the acpi handle
80 */
81static struct dock_dependent_device *
82alloc_dock_dependent_device(acpi_handle handle)
83{
84 struct dock_dependent_device *dd;
85
86 dd = kzalloc(sizeof(*dd), GFP_KERNEL);
87 if (dd) {
88 dd->handle = handle;
89 INIT_LIST_HEAD(&dd->list);
90 INIT_LIST_HEAD(&dd->hotplug_list);
91 }
92 return dd;
93}
94
95/**
96 * add_dock_dependent_device - associate a device with the dock station
97 * @ds: The dock station
98 * @dd: The dependent device
99 *
100 * Add the dependent device to the dock's dependent device list.
101 */
102static void
103add_dock_dependent_device(struct dock_station *ds,
104 struct dock_dependent_device *dd)
105{
106 spin_lock(&ds->dd_lock);
107 list_add_tail(&dd->list, &ds->dependent_devices);
108 spin_unlock(&ds->dd_lock);
109}
110
111/**
112 * dock_add_hotplug_device - associate a hotplug handler with the dock station
113 * @ds: The dock station
114 * @dd: The dependent device struct
115 *
116 * Add the dependent device to the dock's hotplug device list
117 */
118static void
119dock_add_hotplug_device(struct dock_station *ds,
120 struct dock_dependent_device *dd)
121{
Kristen Carlson Accardi8b0dc862006-10-30 11:18:45 -0800122 mutex_lock(&ds->hp_lock);
Len Brownc8f7a622006-07-09 17:22:28 -0400123 list_add_tail(&dd->hotplug_list, &ds->hotplug_devices);
Kristen Carlson Accardi8b0dc862006-10-30 11:18:45 -0800124 mutex_unlock(&ds->hp_lock);
Len Brownc8f7a622006-07-09 17:22:28 -0400125}
126
127/**
128 * dock_del_hotplug_device - remove a hotplug handler from the dock station
129 * @ds: The dock station
130 * @dd: the dependent device struct
131 *
132 * Delete the dependent device from the dock's hotplug device list
133 */
134static void
135dock_del_hotplug_device(struct dock_station *ds,
136 struct dock_dependent_device *dd)
137{
Kristen Carlson Accardi8b0dc862006-10-30 11:18:45 -0800138 mutex_lock(&ds->hp_lock);
Len Brownc8f7a622006-07-09 17:22:28 -0400139 list_del(&dd->hotplug_list);
Kristen Carlson Accardi8b0dc862006-10-30 11:18:45 -0800140 mutex_unlock(&ds->hp_lock);
Len Brownc8f7a622006-07-09 17:22:28 -0400141}
142
143/**
144 * find_dock_dependent_device - get a device dependent on this dock
145 * @ds: the dock station
146 * @handle: the acpi_handle of the device we want
147 *
148 * iterate over the dependent device list for this dock. If the
149 * dependent device matches the handle, return.
150 */
151static struct dock_dependent_device *
152find_dock_dependent_device(struct dock_station *ds, acpi_handle handle)
153{
154 struct dock_dependent_device *dd;
155
156 spin_lock(&ds->dd_lock);
157 list_for_each_entry(dd, &ds->dependent_devices, list) {
158 if (handle == dd->handle) {
159 spin_unlock(&ds->dd_lock);
160 return dd;
161 }
162 }
163 spin_unlock(&ds->dd_lock);
164 return NULL;
165}
166
167/*****************************************************************************
168 * Dock functions *
169 *****************************************************************************/
170/**
171 * is_dock - see if a device is a dock station
172 * @handle: acpi handle of the device
173 *
174 * If an acpi object has a _DCK method, then it is by definition a dock
175 * station, so return true.
176 */
177static int is_dock(acpi_handle handle)
178{
179 acpi_status status;
180 acpi_handle tmp;
181
182 status = acpi_get_handle(handle, "_DCK", &tmp);
183 if (ACPI_FAILURE(status))
184 return 0;
185 return 1;
186}
187
188/**
189 * is_dock_device - see if a device is on a dock station
190 * @handle: acpi handle of the device
191 *
192 * If this device is either the dock station itself,
193 * or is a device dependent on the dock station, then it
194 * is a dock device
195 */
196int is_dock_device(acpi_handle handle)
197{
198 if (!dock_station)
199 return 0;
200
201 if (is_dock(handle) || find_dock_dependent_device(dock_station, handle))
202 return 1;
203
204 return 0;
205}
206
207EXPORT_SYMBOL_GPL(is_dock_device);
208
209/**
210 * dock_present - see if the dock station is present.
211 * @ds: the dock station
212 *
213 * execute the _STA method. note that present does not
214 * imply that we are docked.
215 */
216static int dock_present(struct dock_station *ds)
217{
218 unsigned long sta;
219 acpi_status status;
220
221 if (ds) {
222 status = acpi_evaluate_integer(ds->handle, "_STA", NULL, &sta);
223 if (ACPI_SUCCESS(status) && sta)
224 return 1;
225 }
226 return 0;
227}
228
229
230
231/**
232 * dock_create_acpi_device - add new devices to acpi
233 * @handle - handle of the device to add
234 *
235 * This function will create a new acpi_device for the given
236 * handle if one does not exist already. This should cause
237 * acpi to scan for drivers for the given devices, and call
238 * matching driver's add routine.
239 *
240 * Returns a pointer to the acpi_device corresponding to the handle.
241 */
242static struct acpi_device * dock_create_acpi_device(acpi_handle handle)
243{
244 struct acpi_device *device = NULL;
245 struct acpi_device *parent_device;
246 acpi_handle parent;
247 int ret;
248
249 if (acpi_bus_get_device(handle, &device)) {
250 /*
251 * no device created for this object,
252 * so we should create one.
253 */
254 acpi_get_parent(handle, &parent);
255 if (acpi_bus_get_device(parent, &parent_device))
256 parent_device = NULL;
257
258 ret = acpi_bus_add(&device, parent_device, handle,
259 ACPI_BUS_TYPE_DEVICE);
260 if (ret) {
261 pr_debug("error adding bus, %x\n",
262 -ret);
263 return NULL;
264 }
265 }
266 return device;
267}
268
269/**
270 * dock_remove_acpi_device - remove the acpi_device struct from acpi
271 * @handle - the handle of the device to remove
272 *
273 * Tell acpi to remove the acpi_device. This should cause any loaded
274 * driver to have it's remove routine called.
275 */
276static void dock_remove_acpi_device(acpi_handle handle)
277{
278 struct acpi_device *device;
279 int ret;
280
281 if (!acpi_bus_get_device(handle, &device)) {
282 ret = acpi_bus_trim(device, 1);
283 if (ret)
284 pr_debug("error removing bus, %x\n", -ret);
285 }
286}
287
288
289/**
290 * hotplug_dock_devices - insert or remove devices on the dock station
291 * @ds: the dock station
292 * @event: either bus check or eject request
293 *
294 * Some devices on the dock station need to have drivers called
295 * to perform hotplug operations after a dock event has occurred.
296 * Traverse the list of dock devices that have registered a
297 * hotplug handler, and call the handler.
298 */
299static void hotplug_dock_devices(struct dock_station *ds, u32 event)
300{
301 struct dock_dependent_device *dd;
302
Kristen Carlson Accardi8b0dc862006-10-30 11:18:45 -0800303 mutex_lock(&ds->hp_lock);
Len Brownc8f7a622006-07-09 17:22:28 -0400304
305 /*
306 * First call driver specific hotplug functions
307 */
308 list_for_each_entry(dd, &ds->hotplug_devices, hotplug_list) {
309 if (dd->handler)
310 dd->handler(dd->handle, event, dd->context);
311 }
312
313 /*
314 * Now make sure that an acpi_device is created for each
315 * dependent device, or removed if this is an eject request.
316 * This will cause acpi_drivers to be stopped/started if they
317 * exist
318 */
319 list_for_each_entry(dd, &ds->dependent_devices, list) {
320 if (event == ACPI_NOTIFY_EJECT_REQUEST)
321 dock_remove_acpi_device(dd->handle);
322 else
323 dock_create_acpi_device(dd->handle);
324 }
Kristen Carlson Accardi8b0dc862006-10-30 11:18:45 -0800325 mutex_unlock(&ds->hp_lock);
Len Brownc8f7a622006-07-09 17:22:28 -0400326}
327
328static void dock_event(struct dock_station *ds, u32 event, int num)
329{
Kristen Carlson Accardi8ea86e02006-12-11 12:05:08 -0800330 struct device *dev = &dock_device.dev;
Kristen Carlson Accardi56690212006-08-01 14:59:19 -0700331 /*
Kristen Carlson Accardi8ea86e02006-12-11 12:05:08 -0800332 * Indicate that the status of the dock station has
333 * changed.
Kristen Carlson Accardi56690212006-08-01 14:59:19 -0700334 */
Kristen Carlson Accardi8ea86e02006-12-11 12:05:08 -0800335 kobject_uevent(&dev->kobj, KOBJ_CHANGE);
Len Brownc8f7a622006-07-09 17:22:28 -0400336}
337
338/**
339 * eject_dock - respond to a dock eject request
340 * @ds: the dock station
341 *
342 * This is called after _DCK is called, to execute the dock station's
343 * _EJ0 method.
344 */
345static void eject_dock(struct dock_station *ds)
346{
347 struct acpi_object_list arg_list;
348 union acpi_object arg;
349 acpi_status status;
350 acpi_handle tmp;
351
352 /* all dock devices should have _EJ0, but check anyway */
353 status = acpi_get_handle(ds->handle, "_EJ0", &tmp);
354 if (ACPI_FAILURE(status)) {
355 pr_debug("No _EJ0 support for dock device\n");
356 return;
357 }
358
359 arg_list.count = 1;
360 arg_list.pointer = &arg;
361 arg.type = ACPI_TYPE_INTEGER;
362 arg.integer.value = 1;
363
364 if (ACPI_FAILURE(acpi_evaluate_object(ds->handle, "_EJ0",
365 &arg_list, NULL)))
366 pr_debug("Failed to evaluate _EJ0!\n");
367}
368
369/**
370 * handle_dock - handle a dock event
371 * @ds: the dock station
372 * @dock: to dock, or undock - that is the question
373 *
374 * Execute the _DCK method in response to an acpi event
375 */
376static void handle_dock(struct dock_station *ds, int dock)
377{
378 acpi_status status;
379 struct acpi_object_list arg_list;
380 union acpi_object arg;
381 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
382 struct acpi_buffer name_buffer = { ACPI_ALLOCATE_BUFFER, NULL };
383 union acpi_object *obj;
384
385 acpi_get_name(ds->handle, ACPI_FULL_PATHNAME, &name_buffer);
386 obj = name_buffer.pointer;
387
388 printk(KERN_INFO PREFIX "%s\n", dock ? "docking" : "undocking");
389
390 /* _DCK method has one argument */
391 arg_list.count = 1;
392 arg_list.pointer = &arg;
393 arg.type = ACPI_TYPE_INTEGER;
394 arg.integer.value = dock;
395 status = acpi_evaluate_object(ds->handle, "_DCK", &arg_list, &buffer);
396 if (ACPI_FAILURE(status))
397 pr_debug("%s: failed to execute _DCK\n", obj->string.pointer);
398 kfree(buffer.pointer);
399 kfree(name_buffer.pointer);
400}
401
402static inline void dock(struct dock_station *ds)
403{
404 handle_dock(ds, 1);
405}
406
407static inline void undock(struct dock_station *ds)
408{
409 handle_dock(ds, 0);
410}
411
412static inline void begin_dock(struct dock_station *ds)
413{
414 ds->flags |= DOCK_DOCKING;
415}
416
417static inline void complete_dock(struct dock_station *ds)
418{
419 ds->flags &= ~(DOCK_DOCKING);
420 ds->last_dock_time = jiffies;
421}
422
423/**
424 * dock_in_progress - see if we are in the middle of handling a dock event
425 * @ds: the dock station
426 *
427 * Sometimes while docking, false dock events can be sent to the driver
428 * because good connections aren't made or some other reason. Ignore these
429 * if we are in the middle of doing something.
430 */
431static int dock_in_progress(struct dock_station *ds)
432{
433 if ((ds->flags & DOCK_DOCKING) ||
434 time_before(jiffies, (ds->last_dock_time + HZ)))
435 return 1;
436 return 0;
437}
438
439/**
440 * register_dock_notifier - add yourself to the dock notifier list
441 * @nb: the callers notifier block
442 *
443 * If a driver wishes to be notified about dock events, they can
444 * use this function to put a notifier block on the dock notifier list.
445 * this notifier call chain will be called after a dock event, but
446 * before hotplugging any new devices.
447 */
448int register_dock_notifier(struct notifier_block *nb)
449{
Prarit Bhargava2548c062006-12-04 14:50:17 -0800450 if (!dock_station)
451 return -ENODEV;
452
Len Brownc8f7a622006-07-09 17:22:28 -0400453 return atomic_notifier_chain_register(&dock_notifier_list, nb);
454}
455
456EXPORT_SYMBOL_GPL(register_dock_notifier);
457
458/**
459 * unregister_dock_notifier - remove yourself from the dock notifier list
460 * @nb: the callers notifier block
461 */
462void unregister_dock_notifier(struct notifier_block *nb)
463{
Prarit Bhargava2548c062006-12-04 14:50:17 -0800464 if (!dock_station)
465 return;
466
Len Brownc8f7a622006-07-09 17:22:28 -0400467 atomic_notifier_chain_unregister(&dock_notifier_list, nb);
468}
469
470EXPORT_SYMBOL_GPL(unregister_dock_notifier);
471
472/**
473 * register_hotplug_dock_device - register a hotplug function
474 * @handle: the handle of the device
475 * @handler: the acpi_notifier_handler to call after docking
476 * @context: device specific data
477 *
478 * If a driver would like to perform a hotplug operation after a dock
479 * event, they can register an acpi_notifiy_handler to be called by
480 * the dock driver after _DCK is executed.
481 */
482int
483register_hotplug_dock_device(acpi_handle handle, acpi_notify_handler handler,
484 void *context)
485{
486 struct dock_dependent_device *dd;
487
488 if (!dock_station)
489 return -ENODEV;
490
491 /*
492 * make sure this handle is for a device dependent on the dock,
493 * this would include the dock station itself
494 */
495 dd = find_dock_dependent_device(dock_station, handle);
496 if (dd) {
497 dd->handler = handler;
498 dd->context = context;
499 dock_add_hotplug_device(dock_station, dd);
500 return 0;
501 }
502
503 return -EINVAL;
504}
505
506EXPORT_SYMBOL_GPL(register_hotplug_dock_device);
507
508/**
509 * unregister_hotplug_dock_device - remove yourself from the hotplug list
510 * @handle: the acpi handle of the device
511 */
512void unregister_hotplug_dock_device(acpi_handle handle)
513{
514 struct dock_dependent_device *dd;
515
516 if (!dock_station)
517 return;
518
519 dd = find_dock_dependent_device(dock_station, handle);
520 if (dd)
521 dock_del_hotplug_device(dock_station, dd);
522}
523
524EXPORT_SYMBOL_GPL(unregister_hotplug_dock_device);
525
526/**
brandon@ifup.orgc80fdbe2006-12-04 14:49:58 -0800527 * handle_eject_request - handle an undock request checking for error conditions
528 *
529 * Check to make sure the dock device is still present, then undock and
530 * hotremove all the devices that may need removing.
531 */
532static int handle_eject_request(struct dock_station *ds, u32 event)
533{
534 if (!dock_present(ds))
535 return -ENODEV;
536
537 if (dock_in_progress(ds))
538 return -EBUSY;
539
540 /*
541 * here we need to generate the undock
542 * event prior to actually doing the undock
543 * so that the device struct still exists.
544 */
545 dock_event(ds, event, UNDOCK_EVENT);
546 hotplug_dock_devices(ds, ACPI_NOTIFY_EJECT_REQUEST);
547 undock(ds);
548 eject_dock(ds);
549 if (dock_present(ds)) {
550 printk(KERN_ERR PREFIX "Unable to undock!\n");
551 return -EBUSY;
552 }
553
554 return 0;
555}
556
557/**
Len Brownc8f7a622006-07-09 17:22:28 -0400558 * dock_notify - act upon an acpi dock notification
559 * @handle: the dock station handle
560 * @event: the acpi event
561 * @data: our driver data struct
562 *
563 * If we are notified to dock, then check to see if the dock is
564 * present and then dock. Notify all drivers of the dock event,
brandon@ifup.orgc80fdbe2006-12-04 14:49:58 -0800565 * and then hotplug and devices that may need hotplugging.
Len Brownc8f7a622006-07-09 17:22:28 -0400566 */
567static void dock_notify(acpi_handle handle, u32 event, void *data)
568{
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200569 struct dock_station *ds = data;
Len Brownc8f7a622006-07-09 17:22:28 -0400570
571 switch (event) {
572 case ACPI_NOTIFY_BUS_CHECK:
573 if (!dock_in_progress(ds) && dock_present(ds)) {
574 begin_dock(ds);
575 dock(ds);
576 if (!dock_present(ds)) {
577 printk(KERN_ERR PREFIX "Unable to dock!\n");
578 break;
579 }
580 atomic_notifier_call_chain(&dock_notifier_list,
581 event, NULL);
582 hotplug_dock_devices(ds, event);
583 complete_dock(ds);
584 dock_event(ds, event, DOCK_EVENT);
585 }
586 break;
587 case ACPI_NOTIFY_DEVICE_CHECK:
588 /*
589 * According to acpi spec 3.0a, if a DEVICE_CHECK notification
590 * is sent and _DCK is present, it is assumed to mean an
591 * undock request. This notify routine will only be called
592 * for objects defining _DCK, so we will fall through to eject
593 * request here. However, we will pass an eject request through
594 * to the driver who wish to hotplug.
595 */
596 case ACPI_NOTIFY_EJECT_REQUEST:
brandon@ifup.orgc80fdbe2006-12-04 14:49:58 -0800597 handle_eject_request(ds, event);
Len Brownc8f7a622006-07-09 17:22:28 -0400598 break;
599 default:
600 printk(KERN_ERR PREFIX "Unknown dock event %d\n", event);
601 }
602}
603
604/**
605 * find_dock_devices - find devices on the dock station
606 * @handle: the handle of the device we are examining
607 * @lvl: unused
608 * @context: the dock station private data
609 * @rv: unused
610 *
611 * This function is called by acpi_walk_namespace. It will
612 * check to see if an object has an _EJD method. If it does, then it
613 * will see if it is dependent on the dock station.
614 */
615static acpi_status
616find_dock_devices(acpi_handle handle, u32 lvl, void *context, void **rv)
617{
618 acpi_status status;
Kristen Carlson Accardife9a2f72007-02-02 22:33:00 -0500619 acpi_handle tmp, parent;
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200620 struct dock_station *ds = context;
Len Brownc8f7a622006-07-09 17:22:28 -0400621 struct dock_dependent_device *dd;
622
623 status = acpi_bus_get_ejd(handle, &tmp);
Kristen Carlson Accardife9a2f72007-02-02 22:33:00 -0500624 if (ACPI_FAILURE(status)) {
625 /* try the parent device as well */
626 status = acpi_get_parent(handle, &parent);
627 if (ACPI_FAILURE(status))
628 goto fdd_out;
629 /* see if parent is dependent on dock */
630 status = acpi_bus_get_ejd(parent, &tmp);
631 if (ACPI_FAILURE(status))
632 goto fdd_out;
633 }
Len Brownc8f7a622006-07-09 17:22:28 -0400634
635 if (tmp == ds->handle) {
636 dd = alloc_dock_dependent_device(handle);
637 if (dd)
638 add_dock_dependent_device(ds, dd);
639 }
Kristen Carlson Accardife9a2f72007-02-02 22:33:00 -0500640fdd_out:
Len Brownc8f7a622006-07-09 17:22:28 -0400641 return AE_OK;
642}
643
brandon@ifup.orgc80fdbe2006-12-04 14:49:58 -0800644/*
645 * show_docked - read method for "docked" file in sysfs
646 */
647static ssize_t show_docked(struct device *dev,
648 struct device_attribute *attr, char *buf)
649{
650 return snprintf(buf, PAGE_SIZE, "%d\n", dock_present(dock_station));
651
652}
653DEVICE_ATTR(docked, S_IRUGO, show_docked, NULL);
654
655/*
656 * write_undock - write method for "undock" file in sysfs
657 */
658static ssize_t write_undock(struct device *dev, struct device_attribute *attr,
659 const char *buf, size_t count)
660{
661 int ret;
662
663 if (!count)
664 return -EINVAL;
665
666 ret = handle_eject_request(dock_station, ACPI_NOTIFY_EJECT_REQUEST);
667 return ret ? ret: count;
668}
669DEVICE_ATTR(undock, S_IWUSR, NULL, write_undock);
670
Ilya A. Volynets-Evenbakhac122bb2007-02-19 15:19:31 -0800671/*
672 * show_dock_uid - read method for "uid" file in sysfs
673 */
674static ssize_t show_dock_uid(struct device *dev,
675 struct device_attribute *attr, char *buf)
676{
677 unsigned long lbuf;
Kristen Carlson Accardi38ff4ff2007-05-09 15:04:24 -0700678 acpi_status status = acpi_evaluate_integer(dock_station->handle,
679 "_UID", NULL, &lbuf);
680 if (ACPI_FAILURE(status))
Ilya A. Volynets-Evenbakhac122bb2007-02-19 15:19:31 -0800681 return 0;
Kristen Carlson Accardi38ff4ff2007-05-09 15:04:24 -0700682
Ilya A. Volynets-Evenbakhac122bb2007-02-19 15:19:31 -0800683 return snprintf(buf, PAGE_SIZE, "%lx\n", lbuf);
684}
685DEVICE_ATTR(uid, S_IRUGO, show_dock_uid, NULL);
686
Len Brownc8f7a622006-07-09 17:22:28 -0400687/**
688 * dock_add - add a new dock station
689 * @handle: the dock station handle
690 *
691 * allocated and initialize a new dock station device. Find all devices
692 * that are on the dock station, and register for dock event notifications.
693 */
694static int dock_add(acpi_handle handle)
695{
696 int ret;
697 acpi_status status;
698 struct dock_dependent_device *dd;
699
700 /* allocate & initialize the dock_station private data */
701 dock_station = kzalloc(sizeof(*dock_station), GFP_KERNEL);
702 if (!dock_station)
703 return -ENOMEM;
704 dock_station->handle = handle;
705 dock_station->last_dock_time = jiffies - HZ;
706 INIT_LIST_HEAD(&dock_station->dependent_devices);
707 INIT_LIST_HEAD(&dock_station->hotplug_devices);
708 spin_lock_init(&dock_station->dd_lock);
Kristen Carlson Accardi8b0dc862006-10-30 11:18:45 -0800709 mutex_init(&dock_station->hp_lock);
Kristen Accardi07a186842006-07-10 14:19:15 -0400710 ATOMIC_INIT_NOTIFIER_HEAD(&dock_notifier_list);
Len Brownc8f7a622006-07-09 17:22:28 -0400711
Kristen Carlson Accardi671adbe2006-12-04 14:49:43 -0800712 /* initialize platform device stuff */
713 dock_device.name = dock_device_name;
714 ret = platform_device_register(&dock_device);
715 if (ret) {
Len Browne67beb32006-12-07 04:17:35 -0500716 printk(KERN_ERR PREFIX "Error %d registering dock device\n", ret);
Kristen Carlson Accardi671adbe2006-12-04 14:49:43 -0800717 kfree(dock_station);
718 return ret;
719 }
brandon@ifup.orgc80fdbe2006-12-04 14:49:58 -0800720 ret = device_create_file(&dock_device.dev, &dev_attr_docked);
721 if (ret) {
722 printk("Error %d adding sysfs file\n", ret);
723 platform_device_unregister(&dock_device);
724 kfree(dock_station);
725 return ret;
726 }
727 ret = device_create_file(&dock_device.dev, &dev_attr_undock);
728 if (ret) {
729 printk("Error %d adding sysfs file\n", ret);
730 device_remove_file(&dock_device.dev, &dev_attr_docked);
731 platform_device_unregister(&dock_device);
732 kfree(dock_station);
733 return ret;
734 }
Ilya A. Volynets-Evenbakhac122bb2007-02-19 15:19:31 -0800735 ret = device_create_file(&dock_device.dev, &dev_attr_uid);
736 if (ret) {
737 printk("Error %d adding sysfs file\n", ret);
Kristen Carlson Accardi38ff4ff2007-05-09 15:04:24 -0700738 device_remove_file(&dock_device.dev, &dev_attr_docked);
739 device_remove_file(&dock_device.dev, &dev_attr_undock);
Ilya A. Volynets-Evenbakhac122bb2007-02-19 15:19:31 -0800740 platform_device_unregister(&dock_device);
741 kfree(dock_station);
742 return ret;
743 }
Kristen Carlson Accardi671adbe2006-12-04 14:49:43 -0800744
Len Brownc8f7a622006-07-09 17:22:28 -0400745 /* Find dependent devices */
746 acpi_walk_namespace(ACPI_TYPE_DEVICE, ACPI_ROOT_OBJECT,
747 ACPI_UINT32_MAX, find_dock_devices, dock_station,
748 NULL);
749
750 /* add the dock station as a device dependent on itself */
751 dd = alloc_dock_dependent_device(handle);
752 if (!dd) {
753 kfree(dock_station);
Kristen Carlson Accardi671adbe2006-12-04 14:49:43 -0800754 ret = -ENOMEM;
755 goto dock_add_err_unregister;
Len Brownc8f7a622006-07-09 17:22:28 -0400756 }
757 add_dock_dependent_device(dock_station, dd);
758
759 /* register for dock events */
760 status = acpi_install_notify_handler(dock_station->handle,
761 ACPI_SYSTEM_NOTIFY,
762 dock_notify, dock_station);
763
764 if (ACPI_FAILURE(status)) {
765 printk(KERN_ERR PREFIX "Error installing notify handler\n");
766 ret = -ENODEV;
767 goto dock_add_err;
768 }
769
Len Brown7cda93e2007-02-12 23:50:02 -0500770 printk(KERN_INFO PREFIX "%s \n", ACPI_DOCK_DRIVER_DESCRIPTION);
Len Brownc8f7a622006-07-09 17:22:28 -0400771
772 return 0;
773
774dock_add_err:
Len Brownc8f7a622006-07-09 17:22:28 -0400775 kfree(dd);
Kristen Carlson Accardi671adbe2006-12-04 14:49:43 -0800776dock_add_err_unregister:
brandon@ifup.orgc80fdbe2006-12-04 14:49:58 -0800777 device_remove_file(&dock_device.dev, &dev_attr_docked);
778 device_remove_file(&dock_device.dev, &dev_attr_undock);
Kristen Carlson Accardi38ff4ff2007-05-09 15:04:24 -0700779 device_remove_file(&dock_device.dev, &dev_attr_uid);
Kristen Carlson Accardi671adbe2006-12-04 14:49:43 -0800780 platform_device_unregister(&dock_device);
781 kfree(dock_station);
Len Brownc8f7a622006-07-09 17:22:28 -0400782 return ret;
783}
784
785/**
786 * dock_remove - free up resources related to the dock station
787 */
788static int dock_remove(void)
789{
790 struct dock_dependent_device *dd, *tmp;
791 acpi_status status;
792
793 if (!dock_station)
794 return 0;
795
796 /* remove dependent devices */
797 list_for_each_entry_safe(dd, tmp, &dock_station->dependent_devices,
798 list)
799 kfree(dd);
800
801 /* remove dock notify handler */
802 status = acpi_remove_notify_handler(dock_station->handle,
803 ACPI_SYSTEM_NOTIFY,
804 dock_notify);
805 if (ACPI_FAILURE(status))
806 printk(KERN_ERR "Error removing notify handler\n");
807
Kristen Carlson Accardi671adbe2006-12-04 14:49:43 -0800808 /* cleanup sysfs */
brandon@ifup.orgc80fdbe2006-12-04 14:49:58 -0800809 device_remove_file(&dock_device.dev, &dev_attr_docked);
810 device_remove_file(&dock_device.dev, &dev_attr_undock);
Kristen Carlson Accardi38ff4ff2007-05-09 15:04:24 -0700811 device_remove_file(&dock_device.dev, &dev_attr_uid);
Kristen Carlson Accardi671adbe2006-12-04 14:49:43 -0800812 platform_device_unregister(&dock_device);
813
Len Brownc8f7a622006-07-09 17:22:28 -0400814 /* free dock station memory */
815 kfree(dock_station);
816 return 0;
817}
818
819/**
820 * find_dock - look for a dock station
821 * @handle: acpi handle of a device
822 * @lvl: unused
823 * @context: counter of dock stations found
824 * @rv: unused
825 *
826 * This is called by acpi_walk_namespace to look for dock stations.
827 */
828static acpi_status
829find_dock(acpi_handle handle, u32 lvl, void *context, void **rv)
830{
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200831 int *count = context;
Len Brownc8f7a622006-07-09 17:22:28 -0400832 acpi_status status = AE_OK;
833
834 if (is_dock(handle)) {
835 if (dock_add(handle) >= 0) {
836 (*count)++;
837 status = AE_CTRL_TERMINATE;
838 }
839 }
840 return status;
841}
842
843static int __init dock_init(void)
844{
845 int num = 0;
846
847 dock_station = NULL;
848
849 /* look for a dock station */
850 acpi_walk_namespace(ACPI_TYPE_DEVICE, ACPI_ROOT_OBJECT,
851 ACPI_UINT32_MAX, find_dock, &num, NULL);
852
853 if (!num)
Prarit Bhargava2548c062006-12-04 14:50:17 -0800854 printk(KERN_INFO "No dock devices found.\n");
Len Brownc8f7a622006-07-09 17:22:28 -0400855
856 return 0;
857}
858
859static void __exit dock_exit(void)
860{
861 dock_remove();
862}
863
864postcore_initcall(dock_init);
865module_exit(dock_exit);