V4L/DVB (7990): Fix entry for PowerColor RA 330 and make it run with firmware version 2.7
Signed-off-by: Daniel Gimpelevich <daniel@gimpelevich.san-francisco.ca.us> Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
This commit is contained in:
parent
fc60d6e272
commit
a9606ce697
2 changed files with 11 additions and 4 deletions
|
@ -60,7 +60,7 @@
|
||||||
59 -> DViCO FusionHDTV 5 PCI nano [18ac:d530]
|
59 -> DViCO FusionHDTV 5 PCI nano [18ac:d530]
|
||||||
60 -> Pinnacle Hybrid PCTV [12ab:1788]
|
60 -> Pinnacle Hybrid PCTV [12ab:1788]
|
||||||
61 -> Winfast TV2000 XP Global [107d:6f18]
|
61 -> Winfast TV2000 XP Global [107d:6f18]
|
||||||
62 -> PowerColor Real Angel 330 [14f1:ea3d]
|
62 -> PowerColor RA330 [14f1:ea3d]
|
||||||
63 -> Geniatech X8000-MT DVBT [14f1:8852]
|
63 -> Geniatech X8000-MT DVBT [14f1:8852]
|
||||||
64 -> DViCO FusionHDTV DVB-T PRO [18ac:db30]
|
64 -> DViCO FusionHDTV DVB-T PRO [18ac:db30]
|
||||||
65 -> DViCO FusionHDTV 7 Gold [18ac:d610]
|
65 -> DViCO FusionHDTV 7 Gold [18ac:d610]
|
||||||
|
|
|
@ -1493,10 +1493,16 @@ static const struct cx88_board cx88_boards[] = {
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
[CX88_BOARD_POWERCOLOR_REAL_ANGEL] = {
|
[CX88_BOARD_POWERCOLOR_REAL_ANGEL] = {
|
||||||
.name = "PowerColor Real Angel 330",
|
.name = "PowerColor RA330", /* Long names may confuse LIRC. */
|
||||||
.tuner_type = TUNER_XC2028,
|
.tuner_type = TUNER_XC2028,
|
||||||
.tuner_addr = 0x61,
|
.tuner_addr = 0x61,
|
||||||
.input = { {
|
.input = { {
|
||||||
|
.type = CX88_VMUX_DEBUG,
|
||||||
|
.vmux = 3, /* Due to the way the cx88 driver is written, */
|
||||||
|
.gpio0 = 0x00ff, /* there is no way to deactivate audio pass- */
|
||||||
|
.gpio1 = 0xf39d, /* through without this entry. Furthermore, if */
|
||||||
|
.gpio3 = 0x0000, /* the TV mux entry is first, you get audio */
|
||||||
|
}, { /* from the tuner on boot for a little while. */
|
||||||
.type = CX88_VMUX_TELEVISION,
|
.type = CX88_VMUX_TELEVISION,
|
||||||
.vmux = 0,
|
.vmux = 0,
|
||||||
.gpio0 = 0x00ff,
|
.gpio0 = 0x00ff,
|
||||||
|
@ -2424,8 +2430,9 @@ void cx88_setup_xc3028(struct cx88_core *core, struct xc2028_ctrl *ctl)
|
||||||
|
|
||||||
switch (core->boardnr) {
|
switch (core->boardnr) {
|
||||||
case CX88_BOARD_POWERCOLOR_REAL_ANGEL:
|
case CX88_BOARD_POWERCOLOR_REAL_ANGEL:
|
||||||
/* Doesn't work with firmware version 2.7 */
|
/* Now works with firmware version 2.7 */
|
||||||
ctl->fname = "xc3028-v25.fw";
|
if (core->i2c_algo.udelay < 16)
|
||||||
|
core->i2c_algo.udelay = 16;
|
||||||
break;
|
break;
|
||||||
case CX88_BOARD_DVICO_FUSIONHDTV_DVB_T_PRO:
|
case CX88_BOARD_DVICO_FUSIONHDTV_DVB_T_PRO:
|
||||||
ctl->scode_table = XC3028_FE_ZARLINK456;
|
ctl->scode_table = XC3028_FE_ZARLINK456;
|
||||||
|
|
Loading…
Reference in a new issue