1 // SPDX-License-Identifier: GPL-2.0
4 * Driver glue, HWA-specific functions, bridges to WAHC and WUSBHC
6 * Copyright (C) 2005-2006 Intel Corporation
9 * The HWA driver is a simple layer that forwards requests to the WAHC
10 * (Wire Adater Host Controller) or WUSBHC (Wireless USB Host
13 * Host Wire Adapter is the 'WUSB 1.0 standard' name for Wireless-USB
14 * Host Controller that is connected to your system via USB (a USB
15 * dongle that implements a USB host...). There is also a Device Wired
16 * Adaptor, DWA (Wireless USB hub) that uses the same mechanism for
17 * transferring data (it is after all a USB host connected via
18 * Wireless USB), we have a common layer called Wire Adapter Host
19 * Controller that does all the hard work. The WUSBHC (Wireless USB
20 * Host Controller) is the part common to WUSB Host Controllers, the
21 * HWA and the PCI-based one, that is implemented following the WHCI
22 * spec. All these layers are implemented in ../wusbcore.
24 * The main functions are hwahc_op_urb_{en,de}queue(), that pass the
25 * job of converting a URB to a Wire Adapter
29 * hwahc_driver_*() Driver initialization, registration and
32 * hwahc_probe() New device came up, create an instance for
33 * it [from device enumeration].
35 * hwahc_disconnect() Remove device instance [from device
38 * [__]hwahc_op_*() Host-Wire-Adaptor specific functions for
39 * starting/stopping/etc (some might be made also
42 #include <linux/kernel.h>
43 #include <linux/slab.h>
44 #include <linux/module.h>
45 #include <linux/workqueue.h>
46 #include <linux/wait.h>
47 #include <linux/completion.h>
48 #include "../wusbcore/wa-hc.h"
49 #include "../wusbcore/wusbhc.h"
52 struct wusbhc wusbhc; /* has to be 1st */
57 * FIXME should be wusbhc
59 * NOTE: we need to cache the Cluster ID because later...there is no
62 static int __hwahc_set_cluster_id(struct hwahc *hwahc, u8 cluster_id)
65 struct wusbhc *wusbhc = &hwahc->wusbhc;
66 struct wahc *wa = &hwahc->wa;
67 struct device *dev = &wa->usb_iface->dev;
69 result = usb_control_msg(wa->usb_dev, usb_sndctrlpipe(wa->usb_dev, 0),
70 WUSB_REQ_SET_CLUSTER_ID,
71 USB_DIR_OUT | USB_TYPE_CLASS | USB_RECIP_INTERFACE,
73 wa->usb_iface->cur_altsetting->desc.bInterfaceNumber,
74 NULL, 0, USB_CTRL_SET_TIMEOUT);
76 dev_err(dev, "Cannot set WUSB Cluster ID to 0x%02x: %d\n",
79 wusbhc->cluster_id = cluster_id;
80 dev_info(dev, "Wireless USB Cluster ID set to 0x%02x\n", cluster_id);
84 static int __hwahc_op_set_num_dnts(struct wusbhc *wusbhc, u8 interval, u8 slots)
86 struct hwahc *hwahc = container_of(wusbhc, struct hwahc, wusbhc);
87 struct wahc *wa = &hwahc->wa;
89 return usb_control_msg(wa->usb_dev, usb_sndctrlpipe(wa->usb_dev, 0),
90 WUSB_REQ_SET_NUM_DNTS,
91 USB_DIR_OUT | USB_TYPE_CLASS | USB_RECIP_INTERFACE,
92 interval << 8 | slots,
93 wa->usb_iface->cur_altsetting->desc.bInterfaceNumber,
94 NULL, 0, USB_CTRL_SET_TIMEOUT);
98 * Reset a WUSB host controller and wait for it to complete doing it.
100 * @usb_hcd: Pointer to WUSB Host Controller instance.
103 static int hwahc_op_reset(struct usb_hcd *usb_hcd)
106 struct wusbhc *wusbhc = usb_hcd_to_wusbhc(usb_hcd);
107 struct hwahc *hwahc = container_of(wusbhc, struct hwahc, wusbhc);
108 struct device *dev = &hwahc->wa.usb_iface->dev;
110 mutex_lock(&wusbhc->mutex);
111 wa_nep_disarm(&hwahc->wa);
112 result = __wa_set_feature(&hwahc->wa, WA_RESET);
114 dev_err(dev, "error commanding HC to reset: %d\n", result);
117 result = __wa_wait_status(&hwahc->wa, WA_STATUS_RESETTING, 0);
119 dev_err(dev, "error waiting for HC to reset: %d\n", result);
123 mutex_unlock(&wusbhc->mutex);
128 * FIXME: break this function up
130 static int hwahc_op_start(struct usb_hcd *usb_hcd)
134 struct wusbhc *wusbhc = usb_hcd_to_wusbhc(usb_hcd);
135 struct hwahc *hwahc = container_of(wusbhc, struct hwahc, wusbhc);
138 mutex_lock(&wusbhc->mutex);
139 addr = wusb_cluster_id_get();
141 goto error_cluster_id_get;
142 result = __hwahc_set_cluster_id(hwahc, addr);
144 goto error_set_cluster_id;
146 usb_hcd->uses_new_polling = 1;
147 set_bit(HCD_FLAG_POLL_RH, &usb_hcd->flags);
148 usb_hcd->state = HC_STATE_RUNNING;
151 * prevent USB core from suspending the root hub since
152 * bus_suspend and bus_resume are not yet supported.
154 pm_runtime_get_noresume(&usb_hcd->self.root_hub->dev);
158 mutex_unlock(&wusbhc->mutex);
161 error_set_cluster_id:
162 wusb_cluster_id_put(wusbhc->cluster_id);
163 error_cluster_id_get:
169 * No need to abort pipes, as when this is called, all the children
170 * has been disconnected and that has done it [through
171 * usb_disable_interface() -> usb_disable_endpoint() ->
172 * hwahc_op_ep_disable() - >rpipe_ep_disable()].
174 static void hwahc_op_stop(struct usb_hcd *usb_hcd)
176 struct wusbhc *wusbhc = usb_hcd_to_wusbhc(usb_hcd);
178 mutex_lock(&wusbhc->mutex);
179 wusb_cluster_id_put(wusbhc->cluster_id);
180 mutex_unlock(&wusbhc->mutex);
183 static int hwahc_op_get_frame_number(struct usb_hcd *usb_hcd)
185 struct wusbhc *wusbhc = usb_hcd_to_wusbhc(usb_hcd);
186 struct hwahc *hwahc = container_of(wusbhc, struct hwahc, wusbhc);
187 struct wahc *wa = &hwahc->wa;
190 * We cannot query the HWA for the WUSB time since that requires sending
191 * a synchronous URB and this function can be called in_interrupt.
192 * Instead, query the USB frame number for our parent and use that.
194 return usb_get_current_frame_number(wa->usb_dev);
197 static int hwahc_op_urb_enqueue(struct usb_hcd *usb_hcd, struct urb *urb,
200 struct wusbhc *wusbhc = usb_hcd_to_wusbhc(usb_hcd);
201 struct hwahc *hwahc = container_of(wusbhc, struct hwahc, wusbhc);
203 return wa_urb_enqueue(&hwahc->wa, urb->ep, urb, gfp);
206 static int hwahc_op_urb_dequeue(struct usb_hcd *usb_hcd, struct urb *urb,
209 struct wusbhc *wusbhc = usb_hcd_to_wusbhc(usb_hcd);
210 struct hwahc *hwahc = container_of(wusbhc, struct hwahc, wusbhc);
212 return wa_urb_dequeue(&hwahc->wa, urb, status);
216 * Release resources allocated for an endpoint
218 * If there is an associated rpipe to this endpoint, go ahead and put it.
220 static void hwahc_op_endpoint_disable(struct usb_hcd *usb_hcd,
221 struct usb_host_endpoint *ep)
223 struct wusbhc *wusbhc = usb_hcd_to_wusbhc(usb_hcd);
224 struct hwahc *hwahc = container_of(wusbhc, struct hwahc, wusbhc);
226 rpipe_ep_disable(&hwahc->wa, ep);
229 static int __hwahc_op_wusbhc_start(struct wusbhc *wusbhc)
232 struct hwahc *hwahc = container_of(wusbhc, struct hwahc, wusbhc);
233 struct device *dev = &hwahc->wa.usb_iface->dev;
235 result = __wa_set_feature(&hwahc->wa, WA_ENABLE);
237 dev_err(dev, "error commanding HC to start: %d\n", result);
240 result = __wa_wait_status(&hwahc->wa, WA_ENABLE, WA_ENABLE);
242 dev_err(dev, "error waiting for HC to start: %d\n", result);
245 result = wa_nep_arm(&hwahc->wa, GFP_KERNEL);
247 dev_err(dev, "cannot listen to notifications: %d\n", result);
251 * If WUSB_QUIRK_ALEREON_HWA_DISABLE_XFER_NOTIFICATIONS is set,
252 * disable transfer notifications.
254 if (hwahc->wa.quirks &
255 WUSB_QUIRK_ALEREON_HWA_DISABLE_XFER_NOTIFICATIONS) {
256 struct usb_host_interface *cur_altsetting =
257 hwahc->wa.usb_iface->cur_altsetting;
259 result = usb_control_msg(hwahc->wa.usb_dev,
260 usb_sndctrlpipe(hwahc->wa.usb_dev, 0),
261 WA_REQ_ALEREON_DISABLE_XFER_NOTIFICATIONS,
262 USB_DIR_OUT | USB_TYPE_VENDOR |
264 WA_REQ_ALEREON_FEATURE_SET,
265 cur_altsetting->desc.bInterfaceNumber,
267 USB_CTRL_SET_TIMEOUT);
269 * If we successfully sent the control message, start DTI here
270 * because no transfer notifications will be received which is
271 * where DTI is normally started.
274 result = wa_dti_start(&hwahc->wa);
276 result = 0; /* OK. Continue normally. */
279 dev_err(dev, "cannot start DTI: %d\n", result);
280 goto error_dti_start;
287 wa_nep_disarm(&hwahc->wa);
289 __wa_clear_feature(&hwahc->wa, WA_ENABLE);
293 static void __hwahc_op_wusbhc_stop(struct wusbhc *wusbhc, int delay)
295 struct hwahc *hwahc = container_of(wusbhc, struct hwahc, wusbhc);
296 struct wahc *wa = &hwahc->wa;
297 u8 iface_no = wa->usb_iface->cur_altsetting->desc.bInterfaceNumber;
300 ret = usb_control_msg(wa->usb_dev, usb_sndctrlpipe(wa->usb_dev, 0),
302 USB_DIR_OUT | USB_TYPE_CLASS | USB_RECIP_INTERFACE,
305 NULL, 0, USB_CTRL_SET_TIMEOUT);
309 wa_nep_disarm(&hwahc->wa);
310 __wa_stop(&hwahc->wa);
314 * Set the UWB MAS allocation for the WUSB cluster
316 * @stream_index: stream to use (-1 for cancelling the allocation)
317 * @mas: mas bitmap to use
319 static int __hwahc_op_bwa_set(struct wusbhc *wusbhc, s8 stream_index,
320 const struct uwb_mas_bm *mas)
323 struct hwahc *hwahc = container_of(wusbhc, struct hwahc, wusbhc);
324 struct wahc *wa = &hwahc->wa;
325 struct device *dev = &wa->usb_iface->dev;
326 u8 mas_le[UWB_NUM_MAS/8];
328 /* Set the stream index */
329 result = usb_control_msg(wa->usb_dev, usb_sndctrlpipe(wa->usb_dev, 0),
330 WUSB_REQ_SET_STREAM_IDX,
331 USB_DIR_OUT | USB_TYPE_CLASS | USB_RECIP_INTERFACE,
333 wa->usb_iface->cur_altsetting->desc.bInterfaceNumber,
334 NULL, 0, USB_CTRL_SET_TIMEOUT);
336 dev_err(dev, "Cannot set WUSB stream index: %d\n", result);
339 uwb_mas_bm_copy_le(mas_le, mas);
340 /* Set the MAS allocation */
341 result = usb_control_msg(wa->usb_dev, usb_sndctrlpipe(wa->usb_dev, 0),
342 WUSB_REQ_SET_WUSB_MAS,
343 USB_DIR_OUT | USB_TYPE_CLASS | USB_RECIP_INTERFACE,
344 0, wa->usb_iface->cur_altsetting->desc.bInterfaceNumber,
345 mas_le, 32, USB_CTRL_SET_TIMEOUT);
347 dev_err(dev, "Cannot set WUSB MAS allocation: %d\n", result);
353 * Add an IE to the host's MMC
355 * @interval: See WUSB1.0[8.5.3.1]
356 * @repeat_cnt: See WUSB1.0[8.5.3.1]
357 * @handle: See WUSB1.0[8.5.3.1]
358 * @wuie: Pointer to the header of the WUSB IE data to add.
359 * MUST BE allocated in a kmalloc buffer (no stack or
362 * NOTE: the format of the WUSB IEs for MMCs are different to the
363 * normal MBOA MAC IEs (IE Id + Length in MBOA MAC vs. Length +
364 * Id in WUSB IEs). Standards...you gotta love'em.
366 static int __hwahc_op_mmcie_add(struct wusbhc *wusbhc, u8 interval,
367 u8 repeat_cnt, u8 handle,
368 struct wuie_hdr *wuie)
370 struct hwahc *hwahc = container_of(wusbhc, struct hwahc, wusbhc);
371 struct wahc *wa = &hwahc->wa;
372 u8 iface_no = wa->usb_iface->cur_altsetting->desc.bInterfaceNumber;
374 return usb_control_msg(wa->usb_dev, usb_sndctrlpipe(wa->usb_dev, 0),
376 USB_DIR_OUT | USB_TYPE_CLASS | USB_RECIP_INTERFACE,
377 interval << 8 | repeat_cnt,
378 handle << 8 | iface_no,
379 wuie, wuie->bLength, USB_CTRL_SET_TIMEOUT);
383 * Remove an IE to the host's MMC
385 * @handle: See WUSB1.0[8.5.3.1]
387 static int __hwahc_op_mmcie_rm(struct wusbhc *wusbhc, u8 handle)
389 struct hwahc *hwahc = container_of(wusbhc, struct hwahc, wusbhc);
390 struct wahc *wa = &hwahc->wa;
391 u8 iface_no = wa->usb_iface->cur_altsetting->desc.bInterfaceNumber;
392 return usb_control_msg(wa->usb_dev, usb_sndctrlpipe(wa->usb_dev, 0),
393 WUSB_REQ_REMOVE_MMC_IE,
394 USB_DIR_OUT | USB_TYPE_CLASS | USB_RECIP_INTERFACE,
395 0, handle << 8 | iface_no,
396 NULL, 0, USB_CTRL_SET_TIMEOUT);
400 * Update device information for a given fake port
402 * @port_idx: Fake port to which device is connected (wusbhc index, not
405 static int __hwahc_op_dev_info_set(struct wusbhc *wusbhc,
406 struct wusb_dev *wusb_dev)
408 struct hwahc *hwahc = container_of(wusbhc, struct hwahc, wusbhc);
409 struct wahc *wa = &hwahc->wa;
410 u8 iface_no = wa->usb_iface->cur_altsetting->desc.bInterfaceNumber;
411 struct hwa_dev_info *dev_info;
414 /* fill out the Device Info buffer and send it */
415 dev_info = kzalloc(sizeof(struct hwa_dev_info), GFP_KERNEL);
418 uwb_mas_bm_copy_le(dev_info->bmDeviceAvailability,
419 &wusb_dev->availability);
420 dev_info->bDeviceAddress = wusb_dev->addr;
423 * If the descriptors haven't been read yet, use a default PHY
424 * rate of 53.3 Mbit/s only. The correct value will be used
425 * when this will be called again as part of the
426 * authentication process (which occurs after the descriptors
429 if (wusb_dev->wusb_cap_descr)
430 dev_info->wPHYRates = wusb_dev->wusb_cap_descr->wPHYRates;
432 dev_info->wPHYRates = cpu_to_le16(USB_WIRELESS_PHY_53);
434 ret = usb_control_msg(wa->usb_dev, usb_sndctrlpipe(wa->usb_dev, 0),
435 WUSB_REQ_SET_DEV_INFO,
436 USB_DIR_OUT | USB_TYPE_CLASS | USB_RECIP_INTERFACE,
437 0, wusb_dev->port_idx << 8 | iface_no,
438 dev_info, sizeof(struct hwa_dev_info),
439 USB_CTRL_SET_TIMEOUT);
445 * Set host's idea of which encryption (and key) method to use when
446 * talking to ad evice on a given port.
448 * If key is NULL, it means disable encryption for that "virtual port"
449 * (used when we disconnect).
451 static int __hwahc_dev_set_key(struct wusbhc *wusbhc, u8 port_idx, u32 tkid,
452 const void *key, size_t key_size,
455 int result = -ENOMEM;
456 struct hwahc *hwahc = container_of(wusbhc, struct hwahc, wusbhc);
457 struct wahc *wa = &hwahc->wa;
458 u8 iface_no = wa->usb_iface->cur_altsetting->desc.bInterfaceNumber;
459 struct usb_key_descriptor *keyd;
462 keyd_len = sizeof(*keyd) + key_size;
463 keyd = kzalloc(keyd_len, GFP_KERNEL);
467 keyd->bLength = keyd_len;
468 keyd->bDescriptorType = USB_DT_KEY;
469 keyd->tTKID[0] = (tkid >> 0) & 0xff;
470 keyd->tTKID[1] = (tkid >> 8) & 0xff;
471 keyd->tTKID[2] = (tkid >> 16) & 0xff;
472 memcpy(keyd->bKeyData, key, key_size);
474 result = usb_control_msg(wa->usb_dev, usb_sndctrlpipe(wa->usb_dev, 0),
475 USB_REQ_SET_DESCRIPTOR,
476 USB_DIR_OUT | USB_TYPE_CLASS | USB_RECIP_INTERFACE,
477 USB_DT_KEY << 8 | key_idx,
478 port_idx << 8 | iface_no,
479 keyd, keyd_len, USB_CTRL_SET_TIMEOUT);
481 kzfree(keyd); /* clear keys etc. */
486 * Set host's idea of which encryption (and key) method to use when
487 * talking to ad evice on a given port.
489 * If key is NULL, it means disable encryption for that "virtual port"
490 * (used when we disconnect).
492 static int __hwahc_op_set_ptk(struct wusbhc *wusbhc, u8 port_idx, u32 tkid,
493 const void *key, size_t key_size)
495 int result = -ENOMEM;
496 struct hwahc *hwahc = container_of(wusbhc, struct hwahc, wusbhc);
497 struct wahc *wa = &hwahc->wa;
498 u8 iface_no = wa->usb_iface->cur_altsetting->desc.bInterfaceNumber;
501 /* Tell the host which key to use to talk to the device */
503 u8 key_idx = wusb_key_index(0, WUSB_KEY_INDEX_TYPE_PTK,
504 WUSB_KEY_INDEX_ORIGINATOR_HOST);
506 result = __hwahc_dev_set_key(wusbhc, port_idx, tkid,
507 key, key_size, key_idx);
510 encryption_value = wusbhc->ccm1_etd->bEncryptionValue;
512 /* FIXME: this should come from wusbhc->etd[UNSECURE].value */
513 encryption_value = 0;
516 /* Set the encryption type for communicating with the device */
517 result = usb_control_msg(wa->usb_dev, usb_sndctrlpipe(wa->usb_dev, 0),
518 USB_REQ_SET_ENCRYPTION,
519 USB_DIR_OUT | USB_TYPE_CLASS | USB_RECIP_INTERFACE,
520 encryption_value, port_idx << 8 | iface_no,
521 NULL, 0, USB_CTRL_SET_TIMEOUT);
523 dev_err(wusbhc->dev, "Can't set host's WUSB encryption for "
524 "port index %u to %s (value %d): %d\n", port_idx,
525 wusb_et_name(wusbhc->ccm1_etd->bEncryptionType),
526 wusbhc->ccm1_etd->bEncryptionValue, result);
534 static int __hwahc_op_set_gtk(struct wusbhc *wusbhc, u32 tkid,
535 const void *key, size_t key_size)
537 u8 key_idx = wusb_key_index(0, WUSB_KEY_INDEX_TYPE_GTK,
538 WUSB_KEY_INDEX_ORIGINATOR_HOST);
540 return __hwahc_dev_set_key(wusbhc, 0, tkid, key, key_size, key_idx);
544 * Get the Wire Adapter class-specific descriptor
546 * NOTE: this descriptor comes with the big bundled configuration
547 * descriptor that includes the interfaces' and endpoints', so
548 * we just look for it in the cached copy kept by the USB stack.
550 * NOTE2: We convert LE fields to CPU order.
552 static int wa_fill_descr(struct wahc *wa)
555 struct device *dev = &wa->usb_iface->dev;
557 struct usb_device *usb_dev = wa->usb_dev;
558 struct usb_descriptor_header *hdr;
559 struct usb_wa_descriptor *wa_descr;
560 size_t itr_size, actconfig_idx;
562 actconfig_idx = (usb_dev->actconfig - usb_dev->config) /
563 sizeof(usb_dev->config[0]);
564 itr = usb_dev->rawdescriptors[actconfig_idx];
565 itr_size = le16_to_cpu(usb_dev->actconfig->desc.wTotalLength);
566 while (itr_size >= sizeof(*hdr)) {
567 hdr = (struct usb_descriptor_header *) itr;
568 dev_dbg(dev, "Extra device descriptor: "
569 "type %02x/%u bytes @ %zu (%zu left)\n",
570 hdr->bDescriptorType, hdr->bLength,
571 (itr - usb_dev->rawdescriptors[actconfig_idx]),
573 if (hdr->bDescriptorType == USB_DT_WIRE_ADAPTER)
576 itr_size -= hdr->bLength;
578 dev_err(dev, "cannot find Wire Adapter Class descriptor\n");
583 if (hdr->bLength > itr_size) { /* is it available? */
584 dev_err(dev, "incomplete Wire Adapter Class descriptor "
585 "(%zu bytes left, %u needed)\n",
586 itr_size, hdr->bLength);
589 if (hdr->bLength < sizeof(*wa->wa_descr)) {
590 dev_err(dev, "short Wire Adapter Class descriptor\n");
593 wa->wa_descr = wa_descr = (struct usb_wa_descriptor *) hdr;
594 if (le16_to_cpu(wa_descr->bcdWAVersion) > 0x0100)
595 dev_warn(dev, "Wire Adapter v%d.%d newer than groked v1.0\n",
596 (le16_to_cpu(wa_descr->bcdWAVersion) & 0xff00) >> 8,
597 le16_to_cpu(wa_descr->bcdWAVersion) & 0x00ff);
603 static const struct hc_driver hwahc_hc_driver = {
604 .description = "hwa-hcd",
605 .product_desc = "Wireless USB HWA host controller",
606 .hcd_priv_size = sizeof(struct hwahc) - sizeof(struct usb_hcd),
607 .irq = NULL, /* FIXME */
609 .reset = hwahc_op_reset,
610 .start = hwahc_op_start,
611 .stop = hwahc_op_stop,
612 .get_frame_number = hwahc_op_get_frame_number,
613 .urb_enqueue = hwahc_op_urb_enqueue,
614 .urb_dequeue = hwahc_op_urb_dequeue,
615 .endpoint_disable = hwahc_op_endpoint_disable,
617 .hub_status_data = wusbhc_rh_status_data,
618 .hub_control = wusbhc_rh_control,
619 .start_port_reset = wusbhc_rh_start_port_reset,
622 static int hwahc_security_create(struct hwahc *hwahc)
625 struct wusbhc *wusbhc = &hwahc->wusbhc;
626 struct usb_device *usb_dev = hwahc->wa.usb_dev;
627 struct device *dev = &usb_dev->dev;
628 struct usb_security_descriptor *secd;
629 struct usb_encryption_descriptor *etd;
631 size_t itr_size, needed, bytes;
635 /* Find the host's security descriptors in the config descr bundle */
636 index = (usb_dev->actconfig - usb_dev->config) /
637 sizeof(usb_dev->config[0]);
638 itr = usb_dev->rawdescriptors[index];
639 itr_size = le16_to_cpu(usb_dev->actconfig->desc.wTotalLength);
640 top = itr + itr_size;
641 result = __usb_get_extra_descriptor(usb_dev->rawdescriptors[index],
642 le16_to_cpu(usb_dev->actconfig->desc.wTotalLength),
643 USB_DT_SECURITY, (void **) &secd, sizeof(*secd));
645 dev_warn(dev, "BUG? WUSB host has no security descriptors\n");
648 needed = sizeof(*secd);
649 if (top - (void *)secd < needed) {
650 dev_err(dev, "BUG? Not enough data to process security "
651 "descriptor header (%zu bytes left vs %zu needed)\n",
652 top - (void *) secd, needed);
655 needed = le16_to_cpu(secd->wTotalLength);
656 if (top - (void *)secd < needed) {
657 dev_err(dev, "BUG? Not enough data to process security "
658 "descriptors (%zu bytes left vs %zu needed)\n",
659 top - (void *) secd, needed);
662 /* Walk over the sec descriptors and store CCM1's on wusbhc */
663 itr = (void *) secd + sizeof(*secd);
664 top = (void *) secd + le16_to_cpu(secd->wTotalLength);
669 if (top - itr < sizeof(*etd)) {
670 dev_err(dev, "BUG: bad host security descriptor; "
671 "not enough data (%zu vs %zu left)\n",
672 top - itr, sizeof(*etd));
675 if (etd->bLength < sizeof(*etd)) {
676 dev_err(dev, "BUG: bad host encryption descriptor; "
677 "descriptor is too short "
678 "(%zu vs %zu needed)\n",
679 (size_t)etd->bLength, sizeof(*etd));
683 bytes += snprintf(buf + bytes, sizeof(buf) - bytes,
685 wusb_et_name(etd->bEncryptionType),
686 etd->bEncryptionValue);
687 wusbhc->ccm1_etd = etd;
689 dev_info(dev, "supported encryption types: %s\n", buf);
690 if (wusbhc->ccm1_etd == NULL) {
691 dev_err(dev, "E: host doesn't support CCM-1 crypto\n");
694 /* Pretty print what we support */
698 static void hwahc_security_release(struct hwahc *hwahc)
700 /* nothing to do here so far... */
703 static int hwahc_create(struct hwahc *hwahc, struct usb_interface *iface,
704 kernel_ulong_t quirks)
707 struct device *dev = &iface->dev;
708 struct wusbhc *wusbhc = &hwahc->wusbhc;
709 struct wahc *wa = &hwahc->wa;
710 struct usb_device *usb_dev = interface_to_usbdev(iface);
712 wa->usb_dev = usb_get_dev(usb_dev); /* bind the USB device */
713 wa->usb_iface = usb_get_intf(iface);
715 /* defer getting the uwb_rc handle until it is needed since it
716 * may not have been registered by the hwa_rc driver yet. */
717 wusbhc->uwb_rc = NULL;
718 result = wa_fill_descr(wa); /* Get the device descriptor */
720 goto error_fill_descriptor;
721 if (wa->wa_descr->bNumPorts > USB_MAXCHILDREN) {
722 dev_err(dev, "FIXME: USB_MAXCHILDREN too low for WUSB "
723 "adapter (%u ports)\n", wa->wa_descr->bNumPorts);
724 wusbhc->ports_max = USB_MAXCHILDREN;
726 wusbhc->ports_max = wa->wa_descr->bNumPorts;
728 wusbhc->mmcies_max = wa->wa_descr->bNumMMCIEs;
729 wusbhc->start = __hwahc_op_wusbhc_start;
730 wusbhc->stop = __hwahc_op_wusbhc_stop;
731 wusbhc->mmcie_add = __hwahc_op_mmcie_add;
732 wusbhc->mmcie_rm = __hwahc_op_mmcie_rm;
733 wusbhc->dev_info_set = __hwahc_op_dev_info_set;
734 wusbhc->bwa_set = __hwahc_op_bwa_set;
735 wusbhc->set_num_dnts = __hwahc_op_set_num_dnts;
736 wusbhc->set_ptk = __hwahc_op_set_ptk;
737 wusbhc->set_gtk = __hwahc_op_set_gtk;
738 result = hwahc_security_create(hwahc);
740 dev_err(dev, "Can't initialize security: %d\n", result);
741 goto error_security_create;
743 wa->wusb = wusbhc; /* FIXME: ugly, need to fix */
744 result = wusbhc_create(&hwahc->wusbhc);
746 dev_err(dev, "Can't create WUSB HC structures: %d\n", result);
747 goto error_wusbhc_create;
749 result = wa_create(&hwahc->wa, iface, quirks);
751 goto error_wa_create;
755 wusbhc_destroy(&hwahc->wusbhc);
757 /* WA Descr fill allocs no resources */
758 error_security_create:
759 error_fill_descriptor:
761 usb_put_dev(usb_dev);
765 static void hwahc_destroy(struct hwahc *hwahc)
767 struct wusbhc *wusbhc = &hwahc->wusbhc;
769 mutex_lock(&wusbhc->mutex);
770 __wa_destroy(&hwahc->wa);
771 wusbhc_destroy(&hwahc->wusbhc);
772 hwahc_security_release(hwahc);
773 hwahc->wusbhc.dev = NULL;
774 uwb_rc_put(wusbhc->uwb_rc);
775 usb_put_intf(hwahc->wa.usb_iface);
776 usb_put_dev(hwahc->wa.usb_dev);
777 mutex_unlock(&wusbhc->mutex);
780 static void hwahc_init(struct hwahc *hwahc)
785 static int hwahc_probe(struct usb_interface *usb_iface,
786 const struct usb_device_id *id)
789 struct usb_hcd *usb_hcd;
790 struct wusbhc *wusbhc;
792 struct device *dev = &usb_iface->dev;
795 usb_hcd = usb_create_hcd(&hwahc_hc_driver, &usb_iface->dev, "wusb-hwa");
796 if (usb_hcd == NULL) {
797 dev_err(dev, "unable to allocate instance\n");
800 usb_hcd->wireless = 1;
801 usb_hcd->self.sg_tablesize = ~0;
802 wusbhc = usb_hcd_to_wusbhc(usb_hcd);
803 hwahc = container_of(wusbhc, struct hwahc, wusbhc);
805 result = hwahc_create(hwahc, usb_iface, id->driver_info);
807 dev_err(dev, "Cannot initialize internals: %d\n", result);
808 goto error_hwahc_create;
810 result = usb_add_hcd(usb_hcd, 0, 0);
812 dev_err(dev, "Cannot add HCD: %d\n", result);
815 device_wakeup_enable(usb_hcd->self.controller);
816 result = wusbhc_b_create(&hwahc->wusbhc);
818 dev_err(dev, "Cannot setup phase B of WUSBHC: %d\n", result);
819 goto error_wusbhc_b_create;
823 error_wusbhc_b_create:
824 usb_remove_hcd(usb_hcd);
826 hwahc_destroy(hwahc);
828 usb_put_hcd(usb_hcd);
833 static void hwahc_disconnect(struct usb_interface *usb_iface)
835 struct usb_hcd *usb_hcd;
836 struct wusbhc *wusbhc;
839 usb_hcd = usb_get_intfdata(usb_iface);
840 wusbhc = usb_hcd_to_wusbhc(usb_hcd);
841 hwahc = container_of(wusbhc, struct hwahc, wusbhc);
843 wusbhc_b_destroy(&hwahc->wusbhc);
844 usb_remove_hcd(usb_hcd);
845 hwahc_destroy(hwahc);
846 usb_put_hcd(usb_hcd);
849 static const struct usb_device_id hwahc_id_table[] = {
851 { USB_DEVICE_AND_INTERFACE_INFO(0x13dc, 0x5310, 0xe0, 0x02, 0x01),
852 .driver_info = WUSB_QUIRK_ALEREON_HWA_CONCAT_ISOC |
853 WUSB_QUIRK_ALEREON_HWA_DISABLE_XFER_NOTIFICATIONS },
855 { USB_DEVICE_AND_INTERFACE_INFO(0x13dc, 0x5611, 0xe0, 0x02, 0x01),
856 .driver_info = WUSB_QUIRK_ALEREON_HWA_CONCAT_ISOC |
857 WUSB_QUIRK_ALEREON_HWA_DISABLE_XFER_NOTIFICATIONS },
858 /* FIXME: use class labels for this */
859 { USB_INTERFACE_INFO(0xe0, 0x02, 0x01), },
862 MODULE_DEVICE_TABLE(usb, hwahc_id_table);
864 static struct usb_driver hwahc_driver = {
866 .probe = hwahc_probe,
867 .disconnect = hwahc_disconnect,
868 .id_table = hwahc_id_table,
871 module_usb_driver(hwahc_driver);
874 MODULE_DESCRIPTION("Host Wired Adapter USB Host Control Driver");
875 MODULE_LICENSE("GPL");