aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/media/video/cx88/cx88-dvb.c
diff options
context:
space:
mode:
authorVadim Catana <skystar@moldova.cc>2006-01-09 12:25:02 -0500
committerMauro Carvalho Chehab <mchehab@brturbo.com.br>2006-01-09 12:25:02 -0500
commit0e0351e3709023dbd015d09880b04f0aa8818fcb (patch)
tree204b97290bd663cf36171e4139c2ad470c7c6b41 /drivers/media/video/cx88/cx88-dvb.c
parentfb56cb65e4b737c93727ea296050e8d24eb7cb42 (diff)
V4L (1007): Add support for KWorld DVB-S 100
- Add support for KWorld DVB-S 100, based on the same chips as Hauppauge Nova-S Plus (CX23883/CX24123/CX24109), without the Intersil ISL6421, which is used for LNB control. - LNB voltage and tone are controled by LNBDC and LNBTone bits from register 0x29 of the CX24123 demodulator. - The MO_GP0_IO register from CX23883 is used to turn LNB power on and off. Signed-off-by: Vadim Catana <skystar@moldova.cc> Acked-by: Johannes Stezenbach <js@linuxtv.org> Signed-off-by: Michael Krufky <mkrufky@m1k.net> Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br>
Diffstat (limited to 'drivers/media/video/cx88/cx88-dvb.c')
-rw-r--r--drivers/media/video/cx88/cx88-dvb.c27
1 files changed, 25 insertions, 2 deletions
diff --git a/drivers/media/video/cx88/cx88-dvb.c b/drivers/media/video/cx88/cx88-dvb.c
index 21972572a943..054094e48fc3 100644
--- a/drivers/media/video/cx88/cx88-dvb.c
+++ b/drivers/media/video/cx88/cx88-dvb.c
@@ -326,9 +326,28 @@ static int cx24123_set_ts_param(struct dvb_frontend* fe,
326 return 0; 326 return 0;
327} 327}
328 328
329static void cx24123_enable_lnb_voltage(struct dvb_frontend* fe, int on)
330{
331 struct cx8802_dev *dev= fe->dvb->priv;
332 struct cx88_core *core = dev->core;
333
334 if (on)
335 cx_write(MO_GP0_IO, 0x000006f9);
336 else
337 cx_write(MO_GP0_IO, 0x000006fB);
338}
339
329static struct cx24123_config hauppauge_novas_config = { 340static struct cx24123_config hauppauge_novas_config = {
330 .demod_address = 0x55, 341 .demod_address = 0x55,
331 .set_ts_params = cx24123_set_ts_param, 342 .use_isl6421 = 1,
343 .set_ts_params = cx24123_set_ts_param,
344};
345
346static struct cx24123_config kworld_dvbs_100_config = {
347 .demod_address = 0x15,
348 .use_isl6421 = 0,
349 .set_ts_params = cx24123_set_ts_param,
350 .enable_lnb_voltage = cx24123_enable_lnb_voltage,
332}; 351};
333#endif 352#endif
334 353
@@ -445,6 +464,10 @@ static int dvb_register(struct cx8802_dev *dev)
445 dev->dvb.frontend = cx24123_attach(&hauppauge_novas_config, 464 dev->dvb.frontend = cx24123_attach(&hauppauge_novas_config,
446 &dev->core->i2c_adap); 465 &dev->core->i2c_adap);
447 break; 466 break;
467 case CX88_BOARD_KWORLD_DVBS_100:
468 dev->dvb.frontend = cx24123_attach(&kworld_dvbs_100_config,
469 &dev->core->i2c_adap);
470 break;
448#endif 471#endif
449 default: 472 default:
450 printk("%s: The frontend of your DVB/ATSC card isn't supported yet\n", 473 printk("%s: The frontend of your DVB/ATSC card isn't supported yet\n",