* [linux-dvb] [PATCH] Add support for the Gigabyte R8000-HT USB DVB-T adapter
@ 2008-08-29 8:48 Finn Thain
2008-08-29 10:02 ` Patrick Boettcher
0 siblings, 1 reply; 9+ messages in thread
From: Finn Thain @ 2008-08-29 8:48 UTC (permalink / raw)
To: v4l-dvb-maintainer; +Cc: linux-dvb
Add support for the Gigabyte R8000-HT USB DVB-T adapter.
Thanks to Ilia Penev for the tip-off that this device is much the same as
(identical to?) a Terratec Cinergy HT USB XE, and for the firmware hints:
http://linuxtv.org/pipermail/linux-dvb/2008-August/028108.html
DVB functionality tested OK with xine.
This diff is based on the linuxtv.org v4l-dvb mercurial repo.
Signed-off-by: Finn Thain <fthain@telegraphics.com.au>
diff -ru linux/drivers/media/dvb/dvb-usb/dib0700_devices.c linux/drivers/media/dvb/dvb-usb/dib0700_devices.c
--- linux/drivers/media/dvb/dvb-usb/dib0700_devices.c 2008-08-29 00:38:14.000000000 +1000
+++ linux/drivers/media/dvb/dvb-usb/dib0700_devices.c 2008-08-29 00:54:03.000000000 +1000
@@ -1117,7 +1117,8 @@
{ USB_DEVICE(USB_VID_TERRATEC, USB_PID_TERRATEC_CINERGY_HT_EXPRESS) },
{ USB_DEVICE(USB_VID_TERRATEC, USB_PID_TERRATEC_CINERGY_T_XXS) },
{ USB_DEVICE(USB_VID_LEADTEK, USB_PID_WINFAST_DTV_DONGLE_STK7700P_2) },
- { USB_DEVICE(USB_VID_HAUPPAUGE, USB_PID_HAUPPAUGE_NOVA_TD_STICK_52009) },
+/* 35 */{ USB_DEVICE(USB_VID_HAUPPAUGE, USB_PID_HAUPPAUGE_NOVA_TD_STICK_52009) },
+ { USB_DEVICE(USB_VID_GIGABYTE, USB_PID_GIGABYTE_U8000) },
{ 0 } /* Terminating entry */
};
MODULE_DEVICE_TABLE(usb, dib0700_usb_id_table);
@@ -1125,7 +1126,7 @@
#define DIB0700_DEFAULT_DEVICE_PROPERTIES \
.caps = DVB_USB_IS_AN_I2C_ADAPTER, \
.usb_ctrl = DEVICE_SPECIFIC, \
- .firmware = "dvb-usb-dib0700-1.10.fw", \
+ .firmware = "dvb-usb-dib0700-03-pre1.fw", \
.download_firmware = dib0700_download_firmware, \
.no_reconnect = 1, \
.size_of_priv = sizeof(struct dib0700_state), \
@@ -1403,8 +1404,12 @@
},
},
- .num_device_descs = 3,
+ .num_device_descs = 4,
.devices = {
+ { "Gigabyte U8000-RH",
+ { &dib0700_usb_id_table[36], NULL },
+ { NULL },
+ },
{ "Terratec Cinergy HT USB XE",
{ &dib0700_usb_id_table[27], NULL },
{ NULL },
diff -ru linux/drivers/media/dvb/dvb-usb/dvb-usb-ids.h linux/drivers/media/dvb/dvb-usb/dvb-usb-ids.h
--- linux/drivers/media/dvb/dvb-usb/dvb-usb-ids.h 2008-08-29 00:38:14.000000000 +1000
+++ linux/drivers/media/dvb/dvb-usb/dvb-usb-ids.h 2008-08-29 00:39:51.000000000 +1000
@@ -204,6 +204,7 @@
#define USB_PID_LIFEVIEW_TV_WALKER_TWIN_COLD 0x0514
#define USB_PID_LIFEVIEW_TV_WALKER_TWIN_WARM 0x0513
#define USB_PID_GIGABYTE_U7000 0x7001
+#define USB_PID_GIGABYTE_U8000 0x7002
#define USB_PID_ASUS_U3000 0x171f
#define USB_PID_ASUS_U3100 0x173f
#define USB_PID_YUAN_EC372S 0x1edc
_______________________________________________
linux-dvb mailing list
linux-dvb@linuxtv.org
http://www.linuxtv.org/cgi-bin/mailman/listinfo/linux-dvb
^ permalink raw reply [flat|nested] 9+ messages in thread* Re: [linux-dvb] [PATCH] Add support for the Gigabyte R8000-HT USB DVB-T adapter
2008-08-29 8:48 [linux-dvb] [PATCH] Add support for the Gigabyte R8000-HT USB DVB-T adapter Finn Thain
@ 2008-08-29 10:02 ` Patrick Boettcher
2008-08-29 11:46 ` Finn Thain
0 siblings, 1 reply; 9+ messages in thread
From: Patrick Boettcher @ 2008-08-29 10:02 UTC (permalink / raw)
To: Finn Thain; +Cc: v4l-dvb-maintainer, linux-dvb
Hi Finn,
Some comments below:
On Fri, 29 Aug 2008, Finn Thain wrote:
> .caps = DVB_USB_IS_AN_I2C_ADAPTER, \
> .usb_ctrl = DEVICE_SPECIFIC, \
> - .firmware = "dvb-usb-dib0700-1.10.fw", \
> + .firmware = "dvb-usb-dib0700-03-pre1.fw", \
> .download_firmware = dib0700_download_firmware, \
Why that? Have you tried the hardware with the dvb-usb-dib0700-1.10.fw?
Does it not work?
Changing it at this place in the code is affect _all_ devices - this is
not acceptable.
Please try the 1.10 firmware and send a new patch in case it is working.
Patrick.
_______________________________________________
linux-dvb mailing list
linux-dvb@linuxtv.org
http://www.linuxtv.org/cgi-bin/mailman/listinfo/linux-dvb
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [linux-dvb] [PATCH] Add support for the Gigabyte R8000-HT USB DVB-T adapter
2008-08-29 10:02 ` Patrick Boettcher
@ 2008-08-29 11:46 ` Finn Thain
2008-08-29 11:58 ` Patrick Boettcher
0 siblings, 1 reply; 9+ messages in thread
From: Finn Thain @ 2008-08-29 11:46 UTC (permalink / raw)
To: Patrick Boettcher; +Cc: v4l-dvb-maintainer, linux-dvb
On Fri, 29 Aug 2008, Patrick Boettcher wrote:
> Hi Finn,
>
> Some comments below:
>
> On Fri, 29 Aug 2008, Finn Thain wrote:
> > .caps = DVB_USB_IS_AN_I2C_ADAPTER, \
> > .usb_ctrl = DEVICE_SPECIFIC, \
> > - .firmware = "dvb-usb-dib0700-1.10.fw", \
> > + .firmware = "dvb-usb-dib0700-03-pre1.fw", \
> > .download_firmware = dib0700_download_firmware, \
>
> Why that? Have you tried the hardware with the dvb-usb-dib0700-1.10.fw?
> Does it not work?
Not sure. My test with that firmware was inconclusive, and then I found
Ilia's post, which implied that it wouldn't work anyway. I need to test it
again now that everything else works.
> Changing it at this place in the code is affect _all_ devices - this is
> not acceptable.
>
> Please try the 1.10 firmware and send a new patch in case it is working.
There are a some links to that file in google. But renaming firmware files
seems to be common.
Can you send me a firmware file to test, or the md5sum of the accepted
firmware? The linux/Documentation/dvb/get_dvb_firmware yields a file
called dvb-dibusb-5.0.0.11.fw but I guess that's not it.
Thanks,
Finn
>
> Patrick.
>
>
_______________________________________________
linux-dvb mailing list
linux-dvb@linuxtv.org
http://www.linuxtv.org/cgi-bin/mailman/listinfo/linux-dvb
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [linux-dvb] [PATCH] Add support for the Gigabyte R8000-HT USB DVB-T adapter
2008-08-29 11:46 ` Finn Thain
@ 2008-08-29 11:58 ` Patrick Boettcher
2008-08-29 12:16 ` [linux-dvb] [v4l-dvb-maintainer] " Michael Krufky
2008-09-01 14:31 ` [linux-dvb] [PATCH] Add support for the Gigabyte R8000-HT USB DVB-T adapter, take 2 Finn Thain
0 siblings, 2 replies; 9+ messages in thread
From: Patrick Boettcher @ 2008-08-29 11:58 UTC (permalink / raw)
To: Finn Thain; +Cc: v4l-dvb-maintainer, linux-dvb
You can find it here:
http://www.wi-bw.tfh-wildau.de/~pboettch/home/files/
5878ebfcba2d8deb90b9120eb89b02da dvb-usb-dib0700-1.10.fw
Patrick.
On Fri, 29 Aug 2008, Finn Thain wrote:
>
>
> On Fri, 29 Aug 2008, Patrick Boettcher wrote:
>
>> Hi Finn,
>>
>> Some comments below:
>>
>> On Fri, 29 Aug 2008, Finn Thain wrote:
>>> .caps = DVB_USB_IS_AN_I2C_ADAPTER, \
>>> .usb_ctrl = DEVICE_SPECIFIC, \
>>> - .firmware = "dvb-usb-dib0700-1.10.fw", \
>>> + .firmware = "dvb-usb-dib0700-03-pre1.fw", \
>>> .download_firmware = dib0700_download_firmware, \
>>
>> Why that? Have you tried the hardware with the dvb-usb-dib0700-1.10.fw?
>> Does it not work?
>
> Not sure. My test with that firmware was inconclusive, and then I found
> Ilia's post, which implied that it wouldn't work anyway. I need to test it
> again now that everything else works.
>
>> Changing it at this place in the code is affect _all_ devices - this is
>> not acceptable.
>>
>> Please try the 1.10 firmware and send a new patch in case it is working.
>
> There are a some links to that file in google. But renaming firmware files
> seems to be common.
>
> Can you send me a firmware file to test, or the md5sum of the accepted
> firmware? The linux/Documentation/dvb/get_dvb_firmware yields a file
> called dvb-dibusb-5.0.0.11.fw but I guess that's not it.
>
> Thanks,
> Finn
>
>
>
>>
>> Patrick.
>>
>>
>
_______________________________________________
linux-dvb mailing list
linux-dvb@linuxtv.org
http://www.linuxtv.org/cgi-bin/mailman/listinfo/linux-dvb
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [linux-dvb] [v4l-dvb-maintainer] [PATCH] Add support for the Gigabyte R8000-HT USB DVB-T adapter
2008-08-29 11:58 ` Patrick Boettcher
@ 2008-08-29 12:16 ` Michael Krufky
2008-09-01 14:31 ` [linux-dvb] [PATCH] Add support for the Gigabyte R8000-HT USB DVB-T adapter, take 2 Finn Thain
1 sibling, 0 replies; 9+ messages in thread
From: Michael Krufky @ 2008-08-29 12:16 UTC (permalink / raw)
To: Patrick Boettcher; +Cc: v4l-dvb-maintainer, linux-dvb
On Fri, Aug 29, 2008 at 7:58 AM, Patrick Boettcher
<patrick.boettcher@desy.de> wrote:
> You can find it here:
>
> http://www.wi-bw.tfh-wildau.de/~pboettch/home/files/
>
> 5878ebfcba2d8deb90b9120eb89b02da dvb-usb-dib0700-1.10.fw
>
> Patrick.
Patrick and Finn,
Please note that I sent this pull request to Mauro yesterday:
http://linuxtv.org/hg/~mkrufky/bristol
- dib0700: add comment to identify 35th USB id pair
- dib0700: add basic support for Hauppauge Nova-TD-500 (84xxx)
dib0700_devices.c | 9 +++++++--
dvb-usb-ids.h | 1 +
2 files changed, 8 insertions(+), 2 deletions(-)
...it might just be a better idea to regenerate the patch against this
tree, to avoid a merge conflict.
Regards,
Mike
_______________________________________________
linux-dvb mailing list
linux-dvb@linuxtv.org
http://www.linuxtv.org/cgi-bin/mailman/listinfo/linux-dvb
^ permalink raw reply [flat|nested] 9+ messages in thread
* [linux-dvb] [PATCH] Add support for the Gigabyte R8000-HT USB DVB-T adapter, take 2
2008-08-29 11:58 ` Patrick Boettcher
2008-08-29 12:16 ` [linux-dvb] [v4l-dvb-maintainer] " Michael Krufky
@ 2008-09-01 14:31 ` Finn Thain
2008-09-01 14:43 ` [linux-dvb] [v4l-dvb-maintainer] " Michael Krufky
1 sibling, 1 reply; 9+ messages in thread
From: Finn Thain @ 2008-09-01 14:31 UTC (permalink / raw)
To: v4l-dvb-maintainer; +Cc: linux-dvb
Add support for the Gigabyte R8000-HT USB DVB-T adapter.
Thanks to Ilia Penev for the tip-off that this device is much the same as
(identical to?) a Terratec Cinergy HT USB XE, and for the firmware hints:
http://linuxtv.org/pipermail/linux-dvb/2008-August/028108.html
DVB functionality tested OK with xine using the usual dib0700 firmware.
This diff is based on the latest latest linuxtv.org v4l-dvb mercurial
repo.
Signed-off-by: Finn Thain <fthain@telegraphics.com.au>
--- linux/drivers/media/dvb/dvb-usb/dib0700_devices.c 2008-09-01 22:33:12.000000000 +1000
+++ linux/drivers/media/dvb/dvb-usb/dib0700_devices.c 2008-09-01 22:37:32.000000000 +1000
@@ -1119,6 +1119,7 @@
{ USB_DEVICE(USB_VID_LEADTEK, USB_PID_WINFAST_DTV_DONGLE_STK7700P_2) },
/* 35 */{ USB_DEVICE(USB_VID_HAUPPAUGE, USB_PID_HAUPPAUGE_NOVA_TD_STICK_52009) },
{ USB_DEVICE(USB_VID_HAUPPAUGE, USB_PID_HAUPPAUGE_NOVA_T_500_3) },
+ { USB_DEVICE(USB_VID_GIGABYTE, USB_PID_GIGABYTE_U8000) },
{ 0 } /* Terminating entry */
};
MODULE_DEVICE_TABLE(usb, dib0700_usb_id_table);
@@ -1408,8 +1409,12 @@
},
},
- .num_device_descs = 3,
+ .num_device_descs = 4,
.devices = {
+ { "Gigabyte U8000-RH",
+ { &dib0700_usb_id_table[37], NULL },
+ { NULL },
+ },
{ "Terratec Cinergy HT USB XE",
{ &dib0700_usb_id_table[27], NULL },
{ NULL },
--- linux/drivers/media/dvb/dvb-usb/dvb-usb-ids.h 2008-09-01 22:33:12.000000000 +1000
+++ linux/drivers/media/dvb/dvb-usb/dvb-usb-ids.h 2008-09-01 22:37:32.000000000 +1000
@@ -205,6 +205,7 @@
#define USB_PID_LIFEVIEW_TV_WALKER_TWIN_COLD 0x0514
#define USB_PID_LIFEVIEW_TV_WALKER_TWIN_WARM 0x0513
#define USB_PID_GIGABYTE_U7000 0x7001
+#define USB_PID_GIGABYTE_U8000 0x7002
#define USB_PID_ASUS_U3000 0x171f
#define USB_PID_ASUS_U3100 0x173f
#define USB_PID_YUAN_EC372S 0x1edc
_______________________________________________
linux-dvb mailing list
linux-dvb@linuxtv.org
http://www.linuxtv.org/cgi-bin/mailman/listinfo/linux-dvb
^ permalink raw reply [flat|nested] 9+ messages in thread* Re: [linux-dvb] [v4l-dvb-maintainer] [PATCH] Add support for the Gigabyte R8000-HT USB DVB-T adapter, take 2
2008-09-01 14:31 ` [linux-dvb] [PATCH] Add support for the Gigabyte R8000-HT USB DVB-T adapter, take 2 Finn Thain
@ 2008-09-01 14:43 ` Michael Krufky
2008-09-02 4:44 ` [linux-dvb] [PATCH] Add support for the Gigabyte R8000-HT USB DVB-T adapter, take 3 Finn Thain
0 siblings, 1 reply; 9+ messages in thread
From: Michael Krufky @ 2008-09-01 14:43 UTC (permalink / raw)
To: Finn Thain; +Cc: v4l-dvb-maintainer, linux-dvb
Finn Thain wrote:
> Add support for the Gigabyte R8000-HT USB DVB-T adapter.
>
> Thanks to Ilia Penev for the tip-off that this device is much the same as
> (identical to?) a Terratec Cinergy HT USB XE, and for the firmware hints:
> http://linuxtv.org/pipermail/linux-dvb/2008-August/028108.html
>
> DVB functionality tested OK with xine using the usual dib0700 firmware.
>
> This diff is based on the latest latest linuxtv.org v4l-dvb mercurial
> repo.
>
>
> Signed-off-by: Finn Thain <fthain@telegraphics.com.au>
>
Your patch looks fine, but I have one comment, please see below:
> --- linux/drivers/media/dvb/dvb-usb/dib0700_devices.c 2008-09-01 22:33:12.000000000 +1000
> +++ linux/drivers/media/dvb/dvb-usb/dib0700_devices.c 2008-09-01 22:37:32.000000000 +1000
> @@ -1119,6 +1119,7 @@
> { USB_DEVICE(USB_VID_LEADTEK, USB_PID_WINFAST_DTV_DONGLE_STK7700P_2) },
> /* 35 */{ USB_DEVICE(USB_VID_HAUPPAUGE, USB_PID_HAUPPAUGE_NOVA_TD_STICK_52009) },
> { USB_DEVICE(USB_VID_HAUPPAUGE, USB_PID_HAUPPAUGE_NOVA_T_500_3) },
> + { USB_DEVICE(USB_VID_GIGABYTE, USB_PID_GIGABYTE_U8000) },
> { 0 } /* Terminating entry */
> };
> MODULE_DEVICE_TABLE(usb, dib0700_usb_id_table);
> @@ -1408,8 +1409,12 @@
> },
> },
>
> - .num_device_descs = 3,
> + .num_device_descs = 4,
> .devices = {
> + { "Gigabyte U8000-RH",
> + { &dib0700_usb_id_table[37], NULL },
> + { NULL },
> + },
> { "Terratec Cinergy HT USB XE",
> { &dib0700_usb_id_table[27], NULL },
> { NULL },
>
You've added your new entry to be the first listed in the .devices section.
We usually prefer to add new entries below those already existing.
Would you regenerate this again with the new device listed after the
other three preexisting ones?
> --- linux/drivers/media/dvb/dvb-usb/dvb-usb-ids.h 2008-09-01 22:33:12.000000000 +1000
> +++ linux/drivers/media/dvb/dvb-usb/dvb-usb-ids.h 2008-09-01 22:37:32.000000000 +1000
> @@ -205,6 +205,7 @@
> #define USB_PID_LIFEVIEW_TV_WALKER_TWIN_COLD 0x0514
> #define USB_PID_LIFEVIEW_TV_WALKER_TWIN_WARM 0x0513
> #define USB_PID_GIGABYTE_U7000 0x7001
> +#define USB_PID_GIGABYTE_U8000 0x7002
> #define USB_PID_ASUS_U3000 0x171f
> #define USB_PID_ASUS_U3100 0x173f
> #define USB_PID_YUAN_EC372S 0x1edc
>
>
Cheers,
Mike
_______________________________________________
linux-dvb mailing list
linux-dvb@linuxtv.org
http://www.linuxtv.org/cgi-bin/mailman/listinfo/linux-dvb
^ permalink raw reply [flat|nested] 9+ messages in thread* [linux-dvb] [PATCH] Add support for the Gigabyte R8000-HT USB DVB-T adapter, take 3
2008-09-01 14:43 ` [linux-dvb] [v4l-dvb-maintainer] " Michael Krufky
@ 2008-09-02 4:44 ` Finn Thain
2008-09-02 7:58 ` Patrick Boettcher
0 siblings, 1 reply; 9+ messages in thread
From: Finn Thain @ 2008-09-02 4:44 UTC (permalink / raw)
To: v4l-dvb-maintainer; +Cc: linux-dvb
Add support for the Gigabyte R8000-HT USB DVB-T adapter.
Thanks to Ilia Penev for the tip-off that this device is much the same as
(identical to?) a Terratec Cinergy HT USB XE, and for the firmware hints:
http://linuxtv.org/pipermail/linux-dvb/2008-August/028108.html
DVB functionality tested OK with xine using the usual dib0700 firmware.
This diff is based on the latest latest linuxtv.org v4l-dvb mercurial
repo.
Signed-off-by: Finn Thain <fthain@telegraphics.com.au>
diff -r 6032ecd6ad7e linux/drivers/media/dvb/dvb-usb/dib0700_devices.c
--- a/linux/drivers/media/dvb/dvb-usb/dib0700_devices.c Sat Aug 30 11:07:04 2008 -0300
+++ b/linux/drivers/media/dvb/dvb-usb/dib0700_devices.c Tue Sep 02 14:40:12 2008 +1000
@@ -1119,6 +1119,7 @@ struct usb_device_id dib0700_usb_id_tabl
{ USB_DEVICE(USB_VID_LEADTEK, USB_PID_WINFAST_DTV_DONGLE_STK7700P_2) },
/* 35 */{ USB_DEVICE(USB_VID_HAUPPAUGE, USB_PID_HAUPPAUGE_NOVA_TD_STICK_52009) },
{ USB_DEVICE(USB_VID_HAUPPAUGE, USB_PID_HAUPPAUGE_NOVA_T_500_3) },
+ { USB_DEVICE(USB_VID_GIGABYTE, USB_PID_GIGABYTE_U8000) },
{ 0 } /* Terminating entry */
};
MODULE_DEVICE_TABLE(usb, dib0700_usb_id_table);
@@ -1408,7 +1409,7 @@ struct dvb_usb_device_properties dib0700
},
},
- .num_device_descs = 3,
+ .num_device_descs = 4,
.devices = {
{ "Terratec Cinergy HT USB XE",
{ &dib0700_usb_id_table[27], NULL },
@@ -1422,6 +1423,10 @@ struct dvb_usb_device_properties dib0700
{ &dib0700_usb_id_table[32], NULL },
{ NULL },
},
+ { "Gigabyte U8000-RH",
+ { &dib0700_usb_id_table[37], NULL },
+ { NULL },
+ },
},
.rc_interval = DEFAULT_RC_INTERVAL,
.rc_key_map = dib0700_rc_keys,
diff -r 6032ecd6ad7e linux/drivers/media/dvb/dvb-usb/dvb-usb-ids.h
--- a/linux/drivers/media/dvb/dvb-usb/dvb-usb-ids.h Sat Aug 30 11:07:04 2008 -0300
+++ b/linux/drivers/media/dvb/dvb-usb/dvb-usb-ids.h Tue Sep 02 14:40:12 2008 +1000
@@ -205,6 +205,7 @@
#define USB_PID_LIFEVIEW_TV_WALKER_TWIN_COLD 0x0514
#define USB_PID_LIFEVIEW_TV_WALKER_TWIN_WARM 0x0513
#define USB_PID_GIGABYTE_U7000 0x7001
+#define USB_PID_GIGABYTE_U8000 0x7002
#define USB_PID_ASUS_U3000 0x171f
#define USB_PID_ASUS_U3100 0x173f
#define USB_PID_YUAN_EC372S 0x1edc
_______________________________________________
linux-dvb mailing list
linux-dvb@linuxtv.org
http://www.linuxtv.org/cgi-bin/mailman/listinfo/linux-dvb
^ permalink raw reply [flat|nested] 9+ messages in thread* Re: [linux-dvb] [PATCH] Add support for the Gigabyte R8000-HT USB DVB-T adapter, take 3
2008-09-02 4:44 ` [linux-dvb] [PATCH] Add support for the Gigabyte R8000-HT USB DVB-T adapter, take 3 Finn Thain
@ 2008-09-02 7:58 ` Patrick Boettcher
0 siblings, 0 replies; 9+ messages in thread
From: Patrick Boettcher @ 2008-09-02 7:58 UTC (permalink / raw)
To: Finn Thain; +Cc: v4l-dvb maintainer list, linux-dvb
Hi Finn,
thanks for your patch - I will merge it later that day.
Patrick.
On Tue, 2 Sep 2008, Finn Thain wrote:
>
> Add support for the Gigabyte R8000-HT USB DVB-T adapter.
>
> Thanks to Ilia Penev for the tip-off that this device is much the same as
> (identical to?) a Terratec Cinergy HT USB XE, and for the firmware hints:
> http://linuxtv.org/pipermail/linux-dvb/2008-August/028108.html
>
> DVB functionality tested OK with xine using the usual dib0700 firmware.
>
> This diff is based on the latest latest linuxtv.org v4l-dvb mercurial
> repo.
>
>
> Signed-off-by: Finn Thain <fthain@telegraphics.com.au>
>
> diff -r 6032ecd6ad7e linux/drivers/media/dvb/dvb-usb/dib0700_devices.c
> --- a/linux/drivers/media/dvb/dvb-usb/dib0700_devices.c Sat Aug 30 11:07:04 2008 -0300
> +++ b/linux/drivers/media/dvb/dvb-usb/dib0700_devices.c Tue Sep 02 14:40:12 2008 +1000
> @@ -1119,6 +1119,7 @@ struct usb_device_id dib0700_usb_id_tabl
> { USB_DEVICE(USB_VID_LEADTEK, USB_PID_WINFAST_DTV_DONGLE_STK7700P_2) },
> /* 35 */{ USB_DEVICE(USB_VID_HAUPPAUGE, USB_PID_HAUPPAUGE_NOVA_TD_STICK_52009) },
> { USB_DEVICE(USB_VID_HAUPPAUGE, USB_PID_HAUPPAUGE_NOVA_T_500_3) },
> + { USB_DEVICE(USB_VID_GIGABYTE, USB_PID_GIGABYTE_U8000) },
> { 0 } /* Terminating entry */
> };
> MODULE_DEVICE_TABLE(usb, dib0700_usb_id_table);
> @@ -1408,7 +1409,7 @@ struct dvb_usb_device_properties dib0700
> },
> },
>
> - .num_device_descs = 3,
> + .num_device_descs = 4,
> .devices = {
> { "Terratec Cinergy HT USB XE",
> { &dib0700_usb_id_table[27], NULL },
> @@ -1422,6 +1423,10 @@ struct dvb_usb_device_properties dib0700
> { &dib0700_usb_id_table[32], NULL },
> { NULL },
> },
> + { "Gigabyte U8000-RH",
> + { &dib0700_usb_id_table[37], NULL },
> + { NULL },
> + },
> },
> .rc_interval = DEFAULT_RC_INTERVAL,
> .rc_key_map = dib0700_rc_keys,
> diff -r 6032ecd6ad7e linux/drivers/media/dvb/dvb-usb/dvb-usb-ids.h
> --- a/linux/drivers/media/dvb/dvb-usb/dvb-usb-ids.h Sat Aug 30 11:07:04 2008 -0300
> +++ b/linux/drivers/media/dvb/dvb-usb/dvb-usb-ids.h Tue Sep 02 14:40:12 2008 +1000
> @@ -205,6 +205,7 @@
> #define USB_PID_LIFEVIEW_TV_WALKER_TWIN_COLD 0x0514
> #define USB_PID_LIFEVIEW_TV_WALKER_TWIN_WARM 0x0513
> #define USB_PID_GIGABYTE_U7000 0x7001
> +#define USB_PID_GIGABYTE_U8000 0x7002
> #define USB_PID_ASUS_U3000 0x171f
> #define USB_PID_ASUS_U3100 0x173f
> #define USB_PID_YUAN_EC372S 0x1edc
>
> _______________________________________________
> linux-dvb mailing list
> linux-dvb@linuxtv.org
> http://www.linuxtv.org/cgi-bin/mailman/listinfo/linux-dvb
>
_______________________________________________
linux-dvb mailing list
linux-dvb@linuxtv.org
http://www.linuxtv.org/cgi-bin/mailman/listinfo/linux-dvb
^ permalink raw reply [flat|nested] 9+ messages in thread
end of thread, other threads:[~2008-09-02 7:58 UTC | newest]
Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-08-29 8:48 [linux-dvb] [PATCH] Add support for the Gigabyte R8000-HT USB DVB-T adapter Finn Thain
2008-08-29 10:02 ` Patrick Boettcher
2008-08-29 11:46 ` Finn Thain
2008-08-29 11:58 ` Patrick Boettcher
2008-08-29 12:16 ` [linux-dvb] [v4l-dvb-maintainer] " Michael Krufky
2008-09-01 14:31 ` [linux-dvb] [PATCH] Add support for the Gigabyte R8000-HT USB DVB-T adapter, take 2 Finn Thain
2008-09-01 14:43 ` [linux-dvb] [v4l-dvb-maintainer] " Michael Krufky
2008-09-02 4:44 ` [linux-dvb] [PATCH] Add support for the Gigabyte R8000-HT USB DVB-T adapter, take 3 Finn Thain
2008-09-02 7:58 ` Patrick Boettcher
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox