aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/media/video/cx88/cx88-cards.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-cards.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-cards.c')
-rw-r--r--drivers/media/video/cx88/cx88-cards.c26
1 files changed, 26 insertions, 0 deletions
diff --git a/drivers/media/video/cx88/cx88-cards.c b/drivers/media/video/cx88/cx88-cards.c
index 1976e04d8ace..fd173e6ac605 100644
--- a/drivers/media/video/cx88/cx88-cards.c
+++ b/drivers/media/video/cx88/cx88-cards.c
@@ -928,6 +928,24 @@ struct cx88_board cx88_boards[] = {
928 }}, 928 }},
929 .dvb = 1, 929 .dvb = 1,
930 }, 930 },
931 [CX88_BOARD_KWORLD_DVBS_100] = {
932 .name = "KWorld DVB-S 100",
933 .tuner_type = TUNER_ABSENT,
934 .radio_type = UNSET,
935 .tuner_addr = ADDR_UNSET,
936 .radio_addr = ADDR_UNSET,
937 .input = {{
938 .type = CX88_VMUX_DVB,
939 .vmux = 0,
940 },{
941 .type = CX88_VMUX_COMPOSITE1,
942 .vmux = 1,
943 },{
944 .type = CX88_VMUX_SVIDEO,
945 .vmux = 2,
946 }},
947 .dvb = 1,
948 },
931}; 949};
932const unsigned int cx88_bcount = ARRAY_SIZE(cx88_boards); 950const unsigned int cx88_bcount = ARRAY_SIZE(cx88_boards);
933 951
@@ -1087,6 +1105,10 @@ struct cx88_subid cx88_subids[] = {
1087 .subvendor = 0x0070, 1105 .subvendor = 0x0070,
1088 .subdevice = 0x9202, 1106 .subdevice = 0x9202,
1089 .card = CX88_BOARD_HAUPPAUGE_NOVASPLUS_S1, 1107 .card = CX88_BOARD_HAUPPAUGE_NOVASPLUS_S1,
1108 },{
1109 .subvendor = 0x17de,
1110 .subdevice = 0x08b2,
1111 .card = CX88_BOARD_KWORLD_DVBS_100,
1090 }, 1112 },
1091}; 1113};
1092const unsigned int cx88_idcount = ARRAY_SIZE(cx88_subids); 1114const unsigned int cx88_idcount = ARRAY_SIZE(cx88_subids);
@@ -1260,6 +1282,10 @@ void cx88_card_setup(struct cx88_core *core)
1260 if (0 == core->i2c_rc) 1282 if (0 == core->i2c_rc)
1261 hauppauge_eeprom(core,eeprom); 1283 hauppauge_eeprom(core,eeprom);
1262 break; 1284 break;
1285 case CX88_BOARD_KWORLD_DVBS_100:
1286 cx_write(MO_GP0_IO, 0x000007f8);
1287 cx_write(MO_GP1_IO, 0x00000001);
1288 break;
1263 case CX88_BOARD_DVICO_FUSIONHDTV_DVB_T1: 1289 case CX88_BOARD_DVICO_FUSIONHDTV_DVB_T1:
1264 case CX88_BOARD_DVICO_FUSIONHDTV_DVB_T_PLUS: 1290 case CX88_BOARD_DVICO_FUSIONHDTV_DVB_T_PLUS:
1265 /* GPIO0:0 is hooked to mt352 reset pin */ 1291 /* GPIO0:0 is hooked to mt352 reset pin */