wimax/i2400m: Let device's status reports change the device state
[safe/jmp/linux-2.6] / drivers / net / wimax / i2400m / driver.c
1 /*
2  * Intel Wireless WiMAX Connection 2400m
3  * Generic probe/disconnect, reset and message passing
4  *
5  *
6  * Copyright (C) 2007-2008 Intel Corporation <linux-wimax@intel.com>
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  * See i2400m.h for driver documentation. This contains helpers for
25  * the driver model glue [_setup()/_release()], handling device resets
26  * [_dev_reset_handle()], and the backends for the WiMAX stack ops
27  * reset [_op_reset()] and message from user [_op_msg_from_user()].
28  *
29  * ROADMAP:
30  *
31  * i2400m_op_msg_from_user()
32  *   i2400m_msg_to_dev()
33  *   wimax_msg_to_user_send()
34  *
35  * i2400m_op_reset()
36  *   i240m->bus_reset()
37  *
38  * i2400m_dev_reset_handle()
39  *   __i2400m_dev_reset_handle()
40  *     __i2400m_dev_stop()
41  *     __i2400m_dev_start()
42  *
43  * i2400m_setup()
44  *   i2400m->bus_setup()
45  *   i2400m_bootrom_init()
46  *   register_netdev()
47  *   wimax_dev_add()
48  *   i2400m_dev_start()
49  *     __i2400m_dev_start()
50  *       i2400m_dev_bootstrap()
51  *       i2400m_tx_setup()
52  *       i2400m->bus_dev_start()
53  *       i2400m_firmware_check()
54  *       i2400m_check_mac_addr()
55  *
56  * i2400m_release()
57  *   i2400m_dev_stop()
58  *     __i2400m_dev_stop()
59  *       i2400m_dev_shutdown()
60  *       i2400m->bus_dev_stop()
61  *       i2400m_tx_release()
62  *   i2400m->bus_release()
63  *   wimax_dev_rm()
64  *   unregister_netdev()
65  */
66 #include "i2400m.h"
67 #include <linux/etherdevice.h>
68 #include <linux/wimax/i2400m.h>
69 #include <linux/module.h>
70 #include <linux/moduleparam.h>
71 #include <linux/suspend.h>
72
73 #define D_SUBMODULE driver
74 #include "debug-levels.h"
75
76
77 int i2400m_idle_mode_disabled;  /* 0 (idle mode enabled) by default */
78 module_param_named(idle_mode_disabled, i2400m_idle_mode_disabled, int, 0644);
79 MODULE_PARM_DESC(idle_mode_disabled,
80                  "If true, the device will not enable idle mode negotiation "
81                  "with the base station (when connected) to save power.");
82
83 int i2400m_rx_reorder_disabled; /* 0 (rx reorder enabled) by default */
84 module_param_named(rx_reorder_disabled, i2400m_rx_reorder_disabled, int, 0644);
85 MODULE_PARM_DESC(rx_reorder_disabled,
86                  "If true, RX reordering will be disabled.");
87
88 int i2400m_power_save_disabled; /* 0 (power saving enabled) by default */
89 module_param_named(power_save_disabled, i2400m_power_save_disabled, int, 0644);
90 MODULE_PARM_DESC(power_save_disabled,
91                  "If true, the driver will not tell the device to enter "
92                  "power saving mode when it reports it is ready for it. "
93                  "False by default (so the device is told to do power "
94                  "saving).");
95
96 static char i2400m_debug_params[128];
97 module_param_string(debug, i2400m_debug_params, sizeof(i2400m_debug_params),
98                     0644);
99 MODULE_PARM_DESC(debug,
100                  "String of space-separated NAME:VALUE pairs, where NAMEs "
101                  "are the different debug submodules and VALUE are the "
102                  "initial debug value to set.");
103
104 static char i2400m_barkers_params[128];
105 module_param_string(barkers, i2400m_barkers_params,
106                     sizeof(i2400m_barkers_params), 0644);
107 MODULE_PARM_DESC(barkers,
108                  "String of comma-separated 32-bit values; each is "
109                  "recognized as the value the device sends as a reboot "
110                  "signal; values are appended to a list--setting one value "
111                  "as zero cleans the existing list and starts a new one.");
112
113 static
114 struct i2400m_work *__i2400m_work_setup(
115         struct i2400m *i2400m, void (*fn)(struct work_struct *),
116         gfp_t gfp_flags, const void *pl, size_t pl_size)
117 {
118         struct i2400m_work *iw;
119
120         iw = kzalloc(sizeof(*iw) + pl_size, gfp_flags);
121         if (iw == NULL)
122                 return NULL;
123         iw->i2400m = i2400m_get(i2400m);
124         iw->pl_size = pl_size;
125         memcpy(iw->pl, pl, pl_size);
126         INIT_WORK(&iw->ws, fn);
127         return iw;
128 }
129
130
131 /*
132  * Schedule i2400m's specific work on the system's queue.
133  *
134  * Used for a few cases where we really need it; otherwise, identical
135  * to i2400m_queue_work().
136  *
137  * Returns < 0 errno code on error, 1 if ok.
138  *
139  * If it returns zero, something really bad happened, as it means the
140  * works struct was already queued, but we have just allocated it, so
141  * it should not happen.
142  */
143 int i2400m_schedule_work(struct i2400m *i2400m,
144                          void (*fn)(struct work_struct *), gfp_t gfp_flags,
145                          const void *pl, size_t pl_size)
146 {
147         int result;
148         struct i2400m_work *iw;
149
150         result = -ENOMEM;
151         iw = __i2400m_work_setup(i2400m, fn, gfp_flags, pl, pl_size);
152         if (iw != NULL) {
153                 result = schedule_work(&iw->ws);
154                 if (WARN_ON(result == 0))
155                         result = -ENXIO;
156         }
157         return result;
158 }
159
160
161 /*
162  * WiMAX stack operation: relay a message from user space
163  *
164  * @wimax_dev: device descriptor
165  * @pipe_name: named pipe the message is for
166  * @msg_buf: pointer to the message bytes
167  * @msg_len: length of the buffer
168  * @genl_info: passed by the generic netlink layer
169  *
170  * The WiMAX stack will call this function when a message was received
171  * from user space.
172  *
173  * For the i2400m, this is an L3L4 message, as specified in
174  * include/linux/wimax/i2400m.h, and thus prefixed with a 'struct
175  * i2400m_l3l4_hdr'. Driver (and device) expect the messages to be
176  * coded in Little Endian.
177  *
178  * This function just verifies that the header declaration and the
179  * payload are consistent and then deals with it, either forwarding it
180  * to the device or procesing it locally.
181  *
182  * In the i2400m, messages are basically commands that will carry an
183  * ack, so we use i2400m_msg_to_dev() and then deliver the ack back to
184  * user space. The rx.c code might intercept the response and use it
185  * to update the driver's state, but then it will pass it on so it can
186  * be relayed back to user space.
187  *
188  * Note that asynchronous events from the device are processed and
189  * sent to user space in rx.c.
190  */
191 static
192 int i2400m_op_msg_from_user(struct wimax_dev *wimax_dev,
193                             const char *pipe_name,
194                             const void *msg_buf, size_t msg_len,
195                             const struct genl_info *genl_info)
196 {
197         int result;
198         struct i2400m *i2400m = wimax_dev_to_i2400m(wimax_dev);
199         struct device *dev = i2400m_dev(i2400m);
200         struct sk_buff *ack_skb;
201
202         d_fnstart(4, dev, "(wimax_dev %p [i2400m %p] msg_buf %p "
203                   "msg_len %zu genl_info %p)\n", wimax_dev, i2400m,
204                   msg_buf, msg_len, genl_info);
205         ack_skb = i2400m_msg_to_dev(i2400m, msg_buf, msg_len);
206         result = PTR_ERR(ack_skb);
207         if (IS_ERR(ack_skb))
208                 goto error_msg_to_dev;
209         result = wimax_msg_send(&i2400m->wimax_dev, ack_skb);
210 error_msg_to_dev:
211         d_fnend(4, dev, "(wimax_dev %p [i2400m %p] msg_buf %p msg_len %zu "
212                 "genl_info %p) = %d\n", wimax_dev, i2400m, msg_buf, msg_len,
213                 genl_info, result);
214         return result;
215 }
216
217
218 /*
219  * Context to wait for a reset to finalize
220  */
221 struct i2400m_reset_ctx {
222         struct completion completion;
223         int result;
224 };
225
226
227 /*
228  * WiMAX stack operation: reset a device
229  *
230  * @wimax_dev: device descriptor
231  *
232  * See the documentation for wimax_reset() and wimax_dev->op_reset for
233  * the requirements of this function. The WiMAX stack guarantees
234  * serialization on calls to this function.
235  *
236  * Do a warm reset on the device; if it fails, resort to a cold reset
237  * and return -ENODEV. On successful warm reset, we need to block
238  * until it is complete.
239  *
240  * The bus-driver implementation of reset takes care of falling back
241  * to cold reset if warm fails.
242  */
243 static
244 int i2400m_op_reset(struct wimax_dev *wimax_dev)
245 {
246         int result;
247         struct i2400m *i2400m = wimax_dev_to_i2400m(wimax_dev);
248         struct device *dev = i2400m_dev(i2400m);
249         struct i2400m_reset_ctx ctx = {
250                 .completion = COMPLETION_INITIALIZER_ONSTACK(ctx.completion),
251                 .result = 0,
252         };
253
254         d_fnstart(4, dev, "(wimax_dev %p)\n", wimax_dev);
255         mutex_lock(&i2400m->init_mutex);
256         i2400m->reset_ctx = &ctx;
257         mutex_unlock(&i2400m->init_mutex);
258         result = i2400m->bus_reset(i2400m, I2400M_RT_WARM);
259         if (result < 0)
260                 goto out;
261         result = wait_for_completion_timeout(&ctx.completion, 4*HZ);
262         if (result == 0)
263                 result = -ETIMEDOUT;
264         else if (result > 0)
265                 result = ctx.result;
266         /* if result < 0, pass it on */
267         mutex_lock(&i2400m->init_mutex);
268         i2400m->reset_ctx = NULL;
269         mutex_unlock(&i2400m->init_mutex);
270 out:
271         d_fnend(4, dev, "(wimax_dev %p) = %d\n", wimax_dev, result);
272         return result;
273 }
274
275
276 /*
277  * Check the MAC address we got from boot mode is ok
278  *
279  * @i2400m: device descriptor
280  *
281  * Returns: 0 if ok, < 0 errno code on error.
282  */
283 static
284 int i2400m_check_mac_addr(struct i2400m *i2400m)
285 {
286         int result;
287         struct device *dev = i2400m_dev(i2400m);
288         struct sk_buff *skb;
289         const struct i2400m_tlv_detailed_device_info *ddi;
290         struct net_device *net_dev = i2400m->wimax_dev.net_dev;
291         const unsigned char zeromac[ETH_ALEN] = { 0 };
292
293         d_fnstart(3, dev, "(i2400m %p)\n", i2400m);
294         skb = i2400m_get_device_info(i2400m);
295         if (IS_ERR(skb)) {
296                 result = PTR_ERR(skb);
297                 dev_err(dev, "Cannot verify MAC address, error reading: %d\n",
298                         result);
299                 goto error;
300         }
301         /* Extract MAC addresss */
302         ddi = (void *) skb->data;
303         BUILD_BUG_ON(ETH_ALEN != sizeof(ddi->mac_address));
304         d_printf(2, dev, "GET DEVICE INFO: mac addr "
305                  "%02x:%02x:%02x:%02x:%02x:%02x\n",
306                  ddi->mac_address[0], ddi->mac_address[1],
307                  ddi->mac_address[2], ddi->mac_address[3],
308                  ddi->mac_address[4], ddi->mac_address[5]);
309         if (!memcmp(net_dev->perm_addr, ddi->mac_address,
310                    sizeof(ddi->mac_address)))
311                 goto ok;
312         dev_warn(dev, "warning: device reports a different MAC address "
313                  "to that of boot mode's\n");
314         dev_warn(dev, "device reports     %02x:%02x:%02x:%02x:%02x:%02x\n",
315                  ddi->mac_address[0], ddi->mac_address[1],
316                  ddi->mac_address[2], ddi->mac_address[3],
317                  ddi->mac_address[4], ddi->mac_address[5]);
318         dev_warn(dev, "boot mode reported %02x:%02x:%02x:%02x:%02x:%02x\n",
319                  net_dev->perm_addr[0], net_dev->perm_addr[1],
320                  net_dev->perm_addr[2], net_dev->perm_addr[3],
321                  net_dev->perm_addr[4], net_dev->perm_addr[5]);
322         if (!memcmp(zeromac, ddi->mac_address, sizeof(zeromac)))
323                 dev_err(dev, "device reports an invalid MAC address, "
324                         "not updating\n");
325         else {
326                 dev_warn(dev, "updating MAC address\n");
327                 net_dev->addr_len = ETH_ALEN;
328                 memcpy(net_dev->perm_addr, ddi->mac_address, ETH_ALEN);
329                 memcpy(net_dev->dev_addr, ddi->mac_address, ETH_ALEN);
330         }
331 ok:
332         result = 0;
333         kfree_skb(skb);
334 error:
335         d_fnend(3, dev, "(i2400m %p) = %d\n", i2400m, result);
336         return result;
337 }
338
339
340 /**
341  * __i2400m_dev_start - Bring up driver communication with the device
342  *
343  * @i2400m: device descriptor
344  * @flags: boot mode flags
345  *
346  * Returns: 0 if ok, < 0 errno code on error.
347  *
348  * Uploads firmware and brings up all the resources needed to be able
349  * to communicate with the device.
350  *
351  * The workqueue has to be setup early, at least before RX handling
352  * (it's only real user for now) so it can process reports as they
353  * arrive. We also want to destroy it if we retry, to make sure it is
354  * flushed...easier like this.
355  *
356  * TX needs to be setup before the bus-specific code (otherwise on
357  * shutdown, the bus-tx code could try to access it).
358  */
359 static
360 int __i2400m_dev_start(struct i2400m *i2400m, enum i2400m_bri flags)
361 {
362         int result;
363         struct wimax_dev *wimax_dev = &i2400m->wimax_dev;
364         struct net_device *net_dev = wimax_dev->net_dev;
365         struct device *dev = i2400m_dev(i2400m);
366         int times = i2400m->bus_bm_retries;
367
368         d_fnstart(3, dev, "(i2400m %p)\n", i2400m);
369 retry:
370         result = i2400m_dev_bootstrap(i2400m, flags);
371         if (result < 0) {
372                 dev_err(dev, "cannot bootstrap device: %d\n", result);
373                 goto error_bootstrap;
374         }
375         result = i2400m_tx_setup(i2400m);
376         if (result < 0)
377                 goto error_tx_setup;
378         result = i2400m_rx_setup(i2400m);
379         if (result < 0)
380                 goto error_rx_setup;
381         i2400m->work_queue = create_singlethread_workqueue(wimax_dev->name);
382         if (i2400m->work_queue == NULL) {
383                 result = -ENOMEM;
384                 dev_err(dev, "cannot create workqueue\n");
385                 goto error_create_workqueue;
386         }
387         result = i2400m->bus_dev_start(i2400m);
388         if (result < 0)
389                 goto error_bus_dev_start;
390         i2400m->ready = 1;
391         wmb();          /* see i2400m->ready's documentation  */
392         /* process pending reports from the device */
393         queue_work(i2400m->work_queue, &i2400m->rx_report_ws);
394         result = i2400m_firmware_check(i2400m); /* fw versions ok? */
395         if (result < 0)
396                 goto error_fw_check;
397         /* At this point is ok to send commands to the device */
398         result = i2400m_check_mac_addr(i2400m);
399         if (result < 0)
400                 goto error_check_mac_addr;
401         result = i2400m_dev_initialize(i2400m);
402         if (result < 0)
403                 goto error_dev_initialize;
404         /* At this point, reports will come for the device and set it
405          * to the right state if it is different than UNINITIALIZED */
406         d_fnend(3, dev, "(net_dev %p [i2400m %p]) = %d\n",
407                 net_dev, i2400m, result);
408         return result;
409
410 error_dev_initialize:
411 error_check_mac_addr:
412         i2400m->ready = 0;
413         wmb();          /* see i2400m->ready's documentation  */
414         flush_workqueue(i2400m->work_queue);
415 error_fw_check:
416         i2400m->bus_dev_stop(i2400m);
417 error_bus_dev_start:
418         destroy_workqueue(i2400m->work_queue);
419 error_create_workqueue:
420         i2400m_rx_release(i2400m);
421 error_rx_setup:
422         i2400m_tx_release(i2400m);
423 error_tx_setup:
424 error_bootstrap:
425         if (result == -EL3RST && times-- > 0) {
426                 flags = I2400M_BRI_SOFT|I2400M_BRI_MAC_REINIT;
427                 goto retry;
428         }
429         d_fnend(3, dev, "(net_dev %p [i2400m %p]) = %d\n",
430                 net_dev, i2400m, result);
431         return result;
432 }
433
434
435 static
436 int i2400m_dev_start(struct i2400m *i2400m, enum i2400m_bri bm_flags)
437 {
438         int result = 0;
439         mutex_lock(&i2400m->init_mutex);        /* Well, start the device */
440         if (i2400m->updown == 0) {
441                 result = __i2400m_dev_start(i2400m, bm_flags);
442                 if (result >= 0) {
443                         i2400m->updown = 1;
444                         wmb();  /* see i2400m->updown's documentation */
445                 }
446         }
447         mutex_unlock(&i2400m->init_mutex);
448         return result;
449 }
450
451
452 /**
453  * i2400m_dev_stop - Tear down driver communication with the device
454  *
455  * @i2400m: device descriptor
456  *
457  * Returns: 0 if ok, < 0 errno code on error.
458  *
459  * Releases all the resources allocated to communicate with the
460  * device. Note we cannot destroy the workqueue earlier as until RX is
461  * fully destroyed, it could still try to schedule jobs.
462  */
463 static
464 void __i2400m_dev_stop(struct i2400m *i2400m)
465 {
466         struct wimax_dev *wimax_dev = &i2400m->wimax_dev;
467         struct device *dev = i2400m_dev(i2400m);
468
469         d_fnstart(3, dev, "(i2400m %p)\n", i2400m);
470         wimax_state_change(wimax_dev, __WIMAX_ST_QUIESCING);
471         i2400m_msg_to_dev_cancel_wait(i2400m, -EL3RST);
472         complete(&i2400m->msg_completion);
473         i2400m_net_wake_stop(i2400m);
474         i2400m_dev_shutdown(i2400m);
475         /*
476          * Make sure no report hooks are running *before* we stop the
477          * communication infrastructure with the device.
478          */
479         i2400m->ready = 0;      /* nobody can queue work anymore */
480         wmb();          /* see i2400m->ready's documentation  */
481         flush_workqueue(i2400m->work_queue);
482
483         i2400m->bus_dev_stop(i2400m);
484         destroy_workqueue(i2400m->work_queue);
485         i2400m_rx_release(i2400m);
486         i2400m_tx_release(i2400m);
487         wimax_state_change(wimax_dev, WIMAX_ST_DOWN);
488         d_fnend(3, dev, "(i2400m %p) = 0\n", i2400m);
489 }
490
491
492 /*
493  * Watch out -- we only need to stop if there is a need for it. The
494  * device could have reset itself and failed to come up again (see
495  * _i2400m_dev_reset_handle()).
496  */
497 static
498 void i2400m_dev_stop(struct i2400m *i2400m)
499 {
500         mutex_lock(&i2400m->init_mutex);
501         if (i2400m->updown) {
502                 __i2400m_dev_stop(i2400m);
503                 i2400m->updown = 0;
504                 wmb();  /* see i2400m->updown's documentation  */
505         }
506         mutex_unlock(&i2400m->init_mutex);
507 }
508
509
510 /*
511  * Listen to PM events to cache the firmware before suspend/hibernation
512  *
513  * When the device comes out of suspend, it might go into reset and
514  * firmware has to be uploaded again. At resume, most of the times, we
515  * can't load firmware images from disk, so we need to cache it.
516  *
517  * i2400m_fw_cache() will allocate a kobject and attach the firmware
518  * to it; that way we don't have to worry too much about the fw loader
519  * hitting a race condition.
520  *
521  * Note: modus operandi stolen from the Orinoco driver; thx.
522  */
523 static
524 int i2400m_pm_notifier(struct notifier_block *notifier,
525                        unsigned long pm_event,
526                        void *unused)
527 {
528         struct i2400m *i2400m =
529                 container_of(notifier, struct i2400m, pm_notifier);
530         struct device *dev = i2400m_dev(i2400m);
531
532         d_fnstart(3, dev, "(i2400m %p pm_event %lx)\n", i2400m, pm_event);
533         switch (pm_event) {
534         case PM_HIBERNATION_PREPARE:
535         case PM_SUSPEND_PREPARE:
536                 i2400m_fw_cache(i2400m);
537                 break;
538         case PM_POST_RESTORE:
539                 /* Restore from hibernation failed. We need to clean
540                  * up in exactly the same way, so fall through. */
541         case PM_POST_HIBERNATION:
542         case PM_POST_SUSPEND:
543                 i2400m_fw_uncache(i2400m);
544                 break;
545
546         case PM_RESTORE_PREPARE:
547         default:
548                 break;
549         }
550         d_fnend(3, dev, "(i2400m %p pm_event %lx) = void\n", i2400m, pm_event);
551         return NOTIFY_DONE;
552 }
553
554
555 /*
556  * pre-reset is called before a device is going on reset
557  *
558  * This has to be followed by a call to i2400m_post_reset(), otherwise
559  * bad things might happen.
560  */
561 int i2400m_pre_reset(struct i2400m *i2400m)
562 {
563         int result;
564         struct device *dev = i2400m_dev(i2400m);
565
566         d_fnstart(3, dev, "(i2400m %p)\n", i2400m);
567         d_printf(1, dev, "pre-reset shut down\n");
568
569         result = 0;
570         mutex_lock(&i2400m->init_mutex);
571         if (i2400m->updown) {
572                 netif_tx_disable(i2400m->wimax_dev.net_dev);
573                 __i2400m_dev_stop(i2400m);
574                 result = 0;
575                 /* down't set updown to zero -- this way
576                  * post_reset can restore properly */
577         }
578         mutex_unlock(&i2400m->init_mutex);
579         if (i2400m->bus_release)
580                 i2400m->bus_release(i2400m);
581         d_fnend(3, dev, "(i2400m %p) = %d\n", i2400m, result);
582         return result;
583 }
584 EXPORT_SYMBOL_GPL(i2400m_pre_reset);
585
586
587 /*
588  * Restore device state after a reset
589  *
590  * Do the work needed after a device reset to bring it up to the same
591  * state as it was before the reset.
592  *
593  * NOTE: this requires i2400m->init_mutex taken
594  */
595 int i2400m_post_reset(struct i2400m *i2400m)
596 {
597         int result = 0;
598         struct device *dev = i2400m_dev(i2400m);
599
600         d_fnstart(3, dev, "(i2400m %p)\n", i2400m);
601         d_printf(1, dev, "post-reset start\n");
602         if (i2400m->bus_setup) {
603                 result = i2400m->bus_setup(i2400m);
604                 if (result < 0) {
605                         dev_err(dev, "bus-specific setup failed: %d\n",
606                                 result);
607                         goto error_bus_setup;
608                 }
609         }
610         mutex_lock(&i2400m->init_mutex);
611         if (i2400m->updown) {
612                 result = __i2400m_dev_start(
613                         i2400m, I2400M_BRI_SOFT | I2400M_BRI_MAC_REINIT);
614                 if (result < 0)
615                         goto error_dev_start;
616         }
617         mutex_unlock(&i2400m->init_mutex);
618         d_fnend(3, dev, "(i2400m %p) = %d\n", i2400m, result);
619         return result;
620
621 error_dev_start:
622         if (i2400m->bus_release)
623                 i2400m->bus_release(i2400m);
624 error_bus_setup:
625         /* even if the device was up, it could not be recovered, so we
626          * mark it as down. */
627         i2400m->updown = 0;
628         wmb();          /* see i2400m->updown's documentation  */
629         mutex_unlock(&i2400m->init_mutex);
630         d_fnend(3, dev, "(i2400m %p) = %d\n", i2400m, result);
631         return result;
632 }
633 EXPORT_SYMBOL_GPL(i2400m_post_reset);
634
635
636 /*
637  * The device has rebooted; fix up the device and the driver
638  *
639  * Tear down the driver communication with the device, reload the
640  * firmware and reinitialize the communication with the device.
641  *
642  * If someone calls a reset when the device's firmware is down, in
643  * theory we won't see it because we are not listening. However, just
644  * in case, leave the code to handle it.
645  *
646  * If there is a reset context, use it; this means someone is waiting
647  * for us to tell him when the reset operation is complete and the
648  * device is ready to rock again.
649  *
650  * NOTE: if we are in the process of bringing up or down the
651  *       communication with the device [running i2400m_dev_start() or
652  *       _stop()], don't do anything, let it fail and handle it.
653  *
654  * This function is ran always in a thread context
655  *
656  * This function gets passed, as payload to i2400m_work() a 'const
657  * char *' ptr with a "reason" why the reset happened (for messages).
658  */
659 static
660 void __i2400m_dev_reset_handle(struct work_struct *ws)
661 {
662         int result;
663         struct i2400m_work *iw = container_of(ws, struct i2400m_work, ws);
664         const char *reason;
665         struct i2400m *i2400m = iw->i2400m;
666         struct device *dev = i2400m_dev(i2400m);
667         struct i2400m_reset_ctx *ctx = i2400m->reset_ctx;
668
669         if (WARN_ON(iw->pl_size != sizeof(reason)))
670                 reason = "SW BUG: reason n/a";
671         else
672                 memcpy(&reason, iw->pl, sizeof(reason));
673
674         d_fnstart(3, dev, "(ws %p i2400m %p reason %s)\n", ws, i2400m, reason);
675
676         result = 0;
677         if (mutex_trylock(&i2400m->init_mutex) == 0) {
678                 /* We are still in i2400m_dev_start() [let it fail] or
679                  * i2400m_dev_stop() [we are shutting down anyway, so
680                  * ignore it] or we are resetting somewhere else. */
681                 dev_err(dev, "device rebooted somewhere else?\n");
682                 i2400m_msg_to_dev_cancel_wait(i2400m, -EL3RST);
683                 complete(&i2400m->msg_completion);
684                 goto out;
685         }
686         if (i2400m->updown == 0)  {
687                 dev_info(dev, "%s: device is down, doing nothing\n", reason);
688                 goto out_unlock;
689         }
690         dev_err(dev, "%s: reinitializing driver\n", reason);
691         __i2400m_dev_stop(i2400m);
692         result = __i2400m_dev_start(i2400m,
693                                     I2400M_BRI_SOFT | I2400M_BRI_MAC_REINIT);
694         if (result < 0) {
695                 i2400m->updown = 0;
696                 wmb();          /* see i2400m->updown's documentation  */
697                 dev_err(dev, "%s: cannot start the device: %d\n",
698                         reason, result);
699                 result = -EUCLEAN;
700         }
701 out_unlock:
702         if (i2400m->reset_ctx) {
703                 ctx->result = result;
704                 complete(&ctx->completion);
705         }
706         mutex_unlock(&i2400m->init_mutex);
707         if (result == -EUCLEAN) {
708                 /* ops, need to clean up [w/ init_mutex not held] */
709                 result = i2400m->bus_reset(i2400m, I2400M_RT_BUS);
710                 if (result >= 0)
711                         result = -ENODEV;
712         }
713 out:
714         i2400m_put(i2400m);
715         kfree(iw);
716         d_fnend(3, dev, "(ws %p i2400m %p reason %s) = void\n",
717                 ws, i2400m, reason);
718         return;
719 }
720
721
722 /**
723  * i2400m_dev_reset_handle - Handle a device's reset in a thread context
724  *
725  * Schedule a device reset handling out on a thread context, so it
726  * is safe to call from atomic context. We can't use the i2400m's
727  * queue as we are going to destroy it and reinitialize it as part of
728  * the driver bringup/bringup process.
729  *
730  * See __i2400m_dev_reset_handle() for details; that takes care of
731  * reinitializing the driver to handle the reset, calling into the
732  * bus-specific functions ops as needed.
733  */
734 int i2400m_dev_reset_handle(struct i2400m *i2400m, const char *reason)
735 {
736         i2400m->boot_mode = 1;
737         wmb();          /* Make sure i2400m_msg_to_dev() sees boot_mode */
738         return i2400m_schedule_work(i2400m, __i2400m_dev_reset_handle,
739                                     GFP_ATOMIC, &reason, sizeof(reason));
740 }
741 EXPORT_SYMBOL_GPL(i2400m_dev_reset_handle);
742
743
744 /*
745  * Alloc the command and ack buffers for boot mode
746  *
747  * Get the buffers needed to deal with boot mode messages.  These
748  * buffers need to be allocated before the sdio recieve irq is setup.
749  */
750 static
751 int i2400m_bm_buf_alloc(struct i2400m *i2400m)
752 {
753         int result;
754
755         result = -ENOMEM;
756         i2400m->bm_cmd_buf = kzalloc(I2400M_BM_CMD_BUF_SIZE, GFP_KERNEL);
757         if (i2400m->bm_cmd_buf == NULL)
758                 goto error_bm_cmd_kzalloc;
759         i2400m->bm_ack_buf = kzalloc(I2400M_BM_ACK_BUF_SIZE, GFP_KERNEL);
760         if (i2400m->bm_ack_buf == NULL)
761                 goto error_bm_ack_buf_kzalloc;
762         return 0;
763
764 error_bm_ack_buf_kzalloc:
765         kfree(i2400m->bm_cmd_buf);
766 error_bm_cmd_kzalloc:
767         return result;
768 }
769
770
771 /*
772  * Free boot mode command and ack buffers.
773  */
774 static
775 void i2400m_bm_buf_free(struct i2400m *i2400m)
776 {
777         kfree(i2400m->bm_ack_buf);
778         kfree(i2400m->bm_cmd_buf);
779 }
780
781
782 /**
783  * i2400m_init - Initialize a 'struct i2400m' from all zeroes
784  *
785  * This is a bus-generic API call.
786  */
787 void i2400m_init(struct i2400m *i2400m)
788 {
789         wimax_dev_init(&i2400m->wimax_dev);
790
791         i2400m->boot_mode = 1;
792         i2400m->rx_reorder = 1;
793         init_waitqueue_head(&i2400m->state_wq);
794
795         spin_lock_init(&i2400m->tx_lock);
796         i2400m->tx_pl_min = UINT_MAX;
797         i2400m->tx_size_min = UINT_MAX;
798
799         spin_lock_init(&i2400m->rx_lock);
800         i2400m->rx_pl_min = UINT_MAX;
801         i2400m->rx_size_min = UINT_MAX;
802         INIT_LIST_HEAD(&i2400m->rx_reports);
803         INIT_WORK(&i2400m->rx_report_ws, i2400m_report_hook_work);
804
805         mutex_init(&i2400m->msg_mutex);
806         init_completion(&i2400m->msg_completion);
807
808         mutex_init(&i2400m->init_mutex);
809         /* wake_tx_ws is initialized in i2400m_tx_setup() */
810 }
811 EXPORT_SYMBOL_GPL(i2400m_init);
812
813
814 /**
815  * i2400m_setup - bus-generic setup function for the i2400m device
816  *
817  * @i2400m: device descriptor (bus-specific parts have been initialized)
818  *
819  * Returns: 0 if ok, < 0 errno code on error.
820  *
821  * Sets up basic device comunication infrastructure, boots the ROM to
822  * read the MAC address, registers with the WiMAX and network stacks
823  * and then brings up the device.
824  */
825 int i2400m_setup(struct i2400m *i2400m, enum i2400m_bri bm_flags)
826 {
827         int result = -ENODEV;
828         struct device *dev = i2400m_dev(i2400m);
829         struct wimax_dev *wimax_dev = &i2400m->wimax_dev;
830         struct net_device *net_dev = i2400m->wimax_dev.net_dev;
831
832         d_fnstart(3, dev, "(i2400m %p)\n", i2400m);
833
834         snprintf(wimax_dev->name, sizeof(wimax_dev->name),
835                  "i2400m-%s:%s", dev->bus->name, dev_name(dev));
836
837         result = i2400m_bm_buf_alloc(i2400m);
838         if (result < 0) {
839                 dev_err(dev, "cannot allocate bootmode scratch buffers\n");
840                 goto error_bm_buf_alloc;
841         }
842
843         if (i2400m->bus_setup) {
844                 result = i2400m->bus_setup(i2400m);
845                 if (result < 0) {
846                         dev_err(dev, "bus-specific setup failed: %d\n",
847                                 result);
848                         goto error_bus_setup;
849                 }
850         }
851
852         result = i2400m_bootrom_init(i2400m, bm_flags);
853         if (result < 0) {
854                 dev_err(dev, "read mac addr: bootrom init "
855                         "failed: %d\n", result);
856                 goto error_bootrom_init;
857         }
858         result = i2400m_read_mac_addr(i2400m);
859         if (result < 0)
860                 goto error_read_mac_addr;
861         random_ether_addr(i2400m->src_mac_addr);
862
863         i2400m->pm_notifier.notifier_call = i2400m_pm_notifier;
864         register_pm_notifier(&i2400m->pm_notifier);
865
866         result = register_netdev(net_dev);      /* Okey dokey, bring it up */
867         if (result < 0) {
868                 dev_err(dev, "cannot register i2400m network device: %d\n",
869                         result);
870                 goto error_register_netdev;
871         }
872         netif_carrier_off(net_dev);
873
874         i2400m->wimax_dev.op_msg_from_user = i2400m_op_msg_from_user;
875         i2400m->wimax_dev.op_rfkill_sw_toggle = i2400m_op_rfkill_sw_toggle;
876         i2400m->wimax_dev.op_reset = i2400m_op_reset;
877
878         result = wimax_dev_add(&i2400m->wimax_dev, net_dev);
879         if (result < 0)
880                 goto error_wimax_dev_add;
881
882         /* Now setup all that requires a registered net and wimax device. */
883         result = sysfs_create_group(&net_dev->dev.kobj, &i2400m_dev_attr_group);
884         if (result < 0) {
885                 dev_err(dev, "cannot setup i2400m's sysfs: %d\n", result);
886                 goto error_sysfs_setup;
887         }
888
889         result = i2400m_debugfs_add(i2400m);
890         if (result < 0) {
891                 dev_err(dev, "cannot setup i2400m's debugfs: %d\n", result);
892                 goto error_debugfs_setup;
893         }
894
895         result = i2400m_dev_start(i2400m, bm_flags);
896         if (result < 0)
897                 goto error_dev_start;
898         d_fnend(3, dev, "(i2400m %p) = %d\n", i2400m, result);
899         return result;
900
901 error_dev_start:
902         i2400m_debugfs_rm(i2400m);
903 error_debugfs_setup:
904         sysfs_remove_group(&i2400m->wimax_dev.net_dev->dev.kobj,
905                            &i2400m_dev_attr_group);
906 error_sysfs_setup:
907         wimax_dev_rm(&i2400m->wimax_dev);
908 error_wimax_dev_add:
909         unregister_netdev(net_dev);
910 error_register_netdev:
911         unregister_pm_notifier(&i2400m->pm_notifier);
912 error_read_mac_addr:
913 error_bootrom_init:
914         if (i2400m->bus_release)
915                 i2400m->bus_release(i2400m);
916 error_bus_setup:
917         i2400m_bm_buf_free(i2400m);
918 error_bm_buf_alloc:
919         d_fnend(3, dev, "(i2400m %p) = %d\n", i2400m, result);
920         return result;
921 }
922 EXPORT_SYMBOL_GPL(i2400m_setup);
923
924
925 /**
926  * i2400m_release - release the bus-generic driver resources
927  *
928  * Sends a disconnect message and undoes any setup done by i2400m_setup()
929  */
930 void i2400m_release(struct i2400m *i2400m)
931 {
932         struct device *dev = i2400m_dev(i2400m);
933
934         d_fnstart(3, dev, "(i2400m %p)\n", i2400m);
935         netif_stop_queue(i2400m->wimax_dev.net_dev);
936
937         i2400m_dev_stop(i2400m);
938
939         i2400m_debugfs_rm(i2400m);
940         sysfs_remove_group(&i2400m->wimax_dev.net_dev->dev.kobj,
941                            &i2400m_dev_attr_group);
942         wimax_dev_rm(&i2400m->wimax_dev);
943         unregister_netdev(i2400m->wimax_dev.net_dev);
944         unregister_pm_notifier(&i2400m->pm_notifier);
945         if (i2400m->bus_release)
946                 i2400m->bus_release(i2400m);
947         i2400m_bm_buf_free(i2400m);
948         d_fnend(3, dev, "(i2400m %p) = void\n", i2400m);
949 }
950 EXPORT_SYMBOL_GPL(i2400m_release);
951
952
953 /*
954  * Debug levels control; see debug.h
955  */
956 struct d_level D_LEVEL[] = {
957         D_SUBMODULE_DEFINE(control),
958         D_SUBMODULE_DEFINE(driver),
959         D_SUBMODULE_DEFINE(debugfs),
960         D_SUBMODULE_DEFINE(fw),
961         D_SUBMODULE_DEFINE(netdev),
962         D_SUBMODULE_DEFINE(rfkill),
963         D_SUBMODULE_DEFINE(rx),
964         D_SUBMODULE_DEFINE(sysfs),
965         D_SUBMODULE_DEFINE(tx),
966 };
967 size_t D_LEVEL_SIZE = ARRAY_SIZE(D_LEVEL);
968
969
970 static
971 int __init i2400m_driver_init(void)
972 {
973         d_parse_params(D_LEVEL, D_LEVEL_SIZE, i2400m_debug_params,
974                        "i2400m.debug");
975         return i2400m_barker_db_init(i2400m_barkers_params);
976 }
977 module_init(i2400m_driver_init);
978
979 static
980 void __exit i2400m_driver_exit(void)
981 {
982         /* for scheds i2400m_dev_reset_handle() */
983         flush_scheduled_work();
984         i2400m_barker_db_exit();
985         return;
986 }
987 module_exit(i2400m_driver_exit);
988
989 MODULE_AUTHOR("Intel Corporation <linux-wimax@intel.com>");
990 MODULE_DESCRIPTION("Intel 2400M WiMAX networking bus-generic driver");
991 MODULE_LICENSE("GPL");