From owner-freebsd-usb@FreeBSD.ORG Sun Nov 4 05:34:37 2007 Return-Path: Delivered-To: freebsd-usb@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DD33816A418 for ; Sun, 4 Nov 2007 05:34:37 +0000 (UTC) (envelope-from xiaofanc@gmail.com) Received: from wa-out-1112.google.com (wa-out-1112.google.com [209.85.146.179]) by mx1.freebsd.org (Postfix) with ESMTP id B7D7013C4B2 for ; Sun, 4 Nov 2007 05:34:37 +0000 (UTC) (envelope-from xiaofanc@gmail.com) Received: by wa-out-1112.google.com with SMTP id k17so1606209waf for ; Sat, 03 Nov 2007 22:34:23 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; bh=hrwttsHgskZjK8pT/FWBkh+OhgfrYKL7bvRwAQn2GEg=; b=hC12IxhU/Ox/nSW0kohaHkjuARrKqFGH8/6qZ4NB9Fs1tSWRScxihLPJy6A97eCciZr9X9HAm5aMNjvV6924EFhWvjJ+Lk9U4a+tQm2h6KcjMpOzlc+LrhHgM/R87AzKg4UhVFbZ+lZNjV7vG0swZUwolHODwiFI4J7a0nq3XDo= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; b=OTyRqbISPsStr0QCRoKnyUu8JdtzPE+KbK59zFmgHlKwi4YzASPFbNJuupr+P7i8oG5x4wrW5hUpht6Nk3uxMtqxElwdZAq/jd2pAigrjPveKaoTkiX+AmzVOKhdEhSfn1GOpD4R18lv4607tFfmoFvYQs9J5UmY0MRjH3FGesk= Received: by 10.115.32.1 with SMTP id k1mr3712001waj.1194152847297; Sat, 03 Nov 2007 22:07:27 -0700 (PDT) Received: by 10.114.176.17 with HTTP; Sat, 3 Nov 2007 22:07:27 -0700 (PDT) Message-ID: Date: Sun, 4 Nov 2007 13:07:27 +0800 From: "Xiaofan Chen" To: freebsd-usb@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline Subject: libusb_interrupt_write hangs with FreeBSD 7 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, 04 Nov 2007 05:34:37 -0000 I've tried to test PICKit 2 under the latest FreeBSD 7 Snapshots. However, libusb_interrupt_write hangs. The same error happened to FreeBSD 6.2 Stable last time I tried it. With the alternative HPS stack, the program works. I have also got PICkit 2 console program Linux port to fully work under FreeBSD with HPS stack. Reference: http://groups.google.com/group/pickit-devel/browse_thread/thread/61627bd8345759b3 ===[mcuee] ~/Desktop/build/mypk2 # uname -a FreeBSD FreeBsd.Mshome 7.0-BETA2 FreeBSD 7.0-BETA2 #3: Fri Nov 2 20:33:40 SGT 2007 root@FreeBsd.Mshome:/home/obj/home/src/sys/USBDEBUG i386 ===[mcuee] ~/Desktop/build/mypk2 # cat testpk2.py #!/usr/local/bin/python -i import usb def opendevice(idVendor, idProduct): devices=[] for b in usb.busses(): for d in b.devices: if d.idVendor==idVendor and d.idProduct==idProduct: devices.append(d) if len(devices)==1: device=devices[0] return device elif not devices: raise "Device not found" else: raise "More than one device found" if __name__=="__main__": device=opendevice(0x04d8, 0x0033) packet_len=64 dh=device.open() dh.setConfiguration(1) print "set Configuration 1" dh.claimInterface(0) print "claim Interface 0" #dh.setAltInterface(0) # First test, turn power on print "Turning power on by USB interrupt write" dh.interruptWrite(1,"V1"+(packet_len-2)*"Z",10000) # Second test, get version number print "Sending version command by USB interrupt write" dh.interruptWrite(1,"v"+(packet_len-1)*"Z",10000) print "Getting version command by USB interrupt read" #r=dh.interruptRead(0x81,64,10000) r=dh.interruptRead(1,64,10000) print r ===[mcuee] ~/Desktop/build/mypk2 # sudo sysctl hw.usb.debug=15 Password: hw.usb.debug: 0 -> 15 ===[mcuee] ~/Desktop/build/mypk2 # python testpk2.py usb_set_debug: Setting debugging level to 255 (on) usb_os_find_busses: Found /dev/usb0 usb_os_find_busses: Found /dev/usb1 usb_os_find_busses: can't open /dev/usb2: Permission denied usb_os_find_devices: Found /dev/ugen0 on /dev/usb1 usb_os_find_devices: Found /dev/ugen1 on /dev/usb1 usb_control_msg: 128 6 512 0 0xbfbfe444 8 1000 usb_control_msg: 128 6 512 0 0x283050a0 41 1000 skipped 1 class/vendor specific interface descriptors usb_control_msg: 128 6 513 0 0xbfbfe444 8 1000 usb_control_msg: 128 6 513 0 0x28361100 32 1000 usb_control_msg: 128 6 512 0 0xbfbfe444 8 1000 usb_control_msg: 128 6 512 0 0x28361140 32 1000 set Configuration 1 claim Interface 0 Turning power on by USB interrupt write ^C (Note by Xiaofan: Program hangs) Traceback (most recent call last): File "testpk2.py", line 37, in dh.interruptWrite(1,"V1"+(packet_len-2)*"Z",10000) KeyboardInterrupt usb_os_close: closing endpoint 4 ===[mcuee] ~/Desktop/build/mypk2 # dmesg ugen1: on uhub1 usb_event_thread: woke up usb_discover usbd_alloc_xfer() = 0xc406e400 usbd_transfer: xfer=0xc406e400, flags=6, pipe=0xc4053d00, running=0 usbd_dump_queue: pipe=0xc4053d00 usb_insert_transfer: pipe=0xc4053d00 running=0 timeout=5000 usb_transfer_complete: pipe=0xc4053d00 xfer=0xc406e400 status=0 actlen=2 usb_transfer_complete: repeat=0 new head=0 usbd_start_next: pipe=0xc4053d00, xfer=0 usbd_free_xfer: 0xc406e400 usbd_alloc_xfer() = 0xc406e400 usbd_transfer: xfer=0xc406e400, flags=6, pipe=0xc4053d00, running=0 usbd_dump_queue: pipe=0xc4053d00 usb_insert_transfer: pipe=0xc4053d00 running=0 timeout=5000 usb_transfer_complete: pipe=0xc4053d00 xfer=0xc406e400 status=0 actlen=14 usb_transfer_complete: repeat=0 new head=0 usbd_start_next: pipe=0xc4053d00, xfer=0 usbd_free_xfer: 0xc406e400 usbd_alloc_xfer() = 0xc406e400 usbd_transfer: xfer=0xc406e400, flags=6, pipe=0xc4053d00, running=0 usbd_dump_queue: pipe=0xc4053d00 usb_insert_transfer: pipe=0xc4053d00 running=0 timeout=5000 usb_transfer_complete: pipe=0xc4053d00 xfer=0xc406e400 status=0 actlen=2 usb_transfer_complete: repeat=0 new head=0 usbd_start_next: pipe=0xc4053d00, xfer=0 usbd_free_xfer: 0xc406e400 usbd_alloc_xfer() = 0xc406e400 usbd_transfer: xfer=0xc406e400, flags=6, pipe=0xc4053d00, running=0 usbd_dump_queue: pipe=0xc4053d00 usb_insert_transfer: pipe=0xc4053d00 running=0 timeout=5000 usb_transfer_complete: pipe=0xc4053d00 xfer=0xc406e400 status=0 actlen=28 usb_transfer_complete: repeat=0 new head=0 usbd_start_next: pipe=0xc4053d00, xfer=0 usbd_free_xfer: 0xc406e400 usbd_alloc_xfer() = 0xc5494400 usbd_transfer: xfer=0xc5494400, flags=6, pipe=0xc4069b00, running=0 usbd_dump_queue: pipe=0xc4069b00 usb_insert_transfer: pipe=0xc4069b00 running=0 timeout=5000 usb_transfer_complete: pipe=0xc4069b00 xfer=0xc5494400 status=0 actlen=2 usb_transfer_complete: repeat=0 new head=0 usbd_start_next: pipe=0xc4069b00, xfer=0 usbd_free_xfer: 0xc5494400 usbd_alloc_xfer() = 0xc5494400 usbd_transfer: xfer=0xc5494400, flags=6, pipe=0xc4069b00, running=0 usbd_dump_queue: pipe=0xc4069b00 usb_insert_transfer: pipe=0xc4069b00 running=0 timeout=5000 usb_transfer_complete: pipe=0xc4069b00 xfer=0xc5494400 status=0 actlen=14 usb_transfer_complete: repeat=0 new head=0 usbd_start_next: pipe=0xc4069b00, xfer=0 usbd_free_xfer: 0xc5494400 usbd_alloc_xfer() = 0xc5494400 usbd_transfer: xfer=0xc5494400, flags=6, pipe=0xc4069b00, running=0 usbd_dump_queue: pipe=0xc4069b00 usb_insert_transfer: pipe=0xc4069b00 running=0 timeout=5000 usb_transfer_complete: pipe=0xc4069b00 xfer=0xc5494400 status=0 actlen=2 usb_transfer_complete: repeat=0 new head=0 usbd_start_next: pipe=0xc4069b00, xfer=0 usbd_free_xfer: 0xc5494400 usbd_alloc_xfer() = 0xc5494400 usbd_transfer: xfer=0xc5494400, flags=6, pipe=0xc4069b00, running=0 usbd_dump_queue: pipe=0xc4069b00 usb_insert_transfer: pipe=0xc4069b00 running=0 timeout=5000 usb_transfer_complete: pipe=0xc4069b00 xfer=0xc5494400 status=0 actlen=28 usb_transfer_complete: repeat=0 new head=0 usbd_start_next: pipe=0xc4069b00, xfer=0 usbd_free_xfer: 0xc5494400 usbd_alloc_xfer() = 0xc5494400 usbd_transfer: xfer=0xc5494400, flags=6, pipe=0xc40eca80, running=0 usbd_dump_queue: pipe=0xc40eca80 usb_insert_transfer: pipe=0xc40eca80 running=0 timeout=5000 usb_schedsoftintr: polling=0 usb_transfer_complete: pipe=0xc40eca80 xfer=0xc5494400 status=0 actlen=2 usb_transfer_complete: repeat=0 new head=0 usbd_start_next: pipe=0xc40eca80, xfer=0 usbd_free_xfer: 0xc5494400 usbd_alloc_xfer() = 0xc5494400 usbd_transfer: xfer=0xc5494400, flags=6, pipe=0xc40eca80, running=0 usbd_dump_queue: pipe=0xc40eca80 usb_insert_transfer: pipe=0xc40eca80 running=0 timeout=5000 usb_schedsoftintr: polling=0 usb_transfer_complete: pipe=0xc40eca80 xfer=0xc5494400 status=0 actlen=10 usb_transfer_complete: repeat=0 new head=0 usbd_start_next: pipe=0xc40eca80, xfer=0 usbd_free_xfer: 0xc5494400 usbd_alloc_xfer() = 0xc5494400 usbd_transfer: xfer=0xc5494400, flags=6, pipe=0xc40eca80, running=0 usbd_dump_queue: pipe=0xc40eca80 usb_insert_transfer: pipe=0xc40eca80 running=0 timeout=5000 usb_schedsoftintr: polling=0 usb_transfer_complete: pipe=0xc40eca80 xfer=0xc5494400 status=0 actlen=2 usb_transfer_complete: repeat=0 new head=0 usbd_start_next: pipe=0xc40eca80, xfer=0 usbd_free_xfer: 0xc5494400 usbd_alloc_xfer() = 0xc5494400 usbd_transfer: xfer=0xc5494400, flags=6, pipe=0xc40eca80, running=0 usbd_dump_queue: pipe=0xc40eca80 usb_insert_transfer: pipe=0xc40eca80 running=0 timeout=5000 usb_schedsoftintr: polling=0 usb_transfer_complete: pipe=0xc40eca80 xfer=0xc5494400 status=0 actlen=42 usb_transfer_complete: repeat=0 new head=0 usbd_start_next: pipe=0xc40eca80, xfer=0 usbd_free_xfer: 0xc5494400 usbd_alloc_xfer() = 0xc5494400 usbd_transfer: xfer=0xc5494400, flags=6, pipe=0xc4356800, running=0 usbd_dump_queue: pipe=0xc4356800 usb_insert_transfer: pipe=0xc4356800 running=0 timeout=5000 usb_schedsoftintr: polling=0 usb_transfer_complete: pipe=0xc4356800 xfer=0xc5494400 status=0 actlen=2 usb_transfer_complete: repeat=0 new head=0 usbd_start_next: pipe=0xc4356800, xfer=0 usbd_free_xfer: 0xc5494400 usbd_alloc_xfer() = 0xc5494400 usbd_transfer: xfer=0xc5494400, flags=6, pipe=0xc4356800, running=0 usbd_dump_queue: pipe=0xc4356800 usb_insert_transfer: pipe=0xc4356800 running=0 timeout=5000 usb_schedsoftintr: polling=0 usb_transfer_complete: pipe=0xc4356800 xfer=0xc5494400 status=0 actlen=52 usb_transfer_complete: repeat=0 new head=0 usbd_start_next: pipe=0xc4356800, xfer=0 usbd_free_xfer: 0xc5494400 usbd_alloc_xfer() = 0xc5494400 usbd_transfer: xfer=0xc5494400, flags=6, pipe=0xc4356800, running=0 usbd_dump_queue: pipe=0xc4356800 usb_insert_transfer: pipe=0xc4356800 running=0 timeout=5000 usb_schedsoftintr: polling=0 usb_transfer_complete: pipe=0xc4356800 xfer=0xc5494400 status=0 actlen=2 usb_transfer_complete: repeat=0 new head=0 usbd_start_next: pipe=0xc4356800, xfer=0 usbd_free_xfer: 0xc5494400 usbd_alloc_xfer() = 0xc5494400 usbd_transfer: xfer=0xc5494400, flags=6, pipe=0xc4356800, running=0 usbd_dump_queue: pipe=0xc4356800 usb_insert_transfer: pipe=0xc4356800 running=0 timeout=5000 usb_schedsoftintr: polling=0 usb_transfer_complete: pipe=0xc4356800 xfer=0xc5494400 status=0 actlen=72 usb_transfer_complete: repeat=0 new head=0 usbd_start_next: pipe=0xc4356800, xfer=0 usbd_free_xfer: 0xc5494400 usbd_alloc_xfer() = 0xc5494400 usbd_transfer: xfer=0xc5494400, flags=6, pipe=0xc4356800, running=0 usbd_dump_queue: pipe=0xc4356800 usb_insert_transfer: pipe=0xc4356800 running=0 timeout=1000 usb_schedsoftintr: polling=0 usb_transfer_complete: pipe=0xc4356800 xfer=0xc5494400 status=0 actlen=8 usb_transfer_complete: repeat=0 new head=0 usbd_start_next: pipe=0xc4356800, xfer=0 usbd_free_xfer: 0xc5494400 usbd_alloc_xfer() = 0xc5494400 usbd_transfer: xfer=0xc5494400, flags=6, pipe=0xc4356800, running=0 usbd_dump_queue: pipe=0xc4356800 usb_insert_transfer: pipe=0xc4356800 running=0 timeout=1000 usb_schedsoftintr: polling=0 usb_transfer_complete: pipe=0xc4356800 xfer=0xc5494400 status=0 actlen=41 usb_transfer_complete: repeat=0 new head=0 usbd_start_next: pipe=0xc4356800, xfer=0 usbd_free_xfer: 0xc5494400 usbd_alloc_xfer() = 0xc5494400 usbd_transfer: xfer=0xc5494400, flags=6, pipe=0xc4356800, running=0 usbd_dump_queue: pipe=0xc4356800 usb_insert_transfer: pipe=0xc4356800 running=0 timeout=1000 usb_schedsoftintr: polling=0 usb_transfer_complete: pipe=0xc4356800 xfer=0xc5494400 status=0 actlen=8 usb_transfer_complete: repeat=0 new head=0 usbd_start_next: pipe=0xc4356800, xfer=0 usbd_free_xfer: 0xc5494400 usbd_alloc_xfer() = 0xc5494400 usbd_transfer: xfer=0xc5494400, flags=6, pipe=0xc4356800, running=0 usbd_dump_queue: pipe=0xc4356800 usb_insert_transfer: pipe=0xc4356800 running=0 timeout=1000 usb_schedsoftintr: polling=0 usb_transfer_complete: pipe=0xc4356800 xfer=0xc5494400 status=0 actlen=32 usb_transfer_complete: repeat=0 new head=0 usbd_start_next: pipe=0xc4356800, xfer=0 usbd_free_xfer: 0xc5494400 usbd_alloc_xfer() = 0xc5494400 usbd_transfer: xfer=0xc5494400, flags=6, pipe=0xc40eca80, running=0 usbd_dump_queue: pipe=0xc40eca80 usb_insert_transfer: pipe=0xc40eca80 running=0 timeout=1000 usb_schedsoftintr: polling=0 usb_transfer_complete: pipe=0xc40eca80 xfer=0xc5494400 status=0 actlen=8 usb_transfer_complete: repeat=0 new head=0 usbd_start_next: pipe=0xc40eca80, xfer=0 usbd_free_xfer: 0xc5494400 usbd_alloc_xfer() = 0xc5494400 usbd_transfer: xfer=0xc5494400, flags=6, pipe=0xc40eca80, running=0 usbd_dump_queue: pipe=0xc40eca80 usb_insert_transfer: pipe=0xc40eca80 running=0 timeout=1000 usb_schedsoftintr: polling=0 usb_transfer_complete: pipe=0xc40eca80 xfer=0xc5494400 status=0 actlen=32 usb_transfer_complete: repeat=0 new head=0 usbd_start_next: pipe=0xc40eca80, xfer=0 usbd_free_xfer: 0xc5494400 usbd_open_pipe: iface=0xc42616e0 address=0x1 flags=0x0 usbd_setup_pipe: dev=0xc4357880 iface=0xc42616e0 ep=0xc426184c pipe=0xe6c8a968 usbd_open_pipe_intr: address=0x81 flags=0x4 len=64 usbd_open_pipe: iface=0xc42616e0 address=0x81 flags=0x1 usbd_setup_pipe: dev=0xc4357880 iface=0xc42616e0 ep=0xc4261840 pipe=0xe6c8a93c usbd_alloc_xfer() = 0xc5494400 usbd_transfer: xfer=0xc5494400, flags=4, pipe=0xc56aca80, running=0 usbd_dump_queue: pipe=0xc56aca80 usb_insert_transfer: pipe=0xc56aca80 running=0 timeout=0 usbd_alloc_xfer() = 0xc525fe00 usbd_intr_transfer: start transfer 64 bytes usbd_transfer: xfer=0xc525fe00, flags=0, pipe=0xc55a6080, running=0 usbd_dump_queue: pipe=0xc55a6080 usb_insert_transfer: pipe=0xc55a6080 running=0 timeout=10000 usb_event_thread: woke up usb_discover usb_event_thread: woke up usb_discover usbd_intr_transfer: tsleep=4 usbd_ar_pipe: pipe=0xc55a6080 usbd_dump_queue: pipe=0xc55a6080 xfer=0xc525fe00 usbd_ar_pipe: pipe=0xc55a6080 xfer=0xc525fe00 (methods=0xc0b447e4) usb_schedsoftintr: polling=0 usb_transfer_complete: pipe=0xc55a6080 xfer=0xc525fe00 status=6 actlen=0 usb_transfer_complete: repeat=0 new head=0 usbd_free_xfer: 0xc525fe00 usbd_ar_pipe: pipe=0xc55a6080 usbd_dump_queue: pipe=0xc55a6080 usbd_ar_pipe: pipe=0xc56aca80 usbd_dump_queue: pipe=0xc56aca80 xfer=0xc5494400 usbd_ar_pipe: pipe=0xc56aca80 xfer=0xc5494400 (methods=0xc0b447e4) usb_schedsoftintr: polling=0 usb_transfer_complete: pipe=0xc56aca80 xfer=0xc5494400 status=6 actlen=0 usb_transfer_complete: repeat=0 new head=0 usb_event_thread: woke up usb_discover usb_event_thread: woke up usb_discover usb_event_thread: woke up usb_discover From owner-freebsd-usb@FreeBSD.ORG Sun Nov 4 23:38:58 2007 Return-Path: Delivered-To: freebsd-usb@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9655616A477 for ; Sun, 4 Nov 2007 23:38:58 +0000 (UTC) (envelope-from dorian.buettner@gmx.de) Received: from mail.gmx.net (mail.gmx.net [213.165.64.20]) by mx1.freebsd.org (Postfix) with SMTP id E8F5F13C4B9 for ; Sun, 4 Nov 2007 23:38:57 +0000 (UTC) (envelope-from dorian.buettner@gmx.de) Received: (qmail invoked by alias); 04 Nov 2007 22:37:55 -0000 Received: from port-83-236-54-40.dynamic.qsc.de (EHLO powersupply.doris.net) [83.236.54.40] by mail.gmx.net (mp044) with SMTP; 04 Nov 2007 23:37:55 +0100 X-Authenticated: #1682771 X-Provags-ID: V01U2FsdGVkX18gdRYQvoIgfaCdSOnwRMTT+SVD8cdK1PQXa9Ou15 SFQALOlQZWVukc From: Dorian =?iso-8859-1?q?B=FCttner?= To: freebsd-usb@freebsd.org Date: Sun, 4 Nov 2007 23:37:54 +0100 User-Agent: KMail/1.9.7 MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200711042337.55071.dorian.buettner@gmx.de> X-Y-GMX-Trusted: 0 Subject: razer copperhead lasermouse believes to be keyboard 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, 04 Nov 2007 23:38:58 -0000 Hi list, don't know where to look at, most likely somewhere in /sys/... I have a Razer Copperhead Laser Mouse that attaches itself as ukbd. Here is some dmesg | grep usb: uhid1: on uhub6 ukbd1: on uhub6 the corresponding usbdevs -v: port 3 addr 4: full speed, power 100 mA, config 1, Razer Copperhead Laser Mouse(0x0101), Razer(0x1532), rev 21.00 This is 7.0Beta-1.5 on amd64 if that is of any interest. Where to go from here? Thanks, Dorian From owner-freebsd-usb@FreeBSD.ORG Mon Nov 5 02:26:35 2007 Return-Path: Delivered-To: freebsd-usb@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DC31A16A473 for ; Mon, 5 Nov 2007 02:26:35 +0000 (UTC) (envelope-from uwe@grohnwaldt.eu) Received: from server02.lando.cc (server02-01.lando.cc [87.106.141.202]) by mx1.freebsd.org (Postfix) with ESMTP id 3E77913C48E for ; Mon, 5 Nov 2007 02:26:34 +0000 (UTC) (envelope-from uwe@grohnwaldt.eu) Received: (qmail 25433 invoked from network); 5 Nov 2007 02:59:37 +0100 Received: from vpn017194.uni-rostock.de (HELO BriaTharen.skywalkers.local) (139.30.17.194) by server02-01.lando.cc with (DHE-RSA-AES256-SHA encrypted) SMTP; 5 Nov 2007 02:59:37 +0100 Date: Mon, 5 Nov 2007 02:57:57 +0100 From: Uwe Grohnwaldt To: freebsd-usb@freebsd.org Message-ID: <20071105025757.07e50a90@BriaTharen.skywalkers.local> In-Reply-To: <200711042337.55071.dorian.buettner@gmx.de> References: <200711042337.55071.dorian.buettner@gmx.de> X-Mailer: Claws Mail 3.0.2 (GTK+ 2.12.1; amd64-portbld-freebsd7.0) Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Subject: Re: razer copperhead lasermouse believes to be keyboard 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, 05 Nov 2007 02:26:35 -0000 Am Sun, 4 Nov 2007 23:37:54 +0100 schrieb Dorian B=FCttner : > Hi list, >=20 > don't know where to look at, most likely somewhere in /sys/... >=20 > I have a Razer Copperhead Laser Mouse that attaches itself as ukbd. >=20 > Here is some dmesg | grep usb: > uhid1: 1.10/21.00, addr 4> on uhub6 > ukbd1: 1.10/21.00, addr 4> on uhub6 >=20 > the corresponding usbdevs -v: > port 3 addr 4: full speed, power 100 mA, config 1, Razer Copperhead > Laser Mouse(0x0101), Razer(0x1532), rev 21.00 >=20 > This is 7.0Beta-1.5 on amd64 if that is of any interest. Where to go > from here? >=20 > Thanks, > Dorian > _______________________________________________ > freebsd-usb@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-usb > To unsubscribe, send any mail to "freebsd-usb-unsubscribe@freebsd.org" Hi, i reported this problem some time ago and nothing changed until now. My solution was to buy a new Mouse. :/ Another workaround is to revert ums.c to version 1.94. You can find more at: http://lists.freebsd.org/pipermail/freebsd-usb/2007-July/003772.html Cheers, --=20 Uwe Grohnwaldt Max-Planck-Str 2A, 1.03.2 18059 Rostock Telefon: 0381 - 1 22 48 11 * Mobil : 0172 - 3 20 92 85 * Fax : 01212 - 5 - 131 - 79 - 310 * E-Mail : Uwe@Grohnwaldt.de ICQ : 149348486 * Skype : lando_calr * nur nach vorheriger Vereinbarung From owner-freebsd-usb@FreeBSD.ORG Mon Nov 5 11:07:08 2007 Return-Path: Delivered-To: freebsd-usb@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 18BE716A41A for ; Mon, 5 Nov 2007 11:07:08 +0000 (UTC) (envelope-from owner-bugmaster@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 08B9B13C4A3 for ; Mon, 5 Nov 2007 11:07:08 +0000 (UTC) (envelope-from owner-bugmaster@FreeBSD.org) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.1/8.14.1) with ESMTP id lA5B77Pj026477 for ; Mon, 5 Nov 2007 11:07:08 GMT (envelope-from owner-bugmaster@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.1/8.14.1/Submit) id lA5B77sc026473 for freebsd-usb@FreeBSD.org; Mon, 5 Nov 2007 11:07:07 GMT (envelope-from owner-bugmaster@FreeBSD.org) Date: Mon, 5 Nov 2007 11:07:07 GMT Message-Id: <200711051107.lA5B77sc026473@freefall.freebsd.org> X-Authentication-Warning: freefall.freebsd.org: gnats set sender to owner-bugmaster@FreeBSD.org using -f From: FreeBSD bugmaster To: freebsd-usb@FreeBSD.org Cc: Subject: Current problem reports assigned to freebsd-usb@FreeBSD.org 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, 05 Nov 2007 11:07:08 -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/46176 usb [panic] umass causes kernel panic if device removed be o i386/46371 usb USB controller cannot be initialized on IBM Netfinity o bin/57255 usb usbd and multi-function devices 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 o usb/76395 usb USB printer does not work, usbdevs says "addr 0 should o usb/77184 usb [panic] kernel panic on USB device disconnect o usb/77294 usb [ulpcom] [panic] ucom + ulpcom panic o usb/79269 usb USB ohci da0 plug/unplug causes crashes and lockups. o usb/79287 usb [uhci] UHCI hang after interrupt transfer o usb/79524 usb printing to Minolta PagePro 1[23]xxW via USB fails wit a 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 o usb/80361 usb [patch] mounting of usb-stick fails o usb/80829 usb possible panic when loading USB-modules o usb/80862 usb [patch] USB locking issues: missing some Giant calls o usb/82350 usb [usb] null pointer dereference in USB stack o usb/82520 usb Reboot when USL101 connected s usb/82569 usb [usb] USB mass storage plug/unplug causes system panic o usb/82660 usb [umass] [panic] EHCI: I/O stuck in state 'physrd'/pani 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 [ums] [patch] Microsoft Intellimouse Explorer 4.0A doe 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/86767 usb [usb] [patch] bogus "slice starts beyond end of the di o usb/88743 usb [hang] USB makes kernel hang at boot (regression in 6. o usb/88966 usb [modules] kldunload ucom.ko returns "Device busy" erro o usb/89003 usb LaCie Firewire drive not properly supported under 6.0 o usb/89954 usb [usb] USB Disk driver race condition? o usb/90700 usb [umass] [panic] Kernel panic on connect/mount/use umas o usb/91238 usb [umass] USB tape unit fails to write a second tape fil o usb/91283 usb booting very slow with usb devices connection (regress o usb/91538 usb [ulpt] [patch] Unable to print to EPSON CX3500 o usb/91906 usb [hang] FreeBSD hangs while booting with USB legacy sup o usb/92052 usb [unlpt] usbd causes defunct process with busy file-han o usb/92083 usb [ural] [panic] panic using WPA on ural NIC in 6.0-RELE 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 [ulpt] /dev/ulpt0: device busy, USB printer does not w o usb/93408 usb [mouse] hw.acpi.cpu.cx_lowest=C3 on AMD Turion causes o usb/93640 usb [irq] device ehci causes interrupt storm on this MSI a o usb/93828 usb [panic] ohci causes panic on boot (HP Pavillion d4100e o usb/94166 usb btx halted with a flashcard plugged o usb/94384 usb [panic] kernel panic with usb2 hardware o usb/94717 usb [ulpt] Reading from /dev/ulpt can break work of a UHCI o usb/94813 usb [umass] mounting write-protected umass device freezes o usb/94897 usb [panic] Kernel Panic when cleanly unmounting USB disk o usb/95131 usb [install] Boot/setup process does not accept key strok o usb/95348 usb [kbd] USB keyboard unplug causes noise on screen o usb/95562 usb [umass] Write Stress in USB Mass drive causes "vinvalb o usb/95636 usb [boot] 5 minute delay at boot when using VT6205 based o usb/96120 usb [mouse] USB mouse not always detected o usb/96224 usb [usb] mount_msdosfs cause page fault in syncer process o usb/96457 usb [panic] fatback on umass = reboot o usb/97286 usb [mouse] MS Wireless Intellimouse Explorer 2.0 doesn't o usb/99431 usb [kbd] FreeBSD on MSI 6566E (Intel 845E motherboards) d o usb/101096 usb [if_ural] [panic] USB WLAN occasionally causes kernel- o usb/101448 usb [ohci] FBSD 6.1-STABLE/AMD64 crashes under heavy USB/O o usb/101752 usb [umass] [panic] 6.1-RELEASE kernel panic on usb device o usb/102066 usb [ukbd] usb keyboard and multimedia keys don't work o usb/102096 usb [patch] /usr/sbin/usbd does not handle multiple device o usb/103025 usb [usb] wrong detection of USB device for FreeBSD 6.1 an o usb/104292 usb [hang] system lockup on forced umount of usb-storage d o usb/104830 usb [umass] system crashes when copying data to umass devi o usb/105186 usb USB 2.0/ehci on FreeBSD 6.2-PRE/AMD64 crashes box o usb/106615 usb [uftdi] uftdi module does not automatically load with o usb/106648 usb [hang] USB Floppy on D1950 10 min Hang on Insert w/o F o usb/106832 usb USB HP printer is not detected by kernel when ACPI ena o usb/107248 usb [umass] [patch] scsi_da.c quirk for Cowon iAUDIO X5 MP o usb/107446 usb [umass] umass problems (usb and fw disks) o usb/107827 usb [panic] ohci_add_done addr not found o usb/107848 usb [umass] cannot access Samsung flash disk o usb/107924 usb [patch] usbd(8) does not call detach o usb/108513 usb [umass] Creative MuVo TX FM fails in 6.2-RELEASE (regr o usb/109274 usb [usb] MCP55 USB Controller fails to attach in AMD64 Cu o usb/109397 usb [panic] on boot from USB flash o usb/110856 usb [ugen] [patch] interrupt in msgs are truncated when bu o usb/110988 usb [umass] [patch] Handling of quirk IGNORE_RESIDUE is um o usb/111753 usb [uhid] [panic] Replicable system panic involving UHID o usb/112568 usb USB mode may wrong when mounting Playstation Pro o usb/112631 usb [panic] Problem with SONY DSC-S80 camera o usb/112640 usb [usb] [hang] Kernel freezes when writing a file to an o usb/113478 usb [boot] FreeBSD could not start on Core2Duo notebook fr o usb/113629 usb [ukbd] Dropped USB keyboard events on Dell Latitude D6 o usb/113672 usb [ehci] [panic] Kernel panic with AEWIN CB6971 o usb/113851 usb [boot] Unable to boot install cd from USB-CDROM o usb/113977 usb [feature request] Need a way to set mode of USB disk's o usb/114310 usb [panic] USB hub attachment panics kernel during libusb o usb/114682 usb USB media-card reader unusable o kern/114780 usb [uplcom] [panic] Panics while stress testing the uplco o usb/115298 usb Turning off USB printer panics kernel o usb/116561 usb RELENG_6 umodem panic "trying to sleep while sleeping o usb/116947 usb [patch] enable boot protocol on the USB keyboards o usb/117200 usb [ugen] ugen0 prints strange string on attach if detach o usb/117313 usb [panic] panic on usb camera attachment o usb/117613 usb uhci interrupt storm & USB leaked memory on destroy o usb/117719 usb umass plugging with hald running causes kernel panics 105 problems total. Non-critical problems S Tracker Resp. Description -------------------------------------------------------------------------------- o conf/30929 usb [usb] [patch] use usbd to initialize USB ADSL modem o usb/40948 usb [usb] USB HP CDW8200 does not work o usb/48342 usb [PATCH] usbd dynamic device list. f usb/51958 usb [urio] [patch] update for urio driver o usb/52026 usb [usb] feature request: umass driver support for InSyst o usb/56095 usb [usb] [patch] QUIRK: Apacer Pen Drive fails to work o usb/59698 usb [kbd] [patch] Rework of ukbd HID to AT code translatio o usb/62257 usb [umass] card reader UCR-61S2B is only half-supported o usb/63837 usb [uhid] [patch] USB: hid_is_collection() only looks for o usb/65769 usb [usb] Call to tcflush(x, TCIFLUSH) stops input on usb- o usb/66547 usb [usb] Palm Tungsten T USB does not initialize correctl o usb/68232 usb [ugen] [patch] ugen(4) isochronous handling correction o usb/70523 usb [usb] [patch] umct sending/receiving wrong characters o usb/71280 usb [aue] aue0 device (linksys usb100tx) doesn't work in 1 o usb/71416 usb [ugen] Cryptoflex e-gate USB token (ugen0) detach is n o usb/71417 usb [ugen] Cryptoflex e-gate USB token (ugen0) communicati o usb/71455 usb [usb] Slow USB umass performance of 5.3 o usb/72380 usb [usb] USB does not work [dual Celeron Abit] o usb/72733 usb Kyocera 7135 Palm OS connection problem. o usb/73056 usb [usb] Sun Microsystems Type 6 USB mouse not working in o usb/74211 usb [umass] USB flash drive causes CAM status 0x4 on 4.10R f usb/74453 usb [patch] Q-lity CD-RW USB ECW-043 (ScanLogic SL11R chip o usb/74557 usb imation 500mb usb key can only be written halfway on f o usb/75764 usb [umass] [patch] "umass0: Phase Error" - no device for o usb/75800 usb [ucom] ucom1: init failed STALLED error in time of syn 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/76653 usb [umass] [patch] Problem with Asahi Optical usb device o usb/76732 usb Mouse problems with USB KVM Switch f usb/78984 usb [patch] Creative MUVO umass failure o usb/79723 usb [usb] prepare for high speed isochronous transfers o usb/80774 usb [patch] have "usbd_find_desc" in line with the other " 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] [patch] uvisor.c is not work with CLIE TH55. f usb/81621 usb external hd hangs under load on ehci o usb/83863 usb [ugen] Communication problem between opensc/openct via o usb/85067 usb Cannot attach ScanJet 4300C to usb device o usb/85257 usb [boot] BTX boot loader fails on USB CDROM (HP DL145 Op o usb/86298 usb [mouse] Known good USB mouse won't work with correct s o usb/87224 usb Cannot mount USB Zip750 o usb/87648 usb [mouse] Logitech USB-optical mouse problem. o usb/88408 usb [axe] axe0 read PHY failed 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/92852 usb [mouse] [patch] Vertical scroll not working properly o o usb/93389 usb [umass] [patch] Digital Camera Pentax S60 don't work o usb/93872 usb [patch] SCSI quirk required for ELTA 8061 OL USB memor o usb/95037 usb [umass] USB disk not recognized on hot-plug. o usb/95173 usb [umass] [patch] cannot mount external usb harddisk VIA o usb/96381 usb [patch] add a quirk table entry for a flash ram usb st o usb/97175 usb [hang] USB cardreader hangs system o usb/97472 usb [patch] add support for Olympus C150,D390 o usb/98343 usb [boot] BBB reset failed errors with Creative Muvo MP3 o 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/101761 usb [patch] usb.h: increase maximal size of report descrip o usb/101775 usb [libusbhid] [patch] possible error in report descripto o usb/102678 usb [kbd] Dell PowerEdge DRAC5 USB Keyboard does not work o usb/102976 usb [panic] Casio Exilim Digital Camera cause panic o usb/103046 usb [ulpt] [patch] ulpt event driven I/O with select(2) an 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 [umass] [patch] quirk: TOSHIBA DVD-RAM drive (libretto o usb/104352 usb [ural] [patch] ural driver doesnt work o usb/104645 usb Rave C-201 MP3 player does not communicate o usb/105065 usb [sata] SATA - USB Bridge f usb/105361 usb [panic] Kernel panic during unmounting mass storage (C o usb/106041 usb FreeBSD does not recognise Mustek BearPaw 2400TA usb s o usb/106621 usb [axe] [patch] DLINK DUB-E100 support broken o usb/106861 usb [usbdevs] [patch]: usbdevs update: Add product ACER Ze o usb/107243 usb [patch] Apacer USB Flash Drive quirk o usb/107388 usb [PATCH] Add utoppy device from NetBSD o usb/107496 usb USB device problem on RELENG_6_2 (SHORT_XFER) (regress o usb/107665 usb [usb] [patch] uscanner support for epson stylus DX5050 o usb/107701 usb [usbd] usbd ignores "detach" o usb/107935 usb [uplcom] [panic] panic while accessing /dev/cuaU0 o usb/108056 usb [ohci] Mouse gets powered off during device probe when o usb/108344 usb [panic] kernel with atausb panics when unplugging USB o usb/108509 usb [hang] FreeBSD hang at startup after ehci0 detected (C o usb/110197 usb [umass] Sony PSP umass device does not detach from EHC s usb/110991 usb [patch] QUIRK: Super Top IDE DEVICE (depends on usb/11 o usb/112461 usb [ehci] ehci USB 2.0 doesn't work on nforce4 o usb/112463 usb problem with Samsung USB DVD writer, libscg and FreeBS o usb/112944 usb [patch] Bi-directional access to HP LaserJet 1010 prin o usb/113060 usb [usbdevs] [patch] Samsung printer not working in bidir o usb/113432 usb WARNING: attempt to net_add_domain(netgraph) after dom o conf/114013 usb [patch] WITHOUT_USB allow to compil a lot of USB stuff o usb/114068 usb [umass] [patch] Problems with connection of the umass p usb/114860 usb if_udav / ShanTou ST268 USB NIC o usb/114916 usb USB Maxtor drive (L300RO) requires quirk. o usb/115080 usb using a Hercules HWGUSB2-54-V2 wifi usb adapter o usb/115197 usb can not install from USB stick drive o usb/115400 usb [ehci] Problem with EHCI on ASUS M2N4-SLI o usb/115737 usb uplcom doesn't identify my Prolific 2303 any more o usb/115933 usb RATOC REX-USB60F (usb serial converter) is working o usb/115935 usb [patch] kernel counterproductively attaches to Cyber P o usb/116057 usb [patch] Update quirks for the MetaGeek Wi-Spy o usb/116282 usb Cannot print on USB HP LJ1018 or LJ1300 o usb/116574 usb [patch] Add device ids for ICH8 USB chipsets o usb/116898 usb panic: sleeping thread while using USB hard drive o usb/117183 usb USB/fusefs -- Fatal trap 12: page fault while in kerne o usb/117185 usb [umodem] Add support for UNION interface descriptor o usb/117205 usb [uscanner] [patch] uscanner support for HP ScanJet 447 o usb/117366 usb USB keyboard status lights not working properly o usb/117546 usb [usbdevs] [patch] Add MaxStream ZigBee product ID to u o usb/117598 usb [uaudio] [patch] Not possible to record with Plantroni 110 problems total. From owner-freebsd-usb@FreeBSD.ORG Mon Nov 5 11:13:42 2007 Return-Path: Delivered-To: freebsd-usb@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7627716A469 for ; Mon, 5 Nov 2007 11:13:42 +0000 (UTC) (envelope-from oliver@akephalos.de) Received: from mailout08.sul.t-online.com (mailout08.sul.t-online.de [194.25.134.20]) by mx1.freebsd.org (Postfix) with ESMTP id 1661713C4B9 for ; Mon, 5 Nov 2007 11:13:41 +0000 (UTC) (envelope-from oliver@akephalos.de) Received: from fwd26.aul.t-online.de by mailout08.sul.t-online.com with smtp id 1IozZm-0005LN-05; Mon, 05 Nov 2007 11:53:02 +0100 Received: from localhost (S+63lkZd8too6NAbKTs-kiamx2AUwDWP6bU1QIMlMHPdsuuZng8rbz1wBUWPIl4s1be9fKJYWX@[91.21.95.175]) by fwd26.t-online.de with esmtp id 1IozZa-0KL4Hw0; Mon, 5 Nov 2007 11:52:50 +0100 Date: Mon, 5 Nov 2007 11:52:50 +0100 From: Oliver Herold To: freebsd-usb@freebsd.org Message-ID: <20071105105250.GA1125@olymp.home> Mail-Followup-To: freebsd-usb@freebsd.org References: <200711042337.55071.dorian.buettner@gmx.de> <20071105025757.07e50a90@BriaTharen.skywalkers.local> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <20071105025757.07e50a90@BriaTharen.skywalkers.local> User-Agent: Mutt/1.5.16 (2007-06-09) X-ID: S+63lkZd8too6NAbKTs-kiamx2AUwDWP6bU1QIMlMHPdsuuZng8rbz1wBUWPIl4s1be9fKJYWX X-TOI-MSGID: 5db4c46c-7652-48f5-8e85-0a4fd4e0a28c Subject: Re: razer copperhead lasermouse believes to be keyboard 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, 05 Nov 2007 11:13:42 -0000 It's even possible to conjure a hard-reset with this kind of mouse. For some time it was possible to use this alternative USB driver, USB4BSD, but since some months it isn't useful anymore. Cheers, Oliver On Mon, Nov 05, 2007 at 02:57:57AM +0100, Uwe Grohnwaldt wrote: > Am Sun, 4 Nov 2007 23:37:54 +0100 > schrieb Dorian Büttner : > > > Hi list, > > > > don't know where to look at, most likely somewhere in /sys/... > > > > I have a Razer Copperhead Laser Mouse that attaches itself as ukbd. > > > > Here is some dmesg | grep usb: > > uhid1: > 1.10/21.00, addr 4> on uhub6 > > ukbd1: > 1.10/21.00, addr 4> on uhub6 > > > > the corresponding usbdevs -v: > > port 3 addr 4: full speed, power 100 mA, config 1, Razer Copperhead > > Laser Mouse(0x0101), Razer(0x1532), rev 21.00 > > > > This is 7.0Beta-1.5 on amd64 if that is of any interest. Where to go > > from here? > > > > Thanks, > > Dorian > > _______________________________________________ > > freebsd-usb@freebsd.org mailing list > > http://lists.freebsd.org/mailman/listinfo/freebsd-usb > > To unsubscribe, send any mail to "freebsd-usb-unsubscribe@freebsd.org" > > Hi, > > i reported this problem some time ago and nothing changed until now. My > solution was to buy a new Mouse. :/ > > Another workaround is to revert ums.c to version 1.94. You can find > more at: > http://lists.freebsd.org/pipermail/freebsd-usb/2007-July/003772.html > > Cheers, > -- > Uwe Grohnwaldt > Max-Planck-Str 2A, 1.03.2 > 18059 Rostock > > Telefon: 0381 - 1 22 48 11 * > Mobil : 0172 - 3 20 92 85 * > Fax : 01212 - 5 - 131 - 79 - 310 * > > E-Mail : Uwe@Grohnwaldt.de > ICQ : 149348486 * > Skype : lando_calr > > * nur nach vorheriger Vereinbarung > _______________________________________________ > freebsd-usb@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-usb > To unsubscribe, send any mail to "freebsd-usb-unsubscribe@freebsd.org" -- Fats Loves Madelyn. From owner-freebsd-usb@FreeBSD.ORG Tue Nov 6 21:33:42 2007 Return-Path: Delivered-To: freebsd-usb@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6833416A417 for ; Tue, 6 Nov 2007 21:33:42 +0000 (UTC) (envelope-from dorian.buettner@gmx.de) Received: from mail.gmx.net (mail.gmx.net [213.165.64.20]) by mx1.freebsd.org (Postfix) with SMTP id CF74B13C4AA for ; Tue, 6 Nov 2007 21:33:41 +0000 (UTC) (envelope-from dorian.buettner@gmx.de) Received: (qmail invoked by alias); 06 Nov 2007 21:33:40 -0000 Received: from port-83-236-54-40.dynamic.qsc.de (EHLO [192.168.168.2]) [83.236.54.40] by mail.gmx.net (mp049) with SMTP; 06 Nov 2007 22:33:40 +0100 X-Authenticated: #1682771 X-Provags-ID: V01U2FsdGVkX19FtDAJIxhFIM9ySPmcvGb22zTUT2AgOQcBEfOQjF xHW8mXOqYfwL6D Message-ID: <4730DDB4.6030903@gmx.de> Date: Tue, 06 Nov 2007 22:33:40 +0100 From: =?ISO-8859-1?Q?Dorian_B=FCttner?= User-Agent: Thunderbird 2.0.0.6 (Windows/20070728) MIME-Version: 1.0 To: freebsd-usb@freebsd.org References: <200711042337.55071.dorian.buettner@gmx.de> <20071105025757.07e50a90@BriaTharen.skywalkers.local> <20071105105250.GA1125@olymp.home> In-Reply-To: <20071105105250.GA1125@olymp.home> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 8bit X-Y-GMX-Trusted: 0 Subject: Re: razer copperhead lasermouse believes to be keyboard 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, 06 Nov 2007 21:33:42 -0000 Hi, thanks for the hint, I was able to enter my systems bios pressing random buttons on that mouse :) That is useful if you turn of legacy mode for the usb controller, therefore not being able to enter the bios during boot with usb keyboard. Regards, Dorian Oliver Herold schrieb: > It's even possible to conjure a hard-reset with this kind of mouse. For some > time it was possible to use this alternative USB driver, USB4BSD, but since > some months it isn't useful anymore. > > Cheers, Oliver > > On Mon, Nov 05, 2007 at 02:57:57AM +0100, Uwe Grohnwaldt wrote: > >> Am Sun, 4 Nov 2007 23:37:54 +0100 >> schrieb Dorian Büttner : >> >> >>> Hi list, >>> >>> don't know where to look at, most likely somewhere in /sys/... >>> >>> I have a Razer Copperhead Laser Mouse that attaches itself as ukbd. >>> >>> Here is some dmesg | grep usb: >>> uhid1: >> 1.10/21.00, addr 4> on uhub6 >>> ukbd1: >> 1.10/21.00, addr 4> on uhub6 >>> >>> the corresponding usbdevs -v: >>> port 3 addr 4: full speed, power 100 mA, config 1, Razer Copperhead >>> Laser Mouse(0x0101), Razer(0x1532), rev 21.00 >>> >>> This is 7.0Beta-1.5 on amd64 if that is of any interest. Where to go >>> from here? >>> >>> Thanks, >>> Dorian >>> _______________________________________________ >>> freebsd-usb@freebsd.org mailing list >>> http://lists.freebsd.org/mailman/listinfo/freebsd-usb >>> To unsubscribe, send any mail to "freebsd-usb-unsubscribe@freebsd.org" >>> >> Hi, >> >> i reported this problem some time ago and nothing changed until now. My >> solution was to buy a new Mouse. :/ >> >> Another workaround is to revert ums.c to version 1.94. You can find >> more at: >> http://lists.freebsd.org/pipermail/freebsd-usb/2007-July/003772.html >> >> Cheers, >> -- >> Uwe Grohnwaldt >> Max-Planck-Str 2A, 1.03.2 >> 18059 Rostock >> >> Telefon: 0381 - 1 22 48 11 * >> Mobil : 0172 - 3 20 92 85 * >> Fax : 01212 - 5 - 131 - 79 - 310 * >> >> E-Mail : Uwe@Grohnwaldt.de >> ICQ : 149348486 * >> Skype : lando_calr >> >> * nur nach vorheriger Vereinbarung >> _______________________________________________ >> freebsd-usb@freebsd.org mailing list >> http://lists.freebsd.org/mailman/listinfo/freebsd-usb >> To unsubscribe, send any mail to "freebsd-usb-unsubscribe@freebsd.org" >> > > From owner-freebsd-usb@FreeBSD.ORG Wed Nov 7 20:00:05 2007 Return-Path: Delivered-To: freebsd-usb@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 617C316A420 for ; Wed, 7 Nov 2007 20:00:05 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 422F813C4A5 for ; Wed, 7 Nov 2007 20:00:05 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.1/8.14.1) with ESMTP id lA7K057b063936 for ; Wed, 7 Nov 2007 20:00:05 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.1/8.14.1/Submit) id lA7K057t063935; Wed, 7 Nov 2007 20:00:05 GMT (envelope-from gnats) Resent-Date: Wed, 7 Nov 2007 20:00:05 GMT Resent-Message-Id: <200711072000.lA7K057t063935@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, Jim Barker Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 26C7516A46B for ; Wed, 7 Nov 2007 19:51:02 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [IPv6:2001:4f8:fff6::21]) by mx1.freebsd.org (Postfix) with ESMTP id 133F013C4A5 for ; Wed, 7 Nov 2007 19:51:02 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.14.1/8.14.1) with ESMTP id lA7Joj4w055146 for ; Wed, 7 Nov 2007 19:50:45 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.14.1/8.14.1/Submit) id lA7Joj4t055132; Wed, 7 Nov 2007 19:50:45 GMT (envelope-from nobody) Message-Id: <200711071950.lA7Joj4t055132@www.freebsd.org> Date: Wed, 7 Nov 2007 19:50:45 GMT From: Jim Barker To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: usb/117893: Lacie USB DVD writing failing 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, 07 Nov 2007 20:00:05 -0000 >Number: 117893 >Category: usb >Synopsis: Lacie USB DVD writing failing >Confidential: no >Severity: non-critical >Priority: high >Responsible: freebsd-usb >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Nov 07 20:00:04 UTC 2007 >Closed-Date: >Last-Modified: >Originator: Jim Barker >Release: 6.1 >Organization: >Environment: bash-2.05b# uname -a FreeBSD dudiable.cq.com 6.1-RELEASE FreeBSD 6.1-RELEASE #0: Sun May 7 04:42:56 UTC 2006 root@opus.cse.buffalo.edu:/usr/obj/usr/src/sys/SMP i386 >Description: While using growisofs from dvd+rw-tools 7.0..... I get output of..... bash-2.05b# growisofs -dvd-compat -Z /dev/cd0=dvd.iso :-( unable to GET CONFIGURATION: Input/output error :-( non-MMC unit? I have entries in /var/log/messages of..... Nov 7 14:40:18 dudiable jbarker: local1.info About to run growisofs Nov 7 14:40:25 dudiable kernel: umass0: Unsupported ATAPI command 0x46 If I try to run cdrecord (from cdrtools-2.01.01a36) I get...... bash-2.05b# cdrecord -v dev=0,0,0 dvd.iso cdrecord: No write mode specified. cdrecord: Asuming -sao mode. cdrecord: If your drive does not accept -sao, try -tao. cdrecord: Future versions of cdrecord may have different drive dependent defaults. Cdrecord-ProDVD-ProBD-Clone 2.01.01a36 (i386-unknown-freebsd6.1) Copyright (C) 1995-2007 Jörg Schilling TOC Type: 1 = CD-ROM scsidev: '0,0,0' scsibus: 0 target: 0 lun: 0 Using libscg version 'schily-0.9'. SCSI buffer size: 64512 atapi: 0 Device type : Removable CD-ROM Version : 0 Response Format: 2 Capabilities : Vendor_info : 'TSSTcorp' Identifikation : 'CD/DVDW SH-S162L' Revision : 'LC02' Device seems to be: Generic mmc2 DVD-R/DVD-RW/DVD-RAM. cdrecord: Input/output error. get performance: scsi sendcmd: retryable error CDB: AC 00 00 00 00 00 00 00 00 01 03 00 status: 0x0 (GOOD STATUS) cmd finished after 0.000s timeout 200s Using generic SCSI-3/mmc-2 DVD-R/DVD-RW/DVD-RAM driver (mmc_dvd). Driver flags : NO-CD DVD MMC-3 SWABAUDIO BURNFREE Supported modes: PACKET SAO Drive buf size : 1048576 = 1024 KB FIFO size : 4194304 = 4096 KB Track 01: data 2592 MB Total size: 2592 MB = 1327360 sectors Current Secsize: 2048 Blocks total: 2295104 Blocks current: 2295104 Blocks remaining: 967744 cdrecord: Input/output error. get performance: scsi sendcmd: retryable error CDB: AC 00 00 00 00 00 00 00 00 01 03 00 status: 0x0 (GOOD STATUS) cmd finished after 0.000s timeout 100s cdrecord: MMC-3 speed select did not work. Starting to write CD/DVD/BD at speed 16 in real SAO mode for single session. Last chance to quit, starting real write 0 seconds. Operation starts. Waiting for reader process to fill input buffer ... input buffer ready. BURN-Free is OFF. cdrecord: Input/output error. reserve_track_rzone: scsi sendcmd: retryable error CDB: 53 00 00 00 00 00 14 41 00 00 status: 0x0 (GOOD STATUS) cmd finished after 0.000s timeout 100s cdrecord: Cannot open next track. Writing time: 0.044s Average write speed 999.0x. Fixating... Fixating time: 0.000s cdrecord: fifo had 64 puts and 0 gets. cdrecord: fifo was 0 times empty and 0 times full, min fill was 100%. with entries in /var/log/messages of..... Nov 7 14:45:08 dudiable jbarker: local1.info About to run cdrecord Nov 7 14:45:25 dudiable kernel: umass0: Unsupported ATAPI command 0x46 Nov 7 14:45:25 dudiable last message repeated 2 times Nov 7 14:45:25 dudiable kernel: umass0: Unsupported ATAPI command 0xac Nov 7 14:45:25 dudiable kernel: umass0: Unsupported ATAPI command 0x46 Nov 7 14:45:28 dudiable kernel: umass0: Unsupported ATAPI command 0x4d Nov 7 14:45:28 dudiable kernel: umass0: Unsupported ATAPI command 0x46 Nov 7 14:45:28 dudiable kernel: umass0: Unsupported ATAPI command 0xac Nov 7 14:45:28 dudiable kernel: umass0: Unsupported ATAPI command 0xac Nov 7 14:45:37 dudiable kernel: umass0: Unsupported ATAPI command 0x53 I also ran scgcheck and the output is below. bash-2.05b# scgcheck Scgcheck 2.01.01a36 (i386-unknown-freebsd6.1) SCSI user level transport library ABI checker. Copyright (C) 1998,2001 Jörg Schilling Checking if your implementation supports to scan the SCSI bus. Trying to open device: '(NULL POINTER)'. Using libscg version 'schily-0.9' Max DMA buffer size: 65536 scsibus0: 0,0,0 0) 'TSSTcorp' 'CD/DVDW SH-S162L' 'LC02' Removable CD-ROM 0,1,0 1) * 0,2,0 2) * 0,3,0 3) * 0,4,0 4) * 0,5,0 5) * 0,6,0 6) * 0,7,0 7) * ----------> SCSI scan bus test PASSED For the next test we need to open a single SCSI device. Best results will be obtained if you specify a modern CD-ROM drive. Enter SCSI device name [0,6,0]: 0,0,0 Trying to open device: '0,0,0'. Using libscg version 'schily-0.9' Max DMA buffer size: 65536 Device type : Removable CD-ROM Version : 0 Response Format: 2 Capabilities : Vendor_info : 'TSSTcorp' Identifikation : 'CD/DVDW SH-S162L' Revision : 'LC02' Ready to start test for second SCSI open? Enter to continue: First SCSI open OK - device usable Checking for second SCSI open. Second SCSI open for same device succeeded, 1 file descriptor(s) used. Second SCSI open is usable Closing second SCSI. Checking first SCSI. First SCSI open is still usable Second SCSI open test passed. Ready to start test for succeeded command? Enter to continue: Executing 'inquiry' command on Bus 0 Target 0, Lun 0 timeout 40s CDB: 12 00 00 00 24 00 cmd finished after 0.000s timeout 40s Inquiry Data : 05 80 00 32 5B 00 00 00 54 53 53 54 63 6F 72 70 43 44 2F 44 56 44 57 20 53 48 2D 53 31 36 32 4C 4C 43 30 32 ----------> SCSI succeeded command test PASSED Ready to start test for failing command? Enter to continue: Inquiry did not fail. This may be because the firmware in your drive is buggy. If the current drive is not a CD-ROM drive please restart the test utility. Otherwise remove any medium from the drive. Ready to start test for failing command? Enter to continue: scgcheck: Input/output error. test unit ready: scsi sendcmd: retryable error CDB: 00 00 00 00 00 00 status: 0x2 (CHECK CONDITION) Sense Bytes: 70 00 02 00 00 00 00 0A 00 00 00 00 3A 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 Sense Key: 0x2 Not Ready, Segment 0 Sense Code: 0x3A Qual 0x01 (medium not present - tray closed) Fru 0x0 Sense flags: Blk 0 (not valid) cmd finished after 0.001s timeout 40s ----------> SCSI Transport return != SCG_NO_ERROR (1) ----------> SCSI failed command test FAILED Ready to start test for sense data count? Enter to continue: Testing if at least CCS_SENSE_LEN (18) is supported... Sense Data: 70 00 02 00 00 00 00 0A 00 00 00 00 3A 01 00 00 00 00 ----------> Method 0x00: expected: 18 reported: 32 max found: 14 Sense Data: 70 00 02 00 00 00 00 0A 00 00 00 00 3A 01 00 00 00 00 ----------> Method 0xFF: expected: 18 reported: 32 max found: 18 ----------> Wanted 18 sense bytes, got it. ----------> Libscg says 32 sense bytes but got (18) Testing for 32 bytes of sense data... Sense Data: 70 00 02 00 00 00 00 0A 00 00 00 00 3A 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ----------> Method 0x00: expected: 32 reported: 32 max found: 14 Sense Data: 70 00 02 00 00 00 00 0A 00 00 00 00 3A 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ----------> Method 0xFF: expected: 32 reported: 32 max found: 32 ----------> Wanted 32 sense bytes, got it. ----------> Got a maximum of 32 sense bytes ----------> SCSI sense count test FAILED ----------> SCSI status byte test NOT YET READY Ready to start test for working DMA residual count? Enter to continue: **********> Testing for working DMA residual count == 0. CDB cnt: 36 DMA cnt: 36 got really: 36 (System says: RDMA cnt: 36 resid 0) CDB cnt: 36 DMA cnt: 36 got really: 36 (System says: RDMA cnt: 36 resid 0) ----------> Wanted 36 bytes, got it. ----------> SCSI DMA residual count == 0 test PASSED Ready to start test for working DMA residual count == DMA count? Enter to continue: resid: 36 CDB cnt: 0 DMA cnt: 36 got really: 0 (System says: RDMA cnt: 0 resid 36) resid: 36 CDB cnt: 0 DMA cnt: 36 got really: 0 (System says: RDMA cnt: 0 resid 36) ----------> Wanted 0 bytes, got it. ----------> SCSI DMA residual count == DMA count test PASSED Ready to start test for working DMA residual count == 1? Enter to continue: resid: 1 CDB cnt: 36 DMA cnt: 37 got really: 36 (System says: RDMA cnt: 36 resid 1) resid: 1 CDB cnt: 36 DMA cnt: 37 got really: 36 (System says: RDMA cnt: 36 resid 1) ----------> Wanted 36 bytes, got it. ----------> SCSI DMA residual count == 1 test PASSED **********> Testing for working DMA overrun test. CDB cnt: 36 DMA cnt: 35 got really: 35 (System says: RDMA cnt: 35 resid 0) CDB cnt: 36 DMA cnt: 35 got really: 35 (System says: RDMA cnt: 35 resid 0) ----------> SCSI DMA overrun test FAILED ----------> SCSI transport code test NOT YET READY I also ran usbdevs -v since I saw that output in another bug report. bash-2.05b# usbdevs -v Controller /dev/usb0: addr 1: full speed, self powered, config 1, UHCI root hub(0x0000), Intel(0x0000), rev 1.00 port 1 powered port 2 powered Controller /dev/usb1: addr 1: full speed, self powered, config 1, UHCI root hub(0x0000), Intel(0x0000), rev 1.00 port 1 powered port 2 powered Controller /dev/usb2: addr 1: full speed, self powered, config 1, UHCI root hub(0x0000), Intel(0x0000), rev 1.00 port 1 powered port 2 powered Controller /dev/usb3: addr 1: full speed, self powered, config 1, UHCI root hub(0x0000), Intel(0x0000), rev 1.00 port 1 powered port 2 powered Controller /dev/usb4: addr 1: high speed, self powered, config 1, EHCI root hub(0x0000), Intel(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, self powered, config 1, LaCie DVD Drive USB2(0x0623), LaCie(0x059f), rev 0.00 port 8 powered >How-To-Repeat: run growisofs or cdrecord for a dvd. >Fix: I thought I saw an unsupported patch for another dvd burner on the internet, but I didn't try it. >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-usb@FreeBSD.ORG Thu Nov 8 07:50:02 2007 Return-Path: Delivered-To: freebsd-usb@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 004B516A418 for ; Thu, 8 Nov 2007 07:50:01 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id C647813C4B7 for ; Thu, 8 Nov 2007 07:50:01 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.1/8.14.1) with ESMTP id lA87o1rO001247 for ; Thu, 8 Nov 2007 07:50:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.1/8.14.1/Submit) id lA87o1NH001246; Thu, 8 Nov 2007 07:50:01 GMT (envelope-from gnats) Resent-Date: Thu, 8 Nov 2007 07:50:01 GMT Resent-Message-Id: <200711080750.lA87o1NH001246@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, Alex Keda Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id AB46216A41A for ; Thu, 8 Nov 2007 07:40:13 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [IPv6:2001:4f8:fff6::21]) by mx1.freebsd.org (Postfix) with ESMTP id 8C39D13C48A for ; Thu, 8 Nov 2007 07:40:13 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.14.1/8.14.1) with ESMTP id lA87dteJ083528 for ; Thu, 8 Nov 2007 07:39:55 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.14.1/8.14.1/Submit) id lA87dtSW083527; Thu, 8 Nov 2007 07:39:55 GMT (envelope-from nobody) Message-Id: <200711080739.lA87dtSW083527@www.freebsd.org> Date: Thu, 8 Nov 2007 07:39:55 GMT From: Alex Keda To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: usb/117911: Mouse Gembird MUSWC 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: Thu, 08 Nov 2007 07:50:02 -0000 >Number: 117911 >Category: usb >Synopsis: Mouse Gembird MUSWC not work >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-usb >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Thu Nov 08 07:50:01 UTC 2007 >Closed-Date: >Last-Modified: >Originator: Alex Keda >Release: CURRENT >Organization: USSR >Environment: FreeBSD lissyara.moskb.local 8.0-CURRENT FreeBSD 8.0-CURRENT #0: Mon Oct 29 18:31:39 MSK 2007 lissyara@lissyara.moskb.local:/usr/obj/root/BSD/7-current/src/sys/GENERIC i386 >Description: Additional butons on mouse - works, but, pointer not move, mouse buttons not works ====================== Nov 8 10:18:13 lissyara kernel: ukbd0: on uhub1 Nov 8 10:18:13 lissyara kernel: kbd2 at ukbd0 Nov 8 10:18:13 lissyara kernel: ums1: on uhub1 Nov 8 10:18:13 lissyara kernel: ums1: 3 buttons and Z dir. ======================== lissyara# usbdevs -v Controller /dev/usb0: addr 1: full speed, self powered, config 1, UHCI root hub(0x0000), Intel(0x0000), rev 1.00 port 1 powered port 2 powered Controller /dev/usb1: addr 1: full speed, self powered, config 1, UHCI root hub(0x0000), Intel(0x0000), rev 1.00 port 1 powered port 2 addr 2: low speed, power 100 mA, config 1, USB Advance Mouse(0x52e6), vendor 0x046e(0x046e), rev 1.00 Controller /dev/usb2: addr 1: high speed, self powered, config 1, EHCI root hub(0x0000), Intel(0x0000), rev 1.00 port 1 powered port 2 powered port 3 powered port 4 powered Controller /dev/usb3: addr 1: full speed, self powered, config 1, UHCI root hub(0x0000), Intel(0x0000), rev 1.00 port 1 powered port 2 powered Controller /dev/usb4: addr 1: full speed, self powered, config 1, UHCI root hub(0x0000), Intel(0x0000), rev 1.00 port 1 powered port 2 powered Controller /dev/usb5: addr 1: high speed, self powered, config 1, EHCI root hub(0x0000), Intel(0x0000), rev 1.00 port 1 powered port 2 powered port 3 powered port 4 powered ========================== >How-To-Repeat: alvays - I test on 7.0 and 8.0. on 6.2 - mouse detected as ================= Nov 8 09:32:14 omnibook kernel: ukbd0: vendor 0x046e USB Advance Mouse, rev 1.10/1.00, addr 3, iclass 3/1 Nov 8 09:32:14 omnibook kernel: kbd2 at ukbd0 Nov 8 09:32:14 omnibook kernel: uhid0: vendor 0x046e USB Advance Mouse, rev 1.10/1.00, addr 3, iclass 3/1 omnibook$ usbdevs usbdevs: /dev/usb0: Permission denied omnibook$ su omnibook# usbdevs addr 1: UHCI root hub, Intel addr 2: General Purpose USB Hub, vendor 0x03f0 addr 3: USB Advance Mouse, vendor 0x046e omnibook# omnibook# uname -a FreeBSD omnibook.moskb.local 6.2-RELEASE FreeBSD 6.2-RELEASE #0: Fri Jan 12 10:40:27 UTC 2007 root@dessler.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC i386 omnibook# =================== >Fix: on linux it works correct... >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-usb@FreeBSD.ORG Thu Nov 8 22:39:14 2007 Return-Path: Delivered-To: freebsd-usb@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 67C6A16A418 for ; Thu, 8 Nov 2007 22:39:14 +0000 (UTC) (envelope-from kfm@intergate.com) Received: from smtp9.trip.net (smtp9.trip.net [216.139.64.9]) by mx1.freebsd.org (Postfix) with ESMTP id 3DAB913C4A5 for ; Thu, 8 Nov 2007 22:39:14 +0000 (UTC) (envelope-from kfm@intergate.com) Received: from YosemiteSam (206-15-129-190.dialup.ziplink.net [206.15.129.190]) by smtp9.trip.net (8.14.1/8.14.1) with ESMTP id lA8MQpPP016616 for ; Thu, 8 Nov 2007 16:27:02 -0600 (CST) From: "Kenneth F. Morse Sr." To: Date: Thu, 8 Nov 2007 17:27:03 -0500 Message-ID: <000501c82256$8c9891c0$be810fce@YosemiteSam> MIME-Version: 1.0 X-Mailer: Microsoft Office Outlook 11 Thread-Index: AcgiVnj7Tq8Lh1yRTvOdtoydk0vfMA== X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.3138 X-Scanned-By: MIMEDefang 2.56 on 216.139.64.8 X-Mailman-Approved-At: Fri, 09 Nov 2007 00:10:18 +0000 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: Motorola A41x/V32x driver 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: Thu, 08 Nov 2007 22:39:14 -0000 I find I am not alone in the need for the driver for Motorola A41x/v32x driver. I cannot find it either but I did not find where there was any response to the request. Thanks Ken From owner-freebsd-usb@FreeBSD.ORG Fri Nov 9 11:30:01 2007 Return-Path: Delivered-To: freebsd-usb@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A679D16A46B for ; Fri, 9 Nov 2007 11:30:01 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 6652113C4B6 for ; Fri, 9 Nov 2007 11:30:01 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.1/8.14.1) with ESMTP id lA9BU123012394 for ; Fri, 9 Nov 2007 11:30:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.1/8.14.1/Submit) id lA9BU1Cf012391; Fri, 9 Nov 2007 11:30:01 GMT (envelope-from gnats) Resent-Date: Fri, 9 Nov 2007 11:30:01 GMT Resent-Message-Id: <200711091130.lA9BU1Cf012391@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, Nikos Ntarmos Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0B8D016A421 for ; Fri, 9 Nov 2007 11:21:16 +0000 (UTC) (envelope-from ntarmos@ceid.upatras.gr) Received: from poseidon.ceid.upatras.gr (poseidon.ceid.upatras.gr [150.140.141.169]) by mx1.freebsd.org (Postfix) with ESMTP id 6BEF513C494 for ; Fri, 9 Nov 2007 11:21:15 +0000 (UTC) (envelope-from ntarmos@ceid.upatras.gr) Received: from mail.ceid.upatras.gr (unknown [10.1.0.143]) by poseidon.ceid.upatras.gr (Postfix) with ESMTP id B56EAEB4AD3 for ; Fri, 9 Nov 2007 12:54:47 +0200 (EET) Received: from localhost (europa.ceid.upatras.gr [127.0.0.1]) by mail.ceid.upatras.gr (Postfix) with ESMTP id 3800D158C82 for ; Fri, 9 Nov 2007 12:54:47 +0200 (EET) Received: from mail.ceid.upatras.gr ([127.0.0.1]) by localhost (europa.ceid.upatras.gr [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id b+RF9hdHJiAg for ; Fri, 9 Nov 2007 12:54:47 +0200 (EET) Received: from ace.netcins.ceid.upatras.gr (csisgroup13.ceid.upatras.gr [150.140.143.227]) by mail.ceid.upatras.gr (Postfix) with ESMTP id D41B9158C6E for ; Fri, 9 Nov 2007 12:54:46 +0200 (EET) Received: by ace.netcins.ceid.upatras.gr (Postfix, from userid 1001) id 32B4D3F410; Fri, 9 Nov 2007 09:59:38 +0200 (EET) Message-Id: <20071109075938.32B4D3F410@ace.netcins.ceid.upatras.gr> Date: Fri, 9 Nov 2007 09:59:38 +0200 (EET) From: Nikos Ntarmos To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: usb/117938: [Patch] Adding support for MS WL Natural and MS WL Optical (1008) mice X-BeenThere: freebsd-usb@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Nikos Ntarmos List-Id: FreeBSD support for USB List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 09 Nov 2007 11:30:01 -0000 >Number: 117938 >Category: usb >Synopsis: [Patch] Adding support for MS WL Natural and MS WL Optical (1008) mice >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-usb >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Nov 09 11:30:00 UTC 2007 >Closed-Date: >Last-Modified: >Originator: Nikos Ntarmos >Release: FreeBSD 7.0-BETA1 i386 >Organization: NetCInS Lab., C.E.I.D., U. of Patras, Greece >Environment: System: FreeBSD ace.netcins.ceid.upatras.gr 7.0-BETA1 FreeBSD 7.0-BETA1 #2: Wed Oct 31 23:48:50 EET 2007 ntarmos@ace.netcins.ceid.upatras.gr:/opt/src/sys/i386/compile/ACE i386 >Description: Some of the newer MS keyboard/mouse bundles act in even more mysterious ways than their predecessors; they connect to the system via a composite usb device and although both devices register as HID-class devices, the keyboard presents a KEYBOARD protocol but the corresponding mouse has its protocol and subclass fields zeroed-out. Due to this oddity, ukbd succesfully attaches to the keyboard port but the mouse is claimed by uhid and is therefore rendered unusable. This holds for (at least) the MS Natural Desktop Pro and the MS Optical Desktop (v1008) bundles. >How-To-Repeat: Plug in any of teh two above bundles. The keyboard is succesfully claimed by ukbd but you only get a uhid device for the mouse. >Fix: --- more-ms-mice.patch begins here --- Index: ums.c =================================================================== RCS file: /opt/freebsd/cvs/src/sys/dev/usb/ums.c,v retrieving revision 1.96 diff -u -r1.96 ums.c --- ums.c 25 Jul 2007 06:43:06 -0000 1.96 +++ ums.c 9 Nov 2007 07:50:12 -0000 @@ -197,9 +197,19 @@ if (err) return (UMATCH_NONE); + /** + * Some of the newer Microsoft keyborad-mouse bundles use a composite USB + * approach, where both devices have an interface class of HID, but then + * only the keyboard presents a KEYBOARD protocol, while the mouse has the + * coresponding fields zeroed-out. AFAIK all such devices need the + * UQ_MS_BAD_CLASS quirk to function correctly, while that quirk is solely + * in use by mice, so I'm using it to identify such devices and have ums + * attach to them. + */ if (id->bInterfaceClass == UICLASS_HID && - id->bInterfaceSubClass == UISUBCLASS_BOOT && - id->bInterfaceProtocol == UIPROTO_MOUSE) + ((id->bInterfaceSubClass == UISUBCLASS_BOOT && + id->bInterfaceProtocol == UIPROTO_MOUSE) || + usbd_get_quirks(uaa->device)->uq_flags & UQ_MS_BAD_CLASS)) ret = UMATCH_IFACECLASS; else ret = UMATCH_NONE; @@ -487,6 +497,12 @@ * UPDATE: This problem affects the M$ Wireless Notebook Optical Mouse, * too. However, the leading byte for this mouse is normally 0x11, * and the phantom mouse click occurs when its 0x14. + * + * UPDATE: This problem also affects the MS Wireless Optical Mouse + * (Model 1008) and MS Wireless Natural Mouse 4000, only that the bogus + * byte alternates between 0x11 (normal mode) and 0x05. For these mice the + * bogus byte translates to an x-axis movement as oppose to a phantom + * click as above. */ if (sc->flags & UMS_T) { if (sc->sc_iid) { @@ -495,7 +511,7 @@ } } else if (sc->flags & UMS_SPUR_BUT_UP) { DPRINTFN(5, ("ums_intr: #### ibuf[0] =3D %d ####\n", *ibuf)); - if (*ibuf == 0x14 || *ibuf == 0x15) + if (*ibuf == 0x05 || *ibuf == 0x14 || *ibuf == 0x15) return; } else { if (sc->sc_iid) { Index: usb_quirks.c =================================================================== RCS file: /opt/freebsd/cvs/src/sys/dev/usb/usb_quirks.c,v retrieving revision 1.63 diff -u -r1.63 usb_quirks.c --- usb_quirks.c 22 Jul 2007 15:59:45 -0000 1.63 +++ usb_quirks.c 8 Nov 2007 15:56:33 -0000 @@ -84,6 +84,10 @@ { USB_VENDOR_HP, USB_PRODUCT_HP_1220C, ANY, { UQ_BROKEN_BIDIR }}, { USB_VENDOR_XEROX, USB_PRODUCT_XEROX_WCM15, ANY, { UQ_BROKEN_BIDIR }}, /* MS keyboards do weird things */ + { USB_VENDOR_MICROSOFT, USB_PRODUCT_MICROSOFT_WLNATMOUSE, + ANY, { UQ_MS_BAD_CLASS | UQ_MS_LEADING_BYTE }}, + { USB_VENDOR_MICROSOFT, USB_PRODUCT_MICROSOFT_WLOPTMOUSE, + ANY, { UQ_MS_BAD_CLASS | UQ_MS_LEADING_BYTE }}, { USB_VENDOR_MICROSOFT, USB_PRODUCT_MICROSOFT_WLNOTEBOOK, ANY, { UQ_MS_BAD_CLASS | UQ_MS_LEADING_BYTE }}, { USB_VENDOR_MICROSOFT, USB_PRODUCT_MICROSOFT_WLNOTEBOOK2, Index: usbdevs =================================================================== RCS file: /opt/freebsd/cvs/src/sys/dev/usb/usbdevs,v retrieving revision 1.328 diff -u -r1.328 usbdevs --- usbdevs 5 Oct 2007 07:26:39 -0000 1.328 +++ usbdevs 8 Nov 2007 15:57:15 -0000 @@ -1637,6 +1637,8 @@ product MICROSOFT MN510 0x006e MN510 Wireless product MICROSOFT MN110 0x007a 10/100 USB NIC product MICROSOFT WLINTELLIMOUSE 0x008c Wireless Optical IntelliMouse +product MICROSOFT WLNATMOUSE 0x071d Wireless Natural Mouse 4000 +product MICROSOFT WLOPTMOUSE 0x00f9 Wireless Optical Mouse (Model 1008) product MICROSOFT WLNOTEBOOK 0x00b9 Wireless Optical Mouse (Model 1023) product MICROSOFT WLNOTEBOOK2 0x00e1 Wireless Optical Mouse 3000 (Model 1056) product MICROSOFT WLUSBMOUSE 0x00b9 Wireless USB Mouse --- more-ms-mice.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-usb@FreeBSD.ORG Fri Nov 9 13:28:41 2007 Return-Path: Delivered-To: freebsd-usb@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id F254816A46C for ; Fri, 9 Nov 2007 13:28:41 +0000 (UTC) (envelope-from alexander@leidinger.net) Received: from redbull.bpaserver.net (redbullneu.bpaserver.net [213.198.78.217]) by mx1.freebsd.org (Postfix) with ESMTP id 924D013C4B5 for ; Fri, 9 Nov 2007 13:28:41 +0000 (UTC) (envelope-from alexander@leidinger.net) Received: from outgoing.leidinger.net (p54A5407C.dip.t-dialin.net [84.165.64.124]) by redbull.bpaserver.net (Postfix) with ESMTP id 800402E1BC; Fri, 9 Nov 2007 14:09:28 +0100 (CET) Received: from deskjail (deskjail.Leidinger.net [192.168.1.109]) by outgoing.leidinger.net (Postfix) with ESMTP id F20C43148ACD; Fri, 9 Nov 2007 14:09:25 +0100 (CET) Date: Fri, 9 Nov 2007 14:09:25 +0100 From: Alexander Leidinger To: "Kenneth F. Morse Sr." Message-ID: <20071109140925.2f941af4@deskjail> In-Reply-To: <000501c82256$8c9891c0$be810fce@YosemiteSam> References: <000501c82256$8c9891c0$be810fce@YosemiteSam> X-Mailer: Claws Mail 3.0.1 (GTK+ 2.10.14; i686-portbld-freebsd7.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-BPAnet-MailScanner-Information: Please contact the ISP for more information X-BPAnet-MailScanner: Found to be clean X-BPAnet-MailScanner-SpamCheck: not spam, SpamAssassin (not cached, score=-14.9, required 8, BAYES_00 -15.00, RDNS_DYNAMIC 0.10) X-BPAnet-MailScanner-From: alexander@leidinger.net X-Spam-Status: No Cc: freebsd-usb@freebsd.org Subject: Re: Motorola A41x/V32x driver 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: Fri, 09 Nov 2007 13:28:42 -0000 Quoting "Kenneth F. Morse Sr." (Thu, 8 Nov 2007 17:27:03 -0500): > I find I am not alone in the need for the driver for Motorola A41x/v32x > driver. I cannot find it either but I did not find where there was any > response to the request. There's no driver for Motorola A41x/v32x available. I also think it is not necessary. It would help if you describe what you want to do and what you tried to do so far. Most probably you just need to load one of the USB serial device modules and attach your mobile after this to get a serial line to your mobile. This is as far as you can get here. For everything else (tools to access the address book or whatever) you need to lock out for software tools which know how to get this data out of your phone via the serial connection (and for this you are at the wrong place here). Bye, Alexander. -- http://www.Leidinger.net Alexander @ Leidinger.net: PGP ID = B0063FE7 http://www.FreeBSD.org netchild @ FreeBSD.org : PGP ID = 72077137 From owner-freebsd-usb@FreeBSD.ORG Fri Nov 9 17:40:01 2007 Return-Path: Delivered-To: freebsd-usb@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D2F1E16A474 for ; Fri, 9 Nov 2007 17:40:01 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 78F7413C4C4 for ; Fri, 9 Nov 2007 17:40:01 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.1/8.14.1) with ESMTP id lA9He15c029509 for ; Fri, 9 Nov 2007 17:40:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.1/8.14.1/Submit) id lA9He1vo029508; Fri, 9 Nov 2007 17:40:01 GMT (envelope-from gnats) Resent-Date: Fri, 9 Nov 2007 17:40:01 GMT Resent-Message-Id: <200711091740.lA9He1vo029508@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, alex kushnaryov Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E8ABA16A41A for ; Fri, 9 Nov 2007 17:32:34 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [IPv6:2001:4f8:fff6::21]) by mx1.freebsd.org (Postfix) with ESMTP id D710513C4BA for ; Fri, 9 Nov 2007 17:32:34 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.14.1/8.14.1) with ESMTP id lA9HWDBB056250 for ; Fri, 9 Nov 2007 17:32:13 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.14.1/8.14.1/Submit) id lA9HWDjl056249; Fri, 9 Nov 2007 17:32:13 GMT (envelope-from nobody) Message-Id: <200711091732.lA9HWDjl056249@www.freebsd.org> Date: Fri, 9 Nov 2007 17:32:13 GMT From: alex kushnaryov To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: usb/117946: D-Link DUB-E100 rev. B1 crashes FreeBSD 7.0-BETA2 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: Fri, 09 Nov 2007 17:40:01 -0000 >Number: 117946 >Category: usb >Synopsis: D-Link DUB-E100 rev. B1 crashes FreeBSD 7.0-BETA2 >Confidential: no >Severity: critical >Priority: high >Responsible: freebsd-usb >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Nov 09 17:40:01 UTC 2007 >Closed-Date: >Last-Modified: >Originator: alex kushnaryov >Release: FreeBSD 7.0-BETA2 >Organization: private person >Environment: FreeBSD rs.lan 7.0-BETA2 FreeBSD 7.0-BETA2 #0: Tue Nov 6 16:36:53 EET 2007 root@rs.lan:/usr/obj/usr/src/sys/rs i386 >Description: A computer with USB ethernet card D-Link DUB-E100 rev. B1 (AX88772 chip) crashes periodically with page fault in kernel. Trace follows: ===================================================== Unread portion of the kernel message buffer: Fatal trap 12: page fault while in kernel mode cpuid = 0; apic id = 00 fault virtual address = 0x154 fault code = supervisor read, page not present instruction pointer = 0x20:0xc057f4b9 stack pointer = 0x28:0xe40f3b64 frame pointer = 0x28:0xe40f3b94 code segment = base 0x0, limit 0xfffff, type 0x1b = DPL 0, pres 1, def32 1, gran 1 processor eflags = interrupt enabled, resume, IOPL = 0 current process = 31 (irq23: ehci0) trap number = 12 panic: page fault cpuid = 0 Uptime: 2h9m51s Physical memory: 1013 MB Dumping 169 MB: (CTRL-C to abort) 154 138 (CTRL-C to abort) (CTRL-C to abort) (CTRL-C to abort) 122 (CTRL-C to abort) (CTRL-C to abort) (CTRL-C to abort) 106 90 74 58 42 26 10 #0 doadump () at pcpu.h:195 in pcpu.h (kgdb) bt #0 doadump () at pcpu.h:195 #1 0xc05dac6c in boot (howto=260) at /usr/src/sys/kern/kern_shutdown.c:409 #2 0xc05daf09 in panic (fmt=) at /usr/src/sys/kern/kern_shutdown.c:563 #3 0xc0760ebc in trap_fatal (frame=0xe40f3b24, eva=340) at /usr/src/sys/i386/i386/trap.c:872 #4 0xc0761120 in trap_pfault (frame=0xe40f3b24, usermode=0, eva=340) at /usr/src/sys/i386/i386/trap.c:785 #5 0xc07619f2 in trap (frame=0xe40f3b24) at /usr/src/sys/i386/i386/trap.c:463 #6 0xc07484ab in calltrap () at /usr/src/sys/i386/i386/exception.s:139 #7 0xc057f4b9 in usb_transfer_complete (xfer=0xc3ee4200) at /usr/src/sys/dev/usb/usbdi.c:947 #8 0xc0553da0 in ehci_softintr (v=0xc3bbd800) at /usr/src/sys/dev/usb/ehci.c:884 #9 0xc057a3e3 in usb_schedsoftintr (bus=0xc3bbd800) at /usr/src/sys/dev/usb/usb.c:844 #10 0xc055266d in ehci_intr1 (sc=0xc3bbd800) at /usr/src/sys/dev/usb/ehci.c:603 #11 0xc0554b85 in ehci_intr (v=0xc3bbd800) at /usr/src/sys/dev/usb/ehci.c:562 #12 0xc05c0a4b in ithread_loop (arg=0xc3c0ba80) at /usr/src/sys/kern/kern_intr.c:1036 #13 0xc05bda79 in fork_exit (callout=0xc05c08a0 , arg=0xc3c0ba80, frame=0xe40f3d38) at /usr/src/sys/kern/kern_fork.c:754 #14 0xc0748520 in fork_trampoline () at /usr/src/sys/i386/i386/exception.s:205 (kgdb) bt full #0 doadump () at pcpu.h:195 No locals. #1 0xc05dac6c in boot (howto=260) at /usr/src/sys/kern/kern_shutdown.c:409 first_buf_printf = 1 #2 0xc05daf09 in panic (fmt=) at /usr/src/sys/kern/kern_shutdown.c:563 td = (struct thread *) 0xc3c0f420 bootopt = (kgdb) quit ===================================================== With this device detached everything works fine, without crashes. >How-To-Repeat: Buy D-Link DUB-E100 B1, plug it in, wait for some hours. >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-usb@FreeBSD.ORG Fri Nov 9 18:58:45 2007 Return-Path: Delivered-To: freebsd-usb@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CCDD116A46E for ; Fri, 9 Nov 2007 18:58:45 +0000 (UTC) (envelope-from hselasky@c2i.net) Received: from swip.net (mailfe10.swipnet.se [212.247.155.33]) by mx1.freebsd.org (Postfix) with ESMTP id 6E42913C4B8 for ; Fri, 9 Nov 2007 18:58:45 +0000 (UTC) (envelope-from hselasky@c2i.net) X-Cloudmark-Score: 0.000000 [] Received: from [85.19.218.45] (account mc467741@c2i.net [85.19.218.45] verified) by mailfe10.swip.net (CommuniGate Pro SMTP 5.1.13) with ESMTPA id 512473821; Fri, 09 Nov 2007 19:58:36 +0100 From: Hans Petter Selasky To: freebsd-usb@freebsd.org Date: Fri, 9 Nov 2007 19:59:05 +0100 User-Agent: KMail/1.9.7 References: <000501c82256$8c9891c0$be810fce@YosemiteSam> In-Reply-To: <000501c82256$8c9891c0$be810fce@YosemiteSam> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200711091959.06137.hselasky@c2i.net> Cc: "Kenneth F. Morse Sr." Subject: Re: Motorola A41x/V32x driver 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: Fri, 09 Nov 2007 18:58:45 -0000 On Thursday 08 November 2007, Kenneth F. Morse Sr. wrote: > I find I am not alone in the need for the driver for Motorola A41x/v32x > driver. I cannot find it either but I did not find where there was any > response to the request. > > What happens if you plug your phone into a FreeBSD box ? --HPS From owner-freebsd-usb@FreeBSD.ORG Sat Nov 10 06:05:36 2007 Return-Path: Delivered-To: freebsd-usb@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8EA4E16A419 for ; Sat, 10 Nov 2007 06:05:36 +0000 (UTC) (envelope-from r.neese@gmail.com) Received: from rv-out-0910.google.com (rv-out-0910.google.com [209.85.198.184]) by mx1.freebsd.org (Postfix) with ESMTP id 6A89713C4A6 for ; Sat, 10 Nov 2007 06:05:36 +0000 (UTC) (envelope-from r.neese@gmail.com) Received: by rv-out-0910.google.com with SMTP id l15so598611rvb for ; Fri, 09 Nov 2007 22:05:21 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:from:reply-to:to:subject:date:user-agent:references:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:message-id; bh=Knqaqsw9Cielr6AigbqqFPK/Krn28xMKsbeFtb2iY7M=; b=opXcYNAhbF4B6NLTSOlcy+wrUHL2Le7uJH0DXG1UtMu7ZuvvW1e4zwizdZSXyTPfHH4obC+isxmbl/LK95fw746flbIpRd2HPRgG2KnDzeQIlT7ItTq0rJpnQ/JYiXbBW3TVvstJG6W75tu02GYBgEKOXQxG5YkVcsqd8ihB7GU= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:from:reply-to:to:subject:date:user-agent:references:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:message-id; b=TX6dXiFhmabc3pdLoyhTXnhT/DYYm+ArhMqcbuMcW4VbJWUXptQ6dxZQ6M+EiG6k7MUj/lwZEHGBKB5l1ZlNBVhgAIVRVKoTL2kSBgaQi5nktbYs8S7cA+RUJEfCdJXPJGNPrUYWwPw0BG/PXnaD/4IR7/XfimlIXNCvA3ewFVE= Received: by 10.141.172.6 with SMTP id z6mr1394192rvo.1194674721188; Fri, 09 Nov 2007 22:05:21 -0800 (PST) Received: from ?10.0.0.103? ( [69.234.184.228]) by mx.google.com with ESMTPS id k34sm4792909rvb.2007.11.09.22.05.19 (version=SSLv3 cipher=OTHER); Fri, 09 Nov 2007 22:05:19 -0800 (PST) From: Richard Neese To: freebsd-usb@freebsd.org Date: Fri, 9 Nov 2007 22:04:15 +0000 User-Agent: KMail/1.9.7 References: <000501c82256$8c9891c0$be810fce@YosemiteSam> <200711091959.06137.hselasky@c2i.net> In-Reply-To: <200711091959.06137.hselasky@c2i.net> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200711092204.16063.r.neese@gmail.com> Subject: Re: Motorola A41x/V32x driver X-BeenThere: freebsd-usb@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: r.neese@gmail.com List-Id: FreeBSD support for USB List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 10 Nov 2007 06:05:36 -0000 On Friday 09 November 2007 18:59:05 Hans Petter Selasky wrote: > On Thursday 08 November 2007, Kenneth F. Morse Sr. wrote: > > I find I am not alone in the need for the driver for Motorola A41x/v32x > > driver. I cannot find it either but I did not find where there was any > > response to the request. > > What happens if you plug your phone into a FreeBSD box ? > > --HPS > _______________________________________________ > freebsd-usb@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-usb > To unsubscribe, send any mail to "freebsd-usb-unsubscribe@freebsd.org" is this a modem ? -- Welcome to the World. An the World gets smaller. From owner-freebsd-usb@FreeBSD.ORG Sat Nov 10 08:40:02 2007 Return-Path: Delivered-To: freebsd-usb@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 28E4916A41A for ; Sat, 10 Nov 2007 08:40:02 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 02FB513C4DB for ; Sat, 10 Nov 2007 08:40:02 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.1/8.14.1) with ESMTP id lAA8e1fC080345 for ; Sat, 10 Nov 2007 08:40:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.1/8.14.1/Submit) id lAA8e1EU080344; Sat, 10 Nov 2007 08:40:01 GMT (envelope-from gnats) Resent-Date: Sat, 10 Nov 2007 08:40:01 GMT Resent-Message-Id: <200711100840.lAA8e1EU080344@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, fulvio ciriaco Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 15BBB16A41A for ; Sat, 10 Nov 2007 08:35:26 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [IPv6:2001:4f8:fff6::21]) by mx1.freebsd.org (Postfix) with ESMTP id 06C2E13C4BB for ; Sat, 10 Nov 2007 08:35:26 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.14.1/8.14.1) with ESMTP id lAA8Z3vi072463 for ; Sat, 10 Nov 2007 08:35:03 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.14.1/8.14.1/Submit) id lAA8Z3s8072462; Sat, 10 Nov 2007 08:35:03 GMT (envelope-from nobody) Message-Id: <200711100835.lAA8Z3s8072462@www.freebsd.org> Date: Sat, 10 Nov 2007 08:35:03 GMT From: fulvio ciriaco To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: usb/117955: plugging minolta dimage a2 crashes os 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: Sat, 10 Nov 2007 08:40:02 -0000 >Number: 117955 >Category: usb >Synopsis: plugging minolta dimage a2 crashes os >Confidential: no >Severity: serious >Priority: low >Responsible: freebsd-usb >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sat Nov 10 08:40:01 UTC 2007 >Closed-Date: >Last-Modified: >Originator: fulvio ciriaco >Release: 7.0-beta2 >Organization: >Environment: FreeBSD 7.0-BETA2, GENERIC >Description: When I usb plug Minolta dimage A2 to my computer, it crashes and reboots. The output of $(kgdb /boot/kernel/kernel vmcore.0) follows [GDB will not be able to debug user-mode threads: /usr/lib/libthread_db.so: Unde fined symbol "ps_pglobal_lookup"] GNU gdb 6.1.1 [FreeBSD] Copyright 2004 Free Software Foundation, Inc. GDB is free software, covered by the GNU General Public License, and you are welcome to change it and/or distribute copies of it under certain conditions. Type "show copying" to see the conditions. There is absolutely no warranty for GDB. Type "show warranty" for details. This GDB was configured as "i386-marcel-freebsd". Unread portion of the kernel message buffer: umass0: at uhub4 port 4 (addr 3) disconnected Fatal trap 12: page fault while in kernel mode cpuid = 0; apic id = 00 fault virtual address = 0x0 fault code = supervisor write, page not present instruction pointer = 0x20:0xc0466f4b stack pointer = 0x28:0xe30b59c0 frame pointer = 0x28:0xe30b59d8 code segment = base 0x0, limit 0xfffff, type 0x1b = DPL 0, pres 1, def32 1, gran 1 processor eflags = interrupt enabled, resume, IOPL = 0 current process = 34 (usb4) trap number = 12 panic: page fault cpuid = 0 Uptime: 59s Physical memory: 1001 MB Dumping 169 MB: 154 138 122 106 90 74 58 42 26 10 #0 doadump () at pcpu.h:195 195 pcpu.h: No such file or directory. in pcpu.h (kgdb) >How-To-Repeat: plug minolta dimage a2, always. >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-usb@FreeBSD.ORG Sat Nov 10 13:52:29 2007 Return-Path: Delivered-To: freebsd-usb@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id F0CCE16A417 for ; Sat, 10 Nov 2007 13:52:29 +0000 (UTC) (envelope-from brix@FreeBSD.org) Received: from solow.pil.dk (relay.pil.dk [195.41.47.164]) by mx1.freebsd.org (Postfix) with ESMTP id A996C13C4B0 for ; Sat, 10 Nov 2007 13:52:29 +0000 (UTC) (envelope-from brix@FreeBSD.org) Received: from tirith.brixandersen.dk (osgiliath.brixandersen.dk [87.53.223.189]) by solow.pil.dk (Postfix) with ESMTP id 932E91CC0C5 for ; Sat, 10 Nov 2007 14:35:45 +0100 (CET) Received: by tirith.brixandersen.dk (Postfix, from userid 1001) id D7A4B11436; Sat, 10 Nov 2007 14:35:44 +0100 (CET) Date: Sat, 10 Nov 2007 14:35:44 +0100 From: Henrik Brix Andersen To: freebsd-usb@freebsd.org Message-ID: <20071110133544.GB91231@tirith.brixandersen.dk> Mail-Followup-To: freebsd-usb@freebsd.org References: <000501c82256$8c9891c0$be810fce@YosemiteSam> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="HcAYCG3uE/tztfnV" Content-Disposition: inline In-Reply-To: <000501c82256$8c9891c0$be810fce@YosemiteSam> X-PGP-Key: http://www.brixandersen.dk/files/HenrikBrixAndersen.asc User-Agent: Mutt/1.5.16 (2007-06-09) Subject: Re: Motorola A41x/V32x driver 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: Sat, 10 Nov 2007 13:52:30 -0000 --HcAYCG3uE/tztfnV Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Thu, Nov 08, 2007 at 05:27:03PM -0500, Kenneth F. Morse Sr. wrote: > I find I am not alone in the need for the driver for Motorola A41x/v32x > driver. I cannot find it either but I did not find where there was any > response to the request. Since january there have been 8 posts to this list with the subject "Motorola A41x/V32x driver" and at least 3 posts about other Motorola cellphones - all without follow-up from the original poster. I am starting to think that it may be a weird new way of advertising... Brix --=20 Henrik Brix Andersen --HcAYCG3uE/tztfnV Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.7 (FreeBSD) Comment: GnuPG signed iD8DBQFHNbOwv+Q4flTiePgRAlDSAKCsot6EDl/qEYdiFW9ZWdBimKyDaACfXRl2 pYuzjkXP/Jzo4fAqyRoZtNo= =qdIV -----END PGP SIGNATURE----- --HcAYCG3uE/tztfnV-- From owner-freebsd-usb@FreeBSD.ORG Sat Nov 10 16:10:05 2007 Return-Path: Delivered-To: freebsd-usb@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D15C016A478; Sat, 10 Nov 2007 16:10:05 +0000 (UTC) (envelope-from imp@bsdimp.com) Received: from harmony.bsdimp.com (bsdimp.com [199.45.160.85]) by mx1.freebsd.org (Postfix) with ESMTP id 8C65F13C4A7; Sat, 10 Nov 2007 16:10:05 +0000 (UTC) (envelope-from imp@bsdimp.com) Received: from localhost (localhost [127.0.0.1]) by harmony.bsdimp.com (8.14.1/8.14.1) with ESMTP id lAAG3SUe067445; Sat, 10 Nov 2007 09:03:28 -0700 (MST) (envelope-from imp@bsdimp.com) Date: Sat, 10 Nov 2007 09:07:16 -0700 (MST) Message-Id: <20071110.090716.179960142.imp@bsdimp.com> To: brix@freebsd.org From: "M. Warner Losh" In-Reply-To: <20071110133544.GB91231@tirith.brixandersen.dk> References: <000501c82256$8c9891c0$be810fce@YosemiteSam> <20071110133544.GB91231@tirith.brixandersen.dk> X-Mailer: Mew version 5.2 on Emacs 21.3 / Mule 5.0 (SAKAKI) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Cc: freebsd-usb@freebsd.org Subject: Re: Motorola A41x/V32x driver 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: Sat, 10 Nov 2007 16:10:05 -0000 In message: <20071110133544.GB91231@tirith.brixandersen.dk> Henrik Brix Andersen writes: : On Thu, Nov 08, 2007 at 05:27:03PM -0500, Kenneth F. Morse Sr. wrote: : > I find I am not alone in the need for the driver for Motorola A41x/v32x : > driver. I cannot find it either but I did not find where there was any : > response to the request. : : Since january there have been 8 posts to this list with the subject : "Motorola A41x/V32x driver" and at least 3 posts about other Motorola : cellphones - all without follow-up from the original poster. : : I am starting to think that it may be a weird new way of : advertising... Clearly, someone needs to buy one or three for developers so that we can develop a driver and have cool cell phones to brag about... Warner From owner-freebsd-usb@FreeBSD.ORG Sat Nov 10 16:52:27 2007 Return-Path: Delivered-To: freebsd-usb@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2D34516A46D for ; Sat, 10 Nov 2007 16:52:27 +0000 (UTC) (envelope-from henrik@brixandersen.dk) Received: from solow.pil.dk (relay.pil.dk [195.41.47.164]) by mx1.freebsd.org (Postfix) with ESMTP id D8DD213C4B8 for ; Sat, 10 Nov 2007 16:52:26 +0000 (UTC) (envelope-from henrik@brixandersen.dk) Received: from tirith.brixandersen.dk (osgiliath.brixandersen.dk [87.53.223.189]) by solow.pil.dk (Postfix) with ESMTP id 5A6AE1CC0F2; Sat, 10 Nov 2007 17:16:18 +0100 (CET) Received: by tirith.brixandersen.dk (Postfix, from userid 1001) id A7BC611438; Sat, 10 Nov 2007 17:16:17 +0100 (CET) Date: Sat, 10 Nov 2007 17:16:17 +0100 From: Henrik Brix Andersen To: "M. Warner Losh" Message-ID: <20071110161617.GA93963@tirith.brixandersen.dk> Mail-Followup-To: "M. Warner Losh" , freebsd-usb@freebsd.org References: <000501c82256$8c9891c0$be810fce@YosemiteSam> <20071110133544.GB91231@tirith.brixandersen.dk> <20071110.090716.179960142.imp@bsdimp.com> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="uAKRQypu60I7Lcqm" Content-Disposition: inline In-Reply-To: <20071110.090716.179960142.imp@bsdimp.com> X-PGP-Key: http://www.brixandersen.dk/files/HenrikBrixAndersen.asc User-Agent: Mutt/1.5.16 (2007-06-09) Cc: freebsd-usb@freebsd.org Subject: Re: Motorola A41x/V32x driver 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: Sat, 10 Nov 2007 16:52:27 -0000 --uAKRQypu60I7Lcqm Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sat, Nov 10, 2007 at 09:07:16AM -0700, M. Warner Losh wrote: > : Since january there have been 8 posts to this list with the subject > : "Motorola A41x/V32x driver" and at least 3 posts about other Motorola > : cellphones - all without follow-up from the original poster. > :=20 > : I am starting to think that it may be a weird new way of > : advertising... >=20 > Clearly, someone needs to buy one or three for developers so that we > can develop a driver and have cool cell phones to brag about... Oh, definitely! :) Brix --=20 Henrik Brix Andersen --uAKRQypu60I7Lcqm Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.7 (FreeBSD) Comment: GnuPG signed iD8DBQFHNdlRv+Q4flTiePgRAhGkAJ0Zy5CtYHzxZ7SP+sSoNr4WOR1WHACff0zt Z8zymHEqztFoFi5r/my+X2E= =Mice -----END PGP SIGNATURE----- --uAKRQypu60I7Lcqm--