From owner-freebsd-questions@FreeBSD.ORG Fri Jun 3 21:53:31 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9343A16A435 for ; Fri, 3 Jun 2005 21:53:31 +0000 (GMT) (envelope-from motionsiren@gmail.com) Received: from wproxy.gmail.com (wproxy.gmail.com [64.233.184.206]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3556543D48 for ; Fri, 3 Jun 2005 21:53:30 +0000 (GMT) (envelope-from motionsiren@gmail.com) Received: by wproxy.gmail.com with SMTP id 50so1781894wri for ; Fri, 03 Jun 2005 14:53:30 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:reply-to:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; b=jOb3lNxfaHg4xIyYScLzDEDjyNm+Nrb/dz+3LGJ8o9ipn5mqaJY5uZEN97zB+x2A+0iXbHBo/h1+mChOCYbC0303n801IDl4mHCJys+5+jyLGQR96eqShWXpBAfWDrUf/fxn5A4Bg9up5Vs9UAaU1+VEtp3lOokKr1NkLvQyqAM= Received: by 10.54.52.55 with SMTP id z55mr927183wrz; Fri, 03 Jun 2005 14:53:30 -0700 (PDT) Received: by 10.54.71.9 with HTTP; Fri, 3 Jun 2005 14:53:30 -0700 (PDT) Message-ID: <781e2bc00506031453d275cb@mail.gmail.com> Date: Fri, 3 Jun 2005 14:53:30 -0700 From: Benjamin Keating To: freebsd-questions@freebsd.org Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline Subject: 5.4 - Adding USB2.0 Support X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Benjamin Keating List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Jun 2005 21:53:31 -0000 Hey List, So I have a few gigs of data I'd like to xfer over USB and version 1 is just wayyyy to slow. However, I successfully plugged in my external USB drive, mounted it, xfer data to/from it and everything worked wonderfully, just incredible slow. So i read the handbook ( http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/usb-disks.html ) and recompiled my kernel, changing only the config file adding: device ehci and then built the kernel the "new way" as suggested. Rebooted, things seem to of started up properly, here are my dmesg's relivant parts: %< --------------------------------------- uhci0: port 0xcc00-0xcc1f irq 16 at device 29.0 on pci0 usb0: on uhci0 usb0: USB revision 1.0 uhub0: Intel UHCI root hub, class 9/0, rev 1.00/1.00, addr 1 uhub0: 2 ports with 2 removable, self powered uhci1: port 0xd000-0xd01f irq 19 at device 29.1 on pci0 usb1: on uhci1 usb1: USB revision 1.0 uhub1: Intel UHCI root hub, class 9/0, rev 1.00/1.00, addr 1 uhub1: 2 ports with 2 removable, self powered uhci2: port 0xd400-0xd41f irq 18 at device 29.2 on pci0 usb2: on uhci2 usb2: USB revision 1.0 uhub2: Intel UHCI root hub, class 9/0, rev 1.00/1.00, addr 1 uhub2: 2 ports with 2 removable, self powered uhci3: port 0xd800-0xd81f irq 16 at device 29.3 on pci0 usb3: on uhci3 usb3: USB revision 1.0 uhub3: Intel UHCI root hub, class 9/0, rev 1.00/1.00, addr 1 uhub3: 2 ports with 2 removable, self powered ehci0: mem 0xfebffc00-0xfebfffff irq 23 at device 29.7 on pci0 ehci_pci_attach: companion usb0 ehci_pci_attach: companion usb1 ehci_pci_attach: companion usb2 ehci_pci_attach: companion usb3 usb4: EHCI version 1.0 usb4: companion controllers, 2 ports each: usb0 usb1 usb2 usb3 usb4: on ehci0 usb4: USB revision 2.0 uhub4: (0x8086) EHCI root hub, class 9/0, rev 2.00/1.00, addr 1 uhub4: 8 ports with 8 removable, self powered >% --------------------------------------- So now, I plug in my powered on external USB hdd and look at my dmesg and see this instead of what the handbook says, which was the same for me, before i recompiled my kernel: %< --------------------------------------- usb4: unrecoverable error, controller halted usb4: blocking intrs 0x10 usb4: port reset timeout >% --------------------------------------- Any ideas? Im lost!