Inaky Perez-Gonzalez | 90ff96f | 2008-09-17 16:34:23 +0100 | [diff] [blame] | 1 | /* |
| 2 | * Wireless USB Host Controller |
| 3 | * sysfs glue, wusbcore module support and life cycle management |
| 4 | * |
| 5 | * |
| 6 | * Copyright (C) 2005-2006 Intel Corporation |
| 7 | * Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com> |
| 8 | * |
| 9 | * This program is free software; you can redistribute it and/or |
| 10 | * modify it under the terms of the GNU General Public License version |
| 11 | * 2 as published by the Free Software Foundation. |
| 12 | * |
| 13 | * This program is distributed in the hope that it will be useful, |
| 14 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 15 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 16 | * GNU General Public License for more details. |
| 17 | * |
| 18 | * You should have received a copy of the GNU General Public License |
| 19 | * along with this program; if not, write to the Free Software |
| 20 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA |
| 21 | * 02110-1301, USA. |
| 22 | * |
| 23 | * |
| 24 | * Creation/destruction of wusbhc is split in two parts; that that |
| 25 | * doesn't require the HCD to be added (wusbhc_{create,destroy}) and |
| 26 | * the one that requires (phase B, wusbhc_b_{create,destroy}). |
| 27 | * |
| 28 | * This is so because usb_add_hcd() will start the HC, and thus, all |
Uwe Kleine-König | 421f91d | 2010-06-11 12:17:00 +0200 | [diff] [blame] | 29 | * the HC specific stuff has to be already initialized (like sysfs |
Inaky Perez-Gonzalez | 90ff96f | 2008-09-17 16:34:23 +0100 | [diff] [blame] | 30 | * thingies). |
| 31 | */ |
| 32 | #include <linux/device.h> |
| 33 | #include <linux/module.h> |
| 34 | #include "wusbhc.h" |
| 35 | |
| 36 | /** |
| 37 | * Extract the wusbhc that corresponds to a USB Host Controller class device |
| 38 | * |
| 39 | * WARNING! Apply only if @dev is that of a |
| 40 | * wusbhc.usb_hcd.self->class_dev; otherwise, you loose. |
| 41 | */ |
| 42 | static struct wusbhc *usbhc_dev_to_wusbhc(struct device *dev) |
| 43 | { |
| 44 | struct usb_bus *usb_bus = dev_get_drvdata(dev); |
| 45 | struct usb_hcd *usb_hcd = bus_to_hcd(usb_bus); |
| 46 | return usb_hcd_to_wusbhc(usb_hcd); |
| 47 | } |
| 48 | |
| 49 | /* |
| 50 | * Show & store the current WUSB trust timeout |
| 51 | * |
| 52 | * We don't do locking--it is an 'atomic' value. |
| 53 | * |
| 54 | * The units that we store/show are always MILLISECONDS. However, the |
| 55 | * value of trust_timeout is jiffies. |
| 56 | */ |
| 57 | static ssize_t wusb_trust_timeout_show(struct device *dev, |
| 58 | struct device_attribute *attr, char *buf) |
| 59 | { |
| 60 | struct wusbhc *wusbhc = usbhc_dev_to_wusbhc(dev); |
| 61 | |
| 62 | return scnprintf(buf, PAGE_SIZE, "%u\n", wusbhc->trust_timeout); |
| 63 | } |
| 64 | |
| 65 | static ssize_t wusb_trust_timeout_store(struct device *dev, |
| 66 | struct device_attribute *attr, |
| 67 | const char *buf, size_t size) |
| 68 | { |
| 69 | struct wusbhc *wusbhc = usbhc_dev_to_wusbhc(dev); |
| 70 | ssize_t result = -ENOSYS; |
| 71 | unsigned trust_timeout; |
| 72 | |
| 73 | result = sscanf(buf, "%u", &trust_timeout); |
| 74 | if (result != 1) { |
| 75 | result = -EINVAL; |
| 76 | goto out; |
| 77 | } |
Thomas Pugliese | 7d9852a | 2013-06-06 10:40:49 -0500 | [diff] [blame] | 78 | wusbhc->trust_timeout = min_t(unsigned, trust_timeout, 500); |
Inaky Perez-Gonzalez | 90ff96f | 2008-09-17 16:34:23 +0100 | [diff] [blame] | 79 | cancel_delayed_work(&wusbhc->keep_alive_timer); |
| 80 | flush_workqueue(wusbd); |
| 81 | queue_delayed_work(wusbd, &wusbhc->keep_alive_timer, |
Thomas Pugliese | 7d9852a | 2013-06-06 10:40:49 -0500 | [diff] [blame] | 82 | msecs_to_jiffies(wusbhc->trust_timeout / 2)); |
Inaky Perez-Gonzalez | 90ff96f | 2008-09-17 16:34:23 +0100 | [diff] [blame] | 83 | out: |
| 84 | return result < 0 ? result : size; |
| 85 | } |
| 86 | static DEVICE_ATTR(wusb_trust_timeout, 0644, wusb_trust_timeout_show, |
| 87 | wusb_trust_timeout_store); |
| 88 | |
| 89 | /* |
David Vrabel | fca10c8 | 2009-04-08 17:36:30 +0000 | [diff] [blame] | 90 | * Show the current WUSB CHID. |
Inaky Perez-Gonzalez | 90ff96f | 2008-09-17 16:34:23 +0100 | [diff] [blame] | 91 | */ |
| 92 | static ssize_t wusb_chid_show(struct device *dev, |
| 93 | struct device_attribute *attr, char *buf) |
| 94 | { |
| 95 | struct wusbhc *wusbhc = usbhc_dev_to_wusbhc(dev); |
David Vrabel | fca10c8 | 2009-04-08 17:36:30 +0000 | [diff] [blame] | 96 | const struct wusb_ckhdid *chid; |
Inaky Perez-Gonzalez | 90ff96f | 2008-09-17 16:34:23 +0100 | [diff] [blame] | 97 | ssize_t result = 0; |
| 98 | |
| 99 | if (wusbhc->wuie_host_info != NULL) |
David Vrabel | fca10c8 | 2009-04-08 17:36:30 +0000 | [diff] [blame] | 100 | chid = &wusbhc->wuie_host_info->CHID; |
| 101 | else |
| 102 | chid = &wusb_ckhdid_zero; |
| 103 | |
| 104 | result += ckhdid_printf(buf, PAGE_SIZE, chid); |
| 105 | result += sprintf(buf + result, "\n"); |
| 106 | |
Inaky Perez-Gonzalez | 90ff96f | 2008-09-17 16:34:23 +0100 | [diff] [blame] | 107 | return result; |
| 108 | } |
| 109 | |
| 110 | /* |
David Vrabel | fca10c8 | 2009-04-08 17:36:30 +0000 | [diff] [blame] | 111 | * Store a new CHID. |
Inaky Perez-Gonzalez | 90ff96f | 2008-09-17 16:34:23 +0100 | [diff] [blame] | 112 | * |
David Vrabel | fca10c8 | 2009-04-08 17:36:30 +0000 | [diff] [blame] | 113 | * - Write an all zeros CHID and it will stop the controller |
| 114 | * - Write a non-zero CHID and it will start it. |
Inaky Perez-Gonzalez | 90ff96f | 2008-09-17 16:34:23 +0100 | [diff] [blame] | 115 | * |
| 116 | * See wusbhc_chid_set() for more info. |
| 117 | */ |
| 118 | static ssize_t wusb_chid_store(struct device *dev, |
| 119 | struct device_attribute *attr, |
| 120 | const char *buf, size_t size) |
| 121 | { |
| 122 | struct wusbhc *wusbhc = usbhc_dev_to_wusbhc(dev); |
| 123 | struct wusb_ckhdid chid; |
| 124 | ssize_t result; |
| 125 | |
| 126 | result = sscanf(buf, |
| 127 | "%02hhx %02hhx %02hhx %02hhx " |
| 128 | "%02hhx %02hhx %02hhx %02hhx " |
| 129 | "%02hhx %02hhx %02hhx %02hhx " |
| 130 | "%02hhx %02hhx %02hhx %02hhx\n", |
| 131 | &chid.data[0] , &chid.data[1] , |
| 132 | &chid.data[2] , &chid.data[3] , |
| 133 | &chid.data[4] , &chid.data[5] , |
| 134 | &chid.data[6] , &chid.data[7] , |
| 135 | &chid.data[8] , &chid.data[9] , |
| 136 | &chid.data[10], &chid.data[11], |
| 137 | &chid.data[12], &chid.data[13], |
| 138 | &chid.data[14], &chid.data[15]); |
| 139 | if (result != 16) { |
| 140 | dev_err(dev, "Unrecognized CHID (need 16 8-bit hex digits): " |
| 141 | "%d\n", (int)result); |
| 142 | return -EINVAL; |
| 143 | } |
| 144 | result = wusbhc_chid_set(wusbhc, &chid); |
| 145 | return result < 0 ? result : size; |
| 146 | } |
| 147 | static DEVICE_ATTR(wusb_chid, 0644, wusb_chid_show, wusb_chid_store); |
| 148 | |
David Vrabel | c3f22d9 | 2009-10-12 15:45:18 +0000 | [diff] [blame] | 149 | |
| 150 | static ssize_t wusb_phy_rate_show(struct device *dev, |
| 151 | struct device_attribute *attr, |
| 152 | char *buf) |
| 153 | { |
| 154 | struct wusbhc *wusbhc = usbhc_dev_to_wusbhc(dev); |
| 155 | |
| 156 | return sprintf(buf, "%d\n", wusbhc->phy_rate); |
| 157 | } |
| 158 | |
| 159 | static ssize_t wusb_phy_rate_store(struct device *dev, |
| 160 | struct device_attribute *attr, |
| 161 | const char *buf, size_t size) |
| 162 | { |
| 163 | struct wusbhc *wusbhc = usbhc_dev_to_wusbhc(dev); |
| 164 | uint8_t phy_rate; |
| 165 | ssize_t result; |
| 166 | |
| 167 | result = sscanf(buf, "%hhu", &phy_rate); |
| 168 | if (result != 1) |
| 169 | return -EINVAL; |
| 170 | if (phy_rate >= UWB_PHY_RATE_INVALID) |
| 171 | return -EINVAL; |
| 172 | |
| 173 | wusbhc->phy_rate = phy_rate; |
| 174 | return size; |
| 175 | } |
| 176 | static DEVICE_ATTR(wusb_phy_rate, 0644, wusb_phy_rate_show, wusb_phy_rate_store); |
| 177 | |
Thomas Pugliese | 8bf1d07 | 2013-06-18 13:31:25 -0500 | [diff] [blame] | 178 | static ssize_t wusb_dnts_show(struct device *dev, |
| 179 | struct device_attribute *attr, |
| 180 | char *buf) |
| 181 | { |
| 182 | struct wusbhc *wusbhc = usbhc_dev_to_wusbhc(dev); |
| 183 | |
| 184 | return sprintf(buf, "num slots: %d\ninterval: %dms\n", |
| 185 | wusbhc->dnts_num_slots, wusbhc->dnts_interval); |
| 186 | } |
| 187 | |
| 188 | static ssize_t wusb_dnts_store(struct device *dev, |
| 189 | struct device_attribute *attr, |
| 190 | const char *buf, size_t size) |
| 191 | { |
| 192 | struct wusbhc *wusbhc = usbhc_dev_to_wusbhc(dev); |
| 193 | uint8_t num_slots, interval; |
| 194 | ssize_t result; |
| 195 | |
| 196 | result = sscanf(buf, "%hhu %hhu", &num_slots, &interval); |
| 197 | |
| 198 | if (result != 2) |
| 199 | return -EINVAL; |
| 200 | |
| 201 | wusbhc->dnts_num_slots = num_slots; |
| 202 | wusbhc->dnts_interval = interval; |
| 203 | |
| 204 | return size; |
| 205 | } |
| 206 | static DEVICE_ATTR(wusb_dnts, 0644, wusb_dnts_show, wusb_dnts_store); |
| 207 | |
Thomas Pugliese | f265d4d | 2013-06-18 13:31:26 -0500 | [diff] [blame] | 208 | static ssize_t wusb_retry_count_show(struct device *dev, |
| 209 | struct device_attribute *attr, |
| 210 | char *buf) |
| 211 | { |
| 212 | struct wusbhc *wusbhc = usbhc_dev_to_wusbhc(dev); |
| 213 | |
| 214 | return sprintf(buf, "%d\n", wusbhc->retry_count); |
| 215 | } |
| 216 | |
| 217 | static ssize_t wusb_retry_count_store(struct device *dev, |
| 218 | struct device_attribute *attr, |
| 219 | const char *buf, size_t size) |
| 220 | { |
| 221 | struct wusbhc *wusbhc = usbhc_dev_to_wusbhc(dev); |
| 222 | uint8_t retry_count; |
| 223 | ssize_t result; |
| 224 | |
| 225 | result = sscanf(buf, "%hhu", &retry_count); |
| 226 | |
| 227 | if (result != 1) |
| 228 | return -EINVAL; |
| 229 | |
| 230 | wusbhc->retry_count = max_t(uint8_t, retry_count, WUSB_RETRY_COUNT_MAX); |
| 231 | |
| 232 | return size; |
| 233 | } |
| 234 | static DEVICE_ATTR(wusb_retry_count, 0644, wusb_retry_count_show, |
| 235 | wusb_retry_count_store); |
| 236 | |
Inaky Perez-Gonzalez | 90ff96f | 2008-09-17 16:34:23 +0100 | [diff] [blame] | 237 | /* Group all the WUSBHC attributes */ |
| 238 | static struct attribute *wusbhc_attrs[] = { |
| 239 | &dev_attr_wusb_trust_timeout.attr, |
| 240 | &dev_attr_wusb_chid.attr, |
David Vrabel | c3f22d9 | 2009-10-12 15:45:18 +0000 | [diff] [blame] | 241 | &dev_attr_wusb_phy_rate.attr, |
Thomas Pugliese | 8bf1d07 | 2013-06-18 13:31:25 -0500 | [diff] [blame] | 242 | &dev_attr_wusb_dnts.attr, |
Thomas Pugliese | f265d4d | 2013-06-18 13:31:26 -0500 | [diff] [blame] | 243 | &dev_attr_wusb_retry_count.attr, |
Inaky Perez-Gonzalez | 90ff96f | 2008-09-17 16:34:23 +0100 | [diff] [blame] | 244 | NULL, |
| 245 | }; |
| 246 | |
| 247 | static struct attribute_group wusbhc_attr_group = { |
| 248 | .name = NULL, /* we want them in the same directory */ |
| 249 | .attrs = wusbhc_attrs, |
| 250 | }; |
| 251 | |
| 252 | /* |
| 253 | * Create a wusbhc instance |
| 254 | * |
| 255 | * NOTEs: |
| 256 | * |
| 257 | * - assumes *wusbhc has been zeroed and wusbhc->usb_hcd has been |
| 258 | * initialized but not added. |
| 259 | * |
| 260 | * - fill out ports_max, mmcies_max and mmcie_{add,rm} before calling. |
| 261 | * |
| 262 | * - fill out wusbhc->uwb_rc and refcount it before calling |
| 263 | * - fill out the wusbhc->sec_modes array |
| 264 | */ |
| 265 | int wusbhc_create(struct wusbhc *wusbhc) |
| 266 | { |
| 267 | int result = 0; |
| 268 | |
Thomas Pugliese | 8bf1d07 | 2013-06-18 13:31:25 -0500 | [diff] [blame] | 269 | /* set defaults. These can be overwritten using sysfs attributes. */ |
Inaky Perez-Gonzalez | 90ff96f | 2008-09-17 16:34:23 +0100 | [diff] [blame] | 270 | wusbhc->trust_timeout = WUSB_TRUST_TIMEOUT_MS; |
David Vrabel | c3f22d9 | 2009-10-12 15:45:18 +0000 | [diff] [blame] | 271 | wusbhc->phy_rate = UWB_PHY_RATE_INVALID - 1; |
Thomas Pugliese | 8bf1d07 | 2013-06-18 13:31:25 -0500 | [diff] [blame] | 272 | wusbhc->dnts_num_slots = 4; |
| 273 | wusbhc->dnts_interval = 2; |
Thomas Pugliese | f265d4d | 2013-06-18 13:31:26 -0500 | [diff] [blame] | 274 | wusbhc->retry_count = WUSB_RETRY_COUNT_INFINITE; |
David Vrabel | c3f22d9 | 2009-10-12 15:45:18 +0000 | [diff] [blame] | 275 | |
Inaky Perez-Gonzalez | 90ff96f | 2008-09-17 16:34:23 +0100 | [diff] [blame] | 276 | mutex_init(&wusbhc->mutex); |
| 277 | result = wusbhc_mmcie_create(wusbhc); |
| 278 | if (result < 0) |
| 279 | goto error_mmcie_create; |
| 280 | result = wusbhc_devconnect_create(wusbhc); |
| 281 | if (result < 0) |
| 282 | goto error_devconnect_create; |
| 283 | result = wusbhc_rh_create(wusbhc); |
| 284 | if (result < 0) |
| 285 | goto error_rh_create; |
| 286 | result = wusbhc_sec_create(wusbhc); |
| 287 | if (result < 0) |
| 288 | goto error_sec_create; |
Inaky Perez-Gonzalez | 90ff96f | 2008-09-17 16:34:23 +0100 | [diff] [blame] | 289 | return 0; |
| 290 | |
Inaky Perez-Gonzalez | 90ff96f | 2008-09-17 16:34:23 +0100 | [diff] [blame] | 291 | error_sec_create: |
| 292 | wusbhc_rh_destroy(wusbhc); |
| 293 | error_rh_create: |
| 294 | wusbhc_devconnect_destroy(wusbhc); |
| 295 | error_devconnect_create: |
| 296 | wusbhc_mmcie_destroy(wusbhc); |
| 297 | error_mmcie_create: |
| 298 | return result; |
| 299 | } |
| 300 | EXPORT_SYMBOL_GPL(wusbhc_create); |
| 301 | |
| 302 | static inline struct kobject *wusbhc_kobj(struct wusbhc *wusbhc) |
| 303 | { |
| 304 | return &wusbhc->usb_hcd.self.controller->kobj; |
| 305 | } |
| 306 | |
| 307 | /* |
| 308 | * Phase B of a wusbhc instance creation |
| 309 | * |
| 310 | * Creates fields that depend on wusbhc->usb_hcd having been |
| 311 | * added. This is where we create the sysfs files in |
| 312 | * /sys/class/usb_host/usb_hostX/. |
| 313 | * |
| 314 | * NOTE: Assumes wusbhc->usb_hcd has been already added by the upper |
| 315 | * layer (hwahc or whci) |
| 316 | */ |
| 317 | int wusbhc_b_create(struct wusbhc *wusbhc) |
| 318 | { |
| 319 | int result = 0; |
| 320 | struct device *dev = wusbhc->usb_hcd.self.controller; |
| 321 | |
| 322 | result = sysfs_create_group(wusbhc_kobj(wusbhc), &wusbhc_attr_group); |
| 323 | if (result < 0) { |
| 324 | dev_err(dev, "Cannot register WUSBHC attributes: %d\n", result); |
| 325 | goto error_create_attr_group; |
| 326 | } |
David Vrabel | b60066c | 2008-09-17 16:34:40 +0100 | [diff] [blame] | 327 | |
David Vrabel | b60066c | 2008-09-17 16:34:40 +0100 | [diff] [blame] | 328 | return 0; |
Inaky Perez-Gonzalez | 90ff96f | 2008-09-17 16:34:23 +0100 | [diff] [blame] | 329 | error_create_attr_group: |
| 330 | return result; |
| 331 | } |
| 332 | EXPORT_SYMBOL_GPL(wusbhc_b_create); |
| 333 | |
| 334 | void wusbhc_b_destroy(struct wusbhc *wusbhc) |
| 335 | { |
David Vrabel | b60066c | 2008-09-17 16:34:40 +0100 | [diff] [blame] | 336 | wusbhc_pal_unregister(wusbhc); |
Inaky Perez-Gonzalez | 90ff96f | 2008-09-17 16:34:23 +0100 | [diff] [blame] | 337 | sysfs_remove_group(wusbhc_kobj(wusbhc), &wusbhc_attr_group); |
| 338 | } |
| 339 | EXPORT_SYMBOL_GPL(wusbhc_b_destroy); |
| 340 | |
| 341 | void wusbhc_destroy(struct wusbhc *wusbhc) |
| 342 | { |
Inaky Perez-Gonzalez | 90ff96f | 2008-09-17 16:34:23 +0100 | [diff] [blame] | 343 | wusbhc_sec_destroy(wusbhc); |
| 344 | wusbhc_rh_destroy(wusbhc); |
| 345 | wusbhc_devconnect_destroy(wusbhc); |
| 346 | wusbhc_mmcie_destroy(wusbhc); |
| 347 | } |
| 348 | EXPORT_SYMBOL_GPL(wusbhc_destroy); |
| 349 | |
| 350 | struct workqueue_struct *wusbd; |
| 351 | EXPORT_SYMBOL_GPL(wusbd); |
| 352 | |
| 353 | /* |
| 354 | * WUSB Cluster ID allocation map |
| 355 | * |
| 356 | * Each WUSB bus in a channel is identified with a Cluster Id in the |
| 357 | * unauth address pace (WUSB1.0[4.3]). We take the range 0xe0 to 0xff |
| 358 | * (that's space for 31 WUSB controllers, as 0xff can't be taken). We |
| 359 | * start taking from 0xff, 0xfe, 0xfd... (hence the += or -= 0xff). |
| 360 | * |
| 361 | * For each one we taken, we pin it in the bitap |
| 362 | */ |
| 363 | #define CLUSTER_IDS 32 |
| 364 | static DECLARE_BITMAP(wusb_cluster_id_table, CLUSTER_IDS); |
| 365 | static DEFINE_SPINLOCK(wusb_cluster_ids_lock); |
| 366 | |
| 367 | /* |
| 368 | * Get a WUSB Cluster ID |
| 369 | * |
| 370 | * Need to release with wusb_cluster_id_put() when done w/ it. |
| 371 | */ |
| 372 | /* FIXME: coordinate with the choose_addres() from the USB stack */ |
| 373 | /* we want to leave the top of the 128 range for cluster addresses and |
| 374 | * the bottom for device addresses (as we map them one on one with |
| 375 | * ports). */ |
| 376 | u8 wusb_cluster_id_get(void) |
| 377 | { |
| 378 | u8 id; |
| 379 | spin_lock(&wusb_cluster_ids_lock); |
| 380 | id = find_first_zero_bit(wusb_cluster_id_table, CLUSTER_IDS); |
Akinobu Mita | 962f3ff | 2011-03-02 20:35:28 +0900 | [diff] [blame] | 381 | if (id >= CLUSTER_IDS) { |
Inaky Perez-Gonzalez | 90ff96f | 2008-09-17 16:34:23 +0100 | [diff] [blame] | 382 | id = 0; |
| 383 | goto out; |
| 384 | } |
| 385 | set_bit(id, wusb_cluster_id_table); |
| 386 | id = (u8) 0xff - id; |
| 387 | out: |
| 388 | spin_unlock(&wusb_cluster_ids_lock); |
| 389 | return id; |
| 390 | |
| 391 | } |
| 392 | EXPORT_SYMBOL_GPL(wusb_cluster_id_get); |
| 393 | |
| 394 | /* |
| 395 | * Release a WUSB Cluster ID |
| 396 | * |
| 397 | * Obtained it with wusb_cluster_id_get() |
| 398 | */ |
| 399 | void wusb_cluster_id_put(u8 id) |
| 400 | { |
| 401 | id = 0xff - id; |
| 402 | BUG_ON(id >= CLUSTER_IDS); |
| 403 | spin_lock(&wusb_cluster_ids_lock); |
| 404 | WARN_ON(!test_bit(id, wusb_cluster_id_table)); |
| 405 | clear_bit(id, wusb_cluster_id_table); |
| 406 | spin_unlock(&wusb_cluster_ids_lock); |
| 407 | } |
| 408 | EXPORT_SYMBOL_GPL(wusb_cluster_id_put); |
| 409 | |
| 410 | /** |
| 411 | * wusbhc_giveback_urb - return an URB to the USB core |
| 412 | * @wusbhc: the host controller the URB is from. |
| 413 | * @urb: the URB. |
| 414 | * @status: the URB's status. |
| 415 | * |
| 416 | * Return an URB to the USB core doing some additional WUSB specific |
| 417 | * processing. |
| 418 | * |
| 419 | * - After a successful transfer, update the trust timeout timestamp |
| 420 | * for the WUSB device. |
| 421 | * |
| 422 | * - [WUSB] sections 4.13 and 7.5.1 specifies the stop retrasmittion |
| 423 | * condition for the WCONNECTACK_IE is that the host has observed |
| 424 | * the associated device responding to a control transfer. |
| 425 | */ |
| 426 | void wusbhc_giveback_urb(struct wusbhc *wusbhc, struct urb *urb, int status) |
| 427 | { |
| 428 | struct wusb_dev *wusb_dev = __wusb_dev_get_by_usb_dev(wusbhc, urb->dev); |
| 429 | |
David Vrabel | 5936ac7 | 2009-04-08 17:36:32 +0000 | [diff] [blame] | 430 | if (status == 0 && wusb_dev) { |
Inaky Perez-Gonzalez | 90ff96f | 2008-09-17 16:34:23 +0100 | [diff] [blame] | 431 | wusb_dev->entry_ts = jiffies; |
| 432 | |
David Vrabel | 5936ac7 | 2009-04-08 17:36:32 +0000 | [diff] [blame] | 433 | /* wusbhc_devconnect_acked() can't be called from |
Inaky Perez-Gonzalez | 90ff96f | 2008-09-17 16:34:23 +0100 | [diff] [blame] | 434 | atomic context so defer it to a work queue. */ |
| 435 | if (!list_empty(&wusb_dev->cack_node)) |
| 436 | queue_work(wusbd, &wusb_dev->devconnect_acked_work); |
David Vrabel | 5936ac7 | 2009-04-08 17:36:32 +0000 | [diff] [blame] | 437 | else |
| 438 | wusb_dev_put(wusb_dev); |
Inaky Perez-Gonzalez | 90ff96f | 2008-09-17 16:34:23 +0100 | [diff] [blame] | 439 | } |
| 440 | |
| 441 | usb_hcd_giveback_urb(&wusbhc->usb_hcd, urb, status); |
| 442 | } |
| 443 | EXPORT_SYMBOL_GPL(wusbhc_giveback_urb); |
| 444 | |
| 445 | /** |
| 446 | * wusbhc_reset_all - reset the HC hardware |
| 447 | * @wusbhc: the host controller to reset. |
| 448 | * |
| 449 | * Request a full hardware reset of the chip. This will also reset |
| 450 | * the radio controller and any other PALs. |
| 451 | */ |
| 452 | void wusbhc_reset_all(struct wusbhc *wusbhc) |
| 453 | { |
Thomas Pugliese | a899575 | 2013-06-24 14:26:35 -0500 | [diff] [blame] | 454 | if (wusbhc->uwb_rc) |
| 455 | uwb_rc_reset_all(wusbhc->uwb_rc); |
Inaky Perez-Gonzalez | 90ff96f | 2008-09-17 16:34:23 +0100 | [diff] [blame] | 456 | } |
| 457 | EXPORT_SYMBOL_GPL(wusbhc_reset_all); |
| 458 | |
| 459 | static struct notifier_block wusb_usb_notifier = { |
| 460 | .notifier_call = wusb_usb_ncb, |
| 461 | .priority = INT_MAX /* Need to be called first of all */ |
| 462 | }; |
| 463 | |
| 464 | static int __init wusbcore_init(void) |
| 465 | { |
| 466 | int result; |
| 467 | result = wusb_crypto_init(); |
| 468 | if (result < 0) |
| 469 | goto error_crypto_init; |
| 470 | /* WQ is singlethread because we need to serialize notifications */ |
| 471 | wusbd = create_singlethread_workqueue("wusbd"); |
| 472 | if (wusbd == NULL) { |
| 473 | result = -ENOMEM; |
| 474 | printk(KERN_ERR "WUSB-core: Cannot create wusbd workqueue\n"); |
| 475 | goto error_wusbd_create; |
| 476 | } |
| 477 | usb_register_notify(&wusb_usb_notifier); |
| 478 | bitmap_zero(wusb_cluster_id_table, CLUSTER_IDS); |
| 479 | set_bit(0, wusb_cluster_id_table); /* reserve Cluster ID 0xff */ |
| 480 | return 0; |
| 481 | |
| 482 | error_wusbd_create: |
| 483 | wusb_crypto_exit(); |
| 484 | error_crypto_init: |
| 485 | return result; |
| 486 | |
| 487 | } |
| 488 | module_init(wusbcore_init); |
| 489 | |
| 490 | static void __exit wusbcore_exit(void) |
| 491 | { |
| 492 | clear_bit(0, wusb_cluster_id_table); |
| 493 | if (!bitmap_empty(wusb_cluster_id_table, CLUSTER_IDS)) { |
| 494 | char buf[256]; |
| 495 | bitmap_scnprintf(buf, sizeof(buf), wusb_cluster_id_table, |
| 496 | CLUSTER_IDS); |
| 497 | printk(KERN_ERR "BUG: WUSB Cluster IDs not released " |
| 498 | "on exit: %s\n", buf); |
| 499 | WARN_ON(1); |
| 500 | } |
| 501 | usb_unregister_notify(&wusb_usb_notifier); |
| 502 | destroy_workqueue(wusbd); |
| 503 | wusb_crypto_exit(); |
| 504 | } |
| 505 | module_exit(wusbcore_exit); |
| 506 | |
| 507 | MODULE_AUTHOR("Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>"); |
| 508 | MODULE_DESCRIPTION("Wireless USB core"); |
| 509 | MODULE_LICENSE("GPL"); |