aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/media/video/cx88/cx88-cards.c
diff options
context:
space:
mode:
authorSteven Toth <stoth@hauppauge.com>2008-04-22 13:45:14 -0400
committerMauro Carvalho Chehab <mchehab@infradead.org>2008-04-24 13:07:44 -0400
commit5c00fac0bab95a378e60c1a67e3d3c5ac44df412 (patch)
treeac2ff4b6c37b6e90f586d5b130e220dede9f3449 /drivers/media/video/cx88/cx88-cards.c
parent7102b773d538c1f064da22ae9a1fb86704747388 (diff)
V4L/DVB (7252): cx88: Add support for the Dvico PCI Nano
ATSC is known to work. SVideo / Composite should work (I have no cable to test). Analog tuner support does not work. Signed-off-by: Steven Toth <stoth@hauppauge.com> 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.c27
1 files changed, 27 insertions, 0 deletions
diff --git a/drivers/media/video/cx88/cx88-cards.c b/drivers/media/video/cx88/cx88-cards.c
index 8c9a8adf52de..23b58bc9cf2b 100644
--- a/drivers/media/video/cx88/cx88-cards.c
+++ b/drivers/media/video/cx88/cx88-cards.c
@@ -1401,6 +1401,29 @@ static const struct cx88_board cx88_boards[] = {
1401 }}, 1401 }},
1402 .mpeg = CX88_MPEG_DVB, 1402 .mpeg = CX88_MPEG_DVB,
1403 }, 1403 },
1404 [CX88_BOARD_DVICO_FUSIONHDTV_5_PCI_NANO] = {
1405 .name = "DVICO HDTV5 PCI Nano",
1406 .tuner_type = TUNER_ABSENT,
1407 .radio_type = UNSET,
1408 .tuner_addr = ADDR_UNSET,
1409 .radio_addr = ADDR_UNSET,
1410 .input = {{
1411 .type = CX88_VMUX_TELEVISION,
1412 .vmux = 0,
1413 .gpio0 = 0x000027df, /* Unconfirmed */
1414 }, {
1415 .type = CX88_VMUX_COMPOSITE1,
1416 .vmux = 1,
1417 .gpio0 = 0x000027df, /* Unconfirmed */
1418 .audioroute = 1,
1419 }, {
1420 .type = CX88_VMUX_SVIDEO,
1421 .vmux = 2,
1422 .gpio0 = 0x000027df, /* Unconfirmed */
1423 .audioroute = 1,
1424 } },
1425 .mpeg = CX88_MPEG_DVB,
1426 },
1404}; 1427};
1405 1428
1406/* ------------------------------------------------------------------ */ 1429/* ------------------------------------------------------------------ */
@@ -1714,6 +1737,10 @@ static const struct cx88_subid cx88_subids[] = {
1714 .subvendor = 0x11bd, 1737 .subvendor = 0x11bd,
1715 .subdevice = 0x0051, 1738 .subdevice = 0x0051,
1716 .card = CX88_BOARD_PINNACLE_PCTV_HD_800i, 1739 .card = CX88_BOARD_PINNACLE_PCTV_HD_800i,
1740 }, {
1741 .subvendor = 0x18ac,
1742 .subdevice = 0xd530,
1743 .card = CX88_BOARD_DVICO_FUSIONHDTV_5_PCI_NANO,
1717 }, 1744 },
1718}; 1745};
1719 1746