2005-07-08 02:58:10 +02:00
|
|
|
#ifndef _DVB_USB_CXUSB_H_
|
|
|
|
#define _DVB_USB_CXUSB_H_
|
|
|
|
|
2005-09-09 22:02:51 +02:00
|
|
|
#define DVB_USB_LOG_PREFIX "cxusb"
|
2005-07-08 02:58:10 +02:00
|
|
|
#include "dvb-usb.h"
|
|
|
|
|
|
|
|
extern int dvb_usb_cxusb_debug;
|
|
|
|
#define deb_info(args...) dprintk(dvb_usb_cxusb_debug,0x01,args)
|
|
|
|
|
|
|
|
/* usb commands - some of it are guesses, don't have a reference yet */
|
2005-09-09 22:02:51 +02:00
|
|
|
#define CMD_I2C_WRITE 0x08
|
|
|
|
#define CMD_I2C_READ 0x09
|
2005-07-08 02:58:10 +02:00
|
|
|
|
2005-09-09 22:02:51 +02:00
|
|
|
#define CMD_GPIO_READ 0x0d
|
|
|
|
#define CMD_GPIO_WRITE 0x0e
|
|
|
|
#define GPIO_TUNER 0x02
|
2005-07-08 02:58:10 +02:00
|
|
|
|
2005-09-09 22:02:51 +02:00
|
|
|
#define CMD_POWER_OFF 0xdc
|
|
|
|
#define CMD_POWER_ON 0xde
|
2005-07-08 02:58:10 +02:00
|
|
|
|
2005-09-09 22:02:51 +02:00
|
|
|
#define CMD_STREAMING_ON 0x36
|
|
|
|
#define CMD_STREAMING_OFF 0x37
|
|
|
|
|
|
|
|
#define CMD_ANALOG 0x50
|
|
|
|
#define CMD_DIGITAL 0x51
|
2005-07-08 02:58:10 +02:00
|
|
|
|
|
|
|
struct cxusb_state {
|
2005-09-09 22:02:51 +02:00
|
|
|
u8 gpio_write_state[3];
|
2005-07-08 02:58:10 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|