aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/media/video/cx23885/cx23885-cards.c
diff options
context:
space:
mode:
authorIgor M. Liplianin <liplianin@me.by>2009-01-17 10:23:31 -0500
committerMauro Carvalho Chehab <mchehab@redhat.com>2009-03-30 11:42:24 -0400
commitc9b8b04b267f9a7e472daa06cdf6d4963d503d1f (patch)
treebdcf257e093fdaf09c83d958ddf11622555c5fa3 /drivers/media/video/cx23885/cx23885-cards.c
parentc7bdcd0f541efcb92c407c601ff7819a4a551f6f (diff)
V4L/DVB (10269): Add support for DVBWorld DVBS2 PCI-e 2005.
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> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media/video/cx23885/cx23885-cards.c')
-rw-r--r--drivers/media/video/cx23885/cx23885-cards.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/drivers/media/video/cx23885/cx23885-cards.c b/drivers/media/video/cx23885/cx23885-cards.c
index dbc59d26f6f6..7ff339a2e3f2 100644
--- a/drivers/media/video/cx23885/cx23885-cards.c
+++ b/drivers/media/video/cx23885/cx23885-cards.c
@@ -170,6 +170,10 @@ struct cx23885_board cx23885_boards[] = {
170 .name = "TeVii S470", 170 .name = "TeVii S470",
171 .portb = CX23885_MPEG_DVB, 171 .portb = CX23885_MPEG_DVB,
172 }, 172 },
173 [CX23885_BOARD_DVBWORLD_2005] = {
174 .name = "DVBWorld DVB-S2 2005",
175 .portb = CX23885_MPEG_DVB,
176 },
173}; 177};
174const unsigned int cx23885_bcount = ARRAY_SIZE(cx23885_boards); 178const unsigned int cx23885_bcount = ARRAY_SIZE(cx23885_boards);
175 179
@@ -261,6 +265,10 @@ struct cx23885_subid cx23885_subids[] = {
261 .subvendor = 0xd470, 265 .subvendor = 0xd470,
262 .subdevice = 0x9022, 266 .subdevice = 0x9022,
263 .card = CX23885_BOARD_TEVII_S470, 267 .card = CX23885_BOARD_TEVII_S470,
268 }, {
269 .subvendor = 0x0001,
270 .subdevice = 0x2005,
271 .card = CX23885_BOARD_DVBWORLD_2005,
264 }, 272 },
265}; 273};
266const unsigned int cx23885_idcount = ARRAY_SIZE(cx23885_subids); 274const unsigned int cx23885_idcount = ARRAY_SIZE(cx23885_subids);
@@ -656,6 +664,7 @@ void cx23885_card_setup(struct cx23885_dev *dev)
656 break; 664 break;
657 case CX23885_BOARD_TEVII_S470: 665 case CX23885_BOARD_TEVII_S470:
658 case CX23885_BOARD_TBS_6920: 666 case CX23885_BOARD_TBS_6920:
667 case CX23885_BOARD_DVBWORLD_2005:
659 ts1->gen_ctrl_val = 0x5; /* Parallel */ 668 ts1->gen_ctrl_val = 0x5; /* Parallel */
660 ts1->ts_clk_en_val = 0x1; /* Enable TS_CLK */ 669 ts1->ts_clk_en_val = 0x1; /* Enable TS_CLK */
661 ts1->src_sel_val = CX23885_SRC_SEL_PARALLEL_MPEG_VIDEO; 670 ts1->src_sel_val = CX23885_SRC_SEL_PARALLEL_MPEG_VIDEO;