mirror of
https://github.com/adulau/aha.git
synced 2024-12-29 04:06:22 +00:00
V4L/DVB (4016): Cx88-blackbird: add support for ProLink Pixelview Playtv@P7000
- Add support for ProLink Pixelview Playtv@P7000 Raw video and MPEG encoded video confirmed to work properly. SVideo, Composite and FM inputs are untested - disabled for now. Signed-off-by: Angelo Marconi <am@massalombarda.net> Signed-off-by: Michael Krufky <mkrufky@linuxtv.org> Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
This commit is contained in:
parent
8397703ee0
commit
a31246220c
4 changed files with 23 additions and 0 deletions
|
@ -47,3 +47,4 @@
|
||||||
46 -> DViCO FusionHDTV DVB-T Hybrid [18ac:db40,18ac:db44]
|
46 -> DViCO FusionHDTV DVB-T Hybrid [18ac:db40,18ac:db44]
|
||||||
47 -> pcHDTV HD5500 HDTV [7063:5500]
|
47 -> pcHDTV HD5500 HDTV [7063:5500]
|
||||||
48 -> Kworld MCE 200 Deluxe [17de:0841]
|
48 -> Kworld MCE 200 Deluxe [17de:0841]
|
||||||
|
49 -> PixelView PlayTV P7000 [1554:4813]
|
||||||
|
|
|
@ -1132,6 +1132,22 @@ struct cx88_board cx88_boards[] = {
|
||||||
}},
|
}},
|
||||||
.blackbird = 1,
|
.blackbird = 1,
|
||||||
},
|
},
|
||||||
|
[CX88_BOARD_PIXELVIEW_PLAYTV_P7000] = {
|
||||||
|
/* FIXME: SVideo, Composite and FM inputs are untested */
|
||||||
|
.name = "PixelView PlayTV P7000",
|
||||||
|
.tuner_type = TUNER_PHILIPS_FM1216ME_MK3,
|
||||||
|
.radio_type = UNSET,
|
||||||
|
.tuner_addr = ADDR_UNSET,
|
||||||
|
.radio_addr = ADDR_UNSET,
|
||||||
|
.tda9887_conf = TDA9887_PRESENT | TDA9887_PORT1_ACTIVE |
|
||||||
|
TDA9887_PORT2_ACTIVE,
|
||||||
|
.input = {{
|
||||||
|
.type = CX88_VMUX_TELEVISION,
|
||||||
|
.vmux = 0,
|
||||||
|
.gpio0 = 0x5da6,
|
||||||
|
}},
|
||||||
|
.blackbird = 1,
|
||||||
|
},
|
||||||
};
|
};
|
||||||
const unsigned int cx88_bcount = ARRAY_SIZE(cx88_boards);
|
const unsigned int cx88_bcount = ARRAY_SIZE(cx88_boards);
|
||||||
|
|
||||||
|
@ -1361,6 +1377,10 @@ struct cx88_subid cx88_subids[] = {
|
||||||
.subvendor = 0x1822,
|
.subvendor = 0x1822,
|
||||||
.subdevice = 0x0019,
|
.subdevice = 0x0019,
|
||||||
.card = CX88_BOARD_DNTV_LIVE_DVB_T_PRO,
|
.card = CX88_BOARD_DNTV_LIVE_DVB_T_PRO,
|
||||||
|
},{
|
||||||
|
.subvendor = 0x1554,
|
||||||
|
.subdevice = 0x4813,
|
||||||
|
.card = CX88_BOARD_PIXELVIEW_PLAYTV_P7000,
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
const unsigned int cx88_idcount = ARRAY_SIZE(cx88_subids);
|
const unsigned int cx88_idcount = ARRAY_SIZE(cx88_subids);
|
||||||
|
|
|
@ -152,6 +152,7 @@ static void set_audio_finish(struct cx88_core *core, u32 ctl)
|
||||||
case CX88_BOARD_HAUPPAUGE_ROSLYN:
|
case CX88_BOARD_HAUPPAUGE_ROSLYN:
|
||||||
case CX88_BOARD_KWORLD_MCE200_DELUXE:
|
case CX88_BOARD_KWORLD_MCE200_DELUXE:
|
||||||
case CX88_BOARD_KWORLD_HARDWARE_MPEG_TV_XPERT:
|
case CX88_BOARD_KWORLD_HARDWARE_MPEG_TV_XPERT:
|
||||||
|
case CX88_BOARD_PIXELVIEW_PLAYTV_P7000:
|
||||||
cx_clear(AUD_CTL, EN_I2SIN_ENABLE);
|
cx_clear(AUD_CTL, EN_I2SIN_ENABLE);
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
|
|
|
@ -191,6 +191,7 @@ extern struct sram_channel cx88_sram_channels[];
|
||||||
#define CX88_BOARD_DVICO_FUSIONHDTV_DVB_T_HYBRID 46
|
#define CX88_BOARD_DVICO_FUSIONHDTV_DVB_T_HYBRID 46
|
||||||
#define CX88_BOARD_PCHDTV_HD5500 47
|
#define CX88_BOARD_PCHDTV_HD5500 47
|
||||||
#define CX88_BOARD_KWORLD_MCE200_DELUXE 48
|
#define CX88_BOARD_KWORLD_MCE200_DELUXE 48
|
||||||
|
#define CX88_BOARD_PIXELVIEW_PLAYTV_P7000 49
|
||||||
|
|
||||||
enum cx88_itype {
|
enum cx88_itype {
|
||||||
CX88_VMUX_COMPOSITE1 = 1,
|
CX88_VMUX_COMPOSITE1 = 1,
|
||||||
|
|
Loading…
Reference in a new issue