/* Common header-file of the Linux driver for the TwinhanDTV Alpha/MagicBoxII * USB2.0 DVB-T receiver. * * Copyright (C) 2004-5 Patrick Boettcher (patrick.boettcher@desy.de) * * Thanks to Twinhan who kindly provided hardware and information. * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the Free * Software Foundation, version 2. * * see Documentation/dvb/README.dvb-usb for more information */ #ifndef _DVB_USB_VP7045_H_ #define _DVB_USB_VP7045_H_ #define DVB_USB_LOG_PREFIX "vp7045" #include "dvb-usb.h" extern int dvb_usb_vp7045_debug; #define deb_info(args...) dprintk(dvb_usb_vp7045_debug,0x01,args) #define deb_xfer(args...) dprintk(dvb_usb_vp7045_debug,0x02,args) /* vp7045 commands */ /* Twinhan Vendor requests */ #define TH_COMMAND_IN 0xC0 #define TH_COMMAND_OUT 0xC1 /* TH_COMMAND_OUT request type */ #define TUNER_REG_READ 0x03 #define TUNER_REG_WRITE 0x04 #define RC_VAL_READ 0x05 #define SET_TUNER_POWER 0x06 #define GET_USB_SPEED 0x07 #define LOCK_TUNER_COMMAND 0x09 #define TUNER_SIGNAL_READ 0x0A #define FW_VERSION_READ 0x0B #define VENDOR_STRING_READ 0x0C #define PRODUCT_STRING_READ 0x0D #define SET_EE_VALUE 0x10 #define GET_EE_VALUE 0x11 #define CHECK_TUNER_POWER 0x12 #define RESET_FX2 0x13 #define FW_BCD_VERSION_READ 0x14 #define Tuner_Power_ON 1 #define Tuner_Power_OFF 0 #define Tuner_Lock 1 #define Tuner_UnLock 0 #define USB_SPEED_LOW 0 #define USB_SPEED_FULL 1 #define USB_SPEED_HIGH 2 #define TUNER_REG_QUALITY_2 0x0A #define TUNER_REG_QUALITY_1 0x0B #define TUNER_REG_QUALITY_0 0x0C #define TUNER_REG_STRENGTH 0x09 extern struct dvb_frontend * vp7045_fe_attach(struct dvb_usb_device *d); extern int vp7045_usb_op(struct dvb_usb_device *d, u8 cmd, u8 *out, int outlen, u8 *in, int inlen,int msec); extern u8 vp7045_read_reg(struct dvb_usb_device *d, u8 reg); #endif