m920x.h 550 字节
Newer Older
1 2
#ifndef _DVB_USB_M920X_H_
#define _DVB_USB_M920X_H_
3

4
#define DVB_USB_LOG_PREFIX "m920x"
5 6
#include "dvb-usb.h"

7
#define deb_rc(args...)   dprintk(dvb_usb_m920x_debug,0x01,args)
8

9
#define M9206_CORE	0x22
10 11 12 13 14
#define M9206_RC_STATE	0xff51
#define M9206_RC_KEY	0xff52
#define M9206_RC_INIT1	0xff54
#define M9206_RC_INIT2	0xff55
#define M9206_FW_GO	0xff69
15 16 17 18 19 20 21 22 23 24 25

#define M9206_I2C	0x23
#define M9206_FILTER	0x25
#define M9206_FW	0x30

#define M9206_MAX_FILTERS 8
struct m9206_state {
	u16 filters[M9206_MAX_FILTERS];
	int filtering_enabled;
	int rep_count;
};
26
#endif