0001
0002
0003
0004
0005
0006
0007 #ifndef _AS102_USB_DRV_H_
0008 #define _AS102_USB_DRV_H_
0009
0010 #define AS102_USB_DEVICE_TX_CTRL_CMD 0xF1
0011 #define AS102_USB_DEVICE_RX_CTRL_CMD 0xF2
0012
0013
0014
0015
0016 #define AS102_REFERENCE_DESIGN "Abilis Systems DVB-Titan"
0017 #define AS102_USB_DEVICE_VENDOR_ID 0x1BA6
0018 #define AS102_USB_DEVICE_PID_0001 0x0001
0019
0020
0021 #define AS102_PCTV_74E "PCTV Systems picoStick (74e)"
0022 #define PCTV_74E_USB_VID 0x2013
0023 #define PCTV_74E_USB_PID 0x0246
0024
0025
0026 #define AS102_ELGATO_EYETV_DTT_NAME "Elgato EyeTV DTT Deluxe"
0027 #define ELGATO_EYETV_DTT_USB_VID 0x0fd9
0028 #define ELGATO_EYETV_DTT_USB_PID 0x002c
0029
0030
0031 #define AS102_NBOX_DVBT_DONGLE_NAME "nBox DVB-T Dongle"
0032 #define NBOX_DVBT_DONGLE_USB_VID 0x0b89
0033 #define NBOX_DVBT_DONGLE_USB_PID 0x0007
0034
0035
0036 #define AS102_SKY_IT_DIGITAL_KEY_NAME "Sky IT Digital Key (green led)"
0037 #define SKY_IT_DIGITAL_KEY_USB_VID 0x2137
0038 #define SKY_IT_DIGITAL_KEY_USB_PID 0x0001
0039
0040 void as102_urb_stream_irq(struct urb *urb);
0041
0042 struct as10x_usb_token_cmd_t {
0043
0044 struct as10x_cmd_t c;
0045
0046 struct as10x_cmd_t r;
0047 };
0048 #endif