linux-media.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH TRY 2] Support for EVOLVEO XtraTV stick
@ 2015-08-31 18:04 CIJOML CIJOMLovic
  2015-08-31 18:35 ` Antti Palosaari
  0 siblings, 1 reply; 3+ messages in thread
From: CIJOML CIJOMLovic @ 2015-08-31 18:04 UTC (permalink / raw)
  To: linux-media, linux-kernel, mchehab

Hello guys,

please find out down this email patch to support EVOLVEO XtraTV stick.
This tuner is for android phones with microusb connecter, however with
reduction it works perfectly with linux kernel:
The device identify itself at USB bus as Bus 002 Device 004: ID
1f4d:a115 G-Tek Electronics Group
so I have created new vendor group but device named as its commercial name.

Thank you for merging this patch to upstream

Best regards

Michal


diff -urN media_build/linux/drivers/media/dvb-core/dvb-usb-ids.h
media_build.new/linux/drivers/media/dvb-core/dvb-usb-ids.h
--- media_build/linux/drivers/media/dvb-core/dvb-usb-ids.h
2015-05-11 13:20:08.000000000 +0200
+++ media_build.new/linux/drivers/media/dvb-core/dvb-usb-ids.h
2015-06-16 22:26:01.917990493 +0200
@@ -70,6 +70,8 @@
 #define USB_VID_EVOLUTEPC            0x1e59
 #define USB_VID_AZUREWAVE            0x13d3
 #define USB_VID_TECHNISAT            0x14f7
+#define USB_VID_GTEK                0x1f4d
+

 /* Product IDs */
 #define USB_PID_ADSTECH_USB2_COLD            0xa333
@@ -388,4 +390,5 @@
 #define USB_PID_PCTV_2002E_SE                           0x025d
 #define USB_PID_SVEON_STV27                             0xd3af
 #define USB_PID_TURBOX_DTT_2000                         0xd3a4
+#define USB_PID_EVOLVEO_XTRATV_STICK            0xa115
 #endif
diff -urN media_build/linux/drivers/media/usb/dvb-usb-v2/af9035.c
media_build.new/linux/drivers/media/usb/dvb-usb-v2/af9035.c
--- media_build/linux/drivers/media/usb/dvb-usb-v2/af9035.c
2015-05-30 17:32:46.000000000 +0200
+++ media_build.new/linux/drivers/media/usb/dvb-usb-v2/af9035.c
2015-06-16 22:26:14.561990868 +0200
@@ -2075,6 +2075,8 @@
         &af9035_props, "PCTV AndroiDTV (78e)", RC_MAP_IT913X_V1) },
     { DVB_USB_DEVICE(USB_VID_PCTV, USB_PID_PCTV_79E,
         &af9035_props, "PCTV microStick (79e)", RC_MAP_IT913X_V2) },
+    { DVB_USB_DEVICE(USB_VID_GTEK, USB_PID_EVOLVEO_XTRATV_STICK,
+        &af9035_props, "EVOLVEO XtraTV stick", RC_MAP_IT913X_V2) },

     /* IT930x devices */
     { DVB_USB_DEVICE(USB_VID_ITETECH, USB_PID_ITETECH_IT9303,
r

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH TRY 2] Support for EVOLVEO XtraTV stick
  2015-08-31 18:04 [PATCH TRY 2] Support for EVOLVEO XtraTV stick CIJOML CIJOMLovic
@ 2015-08-31 18:35 ` Antti Palosaari
  2016-08-01 20:35   ` CIJOML CIJOMLovic
  0 siblings, 1 reply; 3+ messages in thread
From: Antti Palosaari @ 2015-08-31 18:35 UTC (permalink / raw)
  To: CIJOML CIJOMLovic, linux-media

On 08/31/2015 09:04 PM, CIJOML CIJOMLovic wrote:
> Hello guys,
>
> please find out down this email patch to support EVOLVEO XtraTV stick.
> This tuner is for android phones with microusb connecter, however with
> reduction it works perfectly with linux kernel:
> The device identify itself at USB bus as Bus 002 Device 004: ID
> 1f4d:a115 G-Tek Electronics Group
> so I have created new vendor group but device named as its commercial name.
>
> Thank you for merging this patch to upstream

VID for GTEK is already defined there.

Could you remove also remote controller default keymap as I think there 
is no remote controller at all.

regards
Antti

>
> Best regards
>
> Michal
>
>
> diff -urN media_build/linux/drivers/media/dvb-core/dvb-usb-ids.h
> media_build.new/linux/drivers/media/dvb-core/dvb-usb-ids.h
> --- media_build/linux/drivers/media/dvb-core/dvb-usb-ids.h
> 2015-05-11 13:20:08.000000000 +0200
> +++ media_build.new/linux/drivers/media/dvb-core/dvb-usb-ids.h
> 2015-06-16 22:26:01.917990493 +0200
> @@ -70,6 +70,8 @@
>   #define USB_VID_EVOLUTEPC            0x1e59
>   #define USB_VID_AZUREWAVE            0x13d3
>   #define USB_VID_TECHNISAT            0x14f7
> +#define USB_VID_GTEK                0x1f4d
> +
>
>   /* Product IDs */
>   #define USB_PID_ADSTECH_USB2_COLD            0xa333
> @@ -388,4 +390,5 @@
>   #define USB_PID_PCTV_2002E_SE                           0x025d
>   #define USB_PID_SVEON_STV27                             0xd3af
>   #define USB_PID_TURBOX_DTT_2000                         0xd3a4
> +#define USB_PID_EVOLVEO_XTRATV_STICK            0xa115
>   #endif
> diff -urN media_build/linux/drivers/media/usb/dvb-usb-v2/af9035.c
> media_build.new/linux/drivers/media/usb/dvb-usb-v2/af9035.c
> --- media_build/linux/drivers/media/usb/dvb-usb-v2/af9035.c
> 2015-05-30 17:32:46.000000000 +0200
> +++ media_build.new/linux/drivers/media/usb/dvb-usb-v2/af9035.c
> 2015-06-16 22:26:14.561990868 +0200
> @@ -2075,6 +2075,8 @@
>           &af9035_props, "PCTV AndroiDTV (78e)", RC_MAP_IT913X_V1) },
>       { DVB_USB_DEVICE(USB_VID_PCTV, USB_PID_PCTV_79E,
>           &af9035_props, "PCTV microStick (79e)", RC_MAP_IT913X_V2) },
> +    { DVB_USB_DEVICE(USB_VID_GTEK, USB_PID_EVOLVEO_XTRATV_STICK,
> +        &af9035_props, "EVOLVEO XtraTV stick", RC_MAP_IT913X_V2) },
>
>       /* IT930x devices */
>       { DVB_USB_DEVICE(USB_VID_ITETECH, USB_PID_ITETECH_IT9303,
> r
> --
> To unsubscribe from this list: send the line "unsubscribe linux-media" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
>

-- 
http://palosaari.fi/

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH TRY 2] Support for EVOLVEO XtraTV stick
  2015-08-31 18:35 ` Antti Palosaari
@ 2016-08-01 20:35   ` CIJOML CIJOMLovic
  0 siblings, 0 replies; 3+ messages in thread
From: CIJOML CIJOMLovic @ 2016-08-01 20:35 UTC (permalink / raw)
  To: Antti Palosaari; +Cc: linux-media

Hello Antti,

where/how can I remove the key mapping? I am not familiar with this source.

Thank you for help

Regards

Michal

2015-08-31 20:35 GMT+02:00 Antti Palosaari <crope@iki.fi>:
> On 08/31/2015 09:04 PM, CIJOML CIJOMLovic wrote:
>>
>> Hello guys,
>>
>> please find out down this email patch to support EVOLVEO XtraTV stick.
>> This tuner is for android phones with microusb connecter, however with
>> reduction it works perfectly with linux kernel:
>> The device identify itself at USB bus as Bus 002 Device 004: ID
>> 1f4d:a115 G-Tek Electronics Group
>> so I have created new vendor group but device named as its commercial
>> name.
>>
>> Thank you for merging this patch to upstream
>
>
> VID for GTEK is already defined there.
>
> Could you remove also remote controller default keymap as I think there is
> no remote controller at all.
>
> regards
> Antti
>
>>
>> Best regards
>>
>> Michal
>>
>>
>> diff -urN media_build/linux/drivers/media/dvb-core/dvb-usb-ids.h
>> media_build.new/linux/drivers/media/dvb-core/dvb-usb-ids.h
>> --- media_build/linux/drivers/media/dvb-core/dvb-usb-ids.h
>> 2015-05-11 13:20:08.000000000 +0200
>> +++ media_build.new/linux/drivers/media/dvb-core/dvb-usb-ids.h
>> 2015-06-16 22:26:01.917990493 +0200
>> @@ -70,6 +70,8 @@
>>   #define USB_VID_EVOLUTEPC            0x1e59
>>   #define USB_VID_AZUREWAVE            0x13d3
>>   #define USB_VID_TECHNISAT            0x14f7
>> +#define USB_VID_GTEK                0x1f4d
>> +
>>
>>   /* Product IDs */
>>   #define USB_PID_ADSTECH_USB2_COLD            0xa333
>> @@ -388,4 +390,5 @@
>>   #define USB_PID_PCTV_2002E_SE                           0x025d
>>   #define USB_PID_SVEON_STV27                             0xd3af
>>   #define USB_PID_TURBOX_DTT_2000                         0xd3a4
>> +#define USB_PID_EVOLVEO_XTRATV_STICK            0xa115
>>   #endif
>> diff -urN media_build/linux/drivers/media/usb/dvb-usb-v2/af9035.c
>> media_build.new/linux/drivers/media/usb/dvb-usb-v2/af9035.c
>> --- media_build/linux/drivers/media/usb/dvb-usb-v2/af9035.c
>> 2015-05-30 17:32:46.000000000 +0200
>> +++ media_build.new/linux/drivers/media/usb/dvb-usb-v2/af9035.c
>> 2015-06-16 22:26:14.561990868 +0200
>> @@ -2075,6 +2075,8 @@
>>           &af9035_props, "PCTV AndroiDTV (78e)", RC_MAP_IT913X_V1) },
>>       { DVB_USB_DEVICE(USB_VID_PCTV, USB_PID_PCTV_79E,
>>           &af9035_props, "PCTV microStick (79e)", RC_MAP_IT913X_V2) },
>> +    { DVB_USB_DEVICE(USB_VID_GTEK, USB_PID_EVOLVEO_XTRATV_STICK,
>> +        &af9035_props, "EVOLVEO XtraTV stick", RC_MAP_IT913X_V2) },
>>
>>       /* IT930x devices */
>>       { DVB_USB_DEVICE(USB_VID_ITETECH, USB_PID_ITETECH_IT9303,
>> r
>> --
>> To unsubscribe from this list: send the line "unsubscribe linux-media" in
>> the body of a message to majordomo@vger.kernel.org
>> More majordomo info at  http://vger.kernel.org/majordomo-info.html
>>
>
> --
> http://palosaari.fi/

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2016-08-01 20:48 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-08-31 18:04 [PATCH TRY 2] Support for EVOLVEO XtraTV stick CIJOML CIJOMLovic
2015-08-31 18:35 ` Antti Palosaari
2016-08-01 20:35   ` CIJOML CIJOMLovic

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).