aeb012bbf4
Add support for DViCO's Dual Digital 4 with xc3028 tuner, zl10353 DVB-T demodulator and a new-style I2C IR remote control receiver. This would not have been possible without the work of and advice from Mike Krufky, who originally got the Dual Digital 4 and second-gen DVB-T NANO devices working with the out-of-tree XC3028 driver. I converted it to use the in-tree XC3028 driver (after making it suitable for our use), and added the IR remote control support based on his advice. NB: a firmware package is required to use this device. Signed-off-by: Chris Pascoe <c.pascoe@itee.uq.edu.au> Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
32 lines
657 B
C
32 lines
657 B
C
#ifndef _DVB_USB_CXUSB_H_
|
|
#define _DVB_USB_CXUSB_H_
|
|
|
|
#define DVB_USB_LOG_PREFIX "cxusb"
|
|
#include "dvb-usb.h"
|
|
|
|
/* usb commands - some of it are guesses, don't have a reference yet */
|
|
#define CMD_BLUEBIRD_GPIO_RW 0x05
|
|
|
|
#define CMD_I2C_WRITE 0x08
|
|
#define CMD_I2C_READ 0x09
|
|
|
|
#define CMD_GPIO_READ 0x0d
|
|
#define CMD_GPIO_WRITE 0x0e
|
|
#define GPIO_TUNER 0x02
|
|
|
|
#define CMD_POWER_OFF 0xdc
|
|
#define CMD_POWER_ON 0xde
|
|
|
|
#define CMD_STREAMING_ON 0x36
|
|
#define CMD_STREAMING_OFF 0x37
|
|
|
|
#define CMD_GET_IR_CODE 0x47
|
|
|
|
#define CMD_ANALOG 0x50
|
|
#define CMD_DIGITAL 0x51
|
|
|
|
struct cxusb_state {
|
|
u8 gpio_write_state[3];
|
|
};
|
|
|
|
#endif
|