lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Date:	Fri, 03 May 2013 10:38:00 -0500
From:	Dan Williams <dcbw@...hat.com>
To:	Schemmel Hans-Christoph <Hans-Christoph.Schemmel@...alto.com>
Cc:	"linux-usb@...r.kernel.org" <linux-usb@...r.kernel.org>,
	"linux-kernel@...r.kernel.org" <linux-kernel@...r.kernel.org>
Subject: Re: [PATCH] USB: Added support for Cinterion's PLxx WWAN Interface

On Fri, 2013-05-03 at 09:39 +0200, Schemmel Hans-Christoph wrote:
> /drivers/net/usb/qmi_wwan.c: Added support for Cinterion's PLxx WWAN Interface by adding Cinterion's Vendor ID as well as Product ID and QMI_FIXED_INTF.
> 
> /drivers/usb/serial/option.c: Added support for Cinterion's PLxx WWAN Interface by blacklisting USB Interface 4 (WWAN Port). Renamed Product IDs.

Unfortunately, you'll need to split this patch up into two patches, one
patch sent to netdev@ for the qmi_wwan part (because it's considered
primarily net driver rather than USB) and a second patch to linux-usb@
for the option stuff, because it's a USB driver.

(confusing, I know, even though these are all for the same device, those
are the rules...)

Thanks!
Dan

> Signed-off-by: Hans-Christoph Schemmel <hans-christoph.schemmel@...alto.com>
> ---
> patch is against linux-3.9
> diff -uprN linux-3.9_original/drivers/net/usb/qmi_wwan.c linux-3.9/drivers/net/usb/qmi_wwan.c
> --- linux-3.9_original/drivers/net/usb/qmi_wwan.c	2013-04-29 02:36:01.000000000 +0200
> +++ linux-3.9/drivers/net/usb/qmi_wwan.c	2013-05-02 12:34:20.249979603 +0200
> @@ -414,6 +414,9 @@ static const struct driver_info	qmi_wwan
>  };
>  
>  #define HUAWEI_VENDOR_ID	0x12D1
> +#define CINTERION_VENDOR_ID	0x1E2D
> +
> +#define CINTERION_PRODUCT_PLxx	0x0060
>  
>  /* map QMI/wwan function by a fixed interface number */
>  #define QMI_FIXED_INTF(vend, prod, num) \
> @@ -569,6 +572,7 @@ static const struct usb_device_id produc
>  	{QMI_FIXED_INTF(0x1bbb, 0x011e, 4)},	/* Telekom Speedstick LTE II (Alcatel One Touch L100V LTE) */
>  	{QMI_FIXED_INTF(0x2357, 0x0201, 4)},	/* TP-LINK HSUPA Modem MA180 */
>  	{QMI_FIXED_INTF(0x1bc7, 0x1200, 5)},	/* Telit LE920 */
> +	{QMI_FIXED_INTF(CINTERION_VENDOR_ID, CINTERION_PRODUCT_PLxx, 4)},	/* Cinterion PLxx */
>  
>  	/* 4. Gobi 1000 devices */
>  	{QMI_GOBI1K_DEVICE(0x05c6, 0x9212)},	/* Acer Gobi Modem Device */
> diff -uprN linux-3.9_original/drivers/usb/serial/option.c linux-3.9/drivers/usb/serial/option.c
> --- linux-3.9_original/drivers/usb/serial/option.c	2013-04-29 02:36:01.000000000 +0200
> +++ linux-3.9/drivers/usb/serial/option.c	2013-05-02 12:28:12.044153769 +0200
> @@ -341,8 +341,8 @@ static void option_instat_callback(struc
>  #define CINTERION_PRODUCT_EU3_E			0x0051
>  #define CINTERION_PRODUCT_EU3_P			0x0052
>  #define CINTERION_PRODUCT_PH8			0x0053
> -#define CINTERION_PRODUCT_AH6			0x0055
> -#define CINTERION_PRODUCT_PLS8			0x0060
> +#define CINTERION_PRODUCT_AHxx			0x0055
> +#define CINTERION_PRODUCT_PLxx			0x0060
>  
>  /* Olivetti products */
>  #define OLIVETTI_VENDOR_ID			0x0b3c
> @@ -1263,8 +1263,9 @@ static const struct usb_device_id option
>  	{ USB_DEVICE(CINTERION_VENDOR_ID, CINTERION_PRODUCT_EU3_E) },
>  	{ USB_DEVICE(CINTERION_VENDOR_ID, CINTERION_PRODUCT_EU3_P) },
>  	{ USB_DEVICE(CINTERION_VENDOR_ID, CINTERION_PRODUCT_PH8) },
> -	{ USB_DEVICE(CINTERION_VENDOR_ID, CINTERION_PRODUCT_AH6) },
> -	{ USB_DEVICE(CINTERION_VENDOR_ID, CINTERION_PRODUCT_PLS8) },
> +	{ USB_DEVICE(CINTERION_VENDOR_ID, CINTERION_PRODUCT_AHxx) },
> +	{ USB_DEVICE(CINTERION_VENDOR_ID, CINTERION_PRODUCT_PLxx),
> +		.driver_info = (kernel_ulong_t)&net_intf4_blacklist },
>  	{ USB_DEVICE(CINTERION_VENDOR_ID, CINTERION_PRODUCT_HC28_MDM) }, 
>  	{ USB_DEVICE(CINTERION_VENDOR_ID, CINTERION_PRODUCT_HC28_MDMNET) },
>  	{ USB_DEVICE(SIEMENS_VENDOR_ID, CINTERION_PRODUCT_HC25_MDM) },
> --
> To unsubscribe from this list: send the line "unsubscribe linux-usb" in
> the body of a message to majordomo@...r.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html


--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ