Linux Kernel  3.7.1
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
as102_usb_drv.h
Go to the documentation of this file.
1 /*
2  * Abilis Systems Single DVB-T Receiver
3  * Copyright (C) 2008 Pierrick Hascoet <[email protected]>
4  * Copyright (C) 2010 Devin Heitmueller <[email protected]>
5  *
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.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, write to the Free Software
18  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
19  */
20 #ifndef _AS102_USB_DRV_H_
21 #define _AS102_USB_DRV_H_
22 
23 #define AS102_USB_DEVICE_TX_CTRL_CMD 0xF1
24 #define AS102_USB_DEVICE_RX_CTRL_CMD 0xF2
25 
26 /* define these values to match the supported devices */
27 
28 /* Abilis system: "TITAN" */
29 #define AS102_REFERENCE_DESIGN "Abilis Systems DVB-Titan"
30 #define AS102_USB_DEVICE_VENDOR_ID 0x1BA6
31 #define AS102_USB_DEVICE_PID_0001 0x0001
32 
33 /* PCTV Systems: PCTV picoStick (74e) */
34 #define AS102_PCTV_74E "PCTV Systems picoStick (74e)"
35 #define PCTV_74E_USB_VID 0x2013
36 #define PCTV_74E_USB_PID 0x0246
37 
38 /* Elgato: EyeTV DTT Deluxe */
39 #define AS102_ELGATO_EYETV_DTT_NAME "Elgato EyeTV DTT Deluxe"
40 #define ELGATO_EYETV_DTT_USB_VID 0x0fd9
41 #define ELGATO_EYETV_DTT_USB_PID 0x002c
42 
43 /* nBox: nBox DVB-T Dongle */
44 #define AS102_NBOX_DVBT_DONGLE_NAME "nBox DVB-T Dongle"
45 #define NBOX_DVBT_DONGLE_USB_VID 0x0b89
46 #define NBOX_DVBT_DONGLE_USB_PID 0x0007
47 
48 /* Sky Italia: Digital Key (green led) */
49 #define AS102_SKY_IT_DIGITAL_KEY_NAME "Sky IT Digital Key (green led)"
50 #define SKY_IT_DIGITAL_KEY_USB_VID 0x2137
51 #define SKY_IT_DIGITAL_KEY_USB_PID 0x0001
52 
53 void as102_urb_stream_irq(struct urb *urb);
54 
56  /* token cmd */
57  struct as10x_cmd_t c;
58  /* token response */
59  struct as10x_cmd_t r;
60 };
61 #endif