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/module.h>
15 #include <linux/kernel.h>
16 #include <linux/init.h>
17 #include <linux/smp_lock.h>
18 #include <linux/delay.h>
20 #include <net/irda/irda.h>
21 #include <net/irda/wrapper.h>
22 #include <net/irda/irda_device.h>
27 static struct workqueue_struct *irda_sir_wq;
31 /* substate handler of the config-fsm to handle the cases where we want
32 * to wait for transmit completion before changing the port configuration
35 static int sirdev_tx_complete_fsm(struct sir_dev *dev)
37 struct sir_fsm *fsm = &dev->fsm;
38 unsigned next_state, delay;
42 next_state = fsm->substate; /* default: stay in current substate */
45 switch(fsm->substate) {
47 case SIRDEV_STATE_WAIT_XMIT:
48 if (dev->drv->chars_in_buffer)
49 bytes_left = dev->drv->chars_in_buffer(dev);
53 next_state = SIRDEV_STATE_WAIT_UNTIL_SENT;
57 if (dev->speed > 115200)
58 delay = (bytes_left*8*10000) / (dev->speed/100);
59 else if (dev->speed > 0)
60 delay = (bytes_left*10*10000) / (dev->speed/100);
63 /* expected delay (usec) until remaining bytes are sent */
69 /* sleep some longer delay (msec) */
70 delay = (delay+999) / 1000;
73 case SIRDEV_STATE_WAIT_UNTIL_SENT:
74 /* block until underlaying hardware buffer are empty */
75 if (dev->drv->wait_until_sent)
76 dev->drv->wait_until_sent(dev);
77 next_state = SIRDEV_STATE_TX_DONE;
80 case SIRDEV_STATE_TX_DONE:
84 IRDA_ERROR("%s - undefined state\n", __FUNCTION__);
87 fsm->substate = next_state;
93 * Function sirdev_config_fsm
95 * State machine to handle the configuration of the device (and attached dongle, if any).
96 * This handler is scheduled for execution in kIrDAd context, so we can sleep.
97 * however, kIrDAd is shared by all sir_dev devices so we better don't sleep there too
98 * long. Instead, for longer delays we start a timer to reschedule us later.
99 * On entry, fsm->sem is always locked and the netdev xmit queue stopped.
100 * Both must be unlocked/restarted on completion - but only on final exit.
103 static void sirdev_config_fsm(void *data)
105 struct sir_dev *dev = data;
106 struct sir_fsm *fsm = &dev->fsm;
111 IRDA_DEBUG(2, "%s(), <%ld>\n", __FUNCTION__, jiffies);
114 IRDA_DEBUG(3, "%s - state=0x%04x / substate=0x%04x\n",
115 __FUNCTION__, fsm->state, fsm->substate);
117 next_state = fsm->state;
122 case SIRDEV_STATE_DONGLE_OPEN:
123 if (dev->dongle_drv != NULL) {
124 ret = sirdev_put_dongle(dev);
126 fsm->result = -EINVAL;
127 next_state = SIRDEV_STATE_ERROR;
132 /* Initialize dongle */
133 ret = sirdev_get_dongle(dev, fsm->param);
136 next_state = SIRDEV_STATE_ERROR;
140 /* Dongles are powered through the modem control lines which
141 * were just set during open. Before resetting, let's wait for
142 * the power to stabilize. This is what some dongle drivers did
143 * in open before, while others didn't - should be safe anyway.
147 fsm->substate = SIRDEV_STATE_DONGLE_RESET;
148 next_state = SIRDEV_STATE_DONGLE_RESET;
154 case SIRDEV_STATE_DONGLE_CLOSE:
155 /* shouldn't we just treat this as success=? */
156 if (dev->dongle_drv == NULL) {
157 fsm->result = -EINVAL;
158 next_state = SIRDEV_STATE_ERROR;
162 ret = sirdev_put_dongle(dev);
165 next_state = SIRDEV_STATE_ERROR;
168 next_state = SIRDEV_STATE_DONE;
171 case SIRDEV_STATE_SET_DTR_RTS:
172 ret = sirdev_set_dtr_rts(dev,
173 (fsm->param&0x02) ? TRUE : FALSE,
174 (fsm->param&0x01) ? TRUE : FALSE);
175 next_state = SIRDEV_STATE_DONE;
178 case SIRDEV_STATE_SET_SPEED:
179 fsm->substate = SIRDEV_STATE_WAIT_XMIT;
180 next_state = SIRDEV_STATE_DONGLE_CHECK;
183 case SIRDEV_STATE_DONGLE_CHECK:
184 ret = sirdev_tx_complete_fsm(dev);
187 next_state = SIRDEV_STATE_ERROR;
190 if ((delay=ret) != 0)
193 if (dev->dongle_drv) {
194 fsm->substate = SIRDEV_STATE_DONGLE_RESET;
195 next_state = SIRDEV_STATE_DONGLE_RESET;
198 dev->speed = fsm->param;
199 next_state = SIRDEV_STATE_PORT_SPEED;
203 case SIRDEV_STATE_DONGLE_RESET:
204 if (dev->dongle_drv->reset) {
205 ret = dev->dongle_drv->reset(dev);
208 next_state = SIRDEV_STATE_ERROR;
214 if ((delay=ret) == 0) {
215 /* set serial port according to dongle default speed */
216 if (dev->drv->set_speed)
217 dev->drv->set_speed(dev, dev->speed);
218 fsm->substate = SIRDEV_STATE_DONGLE_SPEED;
219 next_state = SIRDEV_STATE_DONGLE_SPEED;
223 case SIRDEV_STATE_DONGLE_SPEED:
224 if (dev->dongle_drv->reset) {
225 ret = dev->dongle_drv->set_speed(dev, fsm->param);
228 next_state = SIRDEV_STATE_ERROR;
234 if ((delay=ret) == 0)
235 next_state = SIRDEV_STATE_PORT_SPEED;
238 case SIRDEV_STATE_PORT_SPEED:
239 /* Finally we are ready to change the serial port speed */
240 if (dev->drv->set_speed)
241 dev->drv->set_speed(dev, dev->speed);
243 next_state = SIRDEV_STATE_DONE;
246 case SIRDEV_STATE_DONE:
247 /* Signal network layer so it can send more frames */
248 netif_wake_queue(dev->netdev);
249 next_state = SIRDEV_STATE_COMPLETE;
253 IRDA_ERROR("%s - undefined state\n", __FUNCTION__);
254 fsm->result = -EINVAL;
257 case SIRDEV_STATE_ERROR:
258 IRDA_ERROR("%s - error: %d\n", __FUNCTION__, fsm->result);
260 #if 0 /* don't enable this before we have netdev->tx_timeout to recover */
261 netif_stop_queue(dev->netdev);
263 netif_wake_queue(dev->netdev);
267 case SIRDEV_STATE_COMPLETE:
268 /* config change finished, so we are not busy any longer */
269 sirdev_enable_rx(dev);
273 fsm->state = next_state;
276 queue_delayed_work(irda_sir_wq, &fsm->work, msecs_to_jiffies(delay));
279 /* schedule some device configuration task for execution by kIrDAd
280 * on behalf of the above state machine.
281 * can be called from process or interrupt/tasklet context.
284 int sirdev_schedule_request(struct sir_dev *dev, int initial_state, unsigned param)
286 struct sir_fsm *fsm = &dev->fsm;
288 IRDA_DEBUG(2, "%s - state=0x%04x / param=%u\n", __FUNCTION__, initial_state, param);
290 if (down_trylock(&fsm->sem)) {
291 if (in_interrupt() || in_atomic() || irqs_disabled()) {
292 IRDA_DEBUG(1, "%s(), state machine busy!\n", __FUNCTION__);
298 if (fsm->state == SIRDEV_STATE_DEAD) {
299 /* race with sirdev_close should never happen */
300 IRDA_ERROR("%s(), instance staled!\n", __FUNCTION__);
302 return -ESTALE; /* or better EPIPE? */
305 netif_stop_queue(dev->netdev);
306 atomic_set(&dev->enable_rx, 0);
308 fsm->state = initial_state;
312 INIT_WORK(&fsm->work, sirdev_config_fsm, dev);
313 queue_work(irda_sir_wq, &fsm->work);
318 /***************************************************************************/
320 void sirdev_enable_rx(struct sir_dev *dev)
322 if (unlikely(atomic_read(&dev->enable_rx)))
325 /* flush rx-buffer - should also help in case of problems with echo cancelation */
326 dev->rx_buff.data = dev->rx_buff.head;
327 dev->rx_buff.len = 0;
328 dev->rx_buff.in_frame = FALSE;
329 dev->rx_buff.state = OUTSIDE_FRAME;
330 atomic_set(&dev->enable_rx, 1);
333 static int sirdev_is_receiving(struct sir_dev *dev)
335 if (!atomic_read(&dev->enable_rx))
338 return (dev->rx_buff.state != OUTSIDE_FRAME);
341 int sirdev_set_dongle(struct sir_dev *dev, IRDA_DONGLE type)
345 IRDA_DEBUG(3, "%s : requesting dongle %d.\n", __FUNCTION__, type);
347 err = sirdev_schedule_dongle_open(dev, type);
350 down(&dev->fsm.sem); /* block until config change completed */
351 err = dev->fsm.result;
355 EXPORT_SYMBOL(sirdev_set_dongle);
357 /* used by dongle drivers for dongle programming */
359 int sirdev_raw_write(struct sir_dev *dev, const char *buf, int len)
364 if (unlikely(len > dev->tx_buff.truesize))
367 spin_lock_irqsave(&dev->tx_lock, flags); /* serialize with other tx operations */
368 while (dev->tx_buff.len > 0) { /* wait until tx idle */
369 spin_unlock_irqrestore(&dev->tx_lock, flags);
371 spin_lock_irqsave(&dev->tx_lock, flags);
374 dev->tx_buff.data = dev->tx_buff.head;
375 memcpy(dev->tx_buff.data, buf, len);
376 dev->tx_buff.len = len;
378 ret = dev->drv->do_write(dev, dev->tx_buff.data, dev->tx_buff.len);
380 IRDA_DEBUG(3, "%s(), raw-tx started\n", __FUNCTION__);
382 dev->tx_buff.data += ret;
383 dev->tx_buff.len -= ret;
385 ret = len; /* all data is going to be sent */
387 spin_unlock_irqrestore(&dev->tx_lock, flags);
390 EXPORT_SYMBOL(sirdev_raw_write);
392 /* seems some dongle drivers may need this */
394 int sirdev_raw_read(struct sir_dev *dev, char *buf, int len)
398 if (atomic_read(&dev->enable_rx))
399 return -EIO; /* fail if we expect irda-frames */
401 count = (len < dev->rx_buff.len) ? len : dev->rx_buff.len;
404 memcpy(buf, dev->rx_buff.data, count);
405 dev->rx_buff.data += count;
406 dev->rx_buff.len -= count;
409 /* remaining stuff gets flushed when re-enabling normal rx */
413 EXPORT_SYMBOL(sirdev_raw_read);
415 int sirdev_set_dtr_rts(struct sir_dev *dev, int dtr, int rts)
418 if (dev->drv->set_dtr_rts != 0)
419 ret = dev->drv->set_dtr_rts(dev, dtr, rts);
422 EXPORT_SYMBOL(sirdev_set_dtr_rts);
424 /**********************************************************************/
426 /* called from client driver - likely with bh-context - to indicate
427 * it made some progress with transmission. Hence we send the next
428 * chunk, if any, or complete the skb otherwise
431 void sirdev_write_complete(struct sir_dev *dev)
438 spin_lock_irqsave(&dev->tx_lock, flags);
440 IRDA_DEBUG(3, "%s() - dev->tx_buff.len = %d\n",
441 __FUNCTION__, dev->tx_buff.len);
443 if (likely(dev->tx_buff.len > 0)) {
444 /* Write data left in transmit buffer */
445 actual = dev->drv->do_write(dev, dev->tx_buff.data, dev->tx_buff.len);
447 if (likely(actual>0)) {
448 dev->tx_buff.data += actual;
449 dev->tx_buff.len -= actual;
451 else if (unlikely(actual<0)) {
452 /* could be dropped later when we have tx_timeout to recover */
453 IRDA_ERROR("%s: drv->do_write failed (%d)\n",
454 __FUNCTION__, actual);
455 if ((skb=dev->tx_skb) != NULL) {
457 dev_kfree_skb_any(skb);
458 dev->stats.tx_errors++;
459 dev->stats.tx_dropped++;
461 dev->tx_buff.len = 0;
463 if (dev->tx_buff.len > 0)
464 goto done; /* more data to send later */
467 if (unlikely(dev->raw_tx != 0)) {
468 /* in raw mode we are just done now after the buffer was sent
469 * completely. Since this was requested by some dongle driver
470 * running under the control of the irda-thread we must take
471 * care here not to re-enable the queue. The queue will be
472 * restarted when the irda-thread has completed the request.
475 IRDA_DEBUG(3, "%s(), raw-tx done\n", __FUNCTION__);
477 goto done; /* no post-frame handling in raw mode */
480 /* we have finished now sending this skb.
481 * update statistics and free the skb.
482 * finally we check and trigger a pending speed change, if any.
483 * if not we switch to rx mode and wake the queue for further
485 * note the scheduled speed request blocks until the lower
486 * client driver and the corresponding hardware has really
487 * finished sending all data (xmit fifo drained f.e.)
488 * before the speed change gets finally done and the queue
492 IRDA_DEBUG(5, "%s(), finished with frame!\n", __FUNCTION__);
494 if ((skb=dev->tx_skb) != NULL) {
496 dev->stats.tx_packets++;
497 dev->stats.tx_bytes += skb->len;
498 dev_kfree_skb_any(skb);
501 if (unlikely(dev->new_speed > 0)) {
502 IRDA_DEBUG(5, "%s(), Changing speed!\n", __FUNCTION__);
503 err = sirdev_schedule_speed(dev, dev->new_speed);
505 /* should never happen
506 * forget the speed change and hope the stack recovers
508 IRDA_ERROR("%s - schedule speed change failed: %d\n",
510 netif_wake_queue(dev->netdev);
513 * speed change in progress now
514 * on completion dev->new_speed gets cleared,
515 * rx-reenabled and the queue restarted
519 sirdev_enable_rx(dev);
520 netif_wake_queue(dev->netdev);
524 spin_unlock_irqrestore(&dev->tx_lock, flags);
526 EXPORT_SYMBOL(sirdev_write_complete);
528 /* called from client driver - likely with bh-context - to give us
529 * some more received bytes. We put them into the rx-buffer,
530 * normally unwrapping and building LAP-skb's (unless rx disabled)
533 int sirdev_receive(struct sir_dev *dev, const unsigned char *cp, size_t count)
535 if (!dev || !dev->netdev) {
536 IRDA_WARNING("%s(), not ready yet!\n", __FUNCTION__);
541 IRDA_WARNING("%s - too early: %p / %zd!\n",
542 __FUNCTION__, cp, count);
547 /* error already at lower level receive
548 * just update stats and set media busy
550 irda_device_set_media_busy(dev->netdev, TRUE);
551 dev->stats.rx_dropped++;
552 IRDA_DEBUG(0, "%s; rx-drop: %zd\n", __FUNCTION__, count);
556 /* Read the characters into the buffer */
557 if (likely(atomic_read(&dev->enable_rx))) {
559 /* Unwrap and destuff one byte */
560 async_unwrap_char(dev->netdev, &dev->stats,
561 &dev->rx_buff, *cp++);
564 /* rx not enabled: save the raw bytes and never
565 * trigger any netif_rx. The received bytes are flushed
566 * later when we re-enable rx but might be read meanwhile
567 * by the dongle driver.
569 dev->rx_buff.data[dev->rx_buff.len++] = *cp++;
571 /* What should we do when the buffer is full? */
572 if (unlikely(dev->rx_buff.len == dev->rx_buff.truesize))
573 dev->rx_buff.len = 0;
579 EXPORT_SYMBOL(sirdev_receive);
581 /**********************************************************************/
583 /* callbacks from network layer */
585 static struct net_device_stats *sirdev_get_stats(struct net_device *ndev)
587 struct sir_dev *dev = ndev->priv;
589 return (dev) ? &dev->stats : NULL;
592 static int sirdev_hard_xmit(struct sk_buff *skb, struct net_device *ndev)
594 struct sir_dev *dev = ndev->priv;
600 IRDA_ASSERT(dev != NULL, return 0;);
602 netif_stop_queue(ndev);
604 IRDA_DEBUG(3, "%s(), skb->len = %d\n", __FUNCTION__, skb->len);
606 speed = irda_get_next_speed(skb);
607 if ((speed != dev->speed) && (speed != -1)) {
609 err = sirdev_schedule_speed(dev, speed);
610 if (unlikely(err == -EWOULDBLOCK)) {
611 /* Failed to initiate the speed change, likely the fsm
612 * is still busy (pretty unlikely, but...)
613 * We refuse to accept the skb and return with the queue
614 * stopped so the network layer will retry after the
615 * fsm completes and wakes the queue.
619 else if (unlikely(err)) {
620 /* other fatal error - forget the speed change and
621 * hope the stack will recover somehow
623 netif_start_queue(ndev);
626 * speed change in progress now
627 * on completion the queue gets restarted
630 dev_kfree_skb_any(skb);
633 dev->new_speed = speed;
637 dev->tx_buff.data = dev->tx_buff.head;
640 if(spin_is_locked(&dev->tx_lock)) {
641 IRDA_DEBUG(3, "%s(), write not completed\n", __FUNCTION__);
644 /* serialize with write completion */
645 spin_lock_irqsave(&dev->tx_lock, flags);
647 /* Copy skb to tx_buff while wrapping, stuffing and making CRC */
648 dev->tx_buff.len = async_wrap_skb(skb, dev->tx_buff.data, dev->tx_buff.truesize);
650 /* transmission will start now - disable receive.
651 * if we are just in the middle of an incoming frame,
652 * treat it as collision. probably it's a good idea to
653 * reset the rx_buf OUTSIDE_FRAME in this case too?
655 atomic_set(&dev->enable_rx, 0);
656 if (unlikely(sirdev_is_receiving(dev)))
657 dev->stats.collisions++;
659 actual = dev->drv->do_write(dev, dev->tx_buff.data, dev->tx_buff.len);
661 if (likely(actual > 0)) {
663 ndev->trans_start = jiffies;
664 dev->tx_buff.data += actual;
665 dev->tx_buff.len -= actual;
667 else if (unlikely(actual < 0)) {
668 /* could be dropped later when we have tx_timeout to recover */
669 IRDA_ERROR("%s: drv->do_write failed (%d)\n",
670 __FUNCTION__, actual);
671 dev_kfree_skb_any(skb);
672 dev->stats.tx_errors++;
673 dev->stats.tx_dropped++;
674 netif_wake_queue(ndev);
676 spin_unlock_irqrestore(&dev->tx_lock, flags);
681 /* called from network layer with rtnl hold */
683 static int sirdev_ioctl(struct net_device *ndev, struct ifreq *rq, int cmd)
685 struct if_irda_req *irq = (struct if_irda_req *) rq;
686 struct sir_dev *dev = ndev->priv;
689 IRDA_ASSERT(dev != NULL, return -1;);
691 IRDA_DEBUG(3, "%s(), %s, (cmd=0x%X)\n", __FUNCTION__, ndev->name, cmd);
694 case SIOCSBANDWIDTH: /* Set bandwidth */
695 if (!capable(CAP_NET_ADMIN))
698 ret = sirdev_schedule_speed(dev, irq->ifr_baudrate);
699 /* cannot sleep here for completion
700 * we are called from network layer with rtnl hold
704 case SIOCSDONGLE: /* Set dongle */
705 if (!capable(CAP_NET_ADMIN))
708 ret = sirdev_schedule_dongle_open(dev, irq->ifr_dongle);
709 /* cannot sleep here for completion
710 * we are called from network layer with rtnl hold
714 case SIOCSMEDIABUSY: /* Set media busy */
715 if (!capable(CAP_NET_ADMIN))
718 irda_device_set_media_busy(dev->netdev, TRUE);
721 case SIOCGRECEIVING: /* Check if we are receiving right now */
722 irq->ifr_receiving = sirdev_is_receiving(dev);
726 if (!capable(CAP_NET_ADMIN))
729 ret = sirdev_schedule_dtr_rts(dev, irq->ifr_dtr, irq->ifr_rts);
730 /* cannot sleep here for completion
731 * we are called from network layer with rtnl hold
737 if (!capable(CAP_NET_ADMIN))
740 ret = sirdev_schedule_mode(dev, irq->ifr_mode);
741 /* cannot sleep here for completion
742 * we are called from network layer with rtnl hold
753 /* ----------------------------------------------------------------------------- */
755 #define SIRBUF_ALLOCSIZE 4269 /* worst case size of a wrapped IrLAP frame */
757 static int sirdev_alloc_buffers(struct sir_dev *dev)
759 dev->tx_buff.truesize = SIRBUF_ALLOCSIZE;
760 dev->rx_buff.truesize = IRDA_SKB_MAX_MTU;
762 /* Bootstrap ZeroCopy Rx */
763 dev->rx_buff.skb = __dev_alloc_skb(dev->rx_buff.truesize, GFP_KERNEL);
764 if (dev->rx_buff.skb == NULL)
766 skb_reserve(dev->rx_buff.skb, 1);
767 dev->rx_buff.head = dev->rx_buff.skb->data;
769 dev->tx_buff.head = kmalloc(dev->tx_buff.truesize, GFP_KERNEL);
770 if (dev->tx_buff.head == NULL) {
771 kfree_skb(dev->rx_buff.skb);
772 dev->rx_buff.skb = NULL;
773 dev->rx_buff.head = NULL;
777 dev->tx_buff.data = dev->tx_buff.head;
778 dev->rx_buff.data = dev->rx_buff.head;
779 dev->tx_buff.len = 0;
780 dev->rx_buff.len = 0;
782 dev->rx_buff.in_frame = FALSE;
783 dev->rx_buff.state = OUTSIDE_FRAME;
787 static void sirdev_free_buffers(struct sir_dev *dev)
789 if (dev->rx_buff.skb)
790 kfree_skb(dev->rx_buff.skb);
791 kfree(dev->tx_buff.head);
792 dev->rx_buff.head = dev->tx_buff.head = NULL;
793 dev->rx_buff.skb = NULL;
796 static int sirdev_open(struct net_device *ndev)
798 struct sir_dev *dev = ndev->priv;
799 const struct sir_driver *drv = dev->drv;
804 /* increase the reference count of the driver module before doing serious stuff */
805 if (!try_module_get(drv->owner))
808 IRDA_DEBUG(2, "%s()\n", __FUNCTION__);
810 if (sirdev_alloc_buffers(dev))
813 if (!dev->drv->start_dev || dev->drv->start_dev(dev))
816 sirdev_enable_rx(dev);
819 netif_start_queue(ndev);
820 dev->irlap = irlap_open(ndev, &dev->qos, dev->hwname);
824 netif_wake_queue(ndev);
826 IRDA_DEBUG(2, "%s - done, speed = %d\n", __FUNCTION__, dev->speed);
831 atomic_set(&dev->enable_rx, 0);
832 if (dev->drv->stop_dev)
833 dev->drv->stop_dev(dev);
835 sirdev_free_buffers(dev);
837 module_put(drv->owner);
841 static int sirdev_close(struct net_device *ndev)
843 struct sir_dev *dev = ndev->priv;
844 const struct sir_driver *drv;
846 // IRDA_DEBUG(0, "%s\n", __FUNCTION__);
848 netif_stop_queue(ndev);
850 down(&dev->fsm.sem); /* block on pending config completion */
852 atomic_set(&dev->enable_rx, 0);
854 if (unlikely(!dev->irlap))
856 irlap_close(dev->irlap);
860 if (unlikely(!drv || !dev->priv))
866 sirdev_free_buffers(dev);
867 module_put(drv->owner);
875 /* ----------------------------------------------------------------------------- */
877 struct sir_dev * sirdev_get_instance(const struct sir_driver *drv, const char *name)
879 struct net_device *ndev;
882 IRDA_DEBUG(0, "%s - %s\n", __FUNCTION__, name);
884 /* instead of adding tests to protect against drv->do_write==NULL
885 * at several places we refuse to create a sir_dev instance for
886 * drivers which don't implement do_write.
888 if (!drv || !drv->do_write)
892 * Allocate new instance of the device
894 ndev = alloc_irdadev(sizeof(*dev));
896 IRDA_ERROR("%s - Can't allocate memory for IrDA control block!\n", __FUNCTION__);
901 irda_init_max_qos_capabilies(&dev->qos);
902 dev->qos.baud_rate.bits = IR_9600|IR_19200|IR_38400|IR_57600|IR_115200;
903 dev->qos.min_turn_time.bits = drv->qos_mtt_bits;
904 irda_qos_bits_to_value(&dev->qos);
906 strncpy(dev->hwname, name, sizeof(dev->hwname)-1);
908 atomic_set(&dev->enable_rx, 0);
911 spin_lock_init(&dev->tx_lock);
912 init_MUTEX(&dev->fsm.sem);
917 SET_MODULE_OWNER(ndev);
919 /* Override the network functions we need to use */
920 ndev->hard_start_xmit = sirdev_hard_xmit;
921 ndev->open = sirdev_open;
922 ndev->stop = sirdev_close;
923 ndev->get_stats = sirdev_get_stats;
924 ndev->do_ioctl = sirdev_ioctl;
926 if (register_netdev(ndev)) {
927 IRDA_ERROR("%s(), register_netdev() failed!\n", __FUNCTION__);
938 EXPORT_SYMBOL(sirdev_get_instance);
940 int sirdev_put_instance(struct sir_dev *dev)
944 IRDA_DEBUG(0, "%s\n", __FUNCTION__);
946 atomic_set(&dev->enable_rx, 0);
948 netif_carrier_off(dev->netdev);
949 netif_device_detach(dev->netdev);
952 err = sirdev_schedule_dongle_close(dev);
954 IRDA_ERROR("%s - error %d\n", __FUNCTION__, err);
956 sirdev_close(dev->netdev);
959 dev->fsm.state = SIRDEV_STATE_DEAD; /* mark staled */
960 dev->dongle_drv = NULL;
964 /* Remove netdevice */
965 unregister_netdev(dev->netdev);
967 free_netdev(dev->netdev);
971 EXPORT_SYMBOL(sirdev_put_instance);
973 static int __init sir_wq_init(void)
975 irda_sir_wq = create_singlethread_workqueue("irda_sir_wq");
981 static void __exit sir_wq_exit(void)
983 destroy_workqueue(irda_sir_wq);
986 module_init(sir_wq_init);
987 module_exit(sir_wq_exit);
989 MODULE_AUTHOR("Martin Diehl <info@mdiehl.de>");
990 MODULE_DESCRIPTION("IrDA SIR core");
991 MODULE_LICENSE("GPL");