2 * Driver for ST5481 USB ISDN modem
5 * Copyright 2001 by Frode Isaksen <fisaksen@bewan.com>
6 * 2001 by Kai Germaschewski <kai.germaschewski@gmx.de>
8 * This software may be used and distributed according to the terms
9 * of the GNU General Public License, incorporated herein by reference.
17 * hotplug / unregister issues
18 * mod_inc/dec_use_count
19 * unify parts of d/b channel usb handling
21 * avoid copy to isoc buffer?
23 * merge l1 state machines?
27 #include <linux/config.h>
28 #include <linux/module.h>
29 #include <linux/init.h>
30 #include <linux/usb.h>
31 #include <linux/slab.h>
34 MODULE_DESCRIPTION("ISDN4Linux: driver for ST5481 USB ISDN adapter");
35 MODULE_AUTHOR("Frode Isaksen");
36 MODULE_LICENSE("GPL");
38 static int protocol = 2; /* EURO-ISDN Default */
39 module_param(protocol, int, 0);
41 static int number_of_leds = 2; /* 2 LEDs on the adpater default */
42 module_param(number_of_leds, int, 0);
44 #ifdef CONFIG_HISAX_DEBUG
46 module_param(debug, int, 0);
50 static LIST_HEAD(adapter_list);
52 /* ======================================================================
53 * registration/deregistration with the USB layer
57 * This function will be called when the adapter is plugged
60 static int probe_st5481(struct usb_interface *intf,
61 const struct usb_device_id *id)
63 struct usb_device *dev = interface_to_usbdev(intf);
64 struct st5481_adapter *adapter;
65 struct hisax_b_if *b_if[2];
68 printk(KERN_INFO "st541: found adapter VendorId %04x, ProductId %04x, LEDs %d\n",
69 le16_to_cpu(dev->descriptor.idVendor),
70 le16_to_cpu(dev->descriptor.idProduct),
73 adapter = kmalloc(sizeof(struct st5481_adapter), GFP_KERNEL);
77 memset(adapter, 0, sizeof(struct st5481_adapter));
79 adapter->number_of_leds = number_of_leds;
80 adapter->usb_dev = dev;
82 adapter->hisax_d_if.owner = THIS_MODULE;
83 adapter->hisax_d_if.ifc.priv = adapter;
84 adapter->hisax_d_if.ifc.l2l1 = st5481_d_l2l1;
86 for (i = 0; i < 2; i++) {
87 adapter->bcs[i].adapter = adapter;
88 adapter->bcs[i].channel = i;
89 adapter->bcs[i].b_if.ifc.priv = &adapter->bcs[i];
90 adapter->bcs[i].b_if.ifc.l2l1 = st5481_b_l2l1;
92 list_add(&adapter->list, &adapter_list);
94 retval = st5481_setup_usb(adapter);
98 retval = st5481_setup_d(adapter);
102 retval = st5481_setup_b(&adapter->bcs[0]);
106 retval = st5481_setup_b(&adapter->bcs[1]);
110 for (i = 0; i < 2; i++)
111 b_if[i] = &adapter->bcs[i].b_if;
113 hisax_register(&adapter->hisax_d_if, b_if, "st5481_usb", protocol);
114 st5481_start(adapter);
116 usb_set_intfdata(intf, adapter);
120 st5481_release_b(&adapter->bcs[0]);
122 st5481_release_d(adapter);
124 st5481_release_usb(adapter);
130 * This function will be called when the adapter is removed
133 static void disconnect_st5481(struct usb_interface *intf)
135 struct st5481_adapter *adapter = usb_get_intfdata(intf);
139 usb_set_intfdata(intf, NULL);
143 list_del(&adapter->list);
145 st5481_stop(adapter);
146 st5481_release_b(&adapter->bcs[1]);
147 st5481_release_b(&adapter->bcs[0]);
148 st5481_release_d(adapter);
149 // we would actually better wait for completion of outstanding urbs
151 st5481_release_usb(adapter);
153 hisax_unregister(&adapter->hisax_d_if);
159 * The last 4 bits in the Product Id is set with 4 pins on the chip.
161 static struct usb_device_id st5481_ids[] = {
162 { USB_DEVICE(ST_VENDOR_ID, ST5481_PRODUCT_ID+0x0) },
163 { USB_DEVICE(ST_VENDOR_ID, ST5481_PRODUCT_ID+0x1) },
164 { USB_DEVICE(ST_VENDOR_ID, ST5481_PRODUCT_ID+0x2) },
165 { USB_DEVICE(ST_VENDOR_ID, ST5481_PRODUCT_ID+0x3) },
166 { USB_DEVICE(ST_VENDOR_ID, ST5481_PRODUCT_ID+0x4) },
167 { USB_DEVICE(ST_VENDOR_ID, ST5481_PRODUCT_ID+0x5) },
168 { USB_DEVICE(ST_VENDOR_ID, ST5481_PRODUCT_ID+0x6) },
169 { USB_DEVICE(ST_VENDOR_ID, ST5481_PRODUCT_ID+0x7) },
170 { USB_DEVICE(ST_VENDOR_ID, ST5481_PRODUCT_ID+0x8) },
171 { USB_DEVICE(ST_VENDOR_ID, ST5481_PRODUCT_ID+0x9) },
172 { USB_DEVICE(ST_VENDOR_ID, ST5481_PRODUCT_ID+0xA) },
173 { USB_DEVICE(ST_VENDOR_ID, ST5481_PRODUCT_ID+0xB) },
174 { USB_DEVICE(ST_VENDOR_ID, ST5481_PRODUCT_ID+0xC) },
175 { USB_DEVICE(ST_VENDOR_ID, ST5481_PRODUCT_ID+0xD) },
176 { USB_DEVICE(ST_VENDOR_ID, ST5481_PRODUCT_ID+0xE) },
177 { USB_DEVICE(ST_VENDOR_ID, ST5481_PRODUCT_ID+0xF) },
180 MODULE_DEVICE_TABLE (usb, st5481_ids);
182 static struct usb_driver st5481_usb_driver = {
183 .owner = THIS_MODULE,
184 .name = "st5481_usb",
185 .probe = probe_st5481,
186 .disconnect = disconnect_st5481,
187 .id_table = st5481_ids,
190 static int __init st5481_usb_init(void)
194 #ifdef CONFIG_HISAX_DEBUG
195 st5481_debug = debug;
198 printk(KERN_INFO "hisax_st5481: ST5481 USB ISDN driver $Revision: 2.4.2.3 $\n");
200 retval = st5481_d_init();
204 retval = usb_register(&st5481_usb_driver);
216 static void __exit st5481_usb_exit(void)
218 usb_deregister(&st5481_usb_driver);
222 module_init(st5481_usb_init);
223 module_exit(st5481_usb_exit);