diff options
author | Igor M. Liplianin <liplianin@me.by> | 2009-01-17 17:23:31 +0200 |
---|---|---|
committer | Igor M. Liplianin <liplianin@me.by> | 2009-01-17 17:23:31 +0200 |
commit | 8e61aa005719a9c2c7a8a1b8d0f99da2706b4030 (patch) | |
tree | 6326ad91be6ff2fee6e86e3db2c483cac679ca20 /linux/drivers/media/video/cx23885/cx23885-cards.c | |
parent | e031a29e14754a7e02467a45c9f6293d56502022 (diff) | |
download | mediapointer-dvb-s2-8e61aa005719a9c2c7a8a1b8d0f99da2706b4030.tar.gz mediapointer-dvb-s2-8e61aa005719a9c2c7a8a1b8d0f99da2706b4030.tar.bz2 |
Add support for DVBWorld DVBS2 PCI-e 2005.
From: Igor M. Liplianin <liplianin@me.by>
DVBWorld DVBS2 PCI-e 2005 card contains cx23885 PCI-e bridge
and cx24116 demodulator.
http://www.linuxtv.org/wiki/index.php/DVBWorld_DVB-S2_2005_PCI-Express_Card
The card tested by me (Igor).
Signed-off-by: Igor M. Liplianin <liplianin@me.by>
Diffstat (limited to 'linux/drivers/media/video/cx23885/cx23885-cards.c')
-rw-r--r-- | linux/drivers/media/video/cx23885/cx23885-cards.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/linux/drivers/media/video/cx23885/cx23885-cards.c b/linux/drivers/media/video/cx23885/cx23885-cards.c index c087d3b90..a8201ceaa 100644 --- a/linux/drivers/media/video/cx23885/cx23885-cards.c +++ b/linux/drivers/media/video/cx23885/cx23885-cards.c @@ -171,6 +171,10 @@ struct cx23885_board cx23885_boards[] = { .name = "TeVii S470", .portb = CX23885_MPEG_DVB, }, + [CX23885_BOARD_DVBWORLD_2005] = { + .name = "DVBWorld DVB-S2 2005", + .portb = CX23885_MPEG_DVB, + }, }; const unsigned int cx23885_bcount = ARRAY_SIZE(cx23885_boards); @@ -262,6 +266,10 @@ struct cx23885_subid cx23885_subids[] = { .subvendor = 0xd470, .subdevice = 0x9022, .card = CX23885_BOARD_TEVII_S470, + }, { + .subvendor = 0x0001, + .subdevice = 0x2005, + .card = CX23885_BOARD_DVBWORLD_2005, }, }; const unsigned int cx23885_idcount = ARRAY_SIZE(cx23885_subids); @@ -657,6 +665,7 @@ void cx23885_card_setup(struct cx23885_dev *dev) break; case CX23885_BOARD_TEVII_S470: case CX23885_BOARD_TBS_6920: + case CX23885_BOARD_DVBWORLD_2005: ts1->gen_ctrl_val = 0x5; /* Parallel */ ts1->ts_clk_en_val = 0x1; /* Enable TS_CLK */ ts1->src_sel_val = CX23885_SRC_SEL_PARALLEL_MPEG_VIDEO; |