* [linux-dvb] [PATCH] WinFast DTV2000 H: add support for missing analog inputs
@ 2008-06-02 9:33 Vincent Pelletier
0 siblings, 0 replies; 4+ messages in thread
From: Vincent Pelletier @ 2008-06-02 9:33 UTC (permalink / raw)
To: linux-dvb
# HG changeset patch
# User plr.vincent@gmail.com
# Date 1212398724 -7200
# Node ID 78a011dfba127b593b6d01ea6a0010fcc29c94ad
# Parent 398b07fdfe79ff66a8c1bf2874de424ce29b9c78
WinFast DTV2000 H: add support for missing analog inputs
From: Vincent Pelletier <plr.vincent@gmail.com>
Add support for the following inputs:
- radio tuner
- composite 1 & 2 (only 1 is physicaly available, but composite 2 is also
advertised by windows driver)
- svideo
Signed-off-by: Vincent Pelletier <plr.vincent@gmail.com>
diff -r 398b07fdfe79 -r 78a011dfba12 linux/drivers/media/video/cx88/cx88-cards.c
--- a/linux/drivers/media/video/cx88/cx88-cards.c Wed May 28 17:55:13 2008 -0300
+++ b/linux/drivers/media/video/cx88/cx88-cards.c Mon Jun 02 11:25:24 2008 +0200
@@ -1297,7 +1297,35 @@
.gpio1 = 0x00008203,
.gpio2 = 0x00017304,
.gpio3 = 0x02000000,
+ },{
+ .type = CX88_VMUX_COMPOSITE1,
+ .vmux = 1,
+ .gpio0 = 0x0001D701,
+ .gpio1 = 0x0000B207,
+ .gpio2 = 0x0001D701,
+ .gpio3 = 0x02000000,
+ },{
+ .type = CX88_VMUX_COMPOSITE2,
+ .vmux = 2,
+ .gpio0 = 0x0001D503,
+ .gpio1 = 0x0000B207,
+ .gpio2 = 0x0001D503,
+ .gpio3 = 0x02000000,
+ },{
+ .type = CX88_VMUX_SVIDEO,
+ .vmux = 3,
+ .gpio0 = 0x0001D701,
+ .gpio1 = 0x0000B207,
+ .gpio2 = 0x0001D701,
+ .gpio3 = 0x02000000,
}},
+ .radio = {
+ .type = CX88_RADIO,
+ .gpio0 = 0x00015702,
+ .gpio1 = 0x0000F207,
+ .gpio2 = 0x00015702,
+ .gpio3 = 0x02000000,
+ },
.mpeg = CX88_MPEG_DVB,
},
[CX88_BOARD_GENIATECH_DVBS] = {
_______________________________________________
linux-dvb mailing list
linux-dvb@linuxtv.org
http://www.linuxtv.org/cgi-bin/mailman/listinfo/linux-dvb
^ permalink raw reply [flat|nested] 4+ messages in thread* [linux-dvb] [PATCH] WinFast DTV2000 H: add support for missing analog inputs
@ 2008-11-09 13:37 Vincent Pelletier
2008-11-10 0:49 ` Jonathan
0 siblings, 1 reply; 4+ messages in thread
From: Vincent Pelletier @ 2008-11-09 13:37 UTC (permalink / raw)
To: linux-dvb; +Cc: khali
[-- Attachment #1: Type: text/plain, Size: 452 bytes --]
WinFast DTV2000 H: add support for missing analog inputs
From: Vincent Pelletier <plr.vincent@gmail.com>
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>
---
GPIO values retrieved using RegSpy under Windows XP with vendor's driver &
software.
--
Vincent Pelletier
[-- Attachment #2: cx88-cards.c.diff --]
[-- Type: text/x-diff, Size: 1286 bytes --]
diff -r 46604f47fca1 linux/drivers/media/video/cx88/cx88-cards.c
--- a/linux/drivers/media/video/cx88/cx88-cards.c Fri Nov 07 15:24:18 2008 -0200
+++ b/linux/drivers/media/video/cx88/cx88-cards.c Sun Nov 09 14:31:26 2008 +0100
@@ -1270,7 +1270,6 @@
},
},
[CX88_BOARD_WINFAST_DTV2000H] = {
- /* video inputs and radio still in testing */
.name = "WinFast DTV2000 H",
.tuner_type = TUNER_PHILIPS_FMD1216ME_MK3,
.radio_type = UNSET,
@@ -1284,7 +1283,35 @@
.gpio1 = 0x00008203,
.gpio2 = 0x00017304,
.gpio3 = 0x02000000,
+ },{
+ .type = CX88_VMUX_COMPOSITE1,
+ .vmux = 1,
+ .gpio0 = 0x0001d701,
+ .gpio1 = 0x0000b207,
+ .gpio2 = 0x0001d701,
+ .gpio3 = 0x02000000,
+ },{
+ .type = CX88_VMUX_COMPOSITE2,
+ .vmux = 2,
+ .gpio0 = 0x0001d503,
+ .gpio1 = 0x0000b207,
+ .gpio2 = 0x0001d503,
+ .gpio3 = 0x02000000,
+ },{
+ .type = CX88_VMUX_SVIDEO,
+ .vmux = 3,
+ .gpio0 = 0x0001d701,
+ .gpio1 = 0x0000b207,
+ .gpio2 = 0x0001d701,
+ .gpio3 = 0x02000000,
}},
+ .radio = {
+ .type = CX88_RADIO,
+ .gpio0 = 0x00015702,
+ .gpio1 = 0x0000f207,
+ .gpio2 = 0x00015702,
+ .gpio3 = 0x02000000,
+ },
.mpeg = CX88_MPEG_DVB,
},
[CX88_BOARD_GENIATECH_DVBS] = {
[-- Attachment #3: Type: text/plain, Size: 150 bytes --]
_______________________________________________
linux-dvb mailing list
linux-dvb@linuxtv.org
http://www.linuxtv.org/cgi-bin/mailman/listinfo/linux-dvb
^ permalink raw reply [flat|nested] 4+ messages in thread* Re: [linux-dvb] [PATCH] WinFast DTV2000 H: add support for missing analog inputs
2008-11-09 13:37 Vincent Pelletier
@ 2008-11-10 0:49 ` Jonathan
2008-11-10 1:17 ` hermann pitton
0 siblings, 1 reply; 4+ messages in thread
From: Jonathan @ 2008-11-10 0:49 UTC (permalink / raw)
To: linux-dvb
THAT'S GREAT VINCENT!!!!
Just out of interest, does anyone know how long it takes these to flow through
to distributions such as Ubuntu?
Thanks
Jon
On Mon, 10 Nov 2008 12:37:13 am Vincent Pelletier wrote:
> WinFast DTV2000 H: add support for missing analog inputs
>
> From: Vincent Pelletier <plr.vincent@gmail.com>
>
> 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>
>
> ---
>
> GPIO values retrieved using RegSpy under Windows XP with vendor's driver &
> software.
_______________________________________________
linux-dvb mailing list
linux-dvb@linuxtv.org
http://www.linuxtv.org/cgi-bin/mailman/listinfo/linux-dvb
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2008-11-10 1:19 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-06-02 9:33 [linux-dvb] [PATCH] WinFast DTV2000 H: add support for missing analog inputs Vincent Pelletier
-- strict thread matches above, loose matches on Subject: below --
2008-11-09 13:37 Vincent Pelletier
2008-11-10 0:49 ` Jonathan
2008-11-10 1:17 ` hermann pitton
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox