Len Brown | c8f7a62 | 2006-07-09 17:22:28 -0400 | [diff] [blame] | 1 | /* |
| 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 Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 27 | #include <linux/slab.h> |
Len Brown | c8f7a62 | 2006-07-09 17:22:28 -0400 | [diff] [blame] | 28 | #include <linux/init.h> |
| 29 | #include <linux/types.h> |
| 30 | #include <linux/notifier.h> |
Kristen Carlson Accardi | 671adbe | 2006-12-04 14:49:43 -0800 | [diff] [blame] | 31 | #include <linux/platform_device.h> |
Al Viro | 914e263 | 2006-10-18 13:55:46 -0400 | [diff] [blame] | 32 | #include <linux/jiffies.h> |
Randy Dunlap | 62a6d7f | 2007-03-26 21:38:49 -0800 | [diff] [blame] | 33 | #include <linux/stddef.h> |
Toshi Kani | cd73018 | 2012-11-20 23:42:30 +0000 | [diff] [blame] | 34 | #include <linux/acpi.h> |
Len Brown | c8f7a62 | 2006-07-09 17:22:28 -0400 | [diff] [blame] | 35 | |
Len Brown | a192a95 | 2009-07-28 16:45:54 -0400 | [diff] [blame] | 36 | #define PREFIX "ACPI: " |
| 37 | |
Len Brown | 7cda93e | 2007-02-12 23:50:02 -0500 | [diff] [blame] | 38 | #define ACPI_DOCK_DRIVER_DESCRIPTION "ACPI Dock Station Driver" |
Len Brown | c8f7a62 | 2006-07-09 17:22:28 -0400 | [diff] [blame] | 39 | |
Len Brown | f52fd66 | 2007-02-12 22:42:12 -0500 | [diff] [blame] | 40 | ACPI_MODULE_NAME("dock"); |
Len Brown | c8f7a62 | 2006-07-09 17:22:28 -0400 | [diff] [blame] | 41 | MODULE_AUTHOR("Kristen Carlson Accardi"); |
Len Brown | 7cda93e | 2007-02-12 23:50:02 -0500 | [diff] [blame] | 42 | MODULE_DESCRIPTION(ACPI_DOCK_DRIVER_DESCRIPTION); |
Len Brown | c8f7a62 | 2006-07-09 17:22:28 -0400 | [diff] [blame] | 43 | MODULE_LICENSE("GPL"); |
| 44 | |
Rusty Russell | 90ab5ee | 2012-01-13 09:32:20 +1030 | [diff] [blame] | 45 | static bool immediate_undock = 1; |
Kristen Carlson Accardi | a0cd35f | 2007-05-09 15:08:15 -0700 | [diff] [blame] | 46 | module_param(immediate_undock, bool, 0644); |
| 47 | MODULE_PARM_DESC(immediate_undock, "1 (default) will cause the driver to " |
| 48 | "undock immediately when the undock button is pressed, 0 will cause" |
| 49 | " the driver to wait for userspace to write the undock sysfs file " |
| 50 | " before undocking"); |
| 51 | |
Frank Seidel | a340af1 | 2007-12-07 13:20:42 +0100 | [diff] [blame] | 52 | static const struct acpi_device_id dock_device_ids[] = { |
| 53 | {"LNXDOCK", 0}, |
| 54 | {"", 0}, |
| 55 | }; |
| 56 | MODULE_DEVICE_TABLE(acpi, dock_device_ids); |
| 57 | |
Len Brown | c8f7a62 | 2006-07-09 17:22:28 -0400 | [diff] [blame] | 58 | struct dock_station { |
| 59 | acpi_handle handle; |
| 60 | unsigned long last_dock_time; |
| 61 | u32 flags; |
Len Brown | c8f7a62 | 2006-07-09 17:22:28 -0400 | [diff] [blame] | 62 | struct list_head dependent_devices; |
Shaohua Li | db350b0 | 2008-08-28 10:03:58 +0800 | [diff] [blame] | 63 | |
Alex Chiang | 50d716e | 2009-10-01 11:59:23 -0600 | [diff] [blame] | 64 | struct list_head sibling; |
Shaohua Li | db350b0 | 2008-08-28 10:03:58 +0800 | [diff] [blame] | 65 | struct platform_device *dock_device; |
Len Brown | c8f7a62 | 2006-07-09 17:22:28 -0400 | [diff] [blame] | 66 | }; |
Shaohua Li | db350b0 | 2008-08-28 10:03:58 +0800 | [diff] [blame] | 67 | static LIST_HEAD(dock_stations); |
| 68 | static int dock_station_count; |
Rafael J. Wysocki | 21a3101 | 2013-06-24 11:22:53 +0200 | [diff] [blame] | 69 | static DEFINE_MUTEX(hotplug_lock); |
Len Brown | c8f7a62 | 2006-07-09 17:22:28 -0400 | [diff] [blame] | 70 | |
| 71 | struct dock_dependent_device { |
| 72 | struct list_head list; |
Len Brown | c8f7a62 | 2006-07-09 17:22:28 -0400 | [diff] [blame] | 73 | acpi_handle handle; |
Rafael J. Wysocki | 21a3101 | 2013-06-24 11:22:53 +0200 | [diff] [blame] | 74 | const struct acpi_dock_ops *hp_ops; |
| 75 | void *hp_context; |
| 76 | unsigned int hp_refcount; |
| 77 | void (*hp_release)(void *); |
Len Brown | c8f7a62 | 2006-07-09 17:22:28 -0400 | [diff] [blame] | 78 | }; |
| 79 | |
| 80 | #define DOCK_DOCKING 0x00000001 |
Kristen Carlson Accardi | a0cd35f | 2007-05-09 15:08:15 -0700 | [diff] [blame] | 81 | #define DOCK_UNDOCKING 0x00000002 |
Shaohua Li | db350b0 | 2008-08-28 10:03:58 +0800 | [diff] [blame] | 82 | #define DOCK_IS_DOCK 0x00000010 |
| 83 | #define DOCK_IS_ATA 0x00000020 |
| 84 | #define DOCK_IS_BAT 0x00000040 |
Kristen Carlson Accardi | 5669021 | 2006-08-01 14:59:19 -0700 | [diff] [blame] | 85 | #define DOCK_EVENT 3 |
| 86 | #define UNDOCK_EVENT 2 |
Len Brown | c8f7a62 | 2006-07-09 17:22:28 -0400 | [diff] [blame] | 87 | |
Rafael J. Wysocki | f09ce74 | 2013-07-05 03:03:25 +0200 | [diff] [blame] | 88 | enum dock_callback_type { |
| 89 | DOCK_CALL_HANDLER, |
| 90 | DOCK_CALL_FIXUP, |
| 91 | DOCK_CALL_UEVENT, |
| 92 | }; |
| 93 | |
Len Brown | c8f7a62 | 2006-07-09 17:22:28 -0400 | [diff] [blame] | 94 | /***************************************************************************** |
| 95 | * Dock Dependent device functions * |
| 96 | *****************************************************************************/ |
| 97 | /** |
Alex Chiang | f69cfdd | 2009-10-19 15:14:29 -0600 | [diff] [blame] | 98 | * add_dock_dependent_device - associate a device with the dock station |
| 99 | * @ds: The dock station |
| 100 | * @handle: handle of the dependent device |
Len Brown | c8f7a62 | 2006-07-09 17:22:28 -0400 | [diff] [blame] | 101 | * |
Alex Chiang | f69cfdd | 2009-10-19 15:14:29 -0600 | [diff] [blame] | 102 | * Add the dependent device to the dock's dependent device list. |
Len Brown | c8f7a62 | 2006-07-09 17:22:28 -0400 | [diff] [blame] | 103 | */ |
Jiang Liu | d423c08 | 2013-06-29 00:24:36 +0800 | [diff] [blame] | 104 | static int __init |
Alex Chiang | f69cfdd | 2009-10-19 15:14:29 -0600 | [diff] [blame] | 105 | add_dock_dependent_device(struct dock_station *ds, acpi_handle handle) |
Len Brown | c8f7a62 | 2006-07-09 17:22:28 -0400 | [diff] [blame] | 106 | { |
| 107 | struct dock_dependent_device *dd; |
| 108 | |
| 109 | dd = kzalloc(sizeof(*dd), GFP_KERNEL); |
Alex Chiang | f69cfdd | 2009-10-19 15:14:29 -0600 | [diff] [blame] | 110 | if (!dd) |
| 111 | return -ENOMEM; |
Len Brown | c8f7a62 | 2006-07-09 17:22:28 -0400 | [diff] [blame] | 112 | |
Alex Chiang | f69cfdd | 2009-10-19 15:14:29 -0600 | [diff] [blame] | 113 | dd->handle = handle; |
| 114 | INIT_LIST_HEAD(&dd->list); |
Len Brown | c8f7a62 | 2006-07-09 17:22:28 -0400 | [diff] [blame] | 115 | list_add_tail(&dd->list, &ds->dependent_devices); |
Alex Chiang | f69cfdd | 2009-10-19 15:14:29 -0600 | [diff] [blame] | 116 | |
| 117 | return 0; |
Len Brown | c8f7a62 | 2006-07-09 17:22:28 -0400 | [diff] [blame] | 118 | } |
| 119 | |
Rafael J. Wysocki | a30c4c5 | 2013-06-30 23:50:24 +0200 | [diff] [blame] | 120 | static void remove_dock_dependent_devices(struct dock_station *ds) |
| 121 | { |
| 122 | struct dock_dependent_device *dd, *aux; |
| 123 | |
| 124 | list_for_each_entry_safe(dd, aux, &ds->dependent_devices, list) { |
| 125 | list_del(&dd->list); |
| 126 | kfree(dd); |
| 127 | } |
| 128 | } |
| 129 | |
Len Brown | c8f7a62 | 2006-07-09 17:22:28 -0400 | [diff] [blame] | 130 | /** |
Rafael J. Wysocki | 21a3101 | 2013-06-24 11:22:53 +0200 | [diff] [blame] | 131 | * dock_init_hotplug - Initialize a hotplug device on a docking station. |
| 132 | * @dd: Dock-dependent device. |
| 133 | * @ops: Dock operations to attach to the dependent device. |
| 134 | * @context: Data to pass to the @ops callbacks and @release. |
| 135 | * @init: Optional initialization routine to run after setting up context. |
| 136 | * @release: Optional release routine to run on removal. |
Len Brown | c8f7a62 | 2006-07-09 17:22:28 -0400 | [diff] [blame] | 137 | */ |
Rafael J. Wysocki | 21a3101 | 2013-06-24 11:22:53 +0200 | [diff] [blame] | 138 | static int dock_init_hotplug(struct dock_dependent_device *dd, |
| 139 | const struct acpi_dock_ops *ops, void *context, |
| 140 | void (*init)(void *), void (*release)(void *)) |
Len Brown | c8f7a62 | 2006-07-09 17:22:28 -0400 | [diff] [blame] | 141 | { |
Rafael J. Wysocki | 21a3101 | 2013-06-24 11:22:53 +0200 | [diff] [blame] | 142 | int ret = 0; |
| 143 | |
| 144 | mutex_lock(&hotplug_lock); |
Rafael J. Wysocki | 4ec2406 | 2013-06-30 23:47:14 +0200 | [diff] [blame] | 145 | if (WARN_ON(dd->hp_context)) { |
Rafael J. Wysocki | 21a3101 | 2013-06-24 11:22:53 +0200 | [diff] [blame] | 146 | ret = -EEXIST; |
| 147 | } else { |
| 148 | dd->hp_refcount = 1; |
| 149 | dd->hp_ops = ops; |
| 150 | dd->hp_context = context; |
| 151 | dd->hp_release = release; |
Rafael J. Wysocki | 4ec2406 | 2013-06-30 23:47:14 +0200 | [diff] [blame] | 152 | if (init) |
| 153 | init(context); |
Rafael J. Wysocki | 21a3101 | 2013-06-24 11:22:53 +0200 | [diff] [blame] | 154 | } |
Rafael J. Wysocki | 21a3101 | 2013-06-24 11:22:53 +0200 | [diff] [blame] | 155 | mutex_unlock(&hotplug_lock); |
| 156 | return ret; |
Len Brown | c8f7a62 | 2006-07-09 17:22:28 -0400 | [diff] [blame] | 157 | } |
| 158 | |
| 159 | /** |
Rafael J. Wysocki | 21a3101 | 2013-06-24 11:22:53 +0200 | [diff] [blame] | 160 | * dock_release_hotplug - Decrement hotplug reference counter of dock device. |
| 161 | * @dd: Dock-dependent device. |
Len Brown | c8f7a62 | 2006-07-09 17:22:28 -0400 | [diff] [blame] | 162 | * |
Rafael J. Wysocki | 21a3101 | 2013-06-24 11:22:53 +0200 | [diff] [blame] | 163 | * Decrement the reference counter of @dd and if 0, detach its hotplug |
| 164 | * operations from it, reset its context pointer and run the optional release |
| 165 | * routine if present. |
Len Brown | c8f7a62 | 2006-07-09 17:22:28 -0400 | [diff] [blame] | 166 | */ |
Rafael J. Wysocki | 21a3101 | 2013-06-24 11:22:53 +0200 | [diff] [blame] | 167 | static void dock_release_hotplug(struct dock_dependent_device *dd) |
Len Brown | c8f7a62 | 2006-07-09 17:22:28 -0400 | [diff] [blame] | 168 | { |
Rafael J. Wysocki | 21a3101 | 2013-06-24 11:22:53 +0200 | [diff] [blame] | 169 | mutex_lock(&hotplug_lock); |
Rafael J. Wysocki | 21a3101 | 2013-06-24 11:22:53 +0200 | [diff] [blame] | 170 | if (dd->hp_context && !--dd->hp_refcount) { |
Rafael J. Wysocki | 4ec2406 | 2013-06-30 23:47:14 +0200 | [diff] [blame] | 171 | void (*release)(void *) = dd->hp_release; |
| 172 | void *context = dd->hp_context; |
| 173 | |
Rafael J. Wysocki | 21a3101 | 2013-06-24 11:22:53 +0200 | [diff] [blame] | 174 | dd->hp_ops = NULL; |
Rafael J. Wysocki | 21a3101 | 2013-06-24 11:22:53 +0200 | [diff] [blame] | 175 | dd->hp_context = NULL; |
Rafael J. Wysocki | 21a3101 | 2013-06-24 11:22:53 +0200 | [diff] [blame] | 176 | dd->hp_release = NULL; |
Rafael J. Wysocki | 4ec2406 | 2013-06-30 23:47:14 +0200 | [diff] [blame] | 177 | if (release) |
| 178 | release(context); |
Rafael J. Wysocki | 21a3101 | 2013-06-24 11:22:53 +0200 | [diff] [blame] | 179 | } |
Rafael J. Wysocki | 21a3101 | 2013-06-24 11:22:53 +0200 | [diff] [blame] | 180 | mutex_unlock(&hotplug_lock); |
| 181 | } |
| 182 | |
| 183 | static void dock_hotplug_event(struct dock_dependent_device *dd, u32 event, |
Rafael J. Wysocki | f09ce74 | 2013-07-05 03:03:25 +0200 | [diff] [blame] | 184 | enum dock_callback_type cb_type) |
Rafael J. Wysocki | 21a3101 | 2013-06-24 11:22:53 +0200 | [diff] [blame] | 185 | { |
| 186 | acpi_notify_handler cb = NULL; |
| 187 | bool run = false; |
| 188 | |
| 189 | mutex_lock(&hotplug_lock); |
| 190 | |
| 191 | if (dd->hp_context) { |
| 192 | run = true; |
| 193 | dd->hp_refcount++; |
Rafael J. Wysocki | f09ce74 | 2013-07-05 03:03:25 +0200 | [diff] [blame] | 194 | if (dd->hp_ops) { |
| 195 | switch (cb_type) { |
| 196 | case DOCK_CALL_FIXUP: |
| 197 | cb = dd->hp_ops->fixup; |
| 198 | break; |
| 199 | case DOCK_CALL_UEVENT: |
| 200 | cb = dd->hp_ops->uevent; |
| 201 | break; |
| 202 | default: |
| 203 | cb = dd->hp_ops->handler; |
| 204 | } |
| 205 | } |
Rafael J. Wysocki | 21a3101 | 2013-06-24 11:22:53 +0200 | [diff] [blame] | 206 | } |
| 207 | |
| 208 | mutex_unlock(&hotplug_lock); |
| 209 | |
| 210 | if (!run) |
| 211 | return; |
| 212 | |
| 213 | if (cb) |
| 214 | cb(dd->handle, event, dd->hp_context); |
| 215 | |
| 216 | dock_release_hotplug(dd); |
Len Brown | c8f7a62 | 2006-07-09 17:22:28 -0400 | [diff] [blame] | 217 | } |
| 218 | |
| 219 | /** |
| 220 | * find_dock_dependent_device - get a device dependent on this dock |
| 221 | * @ds: the dock station |
| 222 | * @handle: the acpi_handle of the device we want |
| 223 | * |
| 224 | * iterate over the dependent device list for this dock. If the |
| 225 | * dependent device matches the handle, return. |
| 226 | */ |
| 227 | static struct dock_dependent_device * |
| 228 | find_dock_dependent_device(struct dock_station *ds, acpi_handle handle) |
| 229 | { |
| 230 | struct dock_dependent_device *dd; |
| 231 | |
Jiang Liu | ed633e7 | 2013-06-29 00:24:35 +0800 | [diff] [blame] | 232 | list_for_each_entry(dd, &ds->dependent_devices, list) |
| 233 | if (handle == dd->handle) |
Len Brown | c8f7a62 | 2006-07-09 17:22:28 -0400 | [diff] [blame] | 234 | return dd; |
Jiang Liu | ed633e7 | 2013-06-29 00:24:35 +0800 | [diff] [blame] | 235 | |
Len Brown | c8f7a62 | 2006-07-09 17:22:28 -0400 | [diff] [blame] | 236 | return NULL; |
| 237 | } |
| 238 | |
| 239 | /***************************************************************************** |
| 240 | * Dock functions * |
| 241 | *****************************************************************************/ |
Jiang Liu | d423c08 | 2013-06-29 00:24:36 +0800 | [diff] [blame] | 242 | static int __init is_battery(acpi_handle handle) |
Shaohua Li | db350b0 | 2008-08-28 10:03:58 +0800 | [diff] [blame] | 243 | { |
| 244 | struct acpi_device_info *info; |
Shaohua Li | db350b0 | 2008-08-28 10:03:58 +0800 | [diff] [blame] | 245 | int ret = 1; |
| 246 | |
Bob Moore | 15b8dd5 | 2009-06-29 13:39:29 +0800 | [diff] [blame] | 247 | if (!ACPI_SUCCESS(acpi_get_object_info(handle, &info))) |
Shaohua Li | db350b0 | 2008-08-28 10:03:58 +0800 | [diff] [blame] | 248 | return 0; |
Shaohua Li | db350b0 | 2008-08-28 10:03:58 +0800 | [diff] [blame] | 249 | if (!(info->valid & ACPI_VALID_HID)) |
| 250 | ret = 0; |
| 251 | else |
Bob Moore | 15b8dd5 | 2009-06-29 13:39:29 +0800 | [diff] [blame] | 252 | ret = !strcmp("PNP0C0A", info->hardware_id.string); |
Shaohua Li | db350b0 | 2008-08-28 10:03:58 +0800 | [diff] [blame] | 253 | |
Bob Moore | 15b8dd5 | 2009-06-29 13:39:29 +0800 | [diff] [blame] | 254 | kfree(info); |
Shaohua Li | db350b0 | 2008-08-28 10:03:58 +0800 | [diff] [blame] | 255 | return ret; |
| 256 | } |
| 257 | |
Jiang Liu | c9b5471 | 2013-06-29 00:24:42 +0800 | [diff] [blame] | 258 | /* Check whether ACPI object is an ejectable battery or disk bay */ |
| 259 | static bool __init is_ejectable_bay(acpi_handle handle) |
Shaohua Li | db350b0 | 2008-08-28 10:03:58 +0800 | [diff] [blame] | 260 | { |
Jiang Liu | c9b5471 | 2013-06-29 00:24:42 +0800 | [diff] [blame] | 261 | if (acpi_has_method(handle, "_EJ0") && is_battery(handle)) |
| 262 | return true; |
Alex Chiang | 747479a | 2009-10-19 15:14:50 -0600 | [diff] [blame] | 263 | |
Jiang Liu | c9b5471 | 2013-06-29 00:24:42 +0800 | [diff] [blame] | 264 | return acpi_bay_match(handle); |
Shaohua Li | db350b0 | 2008-08-28 10:03:58 +0800 | [diff] [blame] | 265 | } |
| 266 | |
Len Brown | c8f7a62 | 2006-07-09 17:22:28 -0400 | [diff] [blame] | 267 | /** |
| 268 | * is_dock_device - see if a device is on a dock station |
| 269 | * @handle: acpi handle of the device |
| 270 | * |
| 271 | * If this device is either the dock station itself, |
| 272 | * or is a device dependent on the dock station, then it |
| 273 | * is a dock device |
| 274 | */ |
| 275 | int is_dock_device(acpi_handle handle) |
| 276 | { |
Shaohua Li | db350b0 | 2008-08-28 10:03:58 +0800 | [diff] [blame] | 277 | struct dock_station *dock_station; |
| 278 | |
| 279 | if (!dock_station_count) |
Len Brown | c8f7a62 | 2006-07-09 17:22:28 -0400 | [diff] [blame] | 280 | return 0; |
| 281 | |
Jiang Liu | c9b5471 | 2013-06-29 00:24:42 +0800 | [diff] [blame] | 282 | if (acpi_dock_match(handle)) |
Len Brown | c8f7a62 | 2006-07-09 17:22:28 -0400 | [diff] [blame] | 283 | return 1; |
Alex Chiang | 747479a | 2009-10-19 15:14:50 -0600 | [diff] [blame] | 284 | |
| 285 | list_for_each_entry(dock_station, &dock_stations, sibling) |
Shaohua Li | db350b0 | 2008-08-28 10:03:58 +0800 | [diff] [blame] | 286 | if (find_dock_dependent_device(dock_station, handle)) |
| 287 | return 1; |
Len Brown | c8f7a62 | 2006-07-09 17:22:28 -0400 | [diff] [blame] | 288 | |
| 289 | return 0; |
| 290 | } |
Len Brown | c8f7a62 | 2006-07-09 17:22:28 -0400 | [diff] [blame] | 291 | EXPORT_SYMBOL_GPL(is_dock_device); |
| 292 | |
| 293 | /** |
| 294 | * dock_present - see if the dock station is present. |
| 295 | * @ds: the dock station |
| 296 | * |
| 297 | * execute the _STA method. note that present does not |
| 298 | * imply that we are docked. |
| 299 | */ |
| 300 | static int dock_present(struct dock_station *ds) |
| 301 | { |
Matthew Wilcox | 27663c5 | 2008-10-10 02:22:59 -0400 | [diff] [blame] | 302 | unsigned long long sta; |
Len Brown | c8f7a62 | 2006-07-09 17:22:28 -0400 | [diff] [blame] | 303 | acpi_status status; |
| 304 | |
| 305 | if (ds) { |
| 306 | status = acpi_evaluate_integer(ds->handle, "_STA", NULL, &sta); |
| 307 | if (ACPI_SUCCESS(status) && sta) |
| 308 | return 1; |
| 309 | } |
| 310 | return 0; |
| 311 | } |
| 312 | |
Len Brown | c8f7a62 | 2006-07-09 17:22:28 -0400 | [diff] [blame] | 313 | /** |
| 314 | * dock_create_acpi_device - add new devices to acpi |
| 315 | * @handle - handle of the device to add |
| 316 | * |
| 317 | * This function will create a new acpi_device for the given |
| 318 | * handle if one does not exist already. This should cause |
| 319 | * acpi to scan for drivers for the given devices, and call |
| 320 | * matching driver's add routine. |
Len Brown | c8f7a62 | 2006-07-09 17:22:28 -0400 | [diff] [blame] | 321 | */ |
Jiang Liu | 472d963 | 2013-06-29 00:24:37 +0800 | [diff] [blame] | 322 | static void dock_create_acpi_device(acpi_handle handle) |
Len Brown | c8f7a62 | 2006-07-09 17:22:28 -0400 | [diff] [blame] | 323 | { |
Alex Chiang | 747479a | 2009-10-19 15:14:50 -0600 | [diff] [blame] | 324 | struct acpi_device *device; |
Len Brown | c8f7a62 | 2006-07-09 17:22:28 -0400 | [diff] [blame] | 325 | int ret; |
| 326 | |
| 327 | if (acpi_bus_get_device(handle, &device)) { |
| 328 | /* |
| 329 | * no device created for this object, |
| 330 | * so we should create one. |
| 331 | */ |
Rafael J. Wysocki | b8bd759 | 2013-01-19 01:27:35 +0100 | [diff] [blame] | 332 | ret = acpi_bus_scan(handle); |
Rafael J. Wysocki | 636458d | 2012-12-21 00:36:47 +0100 | [diff] [blame] | 333 | if (ret) |
Alex Chiang | 747479a | 2009-10-19 15:14:50 -0600 | [diff] [blame] | 334 | pr_debug("error adding bus, %x\n", -ret); |
Len Brown | c8f7a62 | 2006-07-09 17:22:28 -0400 | [diff] [blame] | 335 | } |
Len Brown | c8f7a62 | 2006-07-09 17:22:28 -0400 | [diff] [blame] | 336 | } |
| 337 | |
| 338 | /** |
| 339 | * dock_remove_acpi_device - remove the acpi_device struct from acpi |
| 340 | * @handle - the handle of the device to remove |
| 341 | * |
| 342 | * Tell acpi to remove the acpi_device. This should cause any loaded |
| 343 | * driver to have it's remove routine called. |
| 344 | */ |
| 345 | static void dock_remove_acpi_device(acpi_handle handle) |
| 346 | { |
| 347 | struct acpi_device *device; |
Len Brown | c8f7a62 | 2006-07-09 17:22:28 -0400 | [diff] [blame] | 348 | |
Rafael J. Wysocki | bfee26d | 2013-01-26 00:27:44 +0100 | [diff] [blame] | 349 | if (!acpi_bus_get_device(handle, &device)) |
| 350 | acpi_bus_trim(device); |
Len Brown | c8f7a62 | 2006-07-09 17:22:28 -0400 | [diff] [blame] | 351 | } |
| 352 | |
Len Brown | c8f7a62 | 2006-07-09 17:22:28 -0400 | [diff] [blame] | 353 | /** |
Rafael J. Wysocki | 37f9087 | 2013-06-30 23:46:42 +0200 | [diff] [blame] | 354 | * hot_remove_dock_devices - Remove dock station devices. |
| 355 | * @ds: Dock station. |
| 356 | */ |
| 357 | static void hot_remove_dock_devices(struct dock_station *ds) |
| 358 | { |
| 359 | struct dock_dependent_device *dd; |
| 360 | |
| 361 | /* |
| 362 | * Walk the list in reverse order so that devices that have been added |
| 363 | * last are removed first (in case there are some indirect dependencies |
| 364 | * between them). |
| 365 | */ |
| 366 | list_for_each_entry_reverse(dd, &ds->dependent_devices, list) |
| 367 | dock_hotplug_event(dd, ACPI_NOTIFY_EJECT_REQUEST, false); |
| 368 | |
| 369 | list_for_each_entry_reverse(dd, &ds->dependent_devices, list) |
| 370 | dock_remove_acpi_device(dd->handle); |
| 371 | } |
| 372 | |
| 373 | /** |
| 374 | * hotplug_dock_devices - Insert devices on a dock station. |
Len Brown | c8f7a62 | 2006-07-09 17:22:28 -0400 | [diff] [blame] | 375 | * @ds: the dock station |
Rafael J. Wysocki | 37f9087 | 2013-06-30 23:46:42 +0200 | [diff] [blame] | 376 | * @event: either bus check or device check request |
Len Brown | c8f7a62 | 2006-07-09 17:22:28 -0400 | [diff] [blame] | 377 | * |
| 378 | * Some devices on the dock station need to have drivers called |
| 379 | * to perform hotplug operations after a dock event has occurred. |
| 380 | * Traverse the list of dock devices that have registered a |
| 381 | * hotplug handler, and call the handler. |
| 382 | */ |
| 383 | static void hotplug_dock_devices(struct dock_station *ds, u32 event) |
| 384 | { |
| 385 | struct dock_dependent_device *dd; |
| 386 | |
Rafael J. Wysocki | f09ce74 | 2013-07-05 03:03:25 +0200 | [diff] [blame] | 387 | /* Call driver specific post-dock fixups. */ |
| 388 | list_for_each_entry(dd, &ds->dependent_devices, list) |
| 389 | dock_hotplug_event(dd, event, DOCK_CALL_FIXUP); |
| 390 | |
Rafael J. Wysocki | 37f9087 | 2013-06-30 23:46:42 +0200 | [diff] [blame] | 391 | /* Call driver specific hotplug functions. */ |
Rafael J. Wysocki | 21a3101 | 2013-06-24 11:22:53 +0200 | [diff] [blame] | 392 | list_for_each_entry(dd, &ds->dependent_devices, list) |
Rafael J. Wysocki | f09ce74 | 2013-07-05 03:03:25 +0200 | [diff] [blame] | 393 | dock_hotplug_event(dd, event, DOCK_CALL_HANDLER); |
Len Brown | c8f7a62 | 2006-07-09 17:22:28 -0400 | [diff] [blame] | 394 | |
| 395 | /* |
Rafael J. Wysocki | 37f9087 | 2013-06-30 23:46:42 +0200 | [diff] [blame] | 396 | * Now make sure that an acpi_device is created for each dependent |
| 397 | * device. That will cause scan handlers to be attached to device |
| 398 | * objects or acpi_drivers to be stopped/started if they are present. |
Len Brown | c8f7a62 | 2006-07-09 17:22:28 -0400 | [diff] [blame] | 399 | */ |
Rafael J. Wysocki | 37f9087 | 2013-06-30 23:46:42 +0200 | [diff] [blame] | 400 | list_for_each_entry(dd, &ds->dependent_devices, list) |
| 401 | dock_create_acpi_device(dd->handle); |
Len Brown | c8f7a62 | 2006-07-09 17:22:28 -0400 | [diff] [blame] | 402 | } |
| 403 | |
| 404 | static void dock_event(struct dock_station *ds, u32 event, int num) |
| 405 | { |
Shaohua Li | db350b0 | 2008-08-28 10:03:58 +0800 | [diff] [blame] | 406 | struct device *dev = &ds->dock_device->dev; |
Holger Macht | 66b5682 | 2007-08-10 13:10:32 -0700 | [diff] [blame] | 407 | char event_string[13]; |
Kristen Carlson Accardi | 79a8f70 | 2007-05-09 15:10:22 -0700 | [diff] [blame] | 408 | char *envp[] = { event_string, NULL }; |
Shaohua Li | 1253f7a | 2008-08-28 10:06:16 +0800 | [diff] [blame] | 409 | struct dock_dependent_device *dd; |
Kristen Carlson Accardi | 79a8f70 | 2007-05-09 15:10:22 -0700 | [diff] [blame] | 410 | |
| 411 | if (num == UNDOCK_EVENT) |
Holger Macht | 66b5682 | 2007-08-10 13:10:32 -0700 | [diff] [blame] | 412 | sprintf(event_string, "EVENT=undock"); |
Kristen Carlson Accardi | 79a8f70 | 2007-05-09 15:10:22 -0700 | [diff] [blame] | 413 | else |
Holger Macht | 66b5682 | 2007-08-10 13:10:32 -0700 | [diff] [blame] | 414 | sprintf(event_string, "EVENT=dock"); |
Kristen Carlson Accardi | 79a8f70 | 2007-05-09 15:10:22 -0700 | [diff] [blame] | 415 | |
Kristen Carlson Accardi | 5669021 | 2006-08-01 14:59:19 -0700 | [diff] [blame] | 416 | /* |
Kristen Carlson Accardi | 8ea86e0 | 2006-12-11 12:05:08 -0800 | [diff] [blame] | 417 | * Indicate that the status of the dock station has |
| 418 | * changed. |
Kristen Carlson Accardi | 5669021 | 2006-08-01 14:59:19 -0700 | [diff] [blame] | 419 | */ |
Shaohua Li | 1253f7a | 2008-08-28 10:06:16 +0800 | [diff] [blame] | 420 | if (num == DOCK_EVENT) |
| 421 | kobject_uevent_env(&dev->kobj, KOBJ_CHANGE, envp); |
| 422 | |
Rafael J. Wysocki | 21a3101 | 2013-06-24 11:22:53 +0200 | [diff] [blame] | 423 | list_for_each_entry(dd, &ds->dependent_devices, list) |
Rafael J. Wysocki | f09ce74 | 2013-07-05 03:03:25 +0200 | [diff] [blame] | 424 | dock_hotplug_event(dd, event, DOCK_CALL_UEVENT); |
Alex Chiang | 747479a | 2009-10-19 15:14:50 -0600 | [diff] [blame] | 425 | |
Shaohua Li | 1253f7a | 2008-08-28 10:06:16 +0800 | [diff] [blame] | 426 | if (num != DOCK_EVENT) |
| 427 | kobject_uevent_env(&dev->kobj, KOBJ_CHANGE, envp); |
Len Brown | c8f7a62 | 2006-07-09 17:22:28 -0400 | [diff] [blame] | 428 | } |
| 429 | |
| 430 | /** |
Len Brown | c8f7a62 | 2006-07-09 17:22:28 -0400 | [diff] [blame] | 431 | * handle_dock - handle a dock event |
| 432 | * @ds: the dock station |
| 433 | * @dock: to dock, or undock - that is the question |
| 434 | * |
| 435 | * Execute the _DCK method in response to an acpi event |
| 436 | */ |
| 437 | static void handle_dock(struct dock_station *ds, int dock) |
| 438 | { |
| 439 | acpi_status status; |
| 440 | struct acpi_object_list arg_list; |
| 441 | union acpi_object arg; |
Zhang Rui | 6a868e1 | 2013-09-03 08:32:10 +0800 | [diff] [blame] | 442 | unsigned long long value; |
Len Brown | c8f7a62 | 2006-07-09 17:22:28 -0400 | [diff] [blame] | 443 | |
Toshi Kani | cd73018 | 2012-11-20 23:42:30 +0000 | [diff] [blame] | 444 | acpi_handle_info(ds->handle, "%s\n", dock ? "docking" : "undocking"); |
Len Brown | c8f7a62 | 2006-07-09 17:22:28 -0400 | [diff] [blame] | 445 | |
| 446 | /* _DCK method has one argument */ |
| 447 | arg_list.count = 1; |
| 448 | arg_list.pointer = &arg; |
| 449 | arg.type = ACPI_TYPE_INTEGER; |
| 450 | arg.integer.value = dock; |
Zhang Rui | 6a868e1 | 2013-09-03 08:32:10 +0800 | [diff] [blame] | 451 | status = acpi_evaluate_integer(ds->handle, "_DCK", &arg_list, &value); |
Shaohua Li | db350b0 | 2008-08-28 10:03:58 +0800 | [diff] [blame] | 452 | if (ACPI_FAILURE(status) && status != AE_NOT_FOUND) |
Toshi Kani | cd73018 | 2012-11-20 23:42:30 +0000 | [diff] [blame] | 453 | acpi_handle_err(ds->handle, "Failed to execute _DCK (0x%x)\n", |
| 454 | status); |
Len Brown | c8f7a62 | 2006-07-09 17:22:28 -0400 | [diff] [blame] | 455 | } |
| 456 | |
| 457 | static inline void dock(struct dock_station *ds) |
| 458 | { |
| 459 | handle_dock(ds, 1); |
| 460 | } |
| 461 | |
| 462 | static inline void undock(struct dock_station *ds) |
| 463 | { |
| 464 | handle_dock(ds, 0); |
| 465 | } |
| 466 | |
| 467 | static inline void begin_dock(struct dock_station *ds) |
| 468 | { |
| 469 | ds->flags |= DOCK_DOCKING; |
| 470 | } |
| 471 | |
| 472 | static inline void complete_dock(struct dock_station *ds) |
| 473 | { |
| 474 | ds->flags &= ~(DOCK_DOCKING); |
| 475 | ds->last_dock_time = jiffies; |
| 476 | } |
| 477 | |
Kristen Carlson Accardi | a0cd35f | 2007-05-09 15:08:15 -0700 | [diff] [blame] | 478 | static inline void begin_undock(struct dock_station *ds) |
| 479 | { |
| 480 | ds->flags |= DOCK_UNDOCKING; |
| 481 | } |
| 482 | |
| 483 | static inline void complete_undock(struct dock_station *ds) |
| 484 | { |
| 485 | ds->flags &= ~(DOCK_UNDOCKING); |
| 486 | } |
| 487 | |
Len Brown | c8f7a62 | 2006-07-09 17:22:28 -0400 | [diff] [blame] | 488 | /** |
| 489 | * dock_in_progress - see if we are in the middle of handling a dock event |
| 490 | * @ds: the dock station |
| 491 | * |
| 492 | * Sometimes while docking, false dock events can be sent to the driver |
| 493 | * because good connections aren't made or some other reason. Ignore these |
| 494 | * if we are in the middle of doing something. |
| 495 | */ |
| 496 | static int dock_in_progress(struct dock_station *ds) |
| 497 | { |
| 498 | if ((ds->flags & DOCK_DOCKING) || |
| 499 | time_before(jiffies, (ds->last_dock_time + HZ))) |
| 500 | return 1; |
| 501 | return 0; |
| 502 | } |
| 503 | |
| 504 | /** |
Len Brown | c8f7a62 | 2006-07-09 17:22:28 -0400 | [diff] [blame] | 505 | * register_hotplug_dock_device - register a hotplug function |
| 506 | * @handle: the handle of the device |
Shaohua Li | 1253f7a | 2008-08-28 10:06:16 +0800 | [diff] [blame] | 507 | * @ops: handlers to call after docking |
Len Brown | c8f7a62 | 2006-07-09 17:22:28 -0400 | [diff] [blame] | 508 | * @context: device specific data |
Rafael J. Wysocki | 21a3101 | 2013-06-24 11:22:53 +0200 | [diff] [blame] | 509 | * @init: Optional initialization routine to run after registration |
| 510 | * @release: Optional release routine to run on unregistration |
Len Brown | c8f7a62 | 2006-07-09 17:22:28 -0400 | [diff] [blame] | 511 | * |
| 512 | * If a driver would like to perform a hotplug operation after a dock |
| 513 | * event, they can register an acpi_notifiy_handler to be called by |
| 514 | * the dock driver after _DCK is executed. |
| 515 | */ |
Rafael J. Wysocki | 21a3101 | 2013-06-24 11:22:53 +0200 | [diff] [blame] | 516 | int register_hotplug_dock_device(acpi_handle handle, |
| 517 | const struct acpi_dock_ops *ops, void *context, |
| 518 | void (*init)(void *), void (*release)(void *)) |
Len Brown | c8f7a62 | 2006-07-09 17:22:28 -0400 | [diff] [blame] | 519 | { |
| 520 | struct dock_dependent_device *dd; |
Shaohua Li | db350b0 | 2008-08-28 10:03:58 +0800 | [diff] [blame] | 521 | struct dock_station *dock_station; |
Shaohua Li | 61b8369 | 2008-08-28 10:07:14 +0800 | [diff] [blame] | 522 | int ret = -EINVAL; |
Len Brown | c8f7a62 | 2006-07-09 17:22:28 -0400 | [diff] [blame] | 523 | |
Rafael J. Wysocki | 21a3101 | 2013-06-24 11:22:53 +0200 | [diff] [blame] | 524 | if (WARN_ON(!context)) |
| 525 | return -EINVAL; |
| 526 | |
Shaohua Li | db350b0 | 2008-08-28 10:03:58 +0800 | [diff] [blame] | 527 | if (!dock_station_count) |
Len Brown | c8f7a62 | 2006-07-09 17:22:28 -0400 | [diff] [blame] | 528 | return -ENODEV; |
| 529 | |
| 530 | /* |
| 531 | * make sure this handle is for a device dependent on the dock, |
| 532 | * this would include the dock station itself |
| 533 | */ |
Alex Chiang | 50d716e | 2009-10-01 11:59:23 -0600 | [diff] [blame] | 534 | list_for_each_entry(dock_station, &dock_stations, sibling) { |
Shaohua Li | 61b8369 | 2008-08-28 10:07:14 +0800 | [diff] [blame] | 535 | /* |
| 536 | * An ATA bay can be in a dock and itself can be ejected |
Daniel Mack | 3ad2f3f | 2010-02-03 08:01:28 +0800 | [diff] [blame] | 537 | * separately, so there are two 'dock stations' which need the |
Shaohua Li | 61b8369 | 2008-08-28 10:07:14 +0800 | [diff] [blame] | 538 | * ops |
| 539 | */ |
Shaohua Li | db350b0 | 2008-08-28 10:03:58 +0800 | [diff] [blame] | 540 | dd = find_dock_dependent_device(dock_station, handle); |
Rafael J. Wysocki | 21a3101 | 2013-06-24 11:22:53 +0200 | [diff] [blame] | 541 | if (dd && !dock_init_hotplug(dd, ops, context, init, release)) |
Shaohua Li | 61b8369 | 2008-08-28 10:07:14 +0800 | [diff] [blame] | 542 | ret = 0; |
Len Brown | c8f7a62 | 2006-07-09 17:22:28 -0400 | [diff] [blame] | 543 | } |
| 544 | |
Shaohua Li | 61b8369 | 2008-08-28 10:07:14 +0800 | [diff] [blame] | 545 | return ret; |
Len Brown | c8f7a62 | 2006-07-09 17:22:28 -0400 | [diff] [blame] | 546 | } |
Len Brown | c8f7a62 | 2006-07-09 17:22:28 -0400 | [diff] [blame] | 547 | EXPORT_SYMBOL_GPL(register_hotplug_dock_device); |
| 548 | |
| 549 | /** |
| 550 | * unregister_hotplug_dock_device - remove yourself from the hotplug list |
| 551 | * @handle: the acpi handle of the device |
| 552 | */ |
| 553 | void unregister_hotplug_dock_device(acpi_handle handle) |
| 554 | { |
| 555 | struct dock_dependent_device *dd; |
Shaohua Li | db350b0 | 2008-08-28 10:03:58 +0800 | [diff] [blame] | 556 | struct dock_station *dock_station; |
Len Brown | c8f7a62 | 2006-07-09 17:22:28 -0400 | [diff] [blame] | 557 | |
Shaohua Li | db350b0 | 2008-08-28 10:03:58 +0800 | [diff] [blame] | 558 | if (!dock_station_count) |
Len Brown | c8f7a62 | 2006-07-09 17:22:28 -0400 | [diff] [blame] | 559 | return; |
| 560 | |
Alex Chiang | 50d716e | 2009-10-01 11:59:23 -0600 | [diff] [blame] | 561 | list_for_each_entry(dock_station, &dock_stations, sibling) { |
Shaohua Li | db350b0 | 2008-08-28 10:03:58 +0800 | [diff] [blame] | 562 | dd = find_dock_dependent_device(dock_station, handle); |
| 563 | if (dd) |
Rafael J. Wysocki | 21a3101 | 2013-06-24 11:22:53 +0200 | [diff] [blame] | 564 | dock_release_hotplug(dd); |
Shaohua Li | db350b0 | 2008-08-28 10:03:58 +0800 | [diff] [blame] | 565 | } |
Len Brown | c8f7a62 | 2006-07-09 17:22:28 -0400 | [diff] [blame] | 566 | } |
Len Brown | c8f7a62 | 2006-07-09 17:22:28 -0400 | [diff] [blame] | 567 | EXPORT_SYMBOL_GPL(unregister_hotplug_dock_device); |
| 568 | |
| 569 | /** |
brandon@ifup.org | c80fdbe | 2006-12-04 14:49:58 -0800 | [diff] [blame] | 570 | * handle_eject_request - handle an undock request checking for error conditions |
| 571 | * |
| 572 | * Check to make sure the dock device is still present, then undock and |
| 573 | * hotremove all the devices that may need removing. |
| 574 | */ |
| 575 | static int handle_eject_request(struct dock_station *ds, u32 event) |
| 576 | { |
brandon@ifup.org | c80fdbe | 2006-12-04 14:49:58 -0800 | [diff] [blame] | 577 | if (dock_in_progress(ds)) |
| 578 | return -EBUSY; |
| 579 | |
| 580 | /* |
| 581 | * here we need to generate the undock |
| 582 | * event prior to actually doing the undock |
| 583 | * so that the device struct still exists. |
Holger Macht | afd7301 | 2008-08-06 17:56:01 +0200 | [diff] [blame] | 584 | * Also, even send the dock event if the |
| 585 | * device is not present anymore |
brandon@ifup.org | c80fdbe | 2006-12-04 14:49:58 -0800 | [diff] [blame] | 586 | */ |
| 587 | dock_event(ds, event, UNDOCK_EVENT); |
Holger Macht | afd7301 | 2008-08-06 17:56:01 +0200 | [diff] [blame] | 588 | |
Rafael J. Wysocki | 37f9087 | 2013-06-30 23:46:42 +0200 | [diff] [blame] | 589 | hot_remove_dock_devices(ds); |
brandon@ifup.org | c80fdbe | 2006-12-04 14:49:58 -0800 | [diff] [blame] | 590 | undock(ds); |
Jiang Liu | c9b5471 | 2013-06-29 00:24:42 +0800 | [diff] [blame] | 591 | acpi_evaluate_lck(ds->handle, 0); |
| 592 | acpi_evaluate_ej0(ds->handle); |
brandon@ifup.org | c80fdbe | 2006-12-04 14:49:58 -0800 | [diff] [blame] | 593 | if (dock_present(ds)) { |
Toshi Kani | cd73018 | 2012-11-20 23:42:30 +0000 | [diff] [blame] | 594 | acpi_handle_err(ds->handle, "Unable to undock!\n"); |
brandon@ifup.org | c80fdbe | 2006-12-04 14:49:58 -0800 | [diff] [blame] | 595 | return -EBUSY; |
| 596 | } |
Kristen Carlson Accardi | a0cd35f | 2007-05-09 15:08:15 -0700 | [diff] [blame] | 597 | complete_undock(ds); |
brandon@ifup.org | c80fdbe | 2006-12-04 14:49:58 -0800 | [diff] [blame] | 598 | return 0; |
| 599 | } |
| 600 | |
| 601 | /** |
Len Brown | c8f7a62 | 2006-07-09 17:22:28 -0400 | [diff] [blame] | 602 | * dock_notify - act upon an acpi dock notification |
Rafael J. Wysocki | 59401cc | 2013-06-30 23:48:49 +0200 | [diff] [blame] | 603 | * @ds: dock station |
Len Brown | c8f7a62 | 2006-07-09 17:22:28 -0400 | [diff] [blame] | 604 | * @event: the acpi event |
Len Brown | c8f7a62 | 2006-07-09 17:22:28 -0400 | [diff] [blame] | 605 | * |
| 606 | * If we are notified to dock, then check to see if the dock is |
| 607 | * present and then dock. Notify all drivers of the dock event, |
brandon@ifup.org | c80fdbe | 2006-12-04 14:49:58 -0800 | [diff] [blame] | 608 | * and then hotplug and devices that may need hotplugging. |
Len Brown | c8f7a62 | 2006-07-09 17:22:28 -0400 | [diff] [blame] | 609 | */ |
Rafael J. Wysocki | 59401cc | 2013-06-30 23:48:49 +0200 | [diff] [blame] | 610 | static void dock_notify(struct dock_station *ds, u32 event) |
Len Brown | c8f7a62 | 2006-07-09 17:22:28 -0400 | [diff] [blame] | 611 | { |
Rafael J. Wysocki | 59401cc | 2013-06-30 23:48:49 +0200 | [diff] [blame] | 612 | acpi_handle handle = ds->handle; |
| 613 | struct acpi_device *ad; |
Shaohua Li | db350b0 | 2008-08-28 10:03:58 +0800 | [diff] [blame] | 614 | int surprise_removal = 0; |
Len Brown | c8f7a62 | 2006-07-09 17:22:28 -0400 | [diff] [blame] | 615 | |
Shaohua Li | db350b0 | 2008-08-28 10:03:58 +0800 | [diff] [blame] | 616 | /* |
| 617 | * According to acpi spec 3.0a, if a DEVICE_CHECK notification |
| 618 | * is sent and _DCK is present, it is assumed to mean an undock |
| 619 | * request. |
| 620 | */ |
| 621 | if ((ds->flags & DOCK_IS_DOCK) && event == ACPI_NOTIFY_DEVICE_CHECK) |
| 622 | event = ACPI_NOTIFY_EJECT_REQUEST; |
| 623 | |
| 624 | /* |
| 625 | * dock station: BUS_CHECK - docked or surprise removal |
| 626 | * DEVICE_CHECK - undocked |
| 627 | * other device: BUS_CHECK/DEVICE_CHECK - added or surprise removal |
| 628 | * |
| 629 | * To simplify event handling, dock dependent device handler always |
| 630 | * get ACPI_NOTIFY_BUS_CHECK/ACPI_NOTIFY_DEVICE_CHECK for add and |
| 631 | * ACPI_NOTIFY_EJECT_REQUEST for removal |
| 632 | */ |
Len Brown | c8f7a62 | 2006-07-09 17:22:28 -0400 | [diff] [blame] | 633 | switch (event) { |
| 634 | case ACPI_NOTIFY_BUS_CHECK: |
Shaohua Li | db350b0 | 2008-08-28 10:03:58 +0800 | [diff] [blame] | 635 | case ACPI_NOTIFY_DEVICE_CHECK: |
Rafael J. Wysocki | 59401cc | 2013-06-30 23:48:49 +0200 | [diff] [blame] | 636 | if (!dock_in_progress(ds) && acpi_bus_get_device(handle, &ad)) { |
Len Brown | c8f7a62 | 2006-07-09 17:22:28 -0400 | [diff] [blame] | 637 | begin_dock(ds); |
| 638 | dock(ds); |
| 639 | if (!dock_present(ds)) { |
Toshi Kani | cd73018 | 2012-11-20 23:42:30 +0000 | [diff] [blame] | 640 | acpi_handle_err(handle, "Unable to dock!\n"); |
Shaohua Li | 8b59560 | 2008-08-28 10:02:03 +0800 | [diff] [blame] | 641 | complete_dock(ds); |
Len Brown | c8f7a62 | 2006-07-09 17:22:28 -0400 | [diff] [blame] | 642 | break; |
| 643 | } |
Len Brown | c8f7a62 | 2006-07-09 17:22:28 -0400 | [diff] [blame] | 644 | hotplug_dock_devices(ds, event); |
| 645 | complete_dock(ds); |
| 646 | dock_event(ds, event, DOCK_EVENT); |
Jiang Liu | c9b5471 | 2013-06-29 00:24:42 +0800 | [diff] [blame] | 647 | acpi_evaluate_lck(ds->handle, 1); |
Lin Ming | 3a37898 | 2010-12-13 13:36:15 +0800 | [diff] [blame] | 648 | acpi_update_all_gpes(); |
Shaohua Li | db350b0 | 2008-08-28 10:03:58 +0800 | [diff] [blame] | 649 | break; |
Len Brown | c8f7a62 | 2006-07-09 17:22:28 -0400 | [diff] [blame] | 650 | } |
Shaohua Li | db350b0 | 2008-08-28 10:03:58 +0800 | [diff] [blame] | 651 | if (dock_present(ds) || dock_in_progress(ds)) |
| 652 | break; |
| 653 | /* This is a surprise removal */ |
| 654 | surprise_removal = 1; |
| 655 | event = ACPI_NOTIFY_EJECT_REQUEST; |
| 656 | /* Fall back */ |
Len Brown | c8f7a62 | 2006-07-09 17:22:28 -0400 | [diff] [blame] | 657 | case ACPI_NOTIFY_EJECT_REQUEST: |
Kristen Carlson Accardi | a0cd35f | 2007-05-09 15:08:15 -0700 | [diff] [blame] | 658 | begin_undock(ds); |
Shaohua Li | f730ae1 | 2008-08-28 10:05:45 +0800 | [diff] [blame] | 659 | if ((immediate_undock && !(ds->flags & DOCK_IS_ATA)) |
| 660 | || surprise_removal) |
Kristen Carlson Accardi | a0cd35f | 2007-05-09 15:08:15 -0700 | [diff] [blame] | 661 | handle_eject_request(ds, event); |
| 662 | else |
| 663 | dock_event(ds, event, UNDOCK_EVENT); |
Len Brown | c8f7a62 | 2006-07-09 17:22:28 -0400 | [diff] [blame] | 664 | break; |
| 665 | default: |
Toshi Kani | cd73018 | 2012-11-20 23:42:30 +0000 | [diff] [blame] | 666 | acpi_handle_err(handle, "Unknown dock event %d\n", event); |
Len Brown | c8f7a62 | 2006-07-09 17:22:28 -0400 | [diff] [blame] | 667 | } |
| 668 | } |
| 669 | |
Rafael J. Wysocki | 7b98118 | 2013-11-07 01:45:40 +0100 | [diff] [blame] | 670 | static void acpi_dock_deferred_cb(void *data, u32 event) |
Zhang Rui | 19cd847 | 2008-08-28 10:05:06 +0800 | [diff] [blame] | 671 | { |
Rafael J. Wysocki | 3757b94 | 2013-02-13 14:36:47 +0100 | [diff] [blame] | 672 | acpi_scan_lock_acquire(); |
Rafael J. Wysocki | 7b98118 | 2013-11-07 01:45:40 +0100 | [diff] [blame] | 673 | dock_notify(data, event); |
Rafael J. Wysocki | 3757b94 | 2013-02-13 14:36:47 +0100 | [diff] [blame] | 674 | acpi_scan_lock_release(); |
Zhang Rui | 19cd847 | 2008-08-28 10:05:06 +0800 | [diff] [blame] | 675 | } |
| 676 | |
Rafael J. Wysocki | 59401cc | 2013-06-30 23:48:49 +0200 | [diff] [blame] | 677 | static void dock_notify_handler(acpi_handle handle, u32 event, void *data) |
Shaohua Li | 6bd00a6 | 2008-08-28 10:04:29 +0800 | [diff] [blame] | 678 | { |
Shaohua Li | 6bd00a6 | 2008-08-28 10:04:29 +0800 | [diff] [blame] | 679 | if (event != ACPI_NOTIFY_BUS_CHECK && event != ACPI_NOTIFY_DEVICE_CHECK |
| 680 | && event != ACPI_NOTIFY_EJECT_REQUEST) |
Rafael J. Wysocki | 59401cc | 2013-06-30 23:48:49 +0200 | [diff] [blame] | 681 | return; |
Rafael J. Wysocki | 3757b94 | 2013-02-13 14:36:47 +0100 | [diff] [blame] | 682 | |
Rafael J. Wysocki | 7b98118 | 2013-11-07 01:45:40 +0100 | [diff] [blame] | 683 | acpi_hotplug_execute(acpi_dock_deferred_cb, data, event); |
Shaohua Li | 6bd00a6 | 2008-08-28 10:04:29 +0800 | [diff] [blame] | 684 | } |
| 685 | |
Len Brown | c8f7a62 | 2006-07-09 17:22:28 -0400 | [diff] [blame] | 686 | /** |
| 687 | * find_dock_devices - find devices on the dock station |
| 688 | * @handle: the handle of the device we are examining |
| 689 | * @lvl: unused |
| 690 | * @context: the dock station private data |
| 691 | * @rv: unused |
| 692 | * |
| 693 | * This function is called by acpi_walk_namespace. It will |
| 694 | * check to see if an object has an _EJD method. If it does, then it |
| 695 | * will see if it is dependent on the dock station. |
| 696 | */ |
Rafael J. Wysocki | 96c0a4d | 2013-06-30 23:46:02 +0200 | [diff] [blame] | 697 | static acpi_status __init find_dock_devices(acpi_handle handle, u32 lvl, |
| 698 | void *context, void **rv) |
Len Brown | c8f7a62 | 2006-07-09 17:22:28 -0400 | [diff] [blame] | 699 | { |
Jan Engelhardt | 50dd096 | 2006-10-01 00:28:50 +0200 | [diff] [blame] | 700 | struct dock_station *ds = context; |
Rafael J. Wysocki | 96c0a4d | 2013-06-30 23:46:02 +0200 | [diff] [blame] | 701 | acpi_handle ejd = NULL; |
Len Brown | c8f7a62 | 2006-07-09 17:22:28 -0400 | [diff] [blame] | 702 | |
Rafael J. Wysocki | 96c0a4d | 2013-06-30 23:46:02 +0200 | [diff] [blame] | 703 | acpi_bus_get_ejd(handle, &ejd); |
| 704 | if (ejd == ds->handle) |
Alex Chiang | f69cfdd | 2009-10-19 15:14:29 -0600 | [diff] [blame] | 705 | add_dock_dependent_device(ds, handle); |
| 706 | |
Len Brown | c8f7a62 | 2006-07-09 17:22:28 -0400 | [diff] [blame] | 707 | return AE_OK; |
| 708 | } |
| 709 | |
brandon@ifup.org | c80fdbe | 2006-12-04 14:49:58 -0800 | [diff] [blame] | 710 | /* |
| 711 | * show_docked - read method for "docked" file in sysfs |
| 712 | */ |
| 713 | static ssize_t show_docked(struct device *dev, |
| 714 | struct device_attribute *attr, char *buf) |
| 715 | { |
Holger Macht | fc5a9f8 | 2009-01-20 12:18:24 +0100 | [diff] [blame] | 716 | struct acpi_device *tmp; |
| 717 | |
Alex Chiang | fe06fba | 2009-10-19 15:14:45 -0600 | [diff] [blame] | 718 | struct dock_station *dock_station = dev->platform_data; |
brandon@ifup.org | c80fdbe | 2006-12-04 14:49:58 -0800 | [diff] [blame] | 719 | |
Yasuaki Ishimatsu | 02df734 | 2013-01-31 03:23:53 +0000 | [diff] [blame] | 720 | if (!acpi_bus_get_device(dock_station->handle, &tmp)) |
Holger Macht | fc5a9f8 | 2009-01-20 12:18:24 +0100 | [diff] [blame] | 721 | return snprintf(buf, PAGE_SIZE, "1\n"); |
| 722 | return snprintf(buf, PAGE_SIZE, "0\n"); |
brandon@ifup.org | c80fdbe | 2006-12-04 14:49:58 -0800 | [diff] [blame] | 723 | } |
Adrian Bunk | e5685b9 | 2007-10-24 18:24:42 +0200 | [diff] [blame] | 724 | static DEVICE_ATTR(docked, S_IRUGO, show_docked, NULL); |
brandon@ifup.org | c80fdbe | 2006-12-04 14:49:58 -0800 | [diff] [blame] | 725 | |
| 726 | /* |
Kristen Carlson Accardi | a0cd35f | 2007-05-09 15:08:15 -0700 | [diff] [blame] | 727 | * show_flags - read method for flags file in sysfs |
| 728 | */ |
| 729 | static ssize_t show_flags(struct device *dev, |
| 730 | struct device_attribute *attr, char *buf) |
| 731 | { |
Alex Chiang | fe06fba | 2009-10-19 15:14:45 -0600 | [diff] [blame] | 732 | struct dock_station *dock_station = dev->platform_data; |
Kristen Carlson Accardi | a0cd35f | 2007-05-09 15:08:15 -0700 | [diff] [blame] | 733 | return snprintf(buf, PAGE_SIZE, "%d\n", dock_station->flags); |
| 734 | |
| 735 | } |
Adrian Bunk | e5685b9 | 2007-10-24 18:24:42 +0200 | [diff] [blame] | 736 | static DEVICE_ATTR(flags, S_IRUGO, show_flags, NULL); |
Kristen Carlson Accardi | a0cd35f | 2007-05-09 15:08:15 -0700 | [diff] [blame] | 737 | |
| 738 | /* |
brandon@ifup.org | c80fdbe | 2006-12-04 14:49:58 -0800 | [diff] [blame] | 739 | * write_undock - write method for "undock" file in sysfs |
| 740 | */ |
| 741 | static ssize_t write_undock(struct device *dev, struct device_attribute *attr, |
| 742 | const char *buf, size_t count) |
| 743 | { |
| 744 | int ret; |
Alex Chiang | fe06fba | 2009-10-19 15:14:45 -0600 | [diff] [blame] | 745 | struct dock_station *dock_station = dev->platform_data; |
brandon@ifup.org | c80fdbe | 2006-12-04 14:49:58 -0800 | [diff] [blame] | 746 | |
| 747 | if (!count) |
| 748 | return -EINVAL; |
| 749 | |
Rafael J. Wysocki | 8112006 | 2013-06-16 00:38:30 +0200 | [diff] [blame] | 750 | acpi_scan_lock_acquire(); |
Holger Macht | 9171f83 | 2008-03-12 01:07:27 +0100 | [diff] [blame] | 751 | begin_undock(dock_station); |
brandon@ifup.org | c80fdbe | 2006-12-04 14:49:58 -0800 | [diff] [blame] | 752 | ret = handle_eject_request(dock_station, ACPI_NOTIFY_EJECT_REQUEST); |
Rafael J. Wysocki | 8112006 | 2013-06-16 00:38:30 +0200 | [diff] [blame] | 753 | acpi_scan_lock_release(); |
brandon@ifup.org | c80fdbe | 2006-12-04 14:49:58 -0800 | [diff] [blame] | 754 | return ret ? ret: count; |
| 755 | } |
Adrian Bunk | e5685b9 | 2007-10-24 18:24:42 +0200 | [diff] [blame] | 756 | static DEVICE_ATTR(undock, S_IWUSR, NULL, write_undock); |
brandon@ifup.org | c80fdbe | 2006-12-04 14:49:58 -0800 | [diff] [blame] | 757 | |
Ilya A. Volynets-Evenbakh | ac122bb | 2007-02-19 15:19:31 -0800 | [diff] [blame] | 758 | /* |
| 759 | * show_dock_uid - read method for "uid" file in sysfs |
| 760 | */ |
| 761 | static ssize_t show_dock_uid(struct device *dev, |
| 762 | struct device_attribute *attr, char *buf) |
| 763 | { |
Matthew Wilcox | 27663c5 | 2008-10-10 02:22:59 -0400 | [diff] [blame] | 764 | unsigned long long lbuf; |
Alex Chiang | fe06fba | 2009-10-19 15:14:45 -0600 | [diff] [blame] | 765 | struct dock_station *dock_station = dev->platform_data; |
Kristen Carlson Accardi | 38ff4ff | 2007-05-09 15:04:24 -0700 | [diff] [blame] | 766 | acpi_status status = acpi_evaluate_integer(dock_station->handle, |
| 767 | "_UID", NULL, &lbuf); |
| 768 | if (ACPI_FAILURE(status)) |
Ilya A. Volynets-Evenbakh | ac122bb | 2007-02-19 15:19:31 -0800 | [diff] [blame] | 769 | return 0; |
Kristen Carlson Accardi | 38ff4ff | 2007-05-09 15:04:24 -0700 | [diff] [blame] | 770 | |
Matthew Wilcox | 27663c5 | 2008-10-10 02:22:59 -0400 | [diff] [blame] | 771 | return snprintf(buf, PAGE_SIZE, "%llx\n", lbuf); |
Ilya A. Volynets-Evenbakh | ac122bb | 2007-02-19 15:19:31 -0800 | [diff] [blame] | 772 | } |
Adrian Bunk | e5685b9 | 2007-10-24 18:24:42 +0200 | [diff] [blame] | 773 | static DEVICE_ATTR(uid, S_IRUGO, show_dock_uid, NULL); |
Ilya A. Volynets-Evenbakh | ac122bb | 2007-02-19 15:19:31 -0800 | [diff] [blame] | 774 | |
Shaohua Li | 8652b00 | 2008-08-28 10:07:45 +0800 | [diff] [blame] | 775 | static ssize_t show_dock_type(struct device *dev, |
| 776 | struct device_attribute *attr, char *buf) |
| 777 | { |
Alex Chiang | fe06fba | 2009-10-19 15:14:45 -0600 | [diff] [blame] | 778 | struct dock_station *dock_station = dev->platform_data; |
Shaohua Li | 8652b00 | 2008-08-28 10:07:45 +0800 | [diff] [blame] | 779 | char *type; |
| 780 | |
| 781 | if (dock_station->flags & DOCK_IS_DOCK) |
| 782 | type = "dock_station"; |
| 783 | else if (dock_station->flags & DOCK_IS_ATA) |
| 784 | type = "ata_bay"; |
| 785 | else if (dock_station->flags & DOCK_IS_BAT) |
| 786 | type = "battery_bay"; |
| 787 | else |
| 788 | type = "unknown"; |
| 789 | |
| 790 | return snprintf(buf, PAGE_SIZE, "%s\n", type); |
| 791 | } |
| 792 | static DEVICE_ATTR(type, S_IRUGO, show_dock_type, NULL); |
| 793 | |
Alex Chiang | 5f46c2f | 2009-10-19 15:14:24 -0600 | [diff] [blame] | 794 | static struct attribute *dock_attributes[] = { |
| 795 | &dev_attr_docked.attr, |
| 796 | &dev_attr_flags.attr, |
| 797 | &dev_attr_undock.attr, |
| 798 | &dev_attr_uid.attr, |
| 799 | &dev_attr_type.attr, |
| 800 | NULL |
| 801 | }; |
| 802 | |
| 803 | static struct attribute_group dock_attribute_group = { |
| 804 | .attrs = dock_attributes |
| 805 | }; |
| 806 | |
Len Brown | c8f7a62 | 2006-07-09 17:22:28 -0400 | [diff] [blame] | 807 | /** |
| 808 | * dock_add - add a new dock station |
| 809 | * @handle: the dock station handle |
| 810 | * |
| 811 | * allocated and initialize a new dock station device. Find all devices |
| 812 | * that are on the dock station, and register for dock event notifications. |
| 813 | */ |
Uwe Kleine-König | d38a5ed | 2010-10-19 09:13:39 +0200 | [diff] [blame] | 814 | static int __init dock_add(acpi_handle handle) |
Len Brown | c8f7a62 | 2006-07-09 17:22:28 -0400 | [diff] [blame] | 815 | { |
Rafael J. Wysocki | 2efbca4 | 2013-07-05 03:23:36 +0200 | [diff] [blame] | 816 | struct dock_station *dock_station, ds = { NULL, }; |
Alex Chiang | 747479a | 2009-10-19 15:14:50 -0600 | [diff] [blame] | 817 | struct platform_device *dd; |
Rafael J. Wysocki | 59401cc | 2013-06-30 23:48:49 +0200 | [diff] [blame] | 818 | acpi_status status; |
Rafael J. Wysocki | 2efbca4 | 2013-07-05 03:23:36 +0200 | [diff] [blame] | 819 | int ret; |
Len Brown | c8f7a62 | 2006-07-09 17:22:28 -0400 | [diff] [blame] | 820 | |
Rafael J. Wysocki | 2efbca4 | 2013-07-05 03:23:36 +0200 | [diff] [blame] | 821 | dd = platform_device_register_data(NULL, "dock", dock_station_count, |
| 822 | &ds, sizeof(ds)); |
Alex Chiang | 747479a | 2009-10-19 15:14:50 -0600 | [diff] [blame] | 823 | if (IS_ERR(dd)) |
| 824 | return PTR_ERR(dd); |
Alex Chiang | 9751cb7 | 2009-10-19 15:14:40 -0600 | [diff] [blame] | 825 | |
Alex Chiang | 747479a | 2009-10-19 15:14:50 -0600 | [diff] [blame] | 826 | dock_station = dd->dev.platform_data; |
| 827 | |
Len Brown | c8f7a62 | 2006-07-09 17:22:28 -0400 | [diff] [blame] | 828 | dock_station->handle = handle; |
Alex Chiang | 747479a | 2009-10-19 15:14:50 -0600 | [diff] [blame] | 829 | dock_station->dock_device = dd; |
Len Brown | c8f7a62 | 2006-07-09 17:22:28 -0400 | [diff] [blame] | 830 | dock_station->last_dock_time = jiffies - HZ; |
Len Brown | c8f7a62 | 2006-07-09 17:22:28 -0400 | [diff] [blame] | 831 | |
Alex Chiang | 747479a | 2009-10-19 15:14:50 -0600 | [diff] [blame] | 832 | INIT_LIST_HEAD(&dock_station->sibling); |
Alex Chiang | 747479a | 2009-10-19 15:14:50 -0600 | [diff] [blame] | 833 | INIT_LIST_HEAD(&dock_station->dependent_devices); |
Kristen Carlson Accardi | a0cd35f | 2007-05-09 15:08:15 -0700 | [diff] [blame] | 834 | |
Kristen Carlson Accardi | 9ef2a9a | 2007-05-09 15:09:12 -0700 | [diff] [blame] | 835 | /* we want the dock device to send uevents */ |
Alex Chiang | 747479a | 2009-10-19 15:14:50 -0600 | [diff] [blame] | 836 | dev_set_uevent_suppress(&dd->dev, 0); |
Kristen Carlson Accardi | 9ef2a9a | 2007-05-09 15:09:12 -0700 | [diff] [blame] | 837 | |
Jiang Liu | c9b5471 | 2013-06-29 00:24:42 +0800 | [diff] [blame] | 838 | if (acpi_dock_match(handle)) |
Shaohua Li | db350b0 | 2008-08-28 10:03:58 +0800 | [diff] [blame] | 839 | dock_station->flags |= DOCK_IS_DOCK; |
Jiang Liu | c9b5471 | 2013-06-29 00:24:42 +0800 | [diff] [blame] | 840 | if (acpi_ata_match(handle)) |
Shaohua Li | db350b0 | 2008-08-28 10:03:58 +0800 | [diff] [blame] | 841 | dock_station->flags |= DOCK_IS_ATA; |
| 842 | if (is_battery(handle)) |
| 843 | dock_station->flags |= DOCK_IS_BAT; |
| 844 | |
Alex Chiang | 747479a | 2009-10-19 15:14:50 -0600 | [diff] [blame] | 845 | ret = sysfs_create_group(&dd->dev.kobj, &dock_attribute_group); |
Shaohua Li | 8652b00 | 2008-08-28 10:07:45 +0800 | [diff] [blame] | 846 | if (ret) |
Alex Chiang | 5f46c2f | 2009-10-19 15:14:24 -0600 | [diff] [blame] | 847 | goto err_unregister; |
Kristen Carlson Accardi | 671adbe | 2006-12-04 14:49:43 -0800 | [diff] [blame] | 848 | |
Len Brown | c8f7a62 | 2006-07-09 17:22:28 -0400 | [diff] [blame] | 849 | /* Find dependent devices */ |
| 850 | acpi_walk_namespace(ACPI_TYPE_DEVICE, ACPI_ROOT_OBJECT, |
Lin Ming | 2263576 | 2009-11-13 10:06:08 +0800 | [diff] [blame] | 851 | ACPI_UINT32_MAX, find_dock_devices, NULL, |
| 852 | dock_station, NULL); |
Len Brown | c8f7a62 | 2006-07-09 17:22:28 -0400 | [diff] [blame] | 853 | |
| 854 | /* add the dock station as a device dependent on itself */ |
Alex Chiang | f69cfdd | 2009-10-19 15:14:29 -0600 | [diff] [blame] | 855 | ret = add_dock_dependent_device(dock_station, handle); |
| 856 | if (ret) |
Alex Chiang | 5f46c2f | 2009-10-19 15:14:24 -0600 | [diff] [blame] | 857 | goto err_rmgroup; |
Len Brown | c8f7a62 | 2006-07-09 17:22:28 -0400 | [diff] [blame] | 858 | |
Rafael J. Wysocki | 59401cc | 2013-06-30 23:48:49 +0200 | [diff] [blame] | 859 | status = acpi_install_notify_handler(handle, ACPI_SYSTEM_NOTIFY, |
| 860 | dock_notify_handler, dock_station); |
Wei Yongjun | 0177f29 | 2013-07-17 08:33:25 +0800 | [diff] [blame] | 861 | if (ACPI_FAILURE(status)) { |
| 862 | ret = -ENODEV; |
Rafael J. Wysocki | 59401cc | 2013-06-30 23:48:49 +0200 | [diff] [blame] | 863 | goto err_rmgroup; |
Wei Yongjun | 0177f29 | 2013-07-17 08:33:25 +0800 | [diff] [blame] | 864 | } |
Rafael J. Wysocki | 59401cc | 2013-06-30 23:48:49 +0200 | [diff] [blame] | 865 | |
Shaohua Li | db350b0 | 2008-08-28 10:03:58 +0800 | [diff] [blame] | 866 | dock_station_count++; |
Alex Chiang | 50d716e | 2009-10-01 11:59:23 -0600 | [diff] [blame] | 867 | list_add(&dock_station->sibling, &dock_stations); |
Len Brown | c8f7a62 | 2006-07-09 17:22:28 -0400 | [diff] [blame] | 868 | return 0; |
| 869 | |
Alex Chiang | 5f46c2f | 2009-10-19 15:14:24 -0600 | [diff] [blame] | 870 | err_rmgroup: |
Rafael J. Wysocki | a30c4c5 | 2013-06-30 23:50:24 +0200 | [diff] [blame] | 871 | remove_dock_dependent_devices(dock_station); |
Alex Chiang | 747479a | 2009-10-19 15:14:50 -0600 | [diff] [blame] | 872 | sysfs_remove_group(&dd->dev.kobj, &dock_attribute_group); |
Alex Chiang | 5f46c2f | 2009-10-19 15:14:24 -0600 | [diff] [blame] | 873 | err_unregister: |
Alex Chiang | 747479a | 2009-10-19 15:14:50 -0600 | [diff] [blame] | 874 | platform_device_unregister(dd); |
Toshi Kani | cd73018 | 2012-11-20 23:42:30 +0000 | [diff] [blame] | 875 | acpi_handle_err(handle, "%s encountered error %d\n", __func__, ret); |
Len Brown | c8f7a62 | 2006-07-09 17:22:28 -0400 | [diff] [blame] | 876 | return ret; |
| 877 | } |
| 878 | |
| 879 | /** |
Toshi Kani | 8ab0ab2 | 2012-10-23 01:30:26 +0200 | [diff] [blame] | 880 | * find_dock_and_bay - look for dock stations and bays |
Len Brown | c8f7a62 | 2006-07-09 17:22:28 -0400 | [diff] [blame] | 881 | * @handle: acpi handle of a device |
| 882 | * @lvl: unused |
Toshi Kani | 8ab0ab2 | 2012-10-23 01:30:26 +0200 | [diff] [blame] | 883 | * @context: unused |
Len Brown | c8f7a62 | 2006-07-09 17:22:28 -0400 | [diff] [blame] | 884 | * @rv: unused |
| 885 | * |
Toshi Kani | 8ab0ab2 | 2012-10-23 01:30:26 +0200 | [diff] [blame] | 886 | * This is called by acpi_walk_namespace to look for dock stations and bays. |
Len Brown | c8f7a62 | 2006-07-09 17:22:28 -0400 | [diff] [blame] | 887 | */ |
Hanjun Guo | 027951e | 2013-08-13 18:31:13 +0800 | [diff] [blame] | 888 | static acpi_status __init |
Toshi Kani | 8ab0ab2 | 2012-10-23 01:30:26 +0200 | [diff] [blame] | 889 | find_dock_and_bay(acpi_handle handle, u32 lvl, void *context, void **rv) |
Len Brown | c8f7a62 | 2006-07-09 17:22:28 -0400 | [diff] [blame] | 890 | { |
Jiang Liu | c9b5471 | 2013-06-29 00:24:42 +0800 | [diff] [blame] | 891 | if (acpi_dock_match(handle) || is_ejectable_bay(handle)) |
Zhang Rui | 1ee4d61 | 2010-03-22 15:46:49 +0800 | [diff] [blame] | 892 | dock_add(handle); |
Alex Chiang | 747479a | 2009-10-19 15:14:50 -0600 | [diff] [blame] | 893 | |
Zhang Rui | 1ee4d61 | 2010-03-22 15:46:49 +0800 | [diff] [blame] | 894 | return AE_OK; |
Len Brown | c8f7a62 | 2006-07-09 17:22:28 -0400 | [diff] [blame] | 895 | } |
| 896 | |
Rafael J. Wysocki | 2ce65fe | 2013-07-04 13:25:04 +0200 | [diff] [blame] | 897 | void __init acpi_dock_init(void) |
Len Brown | c8f7a62 | 2006-07-09 17:22:28 -0400 | [diff] [blame] | 898 | { |
Toshi Kani | 8ab0ab2 | 2012-10-23 01:30:26 +0200 | [diff] [blame] | 899 | /* look for dock stations and bays */ |
Len Brown | c8f7a62 | 2006-07-09 17:22:28 -0400 | [diff] [blame] | 900 | acpi_walk_namespace(ACPI_TYPE_DEVICE, ACPI_ROOT_OBJECT, |
Toshi Kani | 8ab0ab2 | 2012-10-23 01:30:26 +0200 | [diff] [blame] | 901 | ACPI_UINT32_MAX, find_dock_and_bay, NULL, NULL, NULL); |
Len Brown | c8f7a62 | 2006-07-09 17:22:28 -0400 | [diff] [blame] | 902 | |
Shaohua Li | db350b0 | 2008-08-28 10:03:58 +0800 | [diff] [blame] | 903 | if (!dock_station_count) { |
Toshi Kani | cd73018 | 2012-11-20 23:42:30 +0000 | [diff] [blame] | 904 | pr_info(PREFIX "No dock devices found.\n"); |
Rafael J. Wysocki | 2ce65fe | 2013-07-04 13:25:04 +0200 | [diff] [blame] | 905 | return; |
Shaohua Li | db350b0 | 2008-08-28 10:03:58 +0800 | [diff] [blame] | 906 | } |
Len Brown | c8f7a62 | 2006-07-09 17:22:28 -0400 | [diff] [blame] | 907 | |
Toshi Kani | cd73018 | 2012-11-20 23:42:30 +0000 | [diff] [blame] | 908 | pr_info(PREFIX "%s: %d docks/bays found\n", |
Shaohua Li | db350b0 | 2008-08-28 10:03:58 +0800 | [diff] [blame] | 909 | ACPI_DOCK_DRIVER_DESCRIPTION, dock_station_count); |
Len Brown | c8f7a62 | 2006-07-09 17:22:28 -0400 | [diff] [blame] | 910 | } |