diff options
author | Vincent Pelletier <plr.vincent@gmail.com> | 2008-11-09 11:50:07 -0500 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2008-12-29 14:53:28 -0500 |
commit | 5cff91a0336a5c8b1d64304a353687f4d242070c (patch) | |
tree | 5f1d0eb7bf016eae99b89dbb43649689c1d87fa1 /drivers/media/video/cx88/cx88-cards.c | |
parent | 93f26c147bd835d4352d477c2b98a98bbc4427e0 (diff) |
V4L/DVB (9536): WinFast DTV2000 H: add support for missing analog inputs
Add support for the following inputs:
- radio tuner
- composite 1 & 2 (only 1 is physically available, but composite 2 is also
advertised by windows driver)
- svideo
Signed-off-by: Vincent Pelletier <plr.vincent@gmail.com>
Acked-by: Jean Delvare <khali@linux-fr.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media/video/cx88/cx88-cards.c')
-rw-r--r-- | drivers/media/video/cx88/cx88-cards.c | 29 |
1 files changed, 28 insertions, 1 deletions
diff --git a/drivers/media/video/cx88/cx88-cards.c b/drivers/media/video/cx88/cx88-cards.c index 38bf5ee4d4a7..733ede34f93a 100644 --- a/drivers/media/video/cx88/cx88-cards.c +++ b/drivers/media/video/cx88/cx88-cards.c | |||
@@ -1237,7 +1237,6 @@ static const struct cx88_board cx88_boards[] = { | |||
1237 | }, | 1237 | }, |
1238 | }, | 1238 | }, |
1239 | [CX88_BOARD_WINFAST_DTV2000H] = { | 1239 | [CX88_BOARD_WINFAST_DTV2000H] = { |
1240 | /* video inputs and radio still in testing */ | ||
1241 | .name = "WinFast DTV2000 H", | 1240 | .name = "WinFast DTV2000 H", |
1242 | .tuner_type = TUNER_PHILIPS_FMD1216ME_MK3, | 1241 | .tuner_type = TUNER_PHILIPS_FMD1216ME_MK3, |
1243 | .radio_type = UNSET, | 1242 | .radio_type = UNSET, |
@@ -1251,7 +1250,35 @@ static const struct cx88_board cx88_boards[] = { | |||
1251 | .gpio1 = 0x00008203, | 1250 | .gpio1 = 0x00008203, |
1252 | .gpio2 = 0x00017304, | 1251 | .gpio2 = 0x00017304, |
1253 | .gpio3 = 0x02000000, | 1252 | .gpio3 = 0x02000000, |
1253 | }, { | ||
1254 | .type = CX88_VMUX_COMPOSITE1, | ||
1255 | .vmux = 1, | ||
1256 | .gpio0 = 0x0001d701, | ||
1257 | .gpio1 = 0x0000b207, | ||
1258 | .gpio2 = 0x0001d701, | ||
1259 | .gpio3 = 0x02000000, | ||
1260 | }, { | ||
1261 | .type = CX88_VMUX_COMPOSITE2, | ||
1262 | .vmux = 2, | ||
1263 | .gpio0 = 0x0001d503, | ||
1264 | .gpio1 = 0x0000b207, | ||
1265 | .gpio2 = 0x0001d503, | ||
1266 | .gpio3 = 0x02000000, | ||
1267 | }, { | ||
1268 | .type = CX88_VMUX_SVIDEO, | ||
1269 | .vmux = 3, | ||
1270 | .gpio0 = 0x0001d701, | ||
1271 | .gpio1 = 0x0000b207, | ||
1272 | .gpio2 = 0x0001d701, | ||
1273 | .gpio3 = 0x02000000, | ||
1254 | }}, | 1274 | }}, |
1275 | .radio = { | ||
1276 | .type = CX88_RADIO, | ||
1277 | .gpio0 = 0x00015702, | ||
1278 | .gpio1 = 0x0000f207, | ||
1279 | .gpio2 = 0x00015702, | ||
1280 | .gpio3 = 0x02000000, | ||
1281 | }, | ||
1255 | .mpeg = CX88_MPEG_DVB, | 1282 | .mpeg = CX88_MPEG_DVB, |
1256 | }, | 1283 | }, |
1257 | [CX88_BOARD_GENIATECH_DVBS] = { | 1284 | [CX88_BOARD_GENIATECH_DVBS] = { |