diff options
author | Jeff Garzik <jgarzik@pobox.com> | 2005-07-13 16:23:51 -0400 |
---|---|---|
committer | Jeff Garzik <jgarzik@pobox.com> | 2005-07-13 16:23:51 -0400 |
commit | 327309e899662b482c58cf25f574513d38b5788c (patch) | |
tree | 069de438aa0e92dd9b6ba28e6b207e2cd07151a5 /drivers/media | |
parent | 0c168775709faa74c1b87f1e61046e0c51ade7f3 (diff) | |
parent | c32511e2718618f0b53479eb36e07439aa363a74 (diff) |
Merge upstream 2.6.13-rc3 into ieee80211 branch of netdev-2.6.
Diffstat (limited to 'drivers/media')
123 files changed, 8750 insertions, 6995 deletions
diff --git a/drivers/media/common/ir-common.c b/drivers/media/common/ir-common.c index 4adb2843f8be..ab7a1fba4427 100644 --- a/drivers/media/common/ir-common.c +++ b/drivers/media/common/ir-common.c | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * $Id: ir-common.c,v 1.10 2005/05/22 19:23:39 nsh Exp $ | 2 | * $Id: ir-common.c,v 1.11 2005/07/07 14:44:43 mchehab Exp $ |
3 | * | 3 | * |
4 | * some common structs and functions to handle infrared remotes via | 4 | * some common structs and functions to handle infrared remotes via |
5 | * input layer ... | 5 | * input layer ... |
@@ -46,79 +46,49 @@ module_param(debug, int, 0644); | |||
46 | /* see http://users.pandora.be/nenya/electronics/rc5/codes00.htm */ | 46 | /* see http://users.pandora.be/nenya/electronics/rc5/codes00.htm */ |
47 | /* used by old (black) Hauppauge remotes */ | 47 | /* used by old (black) Hauppauge remotes */ |
48 | IR_KEYTAB_TYPE ir_codes_rc5_tv[IR_KEYTAB_SIZE] = { | 48 | IR_KEYTAB_TYPE ir_codes_rc5_tv[IR_KEYTAB_SIZE] = { |
49 | [ 0x00 ] = KEY_KP0, // 0 | 49 | /* Keys 0 to 9 */ |
50 | [ 0x01 ] = KEY_KP1, // 1 | 50 | [ 0x00 ] = KEY_KP0, |
51 | [ 0x02 ] = KEY_KP2, // 2 | 51 | [ 0x01 ] = KEY_KP1, |
52 | [ 0x03 ] = KEY_KP3, // 3 | 52 | [ 0x02 ] = KEY_KP2, |
53 | [ 0x04 ] = KEY_KP4, // 4 | 53 | [ 0x03 ] = KEY_KP3, |
54 | [ 0x05 ] = KEY_KP5, // 5 | 54 | [ 0x04 ] = KEY_KP4, |
55 | [ 0x06 ] = KEY_KP6, // 6 | 55 | [ 0x05 ] = KEY_KP5, |
56 | [ 0x07 ] = KEY_KP7, // 7 | 56 | [ 0x06 ] = KEY_KP6, |
57 | [ 0x08 ] = KEY_KP8, // 8 | 57 | [ 0x07 ] = KEY_KP7, |
58 | [ 0x09 ] = KEY_KP9, // 9 | 58 | [ 0x08 ] = KEY_KP8, |
59 | 59 | [ 0x09 ] = KEY_KP9, | |
60 | [ 0x0b ] = KEY_CHANNEL, // channel / program (japan: 11) | 60 | |
61 | [ 0x0c ] = KEY_POWER, // standby | 61 | [ 0x0b ] = KEY_CHANNEL, /* channel / program (japan: 11) */ |
62 | [ 0x0d ] = KEY_MUTE, // mute / demute | 62 | [ 0x0c ] = KEY_POWER, /* standby */ |
63 | [ 0x0f ] = KEY_TV, // display | 63 | [ 0x0d ] = KEY_MUTE, /* mute / demute */ |
64 | [ 0x10 ] = KEY_VOLUMEUP, // volume + | 64 | [ 0x0f ] = KEY_TV, /* display */ |
65 | [ 0x11 ] = KEY_VOLUMEDOWN, // volume - | 65 | [ 0x10 ] = KEY_VOLUMEUP, |
66 | [ 0x12 ] = KEY_BRIGHTNESSUP, // brightness + | 66 | [ 0x11 ] = KEY_VOLUMEDOWN, |
67 | [ 0x13 ] = KEY_BRIGHTNESSDOWN, // brightness - | 67 | [ 0x12 ] = KEY_BRIGHTNESSUP, |
68 | [ 0x1e ] = KEY_SEARCH, // search + | 68 | [ 0x13 ] = KEY_BRIGHTNESSDOWN, |
69 | [ 0x20 ] = KEY_CHANNELUP, // channel / program + | 69 | [ 0x1e ] = KEY_SEARCH, /* search + */ |
70 | [ 0x21 ] = KEY_CHANNELDOWN, // channel / program - | 70 | [ 0x20 ] = KEY_CHANNELUP, /* channel / program + */ |
71 | [ 0x22 ] = KEY_CHANNEL, // alt / channel | 71 | [ 0x21 ] = KEY_CHANNELDOWN, /* channel / program - */ |
72 | [ 0x23 ] = KEY_LANGUAGE, // 1st / 2nd language | 72 | [ 0x22 ] = KEY_CHANNEL, /* alt / channel */ |
73 | [ 0x26 ] = KEY_SLEEP, // sleeptimer | 73 | [ 0x23 ] = KEY_LANGUAGE, /* 1st / 2nd language */ |
74 | [ 0x2e ] = KEY_MENU, // 2nd controls (USA: menu) | 74 | [ 0x26 ] = KEY_SLEEP, /* sleeptimer */ |
75 | [ 0x30 ] = KEY_PAUSE, // pause | 75 | [ 0x2e ] = KEY_MENU, /* 2nd controls (USA: menu) */ |
76 | [ 0x32 ] = KEY_REWIND, // rewind | 76 | [ 0x30 ] = KEY_PAUSE, |
77 | [ 0x33 ] = KEY_GOTO, // go to | 77 | [ 0x32 ] = KEY_REWIND, |
78 | [ 0x35 ] = KEY_PLAY, // play | 78 | [ 0x33 ] = KEY_GOTO, |
79 | [ 0x36 ] = KEY_STOP, // stop | 79 | [ 0x35 ] = KEY_PLAY, |
80 | [ 0x37 ] = KEY_RECORD, // recording | 80 | [ 0x36 ] = KEY_STOP, |
81 | [ 0x3c ] = KEY_TEXT, // teletext submode (Japan: 12) | 81 | [ 0x37 ] = KEY_RECORD, /* recording */ |
82 | [ 0x3d ] = KEY_SUSPEND, // system standby | 82 | [ 0x3c ] = KEY_TEXT, /* teletext submode (Japan: 12) */ |
83 | 83 | [ 0x3d ] = KEY_SUSPEND, /* system standby */ | |
84 | #if 0 /* FIXME */ | 84 | |
85 | [ 0x0a ] = KEY_RESERVED, // 1/2/3 digits (japan: 10) | ||
86 | [ 0x0e ] = KEY_RESERVED, // P.P. (personal preference) | ||
87 | [ 0x14 ] = KEY_RESERVED, // colour saturation + | ||
88 | [ 0x15 ] = KEY_RESERVED, // colour saturation - | ||
89 | [ 0x16 ] = KEY_RESERVED, // bass + | ||
90 | [ 0x17 ] = KEY_RESERVED, // bass - | ||
91 | [ 0x18 ] = KEY_RESERVED, // treble + | ||
92 | [ 0x19 ] = KEY_RESERVED, // treble - | ||
93 | [ 0x1a ] = KEY_RESERVED, // balance right | ||
94 | [ 0x1b ] = KEY_RESERVED, // balance left | ||
95 | [ 0x1c ] = KEY_RESERVED, // contrast + | ||
96 | [ 0x1d ] = KEY_RESERVED, // contrast - | ||
97 | [ 0x1f ] = KEY_RESERVED, // tint/hue + | ||
98 | [ 0x24 ] = KEY_RESERVED, // spacial stereo on/off | ||
99 | [ 0x25 ] = KEY_RESERVED, // mono / stereo (USA) | ||
100 | [ 0x27 ] = KEY_RESERVED, // tint / hue - | ||
101 | [ 0x28 ] = KEY_RESERVED, // RF switch/PIP select | ||
102 | [ 0x29 ] = KEY_RESERVED, // vote | ||
103 | [ 0x2a ] = KEY_RESERVED, // timed page/channel clck | ||
104 | [ 0x2b ] = KEY_RESERVED, // increment (USA) | ||
105 | [ 0x2c ] = KEY_RESERVED, // decrement (USA) | ||
106 | [ 0x2d ] = KEY_RESERVED, // | ||
107 | [ 0x2f ] = KEY_RESERVED, // PIP shift | ||
108 | [ 0x31 ] = KEY_RESERVED, // erase | ||
109 | [ 0x34 ] = KEY_RESERVED, // wind | ||
110 | [ 0x38 ] = KEY_RESERVED, // external 1 | ||
111 | [ 0x39 ] = KEY_RESERVED, // external 2 | ||
112 | [ 0x3a ] = KEY_RESERVED, // PIP display mode | ||
113 | [ 0x3b ] = KEY_RESERVED, // view data mode / advance | ||
114 | [ 0x3e ] = KEY_RESERVED, // crispener on/off | ||
115 | [ 0x3f ] = KEY_RESERVED, // system select | ||
116 | #endif | ||
117 | }; | 85 | }; |
118 | EXPORT_SYMBOL_GPL(ir_codes_rc5_tv); | 86 | EXPORT_SYMBOL_GPL(ir_codes_rc5_tv); |
119 | 87 | ||
120 | /* Table for Leadtek Winfast Remote Controls - used by both bttv and cx88 */ | 88 | /* Table for Leadtek Winfast Remote Controls - used by both bttv and cx88 */ |
121 | IR_KEYTAB_TYPE ir_codes_winfast[IR_KEYTAB_SIZE] = { | 89 | IR_KEYTAB_TYPE ir_codes_winfast[IR_KEYTAB_SIZE] = { |
90 | /* Keys 0 to 9 */ | ||
91 | [ 18 ] = KEY_KP0, | ||
122 | [ 5 ] = KEY_KP1, | 92 | [ 5 ] = KEY_KP1, |
123 | [ 6 ] = KEY_KP2, | 93 | [ 6 ] = KEY_KP2, |
124 | [ 7 ] = KEY_KP3, | 94 | [ 7 ] = KEY_KP3, |
@@ -128,39 +98,31 @@ IR_KEYTAB_TYPE ir_codes_winfast[IR_KEYTAB_SIZE] = { | |||
128 | [ 13 ] = KEY_KP7, | 98 | [ 13 ] = KEY_KP7, |
129 | [ 14 ] = KEY_KP8, | 99 | [ 14 ] = KEY_KP8, |
130 | [ 15 ] = KEY_KP9, | 100 | [ 15 ] = KEY_KP9, |
131 | [ 18 ] = KEY_KP0, | ||
132 | 101 | ||
133 | [ 0 ] = KEY_POWER, | 102 | [ 0 ] = KEY_POWER, |
134 | // [ 27 ] = MTS button | 103 | [ 2 ] = KEY_TUNER, /* TV/FM */ |
135 | [ 2 ] = KEY_TUNER, // TV/FM | ||
136 | [ 30 ] = KEY_VIDEO, | 104 | [ 30 ] = KEY_VIDEO, |
137 | // [ 22 ] = display button | ||
138 | [ 4 ] = KEY_VOLUMEUP, | 105 | [ 4 ] = KEY_VOLUMEUP, |
139 | [ 8 ] = KEY_VOLUMEDOWN, | 106 | [ 8 ] = KEY_VOLUMEDOWN, |
140 | [ 12 ] = KEY_CHANNELUP, | 107 | [ 12 ] = KEY_CHANNELUP, |
141 | [ 16 ] = KEY_CHANNELDOWN, | 108 | [ 16 ] = KEY_CHANNELDOWN, |
142 | [ 3 ] = KEY_ZOOM, // fullscreen | 109 | [ 3 ] = KEY_ZOOM, /* fullscreen */ |
143 | [ 31 ] = KEY_SUBTITLE, // closed caption/teletext | 110 | [ 31 ] = KEY_SUBTITLE, /* closed caption/teletext */ |
144 | [ 32 ] = KEY_SLEEP, | 111 | [ 32 ] = KEY_SLEEP, |
145 | // [ 41 ] = boss key | ||
146 | [ 20 ] = KEY_MUTE, | 112 | [ 20 ] = KEY_MUTE, |
147 | [ 43 ] = KEY_RED, | 113 | [ 43 ] = KEY_RED, |
148 | [ 44 ] = KEY_GREEN, | 114 | [ 44 ] = KEY_GREEN, |
149 | [ 45 ] = KEY_YELLOW, | 115 | [ 45 ] = KEY_YELLOW, |
150 | [ 46 ] = KEY_BLUE, | 116 | [ 46 ] = KEY_BLUE, |
151 | [ 24 ] = KEY_KPPLUS, //fine tune + | 117 | [ 24 ] = KEY_KPPLUS, /* fine tune + */ |
152 | [ 25 ] = KEY_KPMINUS, //fine tune - | 118 | [ 25 ] = KEY_KPMINUS, /* fine tune - */ |
153 | // [ 42 ] = picture in picture | ||
154 | [ 33 ] = KEY_KPDOT, | 119 | [ 33 ] = KEY_KPDOT, |
155 | [ 19 ] = KEY_KPENTER, | 120 | [ 19 ] = KEY_KPENTER, |
156 | // [ 17 ] = recall | ||
157 | [ 34 ] = KEY_BACK, | 121 | [ 34 ] = KEY_BACK, |
158 | [ 35 ] = KEY_PLAYPAUSE, | 122 | [ 35 ] = KEY_PLAYPAUSE, |
159 | [ 36 ] = KEY_NEXT, | 123 | [ 36 ] = KEY_NEXT, |
160 | // [ 37 ] = time shifting | ||
161 | [ 38 ] = KEY_STOP, | 124 | [ 38 ] = KEY_STOP, |
162 | [ 39 ] = KEY_RECORD | 125 | [ 39 ] = KEY_RECORD |
163 | // [ 40 ] = snapshot | ||
164 | }; | 126 | }; |
165 | EXPORT_SYMBOL_GPL(ir_codes_winfast); | 127 | EXPORT_SYMBOL_GPL(ir_codes_winfast); |
166 | 128 | ||
@@ -174,54 +136,61 @@ EXPORT_SYMBOL_GPL(ir_codes_empty); | |||
174 | * slightly different versions), shipped with cx88+ivtv cards. | 136 | * slightly different versions), shipped with cx88+ivtv cards. |
175 | * almost rc5 coding, but some non-standard keys */ | 137 | * almost rc5 coding, but some non-standard keys */ |
176 | IR_KEYTAB_TYPE ir_codes_hauppauge_new[IR_KEYTAB_SIZE] = { | 138 | IR_KEYTAB_TYPE ir_codes_hauppauge_new[IR_KEYTAB_SIZE] = { |
177 | [ 0x00 ] = KEY_KP0, // 0 | 139 | /* Keys 0 to 9 */ |
178 | [ 0x01 ] = KEY_KP1, // 1 | 140 | [ 0x00 ] = KEY_KP0, |
179 | [ 0x02 ] = KEY_KP2, // 2 | 141 | [ 0x01 ] = KEY_KP1, |
180 | [ 0x03 ] = KEY_KP3, // 3 | 142 | [ 0x02 ] = KEY_KP2, |
181 | [ 0x04 ] = KEY_KP4, // 4 | 143 | [ 0x03 ] = KEY_KP3, |
182 | [ 0x05 ] = KEY_KP5, // 5 | 144 | [ 0x04 ] = KEY_KP4, |
183 | [ 0x06 ] = KEY_KP6, // 6 | 145 | [ 0x05 ] = KEY_KP5, |
184 | [ 0x07 ] = KEY_KP7, // 7 | 146 | [ 0x06 ] = KEY_KP6, |
185 | [ 0x08 ] = KEY_KP8, // 8 | 147 | [ 0x07 ] = KEY_KP7, |
186 | [ 0x09 ] = KEY_KP9, // 9 | 148 | [ 0x08 ] = KEY_KP8, |
187 | [ 0x0a ] = KEY_TEXT, // keypad asterisk as well | 149 | [ 0x09 ] = KEY_KP9, |
188 | [ 0x0b ] = KEY_RED, // red button | 150 | |
189 | [ 0x0c ] = KEY_RADIO, // radio | 151 | [ 0x0a ] = KEY_TEXT, /* keypad asterisk as well */ |
190 | [ 0x0d ] = KEY_MENU, // menu | 152 | [ 0x0b ] = KEY_RED, /* red button */ |
191 | [ 0x0e ] = KEY_SUBTITLE, // also the # key | 153 | [ 0x0c ] = KEY_RADIO, |
192 | [ 0x0f ] = KEY_MUTE, // mute | 154 | [ 0x0d ] = KEY_MENU, |
193 | [ 0x10 ] = KEY_VOLUMEUP, // volume + | 155 | [ 0x0e ] = KEY_SUBTITLE, /* also the # key */ |
194 | [ 0x11 ] = KEY_VOLUMEDOWN, // volume - | 156 | [ 0x0f ] = KEY_MUTE, |
195 | [ 0x12 ] = KEY_PREVIOUS, // previous channel | 157 | [ 0x10 ] = KEY_VOLUMEUP, |
196 | [ 0x14 ] = KEY_UP, // up | 158 | [ 0x11 ] = KEY_VOLUMEDOWN, |
197 | [ 0x15 ] = KEY_DOWN, // down | 159 | [ 0x12 ] = KEY_PREVIOUS, /* previous channel */ |
198 | [ 0x16 ] = KEY_LEFT, // left | 160 | [ 0x14 ] = KEY_UP, |
199 | [ 0x17 ] = KEY_RIGHT, // right | 161 | [ 0x15 ] = KEY_DOWN, |
200 | [ 0x18 ] = KEY_VIDEO, // Videos | 162 | [ 0x16 ] = KEY_LEFT, |
201 | [ 0x19 ] = KEY_AUDIO, // Music | 163 | [ 0x17 ] = KEY_RIGHT, |
202 | [ 0x1a ] = KEY_MHP, // Pictures - presume this means "Multimedia Home Platform"- no "PICTURES" key in input.h | 164 | [ 0x18 ] = KEY_VIDEO, /* Videos */ |
203 | [ 0x1b ] = KEY_EPG, // Guide | 165 | [ 0x19 ] = KEY_AUDIO, /* Music */ |
204 | [ 0x1c ] = KEY_TV, // TV | 166 | /* 0x1a: Pictures - presume this means |
205 | [ 0x1e ] = KEY_NEXTSONG, // skip >| | 167 | "Multimedia Home Platform" - |
206 | [ 0x1f ] = KEY_EXIT, // back/exit | 168 | no "PICTURES" key in input.h |
207 | [ 0x20 ] = KEY_CHANNELUP, // channel / program + | 169 | */ |
208 | [ 0x21 ] = KEY_CHANNELDOWN, // channel / program - | 170 | [ 0x1a ] = KEY_MHP, |
209 | [ 0x22 ] = KEY_CHANNEL, // source (old black remote) | 171 | |
210 | [ 0x24 ] = KEY_PREVIOUSSONG, // replay |< | 172 | [ 0x1b ] = KEY_EPG, /* Guide */ |
211 | [ 0x25 ] = KEY_ENTER, // OK | 173 | [ 0x1c ] = KEY_TV, |
212 | [ 0x26 ] = KEY_SLEEP, // minimize (old black remote) | 174 | [ 0x1e ] = KEY_NEXTSONG, /* skip >| */ |
213 | [ 0x29 ] = KEY_BLUE, // blue key | 175 | [ 0x1f ] = KEY_EXIT, /* back/exit */ |
214 | [ 0x2e ] = KEY_GREEN, // green button | 176 | [ 0x20 ] = KEY_CHANNELUP, /* channel / program + */ |
215 | [ 0x30 ] = KEY_PAUSE, // pause | 177 | [ 0x21 ] = KEY_CHANNELDOWN, /* channel / program - */ |
216 | [ 0x32 ] = KEY_REWIND, // backward << | 178 | [ 0x22 ] = KEY_CHANNEL, /* source (old black remote) */ |
217 | [ 0x34 ] = KEY_FASTFORWARD, // forward >> | 179 | [ 0x24 ] = KEY_PREVIOUSSONG, /* replay |< */ |
218 | [ 0x35 ] = KEY_PLAY, // play | 180 | [ 0x25 ] = KEY_ENTER, /* OK */ |
219 | [ 0x36 ] = KEY_STOP, // stop | 181 | [ 0x26 ] = KEY_SLEEP, /* minimize (old black remote) */ |
220 | [ 0x37 ] = KEY_RECORD, // recording | 182 | [ 0x29 ] = KEY_BLUE, /* blue key */ |
221 | [ 0x38 ] = KEY_YELLOW, // yellow key | 183 | [ 0x2e ] = KEY_GREEN, /* green button */ |
222 | [ 0x3b ] = KEY_SELECT, // top right button | 184 | [ 0x30 ] = KEY_PAUSE, /* pause */ |
223 | [ 0x3c ] = KEY_ZOOM, // full | 185 | [ 0x32 ] = KEY_REWIND, /* backward << */ |
224 | [ 0x3d ] = KEY_POWER, // system power (green button) | 186 | [ 0x34 ] = KEY_FASTFORWARD, /* forward >> */ |
187 | [ 0x35 ] = KEY_PLAY, | ||
188 | [ 0x36 ] = KEY_STOP, | ||
189 | [ 0x37 ] = KEY_RECORD, /* recording */ | ||
190 | [ 0x38 ] = KEY_YELLOW, /* yellow key */ | ||
191 | [ 0x3b ] = KEY_SELECT, /* top right button */ | ||
192 | [ 0x3c ] = KEY_ZOOM, /* full */ | ||
193 | [ 0x3d ] = KEY_POWER, /* system power (green button) */ | ||
225 | }; | 194 | }; |
226 | EXPORT_SYMBOL(ir_codes_hauppauge_new); | 195 | EXPORT_SYMBOL(ir_codes_hauppauge_new); |
227 | 196 | ||
@@ -237,9 +206,9 @@ IR_KEYTAB_TYPE ir_codes_pixelview[IR_KEYTAB_SIZE] = { | |||
237 | [ 10 ] = KEY_KP8, | 206 | [ 10 ] = KEY_KP8, |
238 | [ 18 ] = KEY_KP9, | 207 | [ 18 ] = KEY_KP9, |
239 | 208 | ||
240 | [ 3 ] = KEY_TUNER, // TV/FM | 209 | [ 3 ] = KEY_TUNER, /* TV/FM */ |
241 | [ 7 ] = KEY_SEARCH, // scan | 210 | [ 7 ] = KEY_SEARCH, /* scan */ |
242 | [ 28 ] = KEY_ZOOM, // full screen | 211 | [ 28 ] = KEY_ZOOM, /* full screen */ |
243 | [ 30 ] = KEY_POWER, | 212 | [ 30 ] = KEY_POWER, |
244 | [ 23 ] = KEY_VOLUMEDOWN, | 213 | [ 23 ] = KEY_VOLUMEDOWN, |
245 | [ 31 ] = KEY_VOLUMEUP, | 214 | [ 31 ] = KEY_VOLUMEUP, |
@@ -247,14 +216,14 @@ IR_KEYTAB_TYPE ir_codes_pixelview[IR_KEYTAB_SIZE] = { | |||
247 | [ 22 ] = KEY_CHANNELUP, | 216 | [ 22 ] = KEY_CHANNELUP, |
248 | [ 24 ] = KEY_MUTE, | 217 | [ 24 ] = KEY_MUTE, |
249 | 218 | ||
250 | [ 0 ] = KEY_LIST, // source | 219 | [ 0 ] = KEY_LIST, /* source */ |
251 | [ 19 ] = KEY_INFO, // loop | 220 | [ 19 ] = KEY_INFO, /* loop */ |
252 | [ 16 ] = KEY_LAST, // +100 | 221 | [ 16 ] = KEY_LAST, /* +100 */ |
253 | [ 13 ] = KEY_CLEAR, // reset | 222 | [ 13 ] = KEY_CLEAR, /* reset */ |
254 | [ 12 ] = BTN_RIGHT, // fun++ | 223 | [ 12 ] = BTN_RIGHT, /* fun++ */ |
255 | [ 4 ] = BTN_LEFT, // fun-- | 224 | [ 4 ] = BTN_LEFT, /* fun-- */ |
256 | [ 14 ] = KEY_GOTO, // function | 225 | [ 14 ] = KEY_GOTO, /* function */ |
257 | [ 15 ] = KEY_STOP, // freeze | 226 | [ 15 ] = KEY_STOP, /* freeze */ |
258 | }; | 227 | }; |
259 | EXPORT_SYMBOL(ir_codes_pixelview); | 228 | EXPORT_SYMBOL(ir_codes_pixelview); |
260 | 229 | ||
@@ -321,10 +290,6 @@ void ir_input_keydown(struct input_dev *dev, struct ir_input_state *ir, | |||
321 | ir->keypressed = 1; | 290 | ir->keypressed = 1; |
322 | ir_input_key_event(dev,ir); | 291 | ir_input_key_event(dev,ir); |
323 | } | 292 | } |
324 | #if 0 | ||
325 | /* maybe do something like this ??? */ | ||
326 | input_event(a, EV_IR, ir->ir_type, ir->ir_raw); | ||
327 | #endif | ||
328 | } | 293 | } |
329 | 294 | ||
330 | /* -------------------------------------------------------------------------- */ | 295 | /* -------------------------------------------------------------------------- */ |
diff --git a/drivers/media/common/saa7146_core.c b/drivers/media/common/saa7146_core.c index 50e8b8654018..cd5828b5e9e3 100644 --- a/drivers/media/common/saa7146_core.c +++ b/drivers/media/common/saa7146_core.c | |||
@@ -62,13 +62,15 @@ void saa7146_setgpio(struct saa7146_dev *dev, int port, u32 data) | |||
62 | int saa7146_wait_for_debi_done(struct saa7146_dev *dev, int nobusyloop) | 62 | int saa7146_wait_for_debi_done(struct saa7146_dev *dev, int nobusyloop) |
63 | { | 63 | { |
64 | unsigned long start; | 64 | unsigned long start; |
65 | int err; | ||
65 | 66 | ||
66 | /* wait for registers to be programmed */ | 67 | /* wait for registers to be programmed */ |
67 | start = jiffies; | 68 | start = jiffies; |
68 | while (1) { | 69 | while (1) { |
69 | if (saa7146_read(dev, MC2) & 2) | 70 | err = time_after(jiffies, start + HZ/20); |
70 | break; | 71 | if (saa7146_read(dev, MC2) & 2) |
71 | if (time_after(jiffies, start + HZ/20)) { | 72 | break; |
73 | if (err) { | ||
72 | DEB_S(("timed out while waiting for registers getting programmed\n")); | 74 | DEB_S(("timed out while waiting for registers getting programmed\n")); |
73 | return -ETIMEDOUT; | 75 | return -ETIMEDOUT; |
74 | } | 76 | } |
@@ -79,10 +81,11 @@ int saa7146_wait_for_debi_done(struct saa7146_dev *dev, int nobusyloop) | |||
79 | /* wait for transfer to complete */ | 81 | /* wait for transfer to complete */ |
80 | start = jiffies; | 82 | start = jiffies; |
81 | while (1) { | 83 | while (1) { |
84 | err = time_after(jiffies, start + HZ/4); | ||
82 | if (!(saa7146_read(dev, PSR) & SPCI_DEBI_S)) | 85 | if (!(saa7146_read(dev, PSR) & SPCI_DEBI_S)) |
83 | break; | 86 | break; |
84 | saa7146_read(dev, MC2); | 87 | saa7146_read(dev, MC2); |
85 | if (time_after(jiffies, start + HZ/4)) { | 88 | if (err) { |
86 | DEB_S(("timed out while waiting for transfer completion\n")); | 89 | DEB_S(("timed out while waiting for transfer completion\n")); |
87 | return -ETIMEDOUT; | 90 | return -ETIMEDOUT; |
88 | } | 91 | } |
@@ -512,7 +515,7 @@ int saa7146_register_extension(struct saa7146_extension* ext) | |||
512 | ext->driver.remove = saa7146_remove_one; | 515 | ext->driver.remove = saa7146_remove_one; |
513 | 516 | ||
514 | printk("saa7146: register extension '%s'.\n",ext->name); | 517 | printk("saa7146: register extension '%s'.\n",ext->name); |
515 | return pci_module_init(&ext->driver); | 518 | return pci_register_driver(&ext->driver); |
516 | } | 519 | } |
517 | 520 | ||
518 | int saa7146_unregister_extension(struct saa7146_extension* ext) | 521 | int saa7146_unregister_extension(struct saa7146_extension* ext) |
diff --git a/drivers/media/dvb/Kconfig b/drivers/media/dvb/Kconfig index 01387f883cdf..3f0ec6be03ae 100644 --- a/drivers/media/dvb/Kconfig +++ b/drivers/media/dvb/Kconfig | |||
@@ -40,6 +40,10 @@ comment "Supported BT878 Adapters" | |||
40 | depends on DVB_CORE && PCI | 40 | depends on DVB_CORE && PCI |
41 | source "drivers/media/dvb/bt8xx/Kconfig" | 41 | source "drivers/media/dvb/bt8xx/Kconfig" |
42 | 42 | ||
43 | comment "Supported Pluto2 Adapters" | ||
44 | depends on DVB_CORE && PCI | ||
45 | source "drivers/media/dvb/pluto2/Kconfig" | ||
46 | |||
43 | comment "Supported DVB Frontends" | 47 | comment "Supported DVB Frontends" |
44 | depends on DVB_CORE | 48 | depends on DVB_CORE |
45 | source "drivers/media/dvb/frontends/Kconfig" | 49 | source "drivers/media/dvb/frontends/Kconfig" |
diff --git a/drivers/media/dvb/Makefile b/drivers/media/dvb/Makefile index 3c6ff1619103..a7ad0841e6fc 100644 --- a/drivers/media/dvb/Makefile +++ b/drivers/media/dvb/Makefile | |||
@@ -2,4 +2,4 @@ | |||
2 | # Makefile for the kernel multimedia device drivers. | 2 | # Makefile for the kernel multimedia device drivers. |
3 | # | 3 | # |
4 | 4 | ||
5 | obj-y := dvb-core/ frontends/ ttpci/ ttusb-dec/ ttusb-budget/ b2c2/ bt8xx/ cinergyT2/ dvb-usb/ | 5 | obj-y := dvb-core/ frontends/ ttpci/ ttusb-dec/ ttusb-budget/ b2c2/ bt8xx/ cinergyT2/ dvb-usb/ pluto2/ |
diff --git a/drivers/media/dvb/b2c2/Kconfig b/drivers/media/dvb/b2c2/Kconfig index fafd0ab3a28f..d7417eac2aba 100644 --- a/drivers/media/dvb/b2c2/Kconfig +++ b/drivers/media/dvb/b2c2/Kconfig | |||
@@ -35,17 +35,3 @@ config DVB_B2C2_FLEXCOP_DEBUG | |||
35 | help | 35 | help |
36 | Say Y if you want to enable the module option to control debug messages | 36 | Say Y if you want to enable the module option to control debug messages |
37 | of all B2C2 FlexCop drivers. | 37 | of all B2C2 FlexCop drivers. |
38 | |||
39 | config DVB_B2C2_SKYSTAR | ||
40 | tristate "B2C2/Technisat Air/Sky/CableStar 2 PCI" | ||
41 | depends on DVB_CORE && PCI | ||
42 | select DVB_STV0299 | ||
43 | select DVB_MT352 | ||
44 | select DVB_MT312 | ||
45 | select DVB_NXT2002 | ||
46 | help | ||
47 | Support for the Skystar2 PCI DVB card by Technisat, which | ||
48 | is equipped with the FlexCopII chipset by B2C2, and | ||
49 | for the B2C2/BBTI Air2PC-ATSC card. | ||
50 | |||
51 | Say Y if you own such a device and want to use it. | ||
diff --git a/drivers/media/dvb/b2c2/Makefile b/drivers/media/dvb/b2c2/Makefile index 7703812af34f..1a1c3bca55fa 100644 --- a/drivers/media/dvb/b2c2/Makefile +++ b/drivers/media/dvb/b2c2/Makefile | |||
@@ -9,6 +9,4 @@ obj-$(CONFIG_DVB_B2C2_FLEXCOP_PCI) += b2c2-flexcop-pci.o | |||
9 | b2c2-flexcop-usb-objs = flexcop-usb.o | 9 | b2c2-flexcop-usb-objs = flexcop-usb.o |
10 | obj-$(CONFIG_DVB_B2C2_FLEXCOP_USB) += b2c2-flexcop-usb.o | 10 | obj-$(CONFIG_DVB_B2C2_FLEXCOP_USB) += b2c2-flexcop-usb.o |
11 | 11 | ||
12 | obj-$(CONFIG_DVB_B2C2_SKYSTAR) += skystar2.o | ||
13 | |||
14 | EXTRA_CFLAGS = -Idrivers/media/dvb/dvb-core/ -Idrivers/media/dvb/frontends/ | 12 | EXTRA_CFLAGS = -Idrivers/media/dvb/dvb-core/ -Idrivers/media/dvb/frontends/ |
diff --git a/drivers/media/dvb/b2c2/flexcop-common.h b/drivers/media/dvb/b2c2/flexcop-common.h index 773d158032df..a94912ac1872 100644 --- a/drivers/media/dvb/b2c2/flexcop-common.h +++ b/drivers/media/dvb/b2c2/flexcop-common.h | |||
@@ -108,6 +108,8 @@ void flexcop_device_kfree(struct flexcop_device*); | |||
108 | int flexcop_device_initialize(struct flexcop_device*); | 108 | int flexcop_device_initialize(struct flexcop_device*); |
109 | void flexcop_device_exit(struct flexcop_device *fc); | 109 | void flexcop_device_exit(struct flexcop_device *fc); |
110 | 110 | ||
111 | void flexcop_reset_block_300(struct flexcop_device *fc); | ||
112 | |||
111 | /* from flexcop-dma.c */ | 113 | /* from flexcop-dma.c */ |
112 | int flexcop_dma_allocate(struct pci_dev *pdev, struct flexcop_dma *dma, u32 size); | 114 | int flexcop_dma_allocate(struct pci_dev *pdev, struct flexcop_dma *dma, u32 size); |
113 | void flexcop_dma_free(struct flexcop_dma *dma); | 115 | void flexcop_dma_free(struct flexcop_dma *dma); |
@@ -115,7 +117,8 @@ void flexcop_dma_free(struct flexcop_dma *dma); | |||
115 | int flexcop_dma_control_timer_irq(struct flexcop_device *fc, flexcop_dma_index_t no, int onoff); | 117 | int flexcop_dma_control_timer_irq(struct flexcop_device *fc, flexcop_dma_index_t no, int onoff); |
116 | int flexcop_dma_control_size_irq(struct flexcop_device *fc, flexcop_dma_index_t no, int onoff); | 118 | int flexcop_dma_control_size_irq(struct flexcop_device *fc, flexcop_dma_index_t no, int onoff); |
117 | int flexcop_dma_control_packet_irq(struct flexcop_device *fc, flexcop_dma_index_t no, int onoff); | 119 | int flexcop_dma_control_packet_irq(struct flexcop_device *fc, flexcop_dma_index_t no, int onoff); |
118 | int flexcop_dma_config(struct flexcop_device *fc, struct flexcop_dma *dma, flexcop_dma_index_t dma_idx,flexcop_dma_addr_index_t index); | 120 | int flexcop_dma_config(struct flexcop_device *fc, struct flexcop_dma *dma, flexcop_dma_index_t dma_idx); |
121 | int flexcop_dma_xfer_control(struct flexcop_device *fc, flexcop_dma_index_t dma_idx, flexcop_dma_addr_index_t index, int onoff); | ||
119 | int flexcop_dma_config_timer(struct flexcop_device *fc, flexcop_dma_index_t dma_idx, u8 cycles); | 122 | int flexcop_dma_config_timer(struct flexcop_device *fc, flexcop_dma_index_t dma_idx, u8 cycles); |
120 | int flexcop_dma_config_packet_count(struct flexcop_device *fc, flexcop_dma_index_t dma_idx, u8 packets); | 123 | int flexcop_dma_config_packet_count(struct flexcop_device *fc, flexcop_dma_index_t dma_idx, u8 packets); |
121 | 124 | ||
@@ -151,6 +154,7 @@ int flexcop_sram_init(struct flexcop_device *fc); | |||
151 | /* from flexcop-misc.c */ | 154 | /* from flexcop-misc.c */ |
152 | void flexcop_determine_revision(struct flexcop_device *fc); | 155 | void flexcop_determine_revision(struct flexcop_device *fc); |
153 | void flexcop_device_name(struct flexcop_device *fc,const char *prefix,const char *suffix); | 156 | void flexcop_device_name(struct flexcop_device *fc,const char *prefix,const char *suffix); |
157 | void flexcop_dump_reg(struct flexcop_device *fc, flexcop_ibi_register reg, int num); | ||
154 | 158 | ||
155 | /* from flexcop-hw-filter.c */ | 159 | /* from flexcop-hw-filter.c */ |
156 | int flexcop_pid_feed_control(struct flexcop_device *fc, struct dvb_demux_feed *dvbdmxfeed, int onoff); | 160 | int flexcop_pid_feed_control(struct flexcop_device *fc, struct dvb_demux_feed *dvbdmxfeed, int onoff); |
diff --git a/drivers/media/dvb/b2c2/flexcop-dma.c b/drivers/media/dvb/b2c2/flexcop-dma.c index 8d2706075360..cf4ed1df6086 100644 --- a/drivers/media/dvb/b2c2/flexcop-dma.c +++ b/drivers/media/dvb/b2c2/flexcop-dma.c | |||
@@ -37,22 +37,90 @@ void flexcop_dma_free(struct flexcop_dma *dma) | |||
37 | } | 37 | } |
38 | EXPORT_SYMBOL(flexcop_dma_free); | 38 | EXPORT_SYMBOL(flexcop_dma_free); |
39 | 39 | ||
40 | int flexcop_dma_control_timer_irq(struct flexcop_device *fc, flexcop_dma_index_t no, int onoff) | 40 | int flexcop_dma_config(struct flexcop_device *fc, |
41 | struct flexcop_dma *dma, | ||
42 | flexcop_dma_index_t dma_idx) | ||
41 | { | 43 | { |
42 | flexcop_ibi_value v = fc->read_ibi_reg(fc,ctrl_208); | 44 | flexcop_ibi_value v0x0,v0x4,v0xc; |
45 | v0x0.raw = v0x4.raw = v0xc.raw = 0; | ||
43 | 46 | ||
44 | if (no & FC_DMA_1) | 47 | v0x0.dma_0x0.dma_address0 = dma->dma_addr0 >> 2; |
45 | v.ctrl_208.DMA1_Timer_Enable_sig = onoff; | 48 | v0xc.dma_0xc.dma_address1 = dma->dma_addr1 >> 2; |
49 | v0x4.dma_0x4_write.dma_addr_size = dma->size / 4; | ||
46 | 50 | ||
47 | if (no & FC_DMA_2) | 51 | if ((dma_idx & FC_DMA_1) == dma_idx) { |
48 | v.ctrl_208.DMA2_Timer_Enable_sig = onoff; | 52 | fc->write_ibi_reg(fc,dma1_000,v0x0); |
53 | fc->write_ibi_reg(fc,dma1_004,v0x4); | ||
54 | fc->write_ibi_reg(fc,dma1_00c,v0xc); | ||
55 | } else if ((dma_idx & FC_DMA_2) == dma_idx) { | ||
56 | fc->write_ibi_reg(fc,dma2_010,v0x0); | ||
57 | fc->write_ibi_reg(fc,dma2_014,v0x4); | ||
58 | fc->write_ibi_reg(fc,dma2_01c,v0xc); | ||
59 | } else { | ||
60 | err("either DMA1 or DMA2 can be configured at the within one flexcop_dma_config call."); | ||
61 | return -EINVAL; | ||
62 | } | ||
49 | 63 | ||
50 | fc->write_ibi_reg(fc,ctrl_208,v); | ||
51 | return 0; | 64 | return 0; |
52 | } | 65 | } |
53 | EXPORT_SYMBOL(flexcop_dma_control_timer_irq); | 66 | EXPORT_SYMBOL(flexcop_dma_config); |
67 | |||
68 | /* start the DMA transfers, but not the DMA IRQs */ | ||
69 | int flexcop_dma_xfer_control(struct flexcop_device *fc, | ||
70 | flexcop_dma_index_t dma_idx, | ||
71 | flexcop_dma_addr_index_t index, | ||
72 | int onoff) | ||
73 | { | ||
74 | flexcop_ibi_value v0x0,v0xc; | ||
75 | flexcop_ibi_register r0x0,r0xc; | ||
76 | |||
77 | if ((dma_idx & FC_DMA_1) == dma_idx) { | ||
78 | r0x0 = dma1_000; | ||
79 | r0xc = dma1_00c; | ||
80 | } else if ((dma_idx & FC_DMA_2) == dma_idx) { | ||
81 | r0x0 = dma2_010; | ||
82 | r0xc = dma2_01c; | ||
83 | } else { | ||
84 | err("either transfer DMA1 or DMA2 can be started within one flexcop_dma_xfer_control call."); | ||
85 | return -EINVAL; | ||
86 | } | ||
87 | |||
88 | v0x0 = fc->read_ibi_reg(fc,r0x0); | ||
89 | v0xc = fc->read_ibi_reg(fc,r0xc); | ||
90 | |||
91 | deb_rdump("reg: %03x: %x\n",r0x0,v0x0.raw); | ||
92 | deb_rdump("reg: %03x: %x\n",r0xc,v0xc.raw); | ||
93 | |||
94 | if (index & FC_DMA_SUBADDR_0) | ||
95 | v0x0.dma_0x0.dma_0start = onoff; | ||
96 | |||
97 | if (index & FC_DMA_SUBADDR_1) | ||
98 | v0xc.dma_0xc.dma_1start = onoff; | ||
99 | |||
100 | fc->write_ibi_reg(fc,r0x0,v0x0); | ||
101 | fc->write_ibi_reg(fc,r0xc,v0xc); | ||
102 | |||
103 | deb_rdump("reg: %03x: %x\n",r0x0,v0x0.raw); | ||
104 | deb_rdump("reg: %03x: %x\n",r0xc,v0xc.raw); | ||
105 | return 0; | ||
106 | } | ||
107 | EXPORT_SYMBOL(flexcop_dma_xfer_control); | ||
108 | |||
109 | static int flexcop_dma_remap(struct flexcop_device *fc, | ||
110 | flexcop_dma_index_t dma_idx, | ||
111 | int onoff) | ||
112 | { | ||
113 | flexcop_ibi_register r = (dma_idx & FC_DMA_1) ? dma1_00c : dma2_01c; | ||
114 | flexcop_ibi_value v = fc->read_ibi_reg(fc,r); | ||
115 | deb_info("%s\n",__FUNCTION__); | ||
116 | v.dma_0xc.remap_enable = onoff; | ||
117 | fc->write_ibi_reg(fc,r,v); | ||
118 | return 0; | ||
119 | } | ||
54 | 120 | ||
55 | int flexcop_dma_control_size_irq(struct flexcop_device *fc, flexcop_dma_index_t no, int onoff) | 121 | int flexcop_dma_control_size_irq(struct flexcop_device *fc, |
122 | flexcop_dma_index_t no, | ||
123 | int onoff) | ||
56 | { | 124 | { |
57 | flexcop_ibi_value v = fc->read_ibi_reg(fc,ctrl_208); | 125 | flexcop_ibi_value v = fc->read_ibi_reg(fc,ctrl_208); |
58 | 126 | ||
@@ -67,75 +135,64 @@ int flexcop_dma_control_size_irq(struct flexcop_device *fc, flexcop_dma_index_t | |||
67 | } | 135 | } |
68 | EXPORT_SYMBOL(flexcop_dma_control_size_irq); | 136 | EXPORT_SYMBOL(flexcop_dma_control_size_irq); |
69 | 137 | ||
70 | int flexcop_dma_control_packet_irq(struct flexcop_device *fc, flexcop_dma_index_t no, int onoff) | 138 | int flexcop_dma_control_timer_irq(struct flexcop_device *fc, |
139 | flexcop_dma_index_t no, | ||
140 | int onoff) | ||
71 | { | 141 | { |
72 | flexcop_ibi_value v = fc->read_ibi_reg(fc,ctrl_208); | 142 | flexcop_ibi_value v = fc->read_ibi_reg(fc,ctrl_208); |
73 | 143 | ||
74 | if (no & FC_DMA_1) | 144 | if (no & FC_DMA_1) |
75 | v.ctrl_208.DMA1_Size_IRQ_Enable_sig = onoff; | 145 | v.ctrl_208.DMA1_Timer_Enable_sig = onoff; |
76 | 146 | ||
77 | if (no & FC_DMA_2) | 147 | if (no & FC_DMA_2) |
78 | v.ctrl_208.DMA2_Size_IRQ_Enable_sig = onoff; | 148 | v.ctrl_208.DMA2_Timer_Enable_sig = onoff; |
79 | 149 | ||
80 | fc->write_ibi_reg(fc,ctrl_208,v); | 150 | fc->write_ibi_reg(fc,ctrl_208,v); |
81 | return 0; | 151 | return 0; |
82 | } | 152 | } |
83 | EXPORT_SYMBOL(flexcop_dma_control_packet_irq); | 153 | EXPORT_SYMBOL(flexcop_dma_control_timer_irq); |
84 | 154 | ||
85 | int flexcop_dma_config(struct flexcop_device *fc, struct flexcop_dma *dma, flexcop_dma_index_t dma_idx,flexcop_dma_addr_index_t index) | 155 | /* 1 cycles = 1.97 msec */ |
156 | int flexcop_dma_config_timer(struct flexcop_device *fc, | ||
157 | flexcop_dma_index_t dma_idx, | ||
158 | u8 cycles) | ||
86 | { | 159 | { |
160 | flexcop_ibi_register r = (dma_idx & FC_DMA_1) ? dma1_004 : dma2_014; | ||
161 | flexcop_ibi_value v = fc->read_ibi_reg(fc,r); | ||
87 | 162 | ||
88 | flexcop_ibi_value v0x0,v0x4,v0xc; | 163 | flexcop_dma_remap(fc,dma_idx,0); |
89 | v0x0.raw = v0x4.raw = v0xc.raw = 0; | ||
90 | |||
91 | v0x0.dma_0x0.dma_address0 = dma->dma_addr0 >> 2; | ||
92 | v0xc.dma_0xc.dma_address1 = dma->dma_addr1 >> 2; | ||
93 | v0x4.dma_0x4_write.dma_addr_size = dma->size / 4; | ||
94 | |||
95 | if (index & FC_DMA_SUBADDR_0) | ||
96 | v0x0.dma_0x0.dma_0start = 1; | ||
97 | |||
98 | if (index & FC_DMA_SUBADDR_1) | ||
99 | v0xc.dma_0xc.dma_1start = 1; | ||
100 | |||
101 | if (dma_idx & FC_DMA_1) { | ||
102 | fc->write_ibi_reg(fc,dma1_000,v0x0); | ||
103 | fc->write_ibi_reg(fc,dma1_004,v0x4); | ||
104 | fc->write_ibi_reg(fc,dma1_00c,v0xc); | ||
105 | } else { /* (dma_idx & FC_DMA_2) */ | ||
106 | fc->write_ibi_reg(fc,dma2_010,v0x0); | ||
107 | fc->write_ibi_reg(fc,dma2_014,v0x4); | ||
108 | fc->write_ibi_reg(fc,dma2_01c,v0xc); | ||
109 | } | ||
110 | |||
111 | return 0; | ||
112 | } | ||
113 | EXPORT_SYMBOL(flexcop_dma_config); | ||
114 | 164 | ||
115 | static int flexcop_dma_remap(struct flexcop_device *fc, flexcop_dma_index_t dma_idx, int onoff) | 165 | deb_info("%s\n",__FUNCTION__); |
116 | { | 166 | v.dma_0x4_write.dmatimer = cycles; |
117 | flexcop_ibi_register r = (dma_idx & FC_DMA_1) ? dma1_00c : dma2_01c; | ||
118 | flexcop_ibi_value v = fc->read_ibi_reg(fc,r); | ||
119 | v.dma_0xc.remap_enable = onoff; | ||
120 | fc->write_ibi_reg(fc,r,v); | 167 | fc->write_ibi_reg(fc,r,v); |
121 | return 0; | 168 | return 0; |
122 | } | 169 | } |
170 | EXPORT_SYMBOL(flexcop_dma_config_timer); | ||
123 | 171 | ||
124 | /* 1 cycles = 1.97 msec */ | 172 | /* packet IRQ does not exist in FCII or FCIIb - according to data book and tests */ |
125 | int flexcop_dma_config_timer(struct flexcop_device *fc, flexcop_dma_index_t dma_idx, u8 cycles) | 173 | int flexcop_dma_control_packet_irq(struct flexcop_device *fc, |
174 | flexcop_dma_index_t no, | ||
175 | int onoff) | ||
126 | { | 176 | { |
127 | flexcop_ibi_register r = (dma_idx & FC_DMA_1) ? dma1_004 : dma2_014; | 177 | flexcop_ibi_value v = fc->read_ibi_reg(fc,ctrl_208); |
128 | flexcop_ibi_value v = fc->read_ibi_reg(fc,r); | ||
129 | 178 | ||
130 | flexcop_dma_remap(fc,dma_idx,0); | 179 | deb_rdump("reg: %03x: %x\n",ctrl_208,v.raw); |
180 | if (no & FC_DMA_1) | ||
181 | v.ctrl_208.DMA1_Size_IRQ_Enable_sig = onoff; | ||
182 | |||
183 | if (no & FC_DMA_2) | ||
184 | v.ctrl_208.DMA2_Size_IRQ_Enable_sig = onoff; | ||
185 | |||
186 | fc->write_ibi_reg(fc,ctrl_208,v); | ||
187 | deb_rdump("reg: %03x: %x\n",ctrl_208,v.raw); | ||
131 | 188 | ||
132 | v.dma_0x4_write.dmatimer = cycles >> 1; | ||
133 | fc->write_ibi_reg(fc,r,v); | ||
134 | return 0; | 189 | return 0; |
135 | } | 190 | } |
136 | EXPORT_SYMBOL(flexcop_dma_config_timer); | 191 | EXPORT_SYMBOL(flexcop_dma_control_packet_irq); |
137 | 192 | ||
138 | int flexcop_dma_config_packet_count(struct flexcop_device *fc, flexcop_dma_index_t dma_idx, u8 packets) | 193 | int flexcop_dma_config_packet_count(struct flexcop_device *fc, |
194 | flexcop_dma_index_t dma_idx, | ||
195 | u8 packets) | ||
139 | { | 196 | { |
140 | flexcop_ibi_register r = (dma_idx & FC_DMA_1) ? dma1_004 : dma2_014; | 197 | flexcop_ibi_register r = (dma_idx & FC_DMA_1) ? dma1_004 : dma2_014; |
141 | flexcop_ibi_value v = fc->read_ibi_reg(fc,r); | 198 | flexcop_ibi_value v = fc->read_ibi_reg(fc,r); |
diff --git a/drivers/media/dvb/b2c2/flexcop-hw-filter.c b/drivers/media/dvb/b2c2/flexcop-hw-filter.c index 2baf43d3ce8f..75cf237196eb 100644 --- a/drivers/media/dvb/b2c2/flexcop-hw-filter.c +++ b/drivers/media/dvb/b2c2/flexcop-hw-filter.c | |||
@@ -10,6 +10,8 @@ | |||
10 | static void flexcop_rcv_data_ctrl(struct flexcop_device *fc, int onoff) | 10 | static void flexcop_rcv_data_ctrl(struct flexcop_device *fc, int onoff) |
11 | { | 11 | { |
12 | flexcop_set_ibi_value(ctrl_208,Rcv_Data_sig,onoff); | 12 | flexcop_set_ibi_value(ctrl_208,Rcv_Data_sig,onoff); |
13 | |||
14 | deb_ts("rcv_data is now: '%s'\n",onoff ? "on" : "off"); | ||
13 | } | 15 | } |
14 | 16 | ||
15 | void flexcop_smc_ctrl(struct flexcop_device *fc, int onoff) | 17 | void flexcop_smc_ctrl(struct flexcop_device *fc, int onoff) |
@@ -151,7 +153,7 @@ int flexcop_pid_feed_control(struct flexcop_device *fc, struct dvb_demux_feed *d | |||
151 | { | 153 | { |
152 | int max_pid_filter = 6 + fc->has_32_hw_pid_filter*32; | 154 | int max_pid_filter = 6 + fc->has_32_hw_pid_filter*32; |
153 | 155 | ||
154 | fc->feedcount += onoff ? 1 : -1; | 156 | fc->feedcount += onoff ? 1 : -1; /* the number of PIDs/Feed currently requested */ |
155 | if (dvbdmxfeed->index >= max_pid_filter) | 157 | if (dvbdmxfeed->index >= max_pid_filter) |
156 | fc->extra_feedcount += onoff ? 1 : -1; | 158 | fc->extra_feedcount += onoff ? 1 : -1; |
157 | 159 | ||
@@ -178,8 +180,14 @@ int flexcop_pid_feed_control(struct flexcop_device *fc, struct dvb_demux_feed *d | |||
178 | /* if it was the first or last feed request change the stream-status */ | 180 | /* if it was the first or last feed request change the stream-status */ |
179 | if (fc->feedcount == onoff) { | 181 | if (fc->feedcount == onoff) { |
180 | flexcop_rcv_data_ctrl(fc,onoff); | 182 | flexcop_rcv_data_ctrl(fc,onoff); |
181 | if (fc->stream_control) | 183 | if (fc->stream_control) /* device specific stream control */ |
182 | fc->stream_control(fc,onoff); | 184 | fc->stream_control(fc,onoff); |
185 | |||
186 | /* feeding stopped -> reset the flexcop filter*/ | ||
187 | if (onoff == 0) { | ||
188 | flexcop_reset_block_300(fc); | ||
189 | flexcop_hw_filter_init(fc); | ||
190 | } | ||
183 | } | 191 | } |
184 | 192 | ||
185 | return 0; | 193 | return 0; |
diff --git a/drivers/media/dvb/b2c2/flexcop-misc.c b/drivers/media/dvb/b2c2/flexcop-misc.c index 23082545651f..3a08d38b318a 100644 --- a/drivers/media/dvb/b2c2/flexcop-misc.c +++ b/drivers/media/dvb/b2c2/flexcop-misc.c | |||
@@ -65,3 +65,15 @@ void flexcop_device_name(struct flexcop_device *fc,const char *prefix,const | |||
65 | flexcop_device_names[fc->dev_type],flexcop_bus_names[fc->bus_type], | 65 | flexcop_device_names[fc->dev_type],flexcop_bus_names[fc->bus_type], |
66 | flexcop_revision_names[fc->rev],suffix); | 66 | flexcop_revision_names[fc->rev],suffix); |
67 | } | 67 | } |
68 | |||
69 | void flexcop_dump_reg(struct flexcop_device *fc, flexcop_ibi_register reg, int num) | ||
70 | { | ||
71 | flexcop_ibi_value v; | ||
72 | int i; | ||
73 | for (i = 0; i < num; i++) { | ||
74 | v = fc->read_ibi_reg(fc,reg+4*i); | ||
75 | deb_rdump("0x%03x: %08x, ",reg+4*i, v.raw); | ||
76 | } | ||
77 | deb_rdump("\n"); | ||
78 | } | ||
79 | EXPORT_SYMBOL(flexcop_dump_reg); | ||
diff --git a/drivers/media/dvb/b2c2/flexcop-pci.c b/drivers/media/dvb/b2c2/flexcop-pci.c index ed717c0073d5..2f76eb3fea40 100644 --- a/drivers/media/dvb/b2c2/flexcop-pci.c +++ b/drivers/media/dvb/b2c2/flexcop-pci.c | |||
@@ -13,6 +13,10 @@ static int enable_pid_filtering = 1; | |||
13 | module_param(enable_pid_filtering, int, 0444); | 13 | module_param(enable_pid_filtering, int, 0444); |
14 | MODULE_PARM_DESC(enable_pid_filtering, "enable hardware pid filtering: supported values: 0 (fullts), 1"); | 14 | MODULE_PARM_DESC(enable_pid_filtering, "enable hardware pid filtering: supported values: 0 (fullts), 1"); |
15 | 15 | ||
16 | static int irq_chk_intv; | ||
17 | module_param(irq_chk_intv, int, 0644); | ||
18 | MODULE_PARM_DESC(irq_chk_intv, "set the interval for IRQ watchdog (currently just debugging)."); | ||
19 | |||
16 | #ifdef CONFIG_DVB_B2C2_FLEXCOP_DEBUG | 20 | #ifdef CONFIG_DVB_B2C2_FLEXCOP_DEBUG |
17 | #define dprintk(level,args...) \ | 21 | #define dprintk(level,args...) \ |
18 | do { if ((debug & level)) printk(args); } while (0) | 22 | do { if ((debug & level)) printk(args); } while (0) |
@@ -26,6 +30,7 @@ MODULE_PARM_DESC(enable_pid_filtering, "enable hardware pid filtering: supported | |||
26 | #define deb_reg(args...) dprintk(0x02,args) | 30 | #define deb_reg(args...) dprintk(0x02,args) |
27 | #define deb_ts(args...) dprintk(0x04,args) | 31 | #define deb_ts(args...) dprintk(0x04,args) |
28 | #define deb_irq(args...) dprintk(0x08,args) | 32 | #define deb_irq(args...) dprintk(0x08,args) |
33 | #define deb_chk(args...) dprintk(0x10,args) | ||
29 | 34 | ||
30 | static int debug = 0; | 35 | static int debug = 0; |
31 | module_param(debug, int, 0644); | 36 | module_param(debug, int, 0644); |
@@ -56,6 +61,10 @@ struct flexcop_pci { | |||
56 | 61 | ||
57 | spinlock_t irq_lock; | 62 | spinlock_t irq_lock; |
58 | 63 | ||
64 | unsigned long last_irq; | ||
65 | |||
66 | struct work_struct irq_check_work; | ||
67 | |||
59 | struct flexcop_device *fc_dev; | 68 | struct flexcop_device *fc_dev; |
60 | }; | 69 | }; |
61 | 70 | ||
@@ -88,18 +97,55 @@ static int flexcop_pci_write_ibi_reg(struct flexcop_device *fc, flexcop_ibi_regi | |||
88 | return 0; | 97 | return 0; |
89 | } | 98 | } |
90 | 99 | ||
100 | static void flexcop_pci_irq_check_work(void *data) | ||
101 | { | ||
102 | struct flexcop_pci *fc_pci = data; | ||
103 | struct flexcop_device *fc = fc_pci->fc_dev; | ||
104 | |||
105 | flexcop_ibi_value v = fc->read_ibi_reg(fc,sram_dest_reg_714); | ||
106 | |||
107 | flexcop_dump_reg(fc_pci->fc_dev,dma1_000,4); | ||
108 | |||
109 | if (v.sram_dest_reg_714.net_ovflow_error) | ||
110 | deb_chk("sram net_ovflow_error\n"); | ||
111 | if (v.sram_dest_reg_714.media_ovflow_error) | ||
112 | deb_chk("sram media_ovflow_error\n"); | ||
113 | if (v.sram_dest_reg_714.cai_ovflow_error) | ||
114 | deb_chk("sram cai_ovflow_error\n"); | ||
115 | if (v.sram_dest_reg_714.cai_ovflow_error) | ||
116 | deb_chk("sram cai_ovflow_error\n"); | ||
117 | |||
118 | schedule_delayed_work(&fc_pci->irq_check_work, | ||
119 | msecs_to_jiffies(irq_chk_intv < 100 ? 100 : irq_chk_intv)); | ||
120 | } | ||
121 | |||
91 | /* When PID filtering is turned on, we use the timer IRQ, because small amounts | 122 | /* When PID filtering is turned on, we use the timer IRQ, because small amounts |
92 | * of data need to be passed to the user space instantly as well. When PID | 123 | * of data need to be passed to the user space instantly as well. When PID |
93 | * filtering is turned off, we use the page-change-IRQ */ | 124 | * filtering is turned off, we use the page-change-IRQ */ |
94 | static irqreturn_t flexcop_pci_irq(int irq, void *dev_id, struct pt_regs *regs) | 125 | static irqreturn_t flexcop_pci_isr(int irq, void *dev_id, struct pt_regs *regs) |
95 | { | 126 | { |
96 | struct flexcop_pci *fc_pci = dev_id; | 127 | struct flexcop_pci *fc_pci = dev_id; |
97 | struct flexcop_device *fc = fc_pci->fc_dev; | 128 | struct flexcop_device *fc = fc_pci->fc_dev; |
98 | flexcop_ibi_value v = fc->read_ibi_reg(fc,irq_20c); | 129 | flexcop_ibi_value v; |
99 | irqreturn_t ret = IRQ_HANDLED; | 130 | irqreturn_t ret = IRQ_HANDLED; |
100 | 131 | ||
101 | spin_lock_irq(&fc_pci->irq_lock); | 132 | spin_lock_irq(&fc_pci->irq_lock); |
102 | 133 | ||
134 | v = fc->read_ibi_reg(fc,irq_20c); | ||
135 | |||
136 | /* errors */ | ||
137 | if (v.irq_20c.Data_receiver_error) | ||
138 | deb_chk("data receiver error\n"); | ||
139 | if (v.irq_20c.Continuity_error_flag) | ||
140 | deb_chk("Contunuity error flag is set\n"); | ||
141 | if (v.irq_20c.LLC_SNAP_FLAG_set) | ||
142 | deb_chk("LLC_SNAP_FLAG_set is set\n"); | ||
143 | if (v.irq_20c.Transport_Error) | ||
144 | deb_chk("Transport error\n"); | ||
145 | |||
146 | if ((fc_pci->count % 1000) == 0) | ||
147 | deb_chk("%d valid irq took place so far\n",fc_pci->count); | ||
148 | |||
103 | if (v.irq_20c.DMA1_IRQ_Status == 1) { | 149 | if (v.irq_20c.DMA1_IRQ_Status == 1) { |
104 | if (fc_pci->active_dma1_addr == 0) | 150 | if (fc_pci->active_dma1_addr == 0) |
105 | flexcop_pass_dmx_packets(fc_pci->fc_dev,fc_pci->dma[0].cpu_addr0,fc_pci->dma[0].size / 188); | 151 | flexcop_pass_dmx_packets(fc_pci->fc_dev,fc_pci->dma[0].cpu_addr0,fc_pci->dma[0].size / 188); |
@@ -115,8 +161,9 @@ static irqreturn_t flexcop_pci_irq(int irq, void *dev_id, struct pt_regs *regs) | |||
115 | fc->read_ibi_reg(fc,dma1_008).dma_0x8.dma_cur_addr << 2; | 161 | fc->read_ibi_reg(fc,dma1_008).dma_0x8.dma_cur_addr << 2; |
116 | u32 cur_pos = cur_addr - fc_pci->dma[0].dma_addr0; | 162 | u32 cur_pos = cur_addr - fc_pci->dma[0].dma_addr0; |
117 | 163 | ||
118 | deb_irq("irq: %08x cur_addr: %08x: cur_pos: %08x, last_cur_pos: %08x ", | 164 | deb_irq("%u irq: %08x cur_addr: %08x: cur_pos: %08x, last_cur_pos: %08x ", |
119 | v.raw,cur_addr,cur_pos,fc_pci->last_dma1_cur_pos); | 165 | jiffies_to_usecs(jiffies - fc_pci->last_irq),v.raw,cur_addr,cur_pos,fc_pci->last_dma1_cur_pos); |
166 | fc_pci->last_irq = jiffies; | ||
120 | 167 | ||
121 | /* buffer end was reached, restarted from the beginning | 168 | /* buffer end was reached, restarted from the beginning |
122 | * pass the data from last_cur_pos to the buffer end to the demux | 169 | * pass the data from last_cur_pos to the buffer end to the demux |
@@ -127,7 +174,6 @@ static irqreturn_t flexcop_pci_irq(int irq, void *dev_id, struct pt_regs *regs) | |||
127 | fc_pci->dma[0].cpu_addr0 + fc_pci->last_dma1_cur_pos, | 174 | fc_pci->dma[0].cpu_addr0 + fc_pci->last_dma1_cur_pos, |
128 | (fc_pci->dma[0].size*2) - fc_pci->last_dma1_cur_pos); | 175 | (fc_pci->dma[0].size*2) - fc_pci->last_dma1_cur_pos); |
129 | fc_pci->last_dma1_cur_pos = 0; | 176 | fc_pci->last_dma1_cur_pos = 0; |
130 | fc_pci->count = 0; | ||
131 | } | 177 | } |
132 | 178 | ||
133 | if (cur_pos > fc_pci->last_dma1_cur_pos) { | 179 | if (cur_pos > fc_pci->last_dma1_cur_pos) { |
@@ -139,16 +185,14 @@ static irqreturn_t flexcop_pci_irq(int irq, void *dev_id, struct pt_regs *regs) | |||
139 | deb_irq("\n"); | 185 | deb_irq("\n"); |
140 | 186 | ||
141 | fc_pci->last_dma1_cur_pos = cur_pos; | 187 | fc_pci->last_dma1_cur_pos = cur_pos; |
142 | } else | 188 | fc_pci->count++; |
189 | } else { | ||
190 | deb_irq("isr for flexcop called, apparently without reason (%08x)\n",v.raw); | ||
143 | ret = IRQ_NONE; | 191 | ret = IRQ_NONE; |
192 | } | ||
144 | 193 | ||
145 | spin_unlock_irq(&fc_pci->irq_lock); | 194 | spin_unlock_irq(&fc_pci->irq_lock); |
146 | 195 | ||
147 | /* packet count would be ideal for hw filtering, but it isn't working. Either | ||
148 | * the data book is wrong, or I'm unable to read it correctly */ | ||
149 | |||
150 | /* if (v.irq_20c.DMA1_Size_IRQ_Status == 1) { packet counter */ | ||
151 | |||
152 | return ret; | 196 | return ret; |
153 | } | 197 | } |
154 | 198 | ||
@@ -156,30 +200,35 @@ static int flexcop_pci_stream_control(struct flexcop_device *fc, int onoff) | |||
156 | { | 200 | { |
157 | struct flexcop_pci *fc_pci = fc->bus_specific; | 201 | struct flexcop_pci *fc_pci = fc->bus_specific; |
158 | if (onoff) { | 202 | if (onoff) { |
159 | flexcop_dma_config(fc,&fc_pci->dma[0],FC_DMA_1,FC_DMA_SUBADDR_0 | FC_DMA_SUBADDR_1); | 203 | flexcop_dma_config(fc,&fc_pci->dma[0],FC_DMA_1); |
160 | flexcop_dma_config(fc,&fc_pci->dma[1],FC_DMA_2,FC_DMA_SUBADDR_0 | FC_DMA_SUBADDR_1); | 204 | flexcop_dma_config(fc,&fc_pci->dma[1],FC_DMA_2); |
161 | flexcop_dma_config_timer(fc,FC_DMA_1,1); | ||
162 | 205 | ||
163 | if (fc_pci->fc_dev->pid_filtering) { | 206 | flexcop_dma_config_timer(fc,FC_DMA_1,0); |
164 | fc_pci->last_dma1_cur_pos = 0; | ||
165 | flexcop_dma_control_timer_irq(fc,FC_DMA_1,1); | ||
166 | } else { | ||
167 | fc_pci->active_dma1_addr = 0; | ||
168 | flexcop_dma_control_size_irq(fc,FC_DMA_1,1); | ||
169 | } | ||
170 | 207 | ||
171 | /* flexcop_dma_config_packet_count(fc,FC_DMA_1,0xc0); | 208 | flexcop_dma_xfer_control(fc,FC_DMA_1,FC_DMA_SUBADDR_0 | FC_DMA_SUBADDR_1,1); |
172 | flexcop_dma_control_packet_irq(fc,FC_DMA_1,1); */ | 209 | deb_irq("DMA xfer enabled\n"); |
173 | 210 | ||
174 | deb_irq("irqs enabled\n"); | 211 | fc_pci->last_dma1_cur_pos = 0; |
212 | flexcop_dma_control_timer_irq(fc,FC_DMA_1,1); | ||
213 | deb_irq("IRQ enabled\n"); | ||
214 | |||
215 | // fc_pci->active_dma1_addr = 0; | ||
216 | // flexcop_dma_control_size_irq(fc,FC_DMA_1,1); | ||
217 | |||
218 | if (irq_chk_intv > 0) | ||
219 | schedule_delayed_work(&fc_pci->irq_check_work, | ||
220 | msecs_to_jiffies(irq_chk_intv < 100 ? 100 : irq_chk_intv)); | ||
175 | } else { | 221 | } else { |
176 | if (fc_pci->fc_dev->pid_filtering) | 222 | if (irq_chk_intv > 0) |
177 | flexcop_dma_control_timer_irq(fc,FC_DMA_1,0); | 223 | cancel_delayed_work(&fc_pci->irq_check_work); |
178 | else | 224 | |
179 | flexcop_dma_control_size_irq(fc,FC_DMA_1,0); | 225 | flexcop_dma_control_timer_irq(fc,FC_DMA_1,0); |
226 | deb_irq("IRQ disabled\n"); | ||
180 | 227 | ||
181 | // flexcop_dma_control_packet_irq(fc,FC_DMA_1,0); | 228 | // flexcop_dma_control_size_irq(fc,FC_DMA_1,0); |
182 | deb_irq("irqs disabled\n"); | 229 | |
230 | flexcop_dma_xfer_control(fc,FC_DMA_1,FC_DMA_SUBADDR_0 | FC_DMA_SUBADDR_1,0); | ||
231 | deb_irq("DMA xfer disabled\n"); | ||
183 | } | 232 | } |
184 | 233 | ||
185 | return 0; | 234 | return 0; |
@@ -198,6 +247,7 @@ static int flexcop_pci_dma_init(struct flexcop_pci *fc_pci) | |||
198 | flexcop_sram_set_dest(fc_pci->fc_dev,FC_SRAM_DEST_CAO | FC_SRAM_DEST_CAI, FC_SRAM_DEST_TARGET_DMA2); | 247 | flexcop_sram_set_dest(fc_pci->fc_dev,FC_SRAM_DEST_CAO | FC_SRAM_DEST_CAI, FC_SRAM_DEST_TARGET_DMA2); |
199 | 248 | ||
200 | fc_pci->init_state |= FC_PCI_DMA_INIT; | 249 | fc_pci->init_state |= FC_PCI_DMA_INIT; |
250 | |||
201 | goto success; | 251 | goto success; |
202 | dma1_free: | 252 | dma1_free: |
203 | flexcop_dma_free(&fc_pci->dma[0]); | 253 | flexcop_dma_free(&fc_pci->dma[0]); |
@@ -244,7 +294,7 @@ static int flexcop_pci_init(struct flexcop_pci *fc_pci) | |||
244 | 294 | ||
245 | pci_set_drvdata(fc_pci->pdev, fc_pci); | 295 | pci_set_drvdata(fc_pci->pdev, fc_pci); |
246 | 296 | ||
247 | if ((ret = request_irq(fc_pci->pdev->irq, flexcop_pci_irq, | 297 | if ((ret = request_irq(fc_pci->pdev->irq, flexcop_pci_isr, |
248 | SA_SHIRQ, DRIVER_NAME, fc_pci)) != 0) | 298 | SA_SHIRQ, DRIVER_NAME, fc_pci)) != 0) |
249 | goto err_pci_iounmap; | 299 | goto err_pci_iounmap; |
250 | 300 | ||
@@ -324,6 +374,8 @@ static int flexcop_pci_probe(struct pci_dev *pdev, const struct pci_device_id *e | |||
324 | if ((ret = flexcop_pci_dma_init(fc_pci)) != 0) | 374 | if ((ret = flexcop_pci_dma_init(fc_pci)) != 0) |
325 | goto err_fc_exit; | 375 | goto err_fc_exit; |
326 | 376 | ||
377 | INIT_WORK(&fc_pci->irq_check_work, flexcop_pci_irq_check_work, fc_pci); | ||
378 | |||
327 | goto success; | 379 | goto success; |
328 | err_fc_exit: | 380 | err_fc_exit: |
329 | flexcop_device_exit(fc); | 381 | flexcop_device_exit(fc); |
@@ -350,17 +402,17 @@ static void flexcop_pci_remove(struct pci_dev *pdev) | |||
350 | 402 | ||
351 | static struct pci_device_id flexcop_pci_tbl[] = { | 403 | static struct pci_device_id flexcop_pci_tbl[] = { |
352 | { PCI_DEVICE(0x13d0, 0x2103) }, | 404 | { PCI_DEVICE(0x13d0, 0x2103) }, |
353 | /* { PCI_DEVICE(0x13d0, 0x2200) }, PCI FlexCopIII ? */ | 405 | /* { PCI_DEVICE(0x13d0, 0x2200) }, ? */ |
354 | { }, | 406 | { }, |
355 | }; | 407 | }; |
356 | 408 | ||
357 | MODULE_DEVICE_TABLE(pci, flexcop_pci_tbl); | 409 | MODULE_DEVICE_TABLE(pci, flexcop_pci_tbl); |
358 | 410 | ||
359 | static struct pci_driver flexcop_pci_driver = { | 411 | static struct pci_driver flexcop_pci_driver = { |
360 | .name = "Technisat/B2C2 FlexCop II/IIb/III PCI", | 412 | .name = "b2c2_flexcop_pci", |
361 | .id_table = flexcop_pci_tbl, | 413 | .id_table = flexcop_pci_tbl, |
362 | .probe = flexcop_pci_probe, | 414 | .probe = flexcop_pci_probe, |
363 | .remove = flexcop_pci_remove, | 415 | .remove = flexcop_pci_remove, |
364 | }; | 416 | }; |
365 | 417 | ||
366 | static int __init flexcop_pci_module_init(void) | 418 | static int __init flexcop_pci_module_init(void) |
diff --git a/drivers/media/dvb/b2c2/flexcop-reg.h b/drivers/media/dvb/b2c2/flexcop-reg.h index 75b50f21afe6..4ae1eb5bfe98 100644 --- a/drivers/media/dvb/b2c2/flexcop-reg.h +++ b/drivers/media/dvb/b2c2/flexcop-reg.h | |||
@@ -36,555 +36,21 @@ typedef enum { | |||
36 | extern const char *flexcop_device_names[]; | 36 | extern const char *flexcop_device_names[]; |
37 | 37 | ||
38 | /* FlexCop IBI Registers */ | 38 | /* FlexCop IBI Registers */ |
39 | #if defined(__LITTLE_ENDIAN) | ||
40 | #include "flexcop_ibi_value_le.h" | ||
41 | #elif defined(__BIG_ENDIAN) | ||
42 | #include "flexcop_ibi_value_be.h" | ||
43 | #else | ||
44 | #error no endian defined | ||
45 | #endif | ||
39 | 46 | ||
40 | /* flexcop_ibi_reg - a huge union representing the register structure */ | ||
41 | typedef union { | ||
42 | u32 raw; | ||
43 | |||
44 | /* DMA 0x000 to 0x01c | ||
45 | * DMA1 0x000 to 0x00c | ||
46 | * DMA2 0x010 to 0x01c | ||
47 | */ | ||
48 | struct { | ||
49 | u32 dma_0start : 1; /* set: data will be delivered to dma1_address0 */ | ||
50 | u32 dma_0No_update : 1; /* set: dma1_cur_address will be updated, unset: no update */ | ||
51 | u32 dma_address0 :30; /* physical/virtual host memory address0 DMA */ | ||
52 | } dma_0x0; | ||
53 | |||
54 | struct { | ||
55 | u32 DMA_maxpackets : 8; /* (remapped) PCI DMA1 Packet Count Interrupt. This variable | ||
56 | is able to be read and written while bit(1) of register | ||
57 | 0x00c (remap_enable) is set. This variable represents | ||
58 | the number of packets that will be transmitted to the PCI | ||
59 | host using PCI DMA1 before an interrupt to the PCI is | ||
60 | asserted. This functionality may be enabled using bit(20) | ||
61 | of register 0x208. N=0 disables the IRQ. */ | ||
62 | u32 dma_addr_size :24; /* size of memory buffer in DWORDs (bytesize / 4) for DMA */ | ||
63 | } dma_0x4_remap; | ||
64 | |||
65 | struct { | ||
66 | u32 dma1timer : 7; /* reading PCI DMA1 timer ... when remap_enable is 0 */ | ||
67 | u32 unused : 1; | ||
68 | u32 dma_addr_size :24; | ||
69 | } dma_0x4_read; | ||
70 | |||
71 | struct { | ||
72 | u32 unused : 1; | ||
73 | u32 dmatimer : 7; /* writing PCI DMA1 timer ... when remap_enable is 0 */ | ||
74 | u32 dma_addr_size :24; | ||
75 | } dma_0x4_write; | ||
76 | |||
77 | struct { | ||
78 | u32 unused : 2; | ||
79 | u32 dma_cur_addr :30; /* current physical host memory address pointer for DMA */ | ||
80 | } dma_0x8; | ||
81 | |||
82 | struct { | ||
83 | u32 dma_1start : 1; /* set: data will be delivered to dma_address1, when dma_address0 is full */ | ||
84 | u32 remap_enable : 1; /* remap enable for 0x0x4(7:0) */ | ||
85 | u32 dma_address1 :30; /* Physical/virtual address 1 on DMA */ | ||
86 | } dma_0xc; | ||
87 | |||
88 | /* Two-wire Serial Master and Clock 0x100-0x110 */ | ||
89 | struct { | ||
90 | // u32 slave_transmitter : 1; /* ???*/ | ||
91 | u32 chipaddr : 7; /* two-line serial address of the target slave */ | ||
92 | u32 reserved1 : 1; | ||
93 | u32 baseaddr : 8; /* address of the location of the read/write operation */ | ||
94 | u32 data1_reg : 8; /* first byte in two-line serial read/write operation */ | ||
95 | u32 working_start : 1; /* when doing a write operation this indicator is 0 when ready | ||
96 | * set to 1 when doing a write operation */ | ||
97 | u32 twoWS_rw : 1; /* read/write indicator (1 = read, 0 write) */ | ||
98 | u32 total_bytes : 2; /* number of data bytes in each two-line serial transaction (0 = 1 byte, 11 = 4byte)*/ | ||
99 | u32 twoWS_port_reg : 2; /* port selection: 01 - Front End/Demod, 10 - EEPROM, 11 - Tuner */ | ||
100 | u32 no_base_addr_ack_error : 1; /* writing: write-req: frame is produced w/o baseaddr, read-req: read-cycles w/o | ||
101 | * preceding address assignment write frame | ||
102 | * ACK_ERROR = 1 when no ACK from slave in the last transaction */ | ||
103 | u32 st_done : 1; /* indicator for transaction is done */ | ||
104 | } tw_sm_c_100; | ||
105 | |||
106 | struct { | ||
107 | u32 data2_reg : 8; /* 2nd data byte */ | ||
108 | u32 data3_reg : 8; /* 3rd data byte */ | ||
109 | u32 data4_reg : 8; /* 4th data byte */ | ||
110 | u32 exlicit_stops : 1; /* when set, transactions are produced w/o trailing STOP flag, then send isolated STOP flags */ | ||
111 | u32 force_stop : 1; /* isolated stop flag */ | ||
112 | u32 unused : 6; | ||
113 | } tw_sm_c_104; | ||
114 | |||
115 | /* Clock. The register allows the FCIII to convert an incoming Master clock | ||
116 | * (MCLK) signal into a lower frequency clock through the use of a LowCounter | ||
117 | * (TLO) and a High- Counter (THI). The time counts for THI and TLO are | ||
118 | * measured in MCLK; each count represents 4 MCLK input clock cycles. | ||
119 | * | ||
120 | * The default output for port #1 is set for Front End Demod communication. (0x108) | ||
121 | * The default output for port #2 is set for EEPROM communication. (0x10c) | ||
122 | * The default output for port #3 is set for Tuner communication. (0x110) | ||
123 | */ | ||
124 | struct { | ||
125 | u32 thi1 : 6; /* Thi for port #1 (def: 100110b; 38) */ | ||
126 | u32 reserved1 : 2; | ||
127 | u32 tlo1 : 5; /* Tlo for port #1 (def: 11100b; 28) */ | ||
128 | u32 reserved2 :19; | ||
129 | } tw_sm_c_108; | ||
130 | |||
131 | struct { | ||
132 | u32 thi1 : 6; /* Thi for port #2 (def: 111001b; 57) */ | ||
133 | u32 reserved1 : 2; | ||
134 | u32 tlo1 : 5; /* Tlo for port #2 (def: 11100b; 28) */ | ||
135 | u32 reserved2 :19; | ||
136 | } tw_sm_c_10c; | ||
137 | |||
138 | struct { | ||
139 | u32 thi1 : 6; /* Thi for port #3 (def: 111001b; 57) */ | ||
140 | u32 reserved1 : 2; | ||
141 | u32 tlo1 : 5; /* Tlo for port #3 (def: 11100b; 28) */ | ||
142 | u32 reserved2 :19; | ||
143 | } tw_sm_c_110; | ||
144 | |||
145 | /* LNB Switch Frequency 0x200 | ||
146 | * Clock that creates the LNB switch tone. The default is set to have a fixed | ||
147 | * low output (not oscillating) to the LNB_CTL line. | ||
148 | */ | ||
149 | struct { | ||
150 | u32 LNB_CTLHighCount_sig :15; /* It is the number of pre-scaled clock cycles that will be low. */ | ||
151 | u32 LNB_CTLLowCount_sig :15; /* For example, to obtain a 22KHz output given a 45 Mhz Master | ||
152 | Clock signal (MCLK), set PreScalar=01 and LowCounter value to 0x1ff. */ | ||
153 | u32 LNB_CTLPrescaler_sig : 2; /* pre-scaler divides MCLK: 00 (no division), 01 by 2, 10 by 4, 11 by 12 */ | ||
154 | } lnb_switch_freq_200; | ||
155 | |||
156 | /* ACPI, Peripheral Reset, LNB Polarity | ||
157 | * ACPI power conservation mode, LNB polarity selection (low or high voltage), | ||
158 | * and peripheral reset. | ||
159 | */ | ||
160 | struct { | ||
161 | u32 ACPI1_sig : 1; /* turn of the power of tuner and LNB, not implemented in FCIII */ | ||
162 | u32 ACPI3_sig : 1; /* turn of power of the complete satelite receiver board (except FCIII) */ | ||
163 | u32 LNB_L_H_sig : 1; /* low or high voltage for LNB. (0 = low, 1 = high) */ | ||
164 | u32 Per_reset_sig : 1; /* misc. init reset (default: 1), to reset set to low and back to high */ | ||
165 | u32 reserved :20; | ||
166 | u32 Rev_N_sig_revision_hi : 4;/* 0xc in case of FCIII */ | ||
167 | u32 Rev_N_sig_reserved1 : 2; | ||
168 | u32 Rev_N_sig_caps : 1; /* if 1, FCIII has 32 PID- and MAC-filters and is capable of IP multicast */ | ||
169 | u32 Rev_N_sig_reserved2 : 1; | ||
170 | } misc_204; | ||
171 | |||
172 | /* Control and Status 0x208 to 0x21c */ | ||
173 | /* Gross enable and disable control */ | ||
174 | struct { | ||
175 | u32 Stream1_filter_sig : 1; /* Stream1 PID filtering */ | ||
176 | u32 Stream2_filter_sig : 1; /* Stream2 PID filtering */ | ||
177 | u32 PCR_filter_sig : 1; /* PCR PID filter */ | ||
178 | u32 PMT_filter_sig : 1; /* PMT PID filter */ | ||
179 | |||
180 | u32 EMM_filter_sig : 1; /* EMM PID filter */ | ||
181 | u32 ECM_filter_sig : 1; /* ECM PID filter */ | ||
182 | u32 Null_filter_sig : 1; /* Filters null packets, PID=0x1fff. */ | ||
183 | u32 Mask_filter_sig : 1; /* mask PID filter */ | ||
184 | |||
185 | u32 WAN_Enable_sig : 1; /* WAN output line through V8 memory space is activated. */ | ||
186 | u32 WAN_CA_Enable_sig : 1; /* not in FCIII */ | ||
187 | u32 CA_Enable_sig : 1; /* not in FCIII */ | ||
188 | u32 SMC_Enable_sig : 1; /* CI stream data (CAI) goes directly to the smart card intf (opposed IBI 0x600 or SC-cmd buf). */ | ||
189 | |||
190 | u32 Per_CA_Enable_sig : 1; /* not in FCIII */ | ||
191 | u32 Multi2_Enable_sig : 1; /* ? */ | ||
192 | u32 MAC_filter_Mode_sig : 1; /* (MAC_filter_enable) Globally enables MAC filters for Net PID filteres. */ | ||
193 | u32 Rcv_Data_sig : 1; /* PID filtering module enable. When this bit is a one, the PID filter will | ||
194 | examine and process packets according to all other (individual) PID | ||
195 | filtering controls. If it a zero, no packet processing of any kind will | ||
196 | take place. All data from the tuner will be thrown away. */ | ||
197 | |||
198 | u32 DMA1_IRQ_Enable_sig : 1; /* When set, a DWORD counter is enabled on PCI DMA1 that asserts the PCI | ||
199 | * interrupt after the specified count for filling the buffer. */ | ||
200 | u32 DMA1_Timer_Enable_sig : 1; /* When set, a timer is enabled on PCI DMA1 that asserts the PCI interrupt | ||
201 | after a specified amount of time. */ | ||
202 | u32 DMA2_IRQ_Enable_sig : 1; /* same as DMA1_IRQ_Enable_sig but for DMA2 */ | ||
203 | u32 DMA2_Timer_Enable_sig : 1; /* same as DMA1_Timer_Enable_sig but for DMA2 */ | ||
204 | |||
205 | u32 DMA1_Size_IRQ_Enable_sig : 1; /* When set, a packet count detector is enabled on PCI DMA1 that asserts the PCI interrupt. */ | ||
206 | u32 DMA2_Size_IRQ_Enable_sig : 1; /* When set, a packet count detector is enabled on PCI DMA2 that asserts the PCI interrupt. */ | ||
207 | u32 Mailbox_from_V8_Enable_sig: 1; /* When set, writes to the mailbox register produce an interrupt to the | ||
208 | PCI host to indicate that mailbox data is available. */ | ||
209 | |||
210 | u32 unused : 9; | ||
211 | } ctrl_208; | ||
212 | |||
213 | /* General status. When a PCI interrupt occurs, this register is read to | ||
214 | * discover the reason for the interrupt. | ||
215 | */ | ||
216 | struct { | ||
217 | u32 DMA1_IRQ_Status : 1; /* When set(1) the DMA1 counter had generated an IRQ. Read Only. */ | ||
218 | u32 DMA1_Timer_Status : 1; /* When set(1) the DMA1 timer had generated an IRQ. Read Only. */ | ||
219 | u32 DMA2_IRQ_Status : 1; /* When set(1) the DMA2 counter had generated an IRQ. Read Only. */ | ||
220 | u32 DMA2_Timer_Status : 1; /* When set(1) the DMA2 timer had generated an IRQ. Read Only. */ | ||
221 | u32 DMA1_Size_IRQ_Status : 1; /* (Read only). This register is read after an interrupt to */ | ||
222 | u32 DMA2_Size_IRQ_Status : 1; /* find out why we had an IRQ. Reading this register will clear this bit. Packet count*/ | ||
223 | u32 Mailbox_from_V8_Status_sig: 1; /* Same as above. Reading this register will clear this bit. */ | ||
224 | u32 Data_receiver_error : 1; /* 1 indicate an error in the receiver Front End (Tuner module) */ | ||
225 | u32 Continuity_error_flag : 1; /* 1 indicates a continuity error in the TS stream. */ | ||
226 | u32 LLC_SNAP_FLAG_set : 1; /* 1 indicates that the LCC_SNAP_FLAG was set. */ | ||
227 | u32 Transport_Error : 1; /* When set indicates that an unexpected packet was received. */ | ||
228 | u32 reserved :21; | ||
229 | } irq_20c; | ||
230 | |||
231 | |||
232 | /* Software reset register */ | ||
233 | struct { | ||
234 | u32 reset_blocks : 8; /* Enabled when Block_reset_enable = 0xB2 and 0x208 bits 15:8 = 0x00. | ||
235 | Each bit location represents a 0x100 block of registers. Writing | ||
236 | a one in a bit location resets that block of registers and the logic | ||
237 | that it controls. */ | ||
238 | u32 Block_reset_enable : 8; /* This variable is set to 0xB2 when the register is written. */ | ||
239 | u32 Special_controls :16; /* Asserts Reset_V8 => 0xC258; Turns on pci encryption => 0xC25A; | ||
240 | Turns off pci encryption => 0xC259 Note: pci_encryption default | ||
241 | at power-up is ON. */ | ||
242 | } sw_reset_210; | ||
243 | |||
244 | struct { | ||
245 | u32 vuart_oe_sig : 1; /* When clear, the V8 processor has sole control of the serial UART | ||
246 | (RS-232 Smart Card interface). When set, the IBI interface | ||
247 | defined by register 0x600 controls the serial UART. */ | ||
248 | u32 v2WS_oe_sig : 1; /* When clear, the V8 processor has direct control of the Two-line | ||
249 | Serial Master EEPROM target. When set, the Two-line Serial Master | ||
250 | EEPROM target interface is controlled by IBI register 0x100. */ | ||
251 | u32 halt_V8_sig : 1; /* When set, contiguous wait states are applied to the V8-space | ||
252 | bus masters. Once this signal is cleared, normal V8-space | ||
253 | operations resume. */ | ||
254 | u32 section_pkg_enable_sig: 1; /* When set, this signal enables the front end translation circuitry | ||
255 | to process section packed transport streams. */ | ||
256 | u32 s2p_sel_sig : 1; /* Serial to parallel conversion. When set, polarized transport data | ||
257 | within the FlexCop3 front end circuitry is converted from a serial | ||
258 | stream into parallel data before downstream processing otherwise | ||
259 | interprets the data. */ | ||
260 | u32 unused1 : 3; | ||
261 | u32 polarity_PS_CLK_sig: 1; /* This signal is used to invert the input polarity of the tranport | ||
262 | stream CLOCK signal before any processing occurs on the transport | ||
263 | stream within FlexCop3. */ | ||
264 | u32 polarity_PS_VALID_sig: 1; /* This signal is used to invert the input polarity of the tranport | ||
265 | stream VALID signal before any processing occurs on the transport | ||
266 | stream within FlexCop3. */ | ||
267 | u32 polarity_PS_SYNC_sig: 1; /* This signal is used to invert the input polarity of the tranport | ||
268 | stream SYNC signal before any processing occurs on the transport | ||
269 | stream within FlexCop3. */ | ||
270 | u32 polarity_PS_ERR_sig: 1; /* This signal is used to invert the input polarity of the tranport | ||
271 | stream ERROR signal before any processing occurs on the transport | ||
272 | stream within FlexCop3. */ | ||
273 | u32 unused2 :20; | ||
274 | } misc_214; | ||
275 | |||
276 | /* Mailbox from V8 to host */ | ||
277 | struct { | ||
278 | u32 Mailbox_from_V8 :32; /* When this register is written by either the V8 processor or by an | ||
279 | end host, an interrupt is generated to the PCI host to indicate | ||
280 | that mailbox data is available. Reading register 20c will clear | ||
281 | the IRQ. */ | ||
282 | } mbox_v8_to_host_218; | ||
283 | |||
284 | /* Mailbox from host to v8 Mailbox_to_V8 | ||
285 | * Mailbox_to_V8 mailbox storage register | ||
286 | * used to send messages from PCI to V8. Writing to this register will send an | ||
287 | * IRQ to the V8. Then it can read the data from here. Reading this register | ||
288 | * will clear the IRQ. If the V8 is halted and bit 31 of this register is set, | ||
289 | * then this register is used instead as a direct interface to access the | ||
290 | * V8space memory. | ||
291 | */ | ||
292 | struct { | ||
293 | u32 sysramaccess_data : 8; /* Data byte written or read from the specified address in V8 SysRAM. */ | ||
294 | u32 sysramaccess_addr :15; /* 15 bit address used to access V8 Sys-RAM. */ | ||
295 | u32 unused : 7; | ||
296 | u32 sysramaccess_write: 1; /* Write flag used to latch data into the V8 SysRAM. */ | ||
297 | u32 sysramaccess_busmuster: 1; /* Setting this bit when the V8 is halted at 0x214 Bit(2) allows | ||
298 | this IBI register interface to directly drive the V8-space memory. */ | ||
299 | } mbox_host_to_v8_21c; | ||
300 | |||
301 | |||
302 | /* PIDs, Translation Bit, SMC Filter Select 0x300 to 0x31c */ | ||
303 | struct { | ||
304 | u32 Stream1_PID :13; /* Primary use is receiving Net data, so these 13 bits normally | ||
305 | hold the PID value for the desired network stream. */ | ||
306 | u32 Stream1_trans : 1; /* When set, Net translation will take place for Net data ferried in TS packets. */ | ||
307 | u32 MAC_Multicast_filter : 1; /* When clear, multicast MAC filtering is not allowed for Stream1 and PID_n filters. */ | ||
308 | u32 debug_flag_pid_saved : 1; | ||
309 | u32 Stream2_PID :13; /* 13 bits for Stream 2 PID filter value. General use. */ | ||
310 | u32 Stream2_trans : 1; /* When set Tables/CAI translation will take place for the data ferried in | ||
311 | Stream2_PID TS packets. */ | ||
312 | u32 debug_flag_write_status00 : 1; | ||
313 | u32 debug_fifo_problem : 1; | ||
314 | } pid_filter_300; | ||
315 | |||
316 | struct { | ||
317 | u32 PCR_PID :13; /* PCR stream PID filter value. Primary use is Program Clock Reference stream filtering. */ | ||
318 | u32 PCR_trans : 1; /* When set, Tables/CAI translation will take place for these packets. */ | ||
319 | u32 debug_overrun3 : 1; | ||
320 | u32 debug_overrun2 : 1; | ||
321 | u32 PMT_PID :13; /* stream PID filter value. Primary use is Program Management Table segment filtering. */ | ||
322 | u32 PMT_trans : 1; /* When set, Tables/CAI translation will take place for these packets. */ | ||
323 | u32 reserved : 2; | ||
324 | } pid_filter_304; | ||
325 | |||
326 | struct { | ||
327 | u32 EMM_PID :13; /* EMM PID filter value. Primary use is Entitlement Management Messaging for | ||
328 | conditional access-related data. */ | ||
329 | u32 EMM_trans : 1; /* When set, Tables/CAI translation will take place for these packets. */ | ||
330 | u32 EMM_filter_4 : 1; /* When set will pass only EMM data possessing the same ID code as the | ||
331 | first four bytes (32 bits) of the end-user s 6-byte Smart Card ID number Select */ | ||
332 | u32 EMM_filter_6 : 1; /* When set will pass only EMM data possessing the same 6-byte code as the end-users | ||
333 | complete 6-byte Smart Card ID number. */ | ||
334 | u32 ECM_PID :13; /* ECM PID filter value. Primary use is Entitlement Control Messaging for conditional | ||
335 | access-related data. */ | ||
336 | u32 ECM_trans : 1; /* When set, Tables/CAI translation will take place for these packets. */ | ||
337 | u32 reserved : 2; | ||
338 | } pid_filter_308; | ||
339 | |||
340 | struct { | ||
341 | u32 Group_PID :13; /* PID value for group filtering. */ | ||
342 | u32 Group_trans : 1; /* When set, Tables/CAI translation will take place for these packets. */ | ||
343 | u32 unused1 : 2; | ||
344 | u32 Group_mask :13; /* Mask value used in logical "and" equation that defines group filtering */ | ||
345 | u32 unused2 : 3; | ||
346 | } pid_filter_30c_ext_ind_0_7; | ||
347 | |||
348 | struct { | ||
349 | u32 net_master_read :17; | ||
350 | u32 unused :15; | ||
351 | } pid_filter_30c_ext_ind_1; | ||
352 | |||
353 | struct { | ||
354 | u32 net_master_write :17; | ||
355 | u32 unused :15; | ||
356 | } pid_filter_30c_ext_ind_2; | ||
357 | |||
358 | struct { | ||
359 | u32 next_net_master_write :17; | ||
360 | u32 unused :15; | ||
361 | } pid_filter_30c_ext_ind_3; | ||
362 | |||
363 | struct { | ||
364 | u32 unused1 : 1; | ||
365 | u32 state_write :10; | ||
366 | u32 reserved1 : 6; /* default: 000100 */ | ||
367 | u32 stack_read :10; | ||
368 | u32 reserved2 : 5; /* default: 00100 */ | ||
369 | } pid_filter_30c_ext_ind_4; | ||
370 | |||
371 | struct { | ||
372 | u32 stack_cnt :10; | ||
373 | u32 unused :22; | ||
374 | } pid_filter_30c_ext_ind_5; | ||
375 | |||
376 | struct { | ||
377 | u32 pid_fsm_save_reg0 : 2; | ||
378 | u32 pid_fsm_save_reg1 : 2; | ||
379 | u32 pid_fsm_save_reg2 : 2; | ||
380 | u32 pid_fsm_save_reg3 : 2; | ||
381 | u32 pid_fsm_save_reg4 : 2; | ||
382 | u32 pid_fsm_save_reg300 : 2; | ||
383 | u32 write_status1 : 2; | ||
384 | u32 write_status4 : 2; | ||
385 | u32 data_size_reg :12; | ||
386 | u32 unused : 4; | ||
387 | } pid_filter_30c_ext_ind_6; | ||
388 | |||
389 | struct { | ||
390 | u32 index_reg : 5; /* (Index pointer) Points at an internal PIDn register. A binary code | ||
391 | representing one of 32 internal PIDn registers as well as its | ||
392 | corresponding internal MAC_lown register. */ | ||
393 | u32 extra_index_reg : 3; /* This vector is used to select between sets of debug signals routed to register 0x30c. */ | ||
394 | u32 AB_select : 1; /* Used in conjunction with 0x31c. read/write to the MAC_highA or MAC_highB register | ||
395 | 0=MAC_highB register, 1=MAC_highA */ | ||
396 | u32 pass_alltables : 1; /* 1=Net packets are not filtered against the Network Table ID found in register 0x400. | ||
397 | All types of networks (DVB, ATSC, ISDB) are passed. */ | ||
398 | u32 unused :22; | ||
399 | } index_reg_310; | ||
400 | |||
401 | struct { | ||
402 | u32 PID :13; /* PID value */ | ||
403 | u32 PID_trans : 1; /* translation will take place for packets filtered */ | ||
404 | u32 PID_enable_bit : 1; /* When set this PID filter is enabled */ | ||
405 | u32 reserved :17; | ||
406 | } pid_n_reg_314; | ||
407 | |||
408 | struct { | ||
409 | u32 A4_byte : 8; | ||
410 | u32 A5_byte : 8; | ||
411 | u32 A6_byte : 8; | ||
412 | u32 Enable_bit : 1; /* enabled (1) or disabled (1) */ | ||
413 | u32 HighAB_bit : 1; /* use MAC_highA (1) or MAC_highB (0) as MSB */ | ||
414 | u32 reserved : 6; | ||
415 | } mac_low_reg_318; | ||
416 | |||
417 | struct { | ||
418 | u32 A1_byte : 8; | ||
419 | u32 A2_byte : 8; | ||
420 | u32 A3_byte : 8; | ||
421 | u32 reserved : 8; | ||
422 | } mac_high_reg_31c; | ||
423 | |||
424 | /* Table, SMCID,MACDestination Filters 0x400 to 0x41c */ | ||
425 | struct { | ||
426 | u32 reserved :16; | ||
427 | #define fc_data_Tag_ID_DVB 0x3e | 47 | #define fc_data_Tag_ID_DVB 0x3e |
428 | #define fc_data_Tag_ID_ATSC 0x3f | 48 | #define fc_data_Tag_ID_ATSC 0x3f |
429 | #define fc_data_Tag_ID_IDSB 0x8b | 49 | #define fc_data_Tag_ID_IDSB 0x8b |
430 | u32 data_Tag_ID :16; | ||
431 | } data_tag_400; | ||
432 | |||
433 | struct { | ||
434 | u32 Card_IDbyte6 : 8; | ||
435 | u32 Card_IDbyte5 : 8; | ||
436 | u32 Card_IDbyte4 : 8; | ||
437 | u32 Card_IDbyte3 : 8; | ||
438 | } card_id_408; | ||
439 | |||
440 | struct { | ||
441 | u32 Card_IDbyte2 : 8; | ||
442 | u32 Card_IDbyte1 : 8; | ||
443 | } card_id_40c; | ||
444 | |||
445 | /* holding the unique mac address of the receiver which houses the FlexCopIII */ | ||
446 | struct { | ||
447 | u32 MAC1 : 8; | ||
448 | u32 MAC2 : 8; | ||
449 | u32 MAC3 : 8; | ||
450 | u32 MAC6 : 8; | ||
451 | } mac_address_418; | ||
452 | |||
453 | struct { | ||
454 | u32 MAC7 : 8; | ||
455 | u32 MAC8 : 8; | ||
456 | u32 reserved : 16; | ||
457 | } mac_address_41c; | ||
458 | |||
459 | struct { | ||
460 | u32 transmitter_data_byte : 8; | ||
461 | u32 ReceiveDataReady : 1; | ||
462 | u32 ReceiveByteFrameError: 1; | ||
463 | u32 txbuffempty : 1; | ||
464 | u32 reserved :21; | ||
465 | } ci_600; | ||
466 | |||
467 | struct { | ||
468 | u32 pi_d : 8; | ||
469 | u32 pi_ha :20; | ||
470 | u32 pi_rw : 1; | ||
471 | u32 pi_component_reg : 3; | ||
472 | } pi_604; | ||
473 | |||
474 | struct { | ||
475 | u32 serialReset : 1; | ||
476 | u32 oncecycle_read : 1; | ||
477 | u32 Timer_Read_req : 1; | ||
478 | u32 Timer_Load_req : 1; | ||
479 | u32 timer_data : 7; | ||
480 | u32 unused : 1; /* ??? not mentioned in data book */ | ||
481 | u32 Timer_addr : 5; | ||
482 | u32 reserved : 3; | ||
483 | u32 pcmcia_a_mod_pwr_n : 1; | ||
484 | u32 pcmcia_b_mod_pwr_n : 1; | ||
485 | u32 config_Done_stat : 1; | ||
486 | u32 config_Init_stat : 1; | ||
487 | u32 config_Prog_n : 1; | ||
488 | u32 config_wr_n : 1; | ||
489 | u32 config_cs_n : 1; | ||
490 | u32 config_cclk : 1; | ||
491 | u32 pi_CiMax_IRQ_n : 1; | ||
492 | u32 pi_timeout_status : 1; | ||
493 | u32 pi_wait_n : 1; | ||
494 | u32 pi_busy_n : 1; | ||
495 | } pi_608; | ||
496 | 50 | ||
497 | struct { | ||
498 | u32 PID :13; | ||
499 | u32 key_enable : 1; | ||
500 | #define fc_key_code_default 0x1 | 51 | #define fc_key_code_default 0x1 |
501 | #define fc_key_code_even 0x2 | 52 | #define fc_key_code_even 0x2 |
502 | #define fc_key_code_odd 0x3 | 53 | #define fc_key_code_odd 0x3 |
503 | u32 key_code : 2; | ||
504 | u32 key_array_col : 3; | ||
505 | u32 key_array_row : 5; | ||
506 | u32 dvb_en : 1; /* 0=TS bypasses the Descrambler */ | ||
507 | u32 rw_flag : 1; | ||
508 | u32 reserved : 6; | ||
509 | } dvb_reg_60c; | ||
510 | |||
511 | /* SRAM and Output Destination 0x700 to 0x714 */ | ||
512 | struct { | ||
513 | u32 sram_addr :15; | ||
514 | u32 sram_rw : 1; /* 0=write, 1=read */ | ||
515 | u32 sram_data : 8; | ||
516 | u32 sc_xfer_bit : 1; | ||
517 | u32 reserved1 : 3; | ||
518 | u32 oe_pin_reg : 1; | ||
519 | u32 ce_pin_reg : 1; | ||
520 | u32 reserved2 : 1; | ||
521 | u32 start_sram_ibi : 1; | ||
522 | } sram_ctrl_reg_700; | ||
523 | |||
524 | struct { | ||
525 | u32 net_addr_read :16; | ||
526 | u32 net_addr_write :16; | ||
527 | } net_buf_reg_704; | ||
528 | |||
529 | struct { | ||
530 | u32 cai_read :11; | ||
531 | u32 reserved1 : 5; | ||
532 | u32 cai_write :11; | ||
533 | u32 reserved2 : 6; | ||
534 | u32 cai_cnt : 4; | ||
535 | } cai_buf_reg_708; | ||
536 | |||
537 | struct { | ||
538 | u32 cao_read :11; | ||
539 | u32 reserved1 : 5; | ||
540 | u32 cap_write :11; | ||
541 | u32 reserved2 : 6; | ||
542 | u32 cao_cnt : 4; | ||
543 | } cao_buf_reg_70c; | ||
544 | |||
545 | struct { | ||
546 | u32 media_read :11; | ||
547 | u32 reserved1 : 5; | ||
548 | u32 media_write :11; | ||
549 | u32 reserved2 : 6; | ||
550 | u32 media_cnt : 4; | ||
551 | } media_buf_reg_710; | ||
552 | |||
553 | struct { | ||
554 | u32 NET_Dest : 2; | ||
555 | u32 CAI_Dest : 2; | ||
556 | u32 CAO_Dest : 2; | ||
557 | u32 MEDIA_Dest : 2; | ||
558 | u32 net_ovflow_error : 1; | ||
559 | u32 media_ovflow_error : 1; | ||
560 | u32 cai_ovflow_error : 1; | ||
561 | u32 cao_ovflow_error : 1; | ||
562 | u32 ctrl_usb_wan : 1; | ||
563 | u32 ctrl_sramdma : 1; | ||
564 | u32 ctrl_maximumfill : 1; | ||
565 | u32 reserved :17; | ||
566 | } sram_dest_reg_714; | ||
567 | |||
568 | struct { | ||
569 | u32 net_cnt :12; | ||
570 | u32 reserved1 : 4; | ||
571 | u32 net_addr_read : 1; | ||
572 | u32 reserved2 : 3; | ||
573 | u32 net_addr_write : 1; | ||
574 | u32 reserved3 :11; | ||
575 | } net_buf_reg_718; | ||
576 | |||
577 | struct { | ||
578 | u32 wan_speed_sig : 2; | ||
579 | u32 reserved1 : 6; | ||
580 | u32 wan_wait_state : 8; | ||
581 | u32 sram_chip : 2; | ||
582 | u32 sram_memmap : 2; | ||
583 | u32 reserved2 : 4; | ||
584 | u32 wan_pkt_frame : 4; | ||
585 | u32 reserved3 : 4; | ||
586 | } wan_ctrl_reg_71c; | ||
587 | } flexcop_ibi_value; | ||
588 | 54 | ||
589 | extern flexcop_ibi_value ibi_zero; | 55 | extern flexcop_ibi_value ibi_zero; |
590 | 56 | ||
diff --git a/drivers/media/dvb/b2c2/flexcop-usb.c b/drivers/media/dvb/b2c2/flexcop-usb.c index 0113449abd15..0a78ba3737a5 100644 --- a/drivers/media/dvb/b2c2/flexcop-usb.c +++ b/drivers/media/dvb/b2c2/flexcop-usb.c | |||
@@ -545,7 +545,7 @@ static struct usb_device_id flexcop_usb_table [] = { | |||
545 | /* usb specific object needed to register this driver with the usb subsystem */ | 545 | /* usb specific object needed to register this driver with the usb subsystem */ |
546 | static struct usb_driver flexcop_usb_driver = { | 546 | static struct usb_driver flexcop_usb_driver = { |
547 | .owner = THIS_MODULE, | 547 | .owner = THIS_MODULE, |
548 | .name = "Technisat/B2C2 FlexCop II/IIb/III USB", | 548 | .name = "b2c2_flexcop_usb", |
549 | .probe = flexcop_usb_probe, | 549 | .probe = flexcop_usb_probe, |
550 | .disconnect = flexcop_usb_disconnect, | 550 | .disconnect = flexcop_usb_disconnect, |
551 | .id_table = flexcop_usb_table, | 551 | .id_table = flexcop_usb_table, |
diff --git a/drivers/media/dvb/b2c2/flexcop.c b/drivers/media/dvb/b2c2/flexcop.c index 8b5d14dd36e3..12873d435406 100644 --- a/drivers/media/dvb/b2c2/flexcop.c +++ b/drivers/media/dvb/b2c2/flexcop.c | |||
@@ -46,7 +46,7 @@ | |||
46 | 46 | ||
47 | int b2c2_flexcop_debug; | 47 | int b2c2_flexcop_debug; |
48 | module_param_named(debug, b2c2_flexcop_debug, int, 0644); | 48 | module_param_named(debug, b2c2_flexcop_debug, int, 0644); |
49 | MODULE_PARM_DESC(debug, "set debug level (1=info,2=tuner,4=i2c,8=ts,16=sram (|-able))." DEBSTATUS); | 49 | MODULE_PARM_DESC(debug, "set debug level (1=info,2=tuner,4=i2c,8=ts,16=sram,32=reg (|-able))." DEBSTATUS); |
50 | #undef DEBSTATUS | 50 | #undef DEBSTATUS |
51 | 51 | ||
52 | /* global zero for ibi values */ | 52 | /* global zero for ibi values */ |
@@ -173,9 +173,20 @@ static void flexcop_reset(struct flexcop_device *fc) | |||
173 | fc->write_ibi_reg(fc,ctrl_208,ibi_zero); | 173 | fc->write_ibi_reg(fc,ctrl_208,ibi_zero); |
174 | 174 | ||
175 | v210.raw = 0; | 175 | v210.raw = 0; |
176 | v210.sw_reset_210.reset_blocks = 0xff; | 176 | v210.sw_reset_210.reset_block_000 = 1; |
177 | v210.sw_reset_210.reset_block_100 = 1; | ||
178 | v210.sw_reset_210.reset_block_200 = 1; | ||
179 | v210.sw_reset_210.reset_block_300 = 1; | ||
180 | v210.sw_reset_210.reset_block_400 = 1; | ||
181 | v210.sw_reset_210.reset_block_500 = 1; | ||
182 | v210.sw_reset_210.reset_block_600 = 1; | ||
183 | v210.sw_reset_210.reset_block_700 = 1; | ||
177 | v210.sw_reset_210.Block_reset_enable = 0xb2; | 184 | v210.sw_reset_210.Block_reset_enable = 0xb2; |
185 | |||
186 | v210.sw_reset_210.Special_controls = 0xc259; | ||
187 | |||
178 | fc->write_ibi_reg(fc,sw_reset_210,v210); | 188 | fc->write_ibi_reg(fc,sw_reset_210,v210); |
189 | msleep(1); | ||
179 | 190 | ||
180 | /* reset the periphical devices */ | 191 | /* reset the periphical devices */ |
181 | 192 | ||
@@ -186,6 +197,25 @@ static void flexcop_reset(struct flexcop_device *fc) | |||
186 | fc->write_ibi_reg(fc,misc_204,v204); | 197 | fc->write_ibi_reg(fc,misc_204,v204); |
187 | } | 198 | } |
188 | 199 | ||
200 | void flexcop_reset_block_300(struct flexcop_device *fc) | ||
201 | { | ||
202 | flexcop_ibi_value v208_save = fc->read_ibi_reg(fc,ctrl_208), | ||
203 | v210 = fc->read_ibi_reg(fc,sw_reset_210); | ||
204 | |||
205 | deb_rdump("208: %08x, 210: %08x\n",v208_save.raw,v210.raw); | ||
206 | |||
207 | fc->write_ibi_reg(fc,ctrl_208,ibi_zero); | ||
208 | |||
209 | v210.sw_reset_210.reset_block_300 = 1; | ||
210 | v210.sw_reset_210.Block_reset_enable = 0xb2; | ||
211 | |||
212 | fc->write_ibi_reg(fc,sw_reset_210,v210); | ||
213 | msleep(1); | ||
214 | |||
215 | fc->write_ibi_reg(fc,ctrl_208,v208_save); | ||
216 | } | ||
217 | EXPORT_SYMBOL(flexcop_reset_block_300); | ||
218 | |||
189 | struct flexcop_device *flexcop_device_kmalloc(size_t bus_specific_len) | 219 | struct flexcop_device *flexcop_device_kmalloc(size_t bus_specific_len) |
190 | { | 220 | { |
191 | void *bus; | 221 | void *bus; |
diff --git a/drivers/media/dvb/b2c2/flexcop.h b/drivers/media/dvb/b2c2/flexcop.h index caa343a97bdc..0cebe1d92e0b 100644 --- a/drivers/media/dvb/b2c2/flexcop.h +++ b/drivers/media/dvb/b2c2/flexcop.h | |||
@@ -26,5 +26,6 @@ extern int b2c2_flexcop_debug; | |||
26 | #define deb_i2c(args...) dprintk(0x04,args) | 26 | #define deb_i2c(args...) dprintk(0x04,args) |
27 | #define deb_ts(args...) dprintk(0x08,args) | 27 | #define deb_ts(args...) dprintk(0x08,args) |
28 | #define deb_sram(args...) dprintk(0x10,args) | 28 | #define deb_sram(args...) dprintk(0x10,args) |
29 | #define deb_rdump(args...) dprintk(0x20,args) | ||
29 | 30 | ||
30 | #endif | 31 | #endif |
diff --git a/drivers/media/dvb/b2c2/flexcop_ibi_value_be.h b/drivers/media/dvb/b2c2/flexcop_ibi_value_be.h new file mode 100644 index 000000000000..ed9a6756b194 --- /dev/null +++ b/drivers/media/dvb/b2c2/flexcop_ibi_value_be.h | |||
@@ -0,0 +1,458 @@ | |||
1 | /* This file is part of linux driver for digital TV devices equipped with B2C2 FlexcopII(b)/III | ||
2 | * | ||
3 | * register descriptions | ||
4 | * | ||
5 | * see flexcop.c for copyright information. | ||
6 | */ | ||
7 | |||
8 | /* This file is automatically generated, do not edit things here. */ | ||
9 | #ifndef __FLEXCOP_IBI_VALUE_INCLUDED__ | ||
10 | #define __FLEXCOP_IBI_VALUE_INCLUDED__ | ||
11 | |||
12 | typedef union { | ||
13 | u32 raw; | ||
14 | |||
15 | struct { | ||
16 | u32 dma_address0 :30; | ||
17 | u32 dma_0No_update : 1; | ||
18 | u32 dma_0start : 1; | ||
19 | } dma_0x0; | ||
20 | |||
21 | struct { | ||
22 | u32 dma_addr_size :24; | ||
23 | u32 DMA_maxpackets : 8; | ||
24 | } dma_0x4_remap; | ||
25 | |||
26 | struct { | ||
27 | u32 dma_addr_size :24; | ||
28 | u32 unused : 1; | ||
29 | u32 dma1timer : 7; | ||
30 | } dma_0x4_read; | ||
31 | |||
32 | struct { | ||
33 | u32 dma_addr_size :24; | ||
34 | u32 dmatimer : 7; | ||
35 | u32 unused : 1; | ||
36 | } dma_0x4_write; | ||
37 | |||
38 | struct { | ||
39 | u32 dma_cur_addr :30; | ||
40 | u32 unused : 2; | ||
41 | } dma_0x8; | ||
42 | |||
43 | struct { | ||
44 | u32 dma_address1 :30; | ||
45 | u32 remap_enable : 1; | ||
46 | u32 dma_1start : 1; | ||
47 | } dma_0xc; | ||
48 | |||
49 | struct { | ||
50 | u32 st_done : 1; | ||
51 | u32 no_base_addr_ack_error : 1; | ||
52 | u32 twoWS_port_reg : 2; | ||
53 | u32 total_bytes : 2; | ||
54 | u32 twoWS_rw : 1; | ||
55 | u32 working_start : 1; | ||
56 | u32 data1_reg : 8; | ||
57 | u32 baseaddr : 8; | ||
58 | u32 reserved1 : 1; | ||
59 | u32 chipaddr : 7; | ||
60 | } tw_sm_c_100; | ||
61 | |||
62 | struct { | ||
63 | u32 unused : 6; | ||
64 | u32 force_stop : 1; | ||
65 | u32 exlicit_stops : 1; | ||
66 | u32 data4_reg : 8; | ||
67 | u32 data3_reg : 8; | ||
68 | u32 data2_reg : 8; | ||
69 | } tw_sm_c_104; | ||
70 | |||
71 | struct { | ||
72 | u32 reserved2 :19; | ||
73 | u32 tlo1 : 5; | ||
74 | u32 reserved1 : 2; | ||
75 | u32 thi1 : 6; | ||
76 | } tw_sm_c_108; | ||
77 | |||
78 | struct { | ||
79 | u32 reserved2 :19; | ||
80 | u32 tlo1 : 5; | ||
81 | u32 reserved1 : 2; | ||
82 | u32 thi1 : 6; | ||
83 | } tw_sm_c_10c; | ||
84 | |||
85 | struct { | ||
86 | u32 reserved2 :19; | ||
87 | u32 tlo1 : 5; | ||
88 | u32 reserved1 : 2; | ||
89 | u32 thi1 : 6; | ||
90 | } tw_sm_c_110; | ||
91 | |||
92 | struct { | ||
93 | u32 LNB_CTLPrescaler_sig : 2; | ||
94 | u32 LNB_CTLLowCount_sig :15; | ||
95 | u32 LNB_CTLHighCount_sig :15; | ||
96 | } lnb_switch_freq_200; | ||
97 | |||
98 | struct { | ||
99 | u32 Rev_N_sig_reserved2 : 1; | ||
100 | u32 Rev_N_sig_caps : 1; | ||
101 | u32 Rev_N_sig_reserved1 : 2; | ||
102 | u32 Rev_N_sig_revision_hi : 4; | ||
103 | u32 reserved :20; | ||
104 | u32 Per_reset_sig : 1; | ||
105 | u32 LNB_L_H_sig : 1; | ||
106 | u32 ACPI3_sig : 1; | ||
107 | u32 ACPI1_sig : 1; | ||
108 | } misc_204; | ||
109 | |||
110 | struct { | ||
111 | u32 unused : 9; | ||
112 | u32 Mailbox_from_V8_Enable_sig : 1; | ||
113 | u32 DMA2_Size_IRQ_Enable_sig : 1; | ||
114 | u32 DMA1_Size_IRQ_Enable_sig : 1; | ||
115 | u32 DMA2_Timer_Enable_sig : 1; | ||
116 | u32 DMA2_IRQ_Enable_sig : 1; | ||
117 | u32 DMA1_Timer_Enable_sig : 1; | ||
118 | u32 DMA1_IRQ_Enable_sig : 1; | ||
119 | u32 Rcv_Data_sig : 1; | ||
120 | u32 MAC_filter_Mode_sig : 1; | ||
121 | u32 Multi2_Enable_sig : 1; | ||
122 | u32 Per_CA_Enable_sig : 1; | ||
123 | u32 SMC_Enable_sig : 1; | ||
124 | u32 CA_Enable_sig : 1; | ||
125 | u32 WAN_CA_Enable_sig : 1; | ||
126 | u32 WAN_Enable_sig : 1; | ||
127 | u32 Mask_filter_sig : 1; | ||
128 | u32 Null_filter_sig : 1; | ||
129 | u32 ECM_filter_sig : 1; | ||
130 | u32 EMM_filter_sig : 1; | ||
131 | u32 PMT_filter_sig : 1; | ||
132 | u32 PCR_filter_sig : 1; | ||
133 | u32 Stream2_filter_sig : 1; | ||
134 | u32 Stream1_filter_sig : 1; | ||
135 | } ctrl_208; | ||
136 | |||
137 | struct { | ||
138 | u32 reserved :21; | ||
139 | u32 Transport_Error : 1; | ||
140 | u32 LLC_SNAP_FLAG_set : 1; | ||
141 | u32 Continuity_error_flag : 1; | ||
142 | u32 Data_receiver_error : 1; | ||
143 | u32 Mailbox_from_V8_Status_sig : 1; | ||
144 | u32 DMA2_Size_IRQ_Status : 1; | ||
145 | u32 DMA1_Size_IRQ_Status : 1; | ||
146 | u32 DMA2_Timer_Status : 1; | ||
147 | u32 DMA2_IRQ_Status : 1; | ||
148 | u32 DMA1_Timer_Status : 1; | ||
149 | u32 DMA1_IRQ_Status : 1; | ||
150 | } irq_20c; | ||
151 | |||
152 | struct { | ||
153 | u32 Special_controls :16; | ||
154 | u32 Block_reset_enable : 8; | ||
155 | u32 reset_block_700 : 1; | ||
156 | u32 reset_block_600 : 1; | ||
157 | u32 reset_block_500 : 1; | ||
158 | u32 reset_block_400 : 1; | ||
159 | u32 reset_block_300 : 1; | ||
160 | u32 reset_block_200 : 1; | ||
161 | u32 reset_block_100 : 1; | ||
162 | u32 reset_block_000 : 1; | ||
163 | } sw_reset_210; | ||
164 | |||
165 | struct { | ||
166 | u32 unused2 :20; | ||
167 | u32 polarity_PS_ERR_sig : 1; | ||
168 | u32 polarity_PS_SYNC_sig : 1; | ||
169 | u32 polarity_PS_VALID_sig : 1; | ||
170 | u32 polarity_PS_CLK_sig : 1; | ||
171 | u32 unused1 : 3; | ||
172 | u32 s2p_sel_sig : 1; | ||
173 | u32 section_pkg_enable_sig : 1; | ||
174 | u32 halt_V8_sig : 1; | ||
175 | u32 v2WS_oe_sig : 1; | ||
176 | u32 vuart_oe_sig : 1; | ||
177 | } misc_214; | ||
178 | |||
179 | struct { | ||
180 | u32 Mailbox_from_V8 :32; | ||
181 | } mbox_v8_to_host_218; | ||
182 | |||
183 | struct { | ||
184 | u32 sysramaccess_busmuster : 1; | ||
185 | u32 sysramaccess_write : 1; | ||
186 | u32 unused : 7; | ||
187 | u32 sysramaccess_addr :15; | ||
188 | u32 sysramaccess_data : 8; | ||
189 | } mbox_host_to_v8_21c; | ||
190 | |||
191 | struct { | ||
192 | u32 debug_fifo_problem : 1; | ||
193 | u32 debug_flag_write_status00 : 1; | ||
194 | u32 Stream2_trans : 1; | ||
195 | u32 Stream2_PID :13; | ||
196 | u32 debug_flag_pid_saved : 1; | ||
197 | u32 MAC_Multicast_filter : 1; | ||
198 | u32 Stream1_trans : 1; | ||
199 | u32 Stream1_PID :13; | ||
200 | } pid_filter_300; | ||
201 | |||
202 | struct { | ||
203 | u32 reserved : 2; | ||
204 | u32 PMT_trans : 1; | ||
205 | u32 PMT_PID :13; | ||
206 | u32 debug_overrun2 : 1; | ||
207 | u32 debug_overrun3 : 1; | ||
208 | u32 PCR_trans : 1; | ||
209 | u32 PCR_PID :13; | ||
210 | } pid_filter_304; | ||
211 | |||
212 | struct { | ||
213 | u32 reserved : 2; | ||
214 | u32 ECM_trans : 1; | ||
215 | u32 ECM_PID :13; | ||
216 | u32 EMM_filter_6 : 1; | ||
217 | u32 EMM_filter_4 : 1; | ||
218 | u32 EMM_trans : 1; | ||
219 | u32 EMM_PID :13; | ||
220 | } pid_filter_308; | ||
221 | |||
222 | struct { | ||
223 | u32 unused2 : 3; | ||
224 | u32 Group_mask :13; | ||
225 | u32 unused1 : 2; | ||
226 | u32 Group_trans : 1; | ||
227 | u32 Group_PID :13; | ||
228 | } pid_filter_30c_ext_ind_0_7; | ||
229 | |||
230 | struct { | ||
231 | u32 unused :15; | ||
232 | u32 net_master_read :17; | ||
233 | } pid_filter_30c_ext_ind_1; | ||
234 | |||
235 | struct { | ||
236 | u32 unused :15; | ||
237 | u32 net_master_write :17; | ||
238 | } pid_filter_30c_ext_ind_2; | ||
239 | |||
240 | struct { | ||
241 | u32 unused :15; | ||
242 | u32 next_net_master_write :17; | ||
243 | } pid_filter_30c_ext_ind_3; | ||
244 | |||
245 | struct { | ||
246 | u32 reserved2 : 5; | ||
247 | u32 stack_read :10; | ||
248 | u32 reserved1 : 6; | ||
249 | u32 state_write :10; | ||
250 | u32 unused1 : 1; | ||
251 | } pid_filter_30c_ext_ind_4; | ||
252 | |||
253 | struct { | ||
254 | u32 unused :22; | ||
255 | u32 stack_cnt :10; | ||
256 | } pid_filter_30c_ext_ind_5; | ||
257 | |||
258 | struct { | ||
259 | u32 unused : 4; | ||
260 | u32 data_size_reg :12; | ||
261 | u32 write_status4 : 2; | ||
262 | u32 write_status1 : 2; | ||
263 | u32 pid_fsm_save_reg300 : 2; | ||
264 | u32 pid_fsm_save_reg4 : 2; | ||
265 | u32 pid_fsm_save_reg3 : 2; | ||
266 | u32 pid_fsm_save_reg2 : 2; | ||
267 | u32 pid_fsm_save_reg1 : 2; | ||
268 | u32 pid_fsm_save_reg0 : 2; | ||
269 | } pid_filter_30c_ext_ind_6; | ||
270 | |||
271 | struct { | ||
272 | u32 unused :22; | ||
273 | u32 pass_alltables : 1; | ||
274 | u32 AB_select : 1; | ||
275 | u32 extra_index_reg : 3; | ||
276 | u32 index_reg : 5; | ||
277 | } index_reg_310; | ||
278 | |||
279 | struct { | ||
280 | u32 reserved :17; | ||
281 | u32 PID_enable_bit : 1; | ||
282 | u32 PID_trans : 1; | ||
283 | u32 PID :13; | ||
284 | } pid_n_reg_314; | ||
285 | |||
286 | struct { | ||
287 | u32 reserved : 6; | ||
288 | u32 HighAB_bit : 1; | ||
289 | u32 Enable_bit : 1; | ||
290 | u32 A6_byte : 8; | ||
291 | u32 A5_byte : 8; | ||
292 | u32 A4_byte : 8; | ||
293 | } mac_low_reg_318; | ||
294 | |||
295 | struct { | ||
296 | u32 reserved : 8; | ||
297 | u32 A3_byte : 8; | ||
298 | u32 A2_byte : 8; | ||
299 | u32 A1_byte : 8; | ||
300 | } mac_high_reg_31c; | ||
301 | |||
302 | struct { | ||
303 | u32 data_Tag_ID :16; | ||
304 | u32 reserved :16; | ||
305 | } data_tag_400; | ||
306 | |||
307 | struct { | ||
308 | u32 Card_IDbyte3 : 8; | ||
309 | u32 Card_IDbyte4 : 8; | ||
310 | u32 Card_IDbyte5 : 8; | ||
311 | u32 Card_IDbyte6 : 8; | ||
312 | } card_id_408; | ||
313 | |||
314 | struct { | ||
315 | u32 Card_IDbyte1 : 8; | ||
316 | u32 Card_IDbyte2 : 8; | ||
317 | } card_id_40c; | ||
318 | |||
319 | struct { | ||
320 | u32 MAC6 : 8; | ||
321 | u32 MAC3 : 8; | ||
322 | u32 MAC2 : 8; | ||
323 | u32 MAC1 : 8; | ||
324 | } mac_address_418; | ||
325 | |||
326 | struct { | ||
327 | u32 reserved :16; | ||
328 | u32 MAC8 : 8; | ||
329 | u32 MAC7 : 8; | ||
330 | } mac_address_41c; | ||
331 | |||
332 | struct { | ||
333 | u32 reserved :21; | ||
334 | u32 txbuffempty : 1; | ||
335 | u32 ReceiveByteFrameError : 1; | ||
336 | u32 ReceiveDataReady : 1; | ||
337 | u32 transmitter_data_byte : 8; | ||
338 | } ci_600; | ||
339 | |||
340 | struct { | ||
341 | u32 pi_component_reg : 3; | ||
342 | u32 pi_rw : 1; | ||
343 | u32 pi_ha :20; | ||
344 | u32 pi_d : 8; | ||
345 | } pi_604; | ||
346 | |||
347 | struct { | ||
348 | u32 pi_busy_n : 1; | ||
349 | u32 pi_wait_n : 1; | ||
350 | u32 pi_timeout_status : 1; | ||
351 | u32 pi_CiMax_IRQ_n : 1; | ||
352 | u32 config_cclk : 1; | ||
353 | u32 config_cs_n : 1; | ||
354 | u32 config_wr_n : 1; | ||
355 | u32 config_Prog_n : 1; | ||
356 | u32 config_Init_stat : 1; | ||
357 | u32 config_Done_stat : 1; | ||
358 | u32 pcmcia_b_mod_pwr_n : 1; | ||
359 | u32 pcmcia_a_mod_pwr_n : 1; | ||
360 | u32 reserved : 3; | ||
361 | u32 Timer_addr : 5; | ||
362 | u32 unused : 1; | ||
363 | u32 timer_data : 7; | ||
364 | u32 Timer_Load_req : 1; | ||
365 | u32 Timer_Read_req : 1; | ||
366 | u32 oncecycle_read : 1; | ||
367 | u32 serialReset : 1; | ||
368 | } pi_608; | ||
369 | |||
370 | struct { | ||
371 | u32 reserved : 6; | ||
372 | u32 rw_flag : 1; | ||
373 | u32 dvb_en : 1; | ||
374 | u32 key_array_row : 5; | ||
375 | u32 key_array_col : 3; | ||
376 | u32 key_code : 2; | ||
377 | u32 key_enable : 1; | ||
378 | u32 PID :13; | ||
379 | } dvb_reg_60c; | ||
380 | |||
381 | struct { | ||
382 | u32 start_sram_ibi : 1; | ||
383 | u32 reserved2 : 1; | ||
384 | u32 ce_pin_reg : 1; | ||
385 | u32 oe_pin_reg : 1; | ||
386 | u32 reserved1 : 3; | ||
387 | u32 sc_xfer_bit : 1; | ||
388 | u32 sram_data : 8; | ||
389 | u32 sram_rw : 1; | ||
390 | u32 sram_addr :15; | ||
391 | } sram_ctrl_reg_700; | ||
392 | |||
393 | struct { | ||
394 | u32 net_addr_write :16; | ||
395 | u32 net_addr_read :16; | ||
396 | } net_buf_reg_704; | ||
397 | |||
398 | struct { | ||
399 | u32 cai_cnt : 4; | ||
400 | u32 reserved2 : 6; | ||
401 | u32 cai_write :11; | ||
402 | u32 reserved1 : 5; | ||
403 | u32 cai_read :11; | ||
404 | } cai_buf_reg_708; | ||
405 | |||
406 | struct { | ||
407 | u32 cao_cnt : 4; | ||
408 | u32 reserved2 : 6; | ||
409 | u32 cap_write :11; | ||
410 | u32 reserved1 : 5; | ||
411 | u32 cao_read :11; | ||
412 | } cao_buf_reg_70c; | ||
413 | |||
414 | struct { | ||
415 | u32 media_cnt : 4; | ||
416 | u32 reserved2 : 6; | ||
417 | u32 media_write :11; | ||
418 | u32 reserved1 : 5; | ||
419 | u32 media_read :11; | ||
420 | } media_buf_reg_710; | ||
421 | |||
422 | struct { | ||
423 | u32 reserved :17; | ||
424 | u32 ctrl_maximumfill : 1; | ||
425 | u32 ctrl_sramdma : 1; | ||
426 | u32 ctrl_usb_wan : 1; | ||
427 | u32 cao_ovflow_error : 1; | ||
428 | u32 cai_ovflow_error : 1; | ||
429 | u32 media_ovflow_error : 1; | ||
430 | u32 net_ovflow_error : 1; | ||
431 | u32 MEDIA_Dest : 2; | ||
432 | u32 CAO_Dest : 2; | ||
433 | u32 CAI_Dest : 2; | ||
434 | u32 NET_Dest : 2; | ||
435 | } sram_dest_reg_714; | ||
436 | |||
437 | struct { | ||
438 | u32 reserved3 :11; | ||
439 | u32 net_addr_write : 1; | ||
440 | u32 reserved2 : 3; | ||
441 | u32 net_addr_read : 1; | ||
442 | u32 reserved1 : 4; | ||
443 | u32 net_cnt :12; | ||
444 | } net_buf_reg_718; | ||
445 | |||
446 | struct { | ||
447 | u32 reserved3 : 4; | ||
448 | u32 wan_pkt_frame : 4; | ||
449 | u32 reserved2 : 4; | ||
450 | u32 sram_memmap : 2; | ||
451 | u32 sram_chip : 2; | ||
452 | u32 wan_wait_state : 8; | ||
453 | u32 reserved1 : 6; | ||
454 | u32 wan_speed_sig : 2; | ||
455 | } wan_ctrl_reg_71c; | ||
456 | } flexcop_ibi_value; | ||
457 | |||
458 | #endif | ||
diff --git a/drivers/media/dvb/b2c2/flexcop_ibi_value_le.h b/drivers/media/dvb/b2c2/flexcop_ibi_value_le.h new file mode 100644 index 000000000000..49f2315b6e58 --- /dev/null +++ b/drivers/media/dvb/b2c2/flexcop_ibi_value_le.h | |||
@@ -0,0 +1,458 @@ | |||
1 | /* This file is part of linux driver for digital TV devices equipped with B2C2 FlexcopII(b)/III | ||
2 | * | ||
3 | * register descriptions | ||
4 | * | ||
5 | * see flexcop.c for copyright information. | ||
6 | */ | ||
7 | |||
8 | /* This file is automatically generated, do not edit things here. */ | ||
9 | #ifndef __FLEXCOP_IBI_VALUE_INCLUDED__ | ||
10 | #define __FLEXCOP_IBI_VALUE_INCLUDED__ | ||
11 | |||
12 | typedef union { | ||
13 | u32 raw; | ||
14 | |||
15 | struct { | ||
16 | u32 dma_0start : 1; | ||
17 | u32 dma_0No_update : 1; | ||
18 | u32 dma_address0 :30; | ||
19 | } dma_0x0; | ||
20 | |||
21 | struct { | ||
22 | u32 DMA_maxpackets : 8; | ||
23 | u32 dma_addr_size :24; | ||
24 | } dma_0x4_remap; | ||
25 | |||
26 | struct { | ||
27 | u32 dma1timer : 7; | ||
28 | u32 unused : 1; | ||
29 | u32 dma_addr_size :24; | ||
30 | } dma_0x4_read; | ||
31 | |||
32 | struct { | ||
33 | u32 unused : 1; | ||
34 | u32 dmatimer : 7; | ||
35 | u32 dma_addr_size :24; | ||
36 | } dma_0x4_write; | ||
37 | |||
38 | struct { | ||
39 | u32 unused : 2; | ||
40 | u32 dma_cur_addr :30; | ||
41 | } dma_0x8; | ||
42 | |||
43 | struct { | ||
44 | u32 dma_1start : 1; | ||
45 | u32 remap_enable : 1; | ||
46 | u32 dma_address1 :30; | ||
47 | } dma_0xc; | ||
48 | |||
49 | struct { | ||
50 | u32 chipaddr : 7; | ||
51 | u32 reserved1 : 1; | ||
52 | u32 baseaddr : 8; | ||
53 | u32 data1_reg : 8; | ||
54 | u32 working_start : 1; | ||
55 | u32 twoWS_rw : 1; | ||
56 | u32 total_bytes : 2; | ||
57 | u32 twoWS_port_reg : 2; | ||
58 | u32 no_base_addr_ack_error : 1; | ||
59 | u32 st_done : 1; | ||
60 | } tw_sm_c_100; | ||
61 | |||
62 | struct { | ||
63 | u32 data2_reg : 8; | ||
64 | u32 data3_reg : 8; | ||
65 | u32 data4_reg : 8; | ||
66 | u32 exlicit_stops : 1; | ||
67 | u32 force_stop : 1; | ||
68 | u32 unused : 6; | ||
69 | } tw_sm_c_104; | ||
70 | |||
71 | struct { | ||
72 | u32 thi1 : 6; | ||
73 | u32 reserved1 : 2; | ||
74 | u32 tlo1 : 5; | ||
75 | u32 reserved2 :19; | ||
76 | } tw_sm_c_108; | ||
77 | |||
78 | struct { | ||
79 | u32 thi1 : 6; | ||
80 | u32 reserved1 : 2; | ||
81 | u32 tlo1 : 5; | ||
82 | u32 reserved2 :19; | ||
83 | } tw_sm_c_10c; | ||
84 | |||
85 | struct { | ||
86 | u32 thi1 : 6; | ||
87 | u32 reserved1 : 2; | ||
88 | u32 tlo1 : 5; | ||
89 | u32 reserved2 :19; | ||
90 | } tw_sm_c_110; | ||
91 | |||
92 | struct { | ||
93 | u32 LNB_CTLHighCount_sig :15; | ||
94 | u32 LNB_CTLLowCount_sig :15; | ||
95 | u32 LNB_CTLPrescaler_sig : 2; | ||
96 | } lnb_switch_freq_200; | ||
97 | |||
98 | struct { | ||
99 | u32 ACPI1_sig : 1; | ||
100 | u32 ACPI3_sig : 1; | ||
101 | u32 LNB_L_H_sig : 1; | ||
102 | u32 Per_reset_sig : 1; | ||
103 | u32 reserved :20; | ||
104 | u32 Rev_N_sig_revision_hi : 4; | ||
105 | u32 Rev_N_sig_reserved1 : 2; | ||
106 | u32 Rev_N_sig_caps : 1; | ||
107 | u32 Rev_N_sig_reserved2 : 1; | ||
108 | } misc_204; | ||
109 | |||
110 | struct { | ||
111 | u32 Stream1_filter_sig : 1; | ||
112 | u32 Stream2_filter_sig : 1; | ||
113 | u32 PCR_filter_sig : 1; | ||
114 | u32 PMT_filter_sig : 1; | ||
115 | u32 EMM_filter_sig : 1; | ||
116 | u32 ECM_filter_sig : 1; | ||
117 | u32 Null_filter_sig : 1; | ||
118 | u32 Mask_filter_sig : 1; | ||
119 | u32 WAN_Enable_sig : 1; | ||
120 | u32 WAN_CA_Enable_sig : 1; | ||
121 | u32 CA_Enable_sig : 1; | ||
122 | u32 SMC_Enable_sig : 1; | ||
123 | u32 Per_CA_Enable_sig : 1; | ||
124 | u32 Multi2_Enable_sig : 1; | ||
125 | u32 MAC_filter_Mode_sig : 1; | ||
126 | u32 Rcv_Data_sig : 1; | ||
127 | u32 DMA1_IRQ_Enable_sig : 1; | ||
128 | u32 DMA1_Timer_Enable_sig : 1; | ||
129 | u32 DMA2_IRQ_Enable_sig : 1; | ||
130 | u32 DMA2_Timer_Enable_sig : 1; | ||
131 | u32 DMA1_Size_IRQ_Enable_sig : 1; | ||
132 | u32 DMA2_Size_IRQ_Enable_sig : 1; | ||
133 | u32 Mailbox_from_V8_Enable_sig : 1; | ||
134 | u32 unused : 9; | ||
135 | } ctrl_208; | ||
136 | |||
137 | struct { | ||
138 | u32 DMA1_IRQ_Status : 1; | ||
139 | u32 DMA1_Timer_Status : 1; | ||
140 | u32 DMA2_IRQ_Status : 1; | ||
141 | u32 DMA2_Timer_Status : 1; | ||
142 | u32 DMA1_Size_IRQ_Status : 1; | ||
143 | u32 DMA2_Size_IRQ_Status : 1; | ||
144 | u32 Mailbox_from_V8_Status_sig : 1; | ||
145 | u32 Data_receiver_error : 1; | ||
146 | u32 Continuity_error_flag : 1; | ||
147 | u32 LLC_SNAP_FLAG_set : 1; | ||
148 | u32 Transport_Error : 1; | ||
149 | u32 reserved :21; | ||
150 | } irq_20c; | ||
151 | |||
152 | struct { | ||
153 | u32 reset_block_000 : 1; | ||
154 | u32 reset_block_100 : 1; | ||
155 | u32 reset_block_200 : 1; | ||
156 | u32 reset_block_300 : 1; | ||
157 | u32 reset_block_400 : 1; | ||
158 | u32 reset_block_500 : 1; | ||
159 | u32 reset_block_600 : 1; | ||
160 | u32 reset_block_700 : 1; | ||
161 | u32 Block_reset_enable : 8; | ||
162 | u32 Special_controls :16; | ||
163 | } sw_reset_210; | ||
164 | |||
165 | struct { | ||
166 | u32 vuart_oe_sig : 1; | ||
167 | u32 v2WS_oe_sig : 1; | ||
168 | u32 halt_V8_sig : 1; | ||
169 | u32 section_pkg_enable_sig : 1; | ||
170 | u32 s2p_sel_sig : 1; | ||
171 | u32 unused1 : 3; | ||
172 | u32 polarity_PS_CLK_sig : 1; | ||
173 | u32 polarity_PS_VALID_sig : 1; | ||
174 | u32 polarity_PS_SYNC_sig : 1; | ||
175 | u32 polarity_PS_ERR_sig : 1; | ||
176 | u32 unused2 :20; | ||
177 | } misc_214; | ||
178 | |||
179 | struct { | ||
180 | u32 Mailbox_from_V8 :32; | ||
181 | } mbox_v8_to_host_218; | ||
182 | |||
183 | struct { | ||
184 | u32 sysramaccess_data : 8; | ||
185 | u32 sysramaccess_addr :15; | ||
186 | u32 unused : 7; | ||
187 | u32 sysramaccess_write : 1; | ||
188 | u32 sysramaccess_busmuster : 1; | ||
189 | } mbox_host_to_v8_21c; | ||
190 | |||
191 | struct { | ||
192 | u32 Stream1_PID :13; | ||
193 | u32 Stream1_trans : 1; | ||
194 | u32 MAC_Multicast_filter : 1; | ||
195 | u32 debug_flag_pid_saved : 1; | ||
196 | u32 Stream2_PID :13; | ||
197 | u32 Stream2_trans : 1; | ||
198 | u32 debug_flag_write_status00 : 1; | ||
199 | u32 debug_fifo_problem : 1; | ||
200 | } pid_filter_300; | ||
201 | |||
202 | struct { | ||
203 | u32 PCR_PID :13; | ||
204 | u32 PCR_trans : 1; | ||
205 | u32 debug_overrun3 : 1; | ||
206 | u32 debug_overrun2 : 1; | ||
207 | u32 PMT_PID :13; | ||
208 | u32 PMT_trans : 1; | ||
209 | u32 reserved : 2; | ||
210 | } pid_filter_304; | ||
211 | |||
212 | struct { | ||
213 | u32 EMM_PID :13; | ||
214 | u32 EMM_trans : 1; | ||
215 | u32 EMM_filter_4 : 1; | ||
216 | u32 EMM_filter_6 : 1; | ||
217 | u32 ECM_PID :13; | ||
218 | u32 ECM_trans : 1; | ||
219 | u32 reserved : 2; | ||
220 | } pid_filter_308; | ||
221 | |||
222 | struct { | ||
223 | u32 Group_PID :13; | ||
224 | u32 Group_trans : 1; | ||
225 | u32 unused1 : 2; | ||
226 | u32 Group_mask :13; | ||
227 | u32 unused2 : 3; | ||
228 | } pid_filter_30c_ext_ind_0_7; | ||
229 | |||
230 | struct { | ||
231 | u32 net_master_read :17; | ||
232 | u32 unused :15; | ||
233 | } pid_filter_30c_ext_ind_1; | ||
234 | |||
235 | struct { | ||
236 | u32 net_master_write :17; | ||
237 | u32 unused :15; | ||
238 | } pid_filter_30c_ext_ind_2; | ||
239 | |||
240 | struct { | ||
241 | u32 next_net_master_write :17; | ||
242 | u32 unused :15; | ||
243 | } pid_filter_30c_ext_ind_3; | ||
244 | |||
245 | struct { | ||
246 | u32 unused1 : 1; | ||
247 | u32 state_write :10; | ||
248 | u32 reserved1 : 6; | ||
249 | u32 stack_read :10; | ||
250 | u32 reserved2 : 5; | ||
251 | } pid_filter_30c_ext_ind_4; | ||
252 | |||
253 | struct { | ||
254 | u32 stack_cnt :10; | ||
255 | u32 unused :22; | ||
256 | } pid_filter_30c_ext_ind_5; | ||
257 | |||
258 | struct { | ||
259 | u32 pid_fsm_save_reg0 : 2; | ||
260 | u32 pid_fsm_save_reg1 : 2; | ||
261 | u32 pid_fsm_save_reg2 : 2; | ||
262 | u32 pid_fsm_save_reg3 : 2; | ||
263 | u32 pid_fsm_save_reg4 : 2; | ||
264 | u32 pid_fsm_save_reg300 : 2; | ||
265 | u32 write_status1 : 2; | ||
266 | u32 write_status4 : 2; | ||
267 | u32 data_size_reg :12; | ||
268 | u32 unused : 4; | ||
269 | } pid_filter_30c_ext_ind_6; | ||
270 | |||
271 | struct { | ||
272 | u32 index_reg : 5; | ||
273 | u32 extra_index_reg : 3; | ||
274 | u32 AB_select : 1; | ||
275 | u32 pass_alltables : 1; | ||
276 | u32 unused :22; | ||
277 | } index_reg_310; | ||
278 | |||
279 | struct { | ||
280 | u32 PID :13; | ||
281 | u32 PID_trans : 1; | ||
282 | u32 PID_enable_bit : 1; | ||
283 | u32 reserved :17; | ||
284 | } pid_n_reg_314; | ||
285 | |||
286 | struct { | ||
287 | u32 A4_byte : 8; | ||
288 | u32 A5_byte : 8; | ||
289 | u32 A6_byte : 8; | ||
290 | u32 Enable_bit : 1; | ||
291 | u32 HighAB_bit : 1; | ||
292 | u32 reserved : 6; | ||
293 | } mac_low_reg_318; | ||
294 | |||
295 | struct { | ||
296 | u32 A1_byte : 8; | ||
297 | u32 A2_byte : 8; | ||
298 | u32 A3_byte : 8; | ||
299 | u32 reserved : 8; | ||
300 | } mac_high_reg_31c; | ||
301 | |||
302 | struct { | ||
303 | u32 reserved :16; | ||
304 | u32 data_Tag_ID :16; | ||
305 | } data_tag_400; | ||
306 | |||
307 | struct { | ||
308 | u32 Card_IDbyte6 : 8; | ||
309 | u32 Card_IDbyte5 : 8; | ||
310 | u32 Card_IDbyte4 : 8; | ||
311 | u32 Card_IDbyte3 : 8; | ||
312 | } card_id_408; | ||
313 | |||
314 | struct { | ||
315 | u32 Card_IDbyte2 : 8; | ||
316 | u32 Card_IDbyte1 : 8; | ||
317 | } card_id_40c; | ||
318 | |||
319 | struct { | ||
320 | u32 MAC1 : 8; | ||
321 | u32 MAC2 : 8; | ||
322 | u32 MAC3 : 8; | ||
323 | u32 MAC6 : 8; | ||
324 | } mac_address_418; | ||
325 | |||
326 | struct { | ||
327 | u32 MAC7 : 8; | ||
328 | u32 MAC8 : 8; | ||
329 | u32 reserved :16; | ||
330 | } mac_address_41c; | ||
331 | |||
332 | struct { | ||
333 | u32 transmitter_data_byte : 8; | ||
334 | u32 ReceiveDataReady : 1; | ||
335 | u32 ReceiveByteFrameError : 1; | ||
336 | u32 txbuffempty : 1; | ||
337 | u32 reserved :21; | ||
338 | } ci_600; | ||
339 | |||
340 | struct { | ||
341 | u32 pi_d : 8; | ||
342 | u32 pi_ha :20; | ||
343 | u32 pi_rw : 1; | ||
344 | u32 pi_component_reg : 3; | ||
345 | } pi_604; | ||
346 | |||
347 | struct { | ||
348 | u32 serialReset : 1; | ||
349 | u32 oncecycle_read : 1; | ||
350 | u32 Timer_Read_req : 1; | ||
351 | u32 Timer_Load_req : 1; | ||
352 | u32 timer_data : 7; | ||
353 | u32 unused : 1; | ||
354 | u32 Timer_addr : 5; | ||
355 | u32 reserved : 3; | ||
356 | u32 pcmcia_a_mod_pwr_n : 1; | ||
357 | u32 pcmcia_b_mod_pwr_n : 1; | ||
358 | u32 config_Done_stat : 1; | ||
359 | u32 config_Init_stat : 1; | ||
360 | u32 config_Prog_n : 1; | ||
361 | u32 config_wr_n : 1; | ||
362 | u32 config_cs_n : 1; | ||
363 | u32 config_cclk : 1; | ||
364 | u32 pi_CiMax_IRQ_n : 1; | ||
365 | u32 pi_timeout_status : 1; | ||
366 | u32 pi_wait_n : 1; | ||
367 | u32 pi_busy_n : 1; | ||
368 | } pi_608; | ||
369 | |||
370 | struct { | ||
371 | u32 PID :13; | ||
372 | u32 key_enable : 1; | ||
373 | u32 key_code : 2; | ||
374 | u32 key_array_col : 3; | ||
375 | u32 key_array_row : 5; | ||
376 | u32 dvb_en : 1; | ||
377 | u32 rw_flag : 1; | ||
378 | u32 reserved : 6; | ||
379 | } dvb_reg_60c; | ||
380 | |||
381 | struct { | ||
382 | u32 sram_addr :15; | ||
383 | u32 sram_rw : 1; | ||
384 | u32 sram_data : 8; | ||
385 | u32 sc_xfer_bit : 1; | ||
386 | u32 reserved1 : 3; | ||
387 | u32 oe_pin_reg : 1; | ||
388 | u32 ce_pin_reg : 1; | ||
389 | u32 reserved2 : 1; | ||
390 | u32 start_sram_ibi : 1; | ||
391 | } sram_ctrl_reg_700; | ||
392 | |||
393 | struct { | ||
394 | u32 net_addr_read :16; | ||
395 | u32 net_addr_write :16; | ||
396 | } net_buf_reg_704; | ||
397 | |||
398 | struct { | ||
399 | u32 cai_read :11; | ||
400 | u32 reserved1 : 5; | ||
401 | u32 cai_write :11; | ||
402 | u32 reserved2 : 6; | ||
403 | u32 cai_cnt : 4; | ||
404 | } cai_buf_reg_708; | ||
405 | |||
406 | struct { | ||
407 | u32 cao_read :11; | ||
408 | u32 reserved1 : 5; | ||
409 | u32 cap_write :11; | ||
410 | u32 reserved2 : 6; | ||
411 | u32 cao_cnt : 4; | ||
412 | } cao_buf_reg_70c; | ||
413 | |||
414 | struct { | ||
415 | u32 media_read :11; | ||
416 | u32 reserved1 : 5; | ||
417 | u32 media_write :11; | ||
418 | u32 reserved2 : 6; | ||
419 | u32 media_cnt : 4; | ||
420 | } media_buf_reg_710; | ||
421 | |||
422 | struct { | ||
423 | u32 NET_Dest : 2; | ||
424 | u32 CAI_Dest : 2; | ||
425 | u32 CAO_Dest : 2; | ||
426 | u32 MEDIA_Dest : 2; | ||
427 | u32 net_ovflow_error : 1; | ||
428 | u32 media_ovflow_error : 1; | ||
429 | u32 cai_ovflow_error : 1; | ||
430 | u32 cao_ovflow_error : 1; | ||
431 | u32 ctrl_usb_wan : 1; | ||
432 | u32 ctrl_sramdma : 1; | ||
433 | u32 ctrl_maximumfill : 1; | ||
434 | u32 reserved :17; | ||
435 | } sram_dest_reg_714; | ||
436 | |||
437 | struct { | ||
438 | u32 net_cnt :12; | ||
439 | u32 reserved1 : 4; | ||
440 | u32 net_addr_read : 1; | ||
441 | u32 reserved2 : 3; | ||
442 | u32 net_addr_write : 1; | ||
443 | u32 reserved3 :11; | ||
444 | } net_buf_reg_718; | ||
445 | |||
446 | struct { | ||
447 | u32 wan_speed_sig : 2; | ||
448 | u32 reserved1 : 6; | ||
449 | u32 wan_wait_state : 8; | ||
450 | u32 sram_chip : 2; | ||
451 | u32 sram_memmap : 2; | ||
452 | u32 reserved2 : 4; | ||
453 | u32 wan_pkt_frame : 4; | ||
454 | u32 reserved3 : 4; | ||
455 | } wan_ctrl_reg_71c; | ||
456 | } flexcop_ibi_value; | ||
457 | |||
458 | #endif | ||
diff --git a/drivers/media/dvb/b2c2/skystar2.c b/drivers/media/dvb/b2c2/skystar2.c deleted file mode 100644 index acbc4c34f72a..000000000000 --- a/drivers/media/dvb/b2c2/skystar2.c +++ /dev/null | |||
@@ -1,2644 +0,0 @@ | |||
1 | /* | ||
2 | * skystar2.c - driver for the Technisat SkyStar2 PCI DVB card | ||
3 | * based on the FlexCopII by B2C2,Inc. | ||
4 | * | ||
5 | * Copyright (C) 2003 Vadim Catana, skystar@moldova.cc | ||
6 | * | ||
7 | * FIX: DISEQC Tone Burst in flexcop_diseqc_ioctl() | ||
8 | * FIX: FULL soft DiSEqC for skystar2 (FlexCopII rev 130) VP310 equipped | ||
9 | * Vincenzo Di Massa, hawk.it at tiscalinet.it | ||
10 | * | ||
11 | * Converted to Linux coding style | ||
12 | * Misc reorganization, polishing, restyling | ||
13 | * Roberto Ragusa, skystar2-c5b8 at robertoragusa dot it | ||
14 | * | ||
15 | * Added hardware filtering support, | ||
16 | * Niklas Peinecke, peinecke at gdv.uni-hannover.de | ||
17 | * | ||
18 | * | ||
19 | * This program is free software; you can redistribute it and/or | ||
20 | * modify it under the terms of the GNU Lesser General Public License | ||
21 | * as published by the Free Software Foundation; either version 2.1 | ||
22 | * of the License, or (at your option) any later version. | ||
23 | * | ||
24 | * This program is distributed in the hope that it will be useful, | ||
25 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
26 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
27 | * GNU General Public License for more details. | ||
28 | * | ||
29 | * You should have received a copy of the GNU Lesser General Public License | ||
30 | * along with this program; if not, write to the Free Software | ||
31 | * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. | ||
32 | */ | ||
33 | |||
34 | #include <linux/module.h> | ||
35 | #include <linux/moduleparam.h> | ||
36 | #include <linux/delay.h> | ||
37 | #include <linux/pci.h> | ||
38 | #include <linux/init.h> | ||
39 | #include <linux/version.h> | ||
40 | |||
41 | #include <asm/io.h> | ||
42 | |||
43 | #include "dvb_frontend.h" | ||
44 | |||
45 | #include <linux/dvb/frontend.h> | ||
46 | #include <linux/dvb/dmx.h> | ||
47 | #include "dvb_demux.h" | ||
48 | #include "dmxdev.h" | ||
49 | #include "dvb_filter.h" | ||
50 | #include "dvbdev.h" | ||
51 | #include "demux.h" | ||
52 | #include "dvb_net.h" | ||
53 | #include "stv0299.h" | ||
54 | #include "mt352.h" | ||
55 | #include "mt312.h" | ||
56 | #include "nxt2002.h" | ||
57 | |||
58 | static int debug; | ||
59 | static int enable_hw_filters = 2; | ||
60 | |||
61 | module_param(debug, int, 0644); | ||
62 | MODULE_PARM_DESC(debug, "Set debugging level (0 = default, 1 = most messages, 2 = all messages)."); | ||
63 | module_param(enable_hw_filters, int, 0444); | ||
64 | MODULE_PARM_DESC(enable_hw_filters, "enable hardware filters: supported values: 0 (none), 1, 2"); | ||
65 | |||
66 | #define dprintk(x...) do { if (debug>=1) printk(x); } while (0) | ||
67 | #define ddprintk(x...) do { if (debug>=2) printk(x); } while (0) | ||
68 | |||
69 | #define SIZE_OF_BUF_DMA1 0x3ac00 | ||
70 | #define SIZE_OF_BUF_DMA2 0x758 | ||
71 | |||
72 | #define MAX_N_HW_FILTERS (6+32) | ||
73 | #define N_PID_SLOTS 256 | ||
74 | |||
75 | struct dmaq { | ||
76 | u32 bus_addr; | ||
77 | u32 head; | ||
78 | u32 tail; | ||
79 | u32 buffer_size; | ||
80 | u8 *buffer; | ||
81 | }; | ||
82 | |||
83 | #if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,9) | ||
84 | #define __iomem | ||
85 | #endif | ||
86 | |||
87 | struct adapter { | ||
88 | struct pci_dev *pdev; | ||
89 | |||
90 | u8 card_revision; | ||
91 | u32 b2c2_revision; | ||
92 | u32 pid_filter_max; | ||
93 | u32 mac_filter_max; | ||
94 | u32 irq; | ||
95 | void __iomem *io_mem; | ||
96 | unsigned long io_port; | ||
97 | u8 mac_addr[8]; | ||
98 | u32 dw_sram_type; | ||
99 | |||
100 | struct dvb_adapter dvb_adapter; | ||
101 | struct dvb_demux demux; | ||
102 | struct dmxdev dmxdev; | ||
103 | struct dmx_frontend hw_frontend; | ||
104 | struct dmx_frontend mem_frontend; | ||
105 | struct i2c_adapter i2c_adap; | ||
106 | struct dvb_net dvbnet; | ||
107 | |||
108 | struct semaphore i2c_sem; | ||
109 | |||
110 | struct dmaq dmaq1; | ||
111 | struct dmaq dmaq2; | ||
112 | |||
113 | u32 dma_ctrl; | ||
114 | u32 dma_status; | ||
115 | |||
116 | int capturing; | ||
117 | |||
118 | spinlock_t lock; | ||
119 | |||
120 | int useable_hw_filters; | ||
121 | u16 hw_pids[MAX_N_HW_FILTERS]; | ||
122 | u16 pid_list[N_PID_SLOTS]; | ||
123 | int pid_rc[N_PID_SLOTS]; // ref counters for the pids | ||
124 | int pid_count; | ||
125 | int whole_bandwidth_count; | ||
126 | u32 mac_filter; | ||
127 | |||
128 | struct dvb_frontend* fe; | ||
129 | int (*fe_sleep)(struct dvb_frontend* fe); | ||
130 | }; | ||
131 | |||
132 | #define write_reg_dw(adapter,reg,value) writel(value, adapter->io_mem + reg) | ||
133 | #define read_reg_dw(adapter,reg) readl(adapter->io_mem + reg) | ||
134 | |||
135 | static void write_reg_bitfield(struct adapter *adapter, u32 reg, u32 zeromask, u32 orvalue) | ||
136 | { | ||
137 | u32 tmp; | ||
138 | |||
139 | tmp = read_reg_dw(adapter, reg); | ||
140 | tmp = (tmp & ~zeromask) | orvalue; | ||
141 | write_reg_dw(adapter, reg, tmp); | ||
142 | } | ||
143 | |||
144 | /* i2c functions */ | ||
145 | static int i2c_main_write_for_flex2(struct adapter *adapter, u32 command, u8 *buf, int retries) | ||
146 | { | ||
147 | int i; | ||
148 | u32 value; | ||
149 | |||
150 | write_reg_dw(adapter, 0x100, 0); | ||
151 | write_reg_dw(adapter, 0x100, command); | ||
152 | |||
153 | for (i = 0; i < retries; i++) { | ||
154 | value = read_reg_dw(adapter, 0x100); | ||
155 | |||
156 | if ((value & 0x40000000) == 0) { | ||
157 | if ((value & 0x81000000) == 0x80000000) { | ||
158 | if (buf != 0) | ||
159 | *buf = (value >> 0x10) & 0xff; | ||
160 | |||
161 | return 1; | ||
162 | } | ||
163 | } else { | ||
164 | write_reg_dw(adapter, 0x100, 0); | ||
165 | write_reg_dw(adapter, 0x100, command); | ||
166 | } | ||
167 | } | ||
168 | |||
169 | return 0; | ||
170 | } | ||
171 | |||
172 | /* device = 0x10000000 for tuner, 0x20000000 for eeprom */ | ||
173 | static void i2c_main_setup(u32 device, u32 chip_addr, u8 op, u8 addr, u32 value, u32 len, u32 *command) | ||
174 | { | ||
175 | *command = device | ((len - 1) << 26) | (value << 16) | (addr << 8) | chip_addr; | ||
176 | |||
177 | if (op != 0) | ||
178 | *command = *command | 0x03000000; | ||
179 | else | ||
180 | *command = *command | 0x01000000; | ||
181 | } | ||
182 | |||
183 | static int flex_i2c_read4(struct adapter *adapter, u32 device, u32 chip_addr, u16 addr, u8 *buf, u8 len) | ||
184 | { | ||
185 | u32 command; | ||
186 | u32 value; | ||
187 | |||
188 | int result, i; | ||
189 | |||
190 | i2c_main_setup(device, chip_addr, 1, addr, 0, len, &command); | ||
191 | |||
192 | result = i2c_main_write_for_flex2(adapter, command, buf, 100000); | ||
193 | |||
194 | if ((result & 0xff) != 0) { | ||
195 | if (len > 1) { | ||
196 | value = read_reg_dw(adapter, 0x104); | ||
197 | |||
198 | for (i = 1; i < len; i++) { | ||
199 | buf[i] = value & 0xff; | ||
200 | value = value >> 8; | ||
201 | } | ||
202 | } | ||
203 | } | ||
204 | |||
205 | return result; | ||
206 | } | ||
207 | |||
208 | static int flex_i2c_write4(struct adapter *adapter, u32 device, u32 chip_addr, u32 addr, u8 *buf, u8 len) | ||
209 | { | ||
210 | u32 command; | ||
211 | u32 value; | ||
212 | int i; | ||
213 | |||
214 | if (len > 1) { | ||
215 | value = 0; | ||
216 | |||
217 | for (i = len; i > 1; i--) { | ||
218 | value = value << 8; | ||
219 | value = value | buf[i - 1]; | ||
220 | } | ||
221 | |||
222 | write_reg_dw(adapter, 0x104, value); | ||
223 | } | ||
224 | |||
225 | i2c_main_setup(device, chip_addr, 0, addr, buf[0], len, &command); | ||
226 | |||
227 | return i2c_main_write_for_flex2(adapter, command, NULL, 100000); | ||
228 | } | ||
229 | |||
230 | static void fixchipaddr(u32 device, u32 bus, u32 addr, u32 *ret) | ||
231 | { | ||
232 | if (device == 0x20000000) | ||
233 | *ret = bus | ((addr >> 8) & 3); | ||
234 | else | ||
235 | *ret = bus; | ||
236 | } | ||
237 | |||
238 | static u32 flex_i2c_read(struct adapter *adapter, u32 device, u32 bus, u32 addr, u8 *buf, u32 len) | ||
239 | { | ||
240 | u32 chipaddr; | ||
241 | u32 bytes_to_transfer; | ||
242 | u8 *start; | ||
243 | |||
244 | ddprintk("%s:\n", __FUNCTION__); | ||
245 | |||
246 | start = buf; | ||
247 | |||
248 | while (len != 0) { | ||
249 | bytes_to_transfer = len; | ||
250 | |||
251 | if (bytes_to_transfer > 4) | ||
252 | bytes_to_transfer = 4; | ||
253 | |||
254 | fixchipaddr(device, bus, addr, &chipaddr); | ||
255 | |||
256 | if (flex_i2c_read4(adapter, device, chipaddr, addr, buf, bytes_to_transfer) == 0) | ||
257 | return buf - start; | ||
258 | |||
259 | buf = buf + bytes_to_transfer; | ||
260 | addr = addr + bytes_to_transfer; | ||
261 | len = len - bytes_to_transfer; | ||
262 | }; | ||
263 | |||
264 | return buf - start; | ||
265 | } | ||
266 | |||
267 | static u32 flex_i2c_write(struct adapter *adapter, u32 device, u32 bus, u32 addr, u8 *buf, u32 len) | ||
268 | { | ||
269 | u32 chipaddr; | ||
270 | u32 bytes_to_transfer; | ||
271 | u8 *start; | ||
272 | |||
273 | ddprintk("%s:\n", __FUNCTION__); | ||
274 | |||
275 | start = buf; | ||
276 | |||
277 | while (len != 0) { | ||
278 | bytes_to_transfer = len; | ||
279 | |||
280 | if (bytes_to_transfer > 4) | ||
281 | bytes_to_transfer = 4; | ||
282 | |||
283 | fixchipaddr(device, bus, addr, &chipaddr); | ||
284 | |||
285 | if (flex_i2c_write4(adapter, device, chipaddr, addr, buf, bytes_to_transfer) == 0) | ||
286 | return buf - start; | ||
287 | |||
288 | buf = buf + bytes_to_transfer; | ||
289 | addr = addr + bytes_to_transfer; | ||
290 | len = len - bytes_to_transfer; | ||
291 | } | ||
292 | |||
293 | return buf - start; | ||
294 | } | ||
295 | |||
296 | static int master_xfer(struct i2c_adapter* adapter, struct i2c_msg *msgs, int num) | ||
297 | { | ||
298 | struct adapter *tmp = i2c_get_adapdata(adapter); | ||
299 | int i, ret = 0; | ||
300 | |||
301 | if (down_interruptible(&tmp->i2c_sem)) | ||
302 | return -ERESTARTSYS; | ||
303 | |||
304 | ddprintk("%s: %d messages to transfer\n", __FUNCTION__, num); | ||
305 | |||
306 | for (i = 0; i < num; i++) { | ||
307 | ddprintk("message %d: flags=0x%x, addr=0x%x, buf=0x%x, len=%d \n", i, | ||
308 | msgs[i].flags, msgs[i].addr, msgs[i].buf[0], msgs[i].len); | ||
309 | } | ||
310 | |||
311 | // read command | ||
312 | if ((num == 2) && (msgs[0].flags == 0) && (msgs[1].flags == I2C_M_RD) && (msgs[0].buf != NULL) && (msgs[1].buf != NULL)) { | ||
313 | |||
314 | ret = flex_i2c_read(tmp, 0x10000000, msgs[0].addr, msgs[0].buf[0], msgs[1].buf, msgs[1].len); | ||
315 | |||
316 | up(&tmp->i2c_sem); | ||
317 | |||
318 | if (ret != msgs[1].len) { | ||
319 | dprintk("%s: read error !\n", __FUNCTION__); | ||
320 | |||
321 | for (i = 0; i < 2; i++) { | ||
322 | dprintk("message %d: flags=0x%x, addr=0x%x, buf=0x%x, len=%d \n", i, | ||
323 | msgs[i].flags, msgs[i].addr, msgs[i].buf[0], msgs[i].len); | ||
324 | } | ||
325 | |||
326 | return -EREMOTEIO; | ||
327 | } | ||
328 | |||
329 | return num; | ||
330 | } | ||
331 | // write command | ||
332 | for (i = 0; i < num; i++) { | ||
333 | |||
334 | if ((msgs[i].flags != 0) || (msgs[i].buf == NULL) || (msgs[i].len < 2)) | ||
335 | return -EINVAL; | ||
336 | |||
337 | ret = flex_i2c_write(tmp, 0x10000000, msgs[i].addr, msgs[i].buf[0], &msgs[i].buf[1], msgs[i].len - 1); | ||
338 | |||
339 | up(&tmp->i2c_sem); | ||
340 | |||
341 | if (ret != msgs[0].len - 1) { | ||
342 | dprintk("%s: write error %i !\n", __FUNCTION__, ret); | ||
343 | |||
344 | dprintk("message %d: flags=0x%x, addr=0x%x, buf[0]=0x%x, len=%d \n", i, | ||
345 | msgs[i].flags, msgs[i].addr, msgs[i].buf[0], msgs[i].len); | ||
346 | |||
347 | return -EREMOTEIO; | ||
348 | } | ||
349 | |||
350 | return num; | ||
351 | } | ||
352 | |||
353 | printk("%s: unknown command format !\n", __FUNCTION__); | ||
354 | |||
355 | return -EINVAL; | ||
356 | } | ||
357 | |||
358 | /* SRAM (Skystar2 rev2.3 has one "ISSI IS61LV256" chip on board, | ||
359 | but it seems that FlexCopII can work with more than one chip) */ | ||
360 | static void sram_set_net_dest(struct adapter *adapter, u8 dest) | ||
361 | { | ||
362 | u32 tmp; | ||
363 | |||
364 | udelay(1000); | ||
365 | |||
366 | tmp = (read_reg_dw(adapter, 0x714) & 0xfffffffc) | (dest & 3); | ||
367 | |||
368 | udelay(1000); | ||
369 | |||
370 | write_reg_dw(adapter, 0x714, tmp); | ||
371 | write_reg_dw(adapter, 0x714, tmp); | ||
372 | |||
373 | udelay(1000); | ||
374 | |||
375 | /* return value is never used? */ | ||
376 | /* return tmp; */ | ||
377 | } | ||
378 | |||
379 | static void sram_set_cai_dest(struct adapter *adapter, u8 dest) | ||
380 | { | ||
381 | u32 tmp; | ||
382 | |||
383 | udelay(1000); | ||
384 | |||
385 | tmp = (read_reg_dw(adapter, 0x714) & 0xfffffff3) | ((dest & 3) << 2); | ||
386 | |||
387 | udelay(1000); | ||
388 | udelay(1000); | ||
389 | |||
390 | write_reg_dw(adapter, 0x714, tmp); | ||
391 | write_reg_dw(adapter, 0x714, tmp); | ||
392 | |||
393 | udelay(1000); | ||
394 | |||
395 | /* return value is never used? */ | ||
396 | /* return tmp; */ | ||
397 | } | ||
398 | |||
399 | static void sram_set_cao_dest(struct adapter *adapter, u8 dest) | ||
400 | { | ||
401 | u32 tmp; | ||
402 | |||
403 | udelay(1000); | ||
404 | |||
405 | tmp = (read_reg_dw(adapter, 0x714) & 0xffffffcf) | ((dest & 3) << 4); | ||
406 | |||
407 | udelay(1000); | ||
408 | udelay(1000); | ||
409 | |||
410 | write_reg_dw(adapter, 0x714, tmp); | ||
411 | write_reg_dw(adapter, 0x714, tmp); | ||
412 | |||
413 | udelay(1000); | ||
414 | |||
415 | /* return value is never used? */ | ||
416 | /* return tmp; */ | ||
417 | } | ||
418 | |||
419 | static void sram_set_media_dest(struct adapter *adapter, u8 dest) | ||
420 | { | ||
421 | u32 tmp; | ||
422 | |||
423 | udelay(1000); | ||
424 | |||
425 | tmp = (read_reg_dw(adapter, 0x714) & 0xffffff3f) | ((dest & 3) << 6); | ||
426 | |||
427 | udelay(1000); | ||
428 | udelay(1000); | ||
429 | |||
430 | write_reg_dw(adapter, 0x714, tmp); | ||
431 | write_reg_dw(adapter, 0x714, tmp); | ||
432 | |||
433 | udelay(1000); | ||
434 | |||
435 | /* return value is never used? */ | ||
436 | /* return tmp; */ | ||
437 | } | ||
438 | |||
439 | /* SRAM memory is accessed through a buffer register in the FlexCop | ||
440 | chip (0x700). This register has the following structure: | ||
441 | bits 0-14 : address | ||
442 | bit 15 : read/write flag | ||
443 | bits 16-23 : 8-bit word to write | ||
444 | bits 24-27 : = 4 | ||
445 | bits 28-29 : memory bank selector | ||
446 | bit 31 : busy flag | ||
447 | */ | ||
448 | static void flex_sram_write(struct adapter *adapter, u32 bank, u32 addr, u8 *buf, u32 len) | ||
449 | { | ||
450 | int i, retries; | ||
451 | u32 command; | ||
452 | |||
453 | for (i = 0; i < len; i++) { | ||
454 | command = bank | addr | 0x04000000 | (*buf << 0x10); | ||
455 | |||
456 | retries = 2; | ||
457 | |||
458 | while (((read_reg_dw(adapter, 0x700) & 0x80000000) != 0) && (retries > 0)) { | ||
459 | mdelay(1); | ||
460 | retries--; | ||
461 | }; | ||
462 | |||
463 | if (retries == 0) | ||
464 | printk("%s: SRAM timeout\n", __FUNCTION__); | ||
465 | |||
466 | write_reg_dw(adapter, 0x700, command); | ||
467 | |||
468 | buf++; | ||
469 | addr++; | ||
470 | } | ||
471 | } | ||
472 | |||
473 | static void flex_sram_read(struct adapter *adapter, u32 bank, u32 addr, u8 *buf, u32 len) | ||
474 | { | ||
475 | int i, retries; | ||
476 | u32 command, value; | ||
477 | |||
478 | for (i = 0; i < len; i++) { | ||
479 | command = bank | addr | 0x04008000; | ||
480 | |||
481 | retries = 10000; | ||
482 | |||
483 | while (((read_reg_dw(adapter, 0x700) & 0x80000000) != 0) && (retries > 0)) { | ||
484 | mdelay(1); | ||
485 | retries--; | ||
486 | }; | ||
487 | |||
488 | if (retries == 0) | ||
489 | printk("%s: SRAM timeout\n", __FUNCTION__); | ||
490 | |||
491 | write_reg_dw(adapter, 0x700, command); | ||
492 | |||
493 | retries = 10000; | ||
494 | |||
495 | while (((read_reg_dw(adapter, 0x700) & 0x80000000) != 0) && (retries > 0)) { | ||
496 | mdelay(1); | ||
497 | retries--; | ||
498 | }; | ||
499 | |||
500 | if (retries == 0) | ||
501 | printk("%s: SRAM timeout\n", __FUNCTION__); | ||
502 | |||
503 | value = read_reg_dw(adapter, 0x700) >> 0x10; | ||
504 | |||
505 | *buf = (value & 0xff); | ||
506 | |||
507 | addr++; | ||
508 | buf++; | ||
509 | } | ||
510 | } | ||
511 | |||
512 | static void sram_write_chunk(struct adapter *adapter, u32 addr, u8 *buf, u16 len) | ||
513 | { | ||
514 | u32 bank; | ||
515 | |||
516 | bank = 0; | ||
517 | |||
518 | if (adapter->dw_sram_type == 0x20000) { | ||
519 | bank = (addr & 0x18000) << 0x0d; | ||
520 | } | ||
521 | |||
522 | if (adapter->dw_sram_type == 0x00000) { | ||
523 | if ((addr >> 0x0f) == 0) | ||
524 | bank = 0x20000000; | ||
525 | else | ||
526 | bank = 0x10000000; | ||
527 | } | ||
528 | |||
529 | flex_sram_write(adapter, bank, addr & 0x7fff, buf, len); | ||
530 | } | ||
531 | |||
532 | static void sram_read_chunk(struct adapter *adapter, u32 addr, u8 *buf, u16 len) | ||
533 | { | ||
534 | u32 bank; | ||
535 | |||
536 | bank = 0; | ||
537 | |||
538 | if (adapter->dw_sram_type == 0x20000) { | ||
539 | bank = (addr & 0x18000) << 0x0d; | ||
540 | } | ||
541 | |||
542 | if (adapter->dw_sram_type == 0x00000) { | ||
543 | if ((addr >> 0x0f) == 0) | ||
544 | bank = 0x20000000; | ||
545 | else | ||
546 | bank = 0x10000000; | ||
547 | } | ||
548 | |||
549 | flex_sram_read(adapter, bank, addr & 0x7fff, buf, len); | ||
550 | } | ||
551 | |||
552 | static void sram_read(struct adapter *adapter, u32 addr, u8 *buf, u32 len) | ||
553 | { | ||
554 | u32 length; | ||
555 | |||
556 | while (len != 0) { | ||
557 | length = len; | ||
558 | |||
559 | // check if the address range belongs to the same | ||
560 | // 32K memory chip. If not, the data is read from | ||
561 | // one chip at a time. | ||
562 | if ((addr >> 0x0f) != ((addr + len - 1) >> 0x0f)) { | ||
563 | length = (((addr >> 0x0f) + 1) << 0x0f) - addr; | ||
564 | } | ||
565 | |||
566 | sram_read_chunk(adapter, addr, buf, length); | ||
567 | |||
568 | addr = addr + length; | ||
569 | buf = buf + length; | ||
570 | len = len - length; | ||
571 | } | ||
572 | } | ||
573 | |||
574 | static void sram_write(struct adapter *adapter, u32 addr, u8 *buf, u32 len) | ||
575 | { | ||
576 | u32 length; | ||
577 | |||
578 | while (len != 0) { | ||
579 | length = len; | ||
580 | |||
581 | // check if the address range belongs to the same | ||
582 | // 32K memory chip. If not, the data is written to | ||
583 | // one chip at a time. | ||
584 | if ((addr >> 0x0f) != ((addr + len - 1) >> 0x0f)) { | ||
585 | length = (((addr >> 0x0f) + 1) << 0x0f) - addr; | ||
586 | } | ||
587 | |||
588 | sram_write_chunk(adapter, addr, buf, length); | ||
589 | |||
590 | addr = addr + length; | ||
591 | buf = buf + length; | ||
592 | len = len - length; | ||
593 | } | ||
594 | } | ||
595 | |||
596 | static void sram_set_size(struct adapter *adapter, u32 mask) | ||
597 | { | ||
598 | write_reg_dw(adapter, 0x71c, (mask | (~0x30000 & read_reg_dw(adapter, 0x71c)))); | ||
599 | } | ||
600 | |||
601 | static void sram_init(struct adapter *adapter) | ||
602 | { | ||
603 | u32 tmp; | ||
604 | |||
605 | tmp = read_reg_dw(adapter, 0x71c); | ||
606 | |||
607 | write_reg_dw(adapter, 0x71c, 1); | ||
608 | |||
609 | if (read_reg_dw(adapter, 0x71c) != 0) { | ||
610 | write_reg_dw(adapter, 0x71c, tmp); | ||
611 | |||
612 | adapter->dw_sram_type = tmp & 0x30000; | ||
613 | |||
614 | ddprintk("%s: dw_sram_type = %x\n", __FUNCTION__, adapter->dw_sram_type); | ||
615 | |||
616 | } else { | ||
617 | |||
618 | adapter->dw_sram_type = 0x10000; | ||
619 | |||
620 | ddprintk("%s: dw_sram_type = %x\n", __FUNCTION__, adapter->dw_sram_type); | ||
621 | } | ||
622 | |||
623 | /* return value is never used? */ | ||
624 | /* return adapter->dw_sram_type; */ | ||
625 | } | ||
626 | |||
627 | static int sram_test_location(struct adapter *adapter, u32 mask, u32 addr) | ||
628 | { | ||
629 | u8 tmp1, tmp2; | ||
630 | |||
631 | dprintk("%s: mask = %x, addr = %x\n", __FUNCTION__, mask, addr); | ||
632 | |||
633 | sram_set_size(adapter, mask); | ||
634 | sram_init(adapter); | ||
635 | |||
636 | tmp2 = 0xa5; | ||
637 | tmp1 = 0x4f; | ||
638 | |||
639 | sram_write(adapter, addr, &tmp2, 1); | ||
640 | sram_write(adapter, addr + 4, &tmp1, 1); | ||
641 | |||
642 | tmp2 = 0; | ||
643 | |||
644 | mdelay(20); | ||
645 | |||
646 | sram_read(adapter, addr, &tmp2, 1); | ||
647 | sram_read(adapter, addr, &tmp2, 1); | ||
648 | |||
649 | dprintk("%s: wrote 0xa5, read 0x%2x\n", __FUNCTION__, tmp2); | ||
650 | |||
651 | if (tmp2 != 0xa5) | ||
652 | return 0; | ||
653 | |||
654 | tmp2 = 0x5a; | ||
655 | tmp1 = 0xf4; | ||
656 | |||
657 | sram_write(adapter, addr, &tmp2, 1); | ||
658 | sram_write(adapter, addr + 4, &tmp1, 1); | ||
659 | |||
660 | tmp2 = 0; | ||
661 | |||
662 | mdelay(20); | ||
663 | |||
664 | sram_read(adapter, addr, &tmp2, 1); | ||
665 | sram_read(adapter, addr, &tmp2, 1); | ||
666 | |||
667 | dprintk("%s: wrote 0x5a, read 0x%2x\n", __FUNCTION__, tmp2); | ||
668 | |||
669 | if (tmp2 != 0x5a) | ||
670 | return 0; | ||
671 | |||
672 | return 1; | ||
673 | } | ||
674 | |||
675 | static u32 sram_length(struct adapter *adapter) | ||
676 | { | ||
677 | if (adapter->dw_sram_type == 0x10000) | ||
678 | return 32768; // 32K | ||
679 | if (adapter->dw_sram_type == 0x00000) | ||
680 | return 65536; // 64K | ||
681 | if (adapter->dw_sram_type == 0x20000) | ||
682 | return 131072; // 128K | ||
683 | |||
684 | return 32768; // 32K | ||
685 | } | ||
686 | |||
687 | /* FlexcopII can work with 32K, 64K or 128K of external SRAM memory. | ||
688 | - for 128K there are 4x32K chips at bank 0,1,2,3. | ||
689 | - for 64K there are 2x32K chips at bank 1,2. | ||
690 | - for 32K there is one 32K chip at bank 0. | ||
691 | |||
692 | FlexCop works only with one bank at a time. The bank is selected | ||
693 | by bits 28-29 of the 0x700 register. | ||
694 | |||
695 | bank 0 covers addresses 0x00000-0x07fff | ||
696 | bank 1 covers addresses 0x08000-0x0ffff | ||
697 | bank 2 covers addresses 0x10000-0x17fff | ||
698 | bank 3 covers addresses 0x18000-0x1ffff | ||
699 | */ | ||
700 | static int sram_detect_for_flex2(struct adapter *adapter) | ||
701 | { | ||
702 | u32 tmp, tmp2, tmp3; | ||
703 | |||
704 | dprintk("%s:\n", __FUNCTION__); | ||
705 | |||
706 | tmp = read_reg_dw(adapter, 0x208); | ||
707 | write_reg_dw(adapter, 0x208, 0); | ||
708 | |||
709 | tmp2 = read_reg_dw(adapter, 0x71c); | ||
710 | |||
711 | dprintk("%s: tmp2 = %x\n", __FUNCTION__, tmp2); | ||
712 | |||
713 | write_reg_dw(adapter, 0x71c, 1); | ||
714 | |||
715 | tmp3 = read_reg_dw(adapter, 0x71c); | ||
716 | |||
717 | dprintk("%s: tmp3 = %x\n", __FUNCTION__, tmp3); | ||
718 | |||
719 | write_reg_dw(adapter, 0x71c, tmp2); | ||
720 | |||
721 | // check for internal SRAM ??? | ||
722 | tmp3--; | ||
723 | if (tmp3 != 0) { | ||
724 | sram_set_size(adapter, 0x10000); | ||
725 | sram_init(adapter); | ||
726 | write_reg_dw(adapter, 0x208, tmp); | ||
727 | |||
728 | dprintk("%s: sram size = 32K\n", __FUNCTION__); | ||
729 | |||
730 | return 32; | ||
731 | } | ||
732 | |||
733 | if (sram_test_location(adapter, 0x20000, 0x18000) != 0) { | ||
734 | sram_set_size(adapter, 0x20000); | ||
735 | sram_init(adapter); | ||
736 | write_reg_dw(adapter, 0x208, tmp); | ||
737 | |||
738 | dprintk("%s: sram size = 128K\n", __FUNCTION__); | ||
739 | |||
740 | return 128; | ||
741 | } | ||
742 | |||
743 | if (sram_test_location(adapter, 0x00000, 0x10000) != 0) { | ||
744 | sram_set_size(adapter, 0x00000); | ||
745 | sram_init(adapter); | ||
746 | write_reg_dw(adapter, 0x208, tmp); | ||
747 | |||
748 | dprintk("%s: sram size = 64K\n", __FUNCTION__); | ||
749 | |||
750 | return 64; | ||
751 | } | ||
752 | |||
753 | if (sram_test_location(adapter, 0x10000, 0x00000) != 0) { | ||
754 | sram_set_size(adapter, 0x10000); | ||
755 | sram_init(adapter); | ||
756 | write_reg_dw(adapter, 0x208, tmp); | ||
757 | |||
758 | dprintk("%s: sram size = 32K\n", __FUNCTION__); | ||
759 | |||
760 | return 32; | ||
761 | } | ||
762 | |||
763 | sram_set_size(adapter, 0x10000); | ||
764 | sram_init(adapter); | ||
765 | write_reg_dw(adapter, 0x208, tmp); | ||
766 | |||
767 | dprintk("%s: SRAM detection failed. Set to 32K \n", __FUNCTION__); | ||
768 | |||
769 | return 0; | ||
770 | } | ||
771 | |||
772 | static void sll_detect_sram_size(struct adapter *adapter) | ||
773 | { | ||
774 | sram_detect_for_flex2(adapter); | ||
775 | } | ||
776 | |||
777 | /* EEPROM (Skystar2 has one "24LC08B" chip on board) */ | ||
778 | /* | ||
779 | static int eeprom_write(struct adapter *adapter, u16 addr, u8 *buf, u16 len) | ||
780 | { | ||
781 | return flex_i2c_write(adapter, 0x20000000, 0x50, addr, buf, len); | ||
782 | } | ||
783 | */ | ||
784 | |||
785 | static int eeprom_read(struct adapter *adapter, u16 addr, u8 *buf, u16 len) | ||
786 | { | ||
787 | return flex_i2c_read(adapter, 0x20000000, 0x50, addr, buf, len); | ||
788 | } | ||
789 | |||
790 | static u8 calc_lrc(u8 *buf, int len) | ||
791 | { | ||
792 | int i; | ||
793 | u8 sum; | ||
794 | |||
795 | sum = 0; | ||
796 | |||
797 | for (i = 0; i < len; i++) | ||
798 | sum = sum ^ buf[i]; | ||
799 | |||
800 | return sum; | ||
801 | } | ||
802 | |||
803 | static int eeprom_lrc_read(struct adapter *adapter, u32 addr, u32 len, u8 *buf, int retries) | ||
804 | { | ||
805 | int i; | ||
806 | |||
807 | for (i = 0; i < retries; i++) { | ||
808 | if (eeprom_read(adapter, addr, buf, len) == len) { | ||
809 | if (calc_lrc(buf, len - 1) == buf[len - 1]) | ||
810 | return 1; | ||
811 | } | ||
812 | } | ||
813 | |||
814 | return 0; | ||
815 | } | ||
816 | |||
817 | /* | ||
818 | static int eeprom_lrc_write(struct adapter *adapter, u32 addr, u32 len, u8 *wbuf, u8 *rbuf, int retries) | ||
819 | { | ||
820 | int i; | ||
821 | |||
822 | for (i = 0; i < retries; i++) { | ||
823 | if (eeprom_write(adapter, addr, wbuf, len) == len) { | ||
824 | if (eeprom_lrc_read(adapter, addr, len, rbuf, retries) == 1) | ||
825 | return 1; | ||
826 | } | ||
827 | } | ||
828 | |||
829 | return 0; | ||
830 | } | ||
831 | */ | ||
832 | |||
833 | |||
834 | /* These functions could be used to unlock SkyStar2 cards. */ | ||
835 | |||
836 | /* | ||
837 | static int eeprom_writeKey(struct adapter *adapter, u8 *key, u32 len) | ||
838 | { | ||
839 | u8 rbuf[20]; | ||
840 | u8 wbuf[20]; | ||
841 | |||
842 | if (len != 16) | ||
843 | return 0; | ||
844 | |||
845 | memcpy(wbuf, key, len); | ||
846 | |||
847 | wbuf[16] = 0; | ||
848 | wbuf[17] = 0; | ||
849 | wbuf[18] = 0; | ||
850 | wbuf[19] = calc_lrc(wbuf, 19); | ||
851 | |||
852 | return eeprom_lrc_write(adapter, 0x3e4, 20, wbuf, rbuf, 4); | ||
853 | } | ||
854 | |||
855 | static int eeprom_readKey(struct adapter *adapter, u8 *key, u32 len) | ||
856 | { | ||
857 | u8 buf[20]; | ||
858 | |||
859 | if (len != 16) | ||
860 | return 0; | ||
861 | |||
862 | if (eeprom_lrc_read(adapter, 0x3e4, 20, buf, 4) == 0) | ||
863 | return 0; | ||
864 | |||
865 | memcpy(key, buf, len); | ||
866 | |||
867 | return 1; | ||
868 | } | ||
869 | */ | ||
870 | |||
871 | static int eeprom_get_mac_addr(struct adapter *adapter, char type, u8 *mac) | ||
872 | { | ||
873 | u8 tmp[8]; | ||
874 | |||
875 | if (eeprom_lrc_read(adapter, 0x3f8, 8, tmp, 4) != 0) { | ||
876 | if (type != 0) { | ||
877 | mac[0] = tmp[0]; | ||
878 | mac[1] = tmp[1]; | ||
879 | mac[2] = tmp[2]; | ||
880 | mac[3] = 0xfe; | ||
881 | mac[4] = 0xff; | ||
882 | mac[5] = tmp[3]; | ||
883 | mac[6] = tmp[4]; | ||
884 | mac[7] = tmp[5]; | ||
885 | |||
886 | } else { | ||
887 | |||
888 | mac[0] = tmp[0]; | ||
889 | mac[1] = tmp[1]; | ||
890 | mac[2] = tmp[2]; | ||
891 | mac[3] = tmp[3]; | ||
892 | mac[4] = tmp[4]; | ||
893 | mac[5] = tmp[5]; | ||
894 | } | ||
895 | |||
896 | return 1; | ||
897 | |||
898 | } else { | ||
899 | |||
900 | if (type == 0) { | ||
901 | memset(mac, 0, 6); | ||
902 | |||
903 | } else { | ||
904 | |||
905 | memset(mac, 0, 8); | ||
906 | } | ||
907 | |||
908 | return 0; | ||
909 | } | ||
910 | } | ||
911 | |||
912 | /* | ||
913 | static char eeprom_set_mac_addr(struct adapter *adapter, char type, u8 *mac) | ||
914 | { | ||
915 | u8 tmp[8]; | ||
916 | |||
917 | if (type != 0) { | ||
918 | tmp[0] = mac[0]; | ||
919 | tmp[1] = mac[1]; | ||
920 | tmp[2] = mac[2]; | ||
921 | tmp[3] = mac[5]; | ||
922 | tmp[4] = mac[6]; | ||
923 | tmp[5] = mac[7]; | ||
924 | |||
925 | } else { | ||
926 | |||
927 | tmp[0] = mac[0]; | ||
928 | tmp[1] = mac[1]; | ||
929 | tmp[2] = mac[2]; | ||
930 | tmp[3] = mac[3]; | ||
931 | tmp[4] = mac[4]; | ||
932 | tmp[5] = mac[5]; | ||
933 | } | ||
934 | |||
935 | tmp[6] = 0; | ||
936 | tmp[7] = calc_lrc(tmp, 7); | ||
937 | |||
938 | if (eeprom_write(adapter, 0x3f8, tmp, 8) == 8) | ||
939 | return 1; | ||
940 | |||
941 | return 0; | ||
942 | } | ||
943 | */ | ||
944 | |||
945 | /* PID filter */ | ||
946 | |||
947 | /* every flexcop has 6 "lower" hw PID filters */ | ||
948 | /* these are enabled by setting bits 0-5 of 0x208 */ | ||
949 | /* for the 32 additional filters we have to select one */ | ||
950 | /* of them through 0x310 and modify through 0x314 */ | ||
951 | /* op: 0=disable, 1=enable */ | ||
952 | static void filter_enable_hw_filter(struct adapter *adapter, int id, u8 op) | ||
953 | { | ||
954 | dprintk("%s: id=%d op=%d\n", __FUNCTION__, id, op); | ||
955 | if (id <= 5) { | ||
956 | u32 mask = (0x00000001 << id); | ||
957 | write_reg_bitfield(adapter, 0x208, mask, op ? mask : 0); | ||
958 | } else { | ||
959 | /* select */ | ||
960 | write_reg_bitfield(adapter, 0x310, 0x1f, (id - 6) & 0x1f); | ||
961 | /* modify */ | ||
962 | write_reg_bitfield(adapter, 0x314, 0x00006000, op ? 0x00004000 : 0); | ||
963 | } | ||
964 | } | ||
965 | |||
966 | /* this sets the PID that should pass the specified filter */ | ||
967 | static void pid_set_hw_pid(struct adapter *adapter, int id, u16 pid) | ||
968 | { | ||
969 | dprintk("%s: id=%d pid=%d\n", __FUNCTION__, id, pid); | ||
970 | if (id <= 5) { | ||
971 | u32 adr = 0x300 + ((id & 6) << 1); | ||
972 | int shift = (id & 1) ? 16 : 0; | ||
973 | dprintk("%s: id=%d addr=%x %c pid=%d\n", __FUNCTION__, id, adr, (id & 1) ? 'h' : 'l', pid); | ||
974 | write_reg_bitfield(adapter, adr, (0x7fff) << shift, (pid & 0x1fff) << shift); | ||
975 | } else { | ||
976 | /* select */ | ||
977 | write_reg_bitfield(adapter, 0x310, 0x1f, (id - 6) & 0x1f); | ||
978 | /* modify */ | ||
979 | write_reg_bitfield(adapter, 0x314, 0x1fff, pid & 0x1fff); | ||
980 | } | ||
981 | } | ||
982 | |||
983 | |||
984 | /* | ||
985 | static void filter_enable_null_filter(struct adapter *adapter, u32 op) | ||
986 | { | ||
987 | dprintk("%s: op=%x\n", __FUNCTION__, op); | ||
988 | |||
989 | write_reg_bitfield(adapter, 0x208, 0x00000040, op?0x00000040:0); | ||
990 | } | ||
991 | */ | ||
992 | |||
993 | static void filter_enable_mask_filter(struct adapter *adapter, u32 op) | ||
994 | { | ||
995 | dprintk("%s: op=%x\n", __FUNCTION__, op); | ||
996 | |||
997 | write_reg_bitfield(adapter, 0x208, 0x00000080, op ? 0x00000080 : 0); | ||
998 | } | ||
999 | |||
1000 | |||
1001 | static void ctrl_enable_mac(struct adapter *adapter, u32 op) | ||
1002 | { | ||
1003 | write_reg_bitfield(adapter, 0x208, 0x00004000, op ? 0x00004000 : 0); | ||
1004 | } | ||
1005 | |||
1006 | static int ca_set_mac_dst_addr_filter(struct adapter *adapter, u8 *mac) | ||
1007 | { | ||
1008 | u32 tmp1, tmp2; | ||
1009 | |||
1010 | tmp1 = (mac[3] << 0x18) | (mac[2] << 0x10) | (mac[1] << 0x08) | mac[0]; | ||
1011 | tmp2 = (mac[5] << 0x08) | mac[4]; | ||
1012 | |||
1013 | write_reg_dw(adapter, 0x418, tmp1); | ||
1014 | write_reg_dw(adapter, 0x41c, tmp2); | ||
1015 | |||
1016 | return 0; | ||
1017 | } | ||
1018 | |||
1019 | /* | ||
1020 | static void set_ignore_mac_filter(struct adapter *adapter, u8 op) | ||
1021 | { | ||
1022 | if (op != 0) { | ||
1023 | write_reg_bitfield(adapter, 0x208, 0x00004000, 0); | ||
1024 | adapter->mac_filter = 1; | ||
1025 | } else { | ||
1026 | if (adapter->mac_filter != 0) { | ||
1027 | adapter->mac_filter = 0; | ||
1028 | write_reg_bitfield(adapter, 0x208, 0x00004000, 0x00004000); | ||
1029 | } | ||
1030 | } | ||
1031 | } | ||
1032 | */ | ||
1033 | |||
1034 | /* | ||
1035 | static void check_null_filter_enable(struct adapter *adapter) | ||
1036 | { | ||
1037 | filter_enable_null_filter(adapter, 1); | ||
1038 | filter_enable_mask_filter(adapter, 1); | ||
1039 | } | ||
1040 | */ | ||
1041 | |||
1042 | static void pid_set_group_pid(struct adapter *adapter, u16 pid) | ||
1043 | { | ||
1044 | u32 value; | ||
1045 | |||
1046 | dprintk("%s: pid=%x\n", __FUNCTION__, pid); | ||
1047 | value = (pid & 0x3fff) | (read_reg_dw(adapter, 0x30c) & 0xffff0000); | ||
1048 | write_reg_dw(adapter, 0x30c, value); | ||
1049 | } | ||
1050 | |||
1051 | static void pid_set_group_mask(struct adapter *adapter, u16 pid) | ||
1052 | { | ||
1053 | u32 value; | ||
1054 | |||
1055 | dprintk("%s: pid=%x\n", __FUNCTION__, pid); | ||
1056 | value = ((pid & 0x3fff) << 0x10) | (read_reg_dw(adapter, 0x30c) & 0xffff); | ||
1057 | write_reg_dw(adapter, 0x30c, value); | ||
1058 | } | ||
1059 | |||
1060 | /* | ||
1061 | static int pid_get_group_pid(struct adapter *adapter) | ||
1062 | { | ||
1063 | return read_reg_dw(adapter, 0x30c) & 0x00001fff; | ||
1064 | } | ||
1065 | |||
1066 | static int pid_get_group_mask(struct adapter *adapter) | ||
1067 | { | ||
1068 | return (read_reg_dw(adapter, 0x30c) >> 0x10)& 0x00001fff; | ||
1069 | } | ||
1070 | */ | ||
1071 | |||
1072 | /* | ||
1073 | static void reset_hardware_pid_filter(struct adapter *adapter) | ||
1074 | { | ||
1075 | pid_set_stream1_pid(adapter, 0x1fff); | ||
1076 | |||
1077 | pid_set_stream2_pid(adapter, 0x1fff); | ||
1078 | filter_enable_stream2_filter(adapter, 0); | ||
1079 | |||
1080 | pid_set_pcr_pid(adapter, 0x1fff); | ||
1081 | filter_enable_pcr_filter(adapter, 0); | ||
1082 | |||
1083 | pid_set_pmt_pid(adapter, 0x1fff); | ||
1084 | filter_enable_pmt_filter(adapter, 0); | ||
1085 | |||
1086 | pid_set_ecm_pid(adapter, 0x1fff); | ||
1087 | filter_enable_ecm_filter(adapter, 0); | ||
1088 | |||
1089 | pid_set_emm_pid(adapter, 0x1fff); | ||
1090 | filter_enable_emm_filter(adapter, 0); | ||
1091 | } | ||
1092 | */ | ||
1093 | |||
1094 | static void init_pids(struct adapter *adapter) | ||
1095 | { | ||
1096 | int i; | ||
1097 | |||
1098 | adapter->pid_count = 0; | ||
1099 | adapter->whole_bandwidth_count = 0; | ||
1100 | for (i = 0; i < adapter->useable_hw_filters; i++) { | ||
1101 | dprintk("%s: setting filter %d to 0x1fff\n", __FUNCTION__, i); | ||
1102 | adapter->hw_pids[i] = 0x1fff; | ||
1103 | pid_set_hw_pid(adapter, i, 0x1fff); | ||
1104 | } | ||
1105 | |||
1106 | pid_set_group_pid(adapter, 0); | ||
1107 | pid_set_group_mask(adapter, 0x1fe0); | ||
1108 | } | ||
1109 | |||
1110 | static void open_whole_bandwidth(struct adapter *adapter) | ||
1111 | { | ||
1112 | dprintk("%s:\n", __FUNCTION__); | ||
1113 | pid_set_group_pid(adapter, 0); | ||
1114 | pid_set_group_mask(adapter, 0); | ||
1115 | /* | ||
1116 | filter_enable_mask_filter(adapter, 1); | ||
1117 | */ | ||
1118 | } | ||
1119 | |||
1120 | static void close_whole_bandwidth(struct adapter *adapter) | ||
1121 | { | ||
1122 | dprintk("%s:\n", __FUNCTION__); | ||
1123 | pid_set_group_pid(adapter, 0); | ||
1124 | pid_set_group_mask(adapter, 0x1fe0); | ||
1125 | /* | ||
1126 | filter_enable_mask_filter(adapter, 1); | ||
1127 | */ | ||
1128 | } | ||
1129 | |||
1130 | static void whole_bandwidth_inc(struct adapter *adapter) | ||
1131 | { | ||
1132 | if (adapter->whole_bandwidth_count++ == 0) | ||
1133 | open_whole_bandwidth(adapter); | ||
1134 | } | ||
1135 | |||
1136 | static void whole_bandwidth_dec(struct adapter *adapter) | ||
1137 | { | ||
1138 | if (--adapter->whole_bandwidth_count <= 0) | ||
1139 | close_whole_bandwidth(adapter); | ||
1140 | } | ||
1141 | |||
1142 | /* The specified PID has to be let through the | ||
1143 | hw filters. | ||
1144 | We try to allocate an hardware filter and open whole | ||
1145 | bandwidth when allocation is impossible. | ||
1146 | All pids<=0x1f pass through the group filter. | ||
1147 | Returns 1 on success, -1 on error */ | ||
1148 | static int add_hw_pid(struct adapter *adapter, u16 pid) | ||
1149 | { | ||
1150 | int i; | ||
1151 | |||
1152 | dprintk("%s: pid=%d\n", __FUNCTION__, pid); | ||
1153 | |||
1154 | if (pid <= 0x1f) | ||
1155 | return 1; | ||
1156 | |||
1157 | /* we can't use a filter for 0x2000, so no search */ | ||
1158 | if (pid != 0x2000) { | ||
1159 | /* find an unused hardware filter */ | ||
1160 | for (i = 0; i < adapter->useable_hw_filters; i++) { | ||
1161 | dprintk("%s: pid=%d searching slot=%d\n", __FUNCTION__, pid, i); | ||
1162 | if (adapter->hw_pids[i] == 0x1fff) { | ||
1163 | dprintk("%s: pid=%d slot=%d\n", __FUNCTION__, pid, i); | ||
1164 | adapter->hw_pids[i] = pid; | ||
1165 | pid_set_hw_pid(adapter, i, pid); | ||
1166 | filter_enable_hw_filter(adapter, i, 1); | ||
1167 | return 1; | ||
1168 | } | ||
1169 | } | ||
1170 | } | ||
1171 | /* if we have not used a filter, this pid depends on whole bandwidth */ | ||
1172 | dprintk("%s: pid=%d whole_bandwidth\n", __FUNCTION__, pid); | ||
1173 | whole_bandwidth_inc(adapter); | ||
1174 | return 1; | ||
1175 | } | ||
1176 | |||
1177 | /* returns -1 if the pid was not present in the filters */ | ||
1178 | static int remove_hw_pid(struct adapter *adapter, u16 pid) | ||
1179 | { | ||
1180 | int i; | ||
1181 | |||
1182 | dprintk("%s: pid=%d\n", __FUNCTION__, pid); | ||
1183 | |||
1184 | if (pid <= 0x1f) | ||
1185 | return 1; | ||
1186 | |||
1187 | /* we can't use a filter for 0x2000, so no search */ | ||
1188 | if (pid != 0x2000) { | ||
1189 | for (i = 0; i < adapter->useable_hw_filters; i++) { | ||
1190 | dprintk("%s: pid=%d searching slot=%d\n", __FUNCTION__, pid, i); | ||
1191 | if (adapter->hw_pids[i] == pid) { // find the pid slot | ||
1192 | dprintk("%s: pid=%d slot=%d\n", __FUNCTION__, pid, i); | ||
1193 | adapter->hw_pids[i] = 0x1fff; | ||
1194 | pid_set_hw_pid(adapter, i, 0x1fff); | ||
1195 | filter_enable_hw_filter(adapter, i, 0); | ||
1196 | return 1; | ||
1197 | } | ||
1198 | } | ||
1199 | } | ||
1200 | /* if we have not used a filter, this pid depended on whole bandwith */ | ||
1201 | dprintk("%s: pid=%d whole_bandwidth\n", __FUNCTION__, pid); | ||
1202 | whole_bandwidth_dec(adapter); | ||
1203 | return 1; | ||
1204 | } | ||
1205 | |||
1206 | /* Adds a PID to the filters. | ||
1207 | Adding a pid more than once is possible, we keep reference counts. | ||
1208 | Whole stream available through pid==0x2000. | ||
1209 | Returns 1 on success, -1 on error */ | ||
1210 | static int add_pid(struct adapter *adapter, u16 pid) | ||
1211 | { | ||
1212 | int i; | ||
1213 | |||
1214 | dprintk("%s: pid=%d\n", __FUNCTION__, pid); | ||
1215 | |||
1216 | if (pid > 0x1ffe && pid != 0x2000) | ||
1217 | return -1; | ||
1218 | |||
1219 | // check if the pid is already present | ||
1220 | for (i = 0; i < adapter->pid_count; i++) | ||
1221 | if (adapter->pid_list[i] == pid) { | ||
1222 | adapter->pid_rc[i]++; // increment ref counter | ||
1223 | return 1; | ||
1224 | } | ||
1225 | |||
1226 | if (adapter->pid_count == N_PID_SLOTS) | ||
1227 | return -1; // no more pids can be added | ||
1228 | adapter->pid_list[adapter->pid_count] = pid; // register pid | ||
1229 | adapter->pid_rc[adapter->pid_count] = 1; | ||
1230 | adapter->pid_count++; | ||
1231 | // hardware setting | ||
1232 | add_hw_pid(adapter, pid); | ||
1233 | |||
1234 | return 1; | ||
1235 | } | ||
1236 | |||
1237 | /* Removes a PID from the filters. */ | ||
1238 | static int remove_pid(struct adapter *adapter, u16 pid) | ||
1239 | { | ||
1240 | int i; | ||
1241 | |||
1242 | dprintk("%s: pid=%d\n", __FUNCTION__, pid); | ||
1243 | |||
1244 | if (pid > 0x1ffe && pid != 0x2000) | ||
1245 | return -1; | ||
1246 | |||
1247 | // check if the pid is present (it must be!) | ||
1248 | for (i = 0; i < adapter->pid_count; i++) { | ||
1249 | if (adapter->pid_list[i] == pid) { | ||
1250 | adapter->pid_rc[i]--; | ||
1251 | if (adapter->pid_rc[i] <= 0) { | ||
1252 | // remove from the list | ||
1253 | adapter->pid_count--; | ||
1254 | adapter->pid_list[i]=adapter->pid_list[adapter->pid_count]; | ||
1255 | adapter->pid_rc[i] = adapter->pid_rc[adapter->pid_count]; | ||
1256 | // hardware setting | ||
1257 | remove_hw_pid(adapter, pid); | ||
1258 | } | ||
1259 | return 1; | ||
1260 | } | ||
1261 | } | ||
1262 | |||
1263 | return -1; | ||
1264 | } | ||
1265 | |||
1266 | |||
1267 | /* dma & irq */ | ||
1268 | static void ctrl_enable_smc(struct adapter *adapter, u32 op) | ||
1269 | { | ||
1270 | write_reg_bitfield(adapter, 0x208, 0x00000800, op ? 0x00000800 : 0); | ||
1271 | } | ||
1272 | |||
1273 | static void dma_enable_disable_irq(struct adapter *adapter, u32 flag1, u32 flag2, u32 flag3) | ||
1274 | { | ||
1275 | adapter->dma_ctrl = adapter->dma_ctrl & 0x000f0000; | ||
1276 | |||
1277 | if (flag1 == 0) { | ||
1278 | if (flag2 == 0) | ||
1279 | adapter->dma_ctrl = adapter->dma_ctrl & ~0x00010000; | ||
1280 | else | ||
1281 | adapter->dma_ctrl = adapter->dma_ctrl | 0x00010000; | ||
1282 | |||
1283 | if (flag3 == 0) | ||
1284 | adapter->dma_ctrl = adapter->dma_ctrl & ~0x00020000; | ||
1285 | else | ||
1286 | adapter->dma_ctrl = adapter->dma_ctrl | 0x00020000; | ||
1287 | |||
1288 | } else { | ||
1289 | |||
1290 | if (flag2 == 0) | ||
1291 | adapter->dma_ctrl = adapter->dma_ctrl & ~0x00040000; | ||
1292 | else | ||
1293 | adapter->dma_ctrl = adapter->dma_ctrl | 0x00040000; | ||
1294 | |||
1295 | if (flag3 == 0) | ||
1296 | adapter->dma_ctrl = adapter->dma_ctrl & ~0x00080000; | ||
1297 | else | ||
1298 | adapter->dma_ctrl = adapter->dma_ctrl | 0x00080000; | ||
1299 | } | ||
1300 | } | ||
1301 | |||
1302 | static void irq_dma_enable_disable_irq(struct adapter *adapter, u32 op) | ||
1303 | { | ||
1304 | u32 value; | ||
1305 | |||
1306 | value = read_reg_dw(adapter, 0x208) & 0xfff0ffff; | ||
1307 | |||
1308 | if (op != 0) | ||
1309 | value = value | (adapter->dma_ctrl & 0x000f0000); | ||
1310 | |||
1311 | write_reg_dw(adapter, 0x208, value); | ||
1312 | } | ||
1313 | |||
1314 | /* FlexCopII has 2 dma channels. DMA1 is used to transfer TS data to | ||
1315 | system memory. | ||
1316 | |||
1317 | The DMA1 buffer is divided in 2 subbuffers of equal size. | ||
1318 | FlexCopII will transfer TS data to one subbuffer, signal an interrupt | ||
1319 | when the subbuffer is full and continue fillig the second subbuffer. | ||
1320 | |||
1321 | For DMA1: | ||
1322 | subbuffer size in 32-bit words is stored in the first 24 bits of | ||
1323 | register 0x004. The last 8 bits of register 0x004 contain the number | ||
1324 | of subbuffers. | ||
1325 | |||
1326 | the first 30 bits of register 0x000 contain the address of the first | ||
1327 | subbuffer. The last 2 bits contain 0, when dma1 is disabled and 1, | ||
1328 | when dma1 is enabled. | ||
1329 | |||
1330 | the first 30 bits of register 0x00c contain the address of the second | ||
1331 | subbuffer. the last 2 bits contain 1. | ||
1332 | |||
1333 | register 0x008 will contain the address of the subbuffer that was filled | ||
1334 | with TS data, when FlexCopII will generate an interrupt. | ||
1335 | |||
1336 | For DMA2: | ||
1337 | subbuffer size in 32-bit words is stored in the first 24 bits of | ||
1338 | register 0x014. The last 8 bits of register 0x014 contain the number | ||
1339 | of subbuffers. | ||
1340 | |||
1341 | the first 30 bits of register 0x010 contain the address of the first | ||
1342 | subbuffer. The last 2 bits contain 0, when dma1 is disabled and 1, | ||
1343 | when dma1 is enabled. | ||
1344 | |||
1345 | the first 30 bits of register 0x01c contain the address of the second | ||
1346 | subbuffer. the last 2 bits contain 1. | ||
1347 | |||
1348 | register 0x018 contains the address of the subbuffer that was filled | ||
1349 | with TS data, when FlexCopII generates an interrupt. | ||
1350 | */ | ||
1351 | static int dma_init_dma(struct adapter *adapter, u32 dma_channel) | ||
1352 | { | ||
1353 | u32 subbuffers, subbufsize, subbuf0, subbuf1; | ||
1354 | |||
1355 | if (dma_channel == 0) { | ||
1356 | dprintk("%s: Initializing DMA1 channel\n", __FUNCTION__); | ||
1357 | |||
1358 | subbuffers = 2; | ||
1359 | |||
1360 | subbufsize = (((adapter->dmaq1.buffer_size / 2) / 4) << 8) | subbuffers; | ||
1361 | |||
1362 | subbuf0 = adapter->dmaq1.bus_addr & 0xfffffffc; | ||
1363 | |||
1364 | subbuf1 = ((adapter->dmaq1.bus_addr + adapter->dmaq1.buffer_size / 2) & 0xfffffffc) | 1; | ||
1365 | |||
1366 | dprintk("%s: first subbuffer address = 0x%x\n", __FUNCTION__, subbuf0); | ||
1367 | udelay(1000); | ||
1368 | write_reg_dw(adapter, 0x000, subbuf0); | ||
1369 | |||
1370 | dprintk("%s: subbuffer size = 0x%x\n", __FUNCTION__, (subbufsize >> 8) * 4); | ||
1371 | udelay(1000); | ||
1372 | write_reg_dw(adapter, 0x004, subbufsize); | ||
1373 | |||
1374 | dprintk("%s: second subbuffer address = 0x%x\n", __FUNCTION__, subbuf1); | ||
1375 | udelay(1000); | ||
1376 | write_reg_dw(adapter, 0x00c, subbuf1); | ||
1377 | |||
1378 | dprintk("%s: counter = 0x%x\n", __FUNCTION__, adapter->dmaq1.bus_addr & 0xfffffffc); | ||
1379 | write_reg_dw(adapter, 0x008, adapter->dmaq1.bus_addr & 0xfffffffc); | ||
1380 | udelay(1000); | ||
1381 | |||
1382 | dma_enable_disable_irq(adapter, 0, 1, subbuffers ? 1 : 0); | ||
1383 | |||
1384 | irq_dma_enable_disable_irq(adapter, 1); | ||
1385 | |||
1386 | sram_set_media_dest(adapter, 1); | ||
1387 | sram_set_net_dest(adapter, 1); | ||
1388 | sram_set_cai_dest(adapter, 2); | ||
1389 | sram_set_cao_dest(adapter, 2); | ||
1390 | } | ||
1391 | |||
1392 | if (dma_channel == 1) { | ||
1393 | dprintk("%s: Initializing DMA2 channel\n", __FUNCTION__); | ||
1394 | |||
1395 | subbuffers = 2; | ||
1396 | |||
1397 | subbufsize = (((adapter->dmaq2.buffer_size / 2) / 4) << 8) | subbuffers; | ||
1398 | |||
1399 | subbuf0 = adapter->dmaq2.bus_addr & 0xfffffffc; | ||
1400 | |||
1401 | subbuf1 = ((adapter->dmaq2.bus_addr + adapter->dmaq2.buffer_size / 2) & 0xfffffffc) | 1; | ||
1402 | |||
1403 | dprintk("%s: first subbuffer address = 0x%x\n", __FUNCTION__, subbuf0); | ||
1404 | udelay(1000); | ||
1405 | write_reg_dw(adapter, 0x010, subbuf0); | ||
1406 | |||
1407 | dprintk("%s: subbuffer size = 0x%x\n", __FUNCTION__, (subbufsize >> 8) * 4); | ||
1408 | udelay(1000); | ||
1409 | write_reg_dw(adapter, 0x014, subbufsize); | ||
1410 | |||
1411 | dprintk("%s: second buffer address = 0x%x\n", __FUNCTION__, subbuf1); | ||
1412 | udelay(1000); | ||
1413 | write_reg_dw(adapter, 0x01c, subbuf1); | ||
1414 | |||
1415 | sram_set_cai_dest(adapter, 2); | ||
1416 | } | ||
1417 | |||
1418 | return 0; | ||
1419 | } | ||
1420 | |||
1421 | static void ctrl_enable_receive_data(struct adapter *adapter, u32 op) | ||
1422 | { | ||
1423 | if (op == 0) { | ||
1424 | write_reg_bitfield(adapter, 0x208, 0x00008000, 0); | ||
1425 | adapter->dma_status = adapter->dma_status & ~0x00000004; | ||
1426 | } else { | ||
1427 | write_reg_bitfield(adapter, 0x208, 0x00008000, 0x00008000); | ||
1428 | adapter->dma_status = adapter->dma_status | 0x00000004; | ||
1429 | } | ||
1430 | } | ||
1431 | |||
1432 | /* bit 0 of dma_mask is set to 1 if dma1 channel has to be enabled/disabled | ||
1433 | bit 1 of dma_mask is set to 1 if dma2 channel has to be enabled/disabled | ||
1434 | */ | ||
1435 | static void dma_start_stop(struct adapter *adapter, u32 dma_mask, int start_stop) | ||
1436 | { | ||
1437 | u32 dma_enable, dma1_enable, dma2_enable; | ||
1438 | |||
1439 | dprintk("%s: dma_mask=%x\n", __FUNCTION__, dma_mask); | ||
1440 | |||
1441 | if (start_stop == 1) { | ||
1442 | dprintk("%s: starting dma\n", __FUNCTION__); | ||
1443 | |||
1444 | dma1_enable = 0; | ||
1445 | dma2_enable = 0; | ||
1446 | |||
1447 | if (((dma_mask & 1) != 0) && ((adapter->dma_status & 1) == 0) && (adapter->dmaq1.bus_addr != 0)) { | ||
1448 | adapter->dma_status = adapter->dma_status | 1; | ||
1449 | dma1_enable = 1; | ||
1450 | } | ||
1451 | |||
1452 | if (((dma_mask & 2) != 0) && ((adapter->dma_status & 2) == 0) && (adapter->dmaq2.bus_addr != 0)) { | ||
1453 | adapter->dma_status = adapter->dma_status | 2; | ||
1454 | dma2_enable = 1; | ||
1455 | } | ||
1456 | // enable dma1 and dma2 | ||
1457 | if ((dma1_enable == 1) && (dma2_enable == 1)) { | ||
1458 | write_reg_dw(adapter, 0x000, adapter->dmaq1.bus_addr | 1); | ||
1459 | write_reg_dw(adapter, 0x00c, (adapter->dmaq1.bus_addr + adapter->dmaq1.buffer_size / 2) | 1); | ||
1460 | write_reg_dw(adapter, 0x010, adapter->dmaq2.bus_addr | 1); | ||
1461 | |||
1462 | ctrl_enable_receive_data(adapter, 1); | ||
1463 | |||
1464 | return; | ||
1465 | } | ||
1466 | // enable dma1 | ||
1467 | if ((dma1_enable == 1) && (dma2_enable == 0)) { | ||
1468 | write_reg_dw(adapter, 0x000, adapter->dmaq1.bus_addr | 1); | ||
1469 | write_reg_dw(adapter, 0x00c, (adapter->dmaq1.bus_addr + adapter->dmaq1.buffer_size / 2) | 1); | ||
1470 | |||
1471 | ctrl_enable_receive_data(adapter, 1); | ||
1472 | |||
1473 | return; | ||
1474 | } | ||
1475 | // enable dma2 | ||
1476 | if ((dma1_enable == 0) && (dma2_enable == 1)) { | ||
1477 | write_reg_dw(adapter, 0x010, adapter->dmaq2.bus_addr | 1); | ||
1478 | |||
1479 | ctrl_enable_receive_data(adapter, 1); | ||
1480 | |||
1481 | return; | ||
1482 | } | ||
1483 | // start dma | ||
1484 | if ((dma1_enable == 0) && (dma2_enable == 0)) { | ||
1485 | ctrl_enable_receive_data(adapter, 1); | ||
1486 | |||
1487 | return; | ||
1488 | } | ||
1489 | |||
1490 | } else { | ||
1491 | |||
1492 | dprintk("%s: stopping dma\n", __FUNCTION__); | ||
1493 | |||
1494 | dma_enable = adapter->dma_status & 0x00000003; | ||
1495 | |||
1496 | if (((dma_mask & 1) != 0) && ((adapter->dma_status & 1) != 0)) { | ||
1497 | dma_enable = dma_enable & 0xfffffffe; | ||
1498 | } | ||
1499 | |||
1500 | if (((dma_mask & 2) != 0) && ((adapter->dma_status & 2) != 0)) { | ||
1501 | dma_enable = dma_enable & 0xfffffffd; | ||
1502 | } | ||
1503 | //stop dma | ||
1504 | if ((dma_enable == 0) && ((adapter->dma_status & 4) != 0)) { | ||
1505 | ctrl_enable_receive_data(adapter, 0); | ||
1506 | |||
1507 | udelay(3000); | ||
1508 | } | ||
1509 | //disable dma1 | ||
1510 | if (((dma_mask & 1) != 0) && ((adapter->dma_status & 1) != 0) && (adapter->dmaq1.bus_addr != 0)) { | ||
1511 | write_reg_dw(adapter, 0x000, adapter->dmaq1.bus_addr); | ||
1512 | write_reg_dw(adapter, 0x00c, (adapter->dmaq1.bus_addr + adapter->dmaq1.buffer_size / 2) | 1); | ||
1513 | |||
1514 | adapter->dma_status = adapter->dma_status & ~0x00000001; | ||
1515 | } | ||
1516 | //disable dma2 | ||
1517 | if (((dma_mask & 2) != 0) && ((adapter->dma_status & 2) != 0) && (adapter->dmaq2.bus_addr != 0)) { | ||
1518 | write_reg_dw(adapter, 0x010, adapter->dmaq2.bus_addr); | ||
1519 | |||
1520 | adapter->dma_status = adapter->dma_status & ~0x00000002; | ||
1521 | } | ||
1522 | } | ||
1523 | } | ||
1524 | |||
1525 | static void open_stream(struct adapter *adapter, u16 pid) | ||
1526 | { | ||
1527 | u32 dma_mask; | ||
1528 | |||
1529 | ++adapter->capturing; | ||
1530 | |||
1531 | filter_enable_mask_filter(adapter, 1); | ||
1532 | |||
1533 | add_pid(adapter, pid); | ||
1534 | |||
1535 | dprintk("%s: adapter->dma_status=%x\n", __FUNCTION__, adapter->dma_status); | ||
1536 | |||
1537 | if ((adapter->dma_status & 7) != 7) { | ||
1538 | dma_mask = 0; | ||
1539 | |||
1540 | if (((adapter->dma_status & 0x10000000) != 0) && ((adapter->dma_status & 1) == 0)) { | ||
1541 | dma_mask = dma_mask | 1; | ||
1542 | |||
1543 | adapter->dmaq1.head = 0; | ||
1544 | adapter->dmaq1.tail = 0; | ||
1545 | |||
1546 | memset(adapter->dmaq1.buffer, 0, adapter->dmaq1.buffer_size); | ||
1547 | } | ||
1548 | |||
1549 | if (((adapter->dma_status & 0x20000000) != 0) && ((adapter->dma_status & 2) == 0)) { | ||
1550 | dma_mask = dma_mask | 2; | ||
1551 | |||
1552 | adapter->dmaq2.head = 0; | ||
1553 | adapter->dmaq2.tail = 0; | ||
1554 | } | ||
1555 | |||
1556 | if (dma_mask != 0) { | ||
1557 | irq_dma_enable_disable_irq(adapter, 1); | ||
1558 | |||
1559 | dma_start_stop(adapter, dma_mask, 1); | ||
1560 | } | ||
1561 | } | ||
1562 | } | ||
1563 | |||
1564 | static void close_stream(struct adapter *adapter, u16 pid) | ||
1565 | { | ||
1566 | if (adapter->capturing > 0) | ||
1567 | --adapter->capturing; | ||
1568 | |||
1569 | dprintk("%s: dma_status=%x\n", __FUNCTION__, adapter->dma_status); | ||
1570 | |||
1571 | if (adapter->capturing == 0) { | ||
1572 | u32 dma_mask = 0; | ||
1573 | |||
1574 | if ((adapter->dma_status & 1) != 0) | ||
1575 | dma_mask = dma_mask | 0x00000001; | ||
1576 | if ((adapter->dma_status & 2) != 0) | ||
1577 | dma_mask = dma_mask | 0x00000002; | ||
1578 | |||
1579 | if (dma_mask != 0) { | ||
1580 | dma_start_stop(adapter, dma_mask, 0); | ||
1581 | } | ||
1582 | } | ||
1583 | remove_pid(adapter, pid); | ||
1584 | } | ||
1585 | |||
1586 | static void interrupt_service_dma1(struct adapter *adapter) | ||
1587 | { | ||
1588 | struct dvb_demux *dvbdmx = &adapter->demux; | ||
1589 | |||
1590 | int n_cur_dma_counter; | ||
1591 | u32 n_num_bytes_parsed; | ||
1592 | u32 n_num_new_bytes_transferred; | ||
1593 | u32 dw_default_packet_size = 188; | ||
1594 | u8 gb_tmp_buffer[188]; | ||
1595 | u8 *pb_dma_buf_cur_pos; | ||
1596 | |||
1597 | n_cur_dma_counter = readl(adapter->io_mem + 0x008) - adapter->dmaq1.bus_addr; | ||
1598 | n_cur_dma_counter = (n_cur_dma_counter / dw_default_packet_size) * dw_default_packet_size; | ||
1599 | |||
1600 | if ((n_cur_dma_counter < 0) || (n_cur_dma_counter > adapter->dmaq1.buffer_size)) { | ||
1601 | dprintk("%s: dma counter outside dma buffer\n", __FUNCTION__); | ||
1602 | return; | ||
1603 | } | ||
1604 | |||
1605 | adapter->dmaq1.head = n_cur_dma_counter; | ||
1606 | |||
1607 | if (adapter->dmaq1.tail <= n_cur_dma_counter) { | ||
1608 | n_num_new_bytes_transferred = n_cur_dma_counter - adapter->dmaq1.tail; | ||
1609 | |||
1610 | } else { | ||
1611 | |||
1612 | n_num_new_bytes_transferred = (adapter->dmaq1.buffer_size - adapter->dmaq1.tail) + n_cur_dma_counter; | ||
1613 | } | ||
1614 | |||
1615 | ddprintk("%s: n_cur_dma_counter = %d\n", __FUNCTION__, n_cur_dma_counter); | ||
1616 | ddprintk("%s: dmaq1.tail = %d\n", __FUNCTION__, adapter->dmaq1.tail); | ||
1617 | ddprintk("%s: bytes_transferred = %d\n", __FUNCTION__, n_num_new_bytes_transferred); | ||
1618 | |||
1619 | if (n_num_new_bytes_transferred < dw_default_packet_size) | ||
1620 | return; | ||
1621 | |||
1622 | n_num_bytes_parsed = 0; | ||
1623 | |||
1624 | while (n_num_bytes_parsed < n_num_new_bytes_transferred) { | ||
1625 | pb_dma_buf_cur_pos = adapter->dmaq1.buffer + adapter->dmaq1.tail; | ||
1626 | |||
1627 | if (adapter->dmaq1.buffer + adapter->dmaq1.buffer_size < adapter->dmaq1.buffer + adapter->dmaq1.tail + 188) { | ||
1628 | memcpy(gb_tmp_buffer, adapter->dmaq1.buffer + adapter->dmaq1.tail, | ||
1629 | adapter->dmaq1.buffer_size - adapter->dmaq1.tail); | ||
1630 | memcpy(gb_tmp_buffer + (adapter->dmaq1.buffer_size - adapter->dmaq1.tail), adapter->dmaq1.buffer, | ||
1631 | (188 - (adapter->dmaq1.buffer_size - adapter->dmaq1.tail))); | ||
1632 | |||
1633 | pb_dma_buf_cur_pos = gb_tmp_buffer; | ||
1634 | } | ||
1635 | |||
1636 | if (adapter->capturing != 0) { | ||
1637 | dvb_dmx_swfilter_packets(dvbdmx, pb_dma_buf_cur_pos, dw_default_packet_size / 188); | ||
1638 | } | ||
1639 | |||
1640 | n_num_bytes_parsed = n_num_bytes_parsed + dw_default_packet_size; | ||
1641 | |||
1642 | adapter->dmaq1.tail = adapter->dmaq1.tail + dw_default_packet_size; | ||
1643 | |||
1644 | if (adapter->dmaq1.tail >= adapter->dmaq1.buffer_size) | ||
1645 | adapter->dmaq1.tail = adapter->dmaq1.tail - adapter->dmaq1.buffer_size; | ||
1646 | }; | ||
1647 | } | ||
1648 | |||
1649 | static void interrupt_service_dma2(struct adapter *adapter) | ||
1650 | { | ||
1651 | printk("%s:\n", __FUNCTION__); | ||
1652 | } | ||
1653 | |||
1654 | static irqreturn_t isr(int irq, void *dev_id, struct pt_regs *regs) | ||
1655 | { | ||
1656 | struct adapter *tmp = dev_id; | ||
1657 | |||
1658 | u32 value; | ||
1659 | |||
1660 | ddprintk("%s:\n", __FUNCTION__); | ||
1661 | |||
1662 | spin_lock_irq(&tmp->lock); | ||
1663 | |||
1664 | if (0 == ((value = read_reg_dw(tmp, 0x20c)) & 0x0f)) { | ||
1665 | spin_unlock_irq(&tmp->lock); | ||
1666 | return IRQ_NONE; | ||
1667 | } | ||
1668 | |||
1669 | while (value != 0) { | ||
1670 | if ((value & 0x03) != 0) | ||
1671 | interrupt_service_dma1(tmp); | ||
1672 | if ((value & 0x0c) != 0) | ||
1673 | interrupt_service_dma2(tmp); | ||
1674 | value = read_reg_dw(tmp, 0x20c) & 0x0f; | ||
1675 | } | ||
1676 | |||
1677 | spin_unlock_irq(&tmp->lock); | ||
1678 | return IRQ_HANDLED; | ||
1679 | } | ||
1680 | |||
1681 | static int init_dma_queue_one(struct adapter *adapter, struct dmaq *dmaq, | ||
1682 | int size, int dmaq_offset) | ||
1683 | { | ||
1684 | struct pci_dev *pdev = adapter->pdev; | ||
1685 | dma_addr_t dma_addr; | ||
1686 | |||
1687 | dmaq->head = 0; | ||
1688 | dmaq->tail = 0; | ||
1689 | |||
1690 | dmaq->buffer = pci_alloc_consistent(pdev, size + 0x80, &dma_addr); | ||
1691 | if (!dmaq->buffer) | ||
1692 | return -ENOMEM; | ||
1693 | |||
1694 | dmaq->bus_addr = dma_addr; | ||
1695 | dmaq->buffer_size = size; | ||
1696 | |||
1697 | dma_init_dma(adapter, dmaq_offset); | ||
1698 | |||
1699 | ddprintk("%s: allocated dma buffer at 0x%p, length=%d\n", | ||
1700 | __FUNCTION__, dmaq->buffer, size); | ||
1701 | |||
1702 | return 0; | ||
1703 | } | ||
1704 | |||
1705 | static int init_dma_queue(struct adapter *adapter) | ||
1706 | { | ||
1707 | struct { | ||
1708 | struct dmaq *dmaq; | ||
1709 | u32 dma_status; | ||
1710 | int size; | ||
1711 | } dmaq_desc[] = { | ||
1712 | { &adapter->dmaq1, 0x10000000, SIZE_OF_BUF_DMA1 }, | ||
1713 | { &adapter->dmaq2, 0x20000000, SIZE_OF_BUF_DMA2 } | ||
1714 | }, *p = dmaq_desc; | ||
1715 | int i; | ||
1716 | |||
1717 | for (i = 0; i < 2; i++, p++) { | ||
1718 | if (init_dma_queue_one(adapter, p->dmaq, p->size, i) < 0) | ||
1719 | adapter->dma_status &= ~p->dma_status; | ||
1720 | else | ||
1721 | adapter->dma_status |= p->dma_status; | ||
1722 | } | ||
1723 | return (adapter->dma_status & 0x30000000) ? 0 : -ENOMEM; | ||
1724 | } | ||
1725 | |||
1726 | static void free_dma_queue_one(struct adapter *adapter, struct dmaq *dmaq) | ||
1727 | { | ||
1728 | if (dmaq->buffer) { | ||
1729 | pci_free_consistent(adapter->pdev, dmaq->buffer_size + 0x80, | ||
1730 | dmaq->buffer, dmaq->bus_addr); | ||
1731 | memset(dmaq, 0, sizeof(*dmaq)); | ||
1732 | } | ||
1733 | } | ||
1734 | |||
1735 | static void free_dma_queue(struct adapter *adapter) | ||
1736 | { | ||
1737 | struct dmaq *dmaq[] = { | ||
1738 | &adapter->dmaq1, | ||
1739 | &adapter->dmaq2, | ||
1740 | NULL | ||
1741 | }, **p; | ||
1742 | |||
1743 | for (p = dmaq; *p; p++) | ||
1744 | free_dma_queue_one(adapter, *p); | ||
1745 | } | ||
1746 | |||
1747 | static void release_adapter(struct adapter *adapter) | ||
1748 | { | ||
1749 | struct pci_dev *pdev = adapter->pdev; | ||
1750 | |||
1751 | iounmap(adapter->io_mem); | ||
1752 | pci_disable_device(pdev); | ||
1753 | pci_release_region(pdev, 0); | ||
1754 | pci_release_region(pdev, 1); | ||
1755 | } | ||
1756 | |||
1757 | static void free_adapter_object(struct adapter *adapter) | ||
1758 | { | ||
1759 | dprintk("%s:\n", __FUNCTION__); | ||
1760 | |||
1761 | close_stream(adapter, 0); | ||
1762 | free_irq(adapter->irq, adapter); | ||
1763 | free_dma_queue(adapter); | ||
1764 | release_adapter(adapter); | ||
1765 | kfree(adapter); | ||
1766 | } | ||
1767 | |||
1768 | static struct pci_driver skystar2_pci_driver; | ||
1769 | |||
1770 | static int claim_adapter(struct adapter *adapter) | ||
1771 | { | ||
1772 | struct pci_dev *pdev = adapter->pdev; | ||
1773 | u16 var; | ||
1774 | int ret; | ||
1775 | |||
1776 | ret = pci_request_region(pdev, 1, skystar2_pci_driver.name); | ||
1777 | if (ret < 0) | ||
1778 | goto out; | ||
1779 | |||
1780 | ret = pci_request_region(pdev, 0, skystar2_pci_driver.name); | ||
1781 | if (ret < 0) | ||
1782 | goto err_pci_release_1; | ||
1783 | |||
1784 | pci_read_config_byte(pdev, PCI_CLASS_REVISION, &adapter->card_revision); | ||
1785 | |||
1786 | dprintk("%s: card revision %x \n", __FUNCTION__, adapter->card_revision); | ||
1787 | |||
1788 | ret = pci_enable_device(pdev); | ||
1789 | if (ret < 0) | ||
1790 | goto err_pci_release_0; | ||
1791 | |||
1792 | pci_read_config_word(pdev, 4, &var); | ||
1793 | |||
1794 | if ((var & 4) == 0) | ||
1795 | pci_set_master(pdev); | ||
1796 | |||
1797 | adapter->io_port = pdev->resource[1].start; | ||
1798 | |||
1799 | adapter->io_mem = ioremap(pdev->resource[0].start, 0x800); | ||
1800 | |||
1801 | if (!adapter->io_mem) { | ||
1802 | dprintk("%s: can not map io memory\n", __FUNCTION__); | ||
1803 | ret = -EIO; | ||
1804 | goto err_pci_disable; | ||
1805 | } | ||
1806 | |||
1807 | dprintk("%s: io memory maped at %p\n", __FUNCTION__, adapter->io_mem); | ||
1808 | |||
1809 | ret = 1; | ||
1810 | out: | ||
1811 | return ret; | ||
1812 | |||
1813 | err_pci_disable: | ||
1814 | pci_disable_device(pdev); | ||
1815 | err_pci_release_0: | ||
1816 | pci_release_region(pdev, 0); | ||
1817 | err_pci_release_1: | ||
1818 | pci_release_region(pdev, 1); | ||
1819 | goto out; | ||
1820 | } | ||
1821 | |||
1822 | /* | ||
1823 | static int sll_reset_flexcop(struct adapter *adapter) | ||
1824 | { | ||
1825 | write_reg_dw(adapter, 0x208, 0); | ||
1826 | write_reg_dw(adapter, 0x210, 0xb2ff); | ||
1827 | |||
1828 | return 0; | ||
1829 | } | ||
1830 | */ | ||
1831 | |||
1832 | static void decide_how_many_hw_filters(struct adapter *adapter) | ||
1833 | { | ||
1834 | int hw_filters; | ||
1835 | int mod_option_hw_filters; | ||
1836 | |||
1837 | // FlexCop IIb & III have 6+32 hw filters | ||
1838 | // FlexCop II has 6 hw filters, every other should have at least 6 | ||
1839 | switch (adapter->b2c2_revision) { | ||
1840 | case 0x82: /* II */ | ||
1841 | hw_filters = 6; | ||
1842 | break; | ||
1843 | case 0xc3: /* IIB */ | ||
1844 | hw_filters = 6 + 32; | ||
1845 | break; | ||
1846 | case 0xc0: /* III */ | ||
1847 | hw_filters = 6 + 32; | ||
1848 | break; | ||
1849 | default: | ||
1850 | hw_filters = 6; | ||
1851 | break; | ||
1852 | } | ||
1853 | printk("%s: the chip has %i hardware filters", __FILE__, hw_filters); | ||
1854 | |||
1855 | mod_option_hw_filters = 0; | ||
1856 | if (enable_hw_filters >= 1) | ||
1857 | mod_option_hw_filters += 6; | ||
1858 | if (enable_hw_filters >= 2) | ||
1859 | mod_option_hw_filters += 32; | ||
1860 | |||
1861 | if (mod_option_hw_filters >= hw_filters) { | ||
1862 | adapter->useable_hw_filters = hw_filters; | ||
1863 | } else { | ||
1864 | adapter->useable_hw_filters = mod_option_hw_filters; | ||
1865 | printk(", but only %d will be used because of module option", mod_option_hw_filters); | ||
1866 | } | ||
1867 | printk("\n"); | ||
1868 | dprintk("%s: useable_hardware_filters set to %i\n", __FILE__, adapter->useable_hw_filters); | ||
1869 | } | ||
1870 | |||
1871 | static int driver_initialize(struct pci_dev *pdev) | ||
1872 | { | ||
1873 | struct adapter *adapter; | ||
1874 | u32 tmp; | ||
1875 | int ret = -ENOMEM; | ||
1876 | |||
1877 | adapter = kmalloc(sizeof(struct adapter), GFP_KERNEL); | ||
1878 | if (!adapter) { | ||
1879 | dprintk("%s: out of memory!\n", __FUNCTION__); | ||
1880 | goto out; | ||
1881 | } | ||
1882 | |||
1883 | memset(adapter, 0, sizeof(struct adapter)); | ||
1884 | |||
1885 | pci_set_drvdata(pdev,adapter); | ||
1886 | |||
1887 | adapter->pdev = pdev; | ||
1888 | adapter->irq = pdev->irq; | ||
1889 | |||
1890 | ret = claim_adapter(adapter); | ||
1891 | if (ret < 0) | ||
1892 | goto err_kfree; | ||
1893 | |||
1894 | irq_dma_enable_disable_irq(adapter, 0); | ||
1895 | |||
1896 | ret = request_irq(pdev->irq, isr, 0x4000000, "Skystar2", adapter); | ||
1897 | if (ret < 0) { | ||
1898 | dprintk("%s: unable to allocate irq=%d !\n", __FUNCTION__, pdev->irq); | ||
1899 | goto err_release_adapter; | ||
1900 | } | ||
1901 | |||
1902 | read_reg_dw(adapter, 0x208); | ||
1903 | write_reg_dw(adapter, 0x208, 0); | ||
1904 | write_reg_dw(adapter, 0x210, 0xb2ff); | ||
1905 | write_reg_dw(adapter, 0x208, 0x40); | ||
1906 | |||
1907 | ret = init_dma_queue(adapter); | ||
1908 | if (ret < 0) | ||
1909 | goto err_free_irq; | ||
1910 | |||
1911 | adapter->b2c2_revision = (read_reg_dw(adapter, 0x204) >> 0x18); | ||
1912 | |||
1913 | switch (adapter->b2c2_revision) { | ||
1914 | case 0x82: | ||
1915 | printk("%s: FlexCopII(rev.130) chip found\n", __FILE__); | ||
1916 | break; | ||
1917 | case 0xc3: | ||
1918 | printk("%s: FlexCopIIB(rev.195) chip found\n", __FILE__); | ||
1919 | break; | ||
1920 | case 0xc0: | ||
1921 | printk("%s: FlexCopIII(rev.192) chip found\n", __FILE__); | ||
1922 | break; | ||
1923 | default: | ||
1924 | printk("%s: The revision of the FlexCop chip on your card is %d\n", __FILE__, adapter->b2c2_revision); | ||
1925 | printk("%s: This driver works only with FlexCopII(rev.130), FlexCopIIB(rev.195) and FlexCopIII(rev.192).\n", __FILE__); | ||
1926 | ret = -ENODEV; | ||
1927 | goto err_free_dma_queue; | ||
1928 | } | ||
1929 | |||
1930 | decide_how_many_hw_filters(adapter); | ||
1931 | |||
1932 | init_pids(adapter); | ||
1933 | |||
1934 | tmp = read_reg_dw(adapter, 0x204); | ||
1935 | |||
1936 | write_reg_dw(adapter, 0x204, 0); | ||
1937 | mdelay(20); | ||
1938 | |||
1939 | write_reg_dw(adapter, 0x204, tmp); | ||
1940 | mdelay(10); | ||
1941 | |||
1942 | tmp = read_reg_dw(adapter, 0x308); | ||
1943 | write_reg_dw(adapter, 0x308, 0x4000 | tmp); | ||
1944 | |||
1945 | adapter->dw_sram_type = 0x10000; | ||
1946 | |||
1947 | sll_detect_sram_size(adapter); | ||
1948 | |||
1949 | dprintk("%s sram length = %d, sram type= %x\n", __FUNCTION__, sram_length(adapter), adapter->dw_sram_type); | ||
1950 | |||
1951 | sram_set_media_dest(adapter, 1); | ||
1952 | sram_set_net_dest(adapter, 1); | ||
1953 | |||
1954 | ctrl_enable_smc(adapter, 0); | ||
1955 | |||
1956 | sram_set_cai_dest(adapter, 2); | ||
1957 | sram_set_cao_dest(adapter, 2); | ||
1958 | |||
1959 | dma_enable_disable_irq(adapter, 1, 0, 0); | ||
1960 | |||
1961 | if (eeprom_get_mac_addr(adapter, 0, adapter->mac_addr) != 0) { | ||
1962 | printk("%s MAC address = %02x:%02x:%02x:%02x:%02x:%02x:%02x:%02x \n", __FUNCTION__, adapter->mac_addr[0], | ||
1963 | adapter->mac_addr[1], adapter->mac_addr[2], adapter->mac_addr[3], adapter->mac_addr[4], adapter->mac_addr[5], | ||
1964 | adapter->mac_addr[6], adapter->mac_addr[7] | ||
1965 | ); | ||
1966 | |||
1967 | ca_set_mac_dst_addr_filter(adapter, adapter->mac_addr); | ||
1968 | ctrl_enable_mac(adapter, 1); | ||
1969 | } | ||
1970 | |||
1971 | spin_lock_init(&adapter->lock); | ||
1972 | |||
1973 | out: | ||
1974 | return ret; | ||
1975 | |||
1976 | err_free_dma_queue: | ||
1977 | free_dma_queue(adapter); | ||
1978 | err_free_irq: | ||
1979 | free_irq(pdev->irq, adapter); | ||
1980 | err_release_adapter: | ||
1981 | release_adapter(adapter); | ||
1982 | err_kfree: | ||
1983 | pci_set_drvdata(pdev, NULL); | ||
1984 | kfree(adapter); | ||
1985 | goto out; | ||
1986 | } | ||
1987 | |||
1988 | static void driver_halt(struct pci_dev *pdev) | ||
1989 | { | ||
1990 | struct adapter *adapter = pci_get_drvdata(pdev); | ||
1991 | |||
1992 | irq_dma_enable_disable_irq(adapter, 0); | ||
1993 | |||
1994 | ctrl_enable_receive_data(adapter, 0); | ||
1995 | |||
1996 | free_adapter_object(adapter); | ||
1997 | |||
1998 | pci_set_drvdata(pdev, NULL); | ||
1999 | } | ||
2000 | |||
2001 | static int dvb_start_feed(struct dvb_demux_feed *dvbdmxfeed) | ||
2002 | { | ||
2003 | struct dvb_demux *dvbdmx = dvbdmxfeed->demux; | ||
2004 | struct adapter *adapter = (struct adapter *) dvbdmx->priv; | ||
2005 | |||
2006 | dprintk("%s: PID=%d, type=%d\n", __FUNCTION__, dvbdmxfeed->pid, dvbdmxfeed->type); | ||
2007 | |||
2008 | open_stream(adapter, dvbdmxfeed->pid); | ||
2009 | |||
2010 | return 0; | ||
2011 | } | ||
2012 | |||
2013 | static int dvb_stop_feed(struct dvb_demux_feed *dvbdmxfeed) | ||
2014 | { | ||
2015 | struct dvb_demux *dvbdmx = dvbdmxfeed->demux; | ||
2016 | struct adapter *adapter = (struct adapter *) dvbdmx->priv; | ||
2017 | |||
2018 | dprintk("%s: PID=%d, type=%d\n", __FUNCTION__, dvbdmxfeed->pid, dvbdmxfeed->type); | ||
2019 | |||
2020 | close_stream(adapter, dvbdmxfeed->pid); | ||
2021 | |||
2022 | return 0; | ||
2023 | } | ||
2024 | |||
2025 | /* lnb control */ | ||
2026 | static void set_tuner_tone(struct adapter *adapter, u8 tone) | ||
2027 | { | ||
2028 | u16 wz_half_period_for_45_mhz[] = { 0x01ff, 0x0154, 0x00ff, 0x00cc }; | ||
2029 | u16 ax; | ||
2030 | |||
2031 | dprintk("%s: %u\n", __FUNCTION__, tone); | ||
2032 | |||
2033 | switch (tone) { | ||
2034 | case 1: | ||
2035 | ax = wz_half_period_for_45_mhz[0]; | ||
2036 | break; | ||
2037 | case 2: | ||
2038 | ax = wz_half_period_for_45_mhz[1]; | ||
2039 | break; | ||
2040 | case 3: | ||
2041 | ax = wz_half_period_for_45_mhz[2]; | ||
2042 | break; | ||
2043 | case 4: | ||
2044 | ax = wz_half_period_for_45_mhz[3]; | ||
2045 | break; | ||
2046 | |||
2047 | default: | ||
2048 | ax = 0; | ||
2049 | } | ||
2050 | |||
2051 | if (ax != 0) { | ||
2052 | write_reg_dw(adapter, 0x200, ((ax << 0x0f) + (ax & 0x7fff)) | 0x40000000); | ||
2053 | |||
2054 | } else { | ||
2055 | |||
2056 | write_reg_dw(adapter, 0x200, 0x40ff8000); | ||
2057 | } | ||
2058 | } | ||
2059 | |||
2060 | static void set_tuner_polarity(struct adapter *adapter, u8 polarity) | ||
2061 | { | ||
2062 | u32 var; | ||
2063 | |||
2064 | dprintk("%s : polarity = %u \n", __FUNCTION__, polarity); | ||
2065 | |||
2066 | var = read_reg_dw(adapter, 0x204); | ||
2067 | |||
2068 | if (polarity == 0) { | ||
2069 | dprintk("%s: LNB power off\n", __FUNCTION__); | ||
2070 | var = var | 1; | ||
2071 | }; | ||
2072 | |||
2073 | if (polarity == 1) { | ||
2074 | var = var & ~1; | ||
2075 | var = var & ~4; | ||
2076 | }; | ||
2077 | |||
2078 | if (polarity == 2) { | ||
2079 | var = var & ~1; | ||
2080 | var = var | 4; | ||
2081 | } | ||
2082 | |||
2083 | write_reg_dw(adapter, 0x204, var); | ||
2084 | } | ||
2085 | |||
2086 | static void diseqc_send_bit(struct adapter *adapter, int data) | ||
2087 | { | ||
2088 | set_tuner_tone(adapter, 1); | ||
2089 | udelay(data ? 500 : 1000); | ||
2090 | set_tuner_tone(adapter, 0); | ||
2091 | udelay(data ? 1000 : 500); | ||
2092 | } | ||
2093 | |||
2094 | |||
2095 | static void diseqc_send_byte(struct adapter *adapter, int data) | ||
2096 | { | ||
2097 | int i, par = 1, d; | ||
2098 | |||
2099 | for (i = 7; i >= 0; i--) { | ||
2100 | d = (data >> i) & 1; | ||
2101 | par ^= d; | ||
2102 | diseqc_send_bit(adapter, d); | ||
2103 | } | ||
2104 | |||
2105 | diseqc_send_bit(adapter, par); | ||
2106 | } | ||
2107 | |||
2108 | |||
2109 | static int send_diseqc_msg(struct adapter *adapter, int len, u8 *msg, unsigned long burst) | ||
2110 | { | ||
2111 | int i; | ||
2112 | |||
2113 | set_tuner_tone(adapter, 0); | ||
2114 | mdelay(16); | ||
2115 | |||
2116 | for (i = 0; i < len; i++) | ||
2117 | diseqc_send_byte(adapter, msg[i]); | ||
2118 | |||
2119 | mdelay(16); | ||
2120 | |||
2121 | if (burst != -1) { | ||
2122 | if (burst) | ||
2123 | diseqc_send_byte(adapter, 0xff); | ||
2124 | else { | ||
2125 | set_tuner_tone(adapter, 1); | ||
2126 | udelay(12500); | ||
2127 | set_tuner_tone(adapter, 0); | ||
2128 | } | ||
2129 | msleep(20); | ||
2130 | } | ||
2131 | |||
2132 | return 0; | ||
2133 | } | ||
2134 | |||
2135 | static int flexcop_set_tone(struct dvb_frontend* fe, fe_sec_tone_mode_t tone) | ||
2136 | { | ||
2137 | struct adapter* adapter = (struct adapter*) fe->dvb->priv; | ||
2138 | |||
2139 | switch(tone) { | ||
2140 | case SEC_TONE_ON: | ||
2141 | set_tuner_tone(adapter, 1); | ||
2142 | break; | ||
2143 | case SEC_TONE_OFF: | ||
2144 | set_tuner_tone(adapter, 0); | ||
2145 | break; | ||
2146 | default: | ||
2147 | return -EINVAL; | ||
2148 | }; | ||
2149 | |||
2150 | return 0; | ||
2151 | } | ||
2152 | |||
2153 | static int flexcop_diseqc_send_master_cmd(struct dvb_frontend* fe, struct dvb_diseqc_master_cmd* cmd) | ||
2154 | { | ||
2155 | struct adapter* adapter = (struct adapter*) fe->dvb->priv; | ||
2156 | |||
2157 | send_diseqc_msg(adapter, cmd->msg_len, cmd->msg, 0); | ||
2158 | |||
2159 | return 0; | ||
2160 | } | ||
2161 | |||
2162 | static int flexcop_diseqc_send_burst(struct dvb_frontend* fe, fe_sec_mini_cmd_t minicmd) | ||
2163 | { | ||
2164 | struct adapter* adapter = (struct adapter*) fe->dvb->priv; | ||
2165 | |||
2166 | send_diseqc_msg(adapter, 0, NULL, minicmd); | ||
2167 | |||
2168 | return 0; | ||
2169 | } | ||
2170 | |||
2171 | static int flexcop_set_voltage(struct dvb_frontend* fe, fe_sec_voltage_t voltage) | ||
2172 | { | ||
2173 | struct adapter* adapter = (struct adapter*) fe->dvb->priv; | ||
2174 | |||
2175 | dprintk("%s: FE_SET_VOLTAGE\n", __FUNCTION__); | ||
2176 | |||
2177 | switch (voltage) { | ||
2178 | case SEC_VOLTAGE_13: | ||
2179 | dprintk("%s: SEC_VOLTAGE_13, %x\n", __FUNCTION__, SEC_VOLTAGE_13); | ||
2180 | set_tuner_polarity(adapter, 1); | ||
2181 | return 0; | ||
2182 | |||
2183 | case SEC_VOLTAGE_18: | ||
2184 | dprintk("%s: SEC_VOLTAGE_18, %x\n", __FUNCTION__, SEC_VOLTAGE_18); | ||
2185 | set_tuner_polarity(adapter, 2); | ||
2186 | return 0; | ||
2187 | |||
2188 | default: | ||
2189 | return -EINVAL; | ||
2190 | } | ||
2191 | } | ||
2192 | |||
2193 | static int flexcop_sleep(struct dvb_frontend* fe) | ||
2194 | { | ||
2195 | struct adapter* adapter = (struct adapter*) fe->dvb->priv; | ||
2196 | |||
2197 | dprintk("%s: FE_SLEEP\n", __FUNCTION__); | ||
2198 | set_tuner_polarity(adapter, 0); | ||
2199 | |||
2200 | if (adapter->fe_sleep) return adapter->fe_sleep(fe); | ||
2201 | return 0; | ||
2202 | } | ||
2203 | |||
2204 | static u32 flexcop_i2c_func(struct i2c_adapter *adapter) | ||
2205 | { | ||
2206 | printk("flexcop_i2c_func\n"); | ||
2207 | |||
2208 | return I2C_FUNC_I2C; | ||
2209 | } | ||
2210 | |||
2211 | static struct i2c_algorithm flexcop_algo = { | ||
2212 | .name = "flexcop i2c algorithm", | ||
2213 | .id = I2C_ALGO_BIT, | ||
2214 | .master_xfer = master_xfer, | ||
2215 | .functionality = flexcop_i2c_func, | ||
2216 | }; | ||
2217 | |||
2218 | |||
2219 | |||
2220 | |||
2221 | static int samsung_tbmu24112_set_symbol_rate(struct dvb_frontend* fe, u32 srate, u32 ratio) | ||
2222 | { | ||
2223 | u8 aclk = 0; | ||
2224 | u8 bclk = 0; | ||
2225 | |||
2226 | if (srate < 1500000) { aclk = 0xb7; bclk = 0x47; } | ||
2227 | else if (srate < 3000000) { aclk = 0xb7; bclk = 0x4b; } | ||
2228 | else if (srate < 7000000) { aclk = 0xb7; bclk = 0x4f; } | ||
2229 | else if (srate < 14000000) { aclk = 0xb7; bclk = 0x53; } | ||
2230 | else if (srate < 30000000) { aclk = 0xb6; bclk = 0x53; } | ||
2231 | else if (srate < 45000000) { aclk = 0xb4; bclk = 0x51; } | ||
2232 | |||
2233 | stv0299_writereg (fe, 0x13, aclk); | ||
2234 | stv0299_writereg (fe, 0x14, bclk); | ||
2235 | stv0299_writereg (fe, 0x1f, (ratio >> 16) & 0xff); | ||
2236 | stv0299_writereg (fe, 0x20, (ratio >> 8) & 0xff); | ||
2237 | stv0299_writereg (fe, 0x21, (ratio ) & 0xf0); | ||
2238 | |||
2239 | return 0; | ||
2240 | } | ||
2241 | |||
2242 | static int samsung_tbmu24112_pll_set(struct dvb_frontend* fe, struct dvb_frontend_parameters* params) | ||
2243 | { | ||
2244 | u8 buf[4]; | ||
2245 | u32 div; | ||
2246 | struct i2c_msg msg = { .addr = 0x61, .flags = 0, .buf = buf, .len = sizeof(buf) }; | ||
2247 | struct adapter* adapter = (struct adapter*) fe->dvb->priv; | ||
2248 | |||
2249 | div = params->frequency / 125; | ||
2250 | |||
2251 | buf[0] = (div >> 8) & 0x7f; | ||
2252 | buf[1] = div & 0xff; | ||
2253 | buf[2] = 0x84; // 0xC4 | ||
2254 | buf[3] = 0x08; | ||
2255 | |||
2256 | if (params->frequency < 1500000) buf[3] |= 0x10; | ||
2257 | |||
2258 | if (i2c_transfer (&adapter->i2c_adap, &msg, 1) != 1) return -EIO; | ||
2259 | return 0; | ||
2260 | } | ||
2261 | |||
2262 | static u8 samsung_tbmu24112_inittab[] = { | ||
2263 | 0x01, 0x15, | ||
2264 | 0x02, 0x30, | ||
2265 | 0x03, 0x00, | ||
2266 | 0x04, 0x7D, | ||
2267 | 0x05, 0x35, | ||
2268 | 0x06, 0x02, | ||
2269 | 0x07, 0x00, | ||
2270 | 0x08, 0xC3, | ||
2271 | 0x0C, 0x00, | ||
2272 | 0x0D, 0x81, | ||
2273 | 0x0E, 0x23, | ||
2274 | 0x0F, 0x12, | ||
2275 | 0x10, 0x7E, | ||
2276 | 0x11, 0x84, | ||
2277 | 0x12, 0xB9, | ||
2278 | 0x13, 0x88, | ||
2279 | 0x14, 0x89, | ||
2280 | 0x15, 0xC9, | ||
2281 | 0x16, 0x00, | ||
2282 | 0x17, 0x5C, | ||
2283 | 0x18, 0x00, | ||
2284 | 0x19, 0x00, | ||
2285 | 0x1A, 0x00, | ||
2286 | 0x1C, 0x00, | ||
2287 | 0x1D, 0x00, | ||
2288 | 0x1E, 0x00, | ||
2289 | 0x1F, 0x3A, | ||
2290 | 0x20, 0x2E, | ||
2291 | 0x21, 0x80, | ||
2292 | 0x22, 0xFF, | ||
2293 | 0x23, 0xC1, | ||
2294 | 0x28, 0x00, | ||
2295 | 0x29, 0x1E, | ||
2296 | 0x2A, 0x14, | ||
2297 | 0x2B, 0x0F, | ||
2298 | 0x2C, 0x09, | ||
2299 | 0x2D, 0x05, | ||
2300 | 0x31, 0x1F, | ||
2301 | 0x32, 0x19, | ||
2302 | 0x33, 0xFE, | ||
2303 | 0x34, 0x93, | ||
2304 | 0xff, 0xff, | ||
2305 | }; | ||
2306 | |||
2307 | static struct stv0299_config samsung_tbmu24112_config = { | ||
2308 | .demod_address = 0x68, | ||
2309 | .inittab = samsung_tbmu24112_inittab, | ||
2310 | .mclk = 88000000UL, | ||
2311 | .invert = 0, | ||
2312 | .enhanced_tuning = 0, | ||
2313 | .skip_reinit = 0, | ||
2314 | .lock_output = STV0229_LOCKOUTPUT_LK, | ||
2315 | .volt13_op0_op1 = STV0299_VOLT13_OP1, | ||
2316 | .min_delay_ms = 100, | ||
2317 | .set_symbol_rate = samsung_tbmu24112_set_symbol_rate, | ||
2318 | .pll_set = samsung_tbmu24112_pll_set, | ||
2319 | }; | ||
2320 | |||
2321 | |||
2322 | |||
2323 | static int nxt2002_request_firmware(struct dvb_frontend* fe, const struct firmware **fw, char* name) | ||
2324 | { | ||
2325 | struct adapter* adapter = (struct adapter*) fe->dvb->priv; | ||
2326 | |||
2327 | return request_firmware(fw, name, &adapter->pdev->dev); | ||
2328 | } | ||
2329 | |||
2330 | |||
2331 | static struct nxt2002_config samsung_tbmv_config = { | ||
2332 | .demod_address = 0x0A, | ||
2333 | .request_firmware = nxt2002_request_firmware, | ||
2334 | }; | ||
2335 | |||
2336 | static int samsung_tdtc9251dh0_demod_init(struct dvb_frontend* fe) | ||
2337 | { | ||
2338 | static u8 mt352_clock_config [] = { 0x89, 0x18, 0x2d }; | ||
2339 | static u8 mt352_reset [] = { 0x50, 0x80 }; | ||
2340 | static u8 mt352_adc_ctl_1_cfg [] = { 0x8E, 0x40 }; | ||
2341 | static u8 mt352_agc_cfg [] = { 0x67, 0x28, 0xa1 }; | ||
2342 | static u8 mt352_capt_range_cfg[] = { 0x75, 0x32 }; | ||
2343 | |||
2344 | mt352_write(fe, mt352_clock_config, sizeof(mt352_clock_config)); | ||
2345 | udelay(2000); | ||
2346 | mt352_write(fe, mt352_reset, sizeof(mt352_reset)); | ||
2347 | mt352_write(fe, mt352_adc_ctl_1_cfg, sizeof(mt352_adc_ctl_1_cfg)); | ||
2348 | |||
2349 | mt352_write(fe, mt352_agc_cfg, sizeof(mt352_agc_cfg)); | ||
2350 | mt352_write(fe, mt352_capt_range_cfg, sizeof(mt352_capt_range_cfg)); | ||
2351 | |||
2352 | return 0; | ||
2353 | } | ||
2354 | |||
2355 | static int samsung_tdtc9251dh0_pll_set(struct dvb_frontend* fe, struct dvb_frontend_parameters* params, u8* pllbuf) | ||
2356 | { | ||
2357 | u32 div; | ||
2358 | unsigned char bs = 0; | ||
2359 | |||
2360 | #define IF_FREQUENCYx6 217 /* 6 * 36.16666666667MHz */ | ||
2361 | div = (((params->frequency + 83333) * 3) / 500000) + IF_FREQUENCYx6; | ||
2362 | |||
2363 | if (params->frequency >= 48000000 && params->frequency <= 154000000) bs = 0x09; | ||
2364 | if (params->frequency >= 161000000 && params->frequency <= 439000000) bs = 0x0a; | ||
2365 | if (params->frequency >= 447000000 && params->frequency <= 863000000) bs = 0x08; | ||
2366 | |||
2367 | pllbuf[0] = 0xc2; // Note: non-linux standard PLL i2c address | ||
2368 | pllbuf[1] = div >> 8; | ||
2369 | pllbuf[2] = div & 0xff; | ||
2370 | pllbuf[3] = 0xcc; | ||
2371 | pllbuf[4] = bs; | ||
2372 | |||
2373 | return 0; | ||
2374 | } | ||
2375 | |||
2376 | static struct mt352_config samsung_tdtc9251dh0_config = { | ||
2377 | |||
2378 | .demod_address = 0x0f, | ||
2379 | .demod_init = samsung_tdtc9251dh0_demod_init, | ||
2380 | .pll_set = samsung_tdtc9251dh0_pll_set, | ||
2381 | }; | ||
2382 | |||
2383 | static int skystar23_samsung_tbdu18132_pll_set(struct dvb_frontend* fe, struct dvb_frontend_parameters* params) | ||
2384 | { | ||
2385 | u8 buf[4]; | ||
2386 | u32 div; | ||
2387 | struct i2c_msg msg = { .addr = 0x61, .flags = 0, .buf = buf, .len = sizeof(buf) }; | ||
2388 | struct adapter* adapter = (struct adapter*) fe->dvb->priv; | ||
2389 | |||
2390 | div = (params->frequency + (125/2)) / 125; | ||
2391 | |||
2392 | buf[0] = (div >> 8) & 0x7f; | ||
2393 | buf[1] = (div >> 0) & 0xff; | ||
2394 | buf[2] = 0x84 | ((div >> 10) & 0x60); | ||
2395 | buf[3] = 0x80; | ||
2396 | |||
2397 | if (params->frequency < 1550000) | ||
2398 | buf[3] |= 0x02; | ||
2399 | |||
2400 | if (i2c_transfer (&adapter->i2c_adap, &msg, 1) != 1) return -EIO; | ||
2401 | return 0; | ||
2402 | } | ||
2403 | |||
2404 | static struct mt312_config skystar23_samsung_tbdu18132_config = { | ||
2405 | |||
2406 | .demod_address = 0x0e, | ||
2407 | .pll_set = skystar23_samsung_tbdu18132_pll_set, | ||
2408 | }; | ||
2409 | |||
2410 | |||
2411 | |||
2412 | |||
2413 | static void frontend_init(struct adapter *skystar2) | ||
2414 | { | ||
2415 | switch(skystar2->pdev->device) { | ||
2416 | case 0x2103: // Technisat Skystar2 OR Technisat Airstar2 (DVB-T or ATSC) | ||
2417 | |||
2418 | // Attempt to load the Nextwave nxt2002 for ATSC support | ||
2419 | skystar2->fe = nxt2002_attach(&samsung_tbmv_config, &skystar2->i2c_adap); | ||
2420 | if (skystar2->fe != NULL) { | ||
2421 | skystar2->fe_sleep = skystar2->fe->ops->sleep; | ||
2422 | skystar2->fe->ops->sleep = flexcop_sleep; | ||
2423 | break; | ||
2424 | } | ||
2425 | |||
2426 | // try the skystar2 v2.6 first (stv0299/Samsung tbmu24112(sl1935)) | ||
2427 | skystar2->fe = stv0299_attach(&samsung_tbmu24112_config, &skystar2->i2c_adap); | ||
2428 | if (skystar2->fe != NULL) { | ||
2429 | skystar2->fe->ops->set_voltage = flexcop_set_voltage; | ||
2430 | skystar2->fe_sleep = skystar2->fe->ops->sleep; | ||
2431 | skystar2->fe->ops->sleep = flexcop_sleep; | ||
2432 | break; | ||
2433 | } | ||
2434 | |||
2435 | // try the airstar2 (mt352/Samsung tdtc9251dh0(??)) | ||
2436 | skystar2->fe = mt352_attach(&samsung_tdtc9251dh0_config, &skystar2->i2c_adap); | ||
2437 | if (skystar2->fe != NULL) { | ||
2438 | skystar2->fe->ops->info.frequency_min = 474000000; | ||
2439 | skystar2->fe->ops->info.frequency_max = 858000000; | ||
2440 | break; | ||
2441 | } | ||
2442 | |||
2443 | // try the skystar2 v2.3 (vp310/Samsung tbdu18132(tsa5059)) | ||
2444 | skystar2->fe = vp310_attach(&skystar23_samsung_tbdu18132_config, &skystar2->i2c_adap); | ||
2445 | if (skystar2->fe != NULL) { | ||
2446 | skystar2->fe->ops->diseqc_send_master_cmd = flexcop_diseqc_send_master_cmd; | ||
2447 | skystar2->fe->ops->diseqc_send_burst = flexcop_diseqc_send_burst; | ||
2448 | skystar2->fe->ops->set_tone = flexcop_set_tone; | ||
2449 | skystar2->fe->ops->set_voltage = flexcop_set_voltage; | ||
2450 | skystar2->fe_sleep = skystar2->fe->ops->sleep; | ||
2451 | skystar2->fe->ops->sleep = flexcop_sleep; | ||
2452 | break; | ||
2453 | } | ||
2454 | break; | ||
2455 | } | ||
2456 | |||
2457 | if (skystar2->fe == NULL) { | ||
2458 | printk("skystar2: A frontend driver was not found for device %04x/%04x subsystem %04x/%04x\n", | ||
2459 | skystar2->pdev->vendor, | ||
2460 | skystar2->pdev->device, | ||
2461 | skystar2->pdev->subsystem_vendor, | ||
2462 | skystar2->pdev->subsystem_device); | ||
2463 | } else { | ||
2464 | if (dvb_register_frontend(&skystar2->dvb_adapter, skystar2->fe)) { | ||
2465 | printk("skystar2: Frontend registration failed!\n"); | ||
2466 | if (skystar2->fe->ops->release) | ||
2467 | skystar2->fe->ops->release(skystar2->fe); | ||
2468 | skystar2->fe = NULL; | ||
2469 | } | ||
2470 | } | ||
2471 | } | ||
2472 | |||
2473 | |||
2474 | static int skystar2_probe(struct pci_dev *pdev, const struct pci_device_id *ent) | ||
2475 | { | ||
2476 | struct adapter *adapter; | ||
2477 | struct dvb_adapter *dvb_adapter; | ||
2478 | struct dvb_demux *dvbdemux; | ||
2479 | struct dmx_demux *dmx; | ||
2480 | int ret = -ENODEV; | ||
2481 | |||
2482 | if (!pdev) | ||
2483 | goto out; | ||
2484 | |||
2485 | ret = driver_initialize(pdev); | ||
2486 | if (ret < 0) | ||
2487 | goto out; | ||
2488 | |||
2489 | adapter = pci_get_drvdata(pdev); | ||
2490 | dvb_adapter = &adapter->dvb_adapter; | ||
2491 | |||
2492 | ret = dvb_register_adapter(dvb_adapter, skystar2_pci_driver.name, | ||
2493 | THIS_MODULE); | ||
2494 | if (ret < 0) { | ||
2495 | printk("%s: Error registering DVB adapter\n", __FUNCTION__); | ||
2496 | goto err_halt; | ||
2497 | } | ||
2498 | |||
2499 | dvb_adapter->priv = adapter; | ||
2500 | |||
2501 | |||
2502 | init_MUTEX(&adapter->i2c_sem); | ||
2503 | |||
2504 | |||
2505 | memset(&adapter->i2c_adap, 0, sizeof(struct i2c_adapter)); | ||
2506 | strcpy(adapter->i2c_adap.name, "SkyStar2"); | ||
2507 | |||
2508 | i2c_set_adapdata(&adapter->i2c_adap, adapter); | ||
2509 | |||
2510 | #ifdef I2C_ADAP_CLASS_TV_DIGITAL | ||
2511 | adapter->i2c_adap.class = I2C_ADAP_CLASS_TV_DIGITAL; | ||
2512 | #else | ||
2513 | adapter->i2c_adap.class = I2C_CLASS_TV_DIGITAL; | ||
2514 | #endif | ||
2515 | adapter->i2c_adap.algo = &flexcop_algo; | ||
2516 | adapter->i2c_adap.algo_data = NULL; | ||
2517 | adapter->i2c_adap.id = I2C_ALGO_BIT; | ||
2518 | |||
2519 | ret = i2c_add_adapter(&adapter->i2c_adap); | ||
2520 | if (ret < 0) | ||
2521 | goto err_dvb_unregister; | ||
2522 | |||
2523 | dvbdemux = &adapter->demux; | ||
2524 | |||
2525 | dvbdemux->priv = adapter; | ||
2526 | dvbdemux->filternum = N_PID_SLOTS; | ||
2527 | dvbdemux->feednum = N_PID_SLOTS; | ||
2528 | dvbdemux->start_feed = dvb_start_feed; | ||
2529 | dvbdemux->stop_feed = dvb_stop_feed; | ||
2530 | dvbdemux->write_to_decoder = NULL; | ||
2531 | dvbdemux->dmx.capabilities = (DMX_TS_FILTERING | DMX_SECTION_FILTERING | DMX_MEMORY_BASED_FILTERING); | ||
2532 | |||
2533 | ret = dvb_dmx_init(&adapter->demux); | ||
2534 | if (ret < 0) | ||
2535 | goto err_i2c_del; | ||
2536 | |||
2537 | dmx = &dvbdemux->dmx; | ||
2538 | |||
2539 | adapter->hw_frontend.source = DMX_FRONTEND_0; | ||
2540 | adapter->dmxdev.filternum = N_PID_SLOTS; | ||
2541 | adapter->dmxdev.demux = dmx; | ||
2542 | adapter->dmxdev.capabilities = 0; | ||
2543 | |||
2544 | ret = dvb_dmxdev_init(&adapter->dmxdev, &adapter->dvb_adapter); | ||
2545 | if (ret < 0) | ||
2546 | goto err_dmx_release; | ||
2547 | |||
2548 | ret = dmx->add_frontend(dmx, &adapter->hw_frontend); | ||
2549 | if (ret < 0) | ||
2550 | goto err_dmxdev_release; | ||
2551 | |||
2552 | adapter->mem_frontend.source = DMX_MEMORY_FE; | ||
2553 | |||
2554 | ret = dmx->add_frontend(dmx, &adapter->mem_frontend); | ||
2555 | if (ret < 0) | ||
2556 | goto err_remove_hw_frontend; | ||
2557 | |||
2558 | ret = dmx->connect_frontend(dmx, &adapter->hw_frontend); | ||
2559 | if (ret < 0) | ||
2560 | goto err_remove_mem_frontend; | ||
2561 | |||
2562 | dvb_net_init(&adapter->dvb_adapter, &adapter->dvbnet, &dvbdemux->dmx); | ||
2563 | |||
2564 | frontend_init(adapter); | ||
2565 | out: | ||
2566 | return ret; | ||
2567 | |||
2568 | err_remove_mem_frontend: | ||
2569 | dvbdemux->dmx.remove_frontend(&dvbdemux->dmx, &adapter->mem_frontend); | ||
2570 | err_remove_hw_frontend: | ||
2571 | dvbdemux->dmx.remove_frontend(&dvbdemux->dmx, &adapter->hw_frontend); | ||
2572 | err_dmxdev_release: | ||
2573 | dvb_dmxdev_release(&adapter->dmxdev); | ||
2574 | err_dmx_release: | ||
2575 | dvb_dmx_release(&adapter->demux); | ||
2576 | err_i2c_del: | ||
2577 | i2c_del_adapter(&adapter->i2c_adap); | ||
2578 | err_dvb_unregister: | ||
2579 | dvb_unregister_adapter(&adapter->dvb_adapter); | ||
2580 | err_halt: | ||
2581 | driver_halt(pdev); | ||
2582 | goto out; | ||
2583 | } | ||
2584 | |||
2585 | static void skystar2_remove(struct pci_dev *pdev) | ||
2586 | { | ||
2587 | struct adapter *adapter = pci_get_drvdata(pdev); | ||
2588 | struct dvb_demux *dvbdemux; | ||
2589 | struct dmx_demux *dmx; | ||
2590 | |||
2591 | if (!adapter) | ||
2592 | return; | ||
2593 | |||
2594 | dvb_net_release(&adapter->dvbnet); | ||
2595 | dvbdemux = &adapter->demux; | ||
2596 | dmx = &dvbdemux->dmx; | ||
2597 | |||
2598 | dmx->close(dmx); | ||
2599 | dmx->remove_frontend(dmx, &adapter->hw_frontend); | ||
2600 | dmx->remove_frontend(dmx, &adapter->mem_frontend); | ||
2601 | |||
2602 | dvb_dmxdev_release(&adapter->dmxdev); | ||
2603 | dvb_dmx_release(dvbdemux); | ||
2604 | |||
2605 | if (adapter->fe != NULL) | ||
2606 | dvb_unregister_frontend(adapter->fe); | ||
2607 | |||
2608 | dvb_unregister_adapter(&adapter->dvb_adapter); | ||
2609 | |||
2610 | i2c_del_adapter(&adapter->i2c_adap); | ||
2611 | |||
2612 | driver_halt(pdev); | ||
2613 | } | ||
2614 | |||
2615 | static struct pci_device_id skystar2_pci_tbl[] = { | ||
2616 | {0x000013d0, 0x00002103, 0xffffffff, 0xffffffff, 0x00000000, 0x00000000, 0x00000000}, | ||
2617 | /* {0x000013d0, 0x00002200, 0xffffffff, 0xffffffff, 0x00000000, 0x00000000, 0x00000000}, UNDEFINED HARDWARE - mail linuxtv.org list */ //FCIII | ||
2618 | {0,}, | ||
2619 | }; | ||
2620 | |||
2621 | MODULE_DEVICE_TABLE(pci, skystar2_pci_tbl); | ||
2622 | |||
2623 | static struct pci_driver skystar2_pci_driver = { | ||
2624 | .name = "SkyStar2", | ||
2625 | .id_table = skystar2_pci_tbl, | ||
2626 | .probe = skystar2_probe, | ||
2627 | .remove = skystar2_remove, | ||
2628 | }; | ||
2629 | |||
2630 | static int skystar2_init(void) | ||
2631 | { | ||
2632 | return pci_register_driver(&skystar2_pci_driver); | ||
2633 | } | ||
2634 | |||
2635 | static void skystar2_cleanup(void) | ||
2636 | { | ||
2637 | pci_unregister_driver(&skystar2_pci_driver); | ||
2638 | } | ||
2639 | |||
2640 | module_init(skystar2_init); | ||
2641 | module_exit(skystar2_cleanup); | ||
2642 | |||
2643 | MODULE_DESCRIPTION("Technisat SkyStar2 DVB PCI Driver"); | ||
2644 | MODULE_LICENSE("GPL"); | ||
diff --git a/drivers/media/dvb/bt8xx/dst.c b/drivers/media/dvb/bt8xx/dst.c index 1339912c308b..07a0b0a968a6 100644 --- a/drivers/media/dvb/bt8xx/dst.c +++ b/drivers/media/dvb/bt8xx/dst.c | |||
@@ -258,10 +258,10 @@ int write_dst(struct dst_state *state, u8 *data, u8 len) | |||
258 | if (debug && (verbose > 4)) { | 258 | if (debug && (verbose > 4)) { |
259 | u8 i; | 259 | u8 i; |
260 | if (verbose > 4) { | 260 | if (verbose > 4) { |
261 | dprintk("%s writing", __FUNCTION__); | 261 | dprintk("%s writing [ ", __FUNCTION__); |
262 | for (i = 0; i < len; i++) | 262 | for (i = 0; i < len; i++) |
263 | dprintk(" %02x", data[i]); | 263 | dprintk("%02x ", data[i]); |
264 | dprintk("\n"); | 264 | dprintk("]\n"); |
265 | } | 265 | } |
266 | } | 266 | } |
267 | for (cnt = 0; cnt < 2; cnt++) { | 267 | for (cnt = 0; cnt < 2; cnt++) { |
@@ -320,10 +320,29 @@ int read_dst(struct dst_state *state, u8 * ret, u8 len) | |||
320 | } | 320 | } |
321 | EXPORT_SYMBOL(read_dst); | 321 | EXPORT_SYMBOL(read_dst); |
322 | 322 | ||
323 | static int dst_set_freq(struct dst_state *state, u32 freq) | 323 | static int dst_set_polarization(struct dst_state *state) |
324 | { | 324 | { |
325 | u8 *val; | 325 | switch (state->voltage) { |
326 | case SEC_VOLTAGE_13: // vertical | ||
327 | printk("%s: Polarization=[Vertical]\n", __FUNCTION__); | ||
328 | state->tx_tuna[8] &= ~0x40; //1 | ||
329 | break; | ||
330 | |||
331 | case SEC_VOLTAGE_18: // horizontal | ||
332 | printk("%s: Polarization=[Horizontal]\n", __FUNCTION__); | ||
333 | state->tx_tuna[8] |= 0x40; // 0 | ||
334 | break; | ||
335 | |||
336 | case SEC_VOLTAGE_OFF: | ||
337 | |||
338 | break; | ||
339 | } | ||
340 | |||
341 | return 0; | ||
342 | } | ||
326 | 343 | ||
344 | static int dst_set_freq(struct dst_state *state, u32 freq) | ||
345 | { | ||
327 | state->frequency = freq; | 346 | state->frequency = freq; |
328 | if (debug > 4) | 347 | if (debug > 4) |
329 | dprintk("%s: set Frequency %u\n", __FUNCTION__, freq); | 348 | dprintk("%s: set Frequency %u\n", __FUNCTION__, freq); |
@@ -332,46 +351,30 @@ static int dst_set_freq(struct dst_state *state, u32 freq) | |||
332 | freq = freq / 1000; | 351 | freq = freq / 1000; |
333 | if (freq < 950 || freq > 2150) | 352 | if (freq < 950 || freq > 2150) |
334 | return -EINVAL; | 353 | return -EINVAL; |
335 | val = &state->tx_tuna[0]; | 354 | |
336 | val[2] = (freq >> 8) & 0x7f; | 355 | state->tx_tuna[2] = (freq >> 8); |
337 | val[3] = (u8) freq; | 356 | state->tx_tuna[3] = (u8) freq; |
338 | val[4] = 1; | 357 | state->tx_tuna[4] = 0x01; |
339 | val[8] &= ~4; | 358 | state->tx_tuna[8] &= ~0x04; |
340 | if (freq < 1531) | 359 | if (state->type_flags & DST_TYPE_HAS_OBS_REGS) { |
341 | val[8] |= 4; | 360 | if (freq < 1531) |
361 | state->tx_tuna[8] |= 0x04; | ||
362 | } | ||
363 | |||
342 | } else if (state->dst_type == DST_TYPE_IS_TERR) { | 364 | } else if (state->dst_type == DST_TYPE_IS_TERR) { |
343 | freq = freq / 1000; | 365 | freq = freq / 1000; |
344 | if (freq < 137000 || freq > 858000) | 366 | if (freq < 137000 || freq > 858000) |
345 | return -EINVAL; | 367 | return -EINVAL; |
346 | val = &state->tx_tuna[0]; | ||
347 | val[2] = (freq >> 16) & 0xff; | ||
348 | val[3] = (freq >> 8) & 0xff; | ||
349 | val[4] = (u8) freq; | ||
350 | val[5] = 0; | ||
351 | switch (state->bandwidth) { | ||
352 | case BANDWIDTH_6_MHZ: | ||
353 | val[6] = 6; | ||
354 | break; | ||
355 | 368 | ||
356 | case BANDWIDTH_7_MHZ: | 369 | state->tx_tuna[2] = (freq >> 16) & 0xff; |
357 | case BANDWIDTH_AUTO: | 370 | state->tx_tuna[3] = (freq >> 8) & 0xff; |
358 | val[6] = 7; | 371 | state->tx_tuna[4] = (u8) freq; |
359 | break; | ||
360 | 372 | ||
361 | case BANDWIDTH_8_MHZ: | ||
362 | val[6] = 8; | ||
363 | break; | ||
364 | } | ||
365 | |||
366 | val[7] = 0; | ||
367 | val[8] = 0; | ||
368 | } else if (state->dst_type == DST_TYPE_IS_CABLE) { | 373 | } else if (state->dst_type == DST_TYPE_IS_CABLE) { |
369 | /* guess till will get one */ | 374 | state->tx_tuna[2] = (freq >> 16) & 0xff; |
370 | freq = freq / 1000; | 375 | state->tx_tuna[3] = (freq >> 8) & 0xff; |
371 | val = &state->tx_tuna[0]; | 376 | state->tx_tuna[4] = (u8) freq; |
372 | val[2] = (freq >> 16) & 0xff; | 377 | |
373 | val[3] = (freq >> 8) & 0xff; | ||
374 | val[4] = (u8) freq; | ||
375 | } else | 378 | } else |
376 | return -EINVAL; | 379 | return -EINVAL; |
377 | return 0; | 380 | return 0; |
@@ -379,51 +382,58 @@ static int dst_set_freq(struct dst_state *state, u32 freq) | |||
379 | 382 | ||
380 | static int dst_set_bandwidth(struct dst_state* state, fe_bandwidth_t bandwidth) | 383 | static int dst_set_bandwidth(struct dst_state* state, fe_bandwidth_t bandwidth) |
381 | { | 384 | { |
382 | u8 *val; | ||
383 | |||
384 | state->bandwidth = bandwidth; | 385 | state->bandwidth = bandwidth; |
385 | 386 | ||
386 | if (state->dst_type != DST_TYPE_IS_TERR) | 387 | if (state->dst_type != DST_TYPE_IS_TERR) |
387 | return 0; | 388 | return 0; |
388 | 389 | ||
389 | val = &state->tx_tuna[0]; | ||
390 | switch (bandwidth) { | 390 | switch (bandwidth) { |
391 | case BANDWIDTH_6_MHZ: | 391 | case BANDWIDTH_6_MHZ: |
392 | val[6] = 6; | 392 | if (state->dst_hw_cap & DST_TYPE_HAS_CA) |
393 | break; | 393 | state->tx_tuna[7] = 0x06; |
394 | else { | ||
395 | state->tx_tuna[6] = 0x06; | ||
396 | state->tx_tuna[7] = 0x00; | ||
397 | } | ||
398 | break; | ||
394 | 399 | ||
395 | case BANDWIDTH_7_MHZ: | 400 | case BANDWIDTH_7_MHZ: |
396 | val[6] = 7; | 401 | if (state->dst_hw_cap & DST_TYPE_HAS_CA) |
397 | break; | 402 | state->tx_tuna[7] = 0x07; |
403 | else { | ||
404 | state->tx_tuna[6] = 0x07; | ||
405 | state->tx_tuna[7] = 0x00; | ||
406 | } | ||
407 | break; | ||
398 | 408 | ||
399 | case BANDWIDTH_8_MHZ: | 409 | case BANDWIDTH_8_MHZ: |
400 | val[6] = 8; | 410 | if (state->dst_hw_cap & DST_TYPE_HAS_CA) |
401 | break; | 411 | state->tx_tuna[7] = 0x08; |
412 | else { | ||
413 | state->tx_tuna[6] = 0x08; | ||
414 | state->tx_tuna[7] = 0x00; | ||
415 | } | ||
416 | break; | ||
402 | 417 | ||
403 | default: | 418 | default: |
404 | return -EINVAL; | 419 | return -EINVAL; |
405 | } | 420 | } |
406 | return 0; | 421 | return 0; |
407 | } | 422 | } |
408 | 423 | ||
409 | static int dst_set_inversion(struct dst_state* state, fe_spectral_inversion_t inversion) | 424 | static int dst_set_inversion(struct dst_state* state, fe_spectral_inversion_t inversion) |
410 | { | 425 | { |
411 | u8 *val; | ||
412 | |||
413 | state->inversion = inversion; | 426 | state->inversion = inversion; |
414 | |||
415 | val = &state->tx_tuna[0]; | ||
416 | |||
417 | val[8] &= ~0x80; | ||
418 | |||
419 | switch (inversion) { | 427 | switch (inversion) { |
420 | case INVERSION_OFF: | 428 | case INVERSION_OFF: // Inversion = Normal |
421 | break; | 429 | state->tx_tuna[8] &= ~0x80; |
422 | case INVERSION_ON: | 430 | break; |
423 | val[8] |= 0x80; | 431 | |
424 | break; | 432 | case INVERSION_ON: |
425 | default: | 433 | state->tx_tuna[8] |= 0x80; |
426 | return -EINVAL; | 434 | break; |
435 | default: | ||
436 | return -EINVAL; | ||
427 | } | 437 | } |
428 | return 0; | 438 | return 0; |
429 | } | 439 | } |
@@ -478,6 +488,52 @@ static int dst_set_symbolrate(struct dst_state* state, u32 srate) | |||
478 | return 0; | 488 | return 0; |
479 | } | 489 | } |
480 | 490 | ||
491 | |||
492 | static int dst_set_modulation(struct dst_state *state, fe_modulation_t modulation) | ||
493 | { | ||
494 | if (state->dst_type != DST_TYPE_IS_CABLE) | ||
495 | return 0; | ||
496 | |||
497 | state->modulation = modulation; | ||
498 | switch (modulation) { | ||
499 | case QAM_16: | ||
500 | state->tx_tuna[8] = 0x10; | ||
501 | break; | ||
502 | |||
503 | case QAM_32: | ||
504 | state->tx_tuna[8] = 0x20; | ||
505 | break; | ||
506 | |||
507 | case QAM_64: | ||
508 | state->tx_tuna[8] = 0x40; | ||
509 | break; | ||
510 | |||
511 | case QAM_128: | ||
512 | state->tx_tuna[8] = 0x80; | ||
513 | break; | ||
514 | |||
515 | case QAM_256: | ||
516 | state->tx_tuna[8] = 0x00; | ||
517 | break; | ||
518 | |||
519 | case QPSK: | ||
520 | case QAM_AUTO: | ||
521 | case VSB_8: | ||
522 | case VSB_16: | ||
523 | default: | ||
524 | return -EINVAL; | ||
525 | |||
526 | } | ||
527 | |||
528 | return 0; | ||
529 | } | ||
530 | |||
531 | static fe_modulation_t dst_get_modulation(struct dst_state *state) | ||
532 | { | ||
533 | return state->modulation; | ||
534 | } | ||
535 | |||
536 | |||
481 | u8 dst_check_sum(u8 * buf, u32 len) | 537 | u8 dst_check_sum(u8 * buf, u32 len) |
482 | { | 538 | { |
483 | u32 i; | 539 | u32 i; |
@@ -577,7 +633,7 @@ struct dst_types dst_tlist[] = { | |||
577 | .device_id = "200103A", | 633 | .device_id = "200103A", |
578 | .offset = 0, | 634 | .offset = 0, |
579 | .dst_type = DST_TYPE_IS_SAT, | 635 | .dst_type = DST_TYPE_IS_SAT, |
580 | .type_flags = DST_TYPE_HAS_SYMDIV | DST_TYPE_HAS_FW_1, | 636 | .type_flags = DST_TYPE_HAS_SYMDIV | DST_TYPE_HAS_FW_1 | DST_TYPE_HAS_OBS_REGS, |
581 | .dst_feature = 0 | 637 | .dst_feature = 0 |
582 | }, /* obsolete */ | 638 | }, /* obsolete */ |
583 | 639 | ||
@@ -626,7 +682,7 @@ struct dst_types dst_tlist[] = { | |||
626 | .device_id = "DSTMCI", | 682 | .device_id = "DSTMCI", |
627 | .offset = 1, | 683 | .offset = 1, |
628 | .dst_type = DST_TYPE_IS_SAT, | 684 | .dst_type = DST_TYPE_IS_SAT, |
629 | .type_flags = DST_TYPE_HAS_NEWTUNE | DST_TYPE_HAS_FW_2 | DST_TYPE_HAS_FW_BUILD, | 685 | .type_flags = DST_TYPE_HAS_NEWTUNE | DST_TYPE_HAS_FW_2 | DST_TYPE_HAS_FW_BUILD | DST_TYPE_HAS_INC_COUNT, |
630 | .dst_feature = DST_TYPE_HAS_CA | DST_TYPE_HAS_DISEQC3 | DST_TYPE_HAS_DISEQC4 | 686 | .dst_feature = DST_TYPE_HAS_CA | DST_TYPE_HAS_DISEQC3 | DST_TYPE_HAS_DISEQC4 |
631 | | DST_TYPE_HAS_MOTO | DST_TYPE_HAS_MAC | 687 | | DST_TYPE_HAS_MOTO | DST_TYPE_HAS_MAC |
632 | }, | 688 | }, |
@@ -872,7 +928,7 @@ static int dst_get_signal(struct dst_state* state) | |||
872 | { | 928 | { |
873 | int retval; | 929 | int retval; |
874 | u8 get_signal[] = { 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfb }; | 930 | u8 get_signal[] = { 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfb }; |
875 | 931 | dprintk("%s: Getting Signal strength and other parameters\n", __FUNCTION__); | |
876 | if ((state->diseq_flags & ATTEMPT_TUNE) == 0) { | 932 | if ((state->diseq_flags & ATTEMPT_TUNE) == 0) { |
877 | state->decode_lock = state->decode_strength = state->decode_snr = 0; | 933 | state->decode_lock = state->decode_strength = state->decode_snr = 0; |
878 | return 0; | 934 | return 0; |
@@ -954,15 +1010,8 @@ static int dst_get_tuna(struct dst_state* state) | |||
954 | state->decode_freq = ((state->rx_tuna[2] & 0x7f) << 8) + state->rx_tuna[3]; | 1010 | state->decode_freq = ((state->rx_tuna[2] & 0x7f) << 8) + state->rx_tuna[3]; |
955 | 1011 | ||
956 | state->decode_lock = 1; | 1012 | state->decode_lock = 1; |
957 | /* | ||
958 | dst->decode_n1 = (dst->rx_tuna[4] << 8) + | ||
959 | (dst->rx_tuna[5]); | ||
960 | |||
961 | dst->decode_n2 = (dst->rx_tuna[8] << 8) + | ||
962 | (dst->rx_tuna[7]); | ||
963 | */ | ||
964 | state->diseq_flags |= HAS_LOCK; | 1013 | state->diseq_flags |= HAS_LOCK; |
965 | /* dst->cur_jiff = jiffies; */ | 1014 | |
966 | return 1; | 1015 | return 1; |
967 | } | 1016 | } |
968 | 1017 | ||
@@ -1098,7 +1147,11 @@ static int dst_set_tone(struct dvb_frontend* fe, fe_sec_tone_mode_t tone) | |||
1098 | 1147 | ||
1099 | switch (tone) { | 1148 | switch (tone) { |
1100 | case SEC_TONE_OFF: | 1149 | case SEC_TONE_OFF: |
1101 | state->tx_tuna[2] = 0xff; | 1150 | if (state->type_flags & DST_TYPE_HAS_OBS_REGS) |
1151 | state->tx_tuna[2] = 0x00; | ||
1152 | else | ||
1153 | state->tx_tuna[2] = 0xff; | ||
1154 | |||
1102 | break; | 1155 | break; |
1103 | 1156 | ||
1104 | case SEC_TONE_ON: | 1157 | case SEC_TONE_ON: |
@@ -1145,7 +1198,8 @@ static int dst_init(struct dvb_frontend* fe) | |||
1145 | static u8 ini_tvci_tuna[] = { 9, 0, 3, 0xb6, 1, 7, 0x0, 0x0, 0, 0 }; | 1198 | static u8 ini_tvci_tuna[] = { 9, 0, 3, 0xb6, 1, 7, 0x0, 0x0, 0, 0 }; |
1146 | static u8 ini_cabfta_tuna[] = { 0, 0, 3, 0xb6, 1, 7, 0x0, 0x0, 0, 0 }; | 1199 | static u8 ini_cabfta_tuna[] = { 0, 0, 3, 0xb6, 1, 7, 0x0, 0x0, 0, 0 }; |
1147 | static u8 ini_cabci_tuna[] = { 9, 0, 3, 0xb6, 1, 7, 0x0, 0x0, 0, 0 }; | 1200 | static u8 ini_cabci_tuna[] = { 9, 0, 3, 0xb6, 1, 7, 0x0, 0x0, 0, 0 }; |
1148 | state->inversion = INVERSION_ON; | 1201 | // state->inversion = INVERSION_ON; |
1202 | state->inversion = INVERSION_OFF; | ||
1149 | state->voltage = SEC_VOLTAGE_13; | 1203 | state->voltage = SEC_VOLTAGE_13; |
1150 | state->tone = SEC_TONE_OFF; | 1204 | state->tone = SEC_TONE_OFF; |
1151 | state->symbol_rate = 29473000; | 1205 | state->symbol_rate = 29473000; |
@@ -1174,7 +1228,7 @@ static int dst_read_status(struct dvb_frontend* fe, fe_status_t* status) | |||
1174 | 1228 | ||
1175 | *status = 0; | 1229 | *status = 0; |
1176 | if (state->diseq_flags & HAS_LOCK) { | 1230 | if (state->diseq_flags & HAS_LOCK) { |
1177 | dst_get_signal(state); | 1231 | // dst_get_signal(state); // don't require(?) to ask MCU |
1178 | if (state->decode_lock) | 1232 | if (state->decode_lock) |
1179 | *status |= FE_HAS_LOCK | FE_HAS_SIGNAL | FE_HAS_CARRIER | FE_HAS_SYNC | FE_HAS_VITERBI; | 1233 | *status |= FE_HAS_LOCK | FE_HAS_SIGNAL | FE_HAS_CARRIER | FE_HAS_SYNC | FE_HAS_VITERBI; |
1180 | } | 1234 | } |
@@ -1208,20 +1262,25 @@ static int dst_set_frontend(struct dvb_frontend* fe, struct dvb_frontend_paramet | |||
1208 | 1262 | ||
1209 | dst_set_freq(state, p->frequency); | 1263 | dst_set_freq(state, p->frequency); |
1210 | if (verbose > 4) | 1264 | if (verbose > 4) |
1211 | dprintk("Set Frequency = [%d]\n", p->frequency); | 1265 | dprintk("Set Frequency=[%d]\n", p->frequency); |
1212 | 1266 | ||
1213 | dst_set_inversion(state, p->inversion); | 1267 | // dst_set_inversion(state, p->inversion); |
1214 | if (state->dst_type == DST_TYPE_IS_SAT) { | 1268 | if (state->dst_type == DST_TYPE_IS_SAT) { |
1269 | if (state->type_flags & DST_TYPE_HAS_OBS_REGS) | ||
1270 | dst_set_inversion(state, p->inversion); | ||
1271 | |||
1215 | dst_set_fec(state, p->u.qpsk.fec_inner); | 1272 | dst_set_fec(state, p->u.qpsk.fec_inner); |
1216 | dst_set_symbolrate(state, p->u.qpsk.symbol_rate); | 1273 | dst_set_symbolrate(state, p->u.qpsk.symbol_rate); |
1274 | dst_set_polarization(state); | ||
1217 | if (verbose > 4) | 1275 | if (verbose > 4) |
1218 | dprintk("Set Symbolrate = [%d]\n", p->u.qpsk.symbol_rate); | 1276 | dprintk("Set Symbolrate=[%d]\n", p->u.qpsk.symbol_rate); |
1219 | 1277 | ||
1220 | } else if (state->dst_type == DST_TYPE_IS_TERR) { | 1278 | } else if (state->dst_type == DST_TYPE_IS_TERR) { |
1221 | dst_set_bandwidth(state, p->u.ofdm.bandwidth); | 1279 | dst_set_bandwidth(state, p->u.ofdm.bandwidth); |
1222 | } else if (state->dst_type == DST_TYPE_IS_CABLE) { | 1280 | } else if (state->dst_type == DST_TYPE_IS_CABLE) { |
1223 | dst_set_fec(state, p->u.qam.fec_inner); | 1281 | dst_set_fec(state, p->u.qam.fec_inner); |
1224 | dst_set_symbolrate(state, p->u.qam.symbol_rate); | 1282 | dst_set_symbolrate(state, p->u.qam.symbol_rate); |
1283 | dst_set_modulation(state, p->u.qam.modulation); | ||
1225 | } | 1284 | } |
1226 | dst_write_tuna(fe); | 1285 | dst_write_tuna(fe); |
1227 | 1286 | ||
@@ -1233,8 +1292,11 @@ static int dst_get_frontend(struct dvb_frontend* fe, struct dvb_frontend_paramet | |||
1233 | struct dst_state* state = fe->demodulator_priv; | 1292 | struct dst_state* state = fe->demodulator_priv; |
1234 | 1293 | ||
1235 | p->frequency = state->decode_freq; | 1294 | p->frequency = state->decode_freq; |
1236 | p->inversion = state->inversion; | 1295 | // p->inversion = state->inversion; |
1237 | if (state->dst_type == DST_TYPE_IS_SAT) { | 1296 | if (state->dst_type == DST_TYPE_IS_SAT) { |
1297 | if (state->type_flags & DST_TYPE_HAS_OBS_REGS) | ||
1298 | p->inversion = state->inversion; | ||
1299 | |||
1238 | p->u.qpsk.symbol_rate = state->symbol_rate; | 1300 | p->u.qpsk.symbol_rate = state->symbol_rate; |
1239 | p->u.qpsk.fec_inner = dst_get_fec(state); | 1301 | p->u.qpsk.fec_inner = dst_get_fec(state); |
1240 | } else if (state->dst_type == DST_TYPE_IS_TERR) { | 1302 | } else if (state->dst_type == DST_TYPE_IS_TERR) { |
@@ -1242,7 +1304,8 @@ static int dst_get_frontend(struct dvb_frontend* fe, struct dvb_frontend_paramet | |||
1242 | } else if (state->dst_type == DST_TYPE_IS_CABLE) { | 1304 | } else if (state->dst_type == DST_TYPE_IS_CABLE) { |
1243 | p->u.qam.symbol_rate = state->symbol_rate; | 1305 | p->u.qam.symbol_rate = state->symbol_rate; |
1244 | p->u.qam.fec_inner = dst_get_fec(state); | 1306 | p->u.qam.fec_inner = dst_get_fec(state); |
1245 | p->u.qam.modulation = QAM_AUTO; | 1307 | // p->u.qam.modulation = QAM_AUTO; |
1308 | p->u.qam.modulation = dst_get_modulation(state); | ||
1246 | } | 1309 | } |
1247 | 1310 | ||
1248 | return 0; | 1311 | return 0; |
diff --git a/drivers/media/dvb/bt8xx/dst_ca.c b/drivers/media/dvb/bt8xx/dst_ca.c index d781504cc2fa..bfaacd5fc20f 100644 --- a/drivers/media/dvb/bt8xx/dst_ca.c +++ b/drivers/media/dvb/bt8xx/dst_ca.c | |||
@@ -32,7 +32,7 @@ | |||
32 | #include "dst_ca.h" | 32 | #include "dst_ca.h" |
33 | #include "dst_common.h" | 33 | #include "dst_common.h" |
34 | 34 | ||
35 | static unsigned int verbose = 1; | 35 | static unsigned int verbose = 5; |
36 | module_param(verbose, int, 0644); | 36 | module_param(verbose, int, 0644); |
37 | MODULE_PARM_DESC(verbose, "verbose startup messages, default is 1 (yes)"); | 37 | MODULE_PARM_DESC(verbose, "verbose startup messages, default is 1 (yes)"); |
38 | 38 | ||
@@ -295,34 +295,28 @@ static int ca_get_message(struct dst_state *state, struct ca_msg *p_ca_message, | |||
295 | return 0; | 295 | return 0; |
296 | } | 296 | } |
297 | 297 | ||
298 | static int handle_en50221_tag(struct dst_state *state, struct ca_msg *p_ca_message, struct ca_msg *hw_buffer) | 298 | static int handle_dst_tag(struct dst_state *state, struct ca_msg *p_ca_message, struct ca_msg *hw_buffer, u32 length) |
299 | { | 299 | { |
300 | if (state->dst_hw_cap & DST_TYPE_HAS_SESSION) { | 300 | if (state->dst_hw_cap & DST_TYPE_HAS_SESSION) { |
301 | hw_buffer->msg[2] = p_ca_message->msg[1]; /* MSB */ | 301 | hw_buffer->msg[2] = p_ca_message->msg[1]; /* MSB */ |
302 | hw_buffer->msg[3] = p_ca_message->msg[2]; /* LSB */ | 302 | hw_buffer->msg[3] = p_ca_message->msg[2]; /* LSB */ |
303 | } | 303 | } |
304 | else { | 304 | else { |
305 | hw_buffer->msg[0] = (length & 0xff) + 7; | ||
306 | hw_buffer->msg[1] = 0x40; | ||
305 | hw_buffer->msg[2] = 0x03; | 307 | hw_buffer->msg[2] = 0x03; |
306 | hw_buffer->msg[3] = 0x00; | 308 | hw_buffer->msg[3] = 0x00; |
309 | hw_buffer->msg[4] = 0x03; | ||
310 | hw_buffer->msg[5] = length & 0xff; | ||
311 | hw_buffer->msg[6] = 0x00; | ||
307 | } | 312 | } |
308 | return 0; | 313 | return 0; |
309 | } | 314 | } |
310 | 315 | ||
311 | static int debug_8820_buffer(struct ca_msg *hw_buffer) | ||
312 | { | ||
313 | unsigned int i; | ||
314 | |||
315 | dprintk("%s:Debug=[", __FUNCTION__); | ||
316 | for (i = 0; i < (hw_buffer->msg[0] + 1); i++) | ||
317 | dprintk(" %02x", hw_buffer->msg[i]); | ||
318 | dprintk("]\n"); | ||
319 | |||
320 | return 0; | ||
321 | } | ||
322 | 316 | ||
323 | static int write_to_8820(struct dst_state *state, struct ca_msg *hw_buffer, u8 reply) | 317 | static int write_to_8820(struct dst_state *state, struct ca_msg *hw_buffer, u8 length, u8 reply) |
324 | { | 318 | { |
325 | if ((dst_put_ci(state, hw_buffer->msg, (hw_buffer->length + 1), hw_buffer->msg, reply)) < 0) { | 319 | if ((dst_put_ci(state, hw_buffer->msg, length, hw_buffer->msg, reply)) < 0) { |
326 | dprintk("%s: DST-CI Command failed.\n", __FUNCTION__); | 320 | dprintk("%s: DST-CI Command failed.\n", __FUNCTION__); |
327 | dprintk("%s: Resetting DST.\n", __FUNCTION__); | 321 | dprintk("%s: Resetting DST.\n", __FUNCTION__); |
328 | rdc_reset_state(state); | 322 | rdc_reset_state(state); |
@@ -334,234 +328,141 @@ static int write_to_8820(struct dst_state *state, struct ca_msg *hw_buffer, u8 r | |||
334 | return 0; | 328 | return 0; |
335 | } | 329 | } |
336 | 330 | ||
337 | 331 | u32 asn_1_decode(u8 *asn_1_array) | |
338 | static int ca_set_pmt(struct dst_state *state, struct ca_msg *p_ca_message, struct ca_msg *hw_buffer, u8 reply, u8 query) | ||
339 | { | 332 | { |
340 | u32 hw_offset, buf_offset, i, k; | 333 | u8 length_field = 0, word_count = 0, count = 0; |
341 | u32 program_info_length = 0, es_info_length = 0, length = 0, words = 0; | 334 | u32 length = 0; |
342 | u8 found_prog_ca_desc = 0, found_stream_ca_desc = 0, error_condition = 0, hw_buffer_length = 0; | 335 | |
343 | 336 | length_field = asn_1_array[0]; | |
344 | if (verbose > 3) | 337 | dprintk("%s: Length field=[%02x]\n", __FUNCTION__, length_field); |
345 | dprintk("%s, p_ca_message length %d (0x%x)\n", __FUNCTION__,p_ca_message->length,p_ca_message->length ); | 338 | if (length_field < 0x80) { |
346 | 339 | length = length_field & 0x7f; | |
347 | handle_en50221_tag(state, p_ca_message, hw_buffer); /* EN50221 tag */ | 340 | dprintk("%s: Length=[%02x]\n", __FUNCTION__, length); |
348 | 341 | } else { | |
349 | /* Handle the length field (variable) */ | 342 | word_count = length_field & 0x7f; |
350 | if (!(p_ca_message->msg[3] & 0x80)) { /* Length = 1 */ | 343 | for (count = 0; count < word_count; count++) { |
351 | length = p_ca_message->msg[3] & 0x7f; | 344 | length = (length | asn_1_array[count + 1]) << 8; |
352 | words = 0; /* domi's suggestion */ | 345 | dprintk("%s: Length=[%04x]\n", __FUNCTION__, length); |
353 | } | ||
354 | else { /* Length = words */ | ||
355 | words = p_ca_message->msg[3] & 0x7f; | ||
356 | for (i = 0; i < words; i++) { | ||
357 | length = length << 8; | ||
358 | length = length | p_ca_message->msg[4 + i]; | ||
359 | } | 346 | } |
360 | } | 347 | } |
361 | if (verbose > 4) { | 348 | return length; |
362 | dprintk("%s:Length=[%d (0x%x)], Words=[%d]\n", __FUNCTION__, length,length, words); | 349 | } |
363 | |||
364 | /* Debug Input string */ | ||
365 | for (i = 0; i < length; i++) | ||
366 | dprintk(" %02x", p_ca_message->msg[i]); | ||
367 | dprintk("]\n"); | ||
368 | } | ||
369 | |||
370 | hw_offset = 7; | ||
371 | buf_offset = words + 4; | ||
372 | |||
373 | /* Program Header */ | ||
374 | if (verbose > 4) | ||
375 | dprintk("\n%s:Program Header=[", __FUNCTION__); | ||
376 | for (i = 0; i < 6; i++) { | ||
377 | hw_buffer->msg[hw_offset] = p_ca_message->msg[buf_offset]; | ||
378 | if (verbose > 4) | ||
379 | dprintk(" %02x", p_ca_message->msg[buf_offset]); | ||
380 | hw_offset++, buf_offset++, hw_buffer_length++; | ||
381 | } | ||
382 | if (verbose > 4) | ||
383 | dprintk("]\n"); | ||
384 | 350 | ||
385 | program_info_length = 0; | 351 | static int init_buffer(u8 *buffer, u32 length) |
386 | program_info_length = (((program_info_length | p_ca_message->msg[words + 8]) & 0x0f) << 8) | p_ca_message->msg[words + 9]; | 352 | { |
387 | if (verbose > 4) | 353 | u32 i; |
388 | dprintk("%s:Program info Length=[%d][%02x], hw_offset=[%d], buf_offset=[%d] \n", | 354 | for (i = 0; i < length; i++) |
389 | __FUNCTION__, program_info_length, program_info_length, hw_offset, buf_offset); | 355 | buffer[i] = 0; |
390 | 356 | ||
391 | if (program_info_length && (program_info_length < 256)) { /* If program_info_length */ | 357 | return 0; |
392 | hw_buffer->msg[11] = hw_buffer->msg[11] & 0x0f; /* req only 4 bits */ | 358 | } |
393 | hw_buffer->msg[12] = hw_buffer->msg[12] + 1; /* increment! ASIC bug! */ | ||
394 | 359 | ||
395 | if (p_ca_message->msg[buf_offset + 1] == 0x09) { /* Check CA descriptor */ | 360 | static int debug_string(u8 *msg, u32 length, u32 offset) |
396 | found_prog_ca_desc = 1; | 361 | { |
397 | if (verbose > 4) | 362 | u32 i; |
398 | dprintk("%s: Found CA descriptor @ Program level\n", __FUNCTION__); | ||
399 | } | ||
400 | 363 | ||
401 | if (found_prog_ca_desc) { /* Command only if CA descriptor */ | 364 | dprintk(" String=[ "); |
402 | hw_buffer->msg[13] = p_ca_message->msg[buf_offset]; /* CA PMT command ID */ | 365 | for (i = offset; i < length; i++) |
403 | hw_offset++, buf_offset++, hw_buffer_length++; | 366 | dprintk("%02x ", msg[i]); |
404 | } | 367 | dprintk("]\n"); |
405 | 368 | ||
406 | /* Program descriptors */ | 369 | return 0; |
407 | if (verbose > 4) { | 370 | } |
408 | dprintk("%s:**********>buf_offset=[%d], hw_offset=[%d]\n", __FUNCTION__, buf_offset, hw_offset); | ||
409 | dprintk("%s:Program descriptors=[", __FUNCTION__); | ||
410 | } | ||
411 | while (program_info_length && !error_condition) { /* Copy prog descriptors */ | ||
412 | if (program_info_length > p_ca_message->length) { /* Error situation */ | ||
413 | dprintk ("%s:\"WARNING\" Length error, line=[%d], prog_info_length=[%d]\n", | ||
414 | __FUNCTION__, __LINE__, program_info_length); | ||
415 | dprintk("%s:\"WARNING\" Bailing out of possible loop\n", __FUNCTION__); | ||
416 | error_condition = 1; | ||
417 | break; | ||
418 | } | ||
419 | 371 | ||
420 | hw_buffer->msg[hw_offset] = p_ca_message->msg[buf_offset]; | 372 | static int copy_string(u8 *destination, u8 *source, u32 dest_offset, u32 source_offset, u32 length) |
421 | dprintk(" %02x", p_ca_message->msg[buf_offset]); | 373 | { |
422 | hw_offset++, buf_offset++, hw_buffer_length++, program_info_length--; | 374 | u32 i; |
423 | } | 375 | dprintk("%s: Copying [", __FUNCTION__); |
424 | if (verbose > 4) { | 376 | for (i = 0; i < length; i++) { |
425 | dprintk("]\n"); | 377 | destination[i + dest_offset] = source[i + source_offset]; |
426 | dprintk("%s:**********>buf_offset=[%d], hw_offset=[%d]\n", __FUNCTION__, buf_offset, hw_offset); | 378 | dprintk(" %02x", source[i + source_offset]); |
427 | } | ||
428 | if (found_prog_ca_desc) { | ||
429 | if (!reply) { | ||
430 | hw_buffer->msg[13] = 0x01; /* OK descrambling */ | ||
431 | if (verbose > 1) | ||
432 | dprintk("CA PMT Command = OK Descrambling\n"); | ||
433 | } | ||
434 | else { | ||
435 | hw_buffer->msg[13] = 0x02; /* Ok MMI */ | ||
436 | if (verbose > 1) | ||
437 | dprintk("CA PMT Command = Ok MMI\n"); | ||
438 | } | ||
439 | if (query) { | ||
440 | hw_buffer->msg[13] = 0x03; /* Query */ | ||
441 | if (verbose > 1) | ||
442 | dprintk("CA PMT Command = CA PMT query\n"); | ||
443 | } | ||
444 | } | ||
445 | } | ||
446 | else { | ||
447 | hw_buffer->msg[11] = hw_buffer->msg[11] & 0xf0; /* Don't write to ASIC */ | ||
448 | hw_buffer->msg[12] = hw_buffer->msg[12] = 0x00; | ||
449 | } | 379 | } |
450 | if (verbose > 4) | 380 | dprintk("]\n"); |
451 | dprintk("%s:**********>p_ca_message->length=[%d], buf_offset=[%d], hw_offset=[%d]\n", | ||
452 | __FUNCTION__, p_ca_message->length, buf_offset, hw_offset); | ||
453 | |||
454 | while ((buf_offset < p_ca_message->length) && !error_condition) { | ||
455 | /* Bail out in case of an indefinite loop */ | ||
456 | if ((es_info_length > p_ca_message->length) || (buf_offset > p_ca_message->length)) { | ||
457 | dprintk("%s:\"WARNING\" Length error, line=[%d], prog_info_length=[%d], buf_offset=[%d]\n", | ||
458 | __FUNCTION__, __LINE__, program_info_length, buf_offset); | ||
459 | |||
460 | dprintk("%s:\"WARNING\" Bailing out of possible loop\n", __FUNCTION__); | ||
461 | error_condition = 1; | ||
462 | break; | ||
463 | } | ||
464 | |||
465 | /* Stream Header */ | ||
466 | |||
467 | for (k = 0; k < 5; k++) { | ||
468 | hw_buffer->msg[hw_offset + k] = p_ca_message->msg[buf_offset + k]; | ||
469 | } | ||
470 | 381 | ||
471 | es_info_length = 0; | 382 | return i; |
472 | es_info_length = (es_info_length | (p_ca_message->msg[buf_offset + 3] & 0x0f)) << 8 | p_ca_message->msg[buf_offset + 4]; | 383 | } |
473 | 384 | ||
474 | if (verbose > 4) { | 385 | static int modify_4_bits(u8 *message, u32 pos) |
475 | dprintk("\n%s:----->Stream header=[%02x %02x %02x %02x %02x]\n", __FUNCTION__, | 386 | { |
476 | p_ca_message->msg[buf_offset + 0], p_ca_message->msg[buf_offset + 1], | 387 | message[pos] &= 0x0f; |
477 | p_ca_message->msg[buf_offset + 2], p_ca_message->msg[buf_offset + 3], | ||
478 | p_ca_message->msg[buf_offset + 4]); | ||
479 | 388 | ||
480 | dprintk("%s:----->Stream type=[%02x], es length=[%d (0x%x)], Chars=[%02x] [%02x], buf_offset=[%d]\n", __FUNCTION__, | 389 | return 0; |
481 | p_ca_message->msg[buf_offset + 0], es_info_length, es_info_length, | 390 | } |
482 | p_ca_message->msg[buf_offset + 3], p_ca_message->msg[buf_offset + 4], buf_offset); | ||
483 | } | ||
484 | 391 | ||
485 | hw_buffer->msg[hw_offset + 3] &= 0x0f; /* req only 4 bits */ | ||
486 | 392 | ||
487 | if (found_prog_ca_desc) { | ||
488 | hw_buffer->msg[hw_offset + 3] = 0x00; | ||
489 | hw_buffer->msg[hw_offset + 4] = 0x00; | ||
490 | } | ||
491 | 393 | ||
492 | hw_offset += 5, buf_offset += 5, hw_buffer_length += 5; | 394 | static int ca_set_pmt(struct dst_state *state, struct ca_msg *p_ca_message, struct ca_msg *hw_buffer, u8 reply, u8 query) |
395 | { | ||
396 | u32 length = 0, count = 0; | ||
397 | u8 asn_1_words, program_header_length; | ||
398 | u16 program_info_length = 0, es_info_length = 0; | ||
399 | u32 hw_offset = 0, buf_offset = 0, i; | ||
400 | u8 dst_tag_length; | ||
493 | 401 | ||
494 | /* Check for CA descriptor */ | 402 | length = asn_1_decode(&p_ca_message->msg[3]); |
495 | if (p_ca_message->msg[buf_offset + 1] == 0x09) { | 403 | dprintk("%s: CA Message length=[%d]\n", __FUNCTION__, length); |
496 | if (verbose > 4) | 404 | dprintk("%s: ASN.1 ", __FUNCTION__); |
497 | dprintk("%s:Found CA descriptor @ Stream level\n", __FUNCTION__); | 405 | debug_string(&p_ca_message->msg[4], length, 0); // length does not include tag and length |
498 | found_stream_ca_desc = 1; | ||
499 | } | ||
500 | 406 | ||
501 | /* ES descriptors */ | 407 | init_buffer(hw_buffer->msg, length); |
502 | 408 | handle_dst_tag(state, p_ca_message, hw_buffer, length); | |
503 | if (es_info_length && !error_condition && !found_prog_ca_desc && found_stream_ca_desc) { | ||
504 | // if (!ca_pmt_done) { | ||
505 | hw_buffer->msg[hw_offset] = p_ca_message->msg[buf_offset]; /* CA PMT cmd(es) */ | ||
506 | if (verbose > 4) | ||
507 | printk("%s:----->CA PMT Command ID=[%02x]\n", __FUNCTION__, p_ca_message->msg[buf_offset]); | ||
508 | // hw_offset++, buf_offset++, hw_buffer_length++, es_info_length--, ca_pmt_done = 1; | ||
509 | hw_offset++, buf_offset++, hw_buffer_length++, es_info_length--; | ||
510 | // } | ||
511 | if (verbose > 4) | ||
512 | dprintk("%s:----->ES descriptors=[", __FUNCTION__); | ||
513 | |||
514 | while (es_info_length && !error_condition) { /* ES descriptors */ | ||
515 | if ((es_info_length > p_ca_message->length) || (buf_offset > p_ca_message->length)) { | ||
516 | if (verbose > 4) { | ||
517 | dprintk("%s:\"WARNING\" ES Length error, line=[%d], es_info_length=[%d], buf_offset=[%d]\n", | ||
518 | __FUNCTION__, __LINE__, es_info_length, buf_offset); | ||
519 | |||
520 | dprintk("%s:\"WARNING\" Bailing out of possible loop\n", __FUNCTION__); | ||
521 | } | ||
522 | error_condition = 1; | ||
523 | break; | ||
524 | } | ||
525 | 409 | ||
526 | hw_buffer->msg[hw_offset] = p_ca_message->msg[buf_offset]; | 410 | hw_offset = 7; |
527 | if (verbose > 3) | 411 | asn_1_words = 1; // just a hack to test, should compute this one |
528 | dprintk("%02x ", hw_buffer->msg[hw_offset]); | 412 | buf_offset = 3; |
529 | hw_offset++, buf_offset++, hw_buffer_length++, es_info_length--; | 413 | program_header_length = 6; |
530 | } | 414 | dst_tag_length = 7; |
531 | found_stream_ca_desc = 0; /* unset for new streams */ | 415 | |
532 | dprintk("]\n"); | 416 | // debug_twinhan_ca_params(state, p_ca_message, hw_buffer, reply, query, length, hw_offset, buf_offset); |
417 | // dprintk("%s: Program Header(BUF)", __FUNCTION__); | ||
418 | // debug_string(&p_ca_message->msg[4], program_header_length, 0); | ||
419 | // dprintk("%s: Copying Program header\n", __FUNCTION__); | ||
420 | copy_string(hw_buffer->msg, p_ca_message->msg, hw_offset, (buf_offset + asn_1_words), program_header_length); | ||
421 | buf_offset += program_header_length, hw_offset += program_header_length; | ||
422 | modify_4_bits(hw_buffer->msg, (hw_offset - 2)); | ||
423 | if (state->type_flags & DST_TYPE_HAS_INC_COUNT) { // workaround | ||
424 | dprintk("%s: Probably an ASIC bug !!!\n", __FUNCTION__); | ||
425 | debug_string(hw_buffer->msg, (hw_offset + program_header_length), 0); | ||
426 | hw_buffer->msg[hw_offset - 1] += 1; | ||
427 | } | ||
428 | |||
429 | // dprintk("%s: Program Header(HW), Count=[%d]", __FUNCTION__, count); | ||
430 | // debug_string(hw_buffer->msg, hw_offset, 0); | ||
431 | |||
432 | program_info_length = ((program_info_length | (p_ca_message->msg[buf_offset - 1] & 0x0f)) << 8) | p_ca_message->msg[buf_offset]; | ||
433 | dprintk("%s: Program info length=[%02x]\n", __FUNCTION__, program_info_length); | ||
434 | if (program_info_length) { | ||
435 | count = copy_string(hw_buffer->msg, p_ca_message->msg, hw_offset, (buf_offset + 1), (program_info_length + 1) ); // copy next elem, not current | ||
436 | buf_offset += count, hw_offset += count; | ||
437 | // dprintk("%s: Program level ", __FUNCTION__); | ||
438 | // debug_string(hw_buffer->msg, hw_offset, 0); | ||
439 | } | ||
440 | |||
441 | buf_offset += 1;// hw_offset += 1; | ||
442 | for (i = buf_offset; i < length; i++) { | ||
443 | // dprintk("%s: Stream Header ", __FUNCTION__); | ||
444 | count = copy_string(hw_buffer->msg, p_ca_message->msg, hw_offset, buf_offset, 5); | ||
445 | modify_4_bits(hw_buffer->msg, (hw_offset + 3)); | ||
446 | |||
447 | hw_offset += 5, buf_offset += 5, i += 4; | ||
448 | // debug_string(hw_buffer->msg, hw_offset, (hw_offset - 5)); | ||
449 | es_info_length = ((es_info_length | (p_ca_message->msg[buf_offset - 1] & 0x0f)) << 8) | p_ca_message->msg[buf_offset]; | ||
450 | dprintk("%s: ES info length=[%02x]\n", __FUNCTION__, es_info_length); | ||
451 | if (es_info_length) { | ||
452 | // copy descriptors @ STREAM level | ||
453 | dprintk("%s: Descriptors @ STREAM level...!!! \n", __FUNCTION__); | ||
533 | } | 454 | } |
534 | } | ||
535 | |||
536 | /* MCU Magic words */ | ||
537 | |||
538 | hw_buffer_length += 7; | ||
539 | hw_buffer->msg[0] = hw_buffer_length; | ||
540 | hw_buffer->msg[1] = 64; | ||
541 | hw_buffer->msg[4] = 3; | ||
542 | hw_buffer->msg[5] = hw_buffer->msg[0] - 7; | ||
543 | hw_buffer->msg[6] = 0; | ||
544 | |||
545 | 455 | ||
546 | /* Fix length */ | ||
547 | hw_buffer->length = hw_buffer->msg[0]; | ||
548 | |||
549 | put_checksum(&hw_buffer->msg[0], hw_buffer->msg[0]); | ||
550 | /* Do the actual write */ | ||
551 | if (verbose > 4) { | ||
552 | dprintk("%s:======================DEBUGGING================================\n", __FUNCTION__); | ||
553 | dprintk("%s: Actual Length=[%d]\n", __FUNCTION__, hw_buffer_length); | ||
554 | } | 456 | } |
555 | /* Only for debugging! */ | 457 | hw_buffer->msg[length + dst_tag_length] = dst_check_sum(hw_buffer->msg, (length + dst_tag_length)); |
556 | if (verbose > 2) | 458 | // dprintk("%s: Total length=[%d], Checksum=[%02x]\n", __FUNCTION__, (length + dst_tag_length), hw_buffer->msg[length + dst_tag_length]); |
557 | debug_8820_buffer(hw_buffer); | 459 | debug_string(hw_buffer->msg, (length + dst_tag_length + 1), 0); // dst tags also |
558 | if (verbose > 3) | 460 | write_to_8820(state, hw_buffer, (length + dst_tag_length + 1), reply); // checksum |
559 | dprintk("%s: Reply = [%d]\n", __FUNCTION__, reply); | ||
560 | write_to_8820(state, hw_buffer, reply); | ||
561 | 461 | ||
562 | return 0; | 462 | return 0; |
563 | } | 463 | } |
564 | 464 | ||
465 | |||
565 | /* Board supports CA PMT reply ? */ | 466 | /* Board supports CA PMT reply ? */ |
566 | static int dst_check_ca_pmt(struct dst_state *state, struct ca_msg *p_ca_message, struct ca_msg *hw_buffer) | 467 | static int dst_check_ca_pmt(struct dst_state *state, struct ca_msg *p_ca_message, struct ca_msg *hw_buffer) |
567 | { | 468 | { |
@@ -605,7 +506,7 @@ static int ca_send_message(struct dst_state *state, struct ca_msg *p_ca_message, | |||
605 | struct ca_msg *hw_buffer; | 506 | struct ca_msg *hw_buffer; |
606 | 507 | ||
607 | if ((hw_buffer = (struct ca_msg *) kmalloc(sizeof (struct ca_msg), GFP_KERNEL)) == NULL) { | 508 | if ((hw_buffer = (struct ca_msg *) kmalloc(sizeof (struct ca_msg), GFP_KERNEL)) == NULL) { |
608 | printk("%s: Memory allocation failure\n", __FUNCTION__); | 509 | dprintk("%s: Memory allocation failure\n", __FUNCTION__); |
609 | return -ENOMEM; | 510 | return -ENOMEM; |
610 | } | 511 | } |
611 | if (verbose > 3) | 512 | if (verbose > 3) |
@@ -630,8 +531,10 @@ static int ca_send_message(struct dst_state *state, struct ca_msg *p_ca_message, | |||
630 | switch (command) { | 531 | switch (command) { |
631 | case CA_PMT: | 532 | case CA_PMT: |
632 | if (verbose > 3) | 533 | if (verbose > 3) |
534 | // dprintk("Command = SEND_CA_PMT\n"); | ||
633 | dprintk("Command = SEND_CA_PMT\n"); | 535 | dprintk("Command = SEND_CA_PMT\n"); |
634 | if ((ca_set_pmt(state, p_ca_message, hw_buffer, 0, 0)) < 0) { | 536 | // if ((ca_set_pmt(state, p_ca_message, hw_buffer, 0, 0)) < 0) { |
537 | if ((ca_set_pmt(state, p_ca_message, hw_buffer, 0, 0)) < 0) { // code simplification started | ||
635 | dprintk("%s: -->CA_PMT Failed !\n", __FUNCTION__); | 538 | dprintk("%s: -->CA_PMT Failed !\n", __FUNCTION__); |
636 | return -1; | 539 | return -1; |
637 | } | 540 | } |
@@ -664,7 +567,7 @@ static int ca_send_message(struct dst_state *state, struct ca_msg *p_ca_message, | |||
664 | return -1; | 567 | return -1; |
665 | } | 568 | } |
666 | if (verbose > 3) | 569 | if (verbose > 3) |
667 | printk("%s: -->CA_APP_INFO_ENQUIRY Success !\n", __FUNCTION__); | 570 | dprintk("%s: -->CA_APP_INFO_ENQUIRY Success !\n", __FUNCTION__); |
668 | 571 | ||
669 | break; | 572 | break; |
670 | } | 573 | } |
@@ -681,17 +584,17 @@ static int dst_ca_ioctl(struct inode *inode, struct file *file, unsigned int cmd | |||
681 | struct ca_msg *p_ca_message; | 584 | struct ca_msg *p_ca_message; |
682 | 585 | ||
683 | if ((p_ca_message = (struct ca_msg *) kmalloc(sizeof (struct ca_msg), GFP_KERNEL)) == NULL) { | 586 | if ((p_ca_message = (struct ca_msg *) kmalloc(sizeof (struct ca_msg), GFP_KERNEL)) == NULL) { |
684 | printk("%s: Memory allocation failure\n", __FUNCTION__); | 587 | dprintk("%s: Memory allocation failure\n", __FUNCTION__); |
685 | return -ENOMEM; | 588 | return -ENOMEM; |
686 | } | 589 | } |
687 | 590 | ||
688 | if ((p_ca_slot_info = (struct ca_slot_info *) kmalloc(sizeof (struct ca_slot_info), GFP_KERNEL)) == NULL) { | 591 | if ((p_ca_slot_info = (struct ca_slot_info *) kmalloc(sizeof (struct ca_slot_info), GFP_KERNEL)) == NULL) { |
689 | printk("%s: Memory allocation failure\n", __FUNCTION__); | 592 | dprintk("%s: Memory allocation failure\n", __FUNCTION__); |
690 | return -ENOMEM; | 593 | return -ENOMEM; |
691 | } | 594 | } |
692 | 595 | ||
693 | if ((p_ca_caps = (struct ca_caps *) kmalloc(sizeof (struct ca_caps), GFP_KERNEL)) == NULL) { | 596 | if ((p_ca_caps = (struct ca_caps *) kmalloc(sizeof (struct ca_caps), GFP_KERNEL)) == NULL) { |
694 | printk("%s: Memory allocation failure\n", __FUNCTION__); | 597 | dprintk("%s: Memory allocation failure\n", __FUNCTION__); |
695 | return -ENOMEM; | 598 | return -ENOMEM; |
696 | } | 599 | } |
697 | 600 | ||
diff --git a/drivers/media/dvb/bt8xx/dst_common.h b/drivers/media/dvb/bt8xx/dst_common.h index 0b3da29245fb..ef532a6aceaa 100644 --- a/drivers/media/dvb/bt8xx/dst_common.h +++ b/drivers/media/dvb/bt8xx/dst_common.h | |||
@@ -47,6 +47,8 @@ | |||
47 | #define DST_TYPE_HAS_FW_2 16 | 47 | #define DST_TYPE_HAS_FW_2 16 |
48 | #define DST_TYPE_HAS_FW_3 32 | 48 | #define DST_TYPE_HAS_FW_3 32 |
49 | #define DST_TYPE_HAS_FW_BUILD 64 | 49 | #define DST_TYPE_HAS_FW_BUILD 64 |
50 | #define DST_TYPE_HAS_OBS_REGS 128 | ||
51 | #define DST_TYPE_HAS_INC_COUNT 256 | ||
50 | 52 | ||
51 | /* Card capability list */ | 53 | /* Card capability list */ |
52 | 54 | ||
@@ -110,6 +112,7 @@ struct dst_state { | |||
110 | u32 dst_hw_cap; | 112 | u32 dst_hw_cap; |
111 | u8 dst_fw_version; | 113 | u8 dst_fw_version; |
112 | fe_sec_mini_cmd_t minicmd; | 114 | fe_sec_mini_cmd_t minicmd; |
115 | fe_modulation_t modulation; | ||
113 | u8 messages[256]; | 116 | u8 messages[256]; |
114 | }; | 117 | }; |
115 | 118 | ||
diff --git a/drivers/media/dvb/cinergyT2/cinergyT2.c b/drivers/media/dvb/cinergyT2/cinergyT2.c index 96c57fde95a0..7d8b3cad350b 100644 --- a/drivers/media/dvb/cinergyT2/cinergyT2.c +++ b/drivers/media/dvb/cinergyT2/cinergyT2.c | |||
@@ -699,6 +699,8 @@ static void cinergyt2_query_rc (void *data) | |||
699 | for (n=0; len>0 && n<(len/sizeof(rc_events[0])); n++) { | 699 | for (n=0; len>0 && n<(len/sizeof(rc_events[0])); n++) { |
700 | int i; | 700 | int i; |
701 | 701 | ||
702 | /* dprintk(1,"rc_events[%d].value = %x, type=%x\n",n,le32_to_cpu(rc_events[n].value),rc_events[n].type);*/ | ||
703 | |||
702 | if (rc_events[n].type == CINERGYT2_RC_EVENT_TYPE_NEC && | 704 | if (rc_events[n].type == CINERGYT2_RC_EVENT_TYPE_NEC && |
703 | rc_events[n].value == ~0) | 705 | rc_events[n].value == ~0) |
704 | { | 706 | { |
@@ -714,7 +716,7 @@ static void cinergyt2_query_rc (void *data) | |||
714 | cinergyt2->rc_input_event = KEY_MAX; | 716 | cinergyt2->rc_input_event = KEY_MAX; |
715 | for (i=0; i<sizeof(rc_keys)/sizeof(rc_keys[0]); i+=3) { | 717 | for (i=0; i<sizeof(rc_keys)/sizeof(rc_keys[0]); i+=3) { |
716 | if (rc_keys[i+0] == rc_events[n].type && | 718 | if (rc_keys[i+0] == rc_events[n].type && |
717 | rc_keys[i+1] == rc_events[n].value) | 719 | rc_keys[i+1] == le32_to_cpu(rc_events[n].value)) |
718 | { | 720 | { |
719 | cinergyt2->rc_input_event = rc_keys[i+2]; | 721 | cinergyt2->rc_input_event = rc_keys[i+2]; |
720 | break; | 722 | break; |
diff --git a/drivers/media/dvb/dvb-core/dmxdev.c b/drivers/media/dvb/dvb-core/dmxdev.c index c225de7ffd82..68050cd527cb 100644 --- a/drivers/media/dvb/dvb-core/dmxdev.c +++ b/drivers/media/dvb/dvb-core/dmxdev.c | |||
@@ -42,12 +42,6 @@ MODULE_PARM_DESC(debug, "Turn on/off debugging (default:off)."); | |||
42 | 42 | ||
43 | #define dprintk if (debug) printk | 43 | #define dprintk if (debug) printk |
44 | 44 | ||
45 | static inline struct dmxdev_filter * | ||
46 | dvb_dmxdev_file_to_filter(struct file *file) | ||
47 | { | ||
48 | return (struct dmxdev_filter *) file->private_data; | ||
49 | } | ||
50 | |||
51 | static inline void dvb_dmxdev_buffer_init(struct dmxdev_buffer *buffer) | 45 | static inline void dvb_dmxdev_buffer_init(struct dmxdev_buffer *buffer) |
52 | { | 46 | { |
53 | buffer->data=NULL; | 47 | buffer->data=NULL; |
@@ -669,8 +663,10 @@ static int dvb_dmxdev_filter_start(struct dmxdev_filter *filter) | |||
669 | 663 | ||
670 | ret = filter->feed.ts->start_filtering(filter->feed.ts); | 664 | ret = filter->feed.ts->start_filtering(filter->feed.ts); |
671 | 665 | ||
672 | if (ret < 0) | 666 | if (ret < 0) { |
667 | dmxdev->demux->release_ts_feed(dmxdev->demux, *tsfeed); | ||
673 | return ret; | 668 | return ret; |
669 | } | ||
674 | 670 | ||
675 | break; | 671 | break; |
676 | } | 672 | } |
@@ -842,7 +838,7 @@ static ssize_t dvb_dmxdev_read_sec(struct dmxdev_filter *dfil, | |||
842 | static ssize_t | 838 | static ssize_t |
843 | dvb_demux_read(struct file *file, char __user *buf, size_t count, loff_t *ppos) | 839 | dvb_demux_read(struct file *file, char __user *buf, size_t count, loff_t *ppos) |
844 | { | 840 | { |
845 | struct dmxdev_filter *dmxdevfilter=dvb_dmxdev_file_to_filter(file); | 841 | struct dmxdev_filter *dmxdevfilter= file->private_data; |
846 | int ret=0; | 842 | int ret=0; |
847 | 843 | ||
848 | if (down_interruptible(&dmxdevfilter->mutex)) | 844 | if (down_interruptible(&dmxdevfilter->mutex)) |
@@ -863,7 +859,7 @@ dvb_demux_read(struct file *file, char __user *buf, size_t count, loff_t *ppos) | |||
863 | static int dvb_demux_do_ioctl(struct inode *inode, struct file *file, | 859 | static int dvb_demux_do_ioctl(struct inode *inode, struct file *file, |
864 | unsigned int cmd, void *parg) | 860 | unsigned int cmd, void *parg) |
865 | { | 861 | { |
866 | struct dmxdev_filter *dmxdevfilter=dvb_dmxdev_file_to_filter(file); | 862 | struct dmxdev_filter *dmxdevfilter = file->private_data; |
867 | struct dmxdev *dmxdev=dmxdevfilter->dev; | 863 | struct dmxdev *dmxdev=dmxdevfilter->dev; |
868 | unsigned long arg=(unsigned long) parg; | 864 | unsigned long arg=(unsigned long) parg; |
869 | int ret=0; | 865 | int ret=0; |
@@ -960,7 +956,7 @@ static int dvb_demux_ioctl(struct inode *inode, struct file *file, | |||
960 | 956 | ||
961 | static unsigned int dvb_demux_poll (struct file *file, poll_table *wait) | 957 | static unsigned int dvb_demux_poll (struct file *file, poll_table *wait) |
962 | { | 958 | { |
963 | struct dmxdev_filter *dmxdevfilter = dvb_dmxdev_file_to_filter(file); | 959 | struct dmxdev_filter *dmxdevfilter = file->private_data; |
964 | unsigned int mask = 0; | 960 | unsigned int mask = 0; |
965 | 961 | ||
966 | if (!dmxdevfilter) | 962 | if (!dmxdevfilter) |
@@ -985,7 +981,7 @@ static unsigned int dvb_demux_poll (struct file *file, poll_table *wait) | |||
985 | 981 | ||
986 | static int dvb_demux_release(struct inode *inode, struct file *file) | 982 | static int dvb_demux_release(struct inode *inode, struct file *file) |
987 | { | 983 | { |
988 | struct dmxdev_filter *dmxdevfilter = dvb_dmxdev_file_to_filter(file); | 984 | struct dmxdev_filter *dmxdevfilter = file->private_data; |
989 | struct dmxdev *dmxdev = dmxdevfilter->dev; | 985 | struct dmxdev *dmxdev = dmxdevfilter->dev; |
990 | 986 | ||
991 | return dvb_dmxdev_filter_free(dmxdev, dmxdevfilter); | 987 | return dvb_dmxdev_filter_free(dmxdev, dmxdevfilter); |
@@ -1109,7 +1105,6 @@ dvb_dmxdev_init(struct dmxdev *dmxdev, struct dvb_adapter *dvb_adapter) | |||
1109 | dvb_dmxdev_filter_state_set(&dmxdev->filter[i], DMXDEV_STATE_FREE); | 1105 | dvb_dmxdev_filter_state_set(&dmxdev->filter[i], DMXDEV_STATE_FREE); |
1110 | dmxdev->dvr[i].dev=dmxdev; | 1106 | dmxdev->dvr[i].dev=dmxdev; |
1111 | dmxdev->dvr[i].buffer.data=NULL; | 1107 | dmxdev->dvr[i].buffer.data=NULL; |
1112 | dvb_dmxdev_filter_state_set(&dmxdev->filter[i], DMXDEV_STATE_FREE); | ||
1113 | dvb_dmxdev_dvr_state_set(&dmxdev->dvr[i], DMXDEV_STATE_FREE); | 1108 | dvb_dmxdev_dvr_state_set(&dmxdev->dvr[i], DMXDEV_STATE_FREE); |
1114 | } | 1109 | } |
1115 | 1110 | ||
diff --git a/drivers/media/dvb/dvb-core/dvb_frontend.c b/drivers/media/dvb/dvb-core/dvb_frontend.c index f11daae91cd4..a8bc84240b50 100644 --- a/drivers/media/dvb/dvb-core/dvb_frontend.c +++ b/drivers/media/dvb/dvb-core/dvb_frontend.c | |||
@@ -42,6 +42,8 @@ | |||
42 | #include "dvb_frontend.h" | 42 | #include "dvb_frontend.h" |
43 | #include "dvbdev.h" | 43 | #include "dvbdev.h" |
44 | 44 | ||
45 | // #define DEBUG_LOCKLOSS 1 | ||
46 | |||
45 | static int dvb_frontend_debug; | 47 | static int dvb_frontend_debug; |
46 | static int dvb_shutdown_timeout = 5; | 48 | static int dvb_shutdown_timeout = 5; |
47 | static int dvb_force_auto_inversion; | 49 | static int dvb_force_auto_inversion; |
@@ -113,6 +115,7 @@ struct dvb_frontend_private { | |||
113 | int exit; | 115 | int exit; |
114 | int wakeup; | 116 | int wakeup; |
115 | fe_status_t status; | 117 | fe_status_t status; |
118 | fe_sec_tone_mode_t tone; | ||
116 | }; | 119 | }; |
117 | 120 | ||
118 | 121 | ||
@@ -434,9 +437,26 @@ static int dvb_frontend_thread(void *data) | |||
434 | /* we're tuned, and the lock is still good... */ | 437 | /* we're tuned, and the lock is still good... */ |
435 | if (s & FE_HAS_LOCK) | 438 | if (s & FE_HAS_LOCK) |
436 | continue; | 439 | continue; |
437 | else { | 440 | else { /* if we _WERE_ tuned, but now don't have a lock */ |
438 | /* if we _WERE_ tuned, but now don't have a lock, | 441 | #ifdef DEBUG_LOCKLOSS |
439 | * need to zigzag */ | 442 | /* first of all try setting the tone again if it was on - this |
443 | * sometimes works around problems with noisy power supplies */ | ||
444 | if (fe->ops->set_tone && (fepriv->tone == SEC_TONE_ON)) { | ||
445 | fe->ops->set_tone(fe, fepriv->tone); | ||
446 | mdelay(100); | ||
447 | s = 0; | ||
448 | fe->ops->read_status(fe, &s); | ||
449 | if (s & FE_HAS_LOCK) { | ||
450 | printk("DVB%i: Lock was lost, but regained by setting " | ||
451 | "the tone. This may indicate your power supply " | ||
452 | "is noisy/slightly incompatable with this DVB-S " | ||
453 | "adapter\n", fe->dvb->num); | ||
454 | fepriv->state = FESTATE_TUNED; | ||
455 | continue; | ||
456 | } | ||
457 | } | ||
458 | #endif | ||
459 | /* some other reason for losing the lock - start zigzagging */ | ||
440 | fepriv->state = FESTATE_ZIGZAG_FAST; | 460 | fepriv->state = FESTATE_ZIGZAG_FAST; |
441 | fepriv->started_auto_step = fepriv->auto_step; | 461 | fepriv->started_auto_step = fepriv->auto_step; |
442 | check_wrapped = 0; | 462 | check_wrapped = 0; |
@@ -626,11 +646,21 @@ static int dvb_frontend_ioctl(struct inode *inode, struct file *file, | |||
626 | break; | 646 | break; |
627 | } | 647 | } |
628 | 648 | ||
629 | case FE_READ_STATUS: | 649 | case FE_READ_STATUS: { |
650 | fe_status_t* status = parg; | ||
651 | |||
652 | /* if retune was requested but hasn't occured yet, prevent | ||
653 | * that user get signal state from previous tuning */ | ||
654 | if(fepriv->state == FESTATE_RETUNE) { | ||
655 | err=0; | ||
656 | *status = 0; | ||
657 | break; | ||
658 | } | ||
659 | |||
630 | if (fe->ops->read_status) | 660 | if (fe->ops->read_status) |
631 | err = fe->ops->read_status(fe, (fe_status_t*) parg); | 661 | err = fe->ops->read_status(fe, status); |
632 | break; | 662 | break; |
633 | 663 | } | |
634 | case FE_READ_BER: | 664 | case FE_READ_BER: |
635 | if (fe->ops->read_ber) | 665 | if (fe->ops->read_ber) |
636 | err = fe->ops->read_ber(fe, (__u32*) parg); | 666 | err = fe->ops->read_ber(fe, (__u32*) parg); |
@@ -681,6 +711,7 @@ static int dvb_frontend_ioctl(struct inode *inode, struct file *file, | |||
681 | err = fe->ops->set_tone(fe, (fe_sec_tone_mode_t) parg); | 711 | err = fe->ops->set_tone(fe, (fe_sec_tone_mode_t) parg); |
682 | fepriv->state = FESTATE_DISEQC; | 712 | fepriv->state = FESTATE_DISEQC; |
683 | fepriv->status = 0; | 713 | fepriv->status = 0; |
714 | fepriv->tone = (fe_sec_tone_mode_t) parg; | ||
684 | } | 715 | } |
685 | break; | 716 | break; |
686 | 717 | ||
@@ -883,6 +914,7 @@ int dvb_register_frontend(struct dvb_adapter* dvb, | |||
883 | init_MUTEX (&fepriv->events.sem); | 914 | init_MUTEX (&fepriv->events.sem); |
884 | fe->dvb = dvb; | 915 | fe->dvb = dvb; |
885 | fepriv->inversion = INVERSION_OFF; | 916 | fepriv->inversion = INVERSION_OFF; |
917 | fepriv->tone = SEC_TONE_OFF; | ||
886 | 918 | ||
887 | printk ("DVB: registering frontend %i (%s)...\n", | 919 | printk ("DVB: registering frontend %i (%s)...\n", |
888 | fe->dvb->num, | 920 | fe->dvb->num, |
diff --git a/drivers/media/dvb/dvb-core/dvb_frontend.h b/drivers/media/dvb/dvb-core/dvb_frontend.h index d2b021792791..9c2c1d1136bd 100644 --- a/drivers/media/dvb/dvb-core/dvb_frontend.h +++ b/drivers/media/dvb/dvb-core/dvb_frontend.h | |||
@@ -40,28 +40,6 @@ | |||
40 | 40 | ||
41 | #include "dvbdev.h" | 41 | #include "dvbdev.h" |
42 | 42 | ||
43 | /* FIXME: Move to i2c-id.h */ | ||
44 | #define I2C_DRIVERID_DVBFE_SP8870 I2C_DRIVERID_EXP2 | ||
45 | #define I2C_DRIVERID_DVBFE_CX22700 I2C_DRIVERID_EXP2 | ||
46 | #define I2C_DRIVERID_DVBFE_AT76C651 I2C_DRIVERID_EXP2 | ||
47 | #define I2C_DRIVERID_DVBFE_CX24110 I2C_DRIVERID_EXP2 | ||
48 | #define I2C_DRIVERID_DVBFE_CX22702 I2C_DRIVERID_EXP2 | ||
49 | #define I2C_DRIVERID_DVBFE_DIB3000MB I2C_DRIVERID_EXP2 | ||
50 | #define I2C_DRIVERID_DVBFE_DST I2C_DRIVERID_EXP2 | ||
51 | #define I2C_DRIVERID_DVBFE_DUMMY I2C_DRIVERID_EXP2 | ||
52 | #define I2C_DRIVERID_DVBFE_L64781 I2C_DRIVERID_EXP2 | ||
53 | #define I2C_DRIVERID_DVBFE_MT312 I2C_DRIVERID_EXP2 | ||
54 | #define I2C_DRIVERID_DVBFE_MT352 I2C_DRIVERID_EXP2 | ||
55 | #define I2C_DRIVERID_DVBFE_NXT6000 I2C_DRIVERID_EXP2 | ||
56 | #define I2C_DRIVERID_DVBFE_SP887X I2C_DRIVERID_EXP2 | ||
57 | #define I2C_DRIVERID_DVBFE_STV0299 I2C_DRIVERID_EXP2 | ||
58 | #define I2C_DRIVERID_DVBFE_TDA1004X I2C_DRIVERID_EXP2 | ||
59 | #define I2C_DRIVERID_DVBFE_TDA8083 I2C_DRIVERID_EXP2 | ||
60 | #define I2C_DRIVERID_DVBFE_VES1820 I2C_DRIVERID_EXP2 | ||
61 | #define I2C_DRIVERID_DVBFE_VES1X93 I2C_DRIVERID_EXP2 | ||
62 | #define I2C_DRIVERID_DVBFE_TDA80XX I2C_DRIVERID_EXP2 | ||
63 | |||
64 | |||
65 | struct dvb_frontend_tune_settings { | 43 | struct dvb_frontend_tune_settings { |
66 | int min_delay_ms; | 44 | int min_delay_ms; |
67 | int step_size; | 45 | int step_size; |
diff --git a/drivers/media/dvb/dvb-usb/Kconfig b/drivers/media/dvb/dvb-usb/Kconfig index 8aa32f6e447b..612e5b087b1c 100644 --- a/drivers/media/dvb/dvb-usb/Kconfig +++ b/drivers/media/dvb/dvb-usb/Kconfig | |||
@@ -3,30 +3,35 @@ config DVB_USB | |||
3 | depends on DVB_CORE && USB | 3 | depends on DVB_CORE && USB |
4 | select FW_LOADER | 4 | select FW_LOADER |
5 | help | 5 | help |
6 | By enabling this you will be able to choose the various USB 1.1 and | 6 | By enabling this you will be able to choose the various supported |
7 | USB2.0 DVB devices. | 7 | USB1.1 and USB2.0 DVB devices. |
8 | 8 | ||
9 | Almost every USB device needs a firmware, please look into | 9 | Almost every USB device needs a firmware, please look into |
10 | <file:Documentation/dvb/README.dvb-usb> | 10 | <file:Documentation/dvb/README.dvb-usb>. |
11 | 11 | ||
12 | Say Y if you own an USB DVB device. | 12 | For a complete list of supported USB devices see the LinuxTV DVB Wiki: |
13 | <http://www.linuxtv.org/wiki/index.php/DVB_USB> | ||
14 | |||
15 | Say Y if you own a USB DVB device. | ||
13 | 16 | ||
14 | config DVB_USB_DEBUG | 17 | config DVB_USB_DEBUG |
15 | bool "Enable extended debug support for all DVB-USB devices" | 18 | bool "Enable extended debug support for all DVB-USB devices" |
16 | depends on DVB_USB | 19 | depends on DVB_USB |
17 | help | 20 | help |
18 | Say Y if you want to enable debuging. See modinfo dvb-usb (and the | 21 | Say Y if you want to enable debugging. See modinfo dvb-usb (and the |
19 | appropriate drivers) for debug levels. | 22 | appropriate drivers) for debug levels. |
20 | 23 | ||
21 | config DVB_USB_A800 | 24 | config DVB_USB_A800 |
22 | tristate "AVerMedia AverTV DVB-T USB 2.0 (A800)" | 25 | tristate "AVerMedia AverTV DVB-T USB 2.0 (A800)" |
23 | depends on DVB_USB | 26 | depends on DVB_USB |
27 | select DVB_DIB3000MC | ||
24 | help | 28 | help |
25 | Say Y here to support the AVerMedia AverTV DVB-T USB 2.0 (A800) receiver. | 29 | Say Y here to support the AVerMedia AverTV DVB-T USB 2.0 (A800) receiver. |
26 | 30 | ||
27 | config DVB_USB_DIBUSB_MB | 31 | config DVB_USB_DIBUSB_MB |
28 | tristate "DiBcom USB DVB-T devices (based on the DiB3000M-B) (see help for device list)" | 32 | tristate "DiBcom USB DVB-T devices (based on the DiB3000M-B) (see help for device list)" |
29 | depends on DVB_USB | 33 | depends on DVB_USB |
34 | select DVB_DIB3000MB | ||
30 | help | 35 | help |
31 | Support for USB 1.1 and 2.0 DVB-T receivers based on reference designs made by | 36 | Support for USB 1.1 and 2.0 DVB-T receivers based on reference designs made by |
32 | DiBcom (<http://www.dibcom.fr>) equipped with a DiB3000M-B demodulator. | 37 | DiBcom (<http://www.dibcom.fr>) equipped with a DiB3000M-B demodulator. |
@@ -52,6 +57,7 @@ config DVB_USB_DIBUSB_MB | |||
52 | config DVB_USB_DIBUSB_MC | 57 | config DVB_USB_DIBUSB_MC |
53 | tristate "DiBcom USB DVB-T devices (based on the DiB3000M-C/P) (see help for device list)" | 58 | tristate "DiBcom USB DVB-T devices (based on the DiB3000M-C/P) (see help for device list)" |
54 | depends on DVB_USB | 59 | depends on DVB_USB |
60 | select DVB_DIB3000MC | ||
55 | help | 61 | help |
56 | Support for 2.0 DVB-T receivers based on reference designs made by | 62 | Support for 2.0 DVB-T receivers based on reference designs made by |
57 | DiBcom (<http://www.dibcom.fr>) equipped with a DiB3000M-C/P demodulator. | 63 | DiBcom (<http://www.dibcom.fr>) equipped with a DiB3000M-C/P demodulator. |
@@ -66,12 +72,23 @@ config DVB_USB_DIBUSB_MC | |||
66 | config DVB_USB_UMT_010 | 72 | config DVB_USB_UMT_010 |
67 | tristate "HanfTek UMT-010 DVB-T USB2.0 support" | 73 | tristate "HanfTek UMT-010 DVB-T USB2.0 support" |
68 | depends on DVB_USB | 74 | depends on DVB_USB |
75 | select DVB_DIB3000MC | ||
69 | help | 76 | help |
70 | Say Y here to support the HanfTek UMT-010 USB2.0 stick-sized DVB-T receiver. | 77 | Say Y here to support the HanfTek UMT-010 USB2.0 stick-sized DVB-T receiver. |
71 | 78 | ||
79 | config DVB_USB_CXUSB | ||
80 | tristate "Medion MD95700 hybrid USB2.0 (Conexant) support" | ||
81 | depends on DVB_USB | ||
82 | select DVB_CX22702 | ||
83 | help | ||
84 | Say Y here to support the Medion MD95700 hybrid USB2.0 device. Currently | ||
85 | only the DVB-T part is supported. | ||
86 | |||
72 | config DVB_USB_DIGITV | 87 | config DVB_USB_DIGITV |
73 | tristate "Nebula Electronics uDigiTV DVB-T USB2.0 support" | 88 | tristate "Nebula Electronics uDigiTV DVB-T USB2.0 support" |
74 | depends on DVB_USB | 89 | depends on DVB_USB |
90 | select DVB_NXT6000 | ||
91 | select DVB_MT352 | ||
75 | help | 92 | help |
76 | Say Y here to support the Nebula Electronics uDigitV USB2.0 DVB-T receiver. | 93 | Say Y here to support the Nebula Electronics uDigitV USB2.0 DVB-T receiver. |
77 | 94 | ||
@@ -87,13 +104,16 @@ config DVB_USB_VP7045 | |||
87 | config DVB_USB_NOVA_T_USB2 | 104 | config DVB_USB_NOVA_T_USB2 |
88 | tristate "Hauppauge WinTV-NOVA-T usb2 DVB-T USB2.0 support" | 105 | tristate "Hauppauge WinTV-NOVA-T usb2 DVB-T USB2.0 support" |
89 | depends on DVB_USB | 106 | depends on DVB_USB |
107 | select DVB_DIB3000MC | ||
90 | help | 108 | help |
91 | Say Y here to support the Hauppauge WinTV-NOVA-T usb2 DVB-T USB2.0 receiver. | 109 | Say Y here to support the Hauppauge WinTV-NOVA-T usb2 DVB-T USB2.0 receiver. |
92 | 110 | ||
93 | config DVB_USB_DTT200U | 111 | config DVB_USB_DTT200U |
94 | tristate "Yakumo/Hama/Typhoon/Yuan DVB-T USB2.0 support" | 112 | tristate "WideView WT-200U and WT-220U (pen) DVB-T USB2.0 support (Yakumo/Hama/Typhoon/Yuan)" |
95 | depends on DVB_USB | 113 | depends on DVB_USB |
96 | help | 114 | help |
97 | Say Y here to support the Yakumo/Hama/Typhoon/Yuan DVB-T USB2.0 receiver. | 115 | Say Y here to support the WideView/Yakumo/Hama/Typhoon/Yuan DVB-T USB2.0 receiver. |
98 | 116 | ||
99 | The receivers are also known as DTT200U (Yakumo) and UB300 (Yuan). | 117 | The receivers are also known as DTT200U (Yakumo) and UB300 (Yuan). |
118 | |||
119 | The WT-220U and its clones are pen-sized. | ||
diff --git a/drivers/media/dvb/dvb-usb/Makefile b/drivers/media/dvb/dvb-usb/Makefile index d65b50f9abb0..746d87ed6f32 100644 --- a/drivers/media/dvb/dvb-usb/Makefile +++ b/drivers/media/dvb/dvb-usb/Makefile | |||
@@ -27,4 +27,7 @@ obj-$(CONFIG_DVB_USB_UMT_010) += dvb-usb-dibusb-common.o dvb-usb-umt-010.o | |||
27 | dvb-usb-digitv-objs = digitv.o | 27 | dvb-usb-digitv-objs = digitv.o |
28 | obj-$(CONFIG_DVB_USB_DIGITV) += dvb-usb-digitv.o | 28 | obj-$(CONFIG_DVB_USB_DIGITV) += dvb-usb-digitv.o |
29 | 29 | ||
30 | dvb-usb-cxusb-objs = cxusb.o | ||
31 | obj-$(CONFIG_DVB_USB_CXUSB) += dvb-usb-cxusb.o | ||
32 | |||
30 | EXTRA_CFLAGS = -Idrivers/media/dvb/dvb-core/ -Idrivers/media/dvb/frontends/ | 33 | EXTRA_CFLAGS = -Idrivers/media/dvb/dvb-core/ -Idrivers/media/dvb/frontends/ |
diff --git a/drivers/media/dvb/dvb-usb/a800.c b/drivers/media/dvb/dvb-usb/a800.c index a3542935604f..f2fcc2f1f846 100644 --- a/drivers/media/dvb/dvb-usb/a800.c +++ b/drivers/media/dvb/dvb-usb/a800.c | |||
@@ -61,6 +61,12 @@ static struct dvb_usb_rc_key a800_rc_keys[] = { | |||
61 | { 0x02, 0x00, KEY_LAST }, /* >>| / BLUE */ | 61 | { 0x02, 0x00, KEY_LAST }, /* >>| / BLUE */ |
62 | { 0x02, 0x04, KEY_EPG }, /* EPG */ | 62 | { 0x02, 0x04, KEY_EPG }, /* EPG */ |
63 | { 0x02, 0x15, KEY_MENU }, /* MENU */ | 63 | { 0x02, 0x15, KEY_MENU }, /* MENU */ |
64 | |||
65 | { 0x03, 0x03, KEY_CHANNELUP }, /* CH UP */ | ||
66 | { 0x03, 0x02, KEY_CHANNELDOWN }, /* CH DOWN */ | ||
67 | { 0x03, 0x01, KEY_FIRST }, /* |<< / GREEN */ | ||
68 | { 0x03, 0x00, KEY_LAST }, /* >>| / BLUE */ | ||
69 | |||
64 | }; | 70 | }; |
65 | 71 | ||
66 | int a800_rc_query(struct dvb_usb_device *d, u32 *event, int *state) | 72 | int a800_rc_query(struct dvb_usb_device *d, u32 *event, int *state) |
@@ -68,7 +74,7 @@ int a800_rc_query(struct dvb_usb_device *d, u32 *event, int *state) | |||
68 | u8 key[5]; | 74 | u8 key[5]; |
69 | if (usb_control_msg(d->udev,usb_rcvctrlpipe(d->udev,0), | 75 | if (usb_control_msg(d->udev,usb_rcvctrlpipe(d->udev,0), |
70 | 0x04, USB_TYPE_VENDOR | USB_DIR_IN, 0, 0, key, 5, | 76 | 0x04, USB_TYPE_VENDOR | USB_DIR_IN, 0, 0, key, 5, |
71 | 2*HZ) != 5) | 77 | 2000) != 5) |
72 | return -ENODEV; | 78 | return -ENODEV; |
73 | 79 | ||
74 | /* call the universal NEC remote processor, to find out the key's state and event */ | 80 | /* call the universal NEC remote processor, to find out the key's state and event */ |
@@ -143,7 +149,7 @@ static struct dvb_usb_properties a800_properties = { | |||
143 | 149 | ||
144 | static struct usb_driver a800_driver = { | 150 | static struct usb_driver a800_driver = { |
145 | .owner = THIS_MODULE, | 151 | .owner = THIS_MODULE, |
146 | .name = "AVerMedia AverTV DVB-T USB 2.0 (A800)", | 152 | .name = "dvb_usb_a800", |
147 | .probe = a800_probe, | 153 | .probe = a800_probe, |
148 | .disconnect = dvb_usb_device_exit, | 154 | .disconnect = dvb_usb_device_exit, |
149 | .id_table = a800_table, | 155 | .id_table = a800_table, |
diff --git a/drivers/media/dvb/dvb-usb/cxusb.c b/drivers/media/dvb/dvb-usb/cxusb.c new file mode 100644 index 000000000000..c3e1b661aae6 --- /dev/null +++ b/drivers/media/dvb/dvb-usb/cxusb.c | |||
@@ -0,0 +1,295 @@ | |||
1 | /* DVB USB compliant linux driver for Conexant USB reference design. | ||
2 | * | ||
3 | * The Conexant reference design I saw on their website was only for analogue | ||
4 | * capturing (using the cx25842). The box I took to write this driver (reverse | ||
5 | * engineered) is the one labeled Medion MD95700. In addition to the cx25842 | ||
6 | * for analogue capturing it also has a cx22702 DVB-T demodulator on the main | ||
7 | * board. Besides it has a atiremote (X10) and a USB2.0 hub onboard. | ||
8 | * | ||
9 | * Maybe it is a little bit premature to call this driver cxusb, but I assume | ||
10 | * the USB protocol is identical or at least inherited from the reference | ||
11 | * design, so it can be reused for the "analogue-only" device (if it will | ||
12 | * appear at all). | ||
13 | * | ||
14 | * TODO: check if the cx25840-driver (from ivtv) can be used for the analogue | ||
15 | * part | ||
16 | * | ||
17 | * Copyright (C) 2005 Patrick Boettcher (patrick.boettcher@desy.de) | ||
18 | * | ||
19 | * This program is free software; you can redistribute it and/or modify it | ||
20 | * under the terms of the GNU General Public License as published by the Free | ||
21 | * Software Foundation, version 2. | ||
22 | * | ||
23 | * see Documentation/dvb/README.dvb-usb for more information | ||
24 | */ | ||
25 | #include "cxusb.h" | ||
26 | |||
27 | #include "cx22702.h" | ||
28 | |||
29 | /* debug */ | ||
30 | int dvb_usb_cxusb_debug; | ||
31 | module_param_named(debug,dvb_usb_cxusb_debug, int, 0644); | ||
32 | MODULE_PARM_DESC(debug, "set debugging level (1=rc (or-able))." DVB_USB_DEBUG_STATUS); | ||
33 | |||
34 | static int cxusb_ctrl_msg(struct dvb_usb_device *d, | ||
35 | u8 cmd, u8 *wbuf, int wlen, u8 *rbuf, int rlen) | ||
36 | { | ||
37 | int wo = (rbuf == NULL || rlen == 0); /* write-only */ | ||
38 | u8 sndbuf[1+wlen]; | ||
39 | memset(sndbuf,0,1+wlen); | ||
40 | |||
41 | sndbuf[0] = cmd; | ||
42 | memcpy(&sndbuf[1],wbuf,wlen); | ||
43 | if (wo) | ||
44 | dvb_usb_generic_write(d,sndbuf,1+wlen); | ||
45 | else | ||
46 | dvb_usb_generic_rw(d,sndbuf,1+wlen,rbuf,rlen,0); | ||
47 | |||
48 | return 0; | ||
49 | } | ||
50 | |||
51 | /* I2C */ | ||
52 | static void cxusb_set_i2c_path(struct dvb_usb_device *d, enum cxusb_i2c_pathes path) | ||
53 | { | ||
54 | struct cxusb_state *st = d->priv; | ||
55 | u8 o[2],i; | ||
56 | |||
57 | if (path == st->cur_i2c_path) | ||
58 | return; | ||
59 | |||
60 | o[0] = IOCTL_SET_I2C_PATH; | ||
61 | switch (path) { | ||
62 | case PATH_CX22702: | ||
63 | o[1] = 0; | ||
64 | break; | ||
65 | case PATH_TUNER_OTHER: | ||
66 | o[1] = 1; | ||
67 | break; | ||
68 | default: | ||
69 | err("unkown i2c path"); | ||
70 | return; | ||
71 | } | ||
72 | cxusb_ctrl_msg(d,CMD_IOCTL,o,2,&i,1); | ||
73 | |||
74 | if (i != 0x01) | ||
75 | deb_info("i2c_path setting failed.\n"); | ||
76 | |||
77 | st->cur_i2c_path = path; | ||
78 | } | ||
79 | |||
80 | static int cxusb_i2c_xfer(struct i2c_adapter *adap,struct i2c_msg msg[],int num) | ||
81 | { | ||
82 | struct dvb_usb_device *d = i2c_get_adapdata(adap); | ||
83 | int i; | ||
84 | |||
85 | if (down_interruptible(&d->i2c_sem) < 0) | ||
86 | return -EAGAIN; | ||
87 | |||
88 | if (num > 2) | ||
89 | warn("more than 2 i2c messages at a time is not handled yet. TODO."); | ||
90 | |||
91 | for (i = 0; i < num; i++) { | ||
92 | |||
93 | switch (msg[i].addr) { | ||
94 | case 0x63: | ||
95 | cxusb_set_i2c_path(d,PATH_CX22702); | ||
96 | break; | ||
97 | default: | ||
98 | cxusb_set_i2c_path(d,PATH_TUNER_OTHER); | ||
99 | break; | ||
100 | } | ||
101 | |||
102 | /* read request */ | ||
103 | if (i+1 < num && (msg[i+1].flags & I2C_M_RD)) { | ||
104 | u8 obuf[3+msg[i].len], ibuf[1+msg[i+1].len]; | ||
105 | obuf[0] = msg[i].len; | ||
106 | obuf[1] = msg[i+1].len; | ||
107 | obuf[2] = msg[i].addr; | ||
108 | memcpy(&obuf[3],msg[i].buf,msg[i].len); | ||
109 | |||
110 | if (cxusb_ctrl_msg(d, CMD_I2C_READ, | ||
111 | obuf, 3+msg[i].len, | ||
112 | ibuf, 1+msg[i+1].len) < 0) | ||
113 | break; | ||
114 | |||
115 | if (ibuf[0] != 0x08) | ||
116 | deb_info("i2c read could have been failed\n"); | ||
117 | |||
118 | memcpy(msg[i+1].buf,&ibuf[1],msg[i+1].len); | ||
119 | |||
120 | i++; | ||
121 | } else { /* write */ | ||
122 | u8 obuf[2+msg[i].len], ibuf; | ||
123 | obuf[0] = msg[i].addr; | ||
124 | obuf[1] = msg[i].len; | ||
125 | memcpy(&obuf[2],msg[i].buf,msg[i].len); | ||
126 | |||
127 | if (cxusb_ctrl_msg(d,CMD_I2C_WRITE, obuf, 2+msg[i].len, &ibuf,1) < 0) | ||
128 | break; | ||
129 | if (ibuf != 0x08) | ||
130 | deb_info("i2c write could have been failed\n"); | ||
131 | } | ||
132 | } | ||
133 | |||
134 | up(&d->i2c_sem); | ||
135 | return i; | ||
136 | } | ||
137 | |||
138 | static u32 cxusb_i2c_func(struct i2c_adapter *adapter) | ||
139 | { | ||
140 | return I2C_FUNC_I2C; | ||
141 | } | ||
142 | |||
143 | static struct i2c_algorithm cxusb_i2c_algo = { | ||
144 | .name = "Conexant USB I2C algorithm", | ||
145 | .id = I2C_ALGO_BIT, | ||
146 | .master_xfer = cxusb_i2c_xfer, | ||
147 | .functionality = cxusb_i2c_func, | ||
148 | }; | ||
149 | |||
150 | static int cxusb_power_ctrl(struct dvb_usb_device *d, int onoff) | ||
151 | { | ||
152 | return 0; | ||
153 | } | ||
154 | |||
155 | static int cxusb_streaming_ctrl(struct dvb_usb_device *d, int onoff) | ||
156 | { | ||
157 | u8 buf[2] = { 0x03, 0x00 }; | ||
158 | if (onoff) | ||
159 | cxusb_ctrl_msg(d,0x36, buf, 2, NULL, 0); | ||
160 | else | ||
161 | cxusb_ctrl_msg(d,0x37, NULL, 0, NULL, 0); | ||
162 | |||
163 | return 0; | ||
164 | } | ||
165 | |||
166 | struct cx22702_config cxusb_cx22702_config = { | ||
167 | .demod_address = 0x63, | ||
168 | |||
169 | .output_mode = CX22702_PARALLEL_OUTPUT, | ||
170 | |||
171 | .pll_init = dvb_usb_pll_init_i2c, | ||
172 | .pll_set = dvb_usb_pll_set_i2c, | ||
173 | }; | ||
174 | |||
175 | /* Callbacks for DVB USB */ | ||
176 | static int cxusb_tuner_attach(struct dvb_usb_device *d) | ||
177 | { | ||
178 | u8 bpll[4] = { 0x0b, 0xdc, 0x9c, 0xa0 }; | ||
179 | d->pll_addr = 0x61; | ||
180 | memcpy(d->pll_init,bpll,4); | ||
181 | d->pll_desc = &dvb_pll_fmd1216me; | ||
182 | return 0; | ||
183 | } | ||
184 | |||
185 | static int cxusb_frontend_attach(struct dvb_usb_device *d) | ||
186 | { | ||
187 | u8 buf[2] = { 0x03, 0x00 }; | ||
188 | u8 b = 0; | ||
189 | |||
190 | if (usb_set_interface(d->udev,0,0) < 0) | ||
191 | err("set interface to alts=0 failed"); | ||
192 | |||
193 | cxusb_ctrl_msg(d,0xde,&b,0,NULL,0); | ||
194 | cxusb_set_i2c_path(d,PATH_TUNER_OTHER); | ||
195 | cxusb_ctrl_msg(d,CMD_POWER_OFF, NULL, 0, &b, 1); | ||
196 | |||
197 | if (usb_set_interface(d->udev,0,6) < 0) | ||
198 | err("set interface failed"); | ||
199 | |||
200 | cxusb_ctrl_msg(d,0x36, buf, 2, NULL, 0); | ||
201 | cxusb_set_i2c_path(d,PATH_CX22702); | ||
202 | cxusb_ctrl_msg(d,CMD_POWER_ON, NULL, 0, &b, 1); | ||
203 | |||
204 | if ((d->fe = cx22702_attach(&cxusb_cx22702_config, &d->i2c_adap)) != NULL) | ||
205 | return 0; | ||
206 | |||
207 | return -EIO; | ||
208 | } | ||
209 | |||
210 | /* DVB USB Driver stuff */ | ||
211 | static struct dvb_usb_properties cxusb_properties; | ||
212 | |||
213 | static int cxusb_probe(struct usb_interface *intf, | ||
214 | const struct usb_device_id *id) | ||
215 | { | ||
216 | return dvb_usb_device_init(intf,&cxusb_properties,THIS_MODULE); | ||
217 | } | ||
218 | |||
219 | static struct usb_device_id cxusb_table [] = { | ||
220 | { USB_DEVICE(USB_VID_MEDION, USB_PID_MEDION_MD95700) }, | ||
221 | {} /* Terminating entry */ | ||
222 | }; | ||
223 | MODULE_DEVICE_TABLE (usb, cxusb_table); | ||
224 | |||
225 | static struct dvb_usb_properties cxusb_properties = { | ||
226 | .caps = DVB_USB_IS_AN_I2C_ADAPTER, | ||
227 | |||
228 | .usb_ctrl = CYPRESS_FX2, | ||
229 | |||
230 | .size_of_priv = sizeof(struct cxusb_state), | ||
231 | |||
232 | .streaming_ctrl = cxusb_streaming_ctrl, | ||
233 | .power_ctrl = cxusb_power_ctrl, | ||
234 | .frontend_attach = cxusb_frontend_attach, | ||
235 | .tuner_attach = cxusb_tuner_attach, | ||
236 | |||
237 | .i2c_algo = &cxusb_i2c_algo, | ||
238 | |||
239 | .generic_bulk_ctrl_endpoint = 0x01, | ||
240 | /* parameter for the MPEG2-data transfer */ | ||
241 | .urb = { | ||
242 | .type = DVB_USB_ISOC, | ||
243 | .count = 5, | ||
244 | .endpoint = 0x02, | ||
245 | .u = { | ||
246 | .isoc = { | ||
247 | .framesperurb = 32, | ||
248 | .framesize = 940, | ||
249 | .interval = 5, | ||
250 | } | ||
251 | } | ||
252 | }, | ||
253 | |||
254 | .num_device_descs = 1, | ||
255 | .devices = { | ||
256 | { "Medion MD95700 (MDUSBTV-HYBRID)", | ||
257 | { NULL }, | ||
258 | { &cxusb_table[0], NULL }, | ||
259 | }, | ||
260 | } | ||
261 | }; | ||
262 | |||
263 | static struct usb_driver cxusb_driver = { | ||
264 | .owner = THIS_MODULE, | ||
265 | .name = "dvb_usb_cxusb", | ||
266 | .probe = cxusb_probe, | ||
267 | .disconnect = dvb_usb_device_exit, | ||
268 | .id_table = cxusb_table, | ||
269 | }; | ||
270 | |||
271 | /* module stuff */ | ||
272 | static int __init cxusb_module_init(void) | ||
273 | { | ||
274 | int result; | ||
275 | if ((result = usb_register(&cxusb_driver))) { | ||
276 | err("usb_register failed. Error number %d",result); | ||
277 | return result; | ||
278 | } | ||
279 | |||
280 | return 0; | ||
281 | } | ||
282 | |||
283 | static void __exit cxusb_module_exit(void) | ||
284 | { | ||
285 | /* deregister this driver from the USB subsystem */ | ||
286 | usb_deregister(&cxusb_driver); | ||
287 | } | ||
288 | |||
289 | module_init (cxusb_module_init); | ||
290 | module_exit (cxusb_module_exit); | ||
291 | |||
292 | MODULE_AUTHOR("Patrick Boettcher <patrick.boettcher@desy.de>"); | ||
293 | MODULE_DESCRIPTION("Driver for Conexant USB2.0 hybrid reference design"); | ||
294 | MODULE_VERSION("1.0-alpha"); | ||
295 | MODULE_LICENSE("GPL"); | ||
diff --git a/drivers/media/dvb/dvb-usb/cxusb.h b/drivers/media/dvb/dvb-usb/cxusb.h new file mode 100644 index 000000000000..1d79016e3195 --- /dev/null +++ b/drivers/media/dvb/dvb-usb/cxusb.h | |||
@@ -0,0 +1,30 @@ | |||
1 | #ifndef _DVB_USB_CXUSB_H_ | ||
2 | #define _DVB_USB_CXUSB_H_ | ||
3 | |||
4 | #define DVB_USB_LOG_PREFIX "digitv" | ||
5 | #include "dvb-usb.h" | ||
6 | |||
7 | extern int dvb_usb_cxusb_debug; | ||
8 | #define deb_info(args...) dprintk(dvb_usb_cxusb_debug,0x01,args) | ||
9 | |||
10 | /* usb commands - some of it are guesses, don't have a reference yet */ | ||
11 | #define CMD_I2C_WRITE 0x08 | ||
12 | #define CMD_I2C_READ 0x09 | ||
13 | |||
14 | #define CMD_IOCTL 0x0e | ||
15 | #define IOCTL_SET_I2C_PATH 0x02 | ||
16 | |||
17 | #define CMD_POWER_OFF 0x50 | ||
18 | #define CMD_POWER_ON 0x51 | ||
19 | |||
20 | enum cxusb_i2c_pathes { | ||
21 | PATH_UNDEF = 0x00, | ||
22 | PATH_CX22702 = 0x01, | ||
23 | PATH_TUNER_OTHER = 0x02, | ||
24 | }; | ||
25 | |||
26 | struct cxusb_state { | ||
27 | enum cxusb_i2c_pathes cur_i2c_path; | ||
28 | }; | ||
29 | |||
30 | #endif | ||
diff --git a/drivers/media/dvb/dvb-usb/dibusb-mb.c b/drivers/media/dvb/dvb-usb/dibusb-mb.c index a0ffbb59fa14..828b5182e16c 100644 --- a/drivers/media/dvb/dvb-usb/dibusb-mb.c +++ b/drivers/media/dvb/dvb-usb/dibusb-mb.c | |||
@@ -31,10 +31,17 @@ static int dibusb_dib3000mb_frontend_attach(struct dvb_usb_device *d) | |||
31 | return 0; | 31 | return 0; |
32 | } | 32 | } |
33 | 33 | ||
34 | /* some of the dibusb 1.1 device aren't equipped with the default tuner | 34 | static int dibusb_thomson_tuner_attach(struct dvb_usb_device *d) |
35 | { | ||
36 | d->pll_addr = 0x61; | ||
37 | d->pll_desc = &dvb_pll_tua6010xs; | ||
38 | return 0; | ||
39 | } | ||
40 | |||
41 | /* Some of the Artec 1.1 device aren't equipped with the default tuner | ||
35 | * (Thomson Cable), but with a Panasonic ENV77H11D5. This function figures | 42 | * (Thomson Cable), but with a Panasonic ENV77H11D5. This function figures |
36 | * this out. */ | 43 | * this out. */ |
37 | static int dibusb_dib3000mb_tuner_attach (struct dvb_usb_device *d) | 44 | static int dibusb_tuner_probe_and_attach(struct dvb_usb_device *d) |
38 | { | 45 | { |
39 | u8 b[2] = { 0,0 }, b2[1]; | 46 | u8 b[2] = { 0,0 }, b2[1]; |
40 | int ret = 0; | 47 | int ret = 0; |
@@ -59,8 +66,7 @@ static int dibusb_dib3000mb_tuner_attach (struct dvb_usb_device *d) | |||
59 | 66 | ||
60 | if (b2[0] == 0xfe) { | 67 | if (b2[0] == 0xfe) { |
61 | info("this device has the Thomson Cable onboard. Which is default."); | 68 | info("this device has the Thomson Cable onboard. Which is default."); |
62 | d->pll_addr = 0x61; | 69 | dibusb_thomson_tuner_attach(d); |
63 | d->pll_desc = &dvb_pll_tua6010xs; | ||
64 | } else { | 70 | } else { |
65 | u8 bpll[4] = { 0x0b, 0xf5, 0x85, 0xab }; | 71 | u8 bpll[4] = { 0x0b, 0xf5, 0x85, 0xab }; |
66 | info("this device has the Panasonic ENV77H11D5 onboard."); | 72 | info("this device has the Panasonic ENV77H11D5 onboard."); |
@@ -90,8 +96,8 @@ static int dibusb_probe(struct usb_interface *intf, | |||
90 | 96 | ||
91 | /* do not change the order of the ID table */ | 97 | /* do not change the order of the ID table */ |
92 | static struct usb_device_id dibusb_dib3000mb_table [] = { | 98 | static struct usb_device_id dibusb_dib3000mb_table [] = { |
93 | /* 00 */ { USB_DEVICE(USB_VID_AVERMEDIA_UNK, USB_PID_AVERMEDIA_DVBT_USB_COLD)}, | 99 | /* 00 */ { USB_DEVICE(USB_VID_WIDEVIEW, USB_PID_AVERMEDIA_DVBT_USB_COLD)}, |
94 | /* 01 */ { USB_DEVICE(USB_VID_AVERMEDIA_UNK, USB_PID_AVERMEDIA_DVBT_USB_WARM)}, | 100 | /* 01 */ { USB_DEVICE(USB_VID_WIDEVIEW, USB_PID_AVERMEDIA_DVBT_USB_WARM)}, |
95 | /* 02 */ { USB_DEVICE(USB_VID_COMPRO, USB_PID_COMPRO_DVBU2000_COLD) }, | 101 | /* 02 */ { USB_DEVICE(USB_VID_COMPRO, USB_PID_COMPRO_DVBU2000_COLD) }, |
96 | /* 03 */ { USB_DEVICE(USB_VID_COMPRO, USB_PID_COMPRO_DVBU2000_WARM) }, | 102 | /* 03 */ { USB_DEVICE(USB_VID_COMPRO, USB_PID_COMPRO_DVBU2000_WARM) }, |
97 | /* 04 */ { USB_DEVICE(USB_VID_COMPRO_UNK, USB_PID_COMPRO_DVBU2000_UNK_COLD) }, | 103 | /* 04 */ { USB_DEVICE(USB_VID_COMPRO_UNK, USB_PID_COMPRO_DVBU2000_UNK_COLD) }, |
@@ -114,7 +120,17 @@ static struct usb_device_id dibusb_dib3000mb_table [] = { | |||
114 | /* 21 */ { USB_DEVICE(USB_VID_ULTIMA_ELECTRONIC, USB_PID_ULTIMA_TVBOX_AN2235_COLD) }, | 120 | /* 21 */ { USB_DEVICE(USB_VID_ULTIMA_ELECTRONIC, USB_PID_ULTIMA_TVBOX_AN2235_COLD) }, |
115 | /* 22 */ { USB_DEVICE(USB_VID_ULTIMA_ELECTRONIC, USB_PID_ULTIMA_TVBOX_AN2235_WARM) }, | 121 | /* 22 */ { USB_DEVICE(USB_VID_ULTIMA_ELECTRONIC, USB_PID_ULTIMA_TVBOX_AN2235_WARM) }, |
116 | /* 23 */ { USB_DEVICE(USB_VID_ADSTECH, USB_PID_ADSTECH_USB2_COLD) }, | 122 | /* 23 */ { USB_DEVICE(USB_VID_ADSTECH, USB_PID_ADSTECH_USB2_COLD) }, |
123 | |||
124 | /* device ID with default DIBUSB2_0-firmware and with the hacked firmware */ | ||
117 | /* 24 */ { USB_DEVICE(USB_VID_ADSTECH, USB_PID_ADSTECH_USB2_WARM) }, | 125 | /* 24 */ { USB_DEVICE(USB_VID_ADSTECH, USB_PID_ADSTECH_USB2_WARM) }, |
126 | /* 25 */ { USB_DEVICE(USB_VID_KYE, USB_PID_KYE_DVB_T_COLD) }, | ||
127 | /* 26 */ { USB_DEVICE(USB_VID_KYE, USB_PID_KYE_DVB_T_WARM) }, | ||
128 | |||
129 | // #define DVB_USB_DIBUSB_MB_FAULTY_USB_IDs | ||
130 | |||
131 | #ifdef DVB_USB_DIBUSB_MB_FAULTY_USB_IDs | ||
132 | /* 27 */ { USB_DEVICE(USB_VID_ANCHOR, USB_PID_ULTIMA_TVBOX_ANCHOR_COLD) }, | ||
133 | #endif | ||
118 | { } /* Terminating entry */ | 134 | { } /* Terminating entry */ |
119 | }; | 135 | }; |
120 | MODULE_DEVICE_TABLE (usb, dibusb_dib3000mb_table); | 136 | MODULE_DEVICE_TABLE (usb, dibusb_dib3000mb_table); |
@@ -134,7 +150,7 @@ static struct dvb_usb_properties dibusb1_1_properties = { | |||
134 | .pid_filter_ctrl = dibusb_pid_filter_ctrl, | 150 | .pid_filter_ctrl = dibusb_pid_filter_ctrl, |
135 | .power_ctrl = dibusb_power_ctrl, | 151 | .power_ctrl = dibusb_power_ctrl, |
136 | .frontend_attach = dibusb_dib3000mb_frontend_attach, | 152 | .frontend_attach = dibusb_dib3000mb_frontend_attach, |
137 | .tuner_attach = dibusb_dib3000mb_tuner_attach, | 153 | .tuner_attach = dibusb_tuner_probe_and_attach, |
138 | 154 | ||
139 | .rc_interval = DEFAULT_RC_INTERVAL, | 155 | .rc_interval = DEFAULT_RC_INTERVAL, |
140 | .rc_key_map = dibusb_rc_keys, | 156 | .rc_key_map = dibusb_rc_keys, |
@@ -156,7 +172,7 @@ static struct dvb_usb_properties dibusb1_1_properties = { | |||
156 | } | 172 | } |
157 | }, | 173 | }, |
158 | 174 | ||
159 | .num_device_descs = 8, | 175 | .num_device_descs = 9, |
160 | .devices = { | 176 | .devices = { |
161 | { "AVerMedia AverTV DVBT USB1.1", | 177 | { "AVerMedia AverTV DVBT USB1.1", |
162 | { &dibusb_dib3000mb_table[0], NULL }, | 178 | { &dibusb_dib3000mb_table[0], NULL }, |
@@ -190,11 +206,17 @@ static struct dvb_usb_properties dibusb1_1_properties = { | |||
190 | { &dibusb_dib3000mb_table[19], NULL }, | 206 | { &dibusb_dib3000mb_table[19], NULL }, |
191 | { &dibusb_dib3000mb_table[20], NULL }, | 207 | { &dibusb_dib3000mb_table[20], NULL }, |
192 | }, | 208 | }, |
209 | { "VideoWalker DVB-T USB", | ||
210 | { &dibusb_dib3000mb_table[25], NULL }, | ||
211 | { &dibusb_dib3000mb_table[26], NULL }, | ||
212 | }, | ||
193 | } | 213 | } |
194 | }; | 214 | }; |
195 | 215 | ||
196 | static struct dvb_usb_properties dibusb1_1_an2235_properties = { | 216 | static struct dvb_usb_properties dibusb1_1_an2235_properties = { |
197 | .caps = DVB_USB_HAS_PID_FILTER | DVB_USB_PID_FILTER_CAN_BE_TURNED_OFF | DVB_USB_IS_AN_I2C_ADAPTER, | 217 | .caps = DVB_USB_HAS_PID_FILTER | DVB_USB_PID_FILTER_CAN_BE_TURNED_OFF | DVB_USB_IS_AN_I2C_ADAPTER, |
218 | .pid_filter_count = 16, | ||
219 | |||
198 | .usb_ctrl = CYPRESS_AN2235, | 220 | .usb_ctrl = CYPRESS_AN2235, |
199 | 221 | ||
200 | .firmware = "dvb-usb-dibusb-an2235-01.fw", | 222 | .firmware = "dvb-usb-dibusb-an2235-01.fw", |
@@ -206,7 +228,7 @@ static struct dvb_usb_properties dibusb1_1_an2235_properties = { | |||
206 | .pid_filter_ctrl = dibusb_pid_filter_ctrl, | 228 | .pid_filter_ctrl = dibusb_pid_filter_ctrl, |
207 | .power_ctrl = dibusb_power_ctrl, | 229 | .power_ctrl = dibusb_power_ctrl, |
208 | .frontend_attach = dibusb_dib3000mb_frontend_attach, | 230 | .frontend_attach = dibusb_dib3000mb_frontend_attach, |
209 | .tuner_attach = dibusb_dib3000mb_tuner_attach, | 231 | .tuner_attach = dibusb_tuner_probe_and_attach, |
210 | 232 | ||
211 | .rc_interval = DEFAULT_RC_INTERVAL, | 233 | .rc_interval = DEFAULT_RC_INTERVAL, |
212 | .rc_key_map = dibusb_rc_keys, | 234 | .rc_key_map = dibusb_rc_keys, |
@@ -228,20 +250,32 @@ static struct dvb_usb_properties dibusb1_1_an2235_properties = { | |||
228 | } | 250 | } |
229 | }, | 251 | }, |
230 | 252 | ||
253 | #ifdef DVB_USB_DIBUSB_MB_FAULTY_USB_IDs | ||
254 | .num_device_descs = 2, | ||
255 | #else | ||
231 | .num_device_descs = 1, | 256 | .num_device_descs = 1, |
257 | #endif | ||
232 | .devices = { | 258 | .devices = { |
233 | { "Artec T1 USB1.1 TVBOX with AN2235", | 259 | { "Artec T1 USB1.1 TVBOX with AN2235", |
234 | { &dibusb_dib3000mb_table[20], NULL }, | 260 | { &dibusb_dib3000mb_table[20], NULL }, |
235 | { &dibusb_dib3000mb_table[21], NULL }, | 261 | { &dibusb_dib3000mb_table[21], NULL }, |
236 | }, | 262 | }, |
263 | #ifdef DVB_USB_DIBUSB_MB_FAULTY_USB_IDs | ||
264 | { "Artec T1 USB1.1 TVBOX with AN2235 (faulty USB IDs)", | ||
265 | { &dibusb_dib3000mb_table[27], NULL }, | ||
266 | { NULL }, | ||
267 | }, | ||
268 | #endif | ||
237 | } | 269 | } |
238 | }; | 270 | }; |
239 | 271 | ||
240 | static struct dvb_usb_properties dibusb2_0b_properties = { | 272 | static struct dvb_usb_properties dibusb2_0b_properties = { |
241 | .caps = DVB_USB_HAS_PID_FILTER | DVB_USB_PID_FILTER_CAN_BE_TURNED_OFF | DVB_USB_IS_AN_I2C_ADAPTER, | 273 | .caps = DVB_USB_HAS_PID_FILTER | DVB_USB_PID_FILTER_CAN_BE_TURNED_OFF | DVB_USB_IS_AN_I2C_ADAPTER, |
274 | .pid_filter_count = 32, | ||
275 | |||
242 | .usb_ctrl = CYPRESS_FX2, | 276 | .usb_ctrl = CYPRESS_FX2, |
243 | 277 | ||
244 | .firmware = "dvb-usb-adstech-usb2-01.fw", | 278 | .firmware = "dvb-usb-adstech-usb2-02.fw", |
245 | 279 | ||
246 | .size_of_priv = sizeof(struct dibusb_state), | 280 | .size_of_priv = sizeof(struct dibusb_state), |
247 | 281 | ||
@@ -250,7 +284,7 @@ static struct dvb_usb_properties dibusb2_0b_properties = { | |||
250 | .pid_filter_ctrl = dibusb_pid_filter_ctrl, | 284 | .pid_filter_ctrl = dibusb_pid_filter_ctrl, |
251 | .power_ctrl = dibusb2_0_power_ctrl, | 285 | .power_ctrl = dibusb2_0_power_ctrl, |
252 | .frontend_attach = dibusb_dib3000mb_frontend_attach, | 286 | .frontend_attach = dibusb_dib3000mb_frontend_attach, |
253 | .tuner_attach = dibusb_dib3000mb_tuner_attach, | 287 | .tuner_attach = dibusb_thomson_tuner_attach, |
254 | 288 | ||
255 | .rc_interval = DEFAULT_RC_INTERVAL, | 289 | .rc_interval = DEFAULT_RC_INTERVAL, |
256 | .rc_key_map = dibusb_rc_keys, | 290 | .rc_key_map = dibusb_rc_keys, |
@@ -272,18 +306,18 @@ static struct dvb_usb_properties dibusb2_0b_properties = { | |||
272 | } | 306 | } |
273 | }, | 307 | }, |
274 | 308 | ||
275 | .num_device_descs = 2, | 309 | .num_device_descs = 1, |
276 | .devices = { | 310 | .devices = { |
277 | { "KWorld/ADSTech Instant DVB-T USB 2.0", | 311 | { "KWorld/ADSTech Instant DVB-T USB 2.0", |
278 | { &dibusb_dib3000mb_table[23], NULL }, | 312 | { &dibusb_dib3000mb_table[23], NULL }, |
279 | { &dibusb_dib3000mb_table[24], NULL }, /* device ID with default DIBUSB2_0-firmware */ | 313 | { &dibusb_dib3000mb_table[24], NULL }, |
280 | }, | 314 | }, |
281 | } | 315 | } |
282 | }; | 316 | }; |
283 | 317 | ||
284 | static struct usb_driver dibusb_driver = { | 318 | static struct usb_driver dibusb_driver = { |
285 | .owner = THIS_MODULE, | 319 | .owner = THIS_MODULE, |
286 | .name = "DiBcom based USB DVB-T devices (DiB3000M-B based)", | 320 | .name = "dvb_usb_dibusb_mb", |
287 | .probe = dibusb_probe, | 321 | .probe = dibusb_probe, |
288 | .disconnect = dvb_usb_device_exit, | 322 | .disconnect = dvb_usb_device_exit, |
289 | .id_table = dibusb_dib3000mb_table, | 323 | .id_table = dibusb_dib3000mb_table, |
diff --git a/drivers/media/dvb/dvb-usb/dibusb-mc.c b/drivers/media/dvb/dvb-usb/dibusb-mc.c index aad8ed3fe005..e9dac430f37d 100644 --- a/drivers/media/dvb/dvb-usb/dibusb-mc.c +++ b/drivers/media/dvb/dvb-usb/dibusb-mc.c | |||
@@ -83,7 +83,7 @@ static struct dvb_usb_properties dibusb_mc_properties = { | |||
83 | 83 | ||
84 | static struct usb_driver dibusb_mc_driver = { | 84 | static struct usb_driver dibusb_mc_driver = { |
85 | .owner = THIS_MODULE, | 85 | .owner = THIS_MODULE, |
86 | .name = "DiBcom based USB2.0 DVB-T (DiB3000M-C/P based) devices", | 86 | .name = "dvb_usb_dibusb_mc", |
87 | .probe = dibusb_mc_probe, | 87 | .probe = dibusb_mc_probe, |
88 | .disconnect = dvb_usb_device_exit, | 88 | .disconnect = dvb_usb_device_exit, |
89 | .id_table = dibusb_dib3000mc_table, | 89 | .id_table = dibusb_dib3000mc_table, |
diff --git a/drivers/media/dvb/dvb-usb/digitv.c b/drivers/media/dvb/dvb-usb/digitv.c index 5acf3fde9522..9a676afc1d6e 100644 --- a/drivers/media/dvb/dvb-usb/digitv.c +++ b/drivers/media/dvb/dvb-usb/digitv.c | |||
@@ -1,10 +1,9 @@ | |||
1 | /* DVB USB compliant linux driver for Nebula Electronics uDigiTV DVB-T USB2.0 | 1 | /* DVB USB compliant linux driver for Nebula Electronics uDigiTV DVB-T USB2.0 |
2 | * receiver | 2 | * receiver |
3 | * | 3 | * |
4 | * Copyright (C) 2005 Patrick Boettcher (patrick.boettcher@desy.de) and | 4 | * Copyright (C) 2005 Patrick Boettcher (patrick.boettcher@desy.de) |
5 | * Allan Third (allan.third@cs.man.ac.uk) | ||
6 | * | 5 | * |
7 | * partly based on the SDK published by Nebula Electronics (TODO do we want this line ?) | 6 | * partly based on the SDK published by Nebula Electronics |
8 | * | 7 | * |
9 | * This program is free software; you can redistribute it and/or modify it | 8 | * This program is free software; you can redistribute it and/or modify it |
10 | * under the terms of the GNU General Public License as published by the Free | 9 | * under the terms of the GNU General Public License as published by the Free |
@@ -38,7 +37,7 @@ static int digitv_ctrl_msg(struct dvb_usb_device *d, | |||
38 | dvb_usb_generic_write(d,sndbuf,7); | 37 | dvb_usb_generic_write(d,sndbuf,7); |
39 | } else { | 38 | } else { |
40 | dvb_usb_generic_rw(d,sndbuf,7,rcvbuf,7,10); | 39 | dvb_usb_generic_rw(d,sndbuf,7,rcvbuf,7,10); |
41 | memcpy(&rbuf,&rcvbuf[3],rlen); | 40 | memcpy(rbuf,&rcvbuf[3],rlen); |
42 | } | 41 | } |
43 | return 0; | 42 | return 0; |
44 | } | 43 | } |
@@ -95,41 +94,20 @@ static int digitv_identify_state (struct usb_device *udev, struct | |||
95 | 94 | ||
96 | static int digitv_mt352_demod_init(struct dvb_frontend *fe) | 95 | static int digitv_mt352_demod_init(struct dvb_frontend *fe) |
97 | { | 96 | { |
98 | static u8 mt352_clock_config[] = { 0x89, 0x38, 0x2d }; | 97 | static u8 reset_buf[] = { 0x89, 0x38, 0x8a, 0x2d, 0x50, 0x80 }; |
99 | static u8 mt352_reset[] = { 0x50, 0x80 }; | 98 | static u8 init_buf[] = { 0x68, 0xa0, 0x8e, 0x40, 0x53, 0x50, |
100 | static u8 mt352_mclk_ratio[] = { 0x8b, 0x00 }; | 99 | 0x67, 0x20, 0x7d, 0x01, 0x7c, 0x00, 0x7a, 0x00, |
101 | 100 | 0x79, 0x20, 0x57, 0x05, 0x56, 0x31, 0x88, 0x0f, | |
102 | static u8 mt352_agc_cfg[] = { 0x68, 0xa0 }; | 101 | 0x75, 0x32 }; |
103 | static u8 mt352_adc_ctl_1_cfg[] = { 0x8E, 0xa0 }; | 102 | int i; |
104 | static u8 mt352_acq_ctl[] = { 0x53, 0x50 }; | ||
105 | static u8 mt352_agc_target[] = { 0x67, 0x20 }; | ||
106 | |||
107 | static u8 mt352_rs_err_per[] = { 0x7c, 0x00, 0x01 }; | ||
108 | static u8 mt352_snr_select[] = { 0x79, 0x00, 0x20 }; | ||
109 | |||
110 | static u8 mt352_input_freq_1[] = { 0x56, 0x31, 0x05 }; | ||
111 | 103 | ||
112 | static u8 mt352_scan_ctl[] = { 0x88, 0x0f }; | 104 | for (i = 0; i < ARRAY_SIZE(reset_buf); i += 2) |
113 | static u8 mt352_capt_range[] = { 0x75, 0x32 }; | 105 | mt352_write(fe, &reset_buf[i], 2); |
114 | 106 | ||
115 | mt352_write(fe, mt352_clock_config, sizeof(mt352_clock_config)); | ||
116 | mt352_write(fe, mt352_reset, sizeof(mt352_reset)); | ||
117 | msleep(1); | 107 | msleep(1); |
118 | mt352_write(fe, mt352_mclk_ratio, sizeof(mt352_mclk_ratio)); | ||
119 | |||
120 | mt352_write(fe, mt352_agc_cfg, sizeof(mt352_agc_cfg)); | ||
121 | mt352_write(fe, mt352_adc_ctl_1_cfg, sizeof(mt352_adc_ctl_1_cfg)); | ||
122 | mt352_write(fe, mt352_acq_ctl, sizeof(mt352_acq_ctl)); | ||
123 | mt352_write(fe, mt352_agc_target, sizeof(mt352_agc_target)); | ||
124 | |||
125 | |||
126 | mt352_write(fe, mt352_rs_err_per, sizeof(mt352_rs_err_per)); | ||
127 | mt352_write(fe, mt352_snr_select, sizeof(mt352_snr_select)); | ||
128 | 108 | ||
129 | mt352_write(fe, mt352_input_freq_1, sizeof(mt352_input_freq_1)); | 109 | for (i = 0; i < ARRAY_SIZE(init_buf); i += 2) |
130 | 110 | mt352_write(fe, &init_buf[i], 2); | |
131 | mt352_write(fe, mt352_scan_ctl, sizeof(mt352_scan_ctl)); | ||
132 | mt352_write(fe, mt352_capt_range, sizeof(mt352_capt_range)); | ||
133 | 111 | ||
134 | return 0; | 112 | return 0; |
135 | } | 113 | } |
@@ -137,7 +115,7 @@ static int digitv_mt352_demod_init(struct dvb_frontend *fe) | |||
137 | static struct mt352_config digitv_mt352_config = { | 115 | static struct mt352_config digitv_mt352_config = { |
138 | .demod_address = 0x0, /* ignored by the digitv anyway */ | 116 | .demod_address = 0x0, /* ignored by the digitv anyway */ |
139 | .demod_init = digitv_mt352_demod_init, | 117 | .demod_init = digitv_mt352_demod_init, |
140 | .pll_set = NULL, /* TODO */ | 118 | .pll_set = dvb_usb_pll_set, |
141 | }; | 119 | }; |
142 | 120 | ||
143 | static struct nxt6000_config digitv_nxt6000_config = { | 121 | static struct nxt6000_config digitv_nxt6000_config = { |
@@ -150,9 +128,9 @@ static struct nxt6000_config digitv_nxt6000_config = { | |||
150 | 128 | ||
151 | static int digitv_frontend_attach(struct dvb_usb_device *d) | 129 | static int digitv_frontend_attach(struct dvb_usb_device *d) |
152 | { | 130 | { |
153 | if ((d->fe = mt352_attach(&digitv_mt352_config, &d->i2c_adap)) == NULL) | 131 | if ((d->fe = mt352_attach(&digitv_mt352_config, &d->i2c_adap)) != NULL) |
154 | return 0; | 132 | return 0; |
155 | if ((d->fe = nxt6000_attach(&digitv_nxt6000_config, &d->i2c_adap)) == NULL) { | 133 | if ((d->fe = nxt6000_attach(&digitv_nxt6000_config, &d->i2c_adap)) != NULL) { |
156 | 134 | ||
157 | warn("nxt6000 support is not done yet, in fact you are one of the first " | 135 | warn("nxt6000 support is not done yet, in fact you are one of the first " |
158 | "person who wants to use this device in Linux. Please report to " | 136 | "person who wants to use this device in Linux. Please report to " |
@@ -163,6 +141,13 @@ static int digitv_frontend_attach(struct dvb_usb_device *d) | |||
163 | return -EIO; | 141 | return -EIO; |
164 | } | 142 | } |
165 | 143 | ||
144 | static int digitv_tuner_attach(struct dvb_usb_device *d) | ||
145 | { | ||
146 | d->pll_addr = 0x60; | ||
147 | d->pll_desc = &dvb_pll_tded4; | ||
148 | return 0; | ||
149 | } | ||
150 | |||
166 | static struct dvb_usb_rc_key digitv_rc_keys[] = { | 151 | static struct dvb_usb_rc_key digitv_rc_keys[] = { |
167 | { 0x00, 0x16, KEY_POWER }, /* dummy key */ | 152 | { 0x00, 0x16, KEY_POWER }, /* dummy key */ |
168 | }; | 153 | }; |
@@ -184,7 +169,6 @@ int digitv_rc_query(struct dvb_usb_device *d, u32 *event, int *state) | |||
184 | return 0; | 169 | return 0; |
185 | } | 170 | } |
186 | 171 | ||
187 | |||
188 | /* DVB USB Driver stuff */ | 172 | /* DVB USB Driver stuff */ |
189 | static struct dvb_usb_properties digitv_properties; | 173 | static struct dvb_usb_properties digitv_properties; |
190 | 174 | ||
@@ -208,13 +192,8 @@ static struct dvb_usb_properties digitv_properties = { | |||
208 | 192 | ||
209 | .size_of_priv = 0, | 193 | .size_of_priv = 0, |
210 | 194 | ||
211 | .streaming_ctrl = NULL, | ||
212 | .pid_filter = NULL, | ||
213 | .pid_filter_ctrl = NULL, | ||
214 | .power_ctrl = NULL, | ||
215 | .frontend_attach = digitv_frontend_attach, | 195 | .frontend_attach = digitv_frontend_attach, |
216 | .tuner_attach = NULL, // digitv_tuner_attach, | 196 | .tuner_attach = digitv_tuner_attach, |
217 | .read_mac_address = NULL, | ||
218 | 197 | ||
219 | .rc_interval = 1000, | 198 | .rc_interval = 1000, |
220 | .rc_key_map = digitv_rc_keys, | 199 | .rc_key_map = digitv_rc_keys, |
@@ -238,7 +217,7 @@ static struct dvb_usb_properties digitv_properties = { | |||
238 | } | 217 | } |
239 | }, | 218 | }, |
240 | 219 | ||
241 | .num_device_descs = 2, | 220 | .num_device_descs = 1, |
242 | .devices = { | 221 | .devices = { |
243 | { "Nebula Electronics uDigiTV DVB-T USB2.0)", | 222 | { "Nebula Electronics uDigiTV DVB-T USB2.0)", |
244 | { &digitv_table[0], NULL }, | 223 | { &digitv_table[0], NULL }, |
@@ -249,7 +228,7 @@ static struct dvb_usb_properties digitv_properties = { | |||
249 | 228 | ||
250 | static struct usb_driver digitv_driver = { | 229 | static struct usb_driver digitv_driver = { |
251 | .owner = THIS_MODULE, | 230 | .owner = THIS_MODULE, |
252 | .name = "Nebula Electronics uDigiTV DVB-T USB2.0 device", | 231 | .name = "dvb_usb_digitv", |
253 | .probe = digitv_probe, | 232 | .probe = digitv_probe, |
254 | .disconnect = dvb_usb_device_exit, | 233 | .disconnect = dvb_usb_device_exit, |
255 | .id_table = digitv_table, | 234 | .id_table = digitv_table, |
diff --git a/drivers/media/dvb/dvb-usb/dtt200u-fe.c b/drivers/media/dvb/dvb-usb/dtt200u-fe.c index d17d768038c6..b032523b07bc 100644 --- a/drivers/media/dvb/dvb-usb/dtt200u-fe.c +++ b/drivers/media/dvb/dvb-usb/dtt200u-fe.c | |||
@@ -1,5 +1,5 @@ | |||
1 | /* Frontend part of the Linux driver for the Yakumo/Hama/Typhoon DVB-T | 1 | /* Frontend part of the Linux driver for the WideView/ Yakumo/ Hama/ |
2 | * USB2.0 receiver. | 2 | * Typhoon/ Yuan DVB-T USB2.0 receiver. |
3 | * | 3 | * |
4 | * Copyright (C) 2005 Patrick Boettcher <patrick.boettcher@desy.de> | 4 | * Copyright (C) 2005 Patrick Boettcher <patrick.boettcher@desy.de> |
5 | * | 5 | * |
@@ -14,61 +14,58 @@ | |||
14 | struct dtt200u_fe_state { | 14 | struct dtt200u_fe_state { |
15 | struct dvb_usb_device *d; | 15 | struct dvb_usb_device *d; |
16 | 16 | ||
17 | fe_status_t stat; | ||
18 | |||
17 | struct dvb_frontend_parameters fep; | 19 | struct dvb_frontend_parameters fep; |
18 | struct dvb_frontend frontend; | 20 | struct dvb_frontend frontend; |
19 | }; | 21 | }; |
20 | 22 | ||
21 | #define moan(which,what) info("unexpected value in '%s' for cmd '%02x' - please report to linux-dvb@linuxtv.org",which,what) | ||
22 | |||
23 | static int dtt200u_fe_read_status(struct dvb_frontend* fe, fe_status_t *stat) | 23 | static int dtt200u_fe_read_status(struct dvb_frontend* fe, fe_status_t *stat) |
24 | { | 24 | { |
25 | struct dtt200u_fe_state *state = fe->demodulator_priv; | 25 | struct dtt200u_fe_state *state = fe->demodulator_priv; |
26 | u8 bw = GET_TUNE_STAT; | 26 | u8 st = GET_TUNE_STATUS, b[3]; |
27 | u8 br[3] = { 0 }; | 27 | |
28 | // u8 bdeb[5] = { 0 }; | 28 | dvb_usb_generic_rw(state->d,&st,1,b,3,0); |
29 | 29 | ||
30 | dvb_usb_generic_rw(state->d,&bw,1,br,3,0); | 30 | switch (b[0]) { |
31 | switch (br[0]) { | ||
32 | case 0x01: | 31 | case 0x01: |
33 | *stat = FE_HAS_SIGNAL | FE_HAS_CARRIER | FE_HAS_VITERBI | FE_HAS_SYNC | FE_HAS_LOCK; | 32 | *stat = FE_HAS_SIGNAL | FE_HAS_CARRIER | |
33 | FE_HAS_VITERBI | FE_HAS_SYNC | FE_HAS_LOCK; | ||
34 | break; | 34 | break; |
35 | case 0x00: | 35 | case 0x00: /* pending */ |
36 | *stat = 0; | 36 | *stat = FE_TIMEDOUT; /* during set_frontend */ |
37 | break; | 37 | break; |
38 | default: | 38 | default: |
39 | moan("br[0]",GET_TUNE_STAT); | 39 | case 0x02: /* failed */ |
40 | *stat = 0; | ||
40 | break; | 41 | break; |
41 | } | 42 | } |
42 | |||
43 | // bw[0] = 0x88; | ||
44 | // dvb_usb_generic_rw(state->d,bw,1,bdeb,5,0); | ||
45 | |||
46 | // deb_info("%02x: %02x %02x %02x %02x %02x\n",bw[0],bdeb[0],bdeb[1],bdeb[2],bdeb[3],bdeb[4]); | ||
47 | |||
48 | return 0; | 43 | return 0; |
49 | } | 44 | } |
45 | |||
50 | static int dtt200u_fe_read_ber(struct dvb_frontend* fe, u32 *ber) | 46 | static int dtt200u_fe_read_ber(struct dvb_frontend* fe, u32 *ber) |
51 | { | 47 | { |
52 | struct dtt200u_fe_state *state = fe->demodulator_priv; | 48 | struct dtt200u_fe_state *state = fe->demodulator_priv; |
53 | u8 bw = GET_BER; | 49 | u8 bw = GET_VIT_ERR_CNT,b[3]; |
54 | *ber = 0; | 50 | dvb_usb_generic_rw(state->d,&bw,1,b,3,0); |
55 | dvb_usb_generic_rw(state->d,&bw,1,(u8*) ber,3,0); | 51 | *ber = (b[0] << 16) | (b[1] << 8) | b[2]; |
56 | return 0; | 52 | return 0; |
57 | } | 53 | } |
58 | 54 | ||
59 | static int dtt200u_fe_read_unc_blocks(struct dvb_frontend* fe, u32 *unc) | 55 | static int dtt200u_fe_read_unc_blocks(struct dvb_frontend* fe, u32 *unc) |
60 | { | 56 | { |
61 | struct dtt200u_fe_state *state = fe->demodulator_priv; | 57 | struct dtt200u_fe_state *state = fe->demodulator_priv; |
62 | u8 bw = GET_UNK; | 58 | u8 bw = GET_RS_UNCOR_BLK_CNT,b[2]; |
63 | *unc = 0; | 59 | |
64 | dvb_usb_generic_rw(state->d,&bw,1,(u8*) unc,3,0); | 60 | dvb_usb_generic_rw(state->d,&bw,1,b,2,0); |
61 | *unc = (b[0] << 8) | b[1]; | ||
65 | return 0; | 62 | return 0; |
66 | } | 63 | } |
67 | 64 | ||
68 | static int dtt200u_fe_read_signal_strength(struct dvb_frontend* fe, u16 *strength) | 65 | static int dtt200u_fe_read_signal_strength(struct dvb_frontend* fe, u16 *strength) |
69 | { | 66 | { |
70 | struct dtt200u_fe_state *state = fe->demodulator_priv; | 67 | struct dtt200u_fe_state *state = fe->demodulator_priv; |
71 | u8 bw = GET_SIG_STRENGTH, b; | 68 | u8 bw = GET_AGC, b; |
72 | dvb_usb_generic_rw(state->d,&bw,1,&b,1,0); | 69 | dvb_usb_generic_rw(state->d,&bw,1,&b,1,0); |
73 | *strength = (b << 8) | b; | 70 | *strength = (b << 8) | b; |
74 | return 0; | 71 | return 0; |
@@ -86,7 +83,7 @@ static int dtt200u_fe_read_snr(struct dvb_frontend* fe, u16 *snr) | |||
86 | static int dtt200u_fe_init(struct dvb_frontend* fe) | 83 | static int dtt200u_fe_init(struct dvb_frontend* fe) |
87 | { | 84 | { |
88 | struct dtt200u_fe_state *state = fe->demodulator_priv; | 85 | struct dtt200u_fe_state *state = fe->demodulator_priv; |
89 | u8 b = RESET_DEMOD; | 86 | u8 b = SET_INIT; |
90 | return dvb_usb_generic_write(state->d,&b,1); | 87 | return dvb_usb_generic_write(state->d,&b,1); |
91 | } | 88 | } |
92 | 89 | ||
@@ -98,8 +95,8 @@ static int dtt200u_fe_sleep(struct dvb_frontend* fe) | |||
98 | static int dtt200u_fe_get_tune_settings(struct dvb_frontend* fe, struct dvb_frontend_tune_settings *tune) | 95 | static int dtt200u_fe_get_tune_settings(struct dvb_frontend* fe, struct dvb_frontend_tune_settings *tune) |
99 | { | 96 | { |
100 | tune->min_delay_ms = 1500; | 97 | tune->min_delay_ms = 1500; |
101 | tune->step_size = 166667; | 98 | tune->step_size = 0; |
102 | tune->max_drift = 166667 * 2; | 99 | tune->max_drift = 0; |
103 | return 0; | 100 | return 0; |
104 | } | 101 | } |
105 | 102 | ||
@@ -107,27 +104,32 @@ static int dtt200u_fe_set_frontend(struct dvb_frontend* fe, | |||
107 | struct dvb_frontend_parameters *fep) | 104 | struct dvb_frontend_parameters *fep) |
108 | { | 105 | { |
109 | struct dtt200u_fe_state *state = fe->demodulator_priv; | 106 | struct dtt200u_fe_state *state = fe->demodulator_priv; |
107 | int i; | ||
108 | fe_status_t st; | ||
110 | u16 freq = fep->frequency / 250000; | 109 | u16 freq = fep->frequency / 250000; |
111 | u8 bw,bwbuf[2] = { SET_BANDWIDTH, 0 }, freqbuf[3] = { SET_FREQUENCY, 0, 0 }; | 110 | u8 bwbuf[2] = { SET_BANDWIDTH, 0 },freqbuf[3] = { SET_RF_FREQ, 0, 0 }; |
112 | 111 | ||
113 | switch (fep->u.ofdm.bandwidth) { | 112 | switch (fep->u.ofdm.bandwidth) { |
114 | case BANDWIDTH_8_MHZ: bw = 8; break; | 113 | case BANDWIDTH_8_MHZ: bwbuf[1] = 8; break; |
115 | case BANDWIDTH_7_MHZ: bw = 7; break; | 114 | case BANDWIDTH_7_MHZ: bwbuf[1] = 7; break; |
116 | case BANDWIDTH_6_MHZ: bw = 6; break; | 115 | case BANDWIDTH_6_MHZ: bwbuf[1] = 6; break; |
117 | case BANDWIDTH_AUTO: return -EOPNOTSUPP; | 116 | case BANDWIDTH_AUTO: return -EOPNOTSUPP; |
118 | default: | 117 | default: |
119 | return -EINVAL; | 118 | return -EINVAL; |
120 | } | 119 | } |
121 | deb_info("set_frontend\n"); | ||
122 | 120 | ||
123 | bwbuf[1] = bw; | ||
124 | dvb_usb_generic_write(state->d,bwbuf,2); | 121 | dvb_usb_generic_write(state->d,bwbuf,2); |
125 | 122 | ||
126 | freqbuf[1] = freq & 0xff; | 123 | freqbuf[1] = freq & 0xff; |
127 | freqbuf[2] = (freq >> 8) & 0xff; | 124 | freqbuf[2] = (freq >> 8) & 0xff; |
128 | dvb_usb_generic_write(state->d,freqbuf,3); | 125 | dvb_usb_generic_write(state->d,freqbuf,3); |
129 | 126 | ||
130 | memcpy(&state->fep,fep,sizeof(struct dvb_frontend_parameters)); | 127 | for (i = 0; i < 30; i++) { |
128 | msleep(20); | ||
129 | dtt200u_fe_read_status(fe, &st); | ||
130 | if (st & FE_TIMEDOUT) | ||
131 | continue; | ||
132 | } | ||
131 | 133 | ||
132 | return 0; | 134 | return 0; |
133 | } | 135 | } |
@@ -174,7 +176,7 @@ success: | |||
174 | 176 | ||
175 | static struct dvb_frontend_ops dtt200u_fe_ops = { | 177 | static struct dvb_frontend_ops dtt200u_fe_ops = { |
176 | .info = { | 178 | .info = { |
177 | .name = "DTT200U (Yakumo/Typhoon/Hama) DVB-T", | 179 | .name = "WideView USB DVB-T", |
178 | .type = FE_OFDM, | 180 | .type = FE_OFDM, |
179 | .frequency_min = 44250000, | 181 | .frequency_min = 44250000, |
180 | .frequency_max = 867250000, | 182 | .frequency_max = 867250000, |
diff --git a/drivers/media/dvb/dvb-usb/dtt200u.c b/drivers/media/dvb/dvb-usb/dtt200u.c index fb2b5a2da137..47dba6e45968 100644 --- a/drivers/media/dvb/dvb-usb/dtt200u.c +++ b/drivers/media/dvb/dvb-usb/dtt200u.c | |||
@@ -1,8 +1,10 @@ | |||
1 | /* DVB USB library compliant Linux driver for the Yakumo/Hama/Typhoon DVB-T | 1 | /* DVB USB library compliant Linux driver for the WideView/ Yakumo/ Hama/ |
2 | * USB2.0 receiver. | 2 | * Typhoon/ Yuan DVB-T USB2.0 receiver. |
3 | * | 3 | * |
4 | * Copyright (C) 2004-5 Patrick Boettcher (patrick.boettcher@desy.de) | 4 | * Copyright (C) 2004-5 Patrick Boettcher (patrick.boettcher@desy.de) |
5 | * | 5 | * |
6 | * Thanks to Steve Chang from WideView for providing support for the WT-220U. | ||
7 | * | ||
6 | * This program is free software; you can redistribute it and/or modify it | 8 | * This program is free software; you can redistribute it and/or modify it |
7 | * under the terms of the GNU General Public License as published by the Free | 9 | * under the terms of the GNU General Public License as published by the Free |
8 | * Software Foundation, version 2. | 10 | * Software Foundation, version 2. |
@@ -16,14 +18,24 @@ int dvb_usb_dtt200u_debug; | |||
16 | module_param_named(debug,dvb_usb_dtt200u_debug, int, 0644); | 18 | module_param_named(debug,dvb_usb_dtt200u_debug, int, 0644); |
17 | MODULE_PARM_DESC(debug, "set debugging level (1=info,xfer=2 (or-able))." DVB_USB_DEBUG_STATUS); | 19 | MODULE_PARM_DESC(debug, "set debugging level (1=info,xfer=2 (or-able))." DVB_USB_DEBUG_STATUS); |
18 | 20 | ||
21 | static int dtt200u_power_ctrl(struct dvb_usb_device *d, int onoff) | ||
22 | { | ||
23 | u8 b = SET_INIT; | ||
24 | |||
25 | if (onoff) | ||
26 | dvb_usb_generic_write(d,&b,2); | ||
27 | |||
28 | return 0; | ||
29 | } | ||
30 | |||
19 | static int dtt200u_streaming_ctrl(struct dvb_usb_device *d, int onoff) | 31 | static int dtt200u_streaming_ctrl(struct dvb_usb_device *d, int onoff) |
20 | { | 32 | { |
21 | u8 b_streaming[2] = { SET_TS_CTRL, onoff }; | 33 | u8 b_streaming[2] = { SET_STREAMING, onoff }; |
22 | u8 b_rst_pid = RESET_PID_FILTER; | 34 | u8 b_rst_pid = RESET_PID_FILTER; |
23 | 35 | ||
24 | dvb_usb_generic_write(d,b_streaming,2); | 36 | dvb_usb_generic_write(d,b_streaming,2); |
25 | 37 | ||
26 | if (!onoff) | 38 | if (onoff == 0) |
27 | dvb_usb_generic_write(d,&b_rst_pid,1); | 39 | dvb_usb_generic_write(d,&b_rst_pid,1); |
28 | return 0; | 40 | return 0; |
29 | } | 41 | } |
@@ -36,7 +48,7 @@ static int dtt200u_pid_filter(struct dvb_usb_device *d, int index, u16 pid, int | |||
36 | b_pid[0] = SET_PID_FILTER; | 48 | b_pid[0] = SET_PID_FILTER; |
37 | b_pid[1] = index; | 49 | b_pid[1] = index; |
38 | b_pid[2] = pid & 0xff; | 50 | b_pid[2] = pid & 0xff; |
39 | b_pid[3] = (pid >> 8) & 0xff; | 51 | b_pid[3] = (pid >> 8) & 0x1f; |
40 | 52 | ||
41 | return dvb_usb_generic_write(d,b_pid,4); | 53 | return dvb_usb_generic_write(d,b_pid,4); |
42 | } | 54 | } |
@@ -54,9 +66,9 @@ static struct dvb_usb_rc_key dtt200u_rc_keys[] = { | |||
54 | { 0x80, 0x08, KEY_5 }, | 66 | { 0x80, 0x08, KEY_5 }, |
55 | { 0x80, 0x09, KEY_6 }, | 67 | { 0x80, 0x09, KEY_6 }, |
56 | { 0x80, 0x0a, KEY_7 }, | 68 | { 0x80, 0x0a, KEY_7 }, |
57 | { 0x00, 0x0c, KEY_ZOOM }, | 69 | { 0x80, 0x0c, KEY_ZOOM }, |
58 | { 0x80, 0x0d, KEY_0 }, | 70 | { 0x80, 0x0d, KEY_0 }, |
59 | { 0x00, 0x0e, KEY_SELECT }, | 71 | { 0x80, 0x0e, KEY_SELECT }, |
60 | { 0x80, 0x12, KEY_POWER }, | 72 | { 0x80, 0x12, KEY_POWER }, |
61 | { 0x80, 0x1a, KEY_CHANNELUP }, | 73 | { 0x80, 0x1a, KEY_CHANNELUP }, |
62 | { 0x80, 0x1b, KEY_8 }, | 74 | { 0x80, 0x1b, KEY_8 }, |
@@ -66,7 +78,7 @@ static struct dvb_usb_rc_key dtt200u_rc_keys[] = { | |||
66 | 78 | ||
67 | static int dtt200u_rc_query(struct dvb_usb_device *d, u32 *event, int *state) | 79 | static int dtt200u_rc_query(struct dvb_usb_device *d, u32 *event, int *state) |
68 | { | 80 | { |
69 | u8 key[5],cmd = GET_RC_KEY; | 81 | u8 key[5],cmd = GET_RC_CODE; |
70 | dvb_usb_generic_rw(d,&cmd,1,key,5,0); | 82 | dvb_usb_generic_rw(d,&cmd,1,key,5,0); |
71 | dvb_usb_nec_rc_key_to_event(d,key,event,state); | 83 | dvb_usb_nec_rc_key_to_event(d,key,event,state); |
72 | if (key[0] != 0) | 84 | if (key[0] != 0) |
@@ -81,32 +93,41 @@ static int dtt200u_frontend_attach(struct dvb_usb_device *d) | |||
81 | } | 93 | } |
82 | 94 | ||
83 | static struct dvb_usb_properties dtt200u_properties; | 95 | static struct dvb_usb_properties dtt200u_properties; |
96 | static struct dvb_usb_properties wt220u_properties; | ||
84 | 97 | ||
85 | static int dtt200u_usb_probe(struct usb_interface *intf, | 98 | static int dtt200u_usb_probe(struct usb_interface *intf, |
86 | const struct usb_device_id *id) | 99 | const struct usb_device_id *id) |
87 | { | 100 | { |
88 | return dvb_usb_device_init(intf,&dtt200u_properties,THIS_MODULE); | 101 | if (dvb_usb_device_init(intf,&dtt200u_properties,THIS_MODULE) == 0 || |
102 | dvb_usb_device_init(intf,&wt220u_properties,THIS_MODULE) == 0) | ||
103 | return 0; | ||
104 | |||
105 | return -ENODEV; | ||
89 | } | 106 | } |
90 | 107 | ||
91 | static struct usb_device_id dtt200u_usb_table [] = { | 108 | static struct usb_device_id dtt200u_usb_table [] = { |
92 | { USB_DEVICE(USB_VID_AVERMEDIA_UNK, USB_PID_DTT200U_COLD) }, | 109 | // { USB_DEVICE(0x04b4,0x8613) }, |
93 | { USB_DEVICE(USB_VID_AVERMEDIA_UNK, USB_PID_DTT200U_WARM) }, | 110 | { USB_DEVICE(USB_VID_WIDEVIEW, USB_PID_DTT200U_COLD) }, |
111 | { USB_DEVICE(USB_VID_WIDEVIEW, USB_PID_DTT200U_WARM) }, | ||
112 | { USB_DEVICE(USB_VID_WIDEVIEW, USB_PID_WT220U_COLD) }, | ||
113 | { USB_DEVICE(USB_VID_WIDEVIEW, USB_PID_WT220U_WARM) }, | ||
94 | { 0 }, | 114 | { 0 }, |
95 | }; | 115 | }; |
96 | MODULE_DEVICE_TABLE(usb, dtt200u_usb_table); | 116 | MODULE_DEVICE_TABLE(usb, dtt200u_usb_table); |
97 | 117 | ||
98 | static struct dvb_usb_properties dtt200u_properties = { | 118 | static struct dvb_usb_properties dtt200u_properties = { |
99 | .caps = DVB_USB_HAS_PID_FILTER | DVB_USB_NEED_PID_FILTERING, | 119 | .caps = DVB_USB_HAS_PID_FILTER | DVB_USB_NEED_PID_FILTERING, |
100 | .pid_filter_count = 255, /* It is a guess, but there are at least 10 */ | 120 | .pid_filter_count = 15, |
101 | 121 | ||
102 | .usb_ctrl = CYPRESS_FX2, | 122 | .usb_ctrl = CYPRESS_FX2, |
103 | .firmware = "dvb-usb-dtt200u-01.fw", | 123 | .firmware = "dvb-usb-dtt200u-01.fw", |
104 | 124 | ||
125 | .power_ctrl = dtt200u_power_ctrl, | ||
105 | .streaming_ctrl = dtt200u_streaming_ctrl, | 126 | .streaming_ctrl = dtt200u_streaming_ctrl, |
106 | .pid_filter = dtt200u_pid_filter, | 127 | .pid_filter = dtt200u_pid_filter, |
107 | .frontend_attach = dtt200u_frontend_attach, | 128 | .frontend_attach = dtt200u_frontend_attach, |
108 | 129 | ||
109 | .rc_interval = 200, | 130 | .rc_interval = 300, |
110 | .rc_key_map = dtt200u_rc_keys, | 131 | .rc_key_map = dtt200u_rc_keys, |
111 | .rc_key_map_size = ARRAY_SIZE(dtt200u_rc_keys), | 132 | .rc_key_map_size = ARRAY_SIZE(dtt200u_rc_keys), |
112 | .rc_query = dtt200u_rc_query, | 133 | .rc_query = dtt200u_rc_query, |
@@ -127,18 +148,59 @@ static struct dvb_usb_properties dtt200u_properties = { | |||
127 | 148 | ||
128 | .num_device_descs = 1, | 149 | .num_device_descs = 1, |
129 | .devices = { | 150 | .devices = { |
130 | { .name = "Yakumo/Hama/Typhoon DVB-T USB2.0)", | 151 | { .name = "WideView/Yuan/Yakumo/Hama/Typhoon DVB-T USB2.0 (WT-200U)", |
131 | .cold_ids = { &dtt200u_usb_table[0], &dtt200u_usb_table[2] }, | 152 | .cold_ids = { &dtt200u_usb_table[0], NULL }, |
132 | .warm_ids = { &dtt200u_usb_table[1], NULL }, | 153 | .warm_ids = { &dtt200u_usb_table[1], NULL }, |
133 | }, | 154 | }, |
134 | { 0 }, | 155 | { 0 }, |
135 | } | 156 | } |
136 | }; | 157 | }; |
137 | 158 | ||
159 | static struct dvb_usb_properties wt220u_properties = { | ||
160 | .caps = DVB_USB_HAS_PID_FILTER | DVB_USB_NEED_PID_FILTERING, | ||
161 | .pid_filter_count = 15, | ||
162 | |||
163 | .usb_ctrl = CYPRESS_FX2, | ||
164 | .firmware = "dvb-usb-wt220u-01.fw", | ||
165 | |||
166 | .power_ctrl = dtt200u_power_ctrl, | ||
167 | .streaming_ctrl = dtt200u_streaming_ctrl, | ||
168 | .pid_filter = dtt200u_pid_filter, | ||
169 | .frontend_attach = dtt200u_frontend_attach, | ||
170 | |||
171 | .rc_interval = 300, | ||
172 | .rc_key_map = dtt200u_rc_keys, | ||
173 | .rc_key_map_size = ARRAY_SIZE(dtt200u_rc_keys), | ||
174 | .rc_query = dtt200u_rc_query, | ||
175 | |||
176 | .generic_bulk_ctrl_endpoint = 0x01, | ||
177 | |||
178 | /* parameter for the MPEG2-data transfer */ | ||
179 | .urb = { | ||
180 | .type = DVB_USB_BULK, | ||
181 | .count = 7, | ||
182 | .endpoint = 0x02, | ||
183 | .u = { | ||
184 | .bulk = { | ||
185 | .buffersize = 4096, | ||
186 | } | ||
187 | } | ||
188 | }, | ||
189 | |||
190 | .num_device_descs = 1, | ||
191 | .devices = { | ||
192 | { .name = "WideView WT-220U PenType Receiver (and clones)", | ||
193 | .cold_ids = { &dtt200u_usb_table[2], NULL }, | ||
194 | .warm_ids = { &dtt200u_usb_table[3], NULL }, | ||
195 | }, | ||
196 | { 0 }, | ||
197 | } | ||
198 | }; | ||
199 | |||
138 | /* usb specific object needed to register this driver with the usb subsystem */ | 200 | /* usb specific object needed to register this driver with the usb subsystem */ |
139 | static struct usb_driver dtt200u_usb_driver = { | 201 | static struct usb_driver dtt200u_usb_driver = { |
140 | .owner = THIS_MODULE, | 202 | .owner = THIS_MODULE, |
141 | .name = "Yakumo/Hama/Typhoon DVB-T USB2.0", | 203 | .name = "dvb_usb_dtt200u", |
142 | .probe = dtt200u_usb_probe, | 204 | .probe = dtt200u_usb_probe, |
143 | .disconnect = dvb_usb_device_exit, | 205 | .disconnect = dvb_usb_device_exit, |
144 | .id_table = dtt200u_usb_table, | 206 | .id_table = dtt200u_usb_table, |
@@ -166,6 +228,6 @@ module_init(dtt200u_usb_module_init); | |||
166 | module_exit(dtt200u_usb_module_exit); | 228 | module_exit(dtt200u_usb_module_exit); |
167 | 229 | ||
168 | MODULE_AUTHOR("Patrick Boettcher <patrick.boettcher@desy.de>"); | 230 | MODULE_AUTHOR("Patrick Boettcher <patrick.boettcher@desy.de>"); |
169 | MODULE_DESCRIPTION("Driver for the Yakumo/Hama/Typhoon DVB-T USB2.0 device"); | 231 | MODULE_DESCRIPTION("Driver for the WideView/Yakumo/Hama/Typhoon DVB-T USB2.0 devices"); |
170 | MODULE_VERSION("1.0"); | 232 | MODULE_VERSION("1.0"); |
171 | MODULE_LICENSE("GPL"); | 233 | MODULE_LICENSE("GPL"); |
diff --git a/drivers/media/dvb/dvb-usb/dtt200u.h b/drivers/media/dvb/dvb-usb/dtt200u.h index ed4142071518..6f1f3042e21a 100644 --- a/drivers/media/dvb/dvb-usb/dtt200u.h +++ b/drivers/media/dvb/dvb-usb/dtt200u.h | |||
@@ -1,5 +1,5 @@ | |||
1 | /* Common header file of Linux driver for the Yakumo/Hama/Typhoon DVB-T | 1 | /* Common header file of Linux driver for the WideView/ Yakumo/ Hama/ |
2 | * USB2.0 receiver. | 2 | * Typhoon/ Yuan DVB-T USB2.0 receiver. |
3 | * | 3 | * |
4 | * Copyright (C) 2004-5 Patrick Boettcher (patrick.boettcher@desy.de) | 4 | * Copyright (C) 2004-5 Patrick Boettcher (patrick.boettcher@desy.de) |
5 | * | 5 | * |
@@ -22,44 +22,34 @@ extern int dvb_usb_dtt200u_debug; | |||
22 | /* guessed protocol description (reverse engineered): | 22 | /* guessed protocol description (reverse engineered): |
23 | * read | 23 | * read |
24 | * 00 - USB type 0x02 for usb2.0, 0x01 for usb1.1 | 24 | * 00 - USB type 0x02 for usb2.0, 0x01 for usb1.1 |
25 | * 81 - <TS_LOCK> <current frequency divided by 250000> | ||
26 | * 82 - crash - do not touch | ||
27 | * 83 - crash - do not touch | ||
28 | * 84 - remote control | ||
29 | * 85 - crash - do not touch (OK, stop testing here) | ||
30 | * 88 - locking 2 bytes (0x80 0x40 == no signal, 0x89 0x20 == nice signal) | 25 | * 88 - locking 2 bytes (0x80 0x40 == no signal, 0x89 0x20 == nice signal) |
31 | * 89 - noise-to-signal | ||
32 | * 8a - unkown 1 byte - signal_strength | ||
33 | * 8c - ber ??? | ||
34 | * 8d - ber | ||
35 | * 8e - unc | ||
36 | */ | 26 | */ |
37 | 27 | ||
38 | #define GET_SPEED 0x00 | 28 | #define GET_SPEED 0x00 |
39 | #define GET_TUNE_STAT 0x81 | 29 | #define GET_TUNE_STATUS 0x81 |
40 | #define GET_RC_KEY 0x84 | 30 | #define GET_RC_CODE 0x84 |
41 | #define GET_STATUS 0x88 | 31 | #define GET_CONFIGURATION 0x88 |
42 | #define GET_SNR 0x89 | 32 | #define GET_AGC 0x89 |
43 | #define GET_SIG_STRENGTH 0x8a | 33 | #define GET_SNR 0x8a |
44 | #define GET_UNK 0x8c | 34 | #define GET_VIT_ERR_CNT 0x8c |
45 | #define GET_BER 0x8d | 35 | #define GET_RS_ERR_CNT 0x8d |
46 | #define GET_UNC 0x8e | 36 | #define GET_RS_UNCOR_BLK_CNT 0x8e |
47 | 37 | ||
48 | /* write | 38 | /* write |
49 | * 01 - reset the demod | 39 | * 01 - init |
50 | * 02 - frequency (divided by 250000) | 40 | * 02 - frequency (divided by 250000) |
51 | * 03 - bandwidth | 41 | * 03 - bandwidth |
52 | * 04 - pid table (index pid(7:0) pid(12:8)) | 42 | * 04 - pid table (index pid(7:0) pid(12:8)) |
53 | * 05 - reset the pid table | 43 | * 05 - reset the pid table |
54 | * 08 - demod transfer enabled or not (FX2 transfer is enabled by default) | 44 | * 08 - transfer switch |
55 | */ | 45 | */ |
56 | 46 | ||
57 | #define RESET_DEMOD 0x01 | 47 | #define SET_INIT 0x01 |
58 | #define SET_FREQUENCY 0x02 | 48 | #define SET_RF_FREQ 0x02 |
59 | #define SET_BANDWIDTH 0x03 | 49 | #define SET_BANDWIDTH 0x03 |
60 | #define SET_PID_FILTER 0x04 | 50 | #define SET_PID_FILTER 0x04 |
61 | #define RESET_PID_FILTER 0x05 | 51 | #define RESET_PID_FILTER 0x05 |
62 | #define SET_TS_CTRL 0x08 | 52 | #define SET_STREAMING 0x08 |
63 | 53 | ||
64 | extern struct dvb_frontend * dtt200u_fe_attach(struct dvb_usb_device *d); | 54 | extern struct dvb_frontend * dtt200u_fe_attach(struct dvb_usb_device *d); |
65 | 55 | ||
diff --git a/drivers/media/dvb/dvb-usb/dvb-usb-common.h b/drivers/media/dvb/dvb-usb/dvb-usb-common.h index 67e0d73fbceb..7300489d3e24 100644 --- a/drivers/media/dvb/dvb-usb/dvb-usb-common.h +++ b/drivers/media/dvb/dvb-usb/dvb-usb-common.h | |||
@@ -12,14 +12,16 @@ | |||
12 | #include "dvb-usb.h" | 12 | #include "dvb-usb.h" |
13 | 13 | ||
14 | extern int dvb_usb_debug; | 14 | extern int dvb_usb_debug; |
15 | extern int dvb_usb_disable_rc_polling; | ||
15 | 16 | ||
16 | #define deb_info(args...) dprintk(dvb_usb_debug,0x01,args) | 17 | #define deb_info(args...) dprintk(dvb_usb_debug,0x01,args) |
17 | #define deb_xfer(args...) dprintk(dvb_usb_debug,0x02,args) | 18 | #define deb_xfer(args...) dprintk(dvb_usb_debug,0x02,args) |
18 | #define deb_pll(args...) dprintk(dvb_usb_debug,0x04,args) | 19 | #define deb_pll(args...) dprintk(dvb_usb_debug,0x04,args) |
19 | #define deb_ts(args...) dprintk(dvb_usb_debug,0x08,args) | 20 | #define deb_ts(args...) dprintk(dvb_usb_debug,0x08,args) |
20 | #define deb_err(args...) dprintk(dvb_usb_debug,0x10,args) | 21 | #define deb_err(args...) dprintk(dvb_usb_debug,0x10,args) |
21 | #define deb_rc(args...) dprintk(dvb_usb_debug,0x20,args) | 22 | #define deb_rc(args...) dprintk(dvb_usb_debug,0x20,args) |
22 | #define deb_fw(args...) dprintk(dvb_usb_debug,0x40,args) | 23 | #define deb_fw(args...) dprintk(dvb_usb_debug,0x40,args) |
24 | #define deb_mem(args...) dprintk(dvb_usb_debug,0x80,args) | ||
23 | 25 | ||
24 | /* commonly used methods */ | 26 | /* commonly used methods */ |
25 | extern int usb_cypress_load_firmware(struct usb_device *, const char *, int); | 27 | extern int usb_cypress_load_firmware(struct usb_device *, const char *, int); |
diff --git a/drivers/media/dvb/dvb-usb/dvb-usb-dvb.c b/drivers/media/dvb/dvb-usb/dvb-usb-dvb.c index bdd72f779707..3491ff40885c 100644 --- a/drivers/media/dvb/dvb-usb/dvb-usb-dvb.c +++ b/drivers/media/dvb/dvb-usb/dvb-usb-dvb.c | |||
@@ -175,7 +175,7 @@ static int dvb_usb_fe_sleep(struct dvb_frontend *fe) | |||
175 | int dvb_usb_fe_init(struct dvb_usb_device* d) | 175 | int dvb_usb_fe_init(struct dvb_usb_device* d) |
176 | { | 176 | { |
177 | if (d->props.frontend_attach == NULL) { | 177 | if (d->props.frontend_attach == NULL) { |
178 | err("strange '%s' don't want to attach a frontend.",d->desc->name); | 178 | err("strange '%s' doesn't want to attach a frontend.",d->desc->name); |
179 | return 0; | 179 | return 0; |
180 | } | 180 | } |
181 | 181 | ||
diff --git a/drivers/media/dvb/dvb-usb/dvb-usb-ids.h b/drivers/media/dvb/dvb-usb/dvb-usb-ids.h index bcb34191868b..794d513a8480 100644 --- a/drivers/media/dvb/dvb-usb/dvb-usb-ids.h +++ b/drivers/media/dvb/dvb-usb/dvb-usb-ids.h | |||
@@ -12,7 +12,7 @@ | |||
12 | /* Vendor IDs */ | 12 | /* Vendor IDs */ |
13 | #define USB_VID_ADSTECH 0x06e1 | 13 | #define USB_VID_ADSTECH 0x06e1 |
14 | #define USB_VID_ANCHOR 0x0547 | 14 | #define USB_VID_ANCHOR 0x0547 |
15 | #define USB_VID_AVERMEDIA_UNK 0x14aa | 15 | #define USB_VID_WIDEVIEW 0x14aa |
16 | #define USB_VID_AVERMEDIA 0x07ca | 16 | #define USB_VID_AVERMEDIA 0x07ca |
17 | #define USB_VID_COMPRO 0x185b | 17 | #define USB_VID_COMPRO 0x185b |
18 | #define USB_VID_COMPRO_UNK 0x145f | 18 | #define USB_VID_COMPRO_UNK 0x145f |
@@ -24,6 +24,8 @@ | |||
24 | #define USB_VID_HANFTEK 0x15f4 | 24 | #define USB_VID_HANFTEK 0x15f4 |
25 | #define USB_VID_HAUPPAUGE 0x2040 | 25 | #define USB_VID_HAUPPAUGE 0x2040 |
26 | #define USB_VID_HYPER_PALTEK 0x1025 | 26 | #define USB_VID_HYPER_PALTEK 0x1025 |
27 | #define USB_VID_KYE 0x0458 | ||
28 | #define USB_VID_MEDION 0x1660 | ||
27 | #define USB_VID_VISIONPLUS 0x13d3 | 29 | #define USB_VID_VISIONPLUS 0x13d3 |
28 | #define USB_VID_TWINHAN 0x1822 | 30 | #define USB_VID_TWINHAN 0x1822 |
29 | #define USB_VID_ULTIMA_ELECTRONIC 0x05d8 | 31 | #define USB_VID_ULTIMA_ELECTRONIC 0x05d8 |
@@ -70,6 +72,8 @@ | |||
70 | #define USB_PID_HANFTEK_UMT_010_WARM 0x0015 | 72 | #define USB_PID_HANFTEK_UMT_010_WARM 0x0015 |
71 | #define USB_PID_DTT200U_COLD 0x0201 | 73 | #define USB_PID_DTT200U_COLD 0x0201 |
72 | #define USB_PID_DTT200U_WARM 0x0301 | 74 | #define USB_PID_DTT200U_WARM 0x0301 |
75 | #define USB_PID_WT220U_COLD 0x0222 | ||
76 | #define USB_PID_WT220U_WARM 0x0221 | ||
73 | #define USB_PID_WINTV_NOVA_T_USB2_COLD 0x9300 | 77 | #define USB_PID_WINTV_NOVA_T_USB2_COLD 0x9300 |
74 | #define USB_PID_WINTV_NOVA_T_USB2_WARM 0x9301 | 78 | #define USB_PID_WINTV_NOVA_T_USB2_WARM 0x9301 |
75 | #define USB_PID_NEBULA_DIGITV 0x0201 | 79 | #define USB_PID_NEBULA_DIGITV 0x0201 |
@@ -78,6 +82,8 @@ | |||
78 | #define USB_PID_DVICO_BLUEBIRD_LGDT 0xd820 | 82 | #define USB_PID_DVICO_BLUEBIRD_LGDT 0xd820 |
79 | #define USB_PID_DVICO_BLUEBIRD_LGZ201_1 0xdb01 | 83 | #define USB_PID_DVICO_BLUEBIRD_LGZ201_1 0xdb01 |
80 | #define USB_PID_DVICO_BLUEBIRD_TH7579_2 0xdb11 | 84 | #define USB_PID_DVICO_BLUEBIRD_TH7579_2 0xdb11 |
81 | 85 | #define USB_PID_MEDION_MD95700 0x0932 | |
86 | #define USB_PID_KYE_DVB_T_COLD 0x701e | ||
87 | #define USB_PID_KYE_DVB_T_WARM 0x701f | ||
82 | 88 | ||
83 | #endif | 89 | #endif |
diff --git a/drivers/media/dvb/dvb-usb/dvb-usb-init.c b/drivers/media/dvb/dvb-usb/dvb-usb-init.c index 3aadec974cf1..65f0c095abc9 100644 --- a/drivers/media/dvb/dvb-usb/dvb-usb-init.c +++ b/drivers/media/dvb/dvb-usb/dvb-usb-init.c | |||
@@ -18,6 +18,10 @@ int dvb_usb_debug; | |||
18 | module_param_named(debug,dvb_usb_debug, int, 0644); | 18 | module_param_named(debug,dvb_usb_debug, int, 0644); |
19 | MODULE_PARM_DESC(debug, "set debugging level (1=info,xfer=2,pll=4,ts=8,err=16,rc=32,fw=64 (or-able))." DVB_USB_DEBUG_STATUS); | 19 | MODULE_PARM_DESC(debug, "set debugging level (1=info,xfer=2,pll=4,ts=8,err=16,rc=32,fw=64 (or-able))." DVB_USB_DEBUG_STATUS); |
20 | 20 | ||
21 | int dvb_usb_disable_rc_polling; | ||
22 | module_param_named(disable_rc_polling, dvb_usb_disable_rc_polling, int, 0644); | ||
23 | MODULE_PARM_DESC(disable_rc_polling, "disable remote control polling (default: 0)."); | ||
24 | |||
21 | /* general initialization functions */ | 25 | /* general initialization functions */ |
22 | int dvb_usb_exit(struct dvb_usb_device *d) | 26 | int dvb_usb_exit(struct dvb_usb_device *d) |
23 | { | 27 | { |
@@ -47,17 +51,17 @@ static int dvb_usb_init(struct dvb_usb_device *d) | |||
47 | 51 | ||
48 | /* speed - when running at FULL speed we need a HW PID filter */ | 52 | /* speed - when running at FULL speed we need a HW PID filter */ |
49 | if (d->udev->speed == USB_SPEED_FULL && !(d->props.caps & DVB_USB_HAS_PID_FILTER)) { | 53 | if (d->udev->speed == USB_SPEED_FULL && !(d->props.caps & DVB_USB_HAS_PID_FILTER)) { |
50 | err("This USB2.0 device cannot be run on a USB1.1 port. (it lacks a HW PID filter)"); | 54 | err("This USB2.0 device cannot be run on a USB1.1 port. (it lacks a hardware PID filter)"); |
51 | return -ENODEV; | 55 | return -ENODEV; |
52 | } | 56 | } |
53 | 57 | ||
54 | if ((d->udev->speed == USB_SPEED_FULL && d->props.caps & DVB_USB_HAS_PID_FILTER) || | 58 | if ((d->udev->speed == USB_SPEED_FULL && d->props.caps & DVB_USB_HAS_PID_FILTER) || |
55 | (d->props.caps & DVB_USB_NEED_PID_FILTERING)) { | 59 | (d->props.caps & DVB_USB_NEED_PID_FILTERING)) { |
56 | info("will use the device's hw PID filter."); | 60 | info("will use the device's hardware PID filter (table count: %d).",d->props.pid_filter_count); |
57 | d->pid_filtering = 1; | 61 | d->pid_filtering = 1; |
58 | d->max_feed_count = d->props.pid_filter_count; | 62 | d->max_feed_count = d->props.pid_filter_count; |
59 | } else { | 63 | } else { |
60 | info("will pass the complete MPEG2 transport stream to the demuxer."); | 64 | info("will pass the complete MPEG2 transport stream to the software demuxer."); |
61 | d->pid_filtering = 0; | 65 | d->pid_filtering = 0; |
62 | d->max_feed_count = 255; | 66 | d->max_feed_count = 255; |
63 | } | 67 | } |
diff --git a/drivers/media/dvb/dvb-usb/dvb-usb-remote.c b/drivers/media/dvb/dvb-usb/dvb-usb-remote.c index 9f1e23f82bae..fc7800f1743e 100644 --- a/drivers/media/dvb/dvb-usb/dvb-usb-remote.c +++ b/drivers/media/dvb/dvb-usb/dvb-usb-remote.c | |||
@@ -21,6 +21,10 @@ static void dvb_usb_read_remote_control(void *data) | |||
21 | /* TODO: need a lock here. We can simply skip checking for the remote control | 21 | /* TODO: need a lock here. We can simply skip checking for the remote control |
22 | if we're busy. */ | 22 | if we're busy. */ |
23 | 23 | ||
24 | /* when the parameter has been set to 1 via sysfs while the driver was running */ | ||
25 | if (dvb_usb_disable_rc_polling) | ||
26 | return; | ||
27 | |||
24 | if (d->props.rc_query(d,&event,&state)) { | 28 | if (d->props.rc_query(d,&event,&state)) { |
25 | err("error while querying for an remote control event."); | 29 | err("error while querying for an remote control event."); |
26 | goto schedule; | 30 | goto schedule; |
@@ -35,7 +39,7 @@ static void dvb_usb_read_remote_control(void *data) | |||
35 | d->last_event = event; | 39 | d->last_event = event; |
36 | case REMOTE_KEY_REPEAT: | 40 | case REMOTE_KEY_REPEAT: |
37 | deb_rc("key repeated\n"); | 41 | deb_rc("key repeated\n"); |
38 | input_event(&d->rc_input_dev, EV_KEY, event, 1); | 42 | input_event(&d->rc_input_dev, EV_KEY, d->last_event, 1); |
39 | input_event(&d->rc_input_dev, EV_KEY, d->last_event, 0); | 43 | input_event(&d->rc_input_dev, EV_KEY, d->last_event, 0); |
40 | input_sync(&d->rc_input_dev); | 44 | input_sync(&d->rc_input_dev); |
41 | break; | 45 | break; |
@@ -85,7 +89,9 @@ schedule: | |||
85 | int dvb_usb_remote_init(struct dvb_usb_device *d) | 89 | int dvb_usb_remote_init(struct dvb_usb_device *d) |
86 | { | 90 | { |
87 | int i; | 91 | int i; |
88 | if (d->props.rc_key_map == NULL) | 92 | if (d->props.rc_key_map == NULL || |
93 | d->props.rc_query == NULL || | ||
94 | dvb_usb_disable_rc_polling) | ||
89 | return 0; | 95 | return 0; |
90 | 96 | ||
91 | /* Initialise the remote-control structures.*/ | 97 | /* Initialise the remote-control structures.*/ |
@@ -154,12 +160,12 @@ int dvb_usb_nec_rc_key_to_event(struct dvb_usb_device *d, | |||
154 | break; | 160 | break; |
155 | } | 161 | } |
156 | /* See if we can match the raw key code. */ | 162 | /* See if we can match the raw key code. */ |
157 | for (i = 0; i < sizeof(keymap)/sizeof(struct dvb_usb_rc_key); i++) | 163 | for (i = 0; i < d->props.rc_key_map_size; i++) |
158 | if (keymap[i].custom == keybuf[1] && | 164 | if (keymap[i].custom == keybuf[1] && |
159 | keymap[i].data == keybuf[3]) { | 165 | keymap[i].data == keybuf[3]) { |
160 | *event = keymap[i].event; | 166 | *event = keymap[i].event; |
161 | *state = REMOTE_KEY_PRESSED; | 167 | *state = REMOTE_KEY_PRESSED; |
162 | break; | 168 | return 0; |
163 | } | 169 | } |
164 | deb_err("key mapping failed - no appropriate key found in keymapping\n"); | 170 | deb_err("key mapping failed - no appropriate key found in keymapping\n"); |
165 | break; | 171 | break; |
diff --git a/drivers/media/dvb/dvb-usb/dvb-usb-urb.c b/drivers/media/dvb/dvb-usb/dvb-usb-urb.c index 83d476fb410a..f5799a4c228e 100644 --- a/drivers/media/dvb/dvb-usb/dvb-usb-urb.c +++ b/drivers/media/dvb/dvb-usb/dvb-usb-urb.c | |||
@@ -24,11 +24,12 @@ int dvb_usb_generic_rw(struct dvb_usb_device *d, u8 *wbuf, u16 wlen, u8 *rbuf, | |||
24 | if ((ret = down_interruptible(&d->usb_sem))) | 24 | if ((ret = down_interruptible(&d->usb_sem))) |
25 | return ret; | 25 | return ret; |
26 | 26 | ||
27 | deb_xfer(">>> "); | ||
27 | debug_dump(wbuf,wlen,deb_xfer); | 28 | debug_dump(wbuf,wlen,deb_xfer); |
28 | 29 | ||
29 | ret = usb_bulk_msg(d->udev,usb_sndbulkpipe(d->udev, | 30 | ret = usb_bulk_msg(d->udev,usb_sndbulkpipe(d->udev, |
30 | d->props.generic_bulk_ctrl_endpoint), wbuf,wlen,&actlen, | 31 | d->props.generic_bulk_ctrl_endpoint), wbuf,wlen,&actlen, |
31 | 2*HZ); | 32 | 2000); |
32 | 33 | ||
33 | if (ret) | 34 | if (ret) |
34 | err("bulk message failed: %d (%d/%d)",ret,wlen,actlen); | 35 | err("bulk message failed: %d (%d/%d)",ret,wlen,actlen); |
@@ -42,12 +43,14 @@ int dvb_usb_generic_rw(struct dvb_usb_device *d, u8 *wbuf, u16 wlen, u8 *rbuf, | |||
42 | 43 | ||
43 | ret = usb_bulk_msg(d->udev,usb_rcvbulkpipe(d->udev, | 44 | ret = usb_bulk_msg(d->udev,usb_rcvbulkpipe(d->udev, |
44 | d->props.generic_bulk_ctrl_endpoint),rbuf,rlen,&actlen, | 45 | d->props.generic_bulk_ctrl_endpoint),rbuf,rlen,&actlen, |
45 | 2*HZ); | 46 | 2000); |
46 | 47 | ||
47 | if (ret) | 48 | if (ret) |
48 | err("recv bulk message failed: %d",ret); | 49 | err("recv bulk message failed: %d",ret); |
49 | else | 50 | else { |
51 | deb_xfer("<<< "); | ||
50 | debug_dump(rbuf,actlen,deb_xfer); | 52 | debug_dump(rbuf,actlen,deb_xfer); |
53 | } | ||
51 | } | 54 | } |
52 | 55 | ||
53 | up(&d->usb_sem); | 56 | up(&d->usb_sem); |
@@ -61,12 +64,19 @@ int dvb_usb_generic_write(struct dvb_usb_device *d, u8 *buf, u16 len) | |||
61 | } | 64 | } |
62 | EXPORT_SYMBOL(dvb_usb_generic_write); | 65 | EXPORT_SYMBOL(dvb_usb_generic_write); |
63 | 66 | ||
64 | static void dvb_usb_bulk_urb_complete(struct urb *urb, struct pt_regs *ptregs) | 67 | |
68 | /* URB stuff for streaming */ | ||
69 | static void dvb_usb_urb_complete(struct urb *urb, struct pt_regs *ptregs) | ||
65 | { | 70 | { |
66 | struct dvb_usb_device *d = urb->context; | 71 | struct dvb_usb_device *d = urb->context; |
72 | int ptype = usb_pipetype(urb->pipe); | ||
73 | int i; | ||
74 | u8 *b; | ||
67 | 75 | ||
68 | deb_ts("bulk urb completed. feedcount: %d, status: %d, length: %d\n",d->feedcount,urb->status, | 76 | deb_ts("'%s' urb completed. feedcount: %d, status: %d, length: %d/%d, pack_num: %d, errors: %d\n", |
69 | urb->actual_length); | 77 | ptype == PIPE_ISOCHRONOUS ? "isoc" : "bulk", d->feedcount, |
78 | urb->status,urb->actual_length,urb->transfer_buffer_length, | ||
79 | urb->number_of_packets,urb->error_count); | ||
70 | 80 | ||
71 | switch (urb->status) { | 81 | switch (urb->status) { |
72 | case 0: /* success */ | 82 | case 0: /* success */ |
@@ -81,11 +91,33 @@ static void dvb_usb_bulk_urb_complete(struct urb *urb, struct pt_regs *ptregs) | |||
81 | break; | 91 | break; |
82 | } | 92 | } |
83 | 93 | ||
84 | if (d->feedcount > 0 && urb->actual_length > 0) { | 94 | if (d->feedcount > 0) { |
85 | if (d->state & DVB_USB_STATE_DVB) | 95 | if (d->state & DVB_USB_STATE_DVB) { |
86 | dvb_dmx_swfilter(&d->demux, (u8*) urb->transfer_buffer,urb->actual_length); | 96 | switch (ptype) { |
87 | } else | 97 | case PIPE_ISOCHRONOUS: |
88 | deb_ts("URB dropped because of feedcount.\n"); | 98 | b = (u8 *) urb->transfer_buffer; |
99 | for (i = 0; i < urb->number_of_packets; i++) { | ||
100 | if (urb->iso_frame_desc[i].status != 0) | ||
101 | deb_ts("iso frame descriptor has an error: %d\n",urb->iso_frame_desc[i].status); | ||
102 | else if (urb->iso_frame_desc[i].actual_length > 0) { | ||
103 | dvb_dmx_swfilter(&d->demux,b + urb->iso_frame_desc[i].offset, | ||
104 | urb->iso_frame_desc[i].actual_length); | ||
105 | } | ||
106 | urb->iso_frame_desc[i].status = 0; | ||
107 | urb->iso_frame_desc[i].actual_length = 0; | ||
108 | } | ||
109 | debug_dump(b,20,deb_ts); | ||
110 | break; | ||
111 | case PIPE_BULK: | ||
112 | if (urb->actual_length > 0) | ||
113 | dvb_dmx_swfilter(&d->demux, (u8 *) urb->transfer_buffer,urb->actual_length); | ||
114 | break; | ||
115 | default: | ||
116 | err("unkown endpoint type in completition handler."); | ||
117 | return; | ||
118 | } | ||
119 | } | ||
120 | } | ||
89 | 121 | ||
90 | usb_submit_urb(urb,GFP_ATOMIC); | 122 | usb_submit_urb(urb,GFP_ATOMIC); |
91 | } | 123 | } |
@@ -94,7 +126,7 @@ int dvb_usb_urb_kill(struct dvb_usb_device *d) | |||
94 | { | 126 | { |
95 | int i; | 127 | int i; |
96 | for (i = 0; i < d->urbs_submitted; i++) { | 128 | for (i = 0; i < d->urbs_submitted; i++) { |
97 | deb_info("killing URB no. %d.\n",i); | 129 | deb_ts("killing URB no. %d.\n",i); |
98 | 130 | ||
99 | /* stop the URB */ | 131 | /* stop the URB */ |
100 | usb_kill_urb(d->urb_list[i]); | 132 | usb_kill_urb(d->urb_list[i]); |
@@ -107,9 +139,9 @@ int dvb_usb_urb_submit(struct dvb_usb_device *d) | |||
107 | { | 139 | { |
108 | int i,ret; | 140 | int i,ret; |
109 | for (i = 0; i < d->urbs_initialized; i++) { | 141 | for (i = 0; i < d->urbs_initialized; i++) { |
110 | deb_info("submitting URB no. %d\n",i); | 142 | deb_ts("submitting URB no. %d\n",i); |
111 | if ((ret = usb_submit_urb(d->urb_list[i],GFP_ATOMIC))) { | 143 | if ((ret = usb_submit_urb(d->urb_list[i],GFP_ATOMIC))) { |
112 | err("could not submit URB no. %d - get them all back\n",i); | 144 | err("could not submit URB no. %d - get them all back",i); |
113 | dvb_usb_urb_kill(d); | 145 | dvb_usb_urb_kill(d); |
114 | return ret; | 146 | return ret; |
115 | } | 147 | } |
@@ -118,32 +150,78 @@ int dvb_usb_urb_submit(struct dvb_usb_device *d) | |||
118 | return 0; | 150 | return 0; |
119 | } | 151 | } |
120 | 152 | ||
121 | static int dvb_usb_bulk_urb_init(struct dvb_usb_device *d) | 153 | static int dvb_usb_free_stream_buffers(struct dvb_usb_device *d) |
122 | { | 154 | { |
123 | int i,bufsize = d->props.urb.count * d->props.urb.u.bulk.buffersize; | 155 | if (d->state & DVB_USB_STATE_URB_BUF) { |
156 | while (d->buf_num) { | ||
157 | d->buf_num--; | ||
158 | deb_mem("freeing buffer %d\n",d->buf_num); | ||
159 | usb_buffer_free(d->udev, d->buf_size, | ||
160 | d->buf_list[d->buf_num], d->dma_addr[d->buf_num]); | ||
161 | } | ||
162 | kfree(d->buf_list); | ||
163 | kfree(d->dma_addr); | ||
164 | } | ||
165 | |||
166 | d->state &= ~DVB_USB_STATE_URB_BUF; | ||
124 | 167 | ||
125 | deb_info("allocate %d bytes as buffersize for all URBs\n",bufsize); | 168 | return 0; |
126 | /* allocate the actual buffer for the URBs */ | 169 | } |
127 | if ((d->buffer = usb_buffer_alloc(d->udev, bufsize, SLAB_ATOMIC, &d->dma_handle)) == NULL) { | 170 | |
128 | deb_info("not enough memory for urb-buffer allocation.\n"); | 171 | static int dvb_usb_allocate_stream_buffers(struct dvb_usb_device *d, int num, unsigned long size) |
172 | { | ||
173 | d->buf_num = 0; | ||
174 | d->buf_size = size; | ||
175 | |||
176 | deb_mem("all in all I will use %lu bytes for streaming\n",num*size); | ||
177 | |||
178 | if ((d->buf_list = kmalloc(num*sizeof(u8 *), GFP_ATOMIC)) == NULL) | ||
179 | return -ENOMEM; | ||
180 | |||
181 | if ((d->dma_addr = kmalloc(num*sizeof(dma_addr_t), GFP_ATOMIC)) == NULL) { | ||
182 | kfree(d->buf_list); | ||
129 | return -ENOMEM; | 183 | return -ENOMEM; |
130 | } | 184 | } |
131 | deb_info("allocation successful\n"); | 185 | memset(d->buf_list,0,num*sizeof(u8 *)); |
132 | memset(d->buffer,0,bufsize); | 186 | memset(d->dma_addr,0,num*sizeof(dma_addr_t)); |
133 | 187 | ||
134 | d->state |= DVB_USB_STATE_URB_BUF; | 188 | d->state |= DVB_USB_STATE_URB_BUF; |
135 | 189 | ||
190 | for (d->buf_num = 0; d->buf_num < num; d->buf_num++) { | ||
191 | deb_mem("allocating buffer %d\n",d->buf_num); | ||
192 | if (( d->buf_list[d->buf_num] = | ||
193 | usb_buffer_alloc(d->udev, size, SLAB_ATOMIC, | ||
194 | &d->dma_addr[d->buf_num]) ) == NULL) { | ||
195 | deb_mem("not enough memory for urb-buffer allocation.\n"); | ||
196 | dvb_usb_free_stream_buffers(d); | ||
197 | return -ENOMEM; | ||
198 | } | ||
199 | deb_mem("buffer %d: %p (dma: %d)\n",d->buf_num,d->buf_list[d->buf_num],d->dma_addr[d->buf_num]); | ||
200 | memset(d->buf_list[d->buf_num],0,size); | ||
201 | } | ||
202 | deb_mem("allocation successful\n"); | ||
203 | |||
204 | return 0; | ||
205 | } | ||
206 | |||
207 | static int dvb_usb_bulk_urb_init(struct dvb_usb_device *d) | ||
208 | { | ||
209 | int i; | ||
210 | |||
211 | if ((i = dvb_usb_allocate_stream_buffers(d,d->props.urb.count, | ||
212 | d->props.urb.u.bulk.buffersize)) < 0) | ||
213 | return i; | ||
214 | |||
136 | /* allocate the URBs */ | 215 | /* allocate the URBs */ |
137 | for (i = 0; i < d->props.urb.count; i++) { | 216 | for (i = 0; i < d->props.urb.count; i++) { |
138 | if (!(d->urb_list[i] = usb_alloc_urb(0,GFP_ATOMIC))) { | 217 | if ((d->urb_list[i] = usb_alloc_urb(0,GFP_ATOMIC)) == NULL) |
139 | return -ENOMEM; | 218 | return -ENOMEM; |
140 | } | ||
141 | 219 | ||
142 | usb_fill_bulk_urb( d->urb_list[i], d->udev, | 220 | usb_fill_bulk_urb( d->urb_list[i], d->udev, |
143 | usb_rcvbulkpipe(d->udev,d->props.urb.endpoint), | 221 | usb_rcvbulkpipe(d->udev,d->props.urb.endpoint), |
144 | &d->buffer[i*d->props.urb.u.bulk.buffersize], | 222 | d->buf_list[i], |
145 | d->props.urb.u.bulk.buffersize, | 223 | d->props.urb.u.bulk.buffersize, |
146 | dvb_usb_bulk_urb_complete, d); | 224 | dvb_usb_urb_complete, d); |
147 | 225 | ||
148 | d->urb_list[i]->transfer_flags = 0; | 226 | d->urb_list[i]->transfer_flags = 0; |
149 | d->urbs_initialized++; | 227 | d->urbs_initialized++; |
@@ -151,6 +229,47 @@ static int dvb_usb_bulk_urb_init(struct dvb_usb_device *d) | |||
151 | return 0; | 229 | return 0; |
152 | } | 230 | } |
153 | 231 | ||
232 | static int dvb_usb_isoc_urb_init(struct dvb_usb_device *d) | ||
233 | { | ||
234 | int i,j; | ||
235 | |||
236 | if ((i = dvb_usb_allocate_stream_buffers(d,d->props.urb.count, | ||
237 | d->props.urb.u.isoc.framesize*d->props.urb.u.isoc.framesperurb)) < 0) | ||
238 | return i; | ||
239 | |||
240 | /* allocate the URBs */ | ||
241 | for (i = 0; i < d->props.urb.count; i++) { | ||
242 | struct urb *urb; | ||
243 | int frame_offset = 0; | ||
244 | if ((d->urb_list[i] = | ||
245 | usb_alloc_urb(d->props.urb.u.isoc.framesperurb,GFP_ATOMIC)) == NULL) | ||
246 | return -ENOMEM; | ||
247 | |||
248 | urb = d->urb_list[i]; | ||
249 | |||
250 | urb->dev = d->udev; | ||
251 | urb->context = d; | ||
252 | urb->complete = dvb_usb_urb_complete; | ||
253 | urb->pipe = usb_rcvisocpipe(d->udev,d->props.urb.endpoint); | ||
254 | urb->transfer_flags = URB_ISO_ASAP | URB_NO_TRANSFER_DMA_MAP; | ||
255 | urb->interval = d->props.urb.u.isoc.interval; | ||
256 | urb->number_of_packets = d->props.urb.u.isoc.framesperurb; | ||
257 | urb->transfer_buffer_length = d->buf_size; | ||
258 | urb->transfer_buffer = d->buf_list[i]; | ||
259 | urb->transfer_dma = d->dma_addr[i]; | ||
260 | |||
261 | for (j = 0; j < d->props.urb.u.isoc.framesperurb; j++) { | ||
262 | urb->iso_frame_desc[j].offset = frame_offset; | ||
263 | urb->iso_frame_desc[j].length = d->props.urb.u.isoc.framesize; | ||
264 | frame_offset += d->props.urb.u.isoc.framesize; | ||
265 | } | ||
266 | |||
267 | d->urbs_initialized++; | ||
268 | } | ||
269 | return 0; | ||
270 | |||
271 | } | ||
272 | |||
154 | int dvb_usb_urb_init(struct dvb_usb_device *d) | 273 | int dvb_usb_urb_init(struct dvb_usb_device *d) |
155 | { | 274 | { |
156 | /* | 275 | /* |
@@ -174,8 +293,7 @@ int dvb_usb_urb_init(struct dvb_usb_device *d) | |||
174 | case DVB_USB_BULK: | 293 | case DVB_USB_BULK: |
175 | return dvb_usb_bulk_urb_init(d); | 294 | return dvb_usb_bulk_urb_init(d); |
176 | case DVB_USB_ISOC: | 295 | case DVB_USB_ISOC: |
177 | err("isochronous transfer not yet implemented in dvb-usb."); | 296 | return dvb_usb_isoc_urb_init(d); |
178 | return -EINVAL; | ||
179 | default: | 297 | default: |
180 | err("unkown URB-type for data transfer."); | 298 | err("unkown URB-type for data transfer."); |
181 | return -EINVAL; | 299 | return -EINVAL; |
@@ -191,7 +309,7 @@ int dvb_usb_urb_exit(struct dvb_usb_device *d) | |||
191 | if (d->state & DVB_USB_STATE_URB_LIST) { | 309 | if (d->state & DVB_USB_STATE_URB_LIST) { |
192 | for (i = 0; i < d->urbs_initialized; i++) { | 310 | for (i = 0; i < d->urbs_initialized; i++) { |
193 | if (d->urb_list[i] != NULL) { | 311 | if (d->urb_list[i] != NULL) { |
194 | deb_info("freeing URB no. %d.\n",i); | 312 | deb_mem("freeing URB no. %d.\n",i); |
195 | /* free the URBs */ | 313 | /* free the URBs */ |
196 | usb_free_urb(d->urb_list[i]); | 314 | usb_free_urb(d->urb_list[i]); |
197 | } | 315 | } |
@@ -202,10 +320,6 @@ int dvb_usb_urb_exit(struct dvb_usb_device *d) | |||
202 | d->state &= ~DVB_USB_STATE_URB_LIST; | 320 | d->state &= ~DVB_USB_STATE_URB_LIST; |
203 | } | 321 | } |
204 | 322 | ||
205 | if (d->state & DVB_USB_STATE_URB_BUF) | 323 | dvb_usb_free_stream_buffers(d); |
206 | usb_buffer_free(d->udev, d->props.urb.u.bulk.buffersize * d->props.urb.count, | ||
207 | d->buffer, d->dma_handle); | ||
208 | |||
209 | d->state &= ~DVB_USB_STATE_URB_BUF; | ||
210 | return 0; | 324 | return 0; |
211 | } | 325 | } |
diff --git a/drivers/media/dvb/dvb-usb/dvb-usb.h b/drivers/media/dvb/dvb-usb/dvb-usb.h index abcee1943f64..a80567caf508 100644 --- a/drivers/media/dvb/dvb-usb/dvb-usb.h +++ b/drivers/media/dvb/dvb-usb/dvb-usb.h | |||
@@ -189,12 +189,13 @@ struct dvb_usb_properties { | |||
189 | struct { | 189 | struct { |
190 | int framesperurb; | 190 | int framesperurb; |
191 | int framesize; | 191 | int framesize; |
192 | int interval; | ||
192 | } isoc; | 193 | } isoc; |
193 | } u; | 194 | } u; |
194 | } urb; | 195 | } urb; |
195 | 196 | ||
196 | int num_device_descs; | 197 | int num_device_descs; |
197 | struct dvb_usb_device_description devices[8]; | 198 | struct dvb_usb_device_description devices[9]; |
198 | }; | 199 | }; |
199 | 200 | ||
200 | 201 | ||
@@ -207,19 +208,28 @@ struct dvb_usb_properties { | |||
207 | * @udev: pointer to the device's struct usb_device. | 208 | * @udev: pointer to the device's struct usb_device. |
208 | * @urb_list: array of dynamically allocated struct urb for the MPEG2-TS- | 209 | * @urb_list: array of dynamically allocated struct urb for the MPEG2-TS- |
209 | * streaming. | 210 | * streaming. |
210 | * @buffer: buffer used to streaming. | 211 | * |
211 | * @dma_handle: dma_addr_t for buffer. | 212 | * @buf_num: number of buffer allocated. |
213 | * @buf_size: size of each buffer in buf_list. | ||
214 | * @buf_list: array containing all allocate buffers for streaming. | ||
215 | * @dma_addr: list of dma_addr_t for each buffer in buf_list. | ||
216 | * | ||
212 | * @urbs_initialized: number of URBs initialized. | 217 | * @urbs_initialized: number of URBs initialized. |
213 | * @urbs_submitted: number of URBs submitted. | 218 | * @urbs_submitted: number of URBs submitted. |
219 | * | ||
214 | * @feedcount: number of reqested feeds (used for streaming-activation) | 220 | * @feedcount: number of reqested feeds (used for streaming-activation) |
215 | * @pid_filtering: is hardware pid_filtering used or not. | 221 | * @pid_filtering: is hardware pid_filtering used or not. |
222 | * | ||
216 | * @usb_sem: semaphore of USB control messages (reading needs two messages) | 223 | * @usb_sem: semaphore of USB control messages (reading needs two messages) |
217 | * @i2c_sem: semaphore for i2c-transfers | 224 | * @i2c_sem: semaphore for i2c-transfers |
225 | * | ||
218 | * @i2c_adap: device's i2c_adapter if it uses I2CoverUSB | 226 | * @i2c_adap: device's i2c_adapter if it uses I2CoverUSB |
219 | * @pll_addr: I2C address of the tuner for programming | 227 | * @pll_addr: I2C address of the tuner for programming |
220 | * @pll_init: array containing the initialization buffer | 228 | * @pll_init: array containing the initialization buffer |
221 | * @pll_desc: pointer to the appropriate struct dvb_pll_desc | 229 | * @pll_desc: pointer to the appropriate struct dvb_pll_desc |
222 | * @tuner_pass_ctrl: called to (de)activate tuner passthru of the demod | 230 | * |
231 | * @tuner_pass_ctrl: called to (de)activate tuner passthru of the demod or the board | ||
232 | * | ||
223 | * @dvb_adap: device's dvb_adapter. | 233 | * @dvb_adap: device's dvb_adapter. |
224 | * @dmxdev: device's dmxdev. | 234 | * @dmxdev: device's dmxdev. |
225 | * @demux: device's software demuxer. | 235 | * @demux: device's software demuxer. |
@@ -253,8 +263,12 @@ struct dvb_usb_device { | |||
253 | /* usb */ | 263 | /* usb */ |
254 | struct usb_device *udev; | 264 | struct usb_device *udev; |
255 | struct urb **urb_list; | 265 | struct urb **urb_list; |
256 | u8 *buffer; | 266 | |
257 | dma_addr_t dma_handle; | 267 | int buf_num; |
268 | unsigned long buf_size; | ||
269 | u8 **buf_list; | ||
270 | dma_addr_t *dma_addr; | ||
271 | |||
258 | int urbs_initialized; | 272 | int urbs_initialized; |
259 | int urbs_submitted; | 273 | int urbs_submitted; |
260 | 274 | ||
diff --git a/drivers/media/dvb/dvb-usb/nova-t-usb2.c b/drivers/media/dvb/dvb-usb/nova-t-usb2.c index 9d83781aef95..258a92bfbcc7 100644 --- a/drivers/media/dvb/dvb-usb/nova-t-usb2.c +++ b/drivers/media/dvb/dvb-usb/nova-t-usb2.c | |||
@@ -203,7 +203,7 @@ static struct dvb_usb_properties nova_t_properties = { | |||
203 | 203 | ||
204 | static struct usb_driver nova_t_driver = { | 204 | static struct usb_driver nova_t_driver = { |
205 | .owner = THIS_MODULE, | 205 | .owner = THIS_MODULE, |
206 | .name = "Hauppauge WinTV-NOVA-T usb2", | 206 | .name = "dvb_usb_nova_t_usb2", |
207 | .probe = nova_t_probe, | 207 | .probe = nova_t_probe, |
208 | .disconnect = dvb_usb_device_exit, | 208 | .disconnect = dvb_usb_device_exit, |
209 | .id_table = nova_t_table, | 209 | .id_table = nova_t_table, |
diff --git a/drivers/media/dvb/dvb-usb/umt-010.c b/drivers/media/dvb/dvb-usb/umt-010.c index aa560422ce7c..2112ac3cf5e2 100644 --- a/drivers/media/dvb/dvb-usb/umt-010.c +++ b/drivers/media/dvb/dvb-usb/umt-010.c | |||
@@ -129,7 +129,7 @@ static struct dvb_usb_properties umt_properties = { | |||
129 | 129 | ||
130 | static struct usb_driver umt_driver = { | 130 | static struct usb_driver umt_driver = { |
131 | .owner = THIS_MODULE, | 131 | .owner = THIS_MODULE, |
132 | .name = "HanfTek UMT-010 USB2.0 DVB-T devices", | 132 | .name = "dvb_usb_umt_010", |
133 | .probe = umt_probe, | 133 | .probe = umt_probe, |
134 | .disconnect = dvb_usb_device_exit, | 134 | .disconnect = dvb_usb_device_exit, |
135 | .id_table = umt_table, | 135 | .id_table = umt_table, |
diff --git a/drivers/media/dvb/dvb-usb/vp7045.c b/drivers/media/dvb/dvb-usb/vp7045.c index 02ecc9a8e3b6..9ac95f54f9fc 100644 --- a/drivers/media/dvb/dvb-usb/vp7045.c +++ b/drivers/media/dvb/dvb-usb/vp7045.c | |||
@@ -44,7 +44,7 @@ int vp7045_usb_op(struct dvb_usb_device *d, u8 cmd, u8 *out, int outlen, u8 *in, | |||
44 | if (usb_control_msg(d->udev, | 44 | if (usb_control_msg(d->udev, |
45 | usb_sndctrlpipe(d->udev,0), | 45 | usb_sndctrlpipe(d->udev,0), |
46 | TH_COMMAND_OUT, USB_TYPE_VENDOR | USB_DIR_OUT, 0, 0, | 46 | TH_COMMAND_OUT, USB_TYPE_VENDOR | USB_DIR_OUT, 0, 0, |
47 | outbuf, 20, 2*HZ) != 20) { | 47 | outbuf, 20, 2000) != 20) { |
48 | err("USB control message 'out' went wrong."); | 48 | err("USB control message 'out' went wrong."); |
49 | ret = -EIO; | 49 | ret = -EIO; |
50 | goto unlock; | 50 | goto unlock; |
@@ -55,7 +55,7 @@ int vp7045_usb_op(struct dvb_usb_device *d, u8 cmd, u8 *out, int outlen, u8 *in, | |||
55 | if (usb_control_msg(d->udev, | 55 | if (usb_control_msg(d->udev, |
56 | usb_rcvctrlpipe(d->udev,0), | 56 | usb_rcvctrlpipe(d->udev,0), |
57 | TH_COMMAND_IN, USB_TYPE_VENDOR | USB_DIR_IN, 0, 0, | 57 | TH_COMMAND_IN, USB_TYPE_VENDOR | USB_DIR_IN, 0, 0, |
58 | inbuf, 12, 2*HZ) != 12) { | 58 | inbuf, 12, 2000) != 12) { |
59 | err("USB control message 'in' went wrong."); | 59 | err("USB control message 'in' went wrong."); |
60 | ret = -EIO; | 60 | ret = -EIO; |
61 | goto unlock; | 61 | goto unlock; |
@@ -94,16 +94,41 @@ static int vp7045_power_ctrl(struct dvb_usb_device *d, int onoff) | |||
94 | /* The keymapping struct. Somehow this should be loaded to the driver, but | 94 | /* The keymapping struct. Somehow this should be loaded to the driver, but |
95 | * currently it is hardcoded. */ | 95 | * currently it is hardcoded. */ |
96 | static struct dvb_usb_rc_key vp7045_rc_keys[] = { | 96 | static struct dvb_usb_rc_key vp7045_rc_keys[] = { |
97 | /* insert the keys like this. to make the raw keys visible, enable | 97 | { 0x00, 0x16, KEY_POWER }, |
98 | * debug=0x04 when loading dvb-usb-vp7045. */ | 98 | { 0x00, 0x10, KEY_MUTE }, |
99 | 99 | { 0x00, 0x03, KEY_1 }, | |
100 | /* these keys are probably wrong. I don't have a working IR-receiver on my | 100 | { 0x00, 0x01, KEY_2 }, |
101 | * vp7045, so I can't test it. Patches are welcome. */ | 101 | { 0x00, 0x06, KEY_3 }, |
102 | { 0x00, 0x01, KEY_1 }, | 102 | { 0x00, 0x09, KEY_4 }, |
103 | { 0x00, 0x02, KEY_2 }, | 103 | { 0x00, 0x1d, KEY_5 }, |
104 | { 0x00, 0x1f, KEY_6 }, | ||
105 | { 0x00, 0x0d, KEY_7 }, | ||
106 | { 0x00, 0x19, KEY_8 }, | ||
107 | { 0x00, 0x1b, KEY_9 }, | ||
108 | { 0x00, 0x15, KEY_0 }, | ||
109 | { 0x00, 0x05, KEY_CHANNELUP }, | ||
110 | { 0x00, 0x02, KEY_CHANNELDOWN }, | ||
111 | { 0x00, 0x1e, KEY_VOLUMEUP }, | ||
112 | { 0x00, 0x0a, KEY_VOLUMEDOWN }, | ||
113 | { 0x00, 0x11, KEY_RECORD }, | ||
114 | { 0x00, 0x17, KEY_FAVORITES }, /* Heart symbol - Channel list. */ | ||
115 | { 0x00, 0x14, KEY_PLAY }, | ||
116 | { 0x00, 0x1a, KEY_STOP }, | ||
117 | { 0x00, 0x40, KEY_REWIND }, | ||
118 | { 0x00, 0x12, KEY_FASTFORWARD }, | ||
119 | { 0x00, 0x0e, KEY_PREVIOUS }, /* Recall - Previous channel. */ | ||
120 | { 0x00, 0x4c, KEY_PAUSE }, | ||
121 | { 0x00, 0x4d, KEY_SCREEN }, /* Full screen mode. */ | ||
122 | { 0x00, 0x54, KEY_AUDIO }, /* MTS - Switch to secondary audio. */ | ||
123 | { 0x00, 0x0c, KEY_CANCEL }, /* Cancel */ | ||
124 | { 0x00, 0x1c, KEY_EPG }, /* EPG */ | ||
125 | { 0x00, 0x00, KEY_TAB }, /* Tab */ | ||
126 | { 0x00, 0x48, KEY_INFO }, /* Preview */ | ||
127 | { 0x00, 0x04, KEY_LIST }, /* RecordList */ | ||
128 | { 0x00, 0x0f, KEY_TEXT } /* Teletext */ | ||
104 | }; | 129 | }; |
105 | 130 | ||
106 | static int vp7045_rc_query(struct dvb_usb_device *d, u32 *key_buf, int *state) | 131 | static int vp7045_rc_query(struct dvb_usb_device *d, u32 *event, int *state) |
107 | { | 132 | { |
108 | u8 key; | 133 | u8 key; |
109 | int i; | 134 | int i; |
@@ -119,7 +144,7 @@ static int vp7045_rc_query(struct dvb_usb_device *d, u32 *key_buf, int *state) | |||
119 | for (i = 0; i < sizeof(vp7045_rc_keys)/sizeof(struct dvb_usb_rc_key); i++) | 144 | for (i = 0; i < sizeof(vp7045_rc_keys)/sizeof(struct dvb_usb_rc_key); i++) |
120 | if (vp7045_rc_keys[i].data == key) { | 145 | if (vp7045_rc_keys[i].data == key) { |
121 | *state = REMOTE_KEY_PRESSED; | 146 | *state = REMOTE_KEY_PRESSED; |
122 | *key_buf = vp7045_rc_keys[i].event; | 147 | *event = vp7045_rc_keys[i].event; |
123 | break; | 148 | break; |
124 | } | 149 | } |
125 | return 0; | 150 | return 0; |
@@ -230,7 +255,7 @@ static struct dvb_usb_properties vp7045_properties = { | |||
230 | /* usb specific object needed to register this driver with the usb subsystem */ | 255 | /* usb specific object needed to register this driver with the usb subsystem */ |
231 | static struct usb_driver vp7045_usb_driver = { | 256 | static struct usb_driver vp7045_usb_driver = { |
232 | .owner = THIS_MODULE, | 257 | .owner = THIS_MODULE, |
233 | .name = "dvb-usb-vp7045", | 258 | .name = "dvb_usb_vp7045", |
234 | .probe = vp7045_usb_probe, | 259 | .probe = vp7045_usb_probe, |
235 | .disconnect = dvb_usb_device_exit, | 260 | .disconnect = dvb_usb_device_exit, |
236 | .id_table = vp7045_usb_table, | 261 | .id_table = vp7045_usb_table, |
diff --git a/drivers/media/dvb/frontends/Kconfig b/drivers/media/dvb/frontends/Kconfig index b4fddf513ebe..d847c62bd837 100644 --- a/drivers/media/dvb/frontends/Kconfig +++ b/drivers/media/dvb/frontends/Kconfig | |||
@@ -40,6 +40,12 @@ config DVB_VES1X93 | |||
40 | help | 40 | help |
41 | A DVB-S tuner module. Say Y when you want to support this frontend. | 41 | A DVB-S tuner module. Say Y when you want to support this frontend. |
42 | 42 | ||
43 | config DVB_S5H1420 | ||
44 | tristate "Samsung S5H1420 based" | ||
45 | depends on DVB_CORE | ||
46 | help | ||
47 | A DVB-S tuner module. Say Y when you want to support this frontend. | ||
48 | |||
43 | comment "DVB-T (terrestrial) frontends" | 49 | comment "DVB-T (terrestrial) frontends" |
44 | depends on DVB_CORE | 50 | depends on DVB_CORE |
45 | 51 | ||
@@ -181,4 +187,11 @@ config DVB_BCM3510 | |||
181 | An ATSC 8VSB/16VSB and QAM64/256 tuner module. Say Y when you want to | 187 | An ATSC 8VSB/16VSB and QAM64/256 tuner module. Say Y when you want to |
182 | support this frontend. | 188 | support this frontend. |
183 | 189 | ||
190 | config DVB_LGDT3302 | ||
191 | tristate "LGDT3302 based (DViCO FusionHDTV3 Gold)" | ||
192 | depends on DVB_CORE | ||
193 | help | ||
194 | An ATSC 8VSB and QAM64/256 tuner module. Say Y when you want | ||
195 | to support this frontend. | ||
196 | |||
184 | endmenu | 197 | endmenu |
diff --git a/drivers/media/dvb/frontends/Makefile b/drivers/media/dvb/frontends/Makefile index 91d6d3576d3d..de5e240cba7f 100644 --- a/drivers/media/dvb/frontends/Makefile +++ b/drivers/media/dvb/frontends/Makefile | |||
@@ -29,3 +29,5 @@ obj-$(CONFIG_DVB_NXT2002) += nxt2002.o | |||
29 | obj-$(CONFIG_DVB_OR51211) += or51211.o | 29 | obj-$(CONFIG_DVB_OR51211) += or51211.o |
30 | obj-$(CONFIG_DVB_OR51132) += or51132.o | 30 | obj-$(CONFIG_DVB_OR51132) += or51132.o |
31 | obj-$(CONFIG_DVB_BCM3510) += bcm3510.o | 31 | obj-$(CONFIG_DVB_BCM3510) += bcm3510.o |
32 | obj-$(CONFIG_DVB_S5H1420) += s5h1420.o | ||
33 | obj-$(CONFIG_DVB_LGDT3302) += lgdt3302.o | ||
diff --git a/drivers/media/dvb/frontends/cx22702.c b/drivers/media/dvb/frontends/cx22702.c index f4aa44136c7c..9f639297a9f2 100644 --- a/drivers/media/dvb/frontends/cx22702.c +++ b/drivers/media/dvb/frontends/cx22702.c | |||
@@ -76,7 +76,6 @@ static u8 init_tab [] = { | |||
76 | 0x49, 0x56, | 76 | 0x49, 0x56, |
77 | 0x6b, 0x1e, | 77 | 0x6b, 0x1e, |
78 | 0xc8, 0x02, | 78 | 0xc8, 0x02, |
79 | 0xf8, 0x02, | ||
80 | 0xf9, 0x00, | 79 | 0xf9, 0x00, |
81 | 0xfa, 0x00, | 80 | 0xfa, 0x00, |
82 | 0xfb, 0x00, | 81 | 0xfb, 0x00, |
@@ -203,7 +202,7 @@ static int cx22702_set_tps (struct dvb_frontend* fe, struct dvb_frontend_paramet | |||
203 | struct cx22702_state* state = fe->demodulator_priv; | 202 | struct cx22702_state* state = fe->demodulator_priv; |
204 | 203 | ||
205 | /* set PLL */ | 204 | /* set PLL */ |
206 | cx22702_writereg (state, 0x0D, cx22702_readreg(state,0x0D) &0xfe); | 205 | cx22702_writereg (state, 0x0D, cx22702_readreg(state,0x0D) &0xfe); |
207 | if (state->config->pll_set) { | 206 | if (state->config->pll_set) { |
208 | state->config->pll_set(fe, p); | 207 | state->config->pll_set(fe, p); |
209 | } else if (state->config->pll_desc) { | 208 | } else if (state->config->pll_desc) { |
@@ -217,7 +216,7 @@ static int cx22702_set_tps (struct dvb_frontend* fe, struct dvb_frontend_paramet | |||
217 | } else { | 216 | } else { |
218 | BUG(); | 217 | BUG(); |
219 | } | 218 | } |
220 | cx22702_writereg (state, 0x0D, cx22702_readreg(state,0x0D) | 1); | 219 | cx22702_writereg (state, 0x0D, cx22702_readreg(state,0x0D) | 1); |
221 | 220 | ||
222 | /* set inversion */ | 221 | /* set inversion */ |
223 | cx22702_set_inversion (state, p->inversion); | 222 | cx22702_set_inversion (state, p->inversion); |
@@ -256,7 +255,7 @@ static int cx22702_set_tps (struct dvb_frontend* fe, struct dvb_frontend_paramet | |||
256 | cx22702_writereg(state, 0x0B, cx22702_readreg(state, 0x0B) & 0xfc ); | 255 | cx22702_writereg(state, 0x0B, cx22702_readreg(state, 0x0B) & 0xfc ); |
257 | cx22702_writereg(state, 0x0C, (cx22702_readreg(state, 0x0C) & 0xBF) | 0x40 ); | 256 | cx22702_writereg(state, 0x0C, (cx22702_readreg(state, 0x0C) & 0xBF) | 0x40 ); |
258 | cx22702_writereg(state, 0x00, 0x01); /* Begin aquisition */ | 257 | cx22702_writereg(state, 0x00, 0x01); /* Begin aquisition */ |
259 | printk("%s: Autodetecting\n",__FUNCTION__); | 258 | dprintk("%s: Autodetecting\n",__FUNCTION__); |
260 | return 0; | 259 | return 0; |
261 | } | 260 | } |
262 | 261 | ||
@@ -347,10 +346,11 @@ static int cx22702_init (struct dvb_frontend* fe) | |||
347 | for (i=0; i<sizeof(init_tab); i+=2) | 346 | for (i=0; i<sizeof(init_tab); i+=2) |
348 | cx22702_writereg (state, init_tab[i], init_tab[i+1]); | 347 | cx22702_writereg (state, init_tab[i], init_tab[i+1]); |
349 | 348 | ||
349 | cx22702_writereg (state, 0xf8, (state->config->output_mode << 1) & 0x02); | ||
350 | 350 | ||
351 | /* init PLL */ | 351 | /* init PLL */ |
352 | if (state->config->pll_init) { | 352 | if (state->config->pll_init) { |
353 | cx22702_writereg (state, 0x0D, cx22702_readreg(state,0x0D) &0xfe); | 353 | cx22702_writereg (state, 0x0D, cx22702_readreg(state,0x0D) & 0xfe); |
354 | state->config->pll_init(fe); | 354 | state->config->pll_init(fe); |
355 | cx22702_writereg (state, 0x0D, cx22702_readreg(state,0x0D) | 1); | 355 | cx22702_writereg (state, 0x0D, cx22702_readreg(state,0x0D) | 1); |
356 | } | 356 | } |
@@ -440,8 +440,10 @@ static int cx22702_read_ucblocks(struct dvb_frontend* fe, u32* ucblocks) | |||
440 | 440 | ||
441 | /* RS Uncorrectable Packet Count then reset */ | 441 | /* RS Uncorrectable Packet Count then reset */ |
442 | _ucblocks = cx22702_readreg (state, 0xE3); | 442 | _ucblocks = cx22702_readreg (state, 0xE3); |
443 | if (state->prevUCBlocks < _ucblocks) *ucblocks = (_ucblocks - state->prevUCBlocks); | 443 | if (state->prevUCBlocks < _ucblocks) |
444 | else *ucblocks = state->prevUCBlocks - _ucblocks; | 444 | *ucblocks = (_ucblocks - state->prevUCBlocks); |
445 | else | ||
446 | *ucblocks = state->prevUCBlocks - _ucblocks; | ||
445 | state->prevUCBlocks = _ucblocks; | 447 | state->prevUCBlocks = _ucblocks; |
446 | 448 | ||
447 | return 0; | 449 | return 0; |
@@ -457,6 +459,12 @@ static int cx22702_get_frontend(struct dvb_frontend* fe, struct dvb_frontend_par | |||
457 | return cx22702_get_tps (state, &p->u.ofdm); | 459 | return cx22702_get_tps (state, &p->u.ofdm); |
458 | } | 460 | } |
459 | 461 | ||
462 | static int cx22702_get_tune_settings(struct dvb_frontend* fe, struct dvb_frontend_tune_settings *tune) | ||
463 | { | ||
464 | tune->min_delay_ms = 1000; | ||
465 | return 0; | ||
466 | } | ||
467 | |||
460 | static void cx22702_release(struct dvb_frontend* fe) | 468 | static void cx22702_release(struct dvb_frontend* fe) |
461 | { | 469 | { |
462 | struct cx22702_state* state = fe->demodulator_priv; | 470 | struct cx22702_state* state = fe->demodulator_priv; |
@@ -472,7 +480,8 @@ struct dvb_frontend* cx22702_attach(const struct cx22702_config* config, | |||
472 | 480 | ||
473 | /* allocate memory for the internal state */ | 481 | /* allocate memory for the internal state */ |
474 | state = kmalloc(sizeof(struct cx22702_state), GFP_KERNEL); | 482 | state = kmalloc(sizeof(struct cx22702_state), GFP_KERNEL); |
475 | if (state == NULL) goto error; | 483 | if (state == NULL) |
484 | goto error; | ||
476 | 485 | ||
477 | /* setup the state */ | 486 | /* setup the state */ |
478 | state->config = config; | 487 | state->config = config; |
@@ -481,7 +490,8 @@ struct dvb_frontend* cx22702_attach(const struct cx22702_config* config, | |||
481 | state->prevUCBlocks = 0; | 490 | state->prevUCBlocks = 0; |
482 | 491 | ||
483 | /* check if the demod is there */ | 492 | /* check if the demod is there */ |
484 | if (cx22702_readreg(state, 0x1f) != 0x3) goto error; | 493 | if (cx22702_readreg(state, 0x1f) != 0x3) |
494 | goto error; | ||
485 | 495 | ||
486 | /* create dvb_frontend */ | 496 | /* create dvb_frontend */ |
487 | state->frontend.ops = &state->ops; | 497 | state->frontend.ops = &state->ops; |
@@ -514,6 +524,7 @@ static struct dvb_frontend_ops cx22702_ops = { | |||
514 | 524 | ||
515 | .set_frontend = cx22702_set_tps, | 525 | .set_frontend = cx22702_set_tps, |
516 | .get_frontend = cx22702_get_frontend, | 526 | .get_frontend = cx22702_get_frontend, |
527 | .get_tune_settings = cx22702_get_tune_settings, | ||
517 | 528 | ||
518 | .read_status = cx22702_read_status, | 529 | .read_status = cx22702_read_status, |
519 | .read_ber = cx22702_read_ber, | 530 | .read_ber = cx22702_read_ber, |
diff --git a/drivers/media/dvb/frontends/cx22702.h b/drivers/media/dvb/frontends/cx22702.h index 559fdb906669..11f86806756e 100644 --- a/drivers/media/dvb/frontends/cx22702.h +++ b/drivers/media/dvb/frontends/cx22702.h | |||
@@ -35,6 +35,11 @@ struct cx22702_config | |||
35 | /* the demodulator's i2c address */ | 35 | /* the demodulator's i2c address */ |
36 | u8 demod_address; | 36 | u8 demod_address; |
37 | 37 | ||
38 | /* serial/parallel output */ | ||
39 | #define CX22702_PARALLEL_OUTPUT 0 | ||
40 | #define CX22702_SERIAL_OUTPUT 1 | ||
41 | u8 output_mode; | ||
42 | |||
38 | /* PLL maintenance */ | 43 | /* PLL maintenance */ |
39 | u8 pll_address; | 44 | u8 pll_address; |
40 | struct dvb_pll_desc *pll_desc; | 45 | struct dvb_pll_desc *pll_desc; |
diff --git a/drivers/media/dvb/frontends/dvb-pll.c b/drivers/media/dvb/frontends/dvb-pll.c index f73b5f48e235..5afeaa9b43b4 100644 --- a/drivers/media/dvb/frontends/dvb-pll.c +++ b/drivers/media/dvb/frontends/dvb-pll.c | |||
@@ -55,7 +55,7 @@ struct dvb_pll_desc dvb_pll_thomson_dtt7610 = { | |||
55 | }; | 55 | }; |
56 | EXPORT_SYMBOL(dvb_pll_thomson_dtt7610); | 56 | EXPORT_SYMBOL(dvb_pll_thomson_dtt7610); |
57 | 57 | ||
58 | static void thomson_dtt759x_bw(u8 *buf, int bandwidth) | 58 | static void thomson_dtt759x_bw(u8 *buf, u32 freq, int bandwidth) |
59 | { | 59 | { |
60 | if (BANDWIDTH_7_MHZ == bandwidth) | 60 | if (BANDWIDTH_7_MHZ == bandwidth) |
61 | buf[3] |= 0x10; | 61 | buf[3] |= 0x10; |
@@ -93,6 +93,32 @@ struct dvb_pll_desc dvb_pll_lg_z201 = { | |||
93 | }; | 93 | }; |
94 | EXPORT_SYMBOL(dvb_pll_lg_z201); | 94 | EXPORT_SYMBOL(dvb_pll_lg_z201); |
95 | 95 | ||
96 | struct dvb_pll_desc dvb_pll_microtune_4042 = { | ||
97 | .name = "Microtune 4042 FI5", | ||
98 | .min = 57000000, | ||
99 | .max = 858000000, | ||
100 | .count = 3, | ||
101 | .entries = { | ||
102 | { 162000000, 44000000, 62500, 0x8e, 0xa1 }, | ||
103 | { 457000000, 44000000, 62500, 0x8e, 0x91 }, | ||
104 | { 999999999, 44000000, 62500, 0x8e, 0x31 }, | ||
105 | }, | ||
106 | }; | ||
107 | EXPORT_SYMBOL(dvb_pll_microtune_4042); | ||
108 | |||
109 | struct dvb_pll_desc dvb_pll_thomson_dtt7611 = { | ||
110 | .name = "Thomson dtt7611", | ||
111 | .min = 44000000, | ||
112 | .max = 958000000, | ||
113 | .count = 3, | ||
114 | .entries = { | ||
115 | { 157250000, 44000000, 62500, 0x8e, 0x39 }, | ||
116 | { 454000000, 44000000, 62500, 0x8e, 0x3a }, | ||
117 | { 999999999, 44000000, 62500, 0x8e, 0x3c }, | ||
118 | }, | ||
119 | }; | ||
120 | EXPORT_SYMBOL(dvb_pll_thomson_dtt7611); | ||
121 | |||
96 | struct dvb_pll_desc dvb_pll_unknown_1 = { | 122 | struct dvb_pll_desc dvb_pll_unknown_1 = { |
97 | .name = "unknown 1", /* used by dntv live dvb-t */ | 123 | .name = "unknown 1", /* used by dntv live dvb-t */ |
98 | .min = 174000000, | 124 | .min = 174000000, |
@@ -146,7 +172,7 @@ EXPORT_SYMBOL(dvb_pll_env57h1xd5); | |||
146 | /* Philips TDA6650/TDA6651 | 172 | /* Philips TDA6650/TDA6651 |
147 | * used in Panasonic ENV77H11D5 | 173 | * used in Panasonic ENV77H11D5 |
148 | */ | 174 | */ |
149 | static void tda665x_bw(u8 *buf, int bandwidth) | 175 | static void tda665x_bw(u8 *buf, u32 freq, int bandwidth) |
150 | { | 176 | { |
151 | if (bandwidth == BANDWIDTH_8_MHZ) | 177 | if (bandwidth == BANDWIDTH_8_MHZ) |
152 | buf[3] |= 0x08; | 178 | buf[3] |= 0x08; |
@@ -178,7 +204,7 @@ EXPORT_SYMBOL(dvb_pll_tda665x); | |||
178 | /* Infineon TUA6034 | 204 | /* Infineon TUA6034 |
179 | * used in LG TDTP E102P | 205 | * used in LG TDTP E102P |
180 | */ | 206 | */ |
181 | static void tua6034_bw(u8 *buf, int bandwidth) | 207 | static void tua6034_bw(u8 *buf, u32 freq, int bandwidth) |
182 | { | 208 | { |
183 | if (BANDWIDTH_7_MHZ != bandwidth) | 209 | if (BANDWIDTH_7_MHZ != bandwidth) |
184 | buf[3] |= 0x08; | 210 | buf[3] |= 0x08; |
@@ -198,6 +224,57 @@ struct dvb_pll_desc dvb_pll_tua6034 = { | |||
198 | }; | 224 | }; |
199 | EXPORT_SYMBOL(dvb_pll_tua6034); | 225 | EXPORT_SYMBOL(dvb_pll_tua6034); |
200 | 226 | ||
227 | /* Philips FMD1216ME | ||
228 | * used in Medion Hybrid PCMCIA card and USB Box | ||
229 | */ | ||
230 | static void fmd1216me_bw(u8 *buf, u32 freq, int bandwidth) | ||
231 | { | ||
232 | if (bandwidth == BANDWIDTH_8_MHZ && freq >= 158870000) | ||
233 | buf[3] |= 0x08; | ||
234 | } | ||
235 | |||
236 | struct dvb_pll_desc dvb_pll_fmd1216me = { | ||
237 | .name = "Philips FMD1216ME", | ||
238 | .min = 50870000, | ||
239 | .max = 858000000, | ||
240 | .setbw = fmd1216me_bw, | ||
241 | .count = 7, | ||
242 | .entries = { | ||
243 | { 143870000, 36213333, 166667, 0xbc, 0x41 }, | ||
244 | { 158870000, 36213333, 166667, 0xf4, 0x41 }, | ||
245 | { 329870000, 36213333, 166667, 0xbc, 0x42 }, | ||
246 | { 441870000, 36213333, 166667, 0xf4, 0x42 }, | ||
247 | { 625870000, 36213333, 166667, 0xbc, 0x44 }, | ||
248 | { 803870000, 36213333, 166667, 0xf4, 0x44 }, | ||
249 | { 999999999, 36213333, 166667, 0xfc, 0x44 }, | ||
250 | } | ||
251 | }; | ||
252 | EXPORT_SYMBOL(dvb_pll_fmd1216me); | ||
253 | |||
254 | /* ALPS TDED4 | ||
255 | * used in Nebula-Cards and USB boxes | ||
256 | */ | ||
257 | static void tded4_bw(u8 *buf, u32 freq, int bandwidth) | ||
258 | { | ||
259 | if (bandwidth == BANDWIDTH_8_MHZ) | ||
260 | buf[3] |= 0x04; | ||
261 | } | ||
262 | |||
263 | struct dvb_pll_desc dvb_pll_tded4 = { | ||
264 | .name = "ALPS TDED4", | ||
265 | .min = 47000000, | ||
266 | .max = 863000000, | ||
267 | .setbw = tded4_bw, | ||
268 | .count = 4, | ||
269 | .entries = { | ||
270 | { 153000000, 36166667, 166667, 0x85, 0x01 }, | ||
271 | { 470000000, 36166667, 166667, 0x85, 0x02 }, | ||
272 | { 823000000, 36166667, 166667, 0x85, 0x08 }, | ||
273 | { 999999999, 36166667, 166667, 0x85, 0x88 }, | ||
274 | } | ||
275 | }; | ||
276 | EXPORT_SYMBOL(dvb_pll_tded4); | ||
277 | |||
201 | /* ----------------------------------------------------------- */ | 278 | /* ----------------------------------------------------------- */ |
202 | /* code */ | 279 | /* code */ |
203 | 280 | ||
@@ -231,7 +308,7 @@ int dvb_pll_configure(struct dvb_pll_desc *desc, u8 *buf, | |||
231 | buf[3] = desc->entries[i].cb2; | 308 | buf[3] = desc->entries[i].cb2; |
232 | 309 | ||
233 | if (desc->setbw) | 310 | if (desc->setbw) |
234 | desc->setbw(buf, bandwidth); | 311 | desc->setbw(buf, freq, bandwidth); |
235 | 312 | ||
236 | if (debug) | 313 | if (debug) |
237 | printk("pll: %s: div=%d | buf=0x%02x,0x%02x,0x%02x,0x%02x\n", | 314 | printk("pll: %s: div=%d | buf=0x%02x,0x%02x,0x%02x,0x%02x\n", |
diff --git a/drivers/media/dvb/frontends/dvb-pll.h b/drivers/media/dvb/frontends/dvb-pll.h index b796778624b6..cb794759d89e 100644 --- a/drivers/media/dvb/frontends/dvb-pll.h +++ b/drivers/media/dvb/frontends/dvb-pll.h | |||
@@ -9,7 +9,7 @@ struct dvb_pll_desc { | |||
9 | char *name; | 9 | char *name; |
10 | u32 min; | 10 | u32 min; |
11 | u32 max; | 11 | u32 max; |
12 | void (*setbw)(u8 *buf, int bandwidth); | 12 | void (*setbw)(u8 *buf, u32 freq, int bandwidth); |
13 | int count; | 13 | int count; |
14 | struct { | 14 | struct { |
15 | u32 limit; | 15 | u32 limit; |
@@ -24,12 +24,16 @@ extern struct dvb_pll_desc dvb_pll_thomson_dtt7579; | |||
24 | extern struct dvb_pll_desc dvb_pll_thomson_dtt759x; | 24 | extern struct dvb_pll_desc dvb_pll_thomson_dtt759x; |
25 | extern struct dvb_pll_desc dvb_pll_thomson_dtt7610; | 25 | extern struct dvb_pll_desc dvb_pll_thomson_dtt7610; |
26 | extern struct dvb_pll_desc dvb_pll_lg_z201; | 26 | extern struct dvb_pll_desc dvb_pll_lg_z201; |
27 | extern struct dvb_pll_desc dvb_pll_microtune_4042; | ||
28 | extern struct dvb_pll_desc dvb_pll_thomson_dtt7611; | ||
27 | extern struct dvb_pll_desc dvb_pll_unknown_1; | 29 | extern struct dvb_pll_desc dvb_pll_unknown_1; |
28 | 30 | ||
29 | extern struct dvb_pll_desc dvb_pll_tua6010xs; | 31 | extern struct dvb_pll_desc dvb_pll_tua6010xs; |
30 | extern struct dvb_pll_desc dvb_pll_env57h1xd5; | 32 | extern struct dvb_pll_desc dvb_pll_env57h1xd5; |
31 | extern struct dvb_pll_desc dvb_pll_tua6034; | 33 | extern struct dvb_pll_desc dvb_pll_tua6034; |
32 | extern struct dvb_pll_desc dvb_pll_tda665x; | 34 | extern struct dvb_pll_desc dvb_pll_tda665x; |
35 | extern struct dvb_pll_desc dvb_pll_fmd1216me; | ||
36 | extern struct dvb_pll_desc dvb_pll_tded4; | ||
33 | 37 | ||
34 | int dvb_pll_configure(struct dvb_pll_desc *desc, u8 *buf, | 38 | int dvb_pll_configure(struct dvb_pll_desc *desc, u8 *buf, |
35 | u32 freq, int bandwidth); | 39 | u32 freq, int bandwidth); |
diff --git a/drivers/media/dvb/frontends/l64781.c b/drivers/media/dvb/frontends/l64781.c index 031a1ddc7d11..faaad1ae8559 100644 --- a/drivers/media/dvb/frontends/l64781.c +++ b/drivers/media/dvb/frontends/l64781.c | |||
@@ -474,11 +474,12 @@ static int l64781_init(struct dvb_frontend* fe) | |||
474 | return 0; | 474 | return 0; |
475 | } | 475 | } |
476 | 476 | ||
477 | static int l64781_get_tune_settings(struct dvb_frontend* fe, struct dvb_frontend_tune_settings* fesettings) | 477 | static int l64781_get_tune_settings(struct dvb_frontend* fe, |
478 | struct dvb_frontend_tune_settings* fesettings) | ||
478 | { | 479 | { |
479 | fesettings->min_delay_ms = 200; | 480 | fesettings->min_delay_ms = 4000; |
480 | fesettings->step_size = 166667; | 481 | fesettings->step_size = 0; |
481 | fesettings->max_drift = 166667*2; | 482 | fesettings->max_drift = 0; |
482 | return 0; | 483 | return 0; |
483 | } | 484 | } |
484 | 485 | ||
diff --git a/drivers/media/dvb/frontends/lgdt3302.c b/drivers/media/dvb/frontends/lgdt3302.c new file mode 100644 index 000000000000..2eea03d218cd --- /dev/null +++ b/drivers/media/dvb/frontends/lgdt3302.c | |||
@@ -0,0 +1,609 @@ | |||
1 | /* | ||
2 | * Support for LGDT3302 (DViCO FustionHDTV 3 Gold) - VSB/QAM | ||
3 | * | ||
4 | * Copyright (C) 2005 Wilson Michaels <wilsonmichaels@earthlink.net> | ||
5 | * | ||
6 | * Based on code from Kirk Lapray <kirk_lapray@bigfoot.com> | ||
7 | * Copyright (C) 2005 | ||
8 | * | ||
9 | * This program is free software; you can redistribute it and/or modify | ||
10 | * it under the terms of the GNU General Public License as published by | ||
11 | * the Free Software Foundation; either version 2 of the License, or | ||
12 | * (at your option) any later version. | ||
13 | * | ||
14 | * This program is distributed in the hope that it will be useful, | ||
15 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
16 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
17 | * GNU General Public License for more details. | ||
18 | * | ||
19 | * You should have received a copy of the GNU General Public License | ||
20 | * along with this program; if not, write to the Free Software | ||
21 | * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. | ||
22 | * | ||
23 | */ | ||
24 | |||
25 | /* | ||
26 | * NOTES ABOUT THIS DRIVER | ||
27 | * | ||
28 | * This driver supports DViCO FusionHDTV 3 Gold under Linux. | ||
29 | * | ||
30 | * TODO: | ||
31 | * BER and signal strength always return 0. | ||
32 | * | ||
33 | */ | ||
34 | |||
35 | #include <linux/kernel.h> | ||
36 | #include <linux/module.h> | ||
37 | #include <linux/moduleparam.h> | ||
38 | #include <linux/init.h> | ||
39 | #include <linux/delay.h> | ||
40 | #include <asm/byteorder.h> | ||
41 | |||
42 | #include "dvb_frontend.h" | ||
43 | #include "dvb-pll.h" | ||
44 | #include "lgdt3302_priv.h" | ||
45 | #include "lgdt3302.h" | ||
46 | |||
47 | static int debug = 0; | ||
48 | module_param(debug, int, 0644); | ||
49 | MODULE_PARM_DESC(debug,"Turn on/off lgdt3302 frontend debugging (default:off)."); | ||
50 | #define dprintk(args...) \ | ||
51 | do { \ | ||
52 | if (debug) printk(KERN_DEBUG "lgdt3302: " args); \ | ||
53 | } while (0) | ||
54 | |||
55 | struct lgdt3302_state | ||
56 | { | ||
57 | struct i2c_adapter* i2c; | ||
58 | struct dvb_frontend_ops ops; | ||
59 | |||
60 | /* Configuration settings */ | ||
61 | const struct lgdt3302_config* config; | ||
62 | |||
63 | struct dvb_frontend frontend; | ||
64 | |||
65 | /* Demodulator private data */ | ||
66 | fe_modulation_t current_modulation; | ||
67 | |||
68 | /* Tuner private data */ | ||
69 | u32 current_frequency; | ||
70 | }; | ||
71 | |||
72 | static int i2c_writebytes (struct lgdt3302_state* state, | ||
73 | u8 addr, /* demod_address or pll_address */ | ||
74 | u8 *buf, /* data bytes to send */ | ||
75 | int len /* number of bytes to send */ ) | ||
76 | { | ||
77 | if (addr == state->config->pll_address) { | ||
78 | struct i2c_msg msg = | ||
79 | { .addr = addr, .flags = 0, .buf = buf, .len = len }; | ||
80 | int err; | ||
81 | |||
82 | if ((err = i2c_transfer(state->i2c, &msg, 1)) != 1) { | ||
83 | printk(KERN_WARNING "lgdt3302: %s error (addr %02x <- %02x, err == %i)\n", __FUNCTION__, addr, buf[0], err); | ||
84 | if (err < 0) | ||
85 | return err; | ||
86 | else | ||
87 | return -EREMOTEIO; | ||
88 | } | ||
89 | } else { | ||
90 | u8 tmp[] = { buf[0], buf[1] }; | ||
91 | struct i2c_msg msg = | ||
92 | { .addr = addr, .flags = 0, .buf = tmp, .len = 2 }; | ||
93 | int err; | ||
94 | int i; | ||
95 | |||
96 | for (i=1; i<len; i++) { | ||
97 | tmp[1] = buf[i]; | ||
98 | if ((err = i2c_transfer(state->i2c, &msg, 1)) != 1) { | ||
99 | printk(KERN_WARNING "lgdt3302: %s error (addr %02x <- %02x, err == %i)\n", __FUNCTION__, addr, buf[0], err); | ||
100 | if (err < 0) | ||
101 | return err; | ||
102 | else | ||
103 | return -EREMOTEIO; | ||
104 | } | ||
105 | tmp[0]++; | ||
106 | } | ||
107 | } | ||
108 | return 0; | ||
109 | } | ||
110 | static int i2c_readbytes (struct lgdt3302_state* state, | ||
111 | u8 addr, /* demod_address or pll_address */ | ||
112 | u8 *buf, /* holds data bytes read */ | ||
113 | int len /* number of bytes to read */ ) | ||
114 | { | ||
115 | struct i2c_msg msg = | ||
116 | { .addr = addr, .flags = I2C_M_RD, .buf = buf, .len = len }; | ||
117 | int err; | ||
118 | |||
119 | if ((err = i2c_transfer(state->i2c, &msg, 1)) != 1) { | ||
120 | printk(KERN_WARNING "lgdt3302: %s error (addr %02x, err == %i)\n", __FUNCTION__, addr, err); | ||
121 | return -EREMOTEIO; | ||
122 | } | ||
123 | return 0; | ||
124 | } | ||
125 | |||
126 | /* | ||
127 | * This routine writes the register (reg) to the demod bus | ||
128 | * then reads the data returned for (len) bytes. | ||
129 | */ | ||
130 | |||
131 | static u8 i2c_selectreadbytes (struct lgdt3302_state* state, | ||
132 | enum I2C_REG reg, u8* buf, int len) | ||
133 | { | ||
134 | u8 wr [] = { reg }; | ||
135 | struct i2c_msg msg [] = { | ||
136 | { .addr = state->config->demod_address, | ||
137 | .flags = 0, .buf = wr, .len = 1 }, | ||
138 | { .addr = state->config->demod_address, | ||
139 | .flags = I2C_M_RD, .buf = buf, .len = len }, | ||
140 | }; | ||
141 | int ret; | ||
142 | ret = i2c_transfer(state->i2c, msg, 2); | ||
143 | if (ret != 2) { | ||
144 | printk(KERN_WARNING "lgdt3302: %s: addr 0x%02x select 0x%02x error (ret == %i)\n", __FUNCTION__, state->config->demod_address, reg, ret); | ||
145 | } else { | ||
146 | ret = 0; | ||
147 | } | ||
148 | return ret; | ||
149 | } | ||
150 | |||
151 | /* Software reset */ | ||
152 | int lgdt3302_SwReset(struct lgdt3302_state* state) | ||
153 | { | ||
154 | u8 ret; | ||
155 | u8 reset[] = { | ||
156 | IRQ_MASK, | ||
157 | 0x00 /* bit 6 is active low software reset | ||
158 | * bits 5-0 are 1 to mask interrupts */ | ||
159 | }; | ||
160 | |||
161 | ret = i2c_writebytes(state, | ||
162 | state->config->demod_address, | ||
163 | reset, sizeof(reset)); | ||
164 | if (ret == 0) { | ||
165 | /* spec says reset takes 100 ns why wait */ | ||
166 | /* mdelay(100); */ /* keep low for 100mS */ | ||
167 | reset[1] = 0x7f; /* force reset high (inactive) | ||
168 | * and unmask interrupts */ | ||
169 | ret = i2c_writebytes(state, | ||
170 | state->config->demod_address, | ||
171 | reset, sizeof(reset)); | ||
172 | } | ||
173 | /* Spec does not indicate a need for this either */ | ||
174 | /*mdelay(5); */ /* wait 5 msec before doing more */ | ||
175 | return ret; | ||
176 | } | ||
177 | |||
178 | static int lgdt3302_init(struct dvb_frontend* fe) | ||
179 | { | ||
180 | /* Hardware reset is done using gpio[0] of cx23880x chip. | ||
181 | * I'd like to do it here, but don't know how to find chip address. | ||
182 | * cx88-cards.c arranges for the reset bit to be inactive (high). | ||
183 | * Maybe there needs to be a callable function in cx88-core or | ||
184 | * the caller of this function needs to do it. */ | ||
185 | |||
186 | dprintk("%s entered\n", __FUNCTION__); | ||
187 | return lgdt3302_SwReset((struct lgdt3302_state*) fe->demodulator_priv); | ||
188 | } | ||
189 | |||
190 | static int lgdt3302_read_ber(struct dvb_frontend* fe, u32* ber) | ||
191 | { | ||
192 | *ber = 0; /* Dummy out for now */ | ||
193 | return 0; | ||
194 | } | ||
195 | |||
196 | static int lgdt3302_read_ucblocks(struct dvb_frontend* fe, u32* ucblocks) | ||
197 | { | ||
198 | struct lgdt3302_state* state = (struct lgdt3302_state*) fe->demodulator_priv; | ||
199 | u8 buf[2]; | ||
200 | |||
201 | i2c_selectreadbytes(state, PACKET_ERR_COUNTER1, buf, sizeof(buf)); | ||
202 | |||
203 | *ucblocks = (buf[0] << 8) | buf[1]; | ||
204 | return 0; | ||
205 | } | ||
206 | |||
207 | static int lgdt3302_set_parameters(struct dvb_frontend* fe, | ||
208 | struct dvb_frontend_parameters *param) | ||
209 | { | ||
210 | u8 buf[4]; | ||
211 | struct lgdt3302_state* state = | ||
212 | (struct lgdt3302_state*) fe->demodulator_priv; | ||
213 | |||
214 | /* Use 50MHz parameter values from spec sheet since xtal is 50 */ | ||
215 | static u8 top_ctrl_cfg[] = { TOP_CONTROL, 0x03 }; | ||
216 | static u8 vsb_freq_cfg[] = { VSB_CARRIER_FREQ0, 0x00, 0x87, 0x8e, 0x01 }; | ||
217 | static u8 demux_ctrl_cfg[] = { DEMUX_CONTROL, 0xfb }; | ||
218 | static u8 agc_rf_cfg[] = { AGC_RF_BANDWIDTH0, 0x40, 0x93, 0x00 }; | ||
219 | static u8 agc_ctrl_cfg[] = { AGC_FUNC_CTRL2, 0xc6, 0x40 }; | ||
220 | static u8 agc_delay_cfg[] = { AGC_DELAY0, 0x00, 0x00, 0x00 }; | ||
221 | static u8 agc_loop_cfg[] = { AGC_LOOP_BANDWIDTH0, 0x08, 0x9a }; | ||
222 | |||
223 | /* Change only if we are actually changing the modulation */ | ||
224 | if (state->current_modulation != param->u.vsb.modulation) { | ||
225 | int value; | ||
226 | |||
227 | switch(param->u.vsb.modulation) { | ||
228 | case VSB_8: | ||
229 | dprintk("%s: VSB_8 MODE\n", __FUNCTION__); | ||
230 | |||
231 | /* Select VSB mode and serial MPEG interface */ | ||
232 | top_ctrl_cfg[1] = 0x07; | ||
233 | break; | ||
234 | |||
235 | case QAM_64: | ||
236 | dprintk("%s: QAM_64 MODE\n", __FUNCTION__); | ||
237 | |||
238 | /* Select QAM_64 mode and serial MPEG interface */ | ||
239 | top_ctrl_cfg[1] = 0x04; | ||
240 | break; | ||
241 | |||
242 | case QAM_256: | ||
243 | dprintk("%s: QAM_256 MODE\n", __FUNCTION__); | ||
244 | |||
245 | /* Select QAM_256 mode and serial MPEG interface */ | ||
246 | top_ctrl_cfg[1] = 0x05; | ||
247 | break; | ||
248 | default: | ||
249 | printk(KERN_WARNING "lgdt3302: %s: Modulation type(%d) UNSUPPORTED\n", __FUNCTION__, param->u.vsb.modulation); | ||
250 | return -1; | ||
251 | } | ||
252 | /* Initializations common to all modes */ | ||
253 | |||
254 | /* Select the requested mode */ | ||
255 | i2c_writebytes(state, state->config->demod_address, | ||
256 | top_ctrl_cfg, sizeof(top_ctrl_cfg)); | ||
257 | |||
258 | /* Change the value of IFBW[11:0] | ||
259 | of AGC IF/RF loop filter bandwidth register */ | ||
260 | i2c_writebytes(state, state->config->demod_address, | ||
261 | agc_rf_cfg, sizeof(agc_rf_cfg)); | ||
262 | |||
263 | /* Change the value of bit 6, 'nINAGCBY' and | ||
264 | 'NSSEL[1:0] of ACG function control register 2 */ | ||
265 | /* Change the value of bit 6 'RFFIX' | ||
266 | of AGC function control register 3 */ | ||
267 | i2c_writebytes(state, state->config->demod_address, | ||
268 | agc_ctrl_cfg, sizeof(agc_ctrl_cfg)); | ||
269 | |||
270 | /* Change the TPCLK pin polarity | ||
271 | data is valid on falling clock */ | ||
272 | i2c_writebytes(state, state->config->demod_address, | ||
273 | demux_ctrl_cfg, sizeof(demux_ctrl_cfg)); | ||
274 | |||
275 | /* Change the value of NCOCTFV[25:0] of carrier | ||
276 | recovery center frequency register */ | ||
277 | i2c_writebytes(state, state->config->demod_address, | ||
278 | vsb_freq_cfg, sizeof(vsb_freq_cfg)); | ||
279 | /* Set the value of 'INLVTHD' register 0x2a/0x2c | ||
280 | to value from 'IFACC' register 0x39/0x3b -1 */ | ||
281 | i2c_selectreadbytes(state, AGC_RFIF_ACC0, | ||
282 | &agc_delay_cfg[1], 3); | ||
283 | value = ((agc_delay_cfg[1] & 0x0f) << 8) | agc_delay_cfg[3]; | ||
284 | value = value -1; | ||
285 | dprintk("%s IFACC -1 = 0x%03x\n", __FUNCTION__, value); | ||
286 | agc_delay_cfg[1] = (value >> 8) & 0x0f; | ||
287 | agc_delay_cfg[2] = 0x00; | ||
288 | agc_delay_cfg[3] = value & 0xff; | ||
289 | i2c_writebytes(state, state->config->demod_address, | ||
290 | agc_delay_cfg, sizeof(agc_delay_cfg)); | ||
291 | |||
292 | /* Change the value of IAGCBW[15:8] | ||
293 | of inner AGC loop filter bandwith */ | ||
294 | i2c_writebytes(state, state->config->demod_address, | ||
295 | agc_loop_cfg, sizeof(agc_loop_cfg)); | ||
296 | |||
297 | state->config->set_ts_params(fe, 0); | ||
298 | state->current_modulation = param->u.vsb.modulation; | ||
299 | } | ||
300 | |||
301 | /* Change only if we are actually changing the channel */ | ||
302 | if (state->current_frequency != param->frequency) { | ||
303 | dvb_pll_configure(state->config->pll_desc, buf, | ||
304 | param->frequency, 0); | ||
305 | dprintk("%s: tuner bytes: 0x%02x 0x%02x " | ||
306 | "0x%02x 0x%02x\n", __FUNCTION__, buf[0],buf[1],buf[2],buf[3]); | ||
307 | i2c_writebytes(state, state->config->pll_address ,buf, 4); | ||
308 | |||
309 | /* Check the status of the tuner pll */ | ||
310 | i2c_readbytes(state, state->config->pll_address, buf, 1); | ||
311 | dprintk("%s: tuner status byte = 0x%02x\n", __FUNCTION__, buf[0]); | ||
312 | |||
313 | /* Update current frequency */ | ||
314 | state->current_frequency = param->frequency; | ||
315 | } | ||
316 | lgdt3302_SwReset(state); | ||
317 | return 0; | ||
318 | } | ||
319 | |||
320 | static int lgdt3302_get_frontend(struct dvb_frontend* fe, | ||
321 | struct dvb_frontend_parameters* param) | ||
322 | { | ||
323 | struct lgdt3302_state *state = fe->demodulator_priv; | ||
324 | param->frequency = state->current_frequency; | ||
325 | return 0; | ||
326 | } | ||
327 | |||
328 | static int lgdt3302_read_status(struct dvb_frontend* fe, fe_status_t* status) | ||
329 | { | ||
330 | struct lgdt3302_state* state = (struct lgdt3302_state*) fe->demodulator_priv; | ||
331 | u8 buf[3]; | ||
332 | |||
333 | *status = 0; /* Reset status result */ | ||
334 | |||
335 | /* Check the status of the tuner pll */ | ||
336 | i2c_readbytes(state, state->config->pll_address, buf, 1); | ||
337 | dprintk("%s: tuner status byte = 0x%02x\n", __FUNCTION__, buf[0]); | ||
338 | if ((buf[0] & 0xc0) != 0x40) | ||
339 | return 0; /* Tuner PLL not locked or not powered on */ | ||
340 | |||
341 | /* | ||
342 | * You must set the Mask bits to 1 in the IRQ_MASK in order | ||
343 | * to see that status bit in the IRQ_STATUS register. | ||
344 | * This is done in SwReset(); | ||
345 | */ | ||
346 | |||
347 | /* AGC status register */ | ||
348 | i2c_selectreadbytes(state, AGC_STATUS, buf, 1); | ||
349 | dprintk("%s: AGC_STATUS = 0x%02x\n", __FUNCTION__, buf[0]); | ||
350 | if ((buf[0] & 0x0c) == 0x8){ | ||
351 | /* Test signal does not exist flag */ | ||
352 | /* as well as the AGC lock flag. */ | ||
353 | *status |= FE_HAS_SIGNAL; | ||
354 | } else { | ||
355 | /* Without a signal all other status bits are meaningless */ | ||
356 | return 0; | ||
357 | } | ||
358 | |||
359 | /* signal status */ | ||
360 | i2c_selectreadbytes(state, TOP_CONTROL, buf, sizeof(buf)); | ||
361 | dprintk("%s: TOP_CONTROL = 0x%02x, IRO_MASK = 0x%02x, IRQ_STATUS = 0x%02x\n", __FUNCTION__, buf[0], buf[1], buf[2]); | ||
362 | |||
363 | #if 0 | ||
364 | /* Alternative method to check for a signal */ | ||
365 | /* using the SNR good/bad interrupts. */ | ||
366 | if ((buf[2] & 0x30) == 0x10) | ||
367 | *status |= FE_HAS_SIGNAL; | ||
368 | #endif | ||
369 | |||
370 | /* sync status */ | ||
371 | if ((buf[2] & 0x03) == 0x01) { | ||
372 | *status |= FE_HAS_SYNC; | ||
373 | } | ||
374 | |||
375 | /* FEC error status */ | ||
376 | if ((buf[2] & 0x0c) == 0x08) { | ||
377 | *status |= FE_HAS_LOCK; | ||
378 | *status |= FE_HAS_VITERBI; | ||
379 | } | ||
380 | |||
381 | /* Carrier Recovery Lock Status Register */ | ||
382 | i2c_selectreadbytes(state, CARRIER_LOCK, buf, 1); | ||
383 | dprintk("%s: CARRIER_LOCK = 0x%02x\n", __FUNCTION__, buf[0]); | ||
384 | switch (state->current_modulation) { | ||
385 | case QAM_256: | ||
386 | case QAM_64: | ||
387 | /* Need to undestand why there are 3 lock levels here */ | ||
388 | if ((buf[0] & 0x07) == 0x07) | ||
389 | *status |= FE_HAS_CARRIER; | ||
390 | break; | ||
391 | case VSB_8: | ||
392 | if ((buf[0] & 0x80) == 0x80) | ||
393 | *status |= FE_HAS_CARRIER; | ||
394 | break; | ||
395 | default: | ||
396 | printk("KERN_WARNING lgdt3302: %s: Modulation set to unsupported value\n", __FUNCTION__); | ||
397 | } | ||
398 | |||
399 | return 0; | ||
400 | } | ||
401 | |||
402 | static int lgdt3302_read_signal_strength(struct dvb_frontend* fe, u16* strength) | ||
403 | { | ||
404 | /* not directly available. */ | ||
405 | return 0; | ||
406 | } | ||
407 | |||
408 | static int lgdt3302_read_snr(struct dvb_frontend* fe, u16* snr) | ||
409 | { | ||
410 | #ifdef SNR_IN_DB | ||
411 | /* | ||
412 | * Spec sheet shows formula for SNR_EQ = 10 log10(25 * 24**2 / noise) | ||
413 | * and SNR_PH = 10 log10(25 * 32**2 / noise) for equalizer and phase tracker | ||
414 | * respectively. The following tables are built on these formulas. | ||
415 | * The usual definition is SNR = 20 log10(signal/noise) | ||
416 | * If the specification is wrong the value retuned is 1/2 the actual SNR in db. | ||
417 | * | ||
418 | * This table is a an ordered list of noise values computed by the | ||
419 | * formula from the spec sheet such that the index into the table | ||
420 | * starting at 43 or 45 is the SNR value in db. There are duplicate noise | ||
421 | * value entries at the beginning because the SNR varies more than | ||
422 | * 1 db for a change of 1 digit in noise at very small values of noise. | ||
423 | * | ||
424 | * Examples from SNR_EQ table: | ||
425 | * noise SNR | ||
426 | * 0 43 | ||
427 | * 1 42 | ||
428 | * 2 39 | ||
429 | * 3 37 | ||
430 | * 4 36 | ||
431 | * 5 35 | ||
432 | * 6 34 | ||
433 | * 7 33 | ||
434 | * 8 33 | ||
435 | * 9 32 | ||
436 | * 10 32 | ||
437 | * 11 31 | ||
438 | * 12 31 | ||
439 | * 13 30 | ||
440 | */ | ||
441 | |||
442 | static const u32 SNR_EQ[] = | ||
443 | { 1, 2, 2, 2, 3, 3, 4, 4, 5, 7, | ||
444 | 9, 11, 13, 17, 21, 26, 33, 41, 52, 65, | ||
445 | 81, 102, 129, 162, 204, 257, 323, 406, 511, 644, | ||
446 | 810, 1020, 1284, 1616, 2035, 2561, 3224, 4059, 5110, 6433, | ||
447 | 8098, 10195, 12835, 16158, 20341, 25608, 32238, 40585, 51094, 64323, | ||
448 | 80978, 101945, 128341, 161571, 203406, 256073, 0x40000 | ||
449 | }; | ||
450 | |||
451 | static const u32 SNR_PH[] = | ||
452 | { 1, 2, 2, 2, 3, 3, 4, 5, 6, 8, | ||
453 | 10, 12, 15, 19, 23, 29, 37, 46, 58, 73, | ||
454 | 91, 115, 144, 182, 229, 288, 362, 456, 574, 722, | ||
455 | 909, 1144, 1440, 1813, 2282, 2873, 3617, 4553, 5732, 7216, | ||
456 | 9084, 11436, 14396, 18124, 22817, 28724, 36161, 45524, 57312, 72151, | ||
457 | 90833, 114351, 143960, 181235, 228161, 0x040000 | ||
458 | }; | ||
459 | |||
460 | static u8 buf[5];/* read data buffer */ | ||
461 | static u32 noise; /* noise value */ | ||
462 | static u32 snr_db; /* index into SNR_EQ[] */ | ||
463 | struct lgdt3302_state* state = (struct lgdt3302_state*) fe->demodulator_priv; | ||
464 | |||
465 | /* read both equalizer and pase tracker noise data */ | ||
466 | i2c_selectreadbytes(state, EQPH_ERR0, buf, sizeof(buf)); | ||
467 | |||
468 | if (state->current_modulation == VSB_8) { | ||
469 | /* Equalizer Mean-Square Error Register for VSB */ | ||
470 | noise = ((buf[0] & 7) << 16) | (buf[1] << 8) | buf[2]; | ||
471 | |||
472 | /* | ||
473 | * Look up noise value in table. | ||
474 | * A better search algorithm could be used... | ||
475 | * watch out there are duplicate entries. | ||
476 | */ | ||
477 | for (snr_db = 0; snr_db < sizeof(SNR_EQ); snr_db++) { | ||
478 | if (noise < SNR_EQ[snr_db]) { | ||
479 | *snr = 43 - snr_db; | ||
480 | break; | ||
481 | } | ||
482 | } | ||
483 | } else { | ||
484 | /* Phase Tracker Mean-Square Error Register for QAM */ | ||
485 | noise = ((buf[0] & 7<<3) << 13) | (buf[3] << 8) | buf[4]; | ||
486 | |||
487 | /* Look up noise value in table. */ | ||
488 | for (snr_db = 0; snr_db < sizeof(SNR_PH); snr_db++) { | ||
489 | if (noise < SNR_PH[snr_db]) { | ||
490 | *snr = 45 - snr_db; | ||
491 | break; | ||
492 | } | ||
493 | } | ||
494 | } | ||
495 | #else | ||
496 | /* Return the raw noise value */ | ||
497 | static u8 buf[5];/* read data buffer */ | ||
498 | static u32 noise; /* noise value */ | ||
499 | struct lgdt3302_state* state = (struct lgdt3302_state*) fe->demodulator_priv; | ||
500 | |||
501 | /* read both equalizer and pase tracker noise data */ | ||
502 | i2c_selectreadbytes(state, EQPH_ERR0, buf, sizeof(buf)); | ||
503 | |||
504 | if (state->current_modulation == VSB_8) { | ||
505 | /* Equalizer Mean-Square Error Register for VSB */ | ||
506 | noise = ((buf[0] & 7) << 16) | (buf[1] << 8) | buf[2]; | ||
507 | } else { | ||
508 | /* Phase Tracker Mean-Square Error Register for QAM */ | ||
509 | noise = ((buf[0] & 7<<3) << 13) | (buf[3] << 8) | buf[4]; | ||
510 | } | ||
511 | |||
512 | /* Small values for noise mean signal is better so invert noise */ | ||
513 | /* Noise is 19 bit value so discard 3 LSB*/ | ||
514 | *snr = ~noise>>3; | ||
515 | #endif | ||
516 | |||
517 | dprintk("%s: noise = 0x%05x, snr = %idb\n",__FUNCTION__, noise, *snr); | ||
518 | |||
519 | return 0; | ||
520 | } | ||
521 | |||
522 | static int lgdt3302_get_tune_settings(struct dvb_frontend* fe, struct dvb_frontend_tune_settings* fe_tune_settings) | ||
523 | { | ||
524 | /* I have no idea about this - it may not be needed */ | ||
525 | fe_tune_settings->min_delay_ms = 500; | ||
526 | fe_tune_settings->step_size = 0; | ||
527 | fe_tune_settings->max_drift = 0; | ||
528 | return 0; | ||
529 | } | ||
530 | |||
531 | static void lgdt3302_release(struct dvb_frontend* fe) | ||
532 | { | ||
533 | struct lgdt3302_state* state = (struct lgdt3302_state*) fe->demodulator_priv; | ||
534 | kfree(state); | ||
535 | } | ||
536 | |||
537 | static struct dvb_frontend_ops lgdt3302_ops; | ||
538 | |||
539 | struct dvb_frontend* lgdt3302_attach(const struct lgdt3302_config* config, | ||
540 | struct i2c_adapter* i2c) | ||
541 | { | ||
542 | struct lgdt3302_state* state = NULL; | ||
543 | u8 buf[1]; | ||
544 | |||
545 | /* Allocate memory for the internal state */ | ||
546 | state = (struct lgdt3302_state*) kmalloc(sizeof(struct lgdt3302_state), GFP_KERNEL); | ||
547 | if (state == NULL) | ||
548 | goto error; | ||
549 | memset(state,0,sizeof(*state)); | ||
550 | |||
551 | /* Setup the state */ | ||
552 | state->config = config; | ||
553 | state->i2c = i2c; | ||
554 | memcpy(&state->ops, &lgdt3302_ops, sizeof(struct dvb_frontend_ops)); | ||
555 | /* Verify communication with demod chip */ | ||
556 | if (i2c_selectreadbytes(state, 2, buf, 1)) | ||
557 | goto error; | ||
558 | |||
559 | state->current_frequency = -1; | ||
560 | state->current_modulation = -1; | ||
561 | |||
562 | /* Create dvb_frontend */ | ||
563 | state->frontend.ops = &state->ops; | ||
564 | state->frontend.demodulator_priv = state; | ||
565 | return &state->frontend; | ||
566 | |||
567 | error: | ||
568 | if (state) | ||
569 | kfree(state); | ||
570 | dprintk("%s: ERROR\n",__FUNCTION__); | ||
571 | return NULL; | ||
572 | } | ||
573 | |||
574 | static struct dvb_frontend_ops lgdt3302_ops = { | ||
575 | .info = { | ||
576 | .name= "LG Electronics LGDT3302 VSB/QAM Frontend", | ||
577 | .type = FE_ATSC, | ||
578 | .frequency_min= 54000000, | ||
579 | .frequency_max= 858000000, | ||
580 | .frequency_stepsize= 62500, | ||
581 | /* Symbol rate is for all VSB modes need to check QAM */ | ||
582 | .symbol_rate_min = 10762000, | ||
583 | .symbol_rate_max = 10762000, | ||
584 | .caps = FE_CAN_QAM_64 | FE_CAN_QAM_256 | FE_CAN_8VSB | ||
585 | }, | ||
586 | .init = lgdt3302_init, | ||
587 | .set_frontend = lgdt3302_set_parameters, | ||
588 | .get_frontend = lgdt3302_get_frontend, | ||
589 | .get_tune_settings = lgdt3302_get_tune_settings, | ||
590 | .read_status = lgdt3302_read_status, | ||
591 | .read_ber = lgdt3302_read_ber, | ||
592 | .read_signal_strength = lgdt3302_read_signal_strength, | ||
593 | .read_snr = lgdt3302_read_snr, | ||
594 | .read_ucblocks = lgdt3302_read_ucblocks, | ||
595 | .release = lgdt3302_release, | ||
596 | }; | ||
597 | |||
598 | MODULE_DESCRIPTION("LGDT3302 [DViCO FusionHDTV 3 Gold] (ATSC 8VSB & ITU-T J.83 AnnexB 64/256 QAM) Demodulator Driver"); | ||
599 | MODULE_AUTHOR("Wilson Michaels"); | ||
600 | MODULE_LICENSE("GPL"); | ||
601 | |||
602 | EXPORT_SYMBOL(lgdt3302_attach); | ||
603 | |||
604 | /* | ||
605 | * Local variables: | ||
606 | * c-basic-offset: 8 | ||
607 | * compile-command: "make DVB=1" | ||
608 | * End: | ||
609 | */ | ||
diff --git a/drivers/media/dvb/frontends/lgdt3302.h b/drivers/media/dvb/frontends/lgdt3302.h new file mode 100644 index 000000000000..81587a40032b --- /dev/null +++ b/drivers/media/dvb/frontends/lgdt3302.h | |||
@@ -0,0 +1,49 @@ | |||
1 | /* | ||
2 | * $Id: lgdt3302.h,v 1.2 2005/06/28 23:50:48 mkrufky Exp $ | ||
3 | * | ||
4 | * Support for LGDT3302 (DViCO FustionHDTV 3 Gold) - VSB/QAM | ||
5 | * | ||
6 | * Copyright (C) 2005 Wilson Michaels <wilsonmichaels@earthlink.net> | ||
7 | * | ||
8 | * This program is free software; you can redistribute it and/or modify | ||
9 | * it under the terms of the GNU General Public License as published by | ||
10 | * the Free Software Foundation; either version 2 of the License, or | ||
11 | * (at your option) any later version. | ||
12 | * | ||
13 | * This program is distributed in the hope that it will be useful, | ||
14 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
15 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
16 | * GNU General Public License for more details. | ||
17 | * | ||
18 | * You should have received a copy of the GNU General Public License | ||
19 | * along with this program; if not, write to the Free Software | ||
20 | * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. | ||
21 | * | ||
22 | */ | ||
23 | |||
24 | #ifndef LGDT3302_H | ||
25 | #define LGDT3302_H | ||
26 | |||
27 | #include <linux/dvb/frontend.h> | ||
28 | |||
29 | struct lgdt3302_config | ||
30 | { | ||
31 | /* The demodulator's i2c address */ | ||
32 | u8 demod_address; | ||
33 | u8 pll_address; | ||
34 | struct dvb_pll_desc *pll_desc; | ||
35 | |||
36 | /* Need to set device param for start_dma */ | ||
37 | int (*set_ts_params)(struct dvb_frontend* fe, int is_punctured); | ||
38 | }; | ||
39 | |||
40 | extern struct dvb_frontend* lgdt3302_attach(const struct lgdt3302_config* config, | ||
41 | struct i2c_adapter* i2c); | ||
42 | |||
43 | #endif /* LGDT3302_H */ | ||
44 | |||
45 | /* | ||
46 | * Local variables: | ||
47 | * c-basic-offset: 8 | ||
48 | * End: | ||
49 | */ | ||
diff --git a/drivers/media/dvb/frontends/lgdt3302_priv.h b/drivers/media/dvb/frontends/lgdt3302_priv.h new file mode 100644 index 000000000000..6193fa7a569d --- /dev/null +++ b/drivers/media/dvb/frontends/lgdt3302_priv.h | |||
@@ -0,0 +1,72 @@ | |||
1 | /* | ||
2 | * $Id: lgdt3302_priv.h,v 1.2 2005/06/28 23:50:48 mkrufky Exp $ | ||
3 | * | ||
4 | * Support for LGDT3302 (DViCO FustionHDTV 3 Gold) - VSB/QAM | ||
5 | * | ||
6 | * Copyright (C) 2005 Wilson Michaels <wilsonmichaels@earthlink.net> | ||
7 | * | ||
8 | * This program is free software; you can redistribute it and/or modify | ||
9 | * it under the terms of the GNU General Public License as published by | ||
10 | * the Free Software Foundation; either version 2 of the License, or | ||
11 | * (at your option) any later version. | ||
12 | * | ||
13 | * This program is distributed in the hope that it will be useful, | ||
14 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
15 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
16 | * GNU General Public License for more details. | ||
17 | * | ||
18 | * You should have received a copy of the GNU General Public License | ||
19 | * along with this program; if not, write to the Free Software | ||
20 | * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. | ||
21 | * | ||
22 | */ | ||
23 | |||
24 | #ifndef _LGDT3302_PRIV_ | ||
25 | #define _LGDT3302_PRIV_ | ||
26 | |||
27 | /* i2c control register addresses */ | ||
28 | enum I2C_REG { | ||
29 | TOP_CONTROL= 0x00, | ||
30 | IRQ_MASK= 0x01, | ||
31 | IRQ_STATUS= 0x02, | ||
32 | VSB_CARRIER_FREQ0= 0x16, | ||
33 | VSB_CARRIER_FREQ1= 0x17, | ||
34 | VSB_CARRIER_FREQ2= 0x18, | ||
35 | VSB_CARRIER_FREQ3= 0x19, | ||
36 | CARRIER_MSEQAM1= 0x1a, | ||
37 | CARRIER_MSEQAM2= 0x1b, | ||
38 | CARRIER_LOCK= 0x1c, | ||
39 | TIMING_RECOVERY= 0x1d, | ||
40 | AGC_DELAY0= 0x2a, | ||
41 | AGC_DELAY1= 0x2b, | ||
42 | AGC_DELAY2= 0x2c, | ||
43 | AGC_RF_BANDWIDTH0= 0x2d, | ||
44 | AGC_RF_BANDWIDTH1= 0x2e, | ||
45 | AGC_RF_BANDWIDTH2= 0x2f, | ||
46 | AGC_LOOP_BANDWIDTH0= 0x30, | ||
47 | AGC_LOOP_BANDWIDTH1= 0x31, | ||
48 | AGC_FUNC_CTRL1= 0x32, | ||
49 | AGC_FUNC_CTRL2= 0x33, | ||
50 | AGC_FUNC_CTRL3= 0x34, | ||
51 | AGC_RFIF_ACC0= 0x39, | ||
52 | AGC_RFIF_ACC1= 0x3a, | ||
53 | AGC_RFIF_ACC2= 0x3b, | ||
54 | AGC_STATUS= 0x3f, | ||
55 | SYNC_STATUS_VSB= 0x43, | ||
56 | EQPH_ERR0= 0x47, | ||
57 | EQ_ERR1= 0x48, | ||
58 | EQ_ERR2= 0x49, | ||
59 | PH_ERR1= 0x4a, | ||
60 | PH_ERR2= 0x4b, | ||
61 | DEMUX_CONTROL= 0x66, | ||
62 | PACKET_ERR_COUNTER1= 0x6a, | ||
63 | PACKET_ERR_COUNTER2= 0x6b, | ||
64 | }; | ||
65 | |||
66 | #endif /* _LGDT3302_PRIV_ */ | ||
67 | |||
68 | /* | ||
69 | * Local variables: | ||
70 | * c-basic-offset: 8 | ||
71 | * End: | ||
72 | */ | ||
diff --git a/drivers/media/dvb/frontends/s5h1420.c b/drivers/media/dvb/frontends/s5h1420.c new file mode 100644 index 000000000000..4f396ac8de77 --- /dev/null +++ b/drivers/media/dvb/frontends/s5h1420.c | |||
@@ -0,0 +1,800 @@ | |||
1 | /* | ||
2 | Driver for Samsung S5H1420 QPSK Demodulator | ||
3 | |||
4 | Copyright (C) 2005 Andrew de Quincey <adq_dvb@lidskialf.net> | ||
5 | |||
6 | This program is free software; you can redistribute it and/or modify | ||
7 | it under the terms of the GNU General Public License as published by | ||
8 | the Free Software Foundation; either version 2 of the License, or | ||
9 | (at your option) any later version. | ||
10 | |||
11 | This program is distributed in the hope that it will be useful, | ||
12 | but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
13 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
14 | |||
15 | GNU General Public License for more details. | ||
16 | |||
17 | You should have received a copy of the GNU General Public License | ||
18 | along with this program; if not, write to the Free Software | ||
19 | Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. | ||
20 | |||
21 | */ | ||
22 | |||
23 | #include <linux/kernel.h> | ||
24 | #include <linux/module.h> | ||
25 | #include <linux/init.h> | ||
26 | #include <linux/string.h> | ||
27 | #include <linux/slab.h> | ||
28 | #include <linux/delay.h> | ||
29 | |||
30 | #include "dvb_frontend.h" | ||
31 | #include "s5h1420.h" | ||
32 | |||
33 | |||
34 | |||
35 | #define TONE_FREQ 22000 | ||
36 | |||
37 | struct s5h1420_state { | ||
38 | struct i2c_adapter* i2c; | ||
39 | struct dvb_frontend_ops ops; | ||
40 | const struct s5h1420_config* config; | ||
41 | struct dvb_frontend frontend; | ||
42 | |||
43 | u8 postlocked:1; | ||
44 | u32 fclk; | ||
45 | u32 tunedfreq; | ||
46 | fe_code_rate_t fec_inner; | ||
47 | u32 symbol_rate; | ||
48 | }; | ||
49 | |||
50 | static u32 s5h1420_getsymbolrate(struct s5h1420_state* state); | ||
51 | static int s5h1420_get_tune_settings(struct dvb_frontend* fe, struct dvb_frontend_tune_settings* fesettings); | ||
52 | |||
53 | |||
54 | static int debug = 0; | ||
55 | #define dprintk if (debug) printk | ||
56 | |||
57 | static int s5h1420_writereg (struct s5h1420_state* state, u8 reg, u8 data) | ||
58 | { | ||
59 | u8 buf [] = { reg, data }; | ||
60 | struct i2c_msg msg = { .addr = state->config->demod_address, .flags = 0, .buf = buf, .len = 2 }; | ||
61 | int err; | ||
62 | |||
63 | if ((err = i2c_transfer (state->i2c, &msg, 1)) != 1) { | ||
64 | dprintk ("%s: writereg error (err == %i, reg == 0x%02x, data == 0x%02x)\n", __FUNCTION__, err, reg, data); | ||
65 | return -EREMOTEIO; | ||
66 | } | ||
67 | |||
68 | return 0; | ||
69 | } | ||
70 | |||
71 | static u8 s5h1420_readreg (struct s5h1420_state* state, u8 reg) | ||
72 | { | ||
73 | int ret; | ||
74 | u8 b0 [] = { reg }; | ||
75 | u8 b1 [] = { 0 }; | ||
76 | struct i2c_msg msg1 = { .addr = state->config->demod_address, .flags = 0, .buf = b0, .len = 1 }; | ||
77 | struct i2c_msg msg2 = { .addr = state->config->demod_address, .flags = I2C_M_RD, .buf = b1, .len = 1 }; | ||
78 | |||
79 | if ((ret = i2c_transfer (state->i2c, &msg1, 1)) != 1) | ||
80 | return ret; | ||
81 | |||
82 | if ((ret = i2c_transfer (state->i2c, &msg2, 1)) != 1) | ||
83 | return ret; | ||
84 | |||
85 | return b1[0]; | ||
86 | } | ||
87 | |||
88 | static int s5h1420_set_voltage (struct dvb_frontend* fe, fe_sec_voltage_t voltage) | ||
89 | { | ||
90 | struct s5h1420_state* state = fe->demodulator_priv; | ||
91 | |||
92 | switch(voltage) { | ||
93 | case SEC_VOLTAGE_13: | ||
94 | s5h1420_writereg(state, 0x3c, (s5h1420_readreg(state, 0x3c) & 0xfe) | 0x02); | ||
95 | break; | ||
96 | |||
97 | case SEC_VOLTAGE_18: | ||
98 | s5h1420_writereg(state, 0x3c, s5h1420_readreg(state, 0x3c) | 0x03); | ||
99 | break; | ||
100 | |||
101 | case SEC_VOLTAGE_OFF: | ||
102 | s5h1420_writereg(state, 0x3c, s5h1420_readreg(state, 0x3c) & 0xfd); | ||
103 | break; | ||
104 | } | ||
105 | |||
106 | return 0; | ||
107 | } | ||
108 | |||
109 | static int s5h1420_set_tone (struct dvb_frontend* fe, fe_sec_tone_mode_t tone) | ||
110 | { | ||
111 | struct s5h1420_state* state = fe->demodulator_priv; | ||
112 | |||
113 | switch(tone) { | ||
114 | case SEC_TONE_ON: | ||
115 | s5h1420_writereg(state, 0x3b, (s5h1420_readreg(state, 0x3b) & 0x74) | 0x08); | ||
116 | break; | ||
117 | |||
118 | case SEC_TONE_OFF: | ||
119 | s5h1420_writereg(state, 0x3b, (s5h1420_readreg(state, 0x3b) & 0x74) | 0x01); | ||
120 | break; | ||
121 | } | ||
122 | |||
123 | return 0; | ||
124 | } | ||
125 | |||
126 | static int s5h1420_send_master_cmd (struct dvb_frontend* fe, struct dvb_diseqc_master_cmd* cmd) | ||
127 | { | ||
128 | struct s5h1420_state* state = fe->demodulator_priv; | ||
129 | u8 val; | ||
130 | int i; | ||
131 | unsigned long timeout; | ||
132 | int result = 0; | ||
133 | |||
134 | /* setup for DISEQC */ | ||
135 | val = s5h1420_readreg(state, 0x3b); | ||
136 | s5h1420_writereg(state, 0x3b, 0x02); | ||
137 | msleep(15); | ||
138 | |||
139 | /* write the DISEQC command bytes */ | ||
140 | for(i=0; i< cmd->msg_len; i++) { | ||
141 | s5h1420_writereg(state, 0x3c + i, cmd->msg[i]); | ||
142 | } | ||
143 | |||
144 | /* kick off transmission */ | ||
145 | s5h1420_writereg(state, 0x3b, s5h1420_readreg(state, 0x3b) | ((cmd->msg_len-1) << 4) | 0x08); | ||
146 | |||
147 | /* wait for transmission to complete */ | ||
148 | timeout = jiffies + ((100*HZ) / 1000); | ||
149 | while(time_before(jiffies, timeout)) { | ||
150 | if (s5h1420_readreg(state, 0x3b) & 0x08) | ||
151 | break; | ||
152 | |||
153 | msleep(5); | ||
154 | } | ||
155 | if (time_after(jiffies, timeout)) | ||
156 | result = -ETIMEDOUT; | ||
157 | |||
158 | /* restore original settings */ | ||
159 | s5h1420_writereg(state, 0x3b, val); | ||
160 | msleep(15); | ||
161 | return result; | ||
162 | } | ||
163 | |||
164 | static int s5h1420_recv_slave_reply (struct dvb_frontend* fe, struct dvb_diseqc_slave_reply* reply) | ||
165 | { | ||
166 | struct s5h1420_state* state = fe->demodulator_priv; | ||
167 | u8 val; | ||
168 | int i; | ||
169 | int length; | ||
170 | unsigned long timeout; | ||
171 | int result = 0; | ||
172 | |||
173 | /* setup for DISEQC recieve */ | ||
174 | val = s5h1420_readreg(state, 0x3b); | ||
175 | s5h1420_writereg(state, 0x3b, 0x82); /* FIXME: guess - do we need to set DIS_RDY(0x08) in receive mode? */ | ||
176 | msleep(15); | ||
177 | |||
178 | /* wait for reception to complete */ | ||
179 | timeout = jiffies + ((reply->timeout*HZ) / 1000); | ||
180 | while(time_before(jiffies, timeout)) { | ||
181 | if (!(s5h1420_readreg(state, 0x3b) & 0x80)) /* FIXME: do we test DIS_RDY(0x08) or RCV_EN(0x80)? */ | ||
182 | break; | ||
183 | |||
184 | msleep(5); | ||
185 | } | ||
186 | if (time_after(jiffies, timeout)) { | ||
187 | result = -ETIMEDOUT; | ||
188 | goto exit; | ||
189 | } | ||
190 | |||
191 | /* check error flag - FIXME: not sure what this does - docs do not describe | ||
192 | * beyond "error flag for diseqc receive data :( */ | ||
193 | if (s5h1420_readreg(state, 0x49)) { | ||
194 | result = -EIO; | ||
195 | goto exit; | ||
196 | } | ||
197 | |||
198 | /* check length */ | ||
199 | length = (s5h1420_readreg(state, 0x3b) & 0x70) >> 4; | ||
200 | if (length > sizeof(reply->msg)) { | ||
201 | result = -EOVERFLOW; | ||
202 | goto exit; | ||
203 | } | ||
204 | reply->msg_len = length; | ||
205 | |||
206 | /* extract data */ | ||
207 | for(i=0; i< length; i++) { | ||
208 | reply->msg[i] = s5h1420_readreg(state, 0x3c + i); | ||
209 | } | ||
210 | |||
211 | exit: | ||
212 | /* restore original settings */ | ||
213 | s5h1420_writereg(state, 0x3b, val); | ||
214 | msleep(15); | ||
215 | return result; | ||
216 | } | ||
217 | |||
218 | static int s5h1420_send_burst (struct dvb_frontend* fe, fe_sec_mini_cmd_t minicmd) | ||
219 | { | ||
220 | struct s5h1420_state* state = fe->demodulator_priv; | ||
221 | u8 val; | ||
222 | int result = 0; | ||
223 | unsigned long timeout; | ||
224 | |||
225 | /* setup for tone burst */ | ||
226 | val = s5h1420_readreg(state, 0x3b); | ||
227 | s5h1420_writereg(state, 0x3b, (s5h1420_readreg(state, 0x3b) & 0x70) | 0x01); | ||
228 | |||
229 | /* set value for B position if requested */ | ||
230 | if (minicmd == SEC_MINI_B) { | ||
231 | s5h1420_writereg(state, 0x3b, s5h1420_readreg(state, 0x3b) | 0x04); | ||
232 | } | ||
233 | msleep(15); | ||
234 | |||
235 | /* start transmission */ | ||
236 | s5h1420_writereg(state, 0x3b, s5h1420_readreg(state, 0x3b) | 0x08); | ||
237 | |||
238 | /* wait for transmission to complete */ | ||
239 | timeout = jiffies + ((20*HZ) / 1000); | ||
240 | while(time_before(jiffies, timeout)) { | ||
241 | if (!(s5h1420_readreg(state, 0x3b) & 0x08)) | ||
242 | break; | ||
243 | |||
244 | msleep(5); | ||
245 | } | ||
246 | if (time_after(jiffies, timeout)) | ||
247 | result = -ETIMEDOUT; | ||
248 | |||
249 | /* restore original settings */ | ||
250 | s5h1420_writereg(state, 0x3b, val); | ||
251 | msleep(15); | ||
252 | return result; | ||
253 | } | ||
254 | |||
255 | static fe_status_t s5h1420_get_status_bits(struct s5h1420_state* state) | ||
256 | { | ||
257 | u8 val; | ||
258 | fe_status_t status = 0; | ||
259 | |||
260 | val = s5h1420_readreg(state, 0x14); | ||
261 | if (val & 0x02) | ||
262 | status |= FE_HAS_SIGNAL; // FIXME: not sure if this is right | ||
263 | if (val & 0x01) | ||
264 | status |= FE_HAS_CARRIER; // FIXME: not sure if this is right | ||
265 | val = s5h1420_readreg(state, 0x36); | ||
266 | if (val & 0x01) | ||
267 | status |= FE_HAS_VITERBI; | ||
268 | if (val & 0x20) | ||
269 | status |= FE_HAS_SYNC; | ||
270 | if (status == (FE_HAS_SIGNAL|FE_HAS_CARRIER|FE_HAS_VITERBI|FE_HAS_SYNC)) | ||
271 | status |= FE_HAS_LOCK; | ||
272 | |||
273 | return status; | ||
274 | } | ||
275 | |||
276 | static int s5h1420_read_status(struct dvb_frontend* fe, fe_status_t* status) | ||
277 | { | ||
278 | struct s5h1420_state* state = fe->demodulator_priv; | ||
279 | u8 val; | ||
280 | |||
281 | if (status == NULL) | ||
282 | return -EINVAL; | ||
283 | |||
284 | /* determine lock state */ | ||
285 | *status = s5h1420_get_status_bits(state); | ||
286 | |||
287 | /* fix for FEC 5/6 inversion issue - if it doesn't quite lock, invert the inversion, | ||
288 | wait a bit and check again */ | ||
289 | if (*status == (FE_HAS_SIGNAL|FE_HAS_CARRIER|FE_HAS_VITERBI)) { | ||
290 | val = s5h1420_readreg(state, 0x32); | ||
291 | if ((val & 0x07) == 0x03) { | ||
292 | if (val & 0x08) | ||
293 | s5h1420_writereg(state, 0x31, 0x13); | ||
294 | else | ||
295 | s5h1420_writereg(state, 0x31, 0x1b); | ||
296 | |||
297 | /* wait a bit then update lock status */ | ||
298 | mdelay(200); | ||
299 | *status = s5h1420_get_status_bits(state); | ||
300 | } | ||
301 | } | ||
302 | |||
303 | /* perform post lock setup */ | ||
304 | if ((*status & FE_HAS_LOCK) && (!state->postlocked)) { | ||
305 | |||
306 | /* calculate the data rate */ | ||
307 | u32 tmp = s5h1420_getsymbolrate(state); | ||
308 | switch(s5h1420_readreg(state, 0x32) & 0x07) { | ||
309 | case 0: | ||
310 | tmp = (tmp * 2 * 1) / 2; | ||
311 | break; | ||
312 | |||
313 | case 1: | ||
314 | tmp = (tmp * 2 * 2) / 3; | ||
315 | break; | ||
316 | |||
317 | case 2: | ||
318 | tmp = (tmp * 2 * 3) / 4; | ||
319 | break; | ||
320 | |||
321 | case 3: | ||
322 | tmp = (tmp * 2 * 5) / 6; | ||
323 | break; | ||
324 | |||
325 | case 4: | ||
326 | tmp = (tmp * 2 * 6) / 7; | ||
327 | break; | ||
328 | |||
329 | case 5: | ||
330 | tmp = (tmp * 2 * 7) / 8; | ||
331 | break; | ||
332 | } | ||
333 | tmp = state->fclk / tmp; | ||
334 | |||
335 | /* set the MPEG_CLK_INTL for the calculated data rate */ | ||
336 | if (tmp < 4) | ||
337 | val = 0x00; | ||
338 | else if (tmp < 8) | ||
339 | val = 0x01; | ||
340 | else if (tmp < 12) | ||
341 | val = 0x02; | ||
342 | else if (tmp < 16) | ||
343 | val = 0x03; | ||
344 | else if (tmp < 24) | ||
345 | val = 0x04; | ||
346 | else if (tmp < 32) | ||
347 | val = 0x05; | ||
348 | else | ||
349 | val = 0x06; | ||
350 | s5h1420_writereg(state, 0x22, val); | ||
351 | |||
352 | /* DC freeze */ | ||
353 | s5h1420_writereg(state, 0x1f, s5h1420_readreg(state, 0x1f) | 0x01); | ||
354 | |||
355 | /* kicker disable + remove DC offset */ | ||
356 | s5h1420_writereg(state, 0x05, s5h1420_readreg(state, 0x05) & 0x6f); | ||
357 | |||
358 | /* post-lock processing has been done! */ | ||
359 | state->postlocked = 1; | ||
360 | } | ||
361 | |||
362 | return 0; | ||
363 | } | ||
364 | |||
365 | static int s5h1420_read_ber(struct dvb_frontend* fe, u32* ber) | ||
366 | { | ||
367 | struct s5h1420_state* state = fe->demodulator_priv; | ||
368 | |||
369 | s5h1420_writereg(state, 0x46, 0x1d); | ||
370 | mdelay(25); | ||
371 | return (s5h1420_readreg(state, 0x48) << 8) | s5h1420_readreg(state, 0x47); | ||
372 | } | ||
373 | |||
374 | static int s5h1420_read_signal_strength(struct dvb_frontend* fe, u16* strength) | ||
375 | { | ||
376 | struct s5h1420_state* state = fe->demodulator_priv; | ||
377 | |||
378 | u8 val = 0xff - s5h1420_readreg(state, 0x15); | ||
379 | |||
380 | return (int) ((val << 8) | val); | ||
381 | } | ||
382 | |||
383 | static int s5h1420_read_ucblocks(struct dvb_frontend* fe, u32* ucblocks) | ||
384 | { | ||
385 | struct s5h1420_state* state = fe->demodulator_priv; | ||
386 | |||
387 | s5h1420_writereg(state, 0x46, 0x1f); | ||
388 | mdelay(25); | ||
389 | return (s5h1420_readreg(state, 0x48) << 8) | s5h1420_readreg(state, 0x47); | ||
390 | } | ||
391 | |||
392 | static void s5h1420_reset(struct s5h1420_state* state) | ||
393 | { | ||
394 | s5h1420_writereg (state, 0x01, 0x08); | ||
395 | s5h1420_writereg (state, 0x01, 0x00); | ||
396 | udelay(10); | ||
397 | } | ||
398 | |||
399 | static void s5h1420_setsymbolrate(struct s5h1420_state* state, struct dvb_frontend_parameters *p) | ||
400 | { | ||
401 | u64 val; | ||
402 | |||
403 | val = (p->u.qpsk.symbol_rate / 1000) * (1<<24); | ||
404 | if (p->u.qpsk.symbol_rate <= 21000000) { | ||
405 | val *= 2; | ||
406 | } | ||
407 | do_div(val, (state->fclk / 1000)); | ||
408 | |||
409 | s5h1420_writereg(state, 0x09, s5h1420_readreg(state, 0x09) & 0x7f); | ||
410 | s5h1420_writereg(state, 0x11, val >> 16); | ||
411 | s5h1420_writereg(state, 0x12, val >> 8); | ||
412 | s5h1420_writereg(state, 0x13, val & 0xff); | ||
413 | s5h1420_writereg(state, 0x09, s5h1420_readreg(state, 0x09) | 0x80); | ||
414 | } | ||
415 | |||
416 | static u32 s5h1420_getsymbolrate(struct s5h1420_state* state) | ||
417 | { | ||
418 | u64 val; | ||
419 | int sampling = 2; | ||
420 | |||
421 | if (s5h1420_readreg(state, 0x05) & 0x2) | ||
422 | sampling = 1; | ||
423 | |||
424 | s5h1420_writereg(state, 0x06, s5h1420_readreg(state, 0x06) | 0x08); | ||
425 | val = s5h1420_readreg(state, 0x11) << 16; | ||
426 | val |= s5h1420_readreg(state, 0x12) << 8; | ||
427 | val |= s5h1420_readreg(state, 0x13); | ||
428 | s5h1420_writereg(state, 0x06, s5h1420_readreg(state, 0x06) & 0xf7); | ||
429 | |||
430 | val *= (state->fclk / 1000); | ||
431 | do_div(val, ((1<<24) * sampling)); | ||
432 | |||
433 | return (u32) (val * 1000); | ||
434 | } | ||
435 | |||
436 | static void s5h1420_setfreqoffset(struct s5h1420_state* state, int freqoffset) | ||
437 | { | ||
438 | int val; | ||
439 | |||
440 | /* remember freqoffset is in kHz, but the chip wants the offset in Hz, so | ||
441 | * divide fclk by 1000000 to get the correct value. */ | ||
442 | val = -(int) ((freqoffset * (1<<24)) / (state->fclk / 1000000)); | ||
443 | |||
444 | s5h1420_writereg(state, 0x09, s5h1420_readreg(state, 0x09) & 0xbf); | ||
445 | s5h1420_writereg(state, 0x0e, val >> 16); | ||
446 | s5h1420_writereg(state, 0x0f, val >> 8); | ||
447 | s5h1420_writereg(state, 0x10, val & 0xff); | ||
448 | s5h1420_writereg(state, 0x09, s5h1420_readreg(state, 0x09) | 0x40); | ||
449 | } | ||
450 | |||
451 | static int s5h1420_getfreqoffset(struct s5h1420_state* state) | ||
452 | { | ||
453 | int val; | ||
454 | |||
455 | s5h1420_writereg(state, 0x06, s5h1420_readreg(state, 0x06) | 0x08); | ||
456 | val = s5h1420_readreg(state, 0x0e) << 16; | ||
457 | val |= s5h1420_readreg(state, 0x0f) << 8; | ||
458 | val |= s5h1420_readreg(state, 0x10); | ||
459 | s5h1420_writereg(state, 0x06, s5h1420_readreg(state, 0x06) & 0xf7); | ||
460 | |||
461 | if (val & 0x800000) | ||
462 | val |= 0xff000000; | ||
463 | |||
464 | /* remember freqoffset is in kHz, but the chip wants the offset in Hz, so | ||
465 | * divide fclk by 1000000 to get the correct value. */ | ||
466 | val = - ((val * (state->fclk/1000000)) / (1<<24)); | ||
467 | |||
468 | return val; | ||
469 | } | ||
470 | |||
471 | static void s5h1420_setfec(struct s5h1420_state* state, struct dvb_frontend_parameters *p) | ||
472 | { | ||
473 | if ((p->u.qpsk.fec_inner == FEC_AUTO) || (p->inversion == INVERSION_AUTO)) { | ||
474 | s5h1420_writereg(state, 0x31, 0x00); | ||
475 | s5h1420_writereg(state, 0x30, 0x3f); | ||
476 | } else { | ||
477 | switch(p->u.qpsk.fec_inner) { | ||
478 | case FEC_1_2: | ||
479 | s5h1420_writereg(state, 0x31, 0x10); | ||
480 | s5h1420_writereg(state, 0x30, 0x01); | ||
481 | break; | ||
482 | |||
483 | case FEC_2_3: | ||
484 | s5h1420_writereg(state, 0x31, 0x11); | ||
485 | s5h1420_writereg(state, 0x30, 0x02); | ||
486 | break; | ||
487 | |||
488 | case FEC_3_4: | ||
489 | s5h1420_writereg(state, 0x31, 0x12); | ||
490 | s5h1420_writereg(state, 0x30, 0x04); | ||
491 | break; | ||
492 | |||
493 | case FEC_5_6: | ||
494 | s5h1420_writereg(state, 0x31, 0x13); | ||
495 | s5h1420_writereg(state, 0x30, 0x08); | ||
496 | break; | ||
497 | |||
498 | case FEC_6_7: | ||
499 | s5h1420_writereg(state, 0x31, 0x14); | ||
500 | s5h1420_writereg(state, 0x30, 0x10); | ||
501 | break; | ||
502 | |||
503 | case FEC_7_8: | ||
504 | s5h1420_writereg(state, 0x31, 0x15); | ||
505 | s5h1420_writereg(state, 0x30, 0x20); | ||
506 | break; | ||
507 | |||
508 | default: | ||
509 | return; | ||
510 | } | ||
511 | } | ||
512 | } | ||
513 | |||
514 | static fe_code_rate_t s5h1420_getfec(struct s5h1420_state* state) | ||
515 | { | ||
516 | switch(s5h1420_readreg(state, 0x32) & 0x07) { | ||
517 | case 0: | ||
518 | return FEC_1_2; | ||
519 | |||
520 | case 1: | ||
521 | return FEC_2_3; | ||
522 | |||
523 | case 2: | ||
524 | return FEC_3_4; | ||
525 | |||
526 | case 3: | ||
527 | return FEC_5_6; | ||
528 | |||
529 | case 4: | ||
530 | return FEC_6_7; | ||
531 | |||
532 | case 5: | ||
533 | return FEC_7_8; | ||
534 | } | ||
535 | |||
536 | return FEC_NONE; | ||
537 | } | ||
538 | |||
539 | static void s5h1420_setinversion(struct s5h1420_state* state, struct dvb_frontend_parameters *p) | ||
540 | { | ||
541 | if ((p->u.qpsk.fec_inner == FEC_AUTO) || (p->inversion == INVERSION_AUTO)) { | ||
542 | s5h1420_writereg(state, 0x31, 0x00); | ||
543 | s5h1420_writereg(state, 0x30, 0x3f); | ||
544 | } else { | ||
545 | u8 tmp = s5h1420_readreg(state, 0x31) & 0xf7; | ||
546 | tmp |= 0x10; | ||
547 | |||
548 | if (p->inversion == INVERSION_ON) | ||
549 | tmp |= 0x80; | ||
550 | |||
551 | s5h1420_writereg(state, 0x31, tmp); | ||
552 | } | ||
553 | } | ||
554 | |||
555 | static fe_spectral_inversion_t s5h1420_getinversion(struct s5h1420_state* state) | ||
556 | { | ||
557 | if (s5h1420_readreg(state, 0x32) & 0x08) | ||
558 | return INVERSION_ON; | ||
559 | |||
560 | return INVERSION_OFF; | ||
561 | } | ||
562 | |||
563 | static int s5h1420_set_frontend(struct dvb_frontend* fe, struct dvb_frontend_parameters *p) | ||
564 | { | ||
565 | struct s5h1420_state* state = fe->demodulator_priv; | ||
566 | u32 frequency_delta; | ||
567 | struct dvb_frontend_tune_settings fesettings; | ||
568 | |||
569 | /* check if we should do a fast-tune */ | ||
570 | memcpy(&fesettings.parameters, p, sizeof(struct dvb_frontend_parameters)); | ||
571 | s5h1420_get_tune_settings(fe, &fesettings); | ||
572 | frequency_delta = p->frequency - state->tunedfreq; | ||
573 | if ((frequency_delta > -fesettings.max_drift) && (frequency_delta < fesettings.max_drift) && | ||
574 | (frequency_delta != 0) && | ||
575 | (state->fec_inner == p->u.qpsk.fec_inner) && | ||
576 | (state->symbol_rate == p->u.qpsk.symbol_rate)) { | ||
577 | |||
578 | s5h1420_setfreqoffset(state, frequency_delta); | ||
579 | return 0; | ||
580 | } | ||
581 | |||
582 | /* first of all, software reset */ | ||
583 | s5h1420_reset(state); | ||
584 | |||
585 | /* set tuner PLL */ | ||
586 | if (state->config->pll_set) { | ||
587 | s5h1420_writereg (state, 0x02, s5h1420_readreg(state,0x02) | 1); | ||
588 | state->config->pll_set(fe, p, &state->tunedfreq); | ||
589 | s5h1420_writereg (state, 0x02, s5h1420_readreg(state,0x02) & 0xfe); | ||
590 | } | ||
591 | |||
592 | /* set s5h1420 fclk PLL according to desired symbol rate */ | ||
593 | if (p->u.qpsk.symbol_rate > 28000000) { | ||
594 | state->fclk = 88000000; | ||
595 | s5h1420_writereg(state, 0x03, 0x50); | ||
596 | s5h1420_writereg(state, 0x04, 0x40); | ||
597 | s5h1420_writereg(state, 0x05, 0xae); | ||
598 | } else if (p->u.qpsk.symbol_rate > 21000000) { | ||
599 | state->fclk = 59000000; | ||
600 | s5h1420_writereg(state, 0x03, 0x33); | ||
601 | s5h1420_writereg(state, 0x04, 0x40); | ||
602 | s5h1420_writereg(state, 0x05, 0xae); | ||
603 | } else { | ||
604 | state->fclk = 88000000; | ||
605 | s5h1420_writereg(state, 0x03, 0x50); | ||
606 | s5h1420_writereg(state, 0x04, 0x40); | ||
607 | s5h1420_writereg(state, 0x05, 0xac); | ||
608 | } | ||
609 | |||
610 | /* set misc registers */ | ||
611 | s5h1420_writereg(state, 0x02, 0x00); | ||
612 | s5h1420_writereg(state, 0x07, 0xb0); | ||
613 | s5h1420_writereg(state, 0x0a, 0x67); | ||
614 | s5h1420_writereg(state, 0x0b, 0x78); | ||
615 | s5h1420_writereg(state, 0x0c, 0x48); | ||
616 | s5h1420_writereg(state, 0x0d, 0x6b); | ||
617 | s5h1420_writereg(state, 0x2e, 0x8e); | ||
618 | s5h1420_writereg(state, 0x35, 0x33); | ||
619 | s5h1420_writereg(state, 0x38, 0x01); | ||
620 | s5h1420_writereg(state, 0x39, 0x7d); | ||
621 | s5h1420_writereg(state, 0x3a, (state->fclk + (TONE_FREQ * 32) - 1) / (TONE_FREQ * 32)); | ||
622 | s5h1420_writereg(state, 0x3c, 0x00); | ||
623 | s5h1420_writereg(state, 0x45, 0x61); | ||
624 | s5h1420_writereg(state, 0x46, 0x1d); | ||
625 | |||
626 | /* start QPSK */ | ||
627 | s5h1420_writereg(state, 0x05, s5h1420_readreg(state, 0x05) | 1); | ||
628 | |||
629 | /* set the frequency offset to adjust for PLL inaccuracy */ | ||
630 | s5h1420_setfreqoffset(state, p->frequency - state->tunedfreq); | ||
631 | |||
632 | /* set the reset of the parameters */ | ||
633 | s5h1420_setsymbolrate(state, p); | ||
634 | s5h1420_setinversion(state, p); | ||
635 | s5h1420_setfec(state, p); | ||
636 | |||
637 | state->fec_inner = p->u.qpsk.fec_inner; | ||
638 | state->symbol_rate = p->u.qpsk.symbol_rate; | ||
639 | state->postlocked = 0; | ||
640 | return 0; | ||
641 | } | ||
642 | |||
643 | static int s5h1420_get_frontend(struct dvb_frontend* fe, struct dvb_frontend_parameters *p) | ||
644 | { | ||
645 | struct s5h1420_state* state = fe->demodulator_priv; | ||
646 | |||
647 | p->frequency = state->tunedfreq + s5h1420_getfreqoffset(state); | ||
648 | p->inversion = s5h1420_getinversion(state); | ||
649 | p->u.qpsk.symbol_rate = s5h1420_getsymbolrate(state); | ||
650 | p->u.qpsk.fec_inner = s5h1420_getfec(state); | ||
651 | |||
652 | return 0; | ||
653 | } | ||
654 | |||
655 | static int s5h1420_get_tune_settings(struct dvb_frontend* fe, struct dvb_frontend_tune_settings* fesettings) | ||
656 | { | ||
657 | if (fesettings->parameters.u.qpsk.symbol_rate > 20000000) { | ||
658 | fesettings->min_delay_ms = 50; | ||
659 | fesettings->step_size = 2000; | ||
660 | fesettings->max_drift = 8000; | ||
661 | } else if (fesettings->parameters.u.qpsk.symbol_rate > 12000000) { | ||
662 | fesettings->min_delay_ms = 100; | ||
663 | fesettings->step_size = 1500; | ||
664 | fesettings->max_drift = 9000; | ||
665 | } else if (fesettings->parameters.u.qpsk.symbol_rate > 8000000) { | ||
666 | fesettings->min_delay_ms = 100; | ||
667 | fesettings->step_size = 1000; | ||
668 | fesettings->max_drift = 8000; | ||
669 | } else if (fesettings->parameters.u.qpsk.symbol_rate > 4000000) { | ||
670 | fesettings->min_delay_ms = 100; | ||
671 | fesettings->step_size = 500; | ||
672 | fesettings->max_drift = 7000; | ||
673 | } else if (fesettings->parameters.u.qpsk.symbol_rate > 2000000) { | ||
674 | fesettings->min_delay_ms = 200; | ||
675 | fesettings->step_size = (fesettings->parameters.u.qpsk.symbol_rate / 8000); | ||
676 | fesettings->max_drift = 14 * fesettings->step_size; | ||
677 | } else { | ||
678 | fesettings->min_delay_ms = 200; | ||
679 | fesettings->step_size = (fesettings->parameters.u.qpsk.symbol_rate / 8000); | ||
680 | fesettings->max_drift = 18 * fesettings->step_size; | ||
681 | } | ||
682 | |||
683 | return 0; | ||
684 | } | ||
685 | |||
686 | static int s5h1420_init (struct dvb_frontend* fe) | ||
687 | { | ||
688 | struct s5h1420_state* state = fe->demodulator_priv; | ||
689 | |||
690 | /* disable power down and do reset */ | ||
691 | s5h1420_writereg(state, 0x02, 0x10); | ||
692 | msleep(10); | ||
693 | s5h1420_reset(state); | ||
694 | |||
695 | /* init PLL */ | ||
696 | if (state->config->pll_init) { | ||
697 | s5h1420_writereg (state, 0x02, s5h1420_readreg(state,0x02) | 1); | ||
698 | state->config->pll_init(fe); | ||
699 | s5h1420_writereg (state, 0x02, s5h1420_readreg(state,0x02) & 0xfe); | ||
700 | } | ||
701 | |||
702 | return 0; | ||
703 | } | ||
704 | |||
705 | static int s5h1420_sleep(struct dvb_frontend* fe) | ||
706 | { | ||
707 | struct s5h1420_state* state = fe->demodulator_priv; | ||
708 | |||
709 | return s5h1420_writereg(state, 0x02, 0x12); | ||
710 | } | ||
711 | |||
712 | static void s5h1420_release(struct dvb_frontend* fe) | ||
713 | { | ||
714 | struct s5h1420_state* state = fe->demodulator_priv; | ||
715 | kfree(state); | ||
716 | } | ||
717 | |||
718 | static struct dvb_frontend_ops s5h1420_ops; | ||
719 | |||
720 | struct dvb_frontend* s5h1420_attach(const struct s5h1420_config* config, struct i2c_adapter* i2c) | ||
721 | { | ||
722 | struct s5h1420_state* state = NULL; | ||
723 | u8 identity; | ||
724 | |||
725 | /* allocate memory for the internal state */ | ||
726 | state = kmalloc(sizeof(struct s5h1420_state), GFP_KERNEL); | ||
727 | if (state == NULL) | ||
728 | goto error; | ||
729 | |||
730 | /* setup the state */ | ||
731 | state->config = config; | ||
732 | state->i2c = i2c; | ||
733 | memcpy(&state->ops, &s5h1420_ops, sizeof(struct dvb_frontend_ops)); | ||
734 | state->postlocked = 0; | ||
735 | state->fclk = 88000000; | ||
736 | state->tunedfreq = 0; | ||
737 | state->fec_inner = FEC_NONE; | ||
738 | state->symbol_rate = 0; | ||
739 | |||
740 | /* check if the demod is there + identify it */ | ||
741 | identity = s5h1420_readreg(state, 0x00); | ||
742 | if (identity != 0x03) | ||
743 | goto error; | ||
744 | |||
745 | /* create dvb_frontend */ | ||
746 | state->frontend.ops = &state->ops; | ||
747 | state->frontend.demodulator_priv = state; | ||
748 | return &state->frontend; | ||
749 | |||
750 | error: | ||
751 | kfree(state); | ||
752 | return NULL; | ||
753 | } | ||
754 | |||
755 | static struct dvb_frontend_ops s5h1420_ops = { | ||
756 | |||
757 | .info = { | ||
758 | .name = "Samsung S5H1420 DVB-S", | ||
759 | .type = FE_QPSK, | ||
760 | .frequency_min = 950000, | ||
761 | .frequency_max = 2150000, | ||
762 | .frequency_stepsize = 125, /* kHz for QPSK frontends */ | ||
763 | .frequency_tolerance = 29500, | ||
764 | .symbol_rate_min = 1000000, | ||
765 | .symbol_rate_max = 45000000, | ||
766 | /* .symbol_rate_tolerance = ???,*/ | ||
767 | .caps = FE_CAN_INVERSION_AUTO | | ||
768 | FE_CAN_FEC_1_2 | FE_CAN_FEC_2_3 | FE_CAN_FEC_3_4 | | ||
769 | FE_CAN_FEC_5_6 | FE_CAN_FEC_6_7 | FE_CAN_FEC_7_8 | FE_CAN_FEC_AUTO | | ||
770 | FE_CAN_QPSK | ||
771 | }, | ||
772 | |||
773 | .release = s5h1420_release, | ||
774 | |||
775 | .init = s5h1420_init, | ||
776 | .sleep = s5h1420_sleep, | ||
777 | |||
778 | .set_frontend = s5h1420_set_frontend, | ||
779 | .get_frontend = s5h1420_get_frontend, | ||
780 | .get_tune_settings = s5h1420_get_tune_settings, | ||
781 | |||
782 | .read_status = s5h1420_read_status, | ||
783 | .read_ber = s5h1420_read_ber, | ||
784 | .read_signal_strength = s5h1420_read_signal_strength, | ||
785 | .read_ucblocks = s5h1420_read_ucblocks, | ||
786 | |||
787 | .diseqc_send_master_cmd = s5h1420_send_master_cmd, | ||
788 | .diseqc_recv_slave_reply = s5h1420_recv_slave_reply, | ||
789 | .diseqc_send_burst = s5h1420_send_burst, | ||
790 | .set_tone = s5h1420_set_tone, | ||
791 | .set_voltage = s5h1420_set_voltage, | ||
792 | }; | ||
793 | |||
794 | module_param(debug, int, 0644); | ||
795 | |||
796 | MODULE_DESCRIPTION("Samsung S5H1420 DVB-S Demodulator driver"); | ||
797 | MODULE_AUTHOR("Andrew de Quincey"); | ||
798 | MODULE_LICENSE("GPL"); | ||
799 | |||
800 | EXPORT_SYMBOL(s5h1420_attach); | ||
diff --git a/drivers/media/dvb/frontends/s5h1420.h b/drivers/media/dvb/frontends/s5h1420.h new file mode 100644 index 000000000000..b687fc77ceb3 --- /dev/null +++ b/drivers/media/dvb/frontends/s5h1420.h | |||
@@ -0,0 +1,41 @@ | |||
1 | /* | ||
2 | Driver for S5H1420 QPSK Demodulators | ||
3 | |||
4 | Copyright (C) 2005 Andrew de Quincey <adq_dvb@lidskialf.net> | ||
5 | |||
6 | This program is free software; you can redistribute it and/or modify | ||
7 | it under the terms of the GNU General Public License as published by | ||
8 | the Free Software Foundation; either version 2 of the License, or | ||
9 | (at your option) any later version. | ||
10 | |||
11 | This program is distributed in the hope that it will be useful, | ||
12 | but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
13 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
14 | |||
15 | GNU General Public License for more details. | ||
16 | |||
17 | You should have received a copy of the GNU General Public License | ||
18 | along with this program; if not, write to the Free Software | ||
19 | Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. | ||
20 | |||
21 | */ | ||
22 | |||
23 | #ifndef S5H1420_H | ||
24 | #define S5H1420_H | ||
25 | |||
26 | #include <linux/dvb/frontend.h> | ||
27 | |||
28 | struct s5h1420_config | ||
29 | { | ||
30 | /* the demodulator's i2c address */ | ||
31 | u8 demod_address; | ||
32 | |||
33 | /* PLL maintenance */ | ||
34 | int (*pll_init)(struct dvb_frontend* fe); | ||
35 | int (*pll_set)(struct dvb_frontend* fe, struct dvb_frontend_parameters* params, u32* freqout); | ||
36 | }; | ||
37 | |||
38 | extern struct dvb_frontend* s5h1420_attach(const struct s5h1420_config* config, | ||
39 | struct i2c_adapter* i2c); | ||
40 | |||
41 | #endif // S5H1420_H | ||
diff --git a/drivers/media/dvb/frontends/stv0297.c b/drivers/media/dvb/frontends/stv0297.c index e681263bf079..928aca052afe 100644 --- a/drivers/media/dvb/frontends/stv0297.c +++ b/drivers/media/dvb/frontends/stv0297.c | |||
@@ -617,7 +617,7 @@ static int stv0297_set_frontend(struct dvb_frontend *fe, struct dvb_frontend_par | |||
617 | 617 | ||
618 | /* wait for WGAGC lock */ | 618 | /* wait for WGAGC lock */ |
619 | starttime = jiffies; | 619 | starttime = jiffies; |
620 | timeout = jiffies + (200 * HZ) / 1000; | 620 | timeout = jiffies + msecs_to_jiffies(2000); |
621 | while (time_before(jiffies, timeout)) { | 621 | while (time_before(jiffies, timeout)) { |
622 | msleep(10); | 622 | msleep(10); |
623 | if (stv0297_readreg(state, 0x43) & 0x08) | 623 | if (stv0297_readreg(state, 0x43) & 0x08) |
@@ -629,7 +629,7 @@ static int stv0297_set_frontend(struct dvb_frontend *fe, struct dvb_frontend_par | |||
629 | msleep(20); | 629 | msleep(20); |
630 | 630 | ||
631 | /* wait for equaliser partial convergence */ | 631 | /* wait for equaliser partial convergence */ |
632 | timeout = jiffies + (50 * HZ) / 1000; | 632 | timeout = jiffies + msecs_to_jiffies(500); |
633 | while (time_before(jiffies, timeout)) { | 633 | while (time_before(jiffies, timeout)) { |
634 | msleep(10); | 634 | msleep(10); |
635 | 635 | ||
@@ -642,7 +642,7 @@ static int stv0297_set_frontend(struct dvb_frontend *fe, struct dvb_frontend_par | |||
642 | } | 642 | } |
643 | 643 | ||
644 | /* wait for equaliser full convergence */ | 644 | /* wait for equaliser full convergence */ |
645 | timeout = jiffies + (delay * HZ) / 1000; | 645 | timeout = jiffies + msecs_to_jiffies(delay); |
646 | while (time_before(jiffies, timeout)) { | 646 | while (time_before(jiffies, timeout)) { |
647 | msleep(10); | 647 | msleep(10); |
648 | 648 | ||
@@ -659,7 +659,7 @@ static int stv0297_set_frontend(struct dvb_frontend *fe, struct dvb_frontend_par | |||
659 | stv0297_writereg_mask(state, 0x88, 8, 0); | 659 | stv0297_writereg_mask(state, 0x88, 8, 0); |
660 | 660 | ||
661 | /* wait for main lock */ | 661 | /* wait for main lock */ |
662 | timeout = jiffies + (20 * HZ) / 1000; | 662 | timeout = jiffies + msecs_to_jiffies(20); |
663 | while (time_before(jiffies, timeout)) { | 663 | while (time_before(jiffies, timeout)) { |
664 | msleep(10); | 664 | msleep(10); |
665 | 665 | ||
diff --git a/drivers/media/dvb/frontends/tda1004x.c b/drivers/media/dvb/frontends/tda1004x.c index 0beb370792ae..ab0c032472cc 100644 --- a/drivers/media/dvb/frontends/tda1004x.c +++ b/drivers/media/dvb/frontends/tda1004x.c | |||
@@ -49,10 +49,8 @@ struct tda1004x_state { | |||
49 | /* private demod data */ | 49 | /* private demod data */ |
50 | u8 initialised; | 50 | u8 initialised; |
51 | enum tda1004x_demod demod_type; | 51 | enum tda1004x_demod demod_type; |
52 | u8 fw_version; | ||
53 | }; | 52 | }; |
54 | 53 | ||
55 | |||
56 | static int debug; | 54 | static int debug; |
57 | #define dprintk(args...) \ | 55 | #define dprintk(args...) \ |
58 | do { \ | 56 | do { \ |
@@ -122,6 +120,8 @@ static int debug; | |||
122 | #define TDA10046H_GPIO_OUT_SEL 0x41 | 120 | #define TDA10046H_GPIO_OUT_SEL 0x41 |
123 | #define TDA10046H_GPIO_SELECT 0x42 | 121 | #define TDA10046H_GPIO_SELECT 0x42 |
124 | #define TDA10046H_AGC_CONF 0x43 | 122 | #define TDA10046H_AGC_CONF 0x43 |
123 | #define TDA10046H_AGC_THR 0x44 | ||
124 | #define TDA10046H_AGC_RENORM 0x45 | ||
125 | #define TDA10046H_AGC_GAINS 0x46 | 125 | #define TDA10046H_AGC_GAINS 0x46 |
126 | #define TDA10046H_AGC_TUN_MIN 0x47 | 126 | #define TDA10046H_AGC_TUN_MIN 0x47 |
127 | #define TDA10046H_AGC_TUN_MAX 0x48 | 127 | #define TDA10046H_AGC_TUN_MAX 0x48 |
@@ -274,14 +274,26 @@ static int tda10046h_set_bandwidth(struct tda1004x_state *state, | |||
274 | switch (bandwidth) { | 274 | switch (bandwidth) { |
275 | case BANDWIDTH_6_MHZ: | 275 | case BANDWIDTH_6_MHZ: |
276 | tda1004x_write_buf(state, TDA10046H_TIME_WREF1, bandwidth_6mhz, sizeof(bandwidth_6mhz)); | 276 | tda1004x_write_buf(state, TDA10046H_TIME_WREF1, bandwidth_6mhz, sizeof(bandwidth_6mhz)); |
277 | if (state->config->if_freq == TDA10046_FREQ_045) { | ||
278 | tda1004x_write_byteI(state, TDA10046H_FREQ_PHY2_MSB, 0x09); | ||
279 | tda1004x_write_byteI(state, TDA10046H_FREQ_PHY2_LSB, 0x4f); | ||
280 | } | ||
277 | break; | 281 | break; |
278 | 282 | ||
279 | case BANDWIDTH_7_MHZ: | 283 | case BANDWIDTH_7_MHZ: |
280 | tda1004x_write_buf(state, TDA10046H_TIME_WREF1, bandwidth_7mhz, sizeof(bandwidth_7mhz)); | 284 | tda1004x_write_buf(state, TDA10046H_TIME_WREF1, bandwidth_7mhz, sizeof(bandwidth_7mhz)); |
285 | if (state->config->if_freq == TDA10046_FREQ_045) { | ||
286 | tda1004x_write_byteI(state, TDA10046H_FREQ_PHY2_MSB, 0x0a); | ||
287 | tda1004x_write_byteI(state, TDA10046H_FREQ_PHY2_LSB, 0x79); | ||
288 | } | ||
281 | break; | 289 | break; |
282 | 290 | ||
283 | case BANDWIDTH_8_MHZ: | 291 | case BANDWIDTH_8_MHZ: |
284 | tda1004x_write_buf(state, TDA10046H_TIME_WREF1, bandwidth_8mhz, sizeof(bandwidth_8mhz)); | 292 | tda1004x_write_buf(state, TDA10046H_TIME_WREF1, bandwidth_8mhz, sizeof(bandwidth_8mhz)); |
293 | if (state->config->if_freq == TDA10046_FREQ_045) { | ||
294 | tda1004x_write_byteI(state, TDA10046H_FREQ_PHY2_MSB, 0x0b); | ||
295 | tda1004x_write_byteI(state, TDA10046H_FREQ_PHY2_LSB, 0xa3); | ||
296 | } | ||
285 | break; | 297 | break; |
286 | 298 | ||
287 | default: | 299 | default: |
@@ -315,20 +327,35 @@ static int tda1004x_do_upload(struct tda1004x_state *state, | |||
315 | memcpy(buf + 1, mem + pos, tx_size); | 327 | memcpy(buf + 1, mem + pos, tx_size); |
316 | fw_msg.len = tx_size + 1; | 328 | fw_msg.len = tx_size + 1; |
317 | if (i2c_transfer(state->i2c, &fw_msg, 1) != 1) { | 329 | if (i2c_transfer(state->i2c, &fw_msg, 1) != 1) { |
318 | printk("tda1004x: Error during firmware upload\n"); | 330 | printk(KERN_ERR "tda1004x: Error during firmware upload\n"); |
319 | return -EIO; | 331 | return -EIO; |
320 | } | 332 | } |
321 | pos += tx_size; | 333 | pos += tx_size; |
322 | 334 | ||
323 | dprintk("%s: fw_pos=0x%x\n", __FUNCTION__, pos); | 335 | dprintk("%s: fw_pos=0x%x\n", __FUNCTION__, pos); |
324 | } | 336 | } |
337 | // give the DSP a chance to settle 03/10/05 Hac | ||
338 | msleep(100); | ||
325 | 339 | ||
326 | return 0; | 340 | return 0; |
327 | } | 341 | } |
328 | 342 | ||
329 | static int tda1004x_check_upload_ok(struct tda1004x_state *state, u8 dspVersion) | 343 | static int tda1004x_check_upload_ok(struct tda1004x_state *state) |
330 | { | 344 | { |
331 | u8 data1, data2; | 345 | u8 data1, data2; |
346 | unsigned long timeout; | ||
347 | |||
348 | if (state->demod_type == TDA1004X_DEMOD_TDA10046) { | ||
349 | timeout = jiffies + 2 * HZ; | ||
350 | while(!(tda1004x_read_byte(state, TDA1004X_STATUS_CD) & 0x20)) { | ||
351 | if (time_after(jiffies, timeout)) { | ||
352 | printk(KERN_ERR "tda1004x: timeout waiting for DSP ready\n"); | ||
353 | break; | ||
354 | } | ||
355 | msleep(1); | ||
356 | } | ||
357 | } else | ||
358 | msleep(100); | ||
332 | 359 | ||
333 | // check upload was OK | 360 | // check upload was OK |
334 | tda1004x_write_mask(state, TDA1004X_CONFC4, 0x10, 0); // we want to read from the DSP | 361 | tda1004x_write_mask(state, TDA1004X_CONFC4, 0x10, 0); // we want to read from the DSP |
@@ -336,9 +363,11 @@ static int tda1004x_check_upload_ok(struct tda1004x_state *state, u8 dspVersion) | |||
336 | 363 | ||
337 | data1 = tda1004x_read_byte(state, TDA1004X_DSP_DATA1); | 364 | data1 = tda1004x_read_byte(state, TDA1004X_DSP_DATA1); |
338 | data2 = tda1004x_read_byte(state, TDA1004X_DSP_DATA2); | 365 | data2 = tda1004x_read_byte(state, TDA1004X_DSP_DATA2); |
339 | if ((data1 != 0x67) || (data2 != dspVersion)) | 366 | if (data1 != 0x67 || data2 < 0x20 || data2 > 0x2e) { |
367 | printk(KERN_INFO "tda1004x: found firmware revision %x -- invalid\n", data2); | ||
340 | return -EIO; | 368 | return -EIO; |
341 | 369 | } | |
370 | printk(KERN_INFO "tda1004x: found firmware revision %x -- ok\n", data2); | ||
342 | return 0; | 371 | return 0; |
343 | } | 372 | } |
344 | 373 | ||
@@ -349,14 +378,14 @@ static int tda10045_fwupload(struct dvb_frontend* fe) | |||
349 | const struct firmware *fw; | 378 | const struct firmware *fw; |
350 | 379 | ||
351 | /* don't re-upload unless necessary */ | 380 | /* don't re-upload unless necessary */ |
352 | if (tda1004x_check_upload_ok(state, 0x2c) == 0) | 381 | if (tda1004x_check_upload_ok(state) == 0) |
353 | return 0; | 382 | return 0; |
354 | 383 | ||
355 | /* request the firmware, this will block until someone uploads it */ | 384 | /* request the firmware, this will block until someone uploads it */ |
356 | printk("tda1004x: waiting for firmware upload (%s)...\n", TDA10045_DEFAULT_FIRMWARE); | 385 | printk(KERN_INFO "tda1004x: waiting for firmware upload (%s)...\n", TDA10045_DEFAULT_FIRMWARE); |
357 | ret = state->config->request_firmware(fe, &fw, TDA10045_DEFAULT_FIRMWARE); | 386 | ret = state->config->request_firmware(fe, &fw, TDA10045_DEFAULT_FIRMWARE); |
358 | if (ret) { | 387 | if (ret) { |
359 | printk("tda1004x: no firmware upload (timeout or file not found?)\n"); | 388 | printk(KERN_ERR "tda1004x: no firmware upload (timeout or file not found?)\n"); |
360 | return ret; | 389 | return ret; |
361 | } | 390 | } |
362 | 391 | ||
@@ -370,95 +399,93 @@ static int tda10045_fwupload(struct dvb_frontend* fe) | |||
370 | tda10045h_set_bandwidth(state, BANDWIDTH_8_MHZ); | 399 | tda10045h_set_bandwidth(state, BANDWIDTH_8_MHZ); |
371 | 400 | ||
372 | ret = tda1004x_do_upload(state, fw->data, fw->size, TDA10045H_FWPAGE, TDA10045H_CODE_IN); | 401 | ret = tda1004x_do_upload(state, fw->data, fw->size, TDA10045H_FWPAGE, TDA10045H_CODE_IN); |
402 | release_firmware(fw); | ||
373 | if (ret) | 403 | if (ret) |
374 | return ret; | 404 | return ret; |
375 | printk("tda1004x: firmware upload complete\n"); | 405 | printk(KERN_INFO "tda1004x: firmware upload complete\n"); |
376 | 406 | ||
377 | /* wait for DSP to initialise */ | 407 | /* wait for DSP to initialise */ |
378 | /* DSPREADY doesn't seem to work on the TDA10045H */ | 408 | /* DSPREADY doesn't seem to work on the TDA10045H */ |
379 | msleep(100); | 409 | msleep(100); |
380 | 410 | ||
381 | return tda1004x_check_upload_ok(state, 0x2c); | 411 | return tda1004x_check_upload_ok(state); |
382 | } | 412 | } |
383 | 413 | ||
384 | static int tda10046_get_fw_version(struct tda1004x_state *state, | 414 | static void tda10046_init_plls(struct dvb_frontend* fe) |
385 | const struct firmware *fw) | ||
386 | { | 415 | { |
387 | const unsigned char pattern[] = { 0x67, 0x00, 0x50, 0x62, 0x5e, 0x18, 0x67 }; | 416 | struct tda1004x_state* state = fe->demodulator_priv; |
388 | unsigned int i; | ||
389 | |||
390 | /* area guessed from firmware v20, v21 and v25 */ | ||
391 | for (i = 0x660; i < 0x700; i++) { | ||
392 | if (!memcmp(&fw->data[i], pattern, sizeof(pattern))) { | ||
393 | state->fw_version = fw->data[i + sizeof(pattern)]; | ||
394 | printk(KERN_INFO "tda1004x: using firmware v%02x\n", | ||
395 | state->fw_version); | ||
396 | return 0; | ||
397 | } | ||
398 | } | ||
399 | 417 | ||
400 | return -EINVAL; | 418 | tda1004x_write_byteI(state, TDA10046H_CONFPLL1, 0xf0); |
419 | tda1004x_write_byteI(state, TDA10046H_CONFPLL2, 10); // PLL M = 10 | ||
420 | if (state->config->xtal_freq == TDA10046_XTAL_4M ) { | ||
421 | dprintk("%s: setting up PLLs for a 4 MHz Xtal\n", __FUNCTION__); | ||
422 | tda1004x_write_byteI(state, TDA10046H_CONFPLL3, 0); // PLL P = N = 0 | ||
423 | } else { | ||
424 | dprintk("%s: setting up PLLs for a 16 MHz Xtal\n", __FUNCTION__); | ||
425 | tda1004x_write_byteI(state, TDA10046H_CONFPLL3, 3); // PLL P = 0, N = 3 | ||
426 | } | ||
427 | tda1004x_write_byteI(state, TDA10046H_FREQ_OFFSET, 99); | ||
428 | switch (state->config->if_freq) { | ||
429 | case TDA10046_FREQ_3617: | ||
430 | tda1004x_write_byteI(state, TDA10046H_FREQ_PHY2_MSB, 0xd4); | ||
431 | tda1004x_write_byteI(state, TDA10046H_FREQ_PHY2_LSB, 0x2c); | ||
432 | break; | ||
433 | case TDA10046_FREQ_3613: | ||
434 | tda1004x_write_byteI(state, TDA10046H_FREQ_PHY2_MSB, 0xd4); | ||
435 | tda1004x_write_byteI(state, TDA10046H_FREQ_PHY2_LSB, 0x13); | ||
436 | break; | ||
437 | case TDA10046_FREQ_045: | ||
438 | tda1004x_write_byteI(state, TDA10046H_FREQ_PHY2_MSB, 0x0b); | ||
439 | tda1004x_write_byteI(state, TDA10046H_FREQ_PHY2_LSB, 0xa3); | ||
440 | break; | ||
441 | case TDA10046_FREQ_052: | ||
442 | tda1004x_write_byteI(state, TDA10046H_FREQ_PHY2_MSB, 0x0c); | ||
443 | tda1004x_write_byteI(state, TDA10046H_FREQ_PHY2_LSB, 0x06); | ||
444 | break; | ||
445 | } | ||
446 | tda10046h_set_bandwidth(state, BANDWIDTH_8_MHZ); // default bandwidth 8 MHz | ||
401 | } | 447 | } |
402 | 448 | ||
403 | static int tda10046_fwupload(struct dvb_frontend* fe) | 449 | static int tda10046_fwupload(struct dvb_frontend* fe) |
404 | { | 450 | { |
405 | struct tda1004x_state* state = fe->demodulator_priv; | 451 | struct tda1004x_state* state = fe->demodulator_priv; |
406 | unsigned long timeout; | ||
407 | int ret; | 452 | int ret; |
408 | const struct firmware *fw; | 453 | const struct firmware *fw; |
409 | 454 | ||
410 | /* reset + wake up chip */ | 455 | /* reset + wake up chip */ |
411 | tda1004x_write_mask(state, TDA1004X_CONFC4, 1, 0); | 456 | tda1004x_write_byteI(state, TDA1004X_CONFC4, 0); |
412 | tda1004x_write_mask(state, TDA10046H_CONF_TRISTATE1, 1, 0); | 457 | tda1004x_write_mask(state, TDA10046H_CONF_TRISTATE1, 1, 0); |
413 | msleep(100); | 458 | /* let the clocks recover from sleep */ |
459 | msleep(5); | ||
414 | 460 | ||
415 | /* don't re-upload unless necessary */ | 461 | /* don't re-upload unless necessary */ |
416 | if (tda1004x_check_upload_ok(state, state->fw_version) == 0) | 462 | if (tda1004x_check_upload_ok(state) == 0) |
417 | return 0; | 463 | return 0; |
418 | 464 | ||
419 | /* request the firmware, this will block until someone uploads it */ | ||
420 | printk("tda1004x: waiting for firmware upload (%s)...\n", TDA10046_DEFAULT_FIRMWARE); | ||
421 | ret = state->config->request_firmware(fe, &fw, TDA10046_DEFAULT_FIRMWARE); | ||
422 | if (ret) { | ||
423 | printk("tda1004x: no firmware upload (timeout or file not found?)\n"); | ||
424 | return ret; | ||
425 | } | ||
426 | |||
427 | if (fw->size < 24478) { /* size of firmware v20, which is the smallest of v20, v21 and v25 */ | ||
428 | printk("tda1004x: firmware file seems to be too small (%d bytes)\n", fw->size); | ||
429 | return -EINVAL; | ||
430 | } | ||
431 | |||
432 | ret = tda10046_get_fw_version(state, fw); | ||
433 | if (ret < 0) { | ||
434 | printk("tda1004x: unable to find firmware version\n"); | ||
435 | return ret; | ||
436 | } | ||
437 | |||
438 | /* set parameters */ | 465 | /* set parameters */ |
439 | tda1004x_write_byteI(state, TDA10046H_CONFPLL2, 10); | 466 | tda10046_init_plls(fe); |
440 | tda1004x_write_byteI(state, TDA10046H_CONFPLL3, state->config->n_i2c); | 467 | |
441 | tda1004x_write_byteI(state, TDA10046H_FREQ_OFFSET, 99); | 468 | if (state->config->request_firmware != NULL) { |
442 | tda1004x_write_byteI(state, TDA10046H_FREQ_PHY2_MSB, 0xd4); | 469 | /* request the firmware, this will block until someone uploads it */ |
443 | tda1004x_write_byteI(state, TDA10046H_FREQ_PHY2_LSB, 0x2c); | 470 | printk(KERN_INFO "tda1004x: waiting for firmware upload...\n"); |
444 | tda1004x_write_mask(state, TDA1004X_CONFC4, 8, 8); // going to boot from HOST | 471 | ret = state->config->request_firmware(fe, &fw, TDA10046_DEFAULT_FIRMWARE); |
445 | 472 | if (ret) { | |
446 | ret = tda1004x_do_upload(state, fw->data, fw->size, TDA10046H_CODE_CPT, TDA10046H_CODE_IN); | 473 | printk(KERN_ERR "tda1004x: no firmware upload (timeout or file not found?)\n"); |
447 | if (ret) | 474 | return ret; |
448 | return ret; | ||
449 | printk("tda1004x: firmware upload complete\n"); | ||
450 | |||
451 | /* wait for DSP to initialise */ | ||
452 | timeout = jiffies + HZ; | ||
453 | while (!(tda1004x_read_byte(state, TDA1004X_STATUS_CD) & 0x20)) { | ||
454 | if (time_after(jiffies, timeout)) { | ||
455 | printk("tda1004x: DSP failed to initialised.\n"); | ||
456 | return -EIO; | ||
457 | } | 475 | } |
458 | msleep(1); | 476 | tda1004x_write_mask(state, TDA1004X_CONFC4, 8, 8); // going to boot from HOST |
477 | ret = tda1004x_do_upload(state, fw->data, fw->size, TDA10046H_CODE_CPT, TDA10046H_CODE_IN); | ||
478 | release_firmware(fw); | ||
479 | if (ret) | ||
480 | return ret; | ||
481 | } else { | ||
482 | /* boot from firmware eeprom */ | ||
483 | /* Hac Note: we might need to do some GPIO Magic here */ | ||
484 | printk(KERN_INFO "tda1004x: booting from eeprom\n"); | ||
485 | tda1004x_write_mask(state, TDA1004X_CONFC4, 4, 4); | ||
486 | msleep(300); | ||
459 | } | 487 | } |
460 | 488 | return tda1004x_check_upload_ok(state); | |
461 | return tda1004x_check_upload_ok(state, state->fw_version); | ||
462 | } | 489 | } |
463 | 490 | ||
464 | static int tda1004x_encode_fec(int fec) | 491 | static int tda1004x_encode_fec(int fec) |
@@ -560,12 +587,10 @@ static int tda10046_init(struct dvb_frontend* fe) | |||
560 | 587 | ||
561 | if (tda10046_fwupload(fe)) { | 588 | if (tda10046_fwupload(fe)) { |
562 | printk("tda1004x: firmware upload failed\n"); | 589 | printk("tda1004x: firmware upload failed\n"); |
563 | return -EIO; | 590 | return -EIO; |
564 | } | 591 | } |
565 | 592 | ||
566 | tda1004x_write_mask(state, TDA1004X_CONFC4, 1, 0); // wake up the chip | 593 | // Init the tuner PLL |
567 | |||
568 | // Init the PLL | ||
569 | if (state->config->pll_init) { | 594 | if (state->config->pll_init) { |
570 | tda1004x_enable_tuner_i2c(state); | 595 | tda1004x_enable_tuner_i2c(state); |
571 | state->config->pll_init(fe); | 596 | state->config->pll_init(fe); |
@@ -574,32 +599,44 @@ static int tda10046_init(struct dvb_frontend* fe) | |||
574 | 599 | ||
575 | // tda setup | 600 | // tda setup |
576 | tda1004x_write_mask(state, TDA1004X_CONFC4, 0x20, 0); // disable DSP watchdog timer | 601 | tda1004x_write_mask(state, TDA1004X_CONFC4, 0x20, 0); // disable DSP watchdog timer |
577 | tda1004x_write_mask(state, TDA1004X_CONFC1, 0x40, 0x40); | 602 | tda1004x_write_byteI(state, TDA1004X_AUTO, 7); // select HP stream |
578 | tda1004x_write_mask(state, TDA1004X_AUTO, 8, 0); // select HP stream | 603 | tda1004x_write_byteI(state, TDA1004X_CONFC1, 8); // disable pulse killer |
579 | tda1004x_write_mask(state, TDA1004X_CONFC1, 0x80, 0); // disable pulse killer | 604 | |
580 | tda1004x_write_byteI(state, TDA10046H_CONFPLL2, 10); // PLL M = 10 | 605 | tda10046_init_plls(fe); |
581 | tda1004x_write_byteI(state, TDA10046H_CONFPLL3, state->config->n_i2c); // PLL P = N = 0 | 606 | switch (state->config->agc_config) { |
582 | tda1004x_write_byteI(state, TDA10046H_FREQ_OFFSET, 99); // FREQOFFS = 99 | 607 | case TDA10046_AGC_DEFAULT: |
583 | tda1004x_write_byteI(state, TDA10046H_FREQ_PHY2_MSB, 0xd4); // } PHY2 = -11221 | 608 | tda1004x_write_byteI(state, TDA10046H_AGC_CONF, 0x00); // AGC setup |
584 | tda1004x_write_byteI(state, TDA10046H_FREQ_PHY2_LSB, 0x2c); // } | 609 | tda1004x_write_byteI(state, TDA10046H_CONF_POLARITY, 0x60); // set AGC polarities |
585 | tda1004x_write_byteI(state, TDA10046H_AGC_CONF, 0); // AGC setup | 610 | break; |
586 | tda1004x_write_mask(state, TDA10046H_CONF_POLARITY, 0x60, 0x60); // set AGC polarities | 611 | case TDA10046_AGC_IFO_AUTO_NEG: |
612 | tda1004x_write_byteI(state, TDA10046H_AGC_CONF, 0x0a); // AGC setup | ||
613 | tda1004x_write_byteI(state, TDA10046H_CONF_POLARITY, 0x60); // set AGC polarities | ||
614 | break; | ||
615 | case TDA10046_AGC_IFO_AUTO_POS: | ||
616 | tda1004x_write_byteI(state, TDA10046H_AGC_CONF, 0x0a); // AGC setup | ||
617 | tda1004x_write_byteI(state, TDA10046H_CONF_POLARITY, 0x00); // set AGC polarities | ||
618 | break; | ||
619 | case TDA10046_AGC_TDA827X: | ||
620 | tda1004x_write_byteI(state, TDA10046H_AGC_CONF, 0x02); // AGC setup | ||
621 | tda1004x_write_byteI(state, TDA10046H_AGC_THR, 0x70); // AGC Threshold | ||
622 | tda1004x_write_byteI(state, TDA10046H_AGC_RENORM, 0x0E); // Gain Renormalize | ||
623 | tda1004x_write_byteI(state, TDA10046H_CONF_POLARITY, 0x60); // set AGC polarities | ||
624 | break; | ||
625 | } | ||
626 | tda1004x_write_byteI(state, TDA10046H_CONF_TRISTATE1, 0x61); // Turn both AGC outputs on | ||
587 | tda1004x_write_byteI(state, TDA10046H_AGC_TUN_MIN, 0); // } | 627 | tda1004x_write_byteI(state, TDA10046H_AGC_TUN_MIN, 0); // } |
588 | tda1004x_write_byteI(state, TDA10046H_AGC_TUN_MAX, 0xff); // } AGC min/max values | 628 | tda1004x_write_byteI(state, TDA10046H_AGC_TUN_MAX, 0xff); // } AGC min/max values |
589 | tda1004x_write_byteI(state, TDA10046H_AGC_IF_MIN, 0); // } | 629 | tda1004x_write_byteI(state, TDA10046H_AGC_IF_MIN, 0); // } |
590 | tda1004x_write_byteI(state, TDA10046H_AGC_IF_MAX, 0xff); // } | 630 | tda1004x_write_byteI(state, TDA10046H_AGC_IF_MAX, 0xff); // } |
591 | tda1004x_write_mask(state, TDA10046H_CVBER_CTRL, 0x30, 0x10); // 10^6 VBER measurement bits | ||
592 | tda1004x_write_byteI(state, TDA10046H_AGC_GAINS, 1); // IF gain 2, TUN gain 1 | 631 | tda1004x_write_byteI(state, TDA10046H_AGC_GAINS, 1); // IF gain 2, TUN gain 1 |
593 | tda1004x_write_mask(state, TDA1004X_AUTO, 0x80, 0); // crystal is 50ppm | 632 | tda1004x_write_byteI(state, TDA10046H_CVBER_CTRL, 0x1a); // 10^6 VBER measurement bits |
594 | tda1004x_write_byteI(state, TDA1004X_CONF_TS1, 7); // MPEG2 interface config | 633 | tda1004x_write_byteI(state, TDA1004X_CONF_TS1, 7); // MPEG2 interface config |
595 | tda1004x_write_mask(state, TDA1004X_CONF_TS2, 0x31, 0); // MPEG2 interface config | 634 | tda1004x_write_byteI(state, TDA1004X_CONF_TS2, 0xc0); // MPEG2 interface config |
596 | tda1004x_write_mask(state, TDA10046H_CONF_TRISTATE1, 0x9e, 0); // disable AGC_TUN | 635 | tda1004x_write_mask(state, 0x3a, 0x80, state->config->invert_oclk << 7); |
636 | |||
597 | tda1004x_write_byteI(state, TDA10046H_CONF_TRISTATE2, 0xe1); // tristate setup | 637 | tda1004x_write_byteI(state, TDA10046H_CONF_TRISTATE2, 0xe1); // tristate setup |
598 | tda1004x_write_byteI(state, TDA10046H_GPIO_OUT_SEL, 0xcc); // GPIO output config | 638 | tda1004x_write_byteI(state, TDA10046H_GPIO_OUT_SEL, 0xcc); // GPIO output config |
599 | tda1004x_write_mask(state, TDA10046H_GPIO_SELECT, 8, 8); // GPIO select | 639 | tda1004x_write_byteI(state, TDA10046H_GPIO_SELECT, 8); // GPIO select |
600 | tda10046h_set_bandwidth(state, BANDWIDTH_8_MHZ); // default bandwidth 8 MHz | ||
601 | |||
602 | tda1004x_write_mask(state, 0x3a, 0x80, state->config->invert_oclk << 7); | ||
603 | 640 | ||
604 | state->initialised = 1; | 641 | state->initialised = 1; |
605 | return 0; | 642 | return 0; |
@@ -629,9 +666,6 @@ static int tda1004x_set_fe(struct dvb_frontend* fe, | |||
629 | state->config->pll_set(fe, fe_params); | 666 | state->config->pll_set(fe, fe_params); |
630 | tda1004x_disable_tuner_i2c(state); | 667 | tda1004x_disable_tuner_i2c(state); |
631 | 668 | ||
632 | if (state->demod_type == TDA1004X_DEMOD_TDA10046) | ||
633 | tda1004x_write_mask(state, TDA10046H_AGC_CONF, 4, 4); | ||
634 | |||
635 | // Hardcoded to use auto as much as possible on the TDA10045 as it | 669 | // Hardcoded to use auto as much as possible on the TDA10045 as it |
636 | // is very unreliable if AUTO mode is _not_ used. | 670 | // is very unreliable if AUTO mode is _not_ used. |
637 | if (state->demod_type == TDA1004X_DEMOD_TDA10045) { | 671 | if (state->demod_type == TDA1004X_DEMOD_TDA10045) { |
@@ -1089,6 +1123,11 @@ static int tda1004x_sleep(struct dvb_frontend* fe) | |||
1089 | break; | 1123 | break; |
1090 | 1124 | ||
1091 | case TDA1004X_DEMOD_TDA10046: | 1125 | case TDA1004X_DEMOD_TDA10046: |
1126 | if (state->config->pll_sleep != NULL) { | ||
1127 | tda1004x_enable_tuner_i2c(state); | ||
1128 | state->config->pll_sleep(fe); | ||
1129 | tda1004x_disable_tuner_i2c(state); | ||
1130 | } | ||
1092 | tda1004x_write_mask(state, TDA1004X_CONFC4, 1, 1); | 1131 | tda1004x_write_mask(state, TDA1004X_CONFC4, 1, 1); |
1093 | break; | 1132 | break; |
1094 | } | 1133 | } |
@@ -1100,8 +1139,9 @@ static int tda1004x_sleep(struct dvb_frontend* fe) | |||
1100 | static int tda1004x_get_tune_settings(struct dvb_frontend* fe, struct dvb_frontend_tune_settings* fesettings) | 1139 | static int tda1004x_get_tune_settings(struct dvb_frontend* fe, struct dvb_frontend_tune_settings* fesettings) |
1101 | { | 1140 | { |
1102 | fesettings->min_delay_ms = 800; | 1141 | fesettings->min_delay_ms = 800; |
1103 | fesettings->step_size = 166667; | 1142 | /* Drift compensation makes no sense for DVB-T */ |
1104 | fesettings->max_drift = 166667*2; | 1143 | fesettings->step_size = 0; |
1144 | fesettings->max_drift = 0; | ||
1105 | return 0; | 1145 | return 0; |
1106 | } | 1146 | } |
1107 | 1147 | ||
@@ -1216,7 +1256,6 @@ struct dvb_frontend* tda10046_attach(const struct tda1004x_config* config, | |||
1216 | memcpy(&state->ops, &tda10046_ops, sizeof(struct dvb_frontend_ops)); | 1256 | memcpy(&state->ops, &tda10046_ops, sizeof(struct dvb_frontend_ops)); |
1217 | state->initialised = 0; | 1257 | state->initialised = 0; |
1218 | state->demod_type = TDA1004X_DEMOD_TDA10046; | 1258 | state->demod_type = TDA1004X_DEMOD_TDA10046; |
1219 | state->fw_version = 0x20; /* dummy default value */ | ||
1220 | 1259 | ||
1221 | /* check if the demod is there */ | 1260 | /* check if the demod is there */ |
1222 | if (tda1004x_read_byte(state, TDA1004X_CHIPID) != 0x46) { | 1261 | if (tda1004x_read_byte(state, TDA1004X_CHIPID) != 0x46) { |
diff --git a/drivers/media/dvb/frontends/tda1004x.h b/drivers/media/dvb/frontends/tda1004x.h index c8e1d54ff262..8659c52647ad 100644 --- a/drivers/media/dvb/frontends/tda1004x.h +++ b/drivers/media/dvb/frontends/tda1004x.h | |||
@@ -26,6 +26,25 @@ | |||
26 | #include <linux/dvb/frontend.h> | 26 | #include <linux/dvb/frontend.h> |
27 | #include <linux/firmware.h> | 27 | #include <linux/firmware.h> |
28 | 28 | ||
29 | enum tda10046_xtal { | ||
30 | TDA10046_XTAL_4M, | ||
31 | TDA10046_XTAL_16M, | ||
32 | }; | ||
33 | |||
34 | enum tda10046_agc { | ||
35 | TDA10046_AGC_DEFAULT, /* original configuration */ | ||
36 | TDA10046_AGC_IFO_AUTO_NEG, /* IF AGC only, automatic, negtive */ | ||
37 | TDA10046_AGC_IFO_AUTO_POS, /* IF AGC only, automatic, positive */ | ||
38 | TDA10046_AGC_TDA827X, /* IF AGC only, special setup for tda827x */ | ||
39 | }; | ||
40 | |||
41 | enum tda10046_if { | ||
42 | TDA10046_FREQ_3617, /* original config, 36,166 MHZ */ | ||
43 | TDA10046_FREQ_3613, /* 36,13 MHZ */ | ||
44 | TDA10046_FREQ_045, /* low IF, 4.0, 4.5, or 5.0 MHZ */ | ||
45 | TDA10046_FREQ_052, /* low IF, 5.1667 MHZ for tda9889 */ | ||
46 | }; | ||
47 | |||
29 | struct tda1004x_config | 48 | struct tda1004x_config |
30 | { | 49 | { |
31 | /* the demodulator's i2c address */ | 50 | /* the demodulator's i2c address */ |
@@ -37,14 +56,22 @@ struct tda1004x_config | |||
37 | /* Does the OCLK signal need inverted? */ | 56 | /* Does the OCLK signal need inverted? */ |
38 | u8 invert_oclk; | 57 | u8 invert_oclk; |
39 | 58 | ||
40 | /* value of N_I2C of the CONF_PLL3 register */ | 59 | /* Xtal frequency, 4 or 16MHz*/ |
41 | u8 n_i2c; | 60 | enum tda10046_xtal xtal_freq; |
61 | |||
62 | /* IF frequency */ | ||
63 | enum tda10046_if if_freq; | ||
64 | |||
65 | /* AGC configuration */ | ||
66 | enum tda10046_agc agc_config; | ||
42 | 67 | ||
43 | /* PLL maintenance */ | 68 | /* PLL maintenance */ |
44 | int (*pll_init)(struct dvb_frontend* fe); | 69 | int (*pll_init)(struct dvb_frontend* fe); |
70 | void (*pll_sleep)(struct dvb_frontend* fe); | ||
45 | int (*pll_set)(struct dvb_frontend* fe, struct dvb_frontend_parameters* params); | 71 | int (*pll_set)(struct dvb_frontend* fe, struct dvb_frontend_parameters* params); |
46 | 72 | ||
47 | /* request firmware for device */ | 73 | /* request firmware for device */ |
74 | /* set this to NULL if the card has a firmware EEPROM */ | ||
48 | int (*request_firmware)(struct dvb_frontend* fe, const struct firmware **fw, char* name); | 75 | int (*request_firmware)(struct dvb_frontend* fe, const struct firmware **fw, char* name); |
49 | }; | 76 | }; |
50 | 77 | ||
diff --git a/drivers/media/dvb/frontends/tda80xx.c b/drivers/media/dvb/frontends/tda80xx.c index 032d348dafb7..88e125079ca1 100644 --- a/drivers/media/dvb/frontends/tda80xx.c +++ b/drivers/media/dvb/frontends/tda80xx.c | |||
@@ -27,7 +27,6 @@ | |||
27 | #include <linux/spinlock.h> | 27 | #include <linux/spinlock.h> |
28 | #include <linux/threads.h> | 28 | #include <linux/threads.h> |
29 | #include <linux/interrupt.h> | 29 | #include <linux/interrupt.h> |
30 | #include <linux/irq.h> | ||
31 | #include <linux/kernel.h> | 30 | #include <linux/kernel.h> |
32 | #include <linux/module.h> | 31 | #include <linux/module.h> |
33 | #include <linux/slab.h> | 32 | #include <linux/slab.h> |
diff --git a/drivers/media/dvb/pluto2/Kconfig b/drivers/media/dvb/pluto2/Kconfig new file mode 100644 index 000000000000..f02842be0d60 --- /dev/null +++ b/drivers/media/dvb/pluto2/Kconfig | |||
@@ -0,0 +1,16 @@ | |||
1 | config DVB_PLUTO2 | ||
2 | tristate "Pluto2 cards" | ||
3 | depends on DVB_CORE && PCI | ||
4 | select I2C | ||
5 | select I2C_ALGOBIT | ||
6 | select DVB_TDA1004X | ||
7 | help | ||
8 | Support for PCI cards based on the Pluto2 FPGA like the Satelco | ||
9 | Easywatch Mobile Terrestrial DVB-T Receiver. | ||
10 | |||
11 | Since these cards have no MPEG decoder onboard, they transmit | ||
12 | only compressed MPEG data over the PCI bus, so you need | ||
13 | an external software decoder to watch TV on your computer. | ||
14 | |||
15 | Say Y or M if you own such a device and want to use it. | ||
16 | |||
diff --git a/drivers/media/dvb/pluto2/Makefile b/drivers/media/dvb/pluto2/Makefile new file mode 100644 index 000000000000..86ca84b2be6e --- /dev/null +++ b/drivers/media/dvb/pluto2/Makefile | |||
@@ -0,0 +1,3 @@ | |||
1 | obj-$(CONFIG_DVB_PLUTO2) = pluto2.o | ||
2 | |||
3 | EXTRA_CFLAGS = -Idrivers/media/dvb/dvb-core/ -Idrivers/media/dvb/frontends/ | ||
diff --git a/drivers/media/dvb/pluto2/pluto2.c b/drivers/media/dvb/pluto2/pluto2.c new file mode 100644 index 000000000000..706e0bcb5ede --- /dev/null +++ b/drivers/media/dvb/pluto2/pluto2.c | |||
@@ -0,0 +1,809 @@ | |||
1 | /* | ||
2 | * pluto2.c - Satelco Easywatch Mobile Terrestrial Receiver [DVB-T] | ||
3 | * | ||
4 | * Copyright (C) 2005 Andreas Oberritter <obi@linuxtv.org> | ||
5 | * | ||
6 | * based on pluto2.c 1.10 - http://instinct-wp8.no-ip.org/pluto/ | ||
7 | * by Dany Salman <salmandany@yahoo.fr> | ||
8 | * Copyright (c) 2004 TDF | ||
9 | * | ||
10 | * This program is free software; you can redistribute it and/or modify | ||
11 | * it under the terms of the GNU General Public License as published by | ||
12 | * the Free Software Foundation; either version 2 of the License, or | ||
13 | * (at your option) any later version. | ||
14 | * | ||
15 | * This program is distributed in the hope that it will be useful, | ||
16 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
17 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
18 | * GNU General Public License for more details. | ||
19 | * | ||
20 | * You should have received a copy of the GNU General Public License | ||
21 | * along with this program; if not, write to the Free Software | ||
22 | * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. | ||
23 | * | ||
24 | */ | ||
25 | |||
26 | #include <linux/i2c.h> | ||
27 | #include <linux/i2c-algo-bit.h> | ||
28 | #include <linux/init.h> | ||
29 | #include <linux/kernel.h> | ||
30 | #include <linux/module.h> | ||
31 | #include <linux/pci.h> | ||
32 | #include <linux/dma-mapping.h> | ||
33 | |||
34 | #include "demux.h" | ||
35 | #include "dmxdev.h" | ||
36 | #include "dvb_demux.h" | ||
37 | #include "dvb_frontend.h" | ||
38 | #include "dvb_net.h" | ||
39 | #include "dvbdev.h" | ||
40 | #include "tda1004x.h" | ||
41 | |||
42 | #define DRIVER_NAME "pluto2" | ||
43 | |||
44 | #define REG_PIDn(n) ((n) << 2) /* PID n pattern registers */ | ||
45 | #define REG_PCAR 0x0020 /* PC address register */ | ||
46 | #define REG_TSCR 0x0024 /* TS ctrl & status */ | ||
47 | #define REG_MISC 0x0028 /* miscellaneous */ | ||
48 | #define REG_MMAC 0x002c /* MSB MAC address */ | ||
49 | #define REG_IMAC 0x0030 /* ISB MAC address */ | ||
50 | #define REG_LMAC 0x0034 /* LSB MAC address */ | ||
51 | #define REG_SPID 0x0038 /* SPI data */ | ||
52 | #define REG_SLCS 0x003c /* serial links ctrl/status */ | ||
53 | |||
54 | #define PID0_NOFIL (0x0001 << 16) | ||
55 | #define PIDn_ENP (0x0001 << 15) | ||
56 | #define PID0_END (0x0001 << 14) | ||
57 | #define PID0_AFIL (0x0001 << 13) | ||
58 | #define PIDn_PID (0x1fff << 0) | ||
59 | |||
60 | #define TSCR_NBPACKETS (0x00ff << 24) | ||
61 | #define TSCR_DEM (0x0001 << 17) | ||
62 | #define TSCR_DE (0x0001 << 16) | ||
63 | #define TSCR_RSTN (0x0001 << 15) | ||
64 | #define TSCR_MSKO (0x0001 << 14) | ||
65 | #define TSCR_MSKA (0x0001 << 13) | ||
66 | #define TSCR_MSKL (0x0001 << 12) | ||
67 | #define TSCR_OVR (0x0001 << 11) | ||
68 | #define TSCR_AFUL (0x0001 << 10) | ||
69 | #define TSCR_LOCK (0x0001 << 9) | ||
70 | #define TSCR_IACK (0x0001 << 8) | ||
71 | #define TSCR_ADEF (0x007f << 0) | ||
72 | |||
73 | #define MISC_DVR (0x0fff << 4) | ||
74 | #define MISC_ALED (0x0001 << 3) | ||
75 | #define MISC_FRST (0x0001 << 2) | ||
76 | #define MISC_LED1 (0x0001 << 1) | ||
77 | #define MISC_LED0 (0x0001 << 0) | ||
78 | |||
79 | #define SPID_SPIDR (0x00ff << 0) | ||
80 | |||
81 | #define SLCS_SCL (0x0001 << 7) | ||
82 | #define SLCS_SDA (0x0001 << 6) | ||
83 | #define SLCS_CSN (0x0001 << 2) | ||
84 | #define SLCS_OVR (0x0001 << 1) | ||
85 | #define SLCS_SWC (0x0001 << 0) | ||
86 | |||
87 | #define TS_DMA_PACKETS (8) | ||
88 | #define TS_DMA_BYTES (188 * TS_DMA_PACKETS) | ||
89 | |||
90 | #define I2C_ADDR_TDA10046 0x10 | ||
91 | #define I2C_ADDR_TUA6034 0xc2 | ||
92 | #define NHWFILTERS 8 | ||
93 | |||
94 | struct pluto { | ||
95 | /* pci */ | ||
96 | struct pci_dev *pdev; | ||
97 | u8 __iomem *io_mem; | ||
98 | |||
99 | /* dvb */ | ||
100 | struct dmx_frontend hw_frontend; | ||
101 | struct dmx_frontend mem_frontend; | ||
102 | struct dmxdev dmxdev; | ||
103 | struct dvb_adapter dvb_adapter; | ||
104 | struct dvb_demux demux; | ||
105 | struct dvb_frontend *fe; | ||
106 | struct dvb_net dvbnet; | ||
107 | unsigned int full_ts_users; | ||
108 | unsigned int users; | ||
109 | |||
110 | /* i2c */ | ||
111 | struct i2c_algo_bit_data i2c_bit; | ||
112 | struct i2c_adapter i2c_adap; | ||
113 | unsigned int i2cbug; | ||
114 | |||
115 | /* irq */ | ||
116 | unsigned int overflow; | ||
117 | |||
118 | /* dma */ | ||
119 | dma_addr_t dma_addr; | ||
120 | u8 dma_buf[TS_DMA_BYTES]; | ||
121 | u8 dummy[4096]; | ||
122 | }; | ||
123 | |||
124 | static inline struct pluto *feed_to_pluto(struct dvb_demux_feed *feed) | ||
125 | { | ||
126 | return container_of(feed->demux, struct pluto, demux); | ||
127 | } | ||
128 | |||
129 | static inline struct pluto *frontend_to_pluto(struct dvb_frontend *fe) | ||
130 | { | ||
131 | return container_of(fe->dvb, struct pluto, dvb_adapter); | ||
132 | } | ||
133 | |||
134 | static inline u32 pluto_readreg(struct pluto *pluto, u32 reg) | ||
135 | { | ||
136 | return readl(&pluto->io_mem[reg]); | ||
137 | } | ||
138 | |||
139 | static inline void pluto_writereg(struct pluto *pluto, u32 reg, u32 val) | ||
140 | { | ||
141 | writel(val, &pluto->io_mem[reg]); | ||
142 | } | ||
143 | |||
144 | static inline void pluto_rw(struct pluto *pluto, u32 reg, u32 mask, u32 bits) | ||
145 | { | ||
146 | u32 val = readl(&pluto->io_mem[reg]); | ||
147 | val &= ~mask; | ||
148 | val |= bits; | ||
149 | writel(val, &pluto->io_mem[reg]); | ||
150 | } | ||
151 | |||
152 | static void pluto_setsda(void *data, int state) | ||
153 | { | ||
154 | struct pluto *pluto = data; | ||
155 | |||
156 | if (state) | ||
157 | pluto_rw(pluto, REG_SLCS, SLCS_SDA, SLCS_SDA); | ||
158 | else | ||
159 | pluto_rw(pluto, REG_SLCS, SLCS_SDA, 0); | ||
160 | } | ||
161 | |||
162 | static void pluto_setscl(void *data, int state) | ||
163 | { | ||
164 | struct pluto *pluto = data; | ||
165 | |||
166 | if (state) | ||
167 | pluto_rw(pluto, REG_SLCS, SLCS_SCL, SLCS_SCL); | ||
168 | else | ||
169 | pluto_rw(pluto, REG_SLCS, SLCS_SCL, 0); | ||
170 | |||
171 | /* try to detect i2c_inb() to workaround hardware bug: | ||
172 | * reset SDA to high after SCL has been set to low */ | ||
173 | if ((state) && (pluto->i2cbug == 0)) { | ||
174 | pluto->i2cbug = 1; | ||
175 | } else { | ||
176 | if ((!state) && (pluto->i2cbug == 1)) | ||
177 | pluto_setsda(pluto, 1); | ||
178 | pluto->i2cbug = 0; | ||
179 | } | ||
180 | } | ||
181 | |||
182 | static int pluto_getsda(void *data) | ||
183 | { | ||
184 | struct pluto *pluto = data; | ||
185 | |||
186 | return pluto_readreg(pluto, REG_SLCS) & SLCS_SDA; | ||
187 | } | ||
188 | |||
189 | static int pluto_getscl(void *data) | ||
190 | { | ||
191 | struct pluto *pluto = data; | ||
192 | |||
193 | return pluto_readreg(pluto, REG_SLCS) & SLCS_SCL; | ||
194 | } | ||
195 | |||
196 | static void pluto_reset_frontend(struct pluto *pluto, int reenable) | ||
197 | { | ||
198 | u32 val = pluto_readreg(pluto, REG_MISC); | ||
199 | |||
200 | if (val & MISC_FRST) { | ||
201 | val &= ~MISC_FRST; | ||
202 | pluto_writereg(pluto, REG_MISC, val); | ||
203 | } | ||
204 | if (reenable) { | ||
205 | val |= MISC_FRST; | ||
206 | pluto_writereg(pluto, REG_MISC, val); | ||
207 | } | ||
208 | } | ||
209 | |||
210 | static void pluto_reset_ts(struct pluto *pluto, int reenable) | ||
211 | { | ||
212 | u32 val = pluto_readreg(pluto, REG_TSCR); | ||
213 | |||
214 | if (val & TSCR_RSTN) { | ||
215 | val &= ~TSCR_RSTN; | ||
216 | pluto_writereg(pluto, REG_TSCR, val); | ||
217 | } | ||
218 | if (reenable) { | ||
219 | val |= TSCR_RSTN; | ||
220 | pluto_writereg(pluto, REG_TSCR, val); | ||
221 | } | ||
222 | } | ||
223 | |||
224 | static void pluto_set_dma_addr(struct pluto *pluto) | ||
225 | { | ||
226 | pluto_writereg(pluto, REG_PCAR, cpu_to_le32(pluto->dma_addr)); | ||
227 | } | ||
228 | |||
229 | static int __devinit pluto_dma_map(struct pluto *pluto) | ||
230 | { | ||
231 | pluto->dma_addr = pci_map_single(pluto->pdev, pluto->dma_buf, | ||
232 | TS_DMA_BYTES, PCI_DMA_FROMDEVICE); | ||
233 | |||
234 | return pci_dma_mapping_error(pluto->dma_addr); | ||
235 | } | ||
236 | |||
237 | static void pluto_dma_unmap(struct pluto *pluto) | ||
238 | { | ||
239 | pci_unmap_single(pluto->pdev, pluto->dma_addr, | ||
240 | TS_DMA_BYTES, PCI_DMA_FROMDEVICE); | ||
241 | } | ||
242 | |||
243 | static int pluto_start_feed(struct dvb_demux_feed *f) | ||
244 | { | ||
245 | struct pluto *pluto = feed_to_pluto(f); | ||
246 | |||
247 | /* enable PID filtering */ | ||
248 | if (pluto->users++ == 0) | ||
249 | pluto_rw(pluto, REG_PIDn(0), PID0_AFIL | PID0_NOFIL, 0); | ||
250 | |||
251 | if ((f->pid < 0x2000) && (f->index < NHWFILTERS)) | ||
252 | pluto_rw(pluto, REG_PIDn(f->index), PIDn_ENP | PIDn_PID, PIDn_ENP | f->pid); | ||
253 | else if (pluto->full_ts_users++ == 0) | ||
254 | pluto_rw(pluto, REG_PIDn(0), PID0_NOFIL, PID0_NOFIL); | ||
255 | |||
256 | return 0; | ||
257 | } | ||
258 | |||
259 | static int pluto_stop_feed(struct dvb_demux_feed *f) | ||
260 | { | ||
261 | struct pluto *pluto = feed_to_pluto(f); | ||
262 | |||
263 | /* disable PID filtering */ | ||
264 | if (--pluto->users == 0) | ||
265 | pluto_rw(pluto, REG_PIDn(0), PID0_AFIL, PID0_AFIL); | ||
266 | |||
267 | if ((f->pid < 0x2000) && (f->index < NHWFILTERS)) | ||
268 | pluto_rw(pluto, REG_PIDn(f->index), PIDn_ENP | PIDn_PID, 0x1fff); | ||
269 | else if (--pluto->full_ts_users == 0) | ||
270 | pluto_rw(pluto, REG_PIDn(0), PID0_NOFIL, 0); | ||
271 | |||
272 | return 0; | ||
273 | } | ||
274 | |||
275 | static void pluto_dma_end(struct pluto *pluto, unsigned int nbpackets) | ||
276 | { | ||
277 | /* synchronize the DMA transfer with the CPU | ||
278 | * first so that we see updated contents. */ | ||
279 | pci_dma_sync_single_for_cpu(pluto->pdev, pluto->dma_addr, | ||
280 | TS_DMA_BYTES, PCI_DMA_FROMDEVICE); | ||
281 | |||
282 | /* Workaround for broken hardware: | ||
283 | * [1] On startup NBPACKETS seems to contain an uninitialized value, | ||
284 | * but no packets have been transfered. | ||
285 | * [2] Sometimes (actually very often) NBPACKETS stays at zero | ||
286 | * although one packet has been transfered. | ||
287 | */ | ||
288 | if ((nbpackets == 0) || (nbpackets > TS_DMA_PACKETS)) { | ||
289 | unsigned int i = 0, valid; | ||
290 | while (pluto->dma_buf[i] == 0x47) | ||
291 | i += 188; | ||
292 | valid = i / 188; | ||
293 | if (nbpackets != valid) { | ||
294 | dev_err(&pluto->pdev->dev, "nbpackets=%u valid=%u\n", | ||
295 | nbpackets, valid); | ||
296 | nbpackets = valid; | ||
297 | } | ||
298 | } | ||
299 | |||
300 | dvb_dmx_swfilter_packets(&pluto->demux, pluto->dma_buf, nbpackets); | ||
301 | |||
302 | /* clear the dma buffer. this is needed to be able to identify | ||
303 | * new valid ts packets above */ | ||
304 | memset(pluto->dma_buf, 0, nbpackets * 188); | ||
305 | |||
306 | /* reset the dma address */ | ||
307 | pluto_set_dma_addr(pluto); | ||
308 | |||
309 | /* sync the buffer and give it back to the card */ | ||
310 | pci_dma_sync_single_for_device(pluto->pdev, pluto->dma_addr, | ||
311 | TS_DMA_BYTES, PCI_DMA_FROMDEVICE); | ||
312 | } | ||
313 | |||
314 | static irqreturn_t pluto_irq(int irq, void *dev_id, struct pt_regs *regs) | ||
315 | { | ||
316 | struct pluto *pluto = dev_id; | ||
317 | u32 tscr; | ||
318 | |||
319 | /* check whether an interrupt occured on this device */ | ||
320 | tscr = pluto_readreg(pluto, REG_TSCR); | ||
321 | if (!(tscr & (TSCR_DE | TSCR_OVR))) | ||
322 | return IRQ_NONE; | ||
323 | |||
324 | if (tscr == 0xffffffff) { | ||
325 | // FIXME: maybe recover somehow | ||
326 | dev_err(&pluto->pdev->dev, "card hung up :(\n"); | ||
327 | return IRQ_HANDLED; | ||
328 | } | ||
329 | |||
330 | /* dma end interrupt */ | ||
331 | if (tscr & TSCR_DE) { | ||
332 | pluto_dma_end(pluto, (tscr & TSCR_NBPACKETS) >> 24); | ||
333 | /* overflow interrupt */ | ||
334 | if (tscr & TSCR_OVR) | ||
335 | pluto->overflow++; | ||
336 | if (pluto->overflow) { | ||
337 | dev_err(&pluto->pdev->dev, "overflow irq (%d)\n", | ||
338 | pluto->overflow); | ||
339 | pluto_reset_ts(pluto, 1); | ||
340 | pluto->overflow = 0; | ||
341 | } | ||
342 | } else if (tscr & TSCR_OVR) { | ||
343 | pluto->overflow++; | ||
344 | } | ||
345 | |||
346 | /* ACK the interrupt */ | ||
347 | pluto_writereg(pluto, REG_TSCR, tscr | TSCR_IACK); | ||
348 | |||
349 | return IRQ_HANDLED; | ||
350 | } | ||
351 | |||
352 | static void __devinit pluto_enable_irqs(struct pluto *pluto) | ||
353 | { | ||
354 | u32 val = pluto_readreg(pluto, REG_TSCR); | ||
355 | |||
356 | /* set the number of packets */ | ||
357 | val &= ~TSCR_ADEF; | ||
358 | val |= TS_DMA_PACKETS / 2; | ||
359 | /* disable AFUL and LOCK interrupts */ | ||
360 | val |= (TSCR_MSKA | TSCR_MSKL); | ||
361 | /* enable DMA and OVERFLOW interrupts */ | ||
362 | val &= ~(TSCR_DEM | TSCR_MSKO); | ||
363 | /* clear pending interrupts */ | ||
364 | val |= TSCR_IACK; | ||
365 | |||
366 | pluto_writereg(pluto, REG_TSCR, val); | ||
367 | } | ||
368 | |||
369 | static void pluto_disable_irqs(struct pluto *pluto) | ||
370 | { | ||
371 | u32 val = pluto_readreg(pluto, REG_TSCR); | ||
372 | |||
373 | /* disable all interrupts */ | ||
374 | val |= (TSCR_DEM | TSCR_MSKO | TSCR_MSKA | TSCR_MSKL); | ||
375 | /* clear pending interrupts */ | ||
376 | val |= TSCR_IACK; | ||
377 | |||
378 | pluto_writereg(pluto, REG_TSCR, val); | ||
379 | } | ||
380 | |||
381 | static int __devinit pluto_hw_init(struct pluto *pluto) | ||
382 | { | ||
383 | pluto_reset_frontend(pluto, 1); | ||
384 | |||
385 | /* set automatic LED control by FPGA */ | ||
386 | pluto_rw(pluto, REG_MISC, MISC_ALED, MISC_ALED); | ||
387 | |||
388 | /* set data endianess */ | ||
389 | #ifdef __LITTLE_ENDIAN | ||
390 | pluto_rw(pluto, REG_PIDn(0), PID0_END, PID0_END); | ||
391 | #else | ||
392 | pluto_rw(pluto, REG_PIDn(0), PID0_END, 0); | ||
393 | #endif | ||
394 | /* map DMA and set address */ | ||
395 | pluto_dma_map(pluto); | ||
396 | pluto_set_dma_addr(pluto); | ||
397 | |||
398 | /* enable interrupts */ | ||
399 | pluto_enable_irqs(pluto); | ||
400 | |||
401 | /* reset TS logic */ | ||
402 | pluto_reset_ts(pluto, 1); | ||
403 | |||
404 | return 0; | ||
405 | } | ||
406 | |||
407 | static void pluto_hw_exit(struct pluto *pluto) | ||
408 | { | ||
409 | /* disable interrupts */ | ||
410 | pluto_disable_irqs(pluto); | ||
411 | |||
412 | pluto_reset_ts(pluto, 0); | ||
413 | |||
414 | /* LED: disable automatic control, enable yellow, disable green */ | ||
415 | pluto_rw(pluto, REG_MISC, MISC_ALED | MISC_LED1 | MISC_LED0, MISC_LED1); | ||
416 | |||
417 | /* unmap DMA */ | ||
418 | pluto_dma_unmap(pluto); | ||
419 | |||
420 | pluto_reset_frontend(pluto, 0); | ||
421 | } | ||
422 | |||
423 | static inline u32 divide(u32 numerator, u32 denominator) | ||
424 | { | ||
425 | if (denominator == 0) | ||
426 | return ~0; | ||
427 | |||
428 | return (numerator + denominator / 2) / denominator; | ||
429 | } | ||
430 | |||
431 | /* LG Innotek TDTE-E001P (Infineon TUA6034) */ | ||
432 | static int lg_tdtpe001p_pll_set(struct dvb_frontend *fe, | ||
433 | struct dvb_frontend_parameters *p) | ||
434 | { | ||
435 | struct pluto *pluto = frontend_to_pluto(fe); | ||
436 | struct i2c_msg msg; | ||
437 | int ret; | ||
438 | u8 buf[4]; | ||
439 | u32 div; | ||
440 | |||
441 | // Fref = 166.667 Hz | ||
442 | // Fref * 3 = 500.000 Hz | ||
443 | // IF = 36166667 | ||
444 | // IF / Fref = 217 | ||
445 | //div = divide(p->frequency + 36166667, 166667); | ||
446 | div = divide(p->frequency * 3, 500000) + 217; | ||
447 | buf[0] = (div >> 8) & 0x7f; | ||
448 | buf[1] = (div >> 0) & 0xff; | ||
449 | |||
450 | if (p->frequency < 611000000) | ||
451 | buf[2] = 0xb4; | ||
452 | else if (p->frequency < 811000000) | ||
453 | buf[2] = 0xbc; | ||
454 | else | ||
455 | buf[2] = 0xf4; | ||
456 | |||
457 | // VHF: 174-230 MHz | ||
458 | // center: 350 MHz | ||
459 | // UHF: 470-862 MHz | ||
460 | if (p->frequency < 350000000) | ||
461 | buf[3] = 0x02; | ||
462 | else | ||
463 | buf[3] = 0x04; | ||
464 | |||
465 | if (p->u.ofdm.bandwidth == BANDWIDTH_8_MHZ) | ||
466 | buf[3] |= 0x08; | ||
467 | |||
468 | if (sizeof(buf) == 6) { | ||
469 | buf[4] = buf[2]; | ||
470 | buf[4] &= ~0x1c; | ||
471 | buf[4] |= 0x18; | ||
472 | |||
473 | buf[5] = (0 << 7) | (2 << 4); | ||
474 | } | ||
475 | |||
476 | msg.addr = I2C_ADDR_TUA6034 >> 1; | ||
477 | msg.flags = 0; | ||
478 | msg.buf = buf; | ||
479 | msg.len = sizeof(buf); | ||
480 | |||
481 | ret = i2c_transfer(&pluto->i2c_adap, &msg, 1); | ||
482 | if (ret < 0) | ||
483 | return ret; | ||
484 | else if (ret == 0) | ||
485 | return -EREMOTEIO; | ||
486 | |||
487 | return 0; | ||
488 | } | ||
489 | |||
490 | static int pluto2_request_firmware(struct dvb_frontend *fe, | ||
491 | const struct firmware **fw, char *name) | ||
492 | { | ||
493 | struct pluto *pluto = frontend_to_pluto(fe); | ||
494 | |||
495 | return request_firmware(fw, name, &pluto->pdev->dev); | ||
496 | } | ||
497 | |||
498 | static struct tda1004x_config pluto2_fe_config __devinitdata = { | ||
499 | .demod_address = I2C_ADDR_TDA10046 >> 1, | ||
500 | .invert = 1, | ||
501 | .invert_oclk = 0, | ||
502 | .xtal_freq = TDA10046_XTAL_16M, | ||
503 | .agc_config = TDA10046_AGC_DEFAULT, | ||
504 | .if_freq = TDA10046_FREQ_3617, | ||
505 | .pll_set = lg_tdtpe001p_pll_set, | ||
506 | .pll_sleep = NULL, | ||
507 | .request_firmware = pluto2_request_firmware, | ||
508 | }; | ||
509 | |||
510 | static int __devinit frontend_init(struct pluto *pluto) | ||
511 | { | ||
512 | int ret; | ||
513 | |||
514 | pluto->fe = tda10046_attach(&pluto2_fe_config, &pluto->i2c_adap); | ||
515 | if (!pluto->fe) { | ||
516 | dev_err(&pluto->pdev->dev, "could not attach frontend\n"); | ||
517 | return -ENODEV; | ||
518 | } | ||
519 | |||
520 | ret = dvb_register_frontend(&pluto->dvb_adapter, pluto->fe); | ||
521 | if (ret < 0) { | ||
522 | if (pluto->fe->ops->release) | ||
523 | pluto->fe->ops->release(pluto->fe); | ||
524 | return ret; | ||
525 | } | ||
526 | |||
527 | return 0; | ||
528 | } | ||
529 | |||
530 | static void __devinit pluto_read_rev(struct pluto *pluto) | ||
531 | { | ||
532 | u32 val = pluto_readreg(pluto, REG_MISC) & MISC_DVR; | ||
533 | dev_info(&pluto->pdev->dev, "board revision %d.%d\n", | ||
534 | (val >> 12) & 0x0f, (val >> 4) & 0xff); | ||
535 | } | ||
536 | |||
537 | static void __devinit pluto_read_mac(struct pluto *pluto, u8 *mac) | ||
538 | { | ||
539 | u32 val = pluto_readreg(pluto, REG_MMAC); | ||
540 | mac[0] = (val >> 8) & 0xff; | ||
541 | mac[1] = (val >> 0) & 0xff; | ||
542 | |||
543 | val = pluto_readreg(pluto, REG_IMAC); | ||
544 | mac[2] = (val >> 8) & 0xff; | ||
545 | mac[3] = (val >> 0) & 0xff; | ||
546 | |||
547 | val = pluto_readreg(pluto, REG_LMAC); | ||
548 | mac[4] = (val >> 8) & 0xff; | ||
549 | mac[5] = (val >> 0) & 0xff; | ||
550 | |||
551 | dev_info(&pluto->pdev->dev, "MAC %02x:%02x:%02x:%02x:%02x:%02x\n", | ||
552 | mac[0], mac[1], mac[2], mac[3], mac[4], mac[5]); | ||
553 | } | ||
554 | |||
555 | static int __devinit pluto_read_serial(struct pluto *pluto) | ||
556 | { | ||
557 | struct pci_dev *pdev = pluto->pdev; | ||
558 | unsigned int i, j; | ||
559 | u8 __iomem *cis; | ||
560 | |||
561 | cis = pci_iomap(pdev, 1, 0); | ||
562 | if (!cis) | ||
563 | return -EIO; | ||
564 | |||
565 | dev_info(&pdev->dev, "S/N "); | ||
566 | |||
567 | for (i = 0xe0; i < 0x100; i += 4) { | ||
568 | u32 val = readl(&cis[i]); | ||
569 | for (j = 0; j < 32; j += 8) { | ||
570 | if ((val & 0xff) == 0xff) | ||
571 | goto out; | ||
572 | printk("%c", val & 0xff); | ||
573 | val >>= 8; | ||
574 | } | ||
575 | } | ||
576 | out: | ||
577 | printk("\n"); | ||
578 | pci_iounmap(pdev, cis); | ||
579 | |||
580 | return 0; | ||
581 | } | ||
582 | |||
583 | static int __devinit pluto2_probe(struct pci_dev *pdev, | ||
584 | const struct pci_device_id *ent) | ||
585 | { | ||
586 | struct pluto *pluto; | ||
587 | struct dvb_adapter *dvb_adapter; | ||
588 | struct dvb_demux *dvbdemux; | ||
589 | struct dmx_demux *dmx; | ||
590 | int ret = -ENOMEM; | ||
591 | |||
592 | pluto = kmalloc(sizeof(struct pluto), GFP_KERNEL); | ||
593 | if (!pluto) | ||
594 | goto out; | ||
595 | |||
596 | memset(pluto, 0, sizeof(struct pluto)); | ||
597 | pluto->pdev = pdev; | ||
598 | |||
599 | ret = pci_enable_device(pdev); | ||
600 | if (ret < 0) | ||
601 | goto err_kfree; | ||
602 | |||
603 | /* enable interrupts */ | ||
604 | pci_write_config_dword(pdev, 0x6c, 0x8000); | ||
605 | |||
606 | ret = pci_set_dma_mask(pdev, DMA_32BIT_MASK); | ||
607 | if (ret < 0) | ||
608 | goto err_pci_disable_device; | ||
609 | |||
610 | pci_set_master(pdev); | ||
611 | |||
612 | ret = pci_request_regions(pdev, DRIVER_NAME); | ||
613 | if (ret < 0) | ||
614 | goto err_pci_disable_device; | ||
615 | |||
616 | pluto->io_mem = pci_iomap(pdev, 0, 0x40); | ||
617 | if (!pluto->io_mem) { | ||
618 | ret = -EIO; | ||
619 | goto err_pci_release_regions; | ||
620 | } | ||
621 | |||
622 | pci_set_drvdata(pdev, pluto); | ||
623 | |||
624 | ret = request_irq(pdev->irq, pluto_irq, SA_SHIRQ, DRIVER_NAME, pluto); | ||
625 | if (ret < 0) | ||
626 | goto err_pci_iounmap; | ||
627 | |||
628 | ret = pluto_hw_init(pluto); | ||
629 | if (ret < 0) | ||
630 | goto err_free_irq; | ||
631 | |||
632 | /* i2c */ | ||
633 | i2c_set_adapdata(&pluto->i2c_adap, pluto); | ||
634 | strcpy(pluto->i2c_adap.name, DRIVER_NAME); | ||
635 | pluto->i2c_adap.owner = THIS_MODULE; | ||
636 | pluto->i2c_adap.id = I2C_ALGO_BIT; | ||
637 | pluto->i2c_adap.class = I2C_CLASS_TV_DIGITAL; | ||
638 | pluto->i2c_adap.dev.parent = &pdev->dev; | ||
639 | pluto->i2c_adap.algo_data = &pluto->i2c_bit; | ||
640 | pluto->i2c_bit.data = pluto; | ||
641 | pluto->i2c_bit.setsda = pluto_setsda; | ||
642 | pluto->i2c_bit.setscl = pluto_setscl; | ||
643 | pluto->i2c_bit.getsda = pluto_getsda; | ||
644 | pluto->i2c_bit.getscl = pluto_getscl; | ||
645 | pluto->i2c_bit.udelay = 10; | ||
646 | pluto->i2c_bit.timeout = 10; | ||
647 | |||
648 | /* Raise SCL and SDA */ | ||
649 | pluto_setsda(pluto, 1); | ||
650 | pluto_setscl(pluto, 1); | ||
651 | |||
652 | ret = i2c_bit_add_bus(&pluto->i2c_adap); | ||
653 | if (ret < 0) | ||
654 | goto err_pluto_hw_exit; | ||
655 | |||
656 | /* dvb */ | ||
657 | ret = dvb_register_adapter(&pluto->dvb_adapter, DRIVER_NAME, THIS_MODULE); | ||
658 | if (ret < 0) | ||
659 | goto err_i2c_bit_del_bus; | ||
660 | |||
661 | dvb_adapter = &pluto->dvb_adapter; | ||
662 | |||
663 | pluto_read_rev(pluto); | ||
664 | pluto_read_serial(pluto); | ||
665 | pluto_read_mac(pluto, dvb_adapter->proposed_mac); | ||
666 | |||
667 | dvbdemux = &pluto->demux; | ||
668 | dvbdemux->filternum = 256; | ||
669 | dvbdemux->feednum = 256; | ||
670 | dvbdemux->start_feed = pluto_start_feed; | ||
671 | dvbdemux->stop_feed = pluto_stop_feed; | ||
672 | dvbdemux->dmx.capabilities = (DMX_TS_FILTERING | | ||
673 | DMX_SECTION_FILTERING | DMX_MEMORY_BASED_FILTERING); | ||
674 | ret = dvb_dmx_init(dvbdemux); | ||
675 | if (ret < 0) | ||
676 | goto err_dvb_unregister_adapter; | ||
677 | |||
678 | dmx = &dvbdemux->dmx; | ||
679 | |||
680 | pluto->hw_frontend.source = DMX_FRONTEND_0; | ||
681 | pluto->mem_frontend.source = DMX_MEMORY_FE; | ||
682 | pluto->dmxdev.filternum = NHWFILTERS; | ||
683 | pluto->dmxdev.demux = dmx; | ||
684 | |||
685 | ret = dvb_dmxdev_init(&pluto->dmxdev, dvb_adapter); | ||
686 | if (ret < 0) | ||
687 | goto err_dvb_dmx_release; | ||
688 | |||
689 | ret = dmx->add_frontend(dmx, &pluto->hw_frontend); | ||
690 | if (ret < 0) | ||
691 | goto err_dvb_dmxdev_release; | ||
692 | |||
693 | ret = dmx->add_frontend(dmx, &pluto->mem_frontend); | ||
694 | if (ret < 0) | ||
695 | goto err_remove_hw_frontend; | ||
696 | |||
697 | ret = dmx->connect_frontend(dmx, &pluto->hw_frontend); | ||
698 | if (ret < 0) | ||
699 | goto err_remove_mem_frontend; | ||
700 | |||
701 | ret = frontend_init(pluto); | ||
702 | if (ret < 0) | ||
703 | goto err_disconnect_frontend; | ||
704 | |||
705 | dvb_net_init(dvb_adapter, &pluto->dvbnet, dmx); | ||
706 | out: | ||
707 | return ret; | ||
708 | |||
709 | err_disconnect_frontend: | ||
710 | dmx->disconnect_frontend(dmx); | ||
711 | err_remove_mem_frontend: | ||
712 | dmx->remove_frontend(dmx, &pluto->mem_frontend); | ||
713 | err_remove_hw_frontend: | ||
714 | dmx->remove_frontend(dmx, &pluto->hw_frontend); | ||
715 | err_dvb_dmxdev_release: | ||
716 | dvb_dmxdev_release(&pluto->dmxdev); | ||
717 | err_dvb_dmx_release: | ||
718 | dvb_dmx_release(dvbdemux); | ||
719 | err_dvb_unregister_adapter: | ||
720 | dvb_unregister_adapter(dvb_adapter); | ||
721 | err_i2c_bit_del_bus: | ||
722 | i2c_bit_del_bus(&pluto->i2c_adap); | ||
723 | err_pluto_hw_exit: | ||
724 | pluto_hw_exit(pluto); | ||
725 | err_free_irq: | ||
726 | free_irq(pdev->irq, pluto); | ||
727 | err_pci_iounmap: | ||
728 | pci_iounmap(pdev, pluto->io_mem); | ||
729 | err_pci_release_regions: | ||
730 | pci_release_regions(pdev); | ||
731 | err_pci_disable_device: | ||
732 | pci_disable_device(pdev); | ||
733 | err_kfree: | ||
734 | pci_set_drvdata(pdev, NULL); | ||
735 | kfree(pluto); | ||
736 | goto out; | ||
737 | } | ||
738 | |||
739 | static void __devexit pluto2_remove(struct pci_dev *pdev) | ||
740 | { | ||
741 | struct pluto *pluto = pci_get_drvdata(pdev); | ||
742 | struct dvb_adapter *dvb_adapter = &pluto->dvb_adapter; | ||
743 | struct dvb_demux *dvbdemux = &pluto->demux; | ||
744 | struct dmx_demux *dmx = &dvbdemux->dmx; | ||
745 | |||
746 | dmx->close(dmx); | ||
747 | dvb_net_release(&pluto->dvbnet); | ||
748 | if (pluto->fe) | ||
749 | dvb_unregister_frontend(pluto->fe); | ||
750 | |||
751 | dmx->disconnect_frontend(dmx); | ||
752 | dmx->remove_frontend(dmx, &pluto->mem_frontend); | ||
753 | dmx->remove_frontend(dmx, &pluto->hw_frontend); | ||
754 | dvb_dmxdev_release(&pluto->dmxdev); | ||
755 | dvb_dmx_release(dvbdemux); | ||
756 | dvb_unregister_adapter(dvb_adapter); | ||
757 | i2c_bit_del_bus(&pluto->i2c_adap); | ||
758 | pluto_hw_exit(pluto); | ||
759 | free_irq(pdev->irq, pluto); | ||
760 | pci_iounmap(pdev, pluto->io_mem); | ||
761 | pci_release_regions(pdev); | ||
762 | pci_disable_device(pdev); | ||
763 | pci_set_drvdata(pdev, NULL); | ||
764 | kfree(pluto); | ||
765 | } | ||
766 | |||
767 | #ifndef PCI_VENDOR_ID_SCM | ||
768 | #define PCI_VENDOR_ID_SCM 0x0432 | ||
769 | #endif | ||
770 | #ifndef PCI_DEVICE_ID_PLUTO2 | ||
771 | #define PCI_DEVICE_ID_PLUTO2 0x0001 | ||
772 | #endif | ||
773 | |||
774 | static struct pci_device_id pluto2_id_table[] __devinitdata = { | ||
775 | { | ||
776 | .vendor = PCI_VENDOR_ID_SCM, | ||
777 | .device = PCI_DEVICE_ID_PLUTO2, | ||
778 | .subvendor = PCI_ANY_ID, | ||
779 | .subdevice = PCI_ANY_ID, | ||
780 | }, { | ||
781 | /* empty */ | ||
782 | }, | ||
783 | }; | ||
784 | |||
785 | MODULE_DEVICE_TABLE(pci, pluto2_id_table); | ||
786 | |||
787 | static struct pci_driver pluto2_driver = { | ||
788 | .name = DRIVER_NAME, | ||
789 | .id_table = pluto2_id_table, | ||
790 | .probe = pluto2_probe, | ||
791 | .remove = __devexit_p(pluto2_remove), | ||
792 | }; | ||
793 | |||
794 | static int __init pluto2_init(void) | ||
795 | { | ||
796 | return pci_register_driver(&pluto2_driver); | ||
797 | } | ||
798 | |||
799 | static void __exit pluto2_exit(void) | ||
800 | { | ||
801 | pci_unregister_driver(&pluto2_driver); | ||
802 | } | ||
803 | |||
804 | module_init(pluto2_init); | ||
805 | module_exit(pluto2_exit); | ||
806 | |||
807 | MODULE_AUTHOR("Andreas Oberritter <obi@linuxtv.org>"); | ||
808 | MODULE_DESCRIPTION("Pluto2 driver"); | ||
809 | MODULE_LICENSE("GPL"); | ||
diff --git a/drivers/media/dvb/ttpci/Kconfig b/drivers/media/dvb/ttpci/Kconfig index 7ffa2c7315b3..bf3c011d2cfb 100644 --- a/drivers/media/dvb/ttpci/Kconfig +++ b/drivers/media/dvb/ttpci/Kconfig | |||
@@ -12,7 +12,7 @@ config DVB_AV7110 | |||
12 | select DVB_STV0297 | 12 | select DVB_STV0297 |
13 | select DVB_L64781 | 13 | select DVB_L64781 |
14 | help | 14 | help |
15 | Support for SAA7146 and AV7110 based DVB cards as produced | 15 | Support for SAA7146 and AV7110 based DVB cards as produced |
16 | by Fujitsu-Siemens, Technotrend, Hauppauge and others. | 16 | by Fujitsu-Siemens, Technotrend, Hauppauge and others. |
17 | 17 | ||
18 | This driver only supports the fullfeatured cards with | 18 | This driver only supports the fullfeatured cards with |
@@ -33,7 +33,7 @@ config DVB_AV7110_FIRMWARE | |||
33 | If you want to compile the firmware into the driver you need to say | 33 | If you want to compile the firmware into the driver you need to say |
34 | Y here and provide the correct path of the firmware. You need this | 34 | Y here and provide the correct path of the firmware. You need this |
35 | option if you want to compile the whole driver statically into the | 35 | option if you want to compile the whole driver statically into the |
36 | kernel. | 36 | kernel. |
37 | 37 | ||
38 | All other people say N. | 38 | All other people say N. |
39 | 39 | ||
@@ -66,6 +66,7 @@ config DVB_BUDGET | |||
66 | select DVB_L64781 | 66 | select DVB_L64781 |
67 | select DVB_TDA8083 | 67 | select DVB_TDA8083 |
68 | select DVB_TDA10021 | 68 | select DVB_TDA10021 |
69 | select DVB_S5H1420 | ||
69 | help | 70 | help |
70 | Support for simple SAA7146 based DVB cards | 71 | Support for simple SAA7146 based DVB cards |
71 | (so called Budget- or Nova-PCI cards) without onboard | 72 | (so called Budget- or Nova-PCI cards) without onboard |
@@ -119,9 +120,9 @@ config DVB_BUDGET_PATCH | |||
119 | select DVB_VES1X93 | 120 | select DVB_VES1X93 |
120 | select DVB_TDA8083 | 121 | select DVB_TDA8083 |
121 | help | 122 | help |
122 | Support for Budget Patch (full TS) modification on | 123 | Support for Budget Patch (full TS) modification on |
123 | SAA7146+AV7110 based cards (DVB-S cards). This | 124 | SAA7146+AV7110 based cards (DVB-S cards). This |
124 | driver doesn't use onboard MPEG2 decoder. The | 125 | driver doesn't use onboard MPEG2 decoder. The |
125 | card is driven in Budget-only mode. Card is | 126 | card is driven in Budget-only mode. Card is |
126 | required to have loaded firmware to tune properly. | 127 | required to have loaded firmware to tune properly. |
127 | Firmware can be loaded by insertion and removal of | 128 | Firmware can be loaded by insertion and removal of |
diff --git a/drivers/media/dvb/ttpci/av7110.c b/drivers/media/dvb/ttpci/av7110.c index 8e33a850e13e..e4c6e87f6c5d 100644 --- a/drivers/media/dvb/ttpci/av7110.c +++ b/drivers/media/dvb/ttpci/av7110.c | |||
@@ -116,13 +116,18 @@ static int av7110_num = 0; | |||
116 | 116 | ||
117 | static void init_av7110_av(struct av7110 *av7110) | 117 | static void init_av7110_av(struct av7110 *av7110) |
118 | { | 118 | { |
119 | int ret; | ||
119 | struct saa7146_dev *dev = av7110->dev; | 120 | struct saa7146_dev *dev = av7110->dev; |
120 | 121 | ||
121 | /* set internal volume control to maximum */ | 122 | /* set internal volume control to maximum */ |
122 | av7110->adac_type = DVB_ADAC_TI; | 123 | av7110->adac_type = DVB_ADAC_TI; |
123 | av7110_set_volume(av7110, av7110->mixer.volume_left, av7110->mixer.volume_right); | 124 | ret = av7110_set_volume(av7110, av7110->mixer.volume_left, av7110->mixer.volume_right); |
125 | if (ret < 0) | ||
126 | printk("dvb-ttpci:cannot set internal volume to maximum:%d\n",ret); | ||
124 | 127 | ||
125 | av7710_set_video_mode(av7110, vidmode); | 128 | ret = av7710_set_video_mode(av7110, vidmode); |
129 | if (ret < 0) | ||
130 | printk("dvb-ttpci:cannot set video mode:%d\n",ret); | ||
126 | 131 | ||
127 | /* handle different card types */ | 132 | /* handle different card types */ |
128 | /* remaining inits according to card and frontend type */ | 133 | /* remaining inits according to card and frontend type */ |
@@ -156,8 +161,12 @@ static void init_av7110_av(struct av7110 *av7110) | |||
156 | 161 | ||
157 | if (av7110->adac_type == DVB_ADAC_NONE || av7110->adac_type == DVB_ADAC_MSP) { | 162 | if (av7110->adac_type == DVB_ADAC_NONE || av7110->adac_type == DVB_ADAC_MSP) { |
158 | // switch DVB SCART on | 163 | // switch DVB SCART on |
159 | av7110_fw_cmd(av7110, COMTYPE_AUDIODAC, MainSwitch, 1, 0); | 164 | ret = av7110_fw_cmd(av7110, COMTYPE_AUDIODAC, MainSwitch, 1, 0); |
160 | av7110_fw_cmd(av7110, COMTYPE_AUDIODAC, ADSwitch, 1, 1); | 165 | if (ret < 0) |
166 | printk("dvb-ttpci:cannot switch on SCART(Main):%d\n",ret); | ||
167 | ret = av7110_fw_cmd(av7110, COMTYPE_AUDIODAC, ADSwitch, 1, 1); | ||
168 | if (ret < 0) | ||
169 | printk("dvb-ttpci:cannot switch on SCART(AD):%d\n",ret); | ||
161 | if (rgb_on && | 170 | if (rgb_on && |
162 | (av7110->dev->pci->subsystem_vendor == 0x110a) && (av7110->dev->pci->subsystem_device == 0x0000)) { | 171 | (av7110->dev->pci->subsystem_vendor == 0x110a) && (av7110->dev->pci->subsystem_device == 0x0000)) { |
163 | saa7146_setgpio(dev, 1, SAA7146_GPIO_OUTHI); // RGB on, SCART pin 16 | 172 | saa7146_setgpio(dev, 1, SAA7146_GPIO_OUTHI); // RGB on, SCART pin 16 |
@@ -165,8 +174,12 @@ static void init_av7110_av(struct av7110 *av7110) | |||
165 | } | 174 | } |
166 | } | 175 | } |
167 | 176 | ||
168 | av7110_set_volume(av7110, av7110->mixer.volume_left, av7110->mixer.volume_right); | 177 | ret = av7110_set_volume(av7110, av7110->mixer.volume_left, av7110->mixer.volume_right); |
169 | av7110_setup_irc_config(av7110, 0); | 178 | if (ret < 0) |
179 | printk("dvb-ttpci:cannot set volume :%d\n",ret); | ||
180 | ret = av7110_setup_irc_config(av7110, 0); | ||
181 | if (ret < 0) | ||
182 | printk("dvb-ttpci:cannot setup irc config :%d\n",ret); | ||
170 | } | 183 | } |
171 | 184 | ||
172 | static void recover_arm(struct av7110 *av7110) | 185 | static void recover_arm(struct av7110 *av7110) |
@@ -258,8 +271,9 @@ static int arm_thread(void *data) | |||
258 | * | 271 | * |
259 | * If we want to support multiple controls we would have to do much more... | 272 | * If we want to support multiple controls we would have to do much more... |
260 | */ | 273 | */ |
261 | void av7110_setup_irc_config(struct av7110 *av7110, u32 ir_config) | 274 | int av7110_setup_irc_config(struct av7110 *av7110, u32 ir_config) |
262 | { | 275 | { |
276 | int ret = 0; | ||
263 | static struct av7110 *last; | 277 | static struct av7110 *last; |
264 | 278 | ||
265 | dprintk(4, "%p\n", av7110); | 279 | dprintk(4, "%p\n", av7110); |
@@ -270,9 +284,10 @@ void av7110_setup_irc_config(struct av7110 *av7110, u32 ir_config) | |||
270 | last = av7110; | 284 | last = av7110; |
271 | 285 | ||
272 | if (av7110) { | 286 | if (av7110) { |
273 | av7110_fw_cmd(av7110, COMTYPE_PIDFILTER, SetIR, 1, ir_config); | 287 | ret = av7110_fw_cmd(av7110, COMTYPE_PIDFILTER, SetIR, 1, ir_config); |
274 | av7110->ir_config = ir_config; | 288 | av7110->ir_config = ir_config; |
275 | } | 289 | } |
290 | return ret; | ||
276 | } | 291 | } |
277 | 292 | ||
278 | static void (*irc_handler)(u32); | 293 | static void (*irc_handler)(u32); |
@@ -765,13 +780,14 @@ static inline int SetPIDs(struct av7110 *av7110, u16 vpid, u16 apid, u16 ttpid, | |||
765 | pcrpid, vpid, apid, ttpid, subpid); | 780 | pcrpid, vpid, apid, ttpid, subpid); |
766 | } | 781 | } |
767 | 782 | ||
768 | void ChangePIDs(struct av7110 *av7110, u16 vpid, u16 apid, u16 ttpid, | 783 | int ChangePIDs(struct av7110 *av7110, u16 vpid, u16 apid, u16 ttpid, |
769 | u16 subpid, u16 pcrpid) | 784 | u16 subpid, u16 pcrpid) |
770 | { | 785 | { |
786 | int ret = 0; | ||
771 | dprintk(4, "%p\n", av7110); | 787 | dprintk(4, "%p\n", av7110); |
772 | 788 | ||
773 | if (down_interruptible(&av7110->pid_mutex)) | 789 | if (down_interruptible(&av7110->pid_mutex)) |
774 | return; | 790 | return -ERESTARTSYS; |
775 | 791 | ||
776 | if (!(vpid & 0x8000)) | 792 | if (!(vpid & 0x8000)) |
777 | av7110->pids[DMX_PES_VIDEO] = vpid; | 793 | av7110->pids[DMX_PES_VIDEO] = vpid; |
@@ -786,10 +802,11 @@ void ChangePIDs(struct av7110 *av7110, u16 vpid, u16 apid, u16 ttpid, | |||
786 | 802 | ||
787 | if (av7110->fe_synced) { | 803 | if (av7110->fe_synced) { |
788 | pcrpid = av7110->pids[DMX_PES_PCR]; | 804 | pcrpid = av7110->pids[DMX_PES_PCR]; |
789 | SetPIDs(av7110, vpid, apid, ttpid, subpid, pcrpid); | 805 | ret = SetPIDs(av7110, vpid, apid, ttpid, subpid, pcrpid); |
790 | } | 806 | } |
791 | 807 | ||
792 | up(&av7110->pid_mutex); | 808 | up(&av7110->pid_mutex); |
809 | return ret; | ||
793 | } | 810 | } |
794 | 811 | ||
795 | 812 | ||
@@ -832,11 +849,13 @@ static int StartHWFilter(struct dvb_demux_filter *dvbdmxfilter) | |||
832 | ret = av7110_fw_request(av7110, buf, 20, &handle, 1); | 849 | ret = av7110_fw_request(av7110, buf, 20, &handle, 1); |
833 | if (ret != 0 || handle >= 32) { | 850 | if (ret != 0 || handle >= 32) { |
834 | printk("dvb-ttpci: %s error buf %04x %04x %04x %04x " | 851 | printk("dvb-ttpci: %s error buf %04x %04x %04x %04x " |
835 | "ret %x handle %04x\n", | 852 | "ret %d handle %04x\n", |
836 | __FUNCTION__, buf[0], buf[1], buf[2], buf[3], | 853 | __FUNCTION__, buf[0], buf[1], buf[2], buf[3], |
837 | ret, handle); | 854 | ret, handle); |
838 | dvbdmxfilter->hw_handle = 0xffff; | 855 | dvbdmxfilter->hw_handle = 0xffff; |
839 | return -1; | 856 | if (!ret) |
857 | ret = -1; | ||
858 | return ret; | ||
840 | } | 859 | } |
841 | 860 | ||
842 | av7110->handle2filter[handle] = dvbdmxfilter; | 861 | av7110->handle2filter[handle] = dvbdmxfilter; |
@@ -859,7 +878,7 @@ static int StopHWFilter(struct dvb_demux_filter *dvbdmxfilter) | |||
859 | if (handle >= 32) { | 878 | if (handle >= 32) { |
860 | printk("%s tried to stop invalid filter %04x, filter type = %x\n", | 879 | printk("%s tried to stop invalid filter %04x, filter type = %x\n", |
861 | __FUNCTION__, handle, dvbdmxfilter->type); | 880 | __FUNCTION__, handle, dvbdmxfilter->type); |
862 | return 0; | 881 | return -EINVAL; |
863 | } | 882 | } |
864 | 883 | ||
865 | av7110->handle2filter[handle] = NULL; | 884 | av7110->handle2filter[handle] = NULL; |
@@ -873,18 +892,20 @@ static int StopHWFilter(struct dvb_demux_filter *dvbdmxfilter) | |||
873 | "resp %04x %04x pid %d\n", | 892 | "resp %04x %04x pid %d\n", |
874 | __FUNCTION__, buf[0], buf[1], buf[2], ret, | 893 | __FUNCTION__, buf[0], buf[1], buf[2], ret, |
875 | answ[0], answ[1], dvbdmxfilter->feed->pid); | 894 | answ[0], answ[1], dvbdmxfilter->feed->pid); |
876 | ret = -1; | 895 | if (!ret) |
896 | ret = -1; | ||
877 | } | 897 | } |
878 | return ret; | 898 | return ret; |
879 | } | 899 | } |
880 | 900 | ||
881 | 901 | ||
882 | static void dvb_feed_start_pid(struct dvb_demux_feed *dvbdmxfeed) | 902 | static int dvb_feed_start_pid(struct dvb_demux_feed *dvbdmxfeed) |
883 | { | 903 | { |
884 | struct dvb_demux *dvbdmx = dvbdmxfeed->demux; | 904 | struct dvb_demux *dvbdmx = dvbdmxfeed->demux; |
885 | struct av7110 *av7110 = (struct av7110 *) dvbdmx->priv; | 905 | struct av7110 *av7110 = (struct av7110 *) dvbdmx->priv; |
886 | u16 *pid = dvbdmx->pids, npids[5]; | 906 | u16 *pid = dvbdmx->pids, npids[5]; |
887 | int i; | 907 | int i; |
908 | int ret = 0; | ||
888 | 909 | ||
889 | dprintk(4, "%p\n", av7110); | 910 | dprintk(4, "%p\n", av7110); |
890 | 911 | ||
@@ -893,36 +914,49 @@ static void dvb_feed_start_pid(struct dvb_demux_feed *dvbdmxfeed) | |||
893 | npids[i] = (pid[i]&0x8000) ? 0 : pid[i]; | 914 | npids[i] = (pid[i]&0x8000) ? 0 : pid[i]; |
894 | if ((i == 2) && npids[i] && (dvbdmxfeed->ts_type & TS_PACKET)) { | 915 | if ((i == 2) && npids[i] && (dvbdmxfeed->ts_type & TS_PACKET)) { |
895 | npids[i] = 0; | 916 | npids[i] = 0; |
896 | ChangePIDs(av7110, npids[1], npids[0], npids[2], npids[3], npids[4]); | 917 | ret = ChangePIDs(av7110, npids[1], npids[0], npids[2], npids[3], npids[4]); |
897 | StartHWFilter(dvbdmxfeed->filter); | 918 | if (!ret) |
898 | return; | 919 | ret = StartHWFilter(dvbdmxfeed->filter); |
920 | return ret; | ||
921 | } | ||
922 | if (dvbdmxfeed->pes_type <= 2 || dvbdmxfeed->pes_type == 4) { | ||
923 | ret = ChangePIDs(av7110, npids[1], npids[0], npids[2], npids[3], npids[4]); | ||
924 | if (ret) | ||
925 | return ret; | ||
899 | } | 926 | } |
900 | if (dvbdmxfeed->pes_type <= 2 || dvbdmxfeed->pes_type == 4) | ||
901 | ChangePIDs(av7110, npids[1], npids[0], npids[2], npids[3], npids[4]); | ||
902 | 927 | ||
903 | if (dvbdmxfeed->pes_type < 2 && npids[0]) | 928 | if (dvbdmxfeed->pes_type < 2 && npids[0]) |
904 | if (av7110->fe_synced) | 929 | if (av7110->fe_synced) |
905 | av7110_fw_cmd(av7110, COMTYPE_PIDFILTER, Scan, 0); | 930 | { |
931 | ret = av7110_fw_cmd(av7110, COMTYPE_PIDFILTER, Scan, 0); | ||
932 | if (ret) | ||
933 | return ret; | ||
934 | } | ||
906 | 935 | ||
907 | if ((dvbdmxfeed->ts_type & TS_PACKET)) { | 936 | if ((dvbdmxfeed->ts_type & TS_PACKET)) { |
908 | if (dvbdmxfeed->pes_type == 0 && !(dvbdmx->pids[0] & 0x8000)) | 937 | if (dvbdmxfeed->pes_type == 0 && !(dvbdmx->pids[0] & 0x8000)) |
909 | av7110_av_start_record(av7110, RP_AUDIO, dvbdmxfeed); | 938 | ret = av7110_av_start_record(av7110, RP_AUDIO, dvbdmxfeed); |
910 | if (dvbdmxfeed->pes_type == 1 && !(dvbdmx->pids[1] & 0x8000)) | 939 | if (dvbdmxfeed->pes_type == 1 && !(dvbdmx->pids[1] & 0x8000)) |
911 | av7110_av_start_record(av7110, RP_VIDEO, dvbdmxfeed); | 940 | ret = av7110_av_start_record(av7110, RP_VIDEO, dvbdmxfeed); |
912 | } | 941 | } |
942 | return ret; | ||
913 | } | 943 | } |
914 | 944 | ||
915 | static void dvb_feed_stop_pid(struct dvb_demux_feed *dvbdmxfeed) | 945 | static int dvb_feed_stop_pid(struct dvb_demux_feed *dvbdmxfeed) |
916 | { | 946 | { |
917 | struct dvb_demux *dvbdmx = dvbdmxfeed->demux; | 947 | struct dvb_demux *dvbdmx = dvbdmxfeed->demux; |
918 | struct av7110 *av7110 = (struct av7110 *) dvbdmx->priv; | 948 | struct av7110 *av7110 = (struct av7110 *) dvbdmx->priv; |
919 | u16 *pid = dvbdmx->pids, npids[5]; | 949 | u16 *pid = dvbdmx->pids, npids[5]; |
920 | int i; | 950 | int i; |
921 | 951 | ||
952 | int ret = 0; | ||
953 | |||
922 | dprintk(4, "%p\n", av7110); | 954 | dprintk(4, "%p\n", av7110); |
923 | 955 | ||
924 | if (dvbdmxfeed->pes_type <= 1) { | 956 | if (dvbdmxfeed->pes_type <= 1) { |
925 | av7110_av_stop(av7110, dvbdmxfeed->pes_type ? RP_VIDEO : RP_AUDIO); | 957 | ret = av7110_av_stop(av7110, dvbdmxfeed->pes_type ? RP_VIDEO : RP_AUDIO); |
958 | if (ret) | ||
959 | return ret; | ||
926 | if (!av7110->rec_mode) | 960 | if (!av7110->rec_mode) |
927 | dvbdmx->recording = 0; | 961 | dvbdmx->recording = 0; |
928 | if (!av7110->playing) | 962 | if (!av7110->playing) |
@@ -933,24 +967,27 @@ static void dvb_feed_stop_pid(struct dvb_demux_feed *dvbdmxfeed) | |||
933 | switch (i) { | 967 | switch (i) { |
934 | case 2: //teletext | 968 | case 2: //teletext |
935 | if (dvbdmxfeed->ts_type & TS_PACKET) | 969 | if (dvbdmxfeed->ts_type & TS_PACKET) |
936 | StopHWFilter(dvbdmxfeed->filter); | 970 | ret = StopHWFilter(dvbdmxfeed->filter); |
937 | npids[2] = 0; | 971 | npids[2] = 0; |
938 | break; | 972 | break; |
939 | case 0: | 973 | case 0: |
940 | case 1: | 974 | case 1: |
941 | case 4: | 975 | case 4: |
942 | if (!pids_off) | 976 | if (!pids_off) |
943 | return; | 977 | return 0; |
944 | npids[i] = (pid[i]&0x8000) ? 0 : pid[i]; | 978 | npids[i] = (pid[i]&0x8000) ? 0 : pid[i]; |
945 | break; | 979 | break; |
946 | } | 980 | } |
947 | ChangePIDs(av7110, npids[1], npids[0], npids[2], npids[3], npids[4]); | 981 | if (!ret) |
982 | ret = ChangePIDs(av7110, npids[1], npids[0], npids[2], npids[3], npids[4]); | ||
983 | return ret; | ||
948 | } | 984 | } |
949 | 985 | ||
950 | static int av7110_start_feed(struct dvb_demux_feed *feed) | 986 | static int av7110_start_feed(struct dvb_demux_feed *feed) |
951 | { | 987 | { |
952 | struct dvb_demux *demux = feed->demux; | 988 | struct dvb_demux *demux = feed->demux; |
953 | struct av7110 *av7110 = demux->priv; | 989 | struct av7110 *av7110 = demux->priv; |
990 | int ret = 0; | ||
954 | 991 | ||
955 | dprintk(4, "%p\n", av7110); | 992 | dprintk(4, "%p\n", av7110); |
956 | 993 | ||
@@ -971,21 +1008,22 @@ static int av7110_start_feed(struct dvb_demux_feed *feed) | |||
971 | !(demux->pids[1] & 0x8000)) { | 1008 | !(demux->pids[1] & 0x8000)) { |
972 | dvb_ringbuffer_flush_spinlock_wakeup(&av7110->avout); | 1009 | dvb_ringbuffer_flush_spinlock_wakeup(&av7110->avout); |
973 | dvb_ringbuffer_flush_spinlock_wakeup(&av7110->aout); | 1010 | dvb_ringbuffer_flush_spinlock_wakeup(&av7110->aout); |
974 | av7110_av_start_play(av7110,RP_AV); | 1011 | ret = av7110_av_start_play(av7110,RP_AV); |
975 | demux->playing = 1; | 1012 | if (!ret) |
1013 | demux->playing = 1; | ||
976 | } | 1014 | } |
977 | break; | 1015 | break; |
978 | default: | 1016 | default: |
979 | dvb_feed_start_pid(feed); | 1017 | ret = dvb_feed_start_pid(feed); |
980 | break; | 1018 | break; |
981 | } | 1019 | } |
982 | } else if ((feed->ts_type & TS_PACKET) && | 1020 | } else if ((feed->ts_type & TS_PACKET) && |
983 | (demux->dmx.frontend->source != DMX_MEMORY_FE)) { | 1021 | (demux->dmx.frontend->source != DMX_MEMORY_FE)) { |
984 | StartHWFilter(feed->filter); | 1022 | ret = StartHWFilter(feed->filter); |
985 | } | 1023 | } |
986 | } | 1024 | } |
987 | 1025 | ||
988 | if (feed->type == DMX_TYPE_SEC) { | 1026 | else if (feed->type == DMX_TYPE_SEC) { |
989 | int i; | 1027 | int i; |
990 | 1028 | ||
991 | for (i = 0; i < demux->filternum; i++) { | 1029 | for (i = 0; i < demux->filternum; i++) { |
@@ -996,12 +1034,15 @@ static int av7110_start_feed(struct dvb_demux_feed *feed) | |||
996 | if (demux->filter[i].filter.parent != &feed->feed.sec) | 1034 | if (demux->filter[i].filter.parent != &feed->feed.sec) |
997 | continue; | 1035 | continue; |
998 | demux->filter[i].state = DMX_STATE_GO; | 1036 | demux->filter[i].state = DMX_STATE_GO; |
999 | if (demux->dmx.frontend->source != DMX_MEMORY_FE) | 1037 | if (demux->dmx.frontend->source != DMX_MEMORY_FE) { |
1000 | StartHWFilter(&demux->filter[i]); | 1038 | ret = StartHWFilter(&demux->filter[i]); |
1039 | if (ret) | ||
1040 | break; | ||
1041 | } | ||
1001 | } | 1042 | } |
1002 | } | 1043 | } |
1003 | 1044 | ||
1004 | return 0; | 1045 | return ret; |
1005 | } | 1046 | } |
1006 | 1047 | ||
1007 | 1048 | ||
@@ -1009,7 +1050,7 @@ static int av7110_stop_feed(struct dvb_demux_feed *feed) | |||
1009 | { | 1050 | { |
1010 | struct dvb_demux *demux = feed->demux; | 1051 | struct dvb_demux *demux = feed->demux; |
1011 | struct av7110 *av7110 = demux->priv; | 1052 | struct av7110 *av7110 = demux->priv; |
1012 | 1053 | int i, rc, ret = 0; | |
1013 | dprintk(4, "%p\n", av7110); | 1054 | dprintk(4, "%p\n", av7110); |
1014 | 1055 | ||
1015 | if (feed->type == DMX_TYPE_TS) { | 1056 | if (feed->type == DMX_TYPE_TS) { |
@@ -1022,26 +1063,29 @@ static int av7110_stop_feed(struct dvb_demux_feed *feed) | |||
1022 | } | 1063 | } |
1023 | if (feed->ts_type & TS_DECODER && | 1064 | if (feed->ts_type & TS_DECODER && |
1024 | feed->pes_type < DMX_TS_PES_OTHER) { | 1065 | feed->pes_type < DMX_TS_PES_OTHER) { |
1025 | dvb_feed_stop_pid(feed); | 1066 | ret = dvb_feed_stop_pid(feed); |
1026 | } else | 1067 | } else |
1027 | if ((feed->ts_type & TS_PACKET) && | 1068 | if ((feed->ts_type & TS_PACKET) && |
1028 | (demux->dmx.frontend->source != DMX_MEMORY_FE)) | 1069 | (demux->dmx.frontend->source != DMX_MEMORY_FE)) |
1029 | StopHWFilter(feed->filter); | 1070 | ret = StopHWFilter(feed->filter); |
1030 | } | 1071 | } |
1031 | 1072 | ||
1032 | if (feed->type == DMX_TYPE_SEC) { | 1073 | if (!ret && feed->type == DMX_TYPE_SEC) { |
1033 | int i; | 1074 | for (i = 0; i<demux->filternum; i++) { |
1034 | |||
1035 | for (i = 0; i<demux->filternum; i++) | ||
1036 | if (demux->filter[i].state == DMX_STATE_GO && | 1075 | if (demux->filter[i].state == DMX_STATE_GO && |
1037 | demux->filter[i].filter.parent == &feed->feed.sec) { | 1076 | demux->filter[i].filter.parent == &feed->feed.sec) { |
1038 | demux->filter[i].state = DMX_STATE_READY; | 1077 | demux->filter[i].state = DMX_STATE_READY; |
1039 | if (demux->dmx.frontend->source != DMX_MEMORY_FE) | 1078 | if (demux->dmx.frontend->source != DMX_MEMORY_FE) { |
1040 | StopHWFilter(&demux->filter[i]); | 1079 | rc = StopHWFilter(&demux->filter[i]); |
1080 | if (!ret) | ||
1081 | ret = rc; | ||
1082 | /* keep going, stop as many filters as possible */ | ||
1083 | } | ||
1084 | } | ||
1041 | } | 1085 | } |
1042 | } | 1086 | } |
1043 | 1087 | ||
1044 | return 0; | 1088 | return ret; |
1045 | } | 1089 | } |
1046 | 1090 | ||
1047 | 1091 | ||
@@ -1093,7 +1137,7 @@ static int dvb_get_stc(struct dmx_demux *demux, unsigned int num, | |||
1093 | ret = av7110_fw_request(av7110, &tag, 0, fwstc, 4); | 1137 | ret = av7110_fw_request(av7110, &tag, 0, fwstc, 4); |
1094 | if (ret) { | 1138 | if (ret) { |
1095 | printk(KERN_ERR "%s: av7110_fw_request error\n", __FUNCTION__); | 1139 | printk(KERN_ERR "%s: av7110_fw_request error\n", __FUNCTION__); |
1096 | return -EIO; | 1140 | return ret; |
1097 | } | 1141 | } |
1098 | dprintk(2, "fwstc = %04hx %04hx %04hx %04hx\n", | 1142 | dprintk(2, "fwstc = %04hx %04hx %04hx %04hx\n", |
1099 | fwstc[0], fwstc[1], fwstc[2], fwstc[3]); | 1143 | fwstc[0], fwstc[1], fwstc[2], fwstc[3]); |
@@ -1119,18 +1163,14 @@ static int av7110_set_tone(struct dvb_frontend* fe, fe_sec_tone_mode_t tone) | |||
1119 | 1163 | ||
1120 | switch (tone) { | 1164 | switch (tone) { |
1121 | case SEC_TONE_ON: | 1165 | case SEC_TONE_ON: |
1122 | Set22K(av7110, 1); | 1166 | return Set22K(av7110, 1); |
1123 | break; | ||
1124 | 1167 | ||
1125 | case SEC_TONE_OFF: | 1168 | case SEC_TONE_OFF: |
1126 | Set22K(av7110, 0); | 1169 | return Set22K(av7110, 0); |
1127 | break; | ||
1128 | 1170 | ||
1129 | default: | 1171 | default: |
1130 | return -EINVAL; | 1172 | return -EINVAL; |
1131 | } | 1173 | } |
1132 | |||
1133 | return 0; | ||
1134 | } | 1174 | } |
1135 | 1175 | ||
1136 | static int av7110_diseqc_send_master_cmd(struct dvb_frontend* fe, | 1176 | static int av7110_diseqc_send_master_cmd(struct dvb_frontend* fe, |
@@ -1138,9 +1178,7 @@ static int av7110_diseqc_send_master_cmd(struct dvb_frontend* fe, | |||
1138 | { | 1178 | { |
1139 | struct av7110* av7110 = fe->dvb->priv; | 1179 | struct av7110* av7110 = fe->dvb->priv; |
1140 | 1180 | ||
1141 | av7110_diseqc_send(av7110, cmd->msg_len, cmd->msg, -1); | 1181 | return av7110_diseqc_send(av7110, cmd->msg_len, cmd->msg, -1); |
1142 | |||
1143 | return 0; | ||
1144 | } | 1182 | } |
1145 | 1183 | ||
1146 | static int av7110_diseqc_send_burst(struct dvb_frontend* fe, | 1184 | static int av7110_diseqc_send_burst(struct dvb_frontend* fe, |
@@ -1148,9 +1186,7 @@ static int av7110_diseqc_send_burst(struct dvb_frontend* fe, | |||
1148 | { | 1186 | { |
1149 | struct av7110* av7110 = fe->dvb->priv; | 1187 | struct av7110* av7110 = fe->dvb->priv; |
1150 | 1188 | ||
1151 | av7110_diseqc_send(av7110, 0, NULL, minicmd); | 1189 | return av7110_diseqc_send(av7110, 0, NULL, minicmd); |
1152 | |||
1153 | return 0; | ||
1154 | } | 1190 | } |
1155 | 1191 | ||
1156 | /* simplified code from budget-core.c */ | 1192 | /* simplified code from budget-core.c */ |
@@ -1992,76 +2028,85 @@ static struct l64781_config grundig_29504_401_config = { | |||
1992 | 2028 | ||
1993 | 2029 | ||
1994 | 2030 | ||
1995 | static void av7110_fe_lock_fix(struct av7110* av7110, fe_status_t status) | 2031 | static int av7110_fe_lock_fix(struct av7110* av7110, fe_status_t status) |
1996 | { | 2032 | { |
2033 | int ret = 0; | ||
1997 | int synced = (status & FE_HAS_LOCK) ? 1 : 0; | 2034 | int synced = (status & FE_HAS_LOCK) ? 1 : 0; |
1998 | 2035 | ||
1999 | av7110->fe_status = status; | 2036 | av7110->fe_status = status; |
2000 | 2037 | ||
2001 | if (av7110->fe_synced == synced) | 2038 | if (av7110->fe_synced == synced) |
2002 | return; | 2039 | return 0; |
2003 | |||
2004 | av7110->fe_synced = synced; | ||
2005 | 2040 | ||
2006 | if (av7110->playing) | 2041 | if (av7110->playing) |
2007 | return; | 2042 | return 0; |
2008 | 2043 | ||
2009 | if (down_interruptible(&av7110->pid_mutex)) | 2044 | if (down_interruptible(&av7110->pid_mutex)) |
2010 | return; | 2045 | return -ERESTARTSYS; |
2011 | 2046 | ||
2012 | if (av7110->fe_synced) { | 2047 | if (synced) { |
2013 | SetPIDs(av7110, av7110->pids[DMX_PES_VIDEO], | 2048 | ret = SetPIDs(av7110, av7110->pids[DMX_PES_VIDEO], |
2014 | av7110->pids[DMX_PES_AUDIO], | 2049 | av7110->pids[DMX_PES_AUDIO], |
2015 | av7110->pids[DMX_PES_TELETEXT], 0, | 2050 | av7110->pids[DMX_PES_TELETEXT], 0, |
2016 | av7110->pids[DMX_PES_PCR]); | 2051 | av7110->pids[DMX_PES_PCR]); |
2017 | av7110_fw_cmd(av7110, COMTYPE_PIDFILTER, Scan, 0); | 2052 | if (!ret) |
2053 | ret = av7110_fw_cmd(av7110, COMTYPE_PIDFILTER, Scan, 0); | ||
2018 | } else { | 2054 | } else { |
2019 | SetPIDs(av7110, 0, 0, 0, 0, 0); | 2055 | ret = SetPIDs(av7110, 0, 0, 0, 0, 0); |
2020 | av7110_fw_cmd(av7110, COMTYPE_PID_FILTER, FlushTSQueue, 0); | 2056 | if (!ret) { |
2021 | av7110_wait_msgstate(av7110, GPMQBusy); | 2057 | ret = av7110_fw_cmd(av7110, COMTYPE_PID_FILTER, FlushTSQueue, 0); |
2058 | if (!ret) | ||
2059 | ret = av7110_wait_msgstate(av7110, GPMQBusy); | ||
2060 | } | ||
2022 | } | 2061 | } |
2023 | 2062 | ||
2063 | if (!ret) | ||
2064 | av7110->fe_synced = synced; | ||
2065 | |||
2024 | up(&av7110->pid_mutex); | 2066 | up(&av7110->pid_mutex); |
2067 | return ret; | ||
2025 | } | 2068 | } |
2026 | 2069 | ||
2027 | static int av7110_fe_set_frontend(struct dvb_frontend* fe, struct dvb_frontend_parameters* params) | 2070 | static int av7110_fe_set_frontend(struct dvb_frontend* fe, struct dvb_frontend_parameters* params) |
2028 | { | 2071 | { |
2029 | struct av7110* av7110 = fe->dvb->priv; | 2072 | struct av7110* av7110 = fe->dvb->priv; |
2030 | av7110_fe_lock_fix(av7110, 0); | 2073 | |
2031 | return av7110->fe_set_frontend(fe, params); | 2074 | int ret = av7110_fe_lock_fix(av7110, 0); |
2075 | if (!ret) | ||
2076 | ret = av7110->fe_set_frontend(fe, params); | ||
2077 | return ret; | ||
2032 | } | 2078 | } |
2033 | 2079 | ||
2034 | static int av7110_fe_init(struct dvb_frontend* fe) | 2080 | static int av7110_fe_init(struct dvb_frontend* fe) |
2035 | { | 2081 | { |
2036 | struct av7110* av7110 = fe->dvb->priv; | 2082 | struct av7110* av7110 = fe->dvb->priv; |
2037 | 2083 | ||
2038 | av7110_fe_lock_fix(av7110, 0); | 2084 | int ret = av7110_fe_lock_fix(av7110, 0); |
2039 | return av7110->fe_init(fe); | 2085 | if (!ret) |
2086 | ret = av7110->fe_init(fe); | ||
2087 | return ret; | ||
2040 | } | 2088 | } |
2041 | 2089 | ||
2042 | static int av7110_fe_read_status(struct dvb_frontend* fe, fe_status_t* status) | 2090 | static int av7110_fe_read_status(struct dvb_frontend* fe, fe_status_t* status) |
2043 | { | 2091 | { |
2044 | struct av7110* av7110 = fe->dvb->priv; | 2092 | struct av7110* av7110 = fe->dvb->priv; |
2045 | int ret; | ||
2046 | 2093 | ||
2047 | /* call the real implementation */ | 2094 | /* call the real implementation */ |
2048 | ret = av7110->fe_read_status(fe, status); | 2095 | int ret = av7110->fe_read_status(fe, status); |
2049 | if (ret) | 2096 | if (!ret) |
2050 | return ret; | 2097 | if (((*status ^ av7110->fe_status) & FE_HAS_LOCK) && (*status & FE_HAS_LOCK)) |
2051 | 2098 | ret = av7110_fe_lock_fix(av7110, *status); | |
2052 | if (((*status ^ av7110->fe_status) & FE_HAS_LOCK) && (*status & FE_HAS_LOCK)) { | 2099 | return ret; |
2053 | av7110_fe_lock_fix(av7110, *status); | ||
2054 | } | ||
2055 | |||
2056 | return 0; | ||
2057 | } | 2100 | } |
2058 | 2101 | ||
2059 | static int av7110_fe_diseqc_reset_overload(struct dvb_frontend* fe) | 2102 | static int av7110_fe_diseqc_reset_overload(struct dvb_frontend* fe) |
2060 | { | 2103 | { |
2061 | struct av7110* av7110 = fe->dvb->priv; | 2104 | struct av7110* av7110 = fe->dvb->priv; |
2062 | 2105 | ||
2063 | av7110_fe_lock_fix(av7110, 0); | 2106 | int ret = av7110_fe_lock_fix(av7110, 0); |
2064 | return av7110->fe_diseqc_reset_overload(fe); | 2107 | if (!ret) |
2108 | ret = av7110->fe_diseqc_reset_overload(fe); | ||
2109 | return ret; | ||
2065 | } | 2110 | } |
2066 | 2111 | ||
2067 | static int av7110_fe_diseqc_send_master_cmd(struct dvb_frontend* fe, | 2112 | static int av7110_fe_diseqc_send_master_cmd(struct dvb_frontend* fe, |
@@ -2069,40 +2114,50 @@ static int av7110_fe_diseqc_send_master_cmd(struct dvb_frontend* fe, | |||
2069 | { | 2114 | { |
2070 | struct av7110* av7110 = fe->dvb->priv; | 2115 | struct av7110* av7110 = fe->dvb->priv; |
2071 | 2116 | ||
2072 | av7110_fe_lock_fix(av7110, 0); | 2117 | int ret = av7110_fe_lock_fix(av7110, 0); |
2073 | return av7110->fe_diseqc_send_master_cmd(fe, cmd); | 2118 | if (!ret) |
2119 | ret = av7110->fe_diseqc_send_master_cmd(fe, cmd); | ||
2120 | return ret; | ||
2074 | } | 2121 | } |
2075 | 2122 | ||
2076 | static int av7110_fe_diseqc_send_burst(struct dvb_frontend* fe, fe_sec_mini_cmd_t minicmd) | 2123 | static int av7110_fe_diseqc_send_burst(struct dvb_frontend* fe, fe_sec_mini_cmd_t minicmd) |
2077 | { | 2124 | { |
2078 | struct av7110* av7110 = fe->dvb->priv; | 2125 | struct av7110* av7110 = fe->dvb->priv; |
2079 | 2126 | ||
2080 | av7110_fe_lock_fix(av7110, 0); | 2127 | int ret = av7110_fe_lock_fix(av7110, 0); |
2081 | return av7110->fe_diseqc_send_burst(fe, minicmd); | 2128 | if (!ret) |
2129 | ret = av7110->fe_diseqc_send_burst(fe, minicmd); | ||
2130 | return ret; | ||
2082 | } | 2131 | } |
2083 | 2132 | ||
2084 | static int av7110_fe_set_tone(struct dvb_frontend* fe, fe_sec_tone_mode_t tone) | 2133 | static int av7110_fe_set_tone(struct dvb_frontend* fe, fe_sec_tone_mode_t tone) |
2085 | { | 2134 | { |
2086 | struct av7110* av7110 = fe->dvb->priv; | 2135 | struct av7110* av7110 = fe->dvb->priv; |
2087 | 2136 | ||
2088 | av7110_fe_lock_fix(av7110, 0); | 2137 | int ret = av7110_fe_lock_fix(av7110, 0); |
2089 | return av7110->fe_set_tone(fe, tone); | 2138 | if (!ret) |
2139 | ret = av7110->fe_set_tone(fe, tone); | ||
2140 | return ret; | ||
2090 | } | 2141 | } |
2091 | 2142 | ||
2092 | static int av7110_fe_set_voltage(struct dvb_frontend* fe, fe_sec_voltage_t voltage) | 2143 | static int av7110_fe_set_voltage(struct dvb_frontend* fe, fe_sec_voltage_t voltage) |
2093 | { | 2144 | { |
2094 | struct av7110* av7110 = fe->dvb->priv; | 2145 | struct av7110* av7110 = fe->dvb->priv; |
2095 | 2146 | ||
2096 | av7110_fe_lock_fix(av7110, 0); | 2147 | int ret = av7110_fe_lock_fix(av7110, 0); |
2097 | return av7110->fe_set_voltage(fe, voltage); | 2148 | if (!ret) |
2149 | ret = av7110->fe_set_voltage(fe, voltage); | ||
2150 | return ret; | ||
2098 | } | 2151 | } |
2099 | 2152 | ||
2100 | static int av7110_fe_dishnetwork_send_legacy_command(struct dvb_frontend* fe, unsigned int cmd) | 2153 | static int av7110_fe_dishnetwork_send_legacy_command(struct dvb_frontend* fe, unsigned int cmd) |
2101 | { | 2154 | { |
2102 | struct av7110* av7110 = fe->dvb->priv; | 2155 | struct av7110* av7110 = fe->dvb->priv; |
2103 | 2156 | ||
2104 | av7110_fe_lock_fix(av7110, 0); | 2157 | int ret = av7110_fe_lock_fix(av7110, 0); |
2105 | return av7110->fe_dishnetwork_send_legacy_command(fe, cmd); | 2158 | if (!ret) |
2159 | ret = av7110->fe_dishnetwork_send_legacy_command(fe, cmd); | ||
2160 | return ret; | ||
2106 | } | 2161 | } |
2107 | 2162 | ||
2108 | static u8 read_pwm(struct av7110* av7110) | 2163 | static u8 read_pwm(struct av7110* av7110) |
diff --git a/drivers/media/dvb/ttpci/av7110.h b/drivers/media/dvb/ttpci/av7110.h index 4f69b4d01479..508b7739c609 100644 --- a/drivers/media/dvb/ttpci/av7110.h +++ b/drivers/media/dvb/ttpci/av7110.h | |||
@@ -119,8 +119,7 @@ struct av7110 { | |||
119 | volatile int bmp_state; | 119 | volatile int bmp_state; |
120 | #define BMP_NONE 0 | 120 | #define BMP_NONE 0 |
121 | #define BMP_LOADING 1 | 121 | #define BMP_LOADING 1 |
122 | #define BMP_LOADINGS 2 | 122 | #define BMP_LOADED 2 |
123 | #define BMP_LOADED 3 | ||
124 | wait_queue_head_t bmpq; | 123 | wait_queue_head_t bmpq; |
125 | 124 | ||
126 | 125 | ||
@@ -255,12 +254,12 @@ struct av7110 { | |||
255 | }; | 254 | }; |
256 | 255 | ||
257 | 256 | ||
258 | extern void ChangePIDs(struct av7110 *av7110, u16 vpid, u16 apid, u16 ttpid, | 257 | extern int ChangePIDs(struct av7110 *av7110, u16 vpid, u16 apid, u16 ttpid, |
259 | u16 subpid, u16 pcrpid); | 258 | u16 subpid, u16 pcrpid); |
260 | 259 | ||
261 | extern void av7110_register_irc_handler(void (*func)(u32)); | 260 | extern void av7110_register_irc_handler(void (*func)(u32)); |
262 | extern void av7110_unregister_irc_handler(void (*func)(u32)); | 261 | extern void av7110_unregister_irc_handler(void (*func)(u32)); |
263 | extern void av7110_setup_irc_config (struct av7110 *av7110, u32 ir_config); | 262 | extern int av7110_setup_irc_config (struct av7110 *av7110, u32 ir_config); |
264 | 263 | ||
265 | extern int av7110_ir_init (void); | 264 | extern int av7110_ir_init (void); |
266 | extern void av7110_ir_exit (void); | 265 | extern void av7110_ir_exit (void); |
diff --git a/drivers/media/dvb/ttpci/av7110_av.c b/drivers/media/dvb/ttpci/av7110_av.c index ccf946125d02..0696a5a4f855 100644 --- a/drivers/media/dvb/ttpci/av7110_av.c +++ b/drivers/media/dvb/ttpci/av7110_av.c | |||
@@ -121,6 +121,7 @@ static int dvb_filter_pes2ts_cb(void *priv, unsigned char *data) | |||
121 | int av7110_av_start_record(struct av7110 *av7110, int av, | 121 | int av7110_av_start_record(struct av7110 *av7110, int av, |
122 | struct dvb_demux_feed *dvbdmxfeed) | 122 | struct dvb_demux_feed *dvbdmxfeed) |
123 | { | 123 | { |
124 | int ret = 0; | ||
124 | struct dvb_demux *dvbdmx = dvbdmxfeed->demux; | 125 | struct dvb_demux *dvbdmx = dvbdmxfeed->demux; |
125 | 126 | ||
126 | dprintk(2, "av7110:%p, , dvb_demux_feed:%p\n", av7110, dvbdmxfeed); | 127 | dprintk(2, "av7110:%p, , dvb_demux_feed:%p\n", av7110, dvbdmxfeed); |
@@ -137,7 +138,7 @@ int av7110_av_start_record(struct av7110 *av7110, int av, | |||
137 | dvbdmx->pesfilter[0]->pid, | 138 | dvbdmx->pesfilter[0]->pid, |
138 | dvb_filter_pes2ts_cb, | 139 | dvb_filter_pes2ts_cb, |
139 | (void *) dvbdmx->pesfilter[0]); | 140 | (void *) dvbdmx->pesfilter[0]); |
140 | av7110_fw_cmd(av7110, COMTYPE_REC_PLAY, __Record, 2, AudioPES, 0); | 141 | ret = av7110_fw_cmd(av7110, COMTYPE_REC_PLAY, __Record, 2, AudioPES, 0); |
141 | break; | 142 | break; |
142 | 143 | ||
143 | case RP_VIDEO: | 144 | case RP_VIDEO: |
@@ -145,7 +146,7 @@ int av7110_av_start_record(struct av7110 *av7110, int av, | |||
145 | dvbdmx->pesfilter[1]->pid, | 146 | dvbdmx->pesfilter[1]->pid, |
146 | dvb_filter_pes2ts_cb, | 147 | dvb_filter_pes2ts_cb, |
147 | (void *) dvbdmx->pesfilter[1]); | 148 | (void *) dvbdmx->pesfilter[1]); |
148 | av7110_fw_cmd(av7110, COMTYPE_REC_PLAY, __Record, 2, VideoPES, 0); | 149 | ret = av7110_fw_cmd(av7110, COMTYPE_REC_PLAY, __Record, 2, VideoPES, 0); |
149 | break; | 150 | break; |
150 | 151 | ||
151 | case RP_AV: | 152 | case RP_AV: |
@@ -157,14 +158,15 @@ int av7110_av_start_record(struct av7110 *av7110, int av, | |||
157 | dvbdmx->pesfilter[1]->pid, | 158 | dvbdmx->pesfilter[1]->pid, |
158 | dvb_filter_pes2ts_cb, | 159 | dvb_filter_pes2ts_cb, |
159 | (void *) dvbdmx->pesfilter[1]); | 160 | (void *) dvbdmx->pesfilter[1]); |
160 | av7110_fw_cmd(av7110, COMTYPE_REC_PLAY, __Record, 2, AV_PES, 0); | 161 | ret = av7110_fw_cmd(av7110, COMTYPE_REC_PLAY, __Record, 2, AV_PES, 0); |
161 | break; | 162 | break; |
162 | } | 163 | } |
163 | return 0; | 164 | return ret; |
164 | } | 165 | } |
165 | 166 | ||
166 | int av7110_av_start_play(struct av7110 *av7110, int av) | 167 | int av7110_av_start_play(struct av7110 *av7110, int av) |
167 | { | 168 | { |
169 | int ret = 0; | ||
168 | dprintk(2, "av7110:%p, \n", av7110); | 170 | dprintk(2, "av7110:%p, \n", av7110); |
169 | 171 | ||
170 | if (av7110->rec_mode) | 172 | if (av7110->rec_mode) |
@@ -182,54 +184,57 @@ int av7110_av_start_play(struct av7110 *av7110, int av) | |||
182 | av7110->playing |= av; | 184 | av7110->playing |= av; |
183 | switch (av7110->playing) { | 185 | switch (av7110->playing) { |
184 | case RP_AUDIO: | 186 | case RP_AUDIO: |
185 | av7110_fw_cmd(av7110, COMTYPE_REC_PLAY, __Play, 2, AudioPES, 0); | 187 | ret = av7110_fw_cmd(av7110, COMTYPE_REC_PLAY, __Play, 2, AudioPES, 0); |
186 | break; | 188 | break; |
187 | case RP_VIDEO: | 189 | case RP_VIDEO: |
188 | av7110_fw_cmd(av7110, COMTYPE_REC_PLAY, __Play, 2, VideoPES, 0); | 190 | ret = av7110_fw_cmd(av7110, COMTYPE_REC_PLAY, __Play, 2, VideoPES, 0); |
189 | av7110->sinfo = 0; | 191 | av7110->sinfo = 0; |
190 | break; | 192 | break; |
191 | case RP_AV: | 193 | case RP_AV: |
192 | av7110->sinfo = 0; | 194 | av7110->sinfo = 0; |
193 | av7110_fw_cmd(av7110, COMTYPE_REC_PLAY, __Play, 2, AV_PES, 0); | 195 | ret = av7110_fw_cmd(av7110, COMTYPE_REC_PLAY, __Play, 2, AV_PES, 0); |
194 | break; | 196 | break; |
195 | } | 197 | } |
196 | return av7110->playing; | 198 | if (!ret) |
199 | ret = av7110->playing; | ||
200 | return ret; | ||
197 | } | 201 | } |
198 | 202 | ||
199 | void av7110_av_stop(struct av7110 *av7110, int av) | 203 | int av7110_av_stop(struct av7110 *av7110, int av) |
200 | { | 204 | { |
205 | int ret = 0; | ||
201 | dprintk(2, "av7110:%p, \n", av7110); | 206 | dprintk(2, "av7110:%p, \n", av7110); |
202 | 207 | ||
203 | if (!(av7110->playing & av) && !(av7110->rec_mode & av)) | 208 | if (!(av7110->playing & av) && !(av7110->rec_mode & av)) |
204 | return; | 209 | return 0; |
205 | |||
206 | av7110_fw_cmd(av7110, COMTYPE_REC_PLAY, __Stop, 0); | 210 | av7110_fw_cmd(av7110, COMTYPE_REC_PLAY, __Stop, 0); |
207 | if (av7110->playing) { | 211 | if (av7110->playing) { |
208 | av7110->playing &= ~av; | 212 | av7110->playing &= ~av; |
209 | switch (av7110->playing) { | 213 | switch (av7110->playing) { |
210 | case RP_AUDIO: | 214 | case RP_AUDIO: |
211 | av7110_fw_cmd(av7110, COMTYPE_REC_PLAY, __Play, 2, AudioPES, 0); | 215 | ret = av7110_fw_cmd(av7110, COMTYPE_REC_PLAY, __Play, 2, AudioPES, 0); |
212 | break; | 216 | break; |
213 | case RP_VIDEO: | 217 | case RP_VIDEO: |
214 | av7110_fw_cmd(av7110, COMTYPE_REC_PLAY, __Play, 2, VideoPES, 0); | 218 | ret = av7110_fw_cmd(av7110, COMTYPE_REC_PLAY, __Play, 2, VideoPES, 0); |
215 | break; | 219 | break; |
216 | case RP_NONE: | 220 | case RP_NONE: |
217 | av7110_set_vidmode(av7110, av7110->vidmode); | 221 | ret = av7110_set_vidmode(av7110, av7110->vidmode); |
218 | break; | 222 | break; |
219 | } | 223 | } |
220 | } else { | 224 | } else { |
221 | av7110->rec_mode &= ~av; | 225 | av7110->rec_mode &= ~av; |
222 | switch (av7110->rec_mode) { | 226 | switch (av7110->rec_mode) { |
223 | case RP_AUDIO: | 227 | case RP_AUDIO: |
224 | av7110_fw_cmd(av7110, COMTYPE_REC_PLAY, __Record, 2, AudioPES, 0); | 228 | ret = av7110_fw_cmd(av7110, COMTYPE_REC_PLAY, __Record, 2, AudioPES, 0); |
225 | break; | 229 | break; |
226 | case RP_VIDEO: | 230 | case RP_VIDEO: |
227 | av7110_fw_cmd(av7110, COMTYPE_REC_PLAY, __Record, 2, VideoPES, 0); | 231 | ret = av7110_fw_cmd(av7110, COMTYPE_REC_PLAY, __Record, 2, VideoPES, 0); |
228 | break; | 232 | break; |
229 | case RP_NONE: | 233 | case RP_NONE: |
230 | break; | 234 | break; |
231 | } | 235 | } |
232 | } | 236 | } |
237 | return ret; | ||
233 | } | 238 | } |
234 | 239 | ||
235 | 240 | ||
@@ -317,19 +322,22 @@ int av7110_set_volume(struct av7110 *av7110, int volleft, int volright) | |||
317 | return 0; | 322 | return 0; |
318 | } | 323 | } |
319 | 324 | ||
320 | void av7110_set_vidmode(struct av7110 *av7110, int mode) | 325 | int av7110_set_vidmode(struct av7110 *av7110, int mode) |
321 | { | 326 | { |
327 | int ret; | ||
322 | dprintk(2, "av7110:%p, \n", av7110); | 328 | dprintk(2, "av7110:%p, \n", av7110); |
323 | 329 | ||
324 | av7110_fw_cmd(av7110, COMTYPE_ENCODER, LoadVidCode, 1, mode); | 330 | ret = av7110_fw_cmd(av7110, COMTYPE_ENCODER, LoadVidCode, 1, mode); |
325 | 331 | ||
326 | if (!av7110->playing) { | 332 | if (!ret && !av7110->playing) { |
327 | ChangePIDs(av7110, av7110->pids[DMX_PES_VIDEO], | 333 | ret = ChangePIDs(av7110, av7110->pids[DMX_PES_VIDEO], |
328 | av7110->pids[DMX_PES_AUDIO], | 334 | av7110->pids[DMX_PES_AUDIO], |
329 | av7110->pids[DMX_PES_TELETEXT], | 335 | av7110->pids[DMX_PES_TELETEXT], |
330 | 0, av7110->pids[DMX_PES_PCR]); | 336 | 0, av7110->pids[DMX_PES_PCR]); |
331 | av7110_fw_cmd(av7110, COMTYPE_PIDFILTER, Scan, 0); | 337 | if (!ret) |
338 | ret = av7110_fw_cmd(av7110, COMTYPE_PIDFILTER, Scan, 0); | ||
332 | } | 339 | } |
340 | return ret; | ||
333 | } | 341 | } |
334 | 342 | ||
335 | 343 | ||
@@ -340,17 +348,18 @@ static int sw2mode[16] = { | |||
340 | VIDEO_MODE_PAL, VIDEO_MODE_PAL, VIDEO_MODE_PAL, VIDEO_MODE_PAL, | 348 | VIDEO_MODE_PAL, VIDEO_MODE_PAL, VIDEO_MODE_PAL, VIDEO_MODE_PAL, |
341 | }; | 349 | }; |
342 | 350 | ||
343 | static void get_video_format(struct av7110 *av7110, u8 *buf, int count) | 351 | static int get_video_format(struct av7110 *av7110, u8 *buf, int count) |
344 | { | 352 | { |
345 | int i; | 353 | int i; |
346 | int hsize, vsize; | 354 | int hsize, vsize; |
347 | int sw; | 355 | int sw; |
348 | u8 *p; | 356 | u8 *p; |
357 | int ret = 0; | ||
349 | 358 | ||
350 | dprintk(2, "av7110:%p, \n", av7110); | 359 | dprintk(2, "av7110:%p, \n", av7110); |
351 | 360 | ||
352 | if (av7110->sinfo) | 361 | if (av7110->sinfo) |
353 | return; | 362 | return 0; |
354 | for (i = 7; i < count - 10; i++) { | 363 | for (i = 7; i < count - 10; i++) { |
355 | p = buf + i; | 364 | p = buf + i; |
356 | if (p[0] || p[1] || p[2] != 0x01 || p[3] != 0xb3) | 365 | if (p[0] || p[1] || p[2] != 0x01 || p[3] != 0xb3) |
@@ -359,11 +368,14 @@ static void get_video_format(struct av7110 *av7110, u8 *buf, int count) | |||
359 | hsize = ((p[1] &0xF0) >> 4) | (p[0] << 4); | 368 | hsize = ((p[1] &0xF0) >> 4) | (p[0] << 4); |
360 | vsize = ((p[1] &0x0F) << 8) | (p[2]); | 369 | vsize = ((p[1] &0x0F) << 8) | (p[2]); |
361 | sw = (p[3] & 0x0F); | 370 | sw = (p[3] & 0x0F); |
362 | av7110_set_vidmode(av7110, sw2mode[sw]); | 371 | ret = av7110_set_vidmode(av7110, sw2mode[sw]); |
363 | dprintk(2, "playback %dx%d fr=%d\n", hsize, vsize, sw); | 372 | if (!ret) { |
364 | av7110->sinfo = 1; | 373 | dprintk(2, "playback %dx%d fr=%d\n", hsize, vsize, sw); |
374 | av7110->sinfo = 1; | ||
375 | } | ||
365 | break; | 376 | break; |
366 | } | 377 | } |
378 | return ret; | ||
367 | } | 379 | } |
368 | 380 | ||
369 | 381 | ||
@@ -974,7 +986,7 @@ static int dvb_video_ioctl(struct inode *inode, struct file *file, | |||
974 | unsigned long arg = (unsigned long) parg; | 986 | unsigned long arg = (unsigned long) parg; |
975 | int ret = 0; | 987 | int ret = 0; |
976 | 988 | ||
977 | dprintk(2, "av7110:%p, \n", av7110); | 989 | dprintk(1, "av7110:%p, cmd=%04x\n", av7110,cmd); |
978 | 990 | ||
979 | if ((file->f_flags & O_ACCMODE) == O_RDONLY) { | 991 | if ((file->f_flags & O_ACCMODE) == O_RDONLY) { |
980 | if ( cmd != VIDEO_GET_STATUS && cmd != VIDEO_GET_EVENT && | 992 | if ( cmd != VIDEO_GET_STATUS && cmd != VIDEO_GET_EVENT && |
@@ -987,49 +999,57 @@ static int dvb_video_ioctl(struct inode *inode, struct file *file, | |||
987 | case VIDEO_STOP: | 999 | case VIDEO_STOP: |
988 | av7110->videostate.play_state = VIDEO_STOPPED; | 1000 | av7110->videostate.play_state = VIDEO_STOPPED; |
989 | if (av7110->videostate.stream_source == VIDEO_SOURCE_MEMORY) | 1001 | if (av7110->videostate.stream_source == VIDEO_SOURCE_MEMORY) |
990 | av7110_av_stop(av7110, RP_VIDEO); | 1002 | ret = av7110_av_stop(av7110, RP_VIDEO); |
991 | else | 1003 | else |
992 | vidcom(av7110, VIDEO_CMD_STOP, | 1004 | ret = vidcom(av7110, VIDEO_CMD_STOP, |
993 | av7110->videostate.video_blank ? 0 : 1); | 1005 | av7110->videostate.video_blank ? 0 : 1); |
994 | av7110->trickmode = TRICK_NONE; | 1006 | if (!ret) |
1007 | av7110->trickmode = TRICK_NONE; | ||
995 | break; | 1008 | break; |
996 | 1009 | ||
997 | case VIDEO_PLAY: | 1010 | case VIDEO_PLAY: |
998 | av7110->trickmode = TRICK_NONE; | 1011 | av7110->trickmode = TRICK_NONE; |
999 | if (av7110->videostate.play_state == VIDEO_FREEZED) { | 1012 | if (av7110->videostate.play_state == VIDEO_FREEZED) { |
1000 | av7110->videostate.play_state = VIDEO_PLAYING; | 1013 | av7110->videostate.play_state = VIDEO_PLAYING; |
1001 | vidcom(av7110, VIDEO_CMD_PLAY, 0); | 1014 | ret = vidcom(av7110, VIDEO_CMD_PLAY, 0); |
1015 | if (ret) | ||
1016 | break; | ||
1002 | } | 1017 | } |
1003 | 1018 | ||
1004 | if (av7110->videostate.stream_source == VIDEO_SOURCE_MEMORY) { | 1019 | if (av7110->videostate.stream_source == VIDEO_SOURCE_MEMORY) { |
1005 | if (av7110->playing == RP_AV) { | 1020 | if (av7110->playing == RP_AV) { |
1006 | av7110_fw_cmd(av7110, COMTYPE_REC_PLAY, __Stop, 0); | 1021 | ret = av7110_fw_cmd(av7110, COMTYPE_REC_PLAY, __Stop, 0); |
1022 | if (ret) | ||
1023 | break; | ||
1007 | av7110->playing &= ~RP_VIDEO; | 1024 | av7110->playing &= ~RP_VIDEO; |
1008 | } | 1025 | } |
1009 | av7110_av_start_play(av7110, RP_VIDEO); | 1026 | ret = av7110_av_start_play(av7110, RP_VIDEO); |
1010 | vidcom(av7110, VIDEO_CMD_PLAY, 0); | ||
1011 | } else { | ||
1012 | //av7110_av_stop(av7110, RP_VIDEO); | ||
1013 | vidcom(av7110, VIDEO_CMD_PLAY, 0); | ||
1014 | } | 1027 | } |
1015 | av7110->videostate.play_state = VIDEO_PLAYING; | 1028 | if (!ret) |
1029 | ret = vidcom(av7110, VIDEO_CMD_PLAY, 0); | ||
1030 | if (!ret) | ||
1031 | av7110->videostate.play_state = VIDEO_PLAYING; | ||
1016 | break; | 1032 | break; |
1017 | 1033 | ||
1018 | case VIDEO_FREEZE: | 1034 | case VIDEO_FREEZE: |
1019 | av7110->videostate.play_state = VIDEO_FREEZED; | 1035 | av7110->videostate.play_state = VIDEO_FREEZED; |
1020 | if (av7110->playing & RP_VIDEO) | 1036 | if (av7110->playing & RP_VIDEO) |
1021 | av7110_fw_cmd(av7110, COMTYPE_REC_PLAY, __Pause, 0); | 1037 | ret = av7110_fw_cmd(av7110, COMTYPE_REC_PLAY, __Pause, 0); |
1022 | else | 1038 | else |
1023 | vidcom(av7110, VIDEO_CMD_FREEZE, 1); | 1039 | ret = vidcom(av7110, VIDEO_CMD_FREEZE, 1); |
1024 | av7110->trickmode = TRICK_FREEZE; | 1040 | if (!ret) |
1041 | av7110->trickmode = TRICK_FREEZE; | ||
1025 | break; | 1042 | break; |
1026 | 1043 | ||
1027 | case VIDEO_CONTINUE: | 1044 | case VIDEO_CONTINUE: |
1028 | if (av7110->playing & RP_VIDEO) | 1045 | if (av7110->playing & RP_VIDEO) |
1029 | av7110_fw_cmd(av7110, COMTYPE_REC_PLAY, __Continue, 0); | 1046 | ret = av7110_fw_cmd(av7110, COMTYPE_REC_PLAY, __Continue, 0); |
1030 | vidcom(av7110, VIDEO_CMD_PLAY, 0); | 1047 | if (!ret) |
1031 | av7110->videostate.play_state = VIDEO_PLAYING; | 1048 | ret = vidcom(av7110, VIDEO_CMD_PLAY, 0); |
1032 | av7110->trickmode = TRICK_NONE; | 1049 | if (!ret) { |
1050 | av7110->videostate.play_state = VIDEO_PLAYING; | ||
1051 | av7110->trickmode = TRICK_NONE; | ||
1052 | } | ||
1033 | break; | 1053 | break; |
1034 | 1054 | ||
1035 | case VIDEO_SELECT_SOURCE: | 1055 | case VIDEO_SELECT_SOURCE: |
@@ -1045,7 +1065,7 @@ static int dvb_video_ioctl(struct inode *inode, struct file *file, | |||
1045 | break; | 1065 | break; |
1046 | 1066 | ||
1047 | case VIDEO_GET_EVENT: | 1067 | case VIDEO_GET_EVENT: |
1048 | ret=dvb_video_get_event(av7110, parg, file->f_flags); | 1068 | ret = dvb_video_get_event(av7110, parg, file->f_flags); |
1049 | break; | 1069 | break; |
1050 | 1070 | ||
1051 | case VIDEO_GET_SIZE: | 1071 | case VIDEO_GET_SIZE: |
@@ -1105,25 +1125,32 @@ static int dvb_video_ioctl(struct inode *inode, struct file *file, | |||
1105 | case VIDEO_FAST_FORWARD: | 1125 | case VIDEO_FAST_FORWARD: |
1106 | //note: arg is ignored by firmware | 1126 | //note: arg is ignored by firmware |
1107 | if (av7110->playing & RP_VIDEO) | 1127 | if (av7110->playing & RP_VIDEO) |
1108 | av7110_fw_cmd(av7110, COMTYPE_REC_PLAY, | 1128 | ret = av7110_fw_cmd(av7110, COMTYPE_REC_PLAY, |
1109 | __Scan_I, 2, AV_PES, 0); | 1129 | __Scan_I, 2, AV_PES, 0); |
1110 | else | 1130 | else |
1111 | vidcom(av7110, VIDEO_CMD_FFWD, arg); | 1131 | ret = vidcom(av7110, VIDEO_CMD_FFWD, arg); |
1112 | av7110->trickmode = TRICK_FAST; | 1132 | if (!ret) { |
1113 | av7110->videostate.play_state = VIDEO_PLAYING; | 1133 | av7110->trickmode = TRICK_FAST; |
1134 | av7110->videostate.play_state = VIDEO_PLAYING; | ||
1135 | } | ||
1114 | break; | 1136 | break; |
1115 | 1137 | ||
1116 | case VIDEO_SLOWMOTION: | 1138 | case VIDEO_SLOWMOTION: |
1117 | if (av7110->playing&RP_VIDEO) { | 1139 | if (av7110->playing&RP_VIDEO) { |
1118 | av7110_fw_cmd(av7110, COMTYPE_REC_PLAY, __Slow, 2, 0, 0); | 1140 | ret = av7110_fw_cmd(av7110, COMTYPE_REC_PLAY, __Slow, 2, 0, 0); |
1119 | vidcom(av7110, VIDEO_CMD_SLOW, arg); | 1141 | if (!ret) |
1142 | ret = vidcom(av7110, VIDEO_CMD_SLOW, arg); | ||
1120 | } else { | 1143 | } else { |
1121 | vidcom(av7110, VIDEO_CMD_PLAY, 0); | 1144 | ret = vidcom(av7110, VIDEO_CMD_PLAY, 0); |
1122 | vidcom(av7110, VIDEO_CMD_STOP, 0); | 1145 | if (!ret) |
1123 | vidcom(av7110, VIDEO_CMD_SLOW, arg); | 1146 | ret = vidcom(av7110, VIDEO_CMD_STOP, 0); |
1147 | if (!ret) | ||
1148 | ret = vidcom(av7110, VIDEO_CMD_SLOW, arg); | ||
1149 | } | ||
1150 | if (!ret) { | ||
1151 | av7110->trickmode = TRICK_SLOW; | ||
1152 | av7110->videostate.play_state = VIDEO_PLAYING; | ||
1124 | } | 1153 | } |
1125 | av7110->trickmode = TRICK_SLOW; | ||
1126 | av7110->videostate.play_state = VIDEO_PLAYING; | ||
1127 | break; | 1154 | break; |
1128 | 1155 | ||
1129 | case VIDEO_GET_CAPABILITIES: | 1156 | case VIDEO_GET_CAPABILITIES: |
@@ -1136,18 +1163,21 @@ static int dvb_video_ioctl(struct inode *inode, struct file *file, | |||
1136 | av7110_ipack_reset(&av7110->ipack[1]); | 1163 | av7110_ipack_reset(&av7110->ipack[1]); |
1137 | 1164 | ||
1138 | if (av7110->playing == RP_AV) { | 1165 | if (av7110->playing == RP_AV) { |
1139 | av7110_fw_cmd(av7110, COMTYPE_REC_PLAY, | 1166 | ret = av7110_fw_cmd(av7110, COMTYPE_REC_PLAY, |
1140 | __Play, 2, AV_PES, 0); | 1167 | __Play, 2, AV_PES, 0); |
1168 | if (ret) | ||
1169 | break; | ||
1141 | if (av7110->trickmode == TRICK_FAST) | 1170 | if (av7110->trickmode == TRICK_FAST) |
1142 | av7110_fw_cmd(av7110, COMTYPE_REC_PLAY, | 1171 | ret = av7110_fw_cmd(av7110, COMTYPE_REC_PLAY, |
1143 | __Scan_I, 2, AV_PES, 0); | 1172 | __Scan_I, 2, AV_PES, 0); |
1144 | if (av7110->trickmode == TRICK_SLOW) { | 1173 | if (av7110->trickmode == TRICK_SLOW) { |
1145 | av7110_fw_cmd(av7110, COMTYPE_REC_PLAY, | 1174 | ret = av7110_fw_cmd(av7110, COMTYPE_REC_PLAY, |
1146 | __Slow, 2, 0, 0); | 1175 | __Slow, 2, 0, 0); |
1147 | vidcom(av7110, VIDEO_CMD_SLOW, arg); | 1176 | if (!ret) |
1177 | ret = vidcom(av7110, VIDEO_CMD_SLOW, arg); | ||
1148 | } | 1178 | } |
1149 | if (av7110->trickmode == TRICK_FREEZE) | 1179 | if (av7110->trickmode == TRICK_FREEZE) |
1150 | vidcom(av7110, VIDEO_CMD_STOP, 1); | 1180 | ret = vidcom(av7110, VIDEO_CMD_STOP, 1); |
1151 | } | 1181 | } |
1152 | break; | 1182 | break; |
1153 | 1183 | ||
@@ -1170,7 +1200,7 @@ static int dvb_audio_ioctl(struct inode *inode, struct file *file, | |||
1170 | unsigned long arg = (unsigned long) parg; | 1200 | unsigned long arg = (unsigned long) parg; |
1171 | int ret = 0; | 1201 | int ret = 0; |
1172 | 1202 | ||
1173 | dprintk(2, "av7110:%p, \n", av7110); | 1203 | dprintk(1, "av7110:%p, cmd=%04x\n", av7110,cmd); |
1174 | 1204 | ||
1175 | if (((file->f_flags & O_ACCMODE) == O_RDONLY) && | 1205 | if (((file->f_flags & O_ACCMODE) == O_RDONLY) && |
1176 | (cmd != AUDIO_GET_STATUS)) | 1206 | (cmd != AUDIO_GET_STATUS)) |
@@ -1179,28 +1209,32 @@ static int dvb_audio_ioctl(struct inode *inode, struct file *file, | |||
1179 | switch (cmd) { | 1209 | switch (cmd) { |
1180 | case AUDIO_STOP: | 1210 | case AUDIO_STOP: |
1181 | if (av7110->audiostate.stream_source == AUDIO_SOURCE_MEMORY) | 1211 | if (av7110->audiostate.stream_source == AUDIO_SOURCE_MEMORY) |
1182 | av7110_av_stop(av7110, RP_AUDIO); | 1212 | ret = av7110_av_stop(av7110, RP_AUDIO); |
1183 | else | 1213 | else |
1184 | audcom(av7110, AUDIO_CMD_MUTE); | 1214 | ret = audcom(av7110, AUDIO_CMD_MUTE); |
1185 | av7110->audiostate.play_state = AUDIO_STOPPED; | 1215 | if (!ret) |
1216 | av7110->audiostate.play_state = AUDIO_STOPPED; | ||
1186 | break; | 1217 | break; |
1187 | 1218 | ||
1188 | case AUDIO_PLAY: | 1219 | case AUDIO_PLAY: |
1189 | if (av7110->audiostate.stream_source == AUDIO_SOURCE_MEMORY) | 1220 | if (av7110->audiostate.stream_source == AUDIO_SOURCE_MEMORY) |
1190 | av7110_av_start_play(av7110, RP_AUDIO); | 1221 | ret = av7110_av_start_play(av7110, RP_AUDIO); |
1191 | audcom(av7110, AUDIO_CMD_UNMUTE); | 1222 | if (!ret) |
1192 | av7110->audiostate.play_state = AUDIO_PLAYING; | 1223 | ret = audcom(av7110, AUDIO_CMD_UNMUTE); |
1224 | if (!ret) | ||
1225 | av7110->audiostate.play_state = AUDIO_PLAYING; | ||
1193 | break; | 1226 | break; |
1194 | 1227 | ||
1195 | case AUDIO_PAUSE: | 1228 | case AUDIO_PAUSE: |
1196 | audcom(av7110, AUDIO_CMD_MUTE); | 1229 | ret = audcom(av7110, AUDIO_CMD_MUTE); |
1197 | av7110->audiostate.play_state = AUDIO_PAUSED; | 1230 | if (!ret) |
1231 | av7110->audiostate.play_state = AUDIO_PAUSED; | ||
1198 | break; | 1232 | break; |
1199 | 1233 | ||
1200 | case AUDIO_CONTINUE: | 1234 | case AUDIO_CONTINUE: |
1201 | if (av7110->audiostate.play_state == AUDIO_PAUSED) { | 1235 | if (av7110->audiostate.play_state == AUDIO_PAUSED) { |
1202 | av7110->audiostate.play_state = AUDIO_PLAYING; | 1236 | av7110->audiostate.play_state = AUDIO_PLAYING; |
1203 | audcom(av7110, AUDIO_CMD_MUTE | AUDIO_CMD_PCM16); | 1237 | ret = audcom(av7110, AUDIO_CMD_UNMUTE | AUDIO_CMD_PCM16); |
1204 | } | 1238 | } |
1205 | break; | 1239 | break; |
1206 | 1240 | ||
@@ -1210,14 +1244,15 @@ static int dvb_audio_ioctl(struct inode *inode, struct file *file, | |||
1210 | 1244 | ||
1211 | case AUDIO_SET_MUTE: | 1245 | case AUDIO_SET_MUTE: |
1212 | { | 1246 | { |
1213 | audcom(av7110, arg ? AUDIO_CMD_MUTE : AUDIO_CMD_UNMUTE); | 1247 | ret = audcom(av7110, arg ? AUDIO_CMD_MUTE : AUDIO_CMD_UNMUTE); |
1214 | av7110->audiostate.mute_state = (int) arg; | 1248 | if (!ret) |
1249 | av7110->audiostate.mute_state = (int) arg; | ||
1215 | break; | 1250 | break; |
1216 | } | 1251 | } |
1217 | 1252 | ||
1218 | case AUDIO_SET_AV_SYNC: | 1253 | case AUDIO_SET_AV_SYNC: |
1219 | av7110->audiostate.AV_sync_state = (int) arg; | 1254 | av7110->audiostate.AV_sync_state = (int) arg; |
1220 | audcom(av7110, arg ? AUDIO_CMD_SYNC_ON : AUDIO_CMD_SYNC_OFF); | 1255 | ret = audcom(av7110, arg ? AUDIO_CMD_SYNC_ON : AUDIO_CMD_SYNC_OFF); |
1221 | break; | 1256 | break; |
1222 | 1257 | ||
1223 | case AUDIO_SET_BYPASS_MODE: | 1258 | case AUDIO_SET_BYPASS_MODE: |
@@ -1229,21 +1264,24 @@ static int dvb_audio_ioctl(struct inode *inode, struct file *file, | |||
1229 | 1264 | ||
1230 | switch(av7110->audiostate.channel_select) { | 1265 | switch(av7110->audiostate.channel_select) { |
1231 | case AUDIO_STEREO: | 1266 | case AUDIO_STEREO: |
1232 | audcom(av7110, AUDIO_CMD_STEREO); | 1267 | ret = audcom(av7110, AUDIO_CMD_STEREO); |
1233 | if (av7110->adac_type == DVB_ADAC_CRYSTAL) | 1268 | if (!ret) |
1234 | i2c_writereg(av7110, 0x20, 0x02, 0x49); | 1269 | if (av7110->adac_type == DVB_ADAC_CRYSTAL) |
1270 | i2c_writereg(av7110, 0x20, 0x02, 0x49); | ||
1235 | break; | 1271 | break; |
1236 | 1272 | ||
1237 | case AUDIO_MONO_LEFT: | 1273 | case AUDIO_MONO_LEFT: |
1238 | audcom(av7110, AUDIO_CMD_MONO_L); | 1274 | ret = audcom(av7110, AUDIO_CMD_MONO_L); |
1239 | if (av7110->adac_type == DVB_ADAC_CRYSTAL) | 1275 | if (!ret) |
1240 | i2c_writereg(av7110, 0x20, 0x02, 0x4a); | 1276 | if (av7110->adac_type == DVB_ADAC_CRYSTAL) |
1277 | i2c_writereg(av7110, 0x20, 0x02, 0x4a); | ||
1241 | break; | 1278 | break; |
1242 | 1279 | ||
1243 | case AUDIO_MONO_RIGHT: | 1280 | case AUDIO_MONO_RIGHT: |
1244 | audcom(av7110, AUDIO_CMD_MONO_R); | 1281 | ret = audcom(av7110, AUDIO_CMD_MONO_R); |
1245 | if (av7110->adac_type == DVB_ADAC_CRYSTAL) | 1282 | if (!ret) |
1246 | i2c_writereg(av7110, 0x20, 0x02, 0x45); | 1283 | if (av7110->adac_type == DVB_ADAC_CRYSTAL) |
1284 | i2c_writereg(av7110, 0x20, 0x02, 0x45); | ||
1247 | break; | 1285 | break; |
1248 | 1286 | ||
1249 | default: | 1287 | default: |
@@ -1264,8 +1302,8 @@ static int dvb_audio_ioctl(struct inode *inode, struct file *file, | |||
1264 | dvb_ringbuffer_flush_spinlock_wakeup(&av7110->aout); | 1302 | dvb_ringbuffer_flush_spinlock_wakeup(&av7110->aout); |
1265 | av7110_ipack_reset(&av7110->ipack[0]); | 1303 | av7110_ipack_reset(&av7110->ipack[0]); |
1266 | if (av7110->playing == RP_AV) | 1304 | if (av7110->playing == RP_AV) |
1267 | av7110_fw_cmd(av7110, COMTYPE_REC_PLAY, | 1305 | ret = av7110_fw_cmd(av7110, COMTYPE_REC_PLAY, |
1268 | __Play, 2, AV_PES, 0); | 1306 | __Play, 2, AV_PES, 0); |
1269 | break; | 1307 | break; |
1270 | case AUDIO_SET_ID: | 1308 | case AUDIO_SET_ID: |
1271 | 1309 | ||
@@ -1274,7 +1312,7 @@ static int dvb_audio_ioctl(struct inode *inode, struct file *file, | |||
1274 | { | 1312 | { |
1275 | struct audio_mixer *amix = (struct audio_mixer *)parg; | 1313 | struct audio_mixer *amix = (struct audio_mixer *)parg; |
1276 | 1314 | ||
1277 | av7110_set_volume(av7110, amix->volume_left, amix->volume_right); | 1315 | ret = av7110_set_volume(av7110, amix->volume_left, amix->volume_right); |
1278 | break; | 1316 | break; |
1279 | } | 1317 | } |
1280 | case AUDIO_SET_STREAMTYPE: | 1318 | case AUDIO_SET_STREAMTYPE: |
diff --git a/drivers/media/dvb/ttpci/av7110_av.h b/drivers/media/dvb/ttpci/av7110_av.h index cc5e7a7e87c3..45dc144b8b43 100644 --- a/drivers/media/dvb/ttpci/av7110_av.h +++ b/drivers/media/dvb/ttpci/av7110_av.h | |||
@@ -3,14 +3,14 @@ | |||
3 | 3 | ||
4 | struct av7110; | 4 | struct av7110; |
5 | 5 | ||
6 | extern void av7110_set_vidmode(struct av7110 *av7110, int mode); | 6 | extern int av7110_set_vidmode(struct av7110 *av7110, int mode); |
7 | 7 | ||
8 | extern int av7110_record_cb(struct dvb_filter_pes2ts *p2t, u8 *buf, size_t len); | 8 | extern int av7110_record_cb(struct dvb_filter_pes2ts *p2t, u8 *buf, size_t len); |
9 | extern int av7110_pes_play(void *dest, struct dvb_ringbuffer *buf, int dlen); | 9 | extern int av7110_pes_play(void *dest, struct dvb_ringbuffer *buf, int dlen); |
10 | extern int av7110_write_to_decoder(struct dvb_demux_feed *feed, const u8 *buf, size_t len); | 10 | extern int av7110_write_to_decoder(struct dvb_demux_feed *feed, const u8 *buf, size_t len); |
11 | 11 | ||
12 | extern int av7110_set_volume(struct av7110 *av7110, int volleft, int volright); | 12 | extern int av7110_set_volume(struct av7110 *av7110, int volleft, int volright); |
13 | extern void av7110_av_stop(struct av7110 *av7110, int av); | 13 | extern int av7110_av_stop(struct av7110 *av7110, int av); |
14 | extern int av7110_av_start_record(struct av7110 *av7110, int av, | 14 | extern int av7110_av_start_record(struct av7110 *av7110, int av, |
15 | struct dvb_demux_feed *dvbdmxfeed); | 15 | struct dvb_demux_feed *dvbdmxfeed); |
16 | extern int av7110_av_start_play(struct av7110 *av7110, int av); | 16 | extern int av7110_av_start_play(struct av7110 *av7110, int av); |
diff --git a/drivers/media/dvb/ttpci/av7110_hw.c b/drivers/media/dvb/ttpci/av7110_hw.c index 7fa4a0ebe133..1220826696c5 100644 --- a/drivers/media/dvb/ttpci/av7110_hw.c +++ b/drivers/media/dvb/ttpci/av7110_hw.c | |||
@@ -137,7 +137,7 @@ static int waitdebi(struct av7110 *av7110, int adr, int state) | |||
137 | return 0; | 137 | return 0; |
138 | udelay(5); | 138 | udelay(5); |
139 | } | 139 | } |
140 | return -1; | 140 | return -ETIMEDOUT; |
141 | } | 141 | } |
142 | 142 | ||
143 | static int load_dram(struct av7110 *av7110, u32 *data, int len) | 143 | static int load_dram(struct av7110 *av7110, u32 *data, int len) |
@@ -155,7 +155,7 @@ static int load_dram(struct av7110 *av7110, u32 *data, int len) | |||
155 | for (i = 0; i < blocks; i++) { | 155 | for (i = 0; i < blocks; i++) { |
156 | if (waitdebi(av7110, BOOT_STATE, BOOTSTATE_BUFFER_EMPTY) < 0) { | 156 | if (waitdebi(av7110, BOOT_STATE, BOOTSTATE_BUFFER_EMPTY) < 0) { |
157 | printk(KERN_ERR "dvb-ttpci: load_dram(): timeout at block %d\n", i); | 157 | printk(KERN_ERR "dvb-ttpci: load_dram(): timeout at block %d\n", i); |
158 | return -1; | 158 | return -ETIMEDOUT; |
159 | } | 159 | } |
160 | dprintk(4, "writing DRAM block %d\n", i); | 160 | dprintk(4, "writing DRAM block %d\n", i); |
161 | mwdebi(av7110, DEBISWAB, bootblock, | 161 | mwdebi(av7110, DEBISWAB, bootblock, |
@@ -170,7 +170,7 @@ static int load_dram(struct av7110 *av7110, u32 *data, int len) | |||
170 | if (rest > 0) { | 170 | if (rest > 0) { |
171 | if (waitdebi(av7110, BOOT_STATE, BOOTSTATE_BUFFER_EMPTY) < 0) { | 171 | if (waitdebi(av7110, BOOT_STATE, BOOTSTATE_BUFFER_EMPTY) < 0) { |
172 | printk(KERN_ERR "dvb-ttpci: load_dram(): timeout at last block\n"); | 172 | printk(KERN_ERR "dvb-ttpci: load_dram(): timeout at last block\n"); |
173 | return -1; | 173 | return -ETIMEDOUT; |
174 | } | 174 | } |
175 | if (rest > 4) | 175 | if (rest > 4) |
176 | mwdebi(av7110, DEBISWAB, bootblock, | 176 | mwdebi(av7110, DEBISWAB, bootblock, |
@@ -185,13 +185,13 @@ static int load_dram(struct av7110 *av7110, u32 *data, int len) | |||
185 | } | 185 | } |
186 | if (waitdebi(av7110, BOOT_STATE, BOOTSTATE_BUFFER_EMPTY) < 0) { | 186 | if (waitdebi(av7110, BOOT_STATE, BOOTSTATE_BUFFER_EMPTY) < 0) { |
187 | printk(KERN_ERR "dvb-ttpci: load_dram(): timeout after last block\n"); | 187 | printk(KERN_ERR "dvb-ttpci: load_dram(): timeout after last block\n"); |
188 | return -1; | 188 | return -ETIMEDOUT; |
189 | } | 189 | } |
190 | iwdebi(av7110, DEBINOSWAP, BOOT_SIZE, 0, 2); | 190 | iwdebi(av7110, DEBINOSWAP, BOOT_SIZE, 0, 2); |
191 | iwdebi(av7110, DEBINOSWAP, BOOT_STATE, BOOTSTATE_BUFFER_FULL, 2); | 191 | iwdebi(av7110, DEBINOSWAP, BOOT_STATE, BOOTSTATE_BUFFER_FULL, 2); |
192 | if (waitdebi(av7110, BOOT_STATE, BOOTSTATE_BOOT_COMPLETE) < 0) { | 192 | if (waitdebi(av7110, BOOT_STATE, BOOTSTATE_BOOT_COMPLETE) < 0) { |
193 | printk(KERN_ERR "dvb-ttpci: load_dram(): final handshake timeout\n"); | 193 | printk(KERN_ERR "dvb-ttpci: load_dram(): final handshake timeout\n"); |
194 | return -1; | 194 | return -ETIMEDOUT; |
195 | } | 195 | } |
196 | return 0; | 196 | return 0; |
197 | } | 197 | } |
@@ -263,7 +263,7 @@ int av7110_bootarm(struct av7110 *av7110) | |||
263 | if (saa7146_wait_for_debi_done(av7110->dev, 1)) { | 263 | if (saa7146_wait_for_debi_done(av7110->dev, 1)) { |
264 | printk(KERN_ERR "dvb-ttpci: av7110_bootarm(): " | 264 | printk(KERN_ERR "dvb-ttpci: av7110_bootarm(): " |
265 | "saa7146_wait_for_debi_done() timed out\n"); | 265 | "saa7146_wait_for_debi_done() timed out\n"); |
266 | return -1; | 266 | return -ETIMEDOUT; |
267 | } | 267 | } |
268 | saa7146_setgpio(dev, RESET_LINE, SAA7146_GPIO_OUTHI); | 268 | saa7146_setgpio(dev, RESET_LINE, SAA7146_GPIO_OUTHI); |
269 | mdelay(1); | 269 | mdelay(1); |
@@ -284,7 +284,7 @@ int av7110_bootarm(struct av7110 *av7110) | |||
284 | if (saa7146_wait_for_debi_done(av7110->dev, 1)) { | 284 | if (saa7146_wait_for_debi_done(av7110->dev, 1)) { |
285 | printk(KERN_ERR "dvb-ttpci: av7110_bootarm(): " | 285 | printk(KERN_ERR "dvb-ttpci: av7110_bootarm(): " |
286 | "saa7146_wait_for_debi_done() timed out after loading DRAM\n"); | 286 | "saa7146_wait_for_debi_done() timed out after loading DRAM\n"); |
287 | return -1; | 287 | return -ETIMEDOUT; |
288 | } | 288 | } |
289 | saa7146_setgpio(dev, RESET_LINE, SAA7146_GPIO_OUTHI); | 289 | saa7146_setgpio(dev, RESET_LINE, SAA7146_GPIO_OUTHI); |
290 | msleep(30); /* the firmware needs some time to initialize */ | 290 | msleep(30); /* the firmware needs some time to initialize */ |
@@ -308,6 +308,7 @@ int av7110_wait_msgstate(struct av7110 *av7110, u16 flags) | |||
308 | { | 308 | { |
309 | unsigned long start; | 309 | unsigned long start; |
310 | u32 stat; | 310 | u32 stat; |
311 | int err; | ||
311 | 312 | ||
312 | if (FW_VERSION(av7110->arm_app) <= 0x261c) { | 313 | if (FW_VERSION(av7110->arm_app) <= 0x261c) { |
313 | /* not supported by old firmware */ | 314 | /* not supported by old firmware */ |
@@ -318,17 +319,17 @@ int av7110_wait_msgstate(struct av7110 *av7110, u16 flags) | |||
318 | /* new firmware */ | 319 | /* new firmware */ |
319 | start = jiffies; | 320 | start = jiffies; |
320 | for (;;) { | 321 | for (;;) { |
322 | err = time_after(jiffies, start + ARM_WAIT_FREE); | ||
321 | if (down_interruptible(&av7110->dcomlock)) | 323 | if (down_interruptible(&av7110->dcomlock)) |
322 | return -ERESTARTSYS; | 324 | return -ERESTARTSYS; |
323 | stat = rdebi(av7110, DEBINOSWAP, MSGSTATE, 0, 2); | 325 | stat = rdebi(av7110, DEBINOSWAP, MSGSTATE, 0, 2); |
324 | up(&av7110->dcomlock); | 326 | up(&av7110->dcomlock); |
325 | if ((stat & flags) == 0) { | 327 | if ((stat & flags) == 0) |
326 | break; | 328 | break; |
327 | } | 329 | if (err) { |
328 | if (time_after(jiffies, start + ARM_WAIT_FREE)) { | ||
329 | printk(KERN_ERR "%s: timeout waiting for MSGSTATE %04x\n", | 330 | printk(KERN_ERR "%s: timeout waiting for MSGSTATE %04x\n", |
330 | __FUNCTION__, stat & flags); | 331 | __FUNCTION__, stat & flags); |
331 | return -1; | 332 | return -ETIMEDOUT; |
332 | } | 333 | } |
333 | msleep(1); | 334 | msleep(1); |
334 | } | 335 | } |
@@ -342,6 +343,7 @@ static int __av7110_send_fw_cmd(struct av7110 *av7110, u16* buf, int length) | |||
342 | char *type = NULL; | 343 | char *type = NULL; |
343 | u16 flags[2] = {0, 0}; | 344 | u16 flags[2] = {0, 0}; |
344 | u32 stat; | 345 | u32 stat; |
346 | int err; | ||
345 | 347 | ||
346 | // dprintk(4, "%p\n", av7110); | 348 | // dprintk(4, "%p\n", av7110); |
347 | 349 | ||
@@ -351,24 +353,30 @@ static int __av7110_send_fw_cmd(struct av7110 *av7110, u16* buf, int length) | |||
351 | } | 353 | } |
352 | 354 | ||
353 | start = jiffies; | 355 | start = jiffies; |
354 | while (rdebi(av7110, DEBINOSWAP, COMMAND, 0, 2 )) { | 356 | while (1) { |
355 | msleep(1); | 357 | err = time_after(jiffies, start + ARM_WAIT_FREE); |
356 | if (time_after(jiffies, start + ARM_WAIT_FREE)) { | 358 | if (rdebi(av7110, DEBINOSWAP, COMMAND, 0, 2) == 0) |
359 | break; | ||
360 | if (err) { | ||
357 | printk(KERN_ERR "dvb-ttpci: %s(): timeout waiting for COMMAND idle\n", __FUNCTION__); | 361 | printk(KERN_ERR "dvb-ttpci: %s(): timeout waiting for COMMAND idle\n", __FUNCTION__); |
358 | return -ETIMEDOUT; | 362 | return -ETIMEDOUT; |
359 | } | 363 | } |
364 | msleep(1); | ||
360 | } | 365 | } |
361 | 366 | ||
362 | wdebi(av7110, DEBINOSWAP, COM_IF_LOCK, 0xffff, 2); | 367 | wdebi(av7110, DEBINOSWAP, COM_IF_LOCK, 0xffff, 2); |
363 | 368 | ||
364 | #ifndef _NOHANDSHAKE | 369 | #ifndef _NOHANDSHAKE |
365 | start = jiffies; | 370 | start = jiffies; |
366 | while (rdebi(av7110, DEBINOSWAP, HANDSHAKE_REG, 0, 2 )) { | 371 | while (1) { |
367 | msleep(1); | 372 | err = time_after(jiffies, start + ARM_WAIT_SHAKE); |
368 | if (time_after(jiffies, start + ARM_WAIT_SHAKE)) { | 373 | if (rdebi(av7110, DEBINOSWAP, HANDSHAKE_REG, 0, 2) == 0) |
374 | break; | ||
375 | if (err) { | ||
369 | printk(KERN_ERR "dvb-ttpci: %s(): timeout waiting for HANDSHAKE_REG\n", __FUNCTION__); | 376 | printk(KERN_ERR "dvb-ttpci: %s(): timeout waiting for HANDSHAKE_REG\n", __FUNCTION__); |
370 | return -ETIMEDOUT; | 377 | return -ETIMEDOUT; |
371 | } | 378 | } |
379 | msleep(1); | ||
372 | } | 380 | } |
373 | #endif | 381 | #endif |
374 | 382 | ||
@@ -401,6 +409,7 @@ static int __av7110_send_fw_cmd(struct av7110 *av7110, u16* buf, int length) | |||
401 | /* non-immediate COMMAND type */ | 409 | /* non-immediate COMMAND type */ |
402 | start = jiffies; | 410 | start = jiffies; |
403 | for (;;) { | 411 | for (;;) { |
412 | err = time_after(jiffies, start + ARM_WAIT_FREE); | ||
404 | stat = rdebi(av7110, DEBINOSWAP, MSGSTATE, 0, 2); | 413 | stat = rdebi(av7110, DEBINOSWAP, MSGSTATE, 0, 2); |
405 | if (stat & flags[0]) { | 414 | if (stat & flags[0]) { |
406 | printk(KERN_ERR "%s: %s QUEUE overflow\n", | 415 | printk(KERN_ERR "%s: %s QUEUE overflow\n", |
@@ -409,10 +418,10 @@ static int __av7110_send_fw_cmd(struct av7110 *av7110, u16* buf, int length) | |||
409 | } | 418 | } |
410 | if ((stat & flags[1]) == 0) | 419 | if ((stat & flags[1]) == 0) |
411 | break; | 420 | break; |
412 | if (time_after(jiffies, start + ARM_WAIT_FREE)) { | 421 | if (err) { |
413 | printk(KERN_ERR "%s: timeout waiting on busy %s QUEUE\n", | 422 | printk(KERN_ERR "%s: timeout waiting on busy %s QUEUE\n", |
414 | __FUNCTION__, type); | 423 | __FUNCTION__, type); |
415 | return -1; | 424 | return -ETIMEDOUT; |
416 | } | 425 | } |
417 | msleep(1); | 426 | msleep(1); |
418 | } | 427 | } |
@@ -432,13 +441,16 @@ static int __av7110_send_fw_cmd(struct av7110 *av7110, u16* buf, int length) | |||
432 | 441 | ||
433 | #ifdef COM_DEBUG | 442 | #ifdef COM_DEBUG |
434 | start = jiffies; | 443 | start = jiffies; |
435 | while (rdebi(av7110, DEBINOSWAP, COMMAND, 0, 2 )) { | 444 | while (1) { |
436 | msleep(1); | 445 | err = time_after(jiffies, start + ARM_WAIT_FREE); |
437 | if (time_after(jiffies, start + ARM_WAIT_FREE)) { | 446 | if (rdebi(av7110, DEBINOSWAP, COMMAND, 0, 2) == 0) |
438 | printk(KERN_ERR "dvb-ttpci: %s(): timeout waiting for COMMAND to complete\n", | 447 | break; |
439 | __FUNCTION__); | 448 | if (err) { |
449 | printk(KERN_ERR "dvb-ttpci: %s(): timeout waiting for COMMAND %d to complete\n", | ||
450 | __FUNCTION__, (buf[0] >> 8) & 0xff); | ||
440 | return -ETIMEDOUT; | 451 | return -ETIMEDOUT; |
441 | } | 452 | } |
453 | msleep(1); | ||
442 | } | 454 | } |
443 | 455 | ||
444 | stat = rdebi(av7110, DEBINOSWAP, MSGSTATE, 0, 2); | 456 | stat = rdebi(av7110, DEBINOSWAP, MSGSTATE, 0, 2); |
@@ -470,7 +482,7 @@ static int av7110_send_fw_cmd(struct av7110 *av7110, u16* buf, int length) | |||
470 | 482 | ||
471 | ret = __av7110_send_fw_cmd(av7110, buf, length); | 483 | ret = __av7110_send_fw_cmd(av7110, buf, length); |
472 | up(&av7110->dcomlock); | 484 | up(&av7110->dcomlock); |
473 | if (ret) | 485 | if (ret && ret!=-ERESTARTSYS) |
474 | printk(KERN_ERR "dvb-ttpci: %s(): av7110_send_fw_cmd error %d\n", | 486 | printk(KERN_ERR "dvb-ttpci: %s(): av7110_send_fw_cmd error %d\n", |
475 | __FUNCTION__, ret); | 487 | __FUNCTION__, ret); |
476 | return ret; | 488 | return ret; |
@@ -495,7 +507,7 @@ int av7110_fw_cmd(struct av7110 *av7110, int type, int com, int num, ...) | |||
495 | } | 507 | } |
496 | 508 | ||
497 | ret = av7110_send_fw_cmd(av7110, buf, num + 2); | 509 | ret = av7110_send_fw_cmd(av7110, buf, num + 2); |
498 | if (ret) | 510 | if (ret && ret != -ERESTARTSYS) |
499 | printk(KERN_ERR "dvb-ttpci: av7110_fw_cmd error %d\n", ret); | 511 | printk(KERN_ERR "dvb-ttpci: av7110_fw_cmd error %d\n", ret); |
500 | return ret; | 512 | return ret; |
501 | } | 513 | } |
@@ -518,7 +530,7 @@ int av7110_send_ci_cmd(struct av7110 *av7110, u8 subcom, u8 *buf, u8 len) | |||
518 | } | 530 | } |
519 | 531 | ||
520 | ret = av7110_send_fw_cmd(av7110, cmd, 18); | 532 | ret = av7110_send_fw_cmd(av7110, cmd, 18); |
521 | if (ret) | 533 | if (ret && ret != -ERESTARTSYS) |
522 | printk(KERN_ERR "dvb-ttpci: av7110_send_ci_cmd error %d\n", ret); | 534 | printk(KERN_ERR "dvb-ttpci: av7110_send_ci_cmd error %d\n", ret); |
523 | return ret; | 535 | return ret; |
524 | } | 536 | } |
@@ -551,26 +563,32 @@ int av7110_fw_request(struct av7110 *av7110, u16 *request_buf, | |||
551 | } | 563 | } |
552 | 564 | ||
553 | start = jiffies; | 565 | start = jiffies; |
554 | while (rdebi(av7110, DEBINOSWAP, COMMAND, 0, 2)) { | 566 | while (1) { |
555 | #ifdef _NOHANDSHAKE | 567 | err = time_after(jiffies, start + ARM_WAIT_FREE); |
556 | msleep(1); | 568 | if (rdebi(av7110, DEBINOSWAP, COMMAND, 0, 2) == 0) |
557 | #endif | 569 | break; |
558 | if (time_after(jiffies, start + ARM_WAIT_FREE)) { | 570 | if (err) { |
559 | printk(KERN_ERR "%s: timeout waiting for COMMAND to complete\n", __FUNCTION__); | 571 | printk(KERN_ERR "%s: timeout waiting for COMMAND to complete\n", __FUNCTION__); |
560 | up(&av7110->dcomlock); | 572 | up(&av7110->dcomlock); |
561 | return -1; | 573 | return -ETIMEDOUT; |
562 | } | 574 | } |
575 | #ifdef _NOHANDSHAKE | ||
576 | msleep(1); | ||
577 | #endif | ||
563 | } | 578 | } |
564 | 579 | ||
565 | #ifndef _NOHANDSHAKE | 580 | #ifndef _NOHANDSHAKE |
566 | start = jiffies; | 581 | start = jiffies; |
567 | while (rdebi(av7110, DEBINOSWAP, HANDSHAKE_REG, 0, 2 )) { | 582 | while (1) { |
568 | msleep(1); | 583 | err = time_after(jiffies, start + ARM_WAIT_SHAKE); |
569 | if (time_after(jiffies, start + ARM_WAIT_SHAKE)) { | 584 | if (rdebi(av7110, DEBINOSWAP, HANDSHAKE_REG, 0, 2) == 0) |
585 | break; | ||
586 | if (err) { | ||
570 | printk(KERN_ERR "%s: timeout waiting for HANDSHAKE_REG\n", __FUNCTION__); | 587 | printk(KERN_ERR "%s: timeout waiting for HANDSHAKE_REG\n", __FUNCTION__); |
571 | up(&av7110->dcomlock); | 588 | up(&av7110->dcomlock); |
572 | return -1; | 589 | return -ETIMEDOUT; |
573 | } | 590 | } |
591 | msleep(1); | ||
574 | } | 592 | } |
575 | #endif | 593 | #endif |
576 | 594 | ||
@@ -667,10 +685,10 @@ int av7110_diseqc_send(struct av7110 *av7110, int len, u8 *msg, unsigned long bu | |||
667 | for (i = 0; i < len; i++) | 685 | for (i = 0; i < len; i++) |
668 | buf[i + 4] = msg[i]; | 686 | buf[i + 4] = msg[i]; |
669 | 687 | ||
670 | if ((ret = av7110_send_fw_cmd(av7110, buf, 18))) | 688 | ret = av7110_send_fw_cmd(av7110, buf, 18); |
689 | if (ret && ret!=-ERESTARTSYS) | ||
671 | printk(KERN_ERR "dvb-ttpci: av7110_diseqc_send error %d\n", ret); | 690 | printk(KERN_ERR "dvb-ttpci: av7110_diseqc_send error %d\n", ret); |
672 | 691 | return ret; | |
673 | return 0; | ||
674 | } | 692 | } |
675 | 693 | ||
676 | 694 | ||
@@ -705,18 +723,22 @@ static inline int SetFont(struct av7110 *av7110, u8 windownr, u8 fontsize, | |||
705 | static int FlushText(struct av7110 *av7110) | 723 | static int FlushText(struct av7110 *av7110) |
706 | { | 724 | { |
707 | unsigned long start; | 725 | unsigned long start; |
726 | int err; | ||
708 | 727 | ||
709 | if (down_interruptible(&av7110->dcomlock)) | 728 | if (down_interruptible(&av7110->dcomlock)) |
710 | return -ERESTARTSYS; | 729 | return -ERESTARTSYS; |
711 | start = jiffies; | 730 | start = jiffies; |
712 | while (rdebi(av7110, DEBINOSWAP, BUFF1_BASE, 0, 2)) { | 731 | while (1) { |
713 | msleep(1); | 732 | err = time_after(jiffies, start + ARM_WAIT_OSD); |
714 | if (time_after(jiffies, start + ARM_WAIT_OSD)) { | 733 | if (rdebi(av7110, DEBINOSWAP, BUFF1_BASE, 0, 2) == 0) |
734 | break; | ||
735 | if (err) { | ||
715 | printk(KERN_ERR "dvb-ttpci: %s(): timeout waiting for BUFF1_BASE == 0\n", | 736 | printk(KERN_ERR "dvb-ttpci: %s(): timeout waiting for BUFF1_BASE == 0\n", |
716 | __FUNCTION__); | 737 | __FUNCTION__); |
717 | up(&av7110->dcomlock); | 738 | up(&av7110->dcomlock); |
718 | return -1; | 739 | return -ETIMEDOUT; |
719 | } | 740 | } |
741 | msleep(1); | ||
720 | } | 742 | } |
721 | up(&av7110->dcomlock); | 743 | up(&av7110->dcomlock); |
722 | return 0; | 744 | return 0; |
@@ -733,25 +755,31 @@ static int WriteText(struct av7110 *av7110, u8 win, u16 x, u16 y, u8* buf) | |||
733 | return -ERESTARTSYS; | 755 | return -ERESTARTSYS; |
734 | 756 | ||
735 | start = jiffies; | 757 | start = jiffies; |
736 | while (rdebi(av7110, DEBINOSWAP, BUFF1_BASE, 0, 2)) { | 758 | while (1) { |
737 | msleep(1); | 759 | ret = time_after(jiffies, start + ARM_WAIT_OSD); |
738 | if (time_after(jiffies, start + ARM_WAIT_OSD)) { | 760 | if (rdebi(av7110, DEBINOSWAP, BUFF1_BASE, 0, 2) == 0) |
761 | break; | ||
762 | if (ret) { | ||
739 | printk(KERN_ERR "dvb-ttpci: %s: timeout waiting for BUFF1_BASE == 0\n", | 763 | printk(KERN_ERR "dvb-ttpci: %s: timeout waiting for BUFF1_BASE == 0\n", |
740 | __FUNCTION__); | 764 | __FUNCTION__); |
741 | up(&av7110->dcomlock); | 765 | up(&av7110->dcomlock); |
742 | return -1; | 766 | return -ETIMEDOUT; |
743 | } | 767 | } |
768 | msleep(1); | ||
744 | } | 769 | } |
745 | #ifndef _NOHANDSHAKE | 770 | #ifndef _NOHANDSHAKE |
746 | start = jiffies; | 771 | start = jiffies; |
747 | while (rdebi(av7110, DEBINOSWAP, HANDSHAKE_REG, 0, 2)) { | 772 | while (1) { |
748 | msleep(1); | 773 | ret = time_after(jiffies, start + ARM_WAIT_SHAKE); |
749 | if (time_after(jiffies, start + ARM_WAIT_SHAKE)) { | 774 | if (rdebi(av7110, DEBINOSWAP, HANDSHAKE_REG, 0, 2) == 0) |
775 | break; | ||
776 | if (ret) { | ||
750 | printk(KERN_ERR "dvb-ttpci: %s: timeout waiting for HANDSHAKE_REG\n", | 777 | printk(KERN_ERR "dvb-ttpci: %s: timeout waiting for HANDSHAKE_REG\n", |
751 | __FUNCTION__); | 778 | __FUNCTION__); |
752 | up(&av7110->dcomlock); | 779 | up(&av7110->dcomlock); |
753 | return -1; | 780 | return -ETIMEDOUT; |
754 | } | 781 | } |
782 | msleep(1); | ||
755 | } | 783 | } |
756 | #endif | 784 | #endif |
757 | for (i = 0; i < length / 2; i++) | 785 | for (i = 0; i < length / 2; i++) |
@@ -761,7 +789,7 @@ static int WriteText(struct av7110 *av7110, u8 win, u16 x, u16 y, u8* buf) | |||
761 | wdebi(av7110, DEBINOSWAP, BUFF1_BASE + i * 2, 0, 2); | 789 | wdebi(av7110, DEBINOSWAP, BUFF1_BASE + i * 2, 0, 2); |
762 | ret = __av7110_send_fw_cmd(av7110, cbuf, 5); | 790 | ret = __av7110_send_fw_cmd(av7110, cbuf, 5); |
763 | up(&av7110->dcomlock); | 791 | up(&av7110->dcomlock); |
764 | if (ret) | 792 | if (ret && ret!=-ERESTARTSYS) |
765 | printk(KERN_ERR "dvb-ttpci: WriteText error %d\n", ret); | 793 | printk(KERN_ERR "dvb-ttpci: WriteText error %d\n", ret); |
766 | return ret; | 794 | return ret; |
767 | } | 795 | } |
@@ -816,9 +844,25 @@ static osd_raw_window_t bpp2bit[8] = { | |||
816 | OSD_BITMAP1, OSD_BITMAP2, 0, OSD_BITMAP4, 0, 0, 0, OSD_BITMAP8 | 844 | OSD_BITMAP1, OSD_BITMAP2, 0, OSD_BITMAP4, 0, 0, 0, OSD_BITMAP8 |
817 | }; | 845 | }; |
818 | 846 | ||
819 | static inline int LoadBitmap(struct av7110 *av7110, u16 format, | 847 | static inline int WaitUntilBmpLoaded(struct av7110 *av7110) |
848 | { | ||
849 | int ret = wait_event_interruptible_timeout(av7110->bmpq, | ||
850 | av7110->bmp_state != BMP_LOADING, 10*HZ); | ||
851 | if (ret == -ERESTARTSYS) | ||
852 | return ret; | ||
853 | if (ret == 0) { | ||
854 | printk("dvb-ttpci: warning: timeout waiting in LoadBitmap: %d, %d\n", | ||
855 | ret, av7110->bmp_state); | ||
856 | av7110->bmp_state = BMP_NONE; | ||
857 | return -ETIMEDOUT; | ||
858 | } | ||
859 | return 0; | ||
860 | } | ||
861 | |||
862 | static inline int LoadBitmap(struct av7110 *av7110, | ||
820 | u16 dx, u16 dy, int inc, u8 __user * data) | 863 | u16 dx, u16 dy, int inc, u8 __user * data) |
821 | { | 864 | { |
865 | u16 format; | ||
822 | int bpp; | 866 | int bpp; |
823 | int i; | 867 | int i; |
824 | int d, delta; | 868 | int d, delta; |
@@ -827,14 +871,7 @@ static inline int LoadBitmap(struct av7110 *av7110, u16 format, | |||
827 | 871 | ||
828 | dprintk(4, "%p\n", av7110); | 872 | dprintk(4, "%p\n", av7110); |
829 | 873 | ||
830 | ret = wait_event_interruptible_timeout(av7110->bmpq, av7110->bmp_state != BMP_LOADING, HZ); | 874 | format = bpp2bit[av7110->osdbpp[av7110->osdwin]]; |
831 | if (ret == -ERESTARTSYS || ret == 0) { | ||
832 | printk("dvb-ttpci: warning: timeout waiting in LoadBitmap: %d, %d\n", | ||
833 | ret, av7110->bmp_state); | ||
834 | av7110->bmp_state = BMP_NONE; | ||
835 | return -1; | ||
836 | } | ||
837 | BUG_ON (av7110->bmp_state == BMP_LOADING); | ||
838 | 875 | ||
839 | av7110->bmp_state = BMP_LOADING; | 876 | av7110->bmp_state = BMP_LOADING; |
840 | if (format == OSD_BITMAP8) { | 877 | if (format == OSD_BITMAP8) { |
@@ -847,18 +884,18 @@ static inline int LoadBitmap(struct av7110 *av7110, u16 format, | |||
847 | bpp=1; delta = 8; | 884 | bpp=1; delta = 8; |
848 | } else { | 885 | } else { |
849 | av7110->bmp_state = BMP_NONE; | 886 | av7110->bmp_state = BMP_NONE; |
850 | return -1; | 887 | return -EINVAL; |
851 | } | 888 | } |
852 | av7110->bmplen = ((dx * dy * bpp + 7) & ~7) / 8; | 889 | av7110->bmplen = ((dx * dy * bpp + 7) & ~7) / 8; |
853 | av7110->bmpp = 0; | 890 | av7110->bmpp = 0; |
854 | if (av7110->bmplen > 32768) { | 891 | if (av7110->bmplen > 32768) { |
855 | av7110->bmp_state = BMP_NONE; | 892 | av7110->bmp_state = BMP_NONE; |
856 | return -1; | 893 | return -EINVAL; |
857 | } | 894 | } |
858 | for (i = 0; i < dy; i++) { | 895 | for (i = 0; i < dy; i++) { |
859 | if (copy_from_user(av7110->bmpbuf + 1024 + i * dx, data + i * inc, dx)) { | 896 | if (copy_from_user(av7110->bmpbuf + 1024 + i * dx, data + i * inc, dx)) { |
860 | av7110->bmp_state = BMP_NONE; | 897 | av7110->bmp_state = BMP_NONE; |
861 | return -1; | 898 | return -EINVAL; |
862 | } | 899 | } |
863 | } | 900 | } |
864 | if (format != OSD_BITMAP8) { | 901 | if (format != OSD_BITMAP8) { |
@@ -873,37 +910,27 @@ static inline int LoadBitmap(struct av7110 *av7110, u16 format, | |||
873 | } | 910 | } |
874 | av7110->bmplen += 1024; | 911 | av7110->bmplen += 1024; |
875 | dprintk(4, "av7110_fw_cmd: LoadBmp size %d\n", av7110->bmplen); | 912 | dprintk(4, "av7110_fw_cmd: LoadBmp size %d\n", av7110->bmplen); |
876 | return av7110_fw_cmd(av7110, COMTYPE_OSD, LoadBmp, 3, format, dx, dy); | 913 | ret = av7110_fw_cmd(av7110, COMTYPE_OSD, LoadBmp, 3, format, dx, dy); |
914 | if (!ret) | ||
915 | ret = WaitUntilBmpLoaded(av7110); | ||
916 | return ret; | ||
877 | } | 917 | } |
878 | 918 | ||
879 | static int BlitBitmap(struct av7110 *av7110, u16 win, u16 x, u16 y, u16 trans) | 919 | static int BlitBitmap(struct av7110 *av7110, u16 x, u16 y) |
880 | { | 920 | { |
881 | int ret; | ||
882 | |||
883 | dprintk(4, "%p\n", av7110); | 921 | dprintk(4, "%p\n", av7110); |
884 | 922 | ||
885 | BUG_ON (av7110->bmp_state == BMP_NONE); | 923 | return av7110_fw_cmd(av7110, COMTYPE_OSD, BlitBmp, 4, av7110->osdwin, x, y, 0); |
886 | |||
887 | ret = wait_event_interruptible_timeout(av7110->bmpq, | ||
888 | av7110->bmp_state != BMP_LOADING, 10*HZ); | ||
889 | if (ret == -ERESTARTSYS || ret == 0) { | ||
890 | printk("dvb-ttpci: warning: timeout waiting in BlitBitmap: %d, %d\n", | ||
891 | ret, av7110->bmp_state); | ||
892 | av7110->bmp_state = BMP_NONE; | ||
893 | return (ret == 0) ? -ETIMEDOUT : ret; | ||
894 | } | ||
895 | |||
896 | BUG_ON (av7110->bmp_state != BMP_LOADED); | ||
897 | |||
898 | return av7110_fw_cmd(av7110, COMTYPE_OSD, BlitBmp, 4, win, x, y, trans); | ||
899 | } | 924 | } |
900 | 925 | ||
901 | static inline int ReleaseBitmap(struct av7110 *av7110) | 926 | static inline int ReleaseBitmap(struct av7110 *av7110) |
902 | { | 927 | { |
903 | dprintk(4, "%p\n", av7110); | 928 | dprintk(4, "%p\n", av7110); |
904 | 929 | ||
905 | if (av7110->bmp_state != BMP_LOADED) | 930 | if (av7110->bmp_state != BMP_LOADED && FW_VERSION(av7110->arm_app) < 0x261e) |
906 | return -1; | 931 | return -1; |
932 | if (av7110->bmp_state == BMP_LOADING) | ||
933 | dprintk(1,"ReleaseBitmap called while BMP_LOADING\n"); | ||
907 | av7110->bmp_state = BMP_NONE; | 934 | av7110->bmp_state = BMP_NONE; |
908 | return av7110_fw_cmd(av7110, COMTYPE_OSD, ReleaseBmp, 0); | 935 | return av7110_fw_cmd(av7110, COMTYPE_OSD, ReleaseBmp, 0); |
909 | } | 936 | } |
@@ -924,18 +951,22 @@ static u32 RGB2YUV(u16 R, u16 G, u16 B) | |||
924 | return Cr | (Cb << 16) | (Y << 8); | 951 | return Cr | (Cb << 16) | (Y << 8); |
925 | } | 952 | } |
926 | 953 | ||
927 | static void OSDSetColor(struct av7110 *av7110, u8 color, u8 r, u8 g, u8 b, u8 blend) | 954 | static int OSDSetColor(struct av7110 *av7110, u8 color, u8 r, u8 g, u8 b, u8 blend) |
928 | { | 955 | { |
956 | int ret; | ||
957 | |||
929 | u16 ch, cl; | 958 | u16 ch, cl; |
930 | u32 yuv; | 959 | u32 yuv; |
931 | 960 | ||
932 | yuv = blend ? RGB2YUV(r,g,b) : 0; | 961 | yuv = blend ? RGB2YUV(r,g,b) : 0; |
933 | cl = (yuv & 0xffff); | 962 | cl = (yuv & 0xffff); |
934 | ch = ((yuv >> 16) & 0xffff); | 963 | ch = ((yuv >> 16) & 0xffff); |
935 | SetColor_(av7110, av7110->osdwin, bpp2pal[av7110->osdbpp[av7110->osdwin]], | 964 | ret = SetColor_(av7110, av7110->osdwin, bpp2pal[av7110->osdbpp[av7110->osdwin]], |
936 | color, ch, cl); | 965 | color, ch, cl); |
937 | SetBlend_(av7110, av7110->osdwin, bpp2pal[av7110->osdbpp[av7110->osdwin]], | 966 | if (!ret) |
938 | color, ((blend >> 4) & 0x0f)); | 967 | ret = SetBlend_(av7110, av7110->osdwin, bpp2pal[av7110->osdbpp[av7110->osdwin]], |
968 | color, ((blend >> 4) & 0x0f)); | ||
969 | return ret; | ||
939 | } | 970 | } |
940 | 971 | ||
941 | static int OSDSetPalette(struct av7110 *av7110, u32 __user * colors, u8 first, u8 last) | 972 | static int OSDSetPalette(struct av7110 *av7110, u32 __user * colors, u8 first, u8 last) |
@@ -968,14 +999,14 @@ static int OSDSetBlock(struct av7110 *av7110, int x0, int y0, | |||
968 | { | 999 | { |
969 | uint w, h, bpp, bpl, size, lpb, bnum, brest; | 1000 | uint w, h, bpp, bpl, size, lpb, bnum, brest; |
970 | int i; | 1001 | int i; |
971 | int rc; | 1002 | int rc,release_rc; |
972 | 1003 | ||
973 | w = x1 - x0 + 1; | 1004 | w = x1 - x0 + 1; |
974 | h = y1 - y0 + 1; | 1005 | h = y1 - y0 + 1; |
975 | if (inc <= 0) | 1006 | if (inc <= 0) |
976 | inc = w; | 1007 | inc = w; |
977 | if (w <= 0 || w > 720 || h <= 0 || h > 576) | 1008 | if (w <= 0 || w > 720 || h <= 0 || h > 576) |
978 | return -1; | 1009 | return -EINVAL; |
979 | bpp = av7110->osdbpp[av7110->osdwin] + 1; | 1010 | bpp = av7110->osdbpp[av7110->osdwin] + 1; |
980 | bpl = ((w * bpp + 7) & ~7) / 8; | 1011 | bpl = ((w * bpp + 7) & ~7) / 8; |
981 | size = h * bpl; | 1012 | size = h * bpl; |
@@ -983,176 +1014,186 @@ static int OSDSetBlock(struct av7110 *av7110, int x0, int y0, | |||
983 | bnum = size / (lpb * bpl); | 1014 | bnum = size / (lpb * bpl); |
984 | brest = size - bnum * lpb * bpl; | 1015 | brest = size - bnum * lpb * bpl; |
985 | 1016 | ||
986 | for (i = 0; i < bnum; i++) { | 1017 | if (av7110->bmp_state == BMP_LOADING) { |
987 | rc = LoadBitmap(av7110, bpp2bit[av7110->osdbpp[av7110->osdwin]], | 1018 | /* possible if syscall is repeated by -ERESTARTSYS and if firmware cannot abort */ |
988 | w, lpb, inc, data); | 1019 | BUG_ON (FW_VERSION(av7110->arm_app) >= 0x261e); |
989 | if (rc) | 1020 | rc = WaitUntilBmpLoaded(av7110); |
990 | return rc; | ||
991 | rc = BlitBitmap(av7110, av7110->osdwin, x0, y0 + i * lpb, 0); | ||
992 | if (rc) | 1021 | if (rc) |
993 | return rc; | 1022 | return rc; |
994 | data += lpb * inc; | 1023 | /* just continue. This should work for all fw versions |
1024 | * if bnum==1 && !brest && LoadBitmap was successful | ||
1025 | */ | ||
995 | } | 1026 | } |
996 | if (brest) { | 1027 | |
997 | rc = LoadBitmap(av7110, bpp2bit[av7110->osdbpp[av7110->osdwin]], | 1028 | rc = 0; |
998 | w, brest / bpl, inc, data); | 1029 | for (i = 0; i < bnum; i++) { |
1030 | rc = LoadBitmap(av7110, w, lpb, inc, data); | ||
999 | if (rc) | 1031 | if (rc) |
1000 | return rc; | 1032 | break; |
1001 | rc = BlitBitmap(av7110, av7110->osdwin, x0, y0 + bnum * lpb, 0); | 1033 | rc = BlitBitmap(av7110, x0, y0 + i * lpb); |
1002 | if (rc) | 1034 | if (rc) |
1003 | return rc; | 1035 | break; |
1036 | data += lpb * inc; | ||
1004 | } | 1037 | } |
1005 | ReleaseBitmap(av7110); | 1038 | if (!rc && brest) { |
1006 | return 0; | 1039 | rc = LoadBitmap(av7110, w, brest / bpl, inc, data); |
1040 | if (!rc) | ||
1041 | rc = BlitBitmap(av7110, x0, y0 + bnum * lpb); | ||
1042 | } | ||
1043 | release_rc = ReleaseBitmap(av7110); | ||
1044 | if (!rc) | ||
1045 | rc = release_rc; | ||
1046 | if (rc) | ||
1047 | dprintk(1,"returns %d\n",rc); | ||
1048 | return rc; | ||
1007 | } | 1049 | } |
1008 | 1050 | ||
1009 | int av7110_osd_cmd(struct av7110 *av7110, osd_cmd_t *dc) | 1051 | int av7110_osd_cmd(struct av7110 *av7110, osd_cmd_t *dc) |
1010 | { | 1052 | { |
1011 | int ret; | 1053 | int ret; |
1012 | 1054 | ||
1013 | ret = down_interruptible(&av7110->osd_sema); | 1055 | if (down_interruptible(&av7110->osd_sema)) |
1014 | if (ret) | ||
1015 | return -ERESTARTSYS; | 1056 | return -ERESTARTSYS; |
1016 | 1057 | ||
1017 | /* stupid, but OSD functions don't provide a return code anyway */ | ||
1018 | ret = 0; | ||
1019 | |||
1020 | switch (dc->cmd) { | 1058 | switch (dc->cmd) { |
1021 | case OSD_Close: | 1059 | case OSD_Close: |
1022 | DestroyOSDWindow(av7110, av7110->osdwin); | 1060 | ret = DestroyOSDWindow(av7110, av7110->osdwin); |
1023 | goto out; | 1061 | break; |
1024 | case OSD_Open: | 1062 | case OSD_Open: |
1025 | av7110->osdbpp[av7110->osdwin] = (dc->color - 1) & 7; | 1063 | av7110->osdbpp[av7110->osdwin] = (dc->color - 1) & 7; |
1026 | CreateOSDWindow(av7110, av7110->osdwin, | 1064 | ret = CreateOSDWindow(av7110, av7110->osdwin, |
1027 | bpp2bit[av7110->osdbpp[av7110->osdwin]], | 1065 | bpp2bit[av7110->osdbpp[av7110->osdwin]], |
1028 | dc->x1 - dc->x0 + 1, dc->y1 - dc->y0 + 1); | 1066 | dc->x1 - dc->x0 + 1, dc->y1 - dc->y0 + 1); |
1067 | if (ret) | ||
1068 | break; | ||
1029 | if (!dc->data) { | 1069 | if (!dc->data) { |
1030 | MoveWindowAbs(av7110, av7110->osdwin, dc->x0, dc->y0); | 1070 | ret = MoveWindowAbs(av7110, av7110->osdwin, dc->x0, dc->y0); |
1031 | SetColorBlend(av7110, av7110->osdwin); | 1071 | if (ret) |
1072 | break; | ||
1073 | ret = SetColorBlend(av7110, av7110->osdwin); | ||
1032 | } | 1074 | } |
1033 | goto out; | 1075 | break; |
1034 | case OSD_Show: | 1076 | case OSD_Show: |
1035 | MoveWindowRel(av7110, av7110->osdwin, 0, 0); | 1077 | ret = MoveWindowRel(av7110, av7110->osdwin, 0, 0); |
1036 | goto out; | 1078 | break; |
1037 | case OSD_Hide: | 1079 | case OSD_Hide: |
1038 | HideWindow(av7110, av7110->osdwin); | 1080 | ret = HideWindow(av7110, av7110->osdwin); |
1039 | goto out; | 1081 | break; |
1040 | case OSD_Clear: | 1082 | case OSD_Clear: |
1041 | DrawBlock(av7110, av7110->osdwin, 0, 0, 720, 576, 0); | 1083 | ret = DrawBlock(av7110, av7110->osdwin, 0, 0, 720, 576, 0); |
1042 | goto out; | 1084 | break; |
1043 | case OSD_Fill: | 1085 | case OSD_Fill: |
1044 | DrawBlock(av7110, av7110->osdwin, 0, 0, 720, 576, dc->color); | 1086 | ret = DrawBlock(av7110, av7110->osdwin, 0, 0, 720, 576, dc->color); |
1045 | goto out; | 1087 | break; |
1046 | case OSD_SetColor: | 1088 | case OSD_SetColor: |
1047 | OSDSetColor(av7110, dc->color, dc->x0, dc->y0, dc->x1, dc->y1); | 1089 | ret = OSDSetColor(av7110, dc->color, dc->x0, dc->y0, dc->x1, dc->y1); |
1048 | goto out; | 1090 | break; |
1049 | case OSD_SetPalette: | 1091 | case OSD_SetPalette: |
1050 | { | 1092 | if (FW_VERSION(av7110->arm_app) >= 0x2618) |
1051 | if (FW_VERSION(av7110->arm_app) >= 0x2618) { | ||
1052 | ret = OSDSetPalette(av7110, dc->data, dc->color, dc->x0); | 1093 | ret = OSDSetPalette(av7110, dc->data, dc->color, dc->x0); |
1053 | goto out; | 1094 | else { |
1054 | } else { | ||
1055 | int i, len = dc->x0-dc->color+1; | 1095 | int i, len = dc->x0-dc->color+1; |
1056 | u8 __user *colors = (u8 __user *)dc->data; | 1096 | u8 __user *colors = (u8 __user *)dc->data; |
1057 | u8 r, g, b, blend; | 1097 | u8 r, g, b, blend; |
1058 | 1098 | ret = 0; | |
1059 | for (i = 0; i<len; i++) { | 1099 | for (i = 0; i<len; i++) { |
1060 | if (get_user(r, colors + i * 4) || | 1100 | if (get_user(r, colors + i * 4) || |
1061 | get_user(g, colors + i * 4 + 1) || | 1101 | get_user(g, colors + i * 4 + 1) || |
1062 | get_user(b, colors + i * 4 + 2) || | 1102 | get_user(b, colors + i * 4 + 2) || |
1063 | get_user(blend, colors + i * 4 + 3)) { | 1103 | get_user(blend, colors + i * 4 + 3)) { |
1064 | ret = -EFAULT; | 1104 | ret = -EFAULT; |
1065 | goto out; | 1105 | break; |
1066 | } | 1106 | } |
1067 | OSDSetColor(av7110, dc->color + i, r, g, b, blend); | 1107 | ret = OSDSetColor(av7110, dc->color + i, r, g, b, blend); |
1108 | if (ret) | ||
1109 | break; | ||
1068 | } | 1110 | } |
1069 | } | 1111 | } |
1070 | ret = 0; | 1112 | break; |
1071 | goto out; | ||
1072 | } | ||
1073 | case OSD_SetTrans: | ||
1074 | goto out; | ||
1075 | case OSD_SetPixel: | 1113 | case OSD_SetPixel: |
1076 | DrawLine(av7110, av7110->osdwin, | 1114 | ret = DrawLine(av7110, av7110->osdwin, |
1077 | dc->x0, dc->y0, 0, 0, dc->color); | 1115 | dc->x0, dc->y0, 0, 0, dc->color); |
1078 | goto out; | 1116 | break; |
1079 | case OSD_GetPixel: | ||
1080 | goto out; | ||
1081 | case OSD_SetRow: | 1117 | case OSD_SetRow: |
1082 | dc->y1 = dc->y0; | 1118 | dc->y1 = dc->y0; |
1083 | /* fall through */ | 1119 | /* fall through */ |
1084 | case OSD_SetBlock: | 1120 | case OSD_SetBlock: |
1085 | ret = OSDSetBlock(av7110, dc->x0, dc->y0, dc->x1, dc->y1, dc->color, dc->data); | 1121 | ret = OSDSetBlock(av7110, dc->x0, dc->y0, dc->x1, dc->y1, dc->color, dc->data); |
1086 | goto out; | 1122 | break; |
1087 | case OSD_FillRow: | 1123 | case OSD_FillRow: |
1088 | DrawBlock(av7110, av7110->osdwin, dc->x0, dc->y0, | 1124 | ret = DrawBlock(av7110, av7110->osdwin, dc->x0, dc->y0, |
1089 | dc->x1-dc->x0+1, dc->y1, dc->color); | 1125 | dc->x1-dc->x0+1, dc->y1, dc->color); |
1090 | goto out; | 1126 | break; |
1091 | case OSD_FillBlock: | 1127 | case OSD_FillBlock: |
1092 | DrawBlock(av7110, av7110->osdwin, dc->x0, dc->y0, | 1128 | ret = DrawBlock(av7110, av7110->osdwin, dc->x0, dc->y0, |
1093 | dc->x1 - dc->x0 + 1, dc->y1 - dc->y0 + 1, dc->color); | 1129 | dc->x1 - dc->x0 + 1, dc->y1 - dc->y0 + 1, dc->color); |
1094 | goto out; | 1130 | break; |
1095 | case OSD_Line: | 1131 | case OSD_Line: |
1096 | DrawLine(av7110, av7110->osdwin, | 1132 | ret = DrawLine(av7110, av7110->osdwin, |
1097 | dc->x0, dc->y0, dc->x1 - dc->x0, dc->y1 - dc->y0, dc->color); | 1133 | dc->x0, dc->y0, dc->x1 - dc->x0, dc->y1 - dc->y0, dc->color); |
1098 | goto out; | 1134 | break; |
1099 | case OSD_Query: | ||
1100 | goto out; | ||
1101 | case OSD_Test: | ||
1102 | goto out; | ||
1103 | case OSD_Text: | 1135 | case OSD_Text: |
1104 | { | 1136 | { |
1105 | char textbuf[240]; | 1137 | char textbuf[240]; |
1106 | 1138 | ||
1107 | if (strncpy_from_user(textbuf, dc->data, 240) < 0) { | 1139 | if (strncpy_from_user(textbuf, dc->data, 240) < 0) { |
1108 | ret = -EFAULT; | 1140 | ret = -EFAULT; |
1109 | goto out; | 1141 | break; |
1110 | } | 1142 | } |
1111 | textbuf[239] = 0; | 1143 | textbuf[239] = 0; |
1112 | if (dc->x1 > 3) | 1144 | if (dc->x1 > 3) |
1113 | dc->x1 = 3; | 1145 | dc->x1 = 3; |
1114 | SetFont(av7110, av7110->osdwin, dc->x1, | 1146 | ret = SetFont(av7110, av7110->osdwin, dc->x1, |
1115 | (u16) (dc->color & 0xffff), (u16) (dc->color >> 16)); | 1147 | (u16) (dc->color & 0xffff), (u16) (dc->color >> 16)); |
1116 | FlushText(av7110); | 1148 | if (!ret) |
1117 | WriteText(av7110, av7110->osdwin, dc->x0, dc->y0, textbuf); | 1149 | ret = FlushText(av7110); |
1118 | goto out; | 1150 | if (!ret) |
1151 | ret = WriteText(av7110, av7110->osdwin, dc->x0, dc->y0, textbuf); | ||
1152 | break; | ||
1119 | } | 1153 | } |
1120 | case OSD_SetWindow: | 1154 | case OSD_SetWindow: |
1121 | if (dc->x0 < 1 || dc->x0 > 7) { | 1155 | if (dc->x0 < 1 || dc->x0 > 7) |
1122 | ret = -EINVAL; | 1156 | ret = -EINVAL; |
1123 | goto out; | 1157 | else { |
1158 | av7110->osdwin = dc->x0; | ||
1159 | ret = 0; | ||
1124 | } | 1160 | } |
1125 | av7110->osdwin = dc->x0; | 1161 | break; |
1126 | goto out; | ||
1127 | case OSD_MoveWindow: | 1162 | case OSD_MoveWindow: |
1128 | MoveWindowAbs(av7110, av7110->osdwin, dc->x0, dc->y0); | 1163 | ret = MoveWindowAbs(av7110, av7110->osdwin, dc->x0, dc->y0); |
1129 | SetColorBlend(av7110, av7110->osdwin); | 1164 | if (!ret) |
1130 | goto out; | 1165 | ret = SetColorBlend(av7110, av7110->osdwin); |
1166 | break; | ||
1131 | case OSD_OpenRaw: | 1167 | case OSD_OpenRaw: |
1132 | if (dc->color < OSD_BITMAP1 || dc->color > OSD_CURSOR) { | 1168 | if (dc->color < OSD_BITMAP1 || dc->color > OSD_CURSOR) { |
1133 | ret = -EINVAL; | 1169 | ret = -EINVAL; |
1134 | goto out; | 1170 | break; |
1135 | } | 1171 | } |
1136 | if (dc->color >= OSD_BITMAP1 && dc->color <= OSD_BITMAP8HR) { | 1172 | if (dc->color >= OSD_BITMAP1 && dc->color <= OSD_BITMAP8HR) |
1137 | av7110->osdbpp[av7110->osdwin] = (1 << (dc->color & 3)) - 1; | 1173 | av7110->osdbpp[av7110->osdwin] = (1 << (dc->color & 3)) - 1; |
1138 | } | 1174 | else |
1139 | else { | ||
1140 | av7110->osdbpp[av7110->osdwin] = 0; | 1175 | av7110->osdbpp[av7110->osdwin] = 0; |
1141 | } | 1176 | ret = CreateOSDWindow(av7110, av7110->osdwin, (osd_raw_window_t)dc->color, |
1142 | CreateOSDWindow(av7110, av7110->osdwin, (osd_raw_window_t)dc->color, | ||
1143 | dc->x1 - dc->x0 + 1, dc->y1 - dc->y0 + 1); | 1177 | dc->x1 - dc->x0 + 1, dc->y1 - dc->y0 + 1); |
1178 | if (ret) | ||
1179 | break; | ||
1144 | if (!dc->data) { | 1180 | if (!dc->data) { |
1145 | MoveWindowAbs(av7110, av7110->osdwin, dc->x0, dc->y0); | 1181 | ret = MoveWindowAbs(av7110, av7110->osdwin, dc->x0, dc->y0); |
1146 | SetColorBlend(av7110, av7110->osdwin); | 1182 | if (!ret) |
1183 | ret = SetColorBlend(av7110, av7110->osdwin); | ||
1147 | } | 1184 | } |
1148 | goto out; | 1185 | break; |
1149 | default: | 1186 | default: |
1150 | ret = -EINVAL; | 1187 | ret = -EINVAL; |
1151 | goto out; | 1188 | break; |
1152 | } | 1189 | } |
1153 | 1190 | ||
1154 | out: | ||
1155 | up(&av7110->osd_sema); | 1191 | up(&av7110->osd_sema); |
1192 | if (ret==-ERESTARTSYS) | ||
1193 | dprintk(1, "av7110_osd_cmd(%d) returns with -ERESTARTSYS\n",dc->cmd); | ||
1194 | else if (ret) | ||
1195 | dprintk(1, "av7110_osd_cmd(%d) returns with %d\n",dc->cmd,ret); | ||
1196 | |||
1156 | return ret; | 1197 | return ret; |
1157 | } | 1198 | } |
1158 | 1199 | ||
diff --git a/drivers/media/dvb/ttpci/av7110_hw.h b/drivers/media/dvb/ttpci/av7110_hw.h index 52061e17c6dd..fedd20f9815d 100644 --- a/drivers/media/dvb/ttpci/av7110_hw.h +++ b/drivers/media/dvb/ttpci/av7110_hw.h | |||
@@ -458,27 +458,27 @@ static inline int SendDAC(struct av7110 *av7110, u8 addr, u8 data) | |||
458 | return av7110_fw_cmd(av7110, COMTYPE_AUDIODAC, AudioDAC, 2, addr, data); | 458 | return av7110_fw_cmd(av7110, COMTYPE_AUDIODAC, AudioDAC, 2, addr, data); |
459 | } | 459 | } |
460 | 460 | ||
461 | static inline void av7710_set_video_mode(struct av7110 *av7110, int mode) | 461 | static inline int av7710_set_video_mode(struct av7110 *av7110, int mode) |
462 | { | 462 | { |
463 | av7110_fw_cmd(av7110, COMTYPE_ENCODER, SetVidMode, 1, mode); | 463 | return av7110_fw_cmd(av7110, COMTYPE_ENCODER, SetVidMode, 1, mode); |
464 | } | 464 | } |
465 | 465 | ||
466 | static int inline vidcom(struct av7110 *av7110, u32 com, u32 arg) | 466 | static inline int vidcom(struct av7110 *av7110, u32 com, u32 arg) |
467 | { | 467 | { |
468 | return av7110_fw_cmd(av7110, COMTYPE_MISC, AV7110_FW_VIDEO_COMMAND, 4, | 468 | return av7110_fw_cmd(av7110, COMTYPE_MISC, AV7110_FW_VIDEO_COMMAND, 4, |
469 | (com>>16), (com&0xffff), | 469 | (com>>16), (com&0xffff), |
470 | (arg>>16), (arg&0xffff)); | 470 | (arg>>16), (arg&0xffff)); |
471 | } | 471 | } |
472 | 472 | ||
473 | static int inline audcom(struct av7110 *av7110, u32 com) | 473 | static inline int audcom(struct av7110 *av7110, u32 com) |
474 | { | 474 | { |
475 | return av7110_fw_cmd(av7110, COMTYPE_MISC, AV7110_FW_AUDIO_COMMAND, 2, | 475 | return av7110_fw_cmd(av7110, COMTYPE_MISC, AV7110_FW_AUDIO_COMMAND, 2, |
476 | (com>>16), (com&0xffff)); | 476 | (com>>16), (com&0xffff)); |
477 | } | 477 | } |
478 | 478 | ||
479 | static inline void Set22K(struct av7110 *av7110, int state) | 479 | static inline int Set22K(struct av7110 *av7110, int state) |
480 | { | 480 | { |
481 | av7110_fw_cmd(av7110, COMTYPE_AUDIODAC, (state ? ON22K : OFF22K), 0); | 481 | return av7110_fw_cmd(av7110, COMTYPE_AUDIODAC, (state ? ON22K : OFF22K), 0); |
482 | } | 482 | } |
483 | 483 | ||
484 | 484 | ||
diff --git a/drivers/media/dvb/ttpci/av7110_ipack.c b/drivers/media/dvb/ttpci/av7110_ipack.c index 246640741888..699ef8b5b99a 100644 --- a/drivers/media/dvb/ttpci/av7110_ipack.c +++ b/drivers/media/dvb/ttpci/av7110_ipack.c | |||
@@ -24,7 +24,7 @@ int av7110_ipack_init(struct ipack *p, int size, | |||
24 | void (*func)(u8 *buf, int size, void *priv)) | 24 | void (*func)(u8 *buf, int size, void *priv)) |
25 | { | 25 | { |
26 | if (!(p->buf = vmalloc(size*sizeof(u8)))) { | 26 | if (!(p->buf = vmalloc(size*sizeof(u8)))) { |
27 | printk ("Couldn't allocate memory for ipack\n"); | 27 | printk(KERN_WARNING "Couldn't allocate memory for ipack\n"); |
28 | return -ENOMEM; | 28 | return -ENOMEM; |
29 | } | 29 | } |
30 | p->size = size; | 30 | p->size = size; |
diff --git a/drivers/media/dvb/ttpci/budget-av.c b/drivers/media/dvb/ttpci/budget-av.c index 6e0f5d307c52..9746d2bb916f 100644 --- a/drivers/media/dvb/ttpci/budget-av.c +++ b/drivers/media/dvb/ttpci/budget-av.c | |||
@@ -570,9 +570,9 @@ static int philips_cu1216_pll_set(struct dvb_frontend *fe, struct dvb_frontend_p | |||
570 | 570 | ||
571 | buf[0] = (div >> 8) & 0x7f; | 571 | buf[0] = (div >> 8) & 0x7f; |
572 | buf[1] = div & 0xff; | 572 | buf[1] = div & 0xff; |
573 | buf[2] = 0x8e; | 573 | buf[2] = 0x86; |
574 | buf[3] = (params->frequency < 174500000 ? 0xa1 : | 574 | buf[3] = (params->frequency < 150000000 ? 0x01 : |
575 | params->frequency < 454000000 ? 0x92 : 0x34); | 575 | params->frequency < 445000000 ? 0x02 : 0x04); |
576 | 576 | ||
577 | if (i2c_transfer(&budget->i2c_adap, &msg, 1) != 1) | 577 | if (i2c_transfer(&budget->i2c_adap, &msg, 1) != 1) |
578 | return -EIO; | 578 | return -EIO; |
@@ -695,8 +695,12 @@ static struct tda1004x_config philips_tu1216_config = { | |||
695 | .demod_address = 0x8, | 695 | .demod_address = 0x8, |
696 | .invert = 1, | 696 | .invert = 1, |
697 | .invert_oclk = 1, | 697 | .invert_oclk = 1, |
698 | .xtal_freq = TDA10046_XTAL_4M, | ||
699 | .agc_config = TDA10046_AGC_DEFAULT, | ||
700 | .if_freq = TDA10046_FREQ_3617, | ||
698 | .pll_init = philips_tu1216_pll_init, | 701 | .pll_init = philips_tu1216_pll_init, |
699 | .pll_set = philips_tu1216_pll_set, | 702 | .pll_set = philips_tu1216_pll_set, |
703 | .pll_sleep = NULL, | ||
700 | .request_firmware = philips_tu1216_request_firmware, | 704 | .request_firmware = philips_tu1216_request_firmware, |
701 | }; | 705 | }; |
702 | 706 | ||
@@ -1018,7 +1022,7 @@ static struct pci_device_id pci_tbl[] = { | |||
1018 | MODULE_DEVICE_TABLE(pci, pci_tbl); | 1022 | MODULE_DEVICE_TABLE(pci, pci_tbl); |
1019 | 1023 | ||
1020 | static struct saa7146_extension budget_extension = { | 1024 | static struct saa7146_extension budget_extension = { |
1021 | .name = "budget dvb /w video in\0", | 1025 | .name = "budget_av", |
1022 | .pci_tbl = pci_tbl, | 1026 | .pci_tbl = pci_tbl, |
1023 | 1027 | ||
1024 | .module = THIS_MODULE, | 1028 | .module = THIS_MODULE, |
diff --git a/drivers/media/dvb/ttpci/budget-ci.c b/drivers/media/dvb/ttpci/budget-ci.c index dce116111376..a1267054bc01 100644 --- a/drivers/media/dvb/ttpci/budget-ci.c +++ b/drivers/media/dvb/ttpci/budget-ci.c | |||
@@ -69,6 +69,7 @@ struct budget_ci { | |||
69 | int slot_status; | 69 | int slot_status; |
70 | struct dvb_ca_en50221 ca; | 70 | struct dvb_ca_en50221 ca; |
71 | char ir_dev_name[50]; | 71 | char ir_dev_name[50]; |
72 | u8 tuner_pll_address; /* used for philips_tdm1316l configs */ | ||
72 | }; | 73 | }; |
73 | 74 | ||
74 | /* from reading the following remotes: | 75 | /* from reading the following remotes: |
@@ -723,7 +724,7 @@ static int philips_tdm1316l_pll_init(struct dvb_frontend *fe) | |||
723 | struct budget_ci *budget_ci = (struct budget_ci *) fe->dvb->priv; | 724 | struct budget_ci *budget_ci = (struct budget_ci *) fe->dvb->priv; |
724 | static u8 td1316_init[] = { 0x0b, 0xf5, 0x85, 0xab }; | 725 | static u8 td1316_init[] = { 0x0b, 0xf5, 0x85, 0xab }; |
725 | static u8 disable_mc44BC374c[] = { 0x1d, 0x74, 0xa0, 0x68 }; | 726 | static u8 disable_mc44BC374c[] = { 0x1d, 0x74, 0xa0, 0x68 }; |
726 | struct i2c_msg tuner_msg = {.addr = 0x63,.flags = 0,.buf = td1316_init,.len = | 727 | struct i2c_msg tuner_msg = {.addr = budget_ci->tuner_pll_address,.flags = 0,.buf = td1316_init,.len = |
727 | sizeof(td1316_init) }; | 728 | sizeof(td1316_init) }; |
728 | 729 | ||
729 | // setup PLL configuration | 730 | // setup PLL configuration |
@@ -746,7 +747,7 @@ static int philips_tdm1316l_pll_set(struct dvb_frontend *fe, struct dvb_frontend | |||
746 | { | 747 | { |
747 | struct budget_ci *budget_ci = (struct budget_ci *) fe->dvb->priv; | 748 | struct budget_ci *budget_ci = (struct budget_ci *) fe->dvb->priv; |
748 | u8 tuner_buf[4]; | 749 | u8 tuner_buf[4]; |
749 | struct i2c_msg tuner_msg = {.addr = 0x63,.flags = 0,.buf = tuner_buf,.len = sizeof(tuner_buf) }; | 750 | struct i2c_msg tuner_msg = {.addr = budget_ci->tuner_pll_address,.flags = 0,.buf = tuner_buf,.len = sizeof(tuner_buf) }; |
750 | int tuner_frequency = 0; | 751 | int tuner_frequency = 0; |
751 | u8 band, cp, filter; | 752 | u8 band, cp, filter; |
752 | 753 | ||
@@ -838,8 +839,12 @@ static struct tda1004x_config philips_tdm1316l_config = { | |||
838 | .demod_address = 0x8, | 839 | .demod_address = 0x8, |
839 | .invert = 0, | 840 | .invert = 0, |
840 | .invert_oclk = 0, | 841 | .invert_oclk = 0, |
842 | .xtal_freq = TDA10046_XTAL_4M, | ||
843 | .agc_config = TDA10046_AGC_DEFAULT, | ||
844 | .if_freq = TDA10046_FREQ_3617, | ||
841 | .pll_init = philips_tdm1316l_pll_init, | 845 | .pll_init = philips_tdm1316l_pll_init, |
842 | .pll_set = philips_tdm1316l_pll_set, | 846 | .pll_set = philips_tdm1316l_pll_set, |
847 | .pll_sleep = NULL, | ||
843 | .request_firmware = philips_tdm1316l_request_firmware, | 848 | .request_firmware = philips_tdm1316l_request_firmware, |
844 | }; | 849 | }; |
845 | 850 | ||
@@ -865,12 +870,22 @@ static void frontend_init(struct budget_ci *budget_ci) | |||
865 | break; | 870 | break; |
866 | 871 | ||
867 | case 0x1011: // Hauppauge/TT Nova-T budget (tda10045/Philips tdm1316l(tda6651tt) + TDA9889) | 872 | case 0x1011: // Hauppauge/TT Nova-T budget (tda10045/Philips tdm1316l(tda6651tt) + TDA9889) |
873 | budget_ci->tuner_pll_address = 0x63; | ||
868 | budget_ci->budget.dvb_frontend = | 874 | budget_ci->budget.dvb_frontend = |
869 | tda10045_attach(&philips_tdm1316l_config, &budget_ci->budget.i2c_adap); | 875 | tda10045_attach(&philips_tdm1316l_config, &budget_ci->budget.i2c_adap); |
870 | if (budget_ci->budget.dvb_frontend) { | 876 | if (budget_ci->budget.dvb_frontend) { |
871 | break; | 877 | break; |
872 | } | 878 | } |
873 | break; | 879 | break; |
880 | |||
881 | case 0x1012: // Hauppauge/TT Nova-T CI budget (tda10045/Philips tdm1316l(tda6651tt) + TDA9889) | ||
882 | budget_ci->tuner_pll_address = 0x60; | ||
883 | budget_ci->budget.dvb_frontend = | ||
884 | tda10046_attach(&philips_tdm1316l_config, &budget_ci->budget.i2c_adap); | ||
885 | if (budget_ci->budget.dvb_frontend) { | ||
886 | break; | ||
887 | } | ||
888 | break; | ||
874 | } | 889 | } |
875 | 890 | ||
876 | if (budget_ci->budget.dvb_frontend == NULL) { | 891 | if (budget_ci->budget.dvb_frontend == NULL) { |
@@ -950,11 +965,13 @@ static struct saa7146_extension budget_extension; | |||
950 | 965 | ||
951 | MAKE_BUDGET_INFO(ttbci, "TT-Budget/WinTV-NOVA-CI PCI", BUDGET_TT_HW_DISEQC); | 966 | MAKE_BUDGET_INFO(ttbci, "TT-Budget/WinTV-NOVA-CI PCI", BUDGET_TT_HW_DISEQC); |
952 | MAKE_BUDGET_INFO(ttbt2, "TT-Budget/WinTV-NOVA-T PCI", BUDGET_TT); | 967 | MAKE_BUDGET_INFO(ttbt2, "TT-Budget/WinTV-NOVA-T PCI", BUDGET_TT); |
968 | MAKE_BUDGET_INFO(ttbtci, "TT-Budget-T-CI PCI", BUDGET_TT); | ||
953 | 969 | ||
954 | static struct pci_device_id pci_tbl[] = { | 970 | static struct pci_device_id pci_tbl[] = { |
955 | MAKE_EXTENSION_PCI(ttbci, 0x13c2, 0x100c), | 971 | MAKE_EXTENSION_PCI(ttbci, 0x13c2, 0x100c), |
956 | MAKE_EXTENSION_PCI(ttbci, 0x13c2, 0x100f), | 972 | MAKE_EXTENSION_PCI(ttbci, 0x13c2, 0x100f), |
957 | MAKE_EXTENSION_PCI(ttbt2, 0x13c2, 0x1011), | 973 | MAKE_EXTENSION_PCI(ttbt2, 0x13c2, 0x1011), |
974 | MAKE_EXTENSION_PCI(ttbtci, 0x13c2, 0x1012), | ||
958 | { | 975 | { |
959 | .vendor = 0, | 976 | .vendor = 0, |
960 | } | 977 | } |
diff --git a/drivers/media/dvb/ttpci/budget.c b/drivers/media/dvb/ttpci/budget.c index 083fd44e5f90..9961917e8a7f 100644 --- a/drivers/media/dvb/ttpci/budget.c +++ b/drivers/media/dvb/ttpci/budget.c | |||
@@ -40,6 +40,7 @@ | |||
40 | #include "ves1820.h" | 40 | #include "ves1820.h" |
41 | #include "l64781.h" | 41 | #include "l64781.h" |
42 | #include "tda8083.h" | 42 | #include "tda8083.h" |
43 | #include "s5h1420.h" | ||
43 | 44 | ||
44 | static void Set22K (struct budget *budget, int state) | 45 | static void Set22K (struct budget *budget, int state) |
45 | { | 46 | { |
@@ -177,6 +178,62 @@ static int budget_diseqc_send_burst(struct dvb_frontend* fe, fe_sec_mini_cmd_t m | |||
177 | return 0; | 178 | return 0; |
178 | } | 179 | } |
179 | 180 | ||
181 | static int lnbp21_set_voltage(struct dvb_frontend* fe, fe_sec_voltage_t voltage) | ||
182 | { | ||
183 | struct budget* budget = (struct budget*) fe->dvb->priv; | ||
184 | u8 buf; | ||
185 | struct i2c_msg msg = { .addr = 0x08, .flags = I2C_M_RD, .buf = &buf, .len = sizeof(buf) }; | ||
186 | |||
187 | if (i2c_transfer (&budget->i2c_adap, &msg, 1) != 1) return -EIO; | ||
188 | |||
189 | switch(voltage) { | ||
190 | case SEC_VOLTAGE_13: | ||
191 | buf = (buf & 0xf7) | 0x04; | ||
192 | break; | ||
193 | |||
194 | case SEC_VOLTAGE_18: | ||
195 | buf = (buf & 0xf7) | 0x0c; | ||
196 | break; | ||
197 | |||
198 | case SEC_VOLTAGE_OFF: | ||
199 | buf = buf & 0xf0; | ||
200 | break; | ||
201 | } | ||
202 | |||
203 | msg.flags = 0; | ||
204 | if (i2c_transfer (&budget->i2c_adap, &msg, 1) != 1) return -EIO; | ||
205 | |||
206 | return 0; | ||
207 | } | ||
208 | |||
209 | static int lnbp21_enable_high_lnb_voltage(struct dvb_frontend* fe, int arg) | ||
210 | { | ||
211 | struct budget* budget = (struct budget*) fe->dvb->priv; | ||
212 | u8 buf; | ||
213 | struct i2c_msg msg = { .addr = 0x08, .flags = I2C_M_RD, .buf = &buf, .len = sizeof(buf) }; | ||
214 | |||
215 | if (i2c_transfer (&budget->i2c_adap, &msg, 1) != 1) return -EIO; | ||
216 | |||
217 | if (arg) { | ||
218 | buf = buf | 0x10; | ||
219 | } else { | ||
220 | buf = buf & 0xef; | ||
221 | } | ||
222 | |||
223 | msg.flags = 0; | ||
224 | if (i2c_transfer (&budget->i2c_adap, &msg, 1) != 1) return -EIO; | ||
225 | |||
226 | return 0; | ||
227 | } | ||
228 | |||
229 | static void lnbp21_init(struct budget* budget) | ||
230 | { | ||
231 | u8 buf = 0x00; | ||
232 | struct i2c_msg msg = { .addr = 0x08, .flags = 0, .buf = &buf, .len = sizeof(buf) }; | ||
233 | |||
234 | i2c_transfer (&budget->i2c_adap, &msg, 1); | ||
235 | } | ||
236 | |||
180 | static int alps_bsrv2_pll_set(struct dvb_frontend* fe, struct dvb_frontend_parameters* params) | 237 | static int alps_bsrv2_pll_set(struct dvb_frontend* fe, struct dvb_frontend_parameters* params) |
181 | { | 238 | { |
182 | struct budget* budget = (struct budget*) fe->dvb->priv; | 239 | struct budget* budget = (struct budget*) fe->dvb->priv; |
@@ -395,6 +452,38 @@ static struct tda8083_config grundig_29504_451_config = { | |||
395 | .pll_set = grundig_29504_451_pll_set, | 452 | .pll_set = grundig_29504_451_pll_set, |
396 | }; | 453 | }; |
397 | 454 | ||
455 | static int s5h1420_pll_set(struct dvb_frontend* fe, struct dvb_frontend_parameters* params, u32* freqout) | ||
456 | { | ||
457 | struct budget* budget = (struct budget*) fe->dvb->priv; | ||
458 | u32 div; | ||
459 | u8 data[4]; | ||
460 | struct i2c_msg msg = { .addr = 0x61, .flags = 0, .buf = data, .len = sizeof(data) }; | ||
461 | |||
462 | div = params->frequency / 1000; | ||
463 | data[0] = (div >> 8) & 0x7f; | ||
464 | data[1] = div & 0xff; | ||
465 | data[2] = 0xc2; | ||
466 | |||
467 | if (div < 1450) | ||
468 | data[3] = 0x00; | ||
469 | else if (div < 1850) | ||
470 | data[3] = 0x40; | ||
471 | else if (div < 2000) | ||
472 | data[3] = 0x80; | ||
473 | else | ||
474 | data[3] = 0xc0; | ||
475 | |||
476 | if (i2c_transfer (&budget->i2c_adap, &msg, 1) != 1) return -EIO; | ||
477 | |||
478 | *freqout = div * 1000; | ||
479 | return 0; | ||
480 | } | ||
481 | |||
482 | static struct s5h1420_config s5h1420_config = { | ||
483 | .demod_address = 0x53, | ||
484 | .pll_set = s5h1420_pll_set, | ||
485 | }; | ||
486 | |||
398 | static u8 read_pwm(struct budget* budget) | 487 | static u8 read_pwm(struct budget* budget) |
399 | { | 488 | { |
400 | u8 b = 0xff; | 489 | u8 b = 0xff; |
@@ -459,6 +548,15 @@ static void frontend_init(struct budget *budget) | |||
459 | break; | 548 | break; |
460 | } | 549 | } |
461 | break; | 550 | break; |
551 | |||
552 | case 0x1016: // Hauppauge/TT Nova-S SE (samsung s5h1420/????(tda8260)) | ||
553 | budget->dvb_frontend = s5h1420_attach(&s5h1420_config, &budget->i2c_adap); | ||
554 | if (budget->dvb_frontend) { | ||
555 | budget->dvb_frontend->ops->set_voltage = lnbp21_set_voltage; | ||
556 | budget->dvb_frontend->ops->enable_high_lnb_voltage = lnbp21_enable_high_lnb_voltage; | ||
557 | lnbp21_init(budget); | ||
558 | break; | ||
559 | } | ||
462 | } | 560 | } |
463 | 561 | ||
464 | if (budget->dvb_frontend == NULL) { | 562 | if (budget->dvb_frontend == NULL) { |
@@ -532,6 +630,7 @@ static struct pci_device_id pci_tbl[] = { | |||
532 | MAKE_EXTENSION_PCI(ttbc, 0x13c2, 0x1004), | 630 | MAKE_EXTENSION_PCI(ttbc, 0x13c2, 0x1004), |
533 | MAKE_EXTENSION_PCI(ttbt, 0x13c2, 0x1005), | 631 | MAKE_EXTENSION_PCI(ttbt, 0x13c2, 0x1005), |
534 | MAKE_EXTENSION_PCI(satel, 0x13c2, 0x1013), | 632 | MAKE_EXTENSION_PCI(satel, 0x13c2, 0x1013), |
633 | MAKE_EXTENSION_PCI(ttbs, 0x13c2, 0x1016), | ||
535 | MAKE_EXTENSION_PCI(fsacs1,0x1131, 0x4f60), | 634 | MAKE_EXTENSION_PCI(fsacs1,0x1131, 0x4f60), |
536 | MAKE_EXTENSION_PCI(fsacs0,0x1131, 0x4f61), | 635 | MAKE_EXTENSION_PCI(fsacs0,0x1131, 0x4f61), |
537 | { | 636 | { |
diff --git a/drivers/media/dvb/ttusb-budget/Kconfig b/drivers/media/dvb/ttusb-budget/Kconfig index 4aa714ab4c28..c6c1d41a2efb 100644 --- a/drivers/media/dvb/ttusb-budget/Kconfig +++ b/drivers/media/dvb/ttusb-budget/Kconfig | |||
@@ -3,6 +3,7 @@ config DVB_TTUSB_BUDGET | |||
3 | depends on DVB_CORE && USB | 3 | depends on DVB_CORE && USB |
4 | select DVB_CX22700 | 4 | select DVB_CX22700 |
5 | select DVB_TDA1004X | 5 | select DVB_TDA1004X |
6 | select DVB_VES1820 | ||
6 | select DVB_TDA8083 | 7 | select DVB_TDA8083 |
7 | select DVB_STV0299 | 8 | select DVB_STV0299 |
8 | help | 9 | help |
diff --git a/drivers/media/dvb/ttusb-budget/dvb-ttusb-budget.c b/drivers/media/dvb/ttusb-budget/dvb-ttusb-budget.c index afa0e7a0e506..aa43b5fcb8e7 100644 --- a/drivers/media/dvb/ttusb-budget/dvb-ttusb-budget.c +++ b/drivers/media/dvb/ttusb-budget/dvb-ttusb-budget.c | |||
@@ -24,6 +24,7 @@ | |||
24 | #include "dmxdev.h" | 24 | #include "dmxdev.h" |
25 | #include "dvb_demux.h" | 25 | #include "dvb_demux.h" |
26 | #include "dvb_net.h" | 26 | #include "dvb_net.h" |
27 | #include "ves1820.h" | ||
27 | #include "cx22700.h" | 28 | #include "cx22700.h" |
28 | #include "tda1004x.h" | 29 | #include "tda1004x.h" |
29 | #include "stv0299.h" | 30 | #include "stv0299.h" |
@@ -1367,6 +1368,47 @@ static struct tda8083_config ttusb_novas_grundig_29504_491_config = { | |||
1367 | .pll_set = ttusb_novas_grundig_29504_491_pll_set, | 1368 | .pll_set = ttusb_novas_grundig_29504_491_pll_set, |
1368 | }; | 1369 | }; |
1369 | 1370 | ||
1371 | static int alps_tdbe2_pll_set(struct dvb_frontend* fe, struct dvb_frontend_parameters* params) | ||
1372 | { | ||
1373 | struct ttusb* ttusb = fe->dvb->priv; | ||
1374 | u32 div; | ||
1375 | u8 data[4]; | ||
1376 | struct i2c_msg msg = { .addr = 0x62, .flags = 0, .buf = data, .len = sizeof(data) }; | ||
1377 | |||
1378 | div = (params->frequency + 35937500 + 31250) / 62500; | ||
1379 | |||
1380 | data[0] = (div >> 8) & 0x7f; | ||
1381 | data[1] = div & 0xff; | ||
1382 | data[2] = 0x85 | ((div >> 10) & 0x60); | ||
1383 | data[3] = (params->frequency < 174000000 ? 0x88 : params->frequency < 470000000 ? 0x84 : 0x81); | ||
1384 | |||
1385 | if (i2c_transfer (&ttusb->i2c_adap, &msg, 1) != 1) | ||
1386 | return -EIO; | ||
1387 | |||
1388 | return 0; | ||
1389 | } | ||
1390 | |||
1391 | |||
1392 | static struct ves1820_config alps_tdbe2_config = { | ||
1393 | .demod_address = 0x09, | ||
1394 | .xin = 57840000UL, | ||
1395 | .invert = 1, | ||
1396 | .selagc = VES1820_SELAGC_SIGNAMPERR, | ||
1397 | .pll_set = alps_tdbe2_pll_set, | ||
1398 | }; | ||
1399 | |||
1400 | static u8 read_pwm(struct ttusb* ttusb) | ||
1401 | { | ||
1402 | u8 b = 0xff; | ||
1403 | u8 pwm; | ||
1404 | struct i2c_msg msg[] = { { .addr = 0x50,.flags = 0,.buf = &b,.len = 1 }, | ||
1405 | { .addr = 0x50,.flags = I2C_M_RD,.buf = &pwm,.len = 1} }; | ||
1406 | |||
1407 | if ((i2c_transfer(&ttusb->i2c_adap, msg, 2) != 2) || (pwm == 0xff)) | ||
1408 | pwm = 0x48; | ||
1409 | |||
1410 | return pwm; | ||
1411 | } | ||
1370 | 1412 | ||
1371 | 1413 | ||
1372 | static void frontend_init(struct ttusb* ttusb) | 1414 | static void frontend_init(struct ttusb* ttusb) |
@@ -1394,6 +1436,12 @@ static void frontend_init(struct ttusb* ttusb) | |||
1394 | 1436 | ||
1395 | break; | 1437 | break; |
1396 | 1438 | ||
1439 | case 0x1004: // Hauppauge/TT DVB-C budget (ves1820/ALPS TDBE2(sp5659)) | ||
1440 | ttusb->fe = ves1820_attach(&alps_tdbe2_config, &ttusb->i2c_adap, read_pwm(ttusb)); | ||
1441 | if (ttusb->fe != NULL) | ||
1442 | break; | ||
1443 | break; | ||
1444 | |||
1397 | case 0x1005: // Hauppauge/TT Nova-USB-t budget (tda10046/Philips td1316(tda6651tt) OR cx22700/ALPS TDMB7(??)) | 1445 | case 0x1005: // Hauppauge/TT Nova-USB-t budget (tda10046/Philips td1316(tda6651tt) OR cx22700/ALPS TDMB7(??)) |
1398 | // try the ALPS TDMB7 first | 1446 | // try the ALPS TDMB7 first |
1399 | ttusb->fe = cx22700_attach(&alps_tdmb7_config, &ttusb->i2c_adap); | 1447 | ttusb->fe = cx22700_attach(&alps_tdmb7_config, &ttusb->i2c_adap); |
@@ -1570,7 +1618,7 @@ static void ttusb_disconnect(struct usb_interface *intf) | |||
1570 | 1618 | ||
1571 | static struct usb_device_id ttusb_table[] = { | 1619 | static struct usb_device_id ttusb_table[] = { |
1572 | {USB_DEVICE(0xb48, 0x1003)}, | 1620 | {USB_DEVICE(0xb48, 0x1003)}, |
1573 | /* {USB_DEVICE(0xb48, 0x1004)},UNDEFINED HARDWARE - mail linuxtv.org list*/ /* to be confirmed ???? */ | 1621 | {USB_DEVICE(0xb48, 0x1004)}, |
1574 | {USB_DEVICE(0xb48, 0x1005)}, | 1622 | {USB_DEVICE(0xb48, 0x1005)}, |
1575 | {} | 1623 | {} |
1576 | }; | 1624 | }; |
@@ -1578,7 +1626,7 @@ static struct usb_device_id ttusb_table[] = { | |||
1578 | MODULE_DEVICE_TABLE(usb, ttusb_table); | 1626 | MODULE_DEVICE_TABLE(usb, ttusb_table); |
1579 | 1627 | ||
1580 | static struct usb_driver ttusb_driver = { | 1628 | static struct usb_driver ttusb_driver = { |
1581 | .name = "Technotrend/Hauppauge USB-Nova", | 1629 | .name = "ttusb", |
1582 | .probe = ttusb_probe, | 1630 | .probe = ttusb_probe, |
1583 | .disconnect = ttusb_disconnect, | 1631 | .disconnect = ttusb_disconnect, |
1584 | .id_table = ttusb_table, | 1632 | .id_table = ttusb_table, |
diff --git a/drivers/media/dvb/ttusb-dec/ttusb_dec.c b/drivers/media/dvb/ttusb-dec/ttusb_dec.c index 505bdaff5a7e..45c9a9a08e4d 100644 --- a/drivers/media/dvb/ttusb-dec/ttusb_dec.c +++ b/drivers/media/dvb/ttusb-dec/ttusb_dec.c | |||
@@ -1281,6 +1281,7 @@ static int ttusb_dec_boot_dsp(struct ttusb_dec *dec) | |||
1281 | if (firmware_size < 60) { | 1281 | if (firmware_size < 60) { |
1282 | printk("%s: firmware size too small for DSP code (%zu < 60).\n", | 1282 | printk("%s: firmware size too small for DSP code (%zu < 60).\n", |
1283 | __FUNCTION__, firmware_size); | 1283 | __FUNCTION__, firmware_size); |
1284 | release_firmware(fw_entry); | ||
1284 | return -1; | 1285 | return -1; |
1285 | } | 1286 | } |
1286 | 1287 | ||
@@ -1294,6 +1295,7 @@ static int ttusb_dec_boot_dsp(struct ttusb_dec *dec) | |||
1294 | printk("%s: crc32 check of DSP code failed (calculated " | 1295 | printk("%s: crc32 check of DSP code failed (calculated " |
1295 | "0x%08x != 0x%08x in file), file invalid.\n", | 1296 | "0x%08x != 0x%08x in file), file invalid.\n", |
1296 | __FUNCTION__, crc32_csum, crc32_check); | 1297 | __FUNCTION__, crc32_csum, crc32_check); |
1298 | release_firmware(fw_entry); | ||
1297 | return -1; | 1299 | return -1; |
1298 | } | 1300 | } |
1299 | memcpy(idstring, &firmware[36], 20); | 1301 | memcpy(idstring, &firmware[36], 20); |
@@ -1308,15 +1310,19 @@ static int ttusb_dec_boot_dsp(struct ttusb_dec *dec) | |||
1308 | 1310 | ||
1309 | result = ttusb_dec_send_command(dec, 0x41, sizeof(b0), b0, NULL, NULL); | 1311 | result = ttusb_dec_send_command(dec, 0x41, sizeof(b0), b0, NULL, NULL); |
1310 | 1312 | ||
1311 | if (result) | 1313 | if (result) { |
1314 | release_firmware(fw_entry); | ||
1312 | return result; | 1315 | return result; |
1316 | } | ||
1313 | 1317 | ||
1314 | trans_count = 0; | 1318 | trans_count = 0; |
1315 | j = 0; | 1319 | j = 0; |
1316 | 1320 | ||
1317 | b = kmalloc(ARM_PACKET_SIZE, GFP_KERNEL); | 1321 | b = kmalloc(ARM_PACKET_SIZE, GFP_KERNEL); |
1318 | if (b == NULL) | 1322 | if (b == NULL) { |
1323 | release_firmware(fw_entry); | ||
1319 | return -ENOMEM; | 1324 | return -ENOMEM; |
1325 | } | ||
1320 | 1326 | ||
1321 | for (i = 0; i < firmware_size; i += COMMAND_PACKET_SIZE) { | 1327 | for (i = 0; i < firmware_size; i += COMMAND_PACKET_SIZE) { |
1322 | size = firmware_size - i; | 1328 | size = firmware_size - i; |
@@ -1345,6 +1351,7 @@ static int ttusb_dec_boot_dsp(struct ttusb_dec *dec) | |||
1345 | 1351 | ||
1346 | result = ttusb_dec_send_command(dec, 0x43, sizeof(b1), b1, NULL, NULL); | 1352 | result = ttusb_dec_send_command(dec, 0x43, sizeof(b1), b1, NULL, NULL); |
1347 | 1353 | ||
1354 | release_firmware(fw_entry); | ||
1348 | kfree(b); | 1355 | kfree(b); |
1349 | 1356 | ||
1350 | return result; | 1357 | return result; |
diff --git a/drivers/media/dvb/ttusb-dec/ttusbdecfe.c b/drivers/media/dvb/ttusb-dec/ttusbdecfe.c index 1699cc9f6bb0..725af3af5b27 100644 --- a/drivers/media/dvb/ttusb-dec/ttusbdecfe.c +++ b/drivers/media/dvb/ttusb-dec/ttusbdecfe.c | |||
@@ -157,7 +157,8 @@ struct dvb_frontend* ttusbdecfe_dvbt_attach(const struct ttusbdecfe_config* conf | |||
157 | 157 | ||
158 | /* allocate memory for the internal state */ | 158 | /* allocate memory for the internal state */ |
159 | state = (struct ttusbdecfe_state*) kmalloc(sizeof(struct ttusbdecfe_state), GFP_KERNEL); | 159 | state = (struct ttusbdecfe_state*) kmalloc(sizeof(struct ttusbdecfe_state), GFP_KERNEL); |
160 | if (state == NULL) goto error; | 160 | if (state == NULL) |
161 | return NULL; | ||
161 | 162 | ||
162 | /* setup the state */ | 163 | /* setup the state */ |
163 | state->config = config; | 164 | state->config = config; |
@@ -167,10 +168,6 @@ struct dvb_frontend* ttusbdecfe_dvbt_attach(const struct ttusbdecfe_config* conf | |||
167 | state->frontend.ops = &state->ops; | 168 | state->frontend.ops = &state->ops; |
168 | state->frontend.demodulator_priv = state; | 169 | state->frontend.demodulator_priv = state; |
169 | return &state->frontend; | 170 | return &state->frontend; |
170 | |||
171 | error: | ||
172 | kfree(state); | ||
173 | return NULL; | ||
174 | } | 171 | } |
175 | 172 | ||
176 | static struct dvb_frontend_ops ttusbdecfe_dvbs_ops; | 173 | static struct dvb_frontend_ops ttusbdecfe_dvbs_ops; |
@@ -181,7 +178,8 @@ struct dvb_frontend* ttusbdecfe_dvbs_attach(const struct ttusbdecfe_config* conf | |||
181 | 178 | ||
182 | /* allocate memory for the internal state */ | 179 | /* allocate memory for the internal state */ |
183 | state = (struct ttusbdecfe_state*) kmalloc(sizeof(struct ttusbdecfe_state), GFP_KERNEL); | 180 | state = (struct ttusbdecfe_state*) kmalloc(sizeof(struct ttusbdecfe_state), GFP_KERNEL); |
184 | if (state == NULL) goto error; | 181 | if (state == NULL) |
182 | return NULL; | ||
185 | 183 | ||
186 | /* setup the state */ | 184 | /* setup the state */ |
187 | state->config = config; | 185 | state->config = config; |
@@ -193,10 +191,6 @@ struct dvb_frontend* ttusbdecfe_dvbs_attach(const struct ttusbdecfe_config* conf | |||
193 | state->frontend.ops = &state->ops; | 191 | state->frontend.ops = &state->ops; |
194 | state->frontend.demodulator_priv = state; | 192 | state->frontend.demodulator_priv = state; |
195 | return &state->frontend; | 193 | return &state->frontend; |
196 | |||
197 | error: | ||
198 | kfree(state); | ||
199 | return NULL; | ||
200 | } | 194 | } |
201 | 195 | ||
202 | static struct dvb_frontend_ops ttusbdecfe_dvbt_ops = { | 196 | static struct dvb_frontend_ops ttusbdecfe_dvbt_ops = { |
diff --git a/drivers/media/video/Kconfig b/drivers/media/video/Kconfig index 1b70f8b0feb9..f461750c7646 100644 --- a/drivers/media/video/Kconfig +++ b/drivers/media/video/Kconfig | |||
@@ -7,19 +7,6 @@ menu "Video For Linux" | |||
7 | 7 | ||
8 | comment "Video Adapters" | 8 | comment "Video Adapters" |
9 | 9 | ||
10 | config TUNER_MULTI_I2C | ||
11 | bool "Enable support for multiple I2C devices on Video Adapters (EXPERIMENTAL)" | ||
12 | depends on VIDEO_DEV && EXPERIMENTAL | ||
13 | ---help--- | ||
14 | Some video adapters have more than one tuner inside. This patch | ||
15 | enables support for using more than one tuner. This is required | ||
16 | for some cards to allow tunning both video and radio. | ||
17 | It also improves I2C autodetection for these cards. | ||
18 | |||
19 | Only few tuners currently is supporting this. More to come. | ||
20 | |||
21 | It is safe to say 'Y' here even if your card has only one I2C tuner. | ||
22 | |||
23 | config VIDEO_BT848 | 10 | config VIDEO_BT848 |
24 | tristate "BT848 Video For Linux" | 11 | tristate "BT848 Video For Linux" |
25 | depends on VIDEO_DEV && PCI && I2C | 12 | depends on VIDEO_DEV && PCI && I2C |
@@ -344,6 +331,7 @@ config VIDEO_CX88_DVB | |||
344 | select DVB_MT352 | 331 | select DVB_MT352 |
345 | select DVB_OR51132 | 332 | select DVB_OR51132 |
346 | select DVB_CX22702 | 333 | select DVB_CX22702 |
334 | select DVB_LGDT3302 | ||
347 | ---help--- | 335 | ---help--- |
348 | This adds support for DVB/ATSC cards based on the | 336 | This adds support for DVB/ATSC cards based on the |
349 | Connexant 2388x chip. | 337 | Connexant 2388x chip. |
diff --git a/drivers/media/video/bt832.c b/drivers/media/video/bt832.c index 9a642c7de545..a070417e65e6 100644 --- a/drivers/media/video/bt832.c +++ b/drivers/media/video/bt832.c | |||
@@ -138,25 +138,13 @@ int bt832_init(struct i2c_client *i2c_client_s) | |||
138 | 138 | ||
139 | bt832_hexdump(i2c_client_s,buf); | 139 | bt832_hexdump(i2c_client_s,buf); |
140 | 140 | ||
141 | #if 0 | ||
142 | // Full 30/25 Frame rate | ||
143 | printk("Full 30/25 Frame rate\n"); | ||
144 | buf[0]=BT832_VP_CONTROL0; // Reg.39 | ||
145 | buf[1]= 0x00; | ||
146 | if (2 != (rc = i2c_master_send(i2c_client_s,buf,2))) | ||
147 | printk("bt832: i2c i/o error FFR: rc == %d (should be 2)\n",rc); | ||
148 | |||
149 | bt832_hexdump(i2c_client_s,buf); | ||
150 | #endif | ||
151 | 141 | ||
152 | #if 1 | ||
153 | // for testing (even works when no camera attached) | 142 | // for testing (even works when no camera attached) |
154 | printk("bt832: *** Generate NTSC M Bars *****\n"); | 143 | printk("bt832: *** Generate NTSC M Bars *****\n"); |
155 | buf[0]=BT832_VP_TESTCONTROL0; // Reg. 42 | 144 | buf[0]=BT832_VP_TESTCONTROL0; // Reg. 42 |
156 | buf[1]=3; // Generate NTSC System M bars, Generate Frame timing internally | 145 | buf[1]=3; // Generate NTSC System M bars, Generate Frame timing internally |
157 | if (2 != (rc = i2c_master_send(i2c_client_s,buf,2))) | 146 | if (2 != (rc = i2c_master_send(i2c_client_s,buf,2))) |
158 | printk("bt832: i2c i/o error MBAR: rc == %d (should be 2)\n",rc); | 147 | printk("bt832: i2c i/o error MBAR: rc == %d (should be 2)\n",rc); |
159 | #endif | ||
160 | 148 | ||
161 | printk("Bt832: Camera Present: %s\n", | 149 | printk("Bt832: Camera Present: %s\n", |
162 | (buf[1+BT832_CAM_STATUS] & BT832_56_CAMERA_PRESENT) ? "yes":"no"); | 150 | (buf[1+BT832_CAM_STATUS] & BT832_56_CAMERA_PRESENT) ? "yes":"no"); |
diff --git a/drivers/media/video/bttv-cards.c b/drivers/media/video/bttv-cards.c index 251092e7f19f..2dbf5ec43abd 100644 --- a/drivers/media/video/bttv-cards.c +++ b/drivers/media/video/bttv-cards.c | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | $Id: bttv-cards.c,v 1.49 2005/06/10 17:20:24 mchehab Exp $ | 2 | $Id: bttv-cards.c,v 1.53 2005/07/05 17:37:35 nsh Exp $ |
3 | 3 | ||
4 | bttv-cards.c | 4 | bttv-cards.c |
5 | 5 | ||
@@ -39,9 +39,6 @@ | |||
39 | #include <asm/io.h> | 39 | #include <asm/io.h> |
40 | 40 | ||
41 | #include "bttvp.h" | 41 | #include "bttvp.h" |
42 | #if 0 /* not working yet */ | ||
43 | #include "bt832.h" | ||
44 | #endif | ||
45 | 42 | ||
46 | /* fwd decl */ | 43 | /* fwd decl */ |
47 | static void boot_msp34xx(struct bttv *btv, int pin); | 44 | static void boot_msp34xx(struct bttv *btv, int pin); |
@@ -513,13 +510,8 @@ struct tvcard bttv_tvcards[] = { | |||
513 | .svhs = 2, | 510 | .svhs = 2, |
514 | .gpiomask = 0x01fe00, | 511 | .gpiomask = 0x01fe00, |
515 | .muxsel = { 2, 3, 1, 1}, | 512 | .muxsel = { 2, 3, 1, 1}, |
516 | #if 0 | ||
517 | // old | ||
518 | .audiomux = { 0x01c000, 0, 0x018000, 0x014000, 0x002000, 0 }, | ||
519 | #else | ||
520 | // 2003-10-20 by "Anton A. Arapov" <arapov@mail.ru> | 513 | // 2003-10-20 by "Anton A. Arapov" <arapov@mail.ru> |
521 | .audiomux = { 0x001e00, 0, 0x018000, 0x014000, 0x002000, 0 }, | 514 | .audiomux = { 0x001e00, 0, 0x018000, 0x014000, 0x002000, 0 }, |
522 | #endif | ||
523 | .needs_tvaudio = 1, | 515 | .needs_tvaudio = 1, |
524 | .pll = PLL_28, | 516 | .pll = PLL_28, |
525 | .tuner_type = -1, | 517 | .tuner_type = -1, |
@@ -766,14 +758,9 @@ struct tvcard bttv_tvcards[] = { | |||
766 | .tuner = 0, | 758 | .tuner = 0, |
767 | .svhs = 2, | 759 | .svhs = 2, |
768 | .muxsel = { 2, 3, 1, 1, 0}, // TV, CVid, SVid, CVid over SVid connector | 760 | .muxsel = { 2, 3, 1, 1, 0}, // TV, CVid, SVid, CVid over SVid connector |
769 | #if 0 | ||
770 | .gpiomask = 0xc33000, | ||
771 | .audiomux = { 0x422000,0x1000,0x0000,0x620000,0x800000 }, | ||
772 | #else | ||
773 | /* Alexander Varakin <avarakin@hotmail.com> [stereo version] */ | 761 | /* Alexander Varakin <avarakin@hotmail.com> [stereo version] */ |
774 | .gpiomask = 0xb33000, | 762 | .gpiomask = 0xb33000, |
775 | .audiomux = { 0x122000,0x1000,0x0000,0x620000,0x800000 }, | 763 | .audiomux = { 0x122000,0x1000,0x0000,0x620000,0x800000 }, |
776 | #endif | ||
777 | /* Audio Routing for "WinFast 2000 XP" (no tv stereo !) | 764 | /* Audio Routing for "WinFast 2000 XP" (no tv stereo !) |
778 | gpio23 -- hef4052:nEnable (0x800000) | 765 | gpio23 -- hef4052:nEnable (0x800000) |
779 | gpio12 -- hef4052:A1 | 766 | gpio12 -- hef4052:A1 |
@@ -1603,20 +1590,11 @@ struct tvcard bttv_tvcards[] = { | |||
1603 | .video_inputs = 4, | 1590 | .video_inputs = 4, |
1604 | .audio_inputs = 1, | 1591 | .audio_inputs = 1, |
1605 | .tuner = -1, | 1592 | .tuner = -1, |
1606 | #if 0 /* TODO ... */ | ||
1607 | .svhs = OSPREY540_SVID_ANALOG, | ||
1608 | .muxsel = { [OSPREY540_COMP_ANALOG] = 2, | ||
1609 | [OSPREY540_SVID_ANALOG] = 3, }, | ||
1610 | #endif | ||
1611 | .pll = PLL_28, | 1593 | .pll = PLL_28, |
1612 | .tuner_type = -1, | 1594 | .tuner_type = -1, |
1613 | .no_msp34xx = 1, | 1595 | .no_msp34xx = 1, |
1614 | .no_tda9875 = 1, | 1596 | .no_tda9875 = 1, |
1615 | .no_tda7432 = 1, | 1597 | .no_tda7432 = 1, |
1616 | #if 0 /* TODO ... */ | ||
1617 | .muxsel_hook = osprey_540_muxsel, | ||
1618 | .picture_hook = osprey_540_set_picture, | ||
1619 | #endif | ||
1620 | },{ | 1598 | },{ |
1621 | 1599 | ||
1622 | /* ---- card 0x5C ---------------------------------- */ | 1600 | /* ---- card 0x5C ---------------------------------- */ |
@@ -2546,21 +2524,12 @@ static void eagle_muxsel(struct bttv *btv, unsigned int input) | |||
2546 | btaor((2)<<5, ~(3<<5), BT848_IFORM); | 2524 | btaor((2)<<5, ~(3<<5), BT848_IFORM); |
2547 | gpio_bits(3,bttv_tvcards[btv->c.type].muxsel[input&7]); | 2525 | gpio_bits(3,bttv_tvcards[btv->c.type].muxsel[input&7]); |
2548 | 2526 | ||
2549 | #if 0 | ||
2550 | /* svhs */ | ||
2551 | /* wake chroma ADC */ | ||
2552 | btand(~BT848_ADC_C_SLEEP, BT848_ADC); | ||
2553 | /* set to YC video */ | ||
2554 | btor(BT848_CONTROL_COMP, BT848_E_CONTROL); | ||
2555 | btor(BT848_CONTROL_COMP, BT848_O_CONTROL); | ||
2556 | #else | ||
2557 | /* composite */ | 2527 | /* composite */ |
2558 | /* set chroma ADC to sleep */ | 2528 | /* set chroma ADC to sleep */ |
2559 | btor(BT848_ADC_C_SLEEP, BT848_ADC); | 2529 | btor(BT848_ADC_C_SLEEP, BT848_ADC); |
2560 | /* set to composite video */ | 2530 | /* set to composite video */ |
2561 | btand(~BT848_CONTROL_COMP, BT848_E_CONTROL); | 2531 | btand(~BT848_CONTROL_COMP, BT848_E_CONTROL); |
2562 | btand(~BT848_CONTROL_COMP, BT848_O_CONTROL); | 2532 | btand(~BT848_CONTROL_COMP, BT848_O_CONTROL); |
2563 | #endif | ||
2564 | 2533 | ||
2565 | /* switch sync drive off */ | 2534 | /* switch sync drive off */ |
2566 | gpio_bits(LM1882_SYNC_DRIVE,LM1882_SYNC_DRIVE); | 2535 | gpio_bits(LM1882_SYNC_DRIVE,LM1882_SYNC_DRIVE); |
@@ -2813,10 +2782,18 @@ void __devinit bttv_init_card2(struct bttv *btv) | |||
2813 | btv->tuner_type = tuner[btv->c.nr]; | 2782 | btv->tuner_type = tuner[btv->c.nr]; |
2814 | printk("bttv%d: using tuner=%d\n",btv->c.nr,btv->tuner_type); | 2783 | printk("bttv%d: using tuner=%d\n",btv->c.nr,btv->tuner_type); |
2815 | if (btv->pinnacle_id != UNSET) | 2784 | if (btv->pinnacle_id != UNSET) |
2816 | bttv_call_i2c_clients(btv,AUDC_CONFIG_PINNACLE, | 2785 | bttv_call_i2c_clients(btv, AUDC_CONFIG_PINNACLE, |
2817 | &btv->pinnacle_id); | 2786 | &btv->pinnacle_id); |
2818 | if (btv->tuner_type != UNSET) | 2787 | if (btv->tuner_type != UNSET) { |
2819 | bttv_call_i2c_clients(btv,TUNER_SET_TYPE,&btv->tuner_type); | 2788 | struct tuner_setup tun_setup; |
2789 | |||
2790 | tun_setup.mode_mask = T_RADIO | T_ANALOG_TV | T_DIGITAL_TV; | ||
2791 | tun_setup.type = btv->tuner_type; | ||
2792 | tun_setup.addr = ADDR_UNSET; | ||
2793 | |||
2794 | bttv_call_i2c_clients(btv, TUNER_SET_TYPE_ADDR, &tun_setup); | ||
2795 | } | ||
2796 | |||
2820 | btv->svhs = bttv_tvcards[btv->c.type].svhs; | 2797 | btv->svhs = bttv_tvcards[btv->c.type].svhs; |
2821 | if (svhs[btv->c.nr] != UNSET) | 2798 | if (svhs[btv->c.nr] != UNSET) |
2822 | btv->svhs = svhs[btv->c.nr]; | 2799 | btv->svhs = svhs[btv->c.nr]; |
@@ -3125,14 +3102,6 @@ static int tuner_0_table[] = { | |||
3125 | TUNER_PHILIPS_SECAM, TUNER_PHILIPS_SECAM, | 3102 | TUNER_PHILIPS_SECAM, TUNER_PHILIPS_SECAM, |
3126 | TUNER_PHILIPS_SECAM, TUNER_PHILIPS_PAL, | 3103 | TUNER_PHILIPS_SECAM, TUNER_PHILIPS_PAL, |
3127 | TUNER_PHILIPS_FM1216ME_MK3 }; | 3104 | TUNER_PHILIPS_FM1216ME_MK3 }; |
3128 | #if 0 | ||
3129 | int tuner_0_fm_table[] = { | ||
3130 | PHILIPS_FR1236_NTSC, PHILIPS_FR1216_PAL, | ||
3131 | PHILIPS_FR1216_PAL, PHILIPS_FR1216_PAL, | ||
3132 | PHILIPS_FR1216_PAL, PHILIPS_FR1216_PAL, | ||
3133 | PHILIPS_FR1236_SECAM, PHILIPS_FR1236_SECAM, | ||
3134 | PHILIPS_FR1236_SECAM, PHILIPS_FR1216_PAL}; | ||
3135 | #endif | ||
3136 | 3105 | ||
3137 | static int tuner_1_table[] = { | 3106 | static int tuner_1_table[] = { |
3138 | TUNER_TEMIC_NTSC, TUNER_TEMIC_PAL, | 3107 | TUNER_TEMIC_NTSC, TUNER_TEMIC_PAL, |
@@ -3218,36 +3187,6 @@ static void __devinit boot_msp34xx(struct bttv *btv, int pin) | |||
3218 | 3187 | ||
3219 | static void __devinit boot_bt832(struct bttv *btv) | 3188 | static void __devinit boot_bt832(struct bttv *btv) |
3220 | { | 3189 | { |
3221 | #if 0 /* not working yet */ | ||
3222 | int resetbit=0; | ||
3223 | |||
3224 | switch (btv->c.type) { | ||
3225 | case BTTV_PXELVWPLTVPAK: | ||
3226 | resetbit = 0x400000; | ||
3227 | break; | ||
3228 | case BTTV_MODTEC_205: | ||
3229 | resetbit = 1<<9; | ||
3230 | break; | ||
3231 | default: | ||
3232 | BUG(); | ||
3233 | } | ||
3234 | |||
3235 | request_module("bt832"); | ||
3236 | bttv_call_i2c_clients(btv, BT832_HEXDUMP, NULL); | ||
3237 | |||
3238 | printk("bttv%d: Reset Bt832 [line=0x%x]\n",btv->c.nr,resetbit); | ||
3239 | gpio_write(0); | ||
3240 | gpio_inout(resetbit, resetbit); | ||
3241 | udelay(5); | ||
3242 | gpio_bits(resetbit, resetbit); | ||
3243 | udelay(5); | ||
3244 | gpio_bits(resetbit, 0); | ||
3245 | udelay(5); | ||
3246 | |||
3247 | // bt832 on pixelview changes from i2c 0x8a to 0x88 after | ||
3248 | // being reset as above. So we must follow by this: | ||
3249 | bttv_call_i2c_clients(btv, BT832_REATTACH, NULL); | ||
3250 | #endif | ||
3251 | } | 3190 | } |
3252 | 3191 | ||
3253 | /* ----------------------------------------------------------------------- */ | 3192 | /* ----------------------------------------------------------------------- */ |
@@ -3572,11 +3511,6 @@ void tea5757_set_freq(struct bttv *btv, unsigned short freq) | |||
3572 | { | 3511 | { |
3573 | dprintk("tea5757_set_freq %d\n",freq); | 3512 | dprintk("tea5757_set_freq %d\n",freq); |
3574 | tea5757_write(btv, 5 * freq + 0x358); /* add 10.7MHz (see docs) */ | 3513 | tea5757_write(btv, 5 * freq + 0x358); /* add 10.7MHz (see docs) */ |
3575 | #if 0 | ||
3576 | /* breaks Miro PCTV */ | ||
3577 | value = tea5757_read(btv); | ||
3578 | dprintk("bttv%d: tea5757 readback=0x%x\n",btv->c.nr,value); | ||
3579 | #endif | ||
3580 | } | 3514 | } |
3581 | 3515 | ||
3582 | 3516 | ||
@@ -3656,13 +3590,8 @@ gvbctv5pci_audio(struct bttv *btv, struct video_audio *v, int set) | |||
3656 | { | 3590 | { |
3657 | unsigned int val, con; | 3591 | unsigned int val, con; |
3658 | 3592 | ||
3659 | #if BTTV_VERSION_CODE > KERNEL_VERSION(0,8,0) | ||
3660 | if (btv->radio_user) | 3593 | if (btv->radio_user) |
3661 | return; | 3594 | return; |
3662 | #else | ||
3663 | if (btv->radio) | ||
3664 | return; | ||
3665 | #endif | ||
3666 | 3595 | ||
3667 | val = gpio_read(); | 3596 | val = gpio_read(); |
3668 | if (set) { | 3597 | if (set) { |
@@ -3851,13 +3780,8 @@ pvbt878p9b_audio(struct bttv *btv, struct video_audio *v, int set) | |||
3851 | { | 3780 | { |
3852 | unsigned int val = 0; | 3781 | unsigned int val = 0; |
3853 | 3782 | ||
3854 | #if BTTV_VERSION_CODE > KERNEL_VERSION(0,8,0) | ||
3855 | if (btv->radio_user) | 3783 | if (btv->radio_user) |
3856 | return; | 3784 | return; |
3857 | #else | ||
3858 | if (btv->radio) | ||
3859 | return; | ||
3860 | #endif | ||
3861 | 3785 | ||
3862 | if (set) { | 3786 | if (set) { |
3863 | if (v->mode & VIDEO_SOUND_MONO) { | 3787 | if (v->mode & VIDEO_SOUND_MONO) { |
@@ -3888,13 +3812,8 @@ fv2000s_audio(struct bttv *btv, struct video_audio *v, int set) | |||
3888 | { | 3812 | { |
3889 | unsigned int val = 0xffff; | 3813 | unsigned int val = 0xffff; |
3890 | 3814 | ||
3891 | #if BTTV_VERSION_CODE > KERNEL_VERSION(0,8,0) | ||
3892 | if (btv->radio_user) | 3815 | if (btv->radio_user) |
3893 | return; | 3816 | return; |
3894 | #else | ||
3895 | if (btv->radio) | ||
3896 | return; | ||
3897 | #endif | ||
3898 | if (set) { | 3817 | if (set) { |
3899 | if (v->mode & VIDEO_SOUND_MONO) { | 3818 | if (v->mode & VIDEO_SOUND_MONO) { |
3900 | val = 0x0000; | 3819 | val = 0x0000; |
@@ -4371,11 +4290,6 @@ void __devinit bttv_check_chipset(void) | |||
4371 | latency = 0x0A; | 4290 | latency = 0x0A; |
4372 | #endif | 4291 | #endif |
4373 | 4292 | ||
4374 | #if 0 | ||
4375 | /* print which chipset we have */ | ||
4376 | while ((dev = pci_find_class(PCI_CLASS_BRIDGE_HOST << 8,dev))) | ||
4377 | printk(KERN_INFO "bttv: Host bridge is %s\n",pci_name(dev)); | ||
4378 | #endif | ||
4379 | 4293 | ||
4380 | /* print warnings about any quirks found */ | 4294 | /* print warnings about any quirks found */ |
4381 | if (triton1) | 4295 | if (triton1) |
diff --git a/drivers/media/video/bttv-driver.c b/drivers/media/video/bttv-driver.c index 7d62b394c509..51a0f6d68e73 100644 --- a/drivers/media/video/bttv-driver.c +++ b/drivers/media/video/bttv-driver.c | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | $Id: bttv-driver.c,v 1.40 2005/06/16 21:38:45 nsh Exp $ | 2 | $Id: bttv-driver.c,v 1.42 2005/07/05 17:37:35 nsh Exp $ |
3 | 3 | ||
4 | bttv - Bt848 frame grabber driver | 4 | bttv - Bt848 frame grabber driver |
5 | 5 | ||
@@ -35,6 +35,7 @@ | |||
35 | #include <linux/sched.h> | 35 | #include <linux/sched.h> |
36 | #include <linux/interrupt.h> | 36 | #include <linux/interrupt.h> |
37 | #include <linux/kdev_t.h> | 37 | #include <linux/kdev_t.h> |
38 | #include <linux/dma-mapping.h> | ||
38 | 39 | ||
39 | #include <asm/io.h> | 40 | #include <asm/io.h> |
40 | #include <asm/byteorder.h> | 41 | #include <asm/byteorder.h> |
@@ -698,12 +699,10 @@ int locked_btres(struct bttv *btv, int bit) | |||
698 | static | 699 | static |
699 | void free_btres(struct bttv *btv, struct bttv_fh *fh, int bits) | 700 | void free_btres(struct bttv *btv, struct bttv_fh *fh, int bits) |
700 | { | 701 | { |
701 | #if 1 /* DEBUG */ | ||
702 | if ((fh->resources & bits) != bits) { | 702 | if ((fh->resources & bits) != bits) { |
703 | /* trying to free ressources not allocated by us ... */ | 703 | /* trying to free ressources not allocated by us ... */ |
704 | printk("bttv: BUG! (btres)\n"); | 704 | printk("bttv: BUG! (btres)\n"); |
705 | } | 705 | } |
706 | #endif | ||
707 | down(&btv->reslock); | 706 | down(&btv->reslock); |
708 | fh->resources &= ~bits; | 707 | fh->resources &= ~bits; |
709 | btv->resources &= ~bits; | 708 | btv->resources &= ~bits; |
@@ -943,11 +942,6 @@ audio_mux(struct bttv *btv, int mode) | |||
943 | i2c_mux = mux = (btv->audio & AUDIO_MUTE) ? AUDIO_OFF : btv->audio; | 942 | i2c_mux = mux = (btv->audio & AUDIO_MUTE) ? AUDIO_OFF : btv->audio; |
944 | if (btv->opt_automute && !signal && !btv->radio_user) | 943 | if (btv->opt_automute && !signal && !btv->radio_user) |
945 | mux = AUDIO_OFF; | 944 | mux = AUDIO_OFF; |
946 | #if 0 | ||
947 | printk("bttv%d: amux: mode=%d audio=%d signal=%s mux=%d/%d irq=%s\n", | ||
948 | btv->c.nr, mode, btv->audio, signal ? "yes" : "no", | ||
949 | mux, i2c_mux, in_interrupt() ? "yes" : "no"); | ||
950 | #endif | ||
951 | 945 | ||
952 | val = bttv_tvcards[btv->c.type].audiomux[mux]; | 946 | val = bttv_tvcards[btv->c.type].audiomux[mux]; |
953 | gpio_bits(bttv_tvcards[btv->c.type].gpiomask,val); | 947 | gpio_bits(bttv_tvcards[btv->c.type].gpiomask,val); |
@@ -994,11 +988,6 @@ set_tvnorm(struct bttv *btv, unsigned int norm) | |||
994 | case BTTV_VOODOOTV_FM: | 988 | case BTTV_VOODOOTV_FM: |
995 | bttv_tda9880_setnorm(btv,norm); | 989 | bttv_tda9880_setnorm(btv,norm); |
996 | break; | 990 | break; |
997 | #if 0 | ||
998 | case BTTV_OSPREY540: | ||
999 | osprey_540_set_norm(btv,norm); | ||
1000 | break; | ||
1001 | #endif | ||
1002 | } | 991 | } |
1003 | return 0; | 992 | return 0; |
1004 | } | 993 | } |
@@ -1849,7 +1838,7 @@ static int bttv_common_ioctls(struct bttv *btv, unsigned int cmd, void *arg) | |||
1849 | 1838 | ||
1850 | if (unlikely(f->tuner != 0)) | 1839 | if (unlikely(f->tuner != 0)) |
1851 | return -EINVAL; | 1840 | return -EINVAL; |
1852 | if (unlikely(f->type != V4L2_TUNER_ANALOG_TV)) | 1841 | if (unlikely (f->type != V4L2_TUNER_ANALOG_TV)) |
1853 | return -EINVAL; | 1842 | return -EINVAL; |
1854 | down(&btv->lock); | 1843 | down(&btv->lock); |
1855 | btv->freq = f->frequency; | 1844 | btv->freq = f->frequency; |
@@ -3865,7 +3854,7 @@ static int __devinit bttv_probe(struct pci_dev *dev, | |||
3865 | btv->c.nr); | 3854 | btv->c.nr); |
3866 | return -EIO; | 3855 | return -EIO; |
3867 | } | 3856 | } |
3868 | if (pci_set_dma_mask(dev, 0xffffffff)) { | 3857 | if (pci_set_dma_mask(dev, DMA_32BIT_MASK)) { |
3869 | printk(KERN_WARNING "bttv%d: No suitable DMA available.\n", | 3858 | printk(KERN_WARNING "bttv%d: No suitable DMA available.\n", |
3870 | btv->c.nr); | 3859 | btv->c.nr); |
3871 | return -EIO; | 3860 | return -EIO; |
diff --git a/drivers/media/video/bttv-i2c.c b/drivers/media/video/bttv-i2c.c index da448a5f9e9c..234a85563769 100644 --- a/drivers/media/video/bttv-i2c.c +++ b/drivers/media/video/bttv-i2c.c | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | $Id: bttv-i2c.c,v 1.21 2005/06/10 17:20:24 mchehab Exp $ | 2 | $Id: bttv-i2c.c,v 1.25 2005/07/05 17:37:35 nsh Exp $ |
3 | 3 | ||
4 | bttv-i2c.c -- all the i2c code is here | 4 | bttv-i2c.c -- all the i2c code is here |
5 | 5 | ||
@@ -295,14 +295,26 @@ static int attach_inform(struct i2c_client *client) | |||
295 | { | 295 | { |
296 | struct bttv *btv = i2c_get_adapdata(client->adapter); | 296 | struct bttv *btv = i2c_get_adapdata(client->adapter); |
297 | 297 | ||
298 | if (btv->tuner_type != UNSET) | 298 | if (bttv_debug) |
299 | bttv_call_i2c_clients(btv,TUNER_SET_TYPE,&btv->tuner_type); | 299 | printk(KERN_DEBUG "bttv%d: %s i2c attach [addr=0x%x,client=%s]\n", |
300 | btv->c.nr,client->driver->name,client->addr, | ||
301 | i2c_clientname(client)); | ||
302 | if (!client->driver->command) | ||
303 | return 0; | ||
304 | |||
305 | if (btv->tuner_type != UNSET) { | ||
306 | struct tuner_setup tun_setup; | ||
307 | |||
308 | tun_setup.mode_mask = T_RADIO | T_ANALOG_TV | T_DIGITAL_TV; | ||
309 | tun_setup.type = btv->tuner_type; | ||
310 | tun_setup.addr = ADDR_UNSET; | ||
311 | |||
312 | client->driver->command (client, TUNER_SET_TYPE_ADDR, &tun_setup); | ||
313 | } | ||
314 | |||
300 | if (btv->pinnacle_id != UNSET) | 315 | if (btv->pinnacle_id != UNSET) |
301 | bttv_call_i2c_clients(btv,AUDC_CONFIG_PINNACLE, | 316 | client->driver->command(client,AUDC_CONFIG_PINNACLE, |
302 | &btv->pinnacle_id); | 317 | &btv->pinnacle_id); |
303 | if (bttv_debug) | ||
304 | printk("bttv%d: i2c attach [client=%s]\n", | ||
305 | btv->c.nr, i2c_clientname(client)); | ||
306 | return 0; | 318 | return 0; |
307 | } | 319 | } |
308 | 320 | ||
diff --git a/drivers/media/video/bttv-risc.c b/drivers/media/video/bttv-risc.c index bdc5ce6c43b9..9ed21fd190c6 100644 --- a/drivers/media/video/bttv-risc.c +++ b/drivers/media/video/bttv-risc.c | |||
@@ -334,10 +334,6 @@ bttv_calc_geo(struct bttv *btv, struct bttv_geometry *geo, | |||
334 | } | 334 | } |
335 | 335 | ||
336 | vdelay = tvnorm->vdelay; | 336 | vdelay = tvnorm->vdelay; |
337 | #if 0 /* FIXME */ | ||
338 | if (vdelay < btv->vbi.lines*2) | ||
339 | vdelay = btv->vbi.lines*2; | ||
340 | #endif | ||
341 | 337 | ||
342 | xsf = (width*scaledtwidth)/swidth; | 338 | xsf = (width*scaledtwidth)/swidth; |
343 | geo->hscale = ((totalwidth*4096UL)/xsf-4096); | 339 | geo->hscale = ((totalwidth*4096UL)/xsf-4096); |
@@ -776,13 +772,8 @@ bttv_overlay_risc(struct bttv *btv, | |||
776 | bttv_risc_overlay(btv, &buf->bottom, fmt, ov, 0, 0); | 772 | bttv_risc_overlay(btv, &buf->bottom, fmt, ov, 0, 0); |
777 | break; | 773 | break; |
778 | case V4L2_FIELD_INTERLACED: | 774 | case V4L2_FIELD_INTERLACED: |
779 | #if 0 | ||
780 | bttv_risc_overlay(btv, &buf->top, fmt, ov, 1, 0); | ||
781 | bttv_risc_overlay(btv, &buf->bottom, fmt, ov, 0, 1); | ||
782 | #else | ||
783 | bttv_risc_overlay(btv, &buf->top, fmt, ov, 0, 1); | 775 | bttv_risc_overlay(btv, &buf->top, fmt, ov, 0, 1); |
784 | bttv_risc_overlay(btv, &buf->bottom, fmt, ov, 1, 0); | 776 | bttv_risc_overlay(btv, &buf->bottom, fmt, ov, 1, 0); |
785 | #endif | ||
786 | break; | 777 | break; |
787 | default: | 778 | default: |
788 | BUG(); | 779 | BUG(); |
diff --git a/drivers/media/video/cx88/cx88-blackbird.c b/drivers/media/video/cx88/cx88-blackbird.c index 91f8afeded88..4f39688f780a 100644 --- a/drivers/media/video/cx88/cx88-blackbird.c +++ b/drivers/media/video/cx88/cx88-blackbird.c | |||
@@ -690,11 +690,9 @@ static void blackbird_codec_settings(struct cx8802_dev *dev) | |||
690 | int bitrate_mode = 1; | 690 | int bitrate_mode = 1; |
691 | int bitrate = 7500000; | 691 | int bitrate = 7500000; |
692 | int bitrate_peak = 7500000; | 692 | int bitrate_peak = 7500000; |
693 | #if 1 | ||
694 | bitrate_mode = BLACKBIRD_VIDEO_CBR; | 693 | bitrate_mode = BLACKBIRD_VIDEO_CBR; |
695 | bitrate = 4000*1024; | 694 | bitrate = 4000*1024; |
696 | bitrate_peak = 4000*1024; | 695 | bitrate_peak = 4000*1024; |
697 | #endif | ||
698 | 696 | ||
699 | /* assign stream type */ | 697 | /* assign stream type */ |
700 | blackbird_api_cmd(dev, BLACKBIRD_API_SET_STREAM_TYPE, 1, 0, BLACKBIRD_STREAM_PROGRAM); | 698 | blackbird_api_cmd(dev, BLACKBIRD_API_SET_STREAM_TYPE, 1, 0, BLACKBIRD_STREAM_PROGRAM); |
@@ -810,9 +808,6 @@ static int blackbird_initialize_codec(struct cx8802_dev *dev) | |||
810 | cx_write(MO_VBOS_CONTROL, 0x84A00); /* no 656 mode, 8-bit pixels, disable VBI */ | 808 | cx_write(MO_VBOS_CONTROL, 0x84A00); /* no 656 mode, 8-bit pixels, disable VBI */ |
811 | cx_clear(MO_OUTPUT_FORMAT, 0x0008); /* Normal Y-limits to let the mpeg encoder sync */ | 809 | cx_clear(MO_OUTPUT_FORMAT, 0x0008); /* Normal Y-limits to let the mpeg encoder sync */ |
812 | 810 | ||
813 | #if 0 /* FIXME */ | ||
814 | set_scale(dev, 720, 480, V4L2_FIELD_INTERLACED); | ||
815 | #endif | ||
816 | blackbird_codec_settings(dev); | 811 | blackbird_codec_settings(dev); |
817 | msleep(1); | 812 | msleep(1); |
818 | 813 | ||
diff --git a/drivers/media/video/cx88/cx88-cards.c b/drivers/media/video/cx88/cx88-cards.c index b3fb04356b71..b0b47c3cde3c 100644 --- a/drivers/media/video/cx88/cx88-cards.c +++ b/drivers/media/video/cx88/cx88-cards.c | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * $Id: cx88-cards.c,v 1.76 2005/06/08 01:28:09 mchehab Exp $ | 2 | * $Id: cx88-cards.c,v 1.85 2005/07/04 19:35:05 mkrufky Exp $ |
3 | * | 3 | * |
4 | * device driver for Conexant 2388x based TV cards | 4 | * device driver for Conexant 2388x based TV cards |
5 | * card-specific stuff. | 5 | * card-specific stuff. |
@@ -401,7 +401,7 @@ struct cx88_board cx88_boards[] = { | |||
401 | .dvb = 1, | 401 | .dvb = 1, |
402 | }, | 402 | }, |
403 | [CX88_BOARD_DVICO_FUSIONHDTV_DVB_T1] = { | 403 | [CX88_BOARD_DVICO_FUSIONHDTV_DVB_T1] = { |
404 | .name = "DVICO FusionHDTV DVB-T1", | 404 | .name = "DViCO FusionHDTV DVB-T1", |
405 | .tuner_type = TUNER_ABSENT, /* No analog tuner */ | 405 | .tuner_type = TUNER_ABSENT, /* No analog tuner */ |
406 | .radio_type = UNSET, | 406 | .radio_type = UNSET, |
407 | .tuner_addr = ADDR_UNSET, | 407 | .tuner_addr = ADDR_UNSET, |
@@ -445,8 +445,8 @@ struct cx88_board cx88_boards[] = { | |||
445 | .gpio0 = 0x000007f8, | 445 | .gpio0 = 0x000007f8, |
446 | }, | 446 | }, |
447 | }, | 447 | }, |
448 | [CX88_BOARD_DVICO_FUSIONHDTV_3_GOLD] = { | 448 | [CX88_BOARD_DVICO_FUSIONHDTV_3_GOLD_Q] = { |
449 | .name = "DViCO - FusionHDTV 3 Gold", | 449 | .name = "DViCO FusionHDTV 3 Gold-Q", |
450 | .tuner_type = TUNER_MICROTUNE_4042FI5, | 450 | .tuner_type = TUNER_MICROTUNE_4042FI5, |
451 | .radio_type = UNSET, | 451 | .radio_type = UNSET, |
452 | .tuner_addr = ADDR_UNSET, | 452 | .tuner_addr = ADDR_UNSET, |
@@ -464,6 +464,9 @@ struct cx88_board cx88_boards[] = { | |||
464 | GPIO[3] selects RF input connector on tuner module | 464 | GPIO[3] selects RF input connector on tuner module |
465 | 0 - RF connector labeled CABLE | 465 | 0 - RF connector labeled CABLE |
466 | 1 - RF connector labeled ANT | 466 | 1 - RF connector labeled ANT |
467 | GPIO[4] selects high RF for QAM256 mode | ||
468 | 0 - normal RF | ||
469 | 1 - high RF | ||
467 | */ | 470 | */ |
468 | .input = {{ | 471 | .input = {{ |
469 | .type = CX88_VMUX_TELEVISION, | 472 | .type = CX88_VMUX_TELEVISION, |
@@ -482,6 +485,7 @@ struct cx88_board cx88_boards[] = { | |||
482 | .vmux = 2, | 485 | .vmux = 2, |
483 | .gpio0 = 0x0f00, | 486 | .gpio0 = 0x0f00, |
484 | }}, | 487 | }}, |
488 | .dvb = 1, | ||
485 | }, | 489 | }, |
486 | [CX88_BOARD_HAUPPAUGE_DVB_T1] = { | 490 | [CX88_BOARD_HAUPPAUGE_DVB_T1] = { |
487 | .name = "Hauppauge Nova-T DVB-T", | 491 | .name = "Hauppauge Nova-T DVB-T", |
@@ -520,7 +524,7 @@ struct cx88_board cx88_boards[] = { | |||
520 | .blackbird = 1, | 524 | .blackbird = 1, |
521 | }, | 525 | }, |
522 | [CX88_BOARD_DVICO_FUSIONHDTV_DVB_T_PLUS] = { | 526 | [CX88_BOARD_DVICO_FUSIONHDTV_DVB_T_PLUS] = { |
523 | .name = "DVICO FusionHDTV DVB-T Plus", | 527 | .name = "DViCO FusionHDTV DVB-T Plus", |
524 | .tuner_type = TUNER_ABSENT, /* No analog tuner */ | 528 | .tuner_type = TUNER_ABSENT, /* No analog tuner */ |
525 | .radio_type = UNSET, | 529 | .radio_type = UNSET, |
526 | .tuner_addr = ADDR_UNSET, | 530 | .tuner_addr = ADDR_UNSET, |
@@ -700,21 +704,17 @@ struct cx88_board cx88_boards[] = { | |||
700 | }, | 704 | }, |
701 | }, | 705 | }, |
702 | [CX88_BOARD_DVICO_FUSIONHDTV_3_GOLD_T] = { | 706 | [CX88_BOARD_DVICO_FUSIONHDTV_3_GOLD_T] = { |
703 | .name = "DViCO - FusionHDTV 3 Gold-T", | 707 | .name = "DViCO FusionHDTV 3 Gold-T", |
704 | .tuner_type = TUNER_THOMSON_DTT7611, | 708 | .tuner_type = TUNER_THOMSON_DTT7611, |
705 | .radio_type = UNSET, | 709 | .radio_type = UNSET, |
706 | .tuner_addr = ADDR_UNSET, | 710 | .tuner_addr = ADDR_UNSET, |
707 | .radio_addr = ADDR_UNSET, | 711 | .radio_addr = ADDR_UNSET, |
708 | /* See DViCO FusionHDTV 3 Gold for GPIO documentation. */ | 712 | /* See DViCO FusionHDTV 3 Gold-Q for GPIO documentation. */ |
709 | .input = {{ | 713 | .input = {{ |
710 | .type = CX88_VMUX_TELEVISION, | 714 | .type = CX88_VMUX_TELEVISION, |
711 | .vmux = 0, | 715 | .vmux = 0, |
712 | .gpio0 = 0x0f0d, | 716 | .gpio0 = 0x0f0d, |
713 | },{ | 717 | },{ |
714 | .type = CX88_VMUX_CABLE, | ||
715 | .vmux = 0, | ||
716 | .gpio0 = 0x0f05, | ||
717 | },{ | ||
718 | .type = CX88_VMUX_COMPOSITE1, | 718 | .type = CX88_VMUX_COMPOSITE1, |
719 | .vmux = 1, | 719 | .vmux = 1, |
720 | .gpio0 = 0x0f00, | 720 | .gpio0 = 0x0f00, |
@@ -723,7 +723,36 @@ struct cx88_board cx88_boards[] = { | |||
723 | .vmux = 2, | 723 | .vmux = 2, |
724 | .gpio0 = 0x0f00, | 724 | .gpio0 = 0x0f00, |
725 | }}, | 725 | }}, |
726 | .dvb = 1, | ||
726 | }, | 727 | }, |
728 | [CX88_BOARD_ADSTECH_DVB_T_PCI] = { | ||
729 | .name = "ADS Tech Instant TV DVB-T PCI", | ||
730 | .tuner_type = TUNER_ABSENT, | ||
731 | .radio_type = UNSET, | ||
732 | .tuner_addr = ADDR_UNSET, | ||
733 | .radio_addr = ADDR_UNSET, | ||
734 | .input = {{ | ||
735 | .type = CX88_VMUX_COMPOSITE1, | ||
736 | .vmux = 1, | ||
737 | .gpio0 = 0x0700, | ||
738 | .gpio2 = 0x0101, | ||
739 | },{ | ||
740 | .type = CX88_VMUX_SVIDEO, | ||
741 | .vmux = 2, | ||
742 | .gpio0 = 0x0700, | ||
743 | .gpio2 = 0x0101, | ||
744 | }}, | ||
745 | .dvb = 1, | ||
746 | }, | ||
747 | [CX88_BOARD_TERRATEC_CINERGY_1400_DVB_T1] = { | ||
748 | .name = "TerraTec Cinergy 1400 DVB-T", | ||
749 | .tuner_type = TUNER_ABSENT, | ||
750 | .input = {{ | ||
751 | .type = CX88_VMUX_DVB, | ||
752 | .vmux = 0, | ||
753 | }}, | ||
754 | .dvb = 1, | ||
755 | }, | ||
727 | }; | 756 | }; |
728 | const unsigned int cx88_bcount = ARRAY_SIZE(cx88_boards); | 757 | const unsigned int cx88_bcount = ARRAY_SIZE(cx88_boards); |
729 | 758 | ||
@@ -794,7 +823,7 @@ struct cx88_subid cx88_subids[] = { | |||
794 | },{ | 823 | },{ |
795 | .subvendor = 0x18ac, | 824 | .subvendor = 0x18ac, |
796 | .subdevice = 0xd810, | 825 | .subdevice = 0xd810, |
797 | .card = CX88_BOARD_DVICO_FUSIONHDTV_3_GOLD, | 826 | .card = CX88_BOARD_DVICO_FUSIONHDTV_3_GOLD_Q, |
798 | },{ | 827 | },{ |
799 | .subvendor = 0x18ac, | 828 | .subvendor = 0x18ac, |
800 | .subdevice = 0xd820, | 829 | .subdevice = 0xd820, |
@@ -843,7 +872,15 @@ struct cx88_subid cx88_subids[] = { | |||
843 | .subvendor = 0x10fc, | 872 | .subvendor = 0x10fc, |
844 | .subdevice = 0xd035, | 873 | .subdevice = 0xd035, |
845 | .card = CX88_BOARD_IODATA_GVBCTV7E, | 874 | .card = CX88_BOARD_IODATA_GVBCTV7E, |
846 | } | 875 | },{ |
876 | .subvendor = 0x1421, | ||
877 | .subdevice = 0x0334, | ||
878 | .card = CX88_BOARD_ADSTECH_DVB_T_PCI, | ||
879 | },{ | ||
880 | .subvendor = 0x153b, | ||
881 | .subdevice = 0x1166, | ||
882 | .card = CX88_BOARD_TERRATEC_CINERGY_1400_DVB_T1, | ||
883 | }, | ||
847 | }; | 884 | }; |
848 | const unsigned int cx88_idcount = ARRAY_SIZE(cx88_subids); | 885 | const unsigned int cx88_idcount = ARRAY_SIZE(cx88_subids); |
849 | 886 | ||
diff --git a/drivers/media/video/cx88/cx88-core.c b/drivers/media/video/cx88/cx88-core.c index c046a23537d3..5e868f5cd0c0 100644 --- a/drivers/media/video/cx88/cx88-core.c +++ b/drivers/media/video/cx88/cx88-core.c | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * $Id: cx88-core.c,v 1.28 2005/06/12 04:19:19 mchehab Exp $ | 2 | * $Id: cx88-core.c,v 1.33 2005/07/07 14:17:47 mchehab Exp $ |
3 | * | 3 | * |
4 | * device driver for Conexant 2388x based TV cards | 4 | * device driver for Conexant 2388x based TV cards |
5 | * driver core | 5 | * driver core |
@@ -470,25 +470,6 @@ int cx88_risc_decode(u32 risc) | |||
470 | return incr[risc >> 28] ? incr[risc >> 28] : 1; | 470 | return incr[risc >> 28] ? incr[risc >> 28] : 1; |
471 | } | 471 | } |
472 | 472 | ||
473 | #if 0 /* currently unused, but useful for debugging */ | ||
474 | void cx88_risc_disasm(struct cx88_core *core, | ||
475 | struct btcx_riscmem *risc) | ||
476 | { | ||
477 | unsigned int i,j,n; | ||
478 | |||
479 | printk("%s: risc disasm: %p [dma=0x%08lx]\n", | ||
480 | core->name, risc->cpu, (unsigned long)risc->dma); | ||
481 | for (i = 0; i < (risc->size >> 2); i += n) { | ||
482 | printk("%s: %04d: ", core->name, i); | ||
483 | n = cx88_risc_decode(risc->cpu[i]); | ||
484 | for (j = 1; j < n; j++) | ||
485 | printk("%s: %04d: 0x%08x [ arg #%d ]\n", | ||
486 | core->name, i+j, risc->cpu[i+j], j); | ||
487 | if (risc->cpu[i] == RISC_JUMP) | ||
488 | break; | ||
489 | } | ||
490 | } | ||
491 | #endif | ||
492 | 473 | ||
493 | void cx88_sram_channel_dump(struct cx88_core *core, | 474 | void cx88_sram_channel_dump(struct cx88_core *core, |
494 | struct sram_channel *ch) | 475 | struct sram_channel *ch) |
@@ -551,21 +532,6 @@ static char *cx88_pci_irqs[32] = { | |||
551 | "brdg_err", "src_dma_err", "dst_dma_err", "ipb_dma_err", | 532 | "brdg_err", "src_dma_err", "dst_dma_err", "ipb_dma_err", |
552 | "i2c", "i2c_rack", "ir_smp", "gpio0", "gpio1" | 533 | "i2c", "i2c_rack", "ir_smp", "gpio0", "gpio1" |
553 | }; | 534 | }; |
554 | char *cx88_vid_irqs[32] = { | ||
555 | "y_risci1", "u_risci1", "v_risci1", "vbi_risc1", | ||
556 | "y_risci2", "u_risci2", "v_risci2", "vbi_risc2", | ||
557 | "y_oflow", "u_oflow", "v_oflow", "vbi_oflow", | ||
558 | "y_sync", "u_sync", "v_sync", "vbi_sync", | ||
559 | "opc_err", "par_err", "rip_err", "pci_abort", | ||
560 | }; | ||
561 | char *cx88_mpeg_irqs[32] = { | ||
562 | "ts_risci1", NULL, NULL, NULL, | ||
563 | "ts_risci2", NULL, NULL, NULL, | ||
564 | "ts_oflow", NULL, NULL, NULL, | ||
565 | "ts_sync", NULL, NULL, NULL, | ||
566 | "opc_err", "par_err", "rip_err", "pci_abort", | ||
567 | "ts_err?", | ||
568 | }; | ||
569 | 535 | ||
570 | void cx88_print_irqbits(char *name, char *tag, char **strings, | 536 | void cx88_print_irqbits(char *name, char *tag, char **strings, |
571 | u32 bits, u32 mask) | 537 | u32 bits, u32 mask) |
@@ -615,16 +581,11 @@ void cx88_wakeup(struct cx88_core *core, | |||
615 | break; | 581 | break; |
616 | buf = list_entry(q->active.next, | 582 | buf = list_entry(q->active.next, |
617 | struct cx88_buffer, vb.queue); | 583 | struct cx88_buffer, vb.queue); |
618 | #if 0 | ||
619 | if (buf->count > count) | ||
620 | break; | ||
621 | #else | ||
622 | /* count comes from the hw and is is 16bit wide -- | 584 | /* count comes from the hw and is is 16bit wide -- |
623 | * this trick handles wrap-arounds correctly for | 585 | * this trick handles wrap-arounds correctly for |
624 | * up to 32767 buffers in flight... */ | 586 | * up to 32767 buffers in flight... */ |
625 | if ((s16) (count - buf->count) < 0) | 587 | if ((s16) (count - buf->count) < 0) |
626 | break; | 588 | break; |
627 | #endif | ||
628 | do_gettimeofday(&buf->vb.ts); | 589 | do_gettimeofday(&buf->vb.ts); |
629 | dprintk(2,"[%p/%d] wakeup reg=%d buf=%d\n",buf,buf->vb.i, | 590 | dprintk(2,"[%p/%d] wakeup reg=%d buf=%d\n",buf,buf->vb.i, |
630 | count, buf->count); | 591 | count, buf->count); |
@@ -952,12 +913,10 @@ int cx88_set_tvnorm(struct cx88_core *core, struct cx88_tvnorm *norm) | |||
952 | norm->cxiformat, cx_read(MO_INPUT_FORMAT) & 0x0f); | 913 | norm->cxiformat, cx_read(MO_INPUT_FORMAT) & 0x0f); |
953 | cx_andor(MO_INPUT_FORMAT, 0xf, norm->cxiformat); | 914 | cx_andor(MO_INPUT_FORMAT, 0xf, norm->cxiformat); |
954 | 915 | ||
955 | #if 1 | ||
956 | // FIXME: as-is from DScaler | 916 | // FIXME: as-is from DScaler |
957 | dprintk(1,"set_tvnorm: MO_OUTPUT_FORMAT 0x%08x [old=0x%08x]\n", | 917 | dprintk(1,"set_tvnorm: MO_OUTPUT_FORMAT 0x%08x [old=0x%08x]\n", |
958 | norm->cxoformat, cx_read(MO_OUTPUT_FORMAT)); | 918 | norm->cxoformat, cx_read(MO_OUTPUT_FORMAT)); |
959 | cx_write(MO_OUTPUT_FORMAT, norm->cxoformat); | 919 | cx_write(MO_OUTPUT_FORMAT, norm->cxoformat); |
960 | #endif | ||
961 | 920 | ||
962 | // MO_SCONV_REG = adc clock / video dec clock * 2^17 | 921 | // MO_SCONV_REG = adc clock / video dec clock * 2^17 |
963 | tmp64 = adc_clock * (u64)(1 << 17); | 922 | tmp64 = adc_clock * (u64)(1 << 17); |
@@ -1006,21 +965,7 @@ int cx88_set_tvnorm(struct cx88_core *core, struct cx88_tvnorm *norm) | |||
1006 | set_tvaudio(core); | 965 | set_tvaudio(core); |
1007 | 966 | ||
1008 | // tell i2c chips | 967 | // tell i2c chips |
1009 | #ifdef V4L2_I2C_CLIENTS | ||
1010 | cx88_call_i2c_clients(core,VIDIOC_S_STD,&norm->id); | 968 | cx88_call_i2c_clients(core,VIDIOC_S_STD,&norm->id); |
1011 | #else | ||
1012 | { | ||
1013 | struct video_channel c; | ||
1014 | memset(&c,0,sizeof(c)); | ||
1015 | c.channel = core->input; | ||
1016 | c.norm = VIDEO_MODE_PAL; | ||
1017 | if ((norm->id & (V4L2_STD_NTSC_M|V4L2_STD_NTSC_M_JP))) | ||
1018 | c.norm = VIDEO_MODE_NTSC; | ||
1019 | if (norm->id & V4L2_STD_SECAM) | ||
1020 | c.norm = VIDEO_MODE_SECAM; | ||
1021 | cx88_call_i2c_clients(core,VIDIOCSCHAN,&c); | ||
1022 | } | ||
1023 | #endif | ||
1024 | 969 | ||
1025 | // done | 970 | // done |
1026 | return 0; | 971 | return 0; |
@@ -1230,8 +1175,6 @@ void cx88_core_put(struct cx88_core *core, struct pci_dev *pci) | |||
1230 | /* ------------------------------------------------------------------ */ | 1175 | /* ------------------------------------------------------------------ */ |
1231 | 1176 | ||
1232 | EXPORT_SYMBOL(cx88_print_ioctl); | 1177 | EXPORT_SYMBOL(cx88_print_ioctl); |
1233 | EXPORT_SYMBOL(cx88_vid_irqs); | ||
1234 | EXPORT_SYMBOL(cx88_mpeg_irqs); | ||
1235 | EXPORT_SYMBOL(cx88_print_irqbits); | 1178 | EXPORT_SYMBOL(cx88_print_irqbits); |
1236 | 1179 | ||
1237 | EXPORT_SYMBOL(cx88_core_irq); | 1180 | EXPORT_SYMBOL(cx88_core_irq); |
diff --git a/drivers/media/video/cx88/cx88-dvb.c b/drivers/media/video/cx88/cx88-dvb.c index 1a259c3966cd..8db68f2d1351 100644 --- a/drivers/media/video/cx88/cx88-dvb.c +++ b/drivers/media/video/cx88/cx88-dvb.c | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * $Id: cx88-dvb.c,v 1.33 2005/06/12 04:19:19 mchehab Exp $ | 2 | * $Id: cx88-dvb.c,v 1.41 2005/07/04 19:35:05 mkrufky Exp $ |
3 | * | 3 | * |
4 | * device driver for Conexant 2388x based TV cards | 4 | * device driver for Conexant 2388x based TV cards |
5 | * MPEG Transport Stream (DVB) routines | 5 | * MPEG Transport Stream (DVB) routines |
@@ -30,20 +30,27 @@ | |||
30 | #include <linux/file.h> | 30 | #include <linux/file.h> |
31 | #include <linux/suspend.h> | 31 | #include <linux/suspend.h> |
32 | 32 | ||
33 | /* those two frontends need merging via linuxtv cvs ... */ | 33 | #define CONFIG_DVB_MT352 1 |
34 | #define HAVE_CX22702 1 | 34 | #define CONFIG_DVB_CX22702 1 |
35 | #define HAVE_OR51132 1 | 35 | #define CONFIG_DVB_OR51132 1 |
36 | #define CONFIG_DVB_LGDT3302 1 | ||
36 | 37 | ||
37 | #include "cx88.h" | 38 | #include "cx88.h" |
38 | #include "dvb-pll.h" | 39 | #include "dvb-pll.h" |
39 | #include "mt352.h" | 40 | |
40 | #include "mt352_priv.h" | 41 | #if CONFIG_DVB_MT352 |
41 | #if HAVE_CX22702 | 42 | # include "mt352.h" |
43 | # include "mt352_priv.h" | ||
44 | #endif | ||
45 | #if CONFIG_DVB_CX22702 | ||
42 | # include "cx22702.h" | 46 | # include "cx22702.h" |
43 | #endif | 47 | #endif |
44 | #if HAVE_OR51132 | 48 | #if CONFIG_DVB_OR51132 |
45 | # include "or51132.h" | 49 | # include "or51132.h" |
46 | #endif | 50 | #endif |
51 | #if CONFIG_DVB_LGDT3302 | ||
52 | # include "lgdt3302.h" | ||
53 | #endif | ||
47 | 54 | ||
48 | MODULE_DESCRIPTION("driver for cx2388x based DVB cards"); | 55 | MODULE_DESCRIPTION("driver for cx2388x based DVB cards"); |
49 | MODULE_AUTHOR("Chris Pascoe <c.pascoe@itee.uq.edu.au>"); | 56 | MODULE_AUTHOR("Chris Pascoe <c.pascoe@itee.uq.edu.au>"); |
@@ -100,6 +107,7 @@ static struct videobuf_queue_ops dvb_qops = { | |||
100 | 107 | ||
101 | /* ------------------------------------------------------------------ */ | 108 | /* ------------------------------------------------------------------ */ |
102 | 109 | ||
110 | #if CONFIG_DVB_MT352 | ||
103 | static int dvico_fusionhdtv_demod_init(struct dvb_frontend* fe) | 111 | static int dvico_fusionhdtv_demod_init(struct dvb_frontend* fe) |
104 | { | 112 | { |
105 | static u8 clock_config [] = { CLOCK_CTL, 0x38, 0x39 }; | 113 | static u8 clock_config [] = { CLOCK_CTL, 0x38, 0x39 }; |
@@ -167,8 +175,9 @@ static struct mt352_config dntv_live_dvbt_config = { | |||
167 | .demod_init = dntv_live_dvbt_demod_init, | 175 | .demod_init = dntv_live_dvbt_demod_init, |
168 | .pll_set = mt352_pll_set, | 176 | .pll_set = mt352_pll_set, |
169 | }; | 177 | }; |
178 | #endif | ||
170 | 179 | ||
171 | #if HAVE_CX22702 | 180 | #if CONFIG_DVB_CX22702 |
172 | static struct cx22702_config connexant_refboard_config = { | 181 | static struct cx22702_config connexant_refboard_config = { |
173 | .demod_address = 0x43, | 182 | .demod_address = 0x43, |
174 | .pll_address = 0x60, | 183 | .pll_address = 0x60, |
@@ -182,7 +191,7 @@ static struct cx22702_config hauppauge_novat_config = { | |||
182 | }; | 191 | }; |
183 | #endif | 192 | #endif |
184 | 193 | ||
185 | #if HAVE_OR51132 | 194 | #if CONFIG_DVB_OR51132 |
186 | static int or51132_set_ts_param(struct dvb_frontend* fe, | 195 | static int or51132_set_ts_param(struct dvb_frontend* fe, |
187 | int is_punctured) | 196 | int is_punctured) |
188 | { | 197 | { |
@@ -199,6 +208,32 @@ static struct or51132_config pchdtv_hd3000 = { | |||
199 | }; | 208 | }; |
200 | #endif | 209 | #endif |
201 | 210 | ||
211 | #if CONFIG_DVB_LGDT3302 | ||
212 | static int lgdt3302_set_ts_param(struct dvb_frontend* fe, int is_punctured) | ||
213 | { | ||
214 | struct cx8802_dev *dev= fe->dvb->priv; | ||
215 | if (is_punctured) | ||
216 | dev->ts_gen_cntrl |= 0x04; | ||
217 | else | ||
218 | dev->ts_gen_cntrl &= ~0x04; | ||
219 | return 0; | ||
220 | } | ||
221 | |||
222 | static struct lgdt3302_config fusionhdtv_3_gold_q = { | ||
223 | .demod_address = 0x0e, | ||
224 | .pll_address = 0x61, | ||
225 | .pll_desc = &dvb_pll_microtune_4042, | ||
226 | .set_ts_params = lgdt3302_set_ts_param, | ||
227 | }; | ||
228 | |||
229 | static struct lgdt3302_config fusionhdtv_3_gold_t = { | ||
230 | .demod_address = 0x0e, | ||
231 | .pll_address = 0x61, | ||
232 | .pll_desc = &dvb_pll_thomson_dtt7611, | ||
233 | .set_ts_params = lgdt3302_set_ts_param, | ||
234 | }; | ||
235 | #endif | ||
236 | |||
202 | static int dvb_register(struct cx8802_dev *dev) | 237 | static int dvb_register(struct cx8802_dev *dev) |
203 | { | 238 | { |
204 | /* init struct videobuf_dvb */ | 239 | /* init struct videobuf_dvb */ |
@@ -207,16 +242,18 @@ static int dvb_register(struct cx8802_dev *dev) | |||
207 | 242 | ||
208 | /* init frontend */ | 243 | /* init frontend */ |
209 | switch (dev->core->board) { | 244 | switch (dev->core->board) { |
210 | #if HAVE_CX22702 | 245 | #if CONFIG_DVB_CX22702 |
211 | case CX88_BOARD_HAUPPAUGE_DVB_T1: | 246 | case CX88_BOARD_HAUPPAUGE_DVB_T1: |
212 | dev->dvb.frontend = cx22702_attach(&hauppauge_novat_config, | 247 | dev->dvb.frontend = cx22702_attach(&hauppauge_novat_config, |
213 | &dev->core->i2c_adap); | 248 | &dev->core->i2c_adap); |
214 | break; | 249 | break; |
250 | case CX88_BOARD_TERRATEC_CINERGY_1400_DVB_T1: | ||
215 | case CX88_BOARD_CONEXANT_DVB_T1: | 251 | case CX88_BOARD_CONEXANT_DVB_T1: |
216 | dev->dvb.frontend = cx22702_attach(&connexant_refboard_config, | 252 | dev->dvb.frontend = cx22702_attach(&connexant_refboard_config, |
217 | &dev->core->i2c_adap); | 253 | &dev->core->i2c_adap); |
218 | break; | 254 | break; |
219 | #endif | 255 | #endif |
256 | #if CONFIG_DVB_MT352 | ||
220 | case CX88_BOARD_DVICO_FUSIONHDTV_DVB_T1: | 257 | case CX88_BOARD_DVICO_FUSIONHDTV_DVB_T1: |
221 | dev->core->pll_addr = 0x61; | 258 | dev->core->pll_addr = 0x61; |
222 | dev->core->pll_desc = &dvb_pll_lg_z201; | 259 | dev->core->pll_desc = &dvb_pll_lg_z201; |
@@ -231,17 +268,49 @@ static int dvb_register(struct cx8802_dev *dev) | |||
231 | break; | 268 | break; |
232 | case CX88_BOARD_KWORLD_DVB_T: | 269 | case CX88_BOARD_KWORLD_DVB_T: |
233 | case CX88_BOARD_DNTV_LIVE_DVB_T: | 270 | case CX88_BOARD_DNTV_LIVE_DVB_T: |
271 | case CX88_BOARD_ADSTECH_DVB_T_PCI: | ||
234 | dev->core->pll_addr = 0x61; | 272 | dev->core->pll_addr = 0x61; |
235 | dev->core->pll_desc = &dvb_pll_unknown_1; | 273 | dev->core->pll_desc = &dvb_pll_unknown_1; |
236 | dev->dvb.frontend = mt352_attach(&dntv_live_dvbt_config, | 274 | dev->dvb.frontend = mt352_attach(&dntv_live_dvbt_config, |
237 | &dev->core->i2c_adap); | 275 | &dev->core->i2c_adap); |
238 | break; | 276 | break; |
239 | #if HAVE_OR51132 | 277 | #endif |
278 | #if CONFIG_DVB_OR51132 | ||
240 | case CX88_BOARD_PCHDTV_HD3000: | 279 | case CX88_BOARD_PCHDTV_HD3000: |
241 | dev->dvb.frontend = or51132_attach(&pchdtv_hd3000, | 280 | dev->dvb.frontend = or51132_attach(&pchdtv_hd3000, |
242 | &dev->core->i2c_adap); | 281 | &dev->core->i2c_adap); |
243 | break; | 282 | break; |
244 | #endif | 283 | #endif |
284 | #if CONFIG_DVB_LGDT3302 | ||
285 | case CX88_BOARD_DVICO_FUSIONHDTV_3_GOLD_Q: | ||
286 | dev->ts_gen_cntrl = 0x08; | ||
287 | { | ||
288 | /* Do a hardware reset of chip before using it. */ | ||
289 | struct cx88_core *core = dev->core; | ||
290 | |||
291 | cx_clear(MO_GP0_IO, 1); | ||
292 | mdelay(100); | ||
293 | cx_set(MO_GP0_IO, 9); // ANT connector too FIXME | ||
294 | mdelay(200); | ||
295 | dev->dvb.frontend = lgdt3302_attach(&fusionhdtv_3_gold_q, | ||
296 | &dev->core->i2c_adap); | ||
297 | } | ||
298 | break; | ||
299 | case CX88_BOARD_DVICO_FUSIONHDTV_3_GOLD_T: | ||
300 | dev->ts_gen_cntrl = 0x08; | ||
301 | { | ||
302 | /* Do a hardware reset of chip before using it. */ | ||
303 | struct cx88_core *core = dev->core; | ||
304 | |||
305 | cx_clear(MO_GP0_IO, 1); | ||
306 | mdelay(100); | ||
307 | cx_set(MO_GP0_IO, 9); /* ANT connector too FIXME */ | ||
308 | mdelay(200); | ||
309 | dev->dvb.frontend = lgdt3302_attach(&fusionhdtv_3_gold_t, | ||
310 | &dev->core->i2c_adap); | ||
311 | } | ||
312 | break; | ||
313 | #endif | ||
245 | default: | 314 | default: |
246 | printk("%s: The frontend of your DVB/ATSC card isn't supported yet\n", | 315 | printk("%s: The frontend of your DVB/ATSC card isn't supported yet\n", |
247 | dev->core->name); | 316 | dev->core->name); |
diff --git a/drivers/media/video/cx88/cx88-i2c.c b/drivers/media/video/cx88/cx88-i2c.c index e20adefcfc6c..8403c4e95050 100644 --- a/drivers/media/video/cx88/cx88-i2c.c +++ b/drivers/media/video/cx88/cx88-i2c.c | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | $Id: cx88-i2c.c,v 1.23 2005/06/12 04:19:19 mchehab Exp $ | 2 | $Id: cx88-i2c.c,v 1.28 2005/07/05 17:37:35 nsh Exp $ |
3 | 3 | ||
4 | cx88-i2c.c -- all the i2c code is here | 4 | cx88-i2c.c -- all the i2c code is here |
5 | 5 | ||
@@ -91,25 +91,32 @@ static int cx8800_bit_getsda(void *data) | |||
91 | 91 | ||
92 | static int attach_inform(struct i2c_client *client) | 92 | static int attach_inform(struct i2c_client *client) |
93 | { | 93 | { |
94 | struct tuner_addr tun_addr; | 94 | struct tuner_setup tun_setup; |
95 | struct cx88_core *core = i2c_get_adapdata(client->adapter); | 95 | struct cx88_core *core = i2c_get_adapdata(client->adapter); |
96 | 96 | ||
97 | dprintk(1, "i2c attach [addr=0x%x,client=%s]\n", | 97 | dprintk(1, "%s i2c attach [addr=0x%x,client=%s]\n", |
98 | client->addr, i2c_clientname(client)); | 98 | client->driver->name,client->addr,i2c_clientname(client)); |
99 | if (!client->driver->command) | 99 | if (!client->driver->command) |
100 | return 0; | 100 | return 0; |
101 | 101 | ||
102 | if (core->radio_type != UNSET) { | 102 | if (core->radio_type != UNSET) { |
103 | tun_addr.v4l2_tuner = V4L2_TUNER_RADIO; | 103 | if ((core->radio_addr==ADDR_UNSET)||(core->radio_addr==client->addr)) { |
104 | tun_addr.type = core->radio_type; | 104 | tun_setup.mode_mask = T_RADIO; |
105 | tun_addr.addr = core->radio_addr; | 105 | tun_setup.type = core->radio_type; |
106 | client->driver->command(client,TUNER_SET_TYPE_ADDR, &tun_addr); | 106 | tun_setup.addr = core->radio_addr; |
107 | |||
108 | client->driver->command (client, TUNER_SET_TYPE_ADDR, &tun_setup); | ||
109 | } | ||
107 | } | 110 | } |
108 | if (core->tuner_type != UNSET) { | 111 | if (core->tuner_type != UNSET) { |
109 | tun_addr.v4l2_tuner = V4L2_TUNER_ANALOG_TV; | 112 | if ((core->tuner_addr==ADDR_UNSET)||(core->tuner_addr==client->addr)) { |
110 | tun_addr.type = core->tuner_type; | 113 | |
111 | tun_addr.addr = core->tuner_addr; | 114 | tun_setup.mode_mask = T_ANALOG_TV; |
112 | client->driver->command(client,TUNER_SET_TYPE_ADDR, &tun_addr); | 115 | tun_setup.type = core->tuner_type; |
116 | tun_setup.addr = core->tuner_addr; | ||
117 | |||
118 | client->driver->command (client,TUNER_SET_TYPE_ADDR, &tun_setup); | ||
119 | } | ||
113 | } | 120 | } |
114 | 121 | ||
115 | if (core->tda9887_conf) | 122 | if (core->tda9887_conf) |
@@ -157,6 +164,7 @@ static struct i2c_client cx8800_i2c_client_template = { | |||
157 | }; | 164 | }; |
158 | 165 | ||
159 | static char *i2c_devs[128] = { | 166 | static char *i2c_devs[128] = { |
167 | [ 0x1c >> 1 ] = "lgdt3302", | ||
160 | [ 0x86 >> 1 ] = "tda9887/cx22702", | 168 | [ 0x86 >> 1 ] = "tda9887/cx22702", |
161 | [ 0xa0 >> 1 ] = "eeprom", | 169 | [ 0xa0 >> 1 ] = "eeprom", |
162 | [ 0xc0 >> 1 ] = "tuner (analog)", | 170 | [ 0xc0 >> 1 ] = "tuner (analog)", |
diff --git a/drivers/media/video/cx88/cx88-input.c b/drivers/media/video/cx88/cx88-input.c index dc0dcf249aac..214887798192 100644 --- a/drivers/media/video/cx88/cx88-input.c +++ b/drivers/media/video/cx88/cx88-input.c | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * $Id: cx88-input.c,v 1.11 2005/05/22 20:57:56 nsh Exp $ | 2 | * $Id: cx88-input.c,v 1.15 2005/07/07 13:58:38 mchehab Exp $ |
3 | * | 3 | * |
4 | * Device driver for GPIO attached remote control interfaces | 4 | * Device driver for GPIO attached remote control interfaces |
5 | * on Conexant 2388x based TV/DVB cards. | 5 | * on Conexant 2388x based TV/DVB cards. |
@@ -38,119 +38,206 @@ | |||
38 | 38 | ||
39 | /* DigitalNow DNTV Live DVB-T Remote */ | 39 | /* DigitalNow DNTV Live DVB-T Remote */ |
40 | static IR_KEYTAB_TYPE ir_codes_dntv_live_dvb_t[IR_KEYTAB_SIZE] = { | 40 | static IR_KEYTAB_TYPE ir_codes_dntv_live_dvb_t[IR_KEYTAB_SIZE] = { |
41 | [ 0x00 ] = KEY_ESC, // 'go up a level?' | 41 | [0x00] = KEY_ESC, /* 'go up a level?' */ |
42 | [ 0x01 ] = KEY_KP1, // '1' | 42 | /* Keys 0 to 9 */ |
43 | [ 0x02 ] = KEY_KP2, // '2' | 43 | [0x0a] = KEY_KP0, |
44 | [ 0x03 ] = KEY_KP3, // '3' | 44 | [0x01] = KEY_KP1, |
45 | [ 0x04 ] = KEY_KP4, // '4' | 45 | [0x02] = KEY_KP2, |
46 | [ 0x05 ] = KEY_KP5, // '5' | 46 | [0x03] = KEY_KP3, |
47 | [ 0x06 ] = KEY_KP6, // '6' | 47 | [0x04] = KEY_KP4, |
48 | [ 0x07 ] = KEY_KP7, // '7' | 48 | [0x05] = KEY_KP5, |
49 | [ 0x08 ] = KEY_KP8, // '8' | 49 | [0x06] = KEY_KP6, |
50 | [ 0x09 ] = KEY_KP9, // '9' | 50 | [0x07] = KEY_KP7, |
51 | [ 0x0a ] = KEY_KP0, // '0' | 51 | [0x08] = KEY_KP8, |
52 | [ 0x0b ] = KEY_TUNER, // 'tv/fm' | 52 | [0x09] = KEY_KP9, |
53 | [ 0x0c ] = KEY_SEARCH, // 'scan' | 53 | |
54 | [ 0x0d ] = KEY_STOP, // 'stop' | 54 | [0x0b] = KEY_TUNER, /* tv/fm */ |
55 | [ 0x0e ] = KEY_PAUSE, // 'pause' | 55 | [0x0c] = KEY_SEARCH, /* scan */ |
56 | [ 0x0f ] = KEY_LIST, // 'source' | 56 | [0x0d] = KEY_STOP, |
57 | 57 | [0x0e] = KEY_PAUSE, | |
58 | [ 0x10 ] = KEY_MUTE, // 'mute' | 58 | [0x0f] = KEY_LIST, /* source */ |
59 | [ 0x11 ] = KEY_REWIND, // 'backward <<' | 59 | |
60 | [ 0x12 ] = KEY_POWER, // 'power' | 60 | [0x10] = KEY_MUTE, |
61 | [ 0x13 ] = KEY_S, // 'snap' | 61 | [0x11] = KEY_REWIND, /* backward << */ |
62 | [ 0x14 ] = KEY_AUDIO, // 'stereo' | 62 | [0x12] = KEY_POWER, |
63 | [ 0x15 ] = KEY_CLEAR, // 'reset' | 63 | [0x13] = KEY_S, /* snap */ |
64 | [ 0x16 ] = KEY_PLAY, // 'play' | 64 | [0x14] = KEY_AUDIO, /* stereo */ |
65 | [ 0x17 ] = KEY_ENTER, // 'enter' | 65 | [0x15] = KEY_CLEAR, /* reset */ |
66 | [ 0x18 ] = KEY_ZOOM, // 'full screen' | 66 | [0x16] = KEY_PLAY, |
67 | [ 0x19 ] = KEY_FASTFORWARD, // 'forward >>' | 67 | [0x17] = KEY_ENTER, |
68 | [ 0x1a ] = KEY_CHANNELUP, // 'channel +' | 68 | [0x18] = KEY_ZOOM, /* full screen */ |
69 | [ 0x1b ] = KEY_VOLUMEUP, // 'volume +' | 69 | [0x19] = KEY_FASTFORWARD, /* forward >> */ |
70 | [ 0x1c ] = KEY_INFO, // 'preview' | 70 | [0x1a] = KEY_CHANNELUP, |
71 | [ 0x1d ] = KEY_RECORD, // 'record' | 71 | [0x1b] = KEY_VOLUMEUP, |
72 | [ 0x1e ] = KEY_CHANNELDOWN, // 'channel -' | 72 | [0x1c] = KEY_INFO, /* preview */ |
73 | [ 0x1f ] = KEY_VOLUMEDOWN, // 'volume -' | 73 | [0x1d] = KEY_RECORD, /* record */ |
74 | [0x1e] = KEY_CHANNELDOWN, | ||
75 | [0x1f] = KEY_VOLUMEDOWN, | ||
74 | }; | 76 | }; |
75 | 77 | ||
76 | /* ---------------------------------------------------------------------- */ | 78 | /* ---------------------------------------------------------------------- */ |
77 | 79 | ||
78 | /* IO-DATA BCTV7E Remote */ | 80 | /* IO-DATA BCTV7E Remote */ |
79 | static IR_KEYTAB_TYPE ir_codes_iodata_bctv7e[IR_KEYTAB_SIZE] = { | 81 | static IR_KEYTAB_TYPE ir_codes_iodata_bctv7e[IR_KEYTAB_SIZE] = { |
80 | [ 0x40 ] = KEY_TV, // TV | 82 | [0x40] = KEY_TV, |
81 | [ 0x20 ] = KEY_RADIO, // FM | 83 | [0x20] = KEY_RADIO, /* FM */ |
82 | [ 0x60 ] = KEY_EPG, // EPG | 84 | [0x60] = KEY_EPG, |
83 | [ 0x00 ] = KEY_POWER, // power | 85 | [0x00] = KEY_POWER, |
84 | 86 | ||
85 | [ 0x50 ] = KEY_KP1, // 1 | 87 | /* Keys 0 to 9 */ |
86 | [ 0x30 ] = KEY_KP2, // 2 | 88 | [0x44] = KEY_KP0, /* 10 */ |
87 | [ 0x70 ] = KEY_KP3, // 3 | 89 | [0x50] = KEY_KP1, |
88 | [ 0x10 ] = KEY_L, // Live | 90 | [0x30] = KEY_KP2, |
89 | 91 | [0x70] = KEY_KP3, | |
90 | [ 0x48 ] = KEY_KP4, // 4 | 92 | [0x48] = KEY_KP4, |
91 | [ 0x28 ] = KEY_KP5, // 5 | 93 | [0x28] = KEY_KP5, |
92 | [ 0x68 ] = KEY_KP6, // 6 | 94 | [0x68] = KEY_KP6, |
93 | [ 0x08 ] = KEY_T, // Time Shift | 95 | [0x58] = KEY_KP7, |
94 | 96 | [0x38] = KEY_KP8, | |
95 | [ 0x58 ] = KEY_KP7, // 7 | 97 | [0x78] = KEY_KP9, |
96 | [ 0x38 ] = KEY_KP8, // 8 | 98 | |
97 | [ 0x78 ] = KEY_KP9, // 9 | 99 | [0x10] = KEY_L, /* Live */ |
98 | [ 0x18 ] = KEY_PLAYPAUSE, // Play | 100 | [0x08] = KEY_T, /* Time Shift */ |
99 | 101 | ||
100 | [ 0x44 ] = KEY_KP0, // 10 | 102 | [0x18] = KEY_PLAYPAUSE, /* Play */ |
101 | [ 0x24 ] = KEY_ENTER, // 11 | 103 | |
102 | [ 0x64 ] = KEY_ESC, // 12 | 104 | [0x24] = KEY_ENTER, /* 11 */ |
103 | [ 0x04 ] = KEY_M, // Multi | 105 | [0x64] = KEY_ESC, /* 12 */ |
104 | 106 | [0x04] = KEY_M, /* Multi */ | |
105 | [ 0x54 ] = KEY_VIDEO, // VIDEO | 107 | |
106 | [ 0x34 ] = KEY_CHANNELUP, // channel + | 108 | [0x54] = KEY_VIDEO, |
107 | [ 0x74 ] = KEY_VOLUMEUP, // volume + | 109 | [0x34] = KEY_CHANNELUP, |
108 | [ 0x14 ] = KEY_MUTE, // Mute | 110 | [0x74] = KEY_VOLUMEUP, |
109 | 111 | [0x14] = KEY_MUTE, | |
110 | [ 0x4c ] = KEY_S, // SVIDEO | 112 | |
111 | [ 0x2c ] = KEY_CHANNELDOWN, // channel - | 113 | [0x4c] = KEY_S, /* SVIDEO */ |
112 | [ 0x6c ] = KEY_VOLUMEDOWN, // volume - | 114 | [0x2c] = KEY_CHANNELDOWN, |
113 | [ 0x0c ] = KEY_ZOOM, // Zoom | 115 | [0x6c] = KEY_VOLUMEDOWN, |
114 | 116 | [0x0c] = KEY_ZOOM, | |
115 | [ 0x5c ] = KEY_PAUSE, // pause | 117 | |
116 | [ 0x3c ] = KEY_C, // || (red) | 118 | [0x5c] = KEY_PAUSE, |
117 | [ 0x7c ] = KEY_RECORD, // recording | 119 | [0x3c] = KEY_C, /* || (red) */ |
118 | [ 0x1c ] = KEY_STOP, // stop | 120 | [0x7c] = KEY_RECORD, /* recording */ |
119 | 121 | [0x1c] = KEY_STOP, | |
120 | [ 0x41 ] = KEY_REWIND, // backward << | 122 | |
121 | [ 0x21 ] = KEY_PLAY, // play | 123 | [0x41] = KEY_REWIND, /* backward << */ |
122 | [ 0x61 ] = KEY_FASTFORWARD, // forward >> | 124 | [0x21] = KEY_PLAY, |
123 | [ 0x01 ] = KEY_NEXT, // skip >| | 125 | [0x61] = KEY_FASTFORWARD, /* forward >> */ |
126 | [0x01] = KEY_NEXT, /* skip >| */ | ||
127 | }; | ||
128 | |||
129 | /* ---------------------------------------------------------------------- */ | ||
130 | |||
131 | /* ADS Tech Instant TV DVB-T PCI Remote */ | ||
132 | static IR_KEYTAB_TYPE ir_codes_adstech_dvb_t_pci[IR_KEYTAB_SIZE] = { | ||
133 | /* Keys 0 to 9 */ | ||
134 | [0x4d] = KEY_0, | ||
135 | [0x57] = KEY_1, | ||
136 | [0x4f] = KEY_2, | ||
137 | [0x53] = KEY_3, | ||
138 | [0x56] = KEY_4, | ||
139 | [0x4e] = KEY_5, | ||
140 | [0x5e] = KEY_6, | ||
141 | [0x54] = KEY_7, | ||
142 | [0x4c] = KEY_8, | ||
143 | [0x5c] = KEY_9, | ||
144 | |||
145 | [0x5b] = KEY_POWER, | ||
146 | [0x5f] = KEY_MUTE, | ||
147 | [0x55] = KEY_GOTO, | ||
148 | [0x5d] = KEY_SEARCH, | ||
149 | [0x17] = KEY_EPG, /* Guide */ | ||
150 | [0x1f] = KEY_MENU, | ||
151 | [0x0f] = KEY_UP, | ||
152 | [0x46] = KEY_DOWN, | ||
153 | [0x16] = KEY_LEFT, | ||
154 | [0x1e] = KEY_RIGHT, | ||
155 | [0x0e] = KEY_SELECT, /* Enter */ | ||
156 | [0x5a] = KEY_INFO, | ||
157 | [0x52] = KEY_EXIT, | ||
158 | [0x59] = KEY_PREVIOUS, | ||
159 | [0x51] = KEY_NEXT, | ||
160 | [0x58] = KEY_REWIND, | ||
161 | [0x50] = KEY_FORWARD, | ||
162 | [0x44] = KEY_PLAYPAUSE, | ||
163 | [0x07] = KEY_STOP, | ||
164 | [0x1b] = KEY_RECORD, | ||
165 | [0x13] = KEY_TUNER, /* Live */ | ||
166 | [0x0a] = KEY_A, | ||
167 | [0x12] = KEY_B, | ||
168 | [0x03] = KEY_PROG1, /* 1 */ | ||
169 | [0x01] = KEY_PROG2, /* 2 */ | ||
170 | [0x00] = KEY_PROG3, /* 3 */ | ||
171 | [0x06] = KEY_DVD, | ||
172 | [0x48] = KEY_AUX, /* Photo */ | ||
173 | [0x40] = KEY_VIDEO, | ||
174 | [0x19] = KEY_AUDIO, /* Music */ | ||
175 | [0x0b] = KEY_CHANNELUP, | ||
176 | [0x08] = KEY_CHANNELDOWN, | ||
177 | [0x15] = KEY_VOLUMEUP, | ||
178 | [0x1c] = KEY_VOLUMEDOWN, | ||
179 | }; | ||
180 | |||
181 | /* ---------------------------------------------------------------------- */ | ||
182 | |||
183 | /* MSI TV@nywhere remote */ | ||
184 | static IR_KEYTAB_TYPE ir_codes_msi_tvanywhere[IR_KEYTAB_SIZE] = { | ||
185 | /* Keys 0 to 9 */ | ||
186 | [0x00] = KEY_0, | ||
187 | [0x01] = KEY_1, | ||
188 | [0x02] = KEY_2, | ||
189 | [0x03] = KEY_3, | ||
190 | [0x04] = KEY_4, | ||
191 | [0x05] = KEY_5, | ||
192 | [0x06] = KEY_6, | ||
193 | [0x07] = KEY_7, | ||
194 | [0x08] = KEY_8, | ||
195 | [0x09] = KEY_9, | ||
196 | |||
197 | [0x0c] = KEY_MUTE, | ||
198 | [0x0f] = KEY_SCREEN, /* Full Screen */ | ||
199 | [0x10] = KEY_F, /* Funtion */ | ||
200 | [0x11] = KEY_T, /* Time shift */ | ||
201 | [0x12] = KEY_POWER, | ||
202 | [0x13] = KEY_MEDIA, /* MTS */ | ||
203 | [0x14] = KEY_SLOW, | ||
204 | [0x16] = KEY_REWIND, /* backward << */ | ||
205 | [0x17] = KEY_ENTER, /* Return */ | ||
206 | [0x18] = KEY_FASTFORWARD, /* forward >> */ | ||
207 | [0x1a] = KEY_CHANNELUP, | ||
208 | [0x1b] = KEY_VOLUMEUP, | ||
209 | [0x1e] = KEY_CHANNELDOWN, | ||
210 | [0x1f] = KEY_VOLUMEDOWN, | ||
124 | }; | 211 | }; |
125 | 212 | ||
126 | /* ---------------------------------------------------------------------- */ | 213 | /* ---------------------------------------------------------------------- */ |
127 | 214 | ||
128 | struct cx88_IR { | 215 | struct cx88_IR { |
129 | struct cx88_core *core; | 216 | struct cx88_core *core; |
130 | struct input_dev input; | 217 | struct input_dev input; |
131 | struct ir_input_state ir; | 218 | struct ir_input_state ir; |
132 | char name[32]; | 219 | char name[32]; |
133 | char phys[32]; | 220 | char phys[32]; |
134 | 221 | ||
135 | /* sample from gpio pin 16 */ | 222 | /* sample from gpio pin 16 */ |
136 | int sampling; | 223 | int sampling; |
137 | u32 samples[16]; | 224 | u32 samples[16]; |
138 | int scount; | 225 | int scount; |
139 | unsigned long release; | 226 | unsigned long release; |
140 | 227 | ||
141 | /* poll external decoder */ | 228 | /* poll external decoder */ |
142 | int polling; | 229 | int polling; |
143 | struct work_struct work; | 230 | struct work_struct work; |
144 | struct timer_list timer; | 231 | struct timer_list timer; |
145 | u32 gpio_addr; | 232 | u32 gpio_addr; |
146 | u32 last_gpio; | 233 | u32 last_gpio; |
147 | u32 mask_keycode; | 234 | u32 mask_keycode; |
148 | u32 mask_keydown; | 235 | u32 mask_keydown; |
149 | u32 mask_keyup; | 236 | u32 mask_keyup; |
150 | }; | 237 | }; |
151 | 238 | ||
152 | static int ir_debug = 0; | 239 | static int ir_debug = 0; |
153 | module_param(ir_debug, int, 0644); /* debug level [IR] */ | 240 | module_param(ir_debug, int, 0644); /* debug level [IR] */ |
154 | MODULE_PARM_DESC(ir_debug, "enable debug messages [IR]"); | 241 | MODULE_PARM_DESC(ir_debug, "enable debug messages [IR]"); |
155 | 242 | ||
156 | #define ir_dprintk(fmt, arg...) if (ir_debug) \ | 243 | #define ir_dprintk(fmt, arg...) if (ir_debug) \ |
@@ -174,37 +261,37 @@ static void cx88_ir_handle_key(struct cx88_IR *ir) | |||
174 | /* extract data */ | 261 | /* extract data */ |
175 | data = ir_extract_bits(gpio, ir->mask_keycode); | 262 | data = ir_extract_bits(gpio, ir->mask_keycode); |
176 | ir_dprintk("irq gpio=0x%x code=%d | %s%s%s\n", | 263 | ir_dprintk("irq gpio=0x%x code=%d | %s%s%s\n", |
177 | gpio, data, | 264 | gpio, data, |
178 | ir->polling ? "poll" : "irq", | 265 | ir->polling ? "poll" : "irq", |
179 | (gpio & ir->mask_keydown) ? " down" : "", | 266 | (gpio & ir->mask_keydown) ? " down" : "", |
180 | (gpio & ir->mask_keyup) ? " up" : ""); | 267 | (gpio & ir->mask_keyup) ? " up" : ""); |
181 | 268 | ||
182 | if (ir->mask_keydown) { | 269 | if (ir->mask_keydown) { |
183 | /* bit set on keydown */ | 270 | /* bit set on keydown */ |
184 | if (gpio & ir->mask_keydown) { | 271 | if (gpio & ir->mask_keydown) { |
185 | ir_input_keydown(&ir->input,&ir->ir,data,data); | 272 | ir_input_keydown(&ir->input, &ir->ir, data, data); |
186 | } else { | 273 | } else { |
187 | ir_input_nokey(&ir->input,&ir->ir); | 274 | ir_input_nokey(&ir->input, &ir->ir); |
188 | } | 275 | } |
189 | 276 | ||
190 | } else if (ir->mask_keyup) { | 277 | } else if (ir->mask_keyup) { |
191 | /* bit cleared on keydown */ | 278 | /* bit cleared on keydown */ |
192 | if (0 == (gpio & ir->mask_keyup)) { | 279 | if (0 == (gpio & ir->mask_keyup)) { |
193 | ir_input_keydown(&ir->input,&ir->ir,data,data); | 280 | ir_input_keydown(&ir->input, &ir->ir, data, data); |
194 | } else { | 281 | } else { |
195 | ir_input_nokey(&ir->input,&ir->ir); | 282 | ir_input_nokey(&ir->input, &ir->ir); |
196 | } | 283 | } |
197 | 284 | ||
198 | } else { | 285 | } else { |
199 | /* can't distinguish keydown/up :-/ */ | 286 | /* can't distinguish keydown/up :-/ */ |
200 | ir_input_keydown(&ir->input,&ir->ir,data,data); | 287 | ir_input_keydown(&ir->input, &ir->ir, data, data); |
201 | ir_input_nokey(&ir->input,&ir->ir); | 288 | ir_input_nokey(&ir->input, &ir->ir); |
202 | } | 289 | } |
203 | } | 290 | } |
204 | 291 | ||
205 | static void ir_timer(unsigned long data) | 292 | static void ir_timer(unsigned long data) |
206 | { | 293 | { |
207 | struct cx88_IR *ir = (struct cx88_IR*)data; | 294 | struct cx88_IR *ir = (struct cx88_IR *)data; |
208 | 295 | ||
209 | schedule_work(&ir->work); | 296 | schedule_work(&ir->work); |
210 | } | 297 | } |
@@ -227,47 +314,61 @@ int cx88_ir_init(struct cx88_core *core, struct pci_dev *pci) | |||
227 | IR_KEYTAB_TYPE *ir_codes = NULL; | 314 | IR_KEYTAB_TYPE *ir_codes = NULL; |
228 | int ir_type = IR_TYPE_OTHER; | 315 | int ir_type = IR_TYPE_OTHER; |
229 | 316 | ||
230 | ir = kmalloc(sizeof(*ir),GFP_KERNEL); | 317 | ir = kmalloc(sizeof(*ir), GFP_KERNEL); |
231 | if (NULL == ir) | 318 | if (NULL == ir) |
232 | return -ENOMEM; | 319 | return -ENOMEM; |
233 | memset(ir,0,sizeof(*ir)); | 320 | memset(ir, 0, sizeof(*ir)); |
234 | 321 | ||
235 | /* detect & configure */ | 322 | /* detect & configure */ |
236 | switch (core->board) { | 323 | switch (core->board) { |
237 | case CX88_BOARD_DNTV_LIVE_DVB_T: | 324 | case CX88_BOARD_DNTV_LIVE_DVB_T: |
238 | case CX88_BOARD_KWORLD_DVB_T: | 325 | case CX88_BOARD_KWORLD_DVB_T: |
239 | ir_codes = ir_codes_dntv_live_dvb_t; | 326 | ir_codes = ir_codes_dntv_live_dvb_t; |
240 | ir->gpio_addr = MO_GP1_IO; | 327 | ir->gpio_addr = MO_GP1_IO; |
241 | ir->mask_keycode = 0x1f; | 328 | ir->mask_keycode = 0x1f; |
242 | ir->mask_keyup = 0x60; | 329 | ir->mask_keyup = 0x60; |
243 | ir->polling = 50; // ms | 330 | ir->polling = 50; /* ms */ |
244 | break; | 331 | break; |
245 | case CX88_BOARD_HAUPPAUGE: | 332 | case CX88_BOARD_HAUPPAUGE: |
246 | case CX88_BOARD_HAUPPAUGE_DVB_T1: | 333 | case CX88_BOARD_HAUPPAUGE_DVB_T1: |
247 | ir_codes = ir_codes_hauppauge_new; | 334 | ir_codes = ir_codes_hauppauge_new; |
248 | ir_type = IR_TYPE_RC5; | 335 | ir_type = IR_TYPE_RC5; |
249 | ir->sampling = 1; | 336 | ir->sampling = 1; |
250 | break; | 337 | break; |
251 | case CX88_BOARD_WINFAST2000XP_EXPERT: | 338 | case CX88_BOARD_WINFAST2000XP_EXPERT: |
252 | ir_codes = ir_codes_winfast; | 339 | ir_codes = ir_codes_winfast; |
253 | ir->gpio_addr = MO_GP0_IO; | 340 | ir->gpio_addr = MO_GP0_IO; |
254 | ir->mask_keycode = 0x8f8; | 341 | ir->mask_keycode = 0x8f8; |
255 | ir->mask_keyup = 0x100; | 342 | ir->mask_keyup = 0x100; |
256 | ir->polling = 1; // ms | 343 | ir->polling = 1; /* ms */ |
257 | break; | 344 | break; |
258 | case CX88_BOARD_IODATA_GVBCTV7E: | 345 | case CX88_BOARD_IODATA_GVBCTV7E: |
259 | ir_codes = ir_codes_iodata_bctv7e; | 346 | ir_codes = ir_codes_iodata_bctv7e; |
260 | ir->gpio_addr = MO_GP0_IO; | 347 | ir->gpio_addr = MO_GP0_IO; |
261 | ir->mask_keycode = 0xfd; | 348 | ir->mask_keycode = 0xfd; |
262 | ir->mask_keydown = 0x02; | 349 | ir->mask_keydown = 0x02; |
263 | ir->polling = 5; // ms | 350 | ir->polling = 5; /* ms */ |
264 | break; | 351 | break; |
265 | case CX88_BOARD_PIXELVIEW_PLAYTV_ULTRA_PRO: | 352 | case CX88_BOARD_PIXELVIEW_PLAYTV_ULTRA_PRO: |
266 | ir_codes = ir_codes_pixelview; | 353 | ir_codes = ir_codes_pixelview; |
267 | ir->gpio_addr = MO_GP1_IO; | 354 | ir->gpio_addr = MO_GP1_IO; |
355 | ir->mask_keycode = 0x1f; | ||
356 | ir->mask_keyup = 0x80; | ||
357 | ir->polling = 1; /* ms */ | ||
358 | break; | ||
359 | case CX88_BOARD_ADSTECH_DVB_T_PCI: | ||
360 | ir_codes = ir_codes_adstech_dvb_t_pci; | ||
361 | ir->gpio_addr = MO_GP1_IO; | ||
362 | ir->mask_keycode = 0xbf; | ||
363 | ir->mask_keyup = 0x40; | ||
364 | ir->polling = 50; /* ms */ | ||
365 | break; | ||
366 | case CX88_BOARD_MSI_TVANYWHERE_MASTER: | ||
367 | ir_codes = ir_codes_msi_tvanywhere; | ||
368 | ir->gpio_addr = MO_GP1_IO; | ||
268 | ir->mask_keycode = 0x1f; | 369 | ir->mask_keycode = 0x1f; |
269 | ir->mask_keyup = 0x80; | 370 | ir->mask_keyup = 0x40; |
270 | ir->polling = 1; // ms | 371 | ir->polling = 1; /* ms */ |
271 | break; | 372 | break; |
272 | } | 373 | } |
273 | 374 | ||
@@ -279,8 +380,7 @@ int cx88_ir_init(struct cx88_core *core, struct pci_dev *pci) | |||
279 | /* init input device */ | 380 | /* init input device */ |
280 | snprintf(ir->name, sizeof(ir->name), "cx88 IR (%s)", | 381 | snprintf(ir->name, sizeof(ir->name), "cx88 IR (%s)", |
281 | cx88_boards[core->board].name); | 382 | cx88_boards[core->board].name); |
282 | snprintf(ir->phys, sizeof(ir->phys), "pci-%s/ir0", | 383 | snprintf(ir->phys, sizeof(ir->phys), "pci-%s/ir0", pci_name(pci)); |
283 | pci_name(pci)); | ||
284 | 384 | ||
285 | ir_input_init(&ir->input, &ir->ir, ir_type, ir_codes); | 385 | ir_input_init(&ir->input, &ir->ir, ir_type, ir_codes); |
286 | ir->input.name = ir->name; | 386 | ir->input.name = ir->name; |
@@ -288,10 +388,10 @@ int cx88_ir_init(struct cx88_core *core, struct pci_dev *pci) | |||
288 | ir->input.id.bustype = BUS_PCI; | 388 | ir->input.id.bustype = BUS_PCI; |
289 | ir->input.id.version = 1; | 389 | ir->input.id.version = 1; |
290 | if (pci->subsystem_vendor) { | 390 | if (pci->subsystem_vendor) { |
291 | ir->input.id.vendor = pci->subsystem_vendor; | 391 | ir->input.id.vendor = pci->subsystem_vendor; |
292 | ir->input.id.product = pci->subsystem_device; | 392 | ir->input.id.product = pci->subsystem_device; |
293 | } else { | 393 | } else { |
294 | ir->input.id.vendor = pci->vendor; | 394 | ir->input.id.vendor = pci->vendor; |
295 | ir->input.id.product = pci->device; | 395 | ir->input.id.product = pci->device; |
296 | } | 396 | } |
297 | 397 | ||
@@ -303,13 +403,13 @@ int cx88_ir_init(struct cx88_core *core, struct pci_dev *pci) | |||
303 | INIT_WORK(&ir->work, cx88_ir_work, ir); | 403 | INIT_WORK(&ir->work, cx88_ir_work, ir); |
304 | init_timer(&ir->timer); | 404 | init_timer(&ir->timer); |
305 | ir->timer.function = ir_timer; | 405 | ir->timer.function = ir_timer; |
306 | ir->timer.data = (unsigned long)ir; | 406 | ir->timer.data = (unsigned long)ir; |
307 | schedule_work(&ir->work); | 407 | schedule_work(&ir->work); |
308 | } | 408 | } |
309 | if (ir->sampling) { | 409 | if (ir->sampling) { |
310 | core->pci_irqmask |= (1<<18); // IR_SMP_INT | 410 | core->pci_irqmask |= (1 << 18); /* IR_SMP_INT */ |
311 | cx_write(MO_DDS_IO, 0xa80a80); // 4 kHz sample rate | 411 | cx_write(MO_DDS_IO, 0xa80a80); /* 4 kHz sample rate */ |
312 | cx_write(MO_DDSCFG_IO, 0x5); // enable | 412 | cx_write(MO_DDSCFG_IO, 0x5); /* enable */ |
313 | } | 413 | } |
314 | 414 | ||
315 | /* all done */ | 415 | /* all done */ |
@@ -345,7 +445,7 @@ int cx88_ir_fini(struct cx88_core *core) | |||
345 | void cx88_ir_irq(struct cx88_core *core) | 445 | void cx88_ir_irq(struct cx88_core *core) |
346 | { | 446 | { |
347 | struct cx88_IR *ir = core->ir; | 447 | struct cx88_IR *ir = core->ir; |
348 | u32 samples,rc5; | 448 | u32 samples, rc5; |
349 | int i; | 449 | int i; |
350 | 450 | ||
351 | if (NULL == ir) | 451 | if (NULL == ir) |
@@ -354,7 +454,7 @@ void cx88_ir_irq(struct cx88_core *core) | |||
354 | return; | 454 | return; |
355 | 455 | ||
356 | samples = cx_read(MO_SAMPLE_IO); | 456 | samples = cx_read(MO_SAMPLE_IO); |
357 | if (0 != samples && 0xffffffff != samples) { | 457 | if (0 != samples && 0xffffffff != samples) { |
358 | /* record sample data */ | 458 | /* record sample data */ |
359 | if (ir->scount < ARRAY_SIZE(ir->samples)) | 459 | if (ir->scount < ARRAY_SIZE(ir->samples)) |
360 | ir->samples[ir->scount++] = samples; | 460 | ir->samples[ir->scount++] = samples; |
@@ -362,8 +462,8 @@ void cx88_ir_irq(struct cx88_core *core) | |||
362 | } | 462 | } |
363 | if (!ir->scount) { | 463 | if (!ir->scount) { |
364 | /* nothing to sample */ | 464 | /* nothing to sample */ |
365 | if (ir->ir.keypressed && time_after(jiffies,ir->release)) | 465 | if (ir->ir.keypressed && time_after(jiffies, ir->release)) |
366 | ir_input_nokey(&ir->input,&ir->ir); | 466 | ir_input_nokey(&ir->input, &ir->ir); |
367 | return; | 467 | return; |
368 | } | 468 | } |
369 | 469 | ||
@@ -373,14 +473,14 @@ void cx88_ir_irq(struct cx88_core *core) | |||
373 | for (i = 0; i < ir->scount; i++) | 473 | for (i = 0; i < ir->scount; i++) |
374 | ir->samples[i] = ~ir->samples[i]; | 474 | ir->samples[i] = ~ir->samples[i]; |
375 | if (ir_debug) | 475 | if (ir_debug) |
376 | ir_dump_samples(ir->samples,ir->scount); | 476 | ir_dump_samples(ir->samples, ir->scount); |
377 | 477 | ||
378 | /* decode it */ | 478 | /* decode it */ |
379 | switch (core->board) { | 479 | switch (core->board) { |
380 | case CX88_BOARD_HAUPPAUGE: | 480 | case CX88_BOARD_HAUPPAUGE: |
381 | case CX88_BOARD_HAUPPAUGE_DVB_T1: | 481 | case CX88_BOARD_HAUPPAUGE_DVB_T1: |
382 | rc5 = ir_decode_biphase(ir->samples,ir->scount,5,7); | 482 | rc5 = ir_decode_biphase(ir->samples, ir->scount, 5, 7); |
383 | ir_dprintk("biphase decoded: %x\n",rc5); | 483 | ir_dprintk("biphase decoded: %x\n", rc5); |
384 | if ((rc5 & 0xfffff000) != 0x3000) | 484 | if ((rc5 & 0xfffff000) != 0x3000) |
385 | break; | 485 | break; |
386 | ir_input_keydown(&ir->input, &ir->ir, rc5 & 0x3f, rc5); | 486 | ir_input_keydown(&ir->input, &ir->ir, rc5 & 0x3f, rc5); |
diff --git a/drivers/media/video/cx88/cx88-mpeg.c b/drivers/media/video/cx88/cx88-mpeg.c index 9ade2ae91e9b..fe2767c0ff94 100644 --- a/drivers/media/video/cx88/cx88-mpeg.c +++ b/drivers/media/video/cx88/cx88-mpeg.c | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * $Id: cx88-mpeg.c,v 1.26 2005/06/03 13:31:51 mchehab Exp $ | 2 | * $Id: cx88-mpeg.c,v 1.31 2005/07/07 14:17:47 mchehab Exp $ |
3 | * | 3 | * |
4 | * Support for the mpeg transport stream transfers | 4 | * Support for the mpeg transport stream transfers |
5 | * PCI function #2 of the cx2388x. | 5 | * PCI function #2 of the cx2388x. |
@@ -64,17 +64,21 @@ static int cx8802_start_dma(struct cx8802_dev *dev, | |||
64 | /* write TS length to chip */ | 64 | /* write TS length to chip */ |
65 | cx_write(MO_TS_LNGTH, buf->vb.width); | 65 | cx_write(MO_TS_LNGTH, buf->vb.width); |
66 | 66 | ||
67 | #if 1 | ||
68 | /* FIXME: this needs a review. | 67 | /* FIXME: this needs a review. |
69 | * also: move to cx88-blackbird + cx88-dvb source files? */ | 68 | * also: move to cx88-blackbird + cx88-dvb source files? */ |
70 | 69 | ||
71 | if (cx88_boards[core->board].dvb) { | 70 | if (cx88_boards[core->board].dvb) { |
72 | /* negedge driven & software reset */ | 71 | /* negedge driven & software reset */ |
73 | cx_write(TS_GEN_CNTRL, 0x40); | 72 | cx_write(TS_GEN_CNTRL, 0x0040 | dev->ts_gen_cntrl); |
74 | udelay(100); | 73 | udelay(100); |
75 | cx_write(MO_PINMUX_IO, 0x00); | 74 | cx_write(MO_PINMUX_IO, 0x00); |
76 | cx_write(TS_HW_SOP_CNTRL,47<<16|188<<4|0x00); | 75 | cx_write(TS_HW_SOP_CNTRL,0x47<<16|188<<4|0x01); |
77 | cx_write(TS_SOP_STAT,0x00); | 76 | if ((core->board == CX88_BOARD_DVICO_FUSIONHDTV_3_GOLD_Q) || |
77 | (core->board == CX88_BOARD_DVICO_FUSIONHDTV_3_GOLD_T)) { | ||
78 | cx_write(TS_SOP_STAT, 1<<13); | ||
79 | } else { | ||
80 | cx_write(TS_SOP_STAT, 0x00); | ||
81 | } | ||
78 | cx_write(TS_GEN_CNTRL, dev->ts_gen_cntrl); | 82 | cx_write(TS_GEN_CNTRL, dev->ts_gen_cntrl); |
79 | udelay(100); | 83 | udelay(100); |
80 | } | 84 | } |
@@ -93,7 +97,6 @@ static int cx8802_start_dma(struct cx8802_dev *dev, | |||
93 | cx_write(TS_GEN_CNTRL, 0x06); /* punctured clock TS & posedge driven */ | 97 | cx_write(TS_GEN_CNTRL, 0x06); /* punctured clock TS & posedge driven */ |
94 | udelay(100); | 98 | udelay(100); |
95 | } | 99 | } |
96 | #endif | ||
97 | 100 | ||
98 | /* reset counter */ | 101 | /* reset counter */ |
99 | cx_write(MO_TS_GPCNTRL, GP_COUNT_CONTROL_RESET); | 102 | cx_write(MO_TS_GPCNTRL, GP_COUNT_CONTROL_RESET); |
@@ -265,6 +268,15 @@ static void cx8802_timeout(unsigned long data) | |||
265 | do_cancel_buffers(dev,"timeout",1); | 268 | do_cancel_buffers(dev,"timeout",1); |
266 | } | 269 | } |
267 | 270 | ||
271 | static char *cx88_mpeg_irqs[32] = { | ||
272 | "ts_risci1", NULL, NULL, NULL, | ||
273 | "ts_risci2", NULL, NULL, NULL, | ||
274 | "ts_oflow", NULL, NULL, NULL, | ||
275 | "ts_sync", NULL, NULL, NULL, | ||
276 | "opc_err", "par_err", "rip_err", "pci_abort", | ||
277 | "ts_err?", | ||
278 | }; | ||
279 | |||
268 | static void cx8802_mpeg_irq(struct cx8802_dev *dev) | 280 | static void cx8802_mpeg_irq(struct cx8802_dev *dev) |
269 | { | 281 | { |
270 | struct cx88_core *core = dev->core; | 282 | struct cx88_core *core = dev->core; |
@@ -277,10 +289,7 @@ static void cx8802_mpeg_irq(struct cx8802_dev *dev) | |||
277 | return; | 289 | return; |
278 | 290 | ||
279 | cx_write(MO_TS_INTSTAT, status); | 291 | cx_write(MO_TS_INTSTAT, status); |
280 | #if 0 | 292 | |
281 | cx88_print_irqbits(core->name, "irq mpeg ", | ||
282 | cx88_mpeg_irqs, status, mask); | ||
283 | #endif | ||
284 | if (debug || (status & mask & ~0xff)) | 293 | if (debug || (status & mask & ~0xff)) |
285 | cx88_print_irqbits(core->name, "irq mpeg ", | 294 | cx88_print_irqbits(core->name, "irq mpeg ", |
286 | cx88_mpeg_irqs, status, mask); | 295 | cx88_mpeg_irqs, status, mask); |
@@ -436,10 +445,8 @@ int cx8802_suspend_common(struct pci_dev *pci_dev, pm_message_t state) | |||
436 | } | 445 | } |
437 | spin_unlock(&dev->slock); | 446 | spin_unlock(&dev->slock); |
438 | 447 | ||
439 | #if 1 | ||
440 | /* FIXME -- shutdown device */ | 448 | /* FIXME -- shutdown device */ |
441 | cx88_shutdown(dev->core); | 449 | cx88_shutdown(dev->core); |
442 | #endif | ||
443 | 450 | ||
444 | pci_save_state(pci_dev); | 451 | pci_save_state(pci_dev); |
445 | if (0 != pci_set_power_state(pci_dev, pci_choose_state(pci_dev, state))) { | 452 | if (0 != pci_set_power_state(pci_dev, pci_choose_state(pci_dev, state))) { |
@@ -461,10 +468,8 @@ int cx8802_resume_common(struct pci_dev *pci_dev) | |||
461 | pci_set_power_state(pci_dev, PCI_D0); | 468 | pci_set_power_state(pci_dev, PCI_D0); |
462 | pci_restore_state(pci_dev); | 469 | pci_restore_state(pci_dev); |
463 | 470 | ||
464 | #if 1 | ||
465 | /* FIXME: re-initialize hardware */ | 471 | /* FIXME: re-initialize hardware */ |
466 | cx88_reset(dev->core); | 472 | cx88_reset(dev->core); |
467 | #endif | ||
468 | 473 | ||
469 | /* restart video+vbi capture */ | 474 | /* restart video+vbi capture */ |
470 | spin_lock(&dev->slock); | 475 | spin_lock(&dev->slock); |
diff --git a/drivers/media/video/cx88/cx88-reg.h b/drivers/media/video/cx88/cx88-reg.h index 63ad33f5818b..37f82662d265 100644 --- a/drivers/media/video/cx88/cx88-reg.h +++ b/drivers/media/video/cx88/cx88-reg.h | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | $Id: cx88-reg.h,v 1.7 2005/06/03 13:31:51 mchehab Exp $ | 2 | $Id: cx88-reg.h,v 1.8 2005/07/07 13:58:38 mchehab Exp $ |
3 | 3 | ||
4 | cx88x-hw.h - CX2388x register offsets | 4 | cx88x-hw.h - CX2388x register offsets |
5 | 5 | ||
@@ -604,20 +604,11 @@ | |||
604 | #define EN_I2SIN_STR2DAC 0x00004000 | 604 | #define EN_I2SIN_STR2DAC 0x00004000 |
605 | #define EN_I2SIN_ENABLE 0x00008000 | 605 | #define EN_I2SIN_ENABLE 0x00008000 |
606 | 606 | ||
607 | #if 0 | ||
608 | /* old */ | ||
609 | #define EN_DMTRX_SUMDIFF 0x00000800 | ||
610 | #define EN_DMTRX_SUMR 0x00000880 | ||
611 | #define EN_DMTRX_LR 0x00000900 | ||
612 | #define EN_DMTRX_MONO 0x00000980 | ||
613 | #else | ||
614 | /* dscaler cvs */ | ||
615 | #define EN_DMTRX_SUMDIFF (0 << 7) | 607 | #define EN_DMTRX_SUMDIFF (0 << 7) |
616 | #define EN_DMTRX_SUMR (1 << 7) | 608 | #define EN_DMTRX_SUMR (1 << 7) |
617 | #define EN_DMTRX_LR (2 << 7) | 609 | #define EN_DMTRX_LR (2 << 7) |
618 | #define EN_DMTRX_MONO (3 << 7) | 610 | #define EN_DMTRX_MONO (3 << 7) |
619 | #define EN_DMTRX_BYPASS (1 << 11) | 611 | #define EN_DMTRX_BYPASS (1 << 11) |
620 | #endif | ||
621 | 612 | ||
622 | // Video | 613 | // Video |
623 | #define VID_CAPTURE_CONTROL 0x310180 | 614 | #define VID_CAPTURE_CONTROL 0x310180 |
diff --git a/drivers/media/video/cx88/cx88-tvaudio.c b/drivers/media/video/cx88/cx88-tvaudio.c index 46d78b1dc9b2..91207f10bae7 100644 --- a/drivers/media/video/cx88/cx88-tvaudio.c +++ b/drivers/media/video/cx88/cx88-tvaudio.c | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | $Id: cx88-tvaudio.c,v 1.36 2005/06/05 05:53:45 mchehab Exp $ | 2 | $Id: cx88-tvaudio.c,v 1.37 2005/07/07 13:58:38 mchehab Exp $ |
3 | 3 | ||
4 | cx88x-audio.c - Conexant CX23880/23881 audio downstream driver driver | 4 | cx88x-audio.c - Conexant CX23880/23881 audio downstream driver driver |
5 | 5 | ||
@@ -278,80 +278,6 @@ static void set_audio_standard_BTSC(struct cx88_core *core, unsigned int sap) | |||
278 | set_audio_finish(core); | 278 | set_audio_finish(core); |
279 | } | 279 | } |
280 | 280 | ||
281 | #if 0 | ||
282 | static void set_audio_standard_NICAM(struct cx88_core *core) | ||
283 | { | ||
284 | static const struct rlist nicam_common[] = { | ||
285 | /* from dscaler */ | ||
286 | { AUD_RATE_ADJ1, 0x00000010 }, | ||
287 | { AUD_RATE_ADJ2, 0x00000040 }, | ||
288 | { AUD_RATE_ADJ3, 0x00000100 }, | ||
289 | { AUD_RATE_ADJ4, 0x00000400 }, | ||
290 | { AUD_RATE_ADJ5, 0x00001000 }, | ||
291 | // { AUD_DMD_RA_DDS, 0x00c0d5ce }, | ||
292 | |||
293 | // Deemphasis 1: | ||
294 | { AUD_DEEMPHGAIN_R, 0x000023c2 }, | ||
295 | { AUD_DEEMPHNUMER1_R, 0x0002a7bc }, | ||
296 | { AUD_DEEMPHNUMER2_R, 0x0003023e }, | ||
297 | { AUD_DEEMPHDENOM1_R, 0x0000f3d0 }, | ||
298 | { AUD_DEEMPHDENOM2_R, 0x00000000 }, | ||
299 | |||
300 | #if 0 | ||
301 | // Deemphasis 2: (other tv norm?) | ||
302 | { AUD_DEEMPHGAIN_R, 0x0000c600 }, | ||
303 | { AUD_DEEMPHNUMER1_R, 0x00066738 }, | ||
304 | { AUD_DEEMPHNUMER2_R, 0x00066739 }, | ||
305 | { AUD_DEEMPHDENOM1_R, 0x0001e88c }, | ||
306 | { AUD_DEEMPHDENOM2_R, 0x0001e88c }, | ||
307 | #endif | ||
308 | |||
309 | { AUD_DEEMPHDENOM2_R, 0x00000000 }, | ||
310 | { AUD_ERRLOGPERIOD_R, 0x00000fff }, | ||
311 | { AUD_ERRINTRPTTHSHLD1_R, 0x000003ff }, | ||
312 | { AUD_ERRINTRPTTHSHLD2_R, 0x000000ff }, | ||
313 | { AUD_ERRINTRPTTHSHLD3_R, 0x0000003f }, | ||
314 | { AUD_POLYPH80SCALEFAC, 0x00000003 }, | ||
315 | |||
316 | // setup QAM registers | ||
317 | { AUD_PDF_DDS_CNST_BYTE2, 0x06 }, | ||
318 | { AUD_PDF_DDS_CNST_BYTE1, 0x82 }, | ||
319 | { AUD_PDF_DDS_CNST_BYTE0, 0x16 }, | ||
320 | { AUD_QAM_MODE, 0x05 }, | ||
321 | |||
322 | { /* end of list */ }, | ||
323 | }; | ||
324 | static const struct rlist nicam_pal_i[] = { | ||
325 | { AUD_PDF_DDS_CNST_BYTE0, 0x12 }, | ||
326 | { AUD_PHACC_FREQ_8MSB, 0x3a }, | ||
327 | { AUD_PHACC_FREQ_8LSB, 0x93 }, | ||
328 | |||
329 | { /* end of list */ }, | ||
330 | }; | ||
331 | static const struct rlist nicam_default[] = { | ||
332 | { AUD_PDF_DDS_CNST_BYTE0, 0x16 }, | ||
333 | { AUD_PHACC_FREQ_8MSB, 0x34 }, | ||
334 | { AUD_PHACC_FREQ_8LSB, 0x4c }, | ||
335 | |||
336 | { /* end of list */ }, | ||
337 | }; | ||
338 | |||
339 | set_audio_start(core, 0x0010, | ||
340 | EN_DMTRX_LR | EN_DMTRX_BYPASS | EN_NICAM_AUTO_STEREO); | ||
341 | set_audio_registers(core, nicam_common); | ||
342 | switch (core->tvaudio) { | ||
343 | case WW_NICAM_I: | ||
344 | dprintk("%s PAL-I NICAM (status: unknown)\n",__FUNCTION__); | ||
345 | set_audio_registers(core, nicam_pal_i); | ||
346 | break; | ||
347 | case WW_NICAM_BGDKL: | ||
348 | dprintk("%s PAL-BGDK NICAM (status: unknown)\n",__FUNCTION__); | ||
349 | set_audio_registers(core, nicam_default); | ||
350 | break; | ||
351 | }; | ||
352 | set_audio_finish(core); | ||
353 | } | ||
354 | #endif | ||
355 | 281 | ||
356 | static void set_audio_standard_NICAM_L(struct cx88_core *core, int stereo) | 282 | static void set_audio_standard_NICAM_L(struct cx88_core *core, int stereo) |
357 | { | 283 | { |
diff --git a/drivers/media/video/cx88/cx88-video.c b/drivers/media/video/cx88/cx88-video.c index e4ca7350df15..c44a079d08c0 100644 --- a/drivers/media/video/cx88/cx88-video.c +++ b/drivers/media/video/cx88/cx88-video.c | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * $Id: cx88-video.c,v 1.63 2005/06/12 04:19:19 mchehab Exp $ | 2 | * $Id: cx88-video.c,v 1.79 2005/07/07 14:17:47 mchehab Exp $ |
3 | * | 3 | * |
4 | * device driver for Conexant 2388x based TV cards | 4 | * device driver for Conexant 2388x based TV cards |
5 | * video4linux video interface | 5 | * video4linux video interface |
@@ -86,13 +86,6 @@ static struct cx88_tvnorm tvnorms[] = { | |||
86 | .id = V4L2_STD_NTSC_M_JP, | 86 | .id = V4L2_STD_NTSC_M_JP, |
87 | .cxiformat = VideoFormatNTSCJapan, | 87 | .cxiformat = VideoFormatNTSCJapan, |
88 | .cxoformat = 0x181f0008, | 88 | .cxoformat = 0x181f0008, |
89 | #if 0 | ||
90 | },{ | ||
91 | .name = "NTSC-4.43", | ||
92 | .id = FIXME, | ||
93 | .cxiformat = VideoFormatNTSC443, | ||
94 | .cxoformat = 0x181f0008, | ||
95 | #endif | ||
96 | },{ | 89 | },{ |
97 | .name = "PAL-BG", | 90 | .name = "PAL-BG", |
98 | .id = V4L2_STD_PAL_BG, | 91 | .id = V4L2_STD_PAL_BG, |
@@ -248,6 +241,7 @@ static struct cx88_ctrl cx8800_ctls[] = { | |||
248 | .default_value = 0, | 241 | .default_value = 0, |
249 | .type = V4L2_CTRL_TYPE_INTEGER, | 242 | .type = V4L2_CTRL_TYPE_INTEGER, |
250 | }, | 243 | }, |
244 | .off = 0, | ||
251 | .reg = MO_CONTR_BRIGHT, | 245 | .reg = MO_CONTR_BRIGHT, |
252 | .mask = 0xff00, | 246 | .mask = 0xff00, |
253 | .shift = 8, | 247 | .shift = 8, |
@@ -261,7 +255,7 @@ static struct cx88_ctrl cx8800_ctls[] = { | |||
261 | .default_value = 0, | 255 | .default_value = 0, |
262 | .type = V4L2_CTRL_TYPE_INTEGER, | 256 | .type = V4L2_CTRL_TYPE_INTEGER, |
263 | }, | 257 | }, |
264 | .off = 0, | 258 | .off = 128, |
265 | .reg = MO_HUE, | 259 | .reg = MO_HUE, |
266 | .mask = 0x00ff, | 260 | .mask = 0x00ff, |
267 | .shift = 0, | 261 | .shift = 0, |
@@ -674,231 +668,6 @@ static struct videobuf_queue_ops cx8800_video_qops = { | |||
674 | 668 | ||
675 | /* ------------------------------------------------------------------ */ | 669 | /* ------------------------------------------------------------------ */ |
676 | 670 | ||
677 | #if 0 /* overlay support not finished yet */ | ||
678 | static u32* ov_risc_field(struct cx8800_dev *dev, struct cx8800_fh *fh, | ||
679 | u32 *rp, struct btcx_skiplist *skips, | ||
680 | u32 sync_line, int skip_even, int skip_odd) | ||
681 | { | ||
682 | int line,maxy,start,end,skip,nskips; | ||
683 | u32 ri,ra; | ||
684 | u32 addr; | ||
685 | |||
686 | /* sync instruction */ | ||
687 | *(rp++) = cpu_to_le32(RISC_RESYNC | sync_line); | ||
688 | |||
689 | addr = (unsigned long)dev->fbuf.base; | ||
690 | addr += dev->fbuf.fmt.bytesperline * fh->win.w.top; | ||
691 | addr += (fh->fmt->depth >> 3) * fh->win.w.left; | ||
692 | |||
693 | /* scan lines */ | ||
694 | for (maxy = -1, line = 0; line < fh->win.w.height; | ||
695 | line++, addr += dev->fbuf.fmt.bytesperline) { | ||
696 | if ((line%2) == 0 && skip_even) | ||
697 | continue; | ||
698 | if ((line%2) == 1 && skip_odd) | ||
699 | continue; | ||
700 | |||
701 | /* calculate clipping */ | ||
702 | if (line > maxy) | ||
703 | btcx_calc_skips(line, fh->win.w.width, &maxy, | ||
704 | skips, &nskips, fh->clips, fh->nclips); | ||
705 | |||
706 | /* write out risc code */ | ||
707 | for (start = 0, skip = 0; start < fh->win.w.width; start = end) { | ||
708 | if (skip >= nskips) { | ||
709 | ri = RISC_WRITE; | ||
710 | end = fh->win.w.width; | ||
711 | } else if (start < skips[skip].start) { | ||
712 | ri = RISC_WRITE; | ||
713 | end = skips[skip].start; | ||
714 | } else { | ||
715 | ri = RISC_SKIP; | ||
716 | end = skips[skip].end; | ||
717 | skip++; | ||
718 | } | ||
719 | if (RISC_WRITE == ri) | ||
720 | ra = addr + (fh->fmt->depth>>3)*start; | ||
721 | else | ||
722 | ra = 0; | ||
723 | |||
724 | if (0 == start) | ||
725 | ri |= RISC_SOL; | ||
726 | if (fh->win.w.width == end) | ||
727 | ri |= RISC_EOL; | ||
728 | ri |= (fh->fmt->depth>>3) * (end-start); | ||
729 | |||
730 | *(rp++)=cpu_to_le32(ri); | ||
731 | if (0 != ra) | ||
732 | *(rp++)=cpu_to_le32(ra); | ||
733 | } | ||
734 | } | ||
735 | kfree(skips); | ||
736 | return rp; | ||
737 | } | ||
738 | |||
739 | static int ov_risc_frame(struct cx8800_dev *dev, struct cx8800_fh *fh, | ||
740 | struct cx88_buffer *buf) | ||
741 | { | ||
742 | struct btcx_skiplist *skips; | ||
743 | u32 instructions,fields; | ||
744 | u32 *rp; | ||
745 | int rc; | ||
746 | |||
747 | /* skip list for window clipping */ | ||
748 | if (NULL == (skips = kmalloc(sizeof(*skips) * fh->nclips,GFP_KERNEL))) | ||
749 | return -ENOMEM; | ||
750 | |||
751 | fields = 0; | ||
752 | if (V4L2_FIELD_HAS_TOP(fh->win.field)) | ||
753 | fields++; | ||
754 | if (V4L2_FIELD_HAS_BOTTOM(fh->win.field)) | ||
755 | fields++; | ||
756 | |||
757 | /* estimate risc mem: worst case is (clip+1) * lines instructions | ||
758 | + syncs + jump (all 2 dwords) */ | ||
759 | instructions = (fh->nclips+1) * fh->win.w.height; | ||
760 | instructions += 3 + 4; | ||
761 | if ((rc = btcx_riscmem_alloc(dev->pci,&buf->risc,instructions*8)) < 0) { | ||
762 | kfree(skips); | ||
763 | return rc; | ||
764 | } | ||
765 | |||
766 | /* write risc instructions */ | ||
767 | rp = buf->risc.cpu; | ||
768 | switch (fh->win.field) { | ||
769 | case V4L2_FIELD_TOP: | ||
770 | rp = ov_risc_field(dev, fh, rp, skips, 0, 0, 0); | ||
771 | break; | ||
772 | case V4L2_FIELD_BOTTOM: | ||
773 | rp = ov_risc_field(dev, fh, rp, skips, 0x200, 0, 0); | ||
774 | break; | ||
775 | case V4L2_FIELD_INTERLACED: | ||
776 | rp = ov_risc_field(dev, fh, rp, skips, 0, 0, 1); | ||
777 | rp = ov_risc_field(dev, fh, rp, skips, 0x200, 1, 0); | ||
778 | break; | ||
779 | default: | ||
780 | BUG(); | ||
781 | } | ||
782 | |||
783 | /* save pointer to jmp instruction address */ | ||
784 | buf->risc.jmp = rp; | ||
785 | kfree(skips); | ||
786 | return 0; | ||
787 | } | ||
788 | |||
789 | static int verify_window(struct cx8800_dev *dev, struct v4l2_window *win) | ||
790 | { | ||
791 | enum v4l2_field field; | ||
792 | int maxw, maxh; | ||
793 | |||
794 | if (NULL == dev->fbuf.base) | ||
795 | return -EINVAL; | ||
796 | if (win->w.width < 48 || win->w.height < 32) | ||
797 | return -EINVAL; | ||
798 | if (win->clipcount > 2048) | ||
799 | return -EINVAL; | ||
800 | |||
801 | field = win->field; | ||
802 | maxw = norm_maxw(core->tvnorm); | ||
803 | maxh = norm_maxh(core->tvnorm); | ||
804 | |||
805 | if (V4L2_FIELD_ANY == field) { | ||
806 | field = (win->w.height > maxh/2) | ||
807 | ? V4L2_FIELD_INTERLACED | ||
808 | : V4L2_FIELD_TOP; | ||
809 | } | ||
810 | switch (field) { | ||
811 | case V4L2_FIELD_TOP: | ||
812 | case V4L2_FIELD_BOTTOM: | ||
813 | maxh = maxh / 2; | ||
814 | break; | ||
815 | case V4L2_FIELD_INTERLACED: | ||
816 | break; | ||
817 | default: | ||
818 | return -EINVAL; | ||
819 | } | ||
820 | |||
821 | win->field = field; | ||
822 | if (win->w.width > maxw) | ||
823 | win->w.width = maxw; | ||
824 | if (win->w.height > maxh) | ||
825 | win->w.height = maxh; | ||
826 | return 0; | ||
827 | } | ||
828 | |||
829 | static int setup_window(struct cx8800_dev *dev, struct cx8800_fh *fh, | ||
830 | struct v4l2_window *win) | ||
831 | { | ||
832 | struct v4l2_clip *clips = NULL; | ||
833 | int n,size,retval = 0; | ||
834 | |||
835 | if (NULL == fh->fmt) | ||
836 | return -EINVAL; | ||
837 | retval = verify_window(dev,win); | ||
838 | if (0 != retval) | ||
839 | return retval; | ||
840 | |||
841 | /* copy clips -- luckily v4l1 + v4l2 are binary | ||
842 | compatible here ...*/ | ||
843 | n = win->clipcount; | ||
844 | size = sizeof(*clips)*(n+4); | ||
845 | clips = kmalloc(size,GFP_KERNEL); | ||
846 | if (NULL == clips) | ||
847 | return -ENOMEM; | ||
848 | if (n > 0) { | ||
849 | if (copy_from_user(clips,win->clips,sizeof(struct v4l2_clip)*n)) { | ||
850 | kfree(clips); | ||
851 | return -EFAULT; | ||
852 | } | ||
853 | } | ||
854 | |||
855 | /* clip against screen */ | ||
856 | if (NULL != dev->fbuf.base) | ||
857 | n = btcx_screen_clips(dev->fbuf.fmt.width, dev->fbuf.fmt.height, | ||
858 | &win->w, clips, n); | ||
859 | btcx_sort_clips(clips,n); | ||
860 | |||
861 | /* 4-byte alignments */ | ||
862 | switch (fh->fmt->depth) { | ||
863 | case 8: | ||
864 | case 24: | ||
865 | btcx_align(&win->w, clips, n, 3); | ||
866 | break; | ||
867 | case 16: | ||
868 | btcx_align(&win->w, clips, n, 1); | ||
869 | break; | ||
870 | case 32: | ||
871 | /* no alignment fixups needed */ | ||
872 | break; | ||
873 | default: | ||
874 | BUG(); | ||
875 | } | ||
876 | |||
877 | down(&fh->vidq.lock); | ||
878 | if (fh->clips) | ||
879 | kfree(fh->clips); | ||
880 | fh->clips = clips; | ||
881 | fh->nclips = n; | ||
882 | fh->win = *win; | ||
883 | #if 0 | ||
884 | fh->ov.setup_ok = 1; | ||
885 | #endif | ||
886 | |||
887 | /* update overlay if needed */ | ||
888 | retval = 0; | ||
889 | #if 0 | ||
890 | if (check_btres(fh, RESOURCE_OVERLAY)) { | ||
891 | struct bttv_buffer *new; | ||
892 | |||
893 | new = videobuf_alloc(sizeof(*new)); | ||
894 | bttv_overlay_risc(btv, &fh->ov, fh->ovfmt, new); | ||
895 | retval = bttv_switch_overlay(btv,fh,new); | ||
896 | } | ||
897 | #endif | ||
898 | up(&fh->vidq.lock); | ||
899 | return retval; | ||
900 | } | ||
901 | #endif | ||
902 | 671 | ||
903 | /* ------------------------------------------------------------------ */ | 672 | /* ------------------------------------------------------------------ */ |
904 | 673 | ||
@@ -1327,9 +1096,6 @@ static int video_do_ioctl(struct inode *inode, struct file *file, | |||
1327 | struct cx8800_fh *fh = file->private_data; | 1096 | struct cx8800_fh *fh = file->private_data; |
1328 | struct cx8800_dev *dev = fh->dev; | 1097 | struct cx8800_dev *dev = fh->dev; |
1329 | struct cx88_core *core = dev->core; | 1098 | struct cx88_core *core = dev->core; |
1330 | #if 0 | ||
1331 | unsigned long flags; | ||
1332 | #endif | ||
1333 | int err; | 1099 | int err; |
1334 | 1100 | ||
1335 | if (video_debug > 1) | 1101 | if (video_debug > 1) |
@@ -1350,12 +1116,6 @@ static int video_do_ioctl(struct inode *inode, struct file *file, | |||
1350 | V4L2_CAP_READWRITE | | 1116 | V4L2_CAP_READWRITE | |
1351 | V4L2_CAP_STREAMING | | 1117 | V4L2_CAP_STREAMING | |
1352 | V4L2_CAP_VBI_CAPTURE | | 1118 | V4L2_CAP_VBI_CAPTURE | |
1353 | #if 0 | ||
1354 | V4L2_TUNER_CAP_LOW | | ||
1355 | #endif | ||
1356 | #if 0 | ||
1357 | V4L2_CAP_VIDEO_OVERLAY | | ||
1358 | #endif | ||
1359 | 0; | 1119 | 0; |
1360 | if (UNSET != core->tuner_type) | 1120 | if (UNSET != core->tuner_type) |
1361 | cap->capabilities |= V4L2_CAP_TUNER; | 1121 | cap->capabilities |= V4L2_CAP_TUNER; |
@@ -1456,36 +1216,6 @@ static int video_do_ioctl(struct inode *inode, struct file *file, | |||
1456 | } | 1216 | } |
1457 | 1217 | ||
1458 | 1218 | ||
1459 | #if 0 | ||
1460 | /* needs review */ | ||
1461 | case VIDIOC_G_AUDIO: | ||
1462 | { | ||
1463 | struct v4l2_audio *a = arg; | ||
1464 | unsigned int n = a->index; | ||
1465 | |||
1466 | memset(a,0,sizeof(*a)); | ||
1467 | a->index = n; | ||
1468 | switch (n) { | ||
1469 | case 0: | ||
1470 | if ((CX88_VMUX_TELEVISION == INPUT(n)->type) | ||
1471 | || (CX88_VMUX_CABLE == INPUT(n)->type)) { | ||
1472 | strcpy(a->name,"Television"); | ||
1473 | // FIXME figure out if stereo received and set V4L2_AUDCAP_STEREO. | ||
1474 | return 0; | ||
1475 | } | ||
1476 | break; | ||
1477 | case 1: | ||
1478 | if (CX88_BOARD_DVICO_FUSIONHDTV_3_GOLD == core->board) { | ||
1479 | strcpy(a->name,"Line In"); | ||
1480 | a->capability = V4L2_AUDCAP_STEREO; | ||
1481 | return 0; | ||
1482 | } | ||
1483 | break; | ||
1484 | } | ||
1485 | // Audio input not available. | ||
1486 | return -EINVAL; | ||
1487 | } | ||
1488 | #endif | ||
1489 | 1219 | ||
1490 | /* --- capture ioctls ---------------------------------------- */ | 1220 | /* --- capture ioctls ---------------------------------------- */ |
1491 | case VIDIOC_ENUM_FMT: | 1221 | case VIDIOC_ENUM_FMT: |
@@ -1588,13 +1318,16 @@ static int video_do_ioctl(struct inode *inode, struct file *file, | |||
1588 | { | 1318 | { |
1589 | struct v4l2_frequency *f = arg; | 1319 | struct v4l2_frequency *f = arg; |
1590 | 1320 | ||
1321 | memset(f,0,sizeof(*f)); | ||
1322 | |||
1591 | if (UNSET == core->tuner_type) | 1323 | if (UNSET == core->tuner_type) |
1592 | return -EINVAL; | 1324 | return -EINVAL; |
1593 | if (f->tuner != 0) | 1325 | |
1594 | return -EINVAL; | ||
1595 | memset(f,0,sizeof(*f)); | ||
1596 | f->type = fh->radio ? V4L2_TUNER_RADIO : V4L2_TUNER_ANALOG_TV; | 1326 | f->type = fh->radio ? V4L2_TUNER_RADIO : V4L2_TUNER_ANALOG_TV; |
1597 | f->frequency = dev->freq; | 1327 | f->frequency = dev->freq; |
1328 | |||
1329 | cx88_call_i2c_clients(dev->core,VIDIOC_G_FREQUENCY,f); | ||
1330 | |||
1598 | return 0; | 1331 | return 0; |
1599 | } | 1332 | } |
1600 | case VIDIOC_S_FREQUENCY: | 1333 | case VIDIOC_S_FREQUENCY: |
@@ -1612,11 +1345,7 @@ static int video_do_ioctl(struct inode *inode, struct file *file, | |||
1612 | down(&dev->lock); | 1345 | down(&dev->lock); |
1613 | dev->freq = f->frequency; | 1346 | dev->freq = f->frequency; |
1614 | cx88_newstation(core); | 1347 | cx88_newstation(core); |
1615 | #ifdef V4L2_I2C_CLIENTS | ||
1616 | cx88_call_i2c_clients(dev->core,VIDIOC_S_FREQUENCY,f); | 1348 | cx88_call_i2c_clients(dev->core,VIDIOC_S_FREQUENCY,f); |
1617 | #else | ||
1618 | cx88_call_i2c_clients(dev->core,VIDIOCSFREQ,&dev->freq); | ||
1619 | #endif | ||
1620 | up(&dev->lock); | 1349 | up(&dev->lock); |
1621 | return 0; | 1350 | return 0; |
1622 | } | 1351 | } |
@@ -1714,11 +1443,7 @@ static int radio_do_ioctl(struct inode *inode, struct file *file, | |||
1714 | sizeof(cap->card)); | 1443 | sizeof(cap->card)); |
1715 | sprintf(cap->bus_info,"PCI:%s", pci_name(dev->pci)); | 1444 | sprintf(cap->bus_info,"PCI:%s", pci_name(dev->pci)); |
1716 | cap->version = CX88_VERSION_CODE; | 1445 | cap->version = CX88_VERSION_CODE; |
1717 | cap->capabilities = V4L2_CAP_TUNER | 1446 | cap->capabilities = V4L2_CAP_TUNER; |
1718 | #if 0 | ||
1719 | | V4L2_TUNER_CAP_LOW | ||
1720 | #endif | ||
1721 | ; | ||
1722 | return 0; | 1447 | return 0; |
1723 | } | 1448 | } |
1724 | case VIDIOC_G_TUNER: | 1449 | case VIDIOC_G_TUNER: |
@@ -1730,19 +1455,8 @@ static int radio_do_ioctl(struct inode *inode, struct file *file, | |||
1730 | 1455 | ||
1731 | memset(t,0,sizeof(*t)); | 1456 | memset(t,0,sizeof(*t)); |
1732 | strcpy(t->name, "Radio"); | 1457 | strcpy(t->name, "Radio"); |
1733 | t->rangelow = (int)(65*16); | ||
1734 | t->rangehigh = (int)(108*16); | ||
1735 | 1458 | ||
1736 | #ifdef V4L2_I2C_CLIENTS | ||
1737 | cx88_call_i2c_clients(dev->core,VIDIOC_G_TUNER,t); | 1459 | cx88_call_i2c_clients(dev->core,VIDIOC_G_TUNER,t); |
1738 | #else | ||
1739 | { | ||
1740 | struct video_tuner vt; | ||
1741 | memset(&vt,0,sizeof(vt)); | ||
1742 | cx88_call_i2c_clients(dev,VIDIOCGTUNER,&vt); | ||
1743 | t->signal = vt.signal; | ||
1744 | } | ||
1745 | #endif | ||
1746 | return 0; | 1460 | return 0; |
1747 | } | 1461 | } |
1748 | case VIDIOC_ENUMINPUT: | 1462 | case VIDIOC_ENUMINPUT: |
@@ -1775,8 +1489,29 @@ static int radio_do_ioctl(struct inode *inode, struct file *file, | |||
1775 | *id = 0; | 1489 | *id = 0; |
1776 | return 0; | 1490 | return 0; |
1777 | } | 1491 | } |
1778 | case VIDIOC_S_AUDIO: | 1492 | case VIDIOCSTUNER: |
1493 | { | ||
1494 | struct video_tuner *v = arg; | ||
1495 | |||
1496 | if (v->tuner) /* Only tuner 0 */ | ||
1497 | return -EINVAL; | ||
1498 | |||
1499 | cx88_call_i2c_clients(dev->core,VIDIOCSTUNER,v); | ||
1500 | return 0; | ||
1501 | } | ||
1779 | case VIDIOC_S_TUNER: | 1502 | case VIDIOC_S_TUNER: |
1503 | { | ||
1504 | struct v4l2_tuner *t = arg; | ||
1505 | |||
1506 | if (0 != t->index) | ||
1507 | return -EINVAL; | ||
1508 | |||
1509 | cx88_call_i2c_clients(dev->core,VIDIOC_S_TUNER,t); | ||
1510 | |||
1511 | return 0; | ||
1512 | } | ||
1513 | |||
1514 | case VIDIOC_S_AUDIO: | ||
1780 | case VIDIOC_S_INPUT: | 1515 | case VIDIOC_S_INPUT: |
1781 | case VIDIOC_S_STD: | 1516 | case VIDIOC_S_STD: |
1782 | return 0; | 1517 | return 0; |
@@ -1847,6 +1582,14 @@ static void cx8800_vid_timeout(unsigned long data) | |||
1847 | spin_unlock_irqrestore(&dev->slock,flags); | 1582 | spin_unlock_irqrestore(&dev->slock,flags); |
1848 | } | 1583 | } |
1849 | 1584 | ||
1585 | static char *cx88_vid_irqs[32] = { | ||
1586 | "y_risci1", "u_risci1", "v_risci1", "vbi_risc1", | ||
1587 | "y_risci2", "u_risci2", "v_risci2", "vbi_risc2", | ||
1588 | "y_oflow", "u_oflow", "v_oflow", "vbi_oflow", | ||
1589 | "y_sync", "u_sync", "v_sync", "vbi_sync", | ||
1590 | "opc_err", "par_err", "rip_err", "pci_abort", | ||
1591 | }; | ||
1592 | |||
1850 | static void cx8800_vid_irq(struct cx8800_dev *dev) | 1593 | static void cx8800_vid_irq(struct cx8800_dev *dev) |
1851 | { | 1594 | { |
1852 | struct cx88_core *core = dev->core; | 1595 | struct cx88_core *core = dev->core; |
@@ -2014,7 +1757,6 @@ static int __devinit cx8800_initdev(struct pci_dev *pci_dev, | |||
2014 | { | 1757 | { |
2015 | struct cx8800_dev *dev; | 1758 | struct cx8800_dev *dev; |
2016 | struct cx88_core *core; | 1759 | struct cx88_core *core; |
2017 | struct tuner_addr tun_addr; | ||
2018 | int err; | 1760 | int err; |
2019 | 1761 | ||
2020 | dev = kmalloc(sizeof(*dev),GFP_KERNEL); | 1762 | dev = kmalloc(sizeof(*dev),GFP_KERNEL); |
@@ -2088,22 +1830,6 @@ static int __devinit cx8800_initdev(struct pci_dev *pci_dev, | |||
2088 | request_module("tuner"); | 1830 | request_module("tuner"); |
2089 | if (core->tda9887_conf) | 1831 | if (core->tda9887_conf) |
2090 | request_module("tda9887"); | 1832 | request_module("tda9887"); |
2091 | if (core->radio_type != UNSET) { | ||
2092 | tun_addr.v4l2_tuner = V4L2_TUNER_RADIO; | ||
2093 | tun_addr.type = core->radio_type; | ||
2094 | tun_addr.addr = core->radio_addr; | ||
2095 | cx88_call_i2c_clients(dev->core,TUNER_SET_TYPE_ADDR, &tun_addr); | ||
2096 | } | ||
2097 | if (core->tuner_type != UNSET) { | ||
2098 | tun_addr.v4l2_tuner = V4L2_TUNER_ANALOG_TV; | ||
2099 | tun_addr.type = core->tuner_type; | ||
2100 | tun_addr.addr = core->tuner_addr; | ||
2101 | cx88_call_i2c_clients(dev->core,TUNER_SET_TYPE_ADDR, &tun_addr); | ||
2102 | } | ||
2103 | |||
2104 | if (core->tda9887_conf) | ||
2105 | cx88_call_i2c_clients(dev->core,TDA9887_SET_CONFIG,&core->tda9887_conf); | ||
2106 | |||
2107 | /* register v4l devices */ | 1833 | /* register v4l devices */ |
2108 | dev->video_dev = cx88_vdev_init(core,dev->pci, | 1834 | dev->video_dev = cx88_vdev_init(core,dev->pci, |
2109 | &cx8800_video_template,"video"); | 1835 | &cx8800_video_template,"video"); |
@@ -2213,10 +1939,8 @@ static int cx8800_suspend(struct pci_dev *pci_dev, pm_message_t state) | |||
2213 | } | 1939 | } |
2214 | spin_unlock(&dev->slock); | 1940 | spin_unlock(&dev->slock); |
2215 | 1941 | ||
2216 | #if 1 | ||
2217 | /* FIXME -- shutdown device */ | 1942 | /* FIXME -- shutdown device */ |
2218 | cx88_shutdown(dev->core); | 1943 | cx88_shutdown(dev->core); |
2219 | #endif | ||
2220 | 1944 | ||
2221 | pci_save_state(pci_dev); | 1945 | pci_save_state(pci_dev); |
2222 | if (0 != pci_set_power_state(pci_dev, pci_choose_state(pci_dev, state))) { | 1946 | if (0 != pci_set_power_state(pci_dev, pci_choose_state(pci_dev, state))) { |
@@ -2238,10 +1962,8 @@ static int cx8800_resume(struct pci_dev *pci_dev) | |||
2238 | pci_set_power_state(pci_dev, PCI_D0); | 1962 | pci_set_power_state(pci_dev, PCI_D0); |
2239 | pci_restore_state(pci_dev); | 1963 | pci_restore_state(pci_dev); |
2240 | 1964 | ||
2241 | #if 1 | ||
2242 | /* FIXME: re-initialize hardware */ | 1965 | /* FIXME: re-initialize hardware */ |
2243 | cx88_reset(dev->core); | 1966 | cx88_reset(dev->core); |
2244 | #endif | ||
2245 | 1967 | ||
2246 | /* restart video+vbi capture */ | 1968 | /* restart video+vbi capture */ |
2247 | spin_lock(&dev->slock); | 1969 | spin_lock(&dev->slock); |
diff --git a/drivers/media/video/cx88/cx88.h b/drivers/media/video/cx88/cx88.h index 867e988a5a93..307beae04f2a 100644 --- a/drivers/media/video/cx88/cx88.h +++ b/drivers/media/video/cx88/cx88.h | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * $Id: cx88.h,v 1.62 2005/06/12 04:19:19 mchehab Exp $ | 2 | * $Id: cx88.h,v 1.68 2005/07/07 14:17:47 mchehab Exp $ |
3 | * | 3 | * |
4 | * v4l2 device driver for cx2388x based TV cards | 4 | * v4l2 device driver for cx2388x based TV cards |
5 | * | 5 | * |
@@ -51,8 +51,6 @@ | |||
51 | /* ----------------------------------------------------------- */ | 51 | /* ----------------------------------------------------------- */ |
52 | /* defines and enums */ | 52 | /* defines and enums */ |
53 | 53 | ||
54 | #define V4L2_I2C_CLIENTS 1 | ||
55 | |||
56 | #define FORMAT_FLAGS_PACKED 0x01 | 54 | #define FORMAT_FLAGS_PACKED 0x01 |
57 | #define FORMAT_FLAGS_PLANAR 0x02 | 55 | #define FORMAT_FLAGS_PLANAR 0x02 |
58 | 56 | ||
@@ -84,9 +82,9 @@ struct cx88_tvnorm { | |||
84 | static unsigned int inline norm_maxw(struct cx88_tvnorm *norm) | 82 | static unsigned int inline norm_maxw(struct cx88_tvnorm *norm) |
85 | { | 83 | { |
86 | return (norm->id & V4L2_STD_625_50) ? 768 : 640; | 84 | return (norm->id & V4L2_STD_625_50) ? 768 : 640; |
87 | // return (norm->id & V4L2_STD_625_50) ? 720 : 640; | ||
88 | } | 85 | } |
89 | 86 | ||
87 | |||
90 | static unsigned int inline norm_maxh(struct cx88_tvnorm *norm) | 88 | static unsigned int inline norm_maxh(struct cx88_tvnorm *norm) |
91 | { | 89 | { |
92 | return (norm->id & V4L2_STD_625_50) ? 576 : 480; | 90 | return (norm->id & V4L2_STD_625_50) ? 576 : 480; |
@@ -159,7 +157,7 @@ extern struct sram_channel cx88_sram_channels[]; | |||
159 | #define CX88_BOARD_KWORLD_DVB_T 14 | 157 | #define CX88_BOARD_KWORLD_DVB_T 14 |
160 | #define CX88_BOARD_DVICO_FUSIONHDTV_DVB_T1 15 | 158 | #define CX88_BOARD_DVICO_FUSIONHDTV_DVB_T1 15 |
161 | #define CX88_BOARD_KWORLD_LTV883 16 | 159 | #define CX88_BOARD_KWORLD_LTV883 16 |
162 | #define CX88_BOARD_DVICO_FUSIONHDTV_3_GOLD 17 | 160 | #define CX88_BOARD_DVICO_FUSIONHDTV_3_GOLD_Q 17 |
163 | #define CX88_BOARD_HAUPPAUGE_DVB_T1 18 | 161 | #define CX88_BOARD_HAUPPAUGE_DVB_T1 18 |
164 | #define CX88_BOARD_CONEXANT_DVB_T1 19 | 162 | #define CX88_BOARD_CONEXANT_DVB_T1 19 |
165 | #define CX88_BOARD_PROVIDEO_PV259 20 | 163 | #define CX88_BOARD_PROVIDEO_PV259 20 |
@@ -167,10 +165,12 @@ extern struct sram_channel cx88_sram_channels[]; | |||
167 | #define CX88_BOARD_PCHDTV_HD3000 22 | 165 | #define CX88_BOARD_PCHDTV_HD3000 22 |
168 | #define CX88_BOARD_DNTV_LIVE_DVB_T 23 | 166 | #define CX88_BOARD_DNTV_LIVE_DVB_T 23 |
169 | #define CX88_BOARD_HAUPPAUGE_ROSLYN 24 | 167 | #define CX88_BOARD_HAUPPAUGE_ROSLYN 24 |
170 | #define CX88_BOARD_DIGITALLOGIC_MEC 25 | 168 | #define CX88_BOARD_DIGITALLOGIC_MEC 25 |
171 | #define CX88_BOARD_IODATA_GVBCTV7E 26 | 169 | #define CX88_BOARD_IODATA_GVBCTV7E 26 |
172 | #define CX88_BOARD_PIXELVIEW_PLAYTV_ULTRA_PRO 27 | 170 | #define CX88_BOARD_PIXELVIEW_PLAYTV_ULTRA_PRO 27 |
173 | #define CX88_BOARD_DVICO_FUSIONHDTV_3_GOLD_T 28 | 171 | #define CX88_BOARD_DVICO_FUSIONHDTV_3_GOLD_T 28 |
172 | #define CX88_BOARD_ADSTECH_DVB_T_PCI 29 | ||
173 | #define CX88_BOARD_TERRATEC_CINERGY_1400_DVB_T1 30 | ||
174 | 174 | ||
175 | enum cx88_itype { | 175 | enum cx88_itype { |
176 | CX88_VMUX_COMPOSITE1 = 1, | 176 | CX88_VMUX_COMPOSITE1 = 1, |
@@ -220,7 +220,6 @@ struct cx88_subid { | |||
220 | #define RESOURCE_VBI 4 | 220 | #define RESOURCE_VBI 4 |
221 | 221 | ||
222 | #define BUFFER_TIMEOUT (HZ/2) /* 0.5 seconds */ | 222 | #define BUFFER_TIMEOUT (HZ/2) /* 0.5 seconds */ |
223 | //#define BUFFER_TIMEOUT (HZ*2) | ||
224 | 223 | ||
225 | /* buffer for one video frame */ | 224 | /* buffer for one video frame */ |
226 | struct cx88_buffer { | 225 | struct cx88_buffer { |
@@ -336,11 +335,6 @@ struct cx8800_dev { | |||
336 | struct pci_dev *pci; | 335 | struct pci_dev *pci; |
337 | unsigned char pci_rev,pci_lat; | 336 | unsigned char pci_rev,pci_lat; |
338 | 337 | ||
339 | #if 0 | ||
340 | /* video overlay */ | ||
341 | struct v4l2_framebuffer fbuf; | ||
342 | struct cx88_buffer *screen; | ||
343 | #endif | ||
344 | 338 | ||
345 | /* capture queues */ | 339 | /* capture queues */ |
346 | struct cx88_dmaqueue vidq; | 340 | struct cx88_dmaqueue vidq; |
@@ -435,8 +429,6 @@ struct cx8802_dev { | |||
435 | /* ----------------------------------------------------------- */ | 429 | /* ----------------------------------------------------------- */ |
436 | /* cx88-core.c */ | 430 | /* cx88-core.c */ |
437 | 431 | ||
438 | extern char *cx88_vid_irqs[32]; | ||
439 | extern char *cx88_mpeg_irqs[32]; | ||
440 | extern void cx88_print_irqbits(char *name, char *tag, char **strings, | 432 | extern void cx88_print_irqbits(char *name, char *tag, char **strings, |
441 | u32 bits, u32 mask); | 433 | u32 bits, u32 mask); |
442 | extern void cx88_print_ioctl(char *name, unsigned int cmd); | 434 | extern void cx88_print_ioctl(char *name, unsigned int cmd); |
diff --git a/drivers/media/video/ir-kbd-i2c.c b/drivers/media/video/ir-kbd-i2c.c index 92664f75d327..9fc5055e001c 100644 --- a/drivers/media/video/ir-kbd-i2c.c +++ b/drivers/media/video/ir-kbd-i2c.c | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * $Id: ir-kbd-i2c.c,v 1.10 2004/12/09 12:51:35 kraxel Exp $ | 2 | * $Id: ir-kbd-i2c.c,v 1.11 2005/07/07 16:42:11 mchehab Exp $ |
3 | * | 3 | * |
4 | * keyboard input driver for i2c IR remote controls | 4 | * keyboard input driver for i2c IR remote controls |
5 | * | 5 | * |
@@ -66,26 +66,26 @@ static IR_KEYTAB_TYPE ir_codes_pv951[IR_KEYTAB_SIZE] = { | |||
66 | [ 29 ] = KEY_PAGEDOWN, | 66 | [ 29 ] = KEY_PAGEDOWN, |
67 | [ 19 ] = KEY_SOUND, | 67 | [ 19 ] = KEY_SOUND, |
68 | 68 | ||
69 | [ 24 ] = KEY_KPPLUSMINUS, // CH +/- | 69 | [ 24 ] = KEY_KPPLUSMINUS, /* CH +/- */ |
70 | [ 22 ] = KEY_SUBTITLE, // CC | 70 | [ 22 ] = KEY_SUBTITLE, /* CC */ |
71 | [ 13 ] = KEY_TEXT, // TTX | 71 | [ 13 ] = KEY_TEXT, /* TTX */ |
72 | [ 11 ] = KEY_TV, // AIR/CBL | 72 | [ 11 ] = KEY_TV, /* AIR/CBL */ |
73 | [ 17 ] = KEY_PC, // PC/TV | 73 | [ 17 ] = KEY_PC, /* PC/TV */ |
74 | [ 23 ] = KEY_OK, // CH RTN | 74 | [ 23 ] = KEY_OK, /* CH RTN */ |
75 | [ 25 ] = KEY_MODE, // FUNC | 75 | [ 25 ] = KEY_MODE, /* FUNC */ |
76 | [ 12 ] = KEY_SEARCH, // AUTOSCAN | 76 | [ 12 ] = KEY_SEARCH, /* AUTOSCAN */ |
77 | 77 | ||
78 | /* Not sure what to do with these ones! */ | 78 | /* Not sure what to do with these ones! */ |
79 | [ 15 ] = KEY_SELECT, // SOURCE | 79 | [ 15 ] = KEY_SELECT, /* SOURCE */ |
80 | [ 10 ] = KEY_KPPLUS, // +100 | 80 | [ 10 ] = KEY_KPPLUS, /* +100 */ |
81 | [ 20 ] = KEY_KPEQUAL, // SYNC | 81 | [ 20 ] = KEY_KPEQUAL, /* SYNC */ |
82 | [ 28 ] = KEY_MEDIA, // PC/TV | 82 | [ 28 ] = KEY_MEDIA, /* PC/TV */ |
83 | }; | 83 | }; |
84 | 84 | ||
85 | static IR_KEYTAB_TYPE ir_codes_purpletv[IR_KEYTAB_SIZE] = { | 85 | static IR_KEYTAB_TYPE ir_codes_purpletv[IR_KEYTAB_SIZE] = { |
86 | [ 0x3 ] = KEY_POWER, | 86 | [ 0x3 ] = KEY_POWER, |
87 | [ 0x6f ] = KEY_MUTE, | 87 | [ 0x6f ] = KEY_MUTE, |
88 | [ 0x10 ] = KEY_BACKSPACE, // Recall | 88 | [ 0x10 ] = KEY_BACKSPACE, /* Recall */ |
89 | 89 | ||
90 | [ 0x11 ] = KEY_KP0, | 90 | [ 0x11 ] = KEY_KP0, |
91 | [ 0x4 ] = KEY_KP1, | 91 | [ 0x4 ] = KEY_KP1, |
@@ -97,7 +97,7 @@ static IR_KEYTAB_TYPE ir_codes_purpletv[IR_KEYTAB_SIZE] = { | |||
97 | [ 0xc ] = KEY_KP7, | 97 | [ 0xc ] = KEY_KP7, |
98 | [ 0xd ] = KEY_KP8, | 98 | [ 0xd ] = KEY_KP8, |
99 | [ 0xe ] = KEY_KP9, | 99 | [ 0xe ] = KEY_KP9, |
100 | [ 0x12 ] = KEY_KPDOT, // 100+ | 100 | [ 0x12 ] = KEY_KPDOT, /* 100+ */ |
101 | 101 | ||
102 | [ 0x7 ] = KEY_VOLUMEUP, | 102 | [ 0x7 ] = KEY_VOLUMEUP, |
103 | [ 0xb ] = KEY_VOLUMEDOWN, | 103 | [ 0xb ] = KEY_VOLUMEDOWN, |
@@ -109,25 +109,16 @@ static IR_KEYTAB_TYPE ir_codes_purpletv[IR_KEYTAB_SIZE] = { | |||
109 | [ 0x13 ] = KEY_CHANNELDOWN, | 109 | [ 0x13 ] = KEY_CHANNELDOWN, |
110 | [ 0x48 ] = KEY_ZOOM, | 110 | [ 0x48 ] = KEY_ZOOM, |
111 | 111 | ||
112 | [ 0x1b ] = KEY_VIDEO, // Video source | 112 | [ 0x1b ] = KEY_VIDEO, /* Video source */ |
113 | #if 0 | 113 | [ 0x49 ] = KEY_LANGUAGE, /* MTS Select */ |
114 | [ 0x1f ] = KEY_S, // Snapshot | 114 | [ 0x19 ] = KEY_SEARCH, /* Auto Scan */ |
115 | #endif | ||
116 | [ 0x49 ] = KEY_LANGUAGE, // MTS Select | ||
117 | [ 0x19 ] = KEY_SEARCH, // Auto Scan | ||
118 | 115 | ||
119 | [ 0x4b ] = KEY_RECORD, | 116 | [ 0x4b ] = KEY_RECORD, |
120 | [ 0x46 ] = KEY_PLAY, | 117 | [ 0x46 ] = KEY_PLAY, |
121 | [ 0x45 ] = KEY_PAUSE, // Pause | 118 | [ 0x45 ] = KEY_PAUSE, /* Pause */ |
122 | [ 0x44 ] = KEY_STOP, | 119 | [ 0x44 ] = KEY_STOP, |
123 | #if 0 | 120 | [ 0x40 ] = KEY_FORWARD, /* Forward ? */ |
124 | [ 0x43 ] = KEY_T, // Time Shift | 121 | [ 0x42 ] = KEY_REWIND, /* Backward ? */ |
125 | [ 0x47 ] = KEY_Y, // Time Shift OFF | ||
126 | [ 0x4a ] = KEY_O, // TOP | ||
127 | [ 0x17 ] = KEY_F, // SURF CH | ||
128 | #endif | ||
129 | [ 0x40 ] = KEY_FORWARD, // Forward ? | ||
130 | [ 0x42 ] = KEY_REWIND, // Backward ? | ||
131 | 122 | ||
132 | }; | 123 | }; |
133 | 124 | ||
diff --git a/drivers/media/video/msp3400.c b/drivers/media/video/msp3400.c index b4ee9dfe6d42..6239254db27e 100644 --- a/drivers/media/video/msp3400.c +++ b/drivers/media/video/msp3400.c | |||
@@ -567,10 +567,6 @@ static void msp3400c_set_audmode(struct i2c_client *client, int audmode) | |||
567 | switch (audmode) { | 567 | switch (audmode) { |
568 | case V4L2_TUNER_MODE_STEREO: | 568 | case V4L2_TUNER_MODE_STEREO: |
569 | src = 0x0020 | nicam; | 569 | src = 0x0020 | nicam; |
570 | #if 0 | ||
571 | /* spatial effect */ | ||
572 | msp3400c_write(client,I2C_MSP3400C_DFP, 0x0005,0x4000); | ||
573 | #endif | ||
574 | break; | 570 | break; |
575 | case V4L2_TUNER_MODE_MONO: | 571 | case V4L2_TUNER_MODE_MONO: |
576 | if (msp->mode == MSP_MODE_AM_NICAM) { | 572 | if (msp->mode == MSP_MODE_AM_NICAM) { |
@@ -741,16 +737,14 @@ static int msp34xx_sleep(struct msp3400c *msp, int timeout) | |||
741 | set_current_state(TASK_INTERRUPTIBLE); | 737 | set_current_state(TASK_INTERRUPTIBLE); |
742 | schedule(); | 738 | schedule(); |
743 | } else { | 739 | } else { |
744 | #if 0 | ||
745 | /* hmm, that one doesn't return on wakeup ... */ | ||
746 | msleep_interruptible(timeout); | ||
747 | #else | ||
748 | set_current_state(TASK_INTERRUPTIBLE); | 740 | set_current_state(TASK_INTERRUPTIBLE); |
749 | schedule_timeout(msecs_to_jiffies(timeout)); | 741 | schedule_timeout(msecs_to_jiffies(timeout)); |
750 | #endif | ||
751 | } | 742 | } |
752 | } | 743 | } |
753 | try_to_freeze(); | 744 | if (current->flags & PF_FREEZE) { |
745 | refrigerator (); | ||
746 | } | ||
747 | |||
754 | remove_wait_queue(&msp->wq, &wait); | 748 | remove_wait_queue(&msp->wq, &wait); |
755 | return msp->restart; | 749 | return msp->restart; |
756 | } | 750 | } |
@@ -1154,17 +1148,10 @@ static int msp3410d_thread(void *data) | |||
1154 | MSP_CARRIER(10.7)); | 1148 | MSP_CARRIER(10.7)); |
1155 | /* scart routing */ | 1149 | /* scart routing */ |
1156 | msp3400c_set_scart(client,SCART_IN2,0); | 1150 | msp3400c_set_scart(client,SCART_IN2,0); |
1157 | #if 0 | ||
1158 | /* radio from SCART_IN2 */ | ||
1159 | msp3400c_write(client,I2C_MSP3400C_DFP, 0x08, 0x0220); | ||
1160 | msp3400c_write(client,I2C_MSP3400C_DFP, 0x09, 0x0220); | ||
1161 | msp3400c_write(client,I2C_MSP3400C_DFP, 0x0b, 0x0220); | ||
1162 | #else | ||
1163 | /* msp34xx does radio decoding */ | 1151 | /* msp34xx does radio decoding */ |
1164 | msp3400c_write(client,I2C_MSP3400C_DFP, 0x08, 0x0020); | 1152 | msp3400c_write(client,I2C_MSP3400C_DFP, 0x08, 0x0020); |
1165 | msp3400c_write(client,I2C_MSP3400C_DFP, 0x09, 0x0020); | 1153 | msp3400c_write(client,I2C_MSP3400C_DFP, 0x09, 0x0020); |
1166 | msp3400c_write(client,I2C_MSP3400C_DFP, 0x0b, 0x0020); | 1154 | msp3400c_write(client,I2C_MSP3400C_DFP, 0x0b, 0x0020); |
1167 | #endif | ||
1168 | break; | 1155 | break; |
1169 | case 0x0003: | 1156 | case 0x0003: |
1170 | case 0x0004: | 1157 | case 0x0004: |
@@ -1507,10 +1494,6 @@ static int msp_attach(struct i2c_adapter *adap, int addr, int kind) | |||
1507 | return -1; | 1494 | return -1; |
1508 | } | 1495 | } |
1509 | 1496 | ||
1510 | #if 0 | ||
1511 | /* this will turn on a 1kHz beep - might be useful for debugging... */ | ||
1512 | msp3400c_write(c,I2C_MSP3400C_DFP, 0x0014, 0x1040); | ||
1513 | #endif | ||
1514 | msp3400c_setvolume(c, msp->muted, msp->volume, msp->balance); | 1497 | msp3400c_setvolume(c, msp->muted, msp->volume, msp->balance); |
1515 | 1498 | ||
1516 | snprintf(c->name, sizeof(c->name), "MSP34%02d%c-%c%d", | 1499 | snprintf(c->name, sizeof(c->name), "MSP34%02d%c-%c%d", |
diff --git a/drivers/media/video/mt20xx.c b/drivers/media/video/mt20xx.c index 9c005cb128d7..2fb7c2d1787a 100644 --- a/drivers/media/video/mt20xx.c +++ b/drivers/media/video/mt20xx.c | |||
@@ -511,22 +511,6 @@ int microtune_init(struct i2c_client *c) | |||
511 | tuner_info("microtune: companycode=%04x part=%02x rev=%02x\n", | 511 | tuner_info("microtune: companycode=%04x part=%02x rev=%02x\n", |
512 | company_code,buf[0x13],buf[0x14]); | 512 | company_code,buf[0x13],buf[0x14]); |
513 | 513 | ||
514 | #if 0 | ||
515 | /* seems to cause more problems than it solves ... */ | ||
516 | switch (company_code) { | ||
517 | case 0x30bf: | ||
518 | case 0x3cbf: | ||
519 | case 0x3dbf: | ||
520 | case 0x4d54: | ||
521 | case 0x8e81: | ||
522 | case 0x8e91: | ||
523 | /* ok (?) */ | ||
524 | break; | ||
525 | default: | ||
526 | tuner_warn("tuner: microtune: unknown companycode\n"); | ||
527 | return 0; | ||
528 | } | ||
529 | #endif | ||
530 | 514 | ||
531 | if (buf[0x13] < ARRAY_SIZE(microtune_part) && | 515 | if (buf[0x13] < ARRAY_SIZE(microtune_part) && |
532 | NULL != microtune_part[buf[0x13]]) | 516 | NULL != microtune_part[buf[0x13]]) |
diff --git a/drivers/media/video/mxb.c b/drivers/media/video/mxb.c index 70bf1f1fad59..486234d41b56 100644 --- a/drivers/media/video/mxb.c +++ b/drivers/media/video/mxb.c | |||
@@ -326,6 +326,7 @@ static int mxb_init_done(struct saa7146_dev* dev) | |||
326 | struct mxb* mxb = (struct mxb*)dev->ext_priv; | 326 | struct mxb* mxb = (struct mxb*)dev->ext_priv; |
327 | struct video_decoder_init init; | 327 | struct video_decoder_init init; |
328 | struct i2c_msg msg; | 328 | struct i2c_msg msg; |
329 | struct tuner_setup tun_setup; | ||
329 | 330 | ||
330 | int i = 0, err = 0; | 331 | int i = 0, err = 0; |
331 | struct tea6415c_multiplex vm; | 332 | struct tea6415c_multiplex vm; |
@@ -349,8 +350,10 @@ static int mxb_init_done(struct saa7146_dev* dev) | |||
349 | mxb->saa7111a->driver->command(mxb->saa7111a,DECODER_SET_VBI_BYPASS, &i); | 350 | mxb->saa7111a->driver->command(mxb->saa7111a,DECODER_SET_VBI_BYPASS, &i); |
350 | 351 | ||
351 | /* select a tuner type */ | 352 | /* select a tuner type */ |
352 | i = 5; | 353 | tun_setup.mode_mask = T_ANALOG_TV; |
353 | mxb->tuner->driver->command(mxb->tuner,TUNER_SET_TYPE, &i); | 354 | tun_setup.addr = ADDR_UNSET; |
355 | tun_setup.type = 5; | ||
356 | mxb->tuner->driver->command(mxb->tuner,TUNER_SET_TYPE_ADDR, &tun_setup); | ||
354 | 357 | ||
355 | /* mute audio on tea6420s */ | 358 | /* mute audio on tea6420s */ |
356 | mxb->tea6420_1->driver->command(mxb->tea6420_1,TEA6420_SWITCH, &TEA6420_line[6][0]); | 359 | mxb->tea6420_1->driver->command(mxb->tea6420_1,TEA6420_SWITCH, &TEA6420_line[6][0]); |
diff --git a/drivers/media/video/saa7134/saa6752hs.c b/drivers/media/video/saa7134/saa6752hs.c index e6d0a18833d6..79d05ea1b69b 100644 --- a/drivers/media/video/saa7134/saa6752hs.c +++ b/drivers/media/video/saa7134/saa6752hs.c | |||
@@ -155,10 +155,6 @@ static struct v4l2_mpeg_compression param_defaults = | |||
155 | .target = 256, | 155 | .target = 256, |
156 | }, | 156 | }, |
157 | 157 | ||
158 | #if 0 | ||
159 | /* FIXME: size? via S_FMT? */ | ||
160 | .video_format = MPEG_VIDEO_FORMAT_D1, | ||
161 | #endif | ||
162 | }; | 158 | }; |
163 | 159 | ||
164 | /* ---------------------------------------------------------------------- */ | 160 | /* ---------------------------------------------------------------------- */ |
diff --git a/drivers/media/video/saa7134/saa7134-cards.c b/drivers/media/video/saa7134/saa7134-cards.c index 0c781e24c446..88b71a20b602 100644 --- a/drivers/media/video/saa7134/saa7134-cards.c +++ b/drivers/media/video/saa7134/saa7134-cards.c | |||
@@ -1,6 +1,5 @@ | |||
1 | |||
2 | /* | 1 | /* |
3 | * $Id: saa7134-cards.c,v 1.58 2005/06/07 18:05:00 nsh Exp $ | 2 | * $Id: saa7134-cards.c,v 1.80 2005/07/07 01:49:30 mkrufky Exp $ |
4 | * | 3 | * |
5 | * device driver for philips saa7134 based TV cards | 4 | * device driver for philips saa7134 based TV cards |
6 | * card-specific stuff. | 5 | * card-specific stuff. |
@@ -47,6 +46,10 @@ struct saa7134_board saa7134_boards[] = { | |||
47 | .name = "UNKNOWN/GENERIC", | 46 | .name = "UNKNOWN/GENERIC", |
48 | .audio_clock = 0x00187de7, | 47 | .audio_clock = 0x00187de7, |
49 | .tuner_type = TUNER_ABSENT, | 48 | .tuner_type = TUNER_ABSENT, |
49 | .radio_type = UNSET, | ||
50 | .tuner_addr = ADDR_UNSET, | ||
51 | .radio_addr = ADDR_UNSET, | ||
52 | |||
50 | .inputs = {{ | 53 | .inputs = {{ |
51 | .name = "default", | 54 | .name = "default", |
52 | .vmux = 0, | 55 | .vmux = 0, |
@@ -58,6 +61,10 @@ struct saa7134_board saa7134_boards[] = { | |||
58 | .name = "Proteus Pro [philips reference design]", | 61 | .name = "Proteus Pro [philips reference design]", |
59 | .audio_clock = 0x00187de7, | 62 | .audio_clock = 0x00187de7, |
60 | .tuner_type = TUNER_PHILIPS_PAL, | 63 | .tuner_type = TUNER_PHILIPS_PAL, |
64 | .radio_type = UNSET, | ||
65 | .tuner_addr = ADDR_UNSET, | ||
66 | .radio_addr = ADDR_UNSET, | ||
67 | |||
61 | .inputs = {{ | 68 | .inputs = {{ |
62 | .name = name_comp1, | 69 | .name = name_comp1, |
63 | .vmux = 0, | 70 | .vmux = 0, |
@@ -83,6 +90,10 @@ struct saa7134_board saa7134_boards[] = { | |||
83 | .name = "LifeView FlyVIDEO3000", | 90 | .name = "LifeView FlyVIDEO3000", |
84 | .audio_clock = 0x00200000, | 91 | .audio_clock = 0x00200000, |
85 | .tuner_type = TUNER_PHILIPS_PAL, | 92 | .tuner_type = TUNER_PHILIPS_PAL, |
93 | .radio_type = UNSET, | ||
94 | .tuner_addr = ADDR_UNSET, | ||
95 | .radio_addr = ADDR_UNSET, | ||
96 | |||
86 | .gpiomask = 0xe000, | 97 | .gpiomask = 0xe000, |
87 | .inputs = {{ | 98 | .inputs = {{ |
88 | .name = name_tv, | 99 | .name = name_tv, |
@@ -90,7 +101,7 @@ struct saa7134_board saa7134_boards[] = { | |||
90 | .amux = TV, | 101 | .amux = TV, |
91 | .gpio = 0x8000, | 102 | .gpio = 0x8000, |
92 | .tv = 1, | 103 | .tv = 1, |
93 | },{ | 104 | },{ |
94 | .name = name_tv_mono, | 105 | .name = name_tv_mono, |
95 | .vmux = 1, | 106 | .vmux = 1, |
96 | .amux = LINE2, | 107 | .amux = LINE2, |
@@ -117,12 +128,21 @@ struct saa7134_board saa7134_boards[] = { | |||
117 | .amux = LINE2, | 128 | .amux = LINE2, |
118 | .gpio = 0x2000, | 129 | .gpio = 0x2000, |
119 | }, | 130 | }, |
131 | .mute = { | ||
132 | .name = name_mute, | ||
133 | .amux = TV, | ||
134 | .gpio = 0x8000, | ||
135 | }, | ||
120 | }, | 136 | }, |
121 | [SAA7134_BOARD_FLYVIDEO2000] = { | 137 | [SAA7134_BOARD_FLYVIDEO2000] = { |
122 | /* "TC Wan" <tcwan@cs.usm.my> */ | 138 | /* "TC Wan" <tcwan@cs.usm.my> */ |
123 | .name = "LifeView FlyVIDEO2000", | 139 | .name = "LifeView FlyVIDEO2000", |
124 | .audio_clock = 0x00200000, | 140 | .audio_clock = 0x00200000, |
125 | .tuner_type = TUNER_LG_PAL_NEW_TAPC, | 141 | .tuner_type = TUNER_LG_PAL_NEW_TAPC, |
142 | .radio_type = UNSET, | ||
143 | .tuner_addr = ADDR_UNSET, | ||
144 | .radio_addr = ADDR_UNSET, | ||
145 | |||
126 | .gpiomask = 0xe000, | 146 | .gpiomask = 0xe000, |
127 | .inputs = {{ | 147 | .inputs = {{ |
128 | .name = name_tv, | 148 | .name = name_tv, |
@@ -146,14 +166,14 @@ struct saa7134_board saa7134_boards[] = { | |||
146 | .amux = LINE2, | 166 | .amux = LINE2, |
147 | .gpio = 0x4000, | 167 | .gpio = 0x4000, |
148 | }}, | 168 | }}, |
149 | .radio = { | 169 | .radio = { |
150 | .name = name_radio, | 170 | .name = name_radio, |
151 | .amux = LINE2, | 171 | .amux = LINE2, |
152 | .gpio = 0x2000, | 172 | .gpio = 0x2000, |
153 | }, | 173 | }, |
154 | .mute = { | 174 | .mute = { |
155 | .name = name_mute, | 175 | .name = name_mute, |
156 | .amux = LINE2, | 176 | .amux = LINE2, |
157 | .gpio = 0x8000, | 177 | .gpio = 0x8000, |
158 | }, | 178 | }, |
159 | }, | 179 | }, |
@@ -162,6 +182,10 @@ struct saa7134_board saa7134_boards[] = { | |||
162 | .name = "LifeView FlyTV Platinum Mini", | 182 | .name = "LifeView FlyTV Platinum Mini", |
163 | .audio_clock = 0x00200000, | 183 | .audio_clock = 0x00200000, |
164 | .tuner_type = TUNER_PHILIPS_TDA8290, | 184 | .tuner_type = TUNER_PHILIPS_TDA8290, |
185 | .radio_type = UNSET, | ||
186 | .tuner_addr = ADDR_UNSET, | ||
187 | .radio_addr = ADDR_UNSET, | ||
188 | |||
165 | .inputs = {{ | 189 | .inputs = {{ |
166 | .name = name_tv, | 190 | .name = name_tv, |
167 | .vmux = 1, | 191 | .vmux = 1, |
@@ -183,6 +207,10 @@ struct saa7134_board saa7134_boards[] = { | |||
183 | .name = "LifeView FlyTV Platinum FM", | 207 | .name = "LifeView FlyTV Platinum FM", |
184 | .audio_clock = 0x00200000, | 208 | .audio_clock = 0x00200000, |
185 | .tuner_type = TUNER_PHILIPS_TDA8290, | 209 | .tuner_type = TUNER_PHILIPS_TDA8290, |
210 | .radio_type = UNSET, | ||
211 | .tuner_addr = ADDR_UNSET, | ||
212 | .radio_addr = ADDR_UNSET, | ||
213 | |||
186 | .gpiomask = 0x1E000, /* Set GP16 and unused 15,14,13 to Output */ | 214 | .gpiomask = 0x1E000, /* Set GP16 and unused 15,14,13 to Output */ |
187 | .inputs = {{ | 215 | .inputs = {{ |
188 | .name = name_tv, | 216 | .name = name_tv, |
@@ -190,7 +218,7 @@ struct saa7134_board saa7134_boards[] = { | |||
190 | .amux = TV, | 218 | .amux = TV, |
191 | .gpio = 0x10000, /* GP16=1 selects TV input */ | 219 | .gpio = 0x10000, /* GP16=1 selects TV input */ |
192 | .tv = 1, | 220 | .tv = 1, |
193 | },{ | 221 | },{ |
194 | /* .name = name_tv_mono, | 222 | /* .name = name_tv_mono, |
195 | .vmux = 1, | 223 | .vmux = 1, |
196 | .amux = LINE2, | 224 | .amux = LINE2, |
@@ -200,29 +228,38 @@ struct saa7134_board saa7134_boards[] = { | |||
200 | */ .name = name_comp1, /* Composite signal on S-Video input */ | 228 | */ .name = name_comp1, /* Composite signal on S-Video input */ |
201 | .vmux = 0, | 229 | .vmux = 0, |
202 | .amux = LINE2, | 230 | .amux = LINE2, |
203 | // .gpio = 0x4000, | 231 | /* .gpio = 0x4000, */ |
204 | },{ | 232 | },{ |
205 | .name = name_comp2, /* Composite input */ | 233 | .name = name_comp2, /* Composite input */ |
206 | .vmux = 3, | 234 | .vmux = 3, |
207 | .amux = LINE2, | 235 | .amux = LINE2, |
208 | // .gpio = 0x4000, | 236 | /* .gpio = 0x4000, */ |
209 | },{ | 237 | },{ |
210 | .name = name_svideo, /* S-Video signal on S-Video input */ | 238 | .name = name_svideo, /* S-Video signal on S-Video input */ |
211 | .vmux = 8, | 239 | .vmux = 8, |
212 | .amux = LINE2, | 240 | .amux = LINE2, |
213 | // .gpio = 0x4000, | 241 | /* .gpio = 0x4000, */ |
214 | }}, | 242 | }}, |
215 | .radio = { | 243 | .radio = { |
216 | .name = name_radio, | 244 | .name = name_radio, |
217 | .amux = TV, | 245 | .amux = TV, |
218 | .gpio = 0x00000, /* GP16=0 selects FM radio antenna */ | 246 | .gpio = 0x00000, /* GP16=0 selects FM radio antenna */ |
219 | }, | 247 | }, |
248 | .mute = { | ||
249 | .name = name_mute, | ||
250 | .amux = TV, | ||
251 | .gpio = 0x10000, | ||
252 | }, | ||
220 | }, | 253 | }, |
221 | [SAA7134_BOARD_EMPRESS] = { | 254 | [SAA7134_BOARD_EMPRESS] = { |
222 | /* "Gert Vervoort" <gert.vervoort@philips.com> */ | 255 | /* "Gert Vervoort" <gert.vervoort@philips.com> */ |
223 | .name = "EMPRESS", | 256 | .name = "EMPRESS", |
224 | .audio_clock = 0x00187de7, | 257 | .audio_clock = 0x00187de7, |
225 | .tuner_type = TUNER_PHILIPS_PAL, | 258 | .tuner_type = TUNER_PHILIPS_PAL, |
259 | .radio_type = UNSET, | ||
260 | .tuner_addr = ADDR_UNSET, | ||
261 | .radio_addr = ADDR_UNSET, | ||
262 | |||
226 | .inputs = {{ | 263 | .inputs = {{ |
227 | .name = name_comp1, | 264 | .name = name_comp1, |
228 | .vmux = 0, | 265 | .vmux = 0, |
@@ -245,33 +282,40 @@ struct saa7134_board saa7134_boards[] = { | |||
245 | .video_out = CCIR656, | 282 | .video_out = CCIR656, |
246 | }, | 283 | }, |
247 | [SAA7134_BOARD_MONSTERTV] = { | 284 | [SAA7134_BOARD_MONSTERTV] = { |
248 | /* "K.Ohta" <alpha292@bremen.or.jp> */ | 285 | /* "K.Ohta" <alpha292@bremen.or.jp> */ |
249 | .name = "SKNet Monster TV", | 286 | .name = "SKNet Monster TV", |
250 | .audio_clock = 0x00187de7, | 287 | .audio_clock = 0x00187de7, |
251 | .tuner_type = TUNER_PHILIPS_NTSC_M, | 288 | .tuner_type = TUNER_PHILIPS_NTSC_M, |
252 | .inputs = {{ | 289 | .radio_type = UNSET, |
253 | .name = name_tv, | 290 | .tuner_addr = ADDR_UNSET, |
254 | .vmux = 1, | 291 | .radio_addr = ADDR_UNSET, |
255 | .amux = TV, | 292 | |
256 | .tv = 1, | 293 | .inputs = {{ |
257 | },{ | 294 | .name = name_tv, |
258 | .name = name_comp1, | 295 | .vmux = 1, |
259 | .vmux = 0, | 296 | .amux = TV, |
260 | .amux = LINE1, | 297 | .tv = 1, |
261 | },{ | 298 | },{ |
262 | .name = name_svideo, | 299 | .name = name_comp1, |
263 | .vmux = 8, | 300 | .vmux = 0, |
264 | .amux = LINE1, | 301 | .amux = LINE1, |
265 | }}, | 302 | },{ |
266 | .radio = { | 303 | .name = name_svideo, |
267 | .name = name_radio, | 304 | .vmux = 8, |
268 | .amux = LINE2, | 305 | .amux = LINE1, |
269 | }, | 306 | }}, |
307 | .radio = { | ||
308 | .name = name_radio, | ||
309 | .amux = LINE2, | ||
310 | }, | ||
270 | }, | 311 | }, |
271 | [SAA7134_BOARD_MD9717] = { | 312 | [SAA7134_BOARD_MD9717] = { |
272 | .name = "Tevion MD 9717", | 313 | .name = "Tevion MD 9717", |
273 | .audio_clock = 0x00200000, | 314 | .audio_clock = 0x00200000, |
274 | .tuner_type = TUNER_PHILIPS_PAL, | 315 | .tuner_type = TUNER_PHILIPS_PAL, |
316 | .radio_type = UNSET, | ||
317 | .tuner_addr = ADDR_UNSET, | ||
318 | .radio_addr = ADDR_UNSET, | ||
275 | .inputs = {{ | 319 | .inputs = {{ |
276 | .name = name_tv, | 320 | .name = name_tv, |
277 | .vmux = 1, | 321 | .vmux = 1, |
@@ -302,10 +346,13 @@ struct saa7134_board saa7134_boards[] = { | |||
302 | }, | 346 | }, |
303 | }, | 347 | }, |
304 | [SAA7134_BOARD_TVSTATION_RDS] = { | 348 | [SAA7134_BOARD_TVSTATION_RDS] = { |
305 | /* Typhoon TV Tuner RDS: Art.Nr. 50694 */ | 349 | /* Typhoon TV Tuner RDS: Art.Nr. 50694 */ |
306 | .name = "KNC One TV-Station RDS / Typhoon TV Tuner RDS", | 350 | .name = "KNC One TV-Station RDS / Typhoon TV Tuner RDS", |
307 | .audio_clock = 0x00200000, | 351 | .audio_clock = 0x00200000, |
308 | .tuner_type = TUNER_PHILIPS_FM1216ME_MK3, | 352 | .tuner_type = TUNER_PHILIPS_FM1216ME_MK3, |
353 | .radio_type = UNSET, | ||
354 | .tuner_addr = ADDR_UNSET, | ||
355 | .radio_addr = ADDR_UNSET, | ||
309 | .tda9887_conf = TDA9887_PRESENT, | 356 | .tda9887_conf = TDA9887_PRESENT, |
310 | .inputs = {{ | 357 | .inputs = {{ |
311 | .name = name_tv, | 358 | .name = name_tv, |
@@ -314,10 +361,10 @@ struct saa7134_board saa7134_boards[] = { | |||
314 | .tv = 1, | 361 | .tv = 1, |
315 | },{ | 362 | },{ |
316 | .name = name_tv_mono, | 363 | .name = name_tv_mono, |
317 | .vmux = 1, | 364 | .vmux = 1, |
318 | .amux = LINE2, | 365 | .amux = LINE2, |
319 | .tv = 1, | 366 | .tv = 1, |
320 | },{ | 367 | },{ |
321 | 368 | ||
322 | .name = name_svideo, | 369 | .name = name_svideo, |
323 | .vmux = 8, | 370 | .vmux = 8, |
@@ -328,10 +375,10 @@ struct saa7134_board saa7134_boards[] = { | |||
328 | .amux = LINE1, | 375 | .amux = LINE1, |
329 | },{ | 376 | },{ |
330 | 377 | ||
331 | .name = "CVid over SVid", | 378 | .name = "CVid over SVid", |
332 | .vmux = 0, | 379 | .vmux = 0, |
333 | .amux = LINE1, | 380 | .amux = LINE1, |
334 | }}, | 381 | }}, |
335 | .radio = { | 382 | .radio = { |
336 | .name = name_radio, | 383 | .name = name_radio, |
337 | .amux = LINE2, | 384 | .amux = LINE2, |
@@ -341,6 +388,9 @@ struct saa7134_board saa7134_boards[] = { | |||
341 | .name = "KNC One TV-Station DVR", | 388 | .name = "KNC One TV-Station DVR", |
342 | .audio_clock = 0x00200000, | 389 | .audio_clock = 0x00200000, |
343 | .tuner_type = TUNER_PHILIPS_FM1216ME_MK3, | 390 | .tuner_type = TUNER_PHILIPS_FM1216ME_MK3, |
391 | .radio_type = UNSET, | ||
392 | .tuner_addr = ADDR_UNSET, | ||
393 | .radio_addr = ADDR_UNSET, | ||
344 | .tda9887_conf = TDA9887_PRESENT, | 394 | .tda9887_conf = TDA9887_PRESENT, |
345 | .gpiomask = 0x820000, | 395 | .gpiomask = 0x820000, |
346 | .inputs = {{ | 396 | .inputs = {{ |
@@ -369,32 +419,38 @@ struct saa7134_board saa7134_boards[] = { | |||
369 | .video_out = CCIR656, | 419 | .video_out = CCIR656, |
370 | }, | 420 | }, |
371 | [SAA7134_BOARD_CINERGY400] = { | 421 | [SAA7134_BOARD_CINERGY400] = { |
372 | .name = "Terratec Cinergy 400 TV", | 422 | .name = "Terratec Cinergy 400 TV", |
373 | .audio_clock = 0x00200000, | 423 | .audio_clock = 0x00200000, |
374 | .tuner_type = TUNER_PHILIPS_PAL, | 424 | .tuner_type = TUNER_PHILIPS_PAL, |
375 | .inputs = {{ | 425 | .radio_type = UNSET, |
376 | .name = name_tv, | 426 | .tuner_addr = ADDR_UNSET, |
377 | .vmux = 1, | 427 | .radio_addr = ADDR_UNSET, |
378 | .amux = TV, | 428 | .inputs = {{ |
379 | .tv = 1, | 429 | .name = name_tv, |
380 | },{ | 430 | .vmux = 1, |
381 | .name = name_comp1, | 431 | .amux = TV, |
382 | .vmux = 4, | 432 | .tv = 1, |
383 | .amux = LINE1, | 433 | },{ |
384 | },{ | 434 | .name = name_comp1, |
385 | .name = name_svideo, | 435 | .vmux = 4, |
386 | .vmux = 8, | 436 | .amux = LINE1, |
387 | .amux = LINE1, | 437 | },{ |
388 | },{ | 438 | .name = name_svideo, |
389 | .name = name_comp2, // CVideo over SVideo Connector | 439 | .vmux = 8, |
390 | .vmux = 0, | 440 | .amux = LINE1, |
391 | .amux = LINE1, | 441 | },{ |
392 | }} | 442 | .name = name_comp2, /* CVideo over SVideo Connector */ |
393 | }, | 443 | .vmux = 0, |
444 | .amux = LINE1, | ||
445 | }} | ||
446 | }, | ||
394 | [SAA7134_BOARD_MD5044] = { | 447 | [SAA7134_BOARD_MD5044] = { |
395 | .name = "Medion 5044", | 448 | .name = "Medion 5044", |
396 | .audio_clock = 0x00187de7, // was: 0x00200000, | 449 | .audio_clock = 0x00187de7, /* was: 0x00200000, */ |
397 | .tuner_type = TUNER_PHILIPS_FM1216ME_MK3, | 450 | .tuner_type = TUNER_PHILIPS_FM1216ME_MK3, |
451 | .radio_type = UNSET, | ||
452 | .tuner_addr = ADDR_UNSET, | ||
453 | .radio_addr = ADDR_UNSET, | ||
398 | .tda9887_conf = TDA9887_PRESENT, | 454 | .tda9887_conf = TDA9887_PRESENT, |
399 | .inputs = {{ | 455 | .inputs = {{ |
400 | .name = name_tv, | 456 | .name = name_tv, |
@@ -426,57 +482,65 @@ struct saa7134_board saa7134_boards[] = { | |||
426 | }, | 482 | }, |
427 | }, | 483 | }, |
428 | [SAA7134_BOARD_KWORLD] = { | 484 | [SAA7134_BOARD_KWORLD] = { |
429 | .name = "Kworld/KuroutoShikou SAA7130-TVPCI", | 485 | .name = "Kworld/KuroutoShikou SAA7130-TVPCI", |
430 | .audio_clock = 0x00187de7, | 486 | .audio_clock = 0x00187de7, |
431 | .tuner_type = TUNER_PHILIPS_NTSC_M, | 487 | .tuner_type = TUNER_PHILIPS_NTSC_M, |
432 | .inputs = {{ | 488 | .radio_type = UNSET, |
433 | .name = name_svideo, | 489 | .tuner_addr = ADDR_UNSET, |
434 | .vmux = 8, | 490 | .radio_addr = ADDR_UNSET, |
435 | .amux = LINE1, | 491 | .inputs = {{ |
436 | },{ | 492 | .name = name_svideo, |
437 | .name = name_comp1, | 493 | .vmux = 8, |
438 | .vmux = 3, | 494 | .amux = LINE1, |
439 | .amux = LINE1, | 495 | },{ |
440 | },{ | 496 | .name = name_comp1, |
441 | .name = name_tv, | 497 | .vmux = 3, |
442 | .vmux = 1, | 498 | .amux = LINE1, |
443 | .amux = LINE2, | 499 | },{ |
444 | .tv = 1, | 500 | .name = name_tv, |
445 | }}, | 501 | .vmux = 1, |
446 | }, | 502 | .amux = LINE2, |
503 | .tv = 1, | ||
504 | }}, | ||
505 | }, | ||
447 | [SAA7134_BOARD_CINERGY600] = { | 506 | [SAA7134_BOARD_CINERGY600] = { |
448 | .name = "Terratec Cinergy 600 TV", | 507 | .name = "Terratec Cinergy 600 TV", |
449 | .audio_clock = 0x00200000, | 508 | .audio_clock = 0x00200000, |
450 | .tuner_type = TUNER_PHILIPS_PAL, | 509 | .tuner_type = TUNER_PHILIPS_PAL, |
510 | .radio_type = UNSET, | ||
511 | .tuner_addr = ADDR_UNSET, | ||
512 | .radio_addr = ADDR_UNSET, | ||
451 | .tda9887_conf = TDA9887_PRESENT, | 513 | .tda9887_conf = TDA9887_PRESENT, |
452 | .inputs = {{ | 514 | .inputs = {{ |
453 | .name = name_tv, | 515 | .name = name_tv, |
454 | .vmux = 1, | 516 | .vmux = 1, |
455 | .amux = TV, | 517 | .amux = TV, |
456 | .tv = 1, | 518 | .tv = 1, |
457 | },{ | 519 | },{ |
458 | .name = name_comp1, | 520 | .name = name_comp1, |
459 | .vmux = 4, | 521 | .vmux = 4, |
460 | .amux = LINE1, | 522 | .amux = LINE1, |
461 | },{ | 523 | },{ |
462 | .name = name_svideo, | 524 | .name = name_svideo, |
463 | .vmux = 8, | 525 | .vmux = 8, |
464 | .amux = LINE1, | 526 | .amux = LINE1, |
465 | },{ | 527 | },{ |
466 | .name = name_comp2, // CVideo over SVideo Connector | 528 | .name = name_comp2, /* CVideo over SVideo Connector */ |
467 | .vmux = 0, | 529 | .vmux = 0, |
468 | .amux = LINE1, | 530 | .amux = LINE1, |
469 | }}, | 531 | }}, |
470 | .radio = { | 532 | .radio = { |
471 | .name = name_radio, | 533 | .name = name_radio, |
472 | .amux = LINE2, | 534 | .amux = LINE2, |
473 | }, | 535 | }, |
474 | }, | 536 | }, |
475 | [SAA7134_BOARD_MD7134] = { | 537 | [SAA7134_BOARD_MD7134] = { |
476 | .name = "Medion 7134", | 538 | .name = "Medion 7134", |
477 | //.audio_clock = 0x00200000, | ||
478 | .audio_clock = 0x00187de7, | 539 | .audio_clock = 0x00187de7, |
479 | .tuner_type = TUNER_PHILIPS_FM1216ME_MK3, | 540 | .tuner_type = TUNER_PHILIPS_FMD1216ME_MK3, |
541 | .radio_type = UNSET, | ||
542 | .tuner_addr = ADDR_UNSET, | ||
543 | .radio_addr = ADDR_UNSET, | ||
480 | .tda9887_conf = TDA9887_PRESENT, | 544 | .tda9887_conf = TDA9887_PRESENT, |
481 | .mpeg = SAA7134_MPEG_DVB, | 545 | .mpeg = SAA7134_MPEG_DVB, |
482 | .inputs = {{ | 546 | .inputs = {{ |
@@ -504,6 +568,9 @@ struct saa7134_board saa7134_boards[] = { | |||
504 | .name = "Typhoon TV+Radio 90031", | 568 | .name = "Typhoon TV+Radio 90031", |
505 | .audio_clock = 0x00200000, | 569 | .audio_clock = 0x00200000, |
506 | .tuner_type = TUNER_PHILIPS_PAL, | 570 | .tuner_type = TUNER_PHILIPS_PAL, |
571 | .radio_type = UNSET, | ||
572 | .tuner_addr = ADDR_UNSET, | ||
573 | .radio_addr = ADDR_UNSET, | ||
507 | .tda9887_conf = TDA9887_PRESENT, | 574 | .tda9887_conf = TDA9887_PRESENT, |
508 | .inputs = {{ | 575 | .inputs = {{ |
509 | .name = name_tv, | 576 | .name = name_tv, |
@@ -523,11 +590,14 @@ struct saa7134_board saa7134_boards[] = { | |||
523 | .name = name_radio, | 590 | .name = name_radio, |
524 | .amux = LINE2, | 591 | .amux = LINE2, |
525 | }, | 592 | }, |
526 | }, | 593 | }, |
527 | [SAA7134_BOARD_ELSA] = { | 594 | [SAA7134_BOARD_ELSA] = { |
528 | .name = "ELSA EX-VISION 300TV", | 595 | .name = "ELSA EX-VISION 300TV", |
529 | .audio_clock = 0x00187de7, | 596 | .audio_clock = 0x00187de7, |
530 | .tuner_type = TUNER_HITACHI_NTSC, | 597 | .tuner_type = TUNER_HITACHI_NTSC, |
598 | .radio_type = UNSET, | ||
599 | .tuner_addr = ADDR_UNSET, | ||
600 | .radio_addr = ADDR_UNSET, | ||
531 | .inputs = {{ | 601 | .inputs = {{ |
532 | .name = name_svideo, | 602 | .name = name_svideo, |
533 | .vmux = 8, | 603 | .vmux = 8, |
@@ -542,11 +612,14 @@ struct saa7134_board saa7134_boards[] = { | |||
542 | .amux = LINE2, | 612 | .amux = LINE2, |
543 | .tv = 1, | 613 | .tv = 1, |
544 | }}, | 614 | }}, |
545 | }, | 615 | }, |
546 | [SAA7134_BOARD_ELSA_500TV] = { | 616 | [SAA7134_BOARD_ELSA_500TV] = { |
547 | .name = "ELSA EX-VISION 500TV", | 617 | .name = "ELSA EX-VISION 500TV", |
548 | .audio_clock = 0x00187de7, | 618 | .audio_clock = 0x00187de7, |
549 | .tuner_type = TUNER_HITACHI_NTSC, | 619 | .tuner_type = TUNER_HITACHI_NTSC, |
620 | .radio_type = UNSET, | ||
621 | .tuner_addr = ADDR_UNSET, | ||
622 | .radio_addr = ADDR_UNSET, | ||
550 | .inputs = {{ | 623 | .inputs = {{ |
551 | .name = name_svideo, | 624 | .name = name_svideo, |
552 | .vmux = 7, | 625 | .vmux = 7, |
@@ -562,83 +635,100 @@ struct saa7134_board saa7134_boards[] = { | |||
562 | .amux = LINE2, | 635 | .amux = LINE2, |
563 | .tv = 1, | 636 | .tv = 1, |
564 | }}, | 637 | }}, |
565 | }, | 638 | }, |
566 | [SAA7134_BOARD_ASUSTeK_TVFM7134] = { | 639 | [SAA7134_BOARD_ASUSTeK_TVFM7134] = { |
567 | .name = "ASUS TV-FM 7134", | 640 | .name = "ASUS TV-FM 7134", |
568 | .audio_clock = 0x00187de7, | 641 | .audio_clock = 0x00187de7, |
569 | .tuner_type = TUNER_PHILIPS_FM1216ME_MK3, | 642 | .tuner_type = TUNER_PHILIPS_FM1216ME_MK3, |
570 | .tda9887_conf = TDA9887_PRESENT, | 643 | .radio_type = UNSET, |
571 | .inputs = {{ | 644 | .tuner_addr = ADDR_UNSET, |
572 | .name = name_tv, | 645 | .radio_addr = ADDR_UNSET, |
573 | .vmux = 1, | 646 | .tda9887_conf = TDA9887_PRESENT, |
574 | .amux = TV, | 647 | .inputs = {{ |
575 | .tv = 1, | 648 | .name = name_tv, |
576 | },{ | 649 | .vmux = 1, |
577 | .name = name_comp1, | 650 | .amux = TV, |
578 | .vmux = 4, | 651 | .tv = 1, |
579 | .amux = LINE2, | 652 | },{ |
580 | },{ | 653 | .name = name_comp1, |
581 | .name = name_svideo, | 654 | .vmux = 4, |
582 | .vmux = 6, | 655 | .amux = LINE2, |
583 | .amux = LINE2, | 656 | },{ |
584 | }}, | 657 | .name = name_svideo, |
585 | .radio = { | 658 | .vmux = 6, |
586 | .name = name_radio, | 659 | .amux = LINE2, |
587 | .amux = LINE1, | 660 | }}, |
588 | }, | 661 | .radio = { |
589 | }, | 662 | .name = name_radio, |
590 | [SAA7135_BOARD_ASUSTeK_TVFM7135] = { | 663 | .amux = LINE1, |
591 | .name = "ASUS TV-FM 7135", | 664 | }, |
592 | .audio_clock = 0x00187de7, | 665 | }, |
593 | .tuner_type = TUNER_PHILIPS_TDA8290, | 666 | [SAA7134_BOARD_ASUSTeK_TVFM7135] = { |
667 | .name = "ASUS TV-FM 7135", | ||
668 | .audio_clock = 0x00187de7, | ||
669 | .tuner_type = TUNER_PHILIPS_TDA8290, | ||
670 | .radio_type = UNSET, | ||
671 | .tuner_addr = ADDR_UNSET, | ||
672 | .radio_addr = ADDR_UNSET, | ||
594 | .gpiomask = 0x200000, | 673 | .gpiomask = 0x200000, |
595 | .inputs = {{ | 674 | .inputs = {{ |
596 | .name = name_tv, | 675 | .name = name_tv, |
597 | .vmux = 1, | 676 | .vmux = 1, |
598 | .amux = TV, | 677 | .amux = TV, |
599 | .gpio = 0x0000, | 678 | .gpio = 0x0000, |
600 | .tv = 1, | 679 | .tv = 1, |
601 | },{ | 680 | },{ |
602 | .name = name_comp1, | 681 | .name = name_comp1, |
603 | .vmux = 4, | 682 | .vmux = 4, |
604 | .amux = LINE2, | 683 | .amux = LINE2, |
605 | .gpio = 0x0000, | 684 | .gpio = 0x0000, |
606 | },{ | 685 | },{ |
607 | .name = name_svideo, | 686 | .name = name_svideo, |
608 | .vmux = 6, | 687 | .vmux = 6, |
609 | .amux = LINE2, | 688 | .amux = LINE2, |
610 | .gpio = 0x0000, | 689 | .gpio = 0x0000, |
611 | }}, | 690 | }}, |
612 | .radio = { | 691 | .radio = { |
613 | .name = name_radio, | 692 | .name = name_radio, |
614 | .amux = TV, | 693 | .amux = TV, |
615 | .gpio = 0x200000, | 694 | .gpio = 0x200000, |
616 | }, | 695 | }, |
696 | .mute = { | ||
697 | .name = name_mute, | ||
698 | .gpio = 0x0000, | ||
699 | }, | ||
700 | |||
617 | }, | 701 | }, |
618 | [SAA7134_BOARD_VA1000POWER] = { | 702 | [SAA7134_BOARD_VA1000POWER] = { |
619 | .name = "AOPEN VA1000 POWER", | 703 | .name = "AOPEN VA1000 POWER", |
620 | .audio_clock = 0x00187de7, | 704 | .audio_clock = 0x00187de7, |
621 | .tuner_type = TUNER_PHILIPS_NTSC, | 705 | .tuner_type = TUNER_PHILIPS_NTSC, |
622 | .inputs = {{ | 706 | .radio_type = UNSET, |
623 | .name = name_svideo, | 707 | .tuner_addr = ADDR_UNSET, |
624 | .vmux = 8, | 708 | .radio_addr = ADDR_UNSET, |
625 | .amux = LINE1, | 709 | .inputs = {{ |
626 | },{ | 710 | .name = name_svideo, |
627 | .name = name_comp1, | 711 | .vmux = 8, |
628 | .vmux = 3, | 712 | .amux = LINE1, |
629 | .amux = LINE1, | 713 | },{ |
630 | },{ | 714 | .name = name_comp1, |
631 | .name = name_tv, | 715 | .vmux = 3, |
632 | .vmux = 1, | 716 | .amux = LINE1, |
633 | .amux = LINE2, | 717 | },{ |
634 | .tv = 1, | 718 | .name = name_tv, |
635 | }}, | 719 | .vmux = 1, |
720 | .amux = LINE2, | ||
721 | .tv = 1, | ||
722 | }}, | ||
636 | }, | 723 | }, |
637 | [SAA7134_BOARD_10MOONSTVMASTER] = { | 724 | [SAA7134_BOARD_10MOONSTVMASTER] = { |
638 | /* "lilicheng" <llc@linuxfans.org> */ | 725 | /* "lilicheng" <llc@linuxfans.org> */ |
639 | .name = "10MOONS PCI TV CAPTURE CARD", | 726 | .name = "10MOONS PCI TV CAPTURE CARD", |
640 | .audio_clock = 0x00200000, | 727 | .audio_clock = 0x00200000, |
641 | .tuner_type = TUNER_LG_PAL_NEW_TAPC, | 728 | .tuner_type = TUNER_LG_PAL_NEW_TAPC, |
729 | .radio_type = UNSET, | ||
730 | .tuner_addr = ADDR_UNSET, | ||
731 | .radio_addr = ADDR_UNSET, | ||
642 | .gpiomask = 0xe000, | 732 | .gpiomask = 0xe000, |
643 | .inputs = {{ | 733 | .inputs = {{ |
644 | .name = name_tv, | 734 | .name = name_tv, |
@@ -662,14 +752,14 @@ struct saa7134_board saa7134_boards[] = { | |||
662 | .amux = LINE2, | 752 | .amux = LINE2, |
663 | .gpio = 0x4000, | 753 | .gpio = 0x4000, |
664 | }}, | 754 | }}, |
665 | .radio = { | 755 | .radio = { |
666 | .name = name_radio, | 756 | .name = name_radio, |
667 | .amux = LINE2, | 757 | .amux = LINE2, |
668 | .gpio = 0x2000, | 758 | .gpio = 0x2000, |
669 | }, | 759 | }, |
670 | .mute = { | 760 | .mute = { |
671 | .name = name_mute, | 761 | .name = name_mute, |
672 | .amux = LINE2, | 762 | .amux = LINE2, |
673 | .gpio = 0x8000, | 763 | .gpio = 0x8000, |
674 | }, | 764 | }, |
675 | }, | 765 | }, |
@@ -678,6 +768,9 @@ struct saa7134_board saa7134_boards[] = { | |||
678 | .name = "BMK MPEX No Tuner", | 768 | .name = "BMK MPEX No Tuner", |
679 | .audio_clock = 0x200000, | 769 | .audio_clock = 0x200000, |
680 | .tuner_type = TUNER_ABSENT, | 770 | .tuner_type = TUNER_ABSENT, |
771 | .radio_type = UNSET, | ||
772 | .tuner_addr = ADDR_UNSET, | ||
773 | .radio_addr = ADDR_UNSET, | ||
681 | .inputs = {{ | 774 | .inputs = {{ |
682 | .name = name_comp1, | 775 | .name = name_comp1, |
683 | .vmux = 4, | 776 | .vmux = 4, |
@@ -706,80 +799,94 @@ struct saa7134_board saa7134_boards[] = { | |||
706 | .name = "Compro VideoMate TV", | 799 | .name = "Compro VideoMate TV", |
707 | .audio_clock = 0x00187de7, | 800 | .audio_clock = 0x00187de7, |
708 | .tuner_type = TUNER_PHILIPS_NTSC_M, | 801 | .tuner_type = TUNER_PHILIPS_NTSC_M, |
709 | .inputs = {{ | 802 | .radio_type = UNSET, |
710 | .name = name_svideo, | 803 | .tuner_addr = ADDR_UNSET, |
711 | .vmux = 8, | 804 | .radio_addr = ADDR_UNSET, |
712 | .amux = LINE1, | 805 | .inputs = {{ |
713 | },{ | 806 | .name = name_svideo, |
714 | .name = name_comp1, | 807 | .vmux = 8, |
715 | .vmux = 3, | 808 | .amux = LINE1, |
716 | .amux = LINE1, | 809 | },{ |
717 | },{ | 810 | .name = name_comp1, |
718 | .name = name_tv, | 811 | .vmux = 3, |
719 | .vmux = 1, | 812 | .amux = LINE1, |
720 | .amux = LINE2, | 813 | },{ |
721 | .tv = 1, | 814 | .name = name_tv, |
722 | }}, | 815 | .vmux = 1, |
723 | }, | 816 | .amux = LINE2, |
724 | [SAA7134_BOARD_VIDEOMATE_TV_GOLD_PLUS] = { | 817 | .tv = 1, |
818 | }}, | ||
819 | }, | ||
820 | [SAA7134_BOARD_VIDEOMATE_TV_GOLD_PLUS] = { | ||
725 | .name = "Compro VideoMate TV Gold+", | 821 | .name = "Compro VideoMate TV Gold+", |
726 | .audio_clock = 0x00187de7, | 822 | .audio_clock = 0x00187de7, |
727 | .tuner_type = TUNER_PHILIPS_NTSC_M, | 823 | .tuner_type = TUNER_PHILIPS_NTSC_M, |
728 | .gpiomask = 0x800c0000, | 824 | .gpiomask = 0x800c0000, |
729 | .inputs = {{ | 825 | .radio_type = UNSET, |
730 | .name = name_svideo, | 826 | .tuner_addr = ADDR_UNSET, |
731 | .vmux = 8, | 827 | .radio_addr = ADDR_UNSET, |
732 | .amux = LINE1, | 828 | .inputs = {{ |
733 | .gpio = 0x06c00012, | 829 | .name = name_svideo, |
734 | },{ | 830 | .vmux = 8, |
735 | .name = name_comp1, | 831 | .amux = LINE1, |
736 | .vmux = 3, | 832 | .gpio = 0x06c00012, |
737 | .amux = LINE1, | 833 | },{ |
738 | .gpio = 0x0ac20012, | 834 | .name = name_comp1, |
739 | },{ | 835 | .vmux = 3, |
740 | .name = name_tv, | 836 | .amux = LINE1, |
741 | .vmux = 1, | 837 | .gpio = 0x0ac20012, |
742 | .amux = LINE2, | 838 | },{ |
743 | .gpio = 0x08c20012, | 839 | .name = name_tv, |
744 | .tv = 1, | 840 | .vmux = 1, |
745 | }}, | 841 | .amux = LINE2, |
746 | }, | 842 | .gpio = 0x08c20012, |
843 | .tv = 1, | ||
844 | }}, /* radio and probably mute is missing */ | ||
845 | }, | ||
747 | [SAA7134_BOARD_CRONOS_PLUS] = { | 846 | [SAA7134_BOARD_CRONOS_PLUS] = { |
748 | /* gpio pins: | 847 | /* |
749 | 0 .. 3 BASE_ID | 848 | gpio pins: |
750 | 4 .. 7 PROTECT_ID | 849 | 0 .. 3 BASE_ID |
751 | 8 .. 11 USER_OUT | 850 | 4 .. 7 PROTECT_ID |
752 | 12 .. 13 USER_IN | 851 | 8 .. 11 USER_OUT |
753 | 14 .. 15 VIDIN_SEL */ | 852 | 12 .. 13 USER_IN |
853 | 14 .. 15 VIDIN_SEL | ||
854 | */ | ||
754 | .name = "Matrox CronosPlus", | 855 | .name = "Matrox CronosPlus", |
755 | .tuner_type = TUNER_ABSENT, | 856 | .tuner_type = TUNER_ABSENT, |
857 | .radio_type = UNSET, | ||
858 | .tuner_addr = ADDR_UNSET, | ||
859 | .radio_addr = ADDR_UNSET, | ||
756 | .gpiomask = 0xcf00, | 860 | .gpiomask = 0xcf00, |
757 | .inputs = {{ | 861 | .inputs = {{ |
758 | .name = name_comp1, | 862 | .name = name_comp1, |
759 | .vmux = 0, | 863 | .vmux = 0, |
760 | .gpio = 2 << 14, | 864 | .gpio = 2 << 14, |
761 | },{ | 865 | },{ |
762 | .name = name_comp2, | 866 | .name = name_comp2, |
763 | .vmux = 0, | 867 | .vmux = 0, |
764 | .gpio = 1 << 14, | 868 | .gpio = 1 << 14, |
765 | },{ | 869 | },{ |
766 | .name = name_comp3, | 870 | .name = name_comp3, |
767 | .vmux = 0, | 871 | .vmux = 0, |
768 | .gpio = 0 << 14, | 872 | .gpio = 0 << 14, |
769 | },{ | 873 | },{ |
770 | .name = name_comp4, | 874 | .name = name_comp4, |
771 | .vmux = 0, | 875 | .vmux = 0, |
772 | .gpio = 3 << 14, | 876 | .gpio = 3 << 14, |
773 | },{ | 877 | },{ |
774 | .name = name_svideo, | 878 | .name = name_svideo, |
775 | .vmux = 8, | 879 | .vmux = 8, |
776 | .gpio = 2 << 14, | 880 | .gpio = 2 << 14, |
777 | }}, | 881 | }}, |
778 | }, | 882 | }, |
779 | [SAA7134_BOARD_MD2819] = { | 883 | [SAA7134_BOARD_MD2819] = { |
780 | .name = "AverMedia M156 / Medion 2819", | 884 | .name = "AverMedia M156 / Medion 2819", |
781 | .audio_clock = 0x00187de7, | 885 | .audio_clock = 0x00187de7, |
782 | .tuner_type = TUNER_PHILIPS_FM1216ME_MK3, | 886 | .tuner_type = TUNER_PHILIPS_FM1216ME_MK3, |
887 | .radio_type = UNSET, | ||
888 | .tuner_addr = ADDR_UNSET, | ||
889 | .radio_addr = ADDR_UNSET, | ||
783 | .tda9887_conf = TDA9887_PRESENT, | 890 | .tda9887_conf = TDA9887_PRESENT, |
784 | .inputs = {{ | 891 | .inputs = {{ |
785 | .name = name_tv, | 892 | .name = name_tv, |
@@ -809,6 +916,9 @@ struct saa7134_board saa7134_boards[] = { | |||
809 | .name = "BMK MPEX Tuner", | 916 | .name = "BMK MPEX Tuner", |
810 | .audio_clock = 0x200000, | 917 | .audio_clock = 0x200000, |
811 | .tuner_type = TUNER_PHILIPS_PAL, | 918 | .tuner_type = TUNER_PHILIPS_PAL, |
919 | .radio_type = UNSET, | ||
920 | .tuner_addr = ADDR_UNSET, | ||
921 | .radio_addr = ADDR_UNSET, | ||
812 | .inputs = {{ | 922 | .inputs = {{ |
813 | .name = name_comp1, | 923 | .name = name_comp1, |
814 | .vmux = 1, | 924 | .vmux = 1, |
@@ -825,62 +935,72 @@ struct saa7134_board saa7134_boards[] = { | |||
825 | }}, | 935 | }}, |
826 | .mpeg = SAA7134_MPEG_EMPRESS, | 936 | .mpeg = SAA7134_MPEG_EMPRESS, |
827 | .video_out = CCIR656, | 937 | .video_out = CCIR656, |
828 | }, | 938 | }, |
829 | [SAA7134_BOARD_ASUSTEK_TVFM7133] = { | 939 | [SAA7134_BOARD_ASUSTEK_TVFM7133] = { |
830 | .name = "ASUS TV-FM 7133", | 940 | .name = "ASUS TV-FM 7133", |
831 | .audio_clock = 0x00187de7, | 941 | .audio_clock = 0x00187de7, |
832 | // probably wrong, the 7133 one is the NTSC version ... | 942 | /* probably wrong, the 7133 one is the NTSC version ... |
833 | // .tuner_type = TUNER_PHILIPS_FM1236_MK3 | 943 | * .tuner_type = TUNER_PHILIPS_FM1236_MK3 */ |
834 | .tuner_type = TUNER_LG_NTSC_NEW_TAPC, | 944 | .tuner_type = TUNER_LG_NTSC_NEW_TAPC, |
835 | .tda9887_conf = TDA9887_PRESENT, | 945 | .radio_type = UNSET, |
836 | .inputs = {{ | 946 | .tuner_addr = ADDR_UNSET, |
837 | .name = name_tv, | 947 | .radio_addr = ADDR_UNSET, |
838 | .vmux = 1, | 948 | .tda9887_conf = TDA9887_PRESENT, |
839 | .amux = TV, | 949 | .inputs = {{ |
840 | .tv = 1, | 950 | .name = name_tv, |
841 | },{ | 951 | .vmux = 1, |
842 | .name = name_comp1, | 952 | .amux = TV, |
843 | .vmux = 4, | 953 | .tv = 1, |
844 | .amux = LINE2, | 954 | |
845 | },{ | 955 | },{ |
846 | .name = name_svideo, | 956 | .name = name_comp1, |
847 | .vmux = 6, | 957 | .vmux = 4, |
848 | .amux = LINE2, | 958 | .amux = LINE2, |
849 | }}, | 959 | },{ |
850 | .radio = { | 960 | .name = name_svideo, |
851 | .name = name_radio, | 961 | .vmux = 6, |
852 | .amux = LINE1, | 962 | .amux = LINE2, |
853 | }, | 963 | }}, |
854 | }, | 964 | .radio = { |
965 | .name = name_radio, | ||
966 | .amux = LINE1, | ||
967 | }, | ||
968 | }, | ||
855 | [SAA7134_BOARD_PINNACLE_PCTV_STEREO] = { | 969 | [SAA7134_BOARD_PINNACLE_PCTV_STEREO] = { |
856 | .name = "Pinnacle PCTV Stereo (saa7134)", | 970 | .name = "Pinnacle PCTV Stereo (saa7134)", |
857 | .audio_clock = 0x00187de7, | 971 | .audio_clock = 0x00187de7, |
858 | .tuner_type = TUNER_MT2032, | 972 | .tuner_type = TUNER_MT2032, |
859 | .tda9887_conf = TDA9887_PRESENT | TDA9887_INTERCARRIER, | 973 | .radio_type = UNSET, |
860 | .inputs = {{ | 974 | .tuner_addr = ADDR_UNSET, |
861 | .name = name_tv, | 975 | .radio_addr = ADDR_UNSET, |
862 | .vmux = 3, | 976 | .tda9887_conf = TDA9887_PRESENT | TDA9887_INTERCARRIER, |
863 | .amux = TV, | 977 | .inputs = {{ |
864 | .tv = 1, | 978 | .name = name_tv, |
865 | },{ | 979 | .vmux = 3, |
866 | .name = name_comp1, | 980 | .amux = TV, |
867 | .vmux = 0, | 981 | .tv = 1, |
868 | .amux = LINE2, | 982 | },{ |
869 | },{ | 983 | .name = name_comp1, |
870 | .name = name_comp2, | 984 | .vmux = 0, |
871 | .vmux = 1, | 985 | .amux = LINE2, |
872 | .amux = LINE2, | 986 | },{ |
873 | },{ | 987 | .name = name_comp2, |
874 | .name = name_svideo, | 988 | .vmux = 1, |
875 | .vmux = 8, | 989 | .amux = LINE2, |
876 | .amux = LINE2, | 990 | },{ |
877 | }}, | 991 | .name = name_svideo, |
878 | }, | 992 | .vmux = 8, |
993 | .amux = LINE2, | ||
994 | }}, | ||
995 | }, | ||
879 | [SAA7134_BOARD_MANLI_MTV002] = { | 996 | [SAA7134_BOARD_MANLI_MTV002] = { |
880 | /* Ognjen Nastic <ognjen@logosoft.ba> */ | 997 | /* Ognjen Nastic <ognjen@logosoft.ba> */ |
881 | .name = "Manli MuchTV M-TV002/Behold TV 403 FM", | 998 | .name = "Manli MuchTV M-TV002/Behold TV 403 FM", |
882 | .audio_clock = 0x00200000, | 999 | .audio_clock = 0x00200000, |
883 | .tuner_type = TUNER_PHILIPS_PAL, | 1000 | .tuner_type = TUNER_PHILIPS_PAL, |
1001 | .radio_type = UNSET, | ||
1002 | .tuner_addr = ADDR_UNSET, | ||
1003 | .radio_addr = ADDR_UNSET, | ||
884 | .inputs = {{ | 1004 | .inputs = {{ |
885 | .name = name_svideo, | 1005 | .name = name_svideo, |
886 | .vmux = 8, | 1006 | .vmux = 8, |
@@ -905,6 +1025,9 @@ struct saa7134_board saa7134_boards[] = { | |||
905 | .name = "Manli MuchTV M-TV001/Behold TV 401", | 1025 | .name = "Manli MuchTV M-TV001/Behold TV 401", |
906 | .audio_clock = 0x00200000, | 1026 | .audio_clock = 0x00200000, |
907 | .tuner_type = TUNER_PHILIPS_PAL, | 1027 | .tuner_type = TUNER_PHILIPS_PAL, |
1028 | .radio_type = UNSET, | ||
1029 | .tuner_addr = ADDR_UNSET, | ||
1030 | .radio_addr = ADDR_UNSET, | ||
908 | .inputs = {{ | 1031 | .inputs = {{ |
909 | .name = name_svideo, | 1032 | .name = name_svideo, |
910 | .vmux = 8, | 1033 | .vmux = 8, |
@@ -921,14 +1044,17 @@ struct saa7134_board saa7134_boards[] = { | |||
921 | }}, | 1044 | }}, |
922 | .mute = { | 1045 | .mute = { |
923 | .name = name_mute, | 1046 | .name = name_mute, |
924 | .amux = LINE1, | 1047 | .amux = LINE1, |
925 | }, | 1048 | }, |
926 | }, | 1049 | }, |
927 | [SAA7134_BOARD_TG3000TV] = { | 1050 | [SAA7134_BOARD_TG3000TV] = { |
928 | /* TransGear 3000TV */ | 1051 | /* TransGear 3000TV */ |
929 | .name = "Nagase Sangyo TransGear 3000TV", | 1052 | .name = "Nagase Sangyo TransGear 3000TV", |
930 | .audio_clock = 0x00187de7, | 1053 | .audio_clock = 0x00187de7, |
931 | .tuner_type = TUNER_PHILIPS_NTSC_M, | 1054 | .tuner_type = TUNER_PHILIPS_NTSC_M, |
1055 | .radio_type = UNSET, | ||
1056 | .tuner_addr = ADDR_UNSET, | ||
1057 | .radio_addr = ADDR_UNSET, | ||
932 | .inputs = {{ | 1058 | .inputs = {{ |
933 | .name = name_tv, | 1059 | .name = name_tv, |
934 | .vmux = 1, | 1060 | .vmux = 1, |
@@ -944,81 +1070,90 @@ struct saa7134_board saa7134_boards[] = { | |||
944 | .amux = LINE2, | 1070 | .amux = LINE2, |
945 | }}, | 1071 | }}, |
946 | }, | 1072 | }, |
947 | [SAA7134_BOARD_ECS_TVP3XP] = { | 1073 | [SAA7134_BOARD_ECS_TVP3XP] = { |
948 | .name = "Elitegroup ECS TVP3XP FM1216 Tuner Card(PAL-BG,FM) ", | 1074 | .name = "Elitegroup ECS TVP3XP FM1216 Tuner Card(PAL-BG,FM) ", |
949 | .audio_clock = 0x187de7, // xtal 32.1 MHz | 1075 | .audio_clock = 0x187de7, /* xtal 32.1 MHz */ |
950 | .tuner_type = TUNER_PHILIPS_PAL, | 1076 | .tuner_type = TUNER_PHILIPS_PAL, |
951 | .inputs = {{ | 1077 | .radio_type = UNSET, |
952 | .name = name_tv, | 1078 | .tuner_addr = ADDR_UNSET, |
953 | .vmux = 1, | 1079 | .radio_addr = ADDR_UNSET, |
954 | .amux = TV, | 1080 | .inputs = {{ |
955 | .tv = 1, | 1081 | .name = name_tv, |
956 | },{ | 1082 | .vmux = 1, |
957 | .name = name_tv_mono, | 1083 | .amux = TV, |
958 | .vmux = 1, | 1084 | .tv = 1, |
959 | .amux = LINE2, | 1085 | },{ |
960 | .tv = 1, | 1086 | .name = name_tv_mono, |
961 | },{ | 1087 | .vmux = 1, |
962 | .name = name_comp1, | 1088 | .amux = LINE2, |
963 | .vmux = 3, | 1089 | .tv = 1, |
964 | .amux = LINE1, | 1090 | },{ |
965 | },{ | 1091 | .name = name_comp1, |
966 | .name = name_svideo, | 1092 | .vmux = 3, |
967 | .vmux = 8, | 1093 | .amux = LINE1, |
968 | .amux = LINE1, | 1094 | },{ |
1095 | .name = name_svideo, | ||
1096 | .vmux = 8, | ||
1097 | .amux = LINE1, | ||
969 | },{ | 1098 | },{ |
970 | .name = "CVid over SVid", | 1099 | .name = "CVid over SVid", |
971 | .vmux = 0, | 1100 | .vmux = 0, |
972 | .amux = LINE1, | 1101 | .amux = LINE1, |
973 | }}, | 1102 | }}, |
974 | .radio = { | 1103 | .radio = { |
975 | .name = name_radio, | 1104 | .name = name_radio, |
976 | .amux = LINE2, | 1105 | .amux = LINE2, |
977 | }, | 1106 | }, |
978 | }, | 1107 | }, |
979 | [SAA7134_BOARD_ECS_TVP3XP_4CB5] = { | 1108 | [SAA7134_BOARD_ECS_TVP3XP_4CB5] = { |
980 | .name = "Elitegroup ECS TVP3XP FM1236 Tuner Card (NTSC,FM)", | 1109 | .name = "Elitegroup ECS TVP3XP FM1236 Tuner Card (NTSC,FM)", |
981 | .audio_clock = 0x187de7, | 1110 | .audio_clock = 0x187de7, |
982 | .tuner_type = TUNER_PHILIPS_NTSC, | 1111 | .tuner_type = TUNER_PHILIPS_NTSC, |
983 | .inputs = {{ | 1112 | .radio_type = UNSET, |
984 | .name = name_tv, | 1113 | .tuner_addr = ADDR_UNSET, |
985 | .vmux = 1, | 1114 | .radio_addr = ADDR_UNSET, |
986 | .amux = TV, | 1115 | .inputs = {{ |
987 | .tv = 1, | 1116 | .name = name_tv, |
988 | },{ | 1117 | .vmux = 1, |
989 | .name = name_tv_mono, | 1118 | .amux = TV, |
990 | .vmux = 1, | 1119 | .tv = 1, |
991 | .amux = LINE2, | 1120 | },{ |
992 | .tv = 1, | 1121 | .name = name_tv_mono, |
993 | },{ | 1122 | .vmux = 1, |
994 | .name = name_comp1, | 1123 | .amux = LINE2, |
995 | .vmux = 3, | 1124 | .tv = 1, |
996 | .amux = LINE1, | 1125 | },{ |
997 | },{ | 1126 | .name = name_comp1, |
998 | .name = name_svideo, | 1127 | .vmux = 3, |
999 | .vmux = 8, | 1128 | .amux = LINE1, |
1000 | .amux = LINE1, | 1129 | },{ |
1001 | },{ | 1130 | .name = name_svideo, |
1002 | .name = "CVid over SVid", | 1131 | .vmux = 8, |
1003 | .vmux = 0, | 1132 | .amux = LINE1, |
1004 | .amux = LINE1, | 1133 | },{ |
1005 | }}, | 1134 | .name = "CVid over SVid", |
1006 | .radio = { | 1135 | .vmux = 0, |
1007 | .name = name_radio, | 1136 | .amux = LINE1, |
1008 | .amux = LINE2, | 1137 | }}, |
1009 | }, | 1138 | .radio = { |
1010 | }, | 1139 | .name = name_radio, |
1140 | .amux = LINE2, | ||
1141 | }, | ||
1142 | }, | ||
1011 | [SAA7134_BOARD_AVACSSMARTTV] = { | 1143 | [SAA7134_BOARD_AVACSSMARTTV] = { |
1012 | /* Roman Pszonczenko <romka@kolos.math.uni.lodz.pl> */ | 1144 | /* Roman Pszonczenko <romka@kolos.math.uni.lodz.pl> */ |
1013 | .name = "AVACS SmartTV", | 1145 | .name = "AVACS SmartTV", |
1014 | .audio_clock = 0x00187de7, | 1146 | .audio_clock = 0x00187de7, |
1015 | .tuner_type = TUNER_PHILIPS_PAL, | 1147 | .tuner_type = TUNER_PHILIPS_PAL, |
1148 | .radio_type = UNSET, | ||
1149 | .tuner_addr = ADDR_UNSET, | ||
1150 | .radio_addr = ADDR_UNSET, | ||
1016 | .inputs = {{ | 1151 | .inputs = {{ |
1017 | .name = name_tv, | 1152 | .name = name_tv, |
1018 | .vmux = 1, | 1153 | .vmux = 1, |
1019 | .amux = TV, | 1154 | .amux = TV, |
1020 | .tv = 1, | 1155 | .tv = 1, |
1021 | },{ | 1156 | },{ |
1022 | .name = name_tv_mono, | 1157 | .name = name_tv_mono, |
1023 | .vmux = 1, | 1158 | .vmux = 1, |
1024 | .amux = LINE2, | 1159 | .amux = LINE2, |
@@ -1047,6 +1182,9 @@ struct saa7134_board saa7134_boards[] = { | |||
1047 | .name = "AVerMedia DVD EZMaker", | 1182 | .name = "AVerMedia DVD EZMaker", |
1048 | .audio_clock = 0x00187de7, | 1183 | .audio_clock = 0x00187de7, |
1049 | .tuner_type = TUNER_ABSENT, | 1184 | .tuner_type = TUNER_ABSENT, |
1185 | .radio_type = UNSET, | ||
1186 | .tuner_addr = ADDR_UNSET, | ||
1187 | .radio_addr = ADDR_UNSET, | ||
1050 | .inputs = {{ | 1188 | .inputs = {{ |
1051 | .name = name_comp1, | 1189 | .name = name_comp1, |
1052 | .vmux = 3, | 1190 | .vmux = 3, |
@@ -1055,28 +1193,34 @@ struct saa7134_board saa7134_boards[] = { | |||
1055 | .vmux = 8, | 1193 | .vmux = 8, |
1056 | }}, | 1194 | }}, |
1057 | }, | 1195 | }, |
1058 | [SAA7134_BOARD_NOVAC_PRIMETV7133] = { | 1196 | [SAA7134_BOARD_NOVAC_PRIMETV7133] = { |
1059 | /* toshii@netbsd.org */ | 1197 | /* toshii@netbsd.org */ |
1060 | .name = "Noval Prime TV 7133", | 1198 | .name = "Noval Prime TV 7133", |
1061 | .audio_clock = 0x00200000, | 1199 | .audio_clock = 0x00200000, |
1062 | .tuner_type = TUNER_ALPS_TSBH1_NTSC, | 1200 | .tuner_type = TUNER_ALPS_TSBH1_NTSC, |
1063 | .inputs = {{ | 1201 | .radio_type = UNSET, |
1064 | .name = name_comp1, | 1202 | .tuner_addr = ADDR_UNSET, |
1065 | .vmux = 3, | 1203 | .radio_addr = ADDR_UNSET, |
1066 | },{ | 1204 | .inputs = {{ |
1067 | .name = name_tv, | 1205 | .name = name_comp1, |
1068 | .vmux = 1, | 1206 | .vmux = 3, |
1069 | .amux = TV, | 1207 | },{ |
1070 | .tv = 1, | 1208 | .name = name_tv, |
1071 | },{ | 1209 | .vmux = 1, |
1072 | .name = name_svideo, | 1210 | .amux = TV, |
1073 | .vmux = 8, | 1211 | .tv = 1, |
1074 | }}, | 1212 | },{ |
1075 | }, | 1213 | .name = name_svideo, |
1214 | .vmux = 8, | ||
1215 | }}, | ||
1216 | }, | ||
1076 | [SAA7134_BOARD_AVERMEDIA_STUDIO_305] = { | 1217 | [SAA7134_BOARD_AVERMEDIA_STUDIO_305] = { |
1077 | .name = "AverMedia AverTV Studio 305", | 1218 | .name = "AverMedia AverTV Studio 305", |
1078 | .audio_clock = 0x00187de7, | 1219 | .audio_clock = 0x00187de7, |
1079 | .tuner_type = TUNER_PHILIPS_FM1256_IH3, | 1220 | .tuner_type = TUNER_PHILIPS_FM1256_IH3, |
1221 | .radio_type = UNSET, | ||
1222 | .tuner_addr = ADDR_UNSET, | ||
1223 | .radio_addr = ADDR_UNSET, | ||
1080 | .tda9887_conf = TDA9887_PRESENT, | 1224 | .tda9887_conf = TDA9887_PRESENT, |
1081 | .inputs = {{ | 1225 | .inputs = {{ |
1082 | .name = name_tv, | 1226 | .name = name_tv, |
@@ -1097,35 +1241,41 @@ struct saa7134_board saa7134_boards[] = { | |||
1097 | .amux = LINE2, | 1241 | .amux = LINE2, |
1098 | }}, | 1242 | }}, |
1099 | .radio = { | 1243 | .radio = { |
1100 | .name = name_radio, | 1244 | .name = name_radio, |
1101 | .amux = LINE2, | 1245 | .amux = LINE2, |
1102 | }, | 1246 | }, |
1103 | .mute = { | 1247 | .mute = { |
1104 | .name = name_mute, | 1248 | .name = name_mute, |
1105 | .amux = LINE1, | 1249 | .amux = LINE1, |
1106 | }, | 1250 | }, |
1107 | }, | 1251 | }, |
1108 | [SAA7133_BOARD_UPMOST_PURPLE_TV] = { | 1252 | [SAA7134_BOARD_UPMOST_PURPLE_TV] = { |
1109 | .name = "UPMOST PURPLE TV", | 1253 | .name = "UPMOST PURPLE TV", |
1110 | .audio_clock = 0x00187de7, | 1254 | .audio_clock = 0x00187de7, |
1111 | .tuner_type = TUNER_PHILIPS_FM1236_MK3, | 1255 | .tuner_type = TUNER_PHILIPS_FM1236_MK3, |
1112 | .tda9887_conf = TDA9887_PRESENT, | 1256 | .radio_type = UNSET, |
1113 | .inputs = {{ | 1257 | .tuner_addr = ADDR_UNSET, |
1114 | .name = name_tv, | 1258 | .radio_addr = ADDR_UNSET, |
1115 | .vmux = 7, | 1259 | .tda9887_conf = TDA9887_PRESENT, |
1116 | .amux = TV, | 1260 | .inputs = {{ |
1117 | .tv = 1, | 1261 | .name = name_tv, |
1118 | },{ | 1262 | .vmux = 7, |
1119 | .name = name_svideo, | 1263 | .amux = TV, |
1120 | .vmux = 7, | 1264 | .tv = 1, |
1121 | .amux = LINE1, | 1265 | },{ |
1122 | }}, | 1266 | .name = name_svideo, |
1267 | .vmux = 7, | ||
1268 | .amux = LINE1, | ||
1269 | }}, | ||
1123 | }, | 1270 | }, |
1124 | [SAA7134_BOARD_ITEMS_MTV005] = { | 1271 | [SAA7134_BOARD_ITEMS_MTV005] = { |
1125 | /* Norman Jonas <normanjonas@arcor.de> */ | 1272 | /* Norman Jonas <normanjonas@arcor.de> */ |
1126 | .name = "Items MuchTV Plus / IT-005", | 1273 | .name = "Items MuchTV Plus / IT-005", |
1127 | .audio_clock = 0x00187de7, | 1274 | .audio_clock = 0x00187de7, |
1128 | .tuner_type = TUNER_PHILIPS_PAL, | 1275 | .tuner_type = TUNER_PHILIPS_PAL, |
1276 | .radio_type = UNSET, | ||
1277 | .tuner_addr = ADDR_UNSET, | ||
1278 | .radio_addr = ADDR_UNSET, | ||
1129 | .inputs = {{ | 1279 | .inputs = {{ |
1130 | .name = name_tv, | 1280 | .name = name_tv, |
1131 | .vmux = 3, | 1281 | .vmux = 3, |
@@ -1149,27 +1299,30 @@ struct saa7134_board saa7134_boards[] = { | |||
1149 | .name = "Terratec Cinergy 200 TV", | 1299 | .name = "Terratec Cinergy 200 TV", |
1150 | .audio_clock = 0x00200000, | 1300 | .audio_clock = 0x00200000, |
1151 | .tuner_type = TUNER_PHILIPS_PAL, | 1301 | .tuner_type = TUNER_PHILIPS_PAL, |
1302 | .radio_type = UNSET, | ||
1303 | .tuner_addr = ADDR_UNSET, | ||
1304 | .radio_addr = ADDR_UNSET, | ||
1152 | .inputs = {{ | 1305 | .inputs = {{ |
1153 | .name = name_tv, | 1306 | .name = name_tv, |
1154 | .vmux = 1, | 1307 | .vmux = 1, |
1155 | .amux = LINE2, | 1308 | .amux = LINE2, |
1156 | .tv = 1, | 1309 | .tv = 1, |
1157 | },{ | 1310 | },{ |
1158 | .name = name_comp1, | 1311 | .name = name_comp1, |
1159 | .vmux = 4, | 1312 | .vmux = 4, |
1160 | .amux = LINE1, | 1313 | .amux = LINE1, |
1161 | },{ | 1314 | },{ |
1162 | .name = name_svideo, | 1315 | .name = name_svideo, |
1163 | .vmux = 8, | 1316 | .vmux = 8, |
1164 | .amux = LINE1, | 1317 | .amux = LINE1, |
1165 | },{ | 1318 | },{ |
1166 | .name = name_comp2, // CVideo over SVideo Connector | 1319 | .name = name_comp2, /* CVideo over SVideo Connector */ |
1167 | .vmux = 0, | 1320 | .vmux = 0, |
1168 | .amux = LINE1, | 1321 | .amux = LINE1, |
1169 | }}, | 1322 | }}, |
1170 | .mute = { | 1323 | .mute = { |
1171 | .name = name_mute, | 1324 | .name = name_mute, |
1172 | .amux = LINE2, | 1325 | .amux = LINE2, |
1173 | }, | 1326 | }, |
1174 | }, | 1327 | }, |
1175 | [SAA7134_BOARD_VIDEOMATE_TV_PVR] = { | 1328 | [SAA7134_BOARD_VIDEOMATE_TV_PVR] = { |
@@ -1177,84 +1330,96 @@ struct saa7134_board saa7134_boards[] = { | |||
1177 | .name = "Compro VideoMate TV PVR/FM", | 1330 | .name = "Compro VideoMate TV PVR/FM", |
1178 | .audio_clock = 0x00187de7, | 1331 | .audio_clock = 0x00187de7, |
1179 | .tuner_type = TUNER_PHILIPS_NTSC_M, | 1332 | .tuner_type = TUNER_PHILIPS_NTSC_M, |
1333 | .radio_type = UNSET, | ||
1334 | .tuner_addr = ADDR_UNSET, | ||
1335 | .radio_addr = ADDR_UNSET, | ||
1180 | .gpiomask = 0x808c0080, | 1336 | .gpiomask = 0x808c0080, |
1181 | .inputs = {{ | 1337 | .inputs = {{ |
1182 | .name = name_svideo, | 1338 | .name = name_svideo, |
1183 | .vmux = 8, | 1339 | .vmux = 8, |
1184 | .amux = LINE1, | 1340 | .amux = LINE1, |
1185 | .gpio = 0x00080, | 1341 | .gpio = 0x00080, |
1186 | },{ | 1342 | },{ |
1187 | .name = name_comp1, | 1343 | .name = name_comp1, |
1188 | .vmux = 3, | 1344 | .vmux = 3, |
1189 | .amux = LINE1, | 1345 | .amux = LINE1, |
1190 | .gpio = 0x00080, | 1346 | .gpio = 0x00080, |
1191 | },{ | 1347 | },{ |
1192 | .name = name_tv, | 1348 | .name = name_tv, |
1193 | .vmux = 1, | 1349 | .vmux = 1, |
1194 | .amux = LINE2_LEFT, | 1350 | .amux = LINE2_LEFT, |
1195 | .tv = 1, | 1351 | .tv = 1, |
1196 | .gpio = 0x00080, | 1352 | .gpio = 0x00080, |
1197 | }}, | 1353 | }}, |
1198 | .radio = { | 1354 | .radio = { |
1199 | .name = name_radio, | 1355 | .name = name_radio, |
1200 | .amux = LINE2, | 1356 | .amux = LINE2, |
1201 | .gpio = 0x80000, | 1357 | .gpio = 0x80000, |
1202 | }, | 1358 | }, |
1203 | .mute = { | 1359 | .mute = { |
1204 | .name = name_mute, | 1360 | .name = name_mute, |
1205 | .amux = LINE2, | 1361 | .amux = LINE2, |
1206 | .gpio = 0x40000, | 1362 | .gpio = 0x40000, |
1207 | }, | 1363 | }, |
1208 | }, | 1364 | }, |
1209 | [SAA7134_BOARD_SABRENT_SBTTVFM] = { | 1365 | [SAA7134_BOARD_SABRENT_SBTTVFM] = { |
1210 | /* Michael Rodriguez-Torrent <mrtorrent@asu.edu> */ | 1366 | /* Michael Rodriguez-Torrent <mrtorrent@asu.edu> */ |
1211 | .name = "Sabrent SBT-TVFM (saa7130)", | 1367 | .name = "Sabrent SBT-TVFM (saa7130)", |
1212 | .audio_clock = 0x00187de7, | 1368 | .audio_clock = 0x00187de7, |
1213 | .tuner_type = TUNER_PHILIPS_NTSC_M, | 1369 | .tuner_type = TUNER_PHILIPS_NTSC_M, |
1214 | .inputs = {{ | 1370 | .radio_type = UNSET, |
1371 | .tuner_addr = ADDR_UNSET, | ||
1372 | .radio_addr = ADDR_UNSET, | ||
1373 | .inputs = {{ | ||
1215 | .name = name_comp1, | 1374 | .name = name_comp1, |
1216 | .vmux = 1, | 1375 | .vmux = 1, |
1217 | .amux = LINE2, | 1376 | .amux = LINE2, |
1218 | },{ | 1377 | },{ |
1219 | .name = name_tv, | 1378 | .name = name_tv, |
1220 | .vmux = 3, | 1379 | .vmux = 3, |
1221 | .amux = LINE2, | 1380 | .amux = LINE2, |
1222 | .tv = 1, | 1381 | .tv = 1, |
1223 | },{ | 1382 | },{ |
1224 | .name = name_svideo, | 1383 | .name = name_svideo, |
1225 | .vmux = 8, | 1384 | .vmux = 8, |
1226 | .amux = LINE2, | 1385 | .amux = LINE2, |
1227 | }}, | 1386 | }}, |
1228 | .radio = { | 1387 | .radio = { |
1229 | .name = name_radio, | 1388 | .name = name_radio, |
1230 | .amux = LINE2, | 1389 | .amux = LINE2, |
1231 | }, | 1390 | }, |
1232 | }, | 1391 | }, |
1233 | [SAA7134_BOARD_ZOLID_XPERT_TV7134] = { | 1392 | [SAA7134_BOARD_ZOLID_XPERT_TV7134] = { |
1234 | /* Helge Jensen <helge.jensen@slog.dk> */ | 1393 | /* Helge Jensen <helge.jensen@slog.dk> */ |
1235 | .name = ":Zolid Xpert TV7134", | 1394 | .name = ":Zolid Xpert TV7134", |
1236 | .audio_clock = 0x00187de7, | 1395 | .audio_clock = 0x00187de7, |
1237 | .tuner_type = TUNER_PHILIPS_NTSC, | 1396 | .tuner_type = TUNER_PHILIPS_NTSC, |
1238 | .inputs = {{ | 1397 | .radio_type = UNSET, |
1398 | .tuner_addr = ADDR_UNSET, | ||
1399 | .radio_addr = ADDR_UNSET, | ||
1400 | .inputs = {{ | ||
1239 | .name = name_svideo, | 1401 | .name = name_svideo, |
1240 | .vmux = 8, | 1402 | .vmux = 8, |
1241 | .amux = LINE1, | 1403 | .amux = LINE1, |
1242 | },{ | 1404 | },{ |
1243 | .name = name_comp1, | 1405 | .name = name_comp1, |
1244 | .vmux = 3, | 1406 | .vmux = 3, |
1245 | .amux = LINE1, | 1407 | .amux = LINE1, |
1246 | },{ | 1408 | },{ |
1247 | .name = name_tv, | 1409 | .name = name_tv, |
1248 | .vmux = 1, | 1410 | .vmux = 1, |
1249 | .amux = LINE2, | 1411 | .amux = LINE2, |
1250 | .tv = 1, | 1412 | .tv = 1, |
1251 | }}, | 1413 | }}, |
1252 | }, | 1414 | }, |
1253 | [SAA7134_BOARD_EMPIRE_PCI_TV_RADIO_LE] = { | 1415 | [SAA7134_BOARD_EMPIRE_PCI_TV_RADIO_LE] = { |
1254 | /* "Matteo Az" <matte.az@nospam.libero.it> ;-) */ | 1416 | /* "Matteo Az" <matte.az@nospam.libero.it> ;-) */ |
1255 | .name = "Empire PCI TV-Radio LE", | 1417 | .name = "Empire PCI TV-Radio LE", |
1256 | .audio_clock = 0x00187de7, | 1418 | .audio_clock = 0x00187de7, |
1257 | .tuner_type = TUNER_PHILIPS_PAL, | 1419 | .tuner_type = TUNER_PHILIPS_PAL, |
1420 | .radio_type = UNSET, | ||
1421 | .tuner_addr = ADDR_UNSET, | ||
1422 | .radio_addr = ADDR_UNSET, | ||
1258 | .gpiomask = 0x4000, | 1423 | .gpiomask = 0x4000, |
1259 | .inputs = {{ | 1424 | .inputs = {{ |
1260 | .name = name_tv_mono, | 1425 | .name = name_tv_mono, |
@@ -1273,18 +1438,18 @@ struct saa7134_board saa7134_boards[] = { | |||
1273 | .amux = LINE1, | 1438 | .amux = LINE1, |
1274 | .gpio = 0x8000, | 1439 | .gpio = 0x8000, |
1275 | }}, | 1440 | }}, |
1276 | .radio = { | 1441 | .radio = { |
1277 | .name = name_radio, | 1442 | .name = name_radio, |
1278 | .amux = LINE1, | 1443 | .amux = LINE1, |
1279 | .gpio = 0x8000, | 1444 | .gpio = 0x8000, |
1280 | }, | 1445 | }, |
1281 | .mute = { | 1446 | .mute = { |
1282 | .name = name_mute, | 1447 | .name = name_mute, |
1283 | .amux = TV, | 1448 | .amux = TV, |
1284 | .gpio =0x8000, | 1449 | .gpio =0x8000, |
1285 | } | 1450 | } |
1286 | }, | 1451 | }, |
1287 | [SAA7134_BOARD_AVERMEDIA_STUDIO_307] = { | 1452 | [SAA7134_BOARD_AVERMEDIA_STUDIO_307] = { |
1288 | /* | 1453 | /* |
1289 | Nickolay V. Shmyrev <nshmyrev@yandex.ru> | 1454 | Nickolay V. Shmyrev <nshmyrev@yandex.ru> |
1290 | Lots of thanks to Andrey Zolotarev <zolotarev_andrey@mail.ru> | 1455 | Lots of thanks to Andrey Zolotarev <zolotarev_andrey@mail.ru> |
@@ -1292,6 +1457,9 @@ struct saa7134_board saa7134_boards[] = { | |||
1292 | .name = "Avermedia AVerTV Studio 307", | 1457 | .name = "Avermedia AVerTV Studio 307", |
1293 | .audio_clock = 0x00187de7, | 1458 | .audio_clock = 0x00187de7, |
1294 | .tuner_type = TUNER_PHILIPS_FM1256_IH3, | 1459 | .tuner_type = TUNER_PHILIPS_FM1256_IH3, |
1460 | .radio_type = UNSET, | ||
1461 | .tuner_addr = ADDR_UNSET, | ||
1462 | .radio_addr = ADDR_UNSET, | ||
1295 | .tda9887_conf = TDA9887_PRESENT, | 1463 | .tda9887_conf = TDA9887_PRESENT, |
1296 | .gpiomask = 0x03, | 1464 | .gpiomask = 0x03, |
1297 | .inputs = {{ | 1465 | .inputs = {{ |
@@ -1321,13 +1489,21 @@ struct saa7134_board saa7134_boards[] = { | |||
1321 | .amux = LINE1, | 1489 | .amux = LINE1, |
1322 | .gpio = 0x01, | 1490 | .gpio = 0x01, |
1323 | }, | 1491 | }, |
1324 | }, | 1492 | .mute = { |
1325 | [SAA7134_BOARD_AVERMEDIA_GO_007_FM] = { | 1493 | .name = name_mute, |
1494 | .amux = LINE1, | ||
1495 | .gpio = 0x00, | ||
1496 | }, | ||
1497 | }, | ||
1498 | [SAA7134_BOARD_AVERMEDIA_GO_007_FM] = { | ||
1326 | .name = "Avermedia AVerTV GO 007 FM", | 1499 | .name = "Avermedia AVerTV GO 007 FM", |
1327 | .audio_clock = 0x00187de7, | 1500 | .audio_clock = 0x00187de7, |
1328 | .tuner_type = TUNER_PHILIPS_TDA8290, | 1501 | .tuner_type = TUNER_PHILIPS_TDA8290, |
1502 | .radio_type = UNSET, | ||
1503 | .tuner_addr = ADDR_UNSET, | ||
1504 | .radio_addr = ADDR_UNSET, | ||
1329 | .gpiomask = 0x00300003, | 1505 | .gpiomask = 0x00300003, |
1330 | // .gpiomask = 0x8c240003, | 1506 | /* .gpiomask = 0x8c240003, */ |
1331 | .inputs = {{ | 1507 | .inputs = {{ |
1332 | .name = name_tv, | 1508 | .name = name_tv, |
1333 | .vmux = 1, | 1509 | .vmux = 1, |
@@ -1350,16 +1526,24 @@ struct saa7134_board saa7134_boards[] = { | |||
1350 | .amux = LINE1, | 1526 | .amux = LINE1, |
1351 | .gpio = 0x00300001, | 1527 | .gpio = 0x00300001, |
1352 | }, | 1528 | }, |
1353 | }, | 1529 | .mute = { |
1530 | .name = name_mute, | ||
1531 | .amux = TV, | ||
1532 | .gpio = 0x01, | ||
1533 | }, | ||
1534 | }, | ||
1354 | [SAA7134_BOARD_AVERMEDIA_CARDBUS] = { | 1535 | [SAA7134_BOARD_AVERMEDIA_CARDBUS] = { |
1355 | /* Jon Westgate <oryn@oryn.fsck.tv> */ | 1536 | /* Kees.Blom@cwi.nl */ |
1356 | .name = "AVerMedia Cardbus TV/Radio", | 1537 | .name = "AVerMedia Cardbus TV/Radio (E500)", |
1357 | .audio_clock = 0x00200000, | 1538 | .audio_clock = 0x187de7, |
1358 | .tuner_type = TUNER_PHILIPS_PAL, | 1539 | .tuner_type = TUNER_PHILIPS_TDA8290, |
1540 | .radio_type = UNSET, | ||
1541 | .tuner_addr = ADDR_UNSET, | ||
1542 | .radio_addr = ADDR_UNSET, | ||
1359 | .inputs = {{ | 1543 | .inputs = {{ |
1360 | .name = name_tv, | 1544 | .name = name_tv, |
1361 | .vmux = 1, | 1545 | .vmux = 1, |
1362 | .amux = LINE2, | 1546 | .amux = TV, |
1363 | .tv = 1, | 1547 | .tv = 1, |
1364 | },{ | 1548 | },{ |
1365 | .name = name_comp1, | 1549 | .name = name_comp1, |
@@ -1368,10 +1552,10 @@ struct saa7134_board saa7134_boards[] = { | |||
1368 | },{ | 1552 | },{ |
1369 | .name = name_svideo, | 1553 | .name = name_svideo, |
1370 | .vmux = 8, | 1554 | .vmux = 8, |
1371 | .amux = LINE2, | 1555 | .amux = LINE1, |
1372 | }}, | 1556 | }}, |
1373 | .radio = { | 1557 | .radio = { |
1374 | .name = name_radio, | 1558 | .name = name_radio, |
1375 | .amux = LINE1, | 1559 | .amux = LINE1, |
1376 | }, | 1560 | }, |
1377 | }, | 1561 | }, |
@@ -1379,119 +1563,134 @@ struct saa7134_board saa7134_boards[] = { | |||
1379 | .name = "Terratec Cinergy 400 mobile", | 1563 | .name = "Terratec Cinergy 400 mobile", |
1380 | .audio_clock = 0x187de7, | 1564 | .audio_clock = 0x187de7, |
1381 | .tuner_type = TUNER_ALPS_TSBE5_PAL, | 1565 | .tuner_type = TUNER_ALPS_TSBE5_PAL, |
1382 | .tda9887_conf = TDA9887_PRESENT, | 1566 | .radio_type = UNSET, |
1567 | .tuner_addr = ADDR_UNSET, | ||
1568 | .radio_addr = ADDR_UNSET, | ||
1569 | .tda9887_conf = TDA9887_PRESENT, | ||
1383 | .inputs = {{ | 1570 | .inputs = {{ |
1384 | .name = name_tv, | 1571 | .name = name_tv, |
1385 | .vmux = 1, | 1572 | .vmux = 1, |
1386 | .amux = TV, | 1573 | .amux = TV, |
1387 | .tv = 1, | 1574 | .tv = 1, |
1388 | },{ | 1575 | },{ |
1389 | .name = name_tv_mono, | 1576 | .name = name_tv_mono, |
1390 | .vmux = 1, | 1577 | .vmux = 1, |
1391 | .amux = LINE2, | 1578 | .amux = LINE2, |
1392 | .tv = 1, | 1579 | .tv = 1, |
1393 | },{ | 1580 | },{ |
1394 | .name = name_comp1, | 1581 | .name = name_comp1, |
1395 | .vmux = 3, | 1582 | .vmux = 3, |
1396 | .amux = LINE1, | 1583 | .amux = LINE1, |
1397 | },{ | 1584 | },{ |
1398 | .name = name_svideo, | 1585 | .name = name_svideo, |
1399 | .vmux = 8, | 1586 | .vmux = 8, |
1400 | .amux = LINE1, | 1587 | .amux = LINE1, |
1401 | }}, | 1588 | }}, |
1402 | }, | 1589 | }, |
1403 | [SAA7134_BOARD_CINERGY600_MK3] = { | 1590 | [SAA7134_BOARD_CINERGY600_MK3] = { |
1404 | .name = "Terratec Cinergy 600 TV MK3", | 1591 | .name = "Terratec Cinergy 600 TV MK3", |
1405 | .audio_clock = 0x00200000, | 1592 | .audio_clock = 0x00200000, |
1406 | .tuner_type = TUNER_PHILIPS_FM1216ME_MK3, | 1593 | .tuner_type = TUNER_PHILIPS_FM1216ME_MK3, |
1407 | .tda9887_conf = TDA9887_PRESENT, | 1594 | .radio_type = UNSET, |
1408 | .inputs = {{ | 1595 | .tuner_addr = ADDR_UNSET, |
1409 | .name = name_tv, | 1596 | .radio_addr = ADDR_UNSET, |
1410 | .vmux = 1, | 1597 | .tda9887_conf = TDA9887_PRESENT, |
1411 | .amux = TV, | 1598 | .inputs = {{ |
1412 | .tv = 1, | 1599 | .name = name_tv, |
1413 | },{ | 1600 | .vmux = 1, |
1414 | .name = name_comp1, | 1601 | .amux = TV, |
1415 | .vmux = 4, | 1602 | .tv = 1, |
1416 | .amux = LINE1, | 1603 | },{ |
1417 | },{ | 1604 | .name = name_comp1, |
1418 | .name = name_svideo, | 1605 | .vmux = 4, |
1419 | .vmux = 8, | 1606 | .amux = LINE1, |
1420 | .amux = LINE1, | 1607 | },{ |
1421 | },{ | 1608 | .name = name_svideo, |
1422 | .name = name_comp2, // CVideo over SVideo Connector | 1609 | .vmux = 8, |
1423 | .vmux = 0, | 1610 | .amux = LINE1, |
1424 | .amux = LINE1, | 1611 | },{ |
1425 | }}, | 1612 | .name = name_comp2, /* CVideo over SVideo Connector */ |
1613 | .vmux = 0, | ||
1614 | .amux = LINE1, | ||
1615 | }}, | ||
1426 | .radio = { | 1616 | .radio = { |
1427 | .name = name_radio, | 1617 | .name = name_radio, |
1428 | .amux = LINE2, | 1618 | .amux = LINE2, |
1429 | }, | 1619 | }, |
1430 | }, | 1620 | }, |
1431 | [SAA7134_BOARD_VIDEOMATE_GOLD_PLUS] = { | 1621 | [SAA7134_BOARD_VIDEOMATE_GOLD_PLUS] = { |
1432 | /* Dylan Walkden <dylan_walkden@hotmail.com> */ | 1622 | /* Dylan Walkden <dylan_walkden@hotmail.com> */ |
1433 | .name = "Compro VideoMate Gold+ Pal", | 1623 | .name = "Compro VideoMate Gold+ Pal", |
1434 | .audio_clock = 0x00187de7, | 1624 | .audio_clock = 0x00187de7, |
1435 | .tuner_type = TUNER_PHILIPS_PAL, | 1625 | .tuner_type = TUNER_PHILIPS_PAL, |
1436 | .gpiomask = 0x1ce780, | 1626 | .radio_type = UNSET, |
1437 | .inputs = {{ | 1627 | .tuner_addr = ADDR_UNSET, |
1438 | .name = name_svideo, | 1628 | .radio_addr = ADDR_UNSET, |
1439 | .vmux = 0, // CVideo over SVideo Connector - ok? | 1629 | .gpiomask = 0x1ce780, |
1440 | .amux = LINE1, | 1630 | .inputs = {{ |
1441 | .gpio = 0x008080, | 1631 | .name = name_svideo, |
1442 | },{ | 1632 | .vmux = 0, /* CVideo over SVideo Connector - ok? */ |
1443 | .name = name_comp1, | 1633 | .amux = LINE1, |
1444 | .vmux = 3, | 1634 | .gpio = 0x008080, |
1445 | .amux = LINE1, | 1635 | },{ |
1446 | .gpio = 0x008080, | 1636 | .name = name_comp1, |
1447 | },{ | 1637 | .vmux = 3, |
1448 | .name = name_tv, | 1638 | .amux = LINE1, |
1449 | .vmux = 1, | 1639 | .gpio = 0x008080, |
1450 | .amux = TV, | 1640 | },{ |
1451 | .tv = 1, | 1641 | .name = name_tv, |
1452 | .gpio = 0x008080, | 1642 | .vmux = 1, |
1453 | }}, | 1643 | .amux = TV, |
1454 | .radio = { | 1644 | .tv = 1, |
1455 | .name = name_radio, | 1645 | .gpio = 0x008080, |
1456 | .amux = LINE2, | 1646 | }}, |
1457 | .gpio = 0x80000, | 1647 | .radio = { |
1458 | }, | 1648 | .name = name_radio, |
1459 | .mute = { | 1649 | .amux = LINE2, |
1460 | .name = name_mute, | 1650 | .gpio = 0x80000, |
1461 | .amux = LINE2, | 1651 | }, |
1462 | .gpio = 0x0c8000, | 1652 | .mute = { |
1463 | }, | 1653 | .name = name_mute, |
1464 | }, | 1654 | .amux = LINE2, |
1655 | .gpio = 0x0c8000, | ||
1656 | }, | ||
1657 | }, | ||
1465 | [SAA7134_BOARD_PINNACLE_300I_DVBT_PAL] = { | 1658 | [SAA7134_BOARD_PINNACLE_300I_DVBT_PAL] = { |
1466 | .name = "Pinnacle PCTV 300i DVB-T + PAL", | 1659 | .name = "Pinnacle PCTV 300i DVB-T + PAL", |
1467 | .audio_clock = 0x00187de7, | 1660 | .audio_clock = 0x00187de7, |
1468 | .tuner_type = TUNER_MT2032, | 1661 | .tuner_type = TUNER_MT2032, |
1469 | .tda9887_conf = TDA9887_PRESENT | TDA9887_INTERCARRIER, | 1662 | .radio_type = UNSET, |
1663 | .tuner_addr = ADDR_UNSET, | ||
1664 | .radio_addr = ADDR_UNSET, | ||
1665 | .tda9887_conf = TDA9887_PRESENT | TDA9887_INTERCARRIER, | ||
1470 | .mpeg = SAA7134_MPEG_DVB, | 1666 | .mpeg = SAA7134_MPEG_DVB, |
1471 | .inputs = {{ | 1667 | .inputs = {{ |
1472 | .name = name_tv, | 1668 | .name = name_tv, |
1473 | .vmux = 3, | 1669 | .vmux = 3, |
1474 | .amux = TV, | 1670 | .amux = TV, |
1475 | .tv = 1, | 1671 | .tv = 1, |
1476 | },{ | 1672 | },{ |
1477 | .name = name_comp1, | 1673 | .name = name_comp1, |
1478 | .vmux = 0, | 1674 | .vmux = 0, |
1479 | .amux = LINE2, | 1675 | .amux = LINE2, |
1480 | },{ | 1676 | },{ |
1481 | .name = name_comp2, | 1677 | .name = name_comp2, |
1482 | .vmux = 1, | 1678 | .vmux = 1, |
1483 | .amux = LINE2, | 1679 | .amux = LINE2, |
1484 | },{ | 1680 | },{ |
1485 | .name = name_svideo, | 1681 | .name = name_svideo, |
1486 | .vmux = 8, | 1682 | .vmux = 8, |
1487 | .amux = LINE2, | 1683 | .amux = LINE2, |
1488 | }}, | 1684 | }}, |
1489 | }, | 1685 | }, |
1490 | [SAA7134_BOARD_PROVIDEO_PV952] = { | 1686 | [SAA7134_BOARD_PROVIDEO_PV952] = { |
1491 | /* andreas.kretschmer@web.de */ | 1687 | /* andreas.kretschmer@web.de */ |
1492 | .name = "ProVideo PV952", | 1688 | .name = "ProVideo PV952", |
1493 | .audio_clock = 0x00187de7, | 1689 | .audio_clock = 0x00187de7, |
1494 | .tuner_type = TUNER_PHILIPS_FM1216ME_MK3, | 1690 | .tuner_type = TUNER_PHILIPS_FM1216ME_MK3, |
1691 | .radio_type = UNSET, | ||
1692 | .tuner_addr = ADDR_UNSET, | ||
1693 | .radio_addr = ADDR_UNSET, | ||
1495 | .tda9887_conf = TDA9887_PRESENT, | 1694 | .tda9887_conf = TDA9887_PRESENT, |
1496 | .inputs = {{ | 1695 | .inputs = {{ |
1497 | .name = name_comp1, | 1696 | .name = name_comp1, |
@@ -1515,10 +1714,13 @@ struct saa7134_board saa7134_boards[] = { | |||
1515 | }, | 1714 | }, |
1516 | [SAA7134_BOARD_AVERMEDIA_305] = { | 1715 | [SAA7134_BOARD_AVERMEDIA_305] = { |
1517 | /* much like the "studio" version but without radio | 1716 | /* much like the "studio" version but without radio |
1518 | * and another tuner (sirspiritus@yandex.ru) */ | 1717 | * and another tuner (sirspiritus@yandex.ru) */ |
1519 | .name = "AverMedia AverTV/305", | 1718 | .name = "AverMedia AverTV/305", |
1520 | .audio_clock = 0x00187de7, | 1719 | .audio_clock = 0x00187de7, |
1521 | .tuner_type = TUNER_PHILIPS_FQ1216ME, | 1720 | .tuner_type = TUNER_PHILIPS_FQ1216ME, |
1721 | .radio_type = UNSET, | ||
1722 | .tuner_addr = ADDR_UNSET, | ||
1723 | .radio_addr = ADDR_UNSET, | ||
1522 | .tda9887_conf = TDA9887_PRESENT, | 1724 | .tda9887_conf = TDA9887_PRESENT, |
1523 | .inputs = {{ | 1725 | .inputs = {{ |
1524 | .name = name_tv, | 1726 | .name = name_tv, |
@@ -1539,115 +1741,268 @@ struct saa7134_board saa7134_boards[] = { | |||
1539 | .amux = LINE2, | 1741 | .amux = LINE2, |
1540 | }}, | 1742 | }}, |
1541 | .mute = { | 1743 | .mute = { |
1542 | .name = name_mute, | 1744 | .name = name_mute, |
1543 | .amux = LINE1, | 1745 | .amux = LINE1, |
1544 | }, | 1746 | }, |
1545 | }, | 1747 | }, |
1546 | [SAA7134_BOARD_FLYDVBTDUO] = { | 1748 | [SAA7134_BOARD_FLYDVBTDUO] = { |
1547 | /* LifeView FlyDVB-T DUO */ | 1749 | /* LifeView FlyDVB-T DUO */ |
1548 | /* "Nico Sabbi <nsabbi@tiscali.it> */ | 1750 | /* "Nico Sabbi <nsabbi@tiscali.it> Hartmut Hackmann hartmut.hackmann@t-online.de*/ |
1549 | .name = "LifeView FlyDVB-T DUO", | 1751 | .name = "LifeView FlyDVB-T DUO", |
1550 | .audio_clock = 0x00200000, | 1752 | .audio_clock = 0x00200000, |
1551 | .tuner_type = TUNER_PHILIPS_TDA8290, | 1753 | .tuner_type = TUNER_PHILIPS_TDA8290, |
1552 | // .gpiomask = 0xe000, | 1754 | .radio_type = UNSET, |
1755 | .tuner_addr = ADDR_UNSET, | ||
1756 | .radio_addr = ADDR_UNSET, | ||
1757 | .mpeg = SAA7134_MPEG_DVB, | ||
1553 | .inputs = {{ | 1758 | .inputs = {{ |
1554 | .name = name_tv, | 1759 | .name = name_tv, |
1555 | .vmux = 1, | 1760 | .vmux = 1, |
1556 | .amux = TV, | 1761 | .amux = TV, |
1557 | // .gpio = 0x0000, | ||
1558 | .tv = 1, | 1762 | .tv = 1, |
1559 | },{ | 1763 | },{ |
1560 | .name = name_comp1, /* Composite signal on S-Video input */ | 1764 | .name = name_comp1, /* Composite signal on S-Video input */ |
1561 | .vmux = 0, | 1765 | .vmux = 0, |
1562 | .amux = LINE2, | 1766 | .amux = LINE2, |
1563 | // .gpio = 0x4000, | ||
1564 | },{ | 1767 | },{ |
1565 | .name = name_comp2, /* Composite input */ | 1768 | .name = name_comp2, /* Composite input */ |
1566 | .vmux = 3, | 1769 | .vmux = 3, |
1567 | .amux = LINE2, | 1770 | .amux = LINE2, |
1568 | // .gpio = 0x4000, | ||
1569 | },{ | 1771 | },{ |
1570 | .name = name_svideo, /* S-Video signal on S-Video input */ | 1772 | .name = name_svideo, /* S-Video signal on S-Video input */ |
1571 | .vmux = 8, | 1773 | .vmux = 8, |
1572 | .amux = LINE2, | 1774 | .amux = LINE2, |
1573 | // .gpio = 0x4000, | ||
1574 | }}, | 1775 | }}, |
1575 | }, | 1776 | }, |
1576 | [SAA7134_BOARD_AVERMEDIA_307] = { | 1777 | [SAA7134_BOARD_PHILIPS_TOUGH] = { |
1577 | /* | 1778 | .name = "Philips TOUGH DVB-T reference design", |
1578 | Davydov Vladimir <vladimir@iqmedia.com> | 1779 | .tuner_type = TUNER_ABSENT, |
1579 | */ | 1780 | .audio_clock = 0x00187de7, |
1580 | .name = "Avermedia AVerTV 307", | 1781 | .radio_type = UNSET, |
1581 | .audio_clock = 0x00187de7, | 1782 | .tuner_addr = ADDR_UNSET, |
1582 | .tuner_type = TUNER_PHILIPS_FQ1216ME, | 1783 | .radio_addr = ADDR_UNSET, |
1583 | .tda9887_conf = TDA9887_PRESENT, | 1784 | .mpeg = SAA7134_MPEG_DVB, |
1584 | .inputs = {{ | 1785 | .inputs = {{ |
1585 | .name = name_tv, | 1786 | .name = name_comp1, |
1586 | .vmux = 1, | 1787 | .vmux = 0, |
1587 | .amux = TV, | 1788 | .amux = LINE1, |
1588 | .tv = 1, | 1789 | },{ |
1589 | },{ | 1790 | .name = name_svideo, |
1590 | .name = name_comp1, | 1791 | .vmux = 8, |
1591 | .vmux = 0, | 1792 | .amux = LINE1, |
1592 | .amux = LINE1, | 1793 | }}, |
1593 | },{ | 1794 | }, |
1594 | .name = name_comp2, | 1795 | [SAA7134_BOARD_AVERMEDIA_307] = { |
1595 | .vmux = 3, | 1796 | /* |
1596 | .amux = LINE1, | 1797 | Davydov Vladimir <vladimir@iqmedia.com> |
1597 | },{ | 1798 | */ |
1598 | .name = name_svideo, | 1799 | .name = "Avermedia AVerTV 307", |
1599 | .vmux = 8, | 1800 | .audio_clock = 0x00187de7, |
1600 | .amux = LINE1, | 1801 | .tuner_type = TUNER_PHILIPS_FQ1216ME, |
1601 | }}, | 1802 | .radio_type = UNSET, |
1602 | }, | 1803 | .tuner_addr = ADDR_UNSET, |
1804 | .radio_addr = ADDR_UNSET, | ||
1805 | .tda9887_conf = TDA9887_PRESENT, | ||
1806 | .inputs = {{ | ||
1807 | .name = name_tv, | ||
1808 | .vmux = 1, | ||
1809 | .amux = TV, | ||
1810 | .tv = 1, | ||
1811 | },{ | ||
1812 | .name = name_comp1, | ||
1813 | .vmux = 0, | ||
1814 | .amux = LINE1, | ||
1815 | },{ | ||
1816 | .name = name_comp2, | ||
1817 | .vmux = 3, | ||
1818 | .amux = LINE1, | ||
1819 | },{ | ||
1820 | .name = name_svideo, | ||
1821 | .vmux = 8, | ||
1822 | .amux = LINE1, | ||
1823 | }}, | ||
1824 | }, | ||
1603 | [SAA7134_BOARD_ADS_INSTANT_TV] = { | 1825 | [SAA7134_BOARD_ADS_INSTANT_TV] = { |
1604 | .name = "ADS Tech Instant TV (saa7135)", | 1826 | .name = "ADS Tech Instant TV (saa7135)", |
1827 | .audio_clock = 0x00187de7, | ||
1828 | .tuner_type = TUNER_PHILIPS_TDA8290, | ||
1829 | .radio_type = UNSET, | ||
1830 | .tuner_addr = ADDR_UNSET, | ||
1831 | .radio_addr = ADDR_UNSET, | ||
1832 | .inputs = {{ | ||
1833 | .name = name_tv, | ||
1834 | .vmux = 1, | ||
1835 | .amux = TV, | ||
1836 | .tv = 1, | ||
1837 | },{ | ||
1838 | .name = name_comp1, | ||
1839 | .vmux = 3, | ||
1840 | .amux = LINE2, | ||
1841 | },{ | ||
1842 | .name = name_svideo, | ||
1843 | .vmux = 8, | ||
1844 | .amux = LINE2, | ||
1845 | }}, | ||
1846 | }, | ||
1847 | [SAA7134_BOARD_KWORLD_VSTREAM_XPERT] = { | ||
1848 | .name = "Kworld/Tevion V-Stream Xpert TV PVR7134", | ||
1605 | .audio_clock = 0x00187de7, | 1849 | .audio_clock = 0x00187de7, |
1606 | .tuner_type = TUNER_PHILIPS_TDA8290, | 1850 | .tuner_type = TUNER_PHILIPS_PAL_I, |
1607 | .inputs = {{ | 1851 | .radio_type = UNSET, |
1608 | .name = name_tv, | 1852 | .tuner_addr = ADDR_UNSET, |
1609 | .vmux = 1, | 1853 | .radio_addr = ADDR_UNSET, |
1610 | .amux = TV, | 1854 | .gpiomask = 0x0700, |
1611 | .tv = 1, | 1855 | .inputs = {{ |
1612 | },{ | 1856 | .name = name_tv, |
1613 | .name = name_comp1, | 1857 | .vmux = 1, |
1614 | .vmux = 3, | 1858 | .amux = TV, |
1615 | .amux = LINE2, | 1859 | .tv = 1, |
1616 | },{ | 1860 | .gpio = 0x000, |
1617 | .name = name_svideo, | 1861 | },{ |
1618 | .vmux = 8, | 1862 | .name = name_comp1, |
1619 | .amux = LINE2, | 1863 | .vmux = 3, |
1620 | }}, | 1864 | .amux = LINE1, |
1621 | }, | 1865 | .gpio = 0x200, /* gpio by DScaler */ |
1622 | [SAA7134_BOARD_KWORLD_VSTREAM_XPERT] = { | 1866 | },{ |
1623 | .name = "Kworld/Tevion V-Stream Xpert TV PVR7134", | 1867 | .name = name_svideo, |
1624 | .audio_clock = 0x00187de7, | 1868 | .vmux = 0, |
1625 | .tuner_type = TUNER_PHILIPS_PAL_I, | 1869 | .amux = LINE1, |
1626 | .gpiomask = 0x0700, | 1870 | .gpio = 0x200, |
1627 | .inputs = {{ | 1871 | }}, |
1628 | .name = name_tv, | 1872 | .radio = { |
1629 | .vmux = 1, | 1873 | .name = name_radio, |
1630 | .amux = TV, | 1874 | .amux = LINE1, |
1631 | .tv = 1, | 1875 | .gpio = 0x100, |
1632 | .gpio = 0x000, | 1876 | }, |
1633 | },{ | 1877 | .mute = { |
1634 | .name = name_comp1, | 1878 | .name = name_mute, |
1635 | .vmux = 3, | 1879 | .amux = TV, |
1636 | .amux = LINE1, | 1880 | .gpio = 0x000, |
1637 | .gpio = 0x200, //gpio by DScaler | 1881 | }, |
1638 | },{ | 1882 | }, |
1639 | .name = name_svideo, | 1883 | [SAA7134_BOARD_THYPHOON_DVBT_DUO_CARDBUS] = { |
1640 | .vmux = 0, | 1884 | .name = "Typhoon DVB-T Duo Digital/Analog Cardbus", |
1641 | .amux = LINE1, | 1885 | .audio_clock = 0x00200000, |
1642 | .gpio = 0x200, | 1886 | .tuner_type = TUNER_PHILIPS_TDA8290, |
1643 | }}, | 1887 | .radio_type = UNSET, |
1644 | .radio = { | 1888 | .tuner_addr = ADDR_UNSET, |
1645 | .name = name_radio, | 1889 | .radio_addr = ADDR_UNSET, |
1646 | .amux = LINE1, | 1890 | .mpeg = SAA7134_MPEG_DVB, |
1647 | .gpio = 0x100, | 1891 | /* .gpiomask = 0xe000, */ |
1648 | }, | 1892 | .inputs = {{ |
1649 | }, | 1893 | .name = name_tv, |
1650 | }; | 1894 | .vmux = 1, |
1895 | .amux = TV, | ||
1896 | /* .gpio = 0x0000, */ | ||
1897 | .tv = 1, | ||
1898 | },{ | ||
1899 | .name = name_comp1, /* Composite signal on S-Video input */ | ||
1900 | .vmux = 0, | ||
1901 | .amux = LINE2, | ||
1902 | /* .gpio = 0x4000, */ | ||
1903 | },{ | ||
1904 | .name = name_comp2, /* Composite input */ | ||
1905 | .vmux = 3, | ||
1906 | .amux = LINE2, | ||
1907 | /* .gpio = 0x4000, */ | ||
1908 | },{ | ||
1909 | .name = name_svideo, /* S-Video signal on S-Video input */ | ||
1910 | .vmux = 8, | ||
1911 | .amux = LINE2, | ||
1912 | /* .gpio = 0x4000, */ | ||
1913 | }}, | ||
1914 | .radio = { | ||
1915 | .name = name_radio, | ||
1916 | .amux = LINE2, | ||
1917 | }, | ||
1918 | .mute = { | ||
1919 | .name = name_mute, | ||
1920 | .amux = LINE1, | ||
1921 | }, | ||
1922 | }, | ||
1923 | [SAA7134_BOARD_VIDEOMATE_TV_GOLD_PLUSII] = { | ||
1924 | .name = "Compro VideoMate TV Gold+II", | ||
1925 | .audio_clock = 0x002187de7, | ||
1926 | .tuner_type = TUNER_LG_PAL_NEW_TAPC, | ||
1927 | .radio_type = TUNER_TEA5767, | ||
1928 | .tuner_addr = 0x63, | ||
1929 | .radio_addr = 0x60, | ||
1930 | .gpiomask = 0x8c1880, | ||
1931 | .inputs = {{ | ||
1932 | .name = name_svideo, | ||
1933 | .vmux = 0, | ||
1934 | .amux = LINE1, | ||
1935 | .gpio = 0x800800, | ||
1936 | },{ | ||
1937 | .name = name_comp1, | ||
1938 | .vmux = 3, | ||
1939 | .amux = LINE1, | ||
1940 | .gpio = 0x801000, | ||
1941 | },{ | ||
1942 | .name = name_tv, | ||
1943 | .vmux = 1, | ||
1944 | .amux = TV, | ||
1945 | .tv = 1, | ||
1946 | .gpio = 0x800000, | ||
1947 | }}, | ||
1948 | .radio = { | ||
1949 | .name = name_radio, | ||
1950 | .amux = TV, | ||
1951 | .gpio = 0x880000, | ||
1952 | }, | ||
1953 | .mute = { | ||
1954 | .name = name_mute, | ||
1955 | .amux = LINE2, | ||
1956 | .gpio = 0x840000, | ||
1957 | }, | ||
1958 | }, | ||
1959 | [SAA7134_BOARD_KWORLD_XPERT] = { | ||
1960 | /* | ||
1961 | FIXME: | ||
1962 | - Remote control doesn't initialize properly. | ||
1963 | - Audio volume starts muted, | ||
1964 | then gradually increases after channel change. | ||
1965 | - Overlay scaling problems (application error?) | ||
1966 | - Composite S-Video untested. | ||
1967 | From: Konrad Rzepecki <hannibal@megapolis.pl> | ||
1968 | */ | ||
1969 | .name = "Kworld Xpert TV PVR7134", | ||
1970 | .audio_clock = 0x00187de7, | ||
1971 | .tuner_type = TUNER_TENA_9533_DI, | ||
1972 | .radio_type = TUNER_TEA5767, | ||
1973 | .tuner_addr = 0x61, | ||
1974 | .radio_addr = 0x60, | ||
1975 | .gpiomask = 0x0700, | ||
1976 | .inputs = {{ | ||
1977 | .name = name_tv, | ||
1978 | .vmux = 1, | ||
1979 | .amux = TV, | ||
1980 | .tv = 1, | ||
1981 | .gpio = 0x000, | ||
1982 | },{ | ||
1983 | .name = name_comp1, | ||
1984 | .vmux = 3, | ||
1985 | .amux = LINE1, | ||
1986 | .gpio = 0x200, /* gpio by DScaler */ | ||
1987 | },{ | ||
1988 | .name = name_svideo, | ||
1989 | .vmux = 0, | ||
1990 | .amux = LINE1, | ||
1991 | .gpio = 0x200, | ||
1992 | }}, | ||
1993 | .radio = { | ||
1994 | .name = name_radio, | ||
1995 | .amux = LINE1, | ||
1996 | .gpio = 0x100, | ||
1997 | }, | ||
1998 | .mute = { | ||
1999 | .name = name_mute, | ||
2000 | .amux = TV, | ||
2001 | .gpio = 0x000, | ||
2002 | }, | ||
2003 | }, | ||
2004 | }; | ||
2005 | |||
1651 | 2006 | ||
1652 | const unsigned int saa7134_bcount = ARRAY_SIZE(saa7134_boards); | 2007 | const unsigned int saa7134_bcount = ARRAY_SIZE(saa7134_boards); |
1653 | 2008 | ||
@@ -1661,13 +2016,13 @@ struct pci_device_id saa7134_pci_tbl[] = { | |||
1661 | .subvendor = PCI_VENDOR_ID_PHILIPS, | 2016 | .subvendor = PCI_VENDOR_ID_PHILIPS, |
1662 | .subdevice = 0x2001, | 2017 | .subdevice = 0x2001, |
1663 | .driver_data = SAA7134_BOARD_PROTEUS_PRO, | 2018 | .driver_data = SAA7134_BOARD_PROTEUS_PRO, |
1664 | },{ | 2019 | },{ |
1665 | .vendor = PCI_VENDOR_ID_PHILIPS, | 2020 | .vendor = PCI_VENDOR_ID_PHILIPS, |
1666 | .device = PCI_DEVICE_ID_PHILIPS_SAA7133, | 2021 | .device = PCI_DEVICE_ID_PHILIPS_SAA7133, |
1667 | .subvendor = PCI_VENDOR_ID_PHILIPS, | 2022 | .subvendor = PCI_VENDOR_ID_PHILIPS, |
1668 | .subdevice = 0x2001, | 2023 | .subdevice = 0x2001, |
1669 | .driver_data = SAA7134_BOARD_PROTEUS_PRO, | 2024 | .driver_data = SAA7134_BOARD_PROTEUS_PRO, |
1670 | },{ | 2025 | },{ |
1671 | .vendor = PCI_VENDOR_ID_PHILIPS, | 2026 | .vendor = PCI_VENDOR_ID_PHILIPS, |
1672 | .device = PCI_DEVICE_ID_PHILIPS_SAA7134, | 2027 | .device = PCI_DEVICE_ID_PHILIPS_SAA7134, |
1673 | .subvendor = PCI_VENDOR_ID_PHILIPS, | 2028 | .subvendor = PCI_VENDOR_ID_PHILIPS, |
@@ -1676,70 +2031,70 @@ struct pci_device_id saa7134_pci_tbl[] = { | |||
1676 | },{ | 2031 | },{ |
1677 | .vendor = PCI_VENDOR_ID_PHILIPS, | 2032 | .vendor = PCI_VENDOR_ID_PHILIPS, |
1678 | .device = PCI_DEVICE_ID_PHILIPS_SAA7134, | 2033 | .device = PCI_DEVICE_ID_PHILIPS_SAA7134, |
1679 | .subvendor = 0x1131, | 2034 | .subvendor = 0x1131, |
1680 | .subdevice = 0x4e85, | 2035 | .subdevice = 0x4e85, |
1681 | .driver_data = SAA7134_BOARD_MONSTERTV, | 2036 | .driver_data = SAA7134_BOARD_MONSTERTV, |
1682 | },{ | 2037 | },{ |
1683 | .vendor = PCI_VENDOR_ID_PHILIPS, | 2038 | .vendor = PCI_VENDOR_ID_PHILIPS, |
1684 | .device = PCI_DEVICE_ID_PHILIPS_SAA7134, | 2039 | .device = PCI_DEVICE_ID_PHILIPS_SAA7134, |
1685 | .subvendor = 0x153B, | 2040 | .subvendor = 0x153B, |
1686 | .subdevice = 0x1142, | 2041 | .subdevice = 0x1142, |
1687 | .driver_data = SAA7134_BOARD_CINERGY400, | 2042 | .driver_data = SAA7134_BOARD_CINERGY400, |
1688 | },{ | 2043 | },{ |
1689 | .vendor = PCI_VENDOR_ID_PHILIPS, | 2044 | .vendor = PCI_VENDOR_ID_PHILIPS, |
1690 | .device = PCI_DEVICE_ID_PHILIPS_SAA7134, | 2045 | .device = PCI_DEVICE_ID_PHILIPS_SAA7134, |
1691 | .subvendor = 0x153B, | 2046 | .subvendor = 0x153B, |
1692 | .subdevice = 0x1143, | 2047 | .subdevice = 0x1143, |
1693 | .driver_data = SAA7134_BOARD_CINERGY600, | 2048 | .driver_data = SAA7134_BOARD_CINERGY600, |
1694 | },{ | 2049 | },{ |
1695 | .vendor = PCI_VENDOR_ID_PHILIPS, | 2050 | .vendor = PCI_VENDOR_ID_PHILIPS, |
1696 | .device = PCI_DEVICE_ID_PHILIPS_SAA7134, | 2051 | .device = PCI_DEVICE_ID_PHILIPS_SAA7134, |
1697 | .subvendor = 0x153B, | 2052 | .subvendor = 0x153B, |
1698 | .subdevice = 0x1158, | 2053 | .subdevice = 0x1158, |
1699 | .driver_data = SAA7134_BOARD_CINERGY600_MK3, | 2054 | .driver_data = SAA7134_BOARD_CINERGY600_MK3, |
1700 | },{ | 2055 | },{ |
1701 | .vendor = PCI_VENDOR_ID_PHILIPS, | 2056 | .vendor = PCI_VENDOR_ID_PHILIPS, |
1702 | .device = PCI_DEVICE_ID_PHILIPS_SAA7133, | 2057 | .device = PCI_DEVICE_ID_PHILIPS_SAA7133, |
1703 | .subvendor = 0x153b, | 2058 | .subvendor = 0x153b, |
1704 | .subdevice = 0x1162, | 2059 | .subdevice = 0x1162, |
1705 | .driver_data = SAA7134_BOARD_CINERGY400_CARDBUS, | 2060 | .driver_data = SAA7134_BOARD_CINERGY400_CARDBUS, |
1706 | },{ | 2061 | },{ |
1707 | .vendor = PCI_VENDOR_ID_PHILIPS, | 2062 | .vendor = PCI_VENDOR_ID_PHILIPS, |
1708 | .device = PCI_DEVICE_ID_PHILIPS_SAA7134, | 2063 | .device = PCI_DEVICE_ID_PHILIPS_SAA7134, |
1709 | .subvendor = 0x5168, | 2064 | .subvendor = 0x5168, |
1710 | .subdevice = 0x0138, | 2065 | .subdevice = 0x0138, |
1711 | .driver_data = SAA7134_BOARD_FLYVIDEO3000, | 2066 | .driver_data = SAA7134_BOARD_FLYVIDEO3000, |
1712 | },{ | 2067 | },{ |
1713 | .vendor = PCI_VENDOR_ID_PHILIPS, | 2068 | .vendor = PCI_VENDOR_ID_PHILIPS, |
1714 | .device = PCI_DEVICE_ID_PHILIPS_SAA7134, | 2069 | .device = PCI_DEVICE_ID_PHILIPS_SAA7134, |
1715 | .subvendor = 0x4e42, //"Typhoon PCI Capture TV Card" Art.No. 50673 | 2070 | .subvendor = 0x4e42, /* "Typhoon PCI Capture TV Card" Art.No. 50673 */ |
1716 | .subdevice = 0x0138, | 2071 | .subdevice = 0x0138, |
1717 | .driver_data = SAA7134_BOARD_FLYVIDEO3000, | 2072 | .driver_data = SAA7134_BOARD_FLYVIDEO3000, |
1718 | },{ | 2073 | },{ |
1719 | .vendor = PCI_VENDOR_ID_PHILIPS, | 2074 | .vendor = PCI_VENDOR_ID_PHILIPS, |
1720 | .device = PCI_DEVICE_ID_PHILIPS_SAA7130, | 2075 | .device = PCI_DEVICE_ID_PHILIPS_SAA7130, |
1721 | .subvendor = 0x5168, | 2076 | .subvendor = 0x5168, |
1722 | .subdevice = 0x0138, | 2077 | .subdevice = 0x0138, |
1723 | .driver_data = SAA7134_BOARD_FLYVIDEO2000, | 2078 | .driver_data = SAA7134_BOARD_FLYVIDEO2000, |
1724 | },{ | 2079 | },{ |
1725 | .vendor = PCI_VENDOR_ID_PHILIPS, | 2080 | .vendor = PCI_VENDOR_ID_PHILIPS, |
1726 | .device = PCI_DEVICE_ID_PHILIPS_SAA7135, | 2081 | .device = PCI_DEVICE_ID_PHILIPS_SAA7133, |
1727 | .subvendor = 0x5168, | 2082 | .subvendor = 0x5168, |
1728 | .subdevice = 0x0212, /* minipci, LR212 */ | 2083 | .subdevice = 0x0212, /* minipci, LR212 */ |
1729 | .driver_data = SAA7134_BOARD_FLYTVPLATINUM_MINI, | 2084 | .driver_data = SAA7134_BOARD_FLYTVPLATINUM_MINI, |
1730 | },{ | 2085 | },{ |
1731 | .vendor = PCI_VENDOR_ID_PHILIPS, | 2086 | .vendor = PCI_VENDOR_ID_PHILIPS, |
1732 | .device = PCI_DEVICE_ID_PHILIPS_SAA7133, | 2087 | .device = PCI_DEVICE_ID_PHILIPS_SAA7133, |
1733 | .subvendor = 0x5168, /* Animation Technologies (LifeView) */ | 2088 | .subvendor = 0x5168, /* Animation Technologies (LifeView) */ |
1734 | .subdevice = 0x0214, /* Standard PCI, LR214WF */ | 2089 | .subdevice = 0x0214, /* Standard PCI, LR214WF */ |
1735 | .driver_data = SAA7134_BOARD_FLYTVPLATINUM_FM, | 2090 | .driver_data = SAA7134_BOARD_FLYTVPLATINUM_FM, |
1736 | },{ | 2091 | },{ |
1737 | .vendor = PCI_VENDOR_ID_PHILIPS, | 2092 | .vendor = PCI_VENDOR_ID_PHILIPS, |
1738 | .device = PCI_DEVICE_ID_PHILIPS_SAA7133, | 2093 | .device = PCI_DEVICE_ID_PHILIPS_SAA7133, |
1739 | .subvendor = 0x1489, /* KYE */ | 2094 | .subvendor = 0x1489, /* KYE */ |
1740 | .subdevice = 0x0214, /* Genius VideoWonder ProTV */ | 2095 | .subdevice = 0x0214, /* Genius VideoWonder ProTV */ |
1741 | .driver_data = SAA7134_BOARD_FLYTVPLATINUM_FM, /* is an LR214WF actually */ | 2096 | .driver_data = SAA7134_BOARD_FLYTVPLATINUM_FM, /* is an LR214WF actually */ |
1742 | },{ | 2097 | },{ |
1743 | .vendor = PCI_VENDOR_ID_PHILIPS, | 2098 | .vendor = PCI_VENDOR_ID_PHILIPS, |
1744 | .device = PCI_DEVICE_ID_PHILIPS_SAA7134, | 2099 | .device = PCI_DEVICE_ID_PHILIPS_SAA7134, |
1745 | .subvendor = 0x16be, | 2100 | .subvendor = 0x16be, |
@@ -1758,36 +2113,36 @@ struct pci_device_id saa7134_pci_tbl[] = { | |||
1758 | .subdevice = 0x226b, | 2113 | .subdevice = 0x226b, |
1759 | .driver_data = SAA7134_BOARD_ELSA_500TV, | 2114 | .driver_data = SAA7134_BOARD_ELSA_500TV, |
1760 | },{ | 2115 | },{ |
1761 | .vendor = PCI_VENDOR_ID_PHILIPS, | 2116 | .vendor = PCI_VENDOR_ID_PHILIPS, |
1762 | .device = PCI_DEVICE_ID_PHILIPS_SAA7134, | 2117 | .device = PCI_DEVICE_ID_PHILIPS_SAA7134, |
1763 | .subvendor = PCI_VENDOR_ID_ASUSTEK, | 2118 | .subvendor = PCI_VENDOR_ID_ASUSTEK, |
1764 | .subdevice = 0x4842, | 2119 | .subdevice = 0x4842, |
1765 | .driver_data = SAA7134_BOARD_ASUSTeK_TVFM7134, | 2120 | .driver_data = SAA7134_BOARD_ASUSTeK_TVFM7134, |
1766 | },{ | 2121 | },{ |
1767 | .vendor = PCI_VENDOR_ID_PHILIPS, | 2122 | .vendor = PCI_VENDOR_ID_PHILIPS, |
1768 | .device = PCI_DEVICE_ID_PHILIPS_SAA7135, | 2123 | .device = PCI_DEVICE_ID_PHILIPS_SAA7133, |
1769 | .subvendor = PCI_VENDOR_ID_ASUSTEK, | 2124 | .subvendor = PCI_VENDOR_ID_ASUSTEK, |
1770 | .subdevice = 0x4845, | 2125 | .subdevice = 0x4845, |
1771 | .driver_data = SAA7135_BOARD_ASUSTeK_TVFM7135, | 2126 | .driver_data = SAA7134_BOARD_ASUSTeK_TVFM7135, |
1772 | },{ | 2127 | },{ |
1773 | .vendor = PCI_VENDOR_ID_PHILIPS, | 2128 | .vendor = PCI_VENDOR_ID_PHILIPS, |
1774 | .device = PCI_DEVICE_ID_PHILIPS_SAA7134, | 2129 | .device = PCI_DEVICE_ID_PHILIPS_SAA7134, |
1775 | .subvendor = PCI_VENDOR_ID_ASUSTEK, | 2130 | .subvendor = PCI_VENDOR_ID_ASUSTEK, |
1776 | .subdevice = 0x4830, | 2131 | .subdevice = 0x4830, |
1777 | .driver_data = SAA7134_BOARD_ASUSTeK_TVFM7134, | 2132 | .driver_data = SAA7134_BOARD_ASUSTeK_TVFM7134, |
1778 | },{ | 2133 | },{ |
1779 | .vendor = PCI_VENDOR_ID_PHILIPS, | 2134 | .vendor = PCI_VENDOR_ID_PHILIPS, |
1780 | .device = PCI_DEVICE_ID_PHILIPS_SAA7133, | 2135 | .device = PCI_DEVICE_ID_PHILIPS_SAA7133, |
1781 | .subvendor = PCI_VENDOR_ID_ASUSTEK, | 2136 | .subvendor = PCI_VENDOR_ID_ASUSTEK, |
1782 | .subdevice = 0x4843, | 2137 | .subdevice = 0x4843, |
1783 | .driver_data = SAA7134_BOARD_ASUSTEK_TVFM7133, | 2138 | .driver_data = SAA7134_BOARD_ASUSTEK_TVFM7133, |
2139 | },{ | ||
2140 | .vendor = PCI_VENDOR_ID_PHILIPS, | ||
2141 | .device = PCI_DEVICE_ID_PHILIPS_SAA7134, | ||
2142 | .subvendor = PCI_VENDOR_ID_ASUSTEK, | ||
2143 | .subdevice = 0x4840, | ||
2144 | .driver_data = SAA7134_BOARD_ASUSTeK_TVFM7134, | ||
1784 | },{ | 2145 | },{ |
1785 | .vendor = PCI_VENDOR_ID_PHILIPS, | ||
1786 | .device = PCI_DEVICE_ID_PHILIPS_SAA7134, | ||
1787 | .subvendor = PCI_VENDOR_ID_ASUSTEK, | ||
1788 | .subdevice = 0x4840, | ||
1789 | .driver_data = SAA7134_BOARD_ASUSTeK_TVFM7134, | ||
1790 | },{ | ||
1791 | .vendor = PCI_VENDOR_ID_PHILIPS, | 2146 | .vendor = PCI_VENDOR_ID_PHILIPS, |
1792 | .device = PCI_DEVICE_ID_PHILIPS_SAA7134, | 2147 | .device = PCI_DEVICE_ID_PHILIPS_SAA7134, |
1793 | .subvendor = PCI_VENDOR_ID_PHILIPS, | 2148 | .subvendor = PCI_VENDOR_ID_PHILIPS, |
@@ -1808,118 +2163,118 @@ struct pci_device_id saa7134_pci_tbl[] = { | |||
1808 | },{ | 2163 | },{ |
1809 | .vendor = PCI_VENDOR_ID_PHILIPS, | 2164 | .vendor = PCI_VENDOR_ID_PHILIPS, |
1810 | .device = PCI_DEVICE_ID_PHILIPS_SAA7134, | 2165 | .device = PCI_DEVICE_ID_PHILIPS_SAA7134, |
1811 | .subvendor = 0x1131, | 2166 | .subvendor = 0x1131, |
1812 | .subdevice = 0x7133, | 2167 | .subdevice = 0x7133, |
1813 | .driver_data = SAA7134_BOARD_VA1000POWER, | 2168 | .driver_data = SAA7134_BOARD_VA1000POWER, |
1814 | },{ | 2169 | },{ |
1815 | .vendor = PCI_VENDOR_ID_PHILIPS, | 2170 | .vendor = PCI_VENDOR_ID_PHILIPS, |
1816 | .device = PCI_DEVICE_ID_PHILIPS_SAA7130, | 2171 | .device = PCI_DEVICE_ID_PHILIPS_SAA7130, |
1817 | .subvendor = PCI_VENDOR_ID_PHILIPS, | 2172 | .subvendor = PCI_VENDOR_ID_PHILIPS, |
1818 | .subdevice = 0x2001, | 2173 | .subdevice = 0x2001, |
1819 | .driver_data = SAA7134_BOARD_10MOONSTVMASTER, | 2174 | .driver_data = SAA7134_BOARD_10MOONSTVMASTER, |
1820 | },{ | 2175 | },{ |
1821 | .vendor = PCI_VENDOR_ID_PHILIPS, | 2176 | .vendor = PCI_VENDOR_ID_PHILIPS, |
1822 | .device = PCI_DEVICE_ID_PHILIPS_SAA7133, | 2177 | .device = PCI_DEVICE_ID_PHILIPS_SAA7133, |
1823 | .subvendor = 0x185b, | 2178 | .subvendor = 0x185b, |
1824 | .subdevice = 0xc100, | 2179 | .subdevice = 0xc100, |
1825 | .driver_data = SAA7134_BOARD_VIDEOMATE_TV, | 2180 | .driver_data = SAA7134_BOARD_VIDEOMATE_TV, |
1826 | },{ | 2181 | },{ |
1827 | .vendor = PCI_VENDOR_ID_PHILIPS, | 2182 | .vendor = PCI_VENDOR_ID_PHILIPS, |
1828 | .device = PCI_DEVICE_ID_PHILIPS_SAA7133, | 2183 | .device = PCI_DEVICE_ID_PHILIPS_SAA7133, |
1829 | .subvendor = 0x185b, | 2184 | .subvendor = 0x185b, |
1830 | .subdevice = 0xc100, | 2185 | .subdevice = 0xc100, |
1831 | .driver_data = SAA7134_BOARD_VIDEOMATE_TV_GOLD_PLUS, | 2186 | .driver_data = SAA7134_BOARD_VIDEOMATE_TV_GOLD_PLUS, |
1832 | },{ | 2187 | },{ |
1833 | .vendor = PCI_VENDOR_ID_PHILIPS, | 2188 | .vendor = PCI_VENDOR_ID_PHILIPS, |
1834 | .device = PCI_DEVICE_ID_PHILIPS_SAA7130, | 2189 | .device = PCI_DEVICE_ID_PHILIPS_SAA7130, |
1835 | .subvendor = PCI_VENDOR_ID_MATROX, | 2190 | .subvendor = PCI_VENDOR_ID_MATROX, |
1836 | .subdevice = 0x48d0, | 2191 | .subdevice = 0x48d0, |
1837 | .driver_data = SAA7134_BOARD_CRONOS_PLUS, | 2192 | .driver_data = SAA7134_BOARD_CRONOS_PLUS, |
1838 | },{ | 2193 | },{ |
1839 | .vendor = PCI_VENDOR_ID_PHILIPS, | 2194 | .vendor = PCI_VENDOR_ID_PHILIPS, |
1840 | .device = PCI_DEVICE_ID_PHILIPS_SAA7134, | 2195 | .device = PCI_DEVICE_ID_PHILIPS_SAA7134, |
1841 | .subvendor = 0x1461, /* Avermedia Technologies Inc */ | 2196 | .subvendor = 0x1461, /* Avermedia Technologies Inc */ |
1842 | .subdevice = 0xa70b, | 2197 | .subdevice = 0xa70b, |
1843 | .driver_data = SAA7134_BOARD_MD2819, | 2198 | .driver_data = SAA7134_BOARD_MD2819, |
1844 | },{ | 2199 | },{ |
1845 | .vendor = PCI_VENDOR_ID_PHILIPS, | 2200 | .vendor = PCI_VENDOR_ID_PHILIPS, |
1846 | .device = PCI_DEVICE_ID_PHILIPS_SAA7130, | 2201 | .device = PCI_DEVICE_ID_PHILIPS_SAA7130, |
1847 | .subvendor = 0x1461, /* Avermedia Technologies Inc */ | 2202 | .subvendor = 0x1461, /* Avermedia Technologies Inc */ |
1848 | .subdevice = 0x2115, | 2203 | .subdevice = 0x2115, |
1849 | .driver_data = SAA7134_BOARD_AVERMEDIA_STUDIO_305, | 2204 | .driver_data = SAA7134_BOARD_AVERMEDIA_STUDIO_305, |
1850 | },{ | 2205 | },{ |
1851 | .vendor = PCI_VENDOR_ID_PHILIPS, | 2206 | .vendor = PCI_VENDOR_ID_PHILIPS, |
1852 | .device = PCI_DEVICE_ID_PHILIPS_SAA7130, | 2207 | .device = PCI_DEVICE_ID_PHILIPS_SAA7130, |
1853 | .subvendor = 0x1461, /* Avermedia Technologies Inc */ | 2208 | .subvendor = 0x1461, /* Avermedia Technologies Inc */ |
1854 | .subdevice = 0x2108, | 2209 | .subdevice = 0x2108, |
1855 | .driver_data = SAA7134_BOARD_AVERMEDIA_305, | 2210 | .driver_data = SAA7134_BOARD_AVERMEDIA_305, |
1856 | },{ | 2211 | },{ |
1857 | .vendor = PCI_VENDOR_ID_PHILIPS, | 2212 | .vendor = PCI_VENDOR_ID_PHILIPS, |
1858 | .device = PCI_DEVICE_ID_PHILIPS_SAA7130, | 2213 | .device = PCI_DEVICE_ID_PHILIPS_SAA7130, |
1859 | .subvendor = 0x1461, /* Avermedia Technologies Inc */ | 2214 | .subvendor = 0x1461, /* Avermedia Technologies Inc */ |
1860 | .subdevice = 0x10ff, | 2215 | .subdevice = 0x10ff, |
1861 | .driver_data = SAA7134_BOARD_AVERMEDIA_DVD_EZMAKER, | 2216 | .driver_data = SAA7134_BOARD_AVERMEDIA_DVD_EZMAKER, |
1862 | },{ | 2217 | },{ |
1863 | /* AVerMedia CardBus */ | 2218 | /* AVerMedia CardBus */ |
1864 | .vendor = PCI_VENDOR_ID_PHILIPS, | 2219 | .vendor = PCI_VENDOR_ID_PHILIPS, |
1865 | .device = PCI_DEVICE_ID_PHILIPS_SAA7134, | 2220 | .device = PCI_DEVICE_ID_PHILIPS_SAA7134, |
1866 | .subvendor = 0x1461, /* Avermedia Technologies Inc */ | 2221 | .subvendor = 0x1461, /* Avermedia Technologies Inc */ |
1867 | .subdevice = 0xd6ee, | 2222 | .subdevice = 0xd6ee, |
1868 | .driver_data = SAA7134_BOARD_AVERMEDIA_CARDBUS, | 2223 | .driver_data = SAA7134_BOARD_AVERMEDIA_CARDBUS, |
1869 | },{ | 2224 | },{ |
1870 | /* TransGear 3000TV */ | 2225 | /* TransGear 3000TV */ |
1871 | .vendor = PCI_VENDOR_ID_PHILIPS, | 2226 | .vendor = PCI_VENDOR_ID_PHILIPS, |
1872 | .device = PCI_DEVICE_ID_PHILIPS_SAA7130, | 2227 | .device = PCI_DEVICE_ID_PHILIPS_SAA7130, |
1873 | .subvendor = 0x1461, /* Avermedia Technologies Inc */ | 2228 | .subvendor = 0x1461, /* Avermedia Technologies Inc */ |
1874 | .subdevice = 0x050c, | 2229 | .subdevice = 0x050c, |
1875 | .driver_data = SAA7134_BOARD_TG3000TV, | 2230 | .driver_data = SAA7134_BOARD_TG3000TV, |
1876 | },{ | 2231 | },{ |
1877 | .vendor = PCI_VENDOR_ID_PHILIPS, | ||
1878 | .device = PCI_DEVICE_ID_PHILIPS_SAA7134, | ||
1879 | .subvendor = 0x11bd, | ||
1880 | .subdevice = 0x002b, | ||
1881 | .driver_data = SAA7134_BOARD_PINNACLE_PCTV_STEREO, | ||
1882 | },{ | ||
1883 | .vendor = PCI_VENDOR_ID_PHILIPS, | ||
1884 | .device = PCI_DEVICE_ID_PHILIPS_SAA7134, | ||
1885 | .subvendor = 0x11bd, | ||
1886 | .subdevice = 0x002d, | ||
1887 | .driver_data = SAA7134_BOARD_PINNACLE_300I_DVBT_PAL, | ||
1888 | },{ | ||
1889 | .vendor = PCI_VENDOR_ID_PHILIPS, | ||
1890 | .device = PCI_DEVICE_ID_PHILIPS_SAA7134, | ||
1891 | .subvendor = 0x1019, | ||
1892 | .subdevice = 0x4cb4, | ||
1893 | .driver_data = SAA7134_BOARD_ECS_TVP3XP, | ||
1894 | },{ | ||
1895 | .vendor = PCI_VENDOR_ID_PHILIPS, | ||
1896 | .device = PCI_DEVICE_ID_PHILIPS_SAA7133, | ||
1897 | .subvendor = 0x1019, | ||
1898 | .subdevice = 0x4cb5, | ||
1899 | .driver_data = SAA7134_BOARD_ECS_TVP3XP_4CB5, | ||
1900 | },{ | ||
1901 | .vendor = PCI_VENDOR_ID_PHILIPS, | 2232 | .vendor = PCI_VENDOR_ID_PHILIPS, |
1902 | .device = PCI_DEVICE_ID_PHILIPS_SAA7133, | 2233 | .device = PCI_DEVICE_ID_PHILIPS_SAA7134, |
1903 | .subvendor = 0x12ab, | 2234 | .subvendor = 0x11bd, |
1904 | .subdevice = 0x0800, | 2235 | .subdevice = 0x002b, |
1905 | .driver_data = SAA7133_BOARD_UPMOST_PURPLE_TV, | 2236 | .driver_data = SAA7134_BOARD_PINNACLE_PCTV_STEREO, |
2237 | },{ | ||
2238 | .vendor = PCI_VENDOR_ID_PHILIPS, | ||
2239 | .device = PCI_DEVICE_ID_PHILIPS_SAA7134, | ||
2240 | .subvendor = 0x11bd, | ||
2241 | .subdevice = 0x002d, | ||
2242 | .driver_data = SAA7134_BOARD_PINNACLE_300I_DVBT_PAL, | ||
2243 | },{ | ||
2244 | .vendor = PCI_VENDOR_ID_PHILIPS, | ||
2245 | .device = PCI_DEVICE_ID_PHILIPS_SAA7134, | ||
2246 | .subvendor = 0x1019, | ||
2247 | .subdevice = 0x4cb4, | ||
2248 | .driver_data = SAA7134_BOARD_ECS_TVP3XP, | ||
2249 | },{ | ||
2250 | .vendor = PCI_VENDOR_ID_PHILIPS, | ||
2251 | .device = PCI_DEVICE_ID_PHILIPS_SAA7133, | ||
2252 | .subvendor = 0x1019, | ||
2253 | .subdevice = 0x4cb5, | ||
2254 | .driver_data = SAA7134_BOARD_ECS_TVP3XP_4CB5, | ||
2255 | },{ | ||
2256 | .vendor = PCI_VENDOR_ID_PHILIPS, | ||
2257 | .device = PCI_DEVICE_ID_PHILIPS_SAA7133, | ||
2258 | .subvendor = 0x12ab, | ||
2259 | .subdevice = 0x0800, | ||
2260 | .driver_data = SAA7134_BOARD_UPMOST_PURPLE_TV, | ||
1906 | },{ | 2261 | },{ |
1907 | .vendor = PCI_VENDOR_ID_PHILIPS, | 2262 | .vendor = PCI_VENDOR_ID_PHILIPS, |
1908 | .device = PCI_DEVICE_ID_PHILIPS_SAA7130, | 2263 | .device = PCI_DEVICE_ID_PHILIPS_SAA7130, |
1909 | .subvendor = 0x153B, | 2264 | .subvendor = 0x153B, |
1910 | .subdevice = 0x1152, | 2265 | .subdevice = 0x1152, |
1911 | .driver_data = SAA7134_BOARD_CINERGY200, | 2266 | .driver_data = SAA7134_BOARD_CINERGY200, |
1912 | },{ | 2267 | },{ |
1913 | .vendor = PCI_VENDOR_ID_PHILIPS, | 2268 | .vendor = PCI_VENDOR_ID_PHILIPS, |
1914 | .device = PCI_DEVICE_ID_PHILIPS_SAA7130, | 2269 | .device = PCI_DEVICE_ID_PHILIPS_SAA7130, |
1915 | .subvendor = 0x185b, | 2270 | .subvendor = 0x185b, |
1916 | .subdevice = 0xc100, | 2271 | .subdevice = 0xc100, |
1917 | .driver_data = SAA7134_BOARD_VIDEOMATE_TV_PVR, | 2272 | .driver_data = SAA7134_BOARD_VIDEOMATE_TV_PVR, |
1918 | },{ | 2273 | },{ |
1919 | .vendor = PCI_VENDOR_ID_PHILIPS, | 2274 | .vendor = PCI_VENDOR_ID_PHILIPS, |
1920 | .device = PCI_DEVICE_ID_PHILIPS_SAA7130, | 2275 | .device = PCI_DEVICE_ID_PHILIPS_SAA7130, |
1921 | .subvendor = 0x1131, | 2276 | .subvendor = 0x1131, |
1922 | .subdevice = 0, | 2277 | .subdevice = 0, |
1923 | .driver_data = SAA7134_BOARD_SABRENT_SBTTVFM, | 2278 | .driver_data = SAA7134_BOARD_SABRENT_SBTTVFM, |
1924 | },{ | 2279 | },{ |
1925 | .vendor = PCI_VENDOR_ID_PHILIPS, | 2280 | .vendor = PCI_VENDOR_ID_PHILIPS, |
@@ -1939,18 +2294,24 @@ struct pci_device_id saa7134_pci_tbl[] = { | |||
1939 | .subvendor = 0x185b, | 2294 | .subvendor = 0x185b, |
1940 | .subdevice = 0xc200, | 2295 | .subdevice = 0xc200, |
1941 | .driver_data = SAA7134_BOARD_VIDEOMATE_GOLD_PLUS, | 2296 | .driver_data = SAA7134_BOARD_VIDEOMATE_GOLD_PLUS, |
1942 | },{ | 2297 | },{ |
1943 | .vendor = PCI_VENDOR_ID_PHILIPS, | 2298 | .vendor = PCI_VENDOR_ID_PHILIPS, |
1944 | .device = PCI_DEVICE_ID_PHILIPS_SAA7134, | 2299 | .device = PCI_DEVICE_ID_PHILIPS_SAA7134, |
1945 | .subvendor = 0x1540, | 2300 | .subvendor = 0x1540, |
1946 | .subdevice = 0x9524, | 2301 | .subdevice = 0x9524, |
1947 | .driver_data = SAA7134_BOARD_PROVIDEO_PV952, | 2302 | .driver_data = SAA7134_BOARD_PROVIDEO_PV952, |
1948 | 2303 | ||
1949 | },{ | 2304 | },{ |
1950 | .vendor = PCI_VENDOR_ID_PHILIPS, | 2305 | .vendor = PCI_VENDOR_ID_PHILIPS, |
1951 | .device = PCI_DEVICE_ID_PHILIPS_SAA7133, | 2306 | .device = PCI_DEVICE_ID_PHILIPS_SAA7133, |
1952 | .subvendor = 0x5168, | 2307 | .subvendor = 0x5168, |
1953 | .subdevice = 0x0306, | 2308 | .subdevice = 0x0502, /* Cardbus version */ |
2309 | .driver_data = SAA7134_BOARD_FLYDVBTDUO, | ||
2310 | },{ | ||
2311 | .vendor = PCI_VENDOR_ID_PHILIPS, | ||
2312 | .device = PCI_DEVICE_ID_PHILIPS_SAA7133, | ||
2313 | .subvendor = 0x5168, | ||
2314 | .subdevice = 0x0306, /* PCI version */ | ||
1954 | .driver_data = SAA7134_BOARD_FLYDVBTDUO, | 2315 | .driver_data = SAA7134_BOARD_FLYDVBTDUO, |
1955 | },{ | 2316 | },{ |
1956 | .vendor = PCI_VENDOR_ID_PHILIPS, | 2317 | .vendor = PCI_VENDOR_ID_PHILIPS, |
@@ -1959,31 +2320,44 @@ struct pci_device_id saa7134_pci_tbl[] = { | |||
1959 | .subdevice = 0xf31f, | 2320 | .subdevice = 0xf31f, |
1960 | .driver_data = SAA7134_BOARD_AVERMEDIA_GO_007_FM, | 2321 | .driver_data = SAA7134_BOARD_AVERMEDIA_GO_007_FM, |
1961 | 2322 | ||
1962 | },{ | 2323 | },{ |
1963 | .vendor = PCI_VENDOR_ID_PHILIPS, | 2324 | .vendor = PCI_VENDOR_ID_PHILIPS, |
1964 | .device = PCI_DEVICE_ID_PHILIPS_SAA7135, | 2325 | .device = PCI_DEVICE_ID_PHILIPS_SAA7130, |
2326 | .subvendor = PCI_VENDOR_ID_PHILIPS, | ||
2327 | .subdevice = 0x2004, | ||
2328 | .driver_data = SAA7134_BOARD_PHILIPS_TOUGH, | ||
2329 | },{ | ||
2330 | .vendor = PCI_VENDOR_ID_PHILIPS, | ||
2331 | .device = PCI_DEVICE_ID_PHILIPS_SAA7133, | ||
1965 | .subvendor = 0x1421, | 2332 | .subvendor = 0x1421, |
1966 | .subdevice = 0x0350, /* PCI version */ | 2333 | .subdevice = 0x0350, /* PCI version */ |
1967 | .driver_data = SAA7134_BOARD_ADS_INSTANT_TV, | 2334 | .driver_data = SAA7134_BOARD_ADS_INSTANT_TV, |
1968 | 2335 | ||
1969 | },{ | 2336 | },{ |
1970 | .vendor = PCI_VENDOR_ID_PHILIPS, | 2337 | .vendor = PCI_VENDOR_ID_PHILIPS, |
1971 | .device = PCI_DEVICE_ID_PHILIPS_SAA7135, | 2338 | .device = PCI_DEVICE_ID_PHILIPS_SAA7133, |
1972 | .subvendor = 0x1421, | 2339 | .subvendor = 0x1421, |
1973 | .subdevice = 0x0370, /* cardbus version */ | 2340 | .subdevice = 0x0370, /* cardbus version */ |
1974 | .driver_data = SAA7134_BOARD_ADS_INSTANT_TV, | 2341 | .driver_data = SAA7134_BOARD_ADS_INSTANT_TV, |
1975 | 2342 | ||
1976 | },{ | 2343 | },{ /* Typhoon DVB-T Duo Digital/Analog Cardbus */ |
2344 | .vendor = PCI_VENDOR_ID_PHILIPS, | ||
2345 | .device = PCI_DEVICE_ID_PHILIPS_SAA7133, | ||
2346 | .subvendor = 0x4e42, | ||
2347 | .subdevice = 0x0502, | ||
2348 | .driver_data = SAA7134_BOARD_THYPHOON_DVBT_DUO_CARDBUS, | ||
2349 | |||
2350 | },{ | ||
1977 | /* --- boards without eeprom + subsystem ID --- */ | 2351 | /* --- boards without eeprom + subsystem ID --- */ |
1978 | .vendor = PCI_VENDOR_ID_PHILIPS, | 2352 | .vendor = PCI_VENDOR_ID_PHILIPS, |
1979 | .device = PCI_DEVICE_ID_PHILIPS_SAA7134, | 2353 | .device = PCI_DEVICE_ID_PHILIPS_SAA7134, |
1980 | .subvendor = PCI_VENDOR_ID_PHILIPS, | 2354 | .subvendor = PCI_VENDOR_ID_PHILIPS, |
1981 | .subdevice = 0, | 2355 | .subdevice = 0, |
1982 | .driver_data = SAA7134_BOARD_NOAUTO, | 2356 | .driver_data = SAA7134_BOARD_NOAUTO, |
1983 | },{ | 2357 | },{ |
1984 | .vendor = PCI_VENDOR_ID_PHILIPS, | 2358 | .vendor = PCI_VENDOR_ID_PHILIPS, |
1985 | .device = PCI_DEVICE_ID_PHILIPS_SAA7130, | 2359 | .device = PCI_DEVICE_ID_PHILIPS_SAA7130, |
1986 | .subvendor = PCI_VENDOR_ID_PHILIPS, | 2360 | .subvendor = PCI_VENDOR_ID_PHILIPS, |
1987 | .subdevice = 0, | 2361 | .subdevice = 0, |
1988 | .driver_data = SAA7134_BOARD_NOAUTO, | 2362 | .driver_data = SAA7134_BOARD_NOAUTO, |
1989 | },{ | 2363 | },{ |
@@ -1991,26 +2365,26 @@ struct pci_device_id saa7134_pci_tbl[] = { | |||
1991 | /* --- default catch --- */ | 2365 | /* --- default catch --- */ |
1992 | .vendor = PCI_VENDOR_ID_PHILIPS, | 2366 | .vendor = PCI_VENDOR_ID_PHILIPS, |
1993 | .device = PCI_DEVICE_ID_PHILIPS_SAA7130, | 2367 | .device = PCI_DEVICE_ID_PHILIPS_SAA7130, |
1994 | .subvendor = PCI_ANY_ID, | 2368 | .subvendor = PCI_ANY_ID, |
1995 | .subdevice = PCI_ANY_ID, | 2369 | .subdevice = PCI_ANY_ID, |
1996 | .driver_data = SAA7134_BOARD_UNKNOWN, | 2370 | .driver_data = SAA7134_BOARD_UNKNOWN, |
1997 | },{ | 2371 | },{ |
1998 | .vendor = PCI_VENDOR_ID_PHILIPS, | 2372 | .vendor = PCI_VENDOR_ID_PHILIPS, |
1999 | .device = PCI_DEVICE_ID_PHILIPS_SAA7133, | 2373 | .device = PCI_DEVICE_ID_PHILIPS_SAA7133, |
2000 | .subvendor = PCI_ANY_ID, | 2374 | .subvendor = PCI_ANY_ID, |
2001 | .subdevice = PCI_ANY_ID, | 2375 | .subdevice = PCI_ANY_ID, |
2002 | .driver_data = SAA7134_BOARD_UNKNOWN, | 2376 | .driver_data = SAA7134_BOARD_UNKNOWN, |
2003 | },{ | 2377 | },{ |
2004 | .vendor = PCI_VENDOR_ID_PHILIPS, | 2378 | .vendor = PCI_VENDOR_ID_PHILIPS, |
2005 | .device = PCI_DEVICE_ID_PHILIPS_SAA7134, | 2379 | .device = PCI_DEVICE_ID_PHILIPS_SAA7134, |
2006 | .subvendor = PCI_ANY_ID, | 2380 | .subvendor = PCI_ANY_ID, |
2007 | .subdevice = PCI_ANY_ID, | 2381 | .subdevice = PCI_ANY_ID, |
2008 | .driver_data = SAA7134_BOARD_UNKNOWN, | 2382 | .driver_data = SAA7134_BOARD_UNKNOWN, |
2009 | },{ | 2383 | },{ |
2010 | .vendor = PCI_VENDOR_ID_PHILIPS, | 2384 | .vendor = PCI_VENDOR_ID_PHILIPS, |
2011 | .device = PCI_DEVICE_ID_PHILIPS_SAA7135, | 2385 | .device = PCI_DEVICE_ID_PHILIPS_SAA7135, |
2012 | .subvendor = PCI_ANY_ID, | 2386 | .subvendor = PCI_ANY_ID, |
2013 | .subdevice = PCI_ANY_ID, | 2387 | .subdevice = PCI_ANY_ID, |
2014 | .driver_data = SAA7134_BOARD_UNKNOWN, | 2388 | .driver_data = SAA7134_BOARD_UNKNOWN, |
2015 | },{ | 2389 | },{ |
2016 | /* --- end of list --- */ | 2390 | /* --- end of list --- */ |
@@ -2021,46 +2395,9 @@ MODULE_DEVICE_TABLE(pci, saa7134_pci_tbl); | |||
2021 | /* ----------------------------------------------------------- */ | 2395 | /* ----------------------------------------------------------- */ |
2022 | /* flyvideo tweaks */ | 2396 | /* flyvideo tweaks */ |
2023 | 2397 | ||
2024 | #if 0 | ||
2025 | static struct { | ||
2026 | char *model; | ||
2027 | int tuner_type; | ||
2028 | } fly_list[0x20] = { | ||
2029 | /* default catch ... */ | ||
2030 | [ 0 ... 0x1f ] = { | ||
2031 | .model = "UNKNOWN", | ||
2032 | .tuner_type = TUNER_ABSENT, | ||
2033 | }, | ||
2034 | /* ... the ones known so far */ | ||
2035 | [ 0x05 ] = { | ||
2036 | .model = "PAL-BG", | ||
2037 | .tuner_type = TUNER_LG_PAL_NEW_TAPC, | ||
2038 | }, | ||
2039 | [ 0x10 ] = { | ||
2040 | .model = "PAL-BG / PAL-DK", | ||
2041 | .tuner_type = TUNER_PHILIPS_PAL, | ||
2042 | }, | ||
2043 | [ 0x15 ] = { | ||
2044 | .model = "NTSC", | ||
2045 | .tuner_type = TUNER_ABSENT /* FIXME */, | ||
2046 | }, | ||
2047 | }; | ||
2048 | #endif | ||
2049 | 2398 | ||
2050 | static void board_flyvideo(struct saa7134_dev *dev) | 2399 | static void board_flyvideo(struct saa7134_dev *dev) |
2051 | { | 2400 | { |
2052 | #if 0 | ||
2053 | /* non-working attempt to detect the correct tuner type ... */ | ||
2054 | u32 value; | ||
2055 | int index; | ||
2056 | |||
2057 | value = dev->gpio_value; | ||
2058 | index = (value & 0x1f00) >> 8; | ||
2059 | printk(KERN_INFO "%s: flyvideo: gpio is 0x%x [model=%s,tuner=%d]\n", | ||
2060 | dev->name, value, fly_list[index].model, | ||
2061 | fly_list[index].tuner_type); | ||
2062 | dev->tuner_type = fly_list[index].tuner_type; | ||
2063 | #endif | ||
2064 | printk("%s: there are different flyvideo cards with different tuners\n" | 2401 | printk("%s: there are different flyvideo cards with different tuners\n" |
2065 | "%s: out there, you might have to use the tuner=<nr> insmod\n" | 2402 | "%s: out there, you might have to use the tuner=<nr> insmod\n" |
2066 | "%s: option to override the default value.\n", | 2403 | "%s: option to override the default value.\n", |
@@ -2071,7 +2408,7 @@ static void board_flyvideo(struct saa7134_dev *dev) | |||
2071 | 2408 | ||
2072 | int saa7134_board_init1(struct saa7134_dev *dev) | 2409 | int saa7134_board_init1(struct saa7134_dev *dev) |
2073 | { | 2410 | { |
2074 | // Always print gpio, often manufacturers encode tuner type and other info. | 2411 | /* Always print gpio, often manufacturers encode tuner type and other info. */ |
2075 | saa_writel(SAA7134_GPIO_GPMODE0 >> 2, 0); | 2412 | saa_writel(SAA7134_GPIO_GPMODE0 >> 2, 0); |
2076 | dev->gpio_value = saa_readl(SAA7134_GPIO_GPSTATUS0 >> 2); | 2413 | dev->gpio_value = saa_readl(SAA7134_GPIO_GPSTATUS0 >> 2); |
2077 | printk(KERN_INFO "%s: board init: gpio is %x\n", dev->name, dev->gpio_value); | 2414 | printk(KERN_INFO "%s: board init: gpio is %x\n", dev->name, dev->gpio_value); |
@@ -2082,7 +2419,7 @@ int saa7134_board_init1(struct saa7134_dev *dev) | |||
2082 | dev->has_remote = 1; | 2419 | dev->has_remote = 1; |
2083 | board_flyvideo(dev); | 2420 | board_flyvideo(dev); |
2084 | break; | 2421 | break; |
2085 | case SAA7134_BOARD_FLYTVPLATINUM_FM: | 2422 | case SAA7134_BOARD_FLYTVPLATINUM_FM: |
2086 | case SAA7134_BOARD_CINERGY400: | 2423 | case SAA7134_BOARD_CINERGY400: |
2087 | case SAA7134_BOARD_CINERGY600: | 2424 | case SAA7134_BOARD_CINERGY600: |
2088 | case SAA7134_BOARD_CINERGY600_MK3: | 2425 | case SAA7134_BOARD_CINERGY600_MK3: |
@@ -2090,23 +2427,25 @@ int saa7134_board_init1(struct saa7134_dev *dev) | |||
2090 | case SAA7134_BOARD_ECS_TVP3XP_4CB5: | 2427 | case SAA7134_BOARD_ECS_TVP3XP_4CB5: |
2091 | case SAA7134_BOARD_MD2819: | 2428 | case SAA7134_BOARD_MD2819: |
2092 | case SAA7134_BOARD_KWORLD_VSTREAM_XPERT: | 2429 | case SAA7134_BOARD_KWORLD_VSTREAM_XPERT: |
2430 | case SAA7134_BOARD_KWORLD_XPERT: | ||
2093 | case SAA7134_BOARD_AVERMEDIA_STUDIO_305: | 2431 | case SAA7134_BOARD_AVERMEDIA_STUDIO_305: |
2094 | case SAA7134_BOARD_AVERMEDIA_305: | 2432 | case SAA7134_BOARD_AVERMEDIA_305: |
2095 | case SAA7134_BOARD_AVERMEDIA_STUDIO_307: | 2433 | case SAA7134_BOARD_AVERMEDIA_STUDIO_307: |
2096 | case SAA7134_BOARD_AVERMEDIA_307: | 2434 | case SAA7134_BOARD_AVERMEDIA_307: |
2097 | case SAA7134_BOARD_AVERMEDIA_GO_007_FM: | 2435 | case SAA7134_BOARD_AVERMEDIA_GO_007_FM: |
2098 | // case SAA7134_BOARD_SABRENT_SBTTVFM: /* not finished yet */ | 2436 | /* case SAA7134_BOARD_SABRENT_SBTTVFM: */ /* not finished yet */ |
2099 | case SAA7134_BOARD_VIDEOMATE_TV_PVR: | 2437 | case SAA7134_BOARD_VIDEOMATE_TV_PVR: |
2100 | case SAA7134_BOARD_MANLI_MTV001: | 2438 | case SAA7134_BOARD_VIDEOMATE_TV_GOLD_PLUSII: |
2101 | case SAA7134_BOARD_MANLI_MTV002: | 2439 | case SAA7134_BOARD_MANLI_MTV001: |
2440 | case SAA7134_BOARD_MANLI_MTV002: | ||
2102 | case SAA7134_BOARD_AVACSSMARTTV: | 2441 | case SAA7134_BOARD_AVACSSMARTTV: |
2103 | dev->has_remote = 1; | 2442 | dev->has_remote = 1; |
2104 | break; | 2443 | break; |
2105 | case SAA7134_BOARD_MD5044: | 2444 | case SAA7134_BOARD_MD5044: |
2106 | printk("%s: seems there are two different versions of the MD5044\n" | 2445 | printk("%s: seems there are two different versions of the MD5044\n" |
2107 | "%s: (with the same ID) out there. If sound doesn't work for\n" | 2446 | "%s: (with the same ID) out there. If sound doesn't work for\n" |
2108 | "%s: you try the audio_clock_override=0x200000 insmod option.\n", | 2447 | "%s: you try the audio_clock_override=0x200000 insmod option.\n", |
2109 | dev->name,dev->name,dev->name); | 2448 | dev->name,dev->name,dev->name); |
2110 | break; | 2449 | break; |
2111 | case SAA7134_BOARD_CINERGY400_CARDBUS: | 2450 | case SAA7134_BOARD_CINERGY400_CARDBUS: |
2112 | /* power-up tuner chip */ | 2451 | /* power-up tuner chip */ |
@@ -2114,11 +2453,19 @@ int saa7134_board_init1(struct saa7134_dev *dev) | |||
2114 | saa_andorl(SAA7134_GPIO_GPSTATUS0 >> 2, 0x00040000, 0x00000000); | 2453 | saa_andorl(SAA7134_GPIO_GPSTATUS0 >> 2, 0x00040000, 0x00000000); |
2115 | msleep(1); | 2454 | msleep(1); |
2116 | break; | 2455 | break; |
2456 | case SAA7134_BOARD_FLYDVBTDUO: | ||
2457 | case SAA7134_BOARD_THYPHOON_DVBT_DUO_CARDBUS: | ||
2458 | /* turn the fan on Hac: static for the time being */ | ||
2459 | saa_writeb(SAA7134_GPIO_GPMODE3, 0x08); | ||
2460 | saa_writeb(SAA7134_GPIO_GPSTATUS3, 0x06); | ||
2461 | break; | ||
2462 | case SAA7134_BOARD_AVERMEDIA_CARDBUS: | ||
2463 | /* power-up tuner chip */ | ||
2464 | saa_andorl(SAA7134_GPIO_GPMODE0 >> 2, 0xffffffff, 0xffffffff); | ||
2465 | saa_andorl(SAA7134_GPIO_GPSTATUS0 >> 2, 0xffffffff, 0xffffffff); | ||
2466 | msleep(1); | ||
2467 | break; | ||
2117 | } | 2468 | } |
2118 | if (dev->has_remote) | ||
2119 | dev->irq2_mask |= (SAA7134_IRQ2_INTE_GPIO18 | | ||
2120 | SAA7134_IRQ2_INTE_GPIO18A | | ||
2121 | SAA7134_IRQ2_INTE_GPIO16 ); | ||
2122 | return 0; | 2469 | return 0; |
2123 | } | 2470 | } |
2124 | 2471 | ||
@@ -2139,10 +2486,85 @@ int saa7134_board_init2(struct saa7134_dev *dev) | |||
2139 | break; | 2486 | break; |
2140 | dev->board = board; | 2487 | dev->board = board; |
2141 | printk("%s: board type fixup: %s\n", dev->name, | 2488 | printk("%s: board type fixup: %s\n", dev->name, |
2142 | saa7134_boards[dev->board].name); | 2489 | saa7134_boards[dev->board].name); |
2143 | dev->tuner_type = saa7134_boards[dev->board].tuner_type; | 2490 | dev->tuner_type = saa7134_boards[dev->board].tuner_type; |
2144 | if (TUNER_ABSENT != dev->tuner_type) | 2491 | |
2145 | saa7134_i2c_call_clients(dev,TUNER_SET_TYPE,&dev->tuner_type); | 2492 | if (TUNER_ABSENT != dev->tuner_type) { |
2493 | struct tuner_setup tun_setup; | ||
2494 | |||
2495 | tun_setup.mode_mask = T_RADIO | T_ANALOG_TV | T_DIGITAL_TV; | ||
2496 | tun_setup.type = dev->tuner_type; | ||
2497 | tun_setup.addr = ADDR_UNSET; | ||
2498 | |||
2499 | saa7134_i2c_call_clients (dev, TUNER_SET_TYPE_ADDR, &tun_setup); | ||
2500 | } | ||
2501 | break; | ||
2502 | case SAA7134_BOARD_MD7134: | ||
2503 | { | ||
2504 | struct tuner_setup tun_setup; | ||
2505 | u8 subaddr; | ||
2506 | u8 data[3]; | ||
2507 | int ret, tuner_t; | ||
2508 | |||
2509 | struct i2c_msg msg[] = {{.addr=0x50, .flags=0, .buf=&subaddr, .len = 1}, | ||
2510 | {.addr=0x50, .flags=I2C_M_RD, .buf=data, .len = 3}}; | ||
2511 | subaddr= 0x14; | ||
2512 | tuner_t = 0; | ||
2513 | ret = i2c_transfer(&dev->i2c_adap, msg, 2); | ||
2514 | if (ret != 2) { | ||
2515 | printk(KERN_ERR "EEPROM read failure\n"); | ||
2516 | } else if ((data[0] != 0) && (data[0] != 0xff)) { | ||
2517 | /* old config structure */ | ||
2518 | subaddr = data[0] + 2; | ||
2519 | msg[1].len = 2; | ||
2520 | i2c_transfer(&dev->i2c_adap, msg, 2); | ||
2521 | tuner_t = (data[0] << 8) + data[1]; | ||
2522 | switch (tuner_t){ | ||
2523 | case 0x0103: | ||
2524 | dev->tuner_type = TUNER_PHILIPS_PAL; | ||
2525 | break; | ||
2526 | case 0x010C: | ||
2527 | dev->tuner_type = TUNER_PHILIPS_FM1216ME_MK3; | ||
2528 | break; | ||
2529 | default: | ||
2530 | printk(KERN_ERR "%s Cant determine tuner type %x from EEPROM\n", dev->name, tuner_t); | ||
2531 | } | ||
2532 | } else if ((data[1] != 0) && (data[1] != 0xff)) { | ||
2533 | /* new config structure */ | ||
2534 | subaddr = data[1] + 1; | ||
2535 | msg[1].len = 1; | ||
2536 | i2c_transfer(&dev->i2c_adap, msg, 2); | ||
2537 | subaddr = data[0] + 1; | ||
2538 | msg[1].len = 2; | ||
2539 | i2c_transfer(&dev->i2c_adap, msg, 2); | ||
2540 | tuner_t = (data[1] << 8) + data[0]; | ||
2541 | switch (tuner_t) { | ||
2542 | case 0x0005: | ||
2543 | dev->tuner_type = TUNER_PHILIPS_FM1216ME_MK3; | ||
2544 | break; | ||
2545 | case 0x001d: | ||
2546 | dev->tuner_type = TUNER_PHILIPS_FMD1216ME_MK3; | ||
2547 | printk(KERN_INFO "%s Board has DVB-T\n", dev->name); | ||
2548 | break; | ||
2549 | default: | ||
2550 | printk(KERN_ERR "%s Cant determine tuner type %x from EEPROM\n", dev->name, tuner_t); | ||
2551 | } | ||
2552 | } else { | ||
2553 | printk(KERN_ERR "%s unexpected config structure\n", dev->name); | ||
2554 | } | ||
2555 | |||
2556 | printk(KERN_INFO "%s Tuner type is %d\n", dev->name, dev->tuner_type); | ||
2557 | if (dev->tuner_type == TUNER_PHILIPS_FMD1216ME_MK3) { | ||
2558 | dev->tda9887_conf = TDA9887_PRESENT | TDA9887_PORT1_ACTIVE | TDA9887_PORT2_ACTIVE; | ||
2559 | saa7134_i2c_call_clients(dev,TDA9887_SET_CONFIG, &dev->tda9887_conf); | ||
2560 | } | ||
2561 | |||
2562 | tun_setup.mode_mask = T_RADIO | T_ANALOG_TV | T_DIGITAL_TV; | ||
2563 | tun_setup.type = dev->tuner_type; | ||
2564 | tun_setup.addr = ADDR_UNSET; | ||
2565 | |||
2566 | saa7134_i2c_call_clients (dev, TUNER_SET_TYPE_ADDR,&tun_setup); | ||
2567 | } | ||
2146 | break; | 2568 | break; |
2147 | } | 2569 | } |
2148 | return 0; | 2570 | return 0; |
diff --git a/drivers/media/video/saa7134/saa7134-core.c b/drivers/media/video/saa7134/saa7134-core.c index f61ed1849a2a..1dbe61755e9f 100644 --- a/drivers/media/video/saa7134/saa7134-core.c +++ b/drivers/media/video/saa7134/saa7134-core.c | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * $Id: saa7134-core.c,v 1.30 2005/05/22 19:23:39 nsh Exp $ | 2 | * $Id: saa7134-core.c,v 1.39 2005/07/05 17:37:35 nsh Exp $ |
3 | * | 3 | * |
4 | * device driver for philips saa7134 based TV cards | 4 | * device driver for philips saa7134 based TV cards |
5 | * driver core | 5 | * driver core |
@@ -183,46 +183,6 @@ void saa7134_track_gpio(struct saa7134_dev *dev, char *msg) | |||
183 | 183 | ||
184 | /* ------------------------------------------------------------------ */ | 184 | /* ------------------------------------------------------------------ */ |
185 | 185 | ||
186 | #if 0 | ||
187 | static char *dec1_bits[8] = { | ||
188 | "DCSTD0", "DCSCT1", "WIPA", "GLIMB", | ||
189 | "GLIMT", "SLTCA", "HLCK" | ||
190 | }; | ||
191 | static char *dec2_bits[8] = { | ||
192 | "RDCAP", "COPRO", "COLSTR", "TYPE3", | ||
193 | NULL, "FIDT", "HLVLN", "INTL" | ||
194 | }; | ||
195 | static char *scale1_bits[8] = { | ||
196 | "VID_A", "VBI_A", NULL, NULL, "VID_B", "VBI_B" | ||
197 | }; | ||
198 | static char *scale2_bits[8] = { | ||
199 | "TRERR", "CFERR", "LDERR", "WASRST", | ||
200 | "FIDSCI", "FIDSCO", "D6^D5", "TASK" | ||
201 | }; | ||
202 | |||
203 | static void dump_statusreg(struct saa7134_dev *dev, int reg, | ||
204 | char *regname, char **bits) | ||
205 | { | ||
206 | int value,i; | ||
207 | |||
208 | value = saa_readb(reg); | ||
209 | printk(KERN_DEBUG "%s: %s:", dev->name, regname); | ||
210 | for (i = 7; i >= 0; i--) { | ||
211 | if (NULL == bits[i]) | ||
212 | continue; | ||
213 | printk(" %s=%d", bits[i], (value & (1 << i)) ? 1 : 0); | ||
214 | } | ||
215 | printk("\n"); | ||
216 | } | ||
217 | |||
218 | static void dump_statusregs(struct saa7134_dev *dev) | ||
219 | { | ||
220 | dump_statusreg(dev,SAA7134_STATUS_VIDEO1,"dec1",dec1_bits); | ||
221 | dump_statusreg(dev,SAA7134_STATUS_VIDEO2,"dec2",dec2_bits); | ||
222 | dump_statusreg(dev,SAA7134_SCALER_STATUS0,"scale0",scale1_bits); | ||
223 | dump_statusreg(dev,SAA7134_SCALER_STATUS1,"scale1",scale2_bits); | ||
224 | } | ||
225 | #endif | ||
226 | 186 | ||
227 | /* ----------------------------------------------------------- */ | 187 | /* ----------------------------------------------------------- */ |
228 | /* delayed request_module */ | 188 | /* delayed request_module */ |
@@ -616,10 +576,6 @@ static irqreturn_t saa7134_irq(int irq, void *dev_id, struct pt_regs *regs) | |||
616 | if (irq_debug) | 576 | if (irq_debug) |
617 | print_irqstatus(dev,loop,report,status); | 577 | print_irqstatus(dev,loop,report,status); |
618 | 578 | ||
619 | #if 0 | ||
620 | if (report & SAA7134_IRQ_REPORT_CONF_ERR) | ||
621 | dump_statusregs(dev); | ||
622 | #endif | ||
623 | 579 | ||
624 | if (report & SAA7134_IRQ_REPORT_RDCAP /* _INTL */) | 580 | if (report & SAA7134_IRQ_REPORT_RDCAP /* _INTL */) |
625 | saa7134_irq_video_intl(dev); | 581 | saa7134_irq_video_intl(dev); |
@@ -711,7 +667,6 @@ static int saa7134_hwinit1(struct saa7134_dev *dev) | |||
711 | SAA7134_MAIN_CTRL_EVFE1 | | 667 | SAA7134_MAIN_CTRL_EVFE1 | |
712 | SAA7134_MAIN_CTRL_EVFE2 | | 668 | SAA7134_MAIN_CTRL_EVFE2 | |
713 | SAA7134_MAIN_CTRL_ESFE | | 669 | SAA7134_MAIN_CTRL_ESFE | |
714 | SAA7134_MAIN_CTRL_EBADC | | ||
715 | SAA7134_MAIN_CTRL_EBDAC); | 670 | SAA7134_MAIN_CTRL_EBDAC); |
716 | 671 | ||
717 | /* enable peripheral devices */ | 672 | /* enable peripheral devices */ |
@@ -726,14 +681,28 @@ static int saa7134_hwinit1(struct saa7134_dev *dev) | |||
726 | /* late init (with i2c + irq) */ | 681 | /* late init (with i2c + irq) */ |
727 | static int saa7134_hwinit2(struct saa7134_dev *dev) | 682 | static int saa7134_hwinit2(struct saa7134_dev *dev) |
728 | { | 683 | { |
684 | unsigned int irq2_mask; | ||
729 | dprintk("hwinit2\n"); | 685 | dprintk("hwinit2\n"); |
730 | 686 | ||
731 | saa7134_video_init2(dev); | 687 | saa7134_video_init2(dev); |
732 | saa7134_tvaudio_init2(dev); | 688 | saa7134_tvaudio_init2(dev); |
733 | 689 | ||
734 | /* enable IRQ's */ | 690 | /* enable IRQ's */ |
691 | irq2_mask = | ||
692 | SAA7134_IRQ2_INTE_DEC3 | | ||
693 | SAA7134_IRQ2_INTE_DEC2 | | ||
694 | SAA7134_IRQ2_INTE_DEC1 | | ||
695 | SAA7134_IRQ2_INTE_DEC0 | | ||
696 | SAA7134_IRQ2_INTE_PE | | ||
697 | SAA7134_IRQ2_INTE_AR; | ||
698 | |||
699 | if (dev->has_remote) | ||
700 | irq2_mask |= (SAA7134_IRQ2_INTE_GPIO18 | | ||
701 | SAA7134_IRQ2_INTE_GPIO18A | | ||
702 | SAA7134_IRQ2_INTE_GPIO16 ); | ||
703 | |||
735 | saa_writel(SAA7134_IRQ1, 0); | 704 | saa_writel(SAA7134_IRQ1, 0); |
736 | saa_writel(SAA7134_IRQ2, dev->irq2_mask); | 705 | saa_writel(SAA7134_IRQ2, irq2_mask); |
737 | 706 | ||
738 | return 0; | 707 | return 0; |
739 | } | 708 | } |
@@ -954,13 +923,6 @@ static int __devinit saa7134_initdev(struct pci_dev *pci_dev, | |||
954 | } | 923 | } |
955 | 924 | ||
956 | /* initialize hardware #1 */ | 925 | /* initialize hardware #1 */ |
957 | dev->irq2_mask = | ||
958 | SAA7134_IRQ2_INTE_DEC3 | | ||
959 | SAA7134_IRQ2_INTE_DEC2 | | ||
960 | SAA7134_IRQ2_INTE_DEC1 | | ||
961 | SAA7134_IRQ2_INTE_DEC0 | | ||
962 | SAA7134_IRQ2_INTE_PE | | ||
963 | SAA7134_IRQ2_INTE_AR; | ||
964 | saa7134_board_init1(dev); | 926 | saa7134_board_init1(dev); |
965 | saa7134_hwinit1(dev); | 927 | saa7134_hwinit1(dev); |
966 | 928 | ||
@@ -990,6 +952,7 @@ static int __devinit saa7134_initdev(struct pci_dev *pci_dev, | |||
990 | request_module("saa6752hs"); | 952 | request_module("saa6752hs"); |
991 | request_module_depend("saa7134-empress",&need_empress); | 953 | request_module_depend("saa7134-empress",&need_empress); |
992 | } | 954 | } |
955 | |||
993 | if (card_is_dvb(dev)) | 956 | if (card_is_dvb(dev)) |
994 | request_module_depend("saa7134-dvb",&need_dvb); | 957 | request_module_depend("saa7134-dvb",&need_dvb); |
995 | 958 | ||
@@ -1144,9 +1107,6 @@ static void __devexit saa7134_finidev(struct pci_dev *pci_dev) | |||
1144 | release_mem_region(pci_resource_start(pci_dev,0), | 1107 | release_mem_region(pci_resource_start(pci_dev,0), |
1145 | pci_resource_len(pci_dev,0)); | 1108 | pci_resource_len(pci_dev,0)); |
1146 | 1109 | ||
1147 | #if 0 /* causes some trouble when reinserting the driver ... */ | ||
1148 | pci_disable_device(pci_dev); | ||
1149 | #endif | ||
1150 | pci_set_drvdata(pci_dev, NULL); | 1110 | pci_set_drvdata(pci_dev, NULL); |
1151 | 1111 | ||
1152 | /* free memory */ | 1112 | /* free memory */ |
diff --git a/drivers/media/video/saa7134/saa7134-dvb.c b/drivers/media/video/saa7134/saa7134-dvb.c index aa8e2cf62d55..334bc1850092 100644 --- a/drivers/media/video/saa7134/saa7134-dvb.c +++ b/drivers/media/video/saa7134/saa7134-dvb.c | |||
@@ -1,8 +1,11 @@ | |||
1 | /* | 1 | /* |
2 | * $Id: saa7134-dvb.c,v 1.13 2005/06/12 04:19:19 mchehab Exp $ | 2 | * $Id: saa7134-dvb.c,v 1.18 2005/07/04 16:05:50 mkrufky Exp $ |
3 | * | 3 | * |
4 | * (c) 2004 Gerd Knorr <kraxel@bytesex.org> [SuSE Labs] | 4 | * (c) 2004 Gerd Knorr <kraxel@bytesex.org> [SuSE Labs] |
5 | * | 5 | * |
6 | * Extended 3 / 2005 by Hartmut Hackmann to support various | ||
7 | * cards with the tda10046 DVB-T channel decoder | ||
8 | * | ||
6 | * This program is free software; you can redistribute it and/or modify | 9 | * This program is free software; you can redistribute it and/or modify |
7 | * it under the terms of the GNU General Public License as published by | 10 | * it under the terms of the GNU General Public License as published by |
8 | * the Free Software Foundation; either version 2 of the License, or | 11 | * the Free Software Foundation; either version 2 of the License, or |
@@ -27,23 +30,31 @@ | |||
27 | #include <linux/kthread.h> | 30 | #include <linux/kthread.h> |
28 | #include <linux/suspend.h> | 31 | #include <linux/suspend.h> |
29 | 32 | ||
33 | #define CONFIG_DVB_MT352 1 | ||
34 | #define CONFIG_DVB_TDA1004X 1 | ||
35 | |||
30 | #include "saa7134-reg.h" | 36 | #include "saa7134-reg.h" |
31 | #include "saa7134.h" | 37 | #include "saa7134.h" |
32 | 38 | ||
33 | #include "dvb-pll.h" | 39 | #if CONFIG_DVB_MT352 |
34 | #include "mt352.h" | 40 | # include "mt352.h" |
35 | #include "mt352_priv.h" /* FIXME */ | 41 | # include "mt352_priv.h" /* FIXME */ |
36 | #include "tda1004x.h" | 42 | #endif |
43 | #if CONFIG_DVB_TDA1004X | ||
44 | # include "tda1004x.h" | ||
45 | #endif | ||
37 | 46 | ||
38 | MODULE_AUTHOR("Gerd Knorr <kraxel@bytesex.org> [SuSE Labs]"); | 47 | MODULE_AUTHOR("Gerd Knorr <kraxel@bytesex.org> [SuSE Labs]"); |
39 | MODULE_LICENSE("GPL"); | 48 | MODULE_LICENSE("GPL"); |
40 | 49 | ||
41 | static unsigned int antenna_pwr = 0; | 50 | static unsigned int antenna_pwr = 0; |
51 | |||
42 | module_param(antenna_pwr, int, 0444); | 52 | module_param(antenna_pwr, int, 0444); |
43 | MODULE_PARM_DESC(antenna_pwr,"enable antenna power (Pinnacle 300i)"); | 53 | MODULE_PARM_DESC(antenna_pwr,"enable antenna power (Pinnacle 300i)"); |
44 | 54 | ||
45 | /* ------------------------------------------------------------------ */ | 55 | /* ------------------------------------------------------------------ */ |
46 | 56 | ||
57 | #if CONFIG_DVB_MT352 | ||
47 | static int pinnacle_antenna_pwr(struct saa7134_dev *dev, int on) | 58 | static int pinnacle_antenna_pwr(struct saa7134_dev *dev, int on) |
48 | { | 59 | { |
49 | u32 ok; | 60 | u32 ok; |
@@ -138,51 +149,390 @@ static struct mt352_config pinnacle_300i = { | |||
138 | .demod_init = mt352_pinnacle_init, | 149 | .demod_init = mt352_pinnacle_init, |
139 | .pll_set = mt352_pinnacle_pll_set, | 150 | .pll_set = mt352_pinnacle_pll_set, |
140 | }; | 151 | }; |
152 | #endif | ||
141 | 153 | ||
142 | /* ------------------------------------------------------------------ */ | 154 | /* ------------------------------------------------------------------ */ |
143 | 155 | ||
144 | static int medion_cardbus_init(struct dvb_frontend* fe) | 156 | #if CONFIG_DVB_TDA1004X |
157 | static int philips_tu1216_pll_init(struct dvb_frontend *fe) | ||
145 | { | 158 | { |
146 | /* anything to do here ??? */ | 159 | struct saa7134_dev *dev = fe->dvb->priv; |
160 | static u8 tu1216_init[] = { 0x0b, 0xf5, 0x85, 0xab }; | ||
161 | struct i2c_msg tuner_msg = {.addr = 0x60,.flags = 0,.buf = tu1216_init,.len = sizeof(tu1216_init) }; | ||
162 | |||
163 | /* setup PLL configuration */ | ||
164 | if (i2c_transfer(&dev->i2c_adap, &tuner_msg, 1) != 1) | ||
165 | return -EIO; | ||
166 | msleep(1); | ||
167 | |||
147 | return 0; | 168 | return 0; |
148 | } | 169 | } |
149 | 170 | ||
150 | static int medion_cardbus_pll_set(struct dvb_frontend* fe, | 171 | static int philips_tu1216_pll_set(struct dvb_frontend *fe, struct dvb_frontend_parameters *params) |
151 | struct dvb_frontend_parameters* params) | ||
152 | { | 172 | { |
153 | struct saa7134_dev *dev = fe->dvb->priv; | 173 | struct saa7134_dev *dev = fe->dvb->priv; |
154 | struct v4l2_frequency f; | 174 | u8 tuner_buf[4]; |
175 | struct i2c_msg tuner_msg = {.addr = 0x60,.flags = 0,.buf = tuner_buf,.len = | ||
176 | sizeof(tuner_buf) }; | ||
177 | int tuner_frequency = 0; | ||
178 | u8 band, cp, filter; | ||
179 | |||
180 | /* determine charge pump */ | ||
181 | tuner_frequency = params->frequency + 36166000; | ||
182 | if (tuner_frequency < 87000000) | ||
183 | return -EINVAL; | ||
184 | else if (tuner_frequency < 130000000) | ||
185 | cp = 3; | ||
186 | else if (tuner_frequency < 160000000) | ||
187 | cp = 5; | ||
188 | else if (tuner_frequency < 200000000) | ||
189 | cp = 6; | ||
190 | else if (tuner_frequency < 290000000) | ||
191 | cp = 3; | ||
192 | else if (tuner_frequency < 420000000) | ||
193 | cp = 5; | ||
194 | else if (tuner_frequency < 480000000) | ||
195 | cp = 6; | ||
196 | else if (tuner_frequency < 620000000) | ||
197 | cp = 3; | ||
198 | else if (tuner_frequency < 830000000) | ||
199 | cp = 5; | ||
200 | else if (tuner_frequency < 895000000) | ||
201 | cp = 7; | ||
202 | else | ||
203 | return -EINVAL; | ||
204 | |||
205 | /* determine band */ | ||
206 | if (params->frequency < 49000000) | ||
207 | return -EINVAL; | ||
208 | else if (params->frequency < 161000000) | ||
209 | band = 1; | ||
210 | else if (params->frequency < 444000000) | ||
211 | band = 2; | ||
212 | else if (params->frequency < 861000000) | ||
213 | band = 4; | ||
214 | else | ||
215 | return -EINVAL; | ||
216 | |||
217 | /* setup PLL filter */ | ||
218 | switch (params->u.ofdm.bandwidth) { | ||
219 | case BANDWIDTH_6_MHZ: | ||
220 | filter = 0; | ||
221 | break; | ||
155 | 222 | ||
156 | /* | 223 | case BANDWIDTH_7_MHZ: |
157 | * this instructs tuner.o to set the frequency, the call will | 224 | filter = 0; |
158 | * end up in tuner_command(), VIDIOC_S_FREQUENCY switch. | 225 | break; |
159 | * tda9887.o will see that as well. | 226 | |
227 | case BANDWIDTH_8_MHZ: | ||
228 | filter = 1; | ||
229 | break; | ||
230 | |||
231 | default: | ||
232 | return -EINVAL; | ||
233 | } | ||
234 | |||
235 | /* calculate divisor | ||
236 | * ((36166000+((1000000/6)/2)) + Finput)/(1000000/6) | ||
160 | */ | 237 | */ |
161 | f.tuner = 0; | 238 | tuner_frequency = (((params->frequency / 1000) * 6) + 217496) / 1000; |
162 | f.type = V4L2_TUNER_DIGITAL_TV; | 239 | |
163 | f.frequency = params->frequency / 1000 * 16 / 1000; | 240 | /* setup tuner buffer */ |
164 | saa7134_i2c_call_clients(dev,VIDIOC_S_FREQUENCY,&f); | 241 | tuner_buf[0] = (tuner_frequency >> 8) & 0x7f; |
242 | tuner_buf[1] = tuner_frequency & 0xff; | ||
243 | tuner_buf[2] = 0xca; | ||
244 | tuner_buf[3] = (cp << 5) | (filter << 3) | band; | ||
245 | |||
246 | if (i2c_transfer(&dev->i2c_adap, &tuner_msg, 1) != 1) | ||
247 | return -EIO; | ||
248 | |||
249 | msleep(1); | ||
165 | return 0; | 250 | return 0; |
166 | } | 251 | } |
167 | 252 | ||
168 | static int fe_request_firmware(struct dvb_frontend* fe, | 253 | static int philips_tu1216_request_firmware(struct dvb_frontend *fe, |
169 | const struct firmware **fw, char* name) | 254 | const struct firmware **fw, char *name) |
170 | { | 255 | { |
171 | struct saa7134_dev *dev = fe->dvb->priv; | 256 | struct saa7134_dev *dev = fe->dvb->priv; |
172 | return request_firmware(fw, name, &dev->pci->dev); | 257 | return request_firmware(fw, name, &dev->pci->dev); |
173 | } | 258 | } |
174 | 259 | ||
260 | static struct tda1004x_config philips_tu1216_config = { | ||
261 | |||
262 | .demod_address = 0x8, | ||
263 | .invert = 1, | ||
264 | .invert_oclk = 1, | ||
265 | .xtal_freq = TDA10046_XTAL_4M, | ||
266 | .agc_config = TDA10046_AGC_DEFAULT, | ||
267 | .if_freq = TDA10046_FREQ_3617, | ||
268 | .pll_init = philips_tu1216_pll_init, | ||
269 | .pll_set = philips_tu1216_pll_set, | ||
270 | .pll_sleep = NULL, | ||
271 | .request_firmware = philips_tu1216_request_firmware, | ||
272 | }; | ||
273 | |||
274 | /* ------------------------------------------------------------------ */ | ||
275 | |||
276 | |||
277 | static int philips_fmd1216_pll_init(struct dvb_frontend *fe) | ||
278 | { | ||
279 | struct saa7134_dev *dev = fe->dvb->priv; | ||
280 | /* this message is to set up ATC and ALC */ | ||
281 | static u8 fmd1216_init[] = { 0x0b, 0xdc, 0x9c, 0xa0 }; | ||
282 | struct i2c_msg tuner_msg = {.addr = 0x61,.flags = 0,.buf = fmd1216_init,.len = sizeof(fmd1216_init) }; | ||
283 | |||
284 | if (i2c_transfer(&dev->i2c_adap, &tuner_msg, 1) != 1) | ||
285 | return -EIO; | ||
286 | msleep(1); | ||
287 | |||
288 | return 0; | ||
289 | } | ||
290 | |||
291 | static void philips_fmd1216_analog(struct dvb_frontend *fe) | ||
292 | { | ||
293 | struct saa7134_dev *dev = fe->dvb->priv; | ||
294 | /* this message actually turns the tuner back to analog mode */ | ||
295 | static u8 fmd1216_init[] = { 0x0b, 0xdc, 0x9c, 0x60 }; | ||
296 | struct i2c_msg tuner_msg = {.addr = 0x61,.flags = 0,.buf = fmd1216_init,.len = sizeof(fmd1216_init) }; | ||
297 | |||
298 | i2c_transfer(&dev->i2c_adap, &tuner_msg, 1); | ||
299 | msleep(1); | ||
300 | fmd1216_init[2] = 0x86; | ||
301 | fmd1216_init[3] = 0x54; | ||
302 | i2c_transfer(&dev->i2c_adap, &tuner_msg, 1); | ||
303 | msleep(1); | ||
304 | } | ||
305 | |||
306 | static int philips_fmd1216_pll_set(struct dvb_frontend *fe, struct dvb_frontend_parameters *params) | ||
307 | { | ||
308 | struct saa7134_dev *dev = fe->dvb->priv; | ||
309 | u8 tuner_buf[4]; | ||
310 | struct i2c_msg tuner_msg = {.addr = 0x61,.flags = 0,.buf = tuner_buf,.len = | ||
311 | sizeof(tuner_buf) }; | ||
312 | int tuner_frequency = 0; | ||
313 | int divider = 0; | ||
314 | u8 band, mode, cp; | ||
315 | |||
316 | /* determine charge pump */ | ||
317 | tuner_frequency = params->frequency + 36130000; | ||
318 | if (tuner_frequency < 87000000) | ||
319 | return -EINVAL; | ||
320 | /* low band */ | ||
321 | else if (tuner_frequency < 180000000) { | ||
322 | band = 1; | ||
323 | mode = 7; | ||
324 | cp = 0; | ||
325 | } else if (tuner_frequency < 195000000) { | ||
326 | band = 1; | ||
327 | mode = 6; | ||
328 | cp = 1; | ||
329 | /* mid band */ | ||
330 | } else if (tuner_frequency < 366000000) { | ||
331 | if (params->u.ofdm.bandwidth == BANDWIDTH_8_MHZ) { | ||
332 | band = 10; | ||
333 | } else { | ||
334 | band = 2; | ||
335 | } | ||
336 | mode = 7; | ||
337 | cp = 0; | ||
338 | } else if (tuner_frequency < 478000000) { | ||
339 | if (params->u.ofdm.bandwidth == BANDWIDTH_8_MHZ) { | ||
340 | band = 10; | ||
341 | } else { | ||
342 | band = 2; | ||
343 | } | ||
344 | mode = 6; | ||
345 | cp = 1; | ||
346 | /* high band */ | ||
347 | } else if (tuner_frequency < 662000000) { | ||
348 | if (params->u.ofdm.bandwidth == BANDWIDTH_8_MHZ) { | ||
349 | band = 12; | ||
350 | } else { | ||
351 | band = 4; | ||
352 | } | ||
353 | mode = 7; | ||
354 | cp = 0; | ||
355 | } else if (tuner_frequency < 840000000) { | ||
356 | if (params->u.ofdm.bandwidth == BANDWIDTH_8_MHZ) { | ||
357 | band = 12; | ||
358 | } else { | ||
359 | band = 4; | ||
360 | } | ||
361 | mode = 6; | ||
362 | cp = 1; | ||
363 | } else { | ||
364 | if (params->u.ofdm.bandwidth == BANDWIDTH_8_MHZ) { | ||
365 | band = 12; | ||
366 | } else { | ||
367 | band = 4; | ||
368 | } | ||
369 | mode = 7; | ||
370 | cp = 1; | ||
371 | |||
372 | } | ||
373 | /* calculate divisor */ | ||
374 | /* ((36166000 + Finput) / 166666) rounded! */ | ||
375 | divider = (tuner_frequency + 83333) / 166667; | ||
376 | |||
377 | /* setup tuner buffer */ | ||
378 | tuner_buf[0] = (divider >> 8) & 0x7f; | ||
379 | tuner_buf[1] = divider & 0xff; | ||
380 | tuner_buf[2] = 0x80 | (cp << 6) | (mode << 3) | 4; | ||
381 | tuner_buf[3] = 0x40 | band; | ||
382 | |||
383 | if (i2c_transfer(&dev->i2c_adap, &tuner_msg, 1) != 1) | ||
384 | return -EIO; | ||
385 | return 0; | ||
386 | } | ||
387 | |||
388 | |||
175 | static struct tda1004x_config medion_cardbus = { | 389 | static struct tda1004x_config medion_cardbus = { |
176 | .demod_address = 0x08, /* not sure this is correct */ | 390 | .demod_address = 0x08, |
177 | .invert = 0, | 391 | .invert = 1, |
178 | .invert_oclk = 0, | 392 | .invert_oclk = 0, |
179 | .pll_init = medion_cardbus_init, | 393 | .xtal_freq = TDA10046_XTAL_16M, |
180 | .pll_set = medion_cardbus_pll_set, | 394 | .agc_config = TDA10046_AGC_IFO_AUTO_NEG, |
181 | .request_firmware = fe_request_firmware, | 395 | .if_freq = TDA10046_FREQ_3613, |
396 | .pll_init = philips_fmd1216_pll_init, | ||
397 | .pll_set = philips_fmd1216_pll_set, | ||
398 | .pll_sleep = philips_fmd1216_analog, | ||
399 | .request_firmware = NULL, | ||
182 | }; | 400 | }; |
183 | 401 | ||
184 | /* ------------------------------------------------------------------ */ | 402 | /* ------------------------------------------------------------------ */ |
185 | 403 | ||
404 | struct tda827x_data { | ||
405 | u32 lomax; | ||
406 | u8 spd; | ||
407 | u8 bs; | ||
408 | u8 bp; | ||
409 | u8 cp; | ||
410 | u8 gc3; | ||
411 | u8 div1p5; | ||
412 | }; | ||
413 | |||
414 | static struct tda827x_data tda827x_dvbt[] = { | ||
415 | { .lomax = 62000000, .spd = 3, .bs = 2, .bp = 0, .cp = 0, .gc3 = 3, .div1p5 = 1}, | ||
416 | { .lomax = 66000000, .spd = 3, .bs = 3, .bp = 0, .cp = 0, .gc3 = 3, .div1p5 = 1}, | ||
417 | { .lomax = 76000000, .spd = 3, .bs = 1, .bp = 0, .cp = 0, .gc3 = 3, .div1p5 = 0}, | ||
418 | { .lomax = 84000000, .spd = 3, .bs = 2, .bp = 0, .cp = 0, .gc3 = 3, .div1p5 = 0}, | ||
419 | { .lomax = 93000000, .spd = 3, .bs = 2, .bp = 0, .cp = 0, .gc3 = 1, .div1p5 = 0}, | ||
420 | { .lomax = 98000000, .spd = 3, .bs = 3, .bp = 0, .cp = 0, .gc3 = 1, .div1p5 = 0}, | ||
421 | { .lomax = 109000000, .spd = 3, .bs = 3, .bp = 1, .cp = 0, .gc3 = 1, .div1p5 = 0}, | ||
422 | { .lomax = 123000000, .spd = 2, .bs = 2, .bp = 1, .cp = 0, .gc3 = 1, .div1p5 = 1}, | ||
423 | { .lomax = 133000000, .spd = 2, .bs = 3, .bp = 1, .cp = 0, .gc3 = 1, .div1p5 = 1}, | ||
424 | { .lomax = 151000000, .spd = 2, .bs = 1, .bp = 1, .cp = 0, .gc3 = 1, .div1p5 = 0}, | ||
425 | { .lomax = 154000000, .spd = 2, .bs = 2, .bp = 1, .cp = 0, .gc3 = 1, .div1p5 = 0}, | ||
426 | { .lomax = 181000000, .spd = 2, .bs = 2, .bp = 1, .cp = 0, .gc3 = 0, .div1p5 = 0}, | ||
427 | { .lomax = 185000000, .spd = 2, .bs = 2, .bp = 2, .cp = 0, .gc3 = 1, .div1p5 = 0}, | ||
428 | { .lomax = 217000000, .spd = 2, .bs = 3, .bp = 2, .cp = 0, .gc3 = 1, .div1p5 = 0}, | ||
429 | { .lomax = 244000000, .spd = 1, .bs = 2, .bp = 2, .cp = 0, .gc3 = 1, .div1p5 = 1}, | ||
430 | { .lomax = 265000000, .spd = 1, .bs = 3, .bp = 2, .cp = 0, .gc3 = 1, .div1p5 = 1}, | ||
431 | { .lomax = 302000000, .spd = 1, .bs = 1, .bp = 2, .cp = 0, .gc3 = 1, .div1p5 = 0}, | ||
432 | { .lomax = 324000000, .spd = 1, .bs = 2, .bp = 2, .cp = 0, .gc3 = 1, .div1p5 = 0}, | ||
433 | { .lomax = 370000000, .spd = 1, .bs = 2, .bp = 3, .cp = 0, .gc3 = 1, .div1p5 = 0}, | ||
434 | { .lomax = 454000000, .spd = 1, .bs = 3, .bp = 3, .cp = 0, .gc3 = 1, .div1p5 = 0}, | ||
435 | { .lomax = 493000000, .spd = 0, .bs = 2, .bp = 3, .cp = 0, .gc3 = 1, .div1p5 = 1}, | ||
436 | { .lomax = 530000000, .spd = 0, .bs = 3, .bp = 3, .cp = 0, .gc3 = 1, .div1p5 = 1}, | ||
437 | { .lomax = 554000000, .spd = 0, .bs = 1, .bp = 3, .cp = 0, .gc3 = 1, .div1p5 = 0}, | ||
438 | { .lomax = 604000000, .spd = 0, .bs = 1, .bp = 4, .cp = 0, .gc3 = 0, .div1p5 = 0}, | ||
439 | { .lomax = 696000000, .spd = 0, .bs = 2, .bp = 4, .cp = 0, .gc3 = 0, .div1p5 = 0}, | ||
440 | { .lomax = 740000000, .spd = 0, .bs = 2, .bp = 4, .cp = 1, .gc3 = 0, .div1p5 = 0}, | ||
441 | { .lomax = 820000000, .spd = 0, .bs = 3, .bp = 4, .cp = 0, .gc3 = 0, .div1p5 = 0}, | ||
442 | { .lomax = 865000000, .spd = 0, .bs = 3, .bp = 4, .cp = 1, .gc3 = 0, .div1p5 = 0}, | ||
443 | { .lomax = 0, .spd = 0, .bs = 0, .bp = 0, .cp = 0, .gc3 = 0, .div1p5 = 0} | ||
444 | }; | ||
445 | |||
446 | static int philips_tda827x_pll_init(struct dvb_frontend *fe) | ||
447 | { | ||
448 | return 0; | ||
449 | } | ||
450 | |||
451 | static int philips_tda827x_pll_set(struct dvb_frontend *fe, struct dvb_frontend_parameters *params) | ||
452 | { | ||
453 | struct saa7134_dev *dev = fe->dvb->priv; | ||
454 | u8 tuner_buf[14]; | ||
455 | |||
456 | struct i2c_msg tuner_msg = {.addr = 0x60,.flags = 0,.buf = tuner_buf, | ||
457 | .len = sizeof(tuner_buf) }; | ||
458 | int i, tuner_freq, if_freq; | ||
459 | u32 N; | ||
460 | switch (params->u.ofdm.bandwidth) { | ||
461 | case BANDWIDTH_6_MHZ: | ||
462 | if_freq = 4000000; | ||
463 | break; | ||
464 | case BANDWIDTH_7_MHZ: | ||
465 | if_freq = 4500000; | ||
466 | break; | ||
467 | default: /* 8 MHz or Auto */ | ||
468 | if_freq = 5000000; | ||
469 | break; | ||
470 | } | ||
471 | tuner_freq = params->frequency + if_freq; | ||
472 | |||
473 | i = 0; | ||
474 | while (tda827x_dvbt[i].lomax < tuner_freq) { | ||
475 | if(tda827x_dvbt[i + 1].lomax == 0) | ||
476 | break; | ||
477 | i++; | ||
478 | } | ||
479 | |||
480 | N = ((tuner_freq + 125000) / 250000) << (tda827x_dvbt[i].spd + 2); | ||
481 | tuner_buf[0] = 0; | ||
482 | tuner_buf[1] = (N>>8) | 0x40; | ||
483 | tuner_buf[2] = N & 0xff; | ||
484 | tuner_buf[3] = 0; | ||
485 | tuner_buf[4] = 0x52; | ||
486 | tuner_buf[5] = (tda827x_dvbt[i].spd << 6) + (tda827x_dvbt[i].div1p5 << 5) + | ||
487 | (tda827x_dvbt[i].bs << 3) + tda827x_dvbt[i].bp; | ||
488 | tuner_buf[6] = (tda827x_dvbt[i].gc3 << 4) + 0x8f; | ||
489 | tuner_buf[7] = 0xbf; | ||
490 | tuner_buf[8] = 0x2a; | ||
491 | tuner_buf[9] = 0x05; | ||
492 | tuner_buf[10] = 0xff; | ||
493 | tuner_buf[11] = 0x00; | ||
494 | tuner_buf[12] = 0x00; | ||
495 | tuner_buf[13] = 0x40; | ||
496 | |||
497 | tuner_msg.len = 14; | ||
498 | if (i2c_transfer(&dev->i2c_adap, &tuner_msg, 1) != 1) | ||
499 | return -EIO; | ||
500 | |||
501 | msleep(500); | ||
502 | /* correct CP value */ | ||
503 | tuner_buf[0] = 0x30; | ||
504 | tuner_buf[1] = 0x50 + tda827x_dvbt[i].cp; | ||
505 | tuner_msg.len = 2; | ||
506 | i2c_transfer(&dev->i2c_adap, &tuner_msg, 1); | ||
507 | |||
508 | return 0; | ||
509 | } | ||
510 | |||
511 | static void philips_tda827x_pll_sleep(struct dvb_frontend *fe) | ||
512 | { | ||
513 | struct saa7134_dev *dev = fe->dvb->priv; | ||
514 | static u8 tda827x_sleep[] = { 0x30, 0xd0}; | ||
515 | struct i2c_msg tuner_msg = {.addr = 0x60,.flags = 0,.buf = tda827x_sleep, | ||
516 | .len = sizeof(tda827x_sleep) }; | ||
517 | i2c_transfer(&dev->i2c_adap, &tuner_msg, 1); | ||
518 | } | ||
519 | |||
520 | static struct tda1004x_config tda827x_lifeview_config = { | ||
521 | .demod_address = 0x08, | ||
522 | .invert = 1, | ||
523 | .invert_oclk = 0, | ||
524 | .xtal_freq = TDA10046_XTAL_16M, | ||
525 | .agc_config = TDA10046_AGC_TDA827X, | ||
526 | .if_freq = TDA10046_FREQ_045, | ||
527 | .pll_init = philips_tda827x_pll_init, | ||
528 | .pll_set = philips_tda827x_pll_set, | ||
529 | .pll_sleep = philips_tda827x_pll_sleep, | ||
530 | .request_firmware = NULL, | ||
531 | }; | ||
532 | #endif | ||
533 | |||
534 | /* ------------------------------------------------------------------ */ | ||
535 | |||
186 | static int dvb_init(struct saa7134_dev *dev) | 536 | static int dvb_init(struct saa7134_dev *dev) |
187 | { | 537 | { |
188 | /* init struct videobuf_dvb */ | 538 | /* init struct videobuf_dvb */ |
@@ -197,18 +547,31 @@ static int dvb_init(struct saa7134_dev *dev) | |||
197 | dev); | 547 | dev); |
198 | 548 | ||
199 | switch (dev->board) { | 549 | switch (dev->board) { |
550 | #if CONFIG_DVB_MT352 | ||
200 | case SAA7134_BOARD_PINNACLE_300I_DVBT_PAL: | 551 | case SAA7134_BOARD_PINNACLE_300I_DVBT_PAL: |
201 | printk("%s: pinnacle 300i dvb setup\n",dev->name); | 552 | printk("%s: pinnacle 300i dvb setup\n",dev->name); |
202 | dev->dvb.frontend = mt352_attach(&pinnacle_300i, | 553 | dev->dvb.frontend = mt352_attach(&pinnacle_300i, |
203 | &dev->i2c_adap); | 554 | &dev->i2c_adap); |
204 | break; | 555 | break; |
556 | #endif | ||
557 | #if CONFIG_DVB_TDA1004X | ||
205 | case SAA7134_BOARD_MD7134: | 558 | case SAA7134_BOARD_MD7134: |
206 | dev->dvb.frontend = tda10046_attach(&medion_cardbus, | 559 | dev->dvb.frontend = tda10046_attach(&medion_cardbus, |
207 | &dev->i2c_adap); | 560 | &dev->i2c_adap); |
208 | if (NULL == dev->dvb.frontend) | ||
209 | printk("%s: Hmm, looks like this is the old MD7134 " | ||
210 | "version without DVB-T support\n",dev->name); | ||
211 | break; | 561 | break; |
562 | case SAA7134_BOARD_PHILIPS_TOUGH: | ||
563 | dev->dvb.frontend = tda10046_attach(&philips_tu1216_config, | ||
564 | &dev->i2c_adap); | ||
565 | break; | ||
566 | case SAA7134_BOARD_FLYDVBTDUO: | ||
567 | dev->dvb.frontend = tda10046_attach(&tda827x_lifeview_config, | ||
568 | &dev->i2c_adap); | ||
569 | break; | ||
570 | case SAA7134_BOARD_THYPHOON_DVBT_DUO_CARDBUS: | ||
571 | dev->dvb.frontend = tda10046_attach(&tda827x_lifeview_config, | ||
572 | &dev->i2c_adap); | ||
573 | break; | ||
574 | #endif | ||
212 | default: | 575 | default: |
213 | printk("%s: Huh? unknown DVB card?\n",dev->name); | 576 | printk("%s: Huh? unknown DVB card?\n",dev->name); |
214 | break; | 577 | break; |
@@ -227,8 +590,6 @@ static int dvb_fini(struct saa7134_dev *dev) | |||
227 | { | 590 | { |
228 | static int on = TDA9887_PRESENT | TDA9887_PORT2_INACTIVE; | 591 | static int on = TDA9887_PRESENT | TDA9887_PORT2_INACTIVE; |
229 | 592 | ||
230 | printk("%s: %s\n",dev->name,__FUNCTION__); | ||
231 | |||
232 | switch (dev->board) { | 593 | switch (dev->board) { |
233 | case SAA7134_BOARD_PINNACLE_300I_DVBT_PAL: | 594 | case SAA7134_BOARD_PINNACLE_300I_DVBT_PAL: |
234 | /* otherwise we don't detect the tuner on next insmod */ | 595 | /* otherwise we don't detect the tuner on next insmod */ |
diff --git a/drivers/media/video/saa7134/saa7134-i2c.c b/drivers/media/video/saa7134/saa7134-i2c.c index b6f002e8421d..93dd61978541 100644 --- a/drivers/media/video/saa7134/saa7134-i2c.c +++ b/drivers/media/video/saa7134/saa7134-i2c.c | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * $Id: saa7134-i2c.c,v 1.11 2005/06/12 01:36:14 mchehab Exp $ | 2 | * $Id: saa7134-i2c.c,v 1.19 2005/07/07 01:49:30 mkrufky Exp $ |
3 | * | 3 | * |
4 | * device driver for philips saa7134 based TV cards | 4 | * device driver for philips saa7134 based TV cards |
5 | * i2c interface support | 5 | * i2c interface support |
@@ -197,10 +197,6 @@ static inline int i2c_send_byte(struct saa7134_dev *dev, | |||
197 | enum i2c_status status; | 197 | enum i2c_status status; |
198 | __u32 dword; | 198 | __u32 dword; |
199 | 199 | ||
200 | #if 0 | ||
201 | i2c_set_attr(dev,attr); | ||
202 | saa_writeb(SAA7134_I2C_DATA, data); | ||
203 | #else | ||
204 | /* have to write both attr + data in one 32bit word */ | 200 | /* have to write both attr + data in one 32bit word */ |
205 | dword = saa_readl(SAA7134_I2C_ATTR_STATUS >> 2); | 201 | dword = saa_readl(SAA7134_I2C_ATTR_STATUS >> 2); |
206 | dword &= 0x0f; | 202 | dword &= 0x0f; |
@@ -210,7 +206,6 @@ static inline int i2c_send_byte(struct saa7134_dev *dev, | |||
210 | // dword |= 0x40 << 16; /* 400 kHz */ | 206 | // dword |= 0x40 << 16; /* 400 kHz */ |
211 | dword |= 0xf0 << 24; | 207 | dword |= 0xf0 << 24; |
212 | saa_writel(SAA7134_I2C_ATTR_STATUS >> 2, dword); | 208 | saa_writel(SAA7134_I2C_ATTR_STATUS >> 2, dword); |
213 | #endif | ||
214 | d2printk(KERN_DEBUG "%s: i2c data => 0x%x\n",dev->name,data); | 209 | d2printk(KERN_DEBUG "%s: i2c data => 0x%x\n",dev->name,data); |
215 | 210 | ||
216 | if (!i2c_is_busy_wait(dev)) | 211 | if (!i2c_is_busy_wait(dev)) |
@@ -331,12 +326,44 @@ static u32 functionality(struct i2c_adapter *adap) | |||
331 | 326 | ||
332 | static int attach_inform(struct i2c_client *client) | 327 | static int attach_inform(struct i2c_client *client) |
333 | { | 328 | { |
334 | struct saa7134_dev *dev = client->adapter->algo_data; | 329 | struct saa7134_dev *dev = client->adapter->algo_data; |
335 | int tuner = dev->tuner_type; | 330 | int tuner = dev->tuner_type; |
336 | int conf = dev->tda9887_conf; | 331 | int conf = dev->tda9887_conf; |
332 | struct tuner_setup tun_setup; | ||
333 | |||
334 | d1printk( "%s i2c attach [addr=0x%x,client=%s]\n", | ||
335 | client->driver->name,client->addr,i2c_clientname(client)); | ||
336 | |||
337 | if (!client->driver->command) | ||
338 | return 0; | ||
339 | |||
340 | if (saa7134_boards[dev->board].radio_type != UNSET) { | ||
341 | |||
342 | tun_setup.type = saa7134_boards[dev->board].radio_type; | ||
343 | tun_setup.addr = saa7134_boards[dev->board].radio_addr; | ||
344 | |||
345 | if ((tun_setup.addr == ADDR_UNSET) || (tun_setup.addr == client->addr)) { | ||
346 | tun_setup.mode_mask = T_RADIO; | ||
347 | |||
348 | client->driver->command(client, TUNER_SET_TYPE_ADDR, &tun_setup); | ||
349 | } | ||
350 | } | ||
351 | |||
352 | if (tuner != UNSET) { | ||
353 | |||
354 | tun_setup.type = tuner; | ||
355 | tun_setup.addr = saa7134_boards[dev->board].tuner_addr; | ||
356 | |||
357 | if ((tun_setup.addr == ADDR_UNSET)||(tun_setup.addr == client->addr)) { | ||
358 | |||
359 | tun_setup.mode_mask = T_ANALOG_TV; | ||
360 | |||
361 | client->driver->command(client,TUNER_SET_TYPE_ADDR, &tun_setup); | ||
362 | } | ||
363 | } | ||
364 | |||
365 | client->driver->command(client, TDA9887_SET_CONFIG, &conf); | ||
337 | 366 | ||
338 | saa7134_i2c_call_clients(dev,TUNER_SET_TYPE,&tuner); | ||
339 | saa7134_i2c_call_clients(dev,TDA9887_SET_CONFIG,&conf); | ||
340 | return 0; | 367 | return 0; |
341 | } | 368 | } |
342 | 369 | ||
diff --git a/drivers/media/video/saa7134/saa7134-input.c b/drivers/media/video/saa7134/saa7134-input.c index aba2b9de60de..213740122fe6 100644 --- a/drivers/media/video/saa7134/saa7134-input.c +++ b/drivers/media/video/saa7134/saa7134-input.c | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * $Id: saa7134-input.c,v 1.19 2005/06/07 18:02:26 nsh Exp $ | 2 | * $Id: saa7134-input.c,v 1.21 2005/06/22 23:37:34 nsh Exp $ |
3 | * | 3 | * |
4 | * handle saa7134 IR remotes via linux kernel input layer. | 4 | * handle saa7134 IR remotes via linux kernel input layer. |
5 | * | 5 | * |
@@ -68,10 +68,8 @@ static IR_KEYTAB_TYPE flyvideo_codes[IR_KEYTAB_SIZE] = { | |||
68 | [ 6 ] = KEY_AGAIN, // Recal | 68 | [ 6 ] = KEY_AGAIN, // Recal |
69 | [ 16 ] = KEY_KPENTER, // Enter | 69 | [ 16 ] = KEY_KPENTER, // Enter |
70 | 70 | ||
71 | #if 1 /* FIXME */ | ||
72 | [ 26 ] = KEY_F22, // Stereo | 71 | [ 26 ] = KEY_F22, // Stereo |
73 | [ 24 ] = KEY_EDIT, // AV Source | 72 | [ 24 ] = KEY_EDIT, // AV Source |
74 | #endif | ||
75 | }; | 73 | }; |
76 | 74 | ||
77 | static IR_KEYTAB_TYPE cinergy_codes[IR_KEYTAB_SIZE] = { | 75 | static IR_KEYTAB_TYPE cinergy_codes[IR_KEYTAB_SIZE] = { |
@@ -172,45 +170,45 @@ static IR_KEYTAB_TYPE eztv_codes[IR_KEYTAB_SIZE] = { | |||
172 | }; | 170 | }; |
173 | 171 | ||
174 | static IR_KEYTAB_TYPE avacssmart_codes[IR_KEYTAB_SIZE] = { | 172 | static IR_KEYTAB_TYPE avacssmart_codes[IR_KEYTAB_SIZE] = { |
175 | [ 30 ] = KEY_POWER, // power | 173 | [ 30 ] = KEY_POWER, // power |
176 | [ 28 ] = KEY_SEARCH, // scan | 174 | [ 28 ] = KEY_SEARCH, // scan |
177 | [ 7 ] = KEY_SELECT, // source | 175 | [ 7 ] = KEY_SELECT, // source |
178 | 176 | ||
179 | [ 22 ] = KEY_VOLUMEUP, | 177 | [ 22 ] = KEY_VOLUMEUP, |
180 | [ 20 ] = KEY_VOLUMEDOWN, | 178 | [ 20 ] = KEY_VOLUMEDOWN, |
181 | [ 31 ] = KEY_CHANNELUP, | 179 | [ 31 ] = KEY_CHANNELUP, |
182 | [ 23 ] = KEY_CHANNELDOWN, | 180 | [ 23 ] = KEY_CHANNELDOWN, |
183 | [ 24 ] = KEY_MUTE, | 181 | [ 24 ] = KEY_MUTE, |
184 | 182 | ||
185 | [ 2 ] = KEY_KP0, | 183 | [ 2 ] = KEY_KP0, |
186 | [ 1 ] = KEY_KP1, | 184 | [ 1 ] = KEY_KP1, |
187 | [ 11 ] = KEY_KP2, | 185 | [ 11 ] = KEY_KP2, |
188 | [ 27 ] = KEY_KP3, | 186 | [ 27 ] = KEY_KP3, |
189 | [ 5 ] = KEY_KP4, | 187 | [ 5 ] = KEY_KP4, |
190 | [ 9 ] = KEY_KP5, | 188 | [ 9 ] = KEY_KP5, |
191 | [ 21 ] = KEY_KP6, | 189 | [ 21 ] = KEY_KP6, |
192 | [ 6 ] = KEY_KP7, | 190 | [ 6 ] = KEY_KP7, |
193 | [ 10 ] = KEY_KP8, | 191 | [ 10 ] = KEY_KP8, |
194 | [ 18 ] = KEY_KP9, | 192 | [ 18 ] = KEY_KP9, |
195 | [ 16 ] = KEY_KPDOT, | 193 | [ 16 ] = KEY_KPDOT, |
196 | 194 | ||
197 | [ 3 ] = KEY_TUNER, // tv/fm | 195 | [ 3 ] = KEY_TUNER, // tv/fm |
198 | [ 4 ] = KEY_REWIND, // fm tuning left or function left | 196 | [ 4 ] = KEY_REWIND, // fm tuning left or function left |
199 | [ 12 ] = KEY_FORWARD, // fm tuning right or function right | 197 | [ 12 ] = KEY_FORWARD, // fm tuning right or function right |
200 | 198 | ||
201 | [ 0 ] = KEY_RECORD, | 199 | [ 0 ] = KEY_RECORD, |
202 | [ 8 ] = KEY_STOP, | 200 | [ 8 ] = KEY_STOP, |
203 | [ 17 ] = KEY_PLAY, | 201 | [ 17 ] = KEY_PLAY, |
204 | 202 | ||
205 | [ 25 ] = KEY_ZOOM, | 203 | [ 25 ] = KEY_ZOOM, |
206 | [ 14 ] = KEY_MENU, // function | 204 | [ 14 ] = KEY_MENU, // function |
207 | [ 19 ] = KEY_AGAIN, // recall | 205 | [ 19 ] = KEY_AGAIN, // recall |
208 | [ 29 ] = KEY_RESTART, // reset | 206 | [ 29 ] = KEY_RESTART, // reset |
207 | [ 26 ] = KEY_SHUFFLE, // snapshot/shuffle | ||
209 | 208 | ||
210 | // FIXME | 209 | // FIXME |
211 | [ 13 ] = KEY_F21, // mts | 210 | [ 13 ] = KEY_F21, // mts |
212 | [ 15 ] = KEY_F22, // min | 211 | [ 15 ] = KEY_F22, // min |
213 | [ 26 ] = KEY_F23, // freeze | ||
214 | }; | 212 | }; |
215 | 213 | ||
216 | /* Alex Hermann <gaaf@gmx.net> */ | 214 | /* Alex Hermann <gaaf@gmx.net> */ |
@@ -489,13 +487,14 @@ int saa7134_input_init1(struct saa7134_dev *dev) | |||
489 | break; | 487 | break; |
490 | case SAA7134_BOARD_ECS_TVP3XP: | 488 | case SAA7134_BOARD_ECS_TVP3XP: |
491 | case SAA7134_BOARD_ECS_TVP3XP_4CB5: | 489 | case SAA7134_BOARD_ECS_TVP3XP_4CB5: |
492 | ir_codes = eztv_codes; | 490 | ir_codes = eztv_codes; |
493 | mask_keycode = 0x00017c; | 491 | mask_keycode = 0x00017c; |
494 | mask_keyup = 0x000002; | 492 | mask_keyup = 0x000002; |
495 | polling = 50; // ms | 493 | polling = 50; // ms |
496 | break; | 494 | break; |
495 | case SAA7134_BOARD_KWORLD_XPERT: | ||
497 | case SAA7134_BOARD_AVACSSMARTTV: | 496 | case SAA7134_BOARD_AVACSSMARTTV: |
498 | ir_codes = avacssmart_codes; | 497 | ir_codes = avacssmart_codes; |
499 | mask_keycode = 0x00001F; | 498 | mask_keycode = 0x00001F; |
500 | mask_keyup = 0x000020; | 499 | mask_keyup = 0x000020; |
501 | polling = 50; // ms | 500 | polling = 50; // ms |
@@ -524,6 +523,7 @@ int saa7134_input_init1(struct saa7134_dev *dev) | |||
524 | polling = 50; // ms | 523 | polling = 50; // ms |
525 | break; | 524 | break; |
526 | case SAA7134_BOARD_VIDEOMATE_TV_PVR: | 525 | case SAA7134_BOARD_VIDEOMATE_TV_PVR: |
526 | case SAA7134_BOARD_VIDEOMATE_TV_GOLD_PLUSII: | ||
527 | ir_codes = videomate_tv_pvr_codes; | 527 | ir_codes = videomate_tv_pvr_codes; |
528 | mask_keycode = 0x00003F; | 528 | mask_keycode = 0x00003F; |
529 | mask_keyup = 0x400000; | 529 | mask_keyup = 0x400000; |
diff --git a/drivers/media/video/saa7134/saa7134-oss.c b/drivers/media/video/saa7134/saa7134-oss.c index 81732904623f..b5bede95dbf5 100644 --- a/drivers/media/video/saa7134/saa7134-oss.c +++ b/drivers/media/video/saa7134/saa7134-oss.c | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * $Id: saa7134-oss.c,v 1.14 2005/05/18 22:45:16 hhackmann Exp $ | 2 | * $Id: saa7134-oss.c,v 1.17 2005/06/28 23:41:47 mkrufky Exp $ |
3 | * | 3 | * |
4 | * device driver for philips saa7134 based TV cards | 4 | * device driver for philips saa7134 based TV cards |
5 | * oss dsp interface | 5 | * oss dsp interface |
@@ -556,21 +556,28 @@ mixer_recsrc_7134(struct saa7134_dev *dev) | |||
556 | static int | 556 | static int |
557 | mixer_recsrc_7133(struct saa7134_dev *dev) | 557 | mixer_recsrc_7133(struct saa7134_dev *dev) |
558 | { | 558 | { |
559 | u32 value = 0xbbbbbb; | 559 | u32 anabar, xbarin; |
560 | 560 | ||
561 | xbarin = 0x03; // adc | ||
562 | anabar = 0; | ||
561 | switch (dev->oss.input) { | 563 | switch (dev->oss.input) { |
562 | case TV: | 564 | case TV: |
563 | value = 0xbbbb10; /* MAIN */ | 565 | xbarin = 0; // Demodulator |
566 | anabar = 2; // DACs | ||
564 | break; | 567 | break; |
565 | case LINE1: | 568 | case LINE1: |
566 | value = 0xbbbb32; /* AUX1 */ | 569 | anabar = 0; // aux1, aux1 |
567 | break; | 570 | break; |
568 | case LINE2: | 571 | case LINE2: |
569 | case LINE2_LEFT: | 572 | case LINE2_LEFT: |
570 | value = 0xbbbb54; /* AUX2 */ | 573 | anabar = 9; // aux2, aux2 |
571 | break; | 574 | break; |
572 | } | 575 | } |
573 | saa_dsp_writel(dev, 0x46c >> 2, value); | 576 | /* output xbar always main channel */ |
577 | saa_dsp_writel(dev, 0x46c >> 2, 0xbbbb10); | ||
578 | saa_dsp_writel(dev, 0x464 >> 2, xbarin); | ||
579 | saa_writel(0x594 >> 2, anabar); | ||
580 | |||
574 | return 0; | 581 | return 0; |
575 | } | 582 | } |
576 | 583 | ||
diff --git a/drivers/media/video/saa7134/saa7134-ts.c b/drivers/media/video/saa7134/saa7134-ts.c index 345eb2a8c28d..4dd9f1b23928 100644 --- a/drivers/media/video/saa7134/saa7134-ts.c +++ b/drivers/media/video/saa7134/saa7134-ts.c | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * $Id: saa7134-ts.c,v 1.14 2005/02/03 10:24:33 kraxel Exp $ | 2 | * $Id: saa7134-ts.c,v 1.15 2005/06/14 22:48:18 hhackmann Exp $ |
3 | * | 3 | * |
4 | * device driver for philips saa7134 based TV cards | 4 | * device driver for philips saa7134 based TV cards |
5 | * video4linux video interface | 5 | * video4linux video interface |
@@ -221,10 +221,10 @@ void saa7134_irq_ts_done(struct saa7134_dev *dev, unsigned long status) | |||
221 | if (dev->ts_q.curr) { | 221 | if (dev->ts_q.curr) { |
222 | field = dev->ts_q.curr->vb.field; | 222 | field = dev->ts_q.curr->vb.field; |
223 | if (field == V4L2_FIELD_TOP) { | 223 | if (field == V4L2_FIELD_TOP) { |
224 | if ((status & 0x100000) != 0x000000) | 224 | if ((status & 0x100000) != 0x100000) |
225 | goto done; | 225 | goto done; |
226 | } else { | 226 | } else { |
227 | if ((status & 0x100000) != 0x100000) | 227 | if ((status & 0x100000) != 0x000000) |
228 | goto done; | 228 | goto done; |
229 | } | 229 | } |
230 | saa7134_buffer_finish(dev,&dev->ts_q,STATE_DONE); | 230 | saa7134_buffer_finish(dev,&dev->ts_q,STATE_DONE); |
diff --git a/drivers/media/video/saa7134/saa7134-tvaudio.c b/drivers/media/video/saa7134/saa7134-tvaudio.c index 3617e7f7a410..eeafa5a71d2b 100644 --- a/drivers/media/video/saa7134/saa7134-tvaudio.c +++ b/drivers/media/video/saa7134/saa7134-tvaudio.c | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * $Id: saa7134-tvaudio.c,v 1.25 2005/06/07 19:00:38 nsh Exp $ | 2 | * $Id: saa7134-tvaudio.c,v 1.30 2005/06/28 23:41:47 mkrufky Exp $ |
3 | * | 3 | * |
4 | * device driver for philips saa7134 based TV cards | 4 | * device driver for philips saa7134 based TV cards |
5 | * tv audio decoder (fm stereo, nicam, ...) | 5 | * tv audio decoder (fm stereo, nicam, ...) |
@@ -169,7 +169,7 @@ static void tvaudio_init(struct saa7134_dev *dev) | |||
169 | int clock = saa7134_boards[dev->board].audio_clock; | 169 | int clock = saa7134_boards[dev->board].audio_clock; |
170 | 170 | ||
171 | if (UNSET != audio_clock_override) | 171 | if (UNSET != audio_clock_override) |
172 | clock = audio_clock_override; | 172 | clock = audio_clock_override; |
173 | 173 | ||
174 | /* init all audio registers */ | 174 | /* init all audio registers */ |
175 | saa_writeb(SAA7134_AUDIO_PLL_CTRL, 0x00); | 175 | saa_writeb(SAA7134_AUDIO_PLL_CTRL, 0x00); |
@@ -219,14 +219,17 @@ static void mute_input_7134(struct saa7134_dev *dev) | |||
219 | in = dev->input; | 219 | in = dev->input; |
220 | mute = (dev->ctl_mute || | 220 | mute = (dev->ctl_mute || |
221 | (dev->automute && (&card(dev).radio) != in)); | 221 | (dev->automute && (&card(dev).radio) != in)); |
222 | if (PCI_DEVICE_ID_PHILIPS_SAA7130 == dev->pci->device && | 222 | if (card(dev).mute.name) { |
223 | card(dev).mute.name) { | 223 | /* |
224 | /* 7130 - we'll mute using some unconnected audio input */ | 224 | * 7130 - we'll mute using some unconnected audio input |
225 | * 7134 - we'll probably should switch external mux with gpio | ||
226 | */ | ||
225 | if (mute) | 227 | if (mute) |
226 | in = &card(dev).mute; | 228 | in = &card(dev).mute; |
227 | } | 229 | } |
230 | |||
228 | if (dev->hw_mute == mute && | 231 | if (dev->hw_mute == mute && |
229 | dev->hw_input == in) { | 232 | dev->hw_input == in) { |
230 | dprintk("mute/input: nothing to do [mute=%d,input=%s]\n", | 233 | dprintk("mute/input: nothing to do [mute=%d,input=%s]\n", |
231 | mute,in->name); | 234 | mute,in->name); |
232 | return; | 235 | return; |
@@ -260,6 +263,7 @@ static void mute_input_7134(struct saa7134_dev *dev) | |||
260 | /* switch gpio-connected external audio mux */ | 263 | /* switch gpio-connected external audio mux */ |
261 | if (0 == card(dev).gpiomask) | 264 | if (0 == card(dev).gpiomask) |
262 | return; | 265 | return; |
266 | |||
263 | mask = card(dev).gpiomask; | 267 | mask = card(dev).gpiomask; |
264 | saa_andorl(SAA7134_GPIO_GPMODE0 >> 2, mask, mask); | 268 | saa_andorl(SAA7134_GPIO_GPMODE0 >> 2, mask, mask); |
265 | saa_andorl(SAA7134_GPIO_GPSTATUS0 >> 2, mask, in->gpio); | 269 | saa_andorl(SAA7134_GPIO_GPSTATUS0 >> 2, mask, in->gpio); |
@@ -339,13 +343,8 @@ static int tvaudio_sleep(struct saa7134_dev *dev, int timeout) | |||
339 | set_current_state(TASK_INTERRUPTIBLE); | 343 | set_current_state(TASK_INTERRUPTIBLE); |
340 | schedule(); | 344 | schedule(); |
341 | } else { | 345 | } else { |
342 | #if 0 | ||
343 | /* hmm, that one doesn't return on wakeup ... */ | ||
344 | msleep_interruptible(timeout); | ||
345 | #else | ||
346 | set_current_state(TASK_INTERRUPTIBLE); | 346 | set_current_state(TASK_INTERRUPTIBLE); |
347 | schedule_timeout(msecs_to_jiffies(timeout)); | 347 | schedule_timeout(msecs_to_jiffies(timeout)); |
348 | #endif | ||
349 | } | 348 | } |
350 | } | 349 | } |
351 | remove_wait_queue(&dev->thread.wq, &wait); | 350 | remove_wait_queue(&dev->thread.wq, &wait); |
@@ -400,27 +399,10 @@ static int tvaudio_checkcarrier(struct saa7134_dev *dev, struct mainscan *scan) | |||
400 | return value; | 399 | return value; |
401 | } | 400 | } |
402 | 401 | ||
403 | #if 0 | ||
404 | static void sifdebug_dump_regs(struct saa7134_dev *dev) | ||
405 | { | ||
406 | print_regb(AUDIO_STATUS); | ||
407 | print_regb(IDENT_SIF); | ||
408 | print_regb(LEVEL_READOUT1); | ||
409 | print_regb(LEVEL_READOUT2); | ||
410 | print_regb(DCXO_IDENT_CTRL); | ||
411 | print_regb(DEMODULATOR); | ||
412 | print_regb(AGC_GAIN_SELECT); | ||
413 | print_regb(MONITOR_SELECT); | ||
414 | print_regb(FM_DEEMPHASIS); | ||
415 | print_regb(FM_DEMATRIX); | ||
416 | print_regb(SIF_SAMPLE_FREQ); | ||
417 | print_regb(ANALOG_IO_SELECT); | ||
418 | } | ||
419 | #endif | ||
420 | 402 | ||
421 | static int tvaudio_getstereo(struct saa7134_dev *dev, struct saa7134_tvaudio *audio) | 403 | static int tvaudio_getstereo(struct saa7134_dev *dev, struct saa7134_tvaudio *audio) |
422 | { | 404 | { |
423 | __u32 idp,nicam; | 405 | __u32 idp, nicam, nicam_status; |
424 | int retval = -1; | 406 | int retval = -1; |
425 | 407 | ||
426 | switch (audio->mode) { | 408 | switch (audio->mode) { |
@@ -442,18 +424,24 @@ static int tvaudio_getstereo(struct saa7134_dev *dev, struct saa7134_tvaudio *au | |||
442 | break; | 424 | break; |
443 | case TVAUDIO_NICAM_FM: | 425 | case TVAUDIO_NICAM_FM: |
444 | case TVAUDIO_NICAM_AM: | 426 | case TVAUDIO_NICAM_AM: |
445 | nicam = saa_readb(SAA7134_NICAM_STATUS); | 427 | nicam = saa_readb(SAA7134_AUDIO_STATUS); |
446 | dprintk("getstereo: nicam=0x%x\n",nicam); | 428 | dprintk("getstereo: nicam=0x%x\n",nicam); |
447 | switch (nicam & 0x0b) { | 429 | if (nicam & 0x1) { |
448 | case 0x08: | 430 | nicam_status = saa_readb(SAA7134_NICAM_STATUS); |
449 | retval = V4L2_TUNER_SUB_MONO; | 431 | dprintk("getstereo: nicam_status=0x%x\n", nicam_status); |
450 | break; | 432 | |
451 | case 0x09: | 433 | switch (nicam_status & 0x03) { |
452 | retval = V4L2_TUNER_SUB_LANG1 | V4L2_TUNER_SUB_LANG2; | 434 | case 0x01: |
453 | break; | 435 | retval = V4L2_TUNER_SUB_LANG1 | V4L2_TUNER_SUB_LANG2; |
454 | case 0x0a: | 436 | break; |
455 | retval = V4L2_TUNER_SUB_MONO | V4L2_TUNER_SUB_STEREO; | 437 | case 0x02: |
456 | break; | 438 | retval = V4L2_TUNER_SUB_MONO | V4L2_TUNER_SUB_STEREO; |
439 | break; | ||
440 | default: | ||
441 | retval = V4L2_TUNER_SUB_MONO; | ||
442 | } | ||
443 | } else { | ||
444 | /* No nicam detected */ | ||
457 | } | 445 | } |
458 | break; | 446 | break; |
459 | } | 447 | } |
@@ -489,15 +477,15 @@ static int tvaudio_setstereo(struct saa7134_dev *dev, struct saa7134_tvaudio *au | |||
489 | break; | 477 | break; |
490 | case TVAUDIO_FM_K_STEREO: | 478 | case TVAUDIO_FM_K_STEREO: |
491 | case TVAUDIO_FM_BG_STEREO: | 479 | case TVAUDIO_FM_BG_STEREO: |
480 | case TVAUDIO_NICAM_AM: | ||
481 | case TVAUDIO_NICAM_FM: | ||
492 | dprintk("setstereo [fm] => %s\n", | 482 | dprintk("setstereo [fm] => %s\n", |
493 | name[ mode % ARRAY_SIZE(name) ]); | 483 | name[ mode % ARRAY_SIZE(name) ]); |
494 | reg = fm[ mode % ARRAY_SIZE(fm) ]; | 484 | reg = fm[ mode % ARRAY_SIZE(fm) ]; |
495 | saa_writeb(SAA7134_FM_DEMATRIX, reg); | 485 | saa_writeb(SAA7134_FM_DEMATRIX, reg); |
496 | break; | 486 | break; |
497 | case TVAUDIO_FM_SAT_STEREO: | 487 | case TVAUDIO_FM_SAT_STEREO: |
498 | case TVAUDIO_NICAM_AM: | 488 | /* Not implemented */ |
499 | case TVAUDIO_NICAM_FM: | ||
500 | /* FIXME */ | ||
501 | break; | 489 | break; |
502 | } | 490 | } |
503 | return 0; | 491 | return 0; |
@@ -596,7 +584,7 @@ static int tvaudio_thread(void *data) | |||
596 | /* find the exact tv audio norm */ | 584 | /* find the exact tv audio norm */ |
597 | for (audio = UNSET, i = 0; i < TVAUDIO; i++) { | 585 | for (audio = UNSET, i = 0; i < TVAUDIO; i++) { |
598 | if (dev->tvnorm->id != UNSET && | 586 | if (dev->tvnorm->id != UNSET && |
599 | !(dev->tvnorm->id & tvaudio[i].std)) | 587 | !(dev->tvnorm->id & tvaudio[i].std)) |
600 | continue; | 588 | continue; |
601 | if (tvaudio[i].carr1 != carrier) | 589 | if (tvaudio[i].carr1 != carrier) |
602 | continue; | 590 | continue; |
@@ -703,24 +691,6 @@ static inline int saa_dsp_wait_bit(struct saa7134_dev *dev, int bit) | |||
703 | return 0; | 691 | return 0; |
704 | } | 692 | } |
705 | 693 | ||
706 | #if 0 | ||
707 | static int saa_dsp_readl(struct saa7134_dev *dev, int reg, u32 *value) | ||
708 | { | ||
709 | int err; | ||
710 | |||
711 | d2printk("dsp read reg 0x%x\n", reg<<2); | ||
712 | saa_readl(reg); | ||
713 | err = saa_dsp_wait_bit(dev,SAA7135_DSP_RWSTATE_RDB); | ||
714 | if (err < 0) | ||
715 | return err; | ||
716 | *value = saa_readl(reg); | ||
717 | d2printk("dsp read => 0x%06x\n", *value & 0xffffff); | ||
718 | err = saa_dsp_wait_bit(dev,SAA7135_DSP_RWSTATE_IDA); | ||
719 | if (err < 0) | ||
720 | return err; | ||
721 | return 0; | ||
722 | } | ||
723 | #endif | ||
724 | 694 | ||
725 | int saa_dsp_writel(struct saa7134_dev *dev, int reg, u32 value) | 695 | int saa_dsp_writel(struct saa7134_dev *dev, int reg, u32 value) |
726 | { | 696 | { |
@@ -753,31 +723,50 @@ static int getstereo_7133(struct saa7134_dev *dev) | |||
753 | static int mute_input_7133(struct saa7134_dev *dev) | 723 | static int mute_input_7133(struct saa7134_dev *dev) |
754 | { | 724 | { |
755 | u32 reg = 0; | 725 | u32 reg = 0; |
726 | u32 xbarin, xbarout; | ||
756 | int mask; | 727 | int mask; |
728 | struct saa7134_input *in; | ||
757 | 729 | ||
730 | /* Hac 0506 route OSS sound simultanously */ | ||
731 | xbarin = 0x03; | ||
758 | switch (dev->input->amux) { | 732 | switch (dev->input->amux) { |
759 | case TV: | 733 | case TV: |
760 | reg = 0x02; | 734 | reg = 0x02; |
735 | xbarin = 0; | ||
761 | break; | 736 | break; |
762 | case LINE1: | 737 | case LINE1: |
763 | reg = 0x00; | 738 | reg = 0x00; |
764 | break; | 739 | break; |
765 | case LINE2: | 740 | case LINE2: |
766 | case LINE2_LEFT: | 741 | case LINE2_LEFT: |
767 | reg = 0x01; | 742 | reg = 0x09; |
768 | break; | 743 | break; |
769 | } | 744 | } |
770 | if (dev->ctl_mute) | 745 | saa_dsp_writel(dev, 0x464 >> 2, xbarin); |
746 | if (dev->ctl_mute) { | ||
771 | reg = 0x07; | 747 | reg = 0x07; |
748 | xbarout = 0xbbbbbb; | ||
749 | } else | ||
750 | xbarout = 0xbbbb10; | ||
751 | saa_dsp_writel(dev, 0x46c >> 2, xbarout); | ||
752 | |||
772 | saa_writel(0x594 >> 2, reg); | 753 | saa_writel(0x594 >> 2, reg); |
773 | 754 | ||
755 | |||
774 | /* switch gpio-connected external audio mux */ | 756 | /* switch gpio-connected external audio mux */ |
775 | if (0 != card(dev).gpiomask) { | 757 | if (0 != card(dev).gpiomask) { |
776 | mask = card(dev).gpiomask; | 758 | mask = card(dev).gpiomask; |
759 | |||
760 | if (card(dev).mute.name && dev->ctl_mute) | ||
761 | in = &card(dev).mute; | ||
762 | else | ||
763 | in = dev->input; | ||
764 | |||
777 | saa_andorl(SAA7134_GPIO_GPMODE0 >> 2, mask, mask); | 765 | saa_andorl(SAA7134_GPIO_GPMODE0 >> 2, mask, mask); |
778 | saa_andorl(SAA7134_GPIO_GPSTATUS0 >> 2, mask, dev->input->gpio); | 766 | saa_andorl(SAA7134_GPIO_GPSTATUS0 >> 2, mask, in->gpio); |
779 | saa7134_track_gpio(dev,dev->input->name); | 767 | saa7134_track_gpio(dev,in->name); |
780 | } | 768 | } |
769 | |||
781 | return 0; | 770 | return 0; |
782 | } | 771 | } |
783 | 772 | ||
diff --git a/drivers/media/video/saa7134/saa7134-vbi.c b/drivers/media/video/saa7134/saa7134-vbi.c index 3c33c591cc85..29e51cad2aaf 100644 --- a/drivers/media/video/saa7134/saa7134-vbi.c +++ b/drivers/media/video/saa7134/saa7134-vbi.c | |||
@@ -130,13 +130,7 @@ static int buffer_prepare(struct videobuf_queue *q, | |||
130 | lines = norm->vbi_v_stop_0 - norm->vbi_v_start_0 +1; | 130 | lines = norm->vbi_v_stop_0 - norm->vbi_v_start_0 +1; |
131 | if (lines > VBI_LINE_COUNT) | 131 | if (lines > VBI_LINE_COUNT) |
132 | lines = VBI_LINE_COUNT; | 132 | lines = VBI_LINE_COUNT; |
133 | #if 1 | ||
134 | llength = VBI_LINE_LENGTH; | 133 | llength = VBI_LINE_LENGTH; |
135 | #else | ||
136 | llength = (norm->h_stop - norm->h_start +1) * 2; | ||
137 | if (llength > VBI_LINE_LENGTH) | ||
138 | llength = VBI_LINE_LENGTH; | ||
139 | #endif | ||
140 | size = lines * llength * 2; | 134 | size = lines * llength * 2; |
141 | if (0 != buf->vb.baddr && buf->vb.bsize < size) | 135 | if (0 != buf->vb.baddr && buf->vb.bsize < size) |
142 | return -EINVAL; | 136 | return -EINVAL; |
@@ -178,13 +172,7 @@ buffer_setup(struct videobuf_queue *q, unsigned int *count, unsigned int *size) | |||
178 | int llength,lines; | 172 | int llength,lines; |
179 | 173 | ||
180 | lines = dev->tvnorm->vbi_v_stop_0 - dev->tvnorm->vbi_v_start_0 +1; | 174 | lines = dev->tvnorm->vbi_v_stop_0 - dev->tvnorm->vbi_v_start_0 +1; |
181 | #if 1 | ||
182 | llength = VBI_LINE_LENGTH; | 175 | llength = VBI_LINE_LENGTH; |
183 | #else | ||
184 | llength = (norm->h_stop - norm->h_start +1) * 2; | ||
185 | if (llength > VBI_LINE_LENGTH) | ||
186 | llength = VBI_LINE_LENGTH; | ||
187 | #endif | ||
188 | *size = lines * llength * 2; | 176 | *size = lines * llength * 2; |
189 | if (0 == *count) | 177 | if (0 == *count) |
190 | *count = vbibufs; | 178 | *count = vbibufs; |
diff --git a/drivers/media/video/saa7134/saa7134-video.c b/drivers/media/video/saa7134/saa7134-video.c index c0a2ee520531..a4c2f751d097 100644 --- a/drivers/media/video/saa7134/saa7134-video.c +++ b/drivers/media/video/saa7134/saa7134-video.c | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * $Id: saa7134-video.c,v 1.30 2005/06/07 19:00:38 nsh Exp $ | 2 | * $Id: saa7134-video.c,v 1.36 2005/06/28 23:41:47 mkrufky Exp $ |
3 | * | 3 | * |
4 | * device driver for philips saa7134 based TV cards | 4 | * device driver for philips saa7134 based TV cards |
5 | * video4linux video interface | 5 | * video4linux video interface |
@@ -274,7 +274,7 @@ static struct saa7134_tvnorm tvnorms[] = { | |||
274 | 274 | ||
275 | .h_start = 0, | 275 | .h_start = 0, |
276 | .h_stop = 719, | 276 | .h_stop = 719, |
277 | .video_v_start = 23, | 277 | .video_v_start = 23, |
278 | .video_v_stop = 262, | 278 | .video_v_stop = 262, |
279 | .vbi_v_start_0 = 10, | 279 | .vbi_v_start_0 = 10, |
280 | .vbi_v_stop_0 = 21, | 280 | .vbi_v_stop_0 = 21, |
@@ -1204,7 +1204,6 @@ static int video_open(struct inode *inode, struct file *file) | |||
1204 | struct list_head *list; | 1204 | struct list_head *list; |
1205 | enum v4l2_buf_type type = V4L2_BUF_TYPE_VIDEO_CAPTURE; | 1205 | enum v4l2_buf_type type = V4L2_BUF_TYPE_VIDEO_CAPTURE; |
1206 | int radio = 0; | 1206 | int radio = 0; |
1207 | |||
1208 | list_for_each(list,&saa7134_devlist) { | 1207 | list_for_each(list,&saa7134_devlist) { |
1209 | h = list_entry(list, struct saa7134_dev, devlist); | 1208 | h = list_entry(list, struct saa7134_dev, devlist); |
1210 | if (h->video_dev && (h->video_dev->minor == minor)) | 1209 | if (h->video_dev && (h->video_dev->minor == minor)) |
@@ -1256,12 +1255,12 @@ static int video_open(struct inode *inode, struct file *file) | |||
1256 | if (fh->radio) { | 1255 | if (fh->radio) { |
1257 | /* switch to radio mode */ | 1256 | /* switch to radio mode */ |
1258 | saa7134_tvaudio_setinput(dev,&card(dev).radio); | 1257 | saa7134_tvaudio_setinput(dev,&card(dev).radio); |
1259 | saa7134_i2c_call_clients(dev,AUDC_SET_RADIO,NULL); | 1258 | saa7134_i2c_call_clients(dev,AUDC_SET_RADIO, NULL); |
1260 | } else { | 1259 | } else { |
1261 | /* switch to video/vbi mode */ | 1260 | /* switch to video/vbi mode */ |
1262 | video_mux(dev,dev->ctl_input); | 1261 | video_mux(dev,dev->ctl_input); |
1263 | } | 1262 | } |
1264 | return 0; | 1263 | return 0; |
1265 | } | 1264 | } |
1266 | 1265 | ||
1267 | static ssize_t | 1266 | static ssize_t |
@@ -1304,10 +1303,10 @@ video_poll(struct file *file, struct poll_table_struct *wait) | |||
1304 | } else { | 1303 | } else { |
1305 | down(&fh->cap.lock); | 1304 | down(&fh->cap.lock); |
1306 | if (UNSET == fh->cap.read_off) { | 1305 | if (UNSET == fh->cap.read_off) { |
1307 | /* need to capture a new frame */ | 1306 | /* need to capture a new frame */ |
1308 | if (res_locked(fh->dev,RESOURCE_VIDEO)) { | 1307 | if (res_locked(fh->dev,RESOURCE_VIDEO)) { |
1309 | up(&fh->cap.lock); | 1308 | up(&fh->cap.lock); |
1310 | return POLLERR; | 1309 | return POLLERR; |
1311 | } | 1310 | } |
1312 | if (0 != fh->cap.ops->buf_prepare(&fh->cap,fh->cap.read_buf,fh->cap.field)) { | 1311 | if (0 != fh->cap.ops->buf_prepare(&fh->cap,fh->cap.read_buf,fh->cap.field)) { |
1313 | up(&fh->cap.lock); | 1312 | up(&fh->cap.lock); |
@@ -1363,6 +1362,36 @@ static int video_release(struct inode *inode, struct file *file) | |||
1363 | res_free(dev,fh,RESOURCE_VBI); | 1362 | res_free(dev,fh,RESOURCE_VBI); |
1364 | } | 1363 | } |
1365 | 1364 | ||
1365 | /* ts-capture will not work in planar mode, so turn it off Hac: 04.05*/ | ||
1366 | saa_andorb(SAA7134_OFMT_VIDEO_A, 0x1f, 0); | ||
1367 | saa_andorb(SAA7134_OFMT_VIDEO_B, 0x1f, 0); | ||
1368 | saa_andorb(SAA7134_OFMT_DATA_A, 0x1f, 0); | ||
1369 | saa_andorb(SAA7134_OFMT_DATA_B, 0x1f, 0); | ||
1370 | |||
1371 | if (dev->tuner_type == TUNER_PHILIPS_TDA8290) { | ||
1372 | u8 data[2]; | ||
1373 | int ret; | ||
1374 | struct i2c_msg msg = {.addr=I2C_ADDR_TDA8290, .flags=0, .buf=data, .len = 2}; | ||
1375 | data[0] = 0x21; | ||
1376 | data[1] = 0xc0; | ||
1377 | ret = i2c_transfer(&dev->i2c_adap, &msg, 1); | ||
1378 | if (ret != 1) | ||
1379 | printk(KERN_ERR "TDA8290 access failure\n"); | ||
1380 | msg.addr = I2C_ADDR_TDA8275; | ||
1381 | data[0] = 0x30; | ||
1382 | data[1] = 0xd0; | ||
1383 | ret = i2c_transfer(&dev->i2c_adap, &msg, 1); | ||
1384 | if (ret != 1) | ||
1385 | printk(KERN_ERR "TDA8275 access failure\n"); | ||
1386 | msg.addr = I2C_ADDR_TDA8290; | ||
1387 | data[0] = 0x21; | ||
1388 | data[1] = 0x80; | ||
1389 | i2c_transfer(&dev->i2c_adap, &msg, 1); | ||
1390 | data[0] = 0x00; | ||
1391 | data[1] = 0x02; | ||
1392 | i2c_transfer(&dev->i2c_adap, &msg, 1); | ||
1393 | } | ||
1394 | |||
1366 | /* free stuff */ | 1395 | /* free stuff */ |
1367 | videobuf_mmap_free(&fh->cap); | 1396 | videobuf_mmap_free(&fh->cap); |
1368 | videobuf_mmap_free(&fh->vbi); | 1397 | videobuf_mmap_free(&fh->vbi); |
@@ -1399,13 +1428,6 @@ static void saa7134_vbi_fmt(struct saa7134_dev *dev, struct v4l2_format *f) | |||
1399 | f->fmt.vbi.count[1] = f->fmt.vbi.count[0]; | 1428 | f->fmt.vbi.count[1] = f->fmt.vbi.count[0]; |
1400 | f->fmt.vbi.flags = 0; /* VBI_UNSYNC VBI_INTERLACED */ | 1429 | f->fmt.vbi.flags = 0; /* VBI_UNSYNC VBI_INTERLACED */ |
1401 | 1430 | ||
1402 | #if 0 | ||
1403 | if (V4L2_STD_PAL == norm->id) { | ||
1404 | /* FIXME */ | ||
1405 | f->fmt.vbi.start[0] += 3; | ||
1406 | f->fmt.vbi.start[1] += 3*2; | ||
1407 | } | ||
1408 | #endif | ||
1409 | } | 1431 | } |
1410 | 1432 | ||
1411 | static int saa7134_g_fmt(struct saa7134_dev *dev, struct saa7134_fh *fh, | 1433 | static int saa7134_g_fmt(struct saa7134_dev *dev, struct saa7134_fh *fh, |
@@ -2120,8 +2142,6 @@ static int radio_do_ioctl(struct inode *inode, struct file *file, | |||
2120 | 2142 | ||
2121 | memset(t,0,sizeof(*t)); | 2143 | memset(t,0,sizeof(*t)); |
2122 | strcpy(t->name, "Radio"); | 2144 | strcpy(t->name, "Radio"); |
2123 | t->rangelow = (int)(65*16); | ||
2124 | t->rangehigh = (int)(108*16); | ||
2125 | 2145 | ||
2126 | saa7134_i2c_call_clients(dev, VIDIOC_G_TUNER, t); | 2146 | saa7134_i2c_call_clients(dev, VIDIOC_G_TUNER, t); |
2127 | 2147 | ||
diff --git a/drivers/media/video/saa7134/saa7134.h b/drivers/media/video/saa7134/saa7134.h index d6b1c0d4d0f9..6836c07794fc 100644 --- a/drivers/media/video/saa7134/saa7134.h +++ b/drivers/media/video/saa7134/saa7134.h | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * $Id: saa7134.h,v 1.41 2005/06/07 18:02:26 nsh Exp $ | 2 | * $Id: saa7134.h,v 1.48 2005/07/01 08:22:24 nsh Exp $ |
3 | * | 3 | * |
4 | * v4l2 device driver for philips saa7134 based TV cards | 4 | * v4l2 device driver for philips saa7134 based TV cards |
5 | * | 5 | * |
@@ -46,8 +46,6 @@ | |||
46 | #endif | 46 | #endif |
47 | #define UNSET (-1U) | 47 | #define UNSET (-1U) |
48 | 48 | ||
49 | /* 2.4 / 2.5 driver compatibility stuff */ | ||
50 | |||
51 | /* ----------------------------------------------------------- */ | 49 | /* ----------------------------------------------------------- */ |
52 | /* enums */ | 50 | /* enums */ |
53 | 51 | ||
@@ -159,7 +157,7 @@ struct saa7134_format { | |||
159 | #define SAA7134_BOARD_AVERMEDIA_DVD_EZMAKER 33 | 157 | #define SAA7134_BOARD_AVERMEDIA_DVD_EZMAKER 33 |
160 | #define SAA7134_BOARD_NOVAC_PRIMETV7133 34 | 158 | #define SAA7134_BOARD_NOVAC_PRIMETV7133 34 |
161 | #define SAA7134_BOARD_AVERMEDIA_STUDIO_305 35 | 159 | #define SAA7134_BOARD_AVERMEDIA_STUDIO_305 35 |
162 | #define SAA7133_BOARD_UPMOST_PURPLE_TV 36 | 160 | #define SAA7134_BOARD_UPMOST_PURPLE_TV 36 |
163 | #define SAA7134_BOARD_ITEMS_MTV005 37 | 161 | #define SAA7134_BOARD_ITEMS_MTV005 37 |
164 | #define SAA7134_BOARD_CINERGY200 38 | 162 | #define SAA7134_BOARD_CINERGY200 38 |
165 | #define SAA7134_BOARD_FLYTVPLATINUM_MINI 39 | 163 | #define SAA7134_BOARD_FLYTVPLATINUM_MINI 39 |
@@ -176,13 +174,17 @@ struct saa7134_format { | |||
176 | #define SAA7134_BOARD_PINNACLE_300I_DVBT_PAL 50 | 174 | #define SAA7134_BOARD_PINNACLE_300I_DVBT_PAL 50 |
177 | #define SAA7134_BOARD_PROVIDEO_PV952 51 | 175 | #define SAA7134_BOARD_PROVIDEO_PV952 51 |
178 | #define SAA7134_BOARD_AVERMEDIA_305 52 | 176 | #define SAA7134_BOARD_AVERMEDIA_305 52 |
179 | #define SAA7135_BOARD_ASUSTeK_TVFM7135 53 | 177 | #define SAA7134_BOARD_ASUSTeK_TVFM7135 53 |
180 | #define SAA7134_BOARD_FLYTVPLATINUM_FM 54 | 178 | #define SAA7134_BOARD_FLYTVPLATINUM_FM 54 |
181 | #define SAA7134_BOARD_FLYDVBTDUO 55 | 179 | #define SAA7134_BOARD_FLYDVBTDUO 55 |
182 | #define SAA7134_BOARD_AVERMEDIA_307 56 | 180 | #define SAA7134_BOARD_AVERMEDIA_307 56 |
183 | #define SAA7134_BOARD_AVERMEDIA_GO_007_FM 57 | 181 | #define SAA7134_BOARD_AVERMEDIA_GO_007_FM 57 |
184 | #define SAA7134_BOARD_ADS_INSTANT_TV 58 | 182 | #define SAA7134_BOARD_ADS_INSTANT_TV 58 |
185 | #define SAA7134_BOARD_KWORLD_VSTREAM_XPERT 59 | 183 | #define SAA7134_BOARD_KWORLD_VSTREAM_XPERT 59 |
184 | #define SAA7134_BOARD_THYPHOON_DVBT_DUO_CARDBUS 60 | ||
185 | #define SAA7134_BOARD_PHILIPS_TOUGH 61 | ||
186 | #define SAA7134_BOARD_VIDEOMATE_TV_GOLD_PLUSII 62 | ||
187 | #define SAA7134_BOARD_KWORLD_XPERT 63 | ||
186 | 188 | ||
187 | #define SAA7134_MAXBOARDS 8 | 189 | #define SAA7134_MAXBOARDS 8 |
188 | #define SAA7134_INPUT_MAX 8 | 190 | #define SAA7134_INPUT_MAX 8 |
@@ -213,6 +215,10 @@ struct saa7134_board { | |||
213 | 215 | ||
214 | /* i2c chip info */ | 216 | /* i2c chip info */ |
215 | unsigned int tuner_type; | 217 | unsigned int tuner_type; |
218 | unsigned int radio_type; | ||
219 | unsigned char tuner_addr; | ||
220 | unsigned char radio_addr; | ||
221 | |||
216 | unsigned int tda9887_conf; | 222 | unsigned int tda9887_conf; |
217 | 223 | ||
218 | /* peripheral I/O */ | 224 | /* peripheral I/O */ |
@@ -403,9 +409,12 @@ struct saa7134_dev { | |||
403 | /* config info */ | 409 | /* config info */ |
404 | unsigned int board; | 410 | unsigned int board; |
405 | unsigned int tuner_type; | 411 | unsigned int tuner_type; |
412 | unsigned int radio_type; | ||
413 | unsigned char tuner_addr; | ||
414 | unsigned char radio_addr; | ||
415 | |||
406 | unsigned int tda9887_conf; | 416 | unsigned int tda9887_conf; |
407 | unsigned int gpio_value; | 417 | unsigned int gpio_value; |
408 | unsigned int irq2_mask; | ||
409 | 418 | ||
410 | /* i2c i/o */ | 419 | /* i2c i/o */ |
411 | struct i2c_adapter i2c_adap; | 420 | struct i2c_adapter i2c_adap; |
diff --git a/drivers/media/video/tda7432.c b/drivers/media/video/tda7432.c index 07ba6d3ed08c..7cb1fb3e66f9 100644 --- a/drivers/media/video/tda7432.c +++ b/drivers/media/video/tda7432.c | |||
@@ -243,19 +243,6 @@ static int tda7432_write(struct i2c_client *client, int subaddr, int val) | |||
243 | } | 243 | } |
244 | 244 | ||
245 | /* I don't think we ever actually _read_ the chip... */ | 245 | /* I don't think we ever actually _read_ the chip... */ |
246 | #if 0 | ||
247 | static int tda7432_read(struct i2c_client *client) | ||
248 | { | ||
249 | unsigned char buffer; | ||
250 | d2printk("tda7432: In tda7432_read\n"); | ||
251 | if (1 != i2c_master_recv(client,&buffer,1)) { | ||
252 | printk(KERN_WARNING "tda7432: I/O error, trying (read)\n"); | ||
253 | return -1; | ||
254 | } | ||
255 | dprintk("tda7432: Read 0x%02x\n", buffer); | ||
256 | return buffer; | ||
257 | } | ||
258 | #endif | ||
259 | 246 | ||
260 | static int tda7432_set(struct i2c_client *client) | 247 | static int tda7432_set(struct i2c_client *client) |
261 | { | 248 | { |
diff --git a/drivers/media/video/tda8290.c b/drivers/media/video/tda8290.c index f59d4601cc63..a8b6a8df5109 100644 --- a/drivers/media/video/tda8290.c +++ b/drivers/media/video/tda8290.c | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * $Id: tda8290.c,v 1.11 2005/06/18 06:09:06 nsh Exp $ | 2 | * $Id: tda8290.c,v 1.15 2005/07/08 20:21:33 mchehab Exp $ |
3 | * | 3 | * |
4 | * i2c tv tuner chip device driver | 4 | * i2c tv tuner chip device driver |
5 | * controls the philips tda8290+75 tuner chip combo. | 5 | * controls the philips tda8290+75 tuner chip combo. |
@@ -136,15 +136,12 @@ static int tda8290_tune(struct i2c_client *c) | |||
136 | return 0; | 136 | return 0; |
137 | } | 137 | } |
138 | 138 | ||
139 | static void set_frequency(struct tuner *t, u16 ifc) | 139 | static void set_frequency(struct tuner *t, u16 ifc, unsigned int freq) |
140 | { | 140 | { |
141 | u32 freq; | ||
142 | u32 N; | 141 | u32 N; |
143 | 142 | ||
144 | if (t->mode == V4L2_TUNER_RADIO) | 143 | if (t->mode == V4L2_TUNER_RADIO) |
145 | freq = t->freq / 1000; | 144 | freq = freq / 1000; |
146 | else | ||
147 | freq = t->freq; | ||
148 | 145 | ||
149 | N = (((freq<<3)+ifc)&0x3fffc); | 146 | N = (((freq<<3)+ifc)&0x3fffc); |
150 | 147 | ||
@@ -187,14 +184,14 @@ static void set_tv_freq(struct i2c_client *c, unsigned int freq) | |||
187 | struct tuner *t = i2c_get_clientdata(c); | 184 | struct tuner *t = i2c_get_clientdata(c); |
188 | 185 | ||
189 | set_audio(t); | 186 | set_audio(t); |
190 | set_frequency(t, 864); | 187 | set_frequency(t, 864, freq); |
191 | tda8290_tune(c); | 188 | tda8290_tune(c); |
192 | } | 189 | } |
193 | 190 | ||
194 | static void set_radio_freq(struct i2c_client *c, unsigned int freq) | 191 | static void set_radio_freq(struct i2c_client *c, unsigned int freq) |
195 | { | 192 | { |
196 | struct tuner *t = i2c_get_clientdata(c); | 193 | struct tuner *t = i2c_get_clientdata(c); |
197 | set_frequency(t, 704); | 194 | set_frequency(t, 704, freq); |
198 | tda8290_tune(c); | 195 | tda8290_tune(c); |
199 | } | 196 | } |
200 | 197 | ||
diff --git a/drivers/media/video/tda9875.c b/drivers/media/video/tda9875.c index 97b113e070f3..566e1a5ca135 100644 --- a/drivers/media/video/tda9875.c +++ b/drivers/media/video/tda9875.c | |||
@@ -123,19 +123,6 @@ static int tda9875_write(struct i2c_client *client, int subaddr, unsigned char v | |||
123 | return 0; | 123 | return 0; |
124 | } | 124 | } |
125 | 125 | ||
126 | #if 0 | ||
127 | static int tda9875_read(struct i2c_client *client) | ||
128 | { | ||
129 | unsigned char buffer; | ||
130 | dprintk("In tda9875_read\n"); | ||
131 | if (1 != i2c_master_recv(client,&buffer,1)) { | ||
132 | printk(KERN_WARNING "tda9875: I/O error, trying (read)\n"); | ||
133 | return -1; | ||
134 | } | ||
135 | dprintk("Read 0x%02x\n", buffer); | ||
136 | return buffer; | ||
137 | } | ||
138 | #endif | ||
139 | 126 | ||
140 | static int i2c_read_register(struct i2c_adapter *adap, int addr, int reg) | 127 | static int i2c_read_register(struct i2c_adapter *adap, int addr, int reg) |
141 | { | 128 | { |
diff --git a/drivers/media/video/tda9887.c b/drivers/media/video/tda9887.c index ee35562f4d1a..108c3ad7d622 100644 --- a/drivers/media/video/tda9887.c +++ b/drivers/media/video/tda9887.c | |||
@@ -569,15 +569,6 @@ static int tda9887_configure(struct tda9887 *t) | |||
569 | tda9887_set_config(t,buf); | 569 | tda9887_set_config(t,buf); |
570 | tda9887_set_insmod(t,buf); | 570 | tda9887_set_insmod(t,buf); |
571 | 571 | ||
572 | #if 0 | ||
573 | /* This as-is breaks some cards, must be fixed in a | ||
574 | * card-specific way, probably using TDA9887_SET_CONFIG to | ||
575 | * turn on/off port2 */ | ||
576 | if (t->std & V4L2_STD_SECAM_L) { | ||
577 | /* secam fixup (FIXME: move this to tvnorms array?) */ | ||
578 | buf[1] &= ~cOutputPort2Inactive; | ||
579 | } | ||
580 | #endif | ||
581 | 572 | ||
582 | dprintk(PREFIX "writing: b=0x%02x c=0x%02x e=0x%02x\n", | 573 | dprintk(PREFIX "writing: b=0x%02x c=0x%02x e=0x%02x\n", |
583 | buf[1],buf[2],buf[3]); | 574 | buf[1],buf[2],buf[3]); |
diff --git a/drivers/media/video/tea5767.c b/drivers/media/video/tea5767.c index a29f08f81f63..b53c748caf2a 100644 --- a/drivers/media/video/tea5767.c +++ b/drivers/media/video/tea5767.c | |||
@@ -2,7 +2,7 @@ | |||
2 | * For Philips TEA5767 FM Chip used on some TV Cards like Prolink Pixelview | 2 | * For Philips TEA5767 FM Chip used on some TV Cards like Prolink Pixelview |
3 | * I2C address is allways 0xC0. | 3 | * I2C address is allways 0xC0. |
4 | * | 4 | * |
5 | * $Id: tea5767.c,v 1.11 2005/06/21 15:40:33 mchehab Exp $ | 5 | * $Id: tea5767.c,v 1.18 2005/07/07 03:02:55 mchehab Exp $ |
6 | * | 6 | * |
7 | * Copyright (c) 2005 Mauro Carvalho Chehab (mchehab@brturbo.com.br) | 7 | * Copyright (c) 2005 Mauro Carvalho Chehab (mchehab@brturbo.com.br) |
8 | * This code is placed under the terms of the GNU General Public License | 8 | * This code is placed under the terms of the GNU General Public License |
@@ -11,23 +11,11 @@ | |||
11 | * from their contributions on DScaler. | 11 | * from their contributions on DScaler. |
12 | */ | 12 | */ |
13 | 13 | ||
14 | #include <linux/module.h> | ||
15 | #include <linux/init.h> | ||
16 | #include <linux/kernel.h> | ||
17 | #include <linux/sched.h> | ||
18 | #include <linux/string.h> | ||
19 | #include <linux/timer.h> | ||
20 | #include <linux/delay.h> | ||
21 | #include <linux/errno.h> | ||
22 | #include <linux/slab.h> | ||
23 | #include <linux/videodev.h> | ||
24 | #include <linux/i2c.h> | 14 | #include <linux/i2c.h> |
25 | #include <linux/i2c-algo-bit.h> | 15 | #include <linux/videodev.h> |
26 | 16 | #include <linux/delay.h> | |
17 | #include <media/tuner.h> | ||
27 | #include <media/tuner.h> | 18 | #include <media/tuner.h> |
28 | |||
29 | /* Declared at tuner-core.c */ | ||
30 | extern unsigned int tuner_debug; | ||
31 | 19 | ||
32 | #define PREFIX "TEA5767 " | 20 | #define PREFIX "TEA5767 " |
33 | 21 | ||
@@ -38,8 +26,8 @@ extern unsigned int tuner_debug; | |||
38 | ******************************/ | 26 | ******************************/ |
39 | 27 | ||
40 | /* First register */ | 28 | /* First register */ |
41 | #define TEA5767_MUTE 0x80 /* Mutes output */ | 29 | #define TEA5767_MUTE 0x80 /* Mutes output */ |
42 | #define TEA5767_SEARCH 0x40 /* Activates station search */ | 30 | #define TEA5767_SEARCH 0x40 /* Activates station search */ |
43 | /* Bits 0-5 for divider MSB */ | 31 | /* Bits 0-5 for divider MSB */ |
44 | 32 | ||
45 | /* Second register */ | 33 | /* Second register */ |
@@ -130,6 +118,14 @@ extern unsigned int tuner_debug; | |||
130 | /* Reserved for future extensions */ | 118 | /* Reserved for future extensions */ |
131 | #define TEA5767_RESERVED_MASK 0xff | 119 | #define TEA5767_RESERVED_MASK 0xff |
132 | 120 | ||
121 | enum tea5767_xtal_freq { | ||
122 | TEA5767_LOW_LO_32768 = 0, | ||
123 | TEA5767_HIGH_LO_32768 = 1, | ||
124 | TEA5767_LOW_LO_13MHz = 2, | ||
125 | TEA5767_HIGH_LO_13MHz = 3, | ||
126 | }; | ||
127 | |||
128 | |||
133 | /*****************************************************************************/ | 129 | /*****************************************************************************/ |
134 | 130 | ||
135 | static void set_tv_freq(struct i2c_client *c, unsigned int freq) | 131 | static void set_tv_freq(struct i2c_client *c, unsigned int freq) |
@@ -153,103 +149,112 @@ static void tea5767_status_dump(unsigned char *buffer) | |||
153 | else | 149 | else |
154 | printk(PREFIX "Tuner not at band limit\n"); | 150 | printk(PREFIX "Tuner not at band limit\n"); |
155 | 151 | ||
156 | div=((buffer[0]&0x3f)<<8) | buffer[1]; | 152 | div = ((buffer[0] & 0x3f) << 8) | buffer[1]; |
157 | 153 | ||
158 | switch (TEA5767_HIGH_LO_32768) { | 154 | switch (TEA5767_HIGH_LO_32768) { |
159 | case TEA5767_HIGH_LO_13MHz: | 155 | case TEA5767_HIGH_LO_13MHz: |
160 | frq = 1000*(div*50-700-225)/4; /* Freq in KHz */ | 156 | frq = 1000 * (div * 50 - 700 - 225) / 4; /* Freq in KHz */ |
161 | break; | 157 | break; |
162 | case TEA5767_LOW_LO_13MHz: | 158 | case TEA5767_LOW_LO_13MHz: |
163 | frq = 1000*(div*50+700+225)/4; /* Freq in KHz */ | 159 | frq = 1000 * (div * 50 + 700 + 225) / 4; /* Freq in KHz */ |
164 | break; | 160 | break; |
165 | case TEA5767_LOW_LO_32768: | 161 | case TEA5767_LOW_LO_32768: |
166 | frq = 1000*(div*32768/1000+700+225)/4; /* Freq in KHz */ | 162 | frq = 1000 * (div * 32768 / 1000 + 700 + 225) / 4; /* Freq in KHz */ |
167 | break; | 163 | break; |
168 | case TEA5767_HIGH_LO_32768: | 164 | case TEA5767_HIGH_LO_32768: |
169 | default: | 165 | default: |
170 | frq = 1000*(div*32768/1000-700-225)/4; /* Freq in KHz */ | 166 | frq = 1000 * (div * 32768 / 1000 - 700 - 225) / 4; /* Freq in KHz */ |
171 | break; | 167 | break; |
172 | } | 168 | } |
173 | buffer[0] = (div>>8) & 0x3f; | 169 | buffer[0] = (div >> 8) & 0x3f; |
174 | buffer[1] = div & 0xff; | 170 | buffer[1] = div & 0xff; |
175 | 171 | ||
176 | printk(PREFIX "Frequency %d.%03d KHz (divider = 0x%04x)\n", | 172 | printk(PREFIX "Frequency %d.%03d KHz (divider = 0x%04x)\n", |
177 | frq/1000,frq%1000,div); | 173 | frq / 1000, frq % 1000, div); |
178 | 174 | ||
179 | if (TEA5767_STEREO_MASK & buffer[2]) | 175 | if (TEA5767_STEREO_MASK & buffer[2]) |
180 | printk(PREFIX "Stereo\n"); | 176 | printk(PREFIX "Stereo\n"); |
181 | else | 177 | else |
182 | printk(PREFIX "Mono\n"); | 178 | printk(PREFIX "Mono\n"); |
183 | 179 | ||
184 | printk(PREFIX "IF Counter = %d\n",buffer[2] & TEA5767_IF_CNTR_MASK); | 180 | printk(PREFIX "IF Counter = %d\n", buffer[2] & TEA5767_IF_CNTR_MASK); |
185 | 181 | ||
186 | printk(PREFIX "ADC Level = %d\n",(buffer[3] & TEA5767_ADC_LEVEL_MASK)>>4); | 182 | printk(PREFIX "ADC Level = %d\n", |
183 | (buffer[3] & TEA5767_ADC_LEVEL_MASK) >> 4); | ||
187 | 184 | ||
188 | printk(PREFIX "Chip ID = %d\n",(buffer[3] & TEA5767_CHIP_ID_MASK)); | 185 | printk(PREFIX "Chip ID = %d\n", (buffer[3] & TEA5767_CHIP_ID_MASK)); |
189 | 186 | ||
190 | printk(PREFIX "Reserved = 0x%02x\n",(buffer[4] & TEA5767_RESERVED_MASK)); | 187 | printk(PREFIX "Reserved = 0x%02x\n", |
188 | (buffer[4] & TEA5767_RESERVED_MASK)); | ||
191 | } | 189 | } |
192 | 190 | ||
193 | /* Freq should be specifyed at 62.5 Hz */ | 191 | /* Freq should be specifyed at 62.5 Hz */ |
194 | static void set_radio_freq(struct i2c_client *c, unsigned int frq) | 192 | static void set_radio_freq(struct i2c_client *c, unsigned int frq) |
195 | { | 193 | { |
196 | struct tuner *t = i2c_get_clientdata(c); | 194 | struct tuner *t = i2c_get_clientdata(c); |
197 | unsigned char buffer[5]; | 195 | unsigned char buffer[5]; |
198 | unsigned div; | 196 | unsigned div; |
199 | int rc; | 197 | int rc; |
200 | 198 | ||
201 | if ( tuner_debug ) | 199 | tuner_dbg (PREFIX "radio freq counter %d\n", frq); |
202 | printk(PREFIX "radio freq counter %d\n",frq); | ||
203 | 200 | ||
204 | /* Rounds freq to next decimal value - for 62.5 KHz step */ | 201 | /* Rounds freq to next decimal value - for 62.5 KHz step */ |
205 | /* frq = 20*(frq/16)+radio_frq[frq%16]; */ | 202 | /* frq = 20*(frq/16)+radio_frq[frq%16]; */ |
206 | 203 | ||
207 | buffer[2] = TEA5767_PORT1_HIGH; | 204 | buffer[2] = TEA5767_PORT1_HIGH; |
208 | buffer[3] = TEA5767_PORT2_HIGH | TEA5767_HIGH_CUT_CTRL | TEA5767_ST_NOISE_CTL | TEA5767_JAPAN_BAND; | 205 | buffer[3] = TEA5767_PORT2_HIGH | TEA5767_HIGH_CUT_CTRL | |
209 | buffer[4]=0; | 206 | TEA5767_ST_NOISE_CTL | TEA5767_JAPAN_BAND; |
207 | buffer[4] = 0; | ||
208 | |||
209 | if (t->mode == T_STANDBY) { | ||
210 | tuner_dbg("TEA5767 set to standby mode\n"); | ||
211 | buffer[3] |= TEA5767_STDBY; | ||
212 | } | ||
210 | 213 | ||
211 | if (t->audmode == V4L2_TUNER_MODE_MONO) { | 214 | if (t->audmode == V4L2_TUNER_MODE_MONO) { |
212 | tuner_dbg("TEA5767 set to mono\n"); | 215 | tuner_dbg("TEA5767 set to mono\n"); |
213 | buffer[2] |= TEA5767_MONO; | 216 | buffer[2] |= TEA5767_MONO; |
214 | } else | 217 | } else { |
215 | tuner_dbg("TEA5767 set to stereo\n"); | 218 | tuner_dbg("TEA5767 set to stereo\n"); |
219 | } | ||
216 | 220 | ||
217 | switch (t->type) { | 221 | /* Should be replaced */ |
222 | switch (TEA5767_HIGH_LO_32768) { | ||
218 | case TEA5767_HIGH_LO_13MHz: | 223 | case TEA5767_HIGH_LO_13MHz: |
219 | tuner_dbg("TEA5767 radio HIGH LO inject xtal @ 13 MHz\n"); | 224 | tuner_dbg ("TEA5767 radio HIGH LO inject xtal @ 13 MHz\n"); |
220 | buffer[2] |= TEA5767_HIGH_LO_INJECT; | 225 | buffer[2] |= TEA5767_HIGH_LO_INJECT; |
221 | buffer[4] |= TEA5767_PLLREF_ENABLE; | 226 | buffer[4] |= TEA5767_PLLREF_ENABLE; |
222 | div = (frq*4/16+700+225+25)/50; | 227 | div = (frq * 4 / 16 + 700 + 225 + 25) / 50; |
223 | break; | 228 | break; |
224 | case TEA5767_LOW_LO_13MHz: | 229 | case TEA5767_LOW_LO_13MHz: |
225 | tuner_dbg("TEA5767 radio LOW LO inject xtal @ 13 MHz\n"); | 230 | tuner_dbg ("TEA5767 radio LOW LO inject xtal @ 13 MHz\n"); |
226 | 231 | ||
227 | buffer[4] |= TEA5767_PLLREF_ENABLE; | 232 | buffer[4] |= TEA5767_PLLREF_ENABLE; |
228 | div = (frq*4/16-700-225+25)/50; | 233 | div = (frq * 4 / 16 - 700 - 225 + 25) / 50; |
229 | break; | 234 | break; |
230 | case TEA5767_LOW_LO_32768: | 235 | case TEA5767_LOW_LO_32768: |
231 | tuner_dbg("TEA5767 radio LOW LO inject xtal @ 32,768 MHz\n"); | 236 | tuner_dbg ("TEA5767 radio LOW LO inject xtal @ 32,768 MHz\n"); |
232 | buffer[3] |= TEA5767_XTAL_32768; | 237 | buffer[3] |= TEA5767_XTAL_32768; |
233 | /* const 700=4000*175 Khz - to adjust freq to right value */ | 238 | /* const 700=4000*175 Khz - to adjust freq to right value */ |
234 | div = (1000*(frq*4/16-700-225)+16384)>>15; | 239 | div = (1000 * (frq * 4 / 16 - 700 - 225) + 16384) >> 15; |
235 | break; | 240 | break; |
236 | case TEA5767_HIGH_LO_32768: | 241 | case TEA5767_HIGH_LO_32768: |
237 | default: | 242 | default: |
238 | tuner_dbg("TEA5767 radio HIGH LO inject xtal @ 32,768 MHz\n"); | 243 | tuner_dbg ("TEA5767 radio HIGH LO inject xtal @ 32,768 MHz\n"); |
239 | 244 | ||
240 | buffer[2] |= TEA5767_HIGH_LO_INJECT; | 245 | buffer[2] |= TEA5767_HIGH_LO_INJECT; |
241 | buffer[3] |= TEA5767_XTAL_32768; | 246 | buffer[3] |= TEA5767_XTAL_32768; |
242 | div = (1000*(frq*4/16+700+225)+16384)>>15; | 247 | div = (1000 * (frq * 4 / 16 + 700 + 225) + 16384) >> 15; |
243 | break; | 248 | break; |
244 | } | 249 | } |
245 | buffer[0] = (div>>8) & 0x3f; | 250 | buffer[0] = (div >> 8) & 0x3f; |
246 | buffer[1] = div & 0xff; | 251 | buffer[1] = div & 0xff; |
247 | 252 | ||
248 | if ( tuner_debug ) | 253 | if (tuner_debug) |
249 | tea5767_status_dump(buffer); | 254 | tea5767_status_dump(buffer); |
250 | 255 | ||
251 | if (5 != (rc = i2c_master_send(c,buffer,5))) | 256 | if (5 != (rc = i2c_master_send(c, buffer, 5))) |
252 | tuner_warn("i2c i/o error: rc == %d (should be 5)\n",rc); | 257 | tuner_warn("i2c i/o error: rc == %d (should be 5)\n", rc); |
253 | } | 258 | } |
254 | 259 | ||
255 | static int tea5767_signal(struct i2c_client *c) | 260 | static int tea5767_signal(struct i2c_client *c) |
@@ -258,11 +263,11 @@ static int tea5767_signal(struct i2c_client *c) | |||
258 | int rc; | 263 | int rc; |
259 | struct tuner *t = i2c_get_clientdata(c); | 264 | struct tuner *t = i2c_get_clientdata(c); |
260 | 265 | ||
261 | memset(buffer,0,sizeof(buffer)); | 266 | memset(buffer, 0, sizeof(buffer)); |
262 | if (5 != (rc = i2c_master_recv(c,buffer,5))) | 267 | if (5 != (rc = i2c_master_recv(c, buffer, 5))) |
263 | tuner_warn ( "i2c i/o error: rc == %d (should be 5)\n",rc); | 268 | tuner_warn("i2c i/o error: rc == %d (should be 5)\n", rc); |
264 | 269 | ||
265 | return ((buffer[3] & TEA5767_ADC_LEVEL_MASK) <<(13-4)); | 270 | return ((buffer[3] & TEA5767_ADC_LEVEL_MASK) << (13 - 4)); |
266 | } | 271 | } |
267 | 272 | ||
268 | static int tea5767_stereo(struct i2c_client *c) | 273 | static int tea5767_stereo(struct i2c_client *c) |
@@ -271,47 +276,46 @@ static int tea5767_stereo(struct i2c_client *c) | |||
271 | int rc; | 276 | int rc; |
272 | struct tuner *t = i2c_get_clientdata(c); | 277 | struct tuner *t = i2c_get_clientdata(c); |
273 | 278 | ||
274 | memset(buffer,0,sizeof(buffer)); | 279 | memset(buffer, 0, sizeof(buffer)); |
275 | if (5 != (rc = i2c_master_recv(c,buffer,5))) | 280 | if (5 != (rc = i2c_master_recv(c, buffer, 5))) |
276 | tuner_warn ( "i2c i/o error: rc == %d (should be 5)\n",rc); | 281 | tuner_warn("i2c i/o error: rc == %d (should be 5)\n", rc); |
277 | 282 | ||
278 | rc = buffer[2] & TEA5767_STEREO_MASK; | 283 | rc = buffer[2] & TEA5767_STEREO_MASK; |
279 | 284 | ||
280 | if ( tuner_debug ) | 285 | tuner_dbg("TEA5767 radio ST GET = %02x\n", rc); |
281 | tuner_dbg("TEA5767 radio ST GET = %02x\n", rc); | ||
282 | 286 | ||
283 | return ( (buffer[2] & TEA5767_STEREO_MASK) ? V4L2_TUNER_SUB_STEREO: 0); | 287 | return ((buffer[2] & TEA5767_STEREO_MASK) ? V4L2_TUNER_SUB_STEREO : 0); |
284 | } | 288 | } |
285 | 289 | ||
286 | int tea_detection(struct i2c_client *c) | 290 | int tea5767_autodetection(struct i2c_client *c) |
287 | { | 291 | { |
288 | unsigned char buffer[5]= { 0xff, 0xff, 0xff, 0xff, 0xff }; | 292 | unsigned char buffer[5] = { 0xff, 0xff, 0xff, 0xff, 0xff }; |
289 | int rc; | 293 | int rc; |
290 | struct tuner *t = i2c_get_clientdata(c); | 294 | struct tuner *t = i2c_get_clientdata(c); |
291 | 295 | ||
292 | if (5 != (rc = i2c_master_recv(c,buffer,5))) { | 296 | if (5 != (rc = i2c_master_recv(c, buffer, 5))) { |
293 | tuner_warn ( "it is not a TEA5767. Received %i chars.\n",rc ); | 297 | tuner_warn("it is not a TEA5767. Received %i chars.\n", rc); |
294 | return EINVAL; | 298 | return EINVAL; |
295 | } | 299 | } |
296 | 300 | ||
297 | /* If all bytes are the same then it's a TV tuner and not a tea5767 chip. */ | 301 | /* If all bytes are the same then it's a TV tuner and not a tea5767 chip. */ |
298 | if (buffer[0] == buffer[1] && buffer[0] == buffer[2] && | 302 | if (buffer[0] == buffer[1] && buffer[0] == buffer[2] && |
299 | buffer[0] == buffer[3] && buffer[0] == buffer[4]) { | 303 | buffer[0] == buffer[3] && buffer[0] == buffer[4]) { |
300 | tuner_warn ( "All bytes are equal. It is not a TEA5767\n" ); | 304 | tuner_warn("All bytes are equal. It is not a TEA5767\n"); |
301 | return EINVAL; | 305 | return EINVAL; |
302 | } | 306 | } |
303 | 307 | ||
304 | /* Status bytes: | 308 | /* Status bytes: |
305 | * Byte 4: bit 3:1 : CI (Chip Identification) == 0 | 309 | * Byte 4: bit 3:1 : CI (Chip Identification) == 0 |
306 | * bit 0 : internally set to 0 | 310 | * bit 0 : internally set to 0 |
307 | * Byte 5: bit 7:0 : == 0 | 311 | * Byte 5: bit 7:0 : == 0 |
308 | */ | 312 | */ |
309 | 313 | ||
310 | if (!((buffer[3] & 0x0f) == 0x00) && (buffer[4] == 0x00)) { | 314 | if (!((buffer[3] & 0x0f) == 0x00) && (buffer[4] == 0x00)) { |
311 | tuner_warn ( "Chip ID is not zero. It is not a TEA5767\n" ); | 315 | tuner_warn("Chip ID is not zero. It is not a TEA5767\n"); |
312 | return EINVAL; | 316 | return EINVAL; |
313 | } | 317 | } |
314 | tuner_warn ( "TEA5767 detected.\n" ); | 318 | tuner_warn("TEA5767 detected.\n"); |
315 | return 0; | 319 | return 0; |
316 | } | 320 | } |
317 | 321 | ||
@@ -319,16 +323,16 @@ int tea5767_tuner_init(struct i2c_client *c) | |||
319 | { | 323 | { |
320 | struct tuner *t = i2c_get_clientdata(c); | 324 | struct tuner *t = i2c_get_clientdata(c); |
321 | 325 | ||
322 | if (tea_detection(c)==EINVAL) return EINVAL; | 326 | if (tea5767_autodetection(c) == EINVAL) |
327 | return EINVAL; | ||
323 | 328 | ||
324 | tuner_info("type set to %d (%s)\n", | 329 | tuner_info("type set to %d (%s)\n", t->type, "Philips TEA5767HN FM Radio"); |
325 | t->type, TEA5767_TUNER_NAME); | 330 | strlcpy(c->name, "tea5767", sizeof(c->name)); |
326 | strlcpy(c->name, TEA5767_TUNER_NAME, sizeof(c->name)); | ||
327 | 331 | ||
328 | t->tv_freq = set_tv_freq; | 332 | t->tv_freq = set_tv_freq; |
329 | t->radio_freq = set_radio_freq; | 333 | t->radio_freq = set_radio_freq; |
330 | t->has_signal = tea5767_signal; | 334 | t->has_signal = tea5767_signal; |
331 | t->is_stereo = tea5767_stereo; | 335 | t->is_stereo = tea5767_stereo; |
332 | 336 | ||
333 | return (0); | 337 | return (0); |
334 | } | 338 | } |
diff --git a/drivers/media/video/tuner-3036.c b/drivers/media/video/tuner-3036.c index 51748c6578d1..7d825e510ffd 100644 --- a/drivers/media/video/tuner-3036.c +++ b/drivers/media/video/tuner-3036.c | |||
@@ -152,7 +152,7 @@ tuner_command(struct i2c_client *client, unsigned int cmd, void *arg) | |||
152 | 152 | ||
153 | switch (cmd) | 153 | switch (cmd) |
154 | { | 154 | { |
155 | case TUNER_SET_TVFREQ: | 155 | case VIDIOCSFREQ: |
156 | set_tv_freq(client, *iarg); | 156 | set_tv_freq(client, *iarg); |
157 | break; | 157 | break; |
158 | 158 | ||
diff --git a/drivers/media/video/tuner-core.c b/drivers/media/video/tuner-core.c index 6f6bf4a633fc..de190630babb 100644 --- a/drivers/media/video/tuner-core.c +++ b/drivers/media/video/tuner-core.c | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * $Id: tuner-core.c,v 1.29 2005/06/21 15:40:33 mchehab Exp $ | 2 | * $Id: tuner-core.c,v 1.55 2005/07/08 13:20:33 mchehab Exp $ |
3 | * | 3 | * |
4 | * i2c tv tuner chip device driver | 4 | * i2c tv tuner chip device driver |
5 | * core core, i.e. kernel interfaces, registering and so on | 5 | * core core, i.e. kernel interfaces, registering and so on |
@@ -23,42 +23,36 @@ | |||
23 | #include <media/tuner.h> | 23 | #include <media/tuner.h> |
24 | #include <media/audiochip.h> | 24 | #include <media/audiochip.h> |
25 | 25 | ||
26 | /* | ||
27 | * comment line bellow to return to old behavor, where only one I2C device is supported | ||
28 | */ | ||
29 | |||
30 | #define UNSET (-1U) | 26 | #define UNSET (-1U) |
31 | 27 | ||
32 | /* standard i2c insmod options */ | 28 | /* standard i2c insmod options */ |
33 | static unsigned short normal_i2c[] = { | 29 | static unsigned short normal_i2c[] = { |
34 | 0x4b, /* tda8290 */ | 30 | 0x4b, /* tda8290 */ |
35 | 0x60, 0x61, 0x62, 0x63, 0x64, 0x65, 0x66, 0x67, | 31 | 0x60, 0x61, 0x62, 0x63, 0x64, 0x65, 0x66, 0x67, |
36 | 0x68, 0x69, 0x6a, 0x6b, 0x6c, 0x6d, 0x6e, 0x6f, | 32 | 0x68, 0x69, 0x6a, 0x6b, 0x6c, 0x6d, 0x6e, 0x6f, |
37 | I2C_CLIENT_END | 33 | I2C_CLIENT_END |
38 | }; | 34 | }; |
35 | |||
39 | I2C_CLIENT_INSMOD; | 36 | I2C_CLIENT_INSMOD; |
40 | 37 | ||
41 | /* insmod options used at init time => read/only */ | 38 | /* insmod options used at init time => read/only */ |
42 | static unsigned int addr = 0; | 39 | static unsigned int addr = 0; |
43 | module_param(addr, int, 0444); | 40 | module_param(addr, int, 0444); |
44 | 41 | ||
45 | /* insmod options used at runtime => read/write */ | 42 | /* insmod options used at runtime => read/write */ |
46 | unsigned int tuner_debug = 0; | 43 | unsigned int tuner_debug = 0; |
47 | module_param(tuner_debug, int, 0644); | 44 | module_param(tuner_debug, int, 0644); |
48 | 45 | ||
49 | static unsigned int tv_range[2] = { 44, 958 }; | 46 | static unsigned int tv_range[2] = { 44, 958 }; |
50 | static unsigned int radio_range[2] = { 65, 108 }; | 47 | static unsigned int radio_range[2] = { 65, 108 }; |
51 | 48 | ||
52 | module_param_array(tv_range, int, NULL, 0644); | 49 | module_param_array(tv_range, int, NULL, 0644); |
53 | module_param_array(radio_range, int, NULL, 0644); | 50 | module_param_array(radio_range, int, NULL, 0644); |
54 | 51 | ||
55 | MODULE_DESCRIPTION("device driver for various TV and TV+FM radio tuners"); | 52 | MODULE_DESCRIPTION("device driver for various TV and TV+FM radio tuners"); |
56 | MODULE_AUTHOR("Ralph Metzler, Gerd Knorr, Gunther Mayer"); | 53 | MODULE_AUTHOR("Ralph Metzler, Gerd Knorr, Gunther Mayer"); |
57 | MODULE_LICENSE("GPL"); | 54 | MODULE_LICENSE("GPL"); |
58 | 55 | ||
59 | static int this_adap; | ||
60 | static unsigned short first_tuner, tv_tuner, radio_tuner; | ||
61 | |||
62 | static struct i2c_driver driver; | 56 | static struct i2c_driver driver; |
63 | static struct i2c_client client_template; | 57 | static struct i2c_client client_template; |
64 | 58 | ||
@@ -70,18 +64,19 @@ static void set_tv_freq(struct i2c_client *c, unsigned int freq) | |||
70 | struct tuner *t = i2c_get_clientdata(c); | 64 | struct tuner *t = i2c_get_clientdata(c); |
71 | 65 | ||
72 | if (t->type == UNSET) { | 66 | if (t->type == UNSET) { |
73 | tuner_info("tuner type not set\n"); | 67 | tuner_warn ("tuner type not set\n"); |
74 | return; | 68 | return; |
75 | } | 69 | } |
76 | if (NULL == t->tv_freq) { | 70 | if (NULL == t->tv_freq) { |
77 | tuner_info("Huh? tv_set is NULL?\n"); | 71 | tuner_warn ("Tuner has no way to set tv freq\n"); |
78 | return; | 72 | return; |
79 | } | 73 | } |
80 | if (freq < tv_range[0]*16 || freq > tv_range[1]*16) { | 74 | if (freq < tv_range[0] * 16 || freq > tv_range[1] * 16) { |
81 | tuner_info("TV freq (%d.%02d) out of range (%d-%d)\n", | 75 | tuner_dbg ("TV freq (%d.%02d) out of range (%d-%d)\n", |
82 | freq/16,freq%16*100/16,tv_range[0],tv_range[1]); | 76 | freq / 16, freq % 16 * 100 / 16, tv_range[0], |
77 | tv_range[1]); | ||
83 | } | 78 | } |
84 | t->tv_freq(c,freq); | 79 | t->tv_freq(c, freq); |
85 | } | 80 | } |
86 | 81 | ||
87 | static void set_radio_freq(struct i2c_client *c, unsigned int freq) | 82 | static void set_radio_freq(struct i2c_client *c, unsigned int freq) |
@@ -89,24 +84,20 @@ static void set_radio_freq(struct i2c_client *c, unsigned int freq) | |||
89 | struct tuner *t = i2c_get_clientdata(c); | 84 | struct tuner *t = i2c_get_clientdata(c); |
90 | 85 | ||
91 | if (t->type == UNSET) { | 86 | if (t->type == UNSET) { |
92 | tuner_info("tuner type not set\n"); | 87 | tuner_warn ("tuner type not set\n"); |
93 | return; | 88 | return; |
94 | } | 89 | } |
95 | if (NULL == t->radio_freq) { | 90 | if (NULL == t->radio_freq) { |
96 | tuner_info("no radio tuning for this one, sorry.\n"); | 91 | tuner_warn ("tuner has no way to set radio frequency\n"); |
97 | return; | 92 | return; |
98 | } | 93 | } |
99 | if (freq >= radio_range[0]*16000 && freq <= radio_range[1]*16000) { | 94 | if (freq <= radio_range[0] * 16000 || freq >= radio_range[1] * 16000) { |
100 | if (tuner_debug) | 95 | tuner_dbg ("radio freq (%d.%02d) out of range (%d-%d)\n", |
101 | tuner_info("radio freq step 62.5Hz (%d.%06d)\n", | 96 | freq / 16000, freq % 16000 * 100 / 16000, |
102 | freq/16000,freq%16000*1000/16); | 97 | radio_range[0], radio_range[1]); |
103 | t->radio_freq(c,freq); | ||
104 | } else { | ||
105 | tuner_info("radio freq (%d.%02d) out of range (%d-%d)\n", | ||
106 | freq/16,freq%16*100/16, | ||
107 | radio_range[0],radio_range[1]); | ||
108 | } | 98 | } |
109 | 99 | ||
100 | t->radio_freq(c, freq); | ||
110 | return; | 101 | return; |
111 | } | 102 | } |
112 | 103 | ||
@@ -117,42 +108,45 @@ static void set_freq(struct i2c_client *c, unsigned long freq) | |||
117 | switch (t->mode) { | 108 | switch (t->mode) { |
118 | case V4L2_TUNER_RADIO: | 109 | case V4L2_TUNER_RADIO: |
119 | tuner_dbg("radio freq set to %lu.%02lu\n", | 110 | tuner_dbg("radio freq set to %lu.%02lu\n", |
120 | freq/16,freq%16*100/16); | 111 | freq / 16000, freq % 16000 * 100 / 16000); |
121 | set_radio_freq(c,freq); | 112 | set_radio_freq(c, freq); |
122 | break; | 113 | break; |
123 | case V4L2_TUNER_ANALOG_TV: | 114 | case V4L2_TUNER_ANALOG_TV: |
124 | case V4L2_TUNER_DIGITAL_TV: | 115 | case V4L2_TUNER_DIGITAL_TV: |
125 | tuner_dbg("tv freq set to %lu.%02lu\n", | 116 | tuner_dbg("tv freq set to %lu.%02lu\n", |
126 | freq/16,freq%16*100/16); | 117 | freq / 16, freq % 16 * 100 / 16); |
127 | set_tv_freq(c, freq); | 118 | set_tv_freq(c, freq); |
128 | break; | 119 | break; |
129 | } | 120 | } |
130 | t->freq = freq; | 121 | t->freq = freq; |
131 | } | 122 | } |
132 | 123 | ||
133 | static void set_type(struct i2c_client *c, unsigned int type) | 124 | static void set_type(struct i2c_client *c, unsigned int type, |
125 | unsigned int new_mode_mask) | ||
134 | { | 126 | { |
135 | struct tuner *t = i2c_get_clientdata(c); | 127 | struct tuner *t = i2c_get_clientdata(c); |
136 | unsigned char buffer[4]; | 128 | unsigned char buffer[4]; |
137 | 129 | ||
138 | /* sanity check */ | 130 | if (type == UNSET || type == TUNER_ABSENT) { |
139 | if (type == UNSET || type == TUNER_ABSENT) | 131 | tuner_dbg ("tuner 0x%02x: Tuner type absent\n",c->addr); |
140 | return; | 132 | return; |
141 | if (type >= tuner_count) | 133 | } |
134 | |||
135 | if (type >= tuner_count) { | ||
136 | tuner_warn ("tuner 0x%02x: Tuner count greater than %d\n",c->addr,tuner_count); | ||
142 | return; | 137 | return; |
138 | } | ||
143 | 139 | ||
140 | /* This code detects calls by card attach_inform */ | ||
144 | if (NULL == t->i2c.dev.driver) { | 141 | if (NULL == t->i2c.dev.driver) { |
145 | /* not registered yet */ | 142 | tuner_dbg ("tuner 0x%02x: called during i2c_client register by adapter's attach_inform\n", c->addr); |
146 | t->type = type; | 143 | |
144 | t->type=type; | ||
147 | return; | 145 | return; |
148 | } | 146 | } |
149 | if ((t->initialized) && (t->type == type)) | ||
150 | /* run only once except type change Hac 04/05*/ | ||
151 | return; | ||
152 | |||
153 | t->initialized = 1; | ||
154 | 147 | ||
155 | t->type = type; | 148 | t->type = type; |
149 | |||
156 | switch (t->type) { | 150 | switch (t->type) { |
157 | case TUNER_MT2032: | 151 | case TUNER_MT2032: |
158 | microtune_init(c); | 152 | microtune_init(c); |
@@ -161,136 +155,194 @@ static void set_type(struct i2c_client *c, unsigned int type) | |||
161 | tda8290_init(c); | 155 | tda8290_init(c); |
162 | break; | 156 | break; |
163 | case TUNER_TEA5767: | 157 | case TUNER_TEA5767: |
164 | if (tea5767_tuner_init(c)==EINVAL) t->type=TUNER_ABSENT; | 158 | if (tea5767_tuner_init(c) == EINVAL) { |
159 | t->type = TUNER_ABSENT; | ||
160 | t->mode_mask = T_UNINITIALIZED; | ||
161 | return; | ||
162 | } | ||
163 | t->mode_mask = T_RADIO; | ||
165 | break; | 164 | break; |
166 | case TUNER_PHILIPS_FMD1216ME_MK3: | 165 | case TUNER_PHILIPS_FMD1216ME_MK3: |
167 | buffer[0] = 0x0b; | 166 | buffer[0] = 0x0b; |
168 | buffer[1] = 0xdc; | 167 | buffer[1] = 0xdc; |
169 | buffer[2] = 0x9c; | 168 | buffer[2] = 0x9c; |
170 | buffer[3] = 0x60; | 169 | buffer[3] = 0x60; |
171 | i2c_master_send(c,buffer,4); | 170 | i2c_master_send(c, buffer, 4); |
172 | mdelay(1); | 171 | mdelay(1); |
173 | buffer[2] = 0x86; | 172 | buffer[2] = 0x86; |
174 | buffer[3] = 0x54; | 173 | buffer[3] = 0x54; |
175 | i2c_master_send(c,buffer,4); | 174 | i2c_master_send(c, buffer, 4); |
176 | default_tuner_init(c); | 175 | default_tuner_init(c); |
177 | break; | 176 | break; |
178 | default: | 177 | default: |
179 | /* TEA5767 autodetection code */ | ||
180 | if (tea5767_tuner_init(c)!=EINVAL) { | ||
181 | t->type = TUNER_TEA5767; | ||
182 | if (first_tuner == 0x60) | ||
183 | first_tuner++; | ||
184 | break; | ||
185 | } | ||
186 | |||
187 | default_tuner_init(c); | 178 | default_tuner_init(c); |
188 | break; | 179 | break; |
189 | } | 180 | } |
190 | tuner_dbg ("I2C addr 0x%02x with type %d\n",c->addr<<1,type); | 181 | |
182 | if (t->mode_mask == T_UNINITIALIZED) | ||
183 | t->mode_mask = new_mode_mask; | ||
184 | |||
185 | set_freq(c, t->freq); | ||
186 | tuner_dbg("%s %s I2C addr 0x%02x with type %d used for 0x%02x\n", | ||
187 | c->adapter->name, c->driver->name, c->addr << 1, type, | ||
188 | t->mode_mask); | ||
191 | } | 189 | } |
192 | 190 | ||
193 | #define CHECK_ADDR(tp,cmd,tun) if (client->addr!=tp) { \ | 191 | /* |
194 | return 0; } else if (tuner_debug) \ | 192 | * This function apply tuner config to tuner specified |
195 | tuner_info ("Cmd %s accepted to "tun"\n",cmd); | 193 | * by tun_setup structure. I addr is unset, then admin status |
196 | #define CHECK_MODE(cmd) if (t->mode == V4L2_TUNER_RADIO) { \ | 194 | * and tun addr status is more precise then current status, |
197 | CHECK_ADDR(radio_tuner,cmd,"radio") } else \ | 195 | * it's applied. Otherwise status and type are applied only to |
198 | { CHECK_ADDR(tv_tuner,cmd,"TV"); } | 196 | * tuner with exactly the same addr. |
197 | */ | ||
198 | |||
199 | static void set_addr(struct i2c_client *c, struct tuner_setup *tun_setup) | ||
200 | { | ||
201 | struct tuner *t = i2c_get_clientdata(c); | ||
202 | |||
203 | if (tun_setup->addr == ADDR_UNSET) { | ||
204 | if (t->mode_mask & tun_setup->mode_mask) | ||
205 | set_type(c, tun_setup->type, tun_setup->mode_mask); | ||
206 | } else if (tun_setup->addr == c->addr) { | ||
207 | set_type(c, tun_setup->type, tun_setup->mode_mask); | ||
208 | } | ||
209 | } | ||
199 | 210 | ||
200 | static void set_addr(struct i2c_client *c, struct tuner_addr *tun_addr) | 211 | static inline int check_mode(struct tuner *t, char *cmd) |
201 | { | 212 | { |
202 | /* ADDR_UNSET defaults to first available tuner */ | 213 | if (1 << t->mode & t->mode_mask) { |
203 | if ( tun_addr->addr == ADDR_UNSET ) { | 214 | switch (t->mode) { |
204 | if (first_tuner != c->addr) | ||
205 | return; | ||
206 | switch (tun_addr->v4l2_tuner) { | ||
207 | case V4L2_TUNER_RADIO: | 215 | case V4L2_TUNER_RADIO: |
208 | radio_tuner=c->addr; | 216 | tuner_dbg("Cmd %s accepted for radio\n", cmd); |
209 | break; | 217 | break; |
210 | default: | 218 | case V4L2_TUNER_ANALOG_TV: |
211 | tv_tuner=c->addr; | 219 | tuner_dbg("Cmd %s accepted for analog TV\n", cmd); |
220 | break; | ||
221 | case V4L2_TUNER_DIGITAL_TV: | ||
222 | tuner_dbg("Cmd %s accepted for digital TV\n", cmd); | ||
212 | break; | 223 | break; |
213 | } | 224 | } |
214 | } else { | 225 | return 0; |
215 | /* Sets tuner to its configured value */ | ||
216 | switch (tun_addr->v4l2_tuner) { | ||
217 | case V4L2_TUNER_RADIO: | ||
218 | radio_tuner=tun_addr->addr; | ||
219 | if ( tun_addr->addr == c->addr ) set_type(c,tun_addr->type); | ||
220 | return; | ||
221 | default: | ||
222 | tv_tuner=tun_addr->addr; | ||
223 | if ( tun_addr->addr == c->addr ) set_type(c,tun_addr->type); | ||
224 | return; | ||
225 | } | ||
226 | } | 226 | } |
227 | set_type(c,tun_addr->type); | 227 | return EINVAL; |
228 | } | 228 | } |
229 | 229 | ||
230 | static char pal[] = "-"; | 230 | static char pal[] = "-"; |
231 | module_param_string(pal, pal, sizeof(pal), 0644); | 231 | module_param_string(pal, pal, sizeof(pal), 0644); |
232 | static char secam[] = "-"; | ||
233 | module_param_string(secam, secam, sizeof(secam), 0644); | ||
232 | 234 | ||
235 | /* get more precise norm info from insmod option */ | ||
233 | static int tuner_fixup_std(struct tuner *t) | 236 | static int tuner_fixup_std(struct tuner *t) |
234 | { | 237 | { |
235 | if ((t->std & V4L2_STD_PAL) == V4L2_STD_PAL) { | 238 | if ((t->std & V4L2_STD_PAL) == V4L2_STD_PAL) { |
236 | /* get more precise norm info from insmod option */ | ||
237 | switch (pal[0]) { | 239 | switch (pal[0]) { |
238 | case 'b': | 240 | case 'b': |
239 | case 'B': | 241 | case 'B': |
240 | case 'g': | 242 | case 'g': |
241 | case 'G': | 243 | case 'G': |
242 | tuner_dbg("insmod fixup: PAL => PAL-BG\n"); | 244 | tuner_dbg ("insmod fixup: PAL => PAL-BG\n"); |
243 | t->std = V4L2_STD_PAL_BG; | 245 | t->std = V4L2_STD_PAL_BG; |
244 | break; | 246 | break; |
245 | case 'i': | 247 | case 'i': |
246 | case 'I': | 248 | case 'I': |
247 | tuner_dbg("insmod fixup: PAL => PAL-I\n"); | 249 | tuner_dbg ("insmod fixup: PAL => PAL-I\n"); |
248 | t->std = V4L2_STD_PAL_I; | 250 | t->std = V4L2_STD_PAL_I; |
249 | break; | 251 | break; |
250 | case 'd': | 252 | case 'd': |
251 | case 'D': | 253 | case 'D': |
252 | case 'k': | 254 | case 'k': |
253 | case 'K': | 255 | case 'K': |
254 | tuner_dbg("insmod fixup: PAL => PAL-DK\n"); | 256 | tuner_dbg ("insmod fixup: PAL => PAL-DK\n"); |
255 | t->std = V4L2_STD_PAL_DK; | 257 | t->std = V4L2_STD_PAL_DK; |
256 | break; | 258 | break; |
259 | case 'M': | ||
260 | case 'm': | ||
261 | tuner_dbg ("insmod fixup: PAL => PAL-M\n"); | ||
262 | t->std = V4L2_STD_PAL_M; | ||
263 | break; | ||
264 | case 'N': | ||
265 | case 'n': | ||
266 | tuner_dbg ("insmod fixup: PAL => PAL-N\n"); | ||
267 | t->std = V4L2_STD_PAL_N; | ||
268 | break; | ||
257 | } | 269 | } |
258 | } | 270 | } |
271 | if ((t->std & V4L2_STD_SECAM) == V4L2_STD_SECAM) { | ||
272 | switch (secam[0]) { | ||
273 | case 'd': | ||
274 | case 'D': | ||
275 | case 'k': | ||
276 | case 'K': | ||
277 | tuner_dbg ("insmod fixup: SECAM => SECAM-DK\n"); | ||
278 | t->std = V4L2_STD_SECAM_DK; | ||
279 | break; | ||
280 | case 'l': | ||
281 | case 'L': | ||
282 | tuner_dbg ("insmod fixup: SECAM => SECAM-L\n"); | ||
283 | t->std = V4L2_STD_SECAM_L; | ||
284 | break; | ||
285 | } | ||
286 | } | ||
287 | |||
259 | return 0; | 288 | return 0; |
260 | } | 289 | } |
261 | 290 | ||
262 | /* ---------------------------------------------------------------------- */ | 291 | /* ---------------------------------------------------------------------- */ |
263 | 292 | ||
293 | /* static var Used only in tuner_attach and tuner_probe */ | ||
294 | static unsigned default_mode_mask; | ||
295 | |||
296 | /* During client attach, set_type is called by adapter's attach_inform callback. | ||
297 | set_type must then be completed by tuner_attach. | ||
298 | */ | ||
264 | static int tuner_attach(struct i2c_adapter *adap, int addr, int kind) | 299 | static int tuner_attach(struct i2c_adapter *adap, int addr, int kind) |
265 | { | 300 | { |
266 | struct tuner *t; | 301 | struct tuner *t; |
267 | 302 | ||
268 | /* by default, first I2C card is both tv and radio tuner */ | 303 | client_template.adapter = adap; |
269 | if (this_adap == 0) { | 304 | client_template.addr = addr; |
270 | first_tuner = addr; | ||
271 | tv_tuner = addr; | ||
272 | radio_tuner = addr; | ||
273 | } | ||
274 | this_adap++; | ||
275 | |||
276 | client_template.adapter = adap; | ||
277 | client_template.addr = addr; | ||
278 | 305 | ||
279 | t = kmalloc(sizeof(struct tuner),GFP_KERNEL); | 306 | t = kmalloc(sizeof(struct tuner), GFP_KERNEL); |
280 | if (NULL == t) | 307 | if (NULL == t) |
281 | return -ENOMEM; | 308 | return -ENOMEM; |
282 | memset(t,0,sizeof(struct tuner)); | 309 | memset(t, 0, sizeof(struct tuner)); |
283 | memcpy(&t->i2c,&client_template,sizeof(struct i2c_client)); | 310 | memcpy(&t->i2c, &client_template, sizeof(struct i2c_client)); |
284 | i2c_set_clientdata(&t->i2c, t); | 311 | i2c_set_clientdata(&t->i2c, t); |
285 | t->type = UNSET; | 312 | t->type = UNSET; |
286 | t->radio_if2 = 10700*1000; /* 10.7MHz - FM radio */ | 313 | t->radio_if2 = 10700 * 1000; /* 10.7MHz - FM radio */ |
287 | t->audmode = V4L2_TUNER_MODE_STEREO; | 314 | t->audmode = V4L2_TUNER_MODE_STEREO; |
315 | t->mode_mask = T_UNINITIALIZED; | ||
316 | |||
317 | |||
318 | tuner_info("chip found @ 0x%x (%s)\n", addr << 1, adap->name); | ||
319 | |||
320 | /* TEA5767 autodetection code - only for addr = 0xc0 */ | ||
321 | if (addr == 0x60) { | ||
322 | if (tea5767_autodetection(&t->i2c) != EINVAL) { | ||
323 | t->type = TUNER_TEA5767; | ||
324 | t->mode_mask = T_RADIO; | ||
325 | t->mode = T_STANDBY; | ||
326 | t->freq = 87.5 * 16; /* Sets freq to FM range */ | ||
327 | default_mode_mask &= ~T_RADIO; | ||
328 | |||
329 | i2c_attach_client (&t->i2c); | ||
330 | set_type(&t->i2c,t->type, t->mode_mask); | ||
331 | return 0; | ||
332 | } | ||
333 | } | ||
288 | 334 | ||
289 | i2c_attach_client(&t->i2c); | 335 | /* Initializes only the first adapter found */ |
290 | tuner_info("chip found @ 0x%x (%s)\n", | 336 | if (default_mode_mask != T_UNINITIALIZED) { |
291 | addr << 1, adap->name); | 337 | tuner_dbg ("Setting mode_mask to 0x%02x\n", default_mode_mask); |
338 | t->mode_mask = default_mode_mask; | ||
339 | t->freq = 400 * 16; /* Sets freq to VHF High */ | ||
340 | default_mode_mask = T_UNINITIALIZED; | ||
341 | } | ||
292 | 342 | ||
293 | set_type(&t->i2c, t->type); | 343 | /* Should be just before return */ |
344 | i2c_attach_client (&t->i2c); | ||
345 | set_type (&t->i2c,t->type, t->mode_mask); | ||
294 | return 0; | 346 | return 0; |
295 | } | 347 | } |
296 | 348 | ||
@@ -300,11 +352,8 @@ static int tuner_probe(struct i2c_adapter *adap) | |||
300 | normal_i2c[0] = addr; | 352 | normal_i2c[0] = addr; |
301 | normal_i2c[1] = I2C_CLIENT_END; | 353 | normal_i2c[1] = I2C_CLIENT_END; |
302 | } | 354 | } |
303 | this_adap = 0; | ||
304 | 355 | ||
305 | first_tuner = 0; | 356 | default_mode_mask = T_RADIO | T_ANALOG_TV | T_DIGITAL_TV; |
306 | tv_tuner = 0; | ||
307 | radio_tuner = 0; | ||
308 | 357 | ||
309 | if (adap->class & I2C_CLASS_TV_ANALOG) | 358 | if (adap->class & I2C_CLASS_TV_ANALOG) |
310 | return i2c_probe(adap, &addr_data, tuner_attach); | 359 | return i2c_probe(adap, &addr_data, tuner_attach); |
@@ -316,9 +365,10 @@ static int tuner_detach(struct i2c_client *client) | |||
316 | struct tuner *t = i2c_get_clientdata(client); | 365 | struct tuner *t = i2c_get_clientdata(client); |
317 | int err; | 366 | int err; |
318 | 367 | ||
319 | err=i2c_detach_client(&t->i2c); | 368 | err = i2c_detach_client(&t->i2c); |
320 | if (err) { | 369 | if (err) { |
321 | tuner_warn ("Client deregistration failed, client not detached.\n"); | 370 | tuner_warn |
371 | ("Client deregistration failed, client not detached.\n"); | ||
322 | return err; | 372 | return err; |
323 | } | 373 | } |
324 | 374 | ||
@@ -326,37 +376,65 @@ static int tuner_detach(struct i2c_client *client) | |||
326 | return 0; | 376 | return 0; |
327 | } | 377 | } |
328 | 378 | ||
329 | #define SWITCH_V4L2 if (!t->using_v4l2 && tuner_debug) \ | 379 | /* |
330 | tuner_info("switching to v4l2\n"); \ | 380 | * Switch tuner to other mode. If tuner support both tv and radio, |
331 | t->using_v4l2 = 1; | 381 | * set another frequency to some value (This is needed for some pal |
332 | #define CHECK_V4L2 if (t->using_v4l2) { if (tuner_debug) \ | 382 | * tuners to avoid locking). Otherwise, just put second tuner in |
333 | tuner_info("ignore v4l1 call\n"); \ | 383 | * standby mode. |
334 | return 0; } | 384 | */ |
385 | |||
386 | static inline int set_mode(struct i2c_client *client, struct tuner *t, int mode, char *cmd) | ||
387 | { | ||
388 | if (mode != t->mode) { | ||
389 | |||
390 | t->mode = mode; | ||
391 | if (check_mode(t, cmd) == EINVAL) { | ||
392 | t->mode = T_STANDBY; | ||
393 | if (V4L2_TUNER_RADIO == mode) { | ||
394 | set_tv_freq(client, 400 * 16); | ||
395 | } else { | ||
396 | set_radio_freq(client, 87.5 * 16000); | ||
397 | } | ||
398 | return EINVAL; | ||
399 | } | ||
400 | } | ||
401 | return 0; | ||
402 | } | ||
403 | |||
404 | #define switch_v4l2() if (!t->using_v4l2) \ | ||
405 | tuner_dbg("switching to v4l2\n"); \ | ||
406 | t->using_v4l2 = 1; | ||
407 | |||
408 | static inline int check_v4l2(struct tuner *t) | ||
409 | { | ||
410 | if (t->using_v4l2) { | ||
411 | tuner_dbg ("ignore v4l1 call\n"); | ||
412 | return EINVAL; | ||
413 | } | ||
414 | return 0; | ||
415 | } | ||
335 | 416 | ||
336 | static int | 417 | static int tuner_command(struct i2c_client *client, unsigned int cmd, void *arg) |
337 | tuner_command(struct i2c_client *client, unsigned int cmd, void *arg) | ||
338 | { | 418 | { |
339 | struct tuner *t = i2c_get_clientdata(client); | 419 | struct tuner *t = i2c_get_clientdata(client); |
340 | unsigned int *iarg = (int*)arg; | 420 | unsigned int *iarg = (int *)arg; |
341 | 421 | ||
342 | switch (cmd) { | 422 | switch (cmd) { |
343 | /* --- configuration --- */ | 423 | /* --- configuration --- */ |
344 | case TUNER_SET_TYPE: | ||
345 | set_type(client,*iarg); | ||
346 | break; | ||
347 | case TUNER_SET_TYPE_ADDR: | 424 | case TUNER_SET_TYPE_ADDR: |
348 | set_addr(client,(struct tuner_addr *)arg); | 425 | tuner_dbg ("Calling set_type_addr for type=%d, addr=0x%02x, mode=0x%02x\n", |
426 | ((struct tuner_setup *)arg)->type, | ||
427 | ((struct tuner_setup *)arg)->addr, | ||
428 | ((struct tuner_setup *)arg)->mode_mask); | ||
429 | |||
430 | set_addr(client, (struct tuner_setup *)arg); | ||
349 | break; | 431 | break; |
350 | case AUDC_SET_RADIO: | 432 | case AUDC_SET_RADIO: |
351 | t->mode = V4L2_TUNER_RADIO; | 433 | set_mode(client,t,V4L2_TUNER_RADIO, "AUDC_SET_RADIO"); |
352 | CHECK_ADDR(tv_tuner,"AUDC_SET_RADIO","TV"); | ||
353 | |||
354 | if (V4L2_TUNER_RADIO != t->mode) { | ||
355 | set_tv_freq(client,400 * 16); | ||
356 | } | ||
357 | break; | 434 | break; |
358 | case AUDC_CONFIG_PINNACLE: | 435 | case AUDC_CONFIG_PINNACLE: |
359 | CHECK_ADDR(tv_tuner,"AUDC_CONFIG_PINNACLE","TV"); | 436 | if (check_mode(t, "AUDC_CONFIG_PINNACLE") == EINVAL) |
437 | return 0; | ||
360 | switch (*iarg) { | 438 | switch (*iarg) { |
361 | case 2: | 439 | case 2: |
362 | tuner_dbg("pinnacle pal\n"); | 440 | tuner_dbg("pinnacle pal\n"); |
@@ -368,219 +446,238 @@ tuner_command(struct i2c_client *client, unsigned int cmd, void *arg) | |||
368 | break; | 446 | break; |
369 | } | 447 | } |
370 | break; | 448 | break; |
449 | case TDA9887_SET_CONFIG: | ||
450 | break; | ||
371 | /* --- v4l ioctls --- */ | 451 | /* --- v4l ioctls --- */ |
372 | /* take care: bttv does userspace copying, we'll get a | 452 | /* take care: bttv does userspace copying, we'll get a |
373 | kernel pointer here... */ | 453 | kernel pointer here... */ |
374 | case VIDIOCSCHAN: | 454 | case VIDIOCSCHAN: |
375 | { | 455 | { |
376 | static const v4l2_std_id map[] = { | 456 | static const v4l2_std_id map[] = { |
377 | [ VIDEO_MODE_PAL ] = V4L2_STD_PAL, | 457 | [VIDEO_MODE_PAL] = V4L2_STD_PAL, |
378 | [ VIDEO_MODE_NTSC ] = V4L2_STD_NTSC_M, | 458 | [VIDEO_MODE_NTSC] = V4L2_STD_NTSC_M, |
379 | [ VIDEO_MODE_SECAM ] = V4L2_STD_SECAM, | 459 | [VIDEO_MODE_SECAM] = V4L2_STD_SECAM, |
380 | [ 4 /* bttv */ ] = V4L2_STD_PAL_M, | 460 | [4 /* bttv */ ] = V4L2_STD_PAL_M, |
381 | [ 5 /* bttv */ ] = V4L2_STD_PAL_N, | 461 | [5 /* bttv */ ] = V4L2_STD_PAL_N, |
382 | [ 6 /* bttv */ ] = V4L2_STD_NTSC_M_JP, | 462 | [6 /* bttv */ ] = V4L2_STD_NTSC_M_JP, |
383 | }; | 463 | }; |
384 | struct video_channel *vc = arg; | 464 | struct video_channel *vc = arg; |
385 | 465 | ||
386 | CHECK_V4L2; | 466 | if (check_v4l2(t) == EINVAL) |
387 | t->mode = V4L2_TUNER_ANALOG_TV; | 467 | return 0; |
388 | CHECK_ADDR(tv_tuner,"VIDIOCSCHAN","TV"); | 468 | |
389 | 469 | if (set_mode(client,t,V4L2_TUNER_ANALOG_TV, "VIDIOCSCHAN")==EINVAL) | |
390 | if (vc->norm < ARRAY_SIZE(map)) | 470 | return 0; |
391 | t->std = map[vc->norm]; | 471 | |
392 | tuner_fixup_std(t); | 472 | if (vc->norm < ARRAY_SIZE(map)) |
393 | if (t->freq) | 473 | t->std = map[vc->norm]; |
394 | set_tv_freq(client,t->freq); | 474 | tuner_fixup_std(t); |
395 | return 0; | 475 | if (t->freq) |
396 | } | 476 | set_tv_freq(client, t->freq); |
477 | return 0; | ||
478 | } | ||
397 | case VIDIOCSFREQ: | 479 | case VIDIOCSFREQ: |
398 | { | 480 | { |
399 | unsigned long *v = arg; | 481 | unsigned long *v = arg; |
400 | 482 | ||
401 | CHECK_MODE("VIDIOCSFREQ"); | 483 | if (check_mode(t, "VIDIOCSFREQ") == EINVAL) |
402 | CHECK_V4L2; | 484 | return 0; |
403 | set_freq(client,*v); | 485 | if (check_v4l2(t) == EINVAL) |
404 | return 0; | 486 | return 0; |
405 | } | 487 | |
488 | set_freq(client, *v); | ||
489 | return 0; | ||
490 | } | ||
406 | case VIDIOCGTUNER: | 491 | case VIDIOCGTUNER: |
407 | { | 492 | { |
408 | struct video_tuner *vt = arg; | 493 | struct video_tuner *vt = arg; |
409 | 494 | ||
410 | CHECK_ADDR(radio_tuner,"VIDIOCGTUNER","radio"); | 495 | if (check_mode(t, "VIDIOCGTUNER") == EINVAL) |
411 | CHECK_V4L2; | 496 | return 0; |
412 | if (V4L2_TUNER_RADIO == t->mode) { | 497 | if (check_v4l2(t) == EINVAL) |
413 | if (t->has_signal) | 498 | return 0; |
414 | vt->signal = t->has_signal(client); | 499 | |
415 | if (t->is_stereo) { | 500 | if (V4L2_TUNER_RADIO == t->mode) { |
416 | if (t->is_stereo(client)) | 501 | if (t->has_signal) |
417 | vt->flags |= VIDEO_TUNER_STEREO_ON; | 502 | vt->signal = t->has_signal(client); |
418 | else | 503 | if (t->is_stereo) { |
419 | vt->flags &= ~VIDEO_TUNER_STEREO_ON; | 504 | if (t->is_stereo(client)) |
420 | } | 505 | vt->flags |= |
421 | vt->flags |= V4L2_TUNER_CAP_LOW; /* Allow freqs at 62.5 Hz */ | 506 | VIDEO_TUNER_STEREO_ON; |
507 | else | ||
508 | vt->flags &= | ||
509 | ~VIDEO_TUNER_STEREO_ON; | ||
510 | } | ||
511 | vt->flags |= VIDEO_TUNER_LOW; /* Allow freqs at 62.5 Hz */ | ||
422 | 512 | ||
423 | vt->rangelow = radio_range[0] * 16000; | 513 | vt->rangelow = radio_range[0] * 16000; |
424 | vt->rangehigh = radio_range[1] * 16000; | 514 | vt->rangehigh = radio_range[1] * 16000; |
425 | 515 | ||
426 | } else { | 516 | } else { |
427 | vt->rangelow = tv_range[0] * 16; | 517 | vt->rangelow = tv_range[0] * 16; |
428 | vt->rangehigh = tv_range[1] * 16; | 518 | vt->rangehigh = tv_range[1] * 16; |
429 | } | 519 | } |
430 | 520 | ||
431 | return 0; | 521 | return 0; |
432 | } | 522 | } |
433 | case VIDIOCGAUDIO: | 523 | case VIDIOCGAUDIO: |
434 | { | 524 | { |
435 | struct video_audio *va = arg; | 525 | struct video_audio *va = arg; |
436 | 526 | ||
437 | CHECK_ADDR(radio_tuner,"VIDIOCGAUDIO","radio"); | 527 | if (check_mode(t, "VIDIOCGAUDIO") == EINVAL) |
438 | CHECK_V4L2; | 528 | return 0; |
439 | if (V4L2_TUNER_RADIO == t->mode && t->is_stereo) | 529 | if (check_v4l2(t) == EINVAL) |
440 | va->mode = t->is_stereo(client) | 530 | return 0; |
441 | ? VIDEO_SOUND_STEREO | 531 | |
442 | : VIDEO_SOUND_MONO; | 532 | if (V4L2_TUNER_RADIO == t->mode && t->is_stereo) |
443 | return 0; | 533 | va->mode = t->is_stereo(client) |
444 | } | 534 | ? VIDEO_SOUND_STEREO : VIDEO_SOUND_MONO; |
535 | return 0; | ||
536 | } | ||
445 | 537 | ||
446 | case VIDIOC_S_STD: | 538 | case VIDIOC_S_STD: |
447 | { | 539 | { |
448 | v4l2_std_id *id = arg; | 540 | v4l2_std_id *id = arg; |
449 | 541 | ||
450 | SWITCH_V4L2; | 542 | if (set_mode (client, t, V4L2_TUNER_ANALOG_TV, "VIDIOC_S_STD") |
451 | t->mode = V4L2_TUNER_ANALOG_TV; | 543 | == EINVAL) |
452 | CHECK_ADDR(tv_tuner,"VIDIOC_S_STD","TV"); | 544 | return 0; |
453 | 545 | ||
454 | t->std = *id; | 546 | switch_v4l2(); |
455 | tuner_fixup_std(t); | 547 | |
456 | if (t->freq) | 548 | t->std = *id; |
457 | set_freq(client,t->freq); | 549 | tuner_fixup_std(t); |
458 | break; | 550 | if (t->freq) |
459 | } | 551 | set_freq(client, t->freq); |
552 | break; | ||
553 | } | ||
460 | case VIDIOC_S_FREQUENCY: | 554 | case VIDIOC_S_FREQUENCY: |
461 | { | 555 | { |
462 | struct v4l2_frequency *f = arg; | 556 | struct v4l2_frequency *f = arg; |
463 | 557 | ||
464 | CHECK_MODE("VIDIOC_S_FREQUENCY"); | 558 | t->freq = f->frequency; |
465 | SWITCH_V4L2; | 559 | switch_v4l2(); |
466 | if (V4L2_TUNER_RADIO == f->type && | 560 | if (V4L2_TUNER_RADIO == f->type && |
467 | V4L2_TUNER_RADIO != t->mode) | 561 | V4L2_TUNER_RADIO != t->mode) { |
468 | set_tv_freq(client,400*16); | 562 | if (set_mode (client, t, f->type, "VIDIOC_S_FREQUENCY") |
469 | t->mode = f->type; | 563 | == EINVAL) |
470 | set_freq(client,f->frequency); | 564 | return 0; |
471 | break; | 565 | } |
472 | } | 566 | set_freq(client,t->freq); |
473 | case VIDIOC_G_FREQUENCY: | ||
474 | { | ||
475 | struct v4l2_frequency *f = arg; | ||
476 | 567 | ||
477 | CHECK_MODE("VIDIOC_G_FREQUENCY"); | 568 | break; |
478 | SWITCH_V4L2; | 569 | } |
479 | f->type = t->mode; | 570 | case VIDIOC_G_FREQUENCY: |
480 | f->frequency = t->freq; | 571 | { |
481 | break; | 572 | struct v4l2_frequency *f = arg; |
482 | } | 573 | |
574 | if (check_mode(t, "VIDIOC_G_FREQUENCY") == EINVAL) | ||
575 | return 0; | ||
576 | switch_v4l2(); | ||
577 | f->type = t->mode; | ||
578 | f->frequency = t->freq; | ||
579 | break; | ||
580 | } | ||
483 | case VIDIOC_G_TUNER: | 581 | case VIDIOC_G_TUNER: |
484 | { | 582 | { |
485 | struct v4l2_tuner *tuner = arg; | 583 | struct v4l2_tuner *tuner = arg; |
486 | 584 | ||
487 | CHECK_MODE("VIDIOC_G_TUNER"); | 585 | if (check_mode(t, "VIDIOC_G_TUNER") == EINVAL) |
488 | SWITCH_V4L2; | 586 | return 0; |
489 | if (V4L2_TUNER_RADIO == t->mode) { | 587 | switch_v4l2(); |
490 | if (t->has_signal) | 588 | |
491 | tuner -> signal = t->has_signal(client); | 589 | if (V4L2_TUNER_RADIO == t->mode) { |
492 | if (t->is_stereo) { | 590 | |
493 | if (t->is_stereo(client)) { | 591 | if (t->has_signal) |
494 | tuner -> rxsubchans = V4L2_TUNER_SUB_STEREO | V4L2_TUNER_SUB_MONO; | 592 | tuner->signal = t->has_signal(client); |
495 | } else { | 593 | |
496 | tuner -> rxsubchans = V4L2_TUNER_SUB_MONO; | 594 | if (t->is_stereo) { |
595 | if (t->is_stereo(client)) { | ||
596 | tuner->rxsubchans = | ||
597 | V4L2_TUNER_SUB_STEREO | | ||
598 | V4L2_TUNER_SUB_MONO; | ||
599 | } else { | ||
600 | tuner->rxsubchans = | ||
601 | V4L2_TUNER_SUB_MONO; | ||
602 | } | ||
497 | } | 603 | } |
604 | |||
605 | tuner->capability |= | ||
606 | V4L2_TUNER_CAP_LOW | V4L2_TUNER_CAP_STEREO; | ||
607 | |||
608 | tuner->audmode = t->audmode; | ||
609 | |||
610 | tuner->rangelow = radio_range[0] * 16000; | ||
611 | tuner->rangehigh = radio_range[1] * 16000; | ||
612 | } else { | ||
613 | tuner->rangelow = tv_range[0] * 16; | ||
614 | tuner->rangehigh = tv_range[1] * 16; | ||
498 | } | 615 | } |
499 | tuner->capability |= V4L2_TUNER_CAP_LOW | V4L2_TUNER_CAP_STEREO; | 616 | break; |
500 | tuner->audmode = t->audmode; | 617 | } |
501 | 618 | case VIDIOC_S_TUNER: | |
502 | tuner->rangelow = radio_range[0] * 16000; | 619 | { |
503 | tuner->rangehigh = radio_range[1] * 16000; | 620 | struct v4l2_tuner *tuner = arg; |
504 | } else { | 621 | |
505 | tuner->rangelow = tv_range[0] * 16; | 622 | if (check_mode(t, "VIDIOC_S_TUNER") == EINVAL) |
506 | tuner->rangehigh = tv_range[1] * 16; | 623 | return 0; |
624 | |||
625 | switch_v4l2(); | ||
626 | |||
627 | if (V4L2_TUNER_RADIO == t->mode) { | ||
628 | t->audmode = tuner->audmode; | ||
629 | set_radio_freq(client, t->freq); | ||
630 | } | ||
631 | break; | ||
507 | } | 632 | } |
508 | break; | ||
509 | } | ||
510 | case VIDIOC_S_TUNER: /* Allow changing radio range and audio mode */ | ||
511 | { | ||
512 | struct v4l2_tuner *tuner = arg; | ||
513 | |||
514 | CHECK_ADDR(radio_tuner,"VIDIOC_S_TUNER","radio"); | ||
515 | SWITCH_V4L2; | ||
516 | |||
517 | /* To switch the audio mode, applications initialize the | ||
518 | index and audmode fields and the reserved array and | ||
519 | call the VIDIOC_S_TUNER ioctl. */ | ||
520 | /* rxsubchannels: V4L2_TUNER_MODE_MONO, V4L2_TUNER_MODE_STEREO, | ||
521 | V4L2_TUNER_MODE_LANG1, V4L2_TUNER_MODE_LANG2, | ||
522 | V4L2_TUNER_MODE_SAP */ | ||
523 | |||
524 | if (tuner->audmode == V4L2_TUNER_MODE_MONO) | ||
525 | t->audmode = V4L2_TUNER_MODE_MONO; | ||
526 | else | ||
527 | t->audmode = V4L2_TUNER_MODE_STEREO; | ||
528 | |||
529 | set_radio_freq(client, t->freq); | ||
530 | break; | ||
531 | } | ||
532 | case TDA9887_SET_CONFIG: /* Nothing to do on tuner-core */ | ||
533 | break; | ||
534 | default: | 633 | default: |
535 | tuner_dbg ("Unimplemented IOCTL 0x%08x called to tuner.\n", cmd); | 634 | tuner_dbg("Unimplemented IOCTL 0x%08x called to tuner.\n", cmd); |
536 | /* nothing */ | ||
537 | break; | 635 | break; |
538 | } | 636 | } |
539 | 637 | ||
540 | return 0; | 638 | return 0; |
541 | } | 639 | } |
542 | 640 | ||
543 | static int tuner_suspend(struct device * dev, u32 state, u32 level) | 641 | static int tuner_suspend(struct device *dev, u32 state, u32 level) |
544 | { | 642 | { |
545 | struct i2c_client *c = container_of(dev, struct i2c_client, dev); | 643 | struct i2c_client *c = container_of (dev, struct i2c_client, dev); |
546 | struct tuner *t = i2c_get_clientdata(c); | 644 | struct tuner *t = i2c_get_clientdata (c); |
547 | 645 | ||
548 | tuner_dbg("suspend\n"); | 646 | tuner_dbg ("suspend\n"); |
549 | /* FIXME: power down ??? */ | 647 | /* FIXME: power down ??? */ |
550 | return 0; | 648 | return 0; |
551 | } | 649 | } |
552 | 650 | ||
553 | static int tuner_resume(struct device * dev, u32 level) | 651 | static int tuner_resume(struct device *dev, u32 level) |
554 | { | 652 | { |
555 | struct i2c_client *c = container_of(dev, struct i2c_client, dev); | 653 | struct i2c_client *c = container_of (dev, struct i2c_client, dev); |
556 | struct tuner *t = i2c_get_clientdata(c); | 654 | struct tuner *t = i2c_get_clientdata (c); |
557 | 655 | ||
558 | tuner_dbg("resume\n"); | 656 | tuner_dbg ("resume\n"); |
559 | if (t->freq) | 657 | if (t->freq) |
560 | set_freq(c,t->freq); | 658 | set_freq(c, t->freq); |
561 | return 0; | 659 | return 0; |
562 | } | 660 | } |
563 | 661 | ||
564 | /* ----------------------------------------------------------------------- */ | 662 | /* ----------------------------------------------------------------------- */ |
565 | 663 | ||
566 | static struct i2c_driver driver = { | 664 | static struct i2c_driver driver = { |
567 | .owner = THIS_MODULE, | 665 | .owner = THIS_MODULE, |
568 | .name = "tuner", | 666 | .name = "tuner", |
569 | .id = I2C_DRIVERID_TUNER, | 667 | .id = I2C_DRIVERID_TUNER, |
570 | .flags = I2C_DF_NOTIFY, | 668 | .flags = I2C_DF_NOTIFY, |
571 | .attach_adapter = tuner_probe, | 669 | .attach_adapter = tuner_probe, |
572 | .detach_client = tuner_detach, | 670 | .detach_client = tuner_detach, |
573 | .command = tuner_command, | 671 | .command = tuner_command, |
574 | .driver = { | 672 | .driver = { |
575 | .suspend = tuner_suspend, | 673 | .suspend = tuner_suspend, |
576 | .resume = tuner_resume, | 674 | .resume = tuner_resume, |
577 | }, | 675 | }, |
578 | }; | 676 | }; |
579 | static struct i2c_client client_template = | 677 | static struct i2c_client client_template = { |
580 | { | ||
581 | I2C_DEVNAME("(tuner unset)"), | 678 | I2C_DEVNAME("(tuner unset)"), |
582 | .flags = I2C_CLIENT_ALLOW_USE, | 679 | .flags = I2C_CLIENT_ALLOW_USE, |
583 | .driver = &driver, | 680 | .driver = &driver, |
584 | }; | 681 | }; |
585 | 682 | ||
586 | static int __init tuner_init_module(void) | 683 | static int __init tuner_init_module(void) |
diff --git a/drivers/media/video/tuner-simple.c b/drivers/media/video/tuner-simple.c index c39ed6226ee0..a3f8e83f5314 100644 --- a/drivers/media/video/tuner-simple.c +++ b/drivers/media/video/tuner-simple.c | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * $Id: tuner-simple.c,v 1.31 2005/06/21 16:02:25 mkrufky Exp $ | 2 | * $Id: tuner-simple.c,v 1.39 2005/07/07 01:49:30 mkrufky Exp $ |
3 | * | 3 | * |
4 | * i2c tv tuner chip device driver | 4 | * i2c tv tuner chip device driver |
5 | * controls all those simple 4-control-bytes style tuners. | 5 | * controls all those simple 4-control-bytes style tuners. |
@@ -54,6 +54,27 @@ | |||
54 | #define PHILIPS_MF_SET_PAL_L 0x03 // France | 54 | #define PHILIPS_MF_SET_PAL_L 0x03 // France |
55 | #define PHILIPS_MF_SET_PAL_L2 0x02 // L' | 55 | #define PHILIPS_MF_SET_PAL_L2 0x02 // L' |
56 | 56 | ||
57 | /* Control byte */ | ||
58 | |||
59 | #define TUNER_RATIO_MASK 0x06 /* Bit cb1:cb2 */ | ||
60 | #define TUNER_RATIO_SELECT_50 0x00 | ||
61 | #define TUNER_RATIO_SELECT_32 0x02 | ||
62 | #define TUNER_RATIO_SELECT_166 0x04 | ||
63 | #define TUNER_RATIO_SELECT_62 0x06 | ||
64 | |||
65 | #define TUNER_CHARGE_PUMP 0x40 /* Bit cb6 */ | ||
66 | |||
67 | /* Status byte */ | ||
68 | |||
69 | #define TUNER_POR 0x80 | ||
70 | #define TUNER_FL 0x40 | ||
71 | #define TUNER_MODE 0x38 | ||
72 | #define TUNER_AFC 0x07 | ||
73 | #define TUNER_SIGNAL 0x07 | ||
74 | #define TUNER_STEREO 0x10 | ||
75 | |||
76 | #define TUNER_PLL_LOCKED 0x40 | ||
77 | #define TUNER_STEREO_MK3 0x04 | ||
57 | 78 | ||
58 | /* ---------------------------------------------------------------------- */ | 79 | /* ---------------------------------------------------------------------- */ |
59 | 80 | ||
@@ -211,21 +232,17 @@ static struct tunertype tuners[] = { | |||
211 | 16*160.00,16*442.00,0x01,0x02,0x04,0xce,623 }, | 232 | 16*160.00,16*442.00,0x01,0x02,0x04,0xce,623 }, |
212 | { "Philips FQ1236A MK4", Philips, NTSC, | 233 | { "Philips FQ1236A MK4", Philips, NTSC, |
213 | 16*160.00,16*442.00,0x01,0x02,0x04,0x8e,732 }, | 234 | 16*160.00,16*442.00,0x01,0x02,0x04,0x8e,732 }, |
214 | 235 | { "Ymec TVision TVF-8531MF/8831MF/8731MF", Philips, NTSC, | |
215 | /* Should work for TVF8531MF, TVF8831MF, TVF8731MF */ | ||
216 | { "Ymec TVision TVF-8531MF", Philips, NTSC, | ||
217 | 16*160.00,16*454.00,0xa0,0x90,0x30,0x8e,732}, | 236 | 16*160.00,16*454.00,0xa0,0x90,0x30,0x8e,732}, |
218 | { "Ymec TVision TVF-5533MF", Philips, NTSC, | 237 | { "Ymec TVision TVF-5533MF", Philips, NTSC, |
219 | 16*160.00,16*454.00,0x01,0x02,0x04,0x8e,732}, | 238 | 16*160.00,16*454.00,0x01,0x02,0x04,0x8e,732}, |
239 | |||
220 | { "Thomson DDT 7611 (ATSC/NTSC)", THOMSON, ATSC, | 240 | { "Thomson DDT 7611 (ATSC/NTSC)", THOMSON, ATSC, |
221 | 16*157.25,16*454.00,0x39,0x3a,0x3c,0x8e,732}, | 241 | 16*157.25,16*454.00,0x39,0x3a,0x3c,0x8e,732}, |
222 | /* Should work for TNF9533-D/IF, TNF9533-B/DF */ | 242 | { "Tena TNF9533-D/IF/TNF9533-B/DF", Philips, PAL, |
223 | { "Tena TNF9533-D/IF", Philips, PAL, | ||
224 | 16*160.25,16*464.25,0x01,0x02,0x04,0x8e,623}, | 243 | 16*160.25,16*464.25,0x01,0x02,0x04,0x8e,623}, |
225 | 244 | { "Philips TEA5767HN FM Radio", Philips, RADIO, | |
226 | /* This entry is for TEA5767 FM radio only chip used on several boards w/TV tuner */ | 245 | /* see tea5767.c for details */}, |
227 | { TEA5767_TUNER_NAME, Philips, RADIO, | ||
228 | -1, -1, 0, 0, 0, TEA5767_LOW_LO_32768,0}, | ||
229 | { "Philips FMD1216ME MK3 Hybrid Tuner", Philips, PAL, | 246 | { "Philips FMD1216ME MK3 Hybrid Tuner", Philips, PAL, |
230 | 16*160.00,16*442.00,0x51,0x52,0x54,0x86,623 }, | 247 | 16*160.00,16*442.00,0x51,0x52,0x54,0x86,623 }, |
231 | }; | 248 | }; |
@@ -244,15 +261,6 @@ static int tuner_getstatus(struct i2c_client *c) | |||
244 | return byte; | 261 | return byte; |
245 | } | 262 | } |
246 | 263 | ||
247 | #define TUNER_POR 0x80 | ||
248 | #define TUNER_FL 0x40 | ||
249 | #define TUNER_MODE 0x38 | ||
250 | #define TUNER_AFC 0x07 | ||
251 | |||
252 | #define TUNER_STEREO 0x10 /* radio mode */ | ||
253 | #define TUNER_STEREO_MK3 0x04 /* radio mode */ | ||
254 | #define TUNER_SIGNAL 0x07 /* radio mode */ | ||
255 | |||
256 | static int tuner_signal(struct i2c_client *c) | 264 | static int tuner_signal(struct i2c_client *c) |
257 | { | 265 | { |
258 | return (tuner_getstatus(c) & TUNER_SIGNAL) << 13; | 266 | return (tuner_getstatus(c) & TUNER_SIGNAL) << 13; |
@@ -278,22 +286,6 @@ static int tuner_stereo(struct i2c_client *c) | |||
278 | return stereo; | 286 | return stereo; |
279 | } | 287 | } |
280 | 288 | ||
281 | #if 0 /* unused */ | ||
282 | static int tuner_islocked (struct i2c_client *c) | ||
283 | { | ||
284 | return (tuner_getstatus (c) & TUNER_FL); | ||
285 | } | ||
286 | |||
287 | static int tuner_afcstatus (struct i2c_client *c) | ||
288 | { | ||
289 | return (tuner_getstatus (c) & TUNER_AFC) - 2; | ||
290 | } | ||
291 | |||
292 | static int tuner_mode (struct i2c_client *c) | ||
293 | { | ||
294 | return (tuner_getstatus (c) & TUNER_MODE) >> 3; | ||
295 | } | ||
296 | #endif | ||
297 | 289 | ||
298 | /* ---------------------------------------------------------------------- */ | 290 | /* ---------------------------------------------------------------------- */ |
299 | 291 | ||
@@ -376,7 +368,7 @@ static void default_set_tv_freq(struct i2c_client *c, unsigned int freq) | |||
376 | 368 | ||
377 | case TUNER_MICROTUNE_4042FI5: | 369 | case TUNER_MICROTUNE_4042FI5: |
378 | /* Set the charge pump for fast tuning */ | 370 | /* Set the charge pump for fast tuning */ |
379 | tun->config |= 0x40; | 371 | tun->config |= TUNER_CHARGE_PUMP; |
380 | break; | 372 | break; |
381 | } | 373 | } |
382 | 374 | ||
@@ -425,14 +417,13 @@ static void default_set_tv_freq(struct i2c_client *c, unsigned int freq) | |||
425 | tuner_warn("i2c i/o read error: rc == %d (should be 1)\n",rc); | 417 | tuner_warn("i2c i/o read error: rc == %d (should be 1)\n",rc); |
426 | break; | 418 | break; |
427 | } | 419 | } |
428 | /* bit 6 is PLL locked indicator */ | 420 | if (status_byte & TUNER_PLL_LOCKED) |
429 | if (status_byte & 0x40) | ||
430 | break; | 421 | break; |
431 | udelay(10); | 422 | udelay(10); |
432 | } | 423 | } |
433 | 424 | ||
434 | /* Set the charge pump for optimized phase noise figure */ | 425 | /* Set the charge pump for optimized phase noise figure */ |
435 | tun->config &= ~0x40; | 426 | tun->config &= ~TUNER_CHARGE_PUMP; |
436 | buffer[0] = (div>>8) & 0x7f; | 427 | buffer[0] = (div>>8) & 0x7f; |
437 | buffer[1] = div & 0xff; | 428 | buffer[1] = div & 0xff; |
438 | buffer[2] = tun->config; | 429 | buffer[2] = tun->config; |
@@ -453,26 +444,22 @@ static void default_set_radio_freq(struct i2c_client *c, unsigned int freq) | |||
453 | unsigned div; | 444 | unsigned div; |
454 | int rc; | 445 | int rc; |
455 | 446 | ||
456 | tun=&tuners[t->type]; | 447 | tun = &tuners[t->type]; |
457 | div = (freq / 1000) + (int)(16*10.7); | 448 | div = (20 * freq / 16000) + (int)(20*10.7); /* IF 10.7 MHz */ |
458 | buffer[2] = tun->config; | 449 | buffer[2] = (tun->config & ~TUNER_RATIO_MASK) | TUNER_RATIO_SELECT_50; /* 50 kHz step */ |
459 | 450 | ||
460 | switch (t->type) { | 451 | switch (t->type) { |
461 | case TUNER_TENA_9533_DI: | 452 | case TUNER_TENA_9533_DI: |
462 | case TUNER_YMEC_TVF_5533MF: | 453 | case TUNER_YMEC_TVF_5533MF: |
463 | /*These values are empirically determinated */ | 454 | tuner_dbg ("This tuner doesn't have FM. Most cards has a TEA5767 for FM\n"); |
464 | div = (freq * 122) / 16000 - 20; | 455 | return; |
465 | buffer[2] = 0x88; /* could be also 0x80 */ | ||
466 | buffer[3] = 0x19; /* could be also 0x10, 0x18, 0x99 */ | ||
467 | break; | ||
468 | case TUNER_PHILIPS_FM1216ME_MK3: | 456 | case TUNER_PHILIPS_FM1216ME_MK3: |
469 | case TUNER_PHILIPS_FM1236_MK3: | 457 | case TUNER_PHILIPS_FM1236_MK3: |
470 | case TUNER_PHILIPS_FMD1216ME_MK3: | 458 | case TUNER_PHILIPS_FMD1216ME_MK3: |
471 | buffer[3] = 0x19; | 459 | buffer[3] = 0x19; |
472 | break; | 460 | break; |
473 | case TUNER_PHILIPS_FM1256_IH3: | 461 | case TUNER_PHILIPS_FM1256_IH3: |
474 | div = (20 * freq) / 16000 + 333 * 2; | 462 | div = (20 * freq) / 16000 + (int)(33.3 * 20); /* IF 33.3 MHz */ |
475 | buffer[2] = 0x80; | ||
476 | buffer[3] = 0x19; | 463 | buffer[3] = 0x19; |
477 | break; | 464 | break; |
478 | case TUNER_LG_PAL_FM: | 465 | case TUNER_LG_PAL_FM: |
diff --git a/drivers/media/video/tvaudio.c b/drivers/media/video/tvaudio.c index 9a493bea76d8..d8b78f1d686b 100644 --- a/drivers/media/video/tvaudio.c +++ b/drivers/media/video/tvaudio.c | |||
@@ -864,13 +864,8 @@ static int tda9874a_getmode(struct CHIPSTATE *chip) | |||
864 | * But changing the mode to VIDEO_SOUND_MONO would switch | 864 | * But changing the mode to VIDEO_SOUND_MONO would switch |
865 | * external 4052 multiplexer in audio_hook(). | 865 | * external 4052 multiplexer in audio_hook(). |
866 | */ | 866 | */ |
867 | #if 0 | ||
868 | if((nsr & 0x02) && !(dsr & 0x10)) /* NSR.S/MB=1 and DSR.AMSTAT=0 */ | ||
869 | mode |= VIDEO_SOUND_STEREO; | ||
870 | #else | ||
871 | if(nsr & 0x02) /* NSR.S/MB=1 */ | 867 | if(nsr & 0x02) /* NSR.S/MB=1 */ |
872 | mode |= VIDEO_SOUND_STEREO; | 868 | mode |= VIDEO_SOUND_STEREO; |
873 | #endif | ||
874 | if(nsr & 0x01) /* NSR.D/SB=1 */ | 869 | if(nsr & 0x01) /* NSR.D/SB=1 */ |
875 | mode |= VIDEO_SOUND_LANG1 | VIDEO_SOUND_LANG2; | 870 | mode |= VIDEO_SOUND_LANG1 | VIDEO_SOUND_LANG2; |
876 | } else { | 871 | } else { |
diff --git a/drivers/media/video/tveeprom.c b/drivers/media/video/tveeprom.c index 0f03c25489f1..e8d9440977cb 100644 --- a/drivers/media/video/tveeprom.c +++ b/drivers/media/video/tveeprom.c | |||
@@ -400,14 +400,6 @@ void tveeprom_hauppauge_analog(struct tveeprom *tvee, unsigned char *eeprom_data | |||
400 | } | 400 | } |
401 | } | 401 | } |
402 | 402 | ||
403 | #if 0 | ||
404 | if (t_format < sizeof(hauppauge_tuner_fmt)/sizeof(struct HAUPPAUGE_TUNER_FMT)) { | ||
405 | tvee->tuner_formats = hauppauge_tuner_fmt[t_format].id; | ||
406 | t_fmt_name = hauppauge_tuner_fmt[t_format].name; | ||
407 | } else { | ||
408 | t_fmt_name = "<unknown>"; | ||
409 | } | ||
410 | #endif | ||
411 | 403 | ||
412 | TVEEPROM_KERN_INFO("Hauppauge: model = %d, rev = %s, serial# = %d\n", | 404 | TVEEPROM_KERN_INFO("Hauppauge: model = %d, rev = %s, serial# = %d\n", |
413 | tvee->model, | 405 | tvee->model, |
@@ -482,6 +474,7 @@ static unsigned short normal_i2c[] = { | |||
482 | 0xa0 >> 1, | 474 | 0xa0 >> 1, |
483 | I2C_CLIENT_END, | 475 | I2C_CLIENT_END, |
484 | }; | 476 | }; |
477 | |||
485 | I2C_CLIENT_INSMOD; | 478 | I2C_CLIENT_INSMOD; |
486 | 479 | ||
487 | struct i2c_driver i2c_driver_tveeprom; | 480 | struct i2c_driver i2c_driver_tveeprom; |