blob: 06cfa43c6f020a884658bf79482938cce4e15df7 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Garmin GPS driver
3 *
Hermann Kneissel468d1362007-08-03 20:20:33 +02004 * Copyright (C) 2006,2007 Hermann Kneissel herkne@users.sourceforge.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 *
6 * The latest version of the driver can be found at
7 * http://sourceforge.net/projects/garmin-gps/
8 *
9 * This driver has been derived from v2.1 of the visor driver.
10 *
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License as published by
13 * the Free Software Foundation; either version 2 of the License, or
14 * (at your option) any later version.
15 *
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
20 *
21 * You should have received a copy of the GNU General Public License
22 * along with this program; if not, write to the Free Software
23 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111 USA
24 */
25
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include <linux/kernel.h>
27#include <linux/errno.h>
28#include <linux/init.h>
29#include <linux/slab.h>
30#include <linux/timer.h>
31#include <linux/tty.h>
32#include <linux/tty_driver.h>
33#include <linux/tty_flip.h>
34#include <linux/module.h>
35#include <linux/spinlock.h>
36#include <asm/uaccess.h>
Hermann Kneissel468d1362007-08-03 20:20:33 +020037#include <asm/atomic.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070038#include <linux/usb.h>
Greg Kroah-Hartmana9698882006-07-11 21:22:58 -070039#include <linux/usb/serial.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070040
Hermann Kneisseleb6d8c22006-07-11 19:41:33 +020041#include <linux/version.h>
42
Linus Torvalds1da177e2005-04-16 15:20:36 -070043/* the mode to be set when the port ist opened */
44static int initial_mode = 1;
45
46/* debug flag */
47static int debug = 0;
48
Linus Torvalds1da177e2005-04-16 15:20:36 -070049#define GARMIN_VENDOR_ID 0x091E
50
51/*
52 * Version Information
53 */
54
55#define VERSION_MAJOR 0
Hermann Kneissel468d1362007-08-03 20:20:33 +020056#define VERSION_MINOR 31
Linus Torvalds1da177e2005-04-16 15:20:36 -070057
58#define _STR(s) #s
59#define _DRIVER_VERSION(a,b) "v" _STR(a) "." _STR(b)
60#define DRIVER_VERSION _DRIVER_VERSION(VERSION_MAJOR, VERSION_MINOR)
61#define DRIVER_AUTHOR "hermann kneissel"
62#define DRIVER_DESC "garmin gps driver"
63
64/* error codes returned by the driver */
65#define EINVPKT 1000 /* invalid packet structure */
66
67
68// size of the header of a packet using the usb protocol
69#define GARMIN_PKTHDR_LENGTH 12
70
71// max. possible size of a packet using the serial protocol
72#define MAX_SERIAL_PKT_SIZ (3+255+3)
73
74// max. possible size of a packet with worst case stuffing
75#define MAX_SERIAL_PKT_SIZ_STUFFED MAX_SERIAL_PKT_SIZ+256
76
77// size of a buffer able to hold a complete (no stuffing) packet
78// (the document protocol does not contain packets with a larger
79// size, but in theory a packet may be 64k+12 bytes - if in
80// later protocol versions larger packet sizes occur, this value
81// should be increased accordingly, so the input buffer is always
82// large enough the store a complete packet inclusive header)
83#define GPS_IN_BUFSIZ (GARMIN_PKTHDR_LENGTH+MAX_SERIAL_PKT_SIZ)
84
85// size of a buffer able to hold a complete (incl. stuffing) packet
86#define GPS_OUT_BUFSIZ (GARMIN_PKTHDR_LENGTH+MAX_SERIAL_PKT_SIZ_STUFFED)
87
88// where to place the packet id of a serial packet, so we can
89// prepend the usb-packet header without the need to move the
90// packets data
91#define GSP_INITIAL_OFFSET (GARMIN_PKTHDR_LENGTH-2)
92
93// max. size of incoming private packets (header+1 param)
94#define PRIVPKTSIZ (GARMIN_PKTHDR_LENGTH+4)
95
96#define GARMIN_LAYERID_TRANSPORT 0
97#define GARMIN_LAYERID_APPL 20
98// our own layer-id to use for some control mechanisms
99#define GARMIN_LAYERID_PRIVATE 0x01106E4B
100
101#define GARMIN_PKTID_PVT_DATA 51
102#define GARMIN_PKTID_L001_COMMAND_DATA 10
103
104#define CMND_ABORT_TRANSFER 0
105
106// packet ids used in private layer
107#define PRIV_PKTID_SET_DEBUG 1
108#define PRIV_PKTID_SET_MODE 2
109#define PRIV_PKTID_INFO_REQ 3
110#define PRIV_PKTID_INFO_RESP 4
111#define PRIV_PKTID_RESET_REQ 5
112#define PRIV_PKTID_SET_DEF_MODE 6
113
114
115#define ETX 0x03
116#define DLE 0x10
117#define ACK 0x06
118#define NAK 0x15
119
120/* structure used to queue incoming packets */
121struct garmin_packet {
122 struct list_head list;
123 int seq;
124 int size; // the real size of the data array, always > 0
125 __u8 data[1];
126};
127
128/* structure used to keep the current state of the driver */
129struct garmin_data {
130 __u8 state;
131 __u16 flags;
132 __u8 mode;
133 __u8 ignorePkts;
134 __u8 count;
135 __u8 pkt_id;
136 __u32 serial_num;
137 struct timer_list timer;
138 struct usb_serial_port *port;
139 int seq_counter;
140 int insize;
141 int outsize;
142 __u8 inbuffer [GPS_IN_BUFSIZ]; /* tty -> usb */
143 __u8 outbuffer[GPS_OUT_BUFSIZ]; /* usb -> tty */
144 __u8 privpkt[4*6];
Hermann Kneissel468d1362007-08-03 20:20:33 +0200145 atomic_t req_count;
146 atomic_t resp_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 spinlock_t lock;
148 struct list_head pktlist;
149};
150
151
152#define STATE_NEW 0
153#define STATE_INITIAL_DELAY 1
154#define STATE_TIMEOUT 2
155#define STATE_SESSION_REQ1 3
156#define STATE_SESSION_REQ2 4
157#define STATE_ACTIVE 5
158
159#define STATE_RESET 8
160#define STATE_DISCONNECTED 9
161#define STATE_WAIT_TTY_ACK 10
162#define STATE_GSP_WAIT_DATA 11
163
164#define MODE_NATIVE 0
165#define MODE_GARMIN_SERIAL 1
166
167// Flags used in garmin_data.flags:
168#define FLAGS_SESSION_REPLY_MASK 0x00C0
169#define FLAGS_SESSION_REPLY1_SEEN 0x0080
170#define FLAGS_SESSION_REPLY2_SEEN 0x0040
171#define FLAGS_BULK_IN_ACTIVE 0x0020
Hermann Kneisseleb6d8c22006-07-11 19:41:33 +0200172#define FLAGS_BULK_IN_RESTART 0x0010
173#define FLAGS_THROTTLED 0x0008
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174#define CLEAR_HALT_REQUIRED 0x0001
175
176#define FLAGS_QUEUING 0x0100
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177#define FLAGS_DROP_DATA 0x0800
178
179#define FLAGS_GSP_SKIP 0x1000
180#define FLAGS_GSP_DLESEEN 0x2000
181
182
183
184
185
186
187/* function prototypes */
188static void gsp_next_packet(struct garmin_data * garmin_data_p);
189static int garmin_write_bulk(struct usb_serial_port *port,
Hermann Kneissel468d1362007-08-03 20:20:33 +0200190 const unsigned char *buf, int count,
191 int dismiss_ack);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192
193/* some special packets to be send or received */
194static unsigned char const GARMIN_START_SESSION_REQ[]
195 = { 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0 };
196static unsigned char const GARMIN_START_SESSION_REQ2[]
197 = { 0, 0, 0, 0, 16, 0, 0, 0, 0, 0, 0, 0 };
198static unsigned char const GARMIN_START_SESSION_REPLY[]
199 = { 0, 0, 0, 0, 6, 0, 0, 0, 4, 0, 0, 0 };
200static unsigned char const GARMIN_SESSION_ACTIVE_REPLY[]
201 = { 0, 0, 0, 0, 17, 0, 0, 0, 4, 0, 0, 0, 0, 16, 0, 0 };
202static unsigned char const GARMIN_BULK_IN_AVAIL_REPLY[]
203 = { 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0 };
204static unsigned char const GARMIN_APP_LAYER_REPLY[]
205 = { 0x14, 0, 0, 0 };
206static unsigned char const GARMIN_START_PVT_REQ[]
207 = { 20, 0, 0, 0, 10, 0, 0, 0, 2, 0, 0, 0, 49, 0 };
208static unsigned char const GARMIN_STOP_PVT_REQ[]
209 = { 20, 0, 0, 0, 10, 0, 0, 0, 2, 0, 0, 0, 50, 0 };
210static unsigned char const GARMIN_STOP_TRANSFER_REQ[]
211 = { 20, 0, 0, 0, 10, 0, 0, 0, 2, 0, 0, 0, 0, 0 };
212static unsigned char const GARMIN_STOP_TRANSFER_REQ_V2[]
213 = { 20, 0, 0, 0, 10, 0, 0, 0, 1, 0, 0, 0, 0 };
214static unsigned char const PRIVATE_REQ[]
215 = { 0x4B, 0x6E, 0x10, 0x01, 0xFF, 0, 0, 0, 0xFF, 0, 0, 0 };
216
217
218
219static struct usb_device_id id_table [] = {
220 /* the same device id seems to be used by all usb enabled gps devices */
221 { USB_DEVICE(GARMIN_VENDOR_ID, 3 ) },
222 { } /* Terminating entry */
223};
224
225MODULE_DEVICE_TABLE (usb, id_table);
226
227static struct usb_driver garmin_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 .name = "garmin_gps",
229 .probe = usb_serial_probe,
230 .disconnect = usb_serial_disconnect,
231 .id_table = id_table,
Hermann Kneisseleb6d8c22006-07-11 19:41:33 +0200232 .no_dynamic_id = 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233};
234
235
236static inline int noResponseFromAppLayer(struct garmin_data * garmin_data_p)
237{
Hermann Kneissel468d1362007-08-03 20:20:33 +0200238 return atomic_read(&garmin_data_p->req_count) == atomic_read(&garmin_data_p->resp_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239}
240
241
242static inline int getLayerId(const __u8 *usbPacket)
243{
244 return __le32_to_cpup((__le32 *)(usbPacket));
245}
246
247static inline int getPacketId(const __u8 *usbPacket)
248{
249 return __le32_to_cpup((__le32 *)(usbPacket+4));
250}
251
252static inline int getDataLength(const __u8 *usbPacket)
253{
254 return __le32_to_cpup((__le32 *)(usbPacket+8));
255}
256
257
258/*
259 * check if the usb-packet in buf contains an abort-transfer command.
260 * (if yes, all queued data will be dropped)
261 */
262static inline int isAbortTrfCmnd(const unsigned char *buf)
263{
264 if (0 == memcmp(buf, GARMIN_STOP_TRANSFER_REQ,
265 sizeof(GARMIN_STOP_TRANSFER_REQ)) ||
266 0 == memcmp(buf, GARMIN_STOP_TRANSFER_REQ_V2,
267 sizeof(GARMIN_STOP_TRANSFER_REQ_V2)))
268 return 1;
269 else
270 return 0;
271}
272
273
274
275static void send_to_tty(struct usb_serial_port *port,
Hermann Kneisseleb6d8c22006-07-11 19:41:33 +0200276 char *data, unsigned int actual_length)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277{
Alan Cox95da3102008-07-22 11:09:07 +0100278 struct tty_struct *tty = port->port.tty;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279
280 if (tty && actual_length) {
281
282 usb_serial_debug_data(debug, &port->dev,
Harvey Harrison441b62c2008-03-03 16:08:34 -0800283 __func__, actual_length, data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284
Alan Cox33f0f882006-01-09 20:54:13 -0800285 tty_buffer_request_room(tty, actual_length);
286 tty_insert_flip_string(tty, data, actual_length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 tty_flip_buffer_push(tty);
288 }
289}
290
291
292/******************************************************************************
293 * packet queue handling
294 ******************************************************************************/
295
296/*
297 * queue a received (usb-)packet for later processing
298 */
299static int pkt_add(struct garmin_data * garmin_data_p,
Hermann Kneisseleb6d8c22006-07-11 19:41:33 +0200300 unsigned char *data, unsigned int data_length)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301{
Hermann Kneisseleb6d8c22006-07-11 19:41:33 +0200302 int state = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 int result = 0;
304 unsigned long flags;
305 struct garmin_packet *pkt;
306
307 /* process only packets containg data ... */
308 if (data_length) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 pkt = kmalloc(sizeof(struct garmin_packet)+data_length,
310 GFP_ATOMIC);
311 if (pkt == NULL) {
312 dev_err(&garmin_data_p->port->dev, "out of memory\n");
313 return 0;
314 }
315 pkt->size = data_length;
316 memcpy(pkt->data, data, data_length);
317
318 spin_lock_irqsave(&garmin_data_p->lock, flags);
Hermann Kneisseleb6d8c22006-07-11 19:41:33 +0200319 garmin_data_p->flags |= FLAGS_QUEUING;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 result = list_empty(&garmin_data_p->pktlist);
321 pkt->seq = garmin_data_p->seq_counter++;
322 list_add_tail(&pkt->list, &garmin_data_p->pktlist);
Hermann Kneisseleb6d8c22006-07-11 19:41:33 +0200323 state = garmin_data_p->state;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 spin_unlock_irqrestore(&garmin_data_p->lock, flags);
325
326 /* in serial mode, if someone is waiting for data from
327 the device, iconvert and send the next packet to tty. */
Hermann Kneisseleb6d8c22006-07-11 19:41:33 +0200328 if (result && (state == STATE_GSP_WAIT_DATA)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329 gsp_next_packet(garmin_data_p);
330 }
331 }
332 return result;
333}
334
335
336/* get the next pending packet */
337static struct garmin_packet *pkt_pop(struct garmin_data * garmin_data_p)
338{
339 unsigned long flags;
340 struct garmin_packet *result = NULL;
341
342 spin_lock_irqsave(&garmin_data_p->lock, flags);
343 if (!list_empty(&garmin_data_p->pktlist)) {
344 result = (struct garmin_packet *)garmin_data_p->pktlist.next;
345 list_del(&result->list);
346 }
347 spin_unlock_irqrestore(&garmin_data_p->lock, flags);
348 return result;
349}
350
351
352/* free up all queued data */
353static void pkt_clear(struct garmin_data * garmin_data_p)
354{
355 unsigned long flags;
356 struct garmin_packet *result = NULL;
357
Harvey Harrison441b62c2008-03-03 16:08:34 -0800358 dbg("%s", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359
360 spin_lock_irqsave(&garmin_data_p->lock, flags);
361 while (!list_empty(&garmin_data_p->pktlist)) {
362 result = (struct garmin_packet *)garmin_data_p->pktlist.next;
363 list_del(&result->list);
364 kfree(result);
365 }
366 spin_unlock_irqrestore(&garmin_data_p->lock, flags);
367}
368
369
370/******************************************************************************
371 * garmin serial protocol handling handling
372 ******************************************************************************/
373
374/* send an ack packet back to the tty */
375static int gsp_send_ack(struct garmin_data * garmin_data_p, __u8 pkt_id)
376{
377 __u8 pkt[10];
Hermann Kneisseleb6d8c22006-07-11 19:41:33 +0200378 __u8 cksum = 0;
379 __u8 *ptr = pkt;
380 unsigned l = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381
Harvey Harrison441b62c2008-03-03 16:08:34 -0800382 dbg("%s - pkt-id: 0x%X.", __func__, 0xFF & pkt_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383
384 *ptr++ = DLE;
385 *ptr++ = ACK;
386 cksum += ACK;
387
388 *ptr++ = 2;
389 cksum += 2;
390
391 *ptr++ = pkt_id;
392 cksum += pkt_id;
393
394 if (pkt_id == DLE) {
395 *ptr++ = DLE;
396 }
397
398 *ptr++ = 0;
399 *ptr++ = 0xFF & (-cksum);
400 *ptr++ = DLE;
401 *ptr++ = ETX;
402
403 l = ptr-pkt;
404
405 send_to_tty(garmin_data_p->port, pkt, l);
406 return 0;
407}
408
409
410
411/*
412 * called for a complete packet received from tty layer
413 *
414 * the complete packet (pkzid ... cksum) is in garmin_data_p->inbuf starting
415 * at GSP_INITIAL_OFFSET.
416 *
417 * count - number of bytes in the input buffer including space reserved for
418 * the usb header: GSP_INITIAL_OFFSET + number of bytes in packet
419 * (including pkt-id, data-length a. cksum)
420 */
421static int gsp_rec_packet(struct garmin_data * garmin_data_p, int count)
422{
423 const __u8* recpkt = garmin_data_p->inbuffer+GSP_INITIAL_OFFSET;
Hermann Kneisseleb6d8c22006-07-11 19:41:33 +0200424 __le32 *usbdata = (__le32 *) garmin_data_p->inbuffer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425
426 int cksum = 0;
427 int n = 0;
428 int pktid = recpkt[0];
429 int size = recpkt[1];
430
431 usb_serial_debug_data(debug, &garmin_data_p->port->dev,
Harvey Harrison441b62c2008-03-03 16:08:34 -0800432 __func__, count-GSP_INITIAL_OFFSET, recpkt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433
434 if (size != (count-GSP_INITIAL_OFFSET-3)) {
435 dbg("%s - invalid size, expected %d bytes, got %d",
Harvey Harrison441b62c2008-03-03 16:08:34 -0800436 __func__, size, (count-GSP_INITIAL_OFFSET-3));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 return -EINVPKT;
438 }
439
440 cksum += *recpkt++;
441 cksum += *recpkt++;
442
443 // sanity check, remove after test ...
444 if ((__u8*)&(usbdata[3]) != recpkt) {
445 dbg("%s - ptr mismatch %p - %p",
Harvey Harrison441b62c2008-03-03 16:08:34 -0800446 __func__, &(usbdata[4]), recpkt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 return -EINVPKT;
448 }
449
450 while (n < size) {
451 cksum += *recpkt++;
452 n++;
453 }
454
Hermann Kneisseleb6d8c22006-07-11 19:41:33 +0200455 if ((0xff & (cksum + *recpkt)) != 0) {
456 dbg("%s - invalid checksum, expected %02x, got %02x",
Harvey Harrison441b62c2008-03-03 16:08:34 -0800457 __func__, 0xff & -cksum, 0xff & *recpkt);
Hermann Kneisseleb6d8c22006-07-11 19:41:33 +0200458 return -EINVPKT;
459 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460
461 usbdata[0] = __cpu_to_le32(GARMIN_LAYERID_APPL);
462 usbdata[1] = __cpu_to_le32(pktid);
463 usbdata[2] = __cpu_to_le32(size);
464
465 garmin_write_bulk (garmin_data_p->port, garmin_data_p->inbuffer,
Hermann Kneissel468d1362007-08-03 20:20:33 +0200466 GARMIN_PKTHDR_LENGTH+size, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467
468 /* if this was an abort-transfer command, flush all
469 queued data. */
470 if (isAbortTrfCmnd(garmin_data_p->inbuffer)) {
471 garmin_data_p->flags |= FLAGS_DROP_DATA;
472 pkt_clear(garmin_data_p);
473 }
474
475 return count;
476}
477
478
479
480/*
481 * Called for data received from tty
482 *
483 * buf contains the data read, it may span more than one packet or even
484 * incomplete packets
485 *
486 * input record should be a serial-record, but it may not be complete.
487 * Copy it into our local buffer, until an etx is seen (or an error
488 * occurs).
489 * Once the record is complete, convert into a usb packet and send it
490 * to the bulk pipe, send an ack back to the tty.
491 *
492 * If the input is an ack, just send the last queued packet to the
493 * tty layer.
494 *
495 * if the input is an abort command, drop all queued data.
496 */
497
498static int gsp_receive(struct garmin_data * garmin_data_p,
Hermann Kneisseleb6d8c22006-07-11 19:41:33 +0200499 const unsigned char *buf, int count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500{
Hermann Kneisseleb6d8c22006-07-11 19:41:33 +0200501 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502 int offs = 0;
503 int ack_or_nak_seen = 0;
504 int i = 0;
Hermann Kneisseleb6d8c22006-07-11 19:41:33 +0200505 __u8 *dest;
506 int size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 // dleSeen: set if last byte read was a DLE
Hermann Kneisseleb6d8c22006-07-11 19:41:33 +0200508 int dleSeen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 // skip: if set, skip incoming data until possible start of
510 // new packet
Hermann Kneisseleb6d8c22006-07-11 19:41:33 +0200511 int skip;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 __u8 data;
513
Hermann Kneisseleb6d8c22006-07-11 19:41:33 +0200514 spin_lock_irqsave(&garmin_data_p->lock, flags);
515 dest = garmin_data_p->inbuffer;
516 size = garmin_data_p->insize;
517 dleSeen = garmin_data_p->flags & FLAGS_GSP_DLESEEN;
518 skip = garmin_data_p->flags & FLAGS_GSP_SKIP;
519 spin_unlock_irqrestore(&garmin_data_p->lock, flags);
520
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 dbg("%s - dle=%d skip=%d size=%d count=%d",
Harvey Harrison441b62c2008-03-03 16:08:34 -0800522 __func__, dleSeen, skip, size, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523
524 if (size == 0) {
525 size = GSP_INITIAL_OFFSET;
526 }
527
528 while (offs < count) {
529
530 data = *(buf+offs);
531 offs ++;
532
533 if (data == DLE) {
534 if (skip) { /* start of a new pkt */
535 skip = 0;
536 size = GSP_INITIAL_OFFSET;
537 dleSeen = 1;
538 } else if (dleSeen) {
539 dest[size++] = data;
540 dleSeen = 0;
541 } else {
542 dleSeen = 1;
543 }
544 } else if (data == ETX) {
545 if (dleSeen) {
546 /* packet complete */
547
548 data = dest[GSP_INITIAL_OFFSET];
549
550 if (data == ACK) {
551 ack_or_nak_seen = ACK;
552 dbg("ACK packet complete.");
553 } else if (data == NAK) {
554 ack_or_nak_seen = NAK;
555 dbg("NAK packet complete.");
556 } else {
557 dbg("packet complete "
558 "- id=0x%X.",
559 0xFF & data);
560 gsp_rec_packet(garmin_data_p, size);
561 }
562
563 skip = 1;
564 size = GSP_INITIAL_OFFSET;
565 dleSeen = 0;
566 } else {
567 dest[size++] = data;
568 }
569 } else if (!skip) {
570
571 if (dleSeen) {
572 dbg("non-masked DLE at %d - restarting", i);
573 size = GSP_INITIAL_OFFSET;
574 dleSeen = 0;
575 }
576
577 dest[size++] = data;
578 }
579
580 if (size >= GPS_IN_BUFSIZ) {
Harvey Harrison441b62c2008-03-03 16:08:34 -0800581 dbg("%s - packet too large.", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 skip = 1;
583 size = GSP_INITIAL_OFFSET;
584 dleSeen = 0;
585 }
586 }
587
Hermann Kneisseleb6d8c22006-07-11 19:41:33 +0200588 spin_lock_irqsave(&garmin_data_p->lock, flags);
589
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 garmin_data_p->insize = size;
591
592 // copy flags back to structure
593 if (skip)
594 garmin_data_p->flags |= FLAGS_GSP_SKIP;
595 else
596 garmin_data_p->flags &= ~FLAGS_GSP_SKIP;
597
598 if (dleSeen)
599 garmin_data_p->flags |= FLAGS_GSP_DLESEEN;
600 else
601 garmin_data_p->flags &= ~FLAGS_GSP_DLESEEN;
602
603 if (ack_or_nak_seen) {
604 garmin_data_p->state = STATE_GSP_WAIT_DATA;
Hermann Kneisseleb6d8c22006-07-11 19:41:33 +0200605 }
606
607 spin_unlock_irqrestore(&garmin_data_p->lock, flags);
608
609 if (ack_or_nak_seen) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610 gsp_next_packet(garmin_data_p);
611 }
612
613 return count;
614}
615
616
617
618
619/*
620 * Sends a usb packet to the tty
621 *
622 * Assumes, that all packages and at an usb-packet boundary.
623 *
624 * return <0 on error, 0 if packet is incomplete or > 0 if packet was sent
625 */
626static int gsp_send(struct garmin_data * garmin_data_p,
627 const unsigned char *buf, int count)
628{
629 const unsigned char *src;
630 unsigned char *dst;
631 int pktid = 0;
632 int datalen = 0;
633 int cksum = 0;
634 int i=0;
635 int k;
636
Harvey Harrison441b62c2008-03-03 16:08:34 -0800637 dbg("%s - state %d - %d bytes.", __func__,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 garmin_data_p->state, count);
639
640 k = garmin_data_p->outsize;
641 if ((k+count) > GPS_OUT_BUFSIZ) {
642 dbg("packet too large");
643 garmin_data_p->outsize = 0;
644 return -4;
645 }
646
647 memcpy(garmin_data_p->outbuffer+k, buf, count);
648 k += count;
649 garmin_data_p->outsize = k;
650
651 if (k >= GARMIN_PKTHDR_LENGTH) {
652 pktid = getPacketId(garmin_data_p->outbuffer);
653 datalen= getDataLength(garmin_data_p->outbuffer);
654 i = GARMIN_PKTHDR_LENGTH + datalen;
655 if (k < i)
656 return 0;
657 } else {
658 return 0;
659 }
660
Harvey Harrison441b62c2008-03-03 16:08:34 -0800661 dbg("%s - %d bytes in buffer, %d bytes in pkt.", __func__,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662 k, i);
663
664 /* garmin_data_p->outbuffer now contains a complete packet */
665
666 usb_serial_debug_data(debug, &garmin_data_p->port->dev,
Harvey Harrison441b62c2008-03-03 16:08:34 -0800667 __func__, k, garmin_data_p->outbuffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668
669 garmin_data_p->outsize = 0;
670
671 if (GARMIN_LAYERID_APPL != getLayerId(garmin_data_p->outbuffer)) {
672 dbg("not an application packet (%d)",
673 getLayerId(garmin_data_p->outbuffer));
674 return -1;
675 }
676
677 if (pktid > 255) {
678 dbg("packet-id %d too large", pktid);
679 return -2;
680 }
681
682 if (datalen > 255) {
683 dbg("packet-size %d too large", datalen);
684 return -3;
685 }
686
687 /* the serial protocol should be able to handle this packet */
688
689 k = 0;
690 src = garmin_data_p->outbuffer+GARMIN_PKTHDR_LENGTH;
691 for (i=0; i<datalen; i++) {
692 if (*src++ == DLE)
693 k++;
694 }
695
696 src = garmin_data_p->outbuffer+GARMIN_PKTHDR_LENGTH;
697 if (k > (GARMIN_PKTHDR_LENGTH-2)) {
698 /* can't add stuffing DLEs in place, move data to end
Hermann Kneisseleb6d8c22006-07-11 19:41:33 +0200699 of buffer ... */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700 dst = garmin_data_p->outbuffer+GPS_OUT_BUFSIZ-datalen;
701 memcpy(dst, src, datalen);
702 src = dst;
703 }
704
705 dst = garmin_data_p->outbuffer;
706
707 *dst++ = DLE;
708 *dst++ = pktid;
709 cksum += pktid;
710 *dst++ = datalen;
711 cksum += datalen;
712 if (datalen == DLE)
713 *dst++ = DLE;
714
715 for (i=0; i<datalen; i++) {
716 __u8 c = *src++;
717 *dst++ = c;
718 cksum += c;
719 if (c == DLE)
720 *dst++ = DLE;
721 }
722
723 cksum = 0xFF & -cksum;
724 *dst++ = cksum;
725 if (cksum == DLE)
726 *dst++ = DLE;
727 *dst++ = DLE;
728 *dst++ = ETX;
729
730 i = dst-garmin_data_p->outbuffer;
731
732 send_to_tty(garmin_data_p->port, garmin_data_p->outbuffer, i);
733
734 garmin_data_p->pkt_id = pktid;
735 garmin_data_p->state = STATE_WAIT_TTY_ACK;
736
737 return i;
738}
739
740
741
742
743
744/*
745 * Process the next pending data packet - if there is one
746 */
747static void gsp_next_packet(struct garmin_data * garmin_data_p)
748{
749 struct garmin_packet *pkt = NULL;
750
751 while ((pkt = pkt_pop(garmin_data_p)) != NULL) {
Harvey Harrison441b62c2008-03-03 16:08:34 -0800752 dbg("%s - next pkt: %d", __func__, pkt->seq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753 if (gsp_send(garmin_data_p, pkt->data, pkt->size) > 0) {
754 kfree(pkt);
755 return;
756 }
757 kfree(pkt);
758 }
759}
760
761
762
763
764/******************************************************************************
765 * garmin native mode
766 ******************************************************************************/
767
768
769/*
770 * Called for data received from tty
771 *
772 * The input data is expected to be in garmin usb-packet format.
773 *
774 * buf contains the data read, it may span more than one packet
775 * or even incomplete packets
776 */
777static int nat_receive(struct garmin_data * garmin_data_p,
Hermann Kneisseleb6d8c22006-07-11 19:41:33 +0200778 const unsigned char *buf, int count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779{
Hermann Kneisseleb6d8c22006-07-11 19:41:33 +0200780 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781 __u8 * dest;
782 int offs = 0;
783 int result = count;
784 int len;
785
786 while (offs < count) {
787 // if buffer contains header, copy rest of data
788 if (garmin_data_p->insize >= GARMIN_PKTHDR_LENGTH)
789 len = GARMIN_PKTHDR_LENGTH
790 +getDataLength(garmin_data_p->inbuffer);
791 else
792 len = GARMIN_PKTHDR_LENGTH;
793
794 if (len >= GPS_IN_BUFSIZ) {
795 /* seem to be an invalid packet, ignore rest of input */
796 dbg("%s - packet size too large: %d",
Harvey Harrison441b62c2008-03-03 16:08:34 -0800797 __func__, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798 garmin_data_p->insize = 0;
799 count = 0;
800 result = -EINVPKT;
801 } else {
802 len -= garmin_data_p->insize;
803 if (len > (count-offs))
804 len = (count-offs);
805 if (len > 0) {
806 dest = garmin_data_p->inbuffer
807 +garmin_data_p->insize;
808 memcpy(dest, buf+offs, len);
809 garmin_data_p->insize += len;
810 offs += len;
811 }
812 }
813
814 /* do we have a complete packet ? */
815 if (garmin_data_p->insize >= GARMIN_PKTHDR_LENGTH) {
816 len = GARMIN_PKTHDR_LENGTH+
817 getDataLength(garmin_data_p->inbuffer);
818 if (garmin_data_p->insize >= len) {
819 garmin_write_bulk (garmin_data_p->port,
820 garmin_data_p->inbuffer,
Hermann Kneissel468d1362007-08-03 20:20:33 +0200821 len, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822 garmin_data_p->insize = 0;
823
824 /* if this was an abort-transfer command,
825 flush all queued data. */
826 if (isAbortTrfCmnd(garmin_data_p->inbuffer)) {
Hermann Kneisseleb6d8c22006-07-11 19:41:33 +0200827 spin_lock_irqsave(&garmin_data_p->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828 garmin_data_p->flags |= FLAGS_DROP_DATA;
Hermann Kneisseleb6d8c22006-07-11 19:41:33 +0200829 spin_unlock_irqrestore(&garmin_data_p->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830 pkt_clear(garmin_data_p);
831 }
832 }
833 }
834 }
835 return result;
836}
837
838
839/******************************************************************************
840 * private packets
841 ******************************************************************************/
842
843static void priv_status_resp(struct usb_serial_port *port)
844{
845 struct garmin_data * garmin_data_p = usb_get_serial_port_data(port);
846 __le32 *pkt = (__le32 *)garmin_data_p->privpkt;
847
848 pkt[0] = __cpu_to_le32(GARMIN_LAYERID_PRIVATE);
849 pkt[1] = __cpu_to_le32(PRIV_PKTID_INFO_RESP);
850 pkt[2] = __cpu_to_le32(12);
851 pkt[3] = __cpu_to_le32(VERSION_MAJOR << 16 | VERSION_MINOR);
852 pkt[4] = __cpu_to_le32(garmin_data_p->mode);
853 pkt[5] = __cpu_to_le32(garmin_data_p->serial_num);
854
855 send_to_tty(port, (__u8*)pkt, 6*4);
856}
857
858
859/******************************************************************************
860 * Garmin specific driver functions
861 ******************************************************************************/
862
863static int process_resetdev_request(struct usb_serial_port *port)
864{
Hermann Kneisseleb6d8c22006-07-11 19:41:33 +0200865 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866 int status;
867 struct garmin_data * garmin_data_p = usb_get_serial_port_data(port);
868
Hermann Kneisseleb6d8c22006-07-11 19:41:33 +0200869 spin_lock_irqsave(&garmin_data_p->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870 garmin_data_p->flags &= ~(CLEAR_HALT_REQUIRED);
871 garmin_data_p->state = STATE_RESET;
872 garmin_data_p->serial_num = 0;
Hermann Kneisseleb6d8c22006-07-11 19:41:33 +0200873 spin_unlock_irqrestore(&garmin_data_p->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874
875 usb_kill_urb (port->interrupt_in_urb);
Harvey Harrison441b62c2008-03-03 16:08:34 -0800876 dbg("%s - usb_reset_device", __func__ );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877 status = usb_reset_device(port->serial->dev);
878 if (status)
879 dbg("%s - usb_reset_device failed: %d",
Harvey Harrison441b62c2008-03-03 16:08:34 -0800880 __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881 return status;
882}
883
884
885
886/*
887 * clear all cached data
888 */
889static int garmin_clear(struct garmin_data * garmin_data_p)
890{
Hermann Kneisseleb6d8c22006-07-11 19:41:33 +0200891 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892 int status = 0;
893
894 struct usb_serial_port *port = garmin_data_p->port;
895
Hermann Kneissel468d1362007-08-03 20:20:33 +0200896 if (port != NULL && atomic_read(&garmin_data_p->resp_count)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897 /* send a terminate command */
898 status = garmin_write_bulk(port, GARMIN_STOP_TRANSFER_REQ,
Hermann Kneissel468d1362007-08-03 20:20:33 +0200899 sizeof(GARMIN_STOP_TRANSFER_REQ),
900 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901 }
902
903 /* flush all queued data */
904 pkt_clear(garmin_data_p);
905
Hermann Kneisseleb6d8c22006-07-11 19:41:33 +0200906 spin_lock_irqsave(&garmin_data_p->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907 garmin_data_p->insize = 0;
908 garmin_data_p->outsize = 0;
Hermann Kneisseleb6d8c22006-07-11 19:41:33 +0200909 spin_unlock_irqrestore(&garmin_data_p->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910
911 return status;
912}
913
914
915
916
917
918
919static int garmin_init_session(struct usb_serial_port *port)
920{
Hermann Kneisseleb6d8c22006-07-11 19:41:33 +0200921 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922 struct usb_serial *serial = port->serial;
923 struct garmin_data * garmin_data_p = usb_get_serial_port_data(port);
924 int status = 0;
925
926 if (status == 0) {
927 usb_kill_urb (port->interrupt_in_urb);
928
Harvey Harrison441b62c2008-03-03 16:08:34 -0800929 dbg("%s - adding interrupt input", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930 port->interrupt_in_urb->dev = serial->dev;
931 status = usb_submit_urb(port->interrupt_in_urb, GFP_KERNEL);
932 if (status)
933 dev_err(&serial->dev->dev,
934 "%s - failed submitting interrupt urb,"
935 " error %d\n",
Harvey Harrison441b62c2008-03-03 16:08:34 -0800936 __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937 }
938
939 if (status == 0) {
Harvey Harrison441b62c2008-03-03 16:08:34 -0800940 dbg("%s - starting session ...", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941 garmin_data_p->state = STATE_ACTIVE;
942 status = garmin_write_bulk(port, GARMIN_START_SESSION_REQ,
Hermann Kneissel468d1362007-08-03 20:20:33 +0200943 sizeof(GARMIN_START_SESSION_REQ),
944 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945
946 if (status >= 0) {
947
Hermann Kneisseleb6d8c22006-07-11 19:41:33 +0200948 spin_lock_irqsave(&garmin_data_p->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949 garmin_data_p->ignorePkts++;
Hermann Kneisseleb6d8c22006-07-11 19:41:33 +0200950 spin_unlock_irqrestore(&garmin_data_p->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951
952 /* not needed, but the win32 driver does it too ... */
953 status = garmin_write_bulk(port,
954 GARMIN_START_SESSION_REQ2,
Hermann Kneissel468d1362007-08-03 20:20:33 +0200955 sizeof(GARMIN_START_SESSION_REQ2),
956 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957 if (status >= 0) {
958 status = 0;
Hermann Kneisseleb6d8c22006-07-11 19:41:33 +0200959 spin_lock_irqsave(&garmin_data_p->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960 garmin_data_p->ignorePkts++;
Hermann Kneisseleb6d8c22006-07-11 19:41:33 +0200961 spin_unlock_irqrestore(&garmin_data_p->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962 }
963 }
964 }
965
966 return status;
967}
968
969
970
971
972
Alan Cox95da3102008-07-22 11:09:07 +0100973static int garmin_open (struct tty_struct *tty,
974 struct usb_serial_port *port, struct file *filp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975{
Hermann Kneisseleb6d8c22006-07-11 19:41:33 +0200976 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977 int status = 0;
978 struct garmin_data * garmin_data_p = usb_get_serial_port_data(port);
979
Harvey Harrison441b62c2008-03-03 16:08:34 -0800980 dbg("%s - port %d", __func__, port->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981
982 /*
983 * Force low_latency on so that our tty_push actually forces the data
984 * through, otherwise it is scheduled, and with high data rates (like
985 * with OHCI) data can get lost.
986 */
Alan Cox95da3102008-07-22 11:09:07 +0100987 if (tty)
988 tty->low_latency = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989
Hermann Kneisseleb6d8c22006-07-11 19:41:33 +0200990 spin_lock_irqsave(&garmin_data_p->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991 garmin_data_p->mode = initial_mode;
992 garmin_data_p->count = 0;
993 garmin_data_p->flags = 0;
Hermann Kneissel468d1362007-08-03 20:20:33 +0200994 atomic_set(&garmin_data_p->req_count, 0);
995 atomic_set(&garmin_data_p->resp_count, 0);
Hermann Kneisseleb6d8c22006-07-11 19:41:33 +0200996 spin_unlock_irqrestore(&garmin_data_p->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997
998 /* shutdown any bulk reads that might be going on */
999 usb_kill_urb (port->write_urb);
1000 usb_kill_urb (port->read_urb);
1001
Alan Cox95da3102008-07-22 11:09:07 +01001002 if (garmin_data_p->state == STATE_RESET)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003 status = garmin_init_session(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004
1005 garmin_data_p->state = STATE_ACTIVE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006 return status;
1007}
1008
1009
Alan Cox95da3102008-07-22 11:09:07 +01001010static void garmin_close(struct tty_struct *tty,
1011 struct usb_serial_port *port, struct file * filp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012{
1013 struct usb_serial *serial = port->serial;
1014 struct garmin_data * garmin_data_p = usb_get_serial_port_data(port);
1015
Harvey Harrison441b62c2008-03-03 16:08:34 -08001016 dbg("%s - port %d - mode=%d state=%d flags=0x%X", __func__,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017 port->number, garmin_data_p->mode,
1018 garmin_data_p->state, garmin_data_p->flags);
1019
1020 if (!serial)
1021 return;
1022
Oliver Neukum95bef012008-01-22 13:56:18 +01001023 mutex_lock(&port->serial->disc_mutex);
1024 if (!port->serial->disconnected)
1025 garmin_clear(garmin_data_p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026
1027 /* shutdown our urbs */
1028 usb_kill_urb (port->read_urb);
1029 usb_kill_urb (port->write_urb);
1030
Oliver Neukum95bef012008-01-22 13:56:18 +01001031 if (!port->serial->disconnected) {
1032 if (noResponseFromAppLayer(garmin_data_p) ||
1033 ((garmin_data_p->flags & CLEAR_HALT_REQUIRED) != 0)) {
1034 process_resetdev_request(port);
1035 garmin_data_p->state = STATE_RESET;
1036 } else {
1037 garmin_data_p->state = STATE_DISCONNECTED;
1038 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039 } else {
1040 garmin_data_p->state = STATE_DISCONNECTED;
1041 }
Oliver Neukum95bef012008-01-22 13:56:18 +01001042 mutex_unlock(&port->serial->disc_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043}
1044
David Howells7d12e782006-10-05 14:55:46 +01001045static void garmin_write_bulk_callback (struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046{
Hermann Kneisseleb6d8c22006-07-11 19:41:33 +02001047 unsigned long flags;
Ming Leicdc97792008-02-24 18:41:47 +08001048 struct usb_serial_port *port = urb->context;
Greg Kroah-Hartmanf9feb512007-06-15 15:44:13 -07001049 int status = urb->status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050
Hermann Kneissel468d1362007-08-03 20:20:33 +02001051 if (port) {
1052 struct garmin_data * garmin_data_p = usb_get_serial_port_data(port);
1053
Harvey Harrison441b62c2008-03-03 16:08:34 -08001054 dbg("%s - port %d", __func__, port->number);
Hermann Kneissel468d1362007-08-03 20:20:33 +02001055
1056 if (GARMIN_LAYERID_APPL == getLayerId(urb->transfer_buffer)
1057 && (garmin_data_p->mode == MODE_GARMIN_SERIAL)) {
1058 gsp_send_ack(garmin_data_p, ((__u8 *)urb->transfer_buffer)[4]);
1059 }
1060
1061 if (status) {
1062 dbg("%s - nonzero write bulk status received: %d",
Harvey Harrison441b62c2008-03-03 16:08:34 -08001063 __func__, urb->status);
Hermann Kneissel468d1362007-08-03 20:20:33 +02001064 spin_lock_irqsave(&garmin_data_p->lock, flags);
1065 garmin_data_p->flags |= CLEAR_HALT_REQUIRED;
1066 spin_unlock_irqrestore(&garmin_data_p->lock, flags);
1067 }
1068
1069 usb_serial_port_softint(port);
1070 }
1071
1072 /* Ignore errors that resulted from garmin_write_bulk with dismiss_ack=1 */
1073
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074 /* free up the transfer buffer, as usb_free_urb() does not do this */
1075 kfree (urb->transfer_buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076}
1077
1078
1079static int garmin_write_bulk (struct usb_serial_port *port,
Hermann Kneissel468d1362007-08-03 20:20:33 +02001080 const unsigned char *buf, int count,
1081 int dismiss_ack)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082{
Hermann Kneisseleb6d8c22006-07-11 19:41:33 +02001083 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084 struct usb_serial *serial = port->serial;
1085 struct garmin_data * garmin_data_p = usb_get_serial_port_data(port);
1086 struct urb *urb;
1087 unsigned char *buffer;
1088 int status;
1089
Harvey Harrison441b62c2008-03-03 16:08:34 -08001090 dbg("%s - port %d, state %d", __func__, port->number,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091 garmin_data_p->state);
1092
Hermann Kneisseleb6d8c22006-07-11 19:41:33 +02001093 spin_lock_irqsave(&garmin_data_p->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094 garmin_data_p->flags &= ~FLAGS_DROP_DATA;
Hermann Kneisseleb6d8c22006-07-11 19:41:33 +02001095 spin_unlock_irqrestore(&garmin_data_p->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096
1097 buffer = kmalloc (count, GFP_ATOMIC);
1098 if (!buffer) {
1099 dev_err(&port->dev, "out of memory\n");
1100 return -ENOMEM;
1101 }
1102
1103 urb = usb_alloc_urb(0, GFP_ATOMIC);
1104 if (!urb) {
1105 dev_err(&port->dev, "no more free urbs\n");
1106 kfree (buffer);
1107 return -ENOMEM;
1108 }
1109
1110 memcpy (buffer, buf, count);
1111
Harvey Harrison441b62c2008-03-03 16:08:34 -08001112 usb_serial_debug_data(debug, &port->dev, __func__, count, buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113
1114 usb_fill_bulk_urb (urb, serial->dev,
1115 usb_sndbulkpipe (serial->dev,
1116 port->bulk_out_endpointAddress),
1117 buffer, count,
Hermann Kneissel468d1362007-08-03 20:20:33 +02001118 garmin_write_bulk_callback,
1119 dismiss_ack ? NULL : port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120 urb->transfer_flags |= URB_ZERO_PACKET;
1121
1122 if (GARMIN_LAYERID_APPL == getLayerId(buffer)) {
Hermann Kneissel468d1362007-08-03 20:20:33 +02001123 atomic_inc(&garmin_data_p->req_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124 if (garmin_data_p->mode == MODE_GARMIN_SERIAL) {
1125 pkt_clear(garmin_data_p);
1126 garmin_data_p->state = STATE_GSP_WAIT_DATA;
1127 }
1128 }
1129
1130 /* send it down the pipe */
1131 status = usb_submit_urb(urb, GFP_ATOMIC);
1132 if (status) {
1133 dev_err(&port->dev,
1134 "%s - usb_submit_urb(write bulk) "
1135 "failed with status = %d\n",
Harvey Harrison441b62c2008-03-03 16:08:34 -08001136 __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137 count = status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138 }
1139
1140 /* we are done with this urb, so let the host driver
1141 * really free it when it is finished with it */
1142 usb_free_urb (urb);
1143
1144 return count;
1145}
1146
Alan Cox95da3102008-07-22 11:09:07 +01001147static int garmin_write (struct tty_struct *tty, struct usb_serial_port *port,
1148 const unsigned char *buf, int count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149{
1150 int pktid, pktsiz, len;
1151 struct garmin_data * garmin_data_p = usb_get_serial_port_data(port);
1152 __le32 *privpkt = (__le32 *)garmin_data_p->privpkt;
1153
Harvey Harrison441b62c2008-03-03 16:08:34 -08001154 usb_serial_debug_data(debug, &port->dev, __func__, count, buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155
1156 /* check for our private packets */
1157 if (count >= GARMIN_PKTHDR_LENGTH) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158 len = PRIVPKTSIZ;
1159 if (count < len)
1160 len = count;
1161
1162 memcpy(garmin_data_p->privpkt, buf, len);
1163
1164 pktsiz = getDataLength(garmin_data_p->privpkt);
1165 pktid = getPacketId(garmin_data_p->privpkt);
1166
1167 if (count == (GARMIN_PKTHDR_LENGTH+pktsiz)
1168 && GARMIN_LAYERID_PRIVATE == getLayerId(garmin_data_p->privpkt)) {
1169
1170 dbg("%s - processing private request %d",
Harvey Harrison441b62c2008-03-03 16:08:34 -08001171 __func__, pktid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172
1173 // drop all unfinished transfers
1174 garmin_clear(garmin_data_p);
1175
1176 switch(pktid) {
1177
1178 case PRIV_PKTID_SET_DEBUG:
1179 if (pktsiz != 4)
1180 return -EINVPKT;
1181 debug = __le32_to_cpu(privpkt[3]);
1182 dbg("%s - debug level set to 0x%X",
Harvey Harrison441b62c2008-03-03 16:08:34 -08001183 __func__, debug);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184 break;
1185
1186 case PRIV_PKTID_SET_MODE:
1187 if (pktsiz != 4)
1188 return -EINVPKT;
1189 garmin_data_p->mode = __le32_to_cpu(privpkt[3]);
1190 dbg("%s - mode set to %d",
Harvey Harrison441b62c2008-03-03 16:08:34 -08001191 __func__, garmin_data_p->mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192 break;
1193
1194 case PRIV_PKTID_INFO_REQ:
1195 priv_status_resp(port);
1196 break;
1197
1198 case PRIV_PKTID_RESET_REQ:
Hermann Kneissel468d1362007-08-03 20:20:33 +02001199 atomic_inc(&garmin_data_p->req_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200 break;
1201
1202 case PRIV_PKTID_SET_DEF_MODE:
1203 if (pktsiz != 4)
1204 return -EINVPKT;
1205 initial_mode = __le32_to_cpu(privpkt[3]);
1206 dbg("%s - initial_mode set to %d",
Harvey Harrison441b62c2008-03-03 16:08:34 -08001207 __func__,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208 garmin_data_p->mode);
1209 break;
1210 }
1211 return count;
1212 }
1213 }
1214
Hermann Kneisseleb6d8c22006-07-11 19:41:33 +02001215 garmin_data_p->ignorePkts = 0;
1216
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217 if (garmin_data_p->mode == MODE_GARMIN_SERIAL) {
1218 return gsp_receive(garmin_data_p, buf, count);
1219 } else { /* MODE_NATIVE */
1220 return nat_receive(garmin_data_p, buf, count);
1221 }
1222}
1223
1224
Alan Cox95da3102008-07-22 11:09:07 +01001225static int garmin_write_room(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226{
Alan Cox95da3102008-07-22 11:09:07 +01001227 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228 /*
1229 * Report back the bytes currently available in the output buffer.
1230 */
1231 struct garmin_data * garmin_data_p = usb_get_serial_port_data(port);
1232 return GPS_OUT_BUFSIZ-garmin_data_p->outsize;
1233}
1234
1235
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236static void garmin_read_process(struct garmin_data * garmin_data_p,
1237 unsigned char *data, unsigned data_length)
1238{
1239 if (garmin_data_p->flags & FLAGS_DROP_DATA) {
1240 /* abort-transfer cmd is actice */
Harvey Harrison441b62c2008-03-03 16:08:34 -08001241 dbg("%s - pkt dropped", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242 } else if (garmin_data_p->state != STATE_DISCONNECTED &&
1243 garmin_data_p->state != STATE_RESET ) {
1244
1245 /* remember any appl.layer packets, so we know
1246 if a reset is required or not when closing
1247 the device */
1248 if (0 == memcmp(data, GARMIN_APP_LAYER_REPLY,
Hermann Kneisseleb6d8c22006-07-11 19:41:33 +02001249 sizeof(GARMIN_APP_LAYER_REPLY))) {
Hermann Kneissel468d1362007-08-03 20:20:33 +02001250 atomic_inc(&garmin_data_p->resp_count);
Hermann Kneisseleb6d8c22006-07-11 19:41:33 +02001251 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252
1253 /* if throttling is active or postprecessing is required
Hermann Kneisseleb6d8c22006-07-11 19:41:33 +02001254 put the received data in the input queue, otherwise
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255 send it directly to the tty port */
1256 if (garmin_data_p->flags & FLAGS_QUEUING) {
1257 pkt_add(garmin_data_p, data, data_length);
1258 } else if (garmin_data_p->mode == MODE_GARMIN_SERIAL) {
1259 if (getLayerId(data) == GARMIN_LAYERID_APPL) {
1260 pkt_add(garmin_data_p, data, data_length);
1261 }
1262 } else {
1263 send_to_tty(garmin_data_p->port, data, data_length);
1264 }
1265 }
1266}
1267
1268
David Howells7d12e782006-10-05 14:55:46 +01001269static void garmin_read_bulk_callback (struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270{
Hermann Kneisseleb6d8c22006-07-11 19:41:33 +02001271 unsigned long flags;
Ming Leicdc97792008-02-24 18:41:47 +08001272 struct usb_serial_port *port = urb->context;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273 struct usb_serial *serial = port->serial;
1274 struct garmin_data * garmin_data_p = usb_get_serial_port_data(port);
1275 unsigned char *data = urb->transfer_buffer;
Greg Kroah-Hartmanf9feb512007-06-15 15:44:13 -07001276 int status = urb->status;
1277 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278
Harvey Harrison441b62c2008-03-03 16:08:34 -08001279 dbg("%s - port %d", __func__, port->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280
1281 if (!serial) {
Harvey Harrison441b62c2008-03-03 16:08:34 -08001282 dbg("%s - bad serial pointer, exiting", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283 return;
1284 }
1285
Greg Kroah-Hartmanf9feb512007-06-15 15:44:13 -07001286 if (status) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287 dbg("%s - nonzero read bulk status received: %d",
Harvey Harrison441b62c2008-03-03 16:08:34 -08001288 __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289 return;
1290 }
1291
1292 usb_serial_debug_data(debug, &port->dev,
Harvey Harrison441b62c2008-03-03 16:08:34 -08001293 __func__, urb->actual_length, data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294
1295 garmin_read_process(garmin_data_p, data, urb->actual_length);
1296
Hermann Kneisseleb6d8c22006-07-11 19:41:33 +02001297 if (urb->actual_length == 0 &&
1298 0 != (garmin_data_p->flags & FLAGS_BULK_IN_RESTART)) {
1299 spin_lock_irqsave(&garmin_data_p->lock, flags);
1300 garmin_data_p->flags &= ~FLAGS_BULK_IN_RESTART;
1301 spin_unlock_irqrestore(&garmin_data_p->lock, flags);
Greg Kroah-Hartmanf9feb512007-06-15 15:44:13 -07001302 retval = usb_submit_urb(port->read_urb, GFP_ATOMIC);
1303 if (retval)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304 dev_err(&port->dev,
1305 "%s - failed resubmitting read urb, error %d\n",
Harvey Harrison441b62c2008-03-03 16:08:34 -08001306 __func__, retval);
Hermann Kneisseleb6d8c22006-07-11 19:41:33 +02001307 } else if (urb->actual_length > 0) {
1308 /* Continue trying to read until nothing more is received */
1309 if (0 == (garmin_data_p->flags & FLAGS_THROTTLED)) {
Greg Kroah-Hartmanf9feb512007-06-15 15:44:13 -07001310 retval = usb_submit_urb(port->read_urb, GFP_ATOMIC);
1311 if (retval)
Hermann Kneisseleb6d8c22006-07-11 19:41:33 +02001312 dev_err(&port->dev,
Greg Kroah-Hartmanf9feb512007-06-15 15:44:13 -07001313 "%s - failed resubmitting read urb, "
Harvey Harrison441b62c2008-03-03 16:08:34 -08001314 "error %d\n", __func__, retval);
Hermann Kneisseleb6d8c22006-07-11 19:41:33 +02001315 }
1316 } else {
Harvey Harrison441b62c2008-03-03 16:08:34 -08001317 dbg("%s - end of bulk data", __func__);
Hermann Kneisseleb6d8c22006-07-11 19:41:33 +02001318 spin_lock_irqsave(&garmin_data_p->lock, flags);
1319 garmin_data_p->flags &= ~FLAGS_BULK_IN_ACTIVE;
1320 spin_unlock_irqrestore(&garmin_data_p->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321 }
1322 return;
1323}
1324
1325
David Howells7d12e782006-10-05 14:55:46 +01001326static void garmin_read_int_callback (struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327{
Hermann Kneisseleb6d8c22006-07-11 19:41:33 +02001328 unsigned long flags;
Greg Kroah-Hartmanf9feb512007-06-15 15:44:13 -07001329 int retval;
Ming Leicdc97792008-02-24 18:41:47 +08001330 struct usb_serial_port *port = urb->context;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331 struct usb_serial *serial = port->serial;
1332 struct garmin_data * garmin_data_p = usb_get_serial_port_data(port);
1333 unsigned char *data = urb->transfer_buffer;
Greg Kroah-Hartmanf9feb512007-06-15 15:44:13 -07001334 int status = urb->status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335
Greg Kroah-Hartmanf9feb512007-06-15 15:44:13 -07001336 switch (status) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337 case 0:
1338 /* success */
1339 break;
1340 case -ECONNRESET:
1341 case -ENOENT:
1342 case -ESHUTDOWN:
1343 /* this urb is terminated, clean up */
1344 dbg("%s - urb shutting down with status: %d",
Harvey Harrison441b62c2008-03-03 16:08:34 -08001345 __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346 return;
1347 default:
1348 dbg("%s - nonzero urb status received: %d",
Harvey Harrison441b62c2008-03-03 16:08:34 -08001349 __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350 return;
1351 }
1352
Harvey Harrison441b62c2008-03-03 16:08:34 -08001353 usb_serial_debug_data(debug, &port->dev, __func__,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354 urb->actual_length, urb->transfer_buffer);
1355
1356 if (urb->actual_length == sizeof(GARMIN_BULK_IN_AVAIL_REPLY) &&
1357 0 == memcmp(data, GARMIN_BULK_IN_AVAIL_REPLY,
1358 sizeof(GARMIN_BULK_IN_AVAIL_REPLY))) {
1359
Harvey Harrison441b62c2008-03-03 16:08:34 -08001360 dbg("%s - bulk data available.", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361
Hermann Kneisseleb6d8c22006-07-11 19:41:33 +02001362 if (0 == (garmin_data_p->flags & FLAGS_BULK_IN_ACTIVE)) {
1363
1364 /* bulk data available */
1365 usb_fill_bulk_urb (port->read_urb, serial->dev,
1366 usb_rcvbulkpipe (serial->dev,
1367 port->bulk_in_endpointAddress),
1368 port->read_urb->transfer_buffer,
1369 port->read_urb->transfer_buffer_length,
1370 garmin_read_bulk_callback, port);
Greg Kroah-Hartmanf9feb512007-06-15 15:44:13 -07001371 retval = usb_submit_urb(port->read_urb, GFP_ATOMIC);
1372 if (retval) {
Hermann Kneisseleb6d8c22006-07-11 19:41:33 +02001373 dev_err(&port->dev,
1374 "%s - failed submitting read urb, error %d\n",
Harvey Harrison441b62c2008-03-03 16:08:34 -08001375 __func__, retval);
Hermann Kneisseleb6d8c22006-07-11 19:41:33 +02001376 } else {
1377 spin_lock_irqsave(&garmin_data_p->lock, flags);
1378 garmin_data_p->flags |= FLAGS_BULK_IN_ACTIVE;
1379 /* do not send this packet to the user */
1380 garmin_data_p->ignorePkts = 1;
1381 spin_unlock_irqrestore(&garmin_data_p->lock, flags);
1382 }
1383 } else {
1384 /* bulk-in transfer still active */
1385 spin_lock_irqsave(&garmin_data_p->lock, flags);
1386 garmin_data_p->flags |= FLAGS_BULK_IN_RESTART;
1387 spin_unlock_irqrestore(&garmin_data_p->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388 }
1389
1390 } else if (urb->actual_length == (4+sizeof(GARMIN_START_SESSION_REPLY))
1391 && 0 == memcmp(data, GARMIN_START_SESSION_REPLY,
1392 sizeof(GARMIN_START_SESSION_REPLY))) {
1393
Hermann Kneisseleb6d8c22006-07-11 19:41:33 +02001394 spin_lock_irqsave(&garmin_data_p->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395 garmin_data_p->flags |= FLAGS_SESSION_REPLY1_SEEN;
Hermann Kneisseleb6d8c22006-07-11 19:41:33 +02001396 spin_unlock_irqrestore(&garmin_data_p->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397
1398 /* save the serial number */
1399 garmin_data_p->serial_num
1400 = __le32_to_cpup((__le32*)(data+GARMIN_PKTHDR_LENGTH));
1401
1402 dbg("%s - start-of-session reply seen - serial %u.",
Harvey Harrison441b62c2008-03-03 16:08:34 -08001403 __func__, garmin_data_p->serial_num);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404 }
1405
1406 if (garmin_data_p->ignorePkts) {
1407 /* this reply belongs to a request generated by the driver,
1408 ignore it. */
1409 dbg("%s - pkt ignored (%d)",
Harvey Harrison441b62c2008-03-03 16:08:34 -08001410 __func__, garmin_data_p->ignorePkts);
Hermann Kneisseleb6d8c22006-07-11 19:41:33 +02001411 spin_lock_irqsave(&garmin_data_p->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412 garmin_data_p->ignorePkts--;
Hermann Kneisseleb6d8c22006-07-11 19:41:33 +02001413 spin_unlock_irqrestore(&garmin_data_p->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414 } else {
1415 garmin_read_process(garmin_data_p, data, urb->actual_length);
1416 }
1417
1418 port->interrupt_in_urb->dev = port->serial->dev;
Greg Kroah-Hartmanf9feb512007-06-15 15:44:13 -07001419 retval = usb_submit_urb (urb, GFP_ATOMIC);
1420 if (retval)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421 dev_err(&urb->dev->dev,
1422 "%s - Error %d submitting interrupt urb\n",
Harvey Harrison441b62c2008-03-03 16:08:34 -08001423 __func__, retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424}
1425
1426
1427/*
1428 * Sends the next queued packt to the tty port (garmin native mode only)
1429 * and then sets a timer to call itself again until all queued data
1430 * is sent.
1431 */
1432static int garmin_flush_queue(struct garmin_data * garmin_data_p)
1433{
Hermann Kneisseleb6d8c22006-07-11 19:41:33 +02001434 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001435 struct garmin_packet *pkt;
1436
1437 if ((garmin_data_p->flags & FLAGS_THROTTLED) == 0) {
1438 pkt = pkt_pop(garmin_data_p);
1439 if (pkt != NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440 send_to_tty(garmin_data_p->port, pkt->data, pkt->size);
1441 kfree(pkt);
1442 mod_timer(&garmin_data_p->timer, (1)+jiffies);
1443
1444 } else {
Hermann Kneisseleb6d8c22006-07-11 19:41:33 +02001445 spin_lock_irqsave(&garmin_data_p->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446 garmin_data_p->flags &= ~FLAGS_QUEUING;
Hermann Kneisseleb6d8c22006-07-11 19:41:33 +02001447 spin_unlock_irqrestore(&garmin_data_p->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448 }
1449 }
1450 return 0;
1451}
1452
1453
Alan Cox95da3102008-07-22 11:09:07 +01001454static void garmin_throttle(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455{
Alan Cox95da3102008-07-22 11:09:07 +01001456 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457 struct garmin_data * garmin_data_p = usb_get_serial_port_data(port);
Alan Cox95da3102008-07-22 11:09:07 +01001458 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459
Harvey Harrison441b62c2008-03-03 16:08:34 -08001460 dbg("%s - port %d", __func__, port->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461 /* set flag, data received will be put into a queue
1462 for later processing */
Hermann Kneisseleb6d8c22006-07-11 19:41:33 +02001463 spin_lock_irqsave(&garmin_data_p->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464 garmin_data_p->flags |= FLAGS_QUEUING|FLAGS_THROTTLED;
Hermann Kneisseleb6d8c22006-07-11 19:41:33 +02001465 spin_unlock_irqrestore(&garmin_data_p->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466}
1467
1468
Alan Cox95da3102008-07-22 11:09:07 +01001469static void garmin_unthrottle (struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470{
Alan Cox95da3102008-07-22 11:09:07 +01001471 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472 struct garmin_data * garmin_data_p = usb_get_serial_port_data(port);
Alan Cox95da3102008-07-22 11:09:07 +01001473 unsigned long flags;
Hermann Kneisseleb6d8c22006-07-11 19:41:33 +02001474 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475
Harvey Harrison441b62c2008-03-03 16:08:34 -08001476 dbg("%s - port %d", __func__, port->number);
Hermann Kneisseleb6d8c22006-07-11 19:41:33 +02001477 spin_lock_irqsave(&garmin_data_p->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478 garmin_data_p->flags &= ~FLAGS_THROTTLED;
Hermann Kneisseleb6d8c22006-07-11 19:41:33 +02001479 spin_unlock_irqrestore(&garmin_data_p->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480
1481 /* in native mode send queued data to tty, in
1482 serial mode nothing needs to be done here */
1483 if (garmin_data_p->mode == MODE_NATIVE)
1484 garmin_flush_queue(garmin_data_p);
Hermann Kneisseleb6d8c22006-07-11 19:41:33 +02001485
1486 if (0 != (garmin_data_p->flags & FLAGS_BULK_IN_ACTIVE)) {
1487 status = usb_submit_urb(port->read_urb, GFP_ATOMIC);
1488 if (status)
1489 dev_err(&port->dev,
1490 "%s - failed resubmitting read urb, error %d\n",
Harvey Harrison441b62c2008-03-03 16:08:34 -08001491 __func__, status);
Hermann Kneisseleb6d8c22006-07-11 19:41:33 +02001492 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493}
1494
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495/*
1496 * The timer is currently only used to send queued packets to
1497 * the tty in cases where the protocol provides no own handshaking
1498 * to initiate the transfer.
1499 */
1500static void timeout_handler(unsigned long data)
1501{
1502 struct garmin_data *garmin_data_p = (struct garmin_data *) data;
1503
1504 /* send the next queued packet to the tty port */
1505 if (garmin_data_p->mode == MODE_NATIVE)
1506 if (garmin_data_p->flags & FLAGS_QUEUING)
1507 garmin_flush_queue(garmin_data_p);
1508}
1509
1510
1511
Alan Cox95da3102008-07-22 11:09:07 +01001512static int garmin_attach(struct usb_serial *serial)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001513{
1514 int status = 0;
1515 struct usb_serial_port *port = serial->port[0];
1516 struct garmin_data * garmin_data_p = NULL;
1517
Harvey Harrison441b62c2008-03-03 16:08:34 -08001518 dbg("%s", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519
Burman Yan7ac9da12006-11-22 20:54:38 +02001520 garmin_data_p = kzalloc(sizeof(struct garmin_data), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521 if (garmin_data_p == NULL) {
Harvey Harrison441b62c2008-03-03 16:08:34 -08001522 dev_err(&port->dev, "%s - Out of memory\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523 return -ENOMEM;
1524 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525 init_timer(&garmin_data_p->timer);
1526 spin_lock_init(&garmin_data_p->lock);
1527 INIT_LIST_HEAD(&garmin_data_p->pktlist);
1528 //garmin_data_p->timer.expires = jiffies + session_timeout;
1529 garmin_data_p->timer.data = (unsigned long)garmin_data_p;
1530 garmin_data_p->timer.function = timeout_handler;
1531 garmin_data_p->port = port;
1532 garmin_data_p->state = 0;
1533 garmin_data_p->count = 0;
1534 usb_set_serial_port_data(port, garmin_data_p);
1535
1536 status = garmin_init_session(port);
1537
1538 return status;
1539}
1540
1541
Alan Cox95da3102008-07-22 11:09:07 +01001542static void garmin_shutdown(struct usb_serial *serial)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001543{
1544 struct usb_serial_port *port = serial->port[0];
1545 struct garmin_data * garmin_data_p = usb_get_serial_port_data(port);
1546
Harvey Harrison441b62c2008-03-03 16:08:34 -08001547 dbg("%s", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548
1549 usb_kill_urb (port->interrupt_in_urb);
1550 del_timer_sync(&garmin_data_p->timer);
1551 kfree (garmin_data_p);
1552 usb_set_serial_port_data(port, NULL);
1553}
1554
1555
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556/* All of the device info needed */
Greg Kroah-Hartmanea653702005-06-20 21:15:16 -07001557static struct usb_serial_driver garmin_device = {
Greg Kroah-Hartman18fcac32005-06-20 21:15:16 -07001558 .driver = {
Hermann Kneisseleb6d8c22006-07-11 19:41:33 +02001559 .owner = THIS_MODULE,
1560 .name = "garmin_gps",
Greg Kroah-Hartman18fcac32005-06-20 21:15:16 -07001561 },
Hermann Kneisseleb6d8c22006-07-11 19:41:33 +02001562 .description = "Garmin GPS usb/tty",
Johannes Hölzld9b1b782006-12-17 21:50:24 +01001563 .usb_driver = &garmin_driver,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564 .id_table = id_table,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001565 .num_ports = 1,
1566 .open = garmin_open,
1567 .close = garmin_close,
1568 .throttle = garmin_throttle,
1569 .unthrottle = garmin_unthrottle,
1570 .attach = garmin_attach,
1571 .shutdown = garmin_shutdown,
1572 .write = garmin_write,
1573 .write_room = garmin_write_room,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574 .write_bulk_callback = garmin_write_bulk_callback,
1575 .read_bulk_callback = garmin_read_bulk_callback,
1576 .read_int_callback = garmin_read_int_callback,
1577};
1578
1579
Hermann Kneisseleb6d8c22006-07-11 19:41:33 +02001580
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581static int __init garmin_init (void)
1582{
1583 int retval;
1584
1585 retval = usb_serial_register(&garmin_device);
1586 if (retval)
1587 goto failed_garmin_register;
1588 retval = usb_register(&garmin_driver);
1589 if (retval)
1590 goto failed_usb_register;
1591 info(DRIVER_DESC " " DRIVER_VERSION);
1592
1593 return 0;
1594failed_usb_register:
1595 usb_serial_deregister(&garmin_device);
1596failed_garmin_register:
1597 return retval;
1598}
1599
1600
1601static void __exit garmin_exit (void)
1602{
1603 usb_deregister (&garmin_driver);
1604 usb_serial_deregister (&garmin_device);
1605}
1606
1607
1608
1609
1610module_init(garmin_init);
1611module_exit(garmin_exit);
1612
1613MODULE_AUTHOR( DRIVER_AUTHOR );
1614MODULE_DESCRIPTION( DRIVER_DESC );
1615MODULE_LICENSE("GPL");
1616
1617module_param(debug, bool, S_IWUSR | S_IRUGO);
1618MODULE_PARM_DESC(debug, "Debug enabled or not");
1619module_param(initial_mode, int, S_IRUGO);
1620MODULE_PARM_DESC(initial_mode, "Initial mode");
1621