diff options
author | Steven Toth <stoth@hauppauge.com> | 2008-01-15 23:08:18 -0500 |
---|---|---|
committer | Steven Toth <stoth@hauppauge.com> | 2008-01-15 23:08:18 -0500 |
commit | 7e39be7b7313d51ad3be46803a5918f1b2914b82 (patch) | |
tree | e7cbf152fe020a14b7ea0aac567efd82ee15f6d6 /linux/drivers/media/video/cx88/cx88-cards.c | |
parent | 42de0c9d677d2af4e41ed7fe4c149427ebeb271e (diff) | |
download | mediapointer-dvb-s2-7e39be7b7313d51ad3be46803a5918f1b2914b82.tar.gz mediapointer-dvb-s2-7e39be7b7313d51ad3be46803a5918f1b2914b82.tar.bz2 |
cx88: Add support for the Dvico PCI Nano.
From: Steven Toth <stoth@hauppauge.com>
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>
Diffstat (limited to 'linux/drivers/media/video/cx88/cx88-cards.c')
-rw-r--r-- | linux/drivers/media/video/cx88/cx88-cards.c | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/linux/drivers/media/video/cx88/cx88-cards.c b/linux/drivers/media/video/cx88/cx88-cards.c index 4adecb6a9..41218f4c3 100644 --- a/linux/drivers/media/video/cx88/cx88-cards.c +++ b/linux/drivers/media/video/cx88/cx88-cards.c @@ -1447,6 +1447,29 @@ static const struct cx88_board cx88_boards[] = { }}, .mpeg = CX88_MPEG_DVB, }, + [CX88_BOARD_DVICO_FUSIONHDTV_5_PCI_NANO] = { + .name = "DVICO HDTV5 PCI Nano", + .tuner_type = TUNER_ABSENT, + .radio_type = UNSET, + .tuner_addr = ADDR_UNSET, + .radio_addr = ADDR_UNSET, + .input = {{ + .type = CX88_VMUX_TELEVISION, + .vmux = 0, + .gpio0 = 0x000027df, /* Unconfirmed */ + }, { + .type = CX88_VMUX_COMPOSITE1, + .vmux = 1, + .gpio0 = 0x000027df, /* Unconfirmed */ + .audioroute = 1, + }, { + .type = CX88_VMUX_SVIDEO, + .vmux = 2, + .gpio0 = 0x000027df, /* Unconfirmed */ + .audioroute = 1, + } }, + .mpeg = CX88_MPEG_DVB, + }, }; /* ------------------------------------------------------------------ */ @@ -1760,6 +1783,10 @@ static const struct cx88_subid cx88_subids[] = { .subvendor = 0x11bd, .subdevice = 0x0051, .card = CX88_BOARD_PINNACLE_PCTV_HD_800i, + }, { + .subvendor = 0x18ac, + .subdevice = 0xd530, + .card = CX88_BOARD_DVICO_FUSIONHDTV_5_PCI_NANO, }, }; |