1 /*********************************************************************
3 * sir_dev.c: irda sir network device
5 * Copyright (c) 2002 Martin Diehl
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License as
9 * published by the Free Software Foundation; either version 2 of
10 * the License, or (at your option) any later version.
12 ********************************************************************/
14 #include <linux/hardirq.h>
15 #include <linux/module.h>
16 #include <linux/kernel.h>
17 #include <linux/slab.h>
18 #include <linux/init.h>
19 #include <linux/delay.h>
21 #include <net/irda/irda.h>
22 #include <net/irda/wrapper.h>
23 #include <net/irda/irda_device.h>
28 static struct workqueue_struct *irda_sir_wq;
32 /* substate handler of the config-fsm to handle the cases where we want
33 * to wait for transmit completion before changing the port configuration
36 static int sirdev_tx_complete_fsm(struct sir_dev *dev)
38 struct sir_fsm *fsm = &dev->fsm;
39 unsigned next_state, delay;
43 next_state = fsm->substate; /* default: stay in current substate */
46 switch(fsm->substate) {
48 case SIRDEV_STATE_WAIT_XMIT:
49 if (dev->drv->chars_in_buffer)
50 bytes_left = dev->drv->chars_in_buffer(dev);
54 next_state = SIRDEV_STATE_WAIT_UNTIL_SENT;
58 if (dev->speed > 115200)
59 delay = (bytes_left*8*10000) / (dev->speed/100);
60 else if (dev->speed > 0)
61 delay = (bytes_left*10*10000) / (dev->speed/100);
64 /* expected delay (usec) until remaining bytes are sent */
70 /* sleep some longer delay (msec) */
71 delay = (delay+999) / 1000;
74 case SIRDEV_STATE_WAIT_UNTIL_SENT:
75 /* block until underlaying hardware buffer are empty */
76 if (dev->drv->wait_until_sent)
77 dev->drv->wait_until_sent(dev);
78 next_state = SIRDEV_STATE_TX_DONE;
81 case SIRDEV_STATE_TX_DONE:
85 IRDA_ERROR("%s - undefined state\n", __func__);
88 fsm->substate = next_state;
94 * Function sirdev_config_fsm
96 * State machine to handle the configuration of the device (and attached dongle, if any).
97 * This handler is scheduled for execution in kIrDAd context, so we can sleep.
98 * however, kIrDAd is shared by all sir_dev devices so we better don't sleep there too
99 * long. Instead, for longer delays we start a timer to reschedule us later.
100 * On entry, fsm->sem is always locked and the netdev xmit queue stopped.
101 * Both must be unlocked/restarted on completion - but only on final exit.
104 static void sirdev_config_fsm(struct work_struct *work)
106 struct sir_dev *dev = container_of(work, struct sir_dev, fsm.work.work);
107 struct sir_fsm *fsm = &dev->fsm;
112 IRDA_DEBUG(2, "%s(), <%ld>\n", __func__, jiffies);
115 IRDA_DEBUG(3, "%s - state=0x%04x / substate=0x%04x\n",
116 __func__, fsm->state, fsm->substate);
118 next_state = fsm->state;
123 case SIRDEV_STATE_DONGLE_OPEN:
124 if (dev->dongle_drv != NULL) {
125 ret = sirdev_put_dongle(dev);
127 fsm->result = -EINVAL;
128 next_state = SIRDEV_STATE_ERROR;
133 /* Initialize dongle */
134 ret = sirdev_get_dongle(dev, fsm->param);
137 next_state = SIRDEV_STATE_ERROR;
141 /* Dongles are powered through the modem control lines which
142 * were just set during open. Before resetting, let's wait for
143 * the power to stabilize. This is what some dongle drivers did
144 * in open before, while others didn't - should be safe anyway.
148 fsm->substate = SIRDEV_STATE_DONGLE_RESET;
149 next_state = SIRDEV_STATE_DONGLE_RESET;
155 case SIRDEV_STATE_DONGLE_CLOSE:
156 /* shouldn't we just treat this as success=? */
157 if (dev->dongle_drv == NULL) {
158 fsm->result = -EINVAL;
159 next_state = SIRDEV_STATE_ERROR;
163 ret = sirdev_put_dongle(dev);
166 next_state = SIRDEV_STATE_ERROR;
169 next_state = SIRDEV_STATE_DONE;
172 case SIRDEV_STATE_SET_DTR_RTS:
173 ret = sirdev_set_dtr_rts(dev,
174 (fsm->param&0x02) ? TRUE : FALSE,
175 (fsm->param&0x01) ? TRUE : FALSE);
176 next_state = SIRDEV_STATE_DONE;
179 case SIRDEV_STATE_SET_SPEED:
180 fsm->substate = SIRDEV_STATE_WAIT_XMIT;
181 next_state = SIRDEV_STATE_DONGLE_CHECK;
184 case SIRDEV_STATE_DONGLE_CHECK:
185 ret = sirdev_tx_complete_fsm(dev);
188 next_state = SIRDEV_STATE_ERROR;
191 if ((delay=ret) != 0)
194 if (dev->dongle_drv) {
195 fsm->substate = SIRDEV_STATE_DONGLE_RESET;
196 next_state = SIRDEV_STATE_DONGLE_RESET;
199 dev->speed = fsm->param;
200 next_state = SIRDEV_STATE_PORT_SPEED;
204 case SIRDEV_STATE_DONGLE_RESET:
205 if (dev->dongle_drv->reset) {
206 ret = dev->dongle_drv->reset(dev);
209 next_state = SIRDEV_STATE_ERROR;
215 if ((delay=ret) == 0) {
216 /* set serial port according to dongle default speed */
217 if (dev->drv->set_speed)
218 dev->drv->set_speed(dev, dev->speed);
219 fsm->substate = SIRDEV_STATE_DONGLE_SPEED;
220 next_state = SIRDEV_STATE_DONGLE_SPEED;
224 case SIRDEV_STATE_DONGLE_SPEED:
225 if (dev->dongle_drv->set_speed) {
226 ret = dev->dongle_drv->set_speed(dev, fsm->param);
229 next_state = SIRDEV_STATE_ERROR;
235 if ((delay=ret) == 0)
236 next_state = SIRDEV_STATE_PORT_SPEED;
239 case SIRDEV_STATE_PORT_SPEED:
240 /* Finally we are ready to change the serial port speed */
241 if (dev->drv->set_speed)
242 dev->drv->set_speed(dev, dev->speed);
244 next_state = SIRDEV_STATE_DONE;
247 case SIRDEV_STATE_DONE:
248 /* Signal network layer so it can send more frames */
249 netif_wake_queue(dev->netdev);
250 next_state = SIRDEV_STATE_COMPLETE;
254 IRDA_ERROR("%s - undefined state\n", __func__);
255 fsm->result = -EINVAL;
258 case SIRDEV_STATE_ERROR:
259 IRDA_ERROR("%s - error: %d\n", __func__, fsm->result);
261 #if 0 /* don't enable this before we have netdev->tx_timeout to recover */
262 netif_stop_queue(dev->netdev);
264 netif_wake_queue(dev->netdev);
268 case SIRDEV_STATE_COMPLETE:
269 /* config change finished, so we are not busy any longer */
270 sirdev_enable_rx(dev);
274 fsm->state = next_state;
277 queue_delayed_work(irda_sir_wq, &fsm->work, msecs_to_jiffies(delay));
280 /* schedule some device configuration task for execution by kIrDAd
281 * on behalf of the above state machine.
282 * can be called from process or interrupt/tasklet context.
285 int sirdev_schedule_request(struct sir_dev *dev, int initial_state, unsigned param)
287 struct sir_fsm *fsm = &dev->fsm;
289 IRDA_DEBUG(2, "%s - state=0x%04x / param=%u\n", __func__,
290 initial_state, param);
292 if (down_trylock(&fsm->sem)) {
293 if (in_interrupt() || in_atomic() || irqs_disabled()) {
294 IRDA_DEBUG(1, "%s(), state machine busy!\n", __func__);
300 if (fsm->state == SIRDEV_STATE_DEAD) {
301 /* race with sirdev_close should never happen */
302 IRDA_ERROR("%s(), instance staled!\n", __func__);
304 return -ESTALE; /* or better EPIPE? */
307 netif_stop_queue(dev->netdev);
308 atomic_set(&dev->enable_rx, 0);
310 fsm->state = initial_state;
314 INIT_DELAYED_WORK(&fsm->work, sirdev_config_fsm);
315 queue_delayed_work(irda_sir_wq, &fsm->work, 0);
320 /***************************************************************************/
322 void sirdev_enable_rx(struct sir_dev *dev)
324 if (unlikely(atomic_read(&dev->enable_rx)))
327 /* flush rx-buffer - should also help in case of problems with echo cancelation */
328 dev->rx_buff.data = dev->rx_buff.head;
329 dev->rx_buff.len = 0;
330 dev->rx_buff.in_frame = FALSE;
331 dev->rx_buff.state = OUTSIDE_FRAME;
332 atomic_set(&dev->enable_rx, 1);
335 static int sirdev_is_receiving(struct sir_dev *dev)
337 if (!atomic_read(&dev->enable_rx))
340 return dev->rx_buff.state != OUTSIDE_FRAME;
343 int sirdev_set_dongle(struct sir_dev *dev, IRDA_DONGLE type)
347 IRDA_DEBUG(3, "%s : requesting dongle %d.\n", __func__, type);
349 err = sirdev_schedule_dongle_open(dev, type);
352 down(&dev->fsm.sem); /* block until config change completed */
353 err = dev->fsm.result;
357 EXPORT_SYMBOL(sirdev_set_dongle);
359 /* used by dongle drivers for dongle programming */
361 int sirdev_raw_write(struct sir_dev *dev, const char *buf, int len)
366 if (unlikely(len > dev->tx_buff.truesize))
369 spin_lock_irqsave(&dev->tx_lock, flags); /* serialize with other tx operations */
370 while (dev->tx_buff.len > 0) { /* wait until tx idle */
371 spin_unlock_irqrestore(&dev->tx_lock, flags);
373 spin_lock_irqsave(&dev->tx_lock, flags);
376 dev->tx_buff.data = dev->tx_buff.head;
377 memcpy(dev->tx_buff.data, buf, len);
378 dev->tx_buff.len = len;
380 ret = dev->drv->do_write(dev, dev->tx_buff.data, dev->tx_buff.len);
382 IRDA_DEBUG(3, "%s(), raw-tx started\n", __func__);
384 dev->tx_buff.data += ret;
385 dev->tx_buff.len -= ret;
387 ret = len; /* all data is going to be sent */
389 spin_unlock_irqrestore(&dev->tx_lock, flags);
392 EXPORT_SYMBOL(sirdev_raw_write);
394 /* seems some dongle drivers may need this */
396 int sirdev_raw_read(struct sir_dev *dev, char *buf, int len)
400 if (atomic_read(&dev->enable_rx))
401 return -EIO; /* fail if we expect irda-frames */
403 count = (len < dev->rx_buff.len) ? len : dev->rx_buff.len;
406 memcpy(buf, dev->rx_buff.data, count);
407 dev->rx_buff.data += count;
408 dev->rx_buff.len -= count;
411 /* remaining stuff gets flushed when re-enabling normal rx */
415 EXPORT_SYMBOL(sirdev_raw_read);
417 int sirdev_set_dtr_rts(struct sir_dev *dev, int dtr, int rts)
420 if (dev->drv->set_dtr_rts)
421 ret = dev->drv->set_dtr_rts(dev, dtr, rts);
424 EXPORT_SYMBOL(sirdev_set_dtr_rts);
426 /**********************************************************************/
428 /* called from client driver - likely with bh-context - to indicate
429 * it made some progress with transmission. Hence we send the next
430 * chunk, if any, or complete the skb otherwise
433 void sirdev_write_complete(struct sir_dev *dev)
440 spin_lock_irqsave(&dev->tx_lock, flags);
442 IRDA_DEBUG(3, "%s() - dev->tx_buff.len = %d\n",
443 __func__, dev->tx_buff.len);
445 if (likely(dev->tx_buff.len > 0)) {
446 /* Write data left in transmit buffer */
447 actual = dev->drv->do_write(dev, dev->tx_buff.data, dev->tx_buff.len);
449 if (likely(actual>0)) {
450 dev->tx_buff.data += actual;
451 dev->tx_buff.len -= actual;
453 else if (unlikely(actual<0)) {
454 /* could be dropped later when we have tx_timeout to recover */
455 IRDA_ERROR("%s: drv->do_write failed (%d)\n",
457 if ((skb=dev->tx_skb) != NULL) {
459 dev_kfree_skb_any(skb);
460 dev->netdev->stats.tx_errors++;
461 dev->netdev->stats.tx_dropped++;
463 dev->tx_buff.len = 0;
465 if (dev->tx_buff.len > 0)
466 goto done; /* more data to send later */
469 if (unlikely(dev->raw_tx != 0)) {
470 /* in raw mode we are just done now after the buffer was sent
471 * completely. Since this was requested by some dongle driver
472 * running under the control of the irda-thread we must take
473 * care here not to re-enable the queue. The queue will be
474 * restarted when the irda-thread has completed the request.
477 IRDA_DEBUG(3, "%s(), raw-tx done\n", __func__);
479 goto done; /* no post-frame handling in raw mode */
482 /* we have finished now sending this skb.
483 * update statistics and free the skb.
484 * finally we check and trigger a pending speed change, if any.
485 * if not we switch to rx mode and wake the queue for further
487 * note the scheduled speed request blocks until the lower
488 * client driver and the corresponding hardware has really
489 * finished sending all data (xmit fifo drained f.e.)
490 * before the speed change gets finally done and the queue
494 IRDA_DEBUG(5, "%s(), finished with frame!\n", __func__);
496 if ((skb=dev->tx_skb) != NULL) {
498 dev->netdev->stats.tx_packets++;
499 dev->netdev->stats.tx_bytes += skb->len;
500 dev_kfree_skb_any(skb);
503 if (unlikely(dev->new_speed > 0)) {
504 IRDA_DEBUG(5, "%s(), Changing speed!\n", __func__);
505 err = sirdev_schedule_speed(dev, dev->new_speed);
507 /* should never happen
508 * forget the speed change and hope the stack recovers
510 IRDA_ERROR("%s - schedule speed change failed: %d\n",
512 netif_wake_queue(dev->netdev);
515 * speed change in progress now
516 * on completion dev->new_speed gets cleared,
517 * rx-reenabled and the queue restarted
521 sirdev_enable_rx(dev);
522 netif_wake_queue(dev->netdev);
526 spin_unlock_irqrestore(&dev->tx_lock, flags);
528 EXPORT_SYMBOL(sirdev_write_complete);
530 /* called from client driver - likely with bh-context - to give us
531 * some more received bytes. We put them into the rx-buffer,
532 * normally unwrapping and building LAP-skb's (unless rx disabled)
535 int sirdev_receive(struct sir_dev *dev, const unsigned char *cp, size_t count)
537 if (!dev || !dev->netdev) {
538 IRDA_WARNING("%s(), not ready yet!\n", __func__);
543 IRDA_WARNING("%s - too early: %p / %zd!\n",
544 __func__, cp, count);
549 /* error already at lower level receive
550 * just update stats and set media busy
552 irda_device_set_media_busy(dev->netdev, TRUE);
553 dev->netdev->stats.rx_dropped++;
554 IRDA_DEBUG(0, "%s; rx-drop: %zd\n", __func__, count);
558 /* Read the characters into the buffer */
559 if (likely(atomic_read(&dev->enable_rx))) {
561 /* Unwrap and destuff one byte */
562 async_unwrap_char(dev->netdev, &dev->netdev->stats,
563 &dev->rx_buff, *cp++);
566 /* rx not enabled: save the raw bytes and never
567 * trigger any netif_rx. The received bytes are flushed
568 * later when we re-enable rx but might be read meanwhile
569 * by the dongle driver.
571 dev->rx_buff.data[dev->rx_buff.len++] = *cp++;
573 /* What should we do when the buffer is full? */
574 if (unlikely(dev->rx_buff.len == dev->rx_buff.truesize))
575 dev->rx_buff.len = 0;
581 EXPORT_SYMBOL(sirdev_receive);
583 /**********************************************************************/
585 /* callbacks from network layer */
587 static netdev_tx_t sirdev_hard_xmit(struct sk_buff *skb,
588 struct net_device *ndev)
590 struct sir_dev *dev = netdev_priv(ndev);
596 IRDA_ASSERT(dev != NULL, return NETDEV_TX_OK;);
598 netif_stop_queue(ndev);
600 IRDA_DEBUG(3, "%s(), skb->len = %d\n", __func__, skb->len);
602 speed = irda_get_next_speed(skb);
603 if ((speed != dev->speed) && (speed != -1)) {
605 err = sirdev_schedule_speed(dev, speed);
606 if (unlikely(err == -EWOULDBLOCK)) {
607 /* Failed to initiate the speed change, likely the fsm
608 * is still busy (pretty unlikely, but...)
609 * We refuse to accept the skb and return with the queue
610 * stopped so the network layer will retry after the
611 * fsm completes and wakes the queue.
613 return NETDEV_TX_BUSY;
615 else if (unlikely(err)) {
616 /* other fatal error - forget the speed change and
617 * hope the stack will recover somehow
619 netif_start_queue(ndev);
622 * speed change in progress now
623 * on completion the queue gets restarted
626 dev_kfree_skb_any(skb);
629 dev->new_speed = speed;
633 dev->tx_buff.data = dev->tx_buff.head;
636 if(spin_is_locked(&dev->tx_lock)) {
637 IRDA_DEBUG(3, "%s(), write not completed\n", __func__);
640 /* serialize with write completion */
641 spin_lock_irqsave(&dev->tx_lock, flags);
643 /* Copy skb to tx_buff while wrapping, stuffing and making CRC */
644 dev->tx_buff.len = async_wrap_skb(skb, dev->tx_buff.data, dev->tx_buff.truesize);
646 /* transmission will start now - disable receive.
647 * if we are just in the middle of an incoming frame,
648 * treat it as collision. probably it's a good idea to
649 * reset the rx_buf OUTSIDE_FRAME in this case too?
651 atomic_set(&dev->enable_rx, 0);
652 if (unlikely(sirdev_is_receiving(dev)))
653 dev->netdev->stats.collisions++;
655 actual = dev->drv->do_write(dev, dev->tx_buff.data, dev->tx_buff.len);
657 if (likely(actual > 0)) {
659 dev->tx_buff.data += actual;
660 dev->tx_buff.len -= actual;
662 else if (unlikely(actual < 0)) {
663 /* could be dropped later when we have tx_timeout to recover */
664 IRDA_ERROR("%s: drv->do_write failed (%d)\n",
666 dev_kfree_skb_any(skb);
667 dev->netdev->stats.tx_errors++;
668 dev->netdev->stats.tx_dropped++;
669 netif_wake_queue(ndev);
671 spin_unlock_irqrestore(&dev->tx_lock, flags);
676 /* called from network layer with rtnl hold */
678 static int sirdev_ioctl(struct net_device *ndev, struct ifreq *rq, int cmd)
680 struct if_irda_req *irq = (struct if_irda_req *) rq;
681 struct sir_dev *dev = netdev_priv(ndev);
684 IRDA_ASSERT(dev != NULL, return -1;);
686 IRDA_DEBUG(3, "%s(), %s, (cmd=0x%X)\n", __func__, ndev->name, cmd);
689 case SIOCSBANDWIDTH: /* Set bandwidth */
690 if (!capable(CAP_NET_ADMIN))
693 ret = sirdev_schedule_speed(dev, irq->ifr_baudrate);
694 /* cannot sleep here for completion
695 * we are called from network layer with rtnl hold
699 case SIOCSDONGLE: /* Set dongle */
700 if (!capable(CAP_NET_ADMIN))
703 ret = sirdev_schedule_dongle_open(dev, irq->ifr_dongle);
704 /* cannot sleep here for completion
705 * we are called from network layer with rtnl hold
709 case SIOCSMEDIABUSY: /* Set media busy */
710 if (!capable(CAP_NET_ADMIN))
713 irda_device_set_media_busy(dev->netdev, TRUE);
716 case SIOCGRECEIVING: /* Check if we are receiving right now */
717 irq->ifr_receiving = sirdev_is_receiving(dev);
721 if (!capable(CAP_NET_ADMIN))
724 ret = sirdev_schedule_dtr_rts(dev, irq->ifr_dtr, irq->ifr_rts);
725 /* cannot sleep here for completion
726 * we are called from network layer with rtnl hold
732 if (!capable(CAP_NET_ADMIN))
735 ret = sirdev_schedule_mode(dev, irq->ifr_mode);
736 /* cannot sleep here for completion
737 * we are called from network layer with rtnl hold
748 /* ----------------------------------------------------------------------------- */
750 #define SIRBUF_ALLOCSIZE 4269 /* worst case size of a wrapped IrLAP frame */
752 static int sirdev_alloc_buffers(struct sir_dev *dev)
754 dev->tx_buff.truesize = SIRBUF_ALLOCSIZE;
755 dev->rx_buff.truesize = IRDA_SKB_MAX_MTU;
757 /* Bootstrap ZeroCopy Rx */
758 dev->rx_buff.skb = __netdev_alloc_skb(dev->netdev, dev->rx_buff.truesize,
760 if (dev->rx_buff.skb == NULL)
762 skb_reserve(dev->rx_buff.skb, 1);
763 dev->rx_buff.head = dev->rx_buff.skb->data;
765 dev->tx_buff.head = kmalloc(dev->tx_buff.truesize, GFP_KERNEL);
766 if (dev->tx_buff.head == NULL) {
767 kfree_skb(dev->rx_buff.skb);
768 dev->rx_buff.skb = NULL;
769 dev->rx_buff.head = NULL;
773 dev->tx_buff.data = dev->tx_buff.head;
774 dev->rx_buff.data = dev->rx_buff.head;
775 dev->tx_buff.len = 0;
776 dev->rx_buff.len = 0;
778 dev->rx_buff.in_frame = FALSE;
779 dev->rx_buff.state = OUTSIDE_FRAME;
783 static void sirdev_free_buffers(struct sir_dev *dev)
785 kfree_skb(dev->rx_buff.skb);
786 kfree(dev->tx_buff.head);
787 dev->rx_buff.head = dev->tx_buff.head = NULL;
788 dev->rx_buff.skb = NULL;
791 static int sirdev_open(struct net_device *ndev)
793 struct sir_dev *dev = netdev_priv(ndev);
794 const struct sir_driver *drv = dev->drv;
799 /* increase the reference count of the driver module before doing serious stuff */
800 if (!try_module_get(drv->owner))
803 IRDA_DEBUG(2, "%s()\n", __func__);
805 if (sirdev_alloc_buffers(dev))
808 if (!dev->drv->start_dev || dev->drv->start_dev(dev))
811 sirdev_enable_rx(dev);
814 netif_start_queue(ndev);
815 dev->irlap = irlap_open(ndev, &dev->qos, dev->hwname);
819 netif_wake_queue(ndev);
821 IRDA_DEBUG(2, "%s - done, speed = %d\n", __func__, dev->speed);
826 atomic_set(&dev->enable_rx, 0);
827 if (dev->drv->stop_dev)
828 dev->drv->stop_dev(dev);
830 sirdev_free_buffers(dev);
832 module_put(drv->owner);
836 static int sirdev_close(struct net_device *ndev)
838 struct sir_dev *dev = netdev_priv(ndev);
839 const struct sir_driver *drv;
841 // IRDA_DEBUG(0, "%s\n", __func__);
843 netif_stop_queue(ndev);
845 down(&dev->fsm.sem); /* block on pending config completion */
847 atomic_set(&dev->enable_rx, 0);
849 if (unlikely(!dev->irlap))
851 irlap_close(dev->irlap);
855 if (unlikely(!drv || !dev->priv))
861 sirdev_free_buffers(dev);
862 module_put(drv->owner);
870 static const struct net_device_ops sirdev_ops = {
871 .ndo_start_xmit = sirdev_hard_xmit,
872 .ndo_open = sirdev_open,
873 .ndo_stop = sirdev_close,
874 .ndo_do_ioctl = sirdev_ioctl,
876 /* ----------------------------------------------------------------------------- */
878 struct sir_dev * sirdev_get_instance(const struct sir_driver *drv, const char *name)
880 struct net_device *ndev;
883 IRDA_DEBUG(0, "%s - %s\n", __func__, name);
885 /* instead of adding tests to protect against drv->do_write==NULL
886 * at several places we refuse to create a sir_dev instance for
887 * drivers which don't implement do_write.
889 if (!drv || !drv->do_write)
893 * Allocate new instance of the device
895 ndev = alloc_irdadev(sizeof(*dev));
897 IRDA_ERROR("%s - Can't allocate memory for IrDA control block!\n", __func__);
900 dev = netdev_priv(ndev);
902 irda_init_max_qos_capabilies(&dev->qos);
903 dev->qos.baud_rate.bits = IR_9600|IR_19200|IR_38400|IR_57600|IR_115200;
904 dev->qos.min_turn_time.bits = drv->qos_mtt_bits;
905 irda_qos_bits_to_value(&dev->qos);
907 strncpy(dev->hwname, name, sizeof(dev->hwname)-1);
909 atomic_set(&dev->enable_rx, 0);
912 spin_lock_init(&dev->tx_lock);
913 sema_init(&dev->fsm.sem, 1);
918 /* Override the network functions we need to use */
919 ndev->netdev_ops = &sirdev_ops;
921 if (register_netdev(ndev)) {
922 IRDA_ERROR("%s(), register_netdev() failed!\n", __func__);
933 EXPORT_SYMBOL(sirdev_get_instance);
935 int sirdev_put_instance(struct sir_dev *dev)
939 IRDA_DEBUG(0, "%s\n", __func__);
941 atomic_set(&dev->enable_rx, 0);
943 netif_carrier_off(dev->netdev);
944 netif_device_detach(dev->netdev);
947 err = sirdev_schedule_dongle_close(dev);
949 IRDA_ERROR("%s - error %d\n", __func__, err);
951 sirdev_close(dev->netdev);
954 dev->fsm.state = SIRDEV_STATE_DEAD; /* mark staled */
955 dev->dongle_drv = NULL;
959 /* Remove netdevice */
960 unregister_netdev(dev->netdev);
962 free_netdev(dev->netdev);
966 EXPORT_SYMBOL(sirdev_put_instance);
968 static int __init sir_wq_init(void)
970 irda_sir_wq = create_singlethread_workqueue("irda_sir_wq");
976 static void __exit sir_wq_exit(void)
978 destroy_workqueue(irda_sir_wq);
981 module_init(sir_wq_init);
982 module_exit(sir_wq_exit);
985 MODULE_DESCRIPTION("IrDA SIR core");
986 MODULE_LICENSE("GPL");