diff options
author | David Woodhouse <dwmw2@shinybook.infradead.org> | 2005-08-09 11:51:35 -0400 |
---|---|---|
committer | David Woodhouse <dwmw2@shinybook.infradead.org> | 2005-08-09 11:51:35 -0400 |
commit | c973b112c76c9d8fd042991128f218a738cc8d0a (patch) | |
tree | e813b0da5d0a0e19e06de6462d145a29ad683026 /drivers/media | |
parent | c5fbc3966f48279dbebfde10248c977014aa9988 (diff) | |
parent | 00dd1e433967872f3997a45d5adf35056fdf2f56 (diff) |
Merge with /shiny/git/linux-2.6/.git
Diffstat (limited to 'drivers/media')
32 files changed, 1141 insertions, 745 deletions
diff --git a/drivers/media/dvb/frontends/Kconfig b/drivers/media/dvb/frontends/Kconfig index d847c62bd837..e83256d0fd14 100644 --- a/drivers/media/dvb/frontends/Kconfig +++ b/drivers/media/dvb/frontends/Kconfig | |||
@@ -187,8 +187,8 @@ config DVB_BCM3510 | |||
187 | 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 |
188 | support this frontend. | 188 | support this frontend. |
189 | 189 | ||
190 | config DVB_LGDT3302 | 190 | config DVB_LGDT330X |
191 | tristate "LGDT3302 based (DViCO FusionHDTV3 Gold)" | 191 | tristate "LGDT3302 or LGDT3303 based (DViCO FusionHDTV Gold)" |
192 | depends on DVB_CORE | 192 | depends on DVB_CORE |
193 | help | 193 | help |
194 | An ATSC 8VSB and QAM64/256 tuner module. Say Y when you want | 194 | An ATSC 8VSB and QAM64/256 tuner module. Say Y when you want |
diff --git a/drivers/media/dvb/frontends/Makefile b/drivers/media/dvb/frontends/Makefile index de5e240cba7f..ad8658ffd60a 100644 --- a/drivers/media/dvb/frontends/Makefile +++ b/drivers/media/dvb/frontends/Makefile | |||
@@ -30,4 +30,4 @@ 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 | 32 | obj-$(CONFIG_DVB_S5H1420) += s5h1420.o |
33 | obj-$(CONFIG_DVB_LGDT3302) += lgdt3302.o | 33 | obj-$(CONFIG_DVB_LGDT330X) += lgdt330x.o |
diff --git a/drivers/media/dvb/frontends/dvb-pll.c b/drivers/media/dvb/frontends/dvb-pll.c index 5afeaa9b43b4..536c35d969b7 100644 --- a/drivers/media/dvb/frontends/dvb-pll.c +++ b/drivers/media/dvb/frontends/dvb-pll.c | |||
@@ -82,13 +82,14 @@ struct dvb_pll_desc dvb_pll_lg_z201 = { | |||
82 | .name = "LG z201", | 82 | .name = "LG z201", |
83 | .min = 174000000, | 83 | .min = 174000000, |
84 | .max = 862000000, | 84 | .max = 862000000, |
85 | .count = 5, | 85 | .count = 6, |
86 | .entries = { | 86 | .entries = { |
87 | { 0, 36166667, 166666, 0xbc, 0x03 }, | 87 | { 0, 36166667, 166666, 0xbc, 0x03 }, |
88 | { 443250000, 36166667, 166666, 0xbc, 0x01 }, | 88 | { 157500000, 36166667, 166666, 0xbc, 0x01 }, |
89 | { 542000000, 36166667, 166666, 0xbc, 0x02 }, | 89 | { 443250000, 36166667, 166666, 0xbc, 0x02 }, |
90 | { 830000000, 36166667, 166666, 0xf4, 0x02 }, | 90 | { 542000000, 36166667, 166666, 0xbc, 0x04 }, |
91 | { 999999999, 36166667, 166666, 0xfc, 0x02 }, | 91 | { 830000000, 36166667, 166666, 0xf4, 0x04 }, |
92 | { 999999999, 36166667, 166666, 0xfc, 0x04 }, | ||
92 | }, | 93 | }, |
93 | }; | 94 | }; |
94 | EXPORT_SYMBOL(dvb_pll_lg_z201); | 95 | EXPORT_SYMBOL(dvb_pll_lg_z201); |
@@ -224,6 +225,22 @@ struct dvb_pll_desc dvb_pll_tua6034 = { | |||
224 | }; | 225 | }; |
225 | EXPORT_SYMBOL(dvb_pll_tua6034); | 226 | EXPORT_SYMBOL(dvb_pll_tua6034); |
226 | 227 | ||
228 | /* Infineon TUA6034 | ||
229 | * used in LG Innotek TDVS-H062F | ||
230 | */ | ||
231 | struct dvb_pll_desc dvb_pll_tdvs_tua6034 = { | ||
232 | .name = "LG/Infineon TUA6034", | ||
233 | .min = 54000000, | ||
234 | .max = 863000000, | ||
235 | .count = 3, | ||
236 | .entries = { | ||
237 | { 160000000, 44000000, 62500, 0xce, 0x01 }, | ||
238 | { 455000000, 44000000, 62500, 0xce, 0x02 }, | ||
239 | { 999999999, 44000000, 62500, 0xce, 0x04 }, | ||
240 | }, | ||
241 | }; | ||
242 | EXPORT_SYMBOL(dvb_pll_tdvs_tua6034); | ||
243 | |||
227 | /* Philips FMD1216ME | 244 | /* Philips FMD1216ME |
228 | * used in Medion Hybrid PCMCIA card and USB Box | 245 | * used in Medion Hybrid PCMCIA card and USB Box |
229 | */ | 246 | */ |
diff --git a/drivers/media/dvb/frontends/dvb-pll.h b/drivers/media/dvb/frontends/dvb-pll.h index cb794759d89e..205b2d1a8852 100644 --- a/drivers/media/dvb/frontends/dvb-pll.h +++ b/drivers/media/dvb/frontends/dvb-pll.h | |||
@@ -31,6 +31,7 @@ extern struct dvb_pll_desc dvb_pll_unknown_1; | |||
31 | extern struct dvb_pll_desc dvb_pll_tua6010xs; | 31 | extern struct dvb_pll_desc dvb_pll_tua6010xs; |
32 | extern struct dvb_pll_desc dvb_pll_env57h1xd5; | 32 | extern struct dvb_pll_desc dvb_pll_env57h1xd5; |
33 | extern struct dvb_pll_desc dvb_pll_tua6034; | 33 | extern struct dvb_pll_desc dvb_pll_tua6034; |
34 | extern struct dvb_pll_desc dvb_pll_tdvs_tua6034; | ||
34 | extern struct dvb_pll_desc dvb_pll_tda665x; | 35 | 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_fmd1216me; |
36 | extern struct dvb_pll_desc dvb_pll_tded4; | 37 | extern struct dvb_pll_desc dvb_pll_tded4; |
diff --git a/drivers/media/dvb/frontends/lgdt3302.c b/drivers/media/dvb/frontends/lgdt3302.c deleted file mode 100644 index c85a2a99df42..000000000000 --- a/drivers/media/dvb/frontends/lgdt3302.c +++ /dev/null | |||
@@ -1,599 +0,0 @@ | |||
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, 0x07, 0x00, 0xfe }; | ||
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 | switch(param->u.vsb.modulation) { | ||
226 | case VSB_8: | ||
227 | dprintk("%s: VSB_8 MODE\n", __FUNCTION__); | ||
228 | |||
229 | /* Select VSB mode and serial MPEG interface */ | ||
230 | top_ctrl_cfg[1] = 0x07; | ||
231 | break; | ||
232 | |||
233 | case QAM_64: | ||
234 | dprintk("%s: QAM_64 MODE\n", __FUNCTION__); | ||
235 | |||
236 | /* Select QAM_64 mode and serial MPEG interface */ | ||
237 | top_ctrl_cfg[1] = 0x04; | ||
238 | break; | ||
239 | |||
240 | case QAM_256: | ||
241 | dprintk("%s: QAM_256 MODE\n", __FUNCTION__); | ||
242 | |||
243 | /* Select QAM_256 mode and serial MPEG interface */ | ||
244 | top_ctrl_cfg[1] = 0x05; | ||
245 | break; | ||
246 | default: | ||
247 | printk(KERN_WARNING "lgdt3302: %s: Modulation type(%d) UNSUPPORTED\n", __FUNCTION__, param->u.vsb.modulation); | ||
248 | return -1; | ||
249 | } | ||
250 | /* Initializations common to all modes */ | ||
251 | |||
252 | /* Select the requested mode */ | ||
253 | i2c_writebytes(state, state->config->demod_address, | ||
254 | top_ctrl_cfg, sizeof(top_ctrl_cfg)); | ||
255 | |||
256 | /* Change the value of IFBW[11:0] | ||
257 | of AGC IF/RF loop filter bandwidth register */ | ||
258 | i2c_writebytes(state, state->config->demod_address, | ||
259 | agc_rf_cfg, sizeof(agc_rf_cfg)); | ||
260 | |||
261 | /* Change the value of bit 6, 'nINAGCBY' and | ||
262 | 'NSSEL[1:0] of ACG function control register 2 */ | ||
263 | /* Change the value of bit 6 'RFFIX' | ||
264 | of AGC function control register 3 */ | ||
265 | i2c_writebytes(state, state->config->demod_address, | ||
266 | agc_ctrl_cfg, sizeof(agc_ctrl_cfg)); | ||
267 | |||
268 | /* Change the TPCLK pin polarity | ||
269 | data is valid on falling clock */ | ||
270 | i2c_writebytes(state, state->config->demod_address, | ||
271 | demux_ctrl_cfg, sizeof(demux_ctrl_cfg)); | ||
272 | |||
273 | /* Change the value of NCOCTFV[25:0] of carrier | ||
274 | recovery center frequency register */ | ||
275 | i2c_writebytes(state, state->config->demod_address, | ||
276 | vsb_freq_cfg, sizeof(vsb_freq_cfg)); | ||
277 | |||
278 | /* Set the value of 'INLVTHD' register 0x2a/0x2c to 0x7fe */ | ||
279 | i2c_writebytes(state, state->config->demod_address, | ||
280 | agc_delay_cfg, sizeof(agc_delay_cfg)); | ||
281 | |||
282 | /* Change the value of IAGCBW[15:8] | ||
283 | of inner AGC loop filter bandwith */ | ||
284 | i2c_writebytes(state, state->config->demod_address, | ||
285 | agc_loop_cfg, sizeof(agc_loop_cfg)); | ||
286 | |||
287 | state->config->set_ts_params(fe, 0); | ||
288 | state->current_modulation = param->u.vsb.modulation; | ||
289 | } | ||
290 | |||
291 | /* Change only if we are actually changing the channel */ | ||
292 | if (state->current_frequency != param->frequency) { | ||
293 | dvb_pll_configure(state->config->pll_desc, buf, | ||
294 | param->frequency, 0); | ||
295 | dprintk("%s: tuner bytes: 0x%02x 0x%02x " | ||
296 | "0x%02x 0x%02x\n", __FUNCTION__, buf[0],buf[1],buf[2],buf[3]); | ||
297 | i2c_writebytes(state, state->config->pll_address ,buf, 4); | ||
298 | |||
299 | /* Check the status of the tuner pll */ | ||
300 | i2c_readbytes(state, state->config->pll_address, buf, 1); | ||
301 | dprintk("%s: tuner status byte = 0x%02x\n", __FUNCTION__, buf[0]); | ||
302 | |||
303 | /* Update current frequency */ | ||
304 | state->current_frequency = param->frequency; | ||
305 | } | ||
306 | lgdt3302_SwReset(state); | ||
307 | return 0; | ||
308 | } | ||
309 | |||
310 | static int lgdt3302_get_frontend(struct dvb_frontend* fe, | ||
311 | struct dvb_frontend_parameters* param) | ||
312 | { | ||
313 | struct lgdt3302_state *state = fe->demodulator_priv; | ||
314 | param->frequency = state->current_frequency; | ||
315 | return 0; | ||
316 | } | ||
317 | |||
318 | static int lgdt3302_read_status(struct dvb_frontend* fe, fe_status_t* status) | ||
319 | { | ||
320 | struct lgdt3302_state* state = (struct lgdt3302_state*) fe->demodulator_priv; | ||
321 | u8 buf[3]; | ||
322 | |||
323 | *status = 0; /* Reset status result */ | ||
324 | |||
325 | /* Check the status of the tuner pll */ | ||
326 | i2c_readbytes(state, state->config->pll_address, buf, 1); | ||
327 | dprintk("%s: tuner status byte = 0x%02x\n", __FUNCTION__, buf[0]); | ||
328 | if ((buf[0] & 0xc0) != 0x40) | ||
329 | return 0; /* Tuner PLL not locked or not powered on */ | ||
330 | |||
331 | /* | ||
332 | * You must set the Mask bits to 1 in the IRQ_MASK in order | ||
333 | * to see that status bit in the IRQ_STATUS register. | ||
334 | * This is done in SwReset(); | ||
335 | */ | ||
336 | |||
337 | /* AGC status register */ | ||
338 | i2c_selectreadbytes(state, AGC_STATUS, buf, 1); | ||
339 | dprintk("%s: AGC_STATUS = 0x%02x\n", __FUNCTION__, buf[0]); | ||
340 | if ((buf[0] & 0x0c) == 0x8){ | ||
341 | /* Test signal does not exist flag */ | ||
342 | /* as well as the AGC lock flag. */ | ||
343 | *status |= FE_HAS_SIGNAL; | ||
344 | } else { | ||
345 | /* Without a signal all other status bits are meaningless */ | ||
346 | return 0; | ||
347 | } | ||
348 | |||
349 | /* signal status */ | ||
350 | i2c_selectreadbytes(state, TOP_CONTROL, buf, sizeof(buf)); | ||
351 | dprintk("%s: TOP_CONTROL = 0x%02x, IRO_MASK = 0x%02x, IRQ_STATUS = 0x%02x\n", __FUNCTION__, buf[0], buf[1], buf[2]); | ||
352 | |||
353 | #if 0 | ||
354 | /* Alternative method to check for a signal */ | ||
355 | /* using the SNR good/bad interrupts. */ | ||
356 | if ((buf[2] & 0x30) == 0x10) | ||
357 | *status |= FE_HAS_SIGNAL; | ||
358 | #endif | ||
359 | |||
360 | /* sync status */ | ||
361 | if ((buf[2] & 0x03) == 0x01) { | ||
362 | *status |= FE_HAS_SYNC; | ||
363 | } | ||
364 | |||
365 | /* FEC error status */ | ||
366 | if ((buf[2] & 0x0c) == 0x08) { | ||
367 | *status |= FE_HAS_LOCK; | ||
368 | *status |= FE_HAS_VITERBI; | ||
369 | } | ||
370 | |||
371 | /* Carrier Recovery Lock Status Register */ | ||
372 | i2c_selectreadbytes(state, CARRIER_LOCK, buf, 1); | ||
373 | dprintk("%s: CARRIER_LOCK = 0x%02x\n", __FUNCTION__, buf[0]); | ||
374 | switch (state->current_modulation) { | ||
375 | case QAM_256: | ||
376 | case QAM_64: | ||
377 | /* Need to undestand why there are 3 lock levels here */ | ||
378 | if ((buf[0] & 0x07) == 0x07) | ||
379 | *status |= FE_HAS_CARRIER; | ||
380 | break; | ||
381 | case VSB_8: | ||
382 | if ((buf[0] & 0x80) == 0x80) | ||
383 | *status |= FE_HAS_CARRIER; | ||
384 | break; | ||
385 | default: | ||
386 | printk("KERN_WARNING lgdt3302: %s: Modulation set to unsupported value\n", __FUNCTION__); | ||
387 | } | ||
388 | |||
389 | return 0; | ||
390 | } | ||
391 | |||
392 | static int lgdt3302_read_signal_strength(struct dvb_frontend* fe, u16* strength) | ||
393 | { | ||
394 | /* not directly available. */ | ||
395 | return 0; | ||
396 | } | ||
397 | |||
398 | static int lgdt3302_read_snr(struct dvb_frontend* fe, u16* snr) | ||
399 | { | ||
400 | #ifdef SNR_IN_DB | ||
401 | /* | ||
402 | * Spec sheet shows formula for SNR_EQ = 10 log10(25 * 24**2 / noise) | ||
403 | * and SNR_PH = 10 log10(25 * 32**2 / noise) for equalizer and phase tracker | ||
404 | * respectively. The following tables are built on these formulas. | ||
405 | * The usual definition is SNR = 20 log10(signal/noise) | ||
406 | * If the specification is wrong the value retuned is 1/2 the actual SNR in db. | ||
407 | * | ||
408 | * This table is a an ordered list of noise values computed by the | ||
409 | * formula from the spec sheet such that the index into the table | ||
410 | * starting at 43 or 45 is the SNR value in db. There are duplicate noise | ||
411 | * value entries at the beginning because the SNR varies more than | ||
412 | * 1 db for a change of 1 digit in noise at very small values of noise. | ||
413 | * | ||
414 | * Examples from SNR_EQ table: | ||
415 | * noise SNR | ||
416 | * 0 43 | ||
417 | * 1 42 | ||
418 | * 2 39 | ||
419 | * 3 37 | ||
420 | * 4 36 | ||
421 | * 5 35 | ||
422 | * 6 34 | ||
423 | * 7 33 | ||
424 | * 8 33 | ||
425 | * 9 32 | ||
426 | * 10 32 | ||
427 | * 11 31 | ||
428 | * 12 31 | ||
429 | * 13 30 | ||
430 | */ | ||
431 | |||
432 | static const u32 SNR_EQ[] = | ||
433 | { 1, 2, 2, 2, 3, 3, 4, 4, 5, 7, | ||
434 | 9, 11, 13, 17, 21, 26, 33, 41, 52, 65, | ||
435 | 81, 102, 129, 162, 204, 257, 323, 406, 511, 644, | ||
436 | 810, 1020, 1284, 1616, 2035, 2561, 3224, 4059, 5110, 6433, | ||
437 | 8098, 10195, 12835, 16158, 20341, 25608, 32238, 40585, 51094, 64323, | ||
438 | 80978, 101945, 128341, 161571, 203406, 256073, 0x40000 | ||
439 | }; | ||
440 | |||
441 | static const u32 SNR_PH[] = | ||
442 | { 1, 2, 2, 2, 3, 3, 4, 5, 6, 8, | ||
443 | 10, 12, 15, 19, 23, 29, 37, 46, 58, 73, | ||
444 | 91, 115, 144, 182, 229, 288, 362, 456, 574, 722, | ||
445 | 909, 1144, 1440, 1813, 2282, 2873, 3617, 4553, 5732, 7216, | ||
446 | 9084, 11436, 14396, 18124, 22817, 28724, 36161, 45524, 57312, 72151, | ||
447 | 90833, 114351, 143960, 181235, 228161, 0x040000 | ||
448 | }; | ||
449 | |||
450 | static u8 buf[5];/* read data buffer */ | ||
451 | static u32 noise; /* noise value */ | ||
452 | static u32 snr_db; /* index into SNR_EQ[] */ | ||
453 | struct lgdt3302_state* state = (struct lgdt3302_state*) fe->demodulator_priv; | ||
454 | |||
455 | /* read both equalizer and pase tracker noise data */ | ||
456 | i2c_selectreadbytes(state, EQPH_ERR0, buf, sizeof(buf)); | ||
457 | |||
458 | if (state->current_modulation == VSB_8) { | ||
459 | /* Equalizer Mean-Square Error Register for VSB */ | ||
460 | noise = ((buf[0] & 7) << 16) | (buf[1] << 8) | buf[2]; | ||
461 | |||
462 | /* | ||
463 | * Look up noise value in table. | ||
464 | * A better search algorithm could be used... | ||
465 | * watch out there are duplicate entries. | ||
466 | */ | ||
467 | for (snr_db = 0; snr_db < sizeof(SNR_EQ); snr_db++) { | ||
468 | if (noise < SNR_EQ[snr_db]) { | ||
469 | *snr = 43 - snr_db; | ||
470 | break; | ||
471 | } | ||
472 | } | ||
473 | } else { | ||
474 | /* Phase Tracker Mean-Square Error Register for QAM */ | ||
475 | noise = ((buf[0] & 7<<3) << 13) | (buf[3] << 8) | buf[4]; | ||
476 | |||
477 | /* Look up noise value in table. */ | ||
478 | for (snr_db = 0; snr_db < sizeof(SNR_PH); snr_db++) { | ||
479 | if (noise < SNR_PH[snr_db]) { | ||
480 | *snr = 45 - snr_db; | ||
481 | break; | ||
482 | } | ||
483 | } | ||
484 | } | ||
485 | #else | ||
486 | /* Return the raw noise value */ | ||
487 | static u8 buf[5];/* read data buffer */ | ||
488 | static u32 noise; /* noise value */ | ||
489 | struct lgdt3302_state* state = (struct lgdt3302_state*) fe->demodulator_priv; | ||
490 | |||
491 | /* read both equalizer and pase tracker noise data */ | ||
492 | i2c_selectreadbytes(state, EQPH_ERR0, buf, sizeof(buf)); | ||
493 | |||
494 | if (state->current_modulation == VSB_8) { | ||
495 | /* Equalizer Mean-Square Error Register for VSB */ | ||
496 | noise = ((buf[0] & 7) << 16) | (buf[1] << 8) | buf[2]; | ||
497 | } else { | ||
498 | /* Phase Tracker Mean-Square Error Register for QAM */ | ||
499 | noise = ((buf[0] & 7<<3) << 13) | (buf[3] << 8) | buf[4]; | ||
500 | } | ||
501 | |||
502 | /* Small values for noise mean signal is better so invert noise */ | ||
503 | /* Noise is 19 bit value so discard 3 LSB*/ | ||
504 | *snr = ~noise>>3; | ||
505 | #endif | ||
506 | |||
507 | dprintk("%s: noise = 0x%05x, snr = %idb\n",__FUNCTION__, noise, *snr); | ||
508 | |||
509 | return 0; | ||
510 | } | ||
511 | |||
512 | static int lgdt3302_get_tune_settings(struct dvb_frontend* fe, struct dvb_frontend_tune_settings* fe_tune_settings) | ||
513 | { | ||
514 | /* I have no idea about this - it may not be needed */ | ||
515 | fe_tune_settings->min_delay_ms = 500; | ||
516 | fe_tune_settings->step_size = 0; | ||
517 | fe_tune_settings->max_drift = 0; | ||
518 | return 0; | ||
519 | } | ||
520 | |||
521 | static void lgdt3302_release(struct dvb_frontend* fe) | ||
522 | { | ||
523 | struct lgdt3302_state* state = (struct lgdt3302_state*) fe->demodulator_priv; | ||
524 | kfree(state); | ||
525 | } | ||
526 | |||
527 | static struct dvb_frontend_ops lgdt3302_ops; | ||
528 | |||
529 | struct dvb_frontend* lgdt3302_attach(const struct lgdt3302_config* config, | ||
530 | struct i2c_adapter* i2c) | ||
531 | { | ||
532 | struct lgdt3302_state* state = NULL; | ||
533 | u8 buf[1]; | ||
534 | |||
535 | /* Allocate memory for the internal state */ | ||
536 | state = (struct lgdt3302_state*) kmalloc(sizeof(struct lgdt3302_state), GFP_KERNEL); | ||
537 | if (state == NULL) | ||
538 | goto error; | ||
539 | memset(state,0,sizeof(*state)); | ||
540 | |||
541 | /* Setup the state */ | ||
542 | state->config = config; | ||
543 | state->i2c = i2c; | ||
544 | memcpy(&state->ops, &lgdt3302_ops, sizeof(struct dvb_frontend_ops)); | ||
545 | /* Verify communication with demod chip */ | ||
546 | if (i2c_selectreadbytes(state, 2, buf, 1)) | ||
547 | goto error; | ||
548 | |||
549 | state->current_frequency = -1; | ||
550 | state->current_modulation = -1; | ||
551 | |||
552 | /* Create dvb_frontend */ | ||
553 | state->frontend.ops = &state->ops; | ||
554 | state->frontend.demodulator_priv = state; | ||
555 | return &state->frontend; | ||
556 | |||
557 | error: | ||
558 | if (state) | ||
559 | kfree(state); | ||
560 | dprintk("%s: ERROR\n",__FUNCTION__); | ||
561 | return NULL; | ||
562 | } | ||
563 | |||
564 | static struct dvb_frontend_ops lgdt3302_ops = { | ||
565 | .info = { | ||
566 | .name= "LG Electronics LGDT3302 VSB/QAM Frontend", | ||
567 | .type = FE_ATSC, | ||
568 | .frequency_min= 54000000, | ||
569 | .frequency_max= 858000000, | ||
570 | .frequency_stepsize= 62500, | ||
571 | /* Symbol rate is for all VSB modes need to check QAM */ | ||
572 | .symbol_rate_min = 10762000, | ||
573 | .symbol_rate_max = 10762000, | ||
574 | .caps = FE_CAN_QAM_64 | FE_CAN_QAM_256 | FE_CAN_8VSB | ||
575 | }, | ||
576 | .init = lgdt3302_init, | ||
577 | .set_frontend = lgdt3302_set_parameters, | ||
578 | .get_frontend = lgdt3302_get_frontend, | ||
579 | .get_tune_settings = lgdt3302_get_tune_settings, | ||
580 | .read_status = lgdt3302_read_status, | ||
581 | .read_ber = lgdt3302_read_ber, | ||
582 | .read_signal_strength = lgdt3302_read_signal_strength, | ||
583 | .read_snr = lgdt3302_read_snr, | ||
584 | .read_ucblocks = lgdt3302_read_ucblocks, | ||
585 | .release = lgdt3302_release, | ||
586 | }; | ||
587 | |||
588 | MODULE_DESCRIPTION("LGDT3302 [DViCO FusionHDTV 3 Gold] (ATSC 8VSB & ITU-T J.83 AnnexB 64/256 QAM) Demodulator Driver"); | ||
589 | MODULE_AUTHOR("Wilson Michaels"); | ||
590 | MODULE_LICENSE("GPL"); | ||
591 | |||
592 | EXPORT_SYMBOL(lgdt3302_attach); | ||
593 | |||
594 | /* | ||
595 | * Local variables: | ||
596 | * c-basic-offset: 8 | ||
597 | * compile-command: "make DVB=1" | ||
598 | * End: | ||
599 | */ | ||
diff --git a/drivers/media/dvb/frontends/lgdt330x.c b/drivers/media/dvb/frontends/lgdt330x.c new file mode 100644 index 000000000000..c48e7c11d708 --- /dev/null +++ b/drivers/media/dvb/frontends/lgdt330x.c | |||
@@ -0,0 +1,831 @@ | |||
1 | /* | ||
2 | * Support for LGDT3302 and LGDT3303 - VSB/QAM | ||
3 | * | ||
4 | * Copyright (C) 2005 Wilson Michaels <wilsonmichaels@earthlink.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 | * GNU General Public License for more details. | ||
15 | * | ||
16 | * You should have received a copy of the GNU General Public License | ||
17 | * along with this program; if not, write to the Free Software | ||
18 | * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. | ||
19 | * | ||
20 | */ | ||
21 | |||
22 | /* | ||
23 | * NOTES ABOUT THIS DRIVER | ||
24 | * | ||
25 | * This Linux driver supports: | ||
26 | * DViCO FusionHDTV 3 Gold-Q | ||
27 | * DViCO FusionHDTV 3 Gold-T | ||
28 | * DViCO FusionHDTV 5 Gold | ||
29 | * | ||
30 | * TODO: | ||
31 | * signal strength always returns 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 "lgdt330x_priv.h" | ||
44 | #include "lgdt330x.h" | ||
45 | |||
46 | static int debug = 0; | ||
47 | module_param(debug, int, 0644); | ||
48 | MODULE_PARM_DESC(debug,"Turn on/off lgdt330x frontend debugging (default:off)."); | ||
49 | #define dprintk(args...) \ | ||
50 | do { \ | ||
51 | if (debug) printk(KERN_DEBUG "lgdt330x: " args); \ | ||
52 | } while (0) | ||
53 | |||
54 | struct lgdt330x_state | ||
55 | { | ||
56 | struct i2c_adapter* i2c; | ||
57 | struct dvb_frontend_ops ops; | ||
58 | |||
59 | /* Configuration settings */ | ||
60 | const struct lgdt330x_config* config; | ||
61 | |||
62 | struct dvb_frontend frontend; | ||
63 | |||
64 | /* Demodulator private data */ | ||
65 | fe_modulation_t current_modulation; | ||
66 | |||
67 | /* Tuner private data */ | ||
68 | u32 current_frequency; | ||
69 | }; | ||
70 | |||
71 | static int i2c_write_demod_bytes (struct lgdt330x_state* state, | ||
72 | u8 *buf, /* data bytes to send */ | ||
73 | int len /* number of bytes to send */ ) | ||
74 | { | ||
75 | struct i2c_msg msg = | ||
76 | { .addr = state->config->demod_address, | ||
77 | .flags = 0, | ||
78 | .buf = buf, | ||
79 | .len = 2 }; | ||
80 | int i; | ||
81 | int err; | ||
82 | |||
83 | for (i=0; i<len-1; i+=2){ | ||
84 | if ((err = i2c_transfer(state->i2c, &msg, 1)) != 1) { | ||
85 | printk(KERN_WARNING "lgdt330x: %s error (addr %02x <- %02x, err = %i)\n", __FUNCTION__, msg.buf[0], msg.buf[1], err); | ||
86 | if (err < 0) | ||
87 | return err; | ||
88 | else | ||
89 | return -EREMOTEIO; | ||
90 | } | ||
91 | msg.buf += 2; | ||
92 | } | ||
93 | return 0; | ||
94 | } | ||
95 | |||
96 | /* | ||
97 | * This routine writes the register (reg) to the demod bus | ||
98 | * then reads the data returned for (len) bytes. | ||
99 | */ | ||
100 | |||
101 | static u8 i2c_read_demod_bytes (struct lgdt330x_state* state, | ||
102 | enum I2C_REG reg, u8* buf, int len) | ||
103 | { | ||
104 | u8 wr [] = { reg }; | ||
105 | struct i2c_msg msg [] = { | ||
106 | { .addr = state->config->demod_address, | ||
107 | .flags = 0, .buf = wr, .len = 1 }, | ||
108 | { .addr = state->config->demod_address, | ||
109 | .flags = I2C_M_RD, .buf = buf, .len = len }, | ||
110 | }; | ||
111 | int ret; | ||
112 | ret = i2c_transfer(state->i2c, msg, 2); | ||
113 | if (ret != 2) { | ||
114 | printk(KERN_WARNING "lgdt330x: %s: addr 0x%02x select 0x%02x error (ret == %i)\n", __FUNCTION__, state->config->demod_address, reg, ret); | ||
115 | } else { | ||
116 | ret = 0; | ||
117 | } | ||
118 | return ret; | ||
119 | } | ||
120 | |||
121 | /* Software reset */ | ||
122 | static int lgdt3302_SwReset(struct lgdt330x_state* state) | ||
123 | { | ||
124 | u8 ret; | ||
125 | u8 reset[] = { | ||
126 | IRQ_MASK, | ||
127 | 0x00 /* bit 6 is active low software reset | ||
128 | * bits 5-0 are 1 to mask interrupts */ | ||
129 | }; | ||
130 | |||
131 | ret = i2c_write_demod_bytes(state, | ||
132 | reset, sizeof(reset)); | ||
133 | if (ret == 0) { | ||
134 | |||
135 | /* force reset high (inactive) and unmask interrupts */ | ||
136 | reset[1] = 0x7f; | ||
137 | ret = i2c_write_demod_bytes(state, | ||
138 | reset, sizeof(reset)); | ||
139 | } | ||
140 | return ret; | ||
141 | } | ||
142 | |||
143 | static int lgdt3303_SwReset(struct lgdt330x_state* state) | ||
144 | { | ||
145 | u8 ret; | ||
146 | u8 reset[] = { | ||
147 | 0x02, | ||
148 | 0x00 /* bit 0 is active low software reset */ | ||
149 | }; | ||
150 | |||
151 | ret = i2c_write_demod_bytes(state, | ||
152 | reset, sizeof(reset)); | ||
153 | if (ret == 0) { | ||
154 | |||
155 | /* force reset high (inactive) */ | ||
156 | reset[1] = 0x01; | ||
157 | ret = i2c_write_demod_bytes(state, | ||
158 | reset, sizeof(reset)); | ||
159 | } | ||
160 | return ret; | ||
161 | } | ||
162 | |||
163 | static int lgdt330x_SwReset(struct lgdt330x_state* state) | ||
164 | { | ||
165 | switch (state->config->demod_chip) { | ||
166 | case LGDT3302: | ||
167 | return lgdt3302_SwReset(state); | ||
168 | case LGDT3303: | ||
169 | return lgdt3303_SwReset(state); | ||
170 | default: | ||
171 | return -ENODEV; | ||
172 | } | ||
173 | } | ||
174 | |||
175 | #ifdef MUTE_TDA9887 | ||
176 | static int i2c_write_ntsc_demod (struct lgdt330x_state* state, u8 buf[2]) | ||
177 | { | ||
178 | struct i2c_msg msg = | ||
179 | { .addr = 0x43, | ||
180 | .flags = 0, | ||
181 | .buf = buf, | ||
182 | .len = 2 }; | ||
183 | int err; | ||
184 | |||
185 | if ((err = i2c_transfer(state->i2c, &msg, 1)) != 1) { | ||
186 | printk(KERN_WARNING "lgdt330x: %s error (addr %02x <- %02x, err = %i)\n", __FUNCTION__, msg.buf[0], msg.buf[1], err); | ||
187 | if (err < 0) | ||
188 | return err; | ||
189 | else | ||
190 | return -EREMOTEIO; | ||
191 | } | ||
192 | return 0; | ||
193 | } | ||
194 | |||
195 | static void fiddle_with_ntsc_if_demod(struct lgdt330x_state* state) | ||
196 | { | ||
197 | // Experimental code | ||
198 | u8 buf0[] = {0x00, 0x20}; | ||
199 | u8 buf1[] = {0x01, 0x00}; | ||
200 | u8 buf2[] = {0x02, 0x00}; | ||
201 | |||
202 | i2c_write_ntsc_demod(state, buf0); | ||
203 | i2c_write_ntsc_demod(state, buf1); | ||
204 | i2c_write_ntsc_demod(state, buf2); | ||
205 | } | ||
206 | #endif | ||
207 | |||
208 | static int lgdt330x_init(struct dvb_frontend* fe) | ||
209 | { | ||
210 | /* Hardware reset is done using gpio[0] of cx23880x chip. | ||
211 | * I'd like to do it here, but don't know how to find chip address. | ||
212 | * cx88-cards.c arranges for the reset bit to be inactive (high). | ||
213 | * Maybe there needs to be a callable function in cx88-core or | ||
214 | * the caller of this function needs to do it. */ | ||
215 | |||
216 | /* | ||
217 | * Array of byte pairs <address, value> | ||
218 | * to initialize each different chip | ||
219 | */ | ||
220 | static u8 lgdt3302_init_data[] = { | ||
221 | /* Use 50MHz parameter values from spec sheet since xtal is 50 */ | ||
222 | /* Change the value of NCOCTFV[25:0] of carrier | ||
223 | recovery center frequency register */ | ||
224 | VSB_CARRIER_FREQ0, 0x00, | ||
225 | VSB_CARRIER_FREQ1, 0x87, | ||
226 | VSB_CARRIER_FREQ2, 0x8e, | ||
227 | VSB_CARRIER_FREQ3, 0x01, | ||
228 | /* Change the TPCLK pin polarity | ||
229 | data is valid on falling clock */ | ||
230 | DEMUX_CONTROL, 0xfb, | ||
231 | /* Change the value of IFBW[11:0] of | ||
232 | AGC IF/RF loop filter bandwidth register */ | ||
233 | AGC_RF_BANDWIDTH0, 0x40, | ||
234 | AGC_RF_BANDWIDTH1, 0x93, | ||
235 | AGC_RF_BANDWIDTH2, 0x00, | ||
236 | /* Change the value of bit 6, 'nINAGCBY' and | ||
237 | 'NSSEL[1:0] of ACG function control register 2 */ | ||
238 | AGC_FUNC_CTRL2, 0xc6, | ||
239 | /* Change the value of bit 6 'RFFIX' | ||
240 | of AGC function control register 3 */ | ||
241 | AGC_FUNC_CTRL3, 0x40, | ||
242 | /* Set the value of 'INLVTHD' register 0x2a/0x2c | ||
243 | to 0x7fe */ | ||
244 | AGC_DELAY0, 0x07, | ||
245 | AGC_DELAY2, 0xfe, | ||
246 | /* Change the value of IAGCBW[15:8] | ||
247 | of inner AGC loop filter bandwith */ | ||
248 | AGC_LOOP_BANDWIDTH0, 0x08, | ||
249 | AGC_LOOP_BANDWIDTH1, 0x9a | ||
250 | }; | ||
251 | |||
252 | static u8 lgdt3303_init_data[] = { | ||
253 | 0x4c, 0x14 | ||
254 | }; | ||
255 | |||
256 | struct lgdt330x_state* state = fe->demodulator_priv; | ||
257 | char *chip_name; | ||
258 | int err; | ||
259 | |||
260 | switch (state->config->demod_chip) { | ||
261 | case LGDT3302: | ||
262 | chip_name = "LGDT3302"; | ||
263 | err = i2c_write_demod_bytes(state, lgdt3302_init_data, | ||
264 | sizeof(lgdt3302_init_data)); | ||
265 | break; | ||
266 | case LGDT3303: | ||
267 | chip_name = "LGDT3303"; | ||
268 | err = i2c_write_demod_bytes(state, lgdt3303_init_data, | ||
269 | sizeof(lgdt3303_init_data)); | ||
270 | #ifdef MUTE_TDA9887 | ||
271 | fiddle_with_ntsc_if_demod(state); | ||
272 | #endif | ||
273 | break; | ||
274 | default: | ||
275 | chip_name = "undefined"; | ||
276 | printk (KERN_WARNING "Only LGDT3302 and LGDT3303 are supported chips.\n"); | ||
277 | err = -ENODEV; | ||
278 | } | ||
279 | dprintk("%s entered as %s\n", __FUNCTION__, chip_name); | ||
280 | if (err < 0) | ||
281 | return err; | ||
282 | return lgdt330x_SwReset(state); | ||
283 | } | ||
284 | |||
285 | static int lgdt330x_read_ber(struct dvb_frontend* fe, u32* ber) | ||
286 | { | ||
287 | *ber = 0; /* Not supplied by the demod chips */ | ||
288 | return 0; | ||
289 | } | ||
290 | |||
291 | static int lgdt330x_read_ucblocks(struct dvb_frontend* fe, u32* ucblocks) | ||
292 | { | ||
293 | struct lgdt330x_state* state = fe->demodulator_priv; | ||
294 | int err; | ||
295 | u8 buf[2]; | ||
296 | |||
297 | switch (state->config->demod_chip) { | ||
298 | case LGDT3302: | ||
299 | err = i2c_read_demod_bytes(state, LGDT3302_PACKET_ERR_COUNTER1, | ||
300 | buf, sizeof(buf)); | ||
301 | break; | ||
302 | case LGDT3303: | ||
303 | err = i2c_read_demod_bytes(state, LGDT3303_PACKET_ERR_COUNTER1, | ||
304 | buf, sizeof(buf)); | ||
305 | break; | ||
306 | default: | ||
307 | printk(KERN_WARNING | ||
308 | "Only LGDT3302 and LGDT3303 are supported chips.\n"); | ||
309 | err = -ENODEV; | ||
310 | } | ||
311 | |||
312 | *ucblocks = (buf[0] << 8) | buf[1]; | ||
313 | return 0; | ||
314 | } | ||
315 | |||
316 | static int lgdt330x_set_parameters(struct dvb_frontend* fe, | ||
317 | struct dvb_frontend_parameters *param) | ||
318 | { | ||
319 | /* | ||
320 | * Array of byte pairs <address, value> | ||
321 | * to initialize 8VSB for lgdt3303 chip 50 MHz IF | ||
322 | */ | ||
323 | static u8 lgdt3303_8vsb_44_data[] = { | ||
324 | 0x04, 0x00, | ||
325 | 0x0d, 0x40, | ||
326 | 0x0e, 0x87, | ||
327 | 0x0f, 0x8e, | ||
328 | 0x10, 0x01, | ||
329 | 0x47, 0x8b }; | ||
330 | |||
331 | /* | ||
332 | * Array of byte pairs <address, value> | ||
333 | * to initialize QAM for lgdt3303 chip | ||
334 | */ | ||
335 | static u8 lgdt3303_qam_data[] = { | ||
336 | 0x04, 0x00, | ||
337 | 0x0d, 0x00, | ||
338 | 0x0e, 0x00, | ||
339 | 0x0f, 0x00, | ||
340 | 0x10, 0x00, | ||
341 | 0x51, 0x63, | ||
342 | 0x47, 0x66, | ||
343 | 0x48, 0x66, | ||
344 | 0x4d, 0x1a, | ||
345 | 0x49, 0x08, | ||
346 | 0x4a, 0x9b }; | ||
347 | |||
348 | struct lgdt330x_state* state = fe->demodulator_priv; | ||
349 | |||
350 | static u8 top_ctrl_cfg[] = { TOP_CONTROL, 0x03 }; | ||
351 | |||
352 | int err; | ||
353 | /* Change only if we are actually changing the modulation */ | ||
354 | if (state->current_modulation != param->u.vsb.modulation) { | ||
355 | switch(param->u.vsb.modulation) { | ||
356 | case VSB_8: | ||
357 | dprintk("%s: VSB_8 MODE\n", __FUNCTION__); | ||
358 | |||
359 | /* Select VSB mode */ | ||
360 | top_ctrl_cfg[1] = 0x03; | ||
361 | |||
362 | /* Select ANT connector if supported by card */ | ||
363 | if (state->config->pll_rf_set) | ||
364 | state->config->pll_rf_set(fe, 1); | ||
365 | |||
366 | if (state->config->demod_chip == LGDT3303) { | ||
367 | err = i2c_write_demod_bytes(state, lgdt3303_8vsb_44_data, | ||
368 | sizeof(lgdt3303_8vsb_44_data)); | ||
369 | } | ||
370 | break; | ||
371 | |||
372 | case QAM_64: | ||
373 | dprintk("%s: QAM_64 MODE\n", __FUNCTION__); | ||
374 | |||
375 | /* Select QAM_64 mode */ | ||
376 | top_ctrl_cfg[1] = 0x00; | ||
377 | |||
378 | /* Select CABLE connector if supported by card */ | ||
379 | if (state->config->pll_rf_set) | ||
380 | state->config->pll_rf_set(fe, 0); | ||
381 | |||
382 | if (state->config->demod_chip == LGDT3303) { | ||
383 | err = i2c_write_demod_bytes(state, lgdt3303_qam_data, | ||
384 | sizeof(lgdt3303_qam_data)); | ||
385 | } | ||
386 | break; | ||
387 | |||
388 | case QAM_256: | ||
389 | dprintk("%s: QAM_256 MODE\n", __FUNCTION__); | ||
390 | |||
391 | /* Select QAM_256 mode */ | ||
392 | top_ctrl_cfg[1] = 0x01; | ||
393 | |||
394 | /* Select CABLE connector if supported by card */ | ||
395 | if (state->config->pll_rf_set) | ||
396 | state->config->pll_rf_set(fe, 0); | ||
397 | |||
398 | if (state->config->demod_chip == LGDT3303) { | ||
399 | err = i2c_write_demod_bytes(state, lgdt3303_qam_data, | ||
400 | sizeof(lgdt3303_qam_data)); | ||
401 | } | ||
402 | break; | ||
403 | default: | ||
404 | printk(KERN_WARNING "lgdt330x: %s: Modulation type(%d) UNSUPPORTED\n", __FUNCTION__, param->u.vsb.modulation); | ||
405 | return -1; | ||
406 | } | ||
407 | /* | ||
408 | * select serial or parallel MPEG harware interface | ||
409 | * Serial: 0x04 for LGDT3302 or 0x40 for LGDT3303 | ||
410 | * Parallel: 0x00 | ||
411 | */ | ||
412 | top_ctrl_cfg[1] |= state->config->serial_mpeg; | ||
413 | |||
414 | /* Select the requested mode */ | ||
415 | i2c_write_demod_bytes(state, top_ctrl_cfg, | ||
416 | sizeof(top_ctrl_cfg)); | ||
417 | state->config->set_ts_params(fe, 0); | ||
418 | state->current_modulation = param->u.vsb.modulation; | ||
419 | } | ||
420 | |||
421 | /* Change only if we are actually changing the channel */ | ||
422 | if (state->current_frequency != param->frequency) { | ||
423 | /* Tune to the new frequency */ | ||
424 | state->config->pll_set(fe, param); | ||
425 | /* Keep track of the new frequency */ | ||
426 | state->current_frequency = param->frequency; | ||
427 | } | ||
428 | lgdt330x_SwReset(state); | ||
429 | return 0; | ||
430 | } | ||
431 | |||
432 | static int lgdt330x_get_frontend(struct dvb_frontend* fe, | ||
433 | struct dvb_frontend_parameters* param) | ||
434 | { | ||
435 | struct lgdt330x_state *state = fe->demodulator_priv; | ||
436 | param->frequency = state->current_frequency; | ||
437 | return 0; | ||
438 | } | ||
439 | |||
440 | static int lgdt3302_read_status(struct dvb_frontend* fe, fe_status_t* status) | ||
441 | { | ||
442 | struct lgdt330x_state* state = fe->demodulator_priv; | ||
443 | u8 buf[3]; | ||
444 | |||
445 | *status = 0; /* Reset status result */ | ||
446 | |||
447 | /* AGC status register */ | ||
448 | i2c_read_demod_bytes(state, AGC_STATUS, buf, 1); | ||
449 | dprintk("%s: AGC_STATUS = 0x%02x\n", __FUNCTION__, buf[0]); | ||
450 | if ((buf[0] & 0x0c) == 0x8){ | ||
451 | /* Test signal does not exist flag */ | ||
452 | /* as well as the AGC lock flag. */ | ||
453 | *status |= FE_HAS_SIGNAL; | ||
454 | } else { | ||
455 | /* Without a signal all other status bits are meaningless */ | ||
456 | return 0; | ||
457 | } | ||
458 | |||
459 | /* | ||
460 | * You must set the Mask bits to 1 in the IRQ_MASK in order | ||
461 | * to see that status bit in the IRQ_STATUS register. | ||
462 | * This is done in SwReset(); | ||
463 | */ | ||
464 | /* signal status */ | ||
465 | i2c_read_demod_bytes(state, TOP_CONTROL, buf, sizeof(buf)); | ||
466 | dprintk("%s: TOP_CONTROL = 0x%02x, IRO_MASK = 0x%02x, IRQ_STATUS = 0x%02x\n", __FUNCTION__, buf[0], buf[1], buf[2]); | ||
467 | |||
468 | |||
469 | /* sync status */ | ||
470 | if ((buf[2] & 0x03) == 0x01) { | ||
471 | *status |= FE_HAS_SYNC; | ||
472 | } | ||
473 | |||
474 | /* FEC error status */ | ||
475 | if ((buf[2] & 0x0c) == 0x08) { | ||
476 | *status |= FE_HAS_LOCK; | ||
477 | *status |= FE_HAS_VITERBI; | ||
478 | } | ||
479 | |||
480 | /* Carrier Recovery Lock Status Register */ | ||
481 | i2c_read_demod_bytes(state, CARRIER_LOCK, buf, 1); | ||
482 | dprintk("%s: CARRIER_LOCK = 0x%02x\n", __FUNCTION__, buf[0]); | ||
483 | switch (state->current_modulation) { | ||
484 | case QAM_256: | ||
485 | case QAM_64: | ||
486 | /* Need to undestand why there are 3 lock levels here */ | ||
487 | if ((buf[0] & 0x07) == 0x07) | ||
488 | *status |= FE_HAS_CARRIER; | ||
489 | break; | ||
490 | case VSB_8: | ||
491 | if ((buf[0] & 0x80) == 0x80) | ||
492 | *status |= FE_HAS_CARRIER; | ||
493 | break; | ||
494 | default: | ||
495 | printk("KERN_WARNING lgdt330x: %s: Modulation set to unsupported value\n", __FUNCTION__); | ||
496 | } | ||
497 | |||
498 | return 0; | ||
499 | } | ||
500 | |||
501 | static int lgdt3303_read_status(struct dvb_frontend* fe, fe_status_t* status) | ||
502 | { | ||
503 | struct lgdt330x_state* state = fe->demodulator_priv; | ||
504 | int err; | ||
505 | u8 buf[3]; | ||
506 | |||
507 | *status = 0; /* Reset status result */ | ||
508 | |||
509 | /* lgdt3303 AGC status register */ | ||
510 | err = i2c_read_demod_bytes(state, 0x58, buf, 1); | ||
511 | if (err < 0) | ||
512 | return err; | ||
513 | |||
514 | dprintk("%s: AGC_STATUS = 0x%02x\n", __FUNCTION__, buf[0]); | ||
515 | if ((buf[0] & 0x21) == 0x01){ | ||
516 | /* Test input signal does not exist flag */ | ||
517 | /* as well as the AGC lock flag. */ | ||
518 | *status |= FE_HAS_SIGNAL; | ||
519 | } else { | ||
520 | /* Without a signal all other status bits are meaningless */ | ||
521 | return 0; | ||
522 | } | ||
523 | |||
524 | /* Carrier Recovery Lock Status Register */ | ||
525 | i2c_read_demod_bytes(state, CARRIER_LOCK, buf, 1); | ||
526 | dprintk("%s: CARRIER_LOCK = 0x%02x\n", __FUNCTION__, buf[0]); | ||
527 | switch (state->current_modulation) { | ||
528 | case QAM_256: | ||
529 | case QAM_64: | ||
530 | /* Need to undestand why there are 3 lock levels here */ | ||
531 | if ((buf[0] & 0x07) == 0x07) | ||
532 | *status |= FE_HAS_CARRIER; | ||
533 | else | ||
534 | break; | ||
535 | i2c_read_demod_bytes(state, 0x8a, buf, 1); | ||
536 | if ((buf[0] & 0x04) == 0x04) | ||
537 | *status |= FE_HAS_SYNC; | ||
538 | if ((buf[0] & 0x01) == 0x01) | ||
539 | *status |= FE_HAS_LOCK; | ||
540 | if ((buf[0] & 0x08) == 0x08) | ||
541 | *status |= FE_HAS_VITERBI; | ||
542 | break; | ||
543 | case VSB_8: | ||
544 | if ((buf[0] & 0x80) == 0x80) | ||
545 | *status |= FE_HAS_CARRIER; | ||
546 | else | ||
547 | break; | ||
548 | i2c_read_demod_bytes(state, 0x38, buf, 1); | ||
549 | if ((buf[0] & 0x02) == 0x00) | ||
550 | *status |= FE_HAS_SYNC; | ||
551 | if ((buf[0] & 0x01) == 0x01) { | ||
552 | *status |= FE_HAS_LOCK; | ||
553 | *status |= FE_HAS_VITERBI; | ||
554 | } | ||
555 | break; | ||
556 | default: | ||
557 | printk("KERN_WARNING lgdt330x: %s: Modulation set to unsupported value\n", __FUNCTION__); | ||
558 | } | ||
559 | return 0; | ||
560 | } | ||
561 | |||
562 | static int lgdt330x_read_signal_strength(struct dvb_frontend* fe, u16* strength) | ||
563 | { | ||
564 | /* not directly available. */ | ||
565 | *strength = 0; | ||
566 | return 0; | ||
567 | } | ||
568 | |||
569 | static int lgdt3302_read_snr(struct dvb_frontend* fe, u16* snr) | ||
570 | { | ||
571 | #ifdef SNR_IN_DB | ||
572 | /* | ||
573 | * Spec sheet shows formula for SNR_EQ = 10 log10(25 * 24**2 / noise) | ||
574 | * and SNR_PH = 10 log10(25 * 32**2 / noise) for equalizer and phase tracker | ||
575 | * respectively. The following tables are built on these formulas. | ||
576 | * The usual definition is SNR = 20 log10(signal/noise) | ||
577 | * If the specification is wrong the value retuned is 1/2 the actual SNR in db. | ||
578 | * | ||
579 | * This table is a an ordered list of noise values computed by the | ||
580 | * formula from the spec sheet such that the index into the table | ||
581 | * starting at 43 or 45 is the SNR value in db. There are duplicate noise | ||
582 | * value entries at the beginning because the SNR varies more than | ||
583 | * 1 db for a change of 1 digit in noise at very small values of noise. | ||
584 | * | ||
585 | * Examples from SNR_EQ table: | ||
586 | * noise SNR | ||
587 | * 0 43 | ||
588 | * 1 42 | ||
589 | * 2 39 | ||
590 | * 3 37 | ||
591 | * 4 36 | ||
592 | * 5 35 | ||
593 | * 6 34 | ||
594 | * 7 33 | ||
595 | * 8 33 | ||
596 | * 9 32 | ||
597 | * 10 32 | ||
598 | * 11 31 | ||
599 | * 12 31 | ||
600 | * 13 30 | ||
601 | */ | ||
602 | |||
603 | static const u32 SNR_EQ[] = | ||
604 | { 1, 2, 2, 2, 3, 3, 4, 4, 5, 7, | ||
605 | 9, 11, 13, 17, 21, 26, 33, 41, 52, 65, | ||
606 | 81, 102, 129, 162, 204, 257, 323, 406, 511, 644, | ||
607 | 810, 1020, 1284, 1616, 2035, 2561, 3224, 4059, 5110, 6433, | ||
608 | 8098, 10195, 12835, 16158, 20341, 25608, 32238, 40585, 51094, 64323, | ||
609 | 80978, 101945, 128341, 161571, 203406, 256073, 0x40000 | ||
610 | }; | ||
611 | |||
612 | static const u32 SNR_PH[] = | ||
613 | { 1, 2, 2, 2, 3, 3, 4, 5, 6, 8, | ||
614 | 10, 12, 15, 19, 23, 29, 37, 46, 58, 73, | ||
615 | 91, 115, 144, 182, 229, 288, 362, 456, 574, 722, | ||
616 | 909, 1144, 1440, 1813, 2282, 2873, 3617, 4553, 5732, 7216, | ||
617 | 9084, 11436, 14396, 18124, 22817, 28724, 36161, 45524, 57312, 72151, | ||
618 | 90833, 114351, 143960, 181235, 228161, 0x080000 | ||
619 | }; | ||
620 | |||
621 | static u8 buf[5];/* read data buffer */ | ||
622 | static u32 noise; /* noise value */ | ||
623 | static u32 snr_db; /* index into SNR_EQ[] */ | ||
624 | struct lgdt330x_state* state = (struct lgdt330x_state*) fe->demodulator_priv; | ||
625 | |||
626 | /* read both equalizer and phase tracker noise data */ | ||
627 | i2c_read_demod_bytes(state, EQPH_ERR0, buf, sizeof(buf)); | ||
628 | |||
629 | if (state->current_modulation == VSB_8) { | ||
630 | /* Equalizer Mean-Square Error Register for VSB */ | ||
631 | noise = ((buf[0] & 7) << 16) | (buf[1] << 8) | buf[2]; | ||
632 | |||
633 | /* | ||
634 | * Look up noise value in table. | ||
635 | * A better search algorithm could be used... | ||
636 | * watch out there are duplicate entries. | ||
637 | */ | ||
638 | for (snr_db = 0; snr_db < sizeof(SNR_EQ); snr_db++) { | ||
639 | if (noise < SNR_EQ[snr_db]) { | ||
640 | *snr = 43 - snr_db; | ||
641 | break; | ||
642 | } | ||
643 | } | ||
644 | } else { | ||
645 | /* Phase Tracker Mean-Square Error Register for QAM */ | ||
646 | noise = ((buf[0] & 7<<3) << 13) | (buf[3] << 8) | buf[4]; | ||
647 | |||
648 | /* Look up noise value in table. */ | ||
649 | for (snr_db = 0; snr_db < sizeof(SNR_PH); snr_db++) { | ||
650 | if (noise < SNR_PH[snr_db]) { | ||
651 | *snr = 45 - snr_db; | ||
652 | break; | ||
653 | } | ||
654 | } | ||
655 | } | ||
656 | #else | ||
657 | /* Return the raw noise value */ | ||
658 | static u8 buf[5];/* read data buffer */ | ||
659 | static u32 noise; /* noise value */ | ||
660 | struct lgdt330x_state* state = (struct lgdt330x_state*) fe->demodulator_priv; | ||
661 | |||
662 | /* read both equalizer and pase tracker noise data */ | ||
663 | i2c_read_demod_bytes(state, EQPH_ERR0, buf, sizeof(buf)); | ||
664 | |||
665 | if (state->current_modulation == VSB_8) { | ||
666 | /* Phase Tracker Mean-Square Error Register for VSB */ | ||
667 | noise = ((buf[0] & 7<<3) << 13) | (buf[3] << 8) | buf[4]; | ||
668 | } else { | ||
669 | |||
670 | /* Carrier Recovery Mean-Square Error for QAM */ | ||
671 | i2c_read_demod_bytes(state, 0x1a, buf, 2); | ||
672 | noise = ((buf[0] & 3) << 8) | buf[1]; | ||
673 | } | ||
674 | |||
675 | /* Small values for noise mean signal is better so invert noise */ | ||
676 | *snr = ~noise; | ||
677 | #endif | ||
678 | |||
679 | dprintk("%s: noise = 0x%05x, snr = %idb\n",__FUNCTION__, noise, *snr); | ||
680 | |||
681 | return 0; | ||
682 | } | ||
683 | |||
684 | static int lgdt3303_read_snr(struct dvb_frontend* fe, u16* snr) | ||
685 | { | ||
686 | /* Return the raw noise value */ | ||
687 | static u8 buf[5];/* read data buffer */ | ||
688 | static u32 noise; /* noise value */ | ||
689 | struct lgdt330x_state* state = (struct lgdt330x_state*) fe->demodulator_priv; | ||
690 | |||
691 | if (state->current_modulation == VSB_8) { | ||
692 | |||
693 | /* Phase Tracker Mean-Square Error Register for VSB */ | ||
694 | noise = ((buf[0] & 7) << 16) | (buf[3] << 8) | buf[4]; | ||
695 | } else { | ||
696 | |||
697 | /* Carrier Recovery Mean-Square Error for QAM */ | ||
698 | i2c_read_demod_bytes(state, 0x1a, buf, 2); | ||
699 | noise = (buf[0] << 8) | buf[1]; | ||
700 | } | ||
701 | |||
702 | /* Small values for noise mean signal is better so invert noise */ | ||
703 | *snr = ~noise; | ||
704 | |||
705 | dprintk("%s: noise = 0x%05x, snr = %idb\n",__FUNCTION__, noise, *snr); | ||
706 | |||
707 | return 0; | ||
708 | } | ||
709 | |||
710 | static int lgdt330x_get_tune_settings(struct dvb_frontend* fe, struct dvb_frontend_tune_settings* fe_tune_settings) | ||
711 | { | ||
712 | /* I have no idea about this - it may not be needed */ | ||
713 | fe_tune_settings->min_delay_ms = 500; | ||
714 | fe_tune_settings->step_size = 0; | ||
715 | fe_tune_settings->max_drift = 0; | ||
716 | return 0; | ||
717 | } | ||
718 | |||
719 | static void lgdt330x_release(struct dvb_frontend* fe) | ||
720 | { | ||
721 | struct lgdt330x_state* state = (struct lgdt330x_state*) fe->demodulator_priv; | ||
722 | kfree(state); | ||
723 | } | ||
724 | |||
725 | static struct dvb_frontend_ops lgdt3302_ops; | ||
726 | static struct dvb_frontend_ops lgdt3303_ops; | ||
727 | |||
728 | struct dvb_frontend* lgdt330x_attach(const struct lgdt330x_config* config, | ||
729 | struct i2c_adapter* i2c) | ||
730 | { | ||
731 | struct lgdt330x_state* state = NULL; | ||
732 | u8 buf[1]; | ||
733 | |||
734 | /* Allocate memory for the internal state */ | ||
735 | state = (struct lgdt330x_state*) kmalloc(sizeof(struct lgdt330x_state), GFP_KERNEL); | ||
736 | if (state == NULL) | ||
737 | goto error; | ||
738 | memset(state,0,sizeof(*state)); | ||
739 | |||
740 | /* Setup the state */ | ||
741 | state->config = config; | ||
742 | state->i2c = i2c; | ||
743 | switch (config->demod_chip) { | ||
744 | case LGDT3302: | ||
745 | memcpy(&state->ops, &lgdt3302_ops, sizeof(struct dvb_frontend_ops)); | ||
746 | break; | ||
747 | case LGDT3303: | ||
748 | memcpy(&state->ops, &lgdt3303_ops, sizeof(struct dvb_frontend_ops)); | ||
749 | break; | ||
750 | default: | ||
751 | goto error; | ||
752 | } | ||
753 | |||
754 | /* Verify communication with demod chip */ | ||
755 | if (i2c_read_demod_bytes(state, 2, buf, 1)) | ||
756 | goto error; | ||
757 | |||
758 | state->current_frequency = -1; | ||
759 | state->current_modulation = -1; | ||
760 | |||
761 | /* Create dvb_frontend */ | ||
762 | state->frontend.ops = &state->ops; | ||
763 | state->frontend.demodulator_priv = state; | ||
764 | return &state->frontend; | ||
765 | |||
766 | error: | ||
767 | if (state) | ||
768 | kfree(state); | ||
769 | dprintk("%s: ERROR\n",__FUNCTION__); | ||
770 | return NULL; | ||
771 | } | ||
772 | |||
773 | static struct dvb_frontend_ops lgdt3302_ops = { | ||
774 | .info = { | ||
775 | .name= "LG Electronics LGDT3302/LGDT3303 VSB/QAM Frontend", | ||
776 | .type = FE_ATSC, | ||
777 | .frequency_min= 54000000, | ||
778 | .frequency_max= 858000000, | ||
779 | .frequency_stepsize= 62500, | ||
780 | /* Symbol rate is for all VSB modes need to check QAM */ | ||
781 | .symbol_rate_min = 10762000, | ||
782 | .symbol_rate_max = 10762000, | ||
783 | .caps = FE_CAN_QAM_64 | FE_CAN_QAM_256 | FE_CAN_8VSB | ||
784 | }, | ||
785 | .init = lgdt330x_init, | ||
786 | .set_frontend = lgdt330x_set_parameters, | ||
787 | .get_frontend = lgdt330x_get_frontend, | ||
788 | .get_tune_settings = lgdt330x_get_tune_settings, | ||
789 | .read_status = lgdt3302_read_status, | ||
790 | .read_ber = lgdt330x_read_ber, | ||
791 | .read_signal_strength = lgdt330x_read_signal_strength, | ||
792 | .read_snr = lgdt3302_read_snr, | ||
793 | .read_ucblocks = lgdt330x_read_ucblocks, | ||
794 | .release = lgdt330x_release, | ||
795 | }; | ||
796 | |||
797 | static struct dvb_frontend_ops lgdt3303_ops = { | ||
798 | .info = { | ||
799 | .name= "LG Electronics LGDT3303 VSB/QAM Frontend", | ||
800 | .type = FE_ATSC, | ||
801 | .frequency_min= 54000000, | ||
802 | .frequency_max= 858000000, | ||
803 | .frequency_stepsize= 62500, | ||
804 | /* Symbol rate is for all VSB modes need to check QAM */ | ||
805 | .symbol_rate_min = 10762000, | ||
806 | .symbol_rate_max = 10762000, | ||
807 | .caps = FE_CAN_QAM_64 | FE_CAN_QAM_256 | FE_CAN_8VSB | ||
808 | }, | ||
809 | .init = lgdt330x_init, | ||
810 | .set_frontend = lgdt330x_set_parameters, | ||
811 | .get_frontend = lgdt330x_get_frontend, | ||
812 | .get_tune_settings = lgdt330x_get_tune_settings, | ||
813 | .read_status = lgdt3303_read_status, | ||
814 | .read_ber = lgdt330x_read_ber, | ||
815 | .read_signal_strength = lgdt330x_read_signal_strength, | ||
816 | .read_snr = lgdt3303_read_snr, | ||
817 | .read_ucblocks = lgdt330x_read_ucblocks, | ||
818 | .release = lgdt330x_release, | ||
819 | }; | ||
820 | |||
821 | MODULE_DESCRIPTION("LGDT330X (ATSC 8VSB & ITU-T J.83 AnnexB 64/256 QAM) Demodulator Driver"); | ||
822 | MODULE_AUTHOR("Wilson Michaels"); | ||
823 | MODULE_LICENSE("GPL"); | ||
824 | |||
825 | EXPORT_SYMBOL(lgdt330x_attach); | ||
826 | |||
827 | /* | ||
828 | * Local variables: | ||
829 | * c-basic-offset: 8 | ||
830 | * End: | ||
831 | */ | ||
diff --git a/drivers/media/dvb/frontends/lgdt3302.h b/drivers/media/dvb/frontends/lgdt330x.h index 81587a40032b..e209ba1e47c5 100644 --- a/drivers/media/dvb/frontends/lgdt3302.h +++ b/drivers/media/dvb/frontends/lgdt330x.h | |||
@@ -1,7 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * $Id: lgdt3302.h,v 1.2 2005/06/28 23:50:48 mkrufky Exp $ | 2 | * Support for LGDT3302 and LGDT3303 - VSB/QAM |
3 | * | ||
4 | * Support for LGDT3302 (DViCO FustionHDTV 3 Gold) - VSB/QAM | ||
5 | * | 3 | * |
6 | * Copyright (C) 2005 Wilson Michaels <wilsonmichaels@earthlink.net> | 4 | * Copyright (C) 2005 Wilson Michaels <wilsonmichaels@earthlink.net> |
7 | * | 5 | * |
@@ -21,26 +19,40 @@ | |||
21 | * | 19 | * |
22 | */ | 20 | */ |
23 | 21 | ||
24 | #ifndef LGDT3302_H | 22 | #ifndef LGDT330X_H |
25 | #define LGDT3302_H | 23 | #define LGDT330X_H |
26 | 24 | ||
27 | #include <linux/dvb/frontend.h> | 25 | #include <linux/dvb/frontend.h> |
28 | 26 | ||
29 | struct lgdt3302_config | 27 | typedef enum lg_chip_t { |
28 | UNDEFINED, | ||
29 | LGDT3302, | ||
30 | LGDT3303 | ||
31 | }lg_chip_type; | ||
32 | |||
33 | struct lgdt330x_config | ||
30 | { | 34 | { |
31 | /* The demodulator's i2c address */ | 35 | /* The demodulator's i2c address */ |
32 | u8 demod_address; | 36 | u8 demod_address; |
33 | u8 pll_address; | 37 | |
34 | struct dvb_pll_desc *pll_desc; | 38 | /* LG demodulator chip LGDT3302 or LGDT3303 */ |
39 | lg_chip_type demod_chip; | ||
40 | |||
41 | /* MPEG hardware interface - 0:parallel 1:serial */ | ||
42 | int serial_mpeg; | ||
43 | |||
44 | /* PLL interface */ | ||
45 | int (*pll_rf_set) (struct dvb_frontend* fe, int index); | ||
46 | int (*pll_set)(struct dvb_frontend* fe, struct dvb_frontend_parameters* params); | ||
35 | 47 | ||
36 | /* Need to set device param for start_dma */ | 48 | /* Need to set device param for start_dma */ |
37 | int (*set_ts_params)(struct dvb_frontend* fe, int is_punctured); | 49 | int (*set_ts_params)(struct dvb_frontend* fe, int is_punctured); |
38 | }; | 50 | }; |
39 | 51 | ||
40 | extern struct dvb_frontend* lgdt3302_attach(const struct lgdt3302_config* config, | 52 | extern struct dvb_frontend* lgdt330x_attach(const struct lgdt330x_config* config, |
41 | struct i2c_adapter* i2c); | 53 | struct i2c_adapter* i2c); |
42 | 54 | ||
43 | #endif /* LGDT3302_H */ | 55 | #endif /* LGDT330X_H */ |
44 | 56 | ||
45 | /* | 57 | /* |
46 | * Local variables: | 58 | * Local variables: |
diff --git a/drivers/media/dvb/frontends/lgdt3302_priv.h b/drivers/media/dvb/frontends/lgdt330x_priv.h index 6193fa7a569d..59b7c5b9012d 100644 --- a/drivers/media/dvb/frontends/lgdt3302_priv.h +++ b/drivers/media/dvb/frontends/lgdt330x_priv.h | |||
@@ -1,7 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * $Id: lgdt3302_priv.h,v 1.2 2005/06/28 23:50:48 mkrufky Exp $ | 2 | * Support for LGDT3302 and LGDT3303 - VSB/QAM |
3 | * | ||
4 | * Support for LGDT3302 (DViCO FustionHDTV 3 Gold) - VSB/QAM | ||
5 | * | 3 | * |
6 | * Copyright (C) 2005 Wilson Michaels <wilsonmichaels@earthlink.net> | 4 | * Copyright (C) 2005 Wilson Michaels <wilsonmichaels@earthlink.net> |
7 | * | 5 | * |
@@ -21,8 +19,8 @@ | |||
21 | * | 19 | * |
22 | */ | 20 | */ |
23 | 21 | ||
24 | #ifndef _LGDT3302_PRIV_ | 22 | #ifndef _LGDT330X_PRIV_ |
25 | #define _LGDT3302_PRIV_ | 23 | #define _LGDT330X_PRIV_ |
26 | 24 | ||
27 | /* i2c control register addresses */ | 25 | /* i2c control register addresses */ |
28 | enum I2C_REG { | 26 | enum I2C_REG { |
@@ -59,11 +57,13 @@ enum I2C_REG { | |||
59 | PH_ERR1= 0x4a, | 57 | PH_ERR1= 0x4a, |
60 | PH_ERR2= 0x4b, | 58 | PH_ERR2= 0x4b, |
61 | DEMUX_CONTROL= 0x66, | 59 | DEMUX_CONTROL= 0x66, |
62 | PACKET_ERR_COUNTER1= 0x6a, | 60 | LGDT3302_PACKET_ERR_COUNTER1= 0x6a, |
63 | PACKET_ERR_COUNTER2= 0x6b, | 61 | LGDT3302_PACKET_ERR_COUNTER2= 0x6b, |
62 | LGDT3303_PACKET_ERR_COUNTER1= 0x8b, | ||
63 | LGDT3303_PACKET_ERR_COUNTER2= 0x8c, | ||
64 | }; | 64 | }; |
65 | 65 | ||
66 | #endif /* _LGDT3302_PRIV_ */ | 66 | #endif /* _LGDT330X_PRIV_ */ |
67 | 67 | ||
68 | /* | 68 | /* |
69 | * Local variables: | 69 | * Local variables: |
diff --git a/drivers/media/radio/radio-maestro.c b/drivers/media/radio/radio-maestro.c index e62147e4ed1b..e5e2021a7312 100644 --- a/drivers/media/radio/radio-maestro.c +++ b/drivers/media/radio/radio-maestro.c | |||
@@ -154,7 +154,7 @@ static void radio_bits_set(struct radio_device *dev, __u32 data) | |||
154 | msleep(125); | 154 | msleep(125); |
155 | } | 155 | } |
156 | 156 | ||
157 | inline static int radio_function(struct inode *inode, struct file *file, | 157 | static inline int radio_function(struct inode *inode, struct file *file, |
158 | unsigned int cmd, void *arg) | 158 | unsigned int cmd, void *arg) |
159 | { | 159 | { |
160 | struct video_device *dev = video_devdata(file); | 160 | struct video_device *dev = video_devdata(file); |
@@ -283,7 +283,7 @@ static int __init maestro_radio_init(void) | |||
283 | module_init(maestro_radio_init); | 283 | module_init(maestro_radio_init); |
284 | module_exit(maestro_radio_exit); | 284 | module_exit(maestro_radio_exit); |
285 | 285 | ||
286 | inline static __u16 radio_power_on(struct radio_device *dev) | 286 | static inline __u16 radio_power_on(struct radio_device *dev) |
287 | { | 287 | { |
288 | register __u16 io=dev->io; | 288 | register __u16 io=dev->io; |
289 | register __u32 ofreq; | 289 | register __u32 ofreq; |
diff --git a/drivers/media/radio/radio-maxiradio.c b/drivers/media/radio/radio-maxiradio.c index 5b748a48ce72..02d39a50d5ed 100644 --- a/drivers/media/radio/radio-maxiradio.c +++ b/drivers/media/radio/radio-maxiradio.c | |||
@@ -166,7 +166,7 @@ static int get_tune(__u16 io) | |||
166 | } | 166 | } |
167 | 167 | ||
168 | 168 | ||
169 | inline static int radio_function(struct inode *inode, struct file *file, | 169 | static inline int radio_function(struct inode *inode, struct file *file, |
170 | unsigned int cmd, void *arg) | 170 | unsigned int cmd, void *arg) |
171 | { | 171 | { |
172 | struct video_device *dev = video_devdata(file); | 172 | struct video_device *dev = video_devdata(file); |
diff --git a/drivers/media/video/Kconfig b/drivers/media/video/Kconfig index f461750c7646..ac81e5e01a9a 100644 --- a/drivers/media/video/Kconfig +++ b/drivers/media/video/Kconfig | |||
@@ -236,7 +236,7 @@ config VIDEO_MEYE | |||
236 | 236 | ||
237 | config VIDEO_SAA7134 | 237 | config VIDEO_SAA7134 |
238 | tristate "Philips SAA7134 support" | 238 | tristate "Philips SAA7134 support" |
239 | depends on VIDEO_DEV && PCI && I2C | 239 | depends on VIDEO_DEV && PCI && I2C && SOUND |
240 | select VIDEO_BUF | 240 | select VIDEO_BUF |
241 | select VIDEO_IR | 241 | select VIDEO_IR |
242 | select VIDEO_TUNER | 242 | select VIDEO_TUNER |
@@ -331,7 +331,7 @@ config VIDEO_CX88_DVB | |||
331 | select DVB_MT352 | 331 | select DVB_MT352 |
332 | select DVB_OR51132 | 332 | select DVB_OR51132 |
333 | select DVB_CX22702 | 333 | select DVB_CX22702 |
334 | select DVB_LGDT3302 | 334 | select DVB_LGDT330X |
335 | ---help--- | 335 | ---help--- |
336 | This adds support for DVB/ATSC cards based on the | 336 | This adds support for DVB/ATSC cards based on the |
337 | Connexant 2388x chip. | 337 | Connexant 2388x chip. |
diff --git a/drivers/media/video/bttv-cards.c b/drivers/media/video/bttv-cards.c index 2dbf5ec43abd..a97b9b958ed6 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.53 2005/07/05 17:37:35 nsh Exp $ | 2 | $Id: bttv-cards.c,v 1.54 2005/07/19 18:26:46 mkrufky Exp $ |
3 | 3 | ||
4 | bttv-cards.c | 4 | bttv-cards.c |
5 | 5 | ||
@@ -95,7 +95,7 @@ static int __devinit pvr_boot(struct bttv *btv); | |||
95 | static unsigned int triton1=0; | 95 | static unsigned int triton1=0; |
96 | static unsigned int vsfx=0; | 96 | static unsigned int vsfx=0; |
97 | static unsigned int latency = UNSET; | 97 | static unsigned int latency = UNSET; |
98 | static unsigned int no_overlay=-1; | 98 | int no_overlay=-1; |
99 | 99 | ||
100 | static unsigned int card[BTTV_MAX] = { [ 0 ... (BTTV_MAX-1) ] = UNSET }; | 100 | static unsigned int card[BTTV_MAX] = { [ 0 ... (BTTV_MAX-1) ] = UNSET }; |
101 | static unsigned int pll[BTTV_MAX] = { [ 0 ... (BTTV_MAX-1) ] = UNSET }; | 101 | static unsigned int pll[BTTV_MAX] = { [ 0 ... (BTTV_MAX-1) ] = UNSET }; |
@@ -2772,8 +2772,6 @@ void __devinit bttv_init_card2(struct bttv *btv) | |||
2772 | } | 2772 | } |
2773 | btv->pll.pll_current = -1; | 2773 | btv->pll.pll_current = -1; |
2774 | 2774 | ||
2775 | bttv_reset_audio(btv); | ||
2776 | |||
2777 | /* tuner configuration (from card list / autodetect / insmod option) */ | 2775 | /* tuner configuration (from card list / autodetect / insmod option) */ |
2778 | if (UNSET != bttv_tvcards[btv->c.type].tuner_type) | 2776 | if (UNSET != bttv_tvcards[btv->c.type].tuner_type) |
2779 | if(UNSET == btv->tuner_type) | 2777 | if(UNSET == btv->tuner_type) |
@@ -4298,9 +4296,11 @@ void __devinit bttv_check_chipset(void) | |||
4298 | printk(KERN_INFO "bttv: Host bridge needs VSFX enabled.\n"); | 4296 | printk(KERN_INFO "bttv: Host bridge needs VSFX enabled.\n"); |
4299 | if (pcipci_fail) { | 4297 | if (pcipci_fail) { |
4300 | printk(KERN_WARNING "bttv: BT848 and your chipset may not work together.\n"); | 4298 | printk(KERN_WARNING "bttv: BT848 and your chipset may not work together.\n"); |
4301 | if (UNSET == no_overlay) { | 4299 | if (!no_overlay) { |
4302 | printk(KERN_WARNING "bttv: going to disable overlay.\n"); | 4300 | printk(KERN_WARNING "bttv: overlay will be disabled.\n"); |
4303 | no_overlay = 1; | 4301 | no_overlay = 1; |
4302 | } else { | ||
4303 | printk(KERN_WARNING "bttv: overlay forced. Use this option at your own risk.\n"); | ||
4304 | } | 4304 | } |
4305 | } | 4305 | } |
4306 | if (UNSET != latency) | 4306 | if (UNSET != latency) |
diff --git a/drivers/media/video/bttv-driver.c b/drivers/media/video/bttv-driver.c index 51a0f6d68e73..eee9322ce21b 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.42 2005/07/05 17:37:35 nsh Exp $ | 2 | $Id: bttv-driver.c,v 1.52 2005/08/04 00:55:16 mchehab Exp $ |
3 | 3 | ||
4 | bttv - Bt848 frame grabber driver | 4 | bttv - Bt848 frame grabber driver |
5 | 5 | ||
@@ -80,6 +80,7 @@ static unsigned int irq_iswitch = 0; | |||
80 | static unsigned int uv_ratio = 50; | 80 | static unsigned int uv_ratio = 50; |
81 | static unsigned int full_luma_range = 0; | 81 | static unsigned int full_luma_range = 0; |
82 | static unsigned int coring = 0; | 82 | static unsigned int coring = 0; |
83 | extern int no_overlay; | ||
83 | 84 | ||
84 | /* API features (turn on/off stuff for testing) */ | 85 | /* API features (turn on/off stuff for testing) */ |
85 | static unsigned int v4l2 = 1; | 86 | static unsigned int v4l2 = 1; |
@@ -2151,6 +2152,10 @@ static int bttv_s_fmt(struct bttv_fh *fh, struct bttv *btv, | |||
2151 | return 0; | 2152 | return 0; |
2152 | } | 2153 | } |
2153 | case V4L2_BUF_TYPE_VIDEO_OVERLAY: | 2154 | case V4L2_BUF_TYPE_VIDEO_OVERLAY: |
2155 | if (no_overlay > 0) { | ||
2156 | printk ("V4L2_BUF_TYPE_VIDEO_OVERLAY: no_overlay\n"); | ||
2157 | return -EINVAL; | ||
2158 | } | ||
2154 | return setup_window(fh, btv, &f->fmt.win, 1); | 2159 | return setup_window(fh, btv, &f->fmt.win, 1); |
2155 | case V4L2_BUF_TYPE_VBI_CAPTURE: | 2160 | case V4L2_BUF_TYPE_VBI_CAPTURE: |
2156 | retval = bttv_switch_type(fh,f->type); | 2161 | retval = bttv_switch_type(fh,f->type); |
@@ -2224,9 +2229,11 @@ static int bttv_do_ioctl(struct inode *inode, struct file *file, | |||
2224 | /* others */ | 2229 | /* others */ |
2225 | cap->type = VID_TYPE_CAPTURE| | 2230 | cap->type = VID_TYPE_CAPTURE| |
2226 | VID_TYPE_TUNER| | 2231 | VID_TYPE_TUNER| |
2227 | VID_TYPE_OVERLAY| | ||
2228 | VID_TYPE_CLIPPING| | 2232 | VID_TYPE_CLIPPING| |
2229 | VID_TYPE_SCALES; | 2233 | VID_TYPE_SCALES; |
2234 | if (no_overlay <= 0) | ||
2235 | cap->type |= VID_TYPE_OVERLAY; | ||
2236 | |||
2230 | cap->maxwidth = bttv_tvnorms[btv->tvnorm].swidth; | 2237 | cap->maxwidth = bttv_tvnorms[btv->tvnorm].swidth; |
2231 | cap->maxheight = bttv_tvnorms[btv->tvnorm].sheight; | 2238 | cap->maxheight = bttv_tvnorms[btv->tvnorm].sheight; |
2232 | cap->minwidth = 48; | 2239 | cap->minwidth = 48; |
@@ -2302,6 +2309,11 @@ static int bttv_do_ioctl(struct inode *inode, struct file *file, | |||
2302 | struct video_window *win = arg; | 2309 | struct video_window *win = arg; |
2303 | struct v4l2_window w2; | 2310 | struct v4l2_window w2; |
2304 | 2311 | ||
2312 | if (no_overlay > 0) { | ||
2313 | printk ("VIDIOCSWIN: no_overlay\n"); | ||
2314 | return -EINVAL; | ||
2315 | } | ||
2316 | |||
2305 | w2.field = V4L2_FIELD_ANY; | 2317 | w2.field = V4L2_FIELD_ANY; |
2306 | w2.w.left = win->x; | 2318 | w2.w.left = win->x; |
2307 | w2.w.top = win->y; | 2319 | w2.w.top = win->y; |
@@ -2577,10 +2589,12 @@ static int bttv_do_ioctl(struct inode *inode, struct file *file, | |||
2577 | cap->version = BTTV_VERSION_CODE; | 2589 | cap->version = BTTV_VERSION_CODE; |
2578 | cap->capabilities = | 2590 | cap->capabilities = |
2579 | V4L2_CAP_VIDEO_CAPTURE | | 2591 | V4L2_CAP_VIDEO_CAPTURE | |
2580 | V4L2_CAP_VIDEO_OVERLAY | | ||
2581 | V4L2_CAP_VBI_CAPTURE | | 2592 | V4L2_CAP_VBI_CAPTURE | |
2582 | V4L2_CAP_READWRITE | | 2593 | V4L2_CAP_READWRITE | |
2583 | V4L2_CAP_STREAMING; | 2594 | V4L2_CAP_STREAMING; |
2595 | if (no_overlay <= 0) | ||
2596 | cap->capabilities |= V4L2_CAP_VIDEO_OVERLAY; | ||
2597 | |||
2584 | if (bttv_tvcards[btv->c.type].tuner != UNSET && | 2598 | if (bttv_tvcards[btv->c.type].tuner != UNSET && |
2585 | bttv_tvcards[btv->c.type].tuner != TUNER_ABSENT) | 2599 | bttv_tvcards[btv->c.type].tuner != TUNER_ABSENT) |
2586 | cap->capabilities |= V4L2_CAP_TUNER; | 2600 | cap->capabilities |= V4L2_CAP_TUNER; |
@@ -3076,7 +3090,7 @@ static struct file_operations bttv_fops = | |||
3076 | static struct video_device bttv_video_template = | 3090 | static struct video_device bttv_video_template = |
3077 | { | 3091 | { |
3078 | .name = "UNSET", | 3092 | .name = "UNSET", |
3079 | .type = VID_TYPE_CAPTURE|VID_TYPE_TUNER|VID_TYPE_OVERLAY| | 3093 | .type = VID_TYPE_CAPTURE|VID_TYPE_TUNER| |
3080 | VID_TYPE_CLIPPING|VID_TYPE_SCALES, | 3094 | VID_TYPE_CLIPPING|VID_TYPE_SCALES, |
3081 | .hardware = VID_HARDWARE_BT848, | 3095 | .hardware = VID_HARDWARE_BT848, |
3082 | .fops = &bttv_fops, | 3096 | .fops = &bttv_fops, |
@@ -3756,6 +3770,12 @@ static void bttv_unregister_video(struct bttv *btv) | |||
3756 | /* register video4linux devices */ | 3770 | /* register video4linux devices */ |
3757 | static int __devinit bttv_register_video(struct bttv *btv) | 3771 | static int __devinit bttv_register_video(struct bttv *btv) |
3758 | { | 3772 | { |
3773 | if (no_overlay <= 0) { | ||
3774 | bttv_video_template.type |= VID_TYPE_OVERLAY; | ||
3775 | } else { | ||
3776 | printk("bttv: Overlay support disabled.\n"); | ||
3777 | } | ||
3778 | |||
3759 | /* video */ | 3779 | /* video */ |
3760 | btv->video_dev = vdev_init(btv, &bttv_video_template, "video"); | 3780 | btv->video_dev = vdev_init(btv, &bttv_video_template, "video"); |
3761 | if (NULL == btv->video_dev) | 3781 | if (NULL == btv->video_dev) |
@@ -3869,11 +3889,6 @@ static int __devinit bttv_probe(struct pci_dev *dev, | |||
3869 | pci_set_master(dev); | 3889 | pci_set_master(dev); |
3870 | pci_set_command(dev); | 3890 | pci_set_command(dev); |
3871 | pci_set_drvdata(dev,btv); | 3891 | pci_set_drvdata(dev,btv); |
3872 | if (!pci_dma_supported(dev,0xffffffff)) { | ||
3873 | printk("bttv%d: Oops: no 32bit PCI DMA ???\n", btv->c.nr); | ||
3874 | result = -EIO; | ||
3875 | goto fail1; | ||
3876 | } | ||
3877 | 3892 | ||
3878 | pci_read_config_byte(dev, PCI_CLASS_REVISION, &btv->revision); | 3893 | pci_read_config_byte(dev, PCI_CLASS_REVISION, &btv->revision); |
3879 | pci_read_config_byte(dev, PCI_LATENCY_TIMER, &lat); | 3894 | pci_read_config_byte(dev, PCI_LATENCY_TIMER, &lat); |
diff --git a/drivers/media/video/bttv.h b/drivers/media/video/bttv.h index 191eaf1714ba..f2af9e1454f0 100644 --- a/drivers/media/video/bttv.h +++ b/drivers/media/video/bttv.h | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * $Id: bttv.h,v 1.18 2005/05/24 23:41:42 nsh Exp $ | 2 | * $Id: bttv.h,v 1.22 2005/07/28 18:41:21 mchehab Exp $ |
3 | * | 3 | * |
4 | * bttv - Bt848 frame grabber driver | 4 | * bttv - Bt848 frame grabber driver |
5 | * | 5 | * |
@@ -135,7 +135,9 @@ | |||
135 | #define BTTV_DVICO_DVBT_LITE 0x80 | 135 | #define BTTV_DVICO_DVBT_LITE 0x80 |
136 | #define BTTV_TIBET_CS16 0x83 | 136 | #define BTTV_TIBET_CS16 0x83 |
137 | #define BTTV_KODICOM_4400R 0x84 | 137 | #define BTTV_KODICOM_4400R 0x84 |
138 | #define BTTV_ADLINK_RTV24 0x85 | 138 | #define BTTV_ADLINK_RTV24 0x86 |
139 | #define BTTV_DVICO_FUSIONHDTV_5_LITE 0x87 | ||
140 | #define BTTV_ACORP_Y878F 0x88 | ||
139 | 141 | ||
140 | /* i2c address list */ | 142 | /* i2c address list */ |
141 | #define I2C_TSA5522 0xc2 | 143 | #define I2C_TSA5522 0xc2 |
diff --git a/drivers/media/video/bttvp.h b/drivers/media/video/bttvp.h index f3293e4a15ad..aab094bc243d 100644 --- a/drivers/media/video/bttvp.h +++ b/drivers/media/video/bttvp.h | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | $Id: bttvp.h,v 1.19 2005/06/16 21:38:45 nsh Exp $ | 2 | $Id: bttvp.h,v 1.21 2005/07/15 21:44:14 mchehab Exp $ |
3 | 3 | ||
4 | bttv - Bt848 frame grabber driver | 4 | bttv - Bt848 frame grabber driver |
5 | 5 | ||
@@ -27,7 +27,7 @@ | |||
27 | #define _BTTVP_H_ | 27 | #define _BTTVP_H_ |
28 | 28 | ||
29 | #include <linux/version.h> | 29 | #include <linux/version.h> |
30 | #define BTTV_VERSION_CODE KERNEL_VERSION(0,9,15) | 30 | #define BTTV_VERSION_CODE KERNEL_VERSION(0,9,16) |
31 | 31 | ||
32 | #include <linux/types.h> | 32 | #include <linux/types.h> |
33 | #include <linux/wait.h> | 33 | #include <linux/wait.h> |
diff --git a/drivers/media/video/cx88/Makefile b/drivers/media/video/cx88/Makefile index 606d0348da2c..107e48645e3a 100644 --- a/drivers/media/video/cx88/Makefile +++ b/drivers/media/video/cx88/Makefile | |||
@@ -9,3 +9,15 @@ obj-$(CONFIG_VIDEO_CX88_DVB) += cx88-dvb.o | |||
9 | EXTRA_CFLAGS += -I$(src)/.. | 9 | EXTRA_CFLAGS += -I$(src)/.. |
10 | EXTRA_CFLAGS += -I$(srctree)/drivers/media/dvb/dvb-core | 10 | EXTRA_CFLAGS += -I$(srctree)/drivers/media/dvb/dvb-core |
11 | EXTRA_CFLAGS += -I$(srctree)/drivers/media/dvb/frontends | 11 | EXTRA_CFLAGS += -I$(srctree)/drivers/media/dvb/frontends |
12 | ifneq ($(CONFIG_DVB_CX22702),n) | ||
13 | EXTRA_CFLAGS += -DHAVE_CX22702=1 | ||
14 | endif | ||
15 | ifneq ($(CONFIG_DVB_OR51132),n) | ||
16 | EXTRA_CFLAGS += -DHAVE_OR51132=1 | ||
17 | endif | ||
18 | ifneq ($(CONFIG_DVB_LGDT330X),n) | ||
19 | EXTRA_CFLAGS += -DHAVE_LGDT330X=1 | ||
20 | endif | ||
21 | ifneq ($(CONFIG_DVB_MT352),n) | ||
22 | EXTRA_CFLAGS += -DHAVE_MT352=1 | ||
23 | endif | ||
diff --git a/drivers/media/video/cx88/cx88-cards.c b/drivers/media/video/cx88/cx88-cards.c index 3d0c784b376f..ebf02a7f81e8 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.86 2005/07/14 03:06:43 mchehab Exp $ | 2 | * $Id: cx88-cards.c,v 1.90 2005/07/28 02:47:42 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. |
@@ -90,6 +90,9 @@ struct cx88_board cx88_boards[] = { | |||
90 | .input = {{ | 90 | .input = {{ |
91 | .type = CX88_VMUX_TELEVISION, | 91 | .type = CX88_VMUX_TELEVISION, |
92 | .vmux = 0, | 92 | .vmux = 0, |
93 | },{ | ||
94 | .type = CX88_VMUX_SVIDEO, | ||
95 | .vmux = 2, | ||
93 | }}, | 96 | }}, |
94 | }, | 97 | }, |
95 | [CX88_BOARD_PIXELVIEW] = { | 98 | [CX88_BOARD_PIXELVIEW] = { |
@@ -496,6 +499,9 @@ struct cx88_board cx88_boards[] = { | |||
496 | .input = {{ | 499 | .input = {{ |
497 | .type = CX88_VMUX_DVB, | 500 | .type = CX88_VMUX_DVB, |
498 | .vmux = 0, | 501 | .vmux = 0, |
502 | },{ | ||
503 | .type = CX88_VMUX_SVIDEO, | ||
504 | .vmux = 2, | ||
499 | }}, | 505 | }}, |
500 | .dvb = 1, | 506 | .dvb = 1, |
501 | }, | 507 | }, |
@@ -753,6 +759,27 @@ struct cx88_board cx88_boards[] = { | |||
753 | }}, | 759 | }}, |
754 | .dvb = 1, | 760 | .dvb = 1, |
755 | }, | 761 | }, |
762 | [CX88_BOARD_DVICO_FUSIONHDTV_5_GOLD] = { | ||
763 | .name = "DViCO FusionHDTV 5 Gold", | ||
764 | .tuner_type = TUNER_LG_TDVS_H062F, | ||
765 | .radio_type = UNSET, | ||
766 | .tuner_addr = ADDR_UNSET, | ||
767 | .radio_addr = ADDR_UNSET, | ||
768 | /* See DViCO FusionHDTV 3 Gold-Q for GPIO documentation. */ | ||
769 | .input = {{ | ||
770 | .type = CX88_VMUX_TELEVISION, | ||
771 | .vmux = 0, | ||
772 | .gpio0 = 0x0f0d, | ||
773 | },{ | ||
774 | .type = CX88_VMUX_COMPOSITE1, | ||
775 | .vmux = 1, | ||
776 | .gpio0 = 0x0f00, | ||
777 | },{ | ||
778 | .type = CX88_VMUX_SVIDEO, | ||
779 | .vmux = 2, | ||
780 | .gpio0 = 0x0f00, | ||
781 | }}, | ||
782 | }, | ||
756 | }; | 783 | }; |
757 | const unsigned int cx88_bcount = ARRAY_SIZE(cx88_boards); | 784 | const unsigned int cx88_bcount = ARRAY_SIZE(cx88_boards); |
758 | 785 | ||
@@ -880,6 +907,10 @@ struct cx88_subid cx88_subids[] = { | |||
880 | .subvendor = 0x153b, | 907 | .subvendor = 0x153b, |
881 | .subdevice = 0x1166, | 908 | .subdevice = 0x1166, |
882 | .card = CX88_BOARD_TERRATEC_CINERGY_1400_DVB_T1, | 909 | .card = CX88_BOARD_TERRATEC_CINERGY_1400_DVB_T1, |
910 | },{ | ||
911 | .subvendor = 0x18ac, | ||
912 | .subdevice = 0xd500, | ||
913 | .card = CX88_BOARD_DVICO_FUSIONHDTV_5_GOLD, | ||
883 | }, | 914 | }, |
884 | }; | 915 | }; |
885 | const unsigned int cx88_idcount = ARRAY_SIZE(cx88_subids); | 916 | const unsigned int cx88_idcount = ARRAY_SIZE(cx88_subids); |
diff --git a/drivers/media/video/cx88/cx88-dvb.c b/drivers/media/video/cx88/cx88-dvb.c index 6ad1458ab652..78d223257a68 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.42 2005/07/12 15:44:55 mkrufky Exp $ | 2 | * $Id: cx88-dvb.c,v 1.58 2005/08/07 09:24:08 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 |
@@ -29,27 +29,23 @@ | |||
29 | #include <linux/kthread.h> | 29 | #include <linux/kthread.h> |
30 | #include <linux/file.h> | 30 | #include <linux/file.h> |
31 | #include <linux/suspend.h> | 31 | #include <linux/suspend.h> |
32 | 32 | #include <linux/config.h> | |
33 | #define CONFIG_DVB_MT352 1 | ||
34 | #define CONFIG_DVB_CX22702 1 | ||
35 | #define CONFIG_DVB_OR51132 1 | ||
36 | #define CONFIG_DVB_LGDT3302 1 | ||
37 | 33 | ||
38 | #include "cx88.h" | 34 | #include "cx88.h" |
39 | #include "dvb-pll.h" | 35 | #include "dvb-pll.h" |
40 | 36 | ||
41 | #if CONFIG_DVB_MT352 | 37 | #ifdef HAVE_MT352 |
42 | # include "mt352.h" | 38 | # include "mt352.h" |
43 | # include "mt352_priv.h" | 39 | # include "mt352_priv.h" |
44 | #endif | 40 | #endif |
45 | #if CONFIG_DVB_CX22702 | 41 | #ifdef HAVE_CX22702 |
46 | # include "cx22702.h" | 42 | # include "cx22702.h" |
47 | #endif | 43 | #endif |
48 | #if CONFIG_DVB_OR51132 | 44 | #ifdef HAVE_OR51132 |
49 | # include "or51132.h" | 45 | # include "or51132.h" |
50 | #endif | 46 | #endif |
51 | #if CONFIG_DVB_LGDT3302 | 47 | #ifdef HAVE_LGDT330X |
52 | # include "lgdt3302.h" | 48 | # include "lgdt330x.h" |
53 | #endif | 49 | #endif |
54 | 50 | ||
55 | MODULE_DESCRIPTION("driver for cx2388x based DVB cards"); | 51 | MODULE_DESCRIPTION("driver for cx2388x based DVB cards"); |
@@ -107,7 +103,7 @@ static struct videobuf_queue_ops dvb_qops = { | |||
107 | 103 | ||
108 | /* ------------------------------------------------------------------ */ | 104 | /* ------------------------------------------------------------------ */ |
109 | 105 | ||
110 | #if CONFIG_DVB_MT352 | 106 | #ifdef HAVE_MT352 |
111 | static int dvico_fusionhdtv_demod_init(struct dvb_frontend* fe) | 107 | static int dvico_fusionhdtv_demod_init(struct dvb_frontend* fe) |
112 | { | 108 | { |
113 | static u8 clock_config [] = { CLOCK_CTL, 0x38, 0x39 }; | 109 | static u8 clock_config [] = { CLOCK_CTL, 0x38, 0x39 }; |
@@ -177,7 +173,7 @@ static struct mt352_config dntv_live_dvbt_config = { | |||
177 | }; | 173 | }; |
178 | #endif | 174 | #endif |
179 | 175 | ||
180 | #if CONFIG_DVB_CX22702 | 176 | #ifdef HAVE_CX22702 |
181 | static struct cx22702_config connexant_refboard_config = { | 177 | static struct cx22702_config connexant_refboard_config = { |
182 | .demod_address = 0x43, | 178 | .demod_address = 0x43, |
183 | .output_mode = CX22702_SERIAL_OUTPUT, | 179 | .output_mode = CX22702_SERIAL_OUTPUT, |
@@ -193,7 +189,7 @@ static struct cx22702_config hauppauge_novat_config = { | |||
193 | }; | 189 | }; |
194 | #endif | 190 | #endif |
195 | 191 | ||
196 | #if CONFIG_DVB_OR51132 | 192 | #ifdef HAVE_OR51132 |
197 | static int or51132_set_ts_param(struct dvb_frontend* fe, | 193 | static int or51132_set_ts_param(struct dvb_frontend* fe, |
198 | int is_punctured) | 194 | int is_punctured) |
199 | { | 195 | { |
@@ -210,8 +206,45 @@ static struct or51132_config pchdtv_hd3000 = { | |||
210 | }; | 206 | }; |
211 | #endif | 207 | #endif |
212 | 208 | ||
213 | #if CONFIG_DVB_LGDT3302 | 209 | #ifdef HAVE_LGDT330X |
214 | static int lgdt3302_set_ts_param(struct dvb_frontend* fe, int is_punctured) | 210 | static int lgdt330x_pll_set(struct dvb_frontend* fe, |
211 | struct dvb_frontend_parameters* params) | ||
212 | { | ||
213 | struct cx8802_dev *dev= fe->dvb->priv; | ||
214 | u8 buf[4]; | ||
215 | struct i2c_msg msg = | ||
216 | { .addr = dev->core->pll_addr, .flags = 0, .buf = buf, .len = 4 }; | ||
217 | int err; | ||
218 | |||
219 | dvb_pll_configure(dev->core->pll_desc, buf, params->frequency, 0); | ||
220 | dprintk(1, "%s: tuner at 0x%02x bytes: 0x%02x 0x%02x 0x%02x 0x%02x\n", | ||
221 | __FUNCTION__, msg.addr, buf[0],buf[1],buf[2],buf[3]); | ||
222 | if ((err = i2c_transfer(&dev->core->i2c_adap, &msg, 1)) != 1) { | ||
223 | printk(KERN_WARNING "cx88-dvb: %s error " | ||
224 | "(addr %02x <- %02x, err = %i)\n", | ||
225 | __FUNCTION__, buf[0], buf[1], err); | ||
226 | if (err < 0) | ||
227 | return err; | ||
228 | else | ||
229 | return -EREMOTEIO; | ||
230 | } | ||
231 | return 0; | ||
232 | } | ||
233 | |||
234 | static int lgdt330x_pll_rf_set(struct dvb_frontend* fe, int index) | ||
235 | { | ||
236 | struct cx8802_dev *dev= fe->dvb->priv; | ||
237 | struct cx88_core *core = dev->core; | ||
238 | |||
239 | dprintk(1, "%s: index = %d\n", __FUNCTION__, index); | ||
240 | if (index == 0) | ||
241 | cx_clear(MO_GP0_IO, 8); | ||
242 | else | ||
243 | cx_set(MO_GP0_IO, 8); | ||
244 | return 0; | ||
245 | } | ||
246 | |||
247 | static int lgdt330x_set_ts_param(struct dvb_frontend* fe, int is_punctured) | ||
215 | { | 248 | { |
216 | struct cx8802_dev *dev= fe->dvb->priv; | 249 | struct cx8802_dev *dev= fe->dvb->priv; |
217 | if (is_punctured) | 250 | if (is_punctured) |
@@ -221,18 +254,12 @@ static int lgdt3302_set_ts_param(struct dvb_frontend* fe, int is_punctured) | |||
221 | return 0; | 254 | return 0; |
222 | } | 255 | } |
223 | 256 | ||
224 | static struct lgdt3302_config fusionhdtv_3_gold_q = { | 257 | static struct lgdt330x_config fusionhdtv_3_gold = { |
225 | .demod_address = 0x0e, | ||
226 | .pll_address = 0x61, | ||
227 | .pll_desc = &dvb_pll_microtune_4042, | ||
228 | .set_ts_params = lgdt3302_set_ts_param, | ||
229 | }; | ||
230 | |||
231 | static struct lgdt3302_config fusionhdtv_3_gold_t = { | ||
232 | .demod_address = 0x0e, | 258 | .demod_address = 0x0e, |
233 | .pll_address = 0x61, | 259 | .demod_chip = LGDT3302, |
234 | .pll_desc = &dvb_pll_thomson_dtt7611, | 260 | .serial_mpeg = 0x04, /* TPSERIAL for 3302 in TOP_CONTROL */ |
235 | .set_ts_params = lgdt3302_set_ts_param, | 261 | .pll_set = lgdt330x_pll_set, |
262 | .set_ts_params = lgdt330x_set_ts_param, | ||
236 | }; | 263 | }; |
237 | #endif | 264 | #endif |
238 | 265 | ||
@@ -244,7 +271,7 @@ static int dvb_register(struct cx8802_dev *dev) | |||
244 | 271 | ||
245 | /* init frontend */ | 272 | /* init frontend */ |
246 | switch (dev->core->board) { | 273 | switch (dev->core->board) { |
247 | #if CONFIG_DVB_CX22702 | 274 | #ifdef HAVE_CX22702 |
248 | case CX88_BOARD_HAUPPAUGE_DVB_T1: | 275 | case CX88_BOARD_HAUPPAUGE_DVB_T1: |
249 | dev->dvb.frontend = cx22702_attach(&hauppauge_novat_config, | 276 | dev->dvb.frontend = cx22702_attach(&hauppauge_novat_config, |
250 | &dev->core->i2c_adap); | 277 | &dev->core->i2c_adap); |
@@ -255,7 +282,7 @@ static int dvb_register(struct cx8802_dev *dev) | |||
255 | &dev->core->i2c_adap); | 282 | &dev->core->i2c_adap); |
256 | break; | 283 | break; |
257 | #endif | 284 | #endif |
258 | #if CONFIG_DVB_MT352 | 285 | #ifdef HAVE_MT352 |
259 | case CX88_BOARD_DVICO_FUSIONHDTV_DVB_T1: | 286 | case CX88_BOARD_DVICO_FUSIONHDTV_DVB_T1: |
260 | dev->core->pll_addr = 0x61; | 287 | dev->core->pll_addr = 0x61; |
261 | dev->core->pll_desc = &dvb_pll_lg_z201; | 288 | dev->core->pll_desc = &dvb_pll_lg_z201; |
@@ -277,13 +304,13 @@ static int dvb_register(struct cx8802_dev *dev) | |||
277 | &dev->core->i2c_adap); | 304 | &dev->core->i2c_adap); |
278 | break; | 305 | break; |
279 | #endif | 306 | #endif |
280 | #if CONFIG_DVB_OR51132 | 307 | #ifdef HAVE_OR51132 |
281 | case CX88_BOARD_PCHDTV_HD3000: | 308 | case CX88_BOARD_PCHDTV_HD3000: |
282 | dev->dvb.frontend = or51132_attach(&pchdtv_hd3000, | 309 | dev->dvb.frontend = or51132_attach(&pchdtv_hd3000, |
283 | &dev->core->i2c_adap); | 310 | &dev->core->i2c_adap); |
284 | break; | 311 | break; |
285 | #endif | 312 | #endif |
286 | #if CONFIG_DVB_LGDT3302 | 313 | #ifdef HAVE_LGDT330X |
287 | case CX88_BOARD_DVICO_FUSIONHDTV_3_GOLD_Q: | 314 | case CX88_BOARD_DVICO_FUSIONHDTV_3_GOLD_Q: |
288 | dev->ts_gen_cntrl = 0x08; | 315 | dev->ts_gen_cntrl = 0x08; |
289 | { | 316 | { |
@@ -292,9 +319,14 @@ static int dvb_register(struct cx8802_dev *dev) | |||
292 | 319 | ||
293 | cx_clear(MO_GP0_IO, 1); | 320 | cx_clear(MO_GP0_IO, 1); |
294 | mdelay(100); | 321 | mdelay(100); |
295 | cx_set(MO_GP0_IO, 9); // ANT connector too FIXME | 322 | cx_set(MO_GP0_IO, 1); |
296 | mdelay(200); | 323 | mdelay(200); |
297 | dev->dvb.frontend = lgdt3302_attach(&fusionhdtv_3_gold_q, | 324 | |
325 | /* Select RF connector callback */ | ||
326 | fusionhdtv_3_gold.pll_rf_set = lgdt330x_pll_rf_set; | ||
327 | dev->core->pll_addr = 0x61; | ||
328 | dev->core->pll_desc = &dvb_pll_microtune_4042; | ||
329 | dev->dvb.frontend = lgdt330x_attach(&fusionhdtv_3_gold, | ||
298 | &dev->core->i2c_adap); | 330 | &dev->core->i2c_adap); |
299 | } | 331 | } |
300 | break; | 332 | break; |
@@ -306,9 +338,11 @@ static int dvb_register(struct cx8802_dev *dev) | |||
306 | 338 | ||
307 | cx_clear(MO_GP0_IO, 1); | 339 | cx_clear(MO_GP0_IO, 1); |
308 | mdelay(100); | 340 | mdelay(100); |
309 | cx_set(MO_GP0_IO, 9); /* ANT connector too FIXME */ | 341 | cx_set(MO_GP0_IO, 9); |
310 | mdelay(200); | 342 | mdelay(200); |
311 | dev->dvb.frontend = lgdt3302_attach(&fusionhdtv_3_gold_t, | 343 | dev->core->pll_addr = 0x61; |
344 | dev->core->pll_desc = &dvb_pll_thomson_dtt7611; | ||
345 | dev->dvb.frontend = lgdt330x_attach(&fusionhdtv_3_gold, | ||
312 | &dev->core->i2c_adap); | 346 | &dev->core->i2c_adap); |
313 | } | 347 | } |
314 | break; | 348 | break; |
diff --git a/drivers/media/video/cx88/cx88-i2c.c b/drivers/media/video/cx88/cx88-i2c.c index 8403c4e95050..a628a55299c6 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.28 2005/07/05 17:37:35 nsh Exp $ | 2 | $Id: cx88-i2c.c,v 1.30 2005/07/25 05:10:13 mkrufky 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 | ||
@@ -164,7 +164,7 @@ static struct i2c_client cx8800_i2c_client_template = { | |||
164 | }; | 164 | }; |
165 | 165 | ||
166 | static char *i2c_devs[128] = { | 166 | static char *i2c_devs[128] = { |
167 | [ 0x1c >> 1 ] = "lgdt3302", | 167 | [ 0x1c >> 1 ] = "lgdt330x", |
168 | [ 0x86 >> 1 ] = "tda9887/cx22702", | 168 | [ 0x86 >> 1 ] = "tda9887/cx22702", |
169 | [ 0xa0 >> 1 ] = "eeprom", | 169 | [ 0xa0 >> 1 ] = "eeprom", |
170 | [ 0xc0 >> 1 ] = "tuner (analog)", | 170 | [ 0xc0 >> 1 ] = "tuner (analog)", |
diff --git a/drivers/media/video/cx88/cx88-video.c b/drivers/media/video/cx88/cx88-video.c index 5588a3aeecb4..5f58c103198a 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.80 2005/07/13 08:49:08 mchehab Exp $ | 2 | * $Id: cx88-video.c,v 1.82 2005/07/22 05:13:34 mkrufky 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 |
@@ -758,10 +758,10 @@ static int video_open(struct inode *inode, struct file *file) | |||
758 | struct cx88_core *core = dev->core; | 758 | struct cx88_core *core = dev->core; |
759 | int board = core->board; | 759 | int board = core->board; |
760 | dprintk(1,"video_open: setting radio device\n"); | 760 | dprintk(1,"video_open: setting radio device\n"); |
761 | cx_write(MO_GP3_IO, cx88_boards[board].radio.gpio3); | ||
761 | cx_write(MO_GP0_IO, cx88_boards[board].radio.gpio0); | 762 | cx_write(MO_GP0_IO, cx88_boards[board].radio.gpio0); |
762 | cx_write(MO_GP1_IO, cx88_boards[board].radio.gpio1); | 763 | cx_write(MO_GP1_IO, cx88_boards[board].radio.gpio1); |
763 | cx_write(MO_GP2_IO, cx88_boards[board].radio.gpio2); | 764 | cx_write(MO_GP2_IO, cx88_boards[board].radio.gpio2); |
764 | cx_write(MO_GP3_IO, cx88_boards[board].radio.gpio3); | ||
765 | dev->core->tvaudio = WW_FM; | 765 | dev->core->tvaudio = WW_FM; |
766 | cx88_set_tvaudio(core); | 766 | cx88_set_tvaudio(core); |
767 | cx88_set_stereo(core,V4L2_TUNER_MODE_STEREO,1); | 767 | cx88_set_stereo(core,V4L2_TUNER_MODE_STEREO,1); |
diff --git a/drivers/media/video/cx88/cx88.h b/drivers/media/video/cx88/cx88.h index b008f7db6dfd..da65dc92787c 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.69 2005/07/13 17:25:25 mchehab Exp $ | 2 | * $Id: cx88.h,v 1.70 2005/07/24 17:44:09 mkrufky Exp $ |
3 | * | 3 | * |
4 | * v4l2 device driver for cx2388x based TV cards | 4 | * v4l2 device driver for cx2388x based TV cards |
5 | * | 5 | * |
@@ -171,6 +171,7 @@ extern struct sram_channel cx88_sram_channels[]; | |||
171 | #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 | 172 | #define CX88_BOARD_ADSTECH_DVB_T_PCI 29 |
173 | #define CX88_BOARD_TERRATEC_CINERGY_1400_DVB_T1 30 | 173 | #define CX88_BOARD_TERRATEC_CINERGY_1400_DVB_T1 30 |
174 | #define CX88_BOARD_DVICO_FUSIONHDTV_5_GOLD 31 | ||
174 | 175 | ||
175 | enum cx88_itype { | 176 | enum cx88_itype { |
176 | CX88_VMUX_COMPOSITE1 = 1, | 177 | CX88_VMUX_COMPOSITE1 = 1, |
diff --git a/drivers/media/video/msp3400.c b/drivers/media/video/msp3400.c index 6239254db27e..62f1b8ddb98b 100644 --- a/drivers/media/video/msp3400.c +++ b/drivers/media/video/msp3400.c | |||
@@ -741,11 +741,9 @@ static int msp34xx_sleep(struct msp3400c *msp, int timeout) | |||
741 | schedule_timeout(msecs_to_jiffies(timeout)); | 741 | schedule_timeout(msecs_to_jiffies(timeout)); |
742 | } | 742 | } |
743 | } | 743 | } |
744 | if (current->flags & PF_FREEZE) { | ||
745 | refrigerator (); | ||
746 | } | ||
747 | 744 | ||
748 | remove_wait_queue(&msp->wq, &wait); | 745 | remove_wait_queue(&msp->wq, &wait); |
746 | try_to_freeze(); | ||
749 | return msp->restart; | 747 | return msp->restart; |
750 | } | 748 | } |
751 | 749 | ||
diff --git a/drivers/media/video/mxb.c b/drivers/media/video/mxb.c index 486234d41b56..d04793fb80fc 100644 --- a/drivers/media/video/mxb.c +++ b/drivers/media/video/mxb.c | |||
@@ -142,8 +142,8 @@ struct mxb | |||
142 | 142 | ||
143 | int cur_mode; /* current audio mode (mono, stereo, ...) */ | 143 | int cur_mode; /* current audio mode (mono, stereo, ...) */ |
144 | int cur_input; /* current input */ | 144 | int cur_input; /* current input */ |
145 | int cur_freq; /* current frequency the tuner is tuned to */ | ||
146 | int cur_mute; /* current mute status */ | 145 | int cur_mute; /* current mute status */ |
146 | struct v4l2_frequency cur_freq; /* current frequency the tuner is tuned to */ | ||
147 | }; | 147 | }; |
148 | 148 | ||
149 | static struct saa7146_extension extension; | 149 | static struct saa7146_extension extension; |
@@ -352,9 +352,15 @@ static int mxb_init_done(struct saa7146_dev* dev) | |||
352 | /* select a tuner type */ | 352 | /* select a tuner type */ |
353 | tun_setup.mode_mask = T_ANALOG_TV; | 353 | tun_setup.mode_mask = T_ANALOG_TV; |
354 | tun_setup.addr = ADDR_UNSET; | 354 | tun_setup.addr = ADDR_UNSET; |
355 | tun_setup.type = 5; | 355 | tun_setup.type = TUNER_PHILIPS_PAL; |
356 | mxb->tuner->driver->command(mxb->tuner,TUNER_SET_TYPE_ADDR, &tun_setup); | 356 | mxb->tuner->driver->command(mxb->tuner,TUNER_SET_TYPE_ADDR, &tun_setup); |
357 | 357 | /* tune in some frequency on tuner */ | |
358 | mxb->cur_freq.tuner = 0; | ||
359 | mxb->cur_freq.type = V4L2_TUNER_ANALOG_TV; | ||
360 | mxb->cur_freq.frequency = freq; | ||
361 | mxb->tuner->driver->command(mxb->tuner, VIDIOC_S_FREQUENCY, | ||
362 | &mxb->cur_freq); | ||
363 | |||
358 | /* mute audio on tea6420s */ | 364 | /* mute audio on tea6420s */ |
359 | mxb->tea6420_1->driver->command(mxb->tea6420_1,TEA6420_SWITCH, &TEA6420_line[6][0]); | 365 | mxb->tea6420_1->driver->command(mxb->tea6420_1,TEA6420_SWITCH, &TEA6420_line[6][0]); |
360 | mxb->tea6420_2->driver->command(mxb->tea6420_2,TEA6420_SWITCH, &TEA6420_line[6][1]); | 366 | mxb->tea6420_2->driver->command(mxb->tea6420_2,TEA6420_SWITCH, &TEA6420_line[6][1]); |
@@ -371,12 +377,8 @@ static int mxb_init_done(struct saa7146_dev* dev) | |||
371 | vm.out = 13; | 377 | vm.out = 13; |
372 | mxb->tea6415c->driver->command(mxb->tea6415c,TEA6415C_SWITCH, &vm); | 378 | mxb->tea6415c->driver->command(mxb->tea6415c,TEA6415C_SWITCH, &vm); |
373 | 379 | ||
374 | /* tune in some frequency on tuner */ | ||
375 | mxb->tuner->driver->command(mxb->tuner, VIDIOCSFREQ, &freq); | ||
376 | |||
377 | /* the rest for mxb */ | 380 | /* the rest for mxb */ |
378 | mxb->cur_input = 0; | 381 | mxb->cur_input = 0; |
379 | mxb->cur_freq = freq; | ||
380 | mxb->cur_mute = 1; | 382 | mxb->cur_mute = 1; |
381 | 383 | ||
382 | mxb->cur_mode = V4L2_TUNER_MODE_STEREO; | 384 | mxb->cur_mode = V4L2_TUNER_MODE_STEREO; |
@@ -819,18 +821,14 @@ static int mxb_ioctl(struct saa7146_fh *fh, unsigned int cmd, void *arg) | |||
819 | return -EINVAL; | 821 | return -EINVAL; |
820 | } | 822 | } |
821 | 823 | ||
822 | memset(f,0,sizeof(*f)); | 824 | *f = mxb->cur_freq; |
823 | f->type = V4L2_TUNER_ANALOG_TV; | ||
824 | f->frequency = mxb->cur_freq; | ||
825 | 825 | ||
826 | DEB_EE(("VIDIOC_G_FREQ: freq:0x%08x.\n", mxb->cur_freq)); | 826 | DEB_EE(("VIDIOC_G_FREQ: freq:0x%08x.\n", mxb->cur_freq.frequency)); |
827 | return 0; | 827 | return 0; |
828 | } | 828 | } |
829 | case VIDIOC_S_FREQUENCY: | 829 | case VIDIOC_S_FREQUENCY: |
830 | { | 830 | { |
831 | struct v4l2_frequency *f = arg; | 831 | struct v4l2_frequency *f = arg; |
832 | int t_locked = 0; | ||
833 | int v_byte = 0; | ||
834 | 832 | ||
835 | if (0 != f->tuner) | 833 | if (0 != f->tuner) |
836 | return -EINVAL; | 834 | return -EINVAL; |
@@ -843,20 +841,11 @@ static int mxb_ioctl(struct saa7146_fh *fh, unsigned int cmd, void *arg) | |||
843 | return -EINVAL; | 841 | return -EINVAL; |
844 | } | 842 | } |
845 | 843 | ||
846 | DEB_EE(("VIDIOC_S_FREQUENCY: freq:0x%08x.\n",f->frequency)); | 844 | mxb->cur_freq = *f; |
847 | 845 | DEB_EE(("VIDIOC_S_FREQUENCY: freq:0x%08x.\n", mxb->cur_freq.frequency)); | |
848 | mxb->cur_freq = f->frequency; | ||
849 | 846 | ||
850 | /* tune in desired frequency */ | 847 | /* tune in desired frequency */ |
851 | mxb->tuner->driver->command(mxb->tuner, VIDIOCSFREQ, &mxb->cur_freq); | 848 | mxb->tuner->driver->command(mxb->tuner, VIDIOC_S_FREQUENCY, &mxb->cur_freq); |
852 | |||
853 | /* check if pll of tuner & saa7111a is locked */ | ||
854 | // mxb->tuner->driver->command(mxb->tuner,TUNER_IS_LOCKED, &t_locked); | ||
855 | mxb->saa7111a->driver->command(mxb->saa7111a,DECODER_GET_STATUS, &v_byte); | ||
856 | |||
857 | /* not locked -- anything to do here ? */ | ||
858 | if( 0 == t_locked || 0 == (v_byte & DECODER_STATUS_GOOD)) { | ||
859 | } | ||
860 | 849 | ||
861 | /* hack: changing the frequency should invalidate the vbi-counter (=> alevt) */ | 850 | /* hack: changing the frequency should invalidate the vbi-counter (=> alevt) */ |
862 | spin_lock(&dev->slock); | 851 | spin_lock(&dev->slock); |
diff --git a/drivers/media/video/saa7134/Makefile b/drivers/media/video/saa7134/Makefile index e577a06b136b..b778ffd94e65 100644 --- a/drivers/media/video/saa7134/Makefile +++ b/drivers/media/video/saa7134/Makefile | |||
@@ -9,3 +9,9 @@ obj-$(CONFIG_VIDEO_SAA7134_DVB) += saa7134-dvb.o | |||
9 | EXTRA_CFLAGS += -I$(src)/.. | 9 | EXTRA_CFLAGS += -I$(src)/.. |
10 | EXTRA_CFLAGS += -I$(srctree)/drivers/media/dvb/dvb-core | 10 | EXTRA_CFLAGS += -I$(srctree)/drivers/media/dvb/dvb-core |
11 | EXTRA_CFLAGS += -I$(srctree)/drivers/media/dvb/frontends | 11 | EXTRA_CFLAGS += -I$(srctree)/drivers/media/dvb/frontends |
12 | ifneq ($(CONFIG_DVB_MT352),n) | ||
13 | EXTRA_CFLAGS += -DHAVE_MT352=1 | ||
14 | endif | ||
15 | ifneq ($(CONFIG_DVB_TDA1004X),n) | ||
16 | EXTRA_CFLAGS += -DHAVE_TDA1004X=1 | ||
17 | endif | ||
diff --git a/drivers/media/video/saa7134/saa7134-dvb.c b/drivers/media/video/saa7134/saa7134-dvb.c index 334bc1850092..8be6a90358c8 100644 --- a/drivers/media/video/saa7134/saa7134-dvb.c +++ b/drivers/media/video/saa7134/saa7134-dvb.c | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * $Id: saa7134-dvb.c,v 1.18 2005/07/04 16:05:50 mkrufky Exp $ | 2 | * $Id: saa7134-dvb.c,v 1.23 2005/07/24 22:12:47 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 | * |
@@ -29,18 +29,17 @@ | |||
29 | #include <linux/delay.h> | 29 | #include <linux/delay.h> |
30 | #include <linux/kthread.h> | 30 | #include <linux/kthread.h> |
31 | #include <linux/suspend.h> | 31 | #include <linux/suspend.h> |
32 | #include <linux/config.h> | ||
32 | 33 | ||
33 | #define CONFIG_DVB_MT352 1 | ||
34 | #define CONFIG_DVB_TDA1004X 1 | ||
35 | 34 | ||
36 | #include "saa7134-reg.h" | 35 | #include "saa7134-reg.h" |
37 | #include "saa7134.h" | 36 | #include "saa7134.h" |
38 | 37 | ||
39 | #if CONFIG_DVB_MT352 | 38 | #ifdef HAVE_MT352 |
40 | # include "mt352.h" | 39 | # include "mt352.h" |
41 | # include "mt352_priv.h" /* FIXME */ | 40 | # include "mt352_priv.h" /* FIXME */ |
42 | #endif | 41 | #endif |
43 | #if CONFIG_DVB_TDA1004X | 42 | #ifdef HAVE_TDA1004X |
44 | # include "tda1004x.h" | 43 | # include "tda1004x.h" |
45 | #endif | 44 | #endif |
46 | 45 | ||
@@ -54,7 +53,7 @@ MODULE_PARM_DESC(antenna_pwr,"enable antenna power (Pinnacle 300i)"); | |||
54 | 53 | ||
55 | /* ------------------------------------------------------------------ */ | 54 | /* ------------------------------------------------------------------ */ |
56 | 55 | ||
57 | #if CONFIG_DVB_MT352 | 56 | #ifdef HAVE_MT352 |
58 | static int pinnacle_antenna_pwr(struct saa7134_dev *dev, int on) | 57 | static int pinnacle_antenna_pwr(struct saa7134_dev *dev, int on) |
59 | { | 58 | { |
60 | u32 ok; | 59 | u32 ok; |
@@ -153,7 +152,7 @@ static struct mt352_config pinnacle_300i = { | |||
153 | 152 | ||
154 | /* ------------------------------------------------------------------ */ | 153 | /* ------------------------------------------------------------------ */ |
155 | 154 | ||
156 | #if CONFIG_DVB_TDA1004X | 155 | #ifdef HAVE_TDA1004X |
157 | static int philips_tu1216_pll_init(struct dvb_frontend *fe) | 156 | static int philips_tu1216_pll_init(struct dvb_frontend *fe) |
158 | { | 157 | { |
159 | struct saa7134_dev *dev = fe->dvb->priv; | 158 | struct saa7134_dev *dev = fe->dvb->priv; |
@@ -385,7 +384,7 @@ static int philips_fmd1216_pll_set(struct dvb_frontend *fe, struct dvb_frontend_ | |||
385 | return 0; | 384 | return 0; |
386 | } | 385 | } |
387 | 386 | ||
388 | 387 | #ifdef HAVE_TDA1004X | |
389 | static struct tda1004x_config medion_cardbus = { | 388 | static struct tda1004x_config medion_cardbus = { |
390 | .demod_address = 0x08, | 389 | .demod_address = 0x08, |
391 | .invert = 1, | 390 | .invert = 1, |
@@ -398,6 +397,7 @@ static struct tda1004x_config medion_cardbus = { | |||
398 | .pll_sleep = philips_fmd1216_analog, | 397 | .pll_sleep = philips_fmd1216_analog, |
399 | .request_firmware = NULL, | 398 | .request_firmware = NULL, |
400 | }; | 399 | }; |
400 | #endif | ||
401 | 401 | ||
402 | /* ------------------------------------------------------------------ */ | 402 | /* ------------------------------------------------------------------ */ |
403 | 403 | ||
@@ -547,14 +547,14 @@ static int dvb_init(struct saa7134_dev *dev) | |||
547 | dev); | 547 | dev); |
548 | 548 | ||
549 | switch (dev->board) { | 549 | switch (dev->board) { |
550 | #if CONFIG_DVB_MT352 | 550 | #ifdef HAVE_MT352 |
551 | case SAA7134_BOARD_PINNACLE_300I_DVBT_PAL: | 551 | case SAA7134_BOARD_PINNACLE_300I_DVBT_PAL: |
552 | printk("%s: pinnacle 300i dvb setup\n",dev->name); | 552 | printk("%s: pinnacle 300i dvb setup\n",dev->name); |
553 | dev->dvb.frontend = mt352_attach(&pinnacle_300i, | 553 | dev->dvb.frontend = mt352_attach(&pinnacle_300i, |
554 | &dev->i2c_adap); | 554 | &dev->i2c_adap); |
555 | break; | 555 | break; |
556 | #endif | 556 | #endif |
557 | #if CONFIG_DVB_TDA1004X | 557 | #ifdef HAVE_TDA1004X |
558 | case SAA7134_BOARD_MD7134: | 558 | case SAA7134_BOARD_MD7134: |
559 | dev->dvb.frontend = tda10046_attach(&medion_cardbus, | 559 | dev->dvb.frontend = tda10046_attach(&medion_cardbus, |
560 | &dev->i2c_adap); | 560 | &dev->i2c_adap); |
diff --git a/drivers/media/video/saa7134/saa7134-i2c.c b/drivers/media/video/saa7134/saa7134-i2c.c index 93dd61978541..1203b93a572c 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.19 2005/07/07 01:49:30 mkrufky Exp $ | 2 | * $Id: saa7134-i2c.c,v 1.22 2005/07/22 04:09:41 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 |
@@ -300,6 +300,8 @@ static int saa7134_i2c_xfer(struct i2c_adapter *i2c_adap, | |||
300 | status = i2c_get_status(dev); | 300 | status = i2c_get_status(dev); |
301 | if (i2c_is_error(status)) | 301 | if (i2c_is_error(status)) |
302 | goto err; | 302 | goto err; |
303 | /* ensure that the bus is idle for at least one bit slot */ | ||
304 | msleep(1); | ||
303 | 305 | ||
304 | d1printk("\n"); | 306 | d1printk("\n"); |
305 | return num; | 307 | return num; |
diff --git a/drivers/media/video/saa7134/saa7134.h b/drivers/media/video/saa7134/saa7134.h index 6836c07794fc..2af0cb2a731b 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.48 2005/07/01 08:22:24 nsh Exp $ | 2 | * $Id: saa7134.h,v 1.49 2005/07/13 17:25:25 mchehab 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 | * |
@@ -21,7 +21,7 @@ | |||
21 | */ | 21 | */ |
22 | 22 | ||
23 | #include <linux/version.h> | 23 | #include <linux/version.h> |
24 | #define SAA7134_VERSION_CODE KERNEL_VERSION(0,2,13) | 24 | #define SAA7134_VERSION_CODE KERNEL_VERSION(0,2,14) |
25 | 25 | ||
26 | #include <linux/pci.h> | 26 | #include <linux/pci.h> |
27 | #include <linux/i2c.h> | 27 | #include <linux/i2c.h> |
diff --git a/drivers/media/video/tea5767.c b/drivers/media/video/tea5767.c index 4d27ac1b7fb8..cebcc1fa68d1 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.21 2005/07/14 03:06:43 mchehab Exp $ | 5 | * $Id: tea5767.c,v 1.27 2005/07/31 12:10:56 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 |
@@ -15,7 +15,6 @@ | |||
15 | #include <linux/videodev.h> | 15 | #include <linux/videodev.h> |
16 | #include <linux/delay.h> | 16 | #include <linux/delay.h> |
17 | #include <media/tuner.h> | 17 | #include <media/tuner.h> |
18 | #include <media/tuner.h> | ||
19 | 18 | ||
20 | #define PREFIX "TEA5767 " | 19 | #define PREFIX "TEA5767 " |
21 | 20 | ||
@@ -293,16 +292,16 @@ static int tea5767_stereo(struct i2c_client *c) | |||
293 | 292 | ||
294 | int tea5767_autodetection(struct i2c_client *c) | 293 | int tea5767_autodetection(struct i2c_client *c) |
295 | { | 294 | { |
296 | unsigned char buffer[5] = { 0xff, 0xff, 0xff, 0xff, 0xff }; | 295 | unsigned char buffer[7] = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff }; |
297 | int rc; | 296 | int rc; |
298 | struct tuner *t = i2c_get_clientdata(c); | 297 | struct tuner *t = i2c_get_clientdata(c); |
299 | 298 | ||
300 | if (5 != (rc = i2c_master_recv(c, buffer, 5))) { | 299 | if (7 != (rc = i2c_master_recv(c, buffer, 7))) { |
301 | tuner_warn("It is not a TEA5767. Received %i bytes.\n", rc); | 300 | tuner_warn("It is not a TEA5767. Received %i bytes.\n", rc); |
302 | return EINVAL; | 301 | return EINVAL; |
303 | } | 302 | } |
304 | 303 | ||
305 | /* If all bytes are the same then it's a TV tuner and not a tea5767 chip. */ | 304 | /* If all bytes are the same then it's a TV tuner and not a tea5767 */ |
306 | if (buffer[0] == buffer[1] && buffer[0] == buffer[2] && | 305 | if (buffer[0] == buffer[1] && buffer[0] == buffer[2] && |
307 | buffer[0] == buffer[3] && buffer[0] == buffer[4]) { | 306 | buffer[0] == buffer[3] && buffer[0] == buffer[4]) { |
308 | tuner_warn("All bytes are equal. It is not a TEA5767\n"); | 307 | tuner_warn("All bytes are equal. It is not a TEA5767\n"); |
@@ -318,6 +317,17 @@ int tea5767_autodetection(struct i2c_client *c) | |||
318 | tuner_warn("Chip ID is not zero. It is not a TEA5767\n"); | 317 | tuner_warn("Chip ID is not zero. It is not a TEA5767\n"); |
319 | return EINVAL; | 318 | return EINVAL; |
320 | } | 319 | } |
320 | /* It seems that tea5767 returns 0xff after the 5th byte */ | ||
321 | if ((buffer[5] != 0xff) || (buffer[6] != 0xff)) { | ||
322 | tuner_warn("Returned more than 5 bytes. It is not a TEA5767\n"); | ||
323 | return EINVAL; | ||
324 | } | ||
325 | |||
326 | /* It seems that tea5767 returns 0xff after the 5th byte */ | ||
327 | if ((buffer[5] != 0xff) || (buffer[6] != 0xff)) { | ||
328 | tuner_warn("Returned more than 5 bytes. It is not a TEA5767\n"); | ||
329 | return EINVAL; | ||
330 | } | ||
321 | 331 | ||
322 | tuner_warn("TEA5767 detected.\n"); | 332 | tuner_warn("TEA5767 detected.\n"); |
323 | return 0; | 333 | return 0; |
@@ -327,10 +337,8 @@ int tea5767_tuner_init(struct i2c_client *c) | |||
327 | { | 337 | { |
328 | struct tuner *t = i2c_get_clientdata(c); | 338 | struct tuner *t = i2c_get_clientdata(c); |
329 | 339 | ||
330 | if (tea5767_autodetection(c) == EINVAL) | 340 | tuner_info("type set to %d (%s)\n", t->type, |
331 | return EINVAL; | 341 | "Philips TEA5767HN FM Radio"); |
332 | |||
333 | tuner_info("type set to %d (%s)\n", t->type, "Philips TEA5767HN FM Radio"); | ||
334 | strlcpy(c->name, "tea5767", sizeof(c->name)); | 342 | strlcpy(c->name, "tea5767", sizeof(c->name)); |
335 | 343 | ||
336 | t->tv_freq = set_tv_freq; | 344 | t->tv_freq = set_tv_freq; |
diff --git a/drivers/media/video/tuner-core.c b/drivers/media/video/tuner-core.c index b25a9c08ac02..f0a579827a24 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.58 2005/07/14 03:06:43 mchehab Exp $ | 2 | * $Id: tuner-core.c,v 1.63 2005/07/28 18:19:55 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,6 +23,8 @@ | |||
23 | #include <media/tuner.h> | 23 | #include <media/tuner.h> |
24 | #include <media/audiochip.h> | 24 | #include <media/audiochip.h> |
25 | 25 | ||
26 | #include "msp3400.h" | ||
27 | |||
26 | #define UNSET (-1U) | 28 | #define UNSET (-1U) |
27 | 29 | ||
28 | /* standard i2c insmod options */ | 30 | /* standard i2c insmod options */ |
@@ -42,6 +44,9 @@ module_param(addr, int, 0444); | |||
42 | static unsigned int no_autodetect = 0; | 44 | static unsigned int no_autodetect = 0; |
43 | module_param(no_autodetect, int, 0444); | 45 | module_param(no_autodetect, int, 0444); |
44 | 46 | ||
47 | static unsigned int show_i2c = 0; | ||
48 | module_param(show_i2c, int, 0444); | ||
49 | |||
45 | /* insmod options used at runtime => read/write */ | 50 | /* insmod options used at runtime => read/write */ |
46 | unsigned int tuner_debug = 0; | 51 | unsigned int tuner_debug = 0; |
47 | module_param(tuner_debug, int, 0644); | 52 | module_param(tuner_debug, int, 0644); |
@@ -320,6 +325,17 @@ static int tuner_attach(struct i2c_adapter *adap, int addr, int kind) | |||
320 | 325 | ||
321 | tuner_info("chip found @ 0x%x (%s)\n", addr << 1, adap->name); | 326 | tuner_info("chip found @ 0x%x (%s)\n", addr << 1, adap->name); |
322 | 327 | ||
328 | if (show_i2c) { | ||
329 | unsigned char buffer[16]; | ||
330 | int i,rc; | ||
331 | |||
332 | memset(buffer, 0, sizeof(buffer)); | ||
333 | rc = i2c_master_recv(&t->i2c, buffer, sizeof(buffer)); | ||
334 | printk("tuner-%04x I2C RECV = ",addr); | ||
335 | for (i=0;i<rc;i++) | ||
336 | printk("%02x ",buffer[i]); | ||
337 | printk("\n"); | ||
338 | } | ||
323 | /* TEA5767 autodetection code - only for addr = 0xc0 */ | 339 | /* TEA5767 autodetection code - only for addr = 0xc0 */ |
324 | if (!no_autodetect) { | 340 | if (!no_autodetect) { |
325 | if (addr == 0x60) { | 341 | if (addr == 0x60) { |
@@ -451,6 +467,17 @@ static int tuner_command(struct i2c_client *client, unsigned int cmd, void *arg) | |||
451 | break; | 467 | break; |
452 | } | 468 | } |
453 | break; | 469 | break; |
470 | case VIDIOCSAUDIO: | ||
471 | if (check_mode(t, "VIDIOCSAUDIO") == EINVAL) | ||
472 | return 0; | ||
473 | if (check_v4l2(t) == EINVAL) | ||
474 | return 0; | ||
475 | |||
476 | /* Should be implemented, since bttv calls it */ | ||
477 | tuner_dbg("VIDIOCSAUDIO not implemented.\n"); | ||
478 | |||
479 | break; | ||
480 | case MSP_SET_MATRIX: | ||
454 | case TDA9887_SET_CONFIG: | 481 | case TDA9887_SET_CONFIG: |
455 | break; | 482 | break; |
456 | /* --- v4l ioctls --- */ | 483 | /* --- v4l ioctls --- */ |
diff --git a/drivers/media/video/tuner-simple.c b/drivers/media/video/tuner-simple.c index a3f8e83f5314..de0c93aeb75d 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.39 2005/07/07 01:49:30 mkrufky Exp $ | 2 | * $Id: tuner-simple.c,v 1.43 2005/07/28 18:41:21 mchehab 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. |
@@ -245,6 +245,12 @@ static struct tunertype tuners[] = { | |||
245 | /* see tea5767.c for details */}, | 245 | /* see tea5767.c for details */}, |
246 | { "Philips FMD1216ME MK3 Hybrid Tuner", Philips, PAL, | 246 | { "Philips FMD1216ME MK3 Hybrid Tuner", Philips, PAL, |
247 | 16*160.00,16*442.00,0x51,0x52,0x54,0x86,623 }, | 247 | 16*160.00,16*442.00,0x51,0x52,0x54,0x86,623 }, |
248 | |||
249 | { "LG TDVS-H062F/TUA6034", LGINNOTEK, NTSC, | ||
250 | 16*160.00,16*455.00,0x01,0x02,0x04,0x8e,732}, | ||
251 | |||
252 | { "Ymec TVF66T5-B/DFF", Philips, PAL, | ||
253 | 16*160.25,16*464.25,0x01,0x02,0x08,0x8e,623}, | ||
248 | }; | 254 | }; |
249 | 255 | ||
250 | unsigned const int tuner_count = ARRAY_SIZE(tuners); | 256 | unsigned const int tuner_count = ARRAY_SIZE(tuners); |
diff --git a/drivers/media/video/tvaudio.c b/drivers/media/video/tvaudio.c index d8b78f1d686b..f42a1efa8fcf 100644 --- a/drivers/media/video/tvaudio.c +++ b/drivers/media/video/tvaudio.c | |||
@@ -285,6 +285,7 @@ static int chip_thread(void *data) | |||
285 | schedule(); | 285 | schedule(); |
286 | } | 286 | } |
287 | remove_wait_queue(&chip->wq, &wait); | 287 | remove_wait_queue(&chip->wq, &wait); |
288 | try_to_freeze(); | ||
288 | if (chip->done || signal_pending(current)) | 289 | if (chip->done || signal_pending(current)) |
289 | break; | 290 | break; |
290 | dprintk("%s: thread wakeup\n", i2c_clientname(&chip->c)); | 291 | dprintk("%s: thread wakeup\n", i2c_clientname(&chip->c)); |
diff --git a/drivers/media/video/tveeprom.c b/drivers/media/video/tveeprom.c index e8d9440977cb..127ec38ebd60 100644 --- a/drivers/media/video/tveeprom.c +++ b/drivers/media/video/tveeprom.c | |||
@@ -189,7 +189,7 @@ hauppauge_tuner[] = | |||
189 | { TUNER_ABSENT, "Philips FQ1236 MK3"}, | 189 | { TUNER_ABSENT, "Philips FQ1236 MK3"}, |
190 | { TUNER_ABSENT, "Samsung TCPN 2121P30A"}, | 190 | { TUNER_ABSENT, "Samsung TCPN 2121P30A"}, |
191 | { TUNER_ABSENT, "Samsung TCPE 4121P30A"}, | 191 | { TUNER_ABSENT, "Samsung TCPE 4121P30A"}, |
192 | { TUNER_ABSENT, "TCL MFPE05 2"}, | 192 | { TUNER_PHILIPS_FM1216ME_MK3, "TCL MFPE05 2"}, |
193 | /* 90-99 */ | 193 | /* 90-99 */ |
194 | { TUNER_ABSENT, "LG TALN H202T"}, | 194 | { TUNER_ABSENT, "LG TALN H202T"}, |
195 | { TUNER_PHILIPS_FQ1216AME_MK4, "Philips FQ1216AME MK4"}, | 195 | { TUNER_PHILIPS_FQ1216AME_MK4, "Philips FQ1216AME MK4"}, |
@@ -445,6 +445,7 @@ int tveeprom_read(struct i2c_client *c, unsigned char *eedata, int len) | |||
445 | } | 445 | } |
446 | EXPORT_SYMBOL(tveeprom_read); | 446 | EXPORT_SYMBOL(tveeprom_read); |
447 | 447 | ||
448 | #if 0 | ||
448 | int tveeprom_dump(unsigned char *eedata, int len) | 449 | int tveeprom_dump(unsigned char *eedata, int len) |
449 | { | 450 | { |
450 | int i; | 451 | int i; |
@@ -460,6 +461,7 @@ int tveeprom_dump(unsigned char *eedata, int len) | |||
460 | return 0; | 461 | return 0; |
461 | } | 462 | } |
462 | EXPORT_SYMBOL(tveeprom_dump); | 463 | EXPORT_SYMBOL(tveeprom_dump); |
464 | #endif /* 0 */ | ||
463 | 465 | ||
464 | /* ----------------------------------------------------------------------- */ | 466 | /* ----------------------------------------------------------------------- */ |
465 | /* needed for ivtv.sf.net at the moment. Should go away in the long */ | 467 | /* needed for ivtv.sf.net at the moment. Should go away in the long */ |
@@ -477,7 +479,7 @@ static unsigned short normal_i2c[] = { | |||
477 | 479 | ||
478 | I2C_CLIENT_INSMOD; | 480 | I2C_CLIENT_INSMOD; |
479 | 481 | ||
480 | struct i2c_driver i2c_driver_tveeprom; | 482 | static struct i2c_driver i2c_driver_tveeprom; |
481 | 483 | ||
482 | static int | 484 | static int |
483 | tveeprom_command(struct i2c_client *client, | 485 | tveeprom_command(struct i2c_client *client, |
@@ -549,7 +551,7 @@ tveeprom_detach_client (struct i2c_client *client) | |||
549 | return 0; | 551 | return 0; |
550 | } | 552 | } |
551 | 553 | ||
552 | struct i2c_driver i2c_driver_tveeprom = { | 554 | static struct i2c_driver i2c_driver_tveeprom = { |
553 | .owner = THIS_MODULE, | 555 | .owner = THIS_MODULE, |
554 | .name = "tveeprom", | 556 | .name = "tveeprom", |
555 | .id = I2C_DRIVERID_TVEEPROM, | 557 | .id = I2C_DRIVERID_TVEEPROM, |