Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 1 | /* |
| 2 | * USB driver for Gigaset 307x base via direct USB connection. |
| 3 | * |
| 4 | * Copyright (c) 2001 by Hansjoerg Lipp <hjlipp@web.de>, |
| 5 | * Tilman Schmidt <tilman@imap.cc>, |
Tilman Schmidt | 70440cf | 2006-04-10 22:55:14 -0700 | [diff] [blame] | 6 | * Stefan Eilers. |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 7 | * |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 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 as |
| 11 | * published by the Free Software Foundation; either version 2 of |
| 12 | * the License, or (at your option) any later version. |
| 13 | * ===================================================================== |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 14 | */ |
| 15 | |
| 16 | #include "gigaset.h" |
| 17 | |
| 18 | #include <linux/errno.h> |
| 19 | #include <linux/init.h> |
| 20 | #include <linux/slab.h> |
| 21 | #include <linux/timer.h> |
| 22 | #include <linux/usb.h> |
| 23 | #include <linux/module.h> |
| 24 | #include <linux/moduleparam.h> |
| 25 | |
| 26 | /* Version Information */ |
Tilman Schmidt | 70440cf | 2006-04-10 22:55:14 -0700 | [diff] [blame] | 27 | #define DRIVER_AUTHOR "Tilman Schmidt <tilman@imap.cc>, Hansjoerg Lipp <hjlipp@web.de>, Stefan Eilers" |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 28 | #define DRIVER_DESC "USB Driver for Gigaset 307x" |
| 29 | |
| 30 | |
| 31 | /* Module parameters */ |
| 32 | |
| 33 | static int startmode = SM_ISDN; |
| 34 | static int cidmode = 1; |
| 35 | |
| 36 | module_param(startmode, int, S_IRUGO); |
| 37 | module_param(cidmode, int, S_IRUGO); |
| 38 | MODULE_PARM_DESC(startmode, "start in isdn4linux mode"); |
| 39 | MODULE_PARM_DESC(cidmode, "Call-ID mode"); |
| 40 | |
| 41 | #define GIGASET_MINORS 1 |
| 42 | #define GIGASET_MINOR 16 |
| 43 | #define GIGASET_MODULENAME "bas_gigaset" |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 44 | #define GIGASET_DEVNAME "ttyGB" |
| 45 | |
Tilman Schmidt | 73a8881 | 2006-04-22 02:35:30 -0700 | [diff] [blame] | 46 | /* length limit according to Siemens 3070usb-protokoll.doc ch. 2.1 */ |
| 47 | #define IF_WRITEBUF 264 |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 48 | |
| 49 | /* Values for the Gigaset 307x */ |
| 50 | #define USB_GIGA_VENDOR_ID 0x0681 |
Tilman Schmidt | 73a8881 | 2006-04-22 02:35:30 -0700 | [diff] [blame] | 51 | #define USB_3070_PRODUCT_ID 0x0001 |
| 52 | #define USB_3075_PRODUCT_ID 0x0002 |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 53 | #define USB_SX303_PRODUCT_ID 0x0021 |
| 54 | #define USB_SX353_PRODUCT_ID 0x0022 |
| 55 | |
| 56 | /* table of devices that work with this driver */ |
Tilman Schmidt | 35dc845 | 2007-03-29 01:20:34 -0700 | [diff] [blame] | 57 | static const struct usb_device_id gigaset_table [] = { |
Tilman Schmidt | 73a8881 | 2006-04-22 02:35:30 -0700 | [diff] [blame] | 58 | { USB_DEVICE(USB_GIGA_VENDOR_ID, USB_3070_PRODUCT_ID) }, |
| 59 | { USB_DEVICE(USB_GIGA_VENDOR_ID, USB_3075_PRODUCT_ID) }, |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 60 | { USB_DEVICE(USB_GIGA_VENDOR_ID, USB_SX303_PRODUCT_ID) }, |
| 61 | { USB_DEVICE(USB_GIGA_VENDOR_ID, USB_SX353_PRODUCT_ID) }, |
| 62 | { } /* Terminating entry */ |
| 63 | }; |
| 64 | |
| 65 | MODULE_DEVICE_TABLE(usb, gigaset_table); |
| 66 | |
Tilman Schmidt | 06163f8 | 2006-06-26 00:25:33 -0700 | [diff] [blame] | 67 | /*======================= local function prototypes ==========================*/ |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 68 | |
Tilman Schmidt | 06163f8 | 2006-06-26 00:25:33 -0700 | [diff] [blame] | 69 | /* function called if a new device belonging to this driver is connected */ |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 70 | static int gigaset_probe(struct usb_interface *interface, |
| 71 | const struct usb_device_id *id); |
| 72 | |
| 73 | /* Function will be called if the device is unplugged */ |
| 74 | static void gigaset_disconnect(struct usb_interface *interface); |
| 75 | |
Tilman Schmidt | 06163f8 | 2006-06-26 00:25:33 -0700 | [diff] [blame] | 76 | static int atread_submit(struct cardstate *, int); |
Tilman Schmidt | 73a8881 | 2006-04-22 02:35:30 -0700 | [diff] [blame] | 77 | static void stopurbs(struct bas_bc_state *); |
Tilman Schmidt | 06163f8 | 2006-06-26 00:25:33 -0700 | [diff] [blame] | 78 | static int req_submit(struct bc_state *, int, int, int); |
Tilman Schmidt | 73a8881 | 2006-04-22 02:35:30 -0700 | [diff] [blame] | 79 | static int atwrite_submit(struct cardstate *, unsigned char *, int); |
| 80 | static int start_cbsend(struct cardstate *); |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 81 | |
Tilman Schmidt | 06163f8 | 2006-06-26 00:25:33 -0700 | [diff] [blame] | 82 | /*============================================================================*/ |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 83 | |
| 84 | struct bas_cardstate { |
Tilman Schmidt | 784d585 | 2006-04-10 22:55:04 -0700 | [diff] [blame] | 85 | struct usb_device *udev; /* USB device pointer */ |
| 86 | struct usb_interface *interface; /* interface for this device */ |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 87 | unsigned char minor; /* starting minor number */ |
| 88 | |
Tilman Schmidt | 784d585 | 2006-04-10 22:55:04 -0700 | [diff] [blame] | 89 | struct urb *urb_ctrl; /* control pipe default URB */ |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 90 | struct usb_ctrlrequest dr_ctrl; |
| 91 | struct timer_list timer_ctrl; /* control request timeout */ |
Tilman Schmidt | 06163f8 | 2006-06-26 00:25:33 -0700 | [diff] [blame] | 92 | int retry_ctrl; |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 93 | |
| 94 | struct timer_list timer_atrdy; /* AT command ready timeout */ |
Tilman Schmidt | 784d585 | 2006-04-10 22:55:04 -0700 | [diff] [blame] | 95 | struct urb *urb_cmd_out; /* for sending AT commands */ |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 96 | struct usb_ctrlrequest dr_cmd_out; |
| 97 | int retry_cmd_out; |
| 98 | |
Tilman Schmidt | 784d585 | 2006-04-10 22:55:04 -0700 | [diff] [blame] | 99 | struct urb *urb_cmd_in; /* for receiving AT replies */ |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 100 | struct usb_ctrlrequest dr_cmd_in; |
| 101 | struct timer_list timer_cmd_in; /* receive request timeout */ |
Tilman Schmidt | 784d585 | 2006-04-10 22:55:04 -0700 | [diff] [blame] | 102 | unsigned char *rcvbuf; /* AT reply receive buffer */ |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 103 | |
Tilman Schmidt | 784d585 | 2006-04-10 22:55:04 -0700 | [diff] [blame] | 104 | struct urb *urb_int_in; /* URB for interrupt pipe */ |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 105 | unsigned char int_in_buf[3]; |
| 106 | |
| 107 | spinlock_t lock; /* locks all following */ |
| 108 | atomic_t basstate; /* bitmap (BS_*) */ |
| 109 | int pending; /* uncompleted base request */ |
| 110 | int rcvbuf_size; /* size of AT receive buffer */ |
| 111 | /* 0: no receive in progress */ |
| 112 | int retry_cmd_in; /* receive req retry count */ |
| 113 | }; |
| 114 | |
| 115 | /* status of direct USB connection to 307x base (bits in basstate) */ |
Tilman Schmidt | 73a8881 | 2006-04-22 02:35:30 -0700 | [diff] [blame] | 116 | #define BS_ATOPEN 0x001 /* AT channel open */ |
| 117 | #define BS_B1OPEN 0x002 /* B channel 1 open */ |
| 118 | #define BS_B2OPEN 0x004 /* B channel 2 open */ |
| 119 | #define BS_ATREADY 0x008 /* base ready for AT command */ |
| 120 | #define BS_INIT 0x010 /* base has signalled INIT_OK */ |
| 121 | #define BS_ATTIMER 0x020 /* waiting for HD_READY_SEND_ATDATA */ |
| 122 | #define BS_ATRDPEND 0x040 /* urb_cmd_in in use */ |
| 123 | #define BS_ATWRPEND 0x080 /* urb_cmd_out in use */ |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 124 | |
| 125 | |
| 126 | static struct gigaset_driver *driver = NULL; |
| 127 | static struct cardstate *cardstate = NULL; |
| 128 | |
| 129 | /* usb specific object needed to register this driver with the usb subsystem */ |
| 130 | static struct usb_driver gigaset_usb_driver = { |
| 131 | .name = GIGASET_MODULENAME, |
| 132 | .probe = gigaset_probe, |
| 133 | .disconnect = gigaset_disconnect, |
| 134 | .id_table = gigaset_table, |
| 135 | }; |
| 136 | |
Tilman Schmidt | 73a8881 | 2006-04-22 02:35:30 -0700 | [diff] [blame] | 137 | /* get message text for usb_submit_urb return code |
| 138 | */ |
| 139 | static char *get_usb_rcmsg(int rc) |
| 140 | { |
| 141 | static char unkmsg[28]; |
| 142 | |
| 143 | switch (rc) { |
| 144 | case 0: |
| 145 | return "success"; |
| 146 | case -ENOMEM: |
| 147 | return "out of memory"; |
| 148 | case -ENODEV: |
| 149 | return "device not present"; |
| 150 | case -ENOENT: |
| 151 | return "endpoint not present"; |
| 152 | case -ENXIO: |
| 153 | return "URB type not supported"; |
| 154 | case -EINVAL: |
| 155 | return "invalid argument"; |
| 156 | case -EAGAIN: |
| 157 | return "start frame too early or too much scheduled"; |
| 158 | case -EFBIG: |
| 159 | return "too many isochronous frames requested"; |
| 160 | case -EPIPE: |
| 161 | return "endpoint stalled"; |
| 162 | case -EMSGSIZE: |
| 163 | return "invalid packet size"; |
| 164 | case -ENOSPC: |
| 165 | return "would overcommit USB bandwidth"; |
| 166 | case -ESHUTDOWN: |
| 167 | return "device shut down"; |
| 168 | case -EPERM: |
| 169 | return "reject flag set"; |
| 170 | case -EHOSTUNREACH: |
| 171 | return "device suspended"; |
| 172 | default: |
| 173 | snprintf(unkmsg, sizeof(unkmsg), "unknown error %d", rc); |
| 174 | return unkmsg; |
| 175 | } |
| 176 | } |
| 177 | |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 178 | /* get message text for USB status code |
| 179 | */ |
| 180 | static char *get_usb_statmsg(int status) |
| 181 | { |
| 182 | static char unkmsg[28]; |
| 183 | |
| 184 | switch (status) { |
| 185 | case 0: |
| 186 | return "success"; |
| 187 | case -ENOENT: |
Tilman Schmidt | 73a8881 | 2006-04-22 02:35:30 -0700 | [diff] [blame] | 188 | return "unlinked (sync)"; |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 189 | case -EINPROGRESS: |
| 190 | return "pending"; |
| 191 | case -EPROTO: |
Tilman Schmidt | 73a8881 | 2006-04-22 02:35:30 -0700 | [diff] [blame] | 192 | return "bit stuffing error, timeout, or unknown USB error"; |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 193 | case -EILSEQ: |
Tilman Schmidt | 73a8881 | 2006-04-22 02:35:30 -0700 | [diff] [blame] | 194 | return "CRC mismatch, timeout, or unknown USB error"; |
Pete Zaitcev | 38e2bfc | 2006-09-18 22:49:02 -0700 | [diff] [blame] | 195 | case -ETIME: |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 196 | return "timed out"; |
Tilman Schmidt | 73a8881 | 2006-04-22 02:35:30 -0700 | [diff] [blame] | 197 | case -EPIPE: |
| 198 | return "endpoint stalled"; |
| 199 | case -ECOMM: |
| 200 | return "IN buffer overrun"; |
| 201 | case -ENOSR: |
| 202 | return "OUT buffer underrun"; |
| 203 | case -EOVERFLOW: |
| 204 | return "too much data"; |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 205 | case -EREMOTEIO: |
| 206 | return "short packet detected"; |
Tilman Schmidt | 73a8881 | 2006-04-22 02:35:30 -0700 | [diff] [blame] | 207 | case -ENODEV: |
| 208 | return "device removed"; |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 209 | case -EXDEV: |
| 210 | return "partial isochronous transfer"; |
| 211 | case -EINVAL: |
| 212 | return "invalid argument"; |
Tilman Schmidt | 73a8881 | 2006-04-22 02:35:30 -0700 | [diff] [blame] | 213 | case -ECONNRESET: |
| 214 | return "unlinked (async)"; |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 215 | case -ESHUTDOWN: |
Tilman Schmidt | 73a8881 | 2006-04-22 02:35:30 -0700 | [diff] [blame] | 216 | return "device shut down"; |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 217 | default: |
Tilman Schmidt | 73a8881 | 2006-04-22 02:35:30 -0700 | [diff] [blame] | 218 | snprintf(unkmsg, sizeof(unkmsg), "unknown status %d", status); |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 219 | return unkmsg; |
| 220 | } |
| 221 | } |
| 222 | |
| 223 | /* usb_pipetype_str |
| 224 | * retrieve string representation of USB pipe type |
| 225 | */ |
| 226 | static inline char *usb_pipetype_str(int pipe) |
| 227 | { |
| 228 | if (usb_pipeisoc(pipe)) |
| 229 | return "Isoc"; |
| 230 | if (usb_pipeint(pipe)) |
| 231 | return "Int"; |
| 232 | if (usb_pipecontrol(pipe)) |
| 233 | return "Ctrl"; |
| 234 | if (usb_pipebulk(pipe)) |
| 235 | return "Bulk"; |
| 236 | return "?"; |
| 237 | } |
| 238 | |
| 239 | /* dump_urb |
| 240 | * write content of URB to syslog for debugging |
| 241 | */ |
| 242 | static inline void dump_urb(enum debuglevel level, const char *tag, |
Tilman Schmidt | 784d585 | 2006-04-10 22:55:04 -0700 | [diff] [blame] | 243 | struct urb *urb) |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 244 | { |
| 245 | #ifdef CONFIG_GIGASET_DEBUG |
| 246 | int i; |
Tilman Schmidt | 784d585 | 2006-04-10 22:55:04 -0700 | [diff] [blame] | 247 | gig_dbg(level, "%s urb(0x%08lx)->{", tag, (unsigned long) urb); |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 248 | if (urb) { |
Tilman Schmidt | 784d585 | 2006-04-10 22:55:04 -0700 | [diff] [blame] | 249 | gig_dbg(level, |
| 250 | " dev=0x%08lx, pipe=%s:EP%d/DV%d:%s, " |
| 251 | "status=%d, hcpriv=0x%08lx, transfer_flags=0x%x,", |
| 252 | (unsigned long) urb->dev, |
| 253 | usb_pipetype_str(urb->pipe), |
| 254 | usb_pipeendpoint(urb->pipe), usb_pipedevice(urb->pipe), |
| 255 | usb_pipein(urb->pipe) ? "in" : "out", |
| 256 | urb->status, (unsigned long) urb->hcpriv, |
| 257 | urb->transfer_flags); |
| 258 | gig_dbg(level, |
| 259 | " transfer_buffer=0x%08lx[%d], actual_length=%d, " |
Andrew Morton | 249b061 | 2007-02-10 01:46:49 -0800 | [diff] [blame] | 260 | "setup_packet=0x%08lx,", |
Tilman Schmidt | 784d585 | 2006-04-10 22:55:04 -0700 | [diff] [blame] | 261 | (unsigned long) urb->transfer_buffer, |
| 262 | urb->transfer_buffer_length, urb->actual_length, |
Andrew Morton | 249b061 | 2007-02-10 01:46:49 -0800 | [diff] [blame] | 263 | (unsigned long) urb->setup_packet); |
Tilman Schmidt | 784d585 | 2006-04-10 22:55:04 -0700 | [diff] [blame] | 264 | gig_dbg(level, |
| 265 | " start_frame=%d, number_of_packets=%d, interval=%d, " |
| 266 | "error_count=%d,", |
| 267 | urb->start_frame, urb->number_of_packets, urb->interval, |
| 268 | urb->error_count); |
| 269 | gig_dbg(level, |
| 270 | " context=0x%08lx, complete=0x%08lx, " |
| 271 | "iso_frame_desc[]={", |
| 272 | (unsigned long) urb->context, |
| 273 | (unsigned long) urb->complete); |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 274 | for (i = 0; i < urb->number_of_packets; i++) { |
Tilman Schmidt | 917f508 | 2006-04-10 22:55:00 -0700 | [diff] [blame] | 275 | struct usb_iso_packet_descriptor *pifd |
| 276 | = &urb->iso_frame_desc[i]; |
Tilman Schmidt | 784d585 | 2006-04-10 22:55:04 -0700 | [diff] [blame] | 277 | gig_dbg(level, |
| 278 | " {offset=%u, length=%u, actual_length=%u, " |
| 279 | "status=%u}", |
| 280 | pifd->offset, pifd->length, pifd->actual_length, |
| 281 | pifd->status); |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 282 | } |
| 283 | } |
Tilman Schmidt | 784d585 | 2006-04-10 22:55:04 -0700 | [diff] [blame] | 284 | gig_dbg(level, "}}"); |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 285 | #endif |
| 286 | } |
| 287 | |
| 288 | /* read/set modem control bits etc. (m10x only) */ |
| 289 | static int gigaset_set_modem_ctrl(struct cardstate *cs, unsigned old_state, |
Tilman Schmidt | 784d585 | 2006-04-10 22:55:04 -0700 | [diff] [blame] | 290 | unsigned new_state) |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 291 | { |
| 292 | return -EINVAL; |
| 293 | } |
| 294 | |
| 295 | static int gigaset_baud_rate(struct cardstate *cs, unsigned cflag) |
| 296 | { |
| 297 | return -EINVAL; |
| 298 | } |
| 299 | |
| 300 | static int gigaset_set_line_ctrl(struct cardstate *cs, unsigned cflag) |
| 301 | { |
| 302 | return -EINVAL; |
| 303 | } |
| 304 | |
| 305 | /* error_hangup |
| 306 | * hang up any existing connection because of an unrecoverable error |
| 307 | * This function may be called from any context and takes care of scheduling |
| 308 | * the necessary actions for execution outside of interrupt context. |
Tilman Schmidt | 06163f8 | 2006-06-26 00:25:33 -0700 | [diff] [blame] | 309 | * cs->lock must not be held. |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 310 | * argument: |
| 311 | * B channel control structure |
| 312 | */ |
| 313 | static inline void error_hangup(struct bc_state *bcs) |
| 314 | { |
| 315 | struct cardstate *cs = bcs->cs; |
| 316 | |
Tilman Schmidt | 784d585 | 2006-04-10 22:55:04 -0700 | [diff] [blame] | 317 | gig_dbg(DEBUG_ANY, "%s: scheduling HUP for channel %d", |
| 318 | __func__, bcs->channel); |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 319 | |
Tilman Schmidt | 73a8881 | 2006-04-22 02:35:30 -0700 | [diff] [blame] | 320 | if (!gigaset_add_event(cs, &bcs->at_state, EV_HUP, NULL, 0, NULL)) |
| 321 | dev_err(cs->dev, "event queue full\n"); |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 322 | |
| 323 | gigaset_schedule_event(cs); |
| 324 | } |
| 325 | |
| 326 | /* error_reset |
| 327 | * reset Gigaset device because of an unrecoverable error |
Tilman Schmidt | 06163f8 | 2006-06-26 00:25:33 -0700 | [diff] [blame] | 328 | * This function may be called from any context, and takes care of |
Tilman Schmidt | 73a8881 | 2006-04-22 02:35:30 -0700 | [diff] [blame] | 329 | * scheduling the necessary actions for execution outside of interrupt context. |
Tilman Schmidt | 06163f8 | 2006-06-26 00:25:33 -0700 | [diff] [blame] | 330 | * cs->lock must not be held. |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 331 | * argument: |
| 332 | * controller state structure |
| 333 | */ |
| 334 | static inline void error_reset(struct cardstate *cs) |
| 335 | { |
Tilman Schmidt | 06163f8 | 2006-06-26 00:25:33 -0700 | [diff] [blame] | 336 | /* close AT command channel to recover (ignore errors) */ |
| 337 | req_submit(cs->bcs, HD_CLOSE_ATCHANNEL, 0, BAS_TIMEOUT); |
| 338 | |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 339 | //FIXME try to recover without bothering the user |
Tilman Schmidt | 784d585 | 2006-04-10 22:55:04 -0700 | [diff] [blame] | 340 | dev_err(cs->dev, |
| 341 | "unrecoverable error - please disconnect Gigaset base to reset\n"); |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 342 | } |
| 343 | |
| 344 | /* check_pending |
| 345 | * check for completion of pending control request |
| 346 | * parameter: |
Tilman Schmidt | 784d585 | 2006-04-10 22:55:04 -0700 | [diff] [blame] | 347 | * ucs hardware specific controller state structure |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 348 | */ |
| 349 | static void check_pending(struct bas_cardstate *ucs) |
| 350 | { |
| 351 | unsigned long flags; |
| 352 | |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 353 | spin_lock_irqsave(&ucs->lock, flags); |
| 354 | switch (ucs->pending) { |
| 355 | case 0: |
| 356 | break; |
| 357 | case HD_OPEN_ATCHANNEL: |
| 358 | if (atomic_read(&ucs->basstate) & BS_ATOPEN) |
| 359 | ucs->pending = 0; |
| 360 | break; |
| 361 | case HD_OPEN_B1CHANNEL: |
| 362 | if (atomic_read(&ucs->basstate) & BS_B1OPEN) |
| 363 | ucs->pending = 0; |
| 364 | break; |
| 365 | case HD_OPEN_B2CHANNEL: |
| 366 | if (atomic_read(&ucs->basstate) & BS_B2OPEN) |
| 367 | ucs->pending = 0; |
| 368 | break; |
| 369 | case HD_CLOSE_ATCHANNEL: |
| 370 | if (!(atomic_read(&ucs->basstate) & BS_ATOPEN)) |
| 371 | ucs->pending = 0; |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 372 | break; |
| 373 | case HD_CLOSE_B1CHANNEL: |
| 374 | if (!(atomic_read(&ucs->basstate) & BS_B1OPEN)) |
| 375 | ucs->pending = 0; |
| 376 | break; |
| 377 | case HD_CLOSE_B2CHANNEL: |
| 378 | if (!(atomic_read(&ucs->basstate) & BS_B2OPEN)) |
| 379 | ucs->pending = 0; |
| 380 | break; |
| 381 | case HD_DEVICE_INIT_ACK: /* no reply expected */ |
| 382 | ucs->pending = 0; |
| 383 | break; |
| 384 | /* HD_READ_ATMESSAGE, HD_WRITE_ATMESSAGE, HD_RESET_INTERRUPTPIPE |
| 385 | * are handled separately and should never end up here |
| 386 | */ |
| 387 | default: |
Tilman Schmidt | 784d585 | 2006-04-10 22:55:04 -0700 | [diff] [blame] | 388 | dev_warn(&ucs->interface->dev, |
| 389 | "unknown pending request 0x%02x cleared\n", |
| 390 | ucs->pending); |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 391 | ucs->pending = 0; |
| 392 | } |
| 393 | |
| 394 | if (!ucs->pending) |
| 395 | del_timer(&ucs->timer_ctrl); |
| 396 | |
| 397 | spin_unlock_irqrestore(&ucs->lock, flags); |
| 398 | } |
| 399 | |
| 400 | /* cmd_in_timeout |
| 401 | * timeout routine for command input request |
| 402 | * argument: |
| 403 | * controller state structure |
| 404 | */ |
| 405 | static void cmd_in_timeout(unsigned long data) |
| 406 | { |
| 407 | struct cardstate *cs = (struct cardstate *) data; |
Tilman Schmidt | d48c778 | 2006-04-10 22:55:08 -0700 | [diff] [blame] | 408 | struct bas_cardstate *ucs = cs->hw.bas; |
Tilman Schmidt | 06163f8 | 2006-06-26 00:25:33 -0700 | [diff] [blame] | 409 | int rc; |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 410 | |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 411 | if (!ucs->rcvbuf_size) { |
Tilman Schmidt | 784d585 | 2006-04-10 22:55:04 -0700 | [diff] [blame] | 412 | gig_dbg(DEBUG_USBREQ, "%s: no receive in progress", __func__); |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 413 | return; |
| 414 | } |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 415 | |
Tilman Schmidt | 06163f8 | 2006-06-26 00:25:33 -0700 | [diff] [blame] | 416 | if (ucs->retry_cmd_in++ < BAS_RETRY) { |
| 417 | dev_notice(cs->dev, "control read: timeout, retry %d\n", |
| 418 | ucs->retry_cmd_in); |
| 419 | rc = atread_submit(cs, BAS_TIMEOUT); |
| 420 | if (rc >= 0 || rc == -ENODEV) |
| 421 | /* resubmitted or disconnected */ |
| 422 | /* - bypass regular exit block */ |
| 423 | return; |
| 424 | } else { |
| 425 | dev_err(cs->dev, |
| 426 | "control read: timeout, giving up after %d tries\n", |
| 427 | ucs->retry_cmd_in); |
| 428 | } |
| 429 | kfree(ucs->rcvbuf); |
| 430 | ucs->rcvbuf = NULL; |
| 431 | ucs->rcvbuf_size = 0; |
| 432 | error_reset(cs); |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 433 | } |
| 434 | |
Tilman Schmidt | 73a8881 | 2006-04-22 02:35:30 -0700 | [diff] [blame] | 435 | /* set/clear bits in base connection state, return previous state |
| 436 | */ |
| 437 | inline static int update_basstate(struct bas_cardstate *ucs, |
| 438 | int set, int clear) |
| 439 | { |
| 440 | unsigned long flags; |
| 441 | int state; |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 442 | |
Tilman Schmidt | 73a8881 | 2006-04-22 02:35:30 -0700 | [diff] [blame] | 443 | spin_lock_irqsave(&ucs->lock, flags); |
| 444 | state = atomic_read(&ucs->basstate); |
| 445 | atomic_set(&ucs->basstate, (state & ~clear) | set); |
| 446 | spin_unlock_irqrestore(&ucs->lock, flags); |
| 447 | return state; |
| 448 | } |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 449 | |
Tilman Schmidt | 06163f8 | 2006-06-26 00:25:33 -0700 | [diff] [blame] | 450 | /* read_ctrl_callback |
| 451 | * USB completion handler for control pipe input |
| 452 | * called by the USB subsystem in interrupt context |
| 453 | * parameter: |
| 454 | * urb USB request block |
| 455 | * urb->context = inbuf structure for controller state |
| 456 | */ |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 457 | static void read_ctrl_callback(struct urb *urb) |
Tilman Schmidt | 06163f8 | 2006-06-26 00:25:33 -0700 | [diff] [blame] | 458 | { |
| 459 | struct inbuf_t *inbuf = urb->context; |
| 460 | struct cardstate *cs = inbuf->cs; |
| 461 | struct bas_cardstate *ucs = cs->hw.bas; |
| 462 | int have_data = 0; |
| 463 | unsigned numbytes; |
| 464 | int rc; |
| 465 | |
| 466 | update_basstate(ucs, 0, BS_ATRDPEND); |
| 467 | |
| 468 | if (!ucs->rcvbuf_size) { |
| 469 | dev_warn(cs->dev, "%s: no receive in progress\n", __func__); |
| 470 | return; |
| 471 | } |
| 472 | |
| 473 | del_timer(&ucs->timer_cmd_in); |
| 474 | |
| 475 | switch (urb->status) { |
| 476 | case 0: /* normal completion */ |
| 477 | numbytes = urb->actual_length; |
| 478 | if (unlikely(numbytes != ucs->rcvbuf_size)) { |
| 479 | dev_warn(cs->dev, |
| 480 | "control read: received %d chars, expected %d\n", |
| 481 | numbytes, ucs->rcvbuf_size); |
| 482 | if (numbytes > ucs->rcvbuf_size) |
| 483 | numbytes = ucs->rcvbuf_size; |
| 484 | } |
| 485 | |
| 486 | /* copy received bytes to inbuf */ |
| 487 | have_data = gigaset_fill_inbuf(inbuf, ucs->rcvbuf, numbytes); |
| 488 | |
| 489 | if (unlikely(numbytes < ucs->rcvbuf_size)) { |
| 490 | /* incomplete - resubmit for remaining bytes */ |
| 491 | ucs->rcvbuf_size -= numbytes; |
| 492 | ucs->retry_cmd_in = 0; |
| 493 | rc = atread_submit(cs, BAS_TIMEOUT); |
| 494 | if (rc >= 0 || rc == -ENODEV) |
| 495 | /* resubmitted or disconnected */ |
| 496 | /* - bypass regular exit block */ |
| 497 | return; |
| 498 | error_reset(cs); |
| 499 | } |
| 500 | break; |
| 501 | |
| 502 | case -ENOENT: /* cancelled */ |
| 503 | case -ECONNRESET: /* cancelled (async) */ |
| 504 | case -EINPROGRESS: /* pending */ |
| 505 | case -ENODEV: /* device removed */ |
| 506 | case -ESHUTDOWN: /* device shut down */ |
| 507 | /* no action necessary */ |
| 508 | gig_dbg(DEBUG_USBREQ, "%s: %s", |
| 509 | __func__, get_usb_statmsg(urb->status)); |
| 510 | break; |
| 511 | |
| 512 | default: /* severe trouble */ |
| 513 | dev_warn(cs->dev, "control read: %s\n", |
| 514 | get_usb_statmsg(urb->status)); |
| 515 | if (ucs->retry_cmd_in++ < BAS_RETRY) { |
| 516 | dev_notice(cs->dev, "control read: retry %d\n", |
| 517 | ucs->retry_cmd_in); |
| 518 | rc = atread_submit(cs, BAS_TIMEOUT); |
| 519 | if (rc >= 0 || rc == -ENODEV) |
| 520 | /* resubmitted or disconnected */ |
| 521 | /* - bypass regular exit block */ |
| 522 | return; |
| 523 | } else { |
| 524 | dev_err(cs->dev, |
| 525 | "control read: giving up after %d tries\n", |
| 526 | ucs->retry_cmd_in); |
| 527 | } |
| 528 | error_reset(cs); |
| 529 | } |
| 530 | |
| 531 | kfree(ucs->rcvbuf); |
| 532 | ucs->rcvbuf = NULL; |
| 533 | ucs->rcvbuf_size = 0; |
| 534 | if (have_data) { |
| 535 | gig_dbg(DEBUG_INTR, "%s-->BH", __func__); |
| 536 | gigaset_schedule_event(cs); |
| 537 | } |
| 538 | } |
| 539 | |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 540 | /* atread_submit |
Tilman Schmidt | 73a8881 | 2006-04-22 02:35:30 -0700 | [diff] [blame] | 541 | * submit an HD_READ_ATMESSAGE command URB and optionally start a timeout |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 542 | * parameters: |
| 543 | * cs controller state structure |
| 544 | * timeout timeout in 1/10 sec., 0: none |
| 545 | * return value: |
| 546 | * 0 on success |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 547 | * -EBUSY if another request is pending |
| 548 | * any URB submission error code |
| 549 | */ |
| 550 | static int atread_submit(struct cardstate *cs, int timeout) |
| 551 | { |
Tilman Schmidt | d48c778 | 2006-04-10 22:55:08 -0700 | [diff] [blame] | 552 | struct bas_cardstate *ucs = cs->hw.bas; |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 553 | int ret; |
| 554 | |
Tilman Schmidt | 784d585 | 2006-04-10 22:55:04 -0700 | [diff] [blame] | 555 | gig_dbg(DEBUG_USBREQ, "-------> HD_READ_ATMESSAGE (%d)", |
| 556 | ucs->rcvbuf_size); |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 557 | |
Tilman Schmidt | 73a8881 | 2006-04-22 02:35:30 -0700 | [diff] [blame] | 558 | if (update_basstate(ucs, BS_ATRDPEND, 0) & BS_ATRDPEND) { |
Tilman Schmidt | 784d585 | 2006-04-10 22:55:04 -0700 | [diff] [blame] | 559 | dev_err(cs->dev, |
| 560 | "could not submit HD_READ_ATMESSAGE: URB busy\n"); |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 561 | return -EBUSY; |
| 562 | } |
| 563 | |
| 564 | ucs->dr_cmd_in.bRequestType = IN_VENDOR_REQ; |
| 565 | ucs->dr_cmd_in.bRequest = HD_READ_ATMESSAGE; |
| 566 | ucs->dr_cmd_in.wValue = 0; |
| 567 | ucs->dr_cmd_in.wIndex = 0; |
| 568 | ucs->dr_cmd_in.wLength = cpu_to_le16(ucs->rcvbuf_size); |
| 569 | usb_fill_control_urb(ucs->urb_cmd_in, ucs->udev, |
Tilman Schmidt | 784d585 | 2006-04-10 22:55:04 -0700 | [diff] [blame] | 570 | usb_rcvctrlpipe(ucs->udev, 0), |
| 571 | (unsigned char*) & ucs->dr_cmd_in, |
| 572 | ucs->rcvbuf, ucs->rcvbuf_size, |
| 573 | read_ctrl_callback, cs->inbuf); |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 574 | |
Christoph Lameter | 54e6ecb | 2006-12-06 20:33:16 -0800 | [diff] [blame] | 575 | if ((ret = usb_submit_urb(ucs->urb_cmd_in, GFP_ATOMIC)) != 0) { |
Tilman Schmidt | 73a8881 | 2006-04-22 02:35:30 -0700 | [diff] [blame] | 576 | update_basstate(ucs, 0, BS_ATRDPEND); |
Tilman Schmidt | 784d585 | 2006-04-10 22:55:04 -0700 | [diff] [blame] | 577 | dev_err(cs->dev, "could not submit HD_READ_ATMESSAGE: %s\n", |
Tilman Schmidt | 06163f8 | 2006-06-26 00:25:33 -0700 | [diff] [blame] | 578 | get_usb_rcmsg(ret)); |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 579 | return ret; |
| 580 | } |
| 581 | |
| 582 | if (timeout > 0) { |
Tilman Schmidt | 784d585 | 2006-04-10 22:55:04 -0700 | [diff] [blame] | 583 | gig_dbg(DEBUG_USBREQ, "setting timeout of %d/10 secs", timeout); |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 584 | ucs->timer_cmd_in.expires = jiffies + timeout * HZ / 10; |
| 585 | ucs->timer_cmd_in.data = (unsigned long) cs; |
| 586 | ucs->timer_cmd_in.function = cmd_in_timeout; |
| 587 | add_timer(&ucs->timer_cmd_in); |
| 588 | } |
| 589 | return 0; |
| 590 | } |
| 591 | |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 592 | /* read_int_callback |
| 593 | * USB completion handler for interrupt pipe input |
| 594 | * called by the USB subsystem in interrupt context |
| 595 | * parameter: |
| 596 | * urb USB request block |
| 597 | * urb->context = controller state structure |
| 598 | */ |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 599 | static void read_int_callback(struct urb *urb) |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 600 | { |
Tilman Schmidt | d48c778 | 2006-04-10 22:55:08 -0700 | [diff] [blame] | 601 | struct cardstate *cs = urb->context; |
| 602 | struct bas_cardstate *ucs = cs->hw.bas; |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 603 | struct bc_state *bcs; |
| 604 | unsigned long flags; |
Tilman Schmidt | 73a8881 | 2006-04-22 02:35:30 -0700 | [diff] [blame] | 605 | int rc; |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 606 | unsigned l; |
| 607 | int channel; |
| 608 | |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 609 | switch (urb->status) { |
| 610 | case 0: /* success */ |
| 611 | break; |
Tilman Schmidt | 73a8881 | 2006-04-22 02:35:30 -0700 | [diff] [blame] | 612 | case -ENOENT: /* cancelled */ |
| 613 | case -ECONNRESET: /* cancelled (async) */ |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 614 | case -EINPROGRESS: /* pending */ |
| 615 | /* ignore silently */ |
Tilman Schmidt | 784d585 | 2006-04-10 22:55:04 -0700 | [diff] [blame] | 616 | gig_dbg(DEBUG_USBREQ, "%s: %s", |
| 617 | __func__, get_usb_statmsg(urb->status)); |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 618 | return; |
Tilman Schmidt | 73a8881 | 2006-04-22 02:35:30 -0700 | [diff] [blame] | 619 | case -ENODEV: /* device removed */ |
| 620 | case -ESHUTDOWN: /* device shut down */ |
| 621 | //FIXME use this as disconnect indicator? |
| 622 | gig_dbg(DEBUG_USBREQ, "%s: device disconnected", __func__); |
| 623 | return; |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 624 | default: /* severe trouble */ |
Tilman Schmidt | 784d585 | 2006-04-10 22:55:04 -0700 | [diff] [blame] | 625 | dev_warn(cs->dev, "interrupt read: %s\n", |
| 626 | get_usb_statmsg(urb->status)); |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 627 | //FIXME corrective action? resubmission always ok? |
| 628 | goto resubmit; |
| 629 | } |
| 630 | |
Tilman Schmidt | 73a8881 | 2006-04-22 02:35:30 -0700 | [diff] [blame] | 631 | /* drop incomplete packets even if the missing bytes wouldn't matter */ |
| 632 | if (unlikely(urb->actual_length < 3)) { |
| 633 | dev_warn(cs->dev, "incomplete interrupt packet (%d bytes)\n", |
| 634 | urb->actual_length); |
| 635 | goto resubmit; |
| 636 | } |
| 637 | |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 638 | l = (unsigned) ucs->int_in_buf[1] + |
| 639 | (((unsigned) ucs->int_in_buf[2]) << 8); |
| 640 | |
Tilman Schmidt | 784d585 | 2006-04-10 22:55:04 -0700 | [diff] [blame] | 641 | gig_dbg(DEBUG_USBREQ, "<-------%d: 0x%02x (%u [0x%02x 0x%02x])", |
| 642 | urb->actual_length, (int)ucs->int_in_buf[0], l, |
| 643 | (int)ucs->int_in_buf[1], (int)ucs->int_in_buf[2]); |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 644 | |
| 645 | channel = 0; |
| 646 | |
| 647 | switch (ucs->int_in_buf[0]) { |
| 648 | case HD_DEVICE_INIT_OK: |
| 649 | update_basstate(ucs, BS_INIT, 0); |
| 650 | break; |
| 651 | |
| 652 | case HD_READY_SEND_ATDATA: |
| 653 | del_timer(&ucs->timer_atrdy); |
| 654 | update_basstate(ucs, BS_ATREADY, BS_ATTIMER); |
| 655 | start_cbsend(cs); |
| 656 | break; |
| 657 | |
| 658 | case HD_OPEN_B2CHANNEL_ACK: |
| 659 | ++channel; |
| 660 | case HD_OPEN_B1CHANNEL_ACK: |
| 661 | bcs = cs->bcs + channel; |
| 662 | update_basstate(ucs, BS_B1OPEN << channel, 0); |
| 663 | gigaset_bchannel_up(bcs); |
| 664 | break; |
| 665 | |
| 666 | case HD_OPEN_ATCHANNEL_ACK: |
| 667 | update_basstate(ucs, BS_ATOPEN, 0); |
| 668 | start_cbsend(cs); |
| 669 | break; |
| 670 | |
| 671 | case HD_CLOSE_B2CHANNEL_ACK: |
| 672 | ++channel; |
| 673 | case HD_CLOSE_B1CHANNEL_ACK: |
| 674 | bcs = cs->bcs + channel; |
| 675 | update_basstate(ucs, 0, BS_B1OPEN << channel); |
| 676 | stopurbs(bcs->hw.bas); |
| 677 | gigaset_bchannel_down(bcs); |
| 678 | break; |
| 679 | |
| 680 | case HD_CLOSE_ATCHANNEL_ACK: |
| 681 | update_basstate(ucs, 0, BS_ATOPEN); |
| 682 | break; |
| 683 | |
| 684 | case HD_B2_FLOW_CONTROL: |
| 685 | ++channel; |
| 686 | case HD_B1_FLOW_CONTROL: |
| 687 | bcs = cs->bcs + channel; |
| 688 | atomic_add((l - BAS_NORMFRAME) * BAS_CORRFRAMES, |
Tilman Schmidt | 784d585 | 2006-04-10 22:55:04 -0700 | [diff] [blame] | 689 | &bcs->hw.bas->corrbytes); |
| 690 | gig_dbg(DEBUG_ISO, |
| 691 | "Flow control (channel %d, sub %d): 0x%02x => %d", |
| 692 | channel, bcs->hw.bas->numsub, l, |
| 693 | atomic_read(&bcs->hw.bas->corrbytes)); |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 694 | break; |
| 695 | |
| 696 | case HD_RECEIVEATDATA_ACK: /* AT response ready to be received */ |
| 697 | if (!l) { |
Tilman Schmidt | 784d585 | 2006-04-10 22:55:04 -0700 | [diff] [blame] | 698 | dev_warn(cs->dev, |
| 699 | "HD_RECEIVEATDATA_ACK with length 0 ignored\n"); |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 700 | break; |
| 701 | } |
| 702 | spin_lock_irqsave(&cs->lock, flags); |
| 703 | if (ucs->rcvbuf_size) { |
Tilman Schmidt | 73a8881 | 2006-04-22 02:35:30 -0700 | [diff] [blame] | 704 | /* throw away previous buffer - we have no queue */ |
Tilman Schmidt | 784d585 | 2006-04-10 22:55:04 -0700 | [diff] [blame] | 705 | dev_err(cs->dev, |
Tilman Schmidt | 73a8881 | 2006-04-22 02:35:30 -0700 | [diff] [blame] | 706 | "receive AT data overrun, %d bytes lost\n", |
| 707 | ucs->rcvbuf_size); |
| 708 | kfree(ucs->rcvbuf); |
| 709 | ucs->rcvbuf_size = 0; |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 710 | } |
| 711 | if ((ucs->rcvbuf = kmalloc(l, GFP_ATOMIC)) == NULL) { |
| 712 | spin_unlock_irqrestore(&cs->lock, flags); |
Tilman Schmidt | 73a8881 | 2006-04-22 02:35:30 -0700 | [diff] [blame] | 713 | dev_err(cs->dev, "out of memory receiving AT data\n"); |
| 714 | error_reset(cs); |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 715 | break; |
| 716 | } |
| 717 | ucs->rcvbuf_size = l; |
| 718 | ucs->retry_cmd_in = 0; |
Tilman Schmidt | 73a8881 | 2006-04-22 02:35:30 -0700 | [diff] [blame] | 719 | if ((rc = atread_submit(cs, BAS_TIMEOUT)) < 0) { |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 720 | kfree(ucs->rcvbuf); |
| 721 | ucs->rcvbuf = NULL; |
| 722 | ucs->rcvbuf_size = 0; |
Tilman Schmidt | 06163f8 | 2006-06-26 00:25:33 -0700 | [diff] [blame] | 723 | if (rc != -ENODEV) { |
Tilman Schmidt | 73a8881 | 2006-04-22 02:35:30 -0700 | [diff] [blame] | 724 | //FIXME corrective action? |
Tilman Schmidt | 06163f8 | 2006-06-26 00:25:33 -0700 | [diff] [blame] | 725 | spin_unlock_irqrestore(&cs->lock, flags); |
Tilman Schmidt | 73a8881 | 2006-04-22 02:35:30 -0700 | [diff] [blame] | 726 | error_reset(cs); |
Tilman Schmidt | 06163f8 | 2006-06-26 00:25:33 -0700 | [diff] [blame] | 727 | break; |
| 728 | } |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 729 | } |
| 730 | spin_unlock_irqrestore(&cs->lock, flags); |
| 731 | break; |
| 732 | |
| 733 | case HD_RESET_INTERRUPT_PIPE_ACK: |
Tilman Schmidt | 784d585 | 2006-04-10 22:55:04 -0700 | [diff] [blame] | 734 | gig_dbg(DEBUG_USBREQ, "HD_RESET_INTERRUPT_PIPE_ACK"); |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 735 | break; |
| 736 | |
| 737 | case HD_SUSPEND_END: |
Tilman Schmidt | 784d585 | 2006-04-10 22:55:04 -0700 | [diff] [blame] | 738 | gig_dbg(DEBUG_USBREQ, "HD_SUSPEND_END"); |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 739 | break; |
| 740 | |
| 741 | default: |
Tilman Schmidt | 784d585 | 2006-04-10 22:55:04 -0700 | [diff] [blame] | 742 | dev_warn(cs->dev, |
| 743 | "unknown Gigaset signal 0x%02x (%u) ignored\n", |
| 744 | (int) ucs->int_in_buf[0], l); |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 745 | } |
| 746 | |
| 747 | check_pending(ucs); |
| 748 | |
| 749 | resubmit: |
Christoph Lameter | 54e6ecb | 2006-12-06 20:33:16 -0800 | [diff] [blame] | 750 | rc = usb_submit_urb(urb, GFP_ATOMIC); |
Tilman Schmidt | 73a8881 | 2006-04-22 02:35:30 -0700 | [diff] [blame] | 751 | if (unlikely(rc != 0 && rc != -ENODEV)) { |
Tilman Schmidt | 784d585 | 2006-04-10 22:55:04 -0700 | [diff] [blame] | 752 | dev_err(cs->dev, "could not resubmit interrupt URB: %s\n", |
Tilman Schmidt | 73a8881 | 2006-04-22 02:35:30 -0700 | [diff] [blame] | 753 | get_usb_rcmsg(rc)); |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 754 | error_reset(cs); |
| 755 | } |
| 756 | } |
| 757 | |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 758 | /* read_iso_callback |
| 759 | * USB completion handler for B channel isochronous input |
| 760 | * called by the USB subsystem in interrupt context |
| 761 | * parameter: |
| 762 | * urb USB request block of completed request |
| 763 | * urb->context = bc_state structure |
| 764 | */ |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 765 | static void read_iso_callback(struct urb *urb) |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 766 | { |
| 767 | struct bc_state *bcs; |
| 768 | struct bas_bc_state *ubc; |
| 769 | unsigned long flags; |
| 770 | int i, rc; |
| 771 | |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 772 | /* status codes not worth bothering the tasklet with */ |
Tilman Schmidt | 73a8881 | 2006-04-22 02:35:30 -0700 | [diff] [blame] | 773 | if (unlikely(urb->status == -ENOENT || |
| 774 | urb->status == -ECONNRESET || |
| 775 | urb->status == -EINPROGRESS || |
| 776 | urb->status == -ENODEV || |
| 777 | urb->status == -ESHUTDOWN)) { |
Tilman Schmidt | 784d585 | 2006-04-10 22:55:04 -0700 | [diff] [blame] | 778 | gig_dbg(DEBUG_ISO, "%s: %s", |
| 779 | __func__, get_usb_statmsg(urb->status)); |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 780 | return; |
| 781 | } |
| 782 | |
Tilman Schmidt | d48c778 | 2006-04-10 22:55:08 -0700 | [diff] [blame] | 783 | bcs = urb->context; |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 784 | ubc = bcs->hw.bas; |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 785 | |
| 786 | spin_lock_irqsave(&ubc->isoinlock, flags); |
| 787 | if (likely(ubc->isoindone == NULL)) { |
| 788 | /* pass URB to tasklet */ |
| 789 | ubc->isoindone = urb; |
| 790 | tasklet_schedule(&ubc->rcvd_tasklet); |
| 791 | } else { |
| 792 | /* tasklet still busy, drop data and resubmit URB */ |
| 793 | ubc->loststatus = urb->status; |
| 794 | for (i = 0; i < BAS_NUMFRAMES; i++) { |
| 795 | ubc->isoinlost += urb->iso_frame_desc[i].actual_length; |
| 796 | if (unlikely(urb->iso_frame_desc[i].status != 0 && |
Tilman Schmidt | 73a8881 | 2006-04-22 02:35:30 -0700 | [diff] [blame] | 797 | urb->iso_frame_desc[i].status != |
| 798 | -EINPROGRESS)) |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 799 | ubc->loststatus = urb->iso_frame_desc[i].status; |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 800 | urb->iso_frame_desc[i].status = 0; |
| 801 | urb->iso_frame_desc[i].actual_length = 0; |
| 802 | } |
| 803 | if (likely(atomic_read(&ubc->running))) { |
Tilman Schmidt | 784d585 | 2006-04-10 22:55:04 -0700 | [diff] [blame] | 804 | /* urb->dev is clobbered by USB subsystem */ |
| 805 | urb->dev = bcs->cs->hw.bas->udev; |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 806 | urb->transfer_flags = URB_ISO_ASAP; |
| 807 | urb->number_of_packets = BAS_NUMFRAMES; |
Tilman Schmidt | 784d585 | 2006-04-10 22:55:04 -0700 | [diff] [blame] | 808 | gig_dbg(DEBUG_ISO, "%s: isoc read overrun/resubmit", |
| 809 | __func__); |
Christoph Lameter | 54e6ecb | 2006-12-06 20:33:16 -0800 | [diff] [blame] | 810 | rc = usb_submit_urb(urb, GFP_ATOMIC); |
Tilman Schmidt | 73a8881 | 2006-04-22 02:35:30 -0700 | [diff] [blame] | 811 | if (unlikely(rc != 0 && rc != -ENODEV)) { |
Tilman Schmidt | 784d585 | 2006-04-10 22:55:04 -0700 | [diff] [blame] | 812 | dev_err(bcs->cs->dev, |
| 813 | "could not resubmit isochronous read " |
Tilman Schmidt | 73a8881 | 2006-04-22 02:35:30 -0700 | [diff] [blame] | 814 | "URB: %s\n", get_usb_rcmsg(rc)); |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 815 | dump_urb(DEBUG_ISO, "isoc read", urb); |
| 816 | error_hangup(bcs); |
| 817 | } |
| 818 | } |
| 819 | } |
| 820 | spin_unlock_irqrestore(&ubc->isoinlock, flags); |
| 821 | } |
| 822 | |
| 823 | /* write_iso_callback |
| 824 | * USB completion handler for B channel isochronous output |
| 825 | * called by the USB subsystem in interrupt context |
| 826 | * parameter: |
| 827 | * urb USB request block of completed request |
| 828 | * urb->context = isow_urbctx_t structure |
| 829 | */ |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 830 | static void write_iso_callback(struct urb *urb) |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 831 | { |
| 832 | struct isow_urbctx_t *ucx; |
| 833 | struct bas_bc_state *ubc; |
| 834 | unsigned long flags; |
| 835 | |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 836 | /* status codes not worth bothering the tasklet with */ |
Tilman Schmidt | 73a8881 | 2006-04-22 02:35:30 -0700 | [diff] [blame] | 837 | if (unlikely(urb->status == -ENOENT || |
| 838 | urb->status == -ECONNRESET || |
| 839 | urb->status == -EINPROGRESS || |
| 840 | urb->status == -ENODEV || |
| 841 | urb->status == -ESHUTDOWN)) { |
Tilman Schmidt | 784d585 | 2006-04-10 22:55:04 -0700 | [diff] [blame] | 842 | gig_dbg(DEBUG_ISO, "%s: %s", |
| 843 | __func__, get_usb_statmsg(urb->status)); |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 844 | return; |
| 845 | } |
| 846 | |
| 847 | /* pass URB context to tasklet */ |
Tilman Schmidt | d48c778 | 2006-04-10 22:55:08 -0700 | [diff] [blame] | 848 | ucx = urb->context; |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 849 | ubc = ucx->bcs->hw.bas; |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 850 | |
| 851 | spin_lock_irqsave(&ubc->isooutlock, flags); |
| 852 | ubc->isooutovfl = ubc->isooutdone; |
| 853 | ubc->isooutdone = ucx; |
| 854 | spin_unlock_irqrestore(&ubc->isooutlock, flags); |
| 855 | tasklet_schedule(&ubc->sent_tasklet); |
| 856 | } |
| 857 | |
| 858 | /* starturbs |
| 859 | * prepare and submit USB request blocks for isochronous input and output |
| 860 | * argument: |
| 861 | * B channel control structure |
| 862 | * return value: |
| 863 | * 0 on success |
| 864 | * < 0 on error (no URBs submitted) |
| 865 | */ |
| 866 | static int starturbs(struct bc_state *bcs) |
| 867 | { |
Tilman Schmidt | d48c778 | 2006-04-10 22:55:08 -0700 | [diff] [blame] | 868 | struct bas_bc_state *ubc = bcs->hw.bas; |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 869 | struct urb *urb; |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 870 | int j, k; |
| 871 | int rc; |
| 872 | |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 873 | /* initialize L2 reception */ |
| 874 | if (bcs->proto2 == ISDN_PROTO_L2_HDLC) |
| 875 | bcs->inputstate |= INS_flag_hunt; |
| 876 | |
| 877 | /* submit all isochronous input URBs */ |
| 878 | atomic_set(&ubc->running, 1); |
| 879 | for (k = 0; k < BAS_INURBS; k++) { |
| 880 | urb = ubc->isoinurbs[k]; |
| 881 | if (!urb) { |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 882 | rc = -EFAULT; |
| 883 | goto error; |
| 884 | } |
| 885 | |
| 886 | urb->dev = bcs->cs->hw.bas->udev; |
| 887 | urb->pipe = usb_rcvisocpipe(urb->dev, 3 + 2 * bcs->channel); |
| 888 | urb->transfer_flags = URB_ISO_ASAP; |
| 889 | urb->transfer_buffer = ubc->isoinbuf + k * BAS_INBUFSIZE; |
| 890 | urb->transfer_buffer_length = BAS_INBUFSIZE; |
| 891 | urb->number_of_packets = BAS_NUMFRAMES; |
| 892 | urb->interval = BAS_FRAMETIME; |
| 893 | urb->complete = read_iso_callback; |
| 894 | urb->context = bcs; |
| 895 | for (j = 0; j < BAS_NUMFRAMES; j++) { |
| 896 | urb->iso_frame_desc[j].offset = j * BAS_MAXFRAME; |
| 897 | urb->iso_frame_desc[j].length = BAS_MAXFRAME; |
| 898 | urb->iso_frame_desc[j].status = 0; |
| 899 | urb->iso_frame_desc[j].actual_length = 0; |
| 900 | } |
| 901 | |
| 902 | dump_urb(DEBUG_ISO, "Initial isoc read", urb); |
Christoph Lameter | 54e6ecb | 2006-12-06 20:33:16 -0800 | [diff] [blame] | 903 | if ((rc = usb_submit_urb(urb, GFP_ATOMIC)) != 0) |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 904 | goto error; |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 905 | } |
| 906 | |
| 907 | /* initialize L2 transmission */ |
| 908 | gigaset_isowbuf_init(ubc->isooutbuf, PPP_FLAG); |
| 909 | |
| 910 | /* set up isochronous output URBs for flag idling */ |
| 911 | for (k = 0; k < BAS_OUTURBS; ++k) { |
| 912 | urb = ubc->isoouturbs[k].urb; |
| 913 | if (!urb) { |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 914 | rc = -EFAULT; |
| 915 | goto error; |
| 916 | } |
| 917 | urb->dev = bcs->cs->hw.bas->udev; |
| 918 | urb->pipe = usb_sndisocpipe(urb->dev, 4 + 2 * bcs->channel); |
| 919 | urb->transfer_flags = URB_ISO_ASAP; |
| 920 | urb->transfer_buffer = ubc->isooutbuf->data; |
| 921 | urb->transfer_buffer_length = sizeof(ubc->isooutbuf->data); |
| 922 | urb->number_of_packets = BAS_NUMFRAMES; |
| 923 | urb->interval = BAS_FRAMETIME; |
| 924 | urb->complete = write_iso_callback; |
| 925 | urb->context = &ubc->isoouturbs[k]; |
| 926 | for (j = 0; j < BAS_NUMFRAMES; ++j) { |
| 927 | urb->iso_frame_desc[j].offset = BAS_OUTBUFSIZE; |
| 928 | urb->iso_frame_desc[j].length = BAS_NORMFRAME; |
| 929 | urb->iso_frame_desc[j].status = 0; |
| 930 | urb->iso_frame_desc[j].actual_length = 0; |
| 931 | } |
| 932 | ubc->isoouturbs[k].limit = -1; |
| 933 | } |
| 934 | |
| 935 | /* submit two URBs, keep third one */ |
| 936 | for (k = 0; k < 2; ++k) { |
| 937 | dump_urb(DEBUG_ISO, "Initial isoc write", urb); |
Christoph Lameter | 54e6ecb | 2006-12-06 20:33:16 -0800 | [diff] [blame] | 938 | rc = usb_submit_urb(ubc->isoouturbs[k].urb, GFP_ATOMIC); |
Tilman Schmidt | 73a8881 | 2006-04-22 02:35:30 -0700 | [diff] [blame] | 939 | if (rc != 0) |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 940 | goto error; |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 941 | } |
| 942 | dump_urb(DEBUG_ISO, "Initial isoc write (free)", urb); |
| 943 | ubc->isooutfree = &ubc->isoouturbs[2]; |
| 944 | ubc->isooutdone = ubc->isooutovfl = NULL; |
| 945 | return 0; |
| 946 | error: |
| 947 | stopurbs(ubc); |
| 948 | return rc; |
| 949 | } |
| 950 | |
| 951 | /* stopurbs |
| 952 | * cancel the USB request blocks for isochronous input and output |
| 953 | * errors are silently ignored |
| 954 | * argument: |
| 955 | * B channel control structure |
| 956 | */ |
| 957 | static void stopurbs(struct bas_bc_state *ubc) |
| 958 | { |
| 959 | int k, rc; |
| 960 | |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 961 | atomic_set(&ubc->running, 0); |
| 962 | |
| 963 | for (k = 0; k < BAS_INURBS; ++k) { |
| 964 | rc = usb_unlink_urb(ubc->isoinurbs[k]); |
Tilman Schmidt | 784d585 | 2006-04-10 22:55:04 -0700 | [diff] [blame] | 965 | gig_dbg(DEBUG_ISO, |
Tilman Schmidt | 73a8881 | 2006-04-22 02:35:30 -0700 | [diff] [blame] | 966 | "%s: isoc input URB %d unlinked, result = %s", |
| 967 | __func__, k, get_usb_rcmsg(rc)); |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 968 | } |
| 969 | |
| 970 | for (k = 0; k < BAS_OUTURBS; ++k) { |
| 971 | rc = usb_unlink_urb(ubc->isoouturbs[k].urb); |
Tilman Schmidt | 784d585 | 2006-04-10 22:55:04 -0700 | [diff] [blame] | 972 | gig_dbg(DEBUG_ISO, |
Tilman Schmidt | 73a8881 | 2006-04-22 02:35:30 -0700 | [diff] [blame] | 973 | "%s: isoc output URB %d unlinked, result = %s", |
| 974 | __func__, k, get_usb_rcmsg(rc)); |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 975 | } |
| 976 | } |
| 977 | |
| 978 | /* Isochronous Write - Bottom Half */ |
| 979 | /* =============================== */ |
| 980 | |
| 981 | /* submit_iso_write_urb |
| 982 | * fill and submit the next isochronous write URB |
| 983 | * parameters: |
Tilman Schmidt | 73a8881 | 2006-04-22 02:35:30 -0700 | [diff] [blame] | 984 | * ucx context structure containing URB |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 985 | * return value: |
| 986 | * number of frames submitted in URB |
| 987 | * 0 if URB not submitted because no data available (isooutbuf busy) |
| 988 | * error code < 0 on error |
| 989 | */ |
| 990 | static int submit_iso_write_urb(struct isow_urbctx_t *ucx) |
| 991 | { |
Tilman Schmidt | d48c778 | 2006-04-10 22:55:08 -0700 | [diff] [blame] | 992 | struct urb *urb = ucx->urb; |
| 993 | struct bas_bc_state *ubc = ucx->bcs->hw.bas; |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 994 | struct usb_iso_packet_descriptor *ifd; |
| 995 | int corrbytes, nframe, rc; |
| 996 | |
Tilman Schmidt | 784d585 | 2006-04-10 22:55:04 -0700 | [diff] [blame] | 997 | /* urb->dev is clobbered by USB subsystem */ |
| 998 | urb->dev = ucx->bcs->cs->hw.bas->udev; |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 999 | urb->transfer_flags = URB_ISO_ASAP; |
| 1000 | urb->transfer_buffer = ubc->isooutbuf->data; |
| 1001 | urb->transfer_buffer_length = sizeof(ubc->isooutbuf->data); |
| 1002 | |
| 1003 | for (nframe = 0; nframe < BAS_NUMFRAMES; nframe++) { |
| 1004 | ifd = &urb->iso_frame_desc[nframe]; |
| 1005 | |
| 1006 | /* compute frame length according to flow control */ |
| 1007 | ifd->length = BAS_NORMFRAME; |
| 1008 | if ((corrbytes = atomic_read(&ubc->corrbytes)) != 0) { |
Tilman Schmidt | 784d585 | 2006-04-10 22:55:04 -0700 | [diff] [blame] | 1009 | gig_dbg(DEBUG_ISO, "%s: corrbytes=%d", |
| 1010 | __func__, corrbytes); |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 1011 | if (corrbytes > BAS_HIGHFRAME - BAS_NORMFRAME) |
| 1012 | corrbytes = BAS_HIGHFRAME - BAS_NORMFRAME; |
| 1013 | else if (corrbytes < BAS_LOWFRAME - BAS_NORMFRAME) |
| 1014 | corrbytes = BAS_LOWFRAME - BAS_NORMFRAME; |
| 1015 | ifd->length += corrbytes; |
| 1016 | atomic_add(-corrbytes, &ubc->corrbytes); |
| 1017 | } |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 1018 | |
| 1019 | /* retrieve block of data to send */ |
Tilman Schmidt | 917f508 | 2006-04-10 22:55:00 -0700 | [diff] [blame] | 1020 | ifd->offset = gigaset_isowbuf_getbytes(ubc->isooutbuf, |
| 1021 | ifd->length); |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 1022 | if (ifd->offset < 0) { |
| 1023 | if (ifd->offset == -EBUSY) { |
Tilman Schmidt | 784d585 | 2006-04-10 22:55:04 -0700 | [diff] [blame] | 1024 | gig_dbg(DEBUG_ISO, |
| 1025 | "%s: buffer busy at frame %d", |
| 1026 | __func__, nframe); |
| 1027 | /* tasklet will be restarted from |
| 1028 | gigaset_send_skb() */ |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 1029 | } else { |
Tilman Schmidt | 784d585 | 2006-04-10 22:55:04 -0700 | [diff] [blame] | 1030 | dev_err(ucx->bcs->cs->dev, |
| 1031 | "%s: buffer error %d at frame %d\n", |
| 1032 | __func__, ifd->offset, nframe); |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 1033 | return ifd->offset; |
| 1034 | } |
| 1035 | break; |
| 1036 | } |
| 1037 | ucx->limit = atomic_read(&ubc->isooutbuf->nextread); |
| 1038 | ifd->status = 0; |
| 1039 | ifd->actual_length = 0; |
| 1040 | } |
Tilman Schmidt | 73a8881 | 2006-04-22 02:35:30 -0700 | [diff] [blame] | 1041 | if (unlikely(nframe == 0)) |
| 1042 | return 0; /* no data to send */ |
| 1043 | urb->number_of_packets = nframe; |
Tilman Schmidt | 69049cc | 2006-04-10 22:55:16 -0700 | [diff] [blame] | 1044 | |
Christoph Lameter | 54e6ecb | 2006-12-06 20:33:16 -0800 | [diff] [blame] | 1045 | rc = usb_submit_urb(urb, GFP_ATOMIC); |
Tilman Schmidt | 73a8881 | 2006-04-22 02:35:30 -0700 | [diff] [blame] | 1046 | if (unlikely(rc)) { |
| 1047 | if (rc == -ENODEV) |
| 1048 | /* device removed - give up silently */ |
| 1049 | gig_dbg(DEBUG_ISO, "%s: disconnected", __func__); |
| 1050 | else |
Tilman Schmidt | 784d585 | 2006-04-10 22:55:04 -0700 | [diff] [blame] | 1051 | dev_err(ucx->bcs->cs->dev, |
| 1052 | "could not submit isochronous write URB: %s\n", |
Tilman Schmidt | 73a8881 | 2006-04-22 02:35:30 -0700 | [diff] [blame] | 1053 | get_usb_rcmsg(rc)); |
| 1054 | return rc; |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 1055 | } |
Tilman Schmidt | 73a8881 | 2006-04-22 02:35:30 -0700 | [diff] [blame] | 1056 | ++ubc->numsub; |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 1057 | return nframe; |
| 1058 | } |
| 1059 | |
| 1060 | /* write_iso_tasklet |
| 1061 | * tasklet scheduled when an isochronous output URB from the Gigaset device |
| 1062 | * has completed |
| 1063 | * parameter: |
| 1064 | * data B channel state structure |
| 1065 | */ |
| 1066 | static void write_iso_tasklet(unsigned long data) |
| 1067 | { |
Tilman Schmidt | d48c778 | 2006-04-10 22:55:08 -0700 | [diff] [blame] | 1068 | struct bc_state *bcs = (struct bc_state *) data; |
| 1069 | struct bas_bc_state *ubc = bcs->hw.bas; |
| 1070 | struct cardstate *cs = bcs->cs; |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 1071 | struct isow_urbctx_t *done, *next, *ovfl; |
| 1072 | struct urb *urb; |
| 1073 | struct usb_iso_packet_descriptor *ifd; |
| 1074 | int offset; |
| 1075 | unsigned long flags; |
| 1076 | int i; |
| 1077 | struct sk_buff *skb; |
| 1078 | int len; |
Tilman Schmidt | 73a8881 | 2006-04-22 02:35:30 -0700 | [diff] [blame] | 1079 | int rc; |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 1080 | |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 1081 | /* loop while completed URBs arrive in time */ |
| 1082 | for (;;) { |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 1083 | if (unlikely(!(atomic_read(&ubc->running)))) { |
Tilman Schmidt | 784d585 | 2006-04-10 22:55:04 -0700 | [diff] [blame] | 1084 | gig_dbg(DEBUG_ISO, "%s: not running", __func__); |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 1085 | return; |
| 1086 | } |
| 1087 | |
| 1088 | /* retrieve completed URBs */ |
| 1089 | spin_lock_irqsave(&ubc->isooutlock, flags); |
| 1090 | done = ubc->isooutdone; |
| 1091 | ubc->isooutdone = NULL; |
| 1092 | ovfl = ubc->isooutovfl; |
| 1093 | ubc->isooutovfl = NULL; |
| 1094 | spin_unlock_irqrestore(&ubc->isooutlock, flags); |
| 1095 | if (ovfl) { |
Tilman Schmidt | 784d585 | 2006-04-10 22:55:04 -0700 | [diff] [blame] | 1096 | dev_err(cs->dev, "isochronous write buffer underrun\n"); |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 1097 | error_hangup(bcs); |
| 1098 | break; |
| 1099 | } |
| 1100 | if (!done) |
| 1101 | break; |
| 1102 | |
| 1103 | /* submit free URB if available */ |
| 1104 | spin_lock_irqsave(&ubc->isooutlock, flags); |
| 1105 | next = ubc->isooutfree; |
| 1106 | ubc->isooutfree = NULL; |
| 1107 | spin_unlock_irqrestore(&ubc->isooutlock, flags); |
| 1108 | if (next) { |
Tilman Schmidt | 73a8881 | 2006-04-22 02:35:30 -0700 | [diff] [blame] | 1109 | rc = submit_iso_write_urb(next); |
| 1110 | if (unlikely(rc <= 0 && rc != -ENODEV)) { |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 1111 | /* could not submit URB, put it back */ |
| 1112 | spin_lock_irqsave(&ubc->isooutlock, flags); |
| 1113 | if (ubc->isooutfree == NULL) { |
| 1114 | ubc->isooutfree = next; |
| 1115 | next = NULL; |
| 1116 | } |
| 1117 | spin_unlock_irqrestore(&ubc->isooutlock, flags); |
| 1118 | if (next) { |
| 1119 | /* couldn't put it back */ |
Tilman Schmidt | 784d585 | 2006-04-10 22:55:04 -0700 | [diff] [blame] | 1120 | dev_err(cs->dev, |
| 1121 | "losing isochronous write URB\n"); |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 1122 | error_hangup(bcs); |
| 1123 | } |
| 1124 | } |
| 1125 | } |
| 1126 | |
| 1127 | /* process completed URB */ |
| 1128 | urb = done->urb; |
| 1129 | switch (urb->status) { |
Tilman Schmidt | 73a8881 | 2006-04-22 02:35:30 -0700 | [diff] [blame] | 1130 | case -EXDEV: /* partial completion */ |
| 1131 | gig_dbg(DEBUG_ISO, "%s: URB partially completed", |
| 1132 | __func__); |
| 1133 | /* fall through - what's the difference anyway? */ |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 1134 | case 0: /* normal completion */ |
Tilman Schmidt | 73a8881 | 2006-04-22 02:35:30 -0700 | [diff] [blame] | 1135 | /* inspect individual frames |
| 1136 | * assumptions (for lack of documentation): |
| 1137 | * - actual_length bytes of first frame in error are |
Tilman Schmidt | 917f508 | 2006-04-10 22:55:00 -0700 | [diff] [blame] | 1138 | * successfully sent |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 1139 | * - all following frames are not sent at all |
| 1140 | */ |
Tilman Schmidt | 73a8881 | 2006-04-22 02:35:30 -0700 | [diff] [blame] | 1141 | offset = done->limit; /* default (no error) */ |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 1142 | for (i = 0; i < BAS_NUMFRAMES; i++) { |
| 1143 | ifd = &urb->iso_frame_desc[i]; |
| 1144 | if (ifd->status || |
| 1145 | ifd->actual_length != ifd->length) { |
Tilman Schmidt | 784d585 | 2006-04-10 22:55:04 -0700 | [diff] [blame] | 1146 | dev_warn(cs->dev, |
| 1147 | "isochronous write: frame %d: %s, " |
| 1148 | "only %d of %d bytes sent\n", |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 1149 | i, get_usb_statmsg(ifd->status), |
| 1150 | ifd->actual_length, ifd->length); |
| 1151 | offset = (ifd->offset + |
Tilman Schmidt | 784d585 | 2006-04-10 22:55:04 -0700 | [diff] [blame] | 1152 | ifd->actual_length) |
| 1153 | % BAS_OUTBUFSIZE; |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 1154 | break; |
| 1155 | } |
| 1156 | } |
| 1157 | #ifdef CONFIG_GIGASET_DEBUG |
| 1158 | /* check assumption on remaining frames */ |
| 1159 | for (; i < BAS_NUMFRAMES; i++) { |
| 1160 | ifd = &urb->iso_frame_desc[i]; |
| 1161 | if (ifd->status != -EINPROGRESS |
| 1162 | || ifd->actual_length != 0) { |
Tilman Schmidt | 784d585 | 2006-04-10 22:55:04 -0700 | [diff] [blame] | 1163 | dev_warn(cs->dev, |
| 1164 | "isochronous write: frame %d: %s, " |
| 1165 | "%d of %d bytes sent\n", |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 1166 | i, get_usb_statmsg(ifd->status), |
| 1167 | ifd->actual_length, ifd->length); |
| 1168 | offset = (ifd->offset + |
Tilman Schmidt | 784d585 | 2006-04-10 22:55:04 -0700 | [diff] [blame] | 1169 | ifd->actual_length) |
| 1170 | % BAS_OUTBUFSIZE; |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 1171 | break; |
| 1172 | } |
| 1173 | } |
| 1174 | #endif |
| 1175 | break; |
Tilman Schmidt | 73a8881 | 2006-04-22 02:35:30 -0700 | [diff] [blame] | 1176 | case -EPIPE: /* stall - probably underrun */ |
Tilman Schmidt | 784d585 | 2006-04-10 22:55:04 -0700 | [diff] [blame] | 1177 | dev_err(cs->dev, "isochronous write stalled\n"); |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 1178 | error_hangup(bcs); |
| 1179 | break; |
| 1180 | default: /* severe trouble */ |
Tilman Schmidt | 784d585 | 2006-04-10 22:55:04 -0700 | [diff] [blame] | 1181 | dev_warn(cs->dev, "isochronous write: %s\n", |
| 1182 | get_usb_statmsg(urb->status)); |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 1183 | } |
| 1184 | |
| 1185 | /* mark the write buffer area covered by this URB as free */ |
| 1186 | if (done->limit >= 0) |
| 1187 | atomic_set(&ubc->isooutbuf->read, done->limit); |
| 1188 | |
| 1189 | /* mark URB as free */ |
| 1190 | spin_lock_irqsave(&ubc->isooutlock, flags); |
| 1191 | next = ubc->isooutfree; |
| 1192 | ubc->isooutfree = done; |
| 1193 | spin_unlock_irqrestore(&ubc->isooutlock, flags); |
| 1194 | if (next) { |
| 1195 | /* only one URB still active - resubmit one */ |
Tilman Schmidt | 73a8881 | 2006-04-22 02:35:30 -0700 | [diff] [blame] | 1196 | rc = submit_iso_write_urb(next); |
| 1197 | if (unlikely(rc <= 0 && rc != -ENODEV)) { |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 1198 | /* couldn't submit */ |
| 1199 | error_hangup(bcs); |
| 1200 | } |
| 1201 | } |
| 1202 | } |
| 1203 | |
| 1204 | /* process queued SKBs */ |
| 1205 | while ((skb = skb_dequeue(&bcs->squeue))) { |
| 1206 | /* copy to output buffer, doing L2 encapsulation */ |
| 1207 | len = skb->len; |
| 1208 | if (gigaset_isoc_buildframe(bcs, skb->data, len) == -EAGAIN) { |
| 1209 | /* insufficient buffer space, push back onto queue */ |
| 1210 | skb_queue_head(&bcs->squeue, skb); |
Tilman Schmidt | 784d585 | 2006-04-10 22:55:04 -0700 | [diff] [blame] | 1211 | gig_dbg(DEBUG_ISO, "%s: skb requeued, qlen=%d", |
| 1212 | __func__, skb_queue_len(&bcs->squeue)); |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 1213 | break; |
| 1214 | } |
| 1215 | skb_pull(skb, len); |
| 1216 | gigaset_skb_sent(bcs, skb); |
| 1217 | dev_kfree_skb_any(skb); |
| 1218 | } |
| 1219 | } |
| 1220 | |
| 1221 | /* Isochronous Read - Bottom Half */ |
| 1222 | /* ============================== */ |
| 1223 | |
| 1224 | /* read_iso_tasklet |
| 1225 | * tasklet scheduled when an isochronous input URB from the Gigaset device |
| 1226 | * has completed |
| 1227 | * parameter: |
| 1228 | * data B channel state structure |
| 1229 | */ |
| 1230 | static void read_iso_tasklet(unsigned long data) |
| 1231 | { |
Tilman Schmidt | d48c778 | 2006-04-10 22:55:08 -0700 | [diff] [blame] | 1232 | struct bc_state *bcs = (struct bc_state *) data; |
| 1233 | struct bas_bc_state *ubc = bcs->hw.bas; |
| 1234 | struct cardstate *cs = bcs->cs; |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 1235 | struct urb *urb; |
| 1236 | char *rcvbuf; |
| 1237 | unsigned long flags; |
| 1238 | int totleft, numbytes, offset, frame, rc; |
| 1239 | |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 1240 | /* loop while more completed URBs arrive in the meantime */ |
| 1241 | for (;;) { |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 1242 | /* retrieve URB */ |
| 1243 | spin_lock_irqsave(&ubc->isoinlock, flags); |
| 1244 | if (!(urb = ubc->isoindone)) { |
| 1245 | spin_unlock_irqrestore(&ubc->isoinlock, flags); |
| 1246 | return; |
| 1247 | } |
| 1248 | ubc->isoindone = NULL; |
| 1249 | if (unlikely(ubc->loststatus != -EINPROGRESS)) { |
Tilman Schmidt | 784d585 | 2006-04-10 22:55:04 -0700 | [diff] [blame] | 1250 | dev_warn(cs->dev, |
| 1251 | "isochronous read overrun, " |
| 1252 | "dropped URB with status: %s, %d bytes lost\n", |
| 1253 | get_usb_statmsg(ubc->loststatus), |
| 1254 | ubc->isoinlost); |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 1255 | ubc->loststatus = -EINPROGRESS; |
| 1256 | } |
| 1257 | spin_unlock_irqrestore(&ubc->isoinlock, flags); |
| 1258 | |
| 1259 | if (unlikely(!(atomic_read(&ubc->running)))) { |
Tilman Schmidt | 784d585 | 2006-04-10 22:55:04 -0700 | [diff] [blame] | 1260 | gig_dbg(DEBUG_ISO, |
| 1261 | "%s: channel not running, " |
| 1262 | "dropped URB with status: %s", |
| 1263 | __func__, get_usb_statmsg(urb->status)); |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 1264 | return; |
| 1265 | } |
| 1266 | |
| 1267 | switch (urb->status) { |
| 1268 | case 0: /* normal completion */ |
| 1269 | break; |
Tilman Schmidt | 917f508 | 2006-04-10 22:55:00 -0700 | [diff] [blame] | 1270 | case -EXDEV: /* inspect individual frames |
| 1271 | (we do that anyway) */ |
Tilman Schmidt | 784d585 | 2006-04-10 22:55:04 -0700 | [diff] [blame] | 1272 | gig_dbg(DEBUG_ISO, "%s: URB partially completed", |
| 1273 | __func__); |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 1274 | break; |
| 1275 | case -ENOENT: |
| 1276 | case -ECONNRESET: |
Tilman Schmidt | 73a8881 | 2006-04-22 02:35:30 -0700 | [diff] [blame] | 1277 | case -EINPROGRESS: |
| 1278 | gig_dbg(DEBUG_ISO, "%s: %s", |
| 1279 | __func__, get_usb_statmsg(urb->status)); |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 1280 | continue; /* -> skip */ |
| 1281 | case -EPIPE: |
Tilman Schmidt | 784d585 | 2006-04-10 22:55:04 -0700 | [diff] [blame] | 1282 | dev_err(cs->dev, "isochronous read stalled\n"); |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 1283 | error_hangup(bcs); |
| 1284 | continue; /* -> skip */ |
| 1285 | default: /* severe trouble */ |
Tilman Schmidt | 784d585 | 2006-04-10 22:55:04 -0700 | [diff] [blame] | 1286 | dev_warn(cs->dev, "isochronous read: %s\n", |
| 1287 | get_usb_statmsg(urb->status)); |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 1288 | goto error; |
| 1289 | } |
| 1290 | |
| 1291 | rcvbuf = urb->transfer_buffer; |
| 1292 | totleft = urb->actual_length; |
| 1293 | for (frame = 0; totleft > 0 && frame < BAS_NUMFRAMES; frame++) { |
| 1294 | if (unlikely(urb->iso_frame_desc[frame].status)) { |
Tilman Schmidt | 784d585 | 2006-04-10 22:55:04 -0700 | [diff] [blame] | 1295 | dev_warn(cs->dev, |
| 1296 | "isochronous read: frame %d: %s\n", |
| 1297 | frame, |
| 1298 | get_usb_statmsg( |
| 1299 | urb->iso_frame_desc[frame].status)); |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 1300 | break; |
| 1301 | } |
| 1302 | numbytes = urb->iso_frame_desc[frame].actual_length; |
| 1303 | if (unlikely(numbytes > BAS_MAXFRAME)) { |
Tilman Schmidt | 784d585 | 2006-04-10 22:55:04 -0700 | [diff] [blame] | 1304 | dev_warn(cs->dev, |
| 1305 | "isochronous read: frame %d: " |
| 1306 | "numbytes (%d) > BAS_MAXFRAME\n", |
| 1307 | frame, numbytes); |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 1308 | break; |
| 1309 | } |
| 1310 | if (unlikely(numbytes > totleft)) { |
Tilman Schmidt | 784d585 | 2006-04-10 22:55:04 -0700 | [diff] [blame] | 1311 | dev_warn(cs->dev, |
| 1312 | "isochronous read: frame %d: " |
| 1313 | "numbytes (%d) > totleft (%d)\n", |
| 1314 | frame, numbytes, totleft); |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 1315 | break; |
| 1316 | } |
| 1317 | offset = urb->iso_frame_desc[frame].offset; |
| 1318 | if (unlikely(offset + numbytes > BAS_INBUFSIZE)) { |
Tilman Schmidt | 784d585 | 2006-04-10 22:55:04 -0700 | [diff] [blame] | 1319 | dev_warn(cs->dev, |
| 1320 | "isochronous read: frame %d: " |
| 1321 | "offset (%d) + numbytes (%d) " |
| 1322 | "> BAS_INBUFSIZE\n", |
| 1323 | frame, offset, numbytes); |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 1324 | break; |
| 1325 | } |
| 1326 | gigaset_isoc_receive(rcvbuf + offset, numbytes, bcs); |
| 1327 | totleft -= numbytes; |
| 1328 | } |
| 1329 | if (unlikely(totleft > 0)) |
Tilman Schmidt | 784d585 | 2006-04-10 22:55:04 -0700 | [diff] [blame] | 1330 | dev_warn(cs->dev, |
| 1331 | "isochronous read: %d data bytes missing\n", |
| 1332 | totleft); |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 1333 | |
| 1334 | error: |
| 1335 | /* URB processed, resubmit */ |
| 1336 | for (frame = 0; frame < BAS_NUMFRAMES; frame++) { |
| 1337 | urb->iso_frame_desc[frame].status = 0; |
| 1338 | urb->iso_frame_desc[frame].actual_length = 0; |
| 1339 | } |
Tilman Schmidt | 784d585 | 2006-04-10 22:55:04 -0700 | [diff] [blame] | 1340 | /* urb->dev is clobbered by USB subsystem */ |
| 1341 | urb->dev = bcs->cs->hw.bas->udev; |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 1342 | urb->transfer_flags = URB_ISO_ASAP; |
| 1343 | urb->number_of_packets = BAS_NUMFRAMES; |
Christoph Lameter | 54e6ecb | 2006-12-06 20:33:16 -0800 | [diff] [blame] | 1344 | rc = usb_submit_urb(urb, GFP_ATOMIC); |
Tilman Schmidt | 73a8881 | 2006-04-22 02:35:30 -0700 | [diff] [blame] | 1345 | if (unlikely(rc != 0 && rc != -ENODEV)) { |
Tilman Schmidt | 784d585 | 2006-04-10 22:55:04 -0700 | [diff] [blame] | 1346 | dev_err(cs->dev, |
| 1347 | "could not resubmit isochronous read URB: %s\n", |
Tilman Schmidt | 73a8881 | 2006-04-22 02:35:30 -0700 | [diff] [blame] | 1348 | get_usb_rcmsg(rc)); |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 1349 | dump_urb(DEBUG_ISO, "resubmit iso read", urb); |
| 1350 | error_hangup(bcs); |
| 1351 | } |
| 1352 | } |
| 1353 | } |
| 1354 | |
| 1355 | /* Channel Operations */ |
| 1356 | /* ================== */ |
| 1357 | |
| 1358 | /* req_timeout |
| 1359 | * timeout routine for control output request |
| 1360 | * argument: |
| 1361 | * B channel control structure |
| 1362 | */ |
| 1363 | static void req_timeout(unsigned long data) |
| 1364 | { |
| 1365 | struct bc_state *bcs = (struct bc_state *) data; |
Tilman Schmidt | d48c778 | 2006-04-10 22:55:08 -0700 | [diff] [blame] | 1366 | struct bas_cardstate *ucs = bcs->cs->hw.bas; |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 1367 | int pending; |
| 1368 | unsigned long flags; |
| 1369 | |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 1370 | check_pending(ucs); |
| 1371 | |
| 1372 | spin_lock_irqsave(&ucs->lock, flags); |
| 1373 | pending = ucs->pending; |
| 1374 | ucs->pending = 0; |
| 1375 | spin_unlock_irqrestore(&ucs->lock, flags); |
| 1376 | |
| 1377 | switch (pending) { |
| 1378 | case 0: /* no pending request */ |
Tilman Schmidt | 784d585 | 2006-04-10 22:55:04 -0700 | [diff] [blame] | 1379 | gig_dbg(DEBUG_USBREQ, "%s: no request pending", __func__); |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 1380 | break; |
| 1381 | |
| 1382 | case HD_OPEN_ATCHANNEL: |
Tilman Schmidt | 784d585 | 2006-04-10 22:55:04 -0700 | [diff] [blame] | 1383 | dev_err(bcs->cs->dev, "timeout opening AT channel\n"); |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 1384 | error_reset(bcs->cs); |
| 1385 | break; |
| 1386 | |
| 1387 | case HD_OPEN_B2CHANNEL: |
| 1388 | case HD_OPEN_B1CHANNEL: |
Tilman Schmidt | 784d585 | 2006-04-10 22:55:04 -0700 | [diff] [blame] | 1389 | dev_err(bcs->cs->dev, "timeout opening channel %d\n", |
| 1390 | bcs->channel + 1); |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 1391 | error_hangup(bcs); |
| 1392 | break; |
| 1393 | |
| 1394 | case HD_CLOSE_ATCHANNEL: |
Tilman Schmidt | 784d585 | 2006-04-10 22:55:04 -0700 | [diff] [blame] | 1395 | dev_err(bcs->cs->dev, "timeout closing AT channel\n"); |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 1396 | break; |
| 1397 | |
| 1398 | case HD_CLOSE_B2CHANNEL: |
| 1399 | case HD_CLOSE_B1CHANNEL: |
Tilman Schmidt | 784d585 | 2006-04-10 22:55:04 -0700 | [diff] [blame] | 1400 | dev_err(bcs->cs->dev, "timeout closing channel %d\n", |
| 1401 | bcs->channel + 1); |
Tilman Schmidt | 06163f8 | 2006-06-26 00:25:33 -0700 | [diff] [blame] | 1402 | error_reset(bcs->cs); |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 1403 | break; |
| 1404 | |
| 1405 | default: |
Tilman Schmidt | 784d585 | 2006-04-10 22:55:04 -0700 | [diff] [blame] | 1406 | dev_warn(bcs->cs->dev, "request 0x%02x timed out, clearing\n", |
| 1407 | pending); |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 1408 | } |
| 1409 | } |
| 1410 | |
| 1411 | /* write_ctrl_callback |
| 1412 | * USB completion handler for control pipe output |
| 1413 | * called by the USB subsystem in interrupt context |
| 1414 | * parameter: |
| 1415 | * urb USB request block of completed request |
| 1416 | * urb->context = hardware specific controller state structure |
| 1417 | */ |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 1418 | static void write_ctrl_callback(struct urb *urb) |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 1419 | { |
Tilman Schmidt | d48c778 | 2006-04-10 22:55:08 -0700 | [diff] [blame] | 1420 | struct bas_cardstate *ucs = urb->context; |
Tilman Schmidt | 06163f8 | 2006-06-26 00:25:33 -0700 | [diff] [blame] | 1421 | int rc; |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 1422 | unsigned long flags; |
| 1423 | |
Tilman Schmidt | 06163f8 | 2006-06-26 00:25:33 -0700 | [diff] [blame] | 1424 | /* check status */ |
| 1425 | switch (urb->status) { |
| 1426 | case 0: /* normal completion */ |
| 1427 | spin_lock_irqsave(&ucs->lock, flags); |
| 1428 | switch (ucs->pending) { |
| 1429 | case HD_DEVICE_INIT_ACK: /* no reply expected */ |
| 1430 | del_timer(&ucs->timer_ctrl); |
| 1431 | ucs->pending = 0; |
| 1432 | break; |
| 1433 | } |
| 1434 | spin_unlock_irqrestore(&ucs->lock, flags); |
| 1435 | return; |
| 1436 | |
| 1437 | case -ENOENT: /* cancelled */ |
| 1438 | case -ECONNRESET: /* cancelled (async) */ |
| 1439 | case -EINPROGRESS: /* pending */ |
| 1440 | case -ENODEV: /* device removed */ |
| 1441 | case -ESHUTDOWN: /* device shut down */ |
| 1442 | /* ignore silently */ |
| 1443 | gig_dbg(DEBUG_USBREQ, "%s: %s", |
| 1444 | __func__, get_usb_statmsg(urb->status)); |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 1445 | break; |
Tilman Schmidt | 06163f8 | 2006-06-26 00:25:33 -0700 | [diff] [blame] | 1446 | |
| 1447 | default: /* any failure */ |
| 1448 | if (++ucs->retry_ctrl > BAS_RETRY) { |
| 1449 | dev_err(&ucs->interface->dev, |
| 1450 | "control request 0x%02x failed: %s\n", |
| 1451 | ucs->dr_ctrl.bRequest, |
| 1452 | get_usb_statmsg(urb->status)); |
| 1453 | break; /* give up */ |
| 1454 | } |
| 1455 | dev_notice(&ucs->interface->dev, |
| 1456 | "control request 0x%02x: %s, retry %d\n", |
| 1457 | ucs->dr_ctrl.bRequest, get_usb_statmsg(urb->status), |
| 1458 | ucs->retry_ctrl); |
| 1459 | /* urb->dev is clobbered by USB subsystem */ |
| 1460 | urb->dev = ucs->udev; |
Christoph Lameter | 54e6ecb | 2006-12-06 20:33:16 -0800 | [diff] [blame] | 1461 | rc = usb_submit_urb(urb, GFP_ATOMIC); |
Tilman Schmidt | 06163f8 | 2006-06-26 00:25:33 -0700 | [diff] [blame] | 1462 | if (unlikely(rc)) { |
| 1463 | dev_err(&ucs->interface->dev, |
| 1464 | "could not resubmit request 0x%02x: %s\n", |
| 1465 | ucs->dr_ctrl.bRequest, get_usb_rcmsg(rc)); |
| 1466 | break; |
| 1467 | } |
| 1468 | /* resubmitted */ |
| 1469 | return; |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 1470 | } |
Tilman Schmidt | 06163f8 | 2006-06-26 00:25:33 -0700 | [diff] [blame] | 1471 | |
| 1472 | /* failed, clear pending request */ |
| 1473 | spin_lock_irqsave(&ucs->lock, flags); |
| 1474 | del_timer(&ucs->timer_ctrl); |
| 1475 | ucs->pending = 0; |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 1476 | spin_unlock_irqrestore(&ucs->lock, flags); |
| 1477 | } |
| 1478 | |
| 1479 | /* req_submit |
| 1480 | * submit a control output request without message buffer to the Gigaset base |
| 1481 | * and optionally start a timeout |
| 1482 | * parameters: |
| 1483 | * bcs B channel control structure |
| 1484 | * req control request code (HD_*) |
| 1485 | * val control request parameter value (set to 0 if unused) |
| 1486 | * timeout timeout in seconds (0: no timeout) |
| 1487 | * return value: |
| 1488 | * 0 on success |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 1489 | * -EBUSY if another request is pending |
| 1490 | * any URB submission error code |
| 1491 | */ |
| 1492 | static int req_submit(struct bc_state *bcs, int req, int val, int timeout) |
| 1493 | { |
Tilman Schmidt | d48c778 | 2006-04-10 22:55:08 -0700 | [diff] [blame] | 1494 | struct bas_cardstate *ucs = bcs->cs->hw.bas; |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 1495 | int ret; |
| 1496 | unsigned long flags; |
| 1497 | |
Tilman Schmidt | 784d585 | 2006-04-10 22:55:04 -0700 | [diff] [blame] | 1498 | gig_dbg(DEBUG_USBREQ, "-------> 0x%02x (%d)", req, val); |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 1499 | |
| 1500 | spin_lock_irqsave(&ucs->lock, flags); |
| 1501 | if (ucs->pending) { |
| 1502 | spin_unlock_irqrestore(&ucs->lock, flags); |
Tilman Schmidt | 784d585 | 2006-04-10 22:55:04 -0700 | [diff] [blame] | 1503 | dev_err(bcs->cs->dev, |
| 1504 | "submission of request 0x%02x failed: " |
| 1505 | "request 0x%02x still pending\n", |
| 1506 | req, ucs->pending); |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 1507 | return -EBUSY; |
| 1508 | } |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 1509 | |
| 1510 | ucs->dr_ctrl.bRequestType = OUT_VENDOR_REQ; |
| 1511 | ucs->dr_ctrl.bRequest = req; |
| 1512 | ucs->dr_ctrl.wValue = cpu_to_le16(val); |
| 1513 | ucs->dr_ctrl.wIndex = 0; |
| 1514 | ucs->dr_ctrl.wLength = 0; |
| 1515 | usb_fill_control_urb(ucs->urb_ctrl, ucs->udev, |
Tilman Schmidt | 784d585 | 2006-04-10 22:55:04 -0700 | [diff] [blame] | 1516 | usb_sndctrlpipe(ucs->udev, 0), |
| 1517 | (unsigned char*) &ucs->dr_ctrl, NULL, 0, |
| 1518 | write_ctrl_callback, ucs); |
Tilman Schmidt | 06163f8 | 2006-06-26 00:25:33 -0700 | [diff] [blame] | 1519 | ucs->retry_ctrl = 0; |
Christoph Lameter | 54e6ecb | 2006-12-06 20:33:16 -0800 | [diff] [blame] | 1520 | ret = usb_submit_urb(ucs->urb_ctrl, GFP_ATOMIC); |
Tilman Schmidt | 06163f8 | 2006-06-26 00:25:33 -0700 | [diff] [blame] | 1521 | if (unlikely(ret)) { |
Tilman Schmidt | 784d585 | 2006-04-10 22:55:04 -0700 | [diff] [blame] | 1522 | dev_err(bcs->cs->dev, "could not submit request 0x%02x: %s\n", |
Tilman Schmidt | 06163f8 | 2006-06-26 00:25:33 -0700 | [diff] [blame] | 1523 | req, get_usb_rcmsg(ret)); |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 1524 | spin_unlock_irqrestore(&ucs->lock, flags); |
| 1525 | return ret; |
| 1526 | } |
| 1527 | ucs->pending = req; |
| 1528 | |
| 1529 | if (timeout > 0) { |
Tilman Schmidt | 784d585 | 2006-04-10 22:55:04 -0700 | [diff] [blame] | 1530 | gig_dbg(DEBUG_USBREQ, "setting timeout of %d/10 secs", timeout); |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 1531 | ucs->timer_ctrl.expires = jiffies + timeout * HZ / 10; |
| 1532 | ucs->timer_ctrl.data = (unsigned long) bcs; |
| 1533 | ucs->timer_ctrl.function = req_timeout; |
| 1534 | add_timer(&ucs->timer_ctrl); |
| 1535 | } |
| 1536 | |
| 1537 | spin_unlock_irqrestore(&ucs->lock, flags); |
| 1538 | return 0; |
| 1539 | } |
| 1540 | |
| 1541 | /* gigaset_init_bchannel |
| 1542 | * called by common.c to connect a B channel |
| 1543 | * initialize isochronous I/O and tell the Gigaset base to open the channel |
| 1544 | * argument: |
| 1545 | * B channel control structure |
| 1546 | * return value: |
| 1547 | * 0 on success, error code < 0 on error |
| 1548 | */ |
| 1549 | static int gigaset_init_bchannel(struct bc_state *bcs) |
| 1550 | { |
| 1551 | int req, ret; |
Tilman Schmidt | 73a8881 | 2006-04-22 02:35:30 -0700 | [diff] [blame] | 1552 | unsigned long flags; |
| 1553 | |
| 1554 | spin_lock_irqsave(&bcs->cs->lock, flags); |
| 1555 | if (unlikely(!bcs->cs->connected)) { |
| 1556 | gig_dbg(DEBUG_USBREQ, "%s: not connected", __func__); |
| 1557 | spin_unlock_irqrestore(&bcs->cs->lock, flags); |
| 1558 | return -ENODEV; |
| 1559 | } |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 1560 | |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 1561 | if ((ret = starturbs(bcs)) < 0) { |
Tilman Schmidt | 784d585 | 2006-04-10 22:55:04 -0700 | [diff] [blame] | 1562 | dev_err(bcs->cs->dev, |
Tilman Schmidt | 73a8881 | 2006-04-22 02:35:30 -0700 | [diff] [blame] | 1563 | "could not start isochronous I/O for channel B%d: %s\n", |
| 1564 | bcs->channel + 1, |
| 1565 | ret == -EFAULT ? "null URB" : get_usb_rcmsg(ret)); |
| 1566 | if (ret != -ENODEV) |
| 1567 | error_hangup(bcs); |
| 1568 | spin_unlock_irqrestore(&bcs->cs->lock, flags); |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 1569 | return ret; |
| 1570 | } |
| 1571 | |
| 1572 | req = bcs->channel ? HD_OPEN_B2CHANNEL : HD_OPEN_B1CHANNEL; |
| 1573 | if ((ret = req_submit(bcs, req, 0, BAS_TIMEOUT)) < 0) { |
Tilman Schmidt | 73a8881 | 2006-04-22 02:35:30 -0700 | [diff] [blame] | 1574 | dev_err(bcs->cs->dev, "could not open channel B%d\n", |
| 1575 | bcs->channel + 1); |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 1576 | stopurbs(bcs->hw.bas); |
Tilman Schmidt | 73a8881 | 2006-04-22 02:35:30 -0700 | [diff] [blame] | 1577 | if (ret != -ENODEV) |
| 1578 | error_hangup(bcs); |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 1579 | } |
Tilman Schmidt | 73a8881 | 2006-04-22 02:35:30 -0700 | [diff] [blame] | 1580 | |
| 1581 | spin_unlock_irqrestore(&bcs->cs->lock, flags); |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 1582 | return ret; |
| 1583 | } |
| 1584 | |
| 1585 | /* gigaset_close_bchannel |
| 1586 | * called by common.c to disconnect a B channel |
| 1587 | * tell the Gigaset base to close the channel |
| 1588 | * stopping isochronous I/O and LL notification will be done when the |
| 1589 | * acknowledgement for the close arrives |
| 1590 | * argument: |
| 1591 | * B channel control structure |
| 1592 | * return value: |
| 1593 | * 0 on success, error code < 0 on error |
| 1594 | */ |
| 1595 | static int gigaset_close_bchannel(struct bc_state *bcs) |
| 1596 | { |
| 1597 | int req, ret; |
Tilman Schmidt | 73a8881 | 2006-04-22 02:35:30 -0700 | [diff] [blame] | 1598 | unsigned long flags; |
| 1599 | |
| 1600 | spin_lock_irqsave(&bcs->cs->lock, flags); |
| 1601 | if (unlikely(!bcs->cs->connected)) { |
| 1602 | spin_unlock_irqrestore(&bcs->cs->lock, flags); |
| 1603 | gig_dbg(DEBUG_USBREQ, "%s: not connected", __func__); |
| 1604 | return -ENODEV; |
| 1605 | } |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 1606 | |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 1607 | if (!(atomic_read(&bcs->cs->hw.bas->basstate) & |
| 1608 | (bcs->channel ? BS_B2OPEN : BS_B1OPEN))) { |
| 1609 | /* channel not running: just signal common.c */ |
Tilman Schmidt | 73a8881 | 2006-04-22 02:35:30 -0700 | [diff] [blame] | 1610 | spin_unlock_irqrestore(&bcs->cs->lock, flags); |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 1611 | gigaset_bchannel_down(bcs); |
| 1612 | return 0; |
| 1613 | } |
| 1614 | |
Tilman Schmidt | 73a8881 | 2006-04-22 02:35:30 -0700 | [diff] [blame] | 1615 | /* channel running: tell device to close it */ |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 1616 | req = bcs->channel ? HD_CLOSE_B2CHANNEL : HD_CLOSE_B1CHANNEL; |
| 1617 | if ((ret = req_submit(bcs, req, 0, BAS_TIMEOUT)) < 0) |
Tilman Schmidt | 73a8881 | 2006-04-22 02:35:30 -0700 | [diff] [blame] | 1618 | dev_err(bcs->cs->dev, "closing channel B%d failed\n", |
| 1619 | bcs->channel + 1); |
| 1620 | |
| 1621 | spin_unlock_irqrestore(&bcs->cs->lock, flags); |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 1622 | return ret; |
| 1623 | } |
| 1624 | |
| 1625 | /* Device Operations */ |
| 1626 | /* ================= */ |
| 1627 | |
| 1628 | /* complete_cb |
| 1629 | * unqueue first command buffer from queue, waking any sleepers |
| 1630 | * must be called with cs->cmdlock held |
| 1631 | * parameter: |
| 1632 | * cs controller state structure |
| 1633 | */ |
| 1634 | static void complete_cb(struct cardstate *cs) |
| 1635 | { |
Tilman Schmidt | d48c778 | 2006-04-10 22:55:08 -0700 | [diff] [blame] | 1636 | struct cmdbuf_t *cb = cs->cmdbuf; |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 1637 | |
| 1638 | /* unqueue completed buffer */ |
| 1639 | cs->cmdbytes -= cs->curlen; |
Tilman Schmidt | 784d585 | 2006-04-10 22:55:04 -0700 | [diff] [blame] | 1640 | gig_dbg(DEBUG_TRANSCMD|DEBUG_LOCKCMD, |
| 1641 | "write_command: sent %u bytes, %u left", |
| 1642 | cs->curlen, cs->cmdbytes); |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 1643 | if ((cs->cmdbuf = cb->next) != NULL) { |
| 1644 | cs->cmdbuf->prev = NULL; |
| 1645 | cs->curlen = cs->cmdbuf->len; |
| 1646 | } else { |
| 1647 | cs->lastcmdbuf = NULL; |
| 1648 | cs->curlen = 0; |
| 1649 | } |
| 1650 | |
| 1651 | if (cb->wake_tasklet) |
| 1652 | tasklet_schedule(cb->wake_tasklet); |
| 1653 | |
| 1654 | kfree(cb); |
| 1655 | } |
| 1656 | |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 1657 | /* write_command_callback |
| 1658 | * USB completion handler for AT command transmission |
| 1659 | * called by the USB subsystem in interrupt context |
| 1660 | * parameter: |
| 1661 | * urb USB request block of completed request |
| 1662 | * urb->context = controller state structure |
| 1663 | */ |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 1664 | static void write_command_callback(struct urb *urb) |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 1665 | { |
Tilman Schmidt | d48c778 | 2006-04-10 22:55:08 -0700 | [diff] [blame] | 1666 | struct cardstate *cs = urb->context; |
| 1667 | struct bas_cardstate *ucs = cs->hw.bas; |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 1668 | unsigned long flags; |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 1669 | |
Tilman Schmidt | 73a8881 | 2006-04-22 02:35:30 -0700 | [diff] [blame] | 1670 | update_basstate(ucs, 0, BS_ATWRPEND); |
| 1671 | |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 1672 | /* check status */ |
| 1673 | switch (urb->status) { |
| 1674 | case 0: /* normal completion */ |
| 1675 | break; |
Tilman Schmidt | 73a8881 | 2006-04-22 02:35:30 -0700 | [diff] [blame] | 1676 | case -ENOENT: /* cancelled */ |
| 1677 | case -ECONNRESET: /* cancelled (async) */ |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 1678 | case -EINPROGRESS: /* pending */ |
Tilman Schmidt | 73a8881 | 2006-04-22 02:35:30 -0700 | [diff] [blame] | 1679 | case -ENODEV: /* device removed */ |
| 1680 | case -ESHUTDOWN: /* device shut down */ |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 1681 | /* ignore silently */ |
Tilman Schmidt | 784d585 | 2006-04-10 22:55:04 -0700 | [diff] [blame] | 1682 | gig_dbg(DEBUG_USBREQ, "%s: %s", |
| 1683 | __func__, get_usb_statmsg(urb->status)); |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 1684 | return; |
| 1685 | default: /* any failure */ |
| 1686 | if (++ucs->retry_cmd_out > BAS_RETRY) { |
Tilman Schmidt | 784d585 | 2006-04-10 22:55:04 -0700 | [diff] [blame] | 1687 | dev_warn(cs->dev, |
| 1688 | "command write: %s, " |
| 1689 | "giving up after %d retries\n", |
| 1690 | get_usb_statmsg(urb->status), |
| 1691 | ucs->retry_cmd_out); |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 1692 | break; |
| 1693 | } |
| 1694 | if (cs->cmdbuf == NULL) { |
Tilman Schmidt | 784d585 | 2006-04-10 22:55:04 -0700 | [diff] [blame] | 1695 | dev_warn(cs->dev, |
| 1696 | "command write: %s, " |
| 1697 | "cannot retry - cmdbuf gone\n", |
| 1698 | get_usb_statmsg(urb->status)); |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 1699 | break; |
| 1700 | } |
Tilman Schmidt | 784d585 | 2006-04-10 22:55:04 -0700 | [diff] [blame] | 1701 | dev_notice(cs->dev, "command write: %s, retry %d\n", |
| 1702 | get_usb_statmsg(urb->status), ucs->retry_cmd_out); |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 1703 | if (atwrite_submit(cs, cs->cmdbuf->buf, cs->cmdbuf->len) >= 0) |
| 1704 | /* resubmitted - bypass regular exit block */ |
| 1705 | return; |
| 1706 | /* command send failed, assume base still waiting */ |
| 1707 | update_basstate(ucs, BS_ATREADY, 0); |
| 1708 | } |
| 1709 | |
| 1710 | spin_lock_irqsave(&cs->cmdlock, flags); |
| 1711 | if (cs->cmdbuf != NULL) |
| 1712 | complete_cb(cs); |
| 1713 | spin_unlock_irqrestore(&cs->cmdlock, flags); |
| 1714 | } |
| 1715 | |
| 1716 | /* atrdy_timeout |
| 1717 | * timeout routine for AT command transmission |
| 1718 | * argument: |
| 1719 | * controller state structure |
| 1720 | */ |
| 1721 | static void atrdy_timeout(unsigned long data) |
| 1722 | { |
| 1723 | struct cardstate *cs = (struct cardstate *) data; |
Tilman Schmidt | d48c778 | 2006-04-10 22:55:08 -0700 | [diff] [blame] | 1724 | struct bas_cardstate *ucs = cs->hw.bas; |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 1725 | |
Tilman Schmidt | 784d585 | 2006-04-10 22:55:04 -0700 | [diff] [blame] | 1726 | dev_warn(cs->dev, "timeout waiting for HD_READY_SEND_ATDATA\n"); |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 1727 | |
| 1728 | /* fake the missing signal - what else can I do? */ |
| 1729 | update_basstate(ucs, BS_ATREADY, BS_ATTIMER); |
| 1730 | start_cbsend(cs); |
| 1731 | } |
| 1732 | |
| 1733 | /* atwrite_submit |
| 1734 | * submit an HD_WRITE_ATMESSAGE command URB |
| 1735 | * parameters: |
| 1736 | * cs controller state structure |
| 1737 | * buf buffer containing command to send |
| 1738 | * len length of command to send |
| 1739 | * return value: |
| 1740 | * 0 on success |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 1741 | * -EBUSY if another request is pending |
| 1742 | * any URB submission error code |
| 1743 | */ |
| 1744 | static int atwrite_submit(struct cardstate *cs, unsigned char *buf, int len) |
| 1745 | { |
Tilman Schmidt | d48c778 | 2006-04-10 22:55:08 -0700 | [diff] [blame] | 1746 | struct bas_cardstate *ucs = cs->hw.bas; |
Tilman Schmidt | 73a8881 | 2006-04-22 02:35:30 -0700 | [diff] [blame] | 1747 | int rc; |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 1748 | |
Tilman Schmidt | 784d585 | 2006-04-10 22:55:04 -0700 | [diff] [blame] | 1749 | gig_dbg(DEBUG_USBREQ, "-------> HD_WRITE_ATMESSAGE (%d)", len); |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 1750 | |
Tilman Schmidt | 73a8881 | 2006-04-22 02:35:30 -0700 | [diff] [blame] | 1751 | if (update_basstate(ucs, BS_ATWRPEND, 0) & BS_ATWRPEND) { |
Tilman Schmidt | 784d585 | 2006-04-10 22:55:04 -0700 | [diff] [blame] | 1752 | dev_err(cs->dev, |
| 1753 | "could not submit HD_WRITE_ATMESSAGE: URB busy\n"); |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 1754 | return -EBUSY; |
| 1755 | } |
| 1756 | |
| 1757 | ucs->dr_cmd_out.bRequestType = OUT_VENDOR_REQ; |
| 1758 | ucs->dr_cmd_out.bRequest = HD_WRITE_ATMESSAGE; |
| 1759 | ucs->dr_cmd_out.wValue = 0; |
| 1760 | ucs->dr_cmd_out.wIndex = 0; |
| 1761 | ucs->dr_cmd_out.wLength = cpu_to_le16(len); |
| 1762 | usb_fill_control_urb(ucs->urb_cmd_out, ucs->udev, |
| 1763 | usb_sndctrlpipe(ucs->udev, 0), |
| 1764 | (unsigned char*) &ucs->dr_cmd_out, buf, len, |
| 1765 | write_command_callback, cs); |
Christoph Lameter | 54e6ecb | 2006-12-06 20:33:16 -0800 | [diff] [blame] | 1766 | rc = usb_submit_urb(ucs->urb_cmd_out, GFP_ATOMIC); |
Tilman Schmidt | 73a8881 | 2006-04-22 02:35:30 -0700 | [diff] [blame] | 1767 | if (unlikely(rc)) { |
| 1768 | update_basstate(ucs, 0, BS_ATWRPEND); |
Tilman Schmidt | 784d585 | 2006-04-10 22:55:04 -0700 | [diff] [blame] | 1769 | dev_err(cs->dev, "could not submit HD_WRITE_ATMESSAGE: %s\n", |
Tilman Schmidt | 73a8881 | 2006-04-22 02:35:30 -0700 | [diff] [blame] | 1770 | get_usb_rcmsg(rc)); |
| 1771 | return rc; |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 1772 | } |
| 1773 | |
Tilman Schmidt | 73a8881 | 2006-04-22 02:35:30 -0700 | [diff] [blame] | 1774 | /* submitted successfully, start timeout if necessary */ |
| 1775 | if (!(update_basstate(ucs, BS_ATTIMER, BS_ATREADY) & BS_ATTIMER)) { |
Tilman Schmidt | 784d585 | 2006-04-10 22:55:04 -0700 | [diff] [blame] | 1776 | gig_dbg(DEBUG_OUTPUT, "setting ATREADY timeout of %d/10 secs", |
| 1777 | ATRDY_TIMEOUT); |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 1778 | ucs->timer_atrdy.expires = jiffies + ATRDY_TIMEOUT * HZ / 10; |
| 1779 | ucs->timer_atrdy.data = (unsigned long) cs; |
| 1780 | ucs->timer_atrdy.function = atrdy_timeout; |
| 1781 | add_timer(&ucs->timer_atrdy); |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 1782 | } |
| 1783 | return 0; |
| 1784 | } |
| 1785 | |
| 1786 | /* start_cbsend |
| 1787 | * start transmission of AT command queue if necessary |
| 1788 | * parameter: |
| 1789 | * cs controller state structure |
| 1790 | * return value: |
| 1791 | * 0 on success |
| 1792 | * error code < 0 on error |
| 1793 | */ |
| 1794 | static int start_cbsend(struct cardstate *cs) |
| 1795 | { |
| 1796 | struct cmdbuf_t *cb; |
Tilman Schmidt | d48c778 | 2006-04-10 22:55:08 -0700 | [diff] [blame] | 1797 | struct bas_cardstate *ucs = cs->hw.bas; |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 1798 | unsigned long flags; |
| 1799 | int rc; |
| 1800 | int retval = 0; |
| 1801 | |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 1802 | /* check if AT channel is open */ |
| 1803 | if (!(atomic_read(&ucs->basstate) & BS_ATOPEN)) { |
Tilman Schmidt | 784d585 | 2006-04-10 22:55:04 -0700 | [diff] [blame] | 1804 | gig_dbg(DEBUG_TRANSCMD|DEBUG_LOCKCMD, "AT channel not open"); |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 1805 | rc = req_submit(cs->bcs, HD_OPEN_ATCHANNEL, 0, BAS_TIMEOUT); |
| 1806 | if (rc < 0) { |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 1807 | /* flush command queue */ |
| 1808 | spin_lock_irqsave(&cs->cmdlock, flags); |
| 1809 | while (cs->cmdbuf != NULL) |
| 1810 | complete_cb(cs); |
| 1811 | spin_unlock_irqrestore(&cs->cmdlock, flags); |
| 1812 | } |
| 1813 | return rc; |
| 1814 | } |
| 1815 | |
| 1816 | /* try to send first command in queue */ |
| 1817 | spin_lock_irqsave(&cs->cmdlock, flags); |
| 1818 | |
| 1819 | while ((cb = cs->cmdbuf) != NULL && |
| 1820 | atomic_read(&ucs->basstate) & BS_ATREADY) { |
| 1821 | ucs->retry_cmd_out = 0; |
| 1822 | rc = atwrite_submit(cs, cb->buf, cb->len); |
| 1823 | if (unlikely(rc)) { |
| 1824 | retval = rc; |
| 1825 | complete_cb(cs); |
| 1826 | } |
| 1827 | } |
| 1828 | |
| 1829 | spin_unlock_irqrestore(&cs->cmdlock, flags); |
| 1830 | return retval; |
| 1831 | } |
| 1832 | |
| 1833 | /* gigaset_write_cmd |
| 1834 | * This function is called by the device independent part of the driver |
| 1835 | * to transmit an AT command string to the Gigaset device. |
| 1836 | * It encapsulates the device specific method for transmission over the |
| 1837 | * direct USB connection to the base. |
| 1838 | * The command string is added to the queue of commands to send, and |
| 1839 | * USB transmission is started if necessary. |
| 1840 | * parameters: |
| 1841 | * cs controller state structure |
| 1842 | * buf command string to send |
| 1843 | * len number of bytes to send (max. IF_WRITEBUF) |
Tilman Schmidt | 917f508 | 2006-04-10 22:55:00 -0700 | [diff] [blame] | 1844 | * wake_tasklet tasklet to run when transmission is completed |
| 1845 | * (NULL if none) |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 1846 | * return value: |
| 1847 | * number of bytes queued on success |
| 1848 | * error code < 0 on error |
| 1849 | */ |
| 1850 | static int gigaset_write_cmd(struct cardstate *cs, |
Tilman Schmidt | 784d585 | 2006-04-10 22:55:04 -0700 | [diff] [blame] | 1851 | const unsigned char *buf, int len, |
| 1852 | struct tasklet_struct *wake_tasklet) |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 1853 | { |
| 1854 | struct cmdbuf_t *cb; |
| 1855 | unsigned long flags; |
Tilman Schmidt | 39f0722 | 2006-12-13 00:33:52 -0800 | [diff] [blame] | 1856 | int rc; |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 1857 | |
| 1858 | gigaset_dbg_buffer(atomic_read(&cs->mstate) != MS_LOCKED ? |
Tilman Schmidt | 784d585 | 2006-04-10 22:55:04 -0700 | [diff] [blame] | 1859 | DEBUG_TRANSCMD : DEBUG_LOCKCMD, |
Tilman Schmidt | 0137150 | 2006-04-10 22:55:11 -0700 | [diff] [blame] | 1860 | "CMD Transmit", len, buf); |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 1861 | |
Tilman Schmidt | 39f0722 | 2006-12-13 00:33:52 -0800 | [diff] [blame] | 1862 | if (len <= 0) { |
| 1863 | /* nothing to do */ |
| 1864 | rc = 0; |
| 1865 | goto notqueued; |
| 1866 | } |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 1867 | |
| 1868 | if (len > IF_WRITEBUF) |
| 1869 | len = IF_WRITEBUF; |
| 1870 | if (!(cb = kmalloc(sizeof(struct cmdbuf_t) + len, GFP_ATOMIC))) { |
Tilman Schmidt | 784d585 | 2006-04-10 22:55:04 -0700 | [diff] [blame] | 1871 | dev_err(cs->dev, "%s: out of memory\n", __func__); |
Tilman Schmidt | 39f0722 | 2006-12-13 00:33:52 -0800 | [diff] [blame] | 1872 | rc = -ENOMEM; |
| 1873 | goto notqueued; |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 1874 | } |
| 1875 | |
| 1876 | memcpy(cb->buf, buf, len); |
| 1877 | cb->len = len; |
| 1878 | cb->offset = 0; |
| 1879 | cb->next = NULL; |
| 1880 | cb->wake_tasklet = wake_tasklet; |
| 1881 | |
| 1882 | spin_lock_irqsave(&cs->cmdlock, flags); |
| 1883 | cb->prev = cs->lastcmdbuf; |
| 1884 | if (cs->lastcmdbuf) |
| 1885 | cs->lastcmdbuf->next = cb; |
| 1886 | else { |
| 1887 | cs->cmdbuf = cb; |
| 1888 | cs->curlen = len; |
| 1889 | } |
| 1890 | cs->cmdbytes += len; |
| 1891 | cs->lastcmdbuf = cb; |
| 1892 | spin_unlock_irqrestore(&cs->cmdlock, flags); |
| 1893 | |
Tilman Schmidt | 73a8881 | 2006-04-22 02:35:30 -0700 | [diff] [blame] | 1894 | spin_lock_irqsave(&cs->lock, flags); |
| 1895 | if (unlikely(!cs->connected)) { |
| 1896 | spin_unlock_irqrestore(&cs->lock, flags); |
| 1897 | gig_dbg(DEBUG_USBREQ, "%s: not connected", __func__); |
Tilman Schmidt | 39f0722 | 2006-12-13 00:33:52 -0800 | [diff] [blame] | 1898 | /* flush command queue */ |
| 1899 | spin_lock_irqsave(&cs->cmdlock, flags); |
| 1900 | while (cs->cmdbuf != NULL) |
| 1901 | complete_cb(cs); |
| 1902 | spin_unlock_irqrestore(&cs->cmdlock, flags); |
Tilman Schmidt | 73a8881 | 2006-04-22 02:35:30 -0700 | [diff] [blame] | 1903 | return -ENODEV; |
| 1904 | } |
Tilman Schmidt | 39f0722 | 2006-12-13 00:33:52 -0800 | [diff] [blame] | 1905 | rc = start_cbsend(cs); |
Tilman Schmidt | 73a8881 | 2006-04-22 02:35:30 -0700 | [diff] [blame] | 1906 | spin_unlock_irqrestore(&cs->lock, flags); |
Tilman Schmidt | 39f0722 | 2006-12-13 00:33:52 -0800 | [diff] [blame] | 1907 | return rc < 0 ? rc : len; |
| 1908 | |
| 1909 | notqueued: /* request handled without queuing */ |
| 1910 | if (wake_tasklet) |
| 1911 | tasklet_schedule(wake_tasklet); |
| 1912 | return rc; |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 1913 | } |
| 1914 | |
| 1915 | /* gigaset_write_room |
| 1916 | * tty_driver.write_room interface routine |
Tilman Schmidt | 917f508 | 2006-04-10 22:55:00 -0700 | [diff] [blame] | 1917 | * return number of characters the driver will accept to be written via |
| 1918 | * gigaset_write_cmd |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 1919 | * parameter: |
| 1920 | * controller state structure |
| 1921 | * return value: |
| 1922 | * number of characters |
| 1923 | */ |
| 1924 | static int gigaset_write_room(struct cardstate *cs) |
| 1925 | { |
| 1926 | return IF_WRITEBUF; |
| 1927 | } |
| 1928 | |
| 1929 | /* gigaset_chars_in_buffer |
| 1930 | * tty_driver.chars_in_buffer interface routine |
| 1931 | * return number of characters waiting to be sent |
| 1932 | * parameter: |
| 1933 | * controller state structure |
| 1934 | * return value: |
| 1935 | * number of characters |
| 1936 | */ |
| 1937 | static int gigaset_chars_in_buffer(struct cardstate *cs) |
| 1938 | { |
| 1939 | unsigned long flags; |
| 1940 | unsigned bytes; |
| 1941 | |
| 1942 | spin_lock_irqsave(&cs->cmdlock, flags); |
| 1943 | bytes = cs->cmdbytes; |
| 1944 | spin_unlock_irqrestore(&cs->cmdlock, flags); |
| 1945 | |
| 1946 | return bytes; |
| 1947 | } |
| 1948 | |
| 1949 | /* gigaset_brkchars |
| 1950 | * implementation of ioctl(GIGASET_BRKCHARS) |
| 1951 | * parameter: |
| 1952 | * controller state structure |
| 1953 | * return value: |
| 1954 | * -EINVAL (unimplemented function) |
| 1955 | */ |
| 1956 | static int gigaset_brkchars(struct cardstate *cs, const unsigned char buf[6]) |
| 1957 | { |
| 1958 | return -EINVAL; |
| 1959 | } |
| 1960 | |
| 1961 | |
| 1962 | /* Device Initialization/Shutdown */ |
| 1963 | /* ============================== */ |
| 1964 | |
| 1965 | /* Free hardware dependent part of the B channel structure |
| 1966 | * parameter: |
| 1967 | * bcs B channel structure |
| 1968 | * return value: |
| 1969 | * !=0 on success |
| 1970 | */ |
| 1971 | static int gigaset_freebcshw(struct bc_state *bcs) |
| 1972 | { |
Tilman Schmidt | 73a8881 | 2006-04-22 02:35:30 -0700 | [diff] [blame] | 1973 | struct bas_bc_state *ubc = bcs->hw.bas; |
| 1974 | int i; |
| 1975 | |
| 1976 | if (!ubc) |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 1977 | return 0; |
| 1978 | |
Tilman Schmidt | 73a8881 | 2006-04-22 02:35:30 -0700 | [diff] [blame] | 1979 | /* kill URBs and tasklets before freeing - better safe than sorry */ |
| 1980 | atomic_set(&ubc->running, 0); |
Tilman Schmidt | 39f0722 | 2006-12-13 00:33:52 -0800 | [diff] [blame] | 1981 | gig_dbg(DEBUG_INIT, "%s: killing iso URBs", __func__); |
| 1982 | for (i = 0; i < BAS_OUTURBS; ++i) { |
| 1983 | usb_kill_urb(ubc->isoouturbs[i].urb); |
| 1984 | usb_free_urb(ubc->isoouturbs[i].urb); |
| 1985 | } |
| 1986 | for (i = 0; i < BAS_INURBS; ++i) { |
| 1987 | usb_kill_urb(ubc->isoinurbs[i]); |
| 1988 | usb_free_urb(ubc->isoinurbs[i]); |
| 1989 | } |
Tilman Schmidt | 73a8881 | 2006-04-22 02:35:30 -0700 | [diff] [blame] | 1990 | tasklet_kill(&ubc->sent_tasklet); |
| 1991 | tasklet_kill(&ubc->rcvd_tasklet); |
| 1992 | kfree(ubc->isooutbuf); |
| 1993 | kfree(ubc); |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 1994 | bcs->hw.bas = NULL; |
| 1995 | return 1; |
| 1996 | } |
| 1997 | |
| 1998 | /* Initialize hardware dependent part of the B channel structure |
| 1999 | * parameter: |
| 2000 | * bcs B channel structure |
| 2001 | * return value: |
| 2002 | * !=0 on success |
| 2003 | */ |
| 2004 | static int gigaset_initbcshw(struct bc_state *bcs) |
| 2005 | { |
| 2006 | int i; |
| 2007 | struct bas_bc_state *ubc; |
| 2008 | |
| 2009 | bcs->hw.bas = ubc = kmalloc(sizeof(struct bas_bc_state), GFP_KERNEL); |
| 2010 | if (!ubc) { |
| 2011 | err("could not allocate bas_bc_state"); |
| 2012 | return 0; |
| 2013 | } |
| 2014 | |
| 2015 | atomic_set(&ubc->running, 0); |
| 2016 | atomic_set(&ubc->corrbytes, 0); |
| 2017 | spin_lock_init(&ubc->isooutlock); |
| 2018 | for (i = 0; i < BAS_OUTURBS; ++i) { |
| 2019 | ubc->isoouturbs[i].urb = NULL; |
| 2020 | ubc->isoouturbs[i].bcs = bcs; |
| 2021 | } |
| 2022 | ubc->isooutdone = ubc->isooutfree = ubc->isooutovfl = NULL; |
| 2023 | ubc->numsub = 0; |
| 2024 | if (!(ubc->isooutbuf = kmalloc(sizeof(struct isowbuf_t), GFP_KERNEL))) { |
| 2025 | err("could not allocate isochronous output buffer"); |
| 2026 | kfree(ubc); |
| 2027 | bcs->hw.bas = NULL; |
| 2028 | return 0; |
| 2029 | } |
| 2030 | tasklet_init(&ubc->sent_tasklet, |
Tilman Schmidt | 784d585 | 2006-04-10 22:55:04 -0700 | [diff] [blame] | 2031 | &write_iso_tasklet, (unsigned long) bcs); |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 2032 | |
| 2033 | spin_lock_init(&ubc->isoinlock); |
| 2034 | for (i = 0; i < BAS_INURBS; ++i) |
| 2035 | ubc->isoinurbs[i] = NULL; |
| 2036 | ubc->isoindone = NULL; |
| 2037 | ubc->loststatus = -EINPROGRESS; |
| 2038 | ubc->isoinlost = 0; |
| 2039 | ubc->seqlen = 0; |
| 2040 | ubc->inbyte = 0; |
| 2041 | ubc->inbits = 0; |
| 2042 | ubc->goodbytes = 0; |
| 2043 | ubc->alignerrs = 0; |
| 2044 | ubc->fcserrs = 0; |
| 2045 | ubc->frameerrs = 0; |
| 2046 | ubc->giants = 0; |
| 2047 | ubc->runts = 0; |
| 2048 | ubc->aborts = 0; |
| 2049 | ubc->shared0s = 0; |
| 2050 | ubc->stolen0s = 0; |
| 2051 | tasklet_init(&ubc->rcvd_tasklet, |
Tilman Schmidt | 784d585 | 2006-04-10 22:55:04 -0700 | [diff] [blame] | 2052 | &read_iso_tasklet, (unsigned long) bcs); |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 2053 | return 1; |
| 2054 | } |
| 2055 | |
| 2056 | static void gigaset_reinitbcshw(struct bc_state *bcs) |
| 2057 | { |
| 2058 | struct bas_bc_state *ubc = bcs->hw.bas; |
| 2059 | |
| 2060 | atomic_set(&bcs->hw.bas->running, 0); |
| 2061 | atomic_set(&bcs->hw.bas->corrbytes, 0); |
| 2062 | bcs->hw.bas->numsub = 0; |
| 2063 | spin_lock_init(&ubc->isooutlock); |
| 2064 | spin_lock_init(&ubc->isoinlock); |
| 2065 | ubc->loststatus = -EINPROGRESS; |
| 2066 | } |
| 2067 | |
| 2068 | static void gigaset_freecshw(struct cardstate *cs) |
| 2069 | { |
Tilman Schmidt | 73a8881 | 2006-04-22 02:35:30 -0700 | [diff] [blame] | 2070 | /* timers, URBs and rcvbuf are disposed of in disconnect */ |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 2071 | kfree(cs->hw.bas); |
Tilman Schmidt | 73a8881 | 2006-04-22 02:35:30 -0700 | [diff] [blame] | 2072 | cs->hw.bas = NULL; |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 2073 | } |
| 2074 | |
| 2075 | static int gigaset_initcshw(struct cardstate *cs) |
| 2076 | { |
| 2077 | struct bas_cardstate *ucs; |
| 2078 | |
| 2079 | cs->hw.bas = ucs = kmalloc(sizeof *ucs, GFP_KERNEL); |
| 2080 | if (!ucs) |
| 2081 | return 0; |
| 2082 | |
| 2083 | ucs->urb_cmd_in = NULL; |
| 2084 | ucs->urb_cmd_out = NULL; |
| 2085 | ucs->rcvbuf = NULL; |
| 2086 | ucs->rcvbuf_size = 0; |
| 2087 | |
| 2088 | spin_lock_init(&ucs->lock); |
| 2089 | ucs->pending = 0; |
| 2090 | |
| 2091 | atomic_set(&ucs->basstate, 0); |
| 2092 | init_timer(&ucs->timer_ctrl); |
| 2093 | init_timer(&ucs->timer_atrdy); |
| 2094 | init_timer(&ucs->timer_cmd_in); |
| 2095 | |
| 2096 | return 1; |
| 2097 | } |
| 2098 | |
| 2099 | /* freeurbs |
| 2100 | * unlink and deallocate all URBs unconditionally |
| 2101 | * caller must make sure that no commands are still in progress |
| 2102 | * parameter: |
| 2103 | * cs controller state structure |
| 2104 | */ |
| 2105 | static void freeurbs(struct cardstate *cs) |
| 2106 | { |
Tilman Schmidt | d48c778 | 2006-04-10 22:55:08 -0700 | [diff] [blame] | 2107 | struct bas_cardstate *ucs = cs->hw.bas; |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 2108 | struct bas_bc_state *ubc; |
| 2109 | int i, j; |
| 2110 | |
Tilman Schmidt | 39f0722 | 2006-12-13 00:33:52 -0800 | [diff] [blame] | 2111 | gig_dbg(DEBUG_INIT, "%s: killing URBs", __func__); |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 2112 | for (j = 0; j < 2; ++j) { |
| 2113 | ubc = cs->bcs[j].hw.bas; |
Tilman Schmidt | 39f0722 | 2006-12-13 00:33:52 -0800 | [diff] [blame] | 2114 | for (i = 0; i < BAS_OUTURBS; ++i) { |
| 2115 | usb_kill_urb(ubc->isoouturbs[i].urb); |
| 2116 | usb_free_urb(ubc->isoouturbs[i].urb); |
| 2117 | ubc->isoouturbs[i].urb = NULL; |
| 2118 | } |
| 2119 | for (i = 0; i < BAS_INURBS; ++i) { |
| 2120 | usb_kill_urb(ubc->isoinurbs[i]); |
| 2121 | usb_free_urb(ubc->isoinurbs[i]); |
| 2122 | ubc->isoinurbs[i] = NULL; |
| 2123 | } |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 2124 | } |
Tilman Schmidt | 39f0722 | 2006-12-13 00:33:52 -0800 | [diff] [blame] | 2125 | usb_kill_urb(ucs->urb_int_in); |
| 2126 | usb_free_urb(ucs->urb_int_in); |
| 2127 | ucs->urb_int_in = NULL; |
| 2128 | usb_kill_urb(ucs->urb_cmd_out); |
| 2129 | usb_free_urb(ucs->urb_cmd_out); |
| 2130 | ucs->urb_cmd_out = NULL; |
| 2131 | usb_kill_urb(ucs->urb_cmd_in); |
| 2132 | usb_free_urb(ucs->urb_cmd_in); |
| 2133 | ucs->urb_cmd_in = NULL; |
| 2134 | usb_kill_urb(ucs->urb_ctrl); |
| 2135 | usb_free_urb(ucs->urb_ctrl); |
| 2136 | ucs->urb_ctrl = NULL; |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 2137 | } |
| 2138 | |
| 2139 | /* gigaset_probe |
| 2140 | * This function is called when a new USB device is connected. |
| 2141 | * It checks whether the new device is handled by this driver. |
| 2142 | */ |
| 2143 | static int gigaset_probe(struct usb_interface *interface, |
| 2144 | const struct usb_device_id *id) |
| 2145 | { |
| 2146 | struct usb_host_interface *hostif; |
| 2147 | struct usb_device *udev = interface_to_usbdev(interface); |
| 2148 | struct cardstate *cs = NULL; |
| 2149 | struct bas_cardstate *ucs = NULL; |
| 2150 | struct bas_bc_state *ubc; |
| 2151 | struct usb_endpoint_descriptor *endpoint; |
| 2152 | int i, j; |
Tilman Schmidt | 73a8881 | 2006-04-22 02:35:30 -0700 | [diff] [blame] | 2153 | int rc; |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 2154 | |
Tilman Schmidt | 784d585 | 2006-04-10 22:55:04 -0700 | [diff] [blame] | 2155 | gig_dbg(DEBUG_ANY, |
| 2156 | "%s: Check if device matches .. (Vendor: 0x%x, Product: 0x%x)", |
| 2157 | __func__, le16_to_cpu(udev->descriptor.idVendor), |
| 2158 | le16_to_cpu(udev->descriptor.idProduct)); |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 2159 | |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 2160 | /* set required alternate setting */ |
| 2161 | hostif = interface->cur_altsetting; |
| 2162 | if (hostif->desc.bAlternateSetting != 3) { |
Tilman Schmidt | 784d585 | 2006-04-10 22:55:04 -0700 | [diff] [blame] | 2163 | gig_dbg(DEBUG_ANY, |
| 2164 | "%s: wrong alternate setting %d - trying to switch", |
| 2165 | __func__, hostif->desc.bAlternateSetting); |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 2166 | if (usb_set_interface(udev, hostif->desc.bInterfaceNumber, 3) < 0) { |
Tilman Schmidt | 784d585 | 2006-04-10 22:55:04 -0700 | [diff] [blame] | 2167 | dev_warn(&udev->dev, "usb_set_interface failed, " |
| 2168 | "device %d interface %d altsetting %d\n", |
| 2169 | udev->devnum, hostif->desc.bInterfaceNumber, |
| 2170 | hostif->desc.bAlternateSetting); |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 2171 | return -ENODEV; |
| 2172 | } |
| 2173 | hostif = interface->cur_altsetting; |
| 2174 | } |
| 2175 | |
| 2176 | /* Reject application specific interfaces |
| 2177 | */ |
| 2178 | if (hostif->desc.bInterfaceClass != 255) { |
Tilman Schmidt | 784d585 | 2006-04-10 22:55:04 -0700 | [diff] [blame] | 2179 | dev_warn(&udev->dev, "%s: bInterfaceClass == %d\n", |
| 2180 | __func__, hostif->desc.bInterfaceClass); |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 2181 | return -ENODEV; |
| 2182 | } |
| 2183 | |
Tilman Schmidt | 784d585 | 2006-04-10 22:55:04 -0700 | [diff] [blame] | 2184 | dev_info(&udev->dev, |
| 2185 | "%s: Device matched (Vendor: 0x%x, Product: 0x%x)\n", |
| 2186 | __func__, le16_to_cpu(udev->descriptor.idVendor), |
| 2187 | le16_to_cpu(udev->descriptor.idProduct)); |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 2188 | |
| 2189 | cs = gigaset_getunassignedcs(driver); |
| 2190 | if (!cs) { |
Tilman Schmidt | 784d585 | 2006-04-10 22:55:04 -0700 | [diff] [blame] | 2191 | dev_err(&udev->dev, "no free cardstate\n"); |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 2192 | return -ENODEV; |
| 2193 | } |
| 2194 | ucs = cs->hw.bas; |
Tilman Schmidt | 784d585 | 2006-04-10 22:55:04 -0700 | [diff] [blame] | 2195 | |
| 2196 | /* save off device structure ptrs for later use */ |
| 2197 | usb_get_dev(udev); |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 2198 | ucs->udev = udev; |
| 2199 | ucs->interface = interface; |
Tilman Schmidt | b1d4746 | 2006-04-10 22:55:07 -0700 | [diff] [blame] | 2200 | cs->dev = &interface->dev; |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 2201 | |
| 2202 | /* allocate URBs: |
| 2203 | * - one for the interrupt pipe |
| 2204 | * - three for the different uses of the default control pipe |
| 2205 | * - three for each isochronous pipe |
| 2206 | */ |
Christoph Lameter | e94b176 | 2006-12-06 20:33:17 -0800 | [diff] [blame] | 2207 | if (!(ucs->urb_int_in = usb_alloc_urb(0, GFP_KERNEL)) || |
| 2208 | !(ucs->urb_cmd_in = usb_alloc_urb(0, GFP_KERNEL)) || |
| 2209 | !(ucs->urb_cmd_out = usb_alloc_urb(0, GFP_KERNEL)) || |
| 2210 | !(ucs->urb_ctrl = usb_alloc_urb(0, GFP_KERNEL))) |
Tilman Schmidt | 73a8881 | 2006-04-22 02:35:30 -0700 | [diff] [blame] | 2211 | goto allocerr; |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 2212 | |
| 2213 | for (j = 0; j < 2; ++j) { |
| 2214 | ubc = cs->bcs[j].hw.bas; |
Tilman Schmidt | 73a8881 | 2006-04-22 02:35:30 -0700 | [diff] [blame] | 2215 | for (i = 0; i < BAS_OUTURBS; ++i) |
| 2216 | if (!(ubc->isoouturbs[i].urb = |
Christoph Lameter | e94b176 | 2006-12-06 20:33:17 -0800 | [diff] [blame] | 2217 | usb_alloc_urb(BAS_NUMFRAMES, GFP_KERNEL))) |
Tilman Schmidt | 73a8881 | 2006-04-22 02:35:30 -0700 | [diff] [blame] | 2218 | goto allocerr; |
| 2219 | for (i = 0; i < BAS_INURBS; ++i) |
| 2220 | if (!(ubc->isoinurbs[i] = |
Christoph Lameter | e94b176 | 2006-12-06 20:33:17 -0800 | [diff] [blame] | 2221 | usb_alloc_urb(BAS_NUMFRAMES, GFP_KERNEL))) |
Tilman Schmidt | 73a8881 | 2006-04-22 02:35:30 -0700 | [diff] [blame] | 2222 | goto allocerr; |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 2223 | } |
| 2224 | |
| 2225 | ucs->rcvbuf = NULL; |
| 2226 | ucs->rcvbuf_size = 0; |
| 2227 | |
| 2228 | /* Fill the interrupt urb and send it to the core */ |
| 2229 | endpoint = &hostif->endpoint[0].desc; |
| 2230 | usb_fill_int_urb(ucs->urb_int_in, udev, |
Tilman Schmidt | 784d585 | 2006-04-10 22:55:04 -0700 | [diff] [blame] | 2231 | usb_rcvintpipe(udev, |
| 2232 | (endpoint->bEndpointAddress) & 0x0f), |
| 2233 | ucs->int_in_buf, 3, read_int_callback, cs, |
| 2234 | endpoint->bInterval); |
Christoph Lameter | e94b176 | 2006-12-06 20:33:17 -0800 | [diff] [blame] | 2235 | if ((rc = usb_submit_urb(ucs->urb_int_in, GFP_KERNEL)) != 0) { |
Tilman Schmidt | 784d585 | 2006-04-10 22:55:04 -0700 | [diff] [blame] | 2236 | dev_err(cs->dev, "could not submit interrupt URB: %s\n", |
Tilman Schmidt | 73a8881 | 2006-04-22 02:35:30 -0700 | [diff] [blame] | 2237 | get_usb_rcmsg(rc)); |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 2238 | goto error; |
| 2239 | } |
| 2240 | |
| 2241 | /* tell the device that the driver is ready */ |
Tilman Schmidt | 73a8881 | 2006-04-22 02:35:30 -0700 | [diff] [blame] | 2242 | if ((rc = req_submit(cs->bcs, HD_DEVICE_INIT_ACK, 0, 0)) != 0) |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 2243 | goto error; |
| 2244 | |
| 2245 | /* tell common part that the device is ready */ |
| 2246 | if (startmode == SM_LOCKED) |
| 2247 | atomic_set(&cs->mstate, MS_LOCKED); |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 2248 | |
| 2249 | /* save address of controller structure */ |
| 2250 | usb_set_intfdata(interface, cs); |
| 2251 | |
Tilman Schmidt | b1d4746 | 2006-04-10 22:55:07 -0700 | [diff] [blame] | 2252 | if (!gigaset_start(cs)) |
| 2253 | goto error; |
| 2254 | |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 2255 | return 0; |
| 2256 | |
Tilman Schmidt | 73a8881 | 2006-04-22 02:35:30 -0700 | [diff] [blame] | 2257 | allocerr: |
| 2258 | dev_err(cs->dev, "could not allocate URBs\n"); |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 2259 | error: |
| 2260 | freeurbs(cs); |
Tilman Schmidt | 69049cc | 2006-04-10 22:55:16 -0700 | [diff] [blame] | 2261 | usb_set_intfdata(interface, NULL); |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 2262 | gigaset_unassign(cs); |
| 2263 | return -ENODEV; |
| 2264 | } |
| 2265 | |
| 2266 | /* gigaset_disconnect |
| 2267 | * This function is called when the Gigaset base is unplugged. |
| 2268 | */ |
| 2269 | static void gigaset_disconnect(struct usb_interface *interface) |
| 2270 | { |
| 2271 | struct cardstate *cs; |
| 2272 | struct bas_cardstate *ucs; |
Tilman Schmidt | 73a8881 | 2006-04-22 02:35:30 -0700 | [diff] [blame] | 2273 | int j; |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 2274 | |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 2275 | cs = usb_get_intfdata(interface); |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 2276 | |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 2277 | ucs = cs->hw.bas; |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 2278 | |
Tilman Schmidt | b1d4746 | 2006-04-10 22:55:07 -0700 | [diff] [blame] | 2279 | dev_info(cs->dev, "disconnecting Gigaset base\n"); |
Tilman Schmidt | 73a8881 | 2006-04-22 02:35:30 -0700 | [diff] [blame] | 2280 | |
| 2281 | /* mark base as not ready, all channels disconnected */ |
| 2282 | atomic_set(&ucs->basstate, 0); |
| 2283 | |
| 2284 | /* tell LL all channels are down */ |
| 2285 | //FIXME shouldn't gigaset_stop() do this? |
| 2286 | for (j = 0; j < 2; ++j) |
| 2287 | gigaset_bchannel_down(cs->bcs + j); |
| 2288 | |
| 2289 | /* stop driver (common part) */ |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 2290 | gigaset_stop(cs); |
Tilman Schmidt | 73a8881 | 2006-04-22 02:35:30 -0700 | [diff] [blame] | 2291 | |
| 2292 | /* stop timers and URBs, free ressources */ |
| 2293 | del_timer_sync(&ucs->timer_ctrl); |
| 2294 | del_timer_sync(&ucs->timer_atrdy); |
| 2295 | del_timer_sync(&ucs->timer_cmd_in); |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 2296 | freeurbs(cs); |
Tilman Schmidt | b1d4746 | 2006-04-10 22:55:07 -0700 | [diff] [blame] | 2297 | usb_set_intfdata(interface, NULL); |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 2298 | kfree(ucs->rcvbuf); |
| 2299 | ucs->rcvbuf = NULL; |
| 2300 | ucs->rcvbuf_size = 0; |
Tilman Schmidt | b1d4746 | 2006-04-10 22:55:07 -0700 | [diff] [blame] | 2301 | usb_put_dev(ucs->udev); |
| 2302 | ucs->interface = NULL; |
| 2303 | ucs->udev = NULL; |
| 2304 | cs->dev = NULL; |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 2305 | gigaset_unassign(cs); |
| 2306 | } |
| 2307 | |
Tilman Schmidt | 35dc845 | 2007-03-29 01:20:34 -0700 | [diff] [blame] | 2308 | static const struct gigaset_ops gigops = { |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 2309 | gigaset_write_cmd, |
| 2310 | gigaset_write_room, |
| 2311 | gigaset_chars_in_buffer, |
| 2312 | gigaset_brkchars, |
| 2313 | gigaset_init_bchannel, |
| 2314 | gigaset_close_bchannel, |
| 2315 | gigaset_initbcshw, |
| 2316 | gigaset_freebcshw, |
| 2317 | gigaset_reinitbcshw, |
| 2318 | gigaset_initcshw, |
| 2319 | gigaset_freecshw, |
| 2320 | gigaset_set_modem_ctrl, |
| 2321 | gigaset_baud_rate, |
| 2322 | gigaset_set_line_ctrl, |
| 2323 | gigaset_isoc_send_skb, |
| 2324 | gigaset_isoc_input, |
| 2325 | }; |
| 2326 | |
| 2327 | /* bas_gigaset_init |
| 2328 | * This function is called after the kernel module is loaded. |
| 2329 | */ |
| 2330 | static int __init bas_gigaset_init(void) |
| 2331 | { |
| 2332 | int result; |
| 2333 | |
| 2334 | /* allocate memory for our driver state and intialize it */ |
| 2335 | if ((driver = gigaset_initdriver(GIGASET_MINOR, GIGASET_MINORS, |
Tilman Schmidt | 784d585 | 2006-04-10 22:55:04 -0700 | [diff] [blame] | 2336 | GIGASET_MODULENAME, GIGASET_DEVNAME, |
Greg Kroah-Hartman | f4eaa37 | 2005-06-20 21:15:16 -0700 | [diff] [blame] | 2337 | &gigops, THIS_MODULE)) == NULL) |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 2338 | goto error; |
| 2339 | |
| 2340 | /* allocate memory for our device state and intialize it */ |
Tilman Schmidt | 917f508 | 2006-04-10 22:55:00 -0700 | [diff] [blame] | 2341 | cardstate = gigaset_initcs(driver, 2, 0, 0, cidmode, |
| 2342 | GIGASET_MODULENAME); |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 2343 | if (!cardstate) |
| 2344 | goto error; |
| 2345 | |
| 2346 | /* register this driver with the USB subsystem */ |
| 2347 | result = usb_register(&gigaset_usb_driver); |
| 2348 | if (result < 0) { |
| 2349 | err("usb_register failed (error %d)", -result); |
| 2350 | goto error; |
| 2351 | } |
| 2352 | |
| 2353 | info(DRIVER_AUTHOR); |
| 2354 | info(DRIVER_DESC); |
| 2355 | return 0; |
| 2356 | |
| 2357 | error: if (cardstate) |
| 2358 | gigaset_freecs(cardstate); |
| 2359 | cardstate = NULL; |
| 2360 | if (driver) |
| 2361 | gigaset_freedriver(driver); |
| 2362 | driver = NULL; |
| 2363 | return -1; |
| 2364 | } |
| 2365 | |
| 2366 | /* bas_gigaset_exit |
| 2367 | * This function is called before the kernel module is unloaded. |
| 2368 | */ |
| 2369 | static void __exit bas_gigaset_exit(void) |
| 2370 | { |
Tilman Schmidt | 73a8881 | 2006-04-22 02:35:30 -0700 | [diff] [blame] | 2371 | struct bas_cardstate *ucs = cardstate->hw.bas; |
| 2372 | |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 2373 | gigaset_blockdriver(driver); /* => probe will fail |
Tilman Schmidt | 784d585 | 2006-04-10 22:55:04 -0700 | [diff] [blame] | 2374 | * => no gigaset_start any more |
| 2375 | */ |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 2376 | |
| 2377 | gigaset_shutdown(cardstate); |
| 2378 | /* from now on, no isdn callback should be possible */ |
| 2379 | |
Tilman Schmidt | 73a8881 | 2006-04-22 02:35:30 -0700 | [diff] [blame] | 2380 | /* close all still open channels */ |
| 2381 | if (atomic_read(&ucs->basstate) & BS_B1OPEN) { |
| 2382 | gig_dbg(DEBUG_INIT, "closing B1 channel"); |
| 2383 | usb_control_msg(ucs->udev, usb_sndctrlpipe(ucs->udev, 0), |
| 2384 | HD_CLOSE_B1CHANNEL, OUT_VENDOR_REQ, 0, 0, |
| 2385 | NULL, 0, BAS_TIMEOUT); |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 2386 | } |
Tilman Schmidt | 73a8881 | 2006-04-22 02:35:30 -0700 | [diff] [blame] | 2387 | if (atomic_read(&ucs->basstate) & BS_B2OPEN) { |
| 2388 | gig_dbg(DEBUG_INIT, "closing B2 channel"); |
| 2389 | usb_control_msg(ucs->udev, usb_sndctrlpipe(ucs->udev, 0), |
| 2390 | HD_CLOSE_B2CHANNEL, OUT_VENDOR_REQ, 0, 0, |
| 2391 | NULL, 0, BAS_TIMEOUT); |
| 2392 | } |
| 2393 | if (atomic_read(&ucs->basstate) & BS_ATOPEN) { |
| 2394 | gig_dbg(DEBUG_INIT, "closing AT channel"); |
| 2395 | usb_control_msg(ucs->udev, usb_sndctrlpipe(ucs->udev, 0), |
| 2396 | HD_CLOSE_ATCHANNEL, OUT_VENDOR_REQ, 0, 0, |
| 2397 | NULL, 0, BAS_TIMEOUT); |
| 2398 | } |
| 2399 | atomic_set(&ucs->basstate, 0); |
Hansjoerg Lipp | cf7776d | 2006-03-26 01:38:34 -0800 | [diff] [blame] | 2400 | |
| 2401 | /* deregister this driver with the USB subsystem */ |
| 2402 | usb_deregister(&gigaset_usb_driver); |
| 2403 | /* this will call the disconnect-callback */ |
| 2404 | /* from now on, no disconnect/probe callback should be running */ |
| 2405 | |
| 2406 | gigaset_freecs(cardstate); |
| 2407 | cardstate = NULL; |
| 2408 | gigaset_freedriver(driver); |
| 2409 | driver = NULL; |
| 2410 | } |
| 2411 | |
| 2412 | |
| 2413 | module_init(bas_gigaset_init); |
| 2414 | module_exit(bas_gigaset_exit); |
| 2415 | |
| 2416 | MODULE_AUTHOR(DRIVER_AUTHOR); |
| 2417 | MODULE_DESCRIPTION(DRIVER_DESC); |
| 2418 | MODULE_LICENSE("GPL"); |