Date: Wed, 17 Aug 2011 13:26:23 +0200 (CEST) From: Marcin Cieslak <saper@saper.info> To: FreeBSD-gnats-submit@freebsd.org Cc: usb@freebsd.org, hselasky@freebsd.org Subject: [patch] Add support for Option GlobeTrotter Max 7.2 with new firmware (0x0af0/0x6711) to uhso(4) Message-ID: <201108171126.p7HBQNVS018307@radziecki.saper.info>
next in thread | raw e-mail | index | archive | help
>Submitter-Id: current-users >Originator: Marcin Cieslak >Confidential: no >Synopsis: [patch] Add support for Option GlobeTrotter Max 7.2 with new firmware (0x0af0/0x6711) to uhso(4) >Severity: non-critical >Priority: medium >Category: usb >Class: change-request >Release: FreeBSD 9.0-BETA1 amd64 >Environment: System: FreeBSD radziecki.saper.info 9.0-BETA1 FreeBSD 9.0-BETA1 #2 r224912M: Tue Aug 16 23:05:15 CEST 2011 root@radziecki.saper.info:/usr/obj/usr/src/sys/VAIO amd64 >Description: Newer firmware revisions of Option GlobeTrotter Max 7.2 (HSDPA-ready) a.k.a. GX0201 have a different product ID to indicate support for the high-speed network interface as provided by uhso(4). >How-To-Repeat: >Fix: --- uhso.patch begins here --- Index: usbdevs =================================================================== --- usbdevs (wersja 224912) +++ usbdevs (kopia robocza) @@ -2448,6 +2448,7 @@ product OPTION GT3GPLUS 0x6600 GlobeTrotter 3G+ datacard product OPTION GTICON322 0xd033 GlobeTrotter Icon322 storage product OPTION GTMAX36 0x6701 GlobeTrotter Max 3.6 Modem +product OPTION GTMAX72 0x6711 GlobeTrotter Max 7.2 HSDPA product OPTION GTHSDPA 0x6971 GlobeTrotter HSDPA product OPTION GTMAXHSUPA 0x7001 GlobeTrotter HSUPA product OPTION GTMAXHSUPAE 0x6901 GlobeTrotter HSUPA PCIe Index: net/uhso.c =================================================================== --- net/uhso.c (wersja 224912) +++ net/uhso.c (kopia robocza) @@ -249,6 +249,8 @@ static const STRUCT_USB_HOST_ID uhso_devs[] = { #define UHSO_DEV(v,p,i) { USB_VPI(USB_VENDOR_##v, USB_PRODUCT_##v##_##p, i) } + /* Option GlobeTrotter MAX 7.2 with upgraded firmware */ + UHSO_DEV(OPTION, GTMAX72, UHSO_STATIC_IFACE), /* Option GlobeSurfer iCON 7.2 */ UHSO_DEV(OPTION, GSICON72, UHSO_STATIC_IFACE), /* Option iCON 225 */ Index: /usr/src/share/man/man4/uhso.4 =================================================================== --- /usr/src/share/man/man4/uhso.4 (wersja 224912) +++ /usr/src/share/man/man4/uhso.4 (kopia robocza) @@ -79,6 +79,8 @@ .It Option GlobeSurfer iCON 7.2 (new firmware) .It +Option GlobeTrotter Max 7.2 (new firmware) +.It Option iCON 225 .It Option iCON 452 --- uhso.patch ends here ---
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201108171126.p7HBQNVS018307>