aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/media/video/cx88/cx88-cards.c
diff options
context:
space:
mode:
authorAngelo Marconi <am@massalombarda.net>2006-05-09 17:27:48 -0400
committerMauro Carvalho Chehab <mchehab@infradead.org>2006-06-25 01:00:25 -0400
commita31246220c4681387799d435ee1d48e65db6d5f6 (patch)
tree762d8a761bf499b3ac1e7faf2d2cffe363704801 /drivers/media/video/cx88/cx88-cards.c
parent8397703ee0cc9ca27df5c058f60c4d4f1dc69595 (diff)
V4L/DVB (4016): Cx88-blackbird: add support for ProLink Pixelview Playtv@P7000
- Add support for ProLink Pixelview Playtv@P7000 Raw video and MPEG encoded video confirmed to work properly. SVideo, Composite and FM inputs are untested - disabled for now. Signed-off-by: Angelo Marconi <am@massalombarda.net> 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.c20
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 7199169cd14f..16cd6434f2b1 100644
--- a/drivers/media/video/cx88/cx88-cards.c
+++ b/drivers/media/video/cx88/cx88-cards.c
@@ -1132,6 +1132,22 @@ struct cx88_board cx88_boards[] = {
1132 }}, 1132 }},
1133 .blackbird = 1, 1133 .blackbird = 1,
1134 }, 1134 },
1135 [CX88_BOARD_PIXELVIEW_PLAYTV_P7000] = {
1136 /* FIXME: SVideo, Composite and FM inputs are untested */
1137 .name = "PixelView PlayTV P7000",
1138 .tuner_type = TUNER_PHILIPS_FM1216ME_MK3,
1139 .radio_type = UNSET,
1140 .tuner_addr = ADDR_UNSET,
1141 .radio_addr = ADDR_UNSET,
1142 .tda9887_conf = TDA9887_PRESENT | TDA9887_PORT1_ACTIVE |
1143 TDA9887_PORT2_ACTIVE,
1144 .input = {{
1145 .type = CX88_VMUX_TELEVISION,
1146 .vmux = 0,
1147 .gpio0 = 0x5da6,
1148 }},
1149 .blackbird = 1,
1150 },
1135}; 1151};
1136const unsigned int cx88_bcount = ARRAY_SIZE(cx88_boards); 1152const unsigned int cx88_bcount = ARRAY_SIZE(cx88_boards);
1137 1153
@@ -1361,6 +1377,10 @@ struct cx88_subid cx88_subids[] = {
1361 .subvendor = 0x1822, 1377 .subvendor = 0x1822,
1362 .subdevice = 0x0019, 1378 .subdevice = 0x0019,
1363 .card = CX88_BOARD_DNTV_LIVE_DVB_T_PRO, 1379 .card = CX88_BOARD_DNTV_LIVE_DVB_T_PRO,
1380 },{
1381 .subvendor = 0x1554,
1382 .subdevice = 0x4813,
1383 .card = CX88_BOARD_PIXELVIEW_PLAYTV_P7000,
1364 }, 1384 },
1365}; 1385};
1366const unsigned int cx88_idcount = ARRAY_SIZE(cx88_subids); 1386const unsigned int cx88_idcount = ARRAY_SIZE(cx88_subids);