diff options
author | Igor M. Liplianin <liplianin@me.by> | 2008-09-04 23:24:14 +0300 |
---|---|---|
committer | Igor M. Liplianin <liplianin@me.by> | 2008-09-04 23:24:14 +0300 |
commit | 06e3dd65bdfbd21a9b3b64a344cdb2304b7e898a (patch) | |
tree | 4b973302bab6b9151f6afc4af996407e3786fab4 /linux/drivers/media/video/cx88/cx88-cards.c | |
parent | 095219cbe03bb0401bd154ab1bd6dfb831f17a5a (diff) | |
download | mediapointer-dvb-s2-06e3dd65bdfbd21a9b3b64a344cdb2304b7e898a.tar.gz mediapointer-dvb-s2-06e3dd65bdfbd21a9b3b64a344cdb2304b7e898a.tar.bz2 |
Added support for TeVii S460 DVB-S/S2 card
From: Igor M. Liplianin <liplianin@me.by>
Added support for TeVii S460 DVB-S/S2 card. The card
based on cx24116 demodulator.
Signed-off-by: Igor M. Liplianin <liplianin@me.by>
Diffstat (limited to 'linux/drivers/media/video/cx88/cx88-cards.c')
-rw-r--r-- | linux/drivers/media/video/cx88/cx88-cards.c | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/linux/drivers/media/video/cx88/cx88-cards.c b/linux/drivers/media/video/cx88/cx88-cards.c index 522a5f575..8ef541301 100644 --- a/linux/drivers/media/video/cx88/cx88-cards.c +++ b/linux/drivers/media/video/cx88/cx88-cards.c @@ -1746,6 +1746,18 @@ static const struct cx88_board cx88_boards[] = { } }, .mpeg = CX88_MPEG_DVB, }, + [CX88_BOARD_TEVII_S460] = { + .name = "TeVii S460 DVB-S/S2", + .tuner_type = UNSET, + .radio_type = UNSET, + .tuner_addr = ADDR_UNSET, + .radio_addr = ADDR_UNSET, + .input = {{ + .type = CX88_VMUX_DVB, + .vmux = 0, + } }, + .mpeg = CX88_MPEG_DVB, + }, }; /* ------------------------------------------------------------------ */ @@ -2115,6 +2127,10 @@ static const struct cx88_subid cx88_subids[] = { .subvendor = 0x0070, .subdevice = 0x6906, .card = CX88_BOARD_HAUPPAUGE_HVR4000LITE, + }, { + .subvendor = 0xD460, + .subdevice = 0x9022, + .card = CX88_BOARD_TEVII_S460, }, }; @@ -2686,7 +2702,14 @@ static void cx88_card_setup(struct cx88_core *core) tea5767_cfg.priv = &ctl; cx88_call_i2c_clients(core, TUNER_SET_CONFIG, &tea5767_cfg); + break; } + case CX88_BOARD_TEVII_S460: + cx_write(MO_SRST_IO, 0); + msleep(100); + cx_write(MO_SRST_IO, 1); + msleep(100); + break; } /*end switch() */ |