diff options
author | Patrick Boettcher <pb@linuxtv.org> | 2005-09-09 16:02:51 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2005-09-09 16:57:41 -0400 |
commit | e2efeab26b77061ba5418f4c98c3b3ed100fb608 (patch) | |
tree | 93fc9c9195b26265c6ba6a03b05525aaeb131d7f /drivers/media/dvb/dvb-usb/cxusb.h | |
parent | 3beab78f8ad5a483fdbdcbb8599fb06da102b8b7 (diff) |
[PATCH] dvb: usb: cxusb: fixes for new firmware
This patch changes two things:
1) a firmware update made by the vendor, which has to be done in Windows
for now, changes the DVB-data-pipe from isochronous to bulk: it fixes the
data distortions (and thus the video-distortions) in DVB-T mode; there is
no backwards compatibility with the old firmware as it didn't work anyway
2) with the help of Steve Toth some reverse-engineered functionality is now
named correctly, thank you
Signed-off-by: Patrick Boettcher <pb@linuxtv.org>
Signed-off-by: Johannes Stezenbach <js@linuxtv.org>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'drivers/media/dvb/dvb-usb/cxusb.h')
-rw-r--r-- | drivers/media/dvb/dvb-usb/cxusb.h | 27 |
1 files changed, 14 insertions, 13 deletions
diff --git a/drivers/media/dvb/dvb-usb/cxusb.h b/drivers/media/dvb/dvb-usb/cxusb.h index 1d79016e3195..135c2a81f581 100644 --- a/drivers/media/dvb/dvb-usb/cxusb.h +++ b/drivers/media/dvb/dvb-usb/cxusb.h | |||
@@ -1,30 +1,31 @@ | |||
1 | #ifndef _DVB_USB_CXUSB_H_ | 1 | #ifndef _DVB_USB_CXUSB_H_ |
2 | #define _DVB_USB_CXUSB_H_ | 2 | #define _DVB_USB_CXUSB_H_ |
3 | 3 | ||
4 | #define DVB_USB_LOG_PREFIX "digitv" | 4 | #define DVB_USB_LOG_PREFIX "cxusb" |
5 | #include "dvb-usb.h" | 5 | #include "dvb-usb.h" |
6 | 6 | ||
7 | extern int dvb_usb_cxusb_debug; | 7 | extern int dvb_usb_cxusb_debug; |
8 | #define deb_info(args...) dprintk(dvb_usb_cxusb_debug,0x01,args) | 8 | #define deb_info(args...) dprintk(dvb_usb_cxusb_debug,0x01,args) |
9 | 9 | ||
10 | /* usb commands - some of it are guesses, don't have a reference yet */ | 10 | /* usb commands - some of it are guesses, don't have a reference yet */ |
11 | #define CMD_I2C_WRITE 0x08 | 11 | #define CMD_I2C_WRITE 0x08 |
12 | #define CMD_I2C_READ 0x09 | 12 | #define CMD_I2C_READ 0x09 |
13 | 13 | ||
14 | #define CMD_IOCTL 0x0e | 14 | #define CMD_GPIO_READ 0x0d |
15 | #define IOCTL_SET_I2C_PATH 0x02 | 15 | #define CMD_GPIO_WRITE 0x0e |
16 | #define GPIO_TUNER 0x02 | ||
16 | 17 | ||
17 | #define CMD_POWER_OFF 0x50 | 18 | #define CMD_POWER_OFF 0xdc |
18 | #define CMD_POWER_ON 0x51 | 19 | #define CMD_POWER_ON 0xde |
19 | 20 | ||
20 | enum cxusb_i2c_pathes { | 21 | #define CMD_STREAMING_ON 0x36 |
21 | PATH_UNDEF = 0x00, | 22 | #define CMD_STREAMING_OFF 0x37 |
22 | PATH_CX22702 = 0x01, | 23 | |
23 | PATH_TUNER_OTHER = 0x02, | 24 | #define CMD_ANALOG 0x50 |
24 | }; | 25 | #define CMD_DIGITAL 0x51 |
25 | 26 | ||
26 | struct cxusb_state { | 27 | struct cxusb_state { |
27 | enum cxusb_i2c_pathes cur_i2c_path; | 28 | u8 gpio_write_state[3]; |
28 | }; | 29 | }; |
29 | 30 | ||
30 | #endif | 31 | #endif |