blob: d8975b866deeceda0e3820a7810f5cfc2b7205d6 [file] [log] [blame]
Alan Nisota9bbe0762006-05-14 13:23:56 -03001/* DVB USB compliant Linux driver for the
Alan Nisota458b6342007-08-18 17:52:35 -03002 * - GENPIX 8pks/qpsk/DCII USB2.0 DVB-S module
Alan Nisota9bbe0762006-05-14 13:23:56 -03003 *
4 * Copyright (C) 2006 Alan Nisota (alannisota@gmail.com)
Alan Nisota458b6342007-08-18 17:52:35 -03005 * Copyright (C) 2006,2007 Alan Nisota (alannisota@gmail.com)
Alan Nisota9bbe0762006-05-14 13:23:56 -03006 *
7 * Thanks to GENPIX for the sample code used to implement this module.
8 *
9 * This module is based off the vp7045 and vp702x modules
10 *
11 * This program is free software; you can redistribute it and/or modify it
12 * under the terms of the GNU General Public License as published by the Free
13 * Software Foundation, version 2.
14 *
15 * see Documentation/dvb/README.dvb-usb for more information
16 */
17#ifndef _DVB_USB_GP8PSK_H_
18#define _DVB_USB_GP8PSK_H_
19
20#define DVB_USB_LOG_PREFIX "gp8psk"
21#include "dvb-usb.h"
22
23extern int dvb_usb_gp8psk_debug;
24#define deb_info(args...) dprintk(dvb_usb_gp8psk_debug,0x01,args)
25#define deb_xfer(args...) dprintk(dvb_usb_gp8psk_debug,0x02,args)
26#define deb_rc(args...) dprintk(dvb_usb_gp8psk_debug,0x04,args)
Alan Nisota9bbe0762006-05-14 13:23:56 -030027
28#define GET_USB_SPEED 0x07
Alan Nisota9bbe0762006-05-14 13:23:56 -030029
30#define RESET_FX2 0x13
31
32#define FW_VERSION_READ 0x0B
33#define VENDOR_STRING_READ 0x0C
34#define PRODUCT_STRING_READ 0x0D
35#define FW_BCD_VERSION_READ 0x14
36
Alan Nisota9bbe0762006-05-14 13:23:56 -030037#endif