1 /*****************************************************************************
5 * Description: Irda SigmaTel USB Dongle
7 * Author: Stephen Hemminger <shemminger@osdl.org>
9 * Based on earlier driver by Paul Stewart <stewart@parc.com>
11 * Copyright (C) 2000, Roman Weissgaerber <weissg@vienna.at>
12 * Copyright (C) 2001, Dag Brattli <dag@brattli.net>
13 * Copyright (C) 2001, Jean Tourrilhes <jt@hpl.hp.com>
14 * Copyright (C) 2004, Stephen Hemminger <shemminger@osdl.org>
16 * This program is free software; you can redistribute it and/or modify
17 * it under the terms of the GNU General Public License as published by
18 * the Free Software Foundation; either version 2 of the License, or
19 * (at your option) any later version.
21 * This program is distributed in the hope that it will be useful,
22 * but WITHOUT ANY WARRANTY; without even the implied warranty of
23 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
24 * GNU General Public License for more details.
26 * You should have received a copy of the GNU General Public License
27 * along with this program; if not, write to the Free Software
28 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
30 *****************************************************************************/
33 * This dongle does no framing, and requires polling to receive the
34 * data. The STIr4200 has bulk in and out endpoints just like
35 * usr-irda devices, but the data it sends and receives is raw; like
36 * irtty, it needs to call the wrap and unwrap functions to add and
37 * remove SOF/BOF and escape characters to/from the frame.
40 #include <linux/module.h>
41 #include <linux/moduleparam.h>
43 #include <linux/kernel.h>
44 #include <linux/types.h>
45 #include <linux/init.h>
46 #include <linux/time.h>
47 #include <linux/skbuff.h>
48 #include <linux/netdevice.h>
49 #include <linux/slab.h>
50 #include <linux/delay.h>
51 #include <linux/usb.h>
52 #include <linux/crc32.h>
53 #include <net/irda/irda.h>
54 #include <net/irda/irlap.h>
55 #include <net/irda/irda_device.h>
56 #include <net/irda/wrapper.h>
57 #include <net/irda/crc.h>
58 #include <asm/byteorder.h>
59 #include <asm/unaligned.h>
61 MODULE_AUTHOR("Stephen Hemminger <shemminger@osdl.org>");
62 MODULE_DESCRIPTION("IrDA-USB Dongle Driver for SigmaTel STIr4200");
63 MODULE_LICENSE("GPL");
65 static int qos_mtt_bits = 0x07; /* 1 ms or more */
66 module_param(qos_mtt_bits, int, 0);
67 MODULE_PARM_DESC(qos_mtt_bits, "Minimum Turn Time");
69 static int rx_sensitivity = 1; /* FIR 0..4, SIR 0..6 */
70 module_param(rx_sensitivity, int, 0);
71 MODULE_PARM_DESC(rx_sensitivity, "Set Receiver sensitivity (0-6, 0 is most sensitive)");
73 static int tx_power = 0; /* 0 = highest ... 3 = lowest */
74 module_param(tx_power, int, 0);
75 MODULE_PARM_DESC(tx_power, "Set Transmitter power (0-3, 0 is highest power)");
77 #define STIR_IRDA_HEADER 4
78 #define CTRL_TIMEOUT 100 /* milliseconds */
79 #define TRANSMIT_TIMEOUT 200 /* milliseconds */
80 #define STIR_FIFO_SIZE 4096
81 #define FIFO_REGS_SIZE 3
93 REQ_WRITE_SINGLE = 0x03,
96 /* Register offsets */
122 PDCLK_4000000 = 0x02,
140 CTRL2_SPWIDTH = 0x08,
144 enum StirFifoCtlMask {
146 FIFOCTL_UNDER = 0x40,
150 FIFOCTL_EMPTY = 0x04,
151 FIFOCTL_RXERR = 0x02,
152 FIFOCTL_TXERR = 0x01,
169 struct usb_device *usbdev; /* init: probe_irda */
170 struct net_device *netdev; /* network layer */
171 struct irlap_cb *irlap; /* The link layer we are binded to */
172 struct net_device_stats stats; /* network statistics */
174 unsigned speed; /* Current speed */
176 wait_queue_head_t thr_wait; /* transmit thread wakeup */
177 struct completion thr_exited;
180 struct sk_buff *tx_pending;
181 void *io_buf; /* transmit/receive buffer */
184 iobuff_t rx_buff; /* receive unwrap state machine */
185 struct timeval rx_time;
191 /* These are the currently known USB ids */
192 static struct usb_device_id dongles[] = {
193 /* SigmaTel, Inc, STIr4200 IrDA/USB Bridge */
194 { USB_DEVICE(0x066f, 0x4200) },
198 MODULE_DEVICE_TABLE(usb, dongles);
200 /* Send control message to set dongle register */
201 static int write_reg(struct stir_cb *stir, __u16 reg, __u8 value)
203 struct usb_device *dev = stir->usbdev;
205 pr_debug("%s: write reg %d = 0x%x\n",
206 stir->netdev->name, reg, value);
207 return usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
209 USB_DIR_OUT|USB_TYPE_VENDOR|USB_RECIP_DEVICE,
214 /* Send control message to read multiple registers */
215 static inline int read_reg(struct stir_cb *stir, __u16 reg,
216 __u8 *data, __u16 count)
218 struct usb_device *dev = stir->usbdev;
220 return usb_control_msg(dev, usb_rcvctrlpipe(dev, 0),
222 USB_DIR_IN | USB_TYPE_VENDOR | USB_RECIP_DEVICE,
227 static inline int isfir(u32 speed)
229 return (speed == 4000000);
233 * Prepare a FIR IrDA frame for transmission to the USB dongle. The
234 * FIR transmit frame is documented in the datasheet. It consists of
235 * a two byte 0x55 0xAA sequence, two little-endian length bytes, a
236 * sequence of exactly 16 XBOF bytes of 0x7E, two BOF bytes of 0x7E,
237 * then the data escaped as follows:
243 * Then, 4 bytes of little endian (stuffed) FCS follow, then two
244 * trailing EOF bytes of 0x7E.
246 static inline __u8 *stuff_fir(__u8 *p, __u8 c)
261 /* Take raw data in skb and put it wrapped into buf */
262 static unsigned wrap_fir_skb(const struct sk_buff *skb, __u8 *buf)
265 __u32 fcs = ~(crc32_le(~0, skb->data, skb->len));
273 ptr = buf + STIR_IRDA_HEADER;
274 memset(ptr, 0x7f, 16);
281 /* Address / Control / Information */
282 for (i = 0; i < skb->len; i++)
283 ptr = stuff_fir(ptr, skb->data[i]);
286 ptr = stuff_fir(ptr, fcs & 0xff);
287 ptr = stuff_fir(ptr, (fcs >> 8) & 0xff);
288 ptr = stuff_fir(ptr, (fcs >> 16) & 0xff);
289 ptr = stuff_fir(ptr, (fcs >> 24) & 0xff);
295 /* Total length, minus the header */
296 wraplen = (ptr - buf) - STIR_IRDA_HEADER;
297 buf[2] = wraplen & 0xff;
298 buf[3] = (wraplen >> 8) & 0xff;
300 return wraplen + STIR_IRDA_HEADER;
303 static unsigned wrap_sir_skb(struct sk_buff *skb, __u8 *buf)
307 wraplen = async_wrap_skb(skb, buf + STIR_IRDA_HEADER,
308 STIR_FIFO_SIZE - STIR_IRDA_HEADER);
311 buf[2] = wraplen & 0xff;
312 buf[3] = (wraplen >> 8) & 0xff;
314 return wraplen + STIR_IRDA_HEADER;
318 * Frame is fully formed in the rx_buff so check crc
319 * and pass up to irlap
320 * setup for next receive
322 static void fir_eof(struct stir_cb *stir)
324 iobuff_t *rx_buff = &stir->rx_buff;
325 int len = rx_buff->len - 4;
326 struct sk_buff *skb, *nskb;
329 if (unlikely(len <= 0)) {
330 pr_debug("%s: short frame len %d\n",
331 stir->netdev->name, len);
333 ++stir->stats.rx_errors;
334 ++stir->stats.rx_length_errors;
338 fcs = ~(crc32_le(~0, rx_buff->data, len));
339 if (fcs != le32_to_cpu(get_unaligned((u32 *)(rx_buff->data+len)))) {
340 pr_debug("crc error calc 0x%x len %d\n", fcs, len);
341 stir->stats.rx_errors++;
342 stir->stats.rx_crc_errors++;
346 /* if frame is short then just copy it */
347 if (len < IRDA_RX_COPY_THRESHOLD) {
348 nskb = dev_alloc_skb(len + 1);
349 if (unlikely(!nskb)) {
350 ++stir->stats.rx_dropped;
353 skb_reserve(nskb, 1);
355 memcpy(nskb->data, rx_buff->data, len);
357 nskb = dev_alloc_skb(rx_buff->truesize);
358 if (unlikely(!nskb)) {
359 ++stir->stats.rx_dropped;
362 skb_reserve(nskb, 1);
365 rx_buff->head = nskb->data;
370 skb->mac.raw = skb->data;
371 skb->protocol = htons(ETH_P_IRDA);
372 skb->dev = stir->netdev;
376 stir->stats.rx_packets++;
377 stir->stats.rx_bytes += len;
379 rx_buff->data = rx_buff->head;
383 /* Unwrap FIR stuffed data and bump it to IrLAP */
384 static void stir_fir_chars(struct stir_cb *stir,
385 const __u8 *bytes, int len)
387 iobuff_t *rx_buff = &stir->rx_buff;
390 for (i = 0; i < len; i++) {
391 __u8 byte = bytes[i];
393 switch(rx_buff->state) {
395 /* ignore garbage till start of frame */
396 if (unlikely(byte != FIR_EOF))
398 /* Now receiving frame */
399 rx_buff->state = BEGIN_FRAME;
401 /* Time to initialize receive buffer */
402 rx_buff->data = rx_buff->head;
407 if (byte == FIR_EOF) {
408 pr_debug("%s: got EOF after escape\n",
412 rx_buff->state = INSIDE_FRAME;
417 /* ignore multiple BOF/EOF */
420 rx_buff->state = INSIDE_FRAME;
421 rx_buff->in_frame = TRUE;
427 rx_buff->state = LINK_ESCAPE;
430 /* 0x7f is not used in this framing */
431 pr_debug("%s: got XBOF without escape\n",
435 rx_buff->state = OUTSIDE_FRAME;
436 rx_buff->in_frame = FALSE;
443 /* add byte to rx buffer */
444 if (unlikely(rx_buff->len >= rx_buff->truesize)) {
445 pr_debug("%s: fir frame exceeds %d\n",
446 stir->netdev->name, rx_buff->truesize);
447 ++stir->stats.rx_over_errors;
451 rx_buff->data[rx_buff->len++] = byte;
455 ++stir->stats.rx_frame_errors;
458 ++stir->stats.rx_errors;
459 rx_buff->state = OUTSIDE_FRAME;
460 rx_buff->in_frame = FALSE;
464 /* Unwrap SIR stuffed data and bump it up to IrLAP */
465 static void stir_sir_chars(struct stir_cb *stir,
466 const __u8 *bytes, int len)
470 for (i = 0; i < len; i++)
471 async_unwrap_char(stir->netdev, &stir->stats,
472 &stir->rx_buff, bytes[i]);
475 static inline void unwrap_chars(struct stir_cb *stir,
476 const __u8 *bytes, int length)
478 if (isfir(stir->speed))
479 stir_fir_chars(stir, bytes, length);
481 stir_sir_chars(stir, bytes, length);
484 /* Mode parameters for each speed */
485 static const struct {
489 { 2400, PDCLK_2400 },
490 { 9600, PDCLK_9600 },
491 { 19200, PDCLK_19200 },
492 { 38400, PDCLK_38400 },
493 { 57600, PDCLK_57600 },
494 { 115200, PDCLK_115200 },
495 { 4000000, PDCLK_4000000 },
500 * Setup chip for speed.
501 * Called at startup to initialize the chip
502 * and on speed changes.
504 * Note: Write multiple registers doesn't appear to work
506 static int change_speed(struct stir_cb *stir, unsigned speed)
511 for (i = 0; i < ARRAY_SIZE(stir_modes); ++i) {
512 if (speed == stir_modes[i].speed)
516 warn("%s: invalid speed %d", stir->netdev->name, speed);
520 pr_debug("speed change from %d to %d\n", stir->speed, speed);
522 /* Reset modulator */
523 err = write_reg(stir, REG_CTRL1, CTRL1_SRESET);
527 /* Undocumented magic to tweak the DPLL */
528 err = write_reg(stir, REG_DPLL, 0x15);
533 err = write_reg(stir, REG_PDCLK, stir_modes[i].pdclk);
537 mode = MODE_NRESET | MODE_FASTRX;
539 mode |= MODE_FIR | MODE_FFRSTEN;
546 err = write_reg(stir, REG_MODE, mode);
550 /* This resets TEMIC style transceiver if any. */
551 err = write_reg(stir, REG_CTRL1,
552 CTRL1_SDMODE | (tx_power & 3) << 1);
556 err = write_reg(stir, REG_CTRL1, (tx_power & 3) << 1);
560 /* Reset sensitivity */
561 err = write_reg(stir, REG_CTRL2, (rx_sensitivity & 7) << 5);
568 * Called from net/core when new frame is available.
570 static int stir_hard_xmit(struct sk_buff *skb, struct net_device *netdev)
572 struct stir_cb *stir = netdev_priv(netdev);
574 netif_stop_queue(netdev);
576 /* the IRDA wrapping routines don't deal with non linear skb */
577 SKB_LINEAR_ASSERT(skb);
579 skb = xchg(&stir->tx_pending, skb);
580 wake_up(&stir->thr_wait);
582 /* this should never happen unless stop/wakeup problem */
592 * Wait for the transmit FIFO to have space for next data
594 * If space < 0 then wait till FIFO completely drains.
595 * FYI: can take up to 13 seconds at 2400baud.
597 static int fifo_txwait(struct stir_cb *stir, int space)
600 unsigned long count, status;
602 /* Read FIFO status and count */
604 err = read_reg(stir, REG_FIFOCTL, stir->fifo_status,
606 if (unlikely(err != FIFO_REGS_SIZE)) {
607 warn("%s: FIFO register read error: %d",
608 stir->netdev->name, err);
613 status = stir->fifo_status[0];
614 count = (unsigned)(stir->fifo_status[2] & 0x1f) << 8
615 | stir->fifo_status[1];
617 pr_debug("fifo status 0x%lx count %lu\n", status, count);
619 /* error when receive/transmit fifo gets confused */
620 if (status & FIFOCTL_RXERR) {
621 stir->stats.rx_fifo_errors++;
622 stir->stats.rx_errors++;
626 if (status & FIFOCTL_TXERR) {
627 stir->stats.tx_fifo_errors++;
628 stir->stats.tx_errors++;
632 /* is fifo receiving already, or empty */
633 if (!(status & FIFOCTL_DIR)
634 || (status & FIFOCTL_EMPTY))
637 if (signal_pending(current))
641 if (!netif_running(stir->netdev)
642 || !netif_device_present(stir->netdev))
645 /* only waiting for some space */
646 if (space >= 0 && STIR_FIFO_SIZE - 4 > space + count)
649 /* estimate transfer time for remaining chars */
650 msleep((count * 8000) / stir->speed);
653 err = write_reg(stir, REG_FIFOCTL, FIFOCTL_CLR);
656 err = write_reg(stir, REG_FIFOCTL, 0);
664 /* Wait for turnaround delay before starting transmit. */
665 static void turnaround_delay(const struct stir_cb *stir, long us)
673 do_gettimeofday(&now);
674 if (now.tv_sec - stir->rx_time.tv_sec > 0)
676 us -= now.tv_usec - stir->rx_time.tv_usec;
680 ticks = us / (1000000 / HZ);
682 current->state = TASK_INTERRUPTIBLE;
683 schedule_timeout(1 + ticks);
689 * Start receiver by submitting a request to the receive pipe.
690 * If nothing is available it will return after rx_interval.
692 static int receive_start(struct stir_cb *stir)
697 stir->rx_buff.in_frame = FALSE;
698 stir->rx_buff.state = OUTSIDE_FRAME;
700 stir->rx_urb->status = 0;
701 return usb_submit_urb(stir->rx_urb, GFP_KERNEL);
704 /* Stop all pending receive Urb's */
705 static void receive_stop(struct stir_cb *stir)
708 usb_kill_urb(stir->rx_urb);
710 if (stir->rx_buff.in_frame)
711 stir->stats.collisions++;
714 * Wrap data in socket buffer and send it.
716 static void stir_send(struct stir_cb *stir, struct sk_buff *skb)
721 /* if receiving, need to turnaround */
722 if (stir->receiving) {
724 turnaround_delay(stir, irda_get_mtt(skb));
728 if (isfir(stir->speed))
729 wraplen = wrap_fir_skb(skb, stir->io_buf);
731 wraplen = wrap_sir_skb(skb, stir->io_buf);
733 /* check for space available in fifo */
735 fifo_txwait(stir, wraplen);
737 stir->stats.tx_packets++;
738 stir->stats.tx_bytes += skb->len;
739 stir->netdev->trans_start = jiffies;
740 pr_debug("send %d (%d)\n", skb->len, wraplen);
742 if (usb_bulk_msg(stir->usbdev, usb_sndbulkpipe(stir->usbdev, 1),
743 stir->io_buf, wraplen,
744 NULL, TRANSMIT_TIMEOUT))
745 stir->stats.tx_errors++;
749 * Transmit state machine thread
751 static int stir_transmit_thread(void *arg)
753 struct stir_cb *stir = arg;
754 struct net_device *dev = stir->netdev;
757 daemonize("%s", dev->name);
758 allow_signal(SIGTERM);
760 while (netif_running(dev)
761 && netif_device_present(dev)
762 && !signal_pending(current))
765 /* if suspending, then power off and wait */
766 if (unlikely(freezing(current))) {
770 fifo_txwait(stir, -1);
772 write_reg(stir, REG_CTRL1, CTRL1_TXPWD|CTRL1_RXPWD);
776 if (change_speed(stir, stir->speed))
781 /* if something to send? */
782 skb = xchg(&stir->tx_pending, NULL);
784 unsigned new_speed = irda_get_next_speed(skb);
785 netif_wake_queue(dev);
788 stir_send(stir, skb);
791 if ((new_speed != -1) && (stir->speed != new_speed)) {
792 if (fifo_txwait(stir, -1) ||
793 change_speed(stir, new_speed))
799 /* nothing to send? start receiving */
801 && irda_device_txqueue_empty(dev)) {
802 /* Wait otherwise chip gets confused. */
803 if (fifo_txwait(stir, -1))
806 if (unlikely(receive_start(stir))) {
808 info("%s: receive usb submit failed",
816 /* sleep if nothing to send */
817 wait_event_interruptible(stir->thr_wait, stir->tx_pending);
820 complete_and_exit (&stir->thr_exited, 0);
825 * USB bulk receive completion callback.
826 * Wakes up every ms (usb round trip) with wrapped
829 static void stir_rcv_irq(struct urb *urb, struct pt_regs *regs)
831 struct stir_cb *stir = urb->context;
834 /* in process of stopping, just drop data */
835 if (!netif_running(stir->netdev))
838 /* unlink, shutdown, unplug, other nasties */
839 if (urb->status != 0)
842 if (urb->actual_length > 0) {
843 pr_debug("receive %d\n", urb->actual_length);
844 unwrap_chars(stir, urb->transfer_buffer,
847 stir->netdev->last_rx = jiffies;
848 do_gettimeofday(&stir->rx_time);
851 /* kernel thread is stopping receiver don't resubmit */
852 if (!stir->receiving)
855 /* resubmit existing urb */
856 err = usb_submit_urb(urb, GFP_ATOMIC);
858 /* in case of error, the kernel thread will restart us */
860 warn("%s: usb receive submit error: %d",
861 stir->netdev->name, err);
863 wake_up(&stir->thr_wait);
868 * Function stir_net_open (dev)
870 * Network device is taken up. Usually this is done by "ifconfig irda0 up"
872 static int stir_net_open(struct net_device *netdev)
874 struct stir_cb *stir = netdev_priv(netdev);
878 err = usb_clear_halt(stir->usbdev, usb_sndbulkpipe(stir->usbdev, 1));
881 err = usb_clear_halt(stir->usbdev, usb_rcvbulkpipe(stir->usbdev, 2));
885 err = change_speed(stir, 9600);
891 /* Initialize for SIR/FIR to copy data directly into skb. */
893 stir->rx_buff.truesize = IRDA_SKB_MAX_MTU;
894 stir->rx_buff.skb = dev_alloc_skb(IRDA_SKB_MAX_MTU);
895 if (!stir->rx_buff.skb)
898 skb_reserve(stir->rx_buff.skb, 1);
899 stir->rx_buff.head = stir->rx_buff.skb->data;
900 do_gettimeofday(&stir->rx_time);
902 stir->rx_urb = usb_alloc_urb(0, GFP_KERNEL);
906 stir->io_buf = kmalloc(STIR_FIFO_SIZE, GFP_KERNEL);
910 usb_fill_bulk_urb(stir->rx_urb, stir->usbdev,
911 usb_rcvbulkpipe(stir->usbdev, 2),
912 stir->io_buf, STIR_FIFO_SIZE,
915 stir->fifo_status = kmalloc(FIFO_REGS_SIZE, GFP_KERNEL);
916 if (!stir->fifo_status)
920 * Now that everything should be initialized properly,
921 * Open new IrLAP layer instance to take care of us...
922 * Note : will send immediately a speed change...
924 sprintf(hwname, "usb#%d", stir->usbdev->devnum);
925 stir->irlap = irlap_open(netdev, &stir->qos, hwname);
927 err("stir4200: irlap_open failed");
931 /** Start kernel thread for transmit. */
932 stir->thr_pid = kernel_thread(stir_transmit_thread, stir,
933 CLONE_FS|CLONE_FILES);
934 if (stir->thr_pid < 0) {
936 err("stir4200: unable to start kernel thread");
940 netif_start_queue(netdev);
945 irlap_close(stir->irlap);
947 kfree(stir->fifo_status);
951 usb_free_urb(stir->rx_urb);
953 kfree_skb(stir->rx_buff.skb);
959 * Function stir_net_close (stir)
961 * Network device is taken down. Usually this is done by
962 * "ifconfig irda0 down"
964 static int stir_net_close(struct net_device *netdev)
966 struct stir_cb *stir = netdev_priv(netdev);
968 /* Stop transmit processing */
969 netif_stop_queue(netdev);
971 /* Kill transmit thread */
972 kill_proc(stir->thr_pid, SIGTERM, 1);
973 wait_for_completion(&stir->thr_exited);
974 kfree(stir->fifo_status);
976 /* Mop up receive urb's */
977 usb_kill_urb(stir->rx_urb);
980 usb_free_urb(stir->rx_urb);
981 kfree_skb(stir->rx_buff.skb);
983 /* Stop and remove instance of IrLAP */
985 irlap_close(stir->irlap);
993 * IOCTLs : Extra out-of-band network commands...
995 static int stir_net_ioctl(struct net_device *netdev, struct ifreq *rq, int cmd)
997 struct if_irda_req *irq = (struct if_irda_req *) rq;
998 struct stir_cb *stir = netdev_priv(netdev);
1002 case SIOCSBANDWIDTH: /* Set bandwidth */
1003 if (!capable(CAP_NET_ADMIN))
1006 /* Check if the device is still there */
1007 if (netif_device_present(stir->netdev))
1008 ret = change_speed(stir, irq->ifr_baudrate);
1011 case SIOCSMEDIABUSY: /* Set media busy */
1012 if (!capable(CAP_NET_ADMIN))
1015 /* Check if the IrDA stack is still there */
1016 if (netif_running(stir->netdev))
1017 irda_device_set_media_busy(stir->netdev, TRUE);
1020 case SIOCGRECEIVING:
1021 /* Only approximately true */
1022 irq->ifr_receiving = stir->receiving;
1033 * Get device stats (for /proc/net/dev and ifconfig)
1035 static struct net_device_stats *stir_net_get_stats(struct net_device *netdev)
1037 struct stir_cb *stir = netdev_priv(netdev);
1038 return &stir->stats;
1042 * This routine is called by the USB subsystem for each new device
1043 * in the system. We need to check if the device is ours, and in
1044 * this case start handling it.
1045 * Note : it might be worth protecting this function by a global
1046 * spinlock... Or not, because maybe USB already deal with that...
1048 static int stir_probe(struct usb_interface *intf,
1049 const struct usb_device_id *id)
1051 struct usb_device *dev = interface_to_usbdev(intf);
1052 struct stir_cb *stir = NULL;
1053 struct net_device *net;
1056 /* Allocate network device container. */
1057 net = alloc_irdadev(sizeof(*stir));
1061 SET_MODULE_OWNER(net);
1062 SET_NETDEV_DEV(net, &intf->dev);
1063 stir = netdev_priv(net);
1067 ret = usb_reset_configuration(dev);
1069 err("stir4200: usb reset configuration failed");
1073 printk(KERN_INFO "SigmaTel STIr4200 IRDA/USB found at address %d, "
1074 "Vendor: %x, Product: %x\n",
1075 dev->devnum, le16_to_cpu(dev->descriptor.idVendor),
1076 le16_to_cpu(dev->descriptor.idProduct));
1078 /* Initialize QoS for this device */
1079 irda_init_max_qos_capabilies(&stir->qos);
1081 /* That's the Rx capability. */
1082 stir->qos.baud_rate.bits &= IR_2400 | IR_9600 | IR_19200 |
1083 IR_38400 | IR_57600 | IR_115200 |
1085 stir->qos.min_turn_time.bits &= qos_mtt_bits;
1086 irda_qos_bits_to_value(&stir->qos);
1088 init_completion (&stir->thr_exited);
1089 init_waitqueue_head (&stir->thr_wait);
1091 /* Override the network functions we need to use */
1092 net->hard_start_xmit = stir_hard_xmit;
1093 net->open = stir_net_open;
1094 net->stop = stir_net_close;
1095 net->get_stats = stir_net_get_stats;
1096 net->do_ioctl = stir_net_ioctl;
1098 ret = register_netdev(net);
1102 info("IrDA: Registered SigmaTel device %s", net->name);
1104 usb_set_intfdata(intf, stir);
1115 * The current device is removed, the USB layer tell us to shut it down...
1117 static void stir_disconnect(struct usb_interface *intf)
1119 struct stir_cb *stir = usb_get_intfdata(intf);
1124 unregister_netdev(stir->netdev);
1125 free_netdev(stir->netdev);
1127 usb_set_intfdata(intf, NULL);
1131 /* USB suspend, so power off the transmitter/receiver */
1132 static int stir_suspend(struct usb_interface *intf, pm_message_t message)
1134 struct stir_cb *stir = usb_get_intfdata(intf);
1136 netif_device_detach(stir->netdev);
1140 /* Coming out of suspend, so reset hardware */
1141 static int stir_resume(struct usb_interface *intf)
1143 struct stir_cb *stir = usb_get_intfdata(intf);
1145 netif_device_attach(stir->netdev);
1147 /* receiver restarted when send thread wakes up */
1153 * USB device callbacks
1155 static struct usb_driver irda_driver = {
1156 .owner = THIS_MODULE,
1158 .probe = stir_probe,
1159 .disconnect = stir_disconnect,
1160 .id_table = dongles,
1162 .suspend = stir_suspend,
1163 .resume = stir_resume,
1170 static int __init stir_init(void)
1172 return usb_register(&irda_driver);
1174 module_init(stir_init);
1179 static void __exit stir_cleanup(void)
1181 /* Deregister the driver and remove all pending instances */
1182 usb_deregister(&irda_driver);
1184 module_exit(stir_cleanup);