From owner-freebsd-usb@FreeBSD.ORG Mon Mar 30 04:54:11 2015 Return-Path: Delivered-To: freebsd-usb@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 72D82D26 for ; Mon, 30 Mar 2015 04:54:11 +0000 (UTC) Received: from smtp.mei.co.jp (smtp.mei.co.jp [133.183.100.20]) by mx1.freebsd.org (Postfix) with ESMTP id 1847EE70 for ; Mon, 30 Mar 2015 04:54:10 +0000 (UTC) Received: from mail-gw.jp.panasonic.com ([157.8.1.157]) by smtp.mei.co.jp (8.12.11.20060614/3.7W/kc-maile11) with ESMTP id t2U4s2AS002518 for ; Mon, 30 Mar 2015 13:54:03 +0900 (JST) Received: from epochmail.jp.panasonic.com ([157.8.1.130]) by mail.jp.panasonic.com (8.11.6p2/3.7W/kc-maili14) with ESMTP id t2U4s3L06047 for ; Mon, 30 Mar 2015 13:54:03 +0900 Received: by epochmail.jp.panasonic.com (8.12.11.20060308/3.7W/lomi12) id t2U4s3F5011477; Mon, 30 Mar 2015 13:54:03 +0900 Received: from localhost by lomi12.jp.panasonic.com (8.12.11.20060308/3.7W) with ESMTP id t2U4s2ed011430; Mon, 30 Mar 2015 13:54:02 +0900 Date: Mon, 30 Mar 2015 13:54:02 +0900 (JST) Message-Id: <20150330.135402.19625324788487516.okuno.kohji@jp.panasonic.com> To: freebsd-usb@freebsd.org Subject: Why do we try to enter U1 mode in SuperSpeed? From: Kohji Okuno Organization: Panasonic Corporation X-Mailer: Mew version 6.6 on Emacs 24.4 / Mule 6.0 (HANACHIRUSATO) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-usb@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: FreeBSD support for USB List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 30 Mar 2015 04:54:11 -0000 Hi HPS I have a question. Why do we try to enter U1 mode in SuperSpeed? This is the following codes(***) In our proprietary environmen(This has a xHCI controller), when a device accept U1, the device may be strange status. Acutually, when I tried to connect "Western Digital My Passport Essential 320GB (P/N:WDBACY3200ABK-00)", this HDD was not recognized correctly. But, in PC environment, this HDD was recognized correctly. Regards, Kohji Okuno (***) usb_hub.c: 793 if (speed == USB_SPEED_SUPER) { 794 err = usbd_req_set_hub_u1_timeout(udev, NULL, 795 portno, 128 - (2 * udev->depth)); 796 if (err) { 797 DPRINTFN(0, "port %d U1 timeout " 798 "failed, error=%s\n", 799 portno, usbd_errstr(err)); 800 } 801 err = usbd_req_set_hub_u2_timeout(udev, NULL, 802 portno, 128 - (2 * udev->depth)); 803 if (err) { 804 DPRINTFN(0, "port %d U2 timeout " 805 "failed, error=%s\n", 806 portno, usbd_errstr(err)); 807 } 808 } From owner-freebsd-usb@FreeBSD.ORG Mon Mar 30 08:53:36 2015 Return-Path: Delivered-To: freebsd-usb@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 3797F59C for ; Mon, 30 Mar 2015 08:53:36 +0000 (UTC) Received: from mail.turbocat.net (mail.turbocat.net [IPv6:2a01:4f8:d16:4514::2]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id EAF0CC47 for ; Mon, 30 Mar 2015 08:53:35 +0000 (UTC) Received: from laptop015.home.selasky.org (cm-176.74.213.204.customer.telag.net [176.74.213.204]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by mail.turbocat.net (Postfix) with ESMTPSA id 136A11FE023; Mon, 30 Mar 2015 10:53:33 +0200 (CEST) Message-ID: <55190F3C.4070901@selasky.org> Date: Mon, 30 Mar 2015 10:54:20 +0200 From: Hans Petter Selasky User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:31.0) Gecko/20100101 Thunderbird/31.4.0 MIME-Version: 1.0 To: Kohji Okuno , freebsd-usb@freebsd.org Subject: Re: Why do we try to enter U1 mode in SuperSpeed? References: <20150330.135402.19625324788487516.okuno.kohji@jp.panasonic.com> In-Reply-To: <20150330.135402.19625324788487516.okuno.kohji@jp.panasonic.com> Content-Type: text/plain; charset=windows-1252; format=flowed Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-usb@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: FreeBSD support for USB List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 30 Mar 2015 08:53:36 -0000 On 03/30/15 06:54, Kohji Okuno wrote: > Hi HPS > > I have a question. > Why do we try to enter U1 mode in SuperSpeed? > This is the following codes(***) > > In our proprietary environmen(This has a xHCI controller), when a > device accept U1, the device may be strange status. Acutually, when I > tried to connect "Western Digital My Passport Essential 320GB > (P/N:WDBACY3200ABK-00)", this HDD was not recognized correctly. > But, in PC environment, this HDD was recognized correctly. > > Regards, > Kohji Okuno > > (***) > usb_hub.c: > 793 if (speed == USB_SPEED_SUPER) { > 794 err = usbd_req_set_hub_u1_timeout(udev, NULL, > 795 portno, 128 - (2 * udev->depth)); > 796 if (err) { > 797 DPRINTFN(0, "port %d U1 timeout " > 798 "failed, error=%s\n", > 799 portno, usbd_errstr(err)); > 800 } > 801 err = usbd_req_set_hub_u2_timeout(udev, NULL, > 802 portno, 128 - (2 * udev->depth)); > 803 if (err) { > 804 DPRINTFN(0, "port %d U2 timeout " > 805 "failed, error=%s\n", > 806 portno, usbd_errstr(err)); > 807 } > 808 } Hi, We are not trying to enter U1 mode, we only setup the U1 and U2 timeouts. Is there a flag in the USB descriptors that say this is not supported and that we need to set some other value? I thought all superspeed devices had to support these features and that switching in and out of the sleep modes was done by the XHCI hardware. --HPS From owner-freebsd-usb@FreeBSD.ORG Mon Mar 30 08:58:06 2015 Return-Path: Delivered-To: freebsd-usb@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 7284F86F for ; Mon, 30 Mar 2015 08:58:06 +0000 (UTC) Received: from ms-10.1blu.de (ms-10.1blu.de [178.254.4.101]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 9C94AC8E for ; Mon, 30 Mar 2015 08:58:05 +0000 (UTC) Received: from [82.113.98.52] (helo=localhost.unixarea.de) by ms-10.1blu.de with esmtpsa (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.76) (envelope-from ) id 1YcVW7-0004aK-Ep for freebsd-usb@freebsd.org; Mon, 30 Mar 2015 10:57:55 +0200 Received: from localhost.my.domain (c720-r276659 [127.0.0.1]) by localhost.unixarea.de (8.14.9/8.14.9) with ESMTP id t2U8vmVe016947 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO) for ; Mon, 30 Mar 2015 10:57:49 +0200 (CEST) (envelope-from guru@unixarea.de) Received: (from guru@localhost) by localhost.my.domain (8.14.9/8.14.9/Submit) id t2U8vlEV016946 for freebsd-usb@freebsd.org; Mon, 30 Mar 2015 10:57:47 +0200 (CEST) (envelope-from guru@unixarea.de) X-Authentication-Warning: localhost.my.domain: guru set sender to guru@unixarea.de using -f Date: Mon, 30 Mar 2015 10:57:46 +0200 From: Matthias Apitz To: freebsd-usb@freebsd.org Subject: Fwd: Re: [Ubuntu-phone] Ethernet through USB Message-ID: <20150330085746.GA16832@c720-r276659> Reply-To: Matthias Apitz Mail-Followup-To: Matthias Apitz , freebsd-usb@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: 8bit X-Operating-System: FreeBSD 11.0-CURRENT r269739 (i386) User-Agent: Mutt/1.5.23 (2014-03-12) X-Con-Id: 51246 X-Con-U: 0-guru X-Originating-IP: 82.113.98.52 X-BeenThere: freebsd-usb@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: FreeBSD support for USB List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 30 Mar 2015 08:58:06 -0000 Hello, I have a new cellphone, the BQ Aquaris E 4.5 Ubuntu Edition, i.e. it runs Ubuntu 14.10. When I connect this to the USB port of my 11-CURRENT netbook it gives in /var/log/messages: Mar 30 10:25:17 c720-r276659 kernel: ugen0.4: at usbus0 Mar 30 10:25:17 c720-r276659 root: Unknown USB device: vendor 0x2a47 product 0x2008 bus uhub0 I'm attaching as well what the ubuntu-phone folks think about their side of the story. Any chance that we could get support for it into the if_cdce driver? The vendorID is not listed in sys/dev/usb/usbdevs until now. Thanks matthias ----- Forwarded message from Oliver Grawert ----- Date: Mon, 30 Mar 2015 10:47:17 +0200 From: Oliver Grawert To: ubuntu-phone@lists.launchpad.net Subject: Re: [Ubuntu-phone] Ethernet through USB X-Mailer: Evolution 3.10.4-0ubuntu2 hi, Am Montag, den 30.03.2015, 10:34 +0200 schrieb Matthias Apitz: > Hello, > > My other Linux phone (Openmoko Freerunner) supports Ethernet through > USB. When the device is connected on the USB port of my FreeBSD laptop, > it is known by its vendor and product ID and the cdce driver creates an > network interface to route IP through. I'm already checking how to get > support in it for the device: > > Mar 30 10:25:17 c720-r276659 kernel: ugen0.4: at usbus0 > Mar 30 10:25:17 c720-r276659 root: Unknown USB device: vendor 0x2a47 product 0x2008 bus uhub0 > > in my beloved FreeBSD. > > Once this is done, has ubuntu-phone support for this at the other side > of the USB cable? Would be nice to talk SSH directly to it via USB and > not only over Wifi. the phablet-shell command from the phablet-tools package does exactly that ... (well, not with a full network setup, just with tunneling an ssh connection through adb) https://launchpad.net/phablet-tools has the source, it is shell, so should theoretically work on your BSD as well ... for networking the bq supports tethering via a usb device (run the following in the terminal app or via adb): android-gadget-service enable rndis that will create an usb0 network device on a linux,PC not sure what BSD does with it though :) ciao oli -- Mailing list: https://launchpad.net/~ubuntu-phone Post to : ubuntu-phone@lists.launchpad.net Unsubscribe : https://launchpad.net/~ubuntu-phone More help : https://help.launchpad.net/ListHelp ----- End forwarded message ----- -- Matthias Apitz, guru@unixarea.de, http://www.unixarea.de/ +49-170-4527211 "Wenn der Mensch von den Umständen gebildet wird, so muß man die Umstände menschlich bilden." "Si el hombre es formado por las circunstancias entonces es necesario formar humanamente las circunstancias", Karl Marx in Die heilige Familie / La sagrada familia (MEW 2, 138) From owner-freebsd-usb@FreeBSD.ORG Mon Mar 30 08:59:40 2015 Return-Path: Delivered-To: freebsd-usb@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 568F490E for ; Mon, 30 Mar 2015 08:59:40 +0000 (UTC) Received: from mail.turbocat.net (heidi.turbocat.net [88.198.202.214]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 167F9CA2 for ; Mon, 30 Mar 2015 08:59:39 +0000 (UTC) Received: from laptop015.home.selasky.org (cm-176.74.213.204.customer.telag.net [176.74.213.204]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by mail.turbocat.net (Postfix) with ESMTPSA id A5DC21FE023; Mon, 30 Mar 2015 10:59:37 +0200 (CEST) Message-ID: <551910A9.2080709@selasky.org> Date: Mon, 30 Mar 2015 11:00:25 +0200 From: Hans Petter Selasky User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:31.0) Gecko/20100101 Thunderbird/31.4.0 MIME-Version: 1.0 To: Matthias Apitz , freebsd-usb@freebsd.org Subject: Re: Fwd: Re: [Ubuntu-phone] Ethernet through USB References: <20150330085746.GA16832@c720-r276659> In-Reply-To: <20150330085746.GA16832@c720-r276659> Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-usb@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: FreeBSD support for USB List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 30 Mar 2015 08:59:40 -0000 On 03/30/15 10:57, Matthias Apitz wrote: > > Hello, > > I have a new cellphone, the BQ Aquaris E 4.5 Ubuntu Edition, i.e. it > runs Ubuntu 14.10. > > When I connect this to the USB port of my 11-CURRENT netbook it gives in > /var/log/messages: > > Mar 30 10:25:17 c720-r276659 kernel: ugen0.4: at usbus0 > Mar 30 10:25:17 c720-r276659 root: Unknown USB device: vendor 0x2a47 product 0x2008 bus uhub0 > > I'm attaching as well what the ubuntu-phone folks think about their side > of the story. > > Any chance that we could get support for it into the if_cdce driver? The > vendorID is not listed in sys/dev/usb/usbdevs until now. > Can you dump the USB device and configuration descriptors of your phone? --HPS From owner-freebsd-usb@FreeBSD.ORG Mon Mar 30 09:08:41 2015 Return-Path: Delivered-To: freebsd-usb@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 4DD0C22F for ; Mon, 30 Mar 2015 09:08:41 +0000 (UTC) Received: from ms-10.1blu.de (ms-10.1blu.de [178.254.4.101]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 04A36DE6 for ; Mon, 30 Mar 2015 09:08:40 +0000 (UTC) Received: from [82.113.98.52] (helo=localhost.unixarea.de) by ms-10.1blu.de with esmtpsa (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.76) (envelope-from ) id 1YcVgS-0008CQ-Jf; Mon, 30 Mar 2015 11:08:37 +0200 Received: from localhost.my.domain (c720-r276659 [127.0.0.1]) by localhost.unixarea.de (8.14.9/8.14.9) with ESMTP id t2U98Sjw017105 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO); Mon, 30 Mar 2015 11:08:29 +0200 (CEST) (envelope-from guru@unixarea.de) Received: (from guru@localhost) by localhost.my.domain (8.14.9/8.14.9/Submit) id t2U98QCT017104; Mon, 30 Mar 2015 11:08:26 +0200 (CEST) (envelope-from guru@unixarea.de) X-Authentication-Warning: localhost.my.domain: guru set sender to guru@unixarea.de using -f Date: Mon, 30 Mar 2015 11:08:26 +0200 From: Matthias Apitz To: Hans Petter Selasky Subject: Re: Fwd: Re: [Ubuntu-phone] Ethernet through USB Message-ID: <20150330090826.GA17010@c720-r276659> Reply-To: Matthias Apitz Mail-Followup-To: Matthias Apitz , Hans Petter Selasky , freebsd-usb@freebsd.org References: <20150330085746.GA16832@c720-r276659> <551910A9.2080709@selasky.org> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <551910A9.2080709@selasky.org> X-Operating-System: FreeBSD 11.0-CURRENT r269739 (i386) User-Agent: Mutt/1.5.23 (2014-03-12) X-Con-Id: 51246 X-Con-U: 0-guru X-Originating-IP: 82.113.98.52 Cc: freebsd-usb@freebsd.org X-BeenThere: freebsd-usb@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: FreeBSD support for USB List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 30 Mar 2015 09:08:41 -0000 El día Monday, March 30, 2015 a las 11:00:25AM +0200, Hans Petter Selasky escribió: > On 03/30/15 10:57, Matthias Apitz wrote: > > > > Hello, > > > > I have a new cellphone, the BQ Aquaris E 4.5 Ubuntu Edition, i.e. it > > runs Ubuntu 14.10. > > > > When I connect this to the USB port of my 11-CURRENT netbook it gives in > > /var/log/messages: > > > > Mar 30 10:25:17 c720-r276659 kernel: ugen0.4: at usbus0 > > Mar 30 10:25:17 c720-r276659 root: Unknown USB device: vendor 0x2a47 product 0x2008 bus uhub0 > > > > I'm attaching as well what the ubuntu-phone folks think about their side > > of the story. > > > > Any chance that we could get support for it into the if_cdce driver? The > > vendorID is not listed in sys/dev/usb/usbdevs until now. > > > > Can you dump the USB device and configuration descriptors of your phone? > Hi, Here they are: # usbconfig -d 0.4 dump_device_desc ugen0.4: at usbus0, cfg=255 md=HOST spd=HIGH (480Mbps) pwr=ON (500mA) bLength = 0x0012 bDescriptorType = 0x0001 bcdUSB = 0x0200 bDeviceClass = 0x0000 bDeviceSubClass = 0x0000 bDeviceProtocol = 0x0000 bMaxPacketSize0 = 0x0040 idVendor = 0x2a47 idProduct = 0x2008 bcdDevice = 0x0216 iManufacturer = 0x0002 iProduct = 0x0003 iSerialNumber = 0x0004 bNumConfigurations = 0x0001 # usbconfig -d 0.4 dump_all_config_desc ugen0.4: at usbus0, cfg=255 md=HOST spd=HIGH (480Mbps) pwr=ON (500mA) Configuration index 0 bLength = 0x0009 bDescriptorType = 0x0002 wTotalLength = 0x0027 bNumInterfaces = 0x0001 bConfigurationValue = 0x0001 iConfiguration = 0x0000 bmAttributes = 0x00c0 bMaxPower = 0x00fa Interface 0 bLength = 0x0009 bDescriptorType = 0x0004 bInterfaceNumber = 0x0000 bAlternateSetting = 0x0000 bNumEndpoints = 0x0003 bInterfaceClass = 0x00ff bInterfaceSubClass = 0x00ff bInterfaceProtocol = 0x0000 iInterface = 0x0005 Endpoint 0 bLength = 0x0007 bDescriptorType = 0x0005 bEndpointAddress = 0x0081 bmAttributes = 0x0002 wMaxPacketSize = 0x0200 bInterval = 0x0000 bRefresh = 0x0000 bSynchAddress = 0x0000 Endpoint 1 bLength = 0x0007 bDescriptorType = 0x0005 bEndpointAddress = 0x0001 bmAttributes = 0x0002 wMaxPacketSize = 0x0200 bInterval = 0x0000 bRefresh = 0x0000 bSynchAddress = 0x0000 Endpoint 2 bLength = 0x0007 bDescriptorType = 0x0005 bEndpointAddress = 0x0082 bmAttributes = 0x0003 wMaxPacketSize = 0x001c bInterval = 0x0006 bRefresh = 0x0000 bSynchAddress = 0x0000 -- Matthias Apitz, guru@unixarea.de, http://www.unixarea.de/ +49-170-4527211 "Wenn der Mensch von den Umständen gebildet wird, so muß man die Umstände menschlich bilden." "Si el hombre es formado por las circunstancias entonces es necesario formar humanamente las circunstancias", Karl Marx in Die heilige Familie / La sagrada familia (MEW 2, 138) From owner-freebsd-usb@FreeBSD.ORG Mon Mar 30 09:13:19 2015 Return-Path: Delivered-To: freebsd-usb@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B2E1A67A for ; Mon, 30 Mar 2015 09:13:19 +0000 (UTC) Received: from smtp.mei.co.jp (smtp.mei.co.jp [133.183.100.20]) by mx1.freebsd.org (Postfix) with ESMTP id 3936DED4 for ; Mon, 30 Mar 2015 09:13:18 +0000 (UTC) Received: from mail-gw.jp.panasonic.com ([157.8.1.157]) by smtp.mei.co.jp (8.12.11.20060614/3.7W/kc-maile11) with ESMTP id t2U9D8X1006399; Mon, 30 Mar 2015 18:13:08 +0900 (JST) Received: from epochmail.jp.panasonic.com ([157.8.1.130]) by mail.jp.panasonic.com (8.11.6p2/3.7W/kc-maili11) with ESMTP id t2U9D8i26393; Mon, 30 Mar 2015 18:13:08 +0900 Received: by epochmail.jp.panasonic.com (8.12.11.20060308/3.7W/lomi15) id t2U9D8Pj026364; Mon, 30 Mar 2015 18:13:08 +0900 Received: from localhost by lomi15.jp.panasonic.com (8.12.11.20060308/3.7W) with ESMTP id t2U9D8tk026316; Mon, 30 Mar 2015 18:13:08 +0900 Date: Mon, 30 Mar 2015 18:13:06 +0900 (JST) Message-Id: <20150330.181306.839194614732046381.okuno.kohji@jp.panasonic.com> To: hps@selasky.org Subject: Re: Why do we try to enter U1 mode in SuperSpeed? From: Kohji Okuno In-Reply-To: <55190F3C.4070901@selasky.org> References: <20150330.135402.19625324788487516.okuno.kohji@jp.panasonic.com> <55190F3C.4070901@selasky.org> Organization: Panasonic Corporation X-Mailer: Mew version 6.6 on Emacs 24.4 / Mule 6.0 (HANACHIRUSATO) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Cc: freebsd-usb@freebsd.org X-BeenThere: freebsd-usb@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: FreeBSD support for USB List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 30 Mar 2015 09:13:19 -0000 Hi HPS, > On 03/30/15 06:54, Kohji Okuno wrote: >> Hi HPS >> >> I have a question. >> Why do we try to enter U1 mode in SuperSpeed? >> This is the following codes(***) >> >> In our proprietary environmen(This has a xHCI controller), when a >> device accept U1, the device may be strange status. Acutually, when I >> tried to connect "Western Digital My Passport Essential 320GB >> (P/N:WDBACY3200ABK-00)", this HDD was not recognized correctly. >> But, in PC environment, this HDD was recognized correctly. >> >> Regards, >> Kohji Okuno >> >> (***) >> usb_hub.c: >> 793 if (speed == USB_SPEED_SUPER) { >> 794 err = usbd_req_set_hub_u1_timeout(udev, NULL, >> 795 portno, 128 - (2 * udev->depth)); >> 796 if (err) { >> 797 DPRINTFN(0, "port %d U1 timeout " >> 798 "failed, error=%s\n", >> 799 portno, usbd_errstr(err)); >> 800 } >> 801 err = usbd_req_set_hub_u2_timeout(udev, NULL, >> 802 portno, 128 - (2 * udev->depth)); >> 803 if (err) { >> 804 DPRINTFN(0, "port %d U2 timeout " >> 805 "failed, error=%s\n", >> 806 portno, usbd_errstr(err)); >> 807 } >> 808 } > > Hi, > > We are not trying to enter U1 mode, we only setup the U1 and U2 timeouts. Is > there a flag in the USB descriptors that say this is not supported and that we > need to set some other value? I thought all superspeed devices had to support > these features and that switching in and out of the sleep modes was done by > the XHCI hardware. > > --HPS Thank you for your prompt response. I understood your comment. And, I missunderstood about this. But, in our xHCI, when we set these timeout values, its xHCI controller sends LGO_U1 and the specified HDD accepts LGO_U1. In this result, its HDD is not recognized correctly. I think that our xHCI is wrong... -- Regards, Kohji Okuno From owner-freebsd-usb@FreeBSD.ORG Mon Mar 30 09:14:44 2015 Return-Path: Delivered-To: freebsd-usb@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B3344726 for ; Mon, 30 Mar 2015 09:14:44 +0000 (UTC) Received: from mail.turbocat.net (mail.turbocat.net [IPv6:2a01:4f8:d16:4514::2]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 73F08EE0 for ; Mon, 30 Mar 2015 09:14:44 +0000 (UTC) Received: from laptop015.home.selasky.org (cm-176.74.213.204.customer.telag.net [176.74.213.204]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by mail.turbocat.net (Postfix) with ESMTPSA id A73371FE023; Mon, 30 Mar 2015 11:14:42 +0200 (CEST) Message-ID: <55191432.7030402@selasky.org> Date: Mon, 30 Mar 2015 11:15:30 +0200 From: Hans Petter Selasky User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:31.0) Gecko/20100101 Thunderbird/31.4.0 MIME-Version: 1.0 To: Matthias Apitz , freebsd-usb@freebsd.org Subject: Re: Fwd: Re: [Ubuntu-phone] Ethernet through USB References: <20150330085746.GA16832@c720-r276659> <551910A9.2080709@selasky.org> <20150330090826.GA17010@c720-r276659> In-Reply-To: <20150330090826.GA17010@c720-r276659> Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 8bit X-BeenThere: freebsd-usb@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: FreeBSD support for USB List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 30 Mar 2015 09:14:44 -0000 On 03/30/15 11:08, Matthias Apitz wrote: > El día Monday, March 30, 2015 a las 11:00:25AM +0200, Hans Petter Selasky escribió: > >> On 03/30/15 10:57, Matthias Apitz wrote: >>> >>> Hello, >>> >>> I have a new cellphone, the BQ Aquaris E 4.5 Ubuntu Edition, i.e. it >>> runs Ubuntu 14.10. >>> >>> When I connect this to the USB port of my 11-CURRENT netbook it gives in >>> /var/log/messages: >>> >>> Mar 30 10:25:17 c720-r276659 kernel: ugen0.4: at usbus0 >>> Mar 30 10:25:17 c720-r276659 root: Unknown USB device: vendor 0x2a47 product 0x2008 bus uhub0 >>> >>> I'm attaching as well what the ubuntu-phone folks think about their side >>> of the story. >>> >>> Any chance that we could get support for it into the if_cdce driver? The >>> vendorID is not listed in sys/dev/usb/usbdevs until now. >>> >> >> Can you dump the USB device and configuration descriptors of your phone? >> > > Hi, > > Here they are: You need to enter your phones menu and select USB tethering instead of MTP. --HPS From owner-freebsd-usb@FreeBSD.ORG Mon Mar 30 09:19:00 2015 Return-Path: Delivered-To: freebsd-usb@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 259599D6 for ; Mon, 30 Mar 2015 09:19:00 +0000 (UTC) Received: from mail.turbocat.net (heidi.turbocat.net [88.198.202.214]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id D8745F1E for ; Mon, 30 Mar 2015 09:18:58 +0000 (UTC) Received: from laptop015.home.selasky.org (cm-176.74.213.204.customer.telag.net [176.74.213.204]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by mail.turbocat.net (Postfix) with ESMTPSA id 1D8D21FE023; Mon, 30 Mar 2015 11:18:57 +0200 (CEST) Message-ID: <55191530.3030804@selasky.org> Date: Mon, 30 Mar 2015 11:19:44 +0200 From: Hans Petter Selasky User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:31.0) Gecko/20100101 Thunderbird/31.4.0 MIME-Version: 1.0 To: Kohji Okuno , freebsd-usb@freebsd.org Subject: Re: Why do we try to enter U1 mode in SuperSpeed? References: <20150330.135402.19625324788487516.okuno.kohji@jp.panasonic.com> <55190F3C.4070901@selasky.org> In-Reply-To: <55190F3C.4070901@selasky.org> Content-Type: text/plain; charset=windows-1252; format=flowed Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-usb@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: FreeBSD support for USB List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 30 Mar 2015 09:19:00 -0000 On 03/30/15 10:54, Hans Petter Selasky wrote: > On 03/30/15 06:54, Kohji Okuno wrote: >> Hi HPS >> >> I have a question. >> Why do we try to enter U1 mode in SuperSpeed? >> This is the following codes(***) >> >> In our proprietary environmen(This has a xHCI controller), when a >> device accept U1, the device may be strange status. Acutually, when I >> tried to connect "Western Digital My Passport Essential 320GB >> (P/N:WDBACY3200ABK-00)", this HDD was not recognized correctly. >> But, in PC environment, this HDD was recognized correctly. >> >> Regards, >> Kohji Okuno >> >> (***) >> usb_hub.c: >> 793 if (speed == USB_SPEED_SUPER) { >> 794 err = usbd_req_set_hub_u1_timeout(udev, NULL, >> 795 portno, 128 - (2 * udev->depth)); >> 796 if (err) { >> 797 DPRINTFN(0, "port %d U1 timeout " >> 798 "failed, error=%s\n", >> 799 portno, usbd_errstr(err)); >> 800 } >> 801 err = usbd_req_set_hub_u2_timeout(udev, NULL, >> 802 portno, 128 - (2 * udev->depth)); >> 803 if (err) { >> 804 DPRINTFN(0, "port %d U2 timeout " >> 805 "failed, error=%s\n", >> 806 portno, usbd_errstr(err)); >> 807 } >> 808 } > > Hi, > > We are not trying to enter U1 mode, we only setup the U1 and U2 > timeouts. Is there a flag in the USB descriptors that say this is not > supported and that we need to set some other value? I thought all > superspeed devices had to support these features and that switching in > and out of the sleep modes was done by the XHCI hardware. > > --HPS > Hi, Looking at the USB 3.0 specification, I think there might be a typo there: In table 10-13 - "U2 timeout value encoding", it says that 0xFE corresponds to 65024 ms, but I think it should be 65024 _us_ ! Try programming values 0xFF for both U1 and U2. Does the device enumerate then? Maybe it only doesn't support sleep modes during enumeration and that after set configuration it works? --HPS From owner-freebsd-usb@FreeBSD.ORG Mon Mar 30 09:32:28 2015 Return-Path: Delivered-To: freebsd-usb@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 0597DD46 for ; Mon, 30 Mar 2015 09:32:28 +0000 (UTC) Received: from mail.turbocat.net (heidi.turbocat.net [88.198.202.214]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id B7F22123 for ; Mon, 30 Mar 2015 09:32:27 +0000 (UTC) Received: from laptop015.home.selasky.org (cm-176.74.213.204.customer.telag.net [176.74.213.204]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by mail.turbocat.net (Postfix) with ESMTPSA id C96791FE023; Mon, 30 Mar 2015 11:32:25 +0200 (CEST) Message-ID: <55191859.5090209@selasky.org> Date: Mon, 30 Mar 2015 11:33:13 +0200 From: Hans Petter Selasky User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:31.0) Gecko/20100101 Thunderbird/31.4.0 MIME-Version: 1.0 To: Kohji Okuno , freebsd-usb@freebsd.org Subject: Re: Why do we try to enter U1 mode in SuperSpeed? References: <20150330.135402.19625324788487516.okuno.kohji@jp.panasonic.com> <55190F3C.4070901@selasky.org> <55191530.3030804@selasky.org> In-Reply-To: <55191530.3030804@selasky.org> Content-Type: text/plain; charset=windows-1252; format=flowed Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-usb@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: FreeBSD support for USB List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 30 Mar 2015 09:32:28 -0000 On 03/30/15 11:19, Hans Petter Selasky wrote: > On 03/30/15 10:54, Hans Petter Selasky wrote: >> On 03/30/15 06:54, Kohji Okuno wrote: >>> Hi HPS >>> >>> I have a question. >>> Why do we try to enter U1 mode in SuperSpeed? >>> This is the following codes(***) >>> >>> In our proprietary environmen(This has a xHCI controller), when a >>> device accept U1, the device may be strange status. Acutually, when I >>> tried to connect "Western Digital My Passport Essential 320GB >>> (P/N:WDBACY3200ABK-00)", this HDD was not recognized correctly. >>> But, in PC environment, this HDD was recognized correctly. >>> >>> Regards, >>> Kohji Okuno >>> >>> (***) >>> usb_hub.c: >>> 793 if (speed == USB_SPEED_SUPER) { >>> 794 err = usbd_req_set_hub_u1_timeout(udev, NULL, >>> 795 portno, 128 - (2 * udev->depth)); >>> 796 if (err) { >>> 797 DPRINTFN(0, "port %d U1 timeout " >>> 798 "failed, error=%s\n", >>> 799 portno, usbd_errstr(err)); >>> 800 } >>> 801 err = usbd_req_set_hub_u2_timeout(udev, NULL, >>> 802 portno, 128 - (2 * udev->depth)); >>> 803 if (err) { >>> 804 DPRINTFN(0, "port %d U2 timeout " >>> 805 "failed, error=%s\n", >>> 806 portno, usbd_errstr(err)); >>> 807 } >>> 808 } >> >> Hi, >> >> We are not trying to enter U1 mode, we only setup the U1 and U2 >> timeouts. Is there a flag in the USB descriptors that say this is not >> supported and that we need to set some other value? I thought all >> superspeed devices had to support these features and that switching in >> and out of the sleep modes was done by the XHCI hardware. >> >> --HPS >> > > Hi, > > Looking at the USB 3.0 specification, I think there might be a typo there: > > In table 10-13 - "U2 timeout value encoding", it says that 0xFE > corresponds to 65024 ms, but I think it should be 65024 _us_ ! > > Try programming values 0xFF for both U1 and U2. Does the device > enumerate then? > > Maybe it only doesn't support sleep modes during enumeration and that > after set configuration it works? > Hi, There is a super-speed device capability descriptor. What values does the WD HDD say it supports? Currently FreeBSD does not use these values and assume that all devices are working below the programmed defaults. Hence this descriptor is part of the configuration descriptor, maybe sleep modes are not supported until the configuration is set, or maybe some firmware devs think so? --HPS From owner-freebsd-usb@FreeBSD.ORG Mon Mar 30 09:37:01 2015 Return-Path: Delivered-To: freebsd-usb@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A0D37ECD for ; Mon, 30 Mar 2015 09:37:01 +0000 (UTC) Received: from smtp.mei.co.jp (smtp.mei.co.jp [133.183.100.20]) by mx1.freebsd.org (Postfix) with ESMTP id 3FF71171 for ; Mon, 30 Mar 2015 09:37:00 +0000 (UTC) Received: from mail-gw.jp.panasonic.com ([157.8.1.157]) by smtp.mei.co.jp (8.12.11.20060614/3.7W/kc-maile11) with ESMTP id t2U9axBk005102; Mon, 30 Mar 2015 18:36:59 +0900 (JST) Received: from epochmail.jp.panasonic.com ([157.8.1.130]) by mail.jp.panasonic.com (8.11.6p2/3.7W/kc-maili11) with ESMTP id t2U9axi13217; Mon, 30 Mar 2015 18:36:59 +0900 Received: by epochmail.jp.panasonic.com (8.12.11.20060308/3.7W/lomi15) id t2U9axqx015844; Mon, 30 Mar 2015 18:36:59 +0900 Received: from localhost by lomi15.jp.panasonic.com (8.12.11.20060308/3.7W) with ESMTP id t2U9axZl015780; Mon, 30 Mar 2015 18:36:59 +0900 Date: Mon, 30 Mar 2015 18:36:58 +0900 (JST) Message-Id: <20150330.183658.1414013626189866994.okuno.kohji@jp.panasonic.com> To: hps@selasky.org Subject: Re: Why do we try to enter U1 mode in SuperSpeed? From: Kohji Okuno In-Reply-To: <55191530.3030804@selasky.org> References: <20150330.135402.19625324788487516.okuno.kohji@jp.panasonic.com> <55190F3C.4070901@selasky.org> <55191530.3030804@selasky.org> Organization: Panasonic Corporation X-Mailer: Mew version 6.6 on Emacs 24.4 / Mule 6.0 (HANACHIRUSATO) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Cc: freebsd-usb@freebsd.org X-BeenThere: freebsd-usb@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: FreeBSD support for USB List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 30 Mar 2015 09:37:01 -0000 Hi HPS, > On 03/30/15 10:54, Hans Petter Selasky wrote: >> On 03/30/15 06:54, Kohji Okuno wrote: >>> Hi HPS >>> >>> I have a question. >>> Why do we try to enter U1 mode in SuperSpeed? >>> This is the following codes(***) >>> >>> In our proprietary environmen(This has a xHCI controller), when a >>> device accept U1, the device may be strange status. Acutually, when I >>> tried to connect "Western Digital My Passport Essential 320GB >>> (P/N:WDBACY3200ABK-00)", this HDD was not recognized correctly. >>> But, in PC environment, this HDD was recognized correctly. >>> >>> Regards, >>> Kohji Okuno >>> >>> (***) >>> usb_hub.c: >>> 793 if (speed == USB_SPEED_SUPER) { >>> 794 err = usbd_req_set_hub_u1_timeout(udev, NULL, >>> 795 portno, 128 - (2 * udev->depth)); >>> 796 if (err) { >>> 797 DPRINTFN(0, "port %d U1 timeout " >>> 798 "failed, error=%s\n", >>> 799 portno, usbd_errstr(err)); >>> 800 } >>> 801 err = usbd_req_set_hub_u2_timeout(udev, NULL, >>> 802 portno, 128 - (2 * udev->depth)); >>> 803 if (err) { >>> 804 DPRINTFN(0, "port %d U2 timeout " >>> 805 "failed, error=%s\n", >>> 806 portno, usbd_errstr(err)); >>> 807 } >>> 808 } >> >> Hi, >> >> We are not trying to enter U1 mode, we only setup the U1 and U2 >> timeouts. Is there a flag in the USB descriptors that say this is not >> supported and that we need to set some other value? I thought all >> superspeed devices had to support these features and that switching in >> and out of the sleep modes was done by the XHCI hardware. >> >> --HPS >> > > Hi, > > Looking at the USB 3.0 specification, I think there might be a typo there: > > In table 10-13 - "U2 timeout value encoding", it says that 0xFE corresponds to > 65024 ms, but I think it should be 65024 _us_ ! > > Try programming values 0xFF for both U1 and U2. Does the device enumerate > then? > > Maybe it only doesn't support sleep modes during enumeration and that after > set configuration it works? > > --HPS I will try programming values 0xFF. By the way, why should we set these timeout value? I think, we don't have to change from default values (U1 Timeout = 0, U2 Timeout= 0). Regards, Kohji Okuno From owner-freebsd-usb@FreeBSD.ORG Mon Mar 30 09:50:23 2015 Return-Path: Delivered-To: freebsd-usb@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 87A8D4BD for ; Mon, 30 Mar 2015 09:50:23 +0000 (UTC) Received: from mail.turbocat.net (heidi.turbocat.net [88.198.202.214]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 44C302E2 for ; Mon, 30 Mar 2015 09:50:22 +0000 (UTC) Received: from laptop015.home.selasky.org (cm-176.74.213.204.customer.telag.net [176.74.213.204]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by mail.turbocat.net (Postfix) with ESMTPSA id EBF491FE023; Mon, 30 Mar 2015 11:50:20 +0200 (CEST) Message-ID: <55191C8C.70008@selasky.org> Date: Mon, 30 Mar 2015 11:51:08 +0200 From: Hans Petter Selasky User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:31.0) Gecko/20100101 Thunderbird/31.4.0 MIME-Version: 1.0 To: Kohji Okuno Subject: Re: Why do we try to enter U1 mode in SuperSpeed? References: <20150330.135402.19625324788487516.okuno.kohji@jp.panasonic.com> <55190F3C.4070901@selasky.org> <55191530.3030804@selasky.org> <20150330.183658.1414013626189866994.okuno.kohji@jp.panasonic.com> In-Reply-To: <20150330.183658.1414013626189866994.okuno.kohji@jp.panasonic.com> Content-Type: text/plain; charset=windows-1252; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-usb@freebsd.org X-BeenThere: freebsd-usb@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: FreeBSD support for USB List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 30 Mar 2015 09:50:23 -0000 On 03/30/15 11:36, Kohji Okuno wrote: > Hi HPS, > > > I will try programming values 0xFF. > By the way, why should we set these timeout value? > I think, we don't have to change from default values (U1 Timeout = 0, > U2 Timeout= 0). Hi, I think the default '0' is the same like '255' - disable power save? Where is the meaning of "default" defined in this case? In the USB v3.0 specification it says that we shall not enable the U2 timeout for a downstream port that is connected to a HUB. Currently there is no check for that. We might want to add such a check. --HPS From owner-freebsd-usb@FreeBSD.ORG Mon Mar 30 10:01:16 2015 Return-Path: Delivered-To: freebsd-usb@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id EA4E96D1 for ; Mon, 30 Mar 2015 10:01:16 +0000 (UTC) Received: from ms-10.1blu.de (ms-10.1blu.de [178.254.4.101]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id A0D255FB for ; Mon, 30 Mar 2015 10:01:16 +0000 (UTC) Received: from [82.113.98.52] (helo=localhost.unixarea.de) by ms-10.1blu.de with esmtpsa (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.76) (envelope-from ) id 1YcWVI-0006CM-KO; Mon, 30 Mar 2015 12:01:09 +0200 Received: from localhost.my.domain (c720-r276659 [127.0.0.1]) by localhost.unixarea.de (8.14.9/8.14.9) with ESMTP id t2UA11Qm017499 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO); Mon, 30 Mar 2015 12:01:01 +0200 (CEST) (envelope-from guru@unixarea.de) Received: (from guru@localhost) by localhost.my.domain (8.14.9/8.14.9/Submit) id t2UA0xke017498; Mon, 30 Mar 2015 12:00:59 +0200 (CEST) (envelope-from guru@unixarea.de) X-Authentication-Warning: localhost.my.domain: guru set sender to guru@unixarea.de using -f Date: Mon, 30 Mar 2015 12:00:58 +0200 From: Matthias Apitz To: Oliver Grawert Subject: Re: [Ubuntu-phone] Ethernet through USB Message-ID: <20150330100058.GA17416@c720-r276659> Reply-To: Matthias Apitz Mail-Followup-To: Matthias Apitz , Oliver Grawert , ubuntu-phone@lists.launchpad.net, freebsd-usb@freebsd.org References: <20150330083458.GA2632@c720-r276659> <1427705237.3870.9.camel@anubis> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <1427705237.3870.9.camel@anubis> X-Operating-System: FreeBSD 11.0-CURRENT r269739 (i386) User-Agent: Mutt/1.5.23 (2014-03-12) X-Con-Id: 51246 X-Con-U: 0-guru X-Originating-IP: 82.113.98.52 Cc: ubuntu-phone@lists.launchpad.net, freebsd-usb@freebsd.org X-BeenThere: freebsd-usb@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: FreeBSD support for USB List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 30 Mar 2015 10:01:17 -0000 El día Monday, March 30, 2015 a las 10:47:17AM +0200, Oliver Grawert escribió: > for networking the bq supports tethering via a usb device (run the > following in the terminal app or via adb): > > android-gadget-service enable rndis > > that will create an usb0 network device on a linux,PC not sure what BSD > does with it though :) Hi, in the phone I set handcrafted an IP in the interface: # sudo ifconfig ndis0 inet 10.0.1.1 and on the FreeBSD side I set: # ifconfig ue0 inet 10.0.1.2 # ifconfig ue0 up # ifconfig ue0 ue0: flags=8843 metric 0 mtu 1500 ether 2a:df:f9:2e:72:86 inet 10.0.1.2 netmask 0xff000000 broadcast 10.255.255.255 nd6 options=29 and SSH is fine too as: $ ssh phablet@10.0.1.1 The authenticity of host '10.0.1.1 (10.0.1.1)' can't be established. RSA key fingerprint is 05:64:ba:0b:02:bb:e1:ab:6e:93:90:f0:01:e4:5f:b9. Are you sure you want to continue connecting (yes/no)? yes Warning: Permanently added '10.0.1.1' (RSA) to the list of known hosts. Welcome to Ubuntu Utopic Unicorn (development branch) (GNU/Linux 3.4.67 armv7l) > I fill figure out how to permanently set this IP addr inside the Ubuntu, maybe an DHCP-server on the host side is to much. Thanks for your help, Oliver and Hans matthias -- Matthias Apitz, guru@unixarea.de, http://www.unixarea.de/ +49-170-4527211 "Wenn der Mensch von den Umständen gebildet wird, so muß man die Umstände menschlich bilden." "Si el hombre es formado por las circunstancias entonces es necesario formar humanamente las circunstancias", Karl Marx in Die heilige Familie / La sagrada familia (MEW 2, 138) From owner-freebsd-usb@FreeBSD.ORG Mon Mar 30 11:31:57 2015 Return-Path: Delivered-To: freebsd-usb@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 340E2928 for ; Mon, 30 Mar 2015 11:31:57 +0000 (UTC) Received: from mail.turbocat.net (mail.turbocat.net [IPv6:2a01:4f8:d16:4514::2]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id CA4AEF0 for ; Mon, 30 Mar 2015 11:31:56 +0000 (UTC) Received: from laptop015.home.selasky.org (cm-176.74.213.204.customer.telag.net [176.74.213.204]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by mail.turbocat.net (Postfix) with ESMTPSA id 9B0DD1FE023; Mon, 30 Mar 2015 13:31:54 +0200 (CEST) Message-ID: <55193459.5070607@selasky.org> Date: Mon, 30 Mar 2015 13:32:41 +0200 From: Hans Petter Selasky User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:31.0) Gecko/20100101 Thunderbird/31.4.0 MIME-Version: 1.0 To: Kohji Okuno Subject: Re: Why do we try to enter U1 mode in SuperSpeed? References: <20150330.135402.19625324788487516.okuno.kohji@jp.panasonic.com> <55190F3C.4070901@selasky.org> <55191530.3030804@selasky.org> <20150330.183658.1414013626189866994.okuno.kohji@jp.panasonic.com> <55191C8C.70008@selasky.org> In-Reply-To: <55191C8C.70008@selasky.org> Content-Type: text/plain; charset=windows-1252; format=flowed Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.18-1 Cc: freebsd-usb@freebsd.org X-BeenThere: freebsd-usb@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: FreeBSD support for USB List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 30 Mar 2015 11:31:57 -0000 Hi Kohji, Can you test the attached patch? Does it make any difference for your WD HDD USB 3.0 enumeration? --HPS From owner-freebsd-usb@FreeBSD.ORG Wed Apr 1 00:36:06 2015 Return-Path: Delivered-To: freebsd-usb@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 6A95C43F for ; Wed, 1 Apr 2015 00:36:06 +0000 (UTC) Received: from smtp.mei.co.jp (smtp.mei.co.jp [133.183.100.20]) by mx1.freebsd.org (Postfix) with ESMTP id 0AC3D143 for ; Wed, 1 Apr 2015 00:36:05 +0000 (UTC) Received: from mail-gw.jp.panasonic.com ([157.8.1.157]) by smtp.mei.co.jp (8.12.11.20060614/3.7W/kc-maile13) with ESMTP id t310Zw0E021619; Wed, 1 Apr 2015 09:35:58 +0900 (JST) Received: from epochmail.jp.panasonic.com ([157.8.1.130]) by mail.jp.panasonic.com (8.11.6p2/3.7W/kc-maili15) with ESMTP id t310ZwB10982; Wed, 1 Apr 2015 09:35:58 +0900 Received: by epochmail.jp.panasonic.com (8.12.11.20060308/3.7W/lomi11) id t310Zw8T017529; Wed, 1 Apr 2015 09:35:58 +0900 Received: from localhost by lomi11.jp.panasonic.com (8.12.11.20060308/3.7W) with ESMTP id t310ZvEF017510; Wed, 1 Apr 2015 09:35:57 +0900 Date: Wed, 01 Apr 2015 09:35:57 +0900 (JST) Message-Id: <20150401.093557.212600117660810365.okuno.kohji@jp.panasonic.com> To: hps@selasky.org Subject: Re: Why do we try to enter U1 mode in SuperSpeed? From: Kohji Okuno In-Reply-To: <55193459.5070607@selasky.org> References: <20150330.183658.1414013626189866994.okuno.kohji@jp.panasonic.com> <55191C8C.70008@selasky.org> <55193459.5070607@selasky.org> Organization: Panasonic Corporation X-Mailer: Mew version 6.6 on Emacs 24.4 / Mule 6.0 (HANACHIRUSATO) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Cc: freebsd-usb@freebsd.org X-BeenThere: freebsd-usb@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: FreeBSD support for USB List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Apr 2015 00:36:06 -0000 Hi HPS, > Hi Kohji, > > Can you test the attached patch? Does it make any difference for your WD HDD > USB 3.0 enumeration? > > --HPS I'm sorry for my late response. We tried your patch, although the U1 state transition wasn't found in the USB bus log, the HDD was not recognized correctly. Thanks, Kohji Okuno From owner-freebsd-usb@FreeBSD.ORG Wed Apr 1 19:14:18 2015 Return-Path: Delivered-To: freebsd-usb@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 35ED9B71 for ; Wed, 1 Apr 2015 19:14:18 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 18854C65 for ; Wed, 1 Apr 2015 19:14:18 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t31JEHqK056415 for ; Wed, 1 Apr 2015 19:14:17 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-usb@FreeBSD.org Subject: [Bug 199101] Verbatim STORE N GO USB drive failed to attach, now resolved, patch for usb-quirk.c included Date: Wed, 01 Apr 2015 19:14:18 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: usb X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: dweber@htwsaar.de X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-usb@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version rep_platform op_sys bug_status bug_severity priority component assigned_to reporter attachments.created Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-usb@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: FreeBSD support for USB List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Apr 2015 19:14:18 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=199101 Bug ID: 199101 Summary: Verbatim STORE N GO USB drive failed to attach, now resolved, patch for usb-quirk.c included Product: Base System Version: 11.0-CURRENT Hardware: Any OS: Any Status: New Severity: Affects Only Me Priority: --- Component: usb Assignee: freebsd-usb@FreeBSD.org Reporter: dweber@htwsaar.de Created attachment 155104 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=155104&action=edit patch for usb_quirk.c, usbdevs original 11-current system is FreeBSD 11.0-CURRENT (VENUS) #0 r280370: Mon Mar 23 22:14:14 CET 2015 relevant dmesg entries when inserting the drive: umass0: on usbus2 umass0: SCSI over Bulk-Only; quirks = 0x8100 umass0:4:0: Attached to scbus4 (probe0:umass-sim0:0:0:0): REPORT LUNS. CDB: a0 00 00 00 00 00 00 00 00 10 00 00 (probe0:umass-sim0:0:0:0): CAM status: Auto-Sense Retrieval Failed (probe0:umass-sim0:0:0:0): Error 5, Unretryable error (da0:umass-sim0:0:0:0): got CAM status 0x50 (da0:umass-sim0:0:0:0): fatal error, failed to attach to device ========= after applying the attached patch, the device becomes usable as /dev/da0, the successful quirk being USB_QUIRK(VERBATIM, STORENGO, 0x0000, 0xffff, UQ_MSC_IGNORE_RESIDUE) ugen2.2: at usbus2 umass0: on usbus2 umass0: SCSI over Bulk-Only; quirks = 0x8180 umass0:4:0: Attached to scbus4 Trying to mount root from ufs:/dev/ada0p2 [rw]... (probe0:umass-sim0:0:0:0): REPORT LUNS. CDB: a0 00 00 00 00 00 00 00 00 10 00 00 (probe0:umass-sim0:0:0:0): CAM status: SCSI Status Error (probe0:umass-sim0:0:0:0): SCSI status: Check Condition (probe0:umass-sim0:0:0:0): SCSI sense: ILLEGAL REQUEST asc:20,0 (Invalid command operation code) (probe0:umass-sim0:0:0:0): Error 22, Unretryable error da0 at umass-sim0 bus 0 scbus4 target 0 lun 0 da0: Removable Direct Access SPC-4 SCSI device da0: 40.000MB/s transfers da0: 14909MB (30535401 512 byte sectors: 255H 63S/T 1900C) da0: quirks=0x2 uhid0: on usbus4 -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-usb@FreeBSD.ORG Wed Apr 1 19:27:39 2015 Return-Path: Delivered-To: freebsd-usb@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 47315104 for ; Wed, 1 Apr 2015 19:27:39 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 2CCC0D9A for ; Wed, 1 Apr 2015 19:27:39 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t31JRdCU067744 for ; Wed, 1 Apr 2015 19:27:39 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-usb@FreeBSD.org Subject: [Bug 199101] Verbatim STORE N GO USB drive failed to attach, now resolved, patch for usb-quirk.c included Date: Wed, 01 Apr 2015 19:27:39 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: usb X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: pi@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-usb@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-usb@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: FreeBSD support for USB List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Apr 2015 19:27:39 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=199101 --- Comment #1 from Kurt Jaeger --- see https://lists.freebsd.org/pipermail/freebsd-current/2015-March/055210.html for the discussion on that topic. -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-usb@FreeBSD.ORG Thu Apr 2 19:09:47 2015 Return-Path: Delivered-To: freebsd-usb@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E7FE3ADD for ; Thu, 2 Apr 2015 19:09:47 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id CCDCD31A for ; Thu, 2 Apr 2015 19:09:47 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t32J9l2l021154 for ; Thu, 2 Apr 2015 19:09:47 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-usb@FreeBSD.org Subject: [Bug 138798] [boot] [usb8] 8.0-BETA4 can't boot from USB flash drive [regression] Date: Thu, 02 Apr 2015 19:09:48 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: usb X-Bugzilla-Version: 8.0-BETA4 X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: dewayne@heuristicsystems.com.au X-Bugzilla-Status: In Progress X-Bugzilla-Priority: Normal X-Bugzilla-Assigned-To: freebsd-usb@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-usb@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: FreeBSD support for USB List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Apr 2015 19:09:48 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=138798 dewayne@heuristicsystems.com.au changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |dewayne@heuristicsystems.co | |m.au --- Comment #6 from dewayne@heuristicsystems.com.au --- Would someone with priv's please close this as its no longer relevant. The boot delays are sufficient in supported versions of FreeBSD. -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-usb@FreeBSD.ORG Fri Apr 3 09:32:52 2015 Return-Path: Delivered-To: freebsd-usb@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 6C447F67 for ; Fri, 3 Apr 2015 09:32:52 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 526ADD5C for ; Fri, 3 Apr 2015 09:32:52 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t339Wqgg046319 for ; Fri, 3 Apr 2015 09:32:52 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-usb@FreeBSD.org Subject: [Bug 199101] Verbatim STORE N GO USB drive failed to attach, now resolved, patch for usb-quirk.c included Date: Fri, 03 Apr 2015 09:32:52 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: usb X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: dweber@htwsaar.de X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-usb@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-usb@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: FreeBSD support for USB List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Apr 2015 09:32:52 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=199101 --- Comment #2 from DW --- patch confirmed to work on FreeBSD 10.1-STABLE #0 r279278 -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-usb@FreeBSD.ORG Fri Apr 3 11:25:09 2015 Return-Path: Delivered-To: freebsd-usb@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 41654999 for ; Fri, 3 Apr 2015 11:25:09 +0000 (UTC) Received: from mailscan1.extendcp.co.uk (mailscan38.extendcp.co.uk [176.32.230.32]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id F1595B39 for ; Fri, 3 Apr 2015 11:25:07 +0000 (UTC) Received: from mailscanlb0.hi.local ([10.0.44.160] helo=mailscan2.hi.local) by mailscan-g74.hi.local with esmtp (Exim 4.80.1) (envelope-from ) id 1Ydyzl-0004Uf-C8 for freebsd-usb@freebsd.org; Fri, 03 Apr 2015 11:38:37 +0100 Received: from mailscanlb0.hi.local ([10.0.44.160] helo=web26.extendcp.co.uk) by mailscan2.hi.local with esmtps (UNKNOWN:DHE-RSA-AES256-GCM-SHA384:256) (Exim 4.80.1) (envelope-from ) id 1Ydyzk-0007zs-Tl for freebsd-usb@freebsd.org; Fri, 03 Apr 2015 11:38:37 +0100 Received: from horseandgroomhanover.co.uk by web26.extendcp.co.uk with local (Exim 4.80.1) (envelope-from ) id 1Ydyzk-00073r-Jx for freebsd-usb@freebsd.org; Fri, 03 Apr 2015 11:38:36 +0100 To: freebsd-usb@freebsd.org Subject: FREE, Indebted for driving on toll road #000713197 Date: Fri, 3 Apr 2015 11:38:36 +0100 From: "E-ZPass Support" Reply-To: "E-ZPass Support" Message-ID: X-Priority: 3 MIME-Version: 1.0 X-Authenticated-As: horseandgroomhanover.co.uk@web26.extendcp.co.uk Content-Type: text/plain; charset=us-ascii X-Content-Filtered-By: Mailman/MimeDel 2.1.18-1 X-BeenThere: freebsd-usb@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: FreeBSD support for USB List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Apr 2015 11:25:09 -0000 Dear Free, You have a debt to pay for using a toll road. Please service your debt in the shortest possible time. The invoice is attached to this email. Yours faithfully, Alfred Porter, E-ZPass Support.