blob: 4fb1baa8cac0ddbff64d818e179bc34031d27c74 [file] [log] [blame]
Pierrick Hascoet41b44e02011-10-31 12:24:39 -03001/*
2 * Abilis Systems Single DVB-T Receiver
3 * Copyright (C) 2008 Pierrick Hascoet <pierrick.hascoet@abilis.com>
Devin Heitmuellerc7a6c002011-10-31 12:24:45 -03004 * Copyright (C) 2010 Devin Heitmueller <dheitmueller@kernellabs.com>
Pierrick Hascoet41b44e02011-10-31 12:24:39 -03005 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2, or (at your option)
9 * any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
Pierrick Hascoet41b44e02011-10-31 12:24:39 -030015 */
Pierrick Hascoet41b44e02011-10-31 12:24:39 -030016#ifndef _AS102_USB_DRV_H_
17#define _AS102_USB_DRV_H_
18
19#define AS102_USB_DEVICE_TX_CTRL_CMD 0xF1
20#define AS102_USB_DEVICE_RX_CTRL_CMD 0xF2
21
22/* define these values to match the supported devices */
23
24/* Abilis system: "TITAN" */
Devin Heitmueller4f7b7c02011-10-31 12:24:48 -030025#define AS102_REFERENCE_DESIGN "Abilis Systems DVB-Titan"
Pierrick Hascoet41b44e02011-10-31 12:24:39 -030026#define AS102_USB_DEVICE_VENDOR_ID 0x1BA6
27#define AS102_USB_DEVICE_PID_0001 0x0001
28
29/* PCTV Systems: PCTV picoStick (74e) */
Devin Heitmueller4f7b7c02011-10-31 12:24:48 -030030#define AS102_PCTV_74E "PCTV Systems picoStick (74e)"
Pierrick Hascoet41b44e02011-10-31 12:24:39 -030031#define PCTV_74E_USB_VID 0x2013
32#define PCTV_74E_USB_PID 0x0246
33
Devin Heitmueller5f9745b2011-10-31 12:24:47 -030034/* Elgato: EyeTV DTT Deluxe */
Devin Heitmueller4f7b7c02011-10-31 12:24:48 -030035#define AS102_ELGATO_EYETV_DTT_NAME "Elgato EyeTV DTT Deluxe"
Devin Heitmueller5f9745b2011-10-31 12:24:47 -030036#define ELGATO_EYETV_DTT_USB_VID 0x0fd9
37#define ELGATO_EYETV_DTT_USB_PID 0x002c
38
Piotr Chmura8be62e72011-10-31 12:24:53 -030039/* nBox: nBox DVB-T Dongle */
40#define AS102_NBOX_DVBT_DONGLE_NAME "nBox DVB-T Dongle"
41#define NBOX_DVBT_DONGLE_USB_VID 0x0b89
42#define NBOX_DVBT_DONGLE_USB_PID 0x0007
43
Gianluca Gennaridd7aaa42011-11-17 12:35:05 -030044/* Sky Italia: Digital Key (green led) */
45#define AS102_SKY_IT_DIGITAL_KEY_NAME "Sky IT Digital Key (green led)"
46#define SKY_IT_DIGITAL_KEY_USB_VID 0x2137
47#define SKY_IT_DIGITAL_KEY_USB_PID 0x0001
48
Pierrick Hascoet41b44e02011-10-31 12:24:39 -030049void as102_urb_stream_irq(struct urb *urb);
Pierrick Hascoet41b44e02011-10-31 12:24:39 -030050
51struct as10x_usb_token_cmd_t {
52 /* token cmd */
53 struct as10x_cmd_t c;
54 /* token response */
55 struct as10x_cmd_t r;
56};
57#endif