smsusb.c 19.6 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
/****************************************************************

Siano Mobile Silicon, Inc.
MDTV receiver kernel modules.
Copyright (C) 2005-2009, Uri Shkolnik, Anatoly Greenblat

This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 2 of the License, or
(at your option) any later version.

 This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with this program.  If not, see <http://www.gnu.org/licenses/>.

****************************************************************/
21

22 23
#include "smscoreapi.h"

24 25 26 27
#include <linux/kernel.h>
#include <linux/init.h>
#include <linux/usb.h>
#include <linux/firmware.h>
28
#include <linux/slab.h>
29
#include <linux/module.h>
30

31
#include "sms-cards.h"
32
#include "smsendian.h"
33

34 35 36 37
static int sms_dbg;
module_param_named(debug, sms_dbg, int, 0644);
MODULE_PARM_DESC(debug, "set debug level (info=1, adv=2 (or-able))");

38
#define USB1_BUFFER_SIZE		0x1000
39
#define USB2_BUFFER_SIZE		0x2000
40 41 42 43

#define MAX_BUFFERS		50
#define MAX_URBS		10

44
struct smsusb_device_t;
45

46 47 48 49 50 51
enum smsusb_state {
	SMSUSB_DISCONNECTED,
	SMSUSB_SUSPENDED,
	SMSUSB_ACTIVE
};

52
struct smsusb_urb_t {
53
	struct list_head entry;
54
	struct smscore_buffer_t *cb;
55
	struct smsusb_device_t *dev;
56

57 58
	struct urb urb;
};
59

60
struct smsusb_device_t {
61
	struct usb_device *udev;
62
	struct smscore_device_t *coredev;
63

64
	struct smsusb_urb_t 	surbs[MAX_URBS];
65

66 67
	int		response_alignment;
	int		buffer_size;
68 69 70 71

	unsigned char in_ep;
	unsigned char out_ep;
	enum smsusb_state state;
72
};
73

74 75
static int smsusb_submit_urb(struct smsusb_device_t *dev,
			     struct smsusb_urb_t *surb);
76

77 78 79 80 81 82 83 84
/**
 * Completing URB's callback handler - top half (interrupt context)
 * adds completing sms urb to the global surbs list and activtes the worker
 * thread the surb
 * IMPORTANT - blocking functions must not be called from here !!!

 * @param urb pointer to a completing urb object
 */
85
static void smsusb_onresponse(struct urb *urb)
86
{
87 88
	struct smsusb_urb_t *surb = (struct smsusb_urb_t *) urb->context;
	struct smsusb_device_t *dev = surb->dev;
89

90 91
	if (urb->status == -ESHUTDOWN) {
		sms_err("error, urb status %d (-ESHUTDOWN), %d bytes",
92
			urb->status, urb->actual_length);
93 94 95
		return;
	}

96
	if ((urb->actual_length > 0) && (urb->status == 0)) {
97
		struct sms_msg_hdr *phdr = (struct sms_msg_hdr *)surb->cb->p;
98

99
		smsendian_handle_message_header(phdr);
100 101
		if (urb->actual_length >= phdr->msg_length) {
			surb->cb->size = phdr->msg_length;
102

103
			if (dev->response_alignment &&
104
			    (phdr->msg_flags & MSG_HDR_FLAG_SPLIT_MSG)) {
105 106 107

				surb->cb->offset =
					dev->response_alignment +
108
					((phdr->msg_flags >> 8) & 3);
109 110

				/* sanity check */
111
				if (((int) phdr->msg_length +
112
				     surb->cb->offset) > urb->actual_length) {
113 114 115
					sms_err("invalid response "
						"msglen %d offset %d "
						"size %d",
116
						phdr->msg_length,
117 118
						surb->cb->offset,
						urb->actual_length);
119 120 121
					goto exit_and_resubmit;
				}

122 123
				/* move buffer pointer and
				 * copy header to its new location */
124
				memcpy((char *) phdr + surb->cb->offset,
125
				       phdr, sizeof(struct sms_msg_hdr));
126
			} else
127 128
				surb->cb->offset = 0;

129
			sms_debug("received %s(%d) size: %d",
130 131
				  smscore_translate_msg(phdr->msg_type),
				  phdr->msg_type, phdr->msg_length);
132

133
			smsendian_handle_rx_message((struct sms_msg_data *) phdr);
134

135 136
			smscore_onresponse(dev->coredev, surb->cb);
			surb->cb = NULL;
137
		} else {
138 139
			sms_err("invalid response "
				"msglen %d actual %d",
140
				phdr->msg_length, urb->actual_length);
141
		}
142 143 144 145
	} else
		sms_err("error, urb status %d, %d bytes",
			urb->status, urb->actual_length);

146 147 148 149 150

exit_and_resubmit:
	smsusb_submit_urb(dev, surb);
}

151 152
static int smsusb_submit_urb(struct smsusb_device_t *dev,
			     struct smsusb_urb_t *surb)
153
{
154
	if (!surb->cb) {
155
		surb->cb = smscore_getbuffer(dev->coredev);
156
		if (!surb->cb) {
157
			sms_err("smscore_getbuffer(...) returned NULL");
158 159 160 161 162 163 164
			return -ENOMEM;
		}
	}

	usb_fill_bulk_urb(
		&surb->urb,
		dev->udev,
165
		usb_rcvbulkpipe(dev->udev, dev->in_ep),
166 167 168 169 170 171 172 173 174 175 176
		surb->cb->p,
		dev->buffer_size,
		smsusb_onresponse,
		surb
	);
	surb->urb.transfer_dma = surb->cb->phys;
	surb->urb.transfer_flags |= URB_NO_TRANSFER_DMA_MAP;

	return usb_submit_urb(&surb->urb, GFP_ATOMIC);
}

177
static void smsusb_stop_streaming(struct smsusb_device_t *dev)
178 179 180
{
	int i;

181
	for (i = 0; i < MAX_URBS; i++) {
182 183
		usb_kill_urb(&dev->surbs[i].urb);

184
		if (dev->surbs[i].cb) {
185 186 187 188 189 190
			smscore_putbuffer(dev->coredev, dev->surbs[i].cb);
			dev->surbs[i].cb = NULL;
		}
	}
}

191
static int smsusb_start_streaming(struct smsusb_device_t *dev)
192 193 194
{
	int i, rc;

195
	for (i = 0; i < MAX_URBS; i++) {
196
		rc = smsusb_submit_urb(dev, &dev->surbs[i]);
197
		if (rc < 0) {
198
			sms_err("smsusb_submit_urb(...) failed");
199 200 201 202 203 204 205 206
			smsusb_stop_streaming(dev);
			break;
		}
	}

	return rc;
}

207
static int smsusb_sendrequest(void *context, void *buffer, size_t size)
208
{
209
	struct smsusb_device_t *dev = (struct smsusb_device_t *) context;
210
	struct sms_msg_hdr *phdr = (struct sms_msg_hdr *) buffer;
211 212
	int dummy;

213 214
	if (dev->state != SMSUSB_ACTIVE) {
		sms_debug("Device not active yet");
215
		return -ENOENT;
216
	}
217

218
	sms_debug("sending %s(%d) size: %d",
219 220
		  smscore_translate_msg(phdr->msg_type), phdr->msg_type,
		  phdr->msg_length);
221

222 223
	smsendian_handle_tx_message((struct sms_msg_data *) phdr);
	smsendian_handle_message_header((struct sms_msg_hdr *)buffer);
224 225
	return usb_bulk_msg(dev->udev, usb_sndbulkpipe(dev->udev, 2),
			    buffer, size, &dummy, 1000);
226 227
}

228
static char *smsusb1_fw_lkup[] = {
229 230 231 232 233 234 235
	"dvbt_stellar_usb.inp",
	"dvbh_stellar_usb.inp",
	"tdmb_stellar_usb.inp",
	"none",
	"dvbt_bda_stellar_usb.inp",
};

236 237 238 239 240 241 242
static inline char *sms_get_fw_name(int mode, int board_id)
{
	char **fw = sms_get_board(board_id)->fw;
	return (fw && fw[mode]) ? fw[mode] : smsusb1_fw_lkup[mode];
}

static int smsusb1_load_firmware(struct usb_device *udev, int id, int board_id)
243 244
{
	const struct firmware *fw;
245
	u8 *fw_buffer;
246
	int rc, dummy;
247
	char *fw_filename;
248

249 250 251
	if (id < 0)
		id = sms_get_board(board_id)->default_mode;

252
	if (id < DEVICE_MODE_DVBT || id > DEVICE_MODE_DVBT_BDA) {
253
		sms_err("invalid firmware id specified %d", id);
254 255 256
		return -EINVAL;
	}

257 258 259
	fw_filename = sms_get_fw_name(id, board_id);

	rc = request_firmware(&fw, fw_filename, &udev->dev);
260
	if (rc < 0) {
261 262 263 264 265 266 267 268 269 270 271
		sms_warn("failed to open \"%s\" mode %d, "
			 "trying again with default firmware", fw_filename, id);

		fw_filename = smsusb1_fw_lkup[id];
		rc = request_firmware(&fw, fw_filename, &udev->dev);
		if (rc < 0) {
			sms_warn("failed to open \"%s\" mode %d",
				 fw_filename, id);

			return rc;
		}
272 273 274
	}

	fw_buffer = kmalloc(fw->size, GFP_KERNEL);
275
	if (fw_buffer) {
276 277
		memcpy(fw_buffer, fw->data, fw->size);

278 279
		rc = usb_bulk_msg(udev, usb_sndbulkpipe(udev, 2),
				  fw_buffer, fw->size, &dummy, 1000);
280

281
		sms_info("sent %zu(%d) bytes, rc %d", fw->size, dummy, rc);
282 283

		kfree(fw_buffer);
284
	} else {
285
		sms_err("failed to allocate firmware buffer");
286 287
		rc = -ENOMEM;
	}
288
	sms_info("read FW %s, size=%zu", fw_filename, fw->size);
289 290 291 292 293 294

	release_firmware(fw);

	return rc;
}

295
static void smsusb1_detectmode(void *context, int *mode)
296
{
297 298
	char *product_string =
		((struct smsusb_device_t *) context)->udev->product;
299 300 301

	*mode = DEVICE_MODE_NONE;

302
	if (!product_string) {
303
		product_string = "none";
304
		sms_err("product string not found");
305 306 307 308 309 310 311 312
	} else if (strstr(product_string, "DVBH"))
		*mode = 1;
	else if (strstr(product_string, "BDA"))
		*mode = 4;
	else if (strstr(product_string, "DVBT"))
		*mode = 0;
	else if (strstr(product_string, "TDMB"))
		*mode = 2;
313

314
	sms_info("%d \"%s\"", *mode, product_string);
315 316
}

317
static int smsusb1_setmode(void *context, int mode)
318
{
319
	struct sms_msg_hdr msg = { MSG_SW_RELOAD_REQ, 0, HIF_TASK,
320
			     sizeof(struct sms_msg_hdr), 0 };
321

322
	if (mode < DEVICE_MODE_DVBT || mode > DEVICE_MODE_DVBT_BDA) {
323
		sms_err("invalid firmware id specified %d", mode);
324 325 326
		return -EINVAL;
	}

327
	return smsusb_sendrequest(context, &msg, sizeof(msg));
328 329
}

330
static void smsusb_term_device(struct usb_interface *intf)
331
{
332
	struct smsusb_device_t *dev = usb_get_intfdata(intf);
333

334
	if (dev) {
335 336
		dev->state = SMSUSB_DISCONNECTED;

337 338
		smsusb_stop_streaming(dev);

339
		/* unregister from smscore */
340 341 342
		if (dev->coredev)
			smscore_unregister_device(dev->coredev);

343
		sms_info("device 0x%p destroyed", dev);
344
		kfree(dev);
345 346 347 348 349
	}

	usb_set_intfdata(intf, NULL);
}

350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385
static void siano_media_device_register(struct smsusb_device_t *dev)
{
#ifdef CONFIG_MEDIA_CONTROLLER_DVB
	struct media_device *mdev;
	struct usb_device *udev = dev->udev;
	int board_id = smscore_get_board_id(dev->coredev);
	struct sms_board *board = sms_get_board(board_id);
	int ret;

	mdev = kzalloc(sizeof(*mdev), GFP_KERNEL);
	if (!mdev)
		return;

	mdev->dev = &udev->dev;
	strlcpy(mdev->model, board->name, sizeof(mdev->model));
	if (udev->serial)
		strlcpy(mdev->serial, udev->serial, sizeof(mdev->serial));
	strcpy(mdev->bus_info, udev->devpath);
	mdev->hw_revision = le16_to_cpu(udev->descriptor.bcdDevice);
	mdev->driver_version = LINUX_VERSION_CODE;

	ret = media_device_register(mdev);
	if (ret) {
		sms_err("Couldn't create a media device. Error: %d\n",
			ret);
		kfree(mdev);
		return;
	}

	dev->coredev->media_dev = mdev;

	sms_info("media controller created");

#endif
}

386
static int smsusb_init_device(struct usb_interface *intf, int board_id)
387
{
388 389
	struct smsdevice_params_t params;
	struct smsusb_device_t *dev;
390 391
	int i, rc;

392
	/* create device object */
393
	dev = kzalloc(sizeof(struct smsusb_device_t), GFP_KERNEL);
394
	if (!dev) {
395
		sms_err("kzalloc(sizeof(struct smsusb_device_t) failed");
396 397 398 399 400 401
		return -ENOMEM;
	}

	memset(&params, 0, sizeof(params));
	usb_set_intfdata(intf, dev);
	dev->udev = interface_to_usbdev(intf);
402
	dev->state = SMSUSB_DISCONNECTED;
403

404
	params.device_type = sms_get_board(board_id)->type;
405

406
	switch (params.device_type) {
407
	case SMS_STELLAR:
408 409 410 411 412
		dev->buffer_size = USB1_BUFFER_SIZE;

		params.setmode_handler = smsusb1_setmode;
		params.detectmode_handler = smsusb1_detectmode;
		break;
413
	case SMS_UNKNOWN_TYPE:
414 415
		sms_err("Unspecified sms device type!");
		/* fall-thru */
416
	default:
417
		dev->buffer_size = USB2_BUFFER_SIZE;
418
		dev->response_alignment =
419
		    le16_to_cpu(dev->udev->ep_in[1]->desc.wMaxPacketSize) -
420
		    sizeof(struct sms_msg_hdr);
421

422 423
		params.flags |= SMS_DEVICE_FAMILY2;
		break;
424 425
	}

426 427 428 429 430 431 432 433 434 435
	for (i = 0; i < intf->cur_altsetting->desc.bNumEndpoints; i++) {
		if (intf->cur_altsetting->endpoint[i].desc. bEndpointAddress & USB_DIR_IN)
			dev->in_ep = intf->cur_altsetting->endpoint[i].desc.bEndpointAddress;
		else
			dev->out_ep = intf->cur_altsetting->endpoint[i].desc.bEndpointAddress;
	}

	sms_info("in_ep = %02x, out_ep = %02x",
		dev->in_ep, dev->out_ep);

436 437 438 439 440
	params.device = &dev->udev->dev;
	params.buffer_size = dev->buffer_size;
	params.num_buffers = MAX_BUFFERS;
	params.sendrequest_handler = smsusb_sendrequest;
	params.context = dev;
441
	usb_make_path(dev->udev, params.devpath, sizeof(params.devpath));
442

443
	/* register in smscore */
444
	rc = smscore_register_device(&params, &dev->coredev);
445
	if (rc < 0) {
446
		sms_err("smscore_register_device(...) failed, rc %d", rc);
447 448 449 450
		smsusb_term_device(intf);
		return rc;
	}

451 452
	smscore_set_board_id(dev->coredev, board_id);

453 454
	dev->coredev->is_usb_device = true;

455
	/* initialize urbs */
456
	for (i = 0; i < MAX_URBS; i++) {
457 458 459 460
		dev->surbs[i].dev = dev;
		usb_init_urb(&dev->surbs[i].urb);
	}

461
	sms_info("smsusb_start_streaming(...).");
462
	rc = smsusb_start_streaming(dev);
463
	if (rc < 0) {
464
		sms_err("smsusb_start_streaming(...) failed");
465 466 467 468
		smsusb_term_device(intf);
		return rc;
	}

469 470
	dev->state = SMSUSB_ACTIVE;

471
	rc = smscore_start_device(dev->coredev);
472
	if (rc < 0) {
473
		sms_err("smscore_start_device(...) failed");
474 475 476 477
		smsusb_term_device(intf);
		return rc;
	}

478
	sms_info("device 0x%p created", dev);
479
	siano_media_device_register(dev);
480 481 482 483

	return rc;
}

484
static int smsusb_probe(struct usb_interface *intf,
485
			const struct usb_device_id *id)
486 487
{
	struct usb_device *udev = interface_to_usbdev(intf);
488
	char devpath[32];
489 490
	int i, rc;

491 492
	sms_info("board id=%lu, interface number %d",
		 id->driver_info,
493
		 intf->cur_altsetting->desc.bInterfaceNumber);
494

495 496
	if (sms_get_board(id->driver_info)->intf_num !=
	    intf->cur_altsetting->desc.bInterfaceNumber) {
497 498 499
		sms_debug("interface %d won't be used. Expecting interface %d to popup",
			intf->cur_altsetting->desc.bInterfaceNumber,
			sms_get_board(id->driver_info)->intf_num);
500 501 502 503 504 505 506
		return -ENODEV;
	}

	if (intf->num_altsetting > 1) {
		rc = usb_set_interface(udev,
				       intf->cur_altsetting->desc.bInterfaceNumber,
				       0);
507
		if (rc < 0) {
508
			sms_err("usb_set_interface failed, rc %d", rc);
509 510 511 512
			return rc;
		}
	}

513
	sms_info("smsusb_probe %d",
514
	       intf->cur_altsetting->desc.bInterfaceNumber);
515
	for (i = 0; i < intf->cur_altsetting->desc.bNumEndpoints; i++) {
516
		sms_info("endpoint %d %02x %02x %d", i,
517 518 519
		       intf->cur_altsetting->endpoint[i].desc.bEndpointAddress,
		       intf->cur_altsetting->endpoint[i].desc.bmAttributes,
		       intf->cur_altsetting->endpoint[i].desc.wMaxPacketSize);
520 521 522 523 524 525 526 527
		if (intf->cur_altsetting->endpoint[i].desc.bEndpointAddress &
		    USB_DIR_IN)
			rc = usb_clear_halt(udev, usb_rcvbulkpipe(udev,
				intf->cur_altsetting->endpoint[i].desc.bEndpointAddress));
		else
			rc = usb_clear_halt(udev, usb_sndbulkpipe(udev,
				intf->cur_altsetting->endpoint[i].desc.bEndpointAddress));
	}
528 529
	if ((udev->actconfig->desc.bNumInterfaces == 2) &&
	    (intf->cur_altsetting->desc.bInterfaceNumber == 0)) {
530
		sms_debug("rom interface 0 is not used");
531 532 533
		return -ENODEV;
	}

534
	if (id->driver_info == SMS1XXX_BOARD_SIANO_STELLAR_ROM) {
535 536
		/* Detected a Siano Stellar uninitialized */

537 538
		snprintf(devpath, sizeof(devpath), "usb\\%d-%s",
			 udev->bus->busnum, udev->devpath);
539 540
		sms_info("stellar device in cold state was found at %s.", devpath);
		rc = smsusb1_load_firmware(
541 542
				udev, smscore_registry_getmode(devpath),
				id->driver_info);
543 544 545 546 547 548 549 550 551 552

		/* This device will reset and gain another USB ID */
		if (!rc)
			sms_info("stellar device now in warm state");
		else
			sms_err("Failed to put stellar in warm state. Error: %d", rc);

		return rc;
	} else {
		rc = smsusb_init_device(intf, id->driver_info);
553 554
	}

555
	sms_info("Device initialized with return code %d", rc);
556
	sms_board_load_modules(id->driver_info);
557
	return rc;
558 559
}

560
static void smsusb_disconnect(struct usb_interface *intf)
561 562 563 564
{
	smsusb_term_device(intf);
}

565 566
static int smsusb_suspend(struct usb_interface *intf, pm_message_t msg)
{
567
	struct smsusb_device_t *dev = usb_get_intfdata(intf);
568 569 570
	printk(KERN_INFO "%s  Entering status %d.\n", __func__, msg.event);
	dev->state = SMSUSB_SUSPENDED;
	/*smscore_set_power_mode(dev, SMS_POWER_MODE_SUSPENDED);*/
571 572 573 574 575 576 577
	smsusb_stop_streaming(dev);
	return 0;
}

static int smsusb_resume(struct usb_interface *intf)
{
	int rc, i;
578
	struct smsusb_device_t *dev = usb_get_intfdata(intf);
579 580
	struct usb_device *udev = interface_to_usbdev(intf);

581 582 583
	printk(KERN_INFO "%s  Entering.\n", __func__);
	usb_clear_halt(udev, usb_rcvbulkpipe(udev, dev->in_ep));
	usb_clear_halt(udev, usb_sndbulkpipe(udev, dev->out_ep));
584 585 586 587 588 589 590 591 592 593 594 595

	for (i = 0; i < intf->cur_altsetting->desc.bNumEndpoints; i++)
		printk(KERN_INFO "endpoint %d %02x %02x %d\n", i,
		       intf->cur_altsetting->endpoint[i].desc.bEndpointAddress,
		       intf->cur_altsetting->endpoint[i].desc.bmAttributes,
		       intf->cur_altsetting->endpoint[i].desc.wMaxPacketSize);

	if (intf->num_altsetting > 0) {
		rc = usb_set_interface(udev,
				       intf->cur_altsetting->desc.
				       bInterfaceNumber, 0);
		if (rc < 0) {
596 597
			printk(KERN_INFO "%s usb_set_interface failed, "
			       "rc %d\n", __func__, rc);
598 599 600 601 602 603 604 605
			return rc;
		}
	}

	smsusb_start_streaming(dev);
	return 0;
}

606
static const struct usb_device_id smsusb_id_table[] = {
607
	/* This device is only present before firmware load */
608
	{ USB_DEVICE(0x187f, 0x0010),
609 610
		.driver_info = SMS1XXX_BOARD_SIANO_STELLAR_ROM },
	/* This device pops up after firmware load */
611 612
	{ USB_DEVICE(0x187f, 0x0100),
		.driver_info = SMS1XXX_BOARD_SIANO_STELLAR },
613

614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649
	{ USB_DEVICE(0x187f, 0x0200),
		.driver_info = SMS1XXX_BOARD_SIANO_NOVA_A },
	{ USB_DEVICE(0x187f, 0x0201),
		.driver_info = SMS1XXX_BOARD_SIANO_NOVA_B },
	{ USB_DEVICE(0x187f, 0x0300),
		.driver_info = SMS1XXX_BOARD_SIANO_VEGA },
	{ USB_DEVICE(0x2040, 0x1700),
		.driver_info = SMS1XXX_BOARD_HAUPPAUGE_CATAMOUNT },
	{ USB_DEVICE(0x2040, 0x1800),
		.driver_info = SMS1XXX_BOARD_HAUPPAUGE_OKEMO_A },
	{ USB_DEVICE(0x2040, 0x1801),
		.driver_info = SMS1XXX_BOARD_HAUPPAUGE_OKEMO_B },
	{ USB_DEVICE(0x2040, 0x2000),
		.driver_info = SMS1XXX_BOARD_HAUPPAUGE_TIGER_MINICARD },
	{ USB_DEVICE(0x2040, 0x2009),
		.driver_info = SMS1XXX_BOARD_HAUPPAUGE_TIGER_MINICARD_R2 },
	{ USB_DEVICE(0x2040, 0x200a),
		.driver_info = SMS1XXX_BOARD_HAUPPAUGE_TIGER_MINICARD },
	{ USB_DEVICE(0x2040, 0x2010),
		.driver_info = SMS1XXX_BOARD_HAUPPAUGE_TIGER_MINICARD },
	{ USB_DEVICE(0x2040, 0x2011),
		.driver_info = SMS1XXX_BOARD_HAUPPAUGE_TIGER_MINICARD },
	{ USB_DEVICE(0x2040, 0x2019),
		.driver_info = SMS1XXX_BOARD_HAUPPAUGE_TIGER_MINICARD },
	{ USB_DEVICE(0x2040, 0x5500),
		.driver_info = SMS1XXX_BOARD_HAUPPAUGE_WINDHAM },
	{ USB_DEVICE(0x2040, 0x5510),
		.driver_info = SMS1XXX_BOARD_HAUPPAUGE_WINDHAM },
	{ USB_DEVICE(0x2040, 0x5520),
		.driver_info = SMS1XXX_BOARD_HAUPPAUGE_WINDHAM },
	{ USB_DEVICE(0x2040, 0x5530),
		.driver_info = SMS1XXX_BOARD_HAUPPAUGE_WINDHAM },
	{ USB_DEVICE(0x2040, 0x5580),
		.driver_info = SMS1XXX_BOARD_HAUPPAUGE_WINDHAM },
	{ USB_DEVICE(0x2040, 0x5590),
		.driver_info = SMS1XXX_BOARD_HAUPPAUGE_WINDHAM },
650 651 652 653
	{ USB_DEVICE(0x187f, 0x0202),
		.driver_info = SMS1XXX_BOARD_SIANO_NICE },
	{ USB_DEVICE(0x187f, 0x0301),
		.driver_info = SMS1XXX_BOARD_SIANO_VENICE },
654 655 656 657
	{ USB_DEVICE(0x2040, 0xb900),
		.driver_info = SMS1XXX_BOARD_HAUPPAUGE_WINDHAM },
	{ USB_DEVICE(0x2040, 0xb910),
		.driver_info = SMS1XXX_BOARD_HAUPPAUGE_WINDHAM },
658 659 660 661
	{ USB_DEVICE(0x2040, 0xb980),
		.driver_info = SMS1XXX_BOARD_HAUPPAUGE_WINDHAM },
	{ USB_DEVICE(0x2040, 0xb990),
		.driver_info = SMS1XXX_BOARD_HAUPPAUGE_WINDHAM },
662 663
	{ USB_DEVICE(0x2040, 0xc000),
		.driver_info = SMS1XXX_BOARD_HAUPPAUGE_WINDHAM },
664 665 666 667 668 669
	{ USB_DEVICE(0x2040, 0xc010),
		.driver_info = SMS1XXX_BOARD_HAUPPAUGE_WINDHAM },
	{ USB_DEVICE(0x2040, 0xc080),
		.driver_info = SMS1XXX_BOARD_HAUPPAUGE_WINDHAM },
	{ USB_DEVICE(0x2040, 0xc090),
		.driver_info = SMS1XXX_BOARD_HAUPPAUGE_WINDHAM },
670 671
	{ USB_DEVICE(0x2040, 0xc0a0),
		.driver_info = SMS1XXX_BOARD_HAUPPAUGE_WINDHAM },
672 673
	{ USB_DEVICE(0x2040, 0xf5a0),
		.driver_info = SMS1XXX_BOARD_HAUPPAUGE_WINDHAM },
674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693
	{ USB_DEVICE(0x187f, 0x0202),
		.driver_info = SMS1XXX_BOARD_SIANO_NICE },
	{ USB_DEVICE(0x187f, 0x0301),
		.driver_info = SMS1XXX_BOARD_SIANO_VENICE },
	{ USB_DEVICE(0x187f, 0x0302),
		.driver_info = SMS1XXX_BOARD_SIANO_VENICE },
	{ USB_DEVICE(0x187f, 0x0310),
		.driver_info = SMS1XXX_BOARD_SIANO_MING },
	{ USB_DEVICE(0x187f, 0x0500),
		.driver_info = SMS1XXX_BOARD_SIANO_PELE },
	{ USB_DEVICE(0x187f, 0x0600),
		.driver_info = SMS1XXX_BOARD_SIANO_RIO },
	{ USB_DEVICE(0x187f, 0x0700),
		.driver_info = SMS1XXX_BOARD_SIANO_DENVER_2160 },
	{ USB_DEVICE(0x187f, 0x0800),
		.driver_info = SMS1XXX_BOARD_SIANO_DENVER_1530 },
	{ USB_DEVICE(0x19D2, 0x0086),
		.driver_info = SMS1XXX_BOARD_ZTE_DVB_DATA_CARD },
	{ USB_DEVICE(0x19D2, 0x0078),
		.driver_info = SMS1XXX_BOARD_ONDA_MDTV_DATA_CARD },
694 695
	{ USB_DEVICE(0x3275, 0x0080),
		.driver_info = SMS1XXX_BOARD_SIANO_RIO },
696 697
	{ USB_DEVICE(0x2013, 0x0257),
		.driver_info = SMS1XXX_BOARD_PCTV_77E },
698 699 700
	{ } /* Terminating entry */
	};

701 702
MODULE_DEVICE_TABLE(usb, smsusb_id_table);

703
static struct usb_driver smsusb_driver = {
704
	.name			= "smsusb",
705
	.probe			= smsusb_probe,
706
	.disconnect		= smsusb_disconnect,
707
	.id_table		= smsusb_id_table,
708 709 710

	.suspend		= smsusb_suspend,
	.resume			= smsusb_resume,
711 712
};

713
module_usb_driver(smsusb_driver);
714

715
MODULE_DESCRIPTION("Driver for the Siano SMS1xxx USB dongle");
716 717
MODULE_AUTHOR("Siano Mobile Silicon, INC. (uris@siano-ms.com)");
MODULE_LICENSE("GPL");