Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: GPL-2.0-or-later */
0002 /*
0003  * Abilis Systems Single DVB-T Receiver
0004  * Copyright (C) 2008 Pierrick Hascoet <pierrick.hascoet@abilis.com>
0005  * Copyright (C) 2010 Devin Heitmueller <dheitmueller@kernellabs.com>
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 /* define these values to match the supported devices */
0014 
0015 /* Abilis system: "TITAN" */
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 /* PCTV Systems: PCTV picoStick (74e) */
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 /* Elgato: EyeTV DTT Deluxe */
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 /* nBox: nBox DVB-T Dongle */
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 /* Sky Italia: Digital Key (green led) */
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     /* token cmd */
0044     struct as10x_cmd_t c;
0045     /* token response */
0046     struct as10x_cmd_t r;
0047 };
0048 #endif