From owner-freebsd-usb@FreeBSD.ORG Sun Dec 10 15:30:16 2006 Return-Path: X-Original-To: freebsd-usb@hub.freebsd.org Delivered-To: freebsd-usb@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8F4A716A503 for ; Sun, 10 Dec 2006 15:30:16 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.FreeBSD.org (Postfix) with ESMTP id C1D4243CA0 for ; Sun, 10 Dec 2006 15:29:04 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id kBAFUFGH098050 for ; Sun, 10 Dec 2006 15:30:15 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id kBAFUFJI098049; Sun, 10 Dec 2006 15:30:15 GMT (envelope-from gnats) Resent-Date: Sun, 10 Dec 2006 15:30:15 GMT Resent-Message-Id: <200612101530.kBAFUFJI098049@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-usb@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, "Eugene M. Kim" Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D7F9416A522 for ; Sun, 10 Dec 2006 15:24:42 +0000 (UTC) (envelope-from ab@seerajeane.astralblue.net) Received: from purple.the-7.net (purple.the-7.net [64.71.156.34]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3A2CB43E93 for ; Sun, 10 Dec 2006 15:20:03 +0000 (GMT) (envelope-from ab@seerajeane.astralblue.net) Received: from seerajeane.astralblue.net (seerajeane.astralblue.net [IPv6:2001:470:1f01:3222:2e0:81ff:fe51:1e73]) by purple.the-7.net (8.13.8/8.13.8) with ESMTP id kBAFIh0F059635 for ; Sun, 10 Dec 2006 07:18:54 -0800 (PST) (envelope-from ab@seerajeane.astralblue.net) Received: from seerajeane.astralblue.net (localhost [127.0.0.1]) by seerajeane.astralblue.net (8.13.8/8.13.8) with ESMTP id kBABSLvn003570 for ; Sun, 10 Dec 2006 03:28:22 -0800 (PST) (envelope-from ab@seerajeane.astralblue.net) Received: (from ab@localhost) by seerajeane.astralblue.net (8.13.8/8.13.8/Submit) id kBABSLRW003569; Sun, 10 Dec 2006 03:28:21 -0800 (PST) (envelope-from ab) Message-Id: <200612101128.kBABSLRW003569@seerajeane.astralblue.net> Date: Sun, 10 Dec 2006 03:28:21 -0800 (PST) From: "Eugene M. Kim" To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: usb/106565: [PATCH] ums(4) does not work if the mouse defaults to boot protocol X-BeenThere: freebsd-usb@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: "Eugene M. Kim" List-Id: FreeBSD support for USB List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Dec 2006 15:30:16 -0000 >Number: 106565 >Category: usb >Synopsis: [PATCH] ums(4) does not work if the mouse defaults to boot protocol >Confidential: no >Severity: serious >Priority: high >Responsible: freebsd-usb >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Dec 10 15:30:15 GMT 2006 >Closed-Date: >Last-Modified: >Originator: Eugene M. Kim >Release: FreeBSD 7.0-CURRENT i386 >Organization: >Environment: System: FreeBSD seerajeane.astralblue.net 7.0-CURRENT FreeBSD 7.0-CURRENT #12: Fri Dec 1 05:37:54 PST 2006 ab@seerajeane.astralblue.net:/home/FreeBSD/build/MAIN/obj/home/FreeBSD/build/MAIN/src/sys/PL-SEERAJEANE i386 >Description: Most USB mice support two protocols (data formats) for reporting their status: - The "report protocol," which is the default protocol (at least in the HID specification version 1.11), and supports a wide arrange of button/axis layouts, including wheels as well as more than three buttons, and - The "boot protocol," which is an optional protocol where the status data follows the "boot interface" report descriptor (see HID 1.11, section B.2) instead of the mouse's own report descriptor. (A HID report descriptor is metadata stored in a HID (such as a mouse or a keyboard), and describes what kind of data (such as keypresses, mouse movements and button presses) is available and how a "report" from the device should be parsed to recover the data.) HID 1.11, section 7.2.6 recommends that all devices default to report protocol, and that the host make no assumptions about the device's state and set the desired protocol whenever initializing a device. ums(4) does not, however, set the protocol as recommended, and fails to work properly with mouse models that default errneously to the boot protocol. The most common symptoms are: - The mouse wheel does not work. This is because the mouse follows the boot interface report descriptor, which does not have the Z-axis or wheel information. - In some cases, when the user moves the mouse cursor and/or presses a button, the mouse behaves as if its wheel were turned (and consequently moves the scrollbar of the current window, for example). This is because a report has only 3 bytes under the boot protocol, while ums(4) expects and uses more data (which is uninitialized garbage) after the first 3 bytes of valid data. - Rarely, the mouse is recognized but does not work at all, except when a button is pressed and the cursor moves erratically and spurious button events are generated (i.e. the mouse behaves as if some other buttons are pressed). This is because the mouse's own report descriptor uses Report ID tags, which cause the report ID byte to be included at the beginning of a report before other data, while the reports that the mouse generates in its default, boot mode do not have the ID byte. ums(4), assuming the mouse is operating under the "report protocol" (that is, non-boot), expects this ID byte and incorrectly parses the reports. >How-To-Repeat: Use ums(4) with any mouse that defaults to the boot protocol, including: - Gyration GyroPoint RF Technology Receiver (Gyration Ultra Cordless) >Fix: Apply the following patch: -------------------- snip -------------------- snip -------------------- --- sys/dev/usb/ums.c Wed Sep 6 17:06:42 2006 +++ sys/dev/usb/ums.c.new Sun Dec 10 02:19:15 2006 @@ -597,6 +597,14 @@ callout_handle_init((struct callout_handle *)&sc->callout_handle); + /* + * Force the report (non-boot) protocol. + * + * Mice without boot protocol support may choose not to implement + * Set_Protocol at all; do not check for error. + */ + usbd_set_protocol(sc->sc_iface, 1); + /* Set up interrupt pipe. */ err = usbd_open_pipe_intr(sc->sc_iface, sc->sc_ep_addr, USBD_SHORT_XFER_OK, &sc->sc_intrpipe, sc, -------------------- snip -------------------- snip -------------------- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-usb@FreeBSD.ORG Sun Dec 10 20:36:23 2006 Return-Path: X-Original-To: usb@freebsd.org Delivered-To: freebsd-usb@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3928F16A412 for ; Sun, 10 Dec 2006 20:36:23 +0000 (UTC) (envelope-from tamaru@myn.rcast.u-tokyo.ac.jp) Received: from mail1.ecc.u-tokyo.ac.jp (mail1.ecc.u-tokyo.ac.jp [133.11.50.203]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8917B43CB7 for ; Sun, 10 Dec 2006 20:34:49 +0000 (GMT) (envelope-from tamaru@myn.rcast.u-tokyo.ac.jp) Received: from spam001.ecc.u-tokyo.ac.jp (spam001.ecc.u-tokyo.ac.jp [133.11.50.194]) by mail1.ecc.u-tokyo.ac.jp (Postfix) with ESMTP id 89ADD10064 for ; Mon, 11 Dec 2006 05:36:01 +0900 (JST) Received: from md001.ecc.u-tokyo.ac.jp (192.168.160.21 [192.168.160.21]) by spam001.ecc.u-tokyo.ac.jp (SpamBlock.pst 3.4.94) with ESMTP id for ; Mon, 11 Dec 2006 05:35:24 +0900 Received: from amulet.amuletic.net (v055252.ppp.asahi-net.or.jp [124.155.55.252]) by md001.ecc.u-tokyo.ac.jp (MOS 3.4.5-GR) with ESMTP id BOR04480 (AUTH via LOGINBEFORESMTP); Mon, 11 Dec 2006 05:35:23 +0900 (JST) Date: Mon, 11 Dec 2006 05:35:23 +0900 Message-ID: From: Hiroharu Tamaru To: usb@freebsd.org User-Agent: User-Agent: Wanderlust/2.14.0 (Africa) Emacs/21.3 Mule/5.0 (SAKAKI) MIME-Version: 1.0 (generated by SEMI 1.14.6 - "Maruoka") Content-Type: text/plain; charset=US-ASCII X-IP: 192.168.160.21 X-FROM-DOMAIN: myn.rcast.u-tokyo.ac.jp X-FROM-EMAIL: tamaru@myn.rcast.u-tokyo.ac.jp Cc: Subject: usb mouse losing connection frequently X-BeenThere: freebsd-usb@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: FreeBSD support for USB List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Dec 2006 20:36:23 -0000 Hi I have ASUSTek P1-AH2 barebone / NVidia MCP51 running i386 6.2-RC1 http://www.asus.com/products4.aspx?modelmenu=1&model=1151&l1=1&l2=3&l3=0 I set USB legacy emulation in BIOS since I am using an usb keyboard, if that matters. First, the usb keyboard gets detected at boot up, whereas the usb mouse does not; I have to unplug the mouse and replug it to get it recognized (watching all.log and with usbdevs). Then, this mouse gets lost every now and then: ums0: at uhub0 port 2 (addr 3) disconnected ums0: detached unable to open /dev/ums0: No such file or directory Sometimes, I also get this when it happens: uhub0: device problem (SET_ADDR_FAILED), disabling port 2 Anyway, I unplug + replug it when it happens to get it redetected: ums0: Giga-Hard Giga-Hard USB Wheel Mouse, rev 1.00/0.00, addr 3, iclass 3/1 ums0: 3 buttons and Z dir. I believe it only happens when the mouse is moving. This mouse itself was working fine on another machine that has uhci and running 4-STABLE. I've also tried http://people.freebsd.org/~markus/stuff/ums.ko as suggested in one of the mails in the archives, but I don't think it made any difference, frequency-wise and all. Is this a known problem? Is there anything I can try? Is there any way to emulate an unplug-and-replug from software? Then, at least I can work around by watching the log and reseting it from a syslog driven script. It appears that deleting ums from the kernel config and then kldunloading/loading the ums.ko does not have such effect. I've just subscribed to this list. If there are any keywords I should look up in the archives, please let me know. Thank you. Hiroharu Tamaru # usbdevs -v Controller /dev/usb0: addr 1: full speed, self powered, config 1, OHCI root hub(0x0000), nVidia(0x0000), rev 1.00 port 1 addr 3: low speed, power 100 mA, config 1, Giga-Hard USB Wheel Mouse(0x0001), Giga-Hard(0x04b4), rev 0.00 port 2 powered port 3 powered port 4 addr 2: full speed, power 100 mA, config 1, HHKB Professional(0x0100), Topre Corporation(0x0853), rev 1.02 port 5 powered port 6 powered port 7 powered port 8 powered Controller /dev/usb1: addr 1: high speed, self powered, config 1, EHCI root hub(0x0000), nVidia(0x0000), rev 1.00 port 1 powered port 2 powered port 3 powered port 4 powered port 5 powered port 6 powered port 7 addr 2: high speed, power 96 mA, config 1, Flash Card Reader(0x2228), ASUS(0x0424), rev 3.95 port 8 powered These are the usb related dmesgs: ohci0: mem 0xfe02f000-0xfe02ffff irq 21 at device 11.0 on pci0 ohci0: Reserved 0x1000 bytes for rid 0x10 type 3 at 0xfe02f000 ioapic0: routing intpin 21 (PCI IRQ 21) to vector 50 ohci0: [GIANT-LOCKED] usb0: OHCI version 1.0, legacy support usb0: SMM does not respond, resetting usb0: on ohci0 usb0: USB revision 1.0 uhub0: nVidia OHCI root hub, class 9/0, rev 1.00/1.00, addr 1 uhub0: 8 ports with 8 removable, self powered ehci0: mem 0xfe02e000-0xfe02e0ff irq 22 at device 11.1 on pci0 ehci0: Reserved 0x100 bytes for rid 0x10 type 3 at 0xfe02e000 ioapic0: routing intpin 22 (PCI IRQ 22) to vector 51 ehci0: [GIANT-LOCKED] usb1: EHCI version 1.0 usb1: companion controller, 8 ports each: usb0 usb1: on ehci0 usb1: USB revision 2.0 uhub1: nVidia EHCI root hub, class 9/0, rev 2.00/1.00, addr 1 uhub1: 8 ports with 8 removable, self powered umass0: ASUS Flash Card Reader, rev 2.00/3.95, addr 2 umass0:0:0:-1: Attached to scbus0 (snip) vga0: at port 0x3c0-0x3df iomem 0xa0000-0xbffff on isa0 uhub0: device problem (SET_ADDR_FAILED), disabling port 2 ukbd0: Topre Corporation HHKB Professional, rev 1.10/1.02, addr 2, iclass 3/1 kbd2 at ukbd0 Timecounter "TSC" frequency 1607418199 Hz quality 800 Timecounters tick every 1.000 msec And some basic info on this machine: the config is GENERIC without nve (to use if_nfe.ko), and somethimes without ums (to fiddle with ums.ko). FreeBSD 6.2-RC1 #3: Mon Dec 11 02:58:05 JST 2006 ACPI APIC Table: Timecounter "i8254" frequency 1193182 Hz quality 0 CPU: AMD Sempron(tm) Processor 3000+ (1607.42-MHz 686-class CPU) Origin = "AuthenticAMD" Id = 0x40ff2 Stepping = 2 Features=0x78bfbff Features2=0x2001 AMD Features=0xea500800 AMD Features2=0x19,CR8> real memory = 1005518848 (958 MB) avail memory = 966488064 (921 MB) ioapic0 irqs 0-23 on motherboard kbd1 at kbdmux0 ath_hal: 0.9.17.2 (AR5210, AR5211, AR5212, RF5111, RF5112, RF2413, RF5413) acpi0: on motherboard acpi_bus_number: can't get _ADR acpi_bus_number: can't get _ADR acpi_bus_number: can't get _ADR acpi_bus_number: can't get _ADR acpi0: Power Button (fixed) acpi_bus_number: can't get _ADR acpi_bus_number: can't get _ADR acpi_bus_number: can't get _ADR acpi_bus_number: can't get _ADR Timecounter "ACPI-fast" frequency 3579545 Hz quality 1000 acpi_timer0: <24-bit timer at 3.579545MHz> port 0x4008-0x400b on acpi0 From owner-freebsd-usb@FreeBSD.ORG Sun Dec 10 22:28:45 2006 Return-Path: X-Original-To: freebsd-usb@hub.freebsd.org Delivered-To: freebsd-usb@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5420716A510; Sun, 10 Dec 2006 22:28:45 +0000 (UTC) (envelope-from itetcu@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0CCDB44554; Sun, 10 Dec 2006 22:09:14 +0000 (GMT) (envelope-from itetcu@FreeBSD.org) Received: from freefall.freebsd.org (itetcu@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id kBAMAKV7039975; Sun, 10 Dec 2006 22:10:20 GMT (envelope-from itetcu@freefall.freebsd.org) Received: (from itetcu@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id kBAMAKLn039969; Sun, 10 Dec 2006 22:10:20 GMT (envelope-from itetcu) Date: Sun, 10 Dec 2006 22:10:20 GMT From: Ion-Mihai Tetcu Message-Id: <200612102210.kBAMAKLn039969@freefall.freebsd.org> To: littlesavage@rambler.ru, itetcu@FreeBSD.org, freebsd-usb@FreeBSD.org Cc: Subject: Re: usb/91546: [umodem] [patch] Nokia 6630 mobile phone does not work X-BeenThere: freebsd-usb@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: FreeBSD support for USB List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Dec 2006 22:28:45 -0000 Synopsis: [umodem] [patch] Nokia 6630 mobile phone does not work State-Changed-From-To: open->closed State-Changed-By: itetcu State-Changed-When: Sun Dec 10 22:10:19 UTC 2006 State-Changed-Why: Committed, with minor changes. Thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=91546 From owner-freebsd-usb@FreeBSD.ORG Sun Dec 10 23:13:13 2006 Return-Path: X-Original-To: freebsd-usb@hub.freebsd.org Delivered-To: freebsd-usb@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 779D716A407; Sun, 10 Dec 2006 23:13:13 +0000 (UTC) (envelope-from itetcu@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.FreeBSD.org (Postfix) with ESMTP id AD61343D49; Sun, 10 Dec 2006 23:10:33 +0000 (GMT) (envelope-from itetcu@FreeBSD.org) Received: from freefall.freebsd.org (itetcu@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id kBANBkRj046081; Sun, 10 Dec 2006 23:11:46 GMT (envelope-from itetcu@freefall.freebsd.org) Received: (from itetcu@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id kBANBj9g046077; Sun, 10 Dec 2006 23:11:45 GMT (envelope-from itetcu) Date: Sun, 10 Dec 2006 23:11:45 GMT From: Ion-Mihai Tetcu Message-Id: <200612102311.kBANBj9g046077@freefall.freebsd.org> To: littlesavage@rambler.ru, itetcu@FreeBSD.org, freebsd-usb@FreeBSD.org Cc: Subject: Re: usb/91546: [umodem] [patch] Nokia 6630 mobile phone does not work X-BeenThere: freebsd-usb@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: FreeBSD support for USB List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Dec 2006 23:13:13 -0000 Synopsis: [umodem] [patch] Nokia 6630 mobile phone does not work State-Changed-From-To: closed->open State-Changed-By: itetcu State-Changed-When: Sun Dec 10 23:11:43 UTC 2006 State-Changed-Why: Closed by mistake (but it will be nice to see this commited). http://www.freebsd.org/cgi/query-pr.cgi?pr=91546 From owner-freebsd-usb@FreeBSD.ORG Mon Dec 11 11:15:37 2006 Return-Path: X-Original-To: freebsd-usb@FreeBSD.org Delivered-To: freebsd-usb@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 80E6616A5FF for ; Mon, 11 Dec 2006 11:15:37 +0000 (UTC) (envelope-from owner-bugmaster@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.FreeBSD.org (Postfix) with ESMTP id 35F6443E00 for ; Mon, 11 Dec 2006 11:07:48 +0000 (GMT) (envelope-from owner-bugmaster@FreeBSD.org) Received: from freefall.freebsd.org (linimon@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id kBBB94ho023041 for ; Mon, 11 Dec 2006 11:09:04 GMT (envelope-from owner-bugmaster@FreeBSD.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id kBBB91to023037 for freebsd-usb@FreeBSD.org; Mon, 11 Dec 2006 11:09:01 GMT (envelope-from owner-bugmaster@FreeBSD.org) Date: Mon, 11 Dec 2006 11:09:01 GMT Message-Id: <200612111109.kBBB91to023037@freefall.freebsd.org> X-Authentication-Warning: freefall.freebsd.org: linimon set sender to owner-bugmaster@FreeBSD.org using -f From: FreeBSD bugmaster To: freebsd-usb@FreeBSD.org Cc: Subject: Current problem reports assigned to you X-BeenThere: freebsd-usb@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: FreeBSD support for USB List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 11 Dec 2006 11:15:37 -0000 Current FreeBSD problem reports Critical problems S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/84750 usb [hang] 6-BETA2 reboot/shutdown with root_fs on externa o usb/91629 usb usbd_abort_pipe() may result in infinite loop 2 problems total. Serious problems S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/40792 usb signals lead to data loss on device ugen o usb/46176 usb [panic] umass causes kernel panic if device removed be o i386/46371 usb USB controller cannot be initialized on IBM Netfinity f usb/55555 usb [ums] system freezes with access to /dev/ums0 o bin/57255 usb usbd and multi-function devices o usb/62088 usb [usb] Logitech Cordless/Optical Mouse not working o usb/62309 usb [ugen] [panic] panic: ugen(4) driver o usb/63621 usb [usb] USB MemoryStick Reader stalls/crashes system o usb/69006 usb [patch] Apple Cinema Display hangs USB ports o usb/71155 usb [usb] misbehaving usb-printer hangs processes, causes o usb/73307 usb [panic] Kernel panics on USB disconnect o usb/74771 usb [umass] mounting write-protected umass device as read/ o usb/75705 usb [panic] da0 attach / Optio S4 (with backtrace) o usb/75797 usb 5.3-STABLE(2005 1/4) detect USB headset, But can not f f usb/76204 usb panic while using usb attached modem o usb/76395 usb USB printer does not work, usbdevs says "addr 0 should f usb/76684 usb [hang] Toshiba PDR-M4 camera connected via USB hangs s o usb/77184 usb kernel panic on USB device disconnect o usb/77294 usb ucom + ulpcom panic o usb/77940 usb [patch] [panic] insertion of usb keyboard panics syste f i386/78218 usb [kue] kue not detected on Sony PCG-F370 VAIO o usb/78989 usb please add USB keyboard support to install CD's o usb/79140 usb WD Firewire/USB Combo hangs under load on USB interfac o usb/79269 usb USB ohci da0 plug/unplug causes crashes and lockups. o usb/79287 usb UHCI hang after interrupt transfer o usb/79524 usb printing to Minolta PagePro 1[23]xxW via USB fails wit f usb/79656 usb [usb] RHSC interrupts lost o usb/79722 usb [usb] wrong alignments in ehci.h o usb/80040 usb [hang] Use of sound mixer causes system freeze with ua f usb/80260 usb Travan USB tape drive fails to write o usb/80361 usb mounting of usb-stick fails o usb/80373 usb usb keyboard does not respond o usb/80829 usb possible panic when loading USB-modules o usb/80862 usb [patch] USB locking issues: missing some Giant calls o usb/81308 usb [ugen] [patch] polling a ugen(4) control endpoint caus f usb/82198 usb Panic on attaching of ONKI N-338 USB MP3 player f usb/82272 usb Can not recognize Casio camera EX-Z40 as a umass devic o usb/82350 usb [usb] null pointer dereference in USB stack o usb/82520 usb Reboot when USL101 connected o usb/82569 usb [usb] USB mass storage plug/unplug causes system panic o usb/82660 usb EHCI: I/O stuck in state 'physrd'/panic o usb/83504 usb [usb] SpeedTouch USB stop working on recent current (a o usb/83563 usb [panic] Page Fault while detaching Mpman Usb device o usb/83677 usb [usb] usb controller often not detected (Sun W2100z) o usb/83756 usb Microsoft Intellimouse Explorer 4.0A doesn't work. o usb/83977 usb [ucom] [panic] ucom1: open bulk out error (addr 2): IN o usb/84326 usb [umass] Panic trying to connect SCSI tape drive via US o usb/84336 usb [usb] [reboot] instant system reboot when unmounting a o usb/84936 usb install - usb keyboard not recognized o usb/86031 usb need support usb nic rt2500 in my 5.4 STABLE o usb/86767 usb [usb] bogus "slice starts beyond end of the disk:..." o usb/87099 usb panic: ohci_add_done: addr 0x000d1bf0 not found o usb/87565 usb [PATCH] Support for Vodaphone 3G/UMTS cards o usb/88743 usb [hang] USB makes kernel hang at boot (regression in 6. o usb/88966 usb kldunload ucom.ko returns "Device busy" error. o usb/89003 usb LaCie Firewire drive not properly supported under 6.0 o usb/89218 usb flash disk o usb/89954 usb [usb] USB Disk driver race condition? f usb/89997 usb [umass] [panic] panic on iPod mini detach o usb/90162 usb [usb] [patch] Add support for the MS Wireless USB Mous o usb/90700 usb Kernel panic on connect/mount/use umass device o usb/91238 usb USB tape unit fails to write a second tape file to the o usb/91263 usb [patch] USB quirk needed for Logitec USB Hard disk LHD o usb/91283 usb booting very slow with usb devices connection (regress o usb/91538 usb Unable to print to EPSON CX3500 o usb/91906 usb FreeBSD hangs while booting with USB legacy support on o usb/92052 usb usbd causes defunct process with busy file-handle o usb/92142 usb SET_ADDR_FAILED and SHORT_XFER errors from usb drivers o usb/92171 usb [panic] panic unplugging Vodafone Mobile Connect (UMTS o usb/93155 usb /dev/ulpt0: device busy USB printer does not work o usb/93408 usb hw.acpi.cpu.cx_lowest=C3 on AMD Turion causes choppy m f usb/93496 usb USB2.0 umass stalls on VIA o usb/93640 usb device ehci causes interrupt storm on this MSI amd64 m o usb/93828 usb ohci causes panic on boot (HP Pavillion d4100e) o usb/93949 usb ugen(4)-related repeatable kernel panic in 6.1-PRERELE o usb/94166 usb btx halted with a flashcard plugged o usb/94384 usb kernel panic with usb2 hardware o usb/94717 usb Reading from /dev/ulpt can break work of a UHCI hub o usb/94742 usb [umass] [patch] umass driver does not recognise YANO e o usb/94813 usb mounting write-protected umass device freezes computer o usb/94897 usb Kernel Panic when cleanly unmounting USB disk o usb/95131 usb Boot/setup process does not accept key strokes o usb/95348 usb USB keyboard unplug causes noise on screen o usb/95562 usb Write Stress in USB Mass drive cause: [vinvalbuf: dir o usb/95636 usb [boot] 5 minute delay at boot when using VT6205 based o usb/96120 usb USB mouse not always detected o usb/96224 usb [usb] mount_msdosfs cause page fault in syncer process o usb/96457 usb fatback on umass = reboot o usb/97286 usb MS Wireless Intellimouse Explorer 2.0 doesn't work o usb/99431 usb FreeBSD on MSI 6566E (Intel 845E motherboards) doesn't o usb/101096 usb USB WLAN occasionally causes kernel-panics during larg o usb/101752 usb [panic] 6.1-RELEASE kernel panic on usb device inserti o usb/102066 usb [ukbd] usb keyboard and multimedia keys don't work o usb/102096 usb /usr/sbin/usbd does not handle multiple devices in one o i386/103025 usb [USB] the wrong in USB device for freeBSD 6.1 and AMD o usb/104292 usb system lockup on forced umount of usb-storage device o usb/104810 usb [usb] panic: ohci_add_done: addr 0x3fef1ba0 not found o usb/104830 usb system crashes when copying data to umass devices o usb/105186 usb USB 2.0/ehci on FreeBSD 6.2-PRE/AMD64 crashes box o usb/106565 usb [PATCH] ums(4) does not work if the mouse defaults to 100 problems total. Non-critical problems S Tracker Resp. Description -------------------------------------------------------------------------------- o conf/30929 usb [usb] [patch] use usbd to initialize USB ADSL modem s usb/32653 usb Added patches to improve USB scanner supportOB o usb/40948 usb [usb] USB HP CDW8200 does not work f usb/41415 usb [usb] [patch] Some USB scanners cannot talk to uscanne o usb/48342 usb [PATCH] usbd dynamic device list. o kern/51958 usb [usb] [patch] update for urio driver o kern/52026 usb [usb] feature request: umass driver support for InSyst o usb/53025 usb [ugen] [patch] ugen does not allow O_NONBLOCK for inte o usb/56095 usb [usb] [patch] QUIRK: Apacer Pen Drive fails to work o kern/59698 usb [kbd] [patch] Rework of ukbd HID to AT code translatio f usb/60248 usb [patch] Problem with USB printer HP LaserJet 1300 o usb/61234 usb [usb] [patch] usbhidaction(1) doesn't support using an o usb/63837 usb [uhid] [patch] USB: hid_is_collection() only looks for o kern/65769 usb [usb] Call to tcflush(x, TCIFLUSH) stops input on usb- o kern/66547 usb [usb] Palm Tungsten T USB does not initialize correctl o usb/68232 usb [ugen] [patch] ugen(4) isochronous handling correction o usb/68412 usb [usb] [patch] QUIRK: Philips KEY013 USB MP3 player o usb/70523 usb [usb] [patch] umct sending/receiving wrong characters o usb/70942 usb [usb] Genius Wireless USB mouse: moused doesn't work c o usb/71416 usb [usb] Cryptoflex e-gate USB token (ugen0) detach is no o usb/71417 usb [usb] Cryptoflex e-gate USB token (ugen0) communicatio o usb/71455 usb [usb] Slow USB umass performance of 5.3 o usb/71605 usb [umass] [patch] umass doesn't recognize multiple slots o usb/72380 usb [usb] USB does not work [dual Celeron Abit] o usb/72732 usb [patch] Kyocera 7135 quirk. o usb/72733 usb Kyocera 7135 Palm OS connection problem. o usb/73056 usb [usb] Sun Microsystems Type 6 USB mouse not working in f usb/73553 usb [usb] Microsoft USB Internet Keyboard not recongized o usb/74211 usb USB flash drive causes CAM status 0x4 on 4.10Release f usb/74358 usb [umass] unplugging at boot time an umass device crashe o usb/74453 usb Q-lity CD-RW USB ECW-043 (ScanLogic SL11R chipset) doe o usb/74557 usb imation 500mb usb key can only be written halfway on f o usb/74609 usb [usb] [patch] allowing cdma modems to work at full spe o usb/74849 usb [usb] [patch] Samsung SPH-i500 does not attach properl o usb/74880 usb [usb] [patch] Samsung N400 cellphone/acm fails to atac o usb/75800 usb ucom1: init failed STALLED error in time of sync with o usb/75928 usb Cytronix SmartMedia card (SMC) reader has problems whe o usb/76461 usb [umass] disklabel of umass(4)-CAM(4)-da(4) not used by o usb/76732 usb Mouse problems with USB KVM Switch f usb/78371 usb Philips Wearable Audio Player (128) fails to attach f usb/78984 usb Creative MUVO umass failure o usb/79723 usb [usb] prepare for high speed isochronous transfers o usb/79725 usb [usb] [patch] USB device speed is not double-checked o usb/79893 usb [umass] [patch] new usbdevs/umass quirks derived from o usb/80010 usb [aue] [patch] add support for the AEI USB to LAN adapt f usb/80420 usb atapicam stops iPod functionality f usb/80773 usb "usbd_get_string()" could have taken a length paramete o usb/80774 usb have "usbd_find_desc" in line with the other "usbd_fin o usb/80776 usb [udav] UDAV device driver shouldn't use usb_add_task o usb/80777 usb usb_rem_task() should wait for callback to complete? o usb/80854 usb suggestion for new iface-no-probe mechanism o usb/80935 usb uvisor.c is not work with CLIE TH55. o usb/81191 usb Support for Curitel HX-550C USB modem to 5.4 RELEASE. f usb/81621 usb external hd hangs under load on ehci o usb/82436 usb [patch] USL101 Host-to-Host bridge support on FreeBSD o usb/83022 usb ALI USB 2.0 EHCI Controller is not detected o usb/83863 usb Communication problem between opensc/openct via USB wi o usb/85067 usb Cannot attach ScanJet 4300C to usb device o usb/85992 usb [uhid] [patch] USB stops working when trying to read f o usb/86195 usb [patch] allow USB Ethernet Adaptor "ELECOM LD-USB20" t o usb/86298 usb Known good USB mouse won't work with correct settings o usb/86438 usb Fix for non-working iPod over USB is in NetBSD CVS o usb/87224 usb Cannot mount USB Zip750 o usb/87648 usb [mouse] Logitech USB-optical mouse problem. o usb/88408 usb axe0 read PHY failed o usb/88939 usb Fix cheapy Myson USB-IDE adapter f usb/89087 usb usb external harddrive hangs with BBB reset failed, TI f usb/91191 usb HP LaserJet 1020 (USB printer) not recognized f usb/91516 usb [umass] umass0 problems, with Freecom Classic SL Hard o usb/91546 usb [umodem] [patch] Nokia 6630 mobile phone does not work o usb/91811 usb Compact Flash in HP Photosmart 2610 return " Medium n o usb/91896 usb Serial Number of USB Memory Sticks is not passed throu o usb/92306 usb [quirk] [patch] Support for iRiver U10 USB media playe o usb/92403 usb [uplcom] uplcom.c needs new entry for 4.00 revision of o usb/92852 usb Vertical scroll not working properly on A4Tech WOP-49 f usb/93011 usb HP ScanJet 6200C & uscanner problem o usb/93389 usb Digital Camera Pentax S60 don't work o usb/93872 usb [patch] SCSI quirk required for ELTA 8061 OL USB memor o usb/94132 usb USB QUIRK for CENTURY EX35QUAT disk enclosure f usb/94147 usb doesn't recognise my USB keyboard o usb/94148 usb Make if_cdce work with ARM linux handhelds o usb/94311 usb [ugen][PATCH] allow interrupt IN transactions to be af o usb/94439 usb [patch] Add support for JNC MP3 Player o usb/94946 usb [uhub][patch] code dynamic status size for status chan o usb/95037 usb USB disk didnt recognized on hot-plug. o usb/95173 usb [usb] cannot mount external usb harddisk VIA Technolog o usb/95241 usb Patch to add USB ID for OEM Pharos 360 GPS o usb/95803 usb Add support for AnyData ADU-E100H o usb/95805 usb Add Support for Siemens ES75 modem o usb/96381 usb [patch] add a quirk table entry for a flash ram usb st o usb/96546 usb [usb] [patch] Add support (quirk) for EasyMP3 EM732X U o usb/96714 usb Update uvisor to support the Fossil Abacus Wrist PDA p usb/96901 usb [patch] Add support for X-Micro Flash Disk o usb/97175 usb USB cardreader hangs system o usb/97472 usb [patch] add support for Olympus C150,D390 o usb/98343 usb BBB reset failed errors with Creative Muvo MP3 player; o usb/99419 usb external usb harddrive slow to accept f usb/99538 usb [kbd] while using USB keyboard default params of atkbd o usb/100746 usb [kbd] system does not boot due to USB keyboard problem o usb/101757 usb [patch] uhid.4: correct structure field names to match o usb/101761 usb [patch] usb.h: increase maximal size of report descrip o usb/101775 usb [libusbhid] [patch] possible error in report descripto o usb/102976 usb Casio Exilim Digital Camera cause panic o usb/103046 usb [patch] ulpt event driven I/O with select(2) and nonbl o usb/103289 usb USB 2.0 problems on AMD LX-800 CPU and CS-5536 chipset o usb/103418 usb [usb] [patch] usbhidctl: add ability to write output a o usb/103917 usb USB driver reports "Addr 0 should never happen" o usb/104290 usb QUIRK: TOSHIBA DVD-RAM drive (libretto DVD Dock) o usb/104352 usb [ural] ural driver doesnt work o usb/104645 usb QUIRK: Rave C-201 MP3 player o usb/105065 usb SATA - USB Bridge o usb/105361 usb Kernel panic during unmounting mass storage (Creative o usb/105518 usb epson perfection 3490 usb scanner def o kern/106033 usb [usb] [patch] support for 3G/WCDMA cards Option Globet o usb/106041 usb FreeBSD does not recognise Mustek BearPaw 2400TA usb s o usb/106070 usb devd recognizes ucom, but ttyU is the device actually o usb/106462 usb Motorola U6 PEBL not recognized by system via USB [pat o usb/106538 usb [patch] Can not burn DVD on Sony DRX-820UL external US 118 problems total. From owner-freebsd-usb@FreeBSD.ORG Mon Dec 11 21:06:12 2006 Return-Path: X-Original-To: freebsd-usb@hub.freebsd.org Delivered-To: freebsd-usb@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id F23B616A407 for ; Mon, 11 Dec 2006 21:06:12 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.FreeBSD.org (Postfix) with ESMTP id F05F444492 for ; Mon, 11 Dec 2006 20:39:23 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id kBBKe5cc013933 for ; Mon, 11 Dec 2006 20:40:05 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id kBBKe5MZ013932; Mon, 11 Dec 2006 20:40:05 GMT (envelope-from gnats) Resent-Date: Mon, 11 Dec 2006 20:40:05 GMT Resent-Message-Id: <200612112040.kBBKe5MZ013932@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-usb@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Leif Pedersen Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6396916A40F for ; Mon, 11 Dec 2006 20:35:32 +0000 (UTC) (envelope-from bilbo@hobbiton.org) Received: from smaug.hobbiton.org (smaug.hobbiton.org [67.132.216.160]) by mx1.FreeBSD.org (Postfix) with ESMTP id 53E284428F for ; Mon, 11 Dec 2006 20:10:55 +0000 (GMT) (envelope-from bilbo@hobbiton.org) Received: by smaug.hobbiton.org (Postfix, from userid 1000) id 5DA6A130CCD; Mon, 11 Dec 2006 14:11:50 -0600 (CST) Message-Id: <20061211201150.5DA6A130CCD@smaug.hobbiton.org> Date: Mon, 11 Dec 2006 14:11:50 -0600 (CST) From: Leif Pedersen To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: usb/106615: uftdi module does not automatically load with the FTDI FT2232C chip X-BeenThere: freebsd-usb@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Leif Pedersen List-Id: FreeBSD support for USB List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 11 Dec 2006 21:06:13 -0000 >Number: 106615 >Category: usb >Synopsis: uftdi module does not automatically load with the FTDI FT2232C chip >Confidential: no >Severity: serious >Priority: high >Responsible: freebsd-usb >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Dec 11 20:40:05 GMT 2006 >Closed-Date: >Last-Modified: >Originator: Leif Pedersen >Release: FreeBSD 6.1-PRERELEASE i386 >Organization: >Environment: >Description: uftdi module does not automatically load with the FTDI FT2232C chip >How-To-Repeat: Boot with generic kernel, plug in a USB serial port that uses the FT2232C chip such as the USB-16COM-RM. >Fix: I don't know how to fix this. To work around, add this to /boot/loader.conf: uftdi_load="YES" Or run kldload uftdi, then replug the device. (Loading the module without replugging the device does NOT work. Should it?) PS. I have one of these, and I'd be happy to test any changes. >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-usb@FreeBSD.ORG Mon Dec 11 22:14:23 2006 Return-Path: X-Original-To: freebsd-usb@hub.freebsd.org Delivered-To: freebsd-usb@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 0BD2D16A50A for ; Mon, 11 Dec 2006 22:14:23 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.FreeBSD.org (Postfix) with ESMTP id F07324429C for ; Mon, 11 Dec 2006 21:59:43 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id kBBM0aXf020741 for ; Mon, 11 Dec 2006 22:00:37 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id kBBM0aVX020740; Mon, 11 Dec 2006 22:00:36 GMT (envelope-from gnats) Date: Mon, 11 Dec 2006 22:00:36 GMT Message-Id: <200612112200.kBBM0aVX020740@freefall.freebsd.org> To: freebsd-usb@FreeBSD.org From: Hans Petter Selasky Cc: Subject: Re: usb/106615: uftdi module does not automatically load with the FTDI FT2232C chip X-BeenThere: freebsd-usb@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Hans Petter Selasky List-Id: FreeBSD support for USB List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 11 Dec 2006 22:14:23 -0000 The following reply was made to PR usb/106615; it has been noted by GNATS. From: Hans Petter Selasky To: Leif Pedersen Cc: FreeBSD-gnats-submit@freebsd.org Subject: Re: usb/106615: uftdi module does not automatically load with the FTDI FT2232C chip Date: Mon, 11 Dec 2006 22:29:47 +0100 On Monday 11 December 2006 21:11, Leif Pedersen wrote: > >Number: 106615 > >Category: usb > >Synopsis: uftdi module does not automatically load with the FTDI > > FT2232C chip Confidential: no > >Severity: serious > >Priority: high > >Responsible: freebsd-usb > >State: open > >Quarter: > >Keywords: > >Date-Required: > >Class: sw-bug > >Submitter-Id: current-users > >Arrival-Date: Mon Dec 11 20:40:05 GMT 2006 > >Closed-Date: > >Last-Modified: > >Originator: Leif Pedersen > >Release: FreeBSD 6.1-PRERELEASE i386 > >Organization: > >Environment: > > > > > > > >Description: > > uftdi module does not automatically load with the FTDI FT2232C chip > > >How-To-Repeat: > > Boot with generic kernel, plug in a USB serial port that uses the FT2232C > chip such as the USB-16COM-RM. > > >Fix: > > I don't know how to fix this. > > To work around, add this to /boot/loader.conf: uftdi_load="YES" > > Or run kldload uftdi, then replug the device. (Loading the module without > replugging the device does NOT work. Should it?) The new USB driver will have this fixed, so that immediately when you load a kernel module, USB devices will get probed. See: http://perforce.freebsd.org/depotTreeBrowser.cgi?FSPC=//depot/projects/usb&HIDEDEL=NO Or: http://www.turbocat.net/~hselasky/usb4bsd > PS. I have one of these, and I'd be happy to test any changes. It would be nice if you could test the rewritten uftdi driver, if it works. --HPS > > >Release-Note: > >Audit-Trail: > >Unformatted: From owner-freebsd-usb@FreeBSD.ORG Mon Dec 11 22:15:30 2006 Return-Path: X-Original-To: freebsd-usb@FreeBSD.org Delivered-To: freebsd-usb@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id AA43E16A510; Mon, 11 Dec 2006 22:15:30 +0000 (UTC) (envelope-from bilbo@hobbiton.org) Received: from smaug.hobbiton.org (smaug.hobbiton.org [67.132.216.160]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1C1DA43DAA; Mon, 11 Dec 2006 22:05:32 +0000 (GMT) (envelope-from bilbo@hobbiton.org) Received: from mail.hobbiton.org (ivybush.hobbiton.org [10.1.1.5]) by smaug.hobbiton.org (Postfix) with ESMTP id DB3A7130C89; Mon, 11 Dec 2006 16:06:23 -0600 (CST) Received: from 67.134.74.51 (SquirrelMail authenticated user bilbo) by mail.hobbiton.org with HTTP; Mon, 11 Dec 2006 16:06:23 -0600 (CST) Message-ID: <61455.67.134.74.51.1165874783.squirrel@mail.hobbiton.org> In-Reply-To: <200612112040.kBBKe5vv013925@freefall.freebsd.org> References: <200612112040.kBBKe5vv013925@freefall.freebsd.org> Date: Mon, 11 Dec 2006 16:06:23 -0600 (CST) From: "Leif Pedersen" To: FreeBSD-gnats-submit@FreeBSD.org, freebsd-usb@FreeBSD.org User-Agent: SquirrelMail/1.4.8 MIME-Version: 1.0 Content-Type: text/plain;charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Priority: 3 (Normal) Importance: Normal Cc: Subject: Re: usb/106615: uftdi module does not automatically load with the FTDI FT2232C chip X-BeenThere: freebsd-usb@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: FreeBSD support for USB List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 11 Dec 2006 22:15:30 -0000 This is, in fact, a problem on a recent 6.2 build. Sorry for any confusion from posting 6.1-PRERELEASE. On Mon, December 11, 2006 14:40, FreeBSD-gnats-submit@FreeBSD.org wrote: > Thank you very much for your problem report. > It has the internal identification `usb/106615'. > The individual assigned to look at your > report is: freebsd-usb. > > You can access the state of your problem report at any time > via this link: > > http://www.freebsd.org/cgi/query-pr.cgi?pr=106615 > >>Category: usb >>Responsible: freebsd-usb >>Synopsis: uftdi module does not automatically load with the >> FTDI FT2232C chip >>Arrival-Date: Mon Dec 11 20:40:05 GMT 2006 > > From owner-freebsd-usb@FreeBSD.ORG Mon Dec 11 22:20:54 2006 Return-Path: X-Original-To: freebsd-usb@hub.freebsd.org Delivered-To: freebsd-usb@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 94FE616A416 for ; Mon, 11 Dec 2006 22:20:54 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8A07B43DBB for ; Mon, 11 Dec 2006 22:19:06 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id kBBMKEqF022731 for ; Mon, 11 Dec 2006 22:20:14 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id kBBMKEXk022730; Mon, 11 Dec 2006 22:20:14 GMT (envelope-from gnats) Date: Mon, 11 Dec 2006 22:20:14 GMT Message-Id: <200612112220.kBBMKEXk022730@freefall.freebsd.org> To: freebsd-usb@FreeBSD.org From: "Leif Pedersen" Cc: Subject: Re: usb/106615: uftdi module does not automatically load with the FTDI FT2232C chip X-BeenThere: freebsd-usb@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Leif Pedersen List-Id: FreeBSD support for USB List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 11 Dec 2006 22:20:54 -0000 The following reply was made to PR usb/106615; it has been noted by GNATS. From: "Leif Pedersen" To: FreeBSD-gnats-submit@FreeBSD.org, freebsd-usb@FreeBSD.org Cc: Subject: Re: usb/106615: uftdi module does not automatically load with the FTDI FT2232C chip Date: Mon, 11 Dec 2006 16:06:23 -0600 (CST) This is, in fact, a problem on a recent 6.2 build. Sorry for any confusion from posting 6.1-PRERELEASE. On Mon, December 11, 2006 14:40, FreeBSD-gnats-submit@FreeBSD.org wrote: > Thank you very much for your problem report. > It has the internal identification `usb/106615'. > The individual assigned to look at your > report is: freebsd-usb. > > You can access the state of your problem report at any time > via this link: > > http://www.freebsd.org/cgi/query-pr.cgi?pr=106615 > >>Category: usb >>Responsible: freebsd-usb >>Synopsis: uftdi module does not automatically load with the >> FTDI FT2232C chip >>Arrival-Date: Mon Dec 11 20:40:05 GMT 2006 > > From owner-freebsd-usb@FreeBSD.ORG Mon Dec 11 23:19:43 2006 Return-Path: X-Original-To: freebsd-usb@hub.freebsd.org Delivered-To: freebsd-usb@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 2DC9716A407; Mon, 11 Dec 2006 23:19:43 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.FreeBSD.org (Postfix) with ESMTP id C9AA843D91; Mon, 11 Dec 2006 23:18:05 +0000 (GMT) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (linimon@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id kBBNJOLU027906; Mon, 11 Dec 2006 23:19:24 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id kBBNJNKL027902; Mon, 11 Dec 2006 23:19:23 GMT (envelope-from linimon) Date: Mon, 11 Dec 2006 23:19:23 GMT From: Mark Linimon Message-Id: <200612112319.kBBNJNKL027902@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-usb@FreeBSD.org Cc: Subject: Re: usb/106621: [usb] DLINK DUB-E100 support broken X-BeenThere: freebsd-usb@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: FreeBSD support for USB List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 11 Dec 2006 23:19:43 -0000 Old Synopsis: DLINK DUB-E100 support broken New Synopsis: [usb] DLINK DUB-E100 support broken Responsible-Changed-From-To: freebsd-bugs->freebsd-usb Responsible-Changed-By: linimon Responsible-Changed-When: Mon Dec 11 23:19:05 UTC 2006 Responsible-Changed-Why: Over to maintainer(s). http://www.freebsd.org/cgi/query-pr.cgi?pr=106621 From owner-freebsd-usb@FreeBSD.ORG Mon Dec 11 23:51:14 2006 Return-Path: X-Original-To: freebsd-usb@hub.freebsd.org Delivered-To: freebsd-usb@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 48F7116A4CA for ; Mon, 11 Dec 2006 23:51:14 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.FreeBSD.org (Postfix) with ESMTP id 32B9443DA4 for ; Mon, 11 Dec 2006 23:49:07 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id kBBNoDUq030961 for ; Mon, 11 Dec 2006 23:50:13 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id kBBNoD9x030960; Mon, 11 Dec 2006 23:50:13 GMT (envelope-from gnats) Date: Mon, 11 Dec 2006 23:50:13 GMT Message-Id: <200612112350.kBBNoD9x030960@freefall.freebsd.org> To: freebsd-usb@FreeBSD.org From: "Leif Pedersen" Cc: Subject: Re: usb/106615: uftdi module does not automatically load with the FTDI FT2232C chip X-BeenThere: freebsd-usb@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Leif Pedersen List-Id: FreeBSD support for USB List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 11 Dec 2006 23:51:14 -0000 The following reply was made to PR usb/106615; it has been noted by GNATS. From: "Leif Pedersen" To: "Hans Petter Selasky" Cc: freebsd-gnats-submit@freebsd.org Subject: Re: usb/106615: uftdi module does not automatically load with the FTDI FT2232C chip Date: Mon, 11 Dec 2006 17:42:43 -0600 (CST) On Mon, December 11, 2006 15:29, Hans Petter Selasky wrote: > On Monday 11 December 2006 21:11, Leif Pedersen wrote: >> >Number: 106615 >> >Synopsis: uftdi module does not automatically load with >> > the FTDI FT2232C chip > > The new USB driver will have this fixed, so that immediately when > you load a kernel module, USB devices will get probed. > >> PS. I have one of these, and I'd be happy to test any changes. > > It would be nice if you could test the rewritten uftdi driver, if it > works. > > --HPS Cool! Would it be in RELENG_6_2? From owner-freebsd-usb@FreeBSD.ORG Tue Dec 12 00:43:57 2006 Return-Path: X-Original-To: freebsd-usb@freebsd.org Delivered-To: freebsd-usb@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 136BB16A4C2 for ; Tue, 12 Dec 2006 00:43:57 +0000 (UTC) (envelope-from imp@bsdimp.com) Received: from harmony.bsdimp.com (vc4-2-0-87.dsl.netrack.net [199.45.160.85]) by mx1.FreeBSD.org (Postfix) with ESMTP id 45433443EF for ; Tue, 12 Dec 2006 00:32:00 +0000 (GMT) (envelope-from imp@bsdimp.com) Received: from localhost (localhost [127.0.0.1]) by harmony.bsdimp.com (8.13.4/8.13.4) with ESMTP id kBC0UKtM000738; Mon, 11 Dec 2006 17:30:20 -0700 (MST) (envelope-from imp@bsdimp.com) Date: Mon, 11 Dec 2006 17:31:17 -0700 (MST) Message-Id: <20061211.173117.-1639388038.imp@bsdimp.com> To: bilbo@hobbiton.org From: "M. Warner Losh" In-Reply-To: <200612112350.kBBNoD9x030960@freefall.freebsd.org> References: <200612112350.kBBNoD9x030960@freefall.freebsd.org> X-Mailer: Mew version 4.2 on Emacs 21.3 / Mule 5.0 (SAKAKI) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-2.0 (harmony.bsdimp.com [127.0.0.1]); Mon, 11 Dec 2006 17:30:21 -0700 (MST) Cc: freebsd-usb@freebsd.org Subject: Re: usb/106615: uftdi module does not automatically load with the FTDI FT2232C chip X-BeenThere: freebsd-usb@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: FreeBSD support for USB List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 12 Dec 2006 00:43:57 -0000 In message: <200612112350.kBBNoD9x030960@freefall.freebsd.org> "Leif Pedersen" writes: : The following reply was made to PR usb/106615; it has been noted by GNATS. : : From: "Leif Pedersen" : To: "Hans Petter Selasky" : Cc: freebsd-gnats-submit@freebsd.org : Subject: Re: usb/106615: uftdi module does not automatically load with the : FTDI FT2232C chip : Date: Mon, 11 Dec 2006 17:42:43 -0600 (CST) : : On Mon, December 11, 2006 15:29, Hans Petter Selasky wrote: : > On Monday 11 December 2006 21:11, Leif Pedersen wrote: : >> >Number: 106615 : >> >Synopsis: uftdi module does not automatically load with : >> > the FTDI FT2232C chip : > : > The new USB driver will have this fixed, so that immediately when : > you load a kernel module, USB devices will get probed. : > : >> PS. I have one of these, and I'd be happy to test any changes. : > : > It would be nice if you could test the rewritten uftdi driver, if it : > works. : > : > --HPS : : Cool! Would it be in RELENG_6_2? No. Warner From owner-freebsd-usb@FreeBSD.ORG Tue Dec 12 03:06:08 2006 Return-Path: X-Original-To: usb@freebsd.org Delivered-To: freebsd-usb@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 2201616A403 for ; Tue, 12 Dec 2006 03:06:08 +0000 (UTC) (envelope-from blue@white.lv) Received: from purple.the-7.net (purple.the-7.net [64.71.156.34]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3131D43C9E for ; Tue, 12 Dec 2006 03:04:47 +0000 (GMT) (envelope-from blue@white.lv) Received: from seerajeane.astralblue.net (seerajeane.astralblue.net [IPv6:2001:470:1f01:3222:2e0:81ff:fe51:1e73]) by purple.the-7.net (8.13.8/8.13.8) with ESMTP id kBC353hG043918 (version=TLSv1/SSLv3 cipher=DHE-DSS-AES256-SHA bits=256 verify=OK) for ; Mon, 11 Dec 2006 19:05:04 -0800 (PST) (envelope-from blue@white.lv) Received: from [IPv6:2001:470:1f01:3222:2e0:81ff:fe51:1e73] (seerajeane.astralblue.net [IPv6:2001:470:1f01:3222:2e0:81ff:fe51:1e73]) by seerajeane.astralblue.net (8.13.8/8.13.8) with ESMTP id kBC362SP017454 (version=TLSv1/SSLv3 cipher=DHE-DSS-AES256-SHA bits=256 verify=NO) for ; Mon, 11 Dec 2006 19:06:03 -0800 (PST) (envelope-from blue@white.lv) Message-ID: <457E1C9A.8060509@white.lv> Date: Mon, 11 Dec 2006 19:06:02 -0800 From: "Eugene M. Kim" User-Agent: Thunderbird 1.5.0.8 (X11/20061202) MIME-Version: 1.0 To: usb@freebsd.org X-Spam-Status: No, score=-0.3 required=10.0 tests=AWL, HTML_MESSAGE, NO_RELAYS autolearn=disabled version=3.1.1 X-Spam-Checker-Version: SpamAssassin 3.1.1 (2006-03-10) on purple.the-7.net Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: Subject: Request for testing, PR usb/106565: [PATCH] ums(4) does not work if the mouse defaults to boot protocol X-BeenThere: freebsd-usb@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: FreeBSD support for USB List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 12 Dec 2006 03:06:08 -0000 Greetings, If you have a mouse that exhibits some of the following symptoms, could you test the patch found within http://www.freebsd.org/cgi/query-pr.cgi?pr=106565 and provide feedback? * The mouse wheel does not work. * In some cases, when you move the mouse cursor and/or presses a button, the mouse behaves as if its wheel were turned (and consequently moves the scrollbar of the current window, for example). * Rarely, the mouse is recognized but does not work at all, except when you press a certain combination of buttons (usually the left button only) and the cursor moves erratically and spurious button events are generated (i.e. the mouse behaves as if some other buttons are pressed). * You cannot bring a window to the top by clicking in it; you have to click its window decoration (such as the title bar or a border). At least this happened to me when using metacity, the default window manager of GNOME. In a nutshell, the problem is that the mouse erroneously defaults not to the standard "report" protocol, but to the "boot" protocol (used by motherboards and embedded systems for "legacy emulation") when it is attached and configured. This presumably happened because developers of the problematic model of mouse had a broken motherboard that did not specifically configure the mouse into the boot protocol, which they had to work around. The patch solves the problem by forcing ums(4) to reset the mouse back into the report protocol so that it reports its full status that includes mouse wheels and more than three buttons. This aligns to the USB 2.0 specification, which recommends resetting the protocol although the mouse should already default to the report protocol. Cheers, Eugene From owner-freebsd-usb@FreeBSD.ORG Tue Dec 12 10:16:53 2006 Return-Path: X-Original-To: freebsd-usb@hub.freebsd.org Delivered-To: freebsd-usb@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id AFDEE16A51F for ; Tue, 12 Dec 2006 10:16:53 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6869743FC8 for ; Tue, 12 Dec 2006 10:09:02 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id kBCAAAcL041714 for ; Tue, 12 Dec 2006 10:10:10 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id kBCAAALb041711; Tue, 12 Dec 2006 10:10:10 GMT (envelope-from gnats) Date: Tue, 12 Dec 2006 10:10:10 GMT Message-Id: <200612121010.kBCAAALb041711@freefall.freebsd.org> To: freebsd-usb@FreeBSD.org From: Hans Petter Selasky Cc: Subject: Re: usb/106615: uftdi module does not automatically load with the FTDI FT2232C chip X-BeenThere: freebsd-usb@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Hans Petter Selasky List-Id: FreeBSD support for USB List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 12 Dec 2006 10:16:54 -0000 The following reply was made to PR usb/106615; it has been noted by GNATS. From: Hans Petter Selasky To: "Leif Pedersen" Cc: freebsd-gnats-submit@freebsd.org Subject: Re: usb/106615: uftdi module does not automatically load with the FTDI FT2232C chip Date: Tue, 12 Dec 2006 11:01:39 +0100 On Tuesday 12 December 2006 00:42, Leif Pedersen wrote: > On Mon, December 11, 2006 15:29, Hans Petter Selasky wrote: > > On Monday 11 December 2006 21:11, Leif Pedersen wrote: > >> >Number: 106615 > >> >Synopsis: uftdi module does not automatically load with > >> > the FTDI FT2232C chip > > > > The new USB driver will have this fixed, so that immediately when > > you load a kernel module, USB devices will get probed. > > > >> PS. I have one of these, and I'd be happy to test any changes. > > > > It would be nice if you could test the rewritten uftdi driver, if it > > works. > > > > --HPS > > Cool! Would it be in RELENG_6_2? No, not yet. --HPS From owner-freebsd-usb@FreeBSD.ORG Tue Dec 12 22:46:36 2006 Return-Path: X-Original-To: freebsd-usb@hub.freebsd.org Delivered-To: freebsd-usb@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 9BDBC16A4D1 for ; Tue, 12 Dec 2006 22:46:36 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.FreeBSD.org (Postfix) with ESMTP id C4428445A8 for ; Tue, 12 Dec 2006 21:59:21 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id kBCM0M5p025391 for ; Tue, 12 Dec 2006 22:00:22 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id kBCM0MDx025390; Tue, 12 Dec 2006 22:00:22 GMT (envelope-from gnats) Resent-Date: Tue, 12 Dec 2006 22:00:22 GMT Resent-Message-Id: <200612122200.kBCM0MDx025390@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-usb@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Sam Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6E8D216A412 for ; Tue, 12 Dec 2006 21:53:50 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [69.147.83.33]) by mx1.FreeBSD.org (Postfix) with ESMTP id 31EDF43DD4 for ; Tue, 12 Dec 2006 21:42:38 +0000 (GMT) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.13.1/8.13.1) with ESMTP id kBCLi2fG004588 for ; Tue, 12 Dec 2006 21:44:02 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.13.1/8.13.1/Submit) id kBCLi279004587; Tue, 12 Dec 2006 21:44:02 GMT (envelope-from nobody) Message-Id: <200612122144.kBCLi279004587@www.freebsd.org> Date: Tue, 12 Dec 2006 21:44:02 GMT From: Sam To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.0 Cc: Subject: usb/106648: USB Floppy on D1950 10 min Hang on Insert w/o Floppy Disk X-BeenThere: freebsd-usb@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: FreeBSD support for USB List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 12 Dec 2006 22:46:36 -0000 >Number: 106648 >Category: usb >Synopsis: USB Floppy on D1950 10 min Hang on Insert w/o Floppy Disk >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-usb >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Dec 12 22:00:22 GMT 2006 >Closed-Date: >Last-Modified: >Originator: Sam >Release: RELENG_6 from 2006-11-18 >Organization: Lumeta Corporation >Environment: FreeBSD dual-061211-125111 6.2-LUMETA FreeBSD 6.2-LUMETA #0: Tue Nov 21 01:17:27 UTC 2006 root@mothra.corp.lumeta.com:/usr/obj/usr/src/sys/LUMETA i386 >Description: When a USB Floppy drive is plugged into a Dell D1950 with no disk in the drive, the system hangs during boot for 10 minutes or so until it times out. If the drive is plugged into the system with no disk a similar timeout behavior is observable during which if you unplug the device a panic freezes the USB bus. The system must be restarted manually to recover. Following are some relevant portions of the system log from a boot: Dec 12 14:36:43 dual-061211-125111 kernel: da1 at umass-sim0 bus 0 target 0 lun 0 Dec 12 14:36:43 dual-061211-125111 kernel: da1: Removable Direct Access SCSI-0 device Dec 12 14:36:43 dual-061211-125111 kernel: da1: 1.000MB/s transfers Dec 12 14:36:43 dual-061211-125111 kernel: da1: 1MB (2880 512 byte sectors: 64H 32S/T 1C) Dec 12 14:36:44 dual-061211-125111 kernel: umass0: Unsupported UFI command 0x35 Dec 12 14:36:44 dual-061211-125111 kernel: (da1:umass-sim0:0:0:0): Synchronize cache failed, status == 0x6, scsi status == 0x0 Dec 12 14:36:44 dual-061211-125111 kernel: umass0: Unsupported UFI command 0x35 Dec 12 14:36:44 dual-061211-125111 kernel: (da1:umass-sim0:0:0:0): Synchronize cache failed, status == 0x6, scsi status == 0x0 Dec 12 14:36:44 dual-061211-125111 kernel: umass0: Unsupported UFI command 0x35 Dec 12 14:36:44 dual-061211-125111 kernel: (da1:umass-sim0:0:0:0): Synchronize cache failed, status == 0x6, scsi status == 0x0 Dec 12 14:36:52 dual-061211-125111 kernel: umass0: Unsupported UFI command 0x35 Dec 12 14:36:52 dual-061211-125111 kernel: (da1:umass-sim0:0:0:0): Synchronize cache failed, status == 0x6, scsi status == 0x0 Dec 12 14:37:00 dual-061211-125111 kernel: umass0: at uhub4 port 1 (addr 3) disconnected Dec 12 14:37:00 dual-061211-125111 kernel: (da1:umass-sim0:0:0:0): lost device Dec 12 14:37:00 dual-061211-125111 kernel: (da1:umass-sim0:0:0:0): removing device entry Dec 12 14:37:00 dual-061211-125111 kernel: umass0: detached Dec 12 14:37:15 dual-061211-125111 kernel: umass0: NEC NEC USB UF000x, rev 1.10/1.50, addr 3 Dec 12 14:37:16 dual-061211-125111 kernel: (probe0:umass-sim0:0:0:0): INQUIRY. CDB: 12 0 0 0 24 0 Dec 12 14:37:16 dual-061211-125111 kernel: (probe0:umass-sim0:0:0:0): CAM Status: SCSI Status Error Dec 12 14:37:16 dual-061211-125111 kernel: (probe0:umass-sim0:0:0:0): SCSI Status: Check Condition Dec 12 14:37:16 dual-061211-125111 kernel: (probe0:umass-sim0:0:0:0): UNIT ATTENTION asc:29,0 Dec 12 14:37:16 dual-061211-125111 kernel: (probe0:umass-sim0:0:0:0): Power on, reset, or bus device reset occurred Dec 12 14:37:16 dual-061211-125111 kernel: (probe0:umass-sim0:0:0:0): Retrying Command (per Sense Data) Dec 12 14:38:07 dual-061211-125111 kernel: (da1:umass-sim0:0:0:0): got CAM status 0x4 Dec 12 14:38:07 dual-061211-125111 kernel: (da1:umass-sim0:0:0:0): fatal error, failed to attach to device Dec 12 14:38:07 dual-061211-125111 kernel: (da1:umass-sim0:0:0:0): lost device Dec 12 14:43:32 dual-061211-125111 kernel: (da1:umass-sim0:0:0:0): removing device entry Dec 12 14:43:32 dual-061211-125111 kernel: Opened disk da1 -> 5 >How-To-Repeat: On a Dell D1950 plug in a USB floppy with no disk in it and boot the system. It will hang when trying to read it. Alternately, plug the floppy with no disk in it and then remove it. The USB bus becomes unusable. >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-usb@FreeBSD.ORG Wed Dec 13 02:35:19 2006 Return-Path: X-Original-To: freebsd-usb@hub.freebsd.org Delivered-To: freebsd-usb@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C62AE16A403; Wed, 13 Dec 2006 02:35:19 +0000 (UTC) (envelope-from markus@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4D34F43CA1; Wed, 13 Dec 2006 02:33:53 +0000 (GMT) (envelope-from markus@FreeBSD.org) Received: from freefall.freebsd.org (markus@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id kBD2ZJdd051148; Wed, 13 Dec 2006 02:35:19 GMT (envelope-from markus@freefall.freebsd.org) Received: (from markus@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id kBD2ZJdM051144; Wed, 13 Dec 2006 02:35:19 GMT (envelope-from markus) Date: Wed, 13 Dec 2006 02:35:19 GMT From: Markus Brueffer Message-Id: <200612130235.kBD2ZJdM051144@freefall.freebsd.org> To: markus@FreeBSD.org, freebsd-usb@FreeBSD.org, markus@FreeBSD.org Cc: Subject: Re: usb/106565: [PATCH] ums(4) does not work if the mouse defaults to boot protocol X-BeenThere: freebsd-usb@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: FreeBSD support for USB List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 13 Dec 2006 02:35:19 -0000 Synopsis: [PATCH] ums(4) does not work if the mouse defaults to boot protocol Responsible-Changed-From-To: freebsd-usb->markus Responsible-Changed-By: markus Responsible-Changed-When: Wed Dec 13 02:34:00 UTC 2006 Responsible-Changed-Why: Good catch, I'll handle it. http://www.freebsd.org/cgi/query-pr.cgi?pr=106565 From owner-freebsd-usb@FreeBSD.ORG Thu Dec 14 14:50:15 2006 Return-Path: X-Original-To: freebsd-usb@hub.freebsd.org Delivered-To: freebsd-usb@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 7816916A47B for ; Thu, 14 Dec 2006 14:50:15 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5238343CC5 for ; Thu, 14 Dec 2006 14:48:38 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id kBEEoD1O092048 for ; Thu, 14 Dec 2006 14:50:13 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id kBEEoDpk092047; Thu, 14 Dec 2006 14:50:13 GMT (envelope-from gnats) Date: Thu, 14 Dec 2006 14:50:13 GMT Message-Id: <200612141450.kBEEoDpk092047@freefall.freebsd.org> To: freebsd-usb@FreeBSD.org From: Sam Baskinger Cc: Subject: Re: usb/106648: USB Floppy on D1950 10 min Hang on Insert w/o Floppy Disk X-BeenThere: freebsd-usb@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Sam Baskinger List-Id: FreeBSD support for USB List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 14 Dec 2006 14:50:15 -0000 The following reply was made to PR usb/106648; it has been noted by GNATS. From: Sam Baskinger To: bug-followup@FreeBSD.org Cc: Subject: Re: usb/106648: USB Floppy on D1950 10 min Hang on Insert w/o Floppy Disk Date: Thu, 14 Dec 2006 09:45:36 -0500 On a lark we re-rolled the latest 6.2 source (Dec 14, 2006) into an install disk and the freeze-crash behavior appears to be fixed. I'm going to do some tests late today to confirm that what I saw is fixed. Sam Baskinger -- Lumeta Corporation www.lumeta.com From owner-freebsd-usb@FreeBSD.ORG Fri Dec 15 03:31:03 2006 Return-Path: X-Original-To: freebsd-usb@hub.freebsd.org Delivered-To: freebsd-usb@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5B25F16A416 for ; Fri, 15 Dec 2006 03:31:03 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.FreeBSD.org (Postfix) with ESMTP id BF93943CCF for ; Fri, 15 Dec 2006 03:28:31 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id kBF3UAVk065411 for ; Fri, 15 Dec 2006 03:30:10 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id kBF3UA4U065410; Fri, 15 Dec 2006 03:30:10 GMT (envelope-from gnats) Date: Fri, 15 Dec 2006 03:30:10 GMT Message-Id: <200612150330.kBF3UA4U065410@freefall.freebsd.org> To: freebsd-usb@FreeBSD.org From: Sam Baskinger Cc: Subject: Re: usb/106648: USB Floppy on D1950 10 min Hang on Insert w/o Floppy Disk X-BeenThere: freebsd-usb@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Sam Baskinger List-Id: FreeBSD support for USB List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 15 Dec 2006 03:31:03 -0000 The following reply was made to PR usb/106648; it has been noted by GNATS. From: Sam Baskinger To: bug-followup@FreeBSD.org Cc: Subject: Re: usb/106648: USB Floppy on D1950 10 min Hang on Insert w/o Floppy Disk Date: Thu, 14 Dec 2006 22:18:48 -0500 I retried this using a D2950 and a 32-bit install and an AMD-64 install of RELENG_6 2006-12-14. The 32 bit system behaves wonderfully. The 64-bit system hangs as described still. Hope this helps narrow the problem. Do let me know if I can help test any fixes. Sam -- Lumeta Corporation www.lumeta.com From owner-freebsd-usb@FreeBSD.ORG Fri Dec 15 04:20:09 2006 Return-Path: X-Original-To: freebsd-usb@hub.freebsd.org Delivered-To: freebsd-usb@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A222816A403 for ; Fri, 15 Dec 2006 04:20:09 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.FreeBSD.org (Postfix) with ESMTP id A2AC543CA9 for ; Fri, 15 Dec 2006 04:18:29 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id kBF4K7DC074313 for ; Fri, 15 Dec 2006 04:20:07 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id kBF4K7vZ074312; Fri, 15 Dec 2006 04:20:07 GMT (envelope-from gnats) Date: Fri, 15 Dec 2006 04:20:07 GMT Message-Id: <200612150420.kBF4K7vZ074312@freefall.freebsd.org> To: freebsd-usb@FreeBSD.org From: Alexey Illarionov Cc: Subject: Re: usb/91546: [umodem] [patch] Nokia 6630 mobile phone does not work X-BeenThere: freebsd-usb@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Alexey Illarionov List-Id: FreeBSD support for USB List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 15 Dec 2006 04:20:09 -0000 The following reply was made to PR usb/91546; it has been noted by GNATS. From: Alexey Illarionov To: bug-followup@FreeBSD.org, littlesavage@rambler.ru Cc: Subject: Re: usb/91546: [umodem] [patch] Nokia 6630 mobile phone does not work Date: Fri, 15 Dec 2006 07:13:01 +0300 Much better patch that fix similar problem was commited into NetBSD kernel some time ago. http://www.netbsd.org/cgi-bin/query-pr-single.pl?number=29754 From owner-freebsd-usb@FreeBSD.ORG Sat Dec 16 20:14:46 2006 Return-Path: X-Original-To: freebsd-usb@freebsd.org Delivered-To: freebsd-usb@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B9B7016A412 for ; Sat, 16 Dec 2006 20:14:46 +0000 (UTC) (envelope-from dan.frohlich@gmail.com) Received: from py-out-1112.google.com (py-out-1112.google.com [64.233.166.178]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0096343CBE for ; Sat, 16 Dec 2006 20:14:37 +0000 (GMT) (envelope-from dan.frohlich@gmail.com) Received: by py-out-1112.google.com with SMTP id f31so612743pyh for ; Sat, 16 Dec 2006 12:14:37 -0800 (PST) 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; b=NENH1HSGO33z06YFIrsYPoHXRCCCk1M2/GdJRKPQhXxpivLwotgGX5a659OpCeRTAxukyzwLixzSymZ/taCHZ9pwLhd65hZE1J03+warJLrkBIqPvx6ksboee07rBVGx+quxJD55yqDSWqdKzXslhjtTFc6xlatE8q0qwG0zkCE= Received: by 10.64.208.20 with SMTP id f20mr2325871qbg.1166300077156; Sat, 16 Dec 2006 12:14:37 -0800 (PST) Received: by 10.64.178.11 with HTTP; Sat, 16 Dec 2006 12:14:37 -0800 (PST) Message-ID: Date: Sat, 16 Dec 2006 15:14:37 -0500 From: "Dan Frohlich" To: freebsd-usb@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: Ethernet problems X-BeenThere: freebsd-usb@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: dan@frohlich.net List-Id: FreeBSD support for USB List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 16 Dec 2006 20:14:46 -0000 Hi all, I've been using freebsd for about 6 months now and I'm trying to set up a network switch/gateway. I need to use several usb ethernet adapters since the box has only 1 NIC and no more expansion space. I pickup up a dlink dub-e100 and a linksys usb200m. They both come up as ugen devices. After hacking the usbdevs file and rebuilding, I was able to get the system to recognize the linksys as an axe device, but ifconfig does not show the interface. :( I have not tried this with the dlink yet. Is anyone working on a fix for this? If so is there any way I can assist? I saw that there was a low priority defect for the dlink filed, but I do not see a defect listed for the linksys. Are there any usb ethernet devices currently on the market which do work with 6.2rc1 ? Please help! -Dan