Patrick Boettcher | 22c6d93 | 2005-07-07 17:58:10 -0700 | [diff] [blame] | 1 | #ifndef _DVB_USB_CXUSB_H_ |
| 2 | #define _DVB_USB_CXUSB_H_ |
| 3 | |
Patrick Boettcher | e2efeab | 2005-09-09 13:02:51 -0700 | [diff] [blame] | 4 | #define DVB_USB_LOG_PREFIX "cxusb" |
Patrick Boettcher | 22c6d93 | 2005-07-07 17:58:10 -0700 | [diff] [blame] | 5 | #include "dvb-usb.h" |
| 6 | |
Patrick Boettcher | 22c6d93 | 2005-07-07 17:58:10 -0700 | [diff] [blame] | 7 | /* usb commands - some of it are guesses, don't have a reference yet */ |
Patrick Boettcher | e2efeab | 2005-09-09 13:02:51 -0700 | [diff] [blame] | 8 | #define CMD_I2C_WRITE 0x08 |
| 9 | #define CMD_I2C_READ 0x09 |
Patrick Boettcher | 22c6d93 | 2005-07-07 17:58:10 -0700 | [diff] [blame] | 10 | |
Patrick Boettcher | e2efeab | 2005-09-09 13:02:51 -0700 | [diff] [blame] | 11 | #define CMD_GPIO_READ 0x0d |
| 12 | #define CMD_GPIO_WRITE 0x0e |
| 13 | #define GPIO_TUNER 0x02 |
Patrick Boettcher | 22c6d93 | 2005-07-07 17:58:10 -0700 | [diff] [blame] | 14 | |
Patrick Boettcher | e2efeab | 2005-09-09 13:02:51 -0700 | [diff] [blame] | 15 | #define CMD_POWER_OFF 0xdc |
| 16 | #define CMD_POWER_ON 0xde |
Patrick Boettcher | 22c6d93 | 2005-07-07 17:58:10 -0700 | [diff] [blame] | 17 | |
Patrick Boettcher | e2efeab | 2005-09-09 13:02:51 -0700 | [diff] [blame] | 18 | #define CMD_STREAMING_ON 0x36 |
| 19 | #define CMD_STREAMING_OFF 0x37 |
| 20 | |
Chris Pascoe | 7c23970 | 2006-01-09 18:21:29 -0200 | [diff] [blame] | 21 | #define CMD_GET_IR_CODE 0x47 |
| 22 | |
Patrick Boettcher | e2efeab | 2005-09-09 13:02:51 -0700 | [diff] [blame] | 23 | #define CMD_ANALOG 0x50 |
| 24 | #define CMD_DIGITAL 0x51 |
Patrick Boettcher | 22c6d93 | 2005-07-07 17:58:10 -0700 | [diff] [blame] | 25 | |
| 26 | struct cxusb_state { |
Patrick Boettcher | e2efeab | 2005-09-09 13:02:51 -0700 | [diff] [blame] | 27 | u8 gpio_write_state[3]; |
Patrick Boettcher | 22c6d93 | 2005-07-07 17:58:10 -0700 | [diff] [blame] | 28 | }; |
| 29 | |
| 30 | #endif |