blob: c35ee439481030725c5c2a55842bcefca688e16d [file] [log] [blame]
Inaky Perez-Gonzalez90ff96f2008-09-17 16:34:23 +01001/*
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önig421f91d2010-06-11 12:17:00 +020029 * the HC specific stuff has to be already initialized (like sysfs
Inaky Perez-Gonzalez90ff96f2008-09-17 16:34:23 +010030 * 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 */
42static 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 */
57static 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
65static 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 Pugliese7d9852a2013-06-06 10:40:49 -050078 wusbhc->trust_timeout = min_t(unsigned, trust_timeout, 500);
Inaky Perez-Gonzalez90ff96f2008-09-17 16:34:23 +010079 cancel_delayed_work(&wusbhc->keep_alive_timer);
80 flush_workqueue(wusbd);
81 queue_delayed_work(wusbd, &wusbhc->keep_alive_timer,
Thomas Pugliese7d9852a2013-06-06 10:40:49 -050082 msecs_to_jiffies(wusbhc->trust_timeout / 2));
Inaky Perez-Gonzalez90ff96f2008-09-17 16:34:23 +010083out:
84 return result < 0 ? result : size;
85}
86static DEVICE_ATTR(wusb_trust_timeout, 0644, wusb_trust_timeout_show,
87 wusb_trust_timeout_store);
88
89/*
David Vrabelfca10c82009-04-08 17:36:30 +000090 * Show the current WUSB CHID.
Inaky Perez-Gonzalez90ff96f2008-09-17 16:34:23 +010091 */
92static 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 Vrabelfca10c82009-04-08 17:36:30 +000096 const struct wusb_ckhdid *chid;
Inaky Perez-Gonzalez90ff96f2008-09-17 16:34:23 +010097 ssize_t result = 0;
98
99 if (wusbhc->wuie_host_info != NULL)
David Vrabelfca10c82009-04-08 17:36:30 +0000100 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-Gonzalez90ff96f2008-09-17 16:34:23 +0100107 return result;
108}
109
110/*
David Vrabelfca10c82009-04-08 17:36:30 +0000111 * Store a new CHID.
Inaky Perez-Gonzalez90ff96f2008-09-17 16:34:23 +0100112 *
David Vrabelfca10c82009-04-08 17:36:30 +0000113 * - Write an all zeros CHID and it will stop the controller
114 * - Write a non-zero CHID and it will start it.
Inaky Perez-Gonzalez90ff96f2008-09-17 16:34:23 +0100115 *
116 * See wusbhc_chid_set() for more info.
117 */
118static 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}
147static DEVICE_ATTR(wusb_chid, 0644, wusb_chid_show, wusb_chid_store);
148
David Vrabelc3f22d92009-10-12 15:45:18 +0000149
150static 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
159static 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}
176static DEVICE_ATTR(wusb_phy_rate, 0644, wusb_phy_rate_show, wusb_phy_rate_store);
177
Inaky Perez-Gonzalez90ff96f2008-09-17 16:34:23 +0100178/* Group all the WUSBHC attributes */
179static struct attribute *wusbhc_attrs[] = {
180 &dev_attr_wusb_trust_timeout.attr,
181 &dev_attr_wusb_chid.attr,
David Vrabelc3f22d92009-10-12 15:45:18 +0000182 &dev_attr_wusb_phy_rate.attr,
Inaky Perez-Gonzalez90ff96f2008-09-17 16:34:23 +0100183 NULL,
184};
185
186static struct attribute_group wusbhc_attr_group = {
187 .name = NULL, /* we want them in the same directory */
188 .attrs = wusbhc_attrs,
189};
190
191/*
192 * Create a wusbhc instance
193 *
194 * NOTEs:
195 *
196 * - assumes *wusbhc has been zeroed and wusbhc->usb_hcd has been
197 * initialized but not added.
198 *
199 * - fill out ports_max, mmcies_max and mmcie_{add,rm} before calling.
200 *
201 * - fill out wusbhc->uwb_rc and refcount it before calling
202 * - fill out the wusbhc->sec_modes array
203 */
204int wusbhc_create(struct wusbhc *wusbhc)
205{
206 int result = 0;
207
208 wusbhc->trust_timeout = WUSB_TRUST_TIMEOUT_MS;
David Vrabelc3f22d92009-10-12 15:45:18 +0000209 wusbhc->phy_rate = UWB_PHY_RATE_INVALID - 1;
210
Inaky Perez-Gonzalez90ff96f2008-09-17 16:34:23 +0100211 mutex_init(&wusbhc->mutex);
212 result = wusbhc_mmcie_create(wusbhc);
213 if (result < 0)
214 goto error_mmcie_create;
215 result = wusbhc_devconnect_create(wusbhc);
216 if (result < 0)
217 goto error_devconnect_create;
218 result = wusbhc_rh_create(wusbhc);
219 if (result < 0)
220 goto error_rh_create;
221 result = wusbhc_sec_create(wusbhc);
222 if (result < 0)
223 goto error_sec_create;
Inaky Perez-Gonzalez90ff96f2008-09-17 16:34:23 +0100224 return 0;
225
Inaky Perez-Gonzalez90ff96f2008-09-17 16:34:23 +0100226error_sec_create:
227 wusbhc_rh_destroy(wusbhc);
228error_rh_create:
229 wusbhc_devconnect_destroy(wusbhc);
230error_devconnect_create:
231 wusbhc_mmcie_destroy(wusbhc);
232error_mmcie_create:
233 return result;
234}
235EXPORT_SYMBOL_GPL(wusbhc_create);
236
237static inline struct kobject *wusbhc_kobj(struct wusbhc *wusbhc)
238{
239 return &wusbhc->usb_hcd.self.controller->kobj;
240}
241
242/*
243 * Phase B of a wusbhc instance creation
244 *
245 * Creates fields that depend on wusbhc->usb_hcd having been
246 * added. This is where we create the sysfs files in
247 * /sys/class/usb_host/usb_hostX/.
248 *
249 * NOTE: Assumes wusbhc->usb_hcd has been already added by the upper
250 * layer (hwahc or whci)
251 */
252int wusbhc_b_create(struct wusbhc *wusbhc)
253{
254 int result = 0;
255 struct device *dev = wusbhc->usb_hcd.self.controller;
256
257 result = sysfs_create_group(wusbhc_kobj(wusbhc), &wusbhc_attr_group);
258 if (result < 0) {
259 dev_err(dev, "Cannot register WUSBHC attributes: %d\n", result);
260 goto error_create_attr_group;
261 }
David Vrabelb60066c2008-09-17 16:34:40 +0100262
263 result = wusbhc_pal_register(wusbhc);
264 if (result < 0)
265 goto error_pal_register;
266 return 0;
267
268error_pal_register:
269 sysfs_remove_group(wusbhc_kobj(wusbhc), &wusbhc_attr_group);
Inaky Perez-Gonzalez90ff96f2008-09-17 16:34:23 +0100270error_create_attr_group:
271 return result;
272}
273EXPORT_SYMBOL_GPL(wusbhc_b_create);
274
275void wusbhc_b_destroy(struct wusbhc *wusbhc)
276{
David Vrabelb60066c2008-09-17 16:34:40 +0100277 wusbhc_pal_unregister(wusbhc);
Inaky Perez-Gonzalez90ff96f2008-09-17 16:34:23 +0100278 sysfs_remove_group(wusbhc_kobj(wusbhc), &wusbhc_attr_group);
279}
280EXPORT_SYMBOL_GPL(wusbhc_b_destroy);
281
282void wusbhc_destroy(struct wusbhc *wusbhc)
283{
Inaky Perez-Gonzalez90ff96f2008-09-17 16:34:23 +0100284 wusbhc_sec_destroy(wusbhc);
285 wusbhc_rh_destroy(wusbhc);
286 wusbhc_devconnect_destroy(wusbhc);
287 wusbhc_mmcie_destroy(wusbhc);
288}
289EXPORT_SYMBOL_GPL(wusbhc_destroy);
290
291struct workqueue_struct *wusbd;
292EXPORT_SYMBOL_GPL(wusbd);
293
294/*
295 * WUSB Cluster ID allocation map
296 *
297 * Each WUSB bus in a channel is identified with a Cluster Id in the
298 * unauth address pace (WUSB1.0[4.3]). We take the range 0xe0 to 0xff
299 * (that's space for 31 WUSB controllers, as 0xff can't be taken). We
300 * start taking from 0xff, 0xfe, 0xfd... (hence the += or -= 0xff).
301 *
302 * For each one we taken, we pin it in the bitap
303 */
304#define CLUSTER_IDS 32
305static DECLARE_BITMAP(wusb_cluster_id_table, CLUSTER_IDS);
306static DEFINE_SPINLOCK(wusb_cluster_ids_lock);
307
308/*
309 * Get a WUSB Cluster ID
310 *
311 * Need to release with wusb_cluster_id_put() when done w/ it.
312 */
313/* FIXME: coordinate with the choose_addres() from the USB stack */
314/* we want to leave the top of the 128 range for cluster addresses and
315 * the bottom for device addresses (as we map them one on one with
316 * ports). */
317u8 wusb_cluster_id_get(void)
318{
319 u8 id;
320 spin_lock(&wusb_cluster_ids_lock);
321 id = find_first_zero_bit(wusb_cluster_id_table, CLUSTER_IDS);
Akinobu Mita962f3ff2011-03-02 20:35:28 +0900322 if (id >= CLUSTER_IDS) {
Inaky Perez-Gonzalez90ff96f2008-09-17 16:34:23 +0100323 id = 0;
324 goto out;
325 }
326 set_bit(id, wusb_cluster_id_table);
327 id = (u8) 0xff - id;
328out:
329 spin_unlock(&wusb_cluster_ids_lock);
330 return id;
331
332}
333EXPORT_SYMBOL_GPL(wusb_cluster_id_get);
334
335/*
336 * Release a WUSB Cluster ID
337 *
338 * Obtained it with wusb_cluster_id_get()
339 */
340void wusb_cluster_id_put(u8 id)
341{
342 id = 0xff - id;
343 BUG_ON(id >= CLUSTER_IDS);
344 spin_lock(&wusb_cluster_ids_lock);
345 WARN_ON(!test_bit(id, wusb_cluster_id_table));
346 clear_bit(id, wusb_cluster_id_table);
347 spin_unlock(&wusb_cluster_ids_lock);
348}
349EXPORT_SYMBOL_GPL(wusb_cluster_id_put);
350
351/**
352 * wusbhc_giveback_urb - return an URB to the USB core
353 * @wusbhc: the host controller the URB is from.
354 * @urb: the URB.
355 * @status: the URB's status.
356 *
357 * Return an URB to the USB core doing some additional WUSB specific
358 * processing.
359 *
360 * - After a successful transfer, update the trust timeout timestamp
361 * for the WUSB device.
362 *
363 * - [WUSB] sections 4.13 and 7.5.1 specifies the stop retrasmittion
364 * condition for the WCONNECTACK_IE is that the host has observed
365 * the associated device responding to a control transfer.
366 */
367void wusbhc_giveback_urb(struct wusbhc *wusbhc, struct urb *urb, int status)
368{
369 struct wusb_dev *wusb_dev = __wusb_dev_get_by_usb_dev(wusbhc, urb->dev);
370
David Vrabel5936ac72009-04-08 17:36:32 +0000371 if (status == 0 && wusb_dev) {
Inaky Perez-Gonzalez90ff96f2008-09-17 16:34:23 +0100372 wusb_dev->entry_ts = jiffies;
373
David Vrabel5936ac72009-04-08 17:36:32 +0000374 /* wusbhc_devconnect_acked() can't be called from
Inaky Perez-Gonzalez90ff96f2008-09-17 16:34:23 +0100375 atomic context so defer it to a work queue. */
376 if (!list_empty(&wusb_dev->cack_node))
377 queue_work(wusbd, &wusb_dev->devconnect_acked_work);
David Vrabel5936ac72009-04-08 17:36:32 +0000378 else
379 wusb_dev_put(wusb_dev);
Inaky Perez-Gonzalez90ff96f2008-09-17 16:34:23 +0100380 }
381
382 usb_hcd_giveback_urb(&wusbhc->usb_hcd, urb, status);
383}
384EXPORT_SYMBOL_GPL(wusbhc_giveback_urb);
385
386/**
387 * wusbhc_reset_all - reset the HC hardware
388 * @wusbhc: the host controller to reset.
389 *
390 * Request a full hardware reset of the chip. This will also reset
391 * the radio controller and any other PALs.
392 */
393void wusbhc_reset_all(struct wusbhc *wusbhc)
394{
395 uwb_rc_reset_all(wusbhc->uwb_rc);
396}
397EXPORT_SYMBOL_GPL(wusbhc_reset_all);
398
399static struct notifier_block wusb_usb_notifier = {
400 .notifier_call = wusb_usb_ncb,
401 .priority = INT_MAX /* Need to be called first of all */
402};
403
404static int __init wusbcore_init(void)
405{
406 int result;
407 result = wusb_crypto_init();
408 if (result < 0)
409 goto error_crypto_init;
410 /* WQ is singlethread because we need to serialize notifications */
411 wusbd = create_singlethread_workqueue("wusbd");
412 if (wusbd == NULL) {
413 result = -ENOMEM;
414 printk(KERN_ERR "WUSB-core: Cannot create wusbd workqueue\n");
415 goto error_wusbd_create;
416 }
417 usb_register_notify(&wusb_usb_notifier);
418 bitmap_zero(wusb_cluster_id_table, CLUSTER_IDS);
419 set_bit(0, wusb_cluster_id_table); /* reserve Cluster ID 0xff */
420 return 0;
421
422error_wusbd_create:
423 wusb_crypto_exit();
424error_crypto_init:
425 return result;
426
427}
428module_init(wusbcore_init);
429
430static void __exit wusbcore_exit(void)
431{
432 clear_bit(0, wusb_cluster_id_table);
433 if (!bitmap_empty(wusb_cluster_id_table, CLUSTER_IDS)) {
434 char buf[256];
435 bitmap_scnprintf(buf, sizeof(buf), wusb_cluster_id_table,
436 CLUSTER_IDS);
437 printk(KERN_ERR "BUG: WUSB Cluster IDs not released "
438 "on exit: %s\n", buf);
439 WARN_ON(1);
440 }
441 usb_unregister_notify(&wusb_usb_notifier);
442 destroy_workqueue(wusbd);
443 wusb_crypto_exit();
444}
445module_exit(wusbcore_exit);
446
447MODULE_AUTHOR("Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>");
448MODULE_DESCRIPTION("Wireless USB core");
449MODULE_LICENSE("GPL");