garmin_gps.c 37.3 KB
Newer Older
1
// SPDX-License-Identifier: GPL-2.0+
L
Linus Torvalds 已提交
2 3 4
/*
 * Garmin GPS driver
 *
5
 * Copyright (C) 2006-2011 Hermann Kneissel herkne@gmx.de
L
Linus Torvalds 已提交
6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
 *
 * The latest version of the driver can be found at
 * http://sourceforge.net/projects/garmin-gps/
 *
 * This driver has been derived from v2.1 of the visor driver.
 */

#include <linux/kernel.h>
#include <linux/errno.h>
#include <linux/slab.h>
#include <linux/timer.h>
#include <linux/tty.h>
#include <linux/tty_driver.h>
#include <linux/tty_flip.h>
#include <linux/module.h>
#include <linux/spinlock.h>
A
Alan Cox 已提交
22
#include <linux/uaccess.h>
A
Arun Sharma 已提交
23
#include <linux/atomic.h>
L
Linus Torvalds 已提交
24
#include <linux/usb.h>
25
#include <linux/usb/serial.h>
L
Linus Torvalds 已提交
26 27 28 29 30 31 32 33 34 35 36

/* the mode to be set when the port ist opened */
static int initial_mode = 1;

#define GARMIN_VENDOR_ID             0x091E

/*
 * Version Information
 */

#define VERSION_MAJOR	0
37
#define VERSION_MINOR	36
L
Linus Torvalds 已提交
38 39

#define _STR(s) #s
A
Alan Cox 已提交
40
#define _DRIVER_VERSION(a, b) "v" _STR(a) "." _STR(b)
L
Linus Torvalds 已提交
41 42 43 44 45 46 47 48
#define DRIVER_VERSION _DRIVER_VERSION(VERSION_MAJOR, VERSION_MINOR)
#define DRIVER_AUTHOR "hermann kneissel"
#define DRIVER_DESC "garmin gps driver"

/* error codes returned by the driver */
#define EINVPKT	1000	/* invalid packet structure */


A
Alan Cox 已提交
49
/* size of the header of a packet using the usb protocol */
L
Linus Torvalds 已提交
50 51
#define GARMIN_PKTHDR_LENGTH	12

A
Alan Cox 已提交
52 53
/* max. possible size of a packet using the serial protocol */
#define MAX_SERIAL_PKT_SIZ (3 + 255 + 3)
L
Linus Torvalds 已提交
54

A
Alan Cox 已提交
55 56
/*  max. possible size of a packet with worst case stuffing */
#define MAX_SERIAL_PKT_SIZ_STUFFED (MAX_SERIAL_PKT_SIZ + 256)
L
Linus Torvalds 已提交
57

A
Alan Cox 已提交
58 59 60 61 62 63 64
/* size of a buffer able to hold a complete (no stuffing) packet
 * (the document protocol does not contain packets with a larger
 *  size, but in theory a packet may be 64k+12 bytes - if in
 *  later protocol versions larger packet sizes occur, this value
 *  should be increased accordingly, so the input buffer is always
 *  large enough the store a complete packet inclusive header) */
#define GPS_IN_BUFSIZ  (GARMIN_PKTHDR_LENGTH+MAX_SERIAL_PKT_SIZ)
L
Linus Torvalds 已提交
65

A
Alan Cox 已提交
66 67
/* size of a buffer able to hold a complete (incl. stuffing) packet */
#define GPS_OUT_BUFSIZ (GARMIN_PKTHDR_LENGTH+MAX_SERIAL_PKT_SIZ_STUFFED)
L
Linus Torvalds 已提交
68

A
Alan Cox 已提交
69 70 71
/* where to place the packet id of a serial packet, so we can
 * prepend the usb-packet header without the need to move the
 * packets data */
L
Linus Torvalds 已提交
72 73
#define GSP_INITIAL_OFFSET (GARMIN_PKTHDR_LENGTH-2)

A
Alan Cox 已提交
74
/* max. size of incoming private packets (header+1 param) */
L
Linus Torvalds 已提交
75 76 77 78
#define PRIVPKTSIZ (GARMIN_PKTHDR_LENGTH+4)

#define GARMIN_LAYERID_TRANSPORT  0
#define GARMIN_LAYERID_APPL      20
A
Alan Cox 已提交
79
/* our own layer-id to use for some control mechanisms */
L
Linus Torvalds 已提交
80 81 82 83 84 85 86
#define GARMIN_LAYERID_PRIVATE	0x01106E4B

#define GARMIN_PKTID_PVT_DATA	51
#define GARMIN_PKTID_L001_COMMAND_DATA 10

#define CMND_ABORT_TRANSFER 0

A
Alan Cox 已提交
87
/* packet ids used in private layer */
L
Linus Torvalds 已提交
88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104
#define PRIV_PKTID_SET_DEBUG	1
#define PRIV_PKTID_SET_MODE	2
#define PRIV_PKTID_INFO_REQ	3
#define PRIV_PKTID_INFO_RESP	4
#define PRIV_PKTID_RESET_REQ	5
#define PRIV_PKTID_SET_DEF_MODE	6


#define ETX	0x03
#define DLE	0x10
#define ACK	0x06
#define NAK	0x15

/* structure used to queue incoming packets */
struct garmin_packet {
	struct list_head  list;
	int               seq;
A
Alan Cox 已提交
105 106
	/* the real size of the data array, always > 0 */
	int               size;
107
	__u8              data[];
L
Linus Torvalds 已提交
108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127
};

/* structure used to keep the current state of the driver */
struct garmin_data {
	__u8   state;
	__u16  flags;
	__u8   mode;
	__u8   count;
	__u8   pkt_id;
	__u32  serial_num;
	struct timer_list timer;
	struct usb_serial_port *port;
	int    seq_counter;
	int    insize;
	int    outsize;
	__u8   inbuffer [GPS_IN_BUFSIZ];  /* tty -> usb */
	__u8   outbuffer[GPS_OUT_BUFSIZ]; /* usb -> tty */
	__u8   privpkt[4*6];
	spinlock_t lock;
	struct list_head pktlist;
128
	struct usb_anchor write_urbs;
L
Linus Torvalds 已提交
129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146
};


#define STATE_NEW            0
#define STATE_INITIAL_DELAY  1
#define STATE_TIMEOUT        2
#define STATE_SESSION_REQ1   3
#define STATE_SESSION_REQ2   4
#define STATE_ACTIVE         5

#define STATE_RESET	     8
#define STATE_DISCONNECTED   9
#define STATE_WAIT_TTY_ACK  10
#define STATE_GSP_WAIT_DATA 11

#define MODE_NATIVE          0
#define MODE_GARMIN_SERIAL   1

A
Alan Cox 已提交
147
/* Flags used in garmin_data.flags: */
L
Linus Torvalds 已提交
148 149 150 151
#define FLAGS_SESSION_REPLY_MASK  0x00C0
#define FLAGS_SESSION_REPLY1_SEEN 0x0080
#define FLAGS_SESSION_REPLY2_SEEN 0x0040
#define FLAGS_BULK_IN_ACTIVE      0x0020
152 153
#define FLAGS_BULK_IN_RESTART     0x0010
#define FLAGS_THROTTLED           0x0008
154 155
#define APP_REQ_SEEN              0x0004
#define APP_RESP_SEEN             0x0002
L
Linus Torvalds 已提交
156 157 158 159 160 161 162 163 164 165 166 167 168 169
#define CLEAR_HALT_REQUIRED       0x0001

#define FLAGS_QUEUING             0x0100
#define FLAGS_DROP_DATA           0x0800

#define FLAGS_GSP_SKIP            0x1000
#define FLAGS_GSP_DLESEEN         0x2000






/* function prototypes */
170 171
static int gsp_next_packet(struct garmin_data *garmin_data_p);
static int garmin_write_bulk(struct usb_serial_port *port,
172 173
			     const unsigned char *buf, int count,
			     int dismiss_ack);
L
Linus Torvalds 已提交
174 175 176 177 178 179 180 181

/* some special packets to be send or received */
static unsigned char const GARMIN_START_SESSION_REQ[]
	= { 0, 0, 0, 0,  5, 0, 0, 0, 0, 0, 0, 0 };
static unsigned char const GARMIN_START_SESSION_REPLY[]
	= { 0, 0, 0, 0,  6, 0, 0, 0, 4, 0, 0, 0 };
static unsigned char const GARMIN_BULK_IN_AVAIL_REPLY[]
	= { 0, 0, 0, 0,  2, 0, 0, 0, 0, 0, 0, 0 };
182 183 184 185 186 187 188
static unsigned char const GARMIN_STOP_TRANSFER_REQ[]
	= { 20, 0, 0, 0,  10, 0, 0, 0, 2, 0, 0, 0, 0, 0 };
static unsigned char const GARMIN_STOP_TRANSFER_REQ_V2[]
	= { 20, 0, 0, 0,  10, 0, 0, 0, 1, 0, 0, 0, 0 };

/* packets currently unused, left as documentation */
#if 0
L
Linus Torvalds 已提交
189 190 191 192 193 194 195 196
static unsigned char const GARMIN_APP_LAYER_REPLY[]
	= { 0x14, 0, 0, 0 };
static unsigned char const GARMIN_START_PVT_REQ[]
	= { 20, 0, 0, 0,  10, 0, 0, 0, 2, 0, 0, 0, 49, 0 };
static unsigned char const GARMIN_STOP_PVT_REQ[]
	= { 20, 0, 0, 0,  10, 0, 0, 0, 2, 0, 0, 0, 50, 0 };
static unsigned char const PRIVATE_REQ[]
	=    { 0x4B, 0x6E, 0x10, 0x01,  0xFF, 0, 0, 0, 0xFF, 0, 0, 0 };
197
#endif
L
Linus Torvalds 已提交
198 199


200
static const struct usb_device_id id_table[] = {
A
Alan Cox 已提交
201 202 203
	/* the same device id seems to be used by all
	   usb enabled GPS devices */
	{ USB_DEVICE(GARMIN_VENDOR_ID, 3) },
L
Linus Torvalds 已提交
204 205
	{ }					/* Terminating entry */
};
A
Alan Cox 已提交
206
MODULE_DEVICE_TABLE(usb, id_table);
L
Linus Torvalds 已提交
207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230


static inline int getLayerId(const __u8 *usbPacket)
{
	return __le32_to_cpup((__le32 *)(usbPacket));
}

static inline int getPacketId(const __u8 *usbPacket)
{
	return __le32_to_cpup((__le32 *)(usbPacket+4));
}

static inline int getDataLength(const __u8 *usbPacket)
{
	return __le32_to_cpup((__le32 *)(usbPacket+8));
}


/*
 * check if the usb-packet in buf contains an abort-transfer command.
 * (if yes, all queued data will be dropped)
 */
static inline int isAbortTrfCmnd(const unsigned char *buf)
{
231 232 233 234
	if (memcmp(buf, GARMIN_STOP_TRANSFER_REQ,
			sizeof(GARMIN_STOP_TRANSFER_REQ)) == 0 ||
	    memcmp(buf, GARMIN_STOP_TRANSFER_REQ_V2,
			sizeof(GARMIN_STOP_TRANSFER_REQ_V2)) == 0)
L
Linus Torvalds 已提交
235 236 237 238 239 240 241 242
		return 1;
	else
		return 0;
}



static void send_to_tty(struct usb_serial_port *port,
243
			char *data, unsigned int actual_length)
L
Linus Torvalds 已提交
244
{
J
Jiri Slaby 已提交
245
	if (actual_length) {
246
		usb_serial_debug_data(&port->dev, __func__, actual_length, data);
J
Jiri Slaby 已提交
247
		tty_insert_flip_string(&port->port, data, actual_length);
J
Jiri Slaby 已提交
248
		tty_flip_buffer_push(&port->port);
L
Linus Torvalds 已提交
249 250 251 252 253 254 255 256 257 258 259
	}
}


/******************************************************************************
 * packet queue handling
 ******************************************************************************/

/*
 * queue a received (usb-)packet for later processing
 */
A
Alan Cox 已提交
260
static int pkt_add(struct garmin_data *garmin_data_p,
261
		   unsigned char *data, unsigned int data_length)
L
Linus Torvalds 已提交
262
{
263
	int state = 0;
L
Linus Torvalds 已提交
264 265 266 267
	int result = 0;
	unsigned long flags;
	struct garmin_packet *pkt;

268
	/* process only packets containing data ... */
L
Linus Torvalds 已提交
269 270
	if (data_length) {
		pkt = kmalloc(sizeof(struct garmin_packet)+data_length,
A
Alan Cox 已提交
271
								GFP_ATOMIC);
272
		if (!pkt)
L
Linus Torvalds 已提交
273
			return 0;
274

L
Linus Torvalds 已提交
275 276 277 278
		pkt->size = data_length;
		memcpy(pkt->data, data, data_length);

		spin_lock_irqsave(&garmin_data_p->lock, flags);
279
		garmin_data_p->flags |= FLAGS_QUEUING;
L
Linus Torvalds 已提交
280 281 282
		result = list_empty(&garmin_data_p->pktlist);
		pkt->seq = garmin_data_p->seq_counter++;
		list_add_tail(&pkt->list, &garmin_data_p->pktlist);
283
		state = garmin_data_p->state;
L
Linus Torvalds 已提交
284 285
		spin_unlock_irqrestore(&garmin_data_p->lock, flags);

286 287 288
		dev_dbg(&garmin_data_p->port->dev,
			"%s - added: pkt: %d - %d bytes\n", __func__,
			pkt->seq, data_length);
289

L
Linus Torvalds 已提交
290
		/* in serial mode, if someone is waiting for data from
291
		   the device, convert and send the next packet to tty. */
A
Alan Cox 已提交
292
		if (result && (state == STATE_GSP_WAIT_DATA))
L
Linus Torvalds 已提交
293 294 295 296 297 298 299
			gsp_next_packet(garmin_data_p);
	}
	return result;
}


/* get the next pending packet */
A
Alan Cox 已提交
300
static struct garmin_packet *pkt_pop(struct garmin_data *garmin_data_p)
L
Linus Torvalds 已提交
301 302 303 304 305 306 307 308 309 310 311 312 313 314 315
{
	unsigned long flags;
	struct garmin_packet *result = NULL;

	spin_lock_irqsave(&garmin_data_p->lock, flags);
	if (!list_empty(&garmin_data_p->pktlist)) {
		result = (struct garmin_packet *)garmin_data_p->pktlist.next;
		list_del(&result->list);
	}
	spin_unlock_irqrestore(&garmin_data_p->lock, flags);
	return result;
}


/* free up all queued data */
A
Alan Cox 已提交
316
static void pkt_clear(struct garmin_data *garmin_data_p)
L
Linus Torvalds 已提交
317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335
{
	unsigned long flags;
	struct garmin_packet *result = NULL;

	spin_lock_irqsave(&garmin_data_p->lock, flags);
	while (!list_empty(&garmin_data_p->pktlist)) {
		result = (struct garmin_packet *)garmin_data_p->pktlist.next;
		list_del(&result->list);
		kfree(result);
	}
	spin_unlock_irqrestore(&garmin_data_p->lock, flags);
}


/******************************************************************************
 * garmin serial protocol handling handling
 ******************************************************************************/

/* send an ack packet back to the tty */
A
Alan Cox 已提交
336
static int gsp_send_ack(struct garmin_data *garmin_data_p, __u8 pkt_id)
L
Linus Torvalds 已提交
337 338
{
	__u8 pkt[10];
339 340 341
	__u8 cksum = 0;
	__u8 *ptr = pkt;
	unsigned  l = 0;
L
Linus Torvalds 已提交
342

343
	dev_dbg(&garmin_data_p->port->dev, "%s - pkt-id: 0x%X.\n", __func__,
344
			pkt_id);
L
Linus Torvalds 已提交
345 346 347 348 349 350 351 352 353 354 355

	*ptr++ = DLE;
	*ptr++ = ACK;
	cksum += ACK;

	*ptr++ = 2;
	cksum += 2;

	*ptr++ = pkt_id;
	cksum += pkt_id;

A
Alan Cox 已提交
356
	if (pkt_id == DLE)
L
Linus Torvalds 已提交
357 358 359
		*ptr++ = DLE;

	*ptr++ = 0;
360
	*ptr++ = (-cksum) & 0xFF;
L
Linus Torvalds 已提交
361 362 363 364 365 366 367 368 369 370 371 372 373 374
	*ptr++ = DLE;
	*ptr++ = ETX;

	l = ptr-pkt;

	send_to_tty(garmin_data_p->port, pkt, l);
	return 0;
}



/*
 * called for a complete packet received from tty layer
 *
375
 * the complete packet (pktid ... cksum) is in garmin_data_p->inbuf starting
L
Linus Torvalds 已提交
376 377 378
 * at GSP_INITIAL_OFFSET.
 *
 * count - number of bytes in the input buffer including space reserved for
A
Alan Cox 已提交
379
 *         the usb header: GSP_INITIAL_OFFSET + number of bytes in packet
L
Linus Torvalds 已提交
380 381
 *         (including pkt-id, data-length a. cksum)
 */
A
Alan Cox 已提交
382
static int gsp_rec_packet(struct garmin_data *garmin_data_p, int count)
L
Linus Torvalds 已提交
383
{
384
	struct device *dev = &garmin_data_p->port->dev;
385
	unsigned long flags;
A
Alan Cox 已提交
386
	const __u8 *recpkt = garmin_data_p->inbuffer+GSP_INITIAL_OFFSET;
387
	__le32 *usbdata = (__le32 *) garmin_data_p->inbuffer;
L
Linus Torvalds 已提交
388 389 390 391 392
	int cksum = 0;
	int n = 0;
	int pktid = recpkt[0];
	int size = recpkt[1];

393 394
	usb_serial_debug_data(&garmin_data_p->port->dev, __func__,
			      count-GSP_INITIAL_OFFSET, recpkt);
L
Linus Torvalds 已提交
395 396

	if (size != (count-GSP_INITIAL_OFFSET-3)) {
397
		dev_dbg(dev, "%s - invalid size, expected %d bytes, got %d\n",
398
			__func__, size, (count-GSP_INITIAL_OFFSET-3));
L
Linus Torvalds 已提交
399 400 401 402 403 404
		return -EINVPKT;
	}

	cksum += *recpkt++;
	cksum += *recpkt++;

A
Alan Cox 已提交
405 406
	/* sanity check, remove after test ... */
	if ((__u8 *)&(usbdata[3]) != recpkt) {
407 408
		dev_dbg(dev, "%s - ptr mismatch %p - %p\n", __func__,
			&(usbdata[4]), recpkt);
L
Linus Torvalds 已提交
409 410 411 412 413 414 415 416
		return -EINVPKT;
	}

	while (n < size) {
		cksum += *recpkt++;
		n++;
	}

417
	if (((cksum + *recpkt) & 0xff) != 0) {
418
		dev_dbg(dev, "%s - invalid checksum, expected %02x, got %02x\n",
419
			__func__, -cksum & 0xff, *recpkt);
420 421
		return -EINVPKT;
	}
L
Linus Torvalds 已提交
422 423 424 425 426

	usbdata[0] = __cpu_to_le32(GARMIN_LAYERID_APPL);
	usbdata[1] = __cpu_to_le32(pktid);
	usbdata[2] = __cpu_to_le32(size);

A
Alan Cox 已提交
427
	garmin_write_bulk(garmin_data_p->port, garmin_data_p->inbuffer,
428
			   GARMIN_PKTHDR_LENGTH+size, 0);
L
Linus Torvalds 已提交
429 430 431 432

	/* if this was an abort-transfer command, flush all
	   queued data. */
	if (isAbortTrfCmnd(garmin_data_p->inbuffer)) {
433
		spin_lock_irqsave(&garmin_data_p->lock, flags);
L
Linus Torvalds 已提交
434
		garmin_data_p->flags |= FLAGS_DROP_DATA;
435
		spin_unlock_irqrestore(&garmin_data_p->lock, flags);
L
Linus Torvalds 已提交
436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461
		pkt_clear(garmin_data_p);
	}

	return count;
}



/*
 * Called for data received from tty
 *
 * buf contains the data read, it may span more than one packet or even
 * incomplete packets
 *
 * input record should be a serial-record, but it may not be complete.
 * Copy it into our local buffer, until an etx is seen (or an error
 * occurs).
 * Once the record is complete, convert into a usb packet and send it
 * to the bulk pipe, send an ack back to the tty.
 *
 * If the input is an ack, just send the last queued packet to the
 * tty layer.
 *
 * if the input is an abort command, drop all queued data.
 */

A
Alan Cox 已提交
462
static int gsp_receive(struct garmin_data *garmin_data_p,
463
		       const unsigned char *buf, int count)
L
Linus Torvalds 已提交
464
{
465
	struct device *dev = &garmin_data_p->port->dev;
466
	unsigned long flags;
L
Linus Torvalds 已提交
467 468
	int offs = 0;
	int ack_or_nak_seen = 0;
469 470
	__u8 *dest;
	int size;
A
Alan Cox 已提交
471
	/* dleSeen: set if last byte read was a DLE */
472
	int dleSeen;
A
Alan Cox 已提交
473 474 475
	/* skip: if set, skip incoming data until possible start of
	 *       new packet
	 */
476
	int skip;
L
Linus Torvalds 已提交
477 478
	__u8 data;

479 480 481 482 483 484 485
	spin_lock_irqsave(&garmin_data_p->lock, flags);
	dest = garmin_data_p->inbuffer;
	size = garmin_data_p->insize;
	dleSeen = garmin_data_p->flags & FLAGS_GSP_DLESEEN;
	skip = garmin_data_p->flags & FLAGS_GSP_SKIP;
	spin_unlock_irqrestore(&garmin_data_p->lock, flags);

486
	/* dev_dbg(dev, "%s - dle=%d skip=%d size=%d count=%d\n",
487
		__func__, dleSeen, skip, size, count); */
L
Linus Torvalds 已提交
488

A
Alan Cox 已提交
489
	if (size == 0)
L
Linus Torvalds 已提交
490 491 492 493 494
		size = GSP_INITIAL_OFFSET;

	while (offs < count) {

		data = *(buf+offs);
A
Alan Cox 已提交
495
		offs++;
L
Linus Torvalds 已提交
496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515

		if (data == DLE) {
			if (skip) { /* start of a new pkt */
				skip = 0;
				size = GSP_INITIAL_OFFSET;
				dleSeen = 1;
			} else if (dleSeen) {
				dest[size++] = data;
				dleSeen = 0;
			} else {
				dleSeen = 1;
			}
		} else if (data == ETX) {
			if (dleSeen) {
				/* packet complete */

				data = dest[GSP_INITIAL_OFFSET];

				if (data == ACK) {
					ack_or_nak_seen = ACK;
516
					dev_dbg(dev, "ACK packet complete.\n");
L
Linus Torvalds 已提交
517 518
				} else if (data == NAK) {
					ack_or_nak_seen = NAK;
519
					dev_dbg(dev, "NAK packet complete.\n");
L
Linus Torvalds 已提交
520
				} else {
521
					dev_dbg(dev, "packet complete - id=0x%X.\n",
522
							data);
L
Linus Torvalds 已提交
523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542
					gsp_rec_packet(garmin_data_p, size);
				}

				skip = 1;
				size = GSP_INITIAL_OFFSET;
				dleSeen = 0;
			} else {
				dest[size++] = data;
			}
		} else if (!skip) {

			if (dleSeen) {
				size = GSP_INITIAL_OFFSET;
				dleSeen = 0;
			}

			dest[size++] = data;
		}

		if (size >= GPS_IN_BUFSIZ) {
543
			dev_dbg(dev, "%s - packet too large.\n", __func__);
L
Linus Torvalds 已提交
544 545 546 547 548 549
			skip = 1;
			size = GSP_INITIAL_OFFSET;
			dleSeen = 0;
		}
	}

550 551
	spin_lock_irqsave(&garmin_data_p->lock, flags);

L
Linus Torvalds 已提交
552 553
	garmin_data_p->insize = size;

A
Alan Cox 已提交
554
	/* copy flags back to structure */
L
Linus Torvalds 已提交
555 556 557 558 559 560 561 562 563 564
	if (skip)
		garmin_data_p->flags |= FLAGS_GSP_SKIP;
	else
		garmin_data_p->flags &= ~FLAGS_GSP_SKIP;

	if (dleSeen)
		garmin_data_p->flags |= FLAGS_GSP_DLESEEN;
	else
		garmin_data_p->flags &= ~FLAGS_GSP_DLESEEN;

565 566
	spin_unlock_irqrestore(&garmin_data_p->lock, flags);

567 568 569 570 571 572
	if (ack_or_nak_seen) {
		if (gsp_next_packet(garmin_data_p) > 0)
			garmin_data_p->state = STATE_ACTIVE;
		else
			garmin_data_p->state = STATE_GSP_WAIT_DATA;
	}
L
Linus Torvalds 已提交
573 574 575 576 577 578 579 580 581 582 583 584
	return count;
}



/*
 * Sends a usb packet to the tty
 *
 * Assumes, that all packages and at an usb-packet boundary.
 *
 * return <0 on error, 0 if packet is incomplete or > 0 if packet was sent
 */
A
Alan Cox 已提交
585
static int gsp_send(struct garmin_data *garmin_data_p,
L
Linus Torvalds 已提交
586 587
		    const unsigned char *buf, int count)
{
588
	struct device *dev = &garmin_data_p->port->dev;
L
Linus Torvalds 已提交
589 590 591 592 593
	const unsigned char *src;
	unsigned char *dst;
	int pktid = 0;
	int datalen = 0;
	int cksum = 0;
A
Alan Cox 已提交
594
	int i = 0;
L
Linus Torvalds 已提交
595 596
	int k;

597 598
	dev_dbg(dev, "%s - state %d - %d bytes.\n", __func__,
		garmin_data_p->state, count);
L
Linus Torvalds 已提交
599 600 601

	k = garmin_data_p->outsize;
	if ((k+count) > GPS_OUT_BUFSIZ) {
602
		dev_dbg(dev, "packet too large\n");
L
Linus Torvalds 已提交
603 604 605 606 607 608 609 610 611 612
		garmin_data_p->outsize = 0;
		return -4;
	}

	memcpy(garmin_data_p->outbuffer+k, buf, count);
	k += count;
	garmin_data_p->outsize = k;

	if (k >= GARMIN_PKTHDR_LENGTH) {
		pktid  = getPacketId(garmin_data_p->outbuffer);
A
Alan Cox 已提交
613
		datalen = getDataLength(garmin_data_p->outbuffer);
L
Linus Torvalds 已提交
614 615 616 617 618 619 620
		i = GARMIN_PKTHDR_LENGTH + datalen;
		if (k < i)
			return 0;
	} else {
		return 0;
	}

621
	dev_dbg(dev, "%s - %d bytes in buffer, %d bytes in pkt.\n", __func__, k, i);
L
Linus Torvalds 已提交
622 623 624

	/* garmin_data_p->outbuffer now contains a complete packet */

625 626
	usb_serial_debug_data(&garmin_data_p->port->dev, __func__, k,
			      garmin_data_p->outbuffer);
L
Linus Torvalds 已提交
627 628 629

	garmin_data_p->outsize = 0;

630
	if (getLayerId(garmin_data_p->outbuffer) != GARMIN_LAYERID_APPL) {
631
		dev_dbg(dev, "not an application packet (%d)\n",
A
Alan Cox 已提交
632
				getLayerId(garmin_data_p->outbuffer));
L
Linus Torvalds 已提交
633 634 635 636
		return -1;
	}

	if (pktid > 255) {
637
		dev_dbg(dev, "packet-id %d too large\n", pktid);
L
Linus Torvalds 已提交
638 639 640 641
		return -2;
	}

	if (datalen > 255) {
642
		dev_dbg(dev, "packet-size %d too large\n", datalen);
L
Linus Torvalds 已提交
643 644 645 646 647 648 649
		return -3;
	}

	/* the serial protocol should be able to handle this packet */

	k = 0;
	src = garmin_data_p->outbuffer+GARMIN_PKTHDR_LENGTH;
A
Alan Cox 已提交
650
	for (i = 0; i < datalen; i++) {
L
Linus Torvalds 已提交
651 652 653 654 655 656
		if (*src++ == DLE)
			k++;
	}

	src = garmin_data_p->outbuffer+GARMIN_PKTHDR_LENGTH;
	if (k > (GARMIN_PKTHDR_LENGTH-2)) {
A
Alan Cox 已提交
657
		/* can't add stuffing DLEs in place, move data to end
658
		   of buffer ... */
L
Linus Torvalds 已提交
659 660 661 662 663 664 665 666 667 668 669 670 671 672 673
		dst = garmin_data_p->outbuffer+GPS_OUT_BUFSIZ-datalen;
		memcpy(dst, src, datalen);
		src = dst;
	}

	dst = garmin_data_p->outbuffer;

	*dst++ = DLE;
	*dst++ = pktid;
	cksum += pktid;
	*dst++ = datalen;
	cksum += datalen;
	if (datalen == DLE)
		*dst++ = DLE;

A
Alan Cox 已提交
674
	for (i = 0; i < datalen; i++) {
L
Linus Torvalds 已提交
675 676 677 678 679 680
		__u8 c = *src++;
		*dst++ = c;
		cksum += c;
		if (c == DLE)
			*dst++ = DLE;
	}
A
Alan Cox 已提交
681

682
	cksum = -cksum & 0xFF;
L
Linus Torvalds 已提交
683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702
	*dst++ = cksum;
	if (cksum == DLE)
		*dst++ = DLE;
	*dst++ = DLE;
	*dst++ = ETX;

	i = dst-garmin_data_p->outbuffer;

	send_to_tty(garmin_data_p->port, garmin_data_p->outbuffer, i);

	garmin_data_p->pkt_id = pktid;
	garmin_data_p->state  = STATE_WAIT_TTY_ACK;

	return i;
}


/*
 * Process the next pending data packet - if there is one
 */
703
static int gsp_next_packet(struct garmin_data *garmin_data_p)
L
Linus Torvalds 已提交
704
{
705
	int result = 0;
L
Linus Torvalds 已提交
706 707 708
	struct garmin_packet *pkt = NULL;

	while ((pkt = pkt_pop(garmin_data_p)) != NULL) {
709
		dev_dbg(&garmin_data_p->port->dev, "%s - next pkt: %d\n", __func__, pkt->seq);
710 711
		result = gsp_send(garmin_data_p, pkt->data, pkt->size);
		if (result > 0) {
L
Linus Torvalds 已提交
712
			kfree(pkt);
713
			return result;
L
Linus Torvalds 已提交
714 715 716
		}
		kfree(pkt);
	}
717
	return result;
L
Linus Torvalds 已提交
718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734
}



/******************************************************************************
 * garmin native mode
 ******************************************************************************/


/*
 * Called for data received from tty
 *
 * The input data is expected to be in garmin usb-packet format.
 *
 * buf contains the data read, it may span more than one packet
 * or even incomplete packets
 */
A
Alan Cox 已提交
735
static int nat_receive(struct garmin_data *garmin_data_p,
736
		       const unsigned char *buf, int count)
L
Linus Torvalds 已提交
737
{
738
	unsigned long flags;
A
Alan Cox 已提交
739
	__u8 *dest;
L
Linus Torvalds 已提交
740 741 742 743 744
	int offs = 0;
	int result = count;
	int len;

	while (offs < count) {
A
Alan Cox 已提交
745
		/* if buffer contains header, copy rest of data */
L
Linus Torvalds 已提交
746 747 748 749 750 751 752
		if (garmin_data_p->insize >= GARMIN_PKTHDR_LENGTH)
			len = GARMIN_PKTHDR_LENGTH
			      +getDataLength(garmin_data_p->inbuffer);
		else
			len = GARMIN_PKTHDR_LENGTH;

		if (len >= GPS_IN_BUFSIZ) {
A
Alan Cox 已提交
753 754
			/* seems to be an invalid packet, ignore rest
			   of input */
755 756 757
			dev_dbg(&garmin_data_p->port->dev,
				"%s - packet size too large: %d\n",
				__func__, len);
L
Linus Torvalds 已提交
758 759 760 761 762 763 764 765 766
			garmin_data_p->insize = 0;
			count = 0;
			result = -EINVPKT;
		} else {
			len -= garmin_data_p->insize;
			if (len > (count-offs))
				len = (count-offs);
			if (len > 0) {
				dest = garmin_data_p->inbuffer
A
Alan Cox 已提交
767
						+ garmin_data_p->insize;
L
Linus Torvalds 已提交
768 769 770 771 772 773 774 775 776 777 778
				memcpy(dest, buf+offs, len);
				garmin_data_p->insize += len;
				offs += len;
			}
		}

		/* do we have a complete packet ? */
		if (garmin_data_p->insize >= GARMIN_PKTHDR_LENGTH) {
			len = GARMIN_PKTHDR_LENGTH+
			   getDataLength(garmin_data_p->inbuffer);
			if (garmin_data_p->insize >= len) {
A
Alan Cox 已提交
779 780 781
				garmin_write_bulk(garmin_data_p->port,
						   garmin_data_p->inbuffer,
						   len, 0);
L
Linus Torvalds 已提交
782 783 784 785 786
				garmin_data_p->insize = 0;

				/* if this was an abort-transfer command,
				   flush all queued data. */
				if (isAbortTrfCmnd(garmin_data_p->inbuffer)) {
A
Alan Cox 已提交
787 788
					spin_lock_irqsave(&garmin_data_p->lock,
									flags);
L
Linus Torvalds 已提交
789
					garmin_data_p->flags |= FLAGS_DROP_DATA;
A
Alan Cox 已提交
790 791
					spin_unlock_irqrestore(
						&garmin_data_p->lock, flags);
L
Linus Torvalds 已提交
792 793 794 795 796 797 798 799 800 801 802 803 804 805 806
					pkt_clear(garmin_data_p);
				}
			}
		}
	}
	return result;
}


/******************************************************************************
 * private packets
 ******************************************************************************/

static void priv_status_resp(struct usb_serial_port *port)
{
A
Alan Cox 已提交
807
	struct garmin_data *garmin_data_p = usb_get_serial_port_data(port);
L
Linus Torvalds 已提交
808 809 810 811 812 813 814 815 816
	__le32 *pkt = (__le32 *)garmin_data_p->privpkt;

	pkt[0] = __cpu_to_le32(GARMIN_LAYERID_PRIVATE);
	pkt[1] = __cpu_to_le32(PRIV_PKTID_INFO_RESP);
	pkt[2] = __cpu_to_le32(12);
	pkt[3] = __cpu_to_le32(VERSION_MAJOR << 16 | VERSION_MINOR);
	pkt[4] = __cpu_to_le32(garmin_data_p->mode);
	pkt[5] = __cpu_to_le32(garmin_data_p->serial_num);

A
Alan Cox 已提交
817
	send_to_tty(port, (__u8 *)pkt, 6 * 4);
L
Linus Torvalds 已提交
818 819 820 821 822 823 824 825 826
}


/******************************************************************************
 * Garmin specific driver functions
 ******************************************************************************/

static int process_resetdev_request(struct usb_serial_port *port)
{
827
	unsigned long flags;
L
Linus Torvalds 已提交
828
	int status;
A
Alan Cox 已提交
829
	struct garmin_data *garmin_data_p = usb_get_serial_port_data(port);
L
Linus Torvalds 已提交
830

831
	spin_lock_irqsave(&garmin_data_p->lock, flags);
L
Linus Torvalds 已提交
832 833 834
	garmin_data_p->flags &= ~(CLEAR_HALT_REQUIRED);
	garmin_data_p->state = STATE_RESET;
	garmin_data_p->serial_num = 0;
835
	spin_unlock_irqrestore(&garmin_data_p->lock, flags);
L
Linus Torvalds 已提交
836

A
Alan Cox 已提交
837
	usb_kill_urb(port->interrupt_in_urb);
838
	dev_dbg(&port->dev, "%s - usb_reset_device\n", __func__);
L
Linus Torvalds 已提交
839 840
	status = usb_reset_device(port->serial->dev);
	if (status)
841
		dev_dbg(&port->dev, "%s - usb_reset_device failed: %d\n",
842
			__func__, status);
L
Linus Torvalds 已提交
843 844 845 846 847 848 849 850
	return status;
}



/*
 * clear all cached data
 */
A
Alan Cox 已提交
851
static int garmin_clear(struct garmin_data *garmin_data_p)
L
Linus Torvalds 已提交
852
{
853
	unsigned long flags;
L
Linus Torvalds 已提交
854 855 856 857

	/* flush all queued data */
	pkt_clear(garmin_data_p);

858
	spin_lock_irqsave(&garmin_data_p->lock, flags);
L
Linus Torvalds 已提交
859 860
	garmin_data_p->insize = 0;
	garmin_data_p->outsize = 0;
861
	spin_unlock_irqrestore(&garmin_data_p->lock, flags);
L
Linus Torvalds 已提交
862

863
	return 0;
L
Linus Torvalds 已提交
864 865 866 867 868
}


static int garmin_init_session(struct usb_serial_port *port)
{
A
Alan Cox 已提交
869
	struct garmin_data *garmin_data_p = usb_get_serial_port_data(port);
870 871
	int status;
	int i;
L
Linus Torvalds 已提交
872

873
	usb_kill_urb(port->interrupt_in_urb);
L
Linus Torvalds 已提交
874

875 876 877 878 879
	status = usb_submit_urb(port->interrupt_in_urb, GFP_KERNEL);
	if (status) {
		dev_err(&port->dev, "failed to submit interrupt urb: %d\n",
				status);
		return status;
L
Linus Torvalds 已提交
880 881
	}

882 883 884 885
	/*
	 * using the initialization method from gpsbabel. See comments in
	 * gpsbabel/jeeps/gpslibusb.c gusb_reset_toggles()
	 */
886 887
	dev_dbg(&port->dev, "%s - starting session ...\n", __func__);
	garmin_data_p->state = STATE_ACTIVE;
888

889 890 891 892 893
	for (i = 0; i < 3; i++) {
		status = garmin_write_bulk(port, GARMIN_START_SESSION_REQ,
				sizeof(GARMIN_START_SESSION_REQ), 0);
		if (status < 0)
			goto err_kill_urbs;
L
Linus Torvalds 已提交
894 895
	}

896
	return 0;
897 898 899 900 901

err_kill_urbs:
	usb_kill_anchored_urbs(&garmin_data_p->write_urbs);
	usb_kill_urb(port->interrupt_in_urb);

L
Linus Torvalds 已提交
902 903 904 905 906
	return status;
}



907
static int garmin_open(struct tty_struct *tty, struct usb_serial_port *port)
L
Linus Torvalds 已提交
908
{
909
	unsigned long flags;
L
Linus Torvalds 已提交
910
	int status = 0;
A
Alan Cox 已提交
911
	struct garmin_data *garmin_data_p = usb_get_serial_port_data(port);
L
Linus Torvalds 已提交
912

913
	spin_lock_irqsave(&garmin_data_p->lock, flags);
L
Linus Torvalds 已提交
914 915
	garmin_data_p->mode  = initial_mode;
	garmin_data_p->count = 0;
916
	garmin_data_p->flags &= FLAGS_SESSION_REPLY1_SEEN;
917
	spin_unlock_irqrestore(&garmin_data_p->lock, flags);
L
Linus Torvalds 已提交
918 919

	/* shutdown any bulk reads that might be going on */
A
Alan Cox 已提交
920
	usb_kill_urb(port->read_urb);
L
Linus Torvalds 已提交
921

A
Alan Cox 已提交
922
	if (garmin_data_p->state == STATE_RESET)
L
Linus Torvalds 已提交
923 924 925 926 927 928 929
		status = garmin_init_session(port);

	garmin_data_p->state = STATE_ACTIVE;
	return status;
}


930
static void garmin_close(struct usb_serial_port *port)
L
Linus Torvalds 已提交
931
{
A
Alan Cox 已提交
932
	struct garmin_data *garmin_data_p = usb_get_serial_port_data(port);
L
Linus Torvalds 已提交
933

934 935 936
	dev_dbg(&port->dev, "%s - mode=%d state=%d flags=0x%X\n",
		__func__, garmin_data_p->mode, garmin_data_p->state,
		garmin_data_p->flags);
L
Linus Torvalds 已提交
937

938
	garmin_clear(garmin_data_p);
L
Linus Torvalds 已提交
939 940

	/* shutdown our urbs */
A
Alan Cox 已提交
941
	usb_kill_urb(port->read_urb);
942
	usb_kill_anchored_urbs(&garmin_data_p->write_urbs);
L
Linus Torvalds 已提交
943

944 945
	/* keep reset state so we know that we must start a new session */
	if (garmin_data_p->state != STATE_RESET)
L
Linus Torvalds 已提交
946 947 948
		garmin_data_p->state = STATE_DISCONNECTED;
}

949

A
Alan Cox 已提交
950
static void garmin_write_bulk_callback(struct urb *urb)
L
Linus Torvalds 已提交
951
{
952
	struct usb_serial_port *port = urb->context;
L
Linus Torvalds 已提交
953

954
	if (port) {
A
Alan Cox 已提交
955 956
		struct garmin_data *garmin_data_p =
					usb_get_serial_port_data(port);
L
Linus Torvalds 已提交
957

958
		if (getLayerId(urb->transfer_buffer) == GARMIN_LAYERID_APPL) {
959

960 961 962 963
			if (garmin_data_p->mode == MODE_GARMIN_SERIAL) {
				gsp_send_ack(garmin_data_p,
					((__u8 *)urb->transfer_buffer)[4]);
			}
964 965
		}
		usb_serial_port_softint(port);
L
Linus Torvalds 已提交
966 967
	}

A
Alan Cox 已提交
968 969
	/* Ignore errors that resulted from garmin_write_bulk with
	   dismiss_ack = 1 */
970 971

	/* free up the transfer buffer, as usb_free_urb() does not do this */
A
Alan Cox 已提交
972
	kfree(urb->transfer_buffer);
L
Linus Torvalds 已提交
973 974 975
}


A
Alan Cox 已提交
976
static int garmin_write_bulk(struct usb_serial_port *port,
977 978
			      const unsigned char *buf, int count,
			      int dismiss_ack)
L
Linus Torvalds 已提交
979
{
980
	unsigned long flags;
L
Linus Torvalds 已提交
981
	struct usb_serial *serial = port->serial;
A
Alan Cox 已提交
982
	struct garmin_data *garmin_data_p = usb_get_serial_port_data(port);
L
Linus Torvalds 已提交
983 984 985 986
	struct urb *urb;
	unsigned char *buffer;
	int status;

987
	spin_lock_irqsave(&garmin_data_p->lock, flags);
L
Linus Torvalds 已提交
988
	garmin_data_p->flags &= ~FLAGS_DROP_DATA;
989
	spin_unlock_irqrestore(&garmin_data_p->lock, flags);
L
Linus Torvalds 已提交
990

A
Alan Cox 已提交
991
	buffer = kmalloc(count, GFP_ATOMIC);
992
	if (!buffer)
L
Linus Torvalds 已提交
993 994 995 996
		return -ENOMEM;

	urb = usb_alloc_urb(0, GFP_ATOMIC);
	if (!urb) {
A
Alan Cox 已提交
997
		kfree(buffer);
L
Linus Torvalds 已提交
998 999 1000
		return -ENOMEM;
	}

A
Alan Cox 已提交
1001
	memcpy(buffer, buf, count);
L
Linus Torvalds 已提交
1002

1003
	usb_serial_debug_data(&port->dev, __func__, count, buffer);
L
Linus Torvalds 已提交
1004

A
Alan Cox 已提交
1005 1006 1007
	usb_fill_bulk_urb(urb, serial->dev,
				usb_sndbulkpipe(serial->dev,
					port->bulk_out_endpointAddress),
L
Linus Torvalds 已提交
1008
				buffer, count,
1009 1010
				garmin_write_bulk_callback,
				dismiss_ack ? NULL : port);
L
Linus Torvalds 已提交
1011 1012
	urb->transfer_flags |= URB_ZERO_PACKET;

1013
	if (getLayerId(buffer) == GARMIN_LAYERID_APPL) {
1014 1015 1016 1017 1018

		spin_lock_irqsave(&garmin_data_p->lock, flags);
		garmin_data_p->flags |= APP_REQ_SEEN;
		spin_unlock_irqrestore(&garmin_data_p->lock, flags);

L
Linus Torvalds 已提交
1019 1020 1021 1022 1023 1024 1025
		if (garmin_data_p->mode == MODE_GARMIN_SERIAL)  {
			pkt_clear(garmin_data_p);
			garmin_data_p->state = STATE_GSP_WAIT_DATA;
		}
	}

	/* send it down the pipe */
1026
	usb_anchor_urb(urb, &garmin_data_p->write_urbs);
L
Linus Torvalds 已提交
1027 1028 1029
	status = usb_submit_urb(urb, GFP_ATOMIC);
	if (status) {
		dev_err(&port->dev,
A
Alan Cox 已提交
1030
		   "%s - usb_submit_urb(write bulk) failed with status = %d\n",
1031
				__func__, status);
L
Linus Torvalds 已提交
1032
		count = status;
1033
		usb_unanchor_urb(urb);
1034
		kfree(buffer);
L
Linus Torvalds 已提交
1035 1036 1037 1038
	}

	/* we are done with this urb, so let the host driver
	 * really free it when it is finished with it */
A
Alan Cox 已提交
1039
	usb_free_urb(urb);
L
Linus Torvalds 已提交
1040 1041 1042 1043

	return count;
}

A
Alan Cox 已提交
1044
static int garmin_write(struct tty_struct *tty, struct usb_serial_port *port,
A
Alan Cox 已提交
1045
					 const unsigned char *buf, int count)
L
Linus Torvalds 已提交
1046
{
1047
	struct device *dev = &port->dev;
L
Linus Torvalds 已提交
1048
	int pktid, pktsiz, len;
A
Alan Cox 已提交
1049
	struct garmin_data *garmin_data_p = usb_get_serial_port_data(port);
L
Linus Torvalds 已提交
1050 1051
	__le32 *privpkt = (__le32 *)garmin_data_p->privpkt;

1052
	usb_serial_debug_data(dev, __func__, count, buf);
L
Linus Torvalds 已提交
1053

1054 1055 1056
	if (garmin_data_p->state == STATE_RESET)
		return -EIO;

L
Linus Torvalds 已提交
1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067
	/* check for our private packets */
	if (count >= GARMIN_PKTHDR_LENGTH) {
		len = PRIVPKTSIZ;
		if (count < len)
			len = count;

		memcpy(garmin_data_p->privpkt, buf, len);

		pktsiz = getDataLength(garmin_data_p->privpkt);
		pktid  = getPacketId(garmin_data_p->privpkt);

1068 1069 1070
		if (count == (GARMIN_PKTHDR_LENGTH + pktsiz) &&
				getLayerId(garmin_data_p->privpkt) ==
						GARMIN_LAYERID_PRIVATE) {
L
Linus Torvalds 已提交
1071

1072
			dev_dbg(dev, "%s - processing private request %d\n",
1073
				__func__, pktid);
L
Linus Torvalds 已提交
1074

A
Alan Cox 已提交
1075
			/* drop all unfinished transfers */
L
Linus Torvalds 已提交
1076 1077
			garmin_clear(garmin_data_p);

A
Alan Cox 已提交
1078
			switch (pktid) {
L
Linus Torvalds 已提交
1079 1080 1081 1082
			case PRIV_PKTID_SET_MODE:
				if (pktsiz != 4)
					return -EINVPKT;
				garmin_data_p->mode = __le32_to_cpu(privpkt[3]);
1083
				dev_dbg(dev, "%s - mode set to %d\n",
1084
					__func__, garmin_data_p->mode);
L
Linus Torvalds 已提交
1085 1086 1087 1088 1089 1090 1091
				break;

			case PRIV_PKTID_INFO_REQ:
				priv_status_resp(port);
				break;

			case PRIV_PKTID_RESET_REQ:
1092
				process_resetdev_request(port);
L
Linus Torvalds 已提交
1093 1094 1095 1096 1097 1098
				break;

			case PRIV_PKTID_SET_DEF_MODE:
				if (pktsiz != 4)
					return -EINVPKT;
				initial_mode = __le32_to_cpu(privpkt[3]);
1099
				dev_dbg(dev, "%s - initial_mode set to %d\n",
1100
					__func__,
L
Linus Torvalds 已提交
1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115
					garmin_data_p->mode);
				break;
			}
			return count;
		}
	}

	if (garmin_data_p->mode == MODE_GARMIN_SERIAL) {
		return gsp_receive(garmin_data_p, buf, count);
	} else {	/* MODE_NATIVE */
		return nat_receive(garmin_data_p, buf, count);
	}
}


A
Alan Cox 已提交
1116
static int garmin_write_room(struct tty_struct *tty)
L
Linus Torvalds 已提交
1117
{
A
Alan Cox 已提交
1118
	struct usb_serial_port *port = tty->driver_data;
L
Linus Torvalds 已提交
1119 1120 1121
	/*
	 * Report back the bytes currently available in the output buffer.
	 */
A
Alan Cox 已提交
1122
	struct garmin_data *garmin_data_p = usb_get_serial_port_data(port);
L
Linus Torvalds 已提交
1123 1124 1125 1126
	return GPS_OUT_BUFSIZ-garmin_data_p->outsize;
}


A
Alan Cox 已提交
1127
static void garmin_read_process(struct garmin_data *garmin_data_p,
1128 1129
				 unsigned char *data, unsigned data_length,
				 int bulk_data)
L
Linus Torvalds 已提交
1130
{
1131 1132
	unsigned long flags;

L
Linus Torvalds 已提交
1133
	if (garmin_data_p->flags & FLAGS_DROP_DATA) {
1134
		/* abort-transfer cmd is active */
1135
		dev_dbg(&garmin_data_p->port->dev, "%s - pkt dropped\n", __func__);
L
Linus Torvalds 已提交
1136
	} else if (garmin_data_p->state != STATE_DISCONNECTED &&
A
Alan Cox 已提交
1137
		garmin_data_p->state != STATE_RESET) {
L
Linus Torvalds 已提交
1138 1139

		/* if throttling is active or postprecessing is required
1140
		   put the received data in the input queue, otherwise
L
Linus Torvalds 已提交
1141 1142 1143
		   send it directly to the tty port */
		if (garmin_data_p->flags & FLAGS_QUEUING) {
			pkt_add(garmin_data_p, data, data_length);
1144 1145
		} else if (bulk_data || (data_length >= sizeof(u32) &&
				getLayerId(data) == GARMIN_LAYERID_APPL)) {
1146 1147 1148 1149 1150 1151

			spin_lock_irqsave(&garmin_data_p->lock, flags);
			garmin_data_p->flags |= APP_RESP_SEEN;
			spin_unlock_irqrestore(&garmin_data_p->lock, flags);

			if (garmin_data_p->mode == MODE_GARMIN_SERIAL) {
L
Linus Torvalds 已提交
1152
				pkt_add(garmin_data_p, data, data_length);
1153 1154 1155 1156
			} else {
				send_to_tty(garmin_data_p->port, data,
						data_length);
			}
L
Linus Torvalds 已提交
1157
		}
1158
		/* ignore system layer packets ... */
L
Linus Torvalds 已提交
1159 1160 1161 1162
	}
}


A
Alan Cox 已提交
1163
static void garmin_read_bulk_callback(struct urb *urb)
L
Linus Torvalds 已提交
1164
{
1165
	unsigned long flags;
1166
	struct usb_serial_port *port = urb->context;
A
Alan Cox 已提交
1167
	struct garmin_data *garmin_data_p = usb_get_serial_port_data(port);
L
Linus Torvalds 已提交
1168
	unsigned char *data = urb->transfer_buffer;
1169 1170
	int status = urb->status;
	int retval;
L
Linus Torvalds 已提交
1171

1172
	if (status) {
1173
		dev_dbg(&urb->dev->dev, "%s - nonzero read bulk status received: %d\n",
1174
			__func__, status);
L
Linus Torvalds 已提交
1175 1176 1177
		return;
	}

1178
	usb_serial_debug_data(&port->dev, __func__, urb->actual_length, data);
L
Linus Torvalds 已提交
1179

1180
	garmin_read_process(garmin_data_p, data, urb->actual_length, 1);
L
Linus Torvalds 已提交
1181

1182
	if (urb->actual_length == 0 &&
1183
			(garmin_data_p->flags & FLAGS_BULK_IN_RESTART) != 0) {
1184 1185 1186
		spin_lock_irqsave(&garmin_data_p->lock, flags);
		garmin_data_p->flags &= ~FLAGS_BULK_IN_RESTART;
		spin_unlock_irqrestore(&garmin_data_p->lock, flags);
1187 1188
		retval = usb_submit_urb(port->read_urb, GFP_ATOMIC);
		if (retval)
L
Linus Torvalds 已提交
1189 1190
			dev_err(&port->dev,
				"%s - failed resubmitting read urb, error %d\n",
1191
				__func__, retval);
1192 1193
	} else if (urb->actual_length > 0) {
		/* Continue trying to read until nothing more is received  */
1194
		if ((garmin_data_p->flags & FLAGS_THROTTLED) == 0) {
1195 1196
			retval = usb_submit_urb(port->read_urb, GFP_ATOMIC);
			if (retval)
1197
				dev_err(&port->dev,
1198 1199
					"%s - failed resubmitting read urb, error %d\n",
					__func__, retval);
1200 1201
		}
	} else {
1202
		dev_dbg(&port->dev, "%s - end of bulk data\n", __func__);
1203 1204 1205
		spin_lock_irqsave(&garmin_data_p->lock, flags);
		garmin_data_p->flags &= ~FLAGS_BULK_IN_ACTIVE;
		spin_unlock_irqrestore(&garmin_data_p->lock, flags);
L
Linus Torvalds 已提交
1206 1207 1208 1209
	}
}


A
Alan Cox 已提交
1210
static void garmin_read_int_callback(struct urb *urb)
L
Linus Torvalds 已提交
1211
{
1212
	unsigned long flags;
1213
	int retval;
1214
	struct usb_serial_port *port = urb->context;
A
Alan Cox 已提交
1215
	struct garmin_data *garmin_data_p = usb_get_serial_port_data(port);
L
Linus Torvalds 已提交
1216
	unsigned char *data = urb->transfer_buffer;
1217
	int status = urb->status;
L
Linus Torvalds 已提交
1218

1219
	switch (status) {
L
Linus Torvalds 已提交
1220 1221 1222 1223 1224 1225 1226
	case 0:
		/* success */
		break;
	case -ECONNRESET:
	case -ENOENT:
	case -ESHUTDOWN:
		/* this urb is terminated, clean up */
1227
		dev_dbg(&urb->dev->dev, "%s - urb shutting down with status: %d\n",
1228
			__func__, status);
L
Linus Torvalds 已提交
1229 1230
		return;
	default:
1231
		dev_dbg(&urb->dev->dev, "%s - nonzero urb status received: %d\n",
1232
			__func__, status);
L
Linus Torvalds 已提交
1233 1234 1235
		return;
	}

1236 1237
	usb_serial_debug_data(&port->dev, __func__, urb->actual_length,
			      urb->transfer_buffer);
L
Linus Torvalds 已提交
1238 1239

	if (urb->actual_length == sizeof(GARMIN_BULK_IN_AVAIL_REPLY) &&
1240 1241
		memcmp(data, GARMIN_BULK_IN_AVAIL_REPLY,
				sizeof(GARMIN_BULK_IN_AVAIL_REPLY)) == 0) {
L
Linus Torvalds 已提交
1242

1243
		dev_dbg(&port->dev, "%s - bulk data available.\n", __func__);
L
Linus Torvalds 已提交
1244

1245
		if ((garmin_data_p->flags & FLAGS_BULK_IN_ACTIVE) == 0) {
1246 1247

			/* bulk data available */
1248 1249
			retval = usb_submit_urb(port->read_urb, GFP_ATOMIC);
			if (retval) {
1250
				dev_err(&port->dev,
A
Alan Cox 已提交
1251 1252
				 "%s - failed submitting read urb, error %d\n",
							__func__, retval);
1253 1254 1255
			} else {
				spin_lock_irqsave(&garmin_data_p->lock, flags);
				garmin_data_p->flags |= FLAGS_BULK_IN_ACTIVE;
A
Alan Cox 已提交
1256 1257
				spin_unlock_irqrestore(&garmin_data_p->lock,
									flags);
1258 1259 1260 1261 1262 1263
			}
		} else {
			/* bulk-in transfer still active */
			spin_lock_irqsave(&garmin_data_p->lock, flags);
			garmin_data_p->flags |= FLAGS_BULK_IN_RESTART;
			spin_unlock_irqrestore(&garmin_data_p->lock, flags);
L
Linus Torvalds 已提交
1264 1265 1266
		}

	} else if (urb->actual_length == (4+sizeof(GARMIN_START_SESSION_REPLY))
1267 1268
			 && memcmp(data, GARMIN_START_SESSION_REPLY,
				 sizeof(GARMIN_START_SESSION_REPLY)) == 0) {
L
Linus Torvalds 已提交
1269

1270
		spin_lock_irqsave(&garmin_data_p->lock, flags);
L
Linus Torvalds 已提交
1271
		garmin_data_p->flags |= FLAGS_SESSION_REPLY1_SEEN;
1272
		spin_unlock_irqrestore(&garmin_data_p->lock, flags);
L
Linus Torvalds 已提交
1273 1274

		/* save the serial number */
A
Alan Cox 已提交
1275 1276
		garmin_data_p->serial_num = __le32_to_cpup(
					(__le32 *)(data+GARMIN_PKTHDR_LENGTH));
L
Linus Torvalds 已提交
1277

1278
		dev_dbg(&port->dev, "%s - start-of-session reply seen - serial %u.\n",
1279
			__func__, garmin_data_p->serial_num);
L
Linus Torvalds 已提交
1280 1281
	}

1282
	garmin_read_process(garmin_data_p, data, urb->actual_length, 0);
L
Linus Torvalds 已提交
1283

A
Alan Cox 已提交
1284
	retval = usb_submit_urb(urb, GFP_ATOMIC);
1285
	if (retval)
L
Linus Torvalds 已提交
1286 1287
		dev_err(&urb->dev->dev,
			"%s - Error %d submitting interrupt urb\n",
1288
			__func__, retval);
L
Linus Torvalds 已提交
1289 1290 1291 1292 1293 1294 1295 1296
}


/*
 * Sends the next queued packt to the tty port (garmin native mode only)
 * and then sets a timer to call itself again until all queued data
 * is sent.
 */
A
Alan Cox 已提交
1297
static int garmin_flush_queue(struct garmin_data *garmin_data_p)
L
Linus Torvalds 已提交
1298
{
1299
	unsigned long flags;
L
Linus Torvalds 已提交
1300 1301 1302 1303 1304 1305 1306 1307 1308 1309
	struct garmin_packet *pkt;

	if ((garmin_data_p->flags & FLAGS_THROTTLED) == 0) {
		pkt = pkt_pop(garmin_data_p);
		if (pkt != NULL) {
			send_to_tty(garmin_data_p->port, pkt->data, pkt->size);
			kfree(pkt);
			mod_timer(&garmin_data_p->timer, (1)+jiffies);

		} else {
1310
			spin_lock_irqsave(&garmin_data_p->lock, flags);
L
Linus Torvalds 已提交
1311
			garmin_data_p->flags &= ~FLAGS_QUEUING;
1312
			spin_unlock_irqrestore(&garmin_data_p->lock, flags);
L
Linus Torvalds 已提交
1313 1314 1315 1316 1317 1318
		}
	}
	return 0;
}


A
Alan Cox 已提交
1319
static void garmin_throttle(struct tty_struct *tty)
L
Linus Torvalds 已提交
1320
{
A
Alan Cox 已提交
1321
	struct usb_serial_port *port = tty->driver_data;
A
Alan Cox 已提交
1322
	struct garmin_data *garmin_data_p = usb_get_serial_port_data(port);
L
Linus Torvalds 已提交
1323 1324 1325

	/* set flag, data received will be put into a queue
	   for later processing */
1326
	spin_lock_irq(&garmin_data_p->lock);
L
Linus Torvalds 已提交
1327
	garmin_data_p->flags |= FLAGS_QUEUING|FLAGS_THROTTLED;
1328
	spin_unlock_irq(&garmin_data_p->lock);
L
Linus Torvalds 已提交
1329 1330 1331
}


A
Alan Cox 已提交
1332
static void garmin_unthrottle(struct tty_struct *tty)
L
Linus Torvalds 已提交
1333
{
A
Alan Cox 已提交
1334
	struct usb_serial_port *port = tty->driver_data;
A
Alan Cox 已提交
1335
	struct garmin_data *garmin_data_p = usb_get_serial_port_data(port);
1336
	int status;
L
Linus Torvalds 已提交
1337

1338
	spin_lock_irq(&garmin_data_p->lock);
L
Linus Torvalds 已提交
1339
	garmin_data_p->flags &= ~FLAGS_THROTTLED;
1340
	spin_unlock_irq(&garmin_data_p->lock);
L
Linus Torvalds 已提交
1341 1342 1343 1344 1345

	/* in native mode send queued data to tty, in
	   serial mode nothing needs to be done here */
	if (garmin_data_p->mode == MODE_NATIVE)
		garmin_flush_queue(garmin_data_p);
1346

1347
	if ((garmin_data_p->flags & FLAGS_BULK_IN_ACTIVE) != 0) {
1348
		status = usb_submit_urb(port->read_urb, GFP_KERNEL);
1349 1350 1351
		if (status)
			dev_err(&port->dev,
				"%s - failed resubmitting read urb, error %d\n",
1352
				__func__, status);
1353
	}
L
Linus Torvalds 已提交
1354 1355 1356 1357 1358 1359 1360
}

/*
 * The timer is currently only used to send queued packets to
 * the tty in cases where the protocol provides no own handshaking
 * to initiate the transfer.
 */
1361
static void timeout_handler(struct timer_list *t)
L
Linus Torvalds 已提交
1362
{
1363
	struct garmin_data *garmin_data_p = from_timer(garmin_data_p, t, timer);
L
Linus Torvalds 已提交
1364 1365 1366 1367 1368 1369 1370 1371 1372

	/* send the next queued packet to the tty port */
	if (garmin_data_p->mode == MODE_NATIVE)
		if (garmin_data_p->flags & FLAGS_QUEUING)
			garmin_flush_queue(garmin_data_p);
}



1373
static int garmin_port_probe(struct usb_serial_port *port)
L
Linus Torvalds 已提交
1374
{
1375 1376
	int status;
	struct garmin_data *garmin_data_p;
L
Linus Torvalds 已提交
1377

1378
	garmin_data_p = kzalloc(sizeof(struct garmin_data), GFP_KERNEL);
1379
	if (!garmin_data_p)
L
Linus Torvalds 已提交
1380
		return -ENOMEM;
1381

1382
	timer_setup(&garmin_data_p->timer, timeout_handler, 0);
L
Linus Torvalds 已提交
1383 1384 1385 1386
	spin_lock_init(&garmin_data_p->lock);
	INIT_LIST_HEAD(&garmin_data_p->pktlist);
	garmin_data_p->port = port;
	garmin_data_p->state = 0;
1387
	garmin_data_p->flags = 0;
L
Linus Torvalds 已提交
1388
	garmin_data_p->count = 0;
1389
	init_usb_anchor(&garmin_data_p->write_urbs);
L
Linus Torvalds 已提交
1390 1391 1392
	usb_set_serial_port_data(port, garmin_data_p);

	status = garmin_init_session(port);
1393 1394 1395 1396 1397 1398
	if (status)
		goto err_free;

	return 0;
err_free:
	kfree(garmin_data_p);
L
Linus Torvalds 已提交
1399 1400 1401 1402 1403

	return status;
}


1404
static int garmin_port_remove(struct usb_serial_port *port)
L
Linus Torvalds 已提交
1405
{
A
Alan Cox 已提交
1406
	struct garmin_data *garmin_data_p = usb_get_serial_port_data(port);
L
Linus Torvalds 已提交
1407

1408
	usb_kill_anchored_urbs(&garmin_data_p->write_urbs);
A
Alan Cox 已提交
1409
	usb_kill_urb(port->interrupt_in_urb);
L
Linus Torvalds 已提交
1410
	del_timer_sync(&garmin_data_p->timer);
A
Alan Cox 已提交
1411
	kfree(garmin_data_p);
1412
	return 0;
L
Linus Torvalds 已提交
1413 1414 1415 1416
}


/* All of the device info needed */
1417
static struct usb_serial_driver garmin_device = {
1418
	.driver = {
1419 1420
		.owner       = THIS_MODULE,
		.name        = "garmin_gps",
1421
	},
1422
	.description         = "Garmin GPS usb/tty",
L
Linus Torvalds 已提交
1423 1424 1425 1426 1427 1428
	.id_table            = id_table,
	.num_ports           = 1,
	.open                = garmin_open,
	.close               = garmin_close,
	.throttle            = garmin_throttle,
	.unthrottle          = garmin_unthrottle,
1429 1430
	.port_probe		= garmin_port_probe,
	.port_remove		= garmin_port_remove,
L
Linus Torvalds 已提交
1431 1432 1433 1434 1435 1436 1437
	.write               = garmin_write,
	.write_room          = garmin_write_room,
	.write_bulk_callback = garmin_write_bulk_callback,
	.read_bulk_callback  = garmin_read_bulk_callback,
	.read_int_callback   = garmin_read_int_callback,
};

1438 1439 1440
static struct usb_serial_driver * const serial_drivers[] = {
	&garmin_device, NULL
};
L
Linus Torvalds 已提交
1441

1442
module_usb_serial_driver(serial_drivers, id_table);
L
Linus Torvalds 已提交
1443

A
Alan Cox 已提交
1444 1445
MODULE_AUTHOR(DRIVER_AUTHOR);
MODULE_DESCRIPTION(DRIVER_DESC);
L
Linus Torvalds 已提交
1446 1447 1448 1449
MODULE_LICENSE("GPL");

module_param(initial_mode, int, S_IRUGO);
MODULE_PARM_DESC(initial_mode, "Initial mode");