Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: GPL-2.0-only */
0002 /* DVB USB compliant Linux driver for the
0003  *  - GENPIX 8pks/qpsk/DCII USB2.0 DVB-S module
0004  *
0005  * Copyright (C) 2006 Alan Nisota (alannisota@gmail.com)
0006  * Copyright (C) 2006,2007 Alan Nisota (alannisota@gmail.com)
0007  *
0008  * Thanks to GENPIX for the sample code used to implement this module.
0009  *
0010  * This module is based off the vp7045 and vp702x modules
0011  *
0012  * see Documentation/driver-api/media/drivers/dvb-usb.rst for more information
0013  */
0014 #ifndef _DVB_USB_GP8PSK_H_
0015 #define _DVB_USB_GP8PSK_H_
0016 
0017 #define DVB_USB_LOG_PREFIX "gp8psk"
0018 #include "dvb-usb.h"
0019 
0020 extern int dvb_usb_gp8psk_debug;
0021 #define deb_info(args...) dprintk(dvb_usb_gp8psk_debug,0x01,args)
0022 #define deb_xfer(args...) dprintk(dvb_usb_gp8psk_debug,0x02,args)
0023 #define deb_rc(args...)   dprintk(dvb_usb_gp8psk_debug,0x04,args)
0024 
0025 #define GET_USB_SPEED                     0x07
0026 
0027 #define RESET_FX2                         0x13
0028 
0029 #define FW_VERSION_READ                   0x0B
0030 #define VENDOR_STRING_READ                0x0C
0031 #define PRODUCT_STRING_READ               0x0D
0032 #define FW_BCD_VERSION_READ               0x14
0033 
0034 #endif