Re: usb/169428: [ugen] ugen not detecting all endpoints on device [regression]

2012-07-15 Thread linimon
Old Synopsis: ugen not detecting all endpoints on device
New Synopsis: [ugen] ugen not detecting all endpoints on device [regression]

Responsible-Changed-From-To: freebsd-bugs->freebsd-usb
Responsible-Changed-By: linimon
Responsible-Changed-When: Mon Jul 16 02:34:17 UTC 2012
Responsible-Changed-Why: 
reclassify.

http://www.freebsd.org/cgi/query-pr.cgi?pr=169428
___
freebsd-usb@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-usb
To unsubscribe, send any mail to "freebsd-usb-unsubscr...@freebsd.org"


Re: debugging failed USB3 device attachment

2012-07-15 Thread Hans Petter Selasky
On Sunday 08 July 2012 01:21:51 Aragon Gouveia wrote:
> Hi Hans,
> 
> On 07/06/12 08:54, Hans Petter Selasky wrote:
> > There is some magic to switch USB ports to USB 3.0 which is not in
> > FreeBSD yet. They have it in Linux, and you might be able to port that
> > code to BSD and try.
> 
> I know some C, but very little on USB architecture.  I'm curious enough
> to try, but a bit more direction would be helpful if you can spare some. :)



> 
> > Also, can you post output from "pciconf -lv" ?
> 
> Sure, and pardon my delay:
> 
> http://pastebin.com/Gxgv7W2F
> 
> BTW, is this behaviour BIOS related?  I recently setup another machine
> that had Intel's Z77 USB3 controller, and I don't remember having these
> issues when attaching the same USB3 device...
> 

Hi,

XHCI is very new, and there might be hardware differences out there.

BTW: The USB 3.0 switching found in Linux is for Pantherpoint only:

See /drivers/usb/host/pci-quirks.c in a recent Linux source code tree:

bool usb_is_intel_switchable_xhci(struct pci_dev *pdev)
{
return pdev->class == PCI_CLASS_SERIAL_USB_XHCI &&
pdev->vendor == PCI_VENDOR_ID_INTEL &&
pdev->device == PCI_DEVICE_ID_INTEL_PANTHERPOINT_XHCI;
}
EXPORT_SYMBOL_GPL(usb_is_intel_switchable_xhci);

--HPS
___
freebsd-usb@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-usb
To unsubscribe, send any mail to "freebsd-usb-unsubscr...@freebsd.org"


Re: usb/169789: commit references a PR

2012-07-15 Thread dfilter service
The following reply was made to PR usb/169789; it has been noted by GNATS.

From: dfil...@freebsd.org (dfilter service)
To: bug-follo...@freebsd.org
Cc:  
Subject: Re: usb/169789: commit references a PR
Date: Sun, 15 Jul 2012 18:12:21 + (UTC)

 Author: hselasky
 Date: Sun Jul 15 18:12:09 2012
 New Revision: 238493
 URL: http://svn.freebsd.org/changeset/base/238493
 
 Log:
   Add new USB device ID.
   
   PR:  usb/169789
   MFC after:   1 week
 
 Modified:
   head/sys/dev/usb/serial/u3g.c
   head/sys/dev/usb/usbdevs
 
 Modified: head/sys/dev/usb/serial/u3g.c
 ==
 --- head/sys/dev/usb/serial/u3g.c  Sun Jul 15 17:44:27 2012
(r238492)
 +++ head/sys/dev/usb/serial/u3g.c  Sun Jul 15 18:12:09 2012
(r238493)
 @@ -282,6 +282,8 @@ static const STRUCT_USB_HOST_ID u3g_devs
U3G_DEV(HUAWEI, E143F, U3GINIT_HUAWEI),
U3G_DEV(HUAWEI, E173, 0),
U3G_DEV(HUAWEI, E173_INIT, U3GINIT_HUAWEISCSI),
 +  U3G_DEV(HUAWEI, E3131, 0),
 +  U3G_DEV(HUAWEI, E3131_INIT, U3GINIT_HUAWEISCSI),
U3G_DEV(HUAWEI, E180V, U3GINIT_HUAWEI),
U3G_DEV(HUAWEI, E220, U3GINIT_HUAWEI),
U3G_DEV(HUAWEI, E220BIS, U3GINIT_HUAWEI),
 
 Modified: head/sys/dev/usb/usbdevs
 ==
 --- head/sys/dev/usb/usbdevs   Sun Jul 15 17:44:27 2012(r238492)
 +++ head/sys/dev/usb/usbdevs   Sun Jul 15 18:12:09 2012(r238493)
 @@ -1894,6 +1894,8 @@ product HUAWEI E143F 0x143f  3G modem
  product HUAWEI E1752  0x1446  3G modem
  product HUAWEI K3765  0x1465  3G modem
  product HUAWEI E1820  0x14ac  E1820 HSPA+ USB Slider
 +product HUAWEI E3131_INIT 0x14fe  3G modem initial
 +product HUAWEI E3131  0x1506  3G modem
  product HUAWEI K3765_INIT 0x1520  K3765 Initial
  product HUAWEI ETS20550x1803  CDMA modem
  product HUAWEI E173   0x1c05  3G modem
 ___
 svn-src-...@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/svn-src-all
 To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"
 
___
freebsd-usb@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-usb
To unsubscribe, send any mail to "freebsd-usb-unsubscr...@freebsd.org"