diff options
author | Valentin Zagura <puthre@gmail.com> | 2006-04-13 11:41:43 -0400 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@infradead.org> | 2006-06-25 00:58:04 -0400 |
commit | b3038304c91aa710fe651c7f42568e252fc54908 (patch) | |
tree | d3e2778fddb86770b5e81a0e703efd015cc133a8 /drivers/media/video/cx88/cx88-cards.c | |
parent | 7d0dc26952fe0b49f9139f3264318abf195fe596 (diff) |
V4L/DVB (3800): Cx88: added support for KWorld MCE 200 Deluxe
This patch adds support for KWorld MCE 200 Deluxe.
Raw video is working perfectly, MPEG capture using
cx88-blackbird is also working, but the quality
could be improved.
svideo and radio until they can be tested also.
Signed-off-by: Valentin Zagura <puthre@gmail.com>
Signed-off-by: Michael Krufky <mkrufky@linuxtv.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
Diffstat (limited to 'drivers/media/video/cx88/cx88-cards.c')
-rw-r--r-- | drivers/media/video/cx88/cx88-cards.c | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/drivers/media/video/cx88/cx88-cards.c b/drivers/media/video/cx88/cx88-cards.c index 689d210c90ac..344c16eb0b0d 100644 --- a/drivers/media/video/cx88/cx88-cards.c +++ b/drivers/media/video/cx88/cx88-cards.c | |||
@@ -1115,6 +1115,22 @@ struct cx88_board cx88_boards[] = { | |||
1115 | }}, | 1115 | }}, |
1116 | .dvb = 1, | 1116 | .dvb = 1, |
1117 | }, | 1117 | }, |
1118 | [CX88_BOARD_KWORLD_MCE200_DELUXE] = { | ||
1119 | /* FIXME: tested TV input only, disabled composite, | ||
1120 | svideo and radio until they can be tested also. */ | ||
1121 | .name = "Kworld MCE 200 Deluxe", | ||
1122 | .tuner_type = TUNER_TENA_9533_DI, | ||
1123 | .radio_type = UNSET, | ||
1124 | .tda9887_conf = TDA9887_PRESENT, | ||
1125 | .tuner_addr = ADDR_UNSET, | ||
1126 | .radio_addr = ADDR_UNSET, | ||
1127 | .input = {{ | ||
1128 | .type = CX88_VMUX_TELEVISION, | ||
1129 | .vmux = 0, | ||
1130 | .gpio0 = 0x0000BDE6 | ||
1131 | }}, | ||
1132 | .blackbird = 1, | ||
1133 | }, | ||
1118 | }; | 1134 | }; |
1119 | const unsigned int cx88_bcount = ARRAY_SIZE(cx88_boards); | 1135 | const unsigned int cx88_bcount = ARRAY_SIZE(cx88_boards); |
1120 | 1136 | ||
@@ -1336,6 +1352,10 @@ struct cx88_subid cx88_subids[] = { | |||
1336 | .subvendor = 0x7063, | 1352 | .subvendor = 0x7063, |
1337 | .subdevice = 0x5500, | 1353 | .subdevice = 0x5500, |
1338 | .card = CX88_BOARD_PCHDTV_HD5500, | 1354 | .card = CX88_BOARD_PCHDTV_HD5500, |
1355 | },{ | ||
1356 | .subvendor = 0x17de, | ||
1357 | .subdevice = 0x0841, | ||
1358 | .card = CX88_BOARD_KWORLD_MCE200_DELUXE, | ||
1339 | }, | 1359 | }, |
1340 | }; | 1360 | }; |
1341 | const unsigned int cx88_idcount = ARRAY_SIZE(cx88_subids); | 1361 | const unsigned int cx88_idcount = ARRAY_SIZE(cx88_subids); |