From vwe at FreeBSD.org Wed Oct 1 21:50:53 2008 From: vwe at FreeBSD.org (vwe@FreeBSD.org) Date: Wed Oct 1 21:50:59 2008 Subject: usb/127516: after csup src-all RELENG_7 Message-ID: <200810012150.m91LoqME011966@freefall.freebsd.org> Synopsis: after csup src-all RELENG_7 State-Changed-From-To: open->feedback State-Changed-By: vwe State-Changed-When: Wed Oct 1 21:45:01 UTC 2008 State-Changed-Why: Yakov, pretty less information in your report. > sorry can't provude uname -a, not without mouse.. hmm, that sounds strange, really. Anyway, what I'm asking you for is to give us some more information. The best thing you can do is to compile your moused binary with debug information (cc switch: -g), recreate the problem and get a backtrace from gdb: ``gdb /usr/sbin/moused /path/to/anywhere/moused.core'' with ``bt CR'' and ``list CR''. Also please don't hesitate to attach a dmesg (with device attach information for your mouse) and output of ``usbdevs -dv'' to your report (in addition to the debug information, of course). Thank you for your report. http://www.freebsd.org/cgi/query-pr.cgi?pr=127516 From mpoupe at gmail.com Thu Oct 2 10:16:56 2008 From: mpoupe at gmail.com (Martin Poupe) Date: Thu Oct 2 10:17:03 2008 Subject: FreeBSD: Asynchronous USB read in usermode Message-ID: <48E49A6B.6090302@gmail.com> Hello, I am porting linux application which does both synchronous and asynchronously read from USB device. Synchronous transfer is not a problem - libusb was used and it is working fine on FreeBSD too. Problem is the asynchronous reading, I cannot find any kernel call similar to linux submit urb. I tried the aio_read() but it seems it is not supported on file which is actually USB device. Function usbd_bulk_transfer() (usbdi_util.h) seems interesting, but I am afraid it is only for kernel usage. Is there some method how to read from the USB device asynchronously in usermode ? Thanks, Martin From torfinn.ingolfsen at broadpark.no Thu Oct 2 20:32:34 2008 From: torfinn.ingolfsen at broadpark.no (Torfinn Ingolfsen) Date: Thu Oct 2 20:34:39 2008 Subject: HPLIP and usb printers again In-Reply-To: <20080923014214.72569a64.torfinn.ingolfsen@broadpark.no> References: <20080923014214.72569a64.torfinn.ingolfsen@broadpark.no> Message-ID: <20081002223222.337889eb.torfinn.ingolfsen@broadpark.no> On Tue, 23 Sep 2008 01:42:14 +0200 Torfinn Ingolfsen wrote: > I will not be able to follow up on this for the next two weeks. I am back, in case anybody have anything to say on the subject. -- Regards, Torfinn Ingolfsen, Norway From torfinn.ingolfsen at broadpark.no Fri Oct 3 08:10:15 2008 From: torfinn.ingolfsen at broadpark.no (Torfinn Ingolfsen) Date: Fri Oct 3 08:10:22 2008 Subject: HPLIP and usb printers again In-Reply-To: <20080923014214.72569a64.torfinn.ingolfsen@broadpark.no> References: <20080923014214.72569a64.torfinn.ingolfsen@broadpark.no> Message-ID: <20081003101000.8462c213.torfinn.ingolfsen@broadpark.no> On Tue, 23 Sep 2008 01:42:14 +0200 Torfinn Ingolfsen wrote: > Then I found this thread[1], and this patch[2]. > When I checked the port after 'make patch', the patch was laready in > the musb.c file, so I took my chancesd and reversed (-R) the patch. I contacted the author of the patch, he confirmed that it is reversed. This issuse is now reported as PR ports/127810. http://www.freebsd.org/cgi/query-pr.cgi?pr=127810 -- Regards, Torfinn Ingolfsen, Norway From vova at fbsd.ru Fri Oct 3 21:17:34 2008 From: vova at fbsd.ru (Vladimir Grebenschikov) Date: Fri Oct 3 21:17:40 2008 Subject: Bluetooth audio - crash on USB bluetooth dongle disconnect In-Reply-To: References: <3a386af20809261420j535680e8pf44453dbf6f84b20@mail.gmail.com> <1223034512.1842.111.camel@localhost> Message-ID: <1223067257.2362.6.camel@localhost> On Fri, 2008-10-03 at 09:45 -0700, Maksim Yevmenkin wrote: > now you can connect your bluetooth device. kick tires and make sure > you can do inquiry etc. then simply pull the device out _without_ > stopping the stack first. at least on my system it often leads to > panic after a few seconds. First of all it crashes on disconnect with big probability even without btsock_sco. For me it crashes in uhci interrupt handler on NULL de-reference trace shows something like: usb_transfer_complete uhci_transfer_complete ... digging a bit shows that it crashes in uhci.c:2575 usbd_status uhci_device_isoc_start(usbd_xfer_handle xfer) { struct uhci_pipe *upipe = (struct uhci_pipe *)xfer->pipe; uhci_softc_t *sc = (uhci_softc_t *)upipe->pipe.device->bus; with upipe = NULL on interrupt Looks like it is result of locking changes in usb stack or like. Usb folks, can anybody give a hint what is the reason of such crash ? PS: I have SMP system. > thanks, > max -- Vladimir B. Grebenschikov vova@fbsd.ru From maksim.yevmenkin at gmail.com Fri Oct 3 21:47:35 2008 From: maksim.yevmenkin at gmail.com (Maksim Yevmenkin) Date: Fri Oct 3 21:47:42 2008 Subject: Bluetooth audio - crash on USB bluetooth dongle disconnect In-Reply-To: <1223067257.2362.6.camel@localhost> References: <3a386af20809261420j535680e8pf44453dbf6f84b20@mail.gmail.com> <1223034512.1842.111.camel@localhost> <1223067257.2362.6.camel@localhost> Message-ID: On 10/3/08, Vladimir Grebenschikov wrote: > On Fri, 2008-10-03 at 09:45 -0700, Maksim Yevmenkin wrote: > > > now you can connect your bluetooth device. kick tires and make sure > > you can do inquiry etc. then simply pull the device out _without_ > > stopping the stack first. at least on my system it often leads to > > panic after a few seconds. > > First of all it crashes on disconnect with big probability even without > btsock_sco. yes, i know. isoc transfers seems to be triggering it > For me it crashes in uhci interrupt handler on NULL de-reference > > trace shows something like: > usb_transfer_complete > uhci_transfer_complete > ... > > digging a bit shows that it crashes in uhci.c:2575 > > usbd_status > uhci_device_isoc_start(usbd_xfer_handle xfer) > { > struct uhci_pipe *upipe = (struct uhci_pipe *)xfer->pipe; > uhci_softc_t *sc = (uhci_softc_t *)upipe->pipe.device->bus; > > with upipe = NULL on interrupt > > Looks like it is result of locking changes in usb stack or like. > > Usb folks, can anybody give a hint what is the reason of such crash ? > > PS: I have SMP system. one thing that is different from interrupt and bulk transfers is that ng_ubt(4) always has multiple outstanding incoming isoc transfers. when device is simply pulled out, there is not much driver can do. if i enable debugging i can see my transfer completion routine called with ioerror status or something like that. so, i suspect this is a cleanup issue. i'm not sure who supposed to do the cleanup in this case driver or stack. in any case, can you verify that ubt_reset() is called when device is pulled out? (it should be called as part of hook disconnect). if not - then please try to call ubt_reset() from ubt_detach() just before closing all the pipes. thanks, max From vova at fbsd.ru Fri Oct 3 22:21:09 2008 From: vova at fbsd.ru (Vladimir Grebenschikov) Date: Fri Oct 3 22:21:20 2008 Subject: Bluetooth audio - crash on USB bluetooth dongle disconnect - solved In-Reply-To: References: <3a386af20809261420j535680e8pf44453dbf6f84b20@mail.gmail.com> <1223034512.1842.111.camel@localhost> <1223067257.2362.6.camel@localhost> Message-ID: <1223072464.4832.2.camel@localhost> ? Fri, 03/10/2008 ? 14:18 -0700, Maksim Yevmenkin ?????: > one thing that is different from interrupt and bulk transfers is that > ng_ubt(4) always has multiple outstanding incoming isoc transfers. > when device is simply pulled out, there is not much driver can do. if > i enable debugging i can see my transfer completion routine called > with ioerror status or something like that. so, i suspect this is a > cleanup issue. i'm not sure who supposed to do the cleanup in this > case driver or stack. > > in any case, can you verify that ubt_reset() is called when device is > pulled out? (it should be called as part of hook disconnect). Right guess, it does not called. > if not - then please try to call ubt_reset() from ubt_detach() just before > closing all the pipes. Yes, it fixes crash, patch below. Index: netgraph/bluetooth/drivers/ubt/ng_ubt.c =================================================================== RCS file: /usr/ncvs/src/sys/netgraph/bluetooth/drivers/ubt/ng_ubt.c,v retrieving revision 1.35 diff -u -r1.35 ng_ubt.c --- netgraph/bluetooth/drivers/ubt/ng_ubt.c 29 Jul 2008 00:17:53 -0000 1.35 +++ netgraph/bluetooth/drivers/ubt/ng_ubt.c 3 Oct 2008 22:13:46 -0000 @@ -803,6 +803,9 @@ struct ubt_softc *sc = device_get_softc(self); int i; + /* Reset queues and pipes */ + ubt_reset(sc); + /* Destroy Netgraph node */ if (sc->sc_node != NULL) { NG_NODE_SET_PRIVATE(sc->sc_node, NULL); > thanks, > max -- Vladimir B. Grebenschikov vova@fbsd.ru From maksim.yevmenkin at gmail.com Fri Oct 3 22:42:30 2008 From: maksim.yevmenkin at gmail.com (Maksim Yevmenkin) Date: Fri Oct 3 22:42:42 2008 Subject: Bluetooth audio - crash on USB bluetooth dongle disconnect - solved In-Reply-To: <1223072464.4832.2.camel@localhost> References: <3a386af20809261420j535680e8pf44453dbf6f84b20@mail.gmail.com> <1223034512.1842.111.camel@localhost> <1223067257.2362.6.camel@localhost> <1223072464.4832.2.camel@localhost> Message-ID: 2008/10/3 Vladimir Grebenschikov : > ? Fri, 03/10/2008 ? 14:18 -0700, Maksim Yevmenkin ?????: > >> one thing that is different from interrupt and bulk transfers is that >> ng_ubt(4) always has multiple outstanding incoming isoc transfers. >> when device is simply pulled out, there is not much driver can do. if >> i enable debugging i can see my transfer completion routine called >> with ioerror status or something like that. so, i suspect this is a >> cleanup issue. i'm not sure who supposed to do the cleanup in this >> case driver or stack. >> >> in any case, can you verify that ubt_reset() is called when device is >> pulled out? (it should be called as part of hook disconnect). > > Right guess, it does not called. > >> if not - then please try to call ubt_reset() from ubt_detach() just before >> closing all the pipes. > > Yes, it fixes crash, patch below. thanks for testing it! i have committed slightly different fix to head === Author: emax Date: Fri Oct 3 22:40:42 2008 New Revision: 183576 URL: http://svn.freebsd.org/changeset/base/183576 Log: Abort transfers on all pipes before closing them. This fixes the crash when Bluetooth USB device is pulled out without stopping the stack first. Submitted by: Vladimir Grebenschikov vova at fbsd dot ru MFC after: 1 week Modified: head/sys/netgraph/bluetooth/drivers/ubt/ng_ubt.c === thanks, max From freebsd at sopwith.solgatos.com Sat Oct 4 21:30:56 2008 From: freebsd at sopwith.solgatos.com (Dieter) Date: Sat Oct 4 21:31:13 2008 Subject: alpha/127248: System crashes when many (7) serial port terminals (vt320-vt510) connected to the server via com to usb adapter and 2-usb hubs. In-Reply-To: Your message of "Thu, 25 Sep 2008 21:00:22 +0200." <20080925190022.GB93308@cicely7.cicely.de> Message-ID: <200810042129.VAA24823@sopwith.solgatos.com> > > Surely a "good" USB to RS-232 bridge (if one exists?) or a RS-232 > > filter/isolator (assuming they exist?) would be *far* less expensive > > than the server class alpha you suggest below. > > It depend on how much RS232 you need and how many slots the OP has free. > Nevertheless a "good" RS232 bridge if needed in number are not cheap > either - ntoe that you can get affordable PCI extenders as well. The PCI expanders I've seen cost almost as much as getting an entire additional machine. > > > > The problem with PCI is the limited number of slots. :-( > > > > > > Well - not realy with server class alphas... > > > > In my world, a "server" means 1-4 full height 19" racks with quite large > > price tags and power&cooling requirements. Some people think a server > > is a pee-cee. So I'm not sure what you mean by "server class alphas". > > Server doesn't mean rack, but beside from a few OEM boards and small > 19" system all alphas have lots of free slots available. > > > I have what I would call a "workstation" class alpha, which cost an > > obscene amount to get 6 PCI slots instead of 4, and at times they are > > all full. So I can't use up a slot just to get a couple more RS-232 > > ports. How many PCI slots does a server class alpha have? > > Well the AS4100 I have already has 8 slots which is not that uncommon > for alpha servers. I'd call an alpha with only 8 slots a workstation class machine. It wouldn't take much to fill up 8 slots. > The real big ones can even have a few hundred slots. A few hundred slots would be server class. And I'm sure a price tag to match, along with floor space, power, and cooling requirements. > > USB to RS-232 bridge could be a good solution, if I knew which > > make&model of bridge worked well with *BSD. Poking around on the web > > I can't even find what chip they have inside. > > Really forget about USB to RS232. > It is not the chip which is the problem it is the principal. > You really need galvanic isolation, because USB can't handle ground > loops, which no cheap device has. > You can use any kind of chip with propper isolation, but then it > is likely more expensive than any other kind of solution. I assume this is marketing driven. Adding a few optos can't increase the manufacturing cost *that* much. Sounds like a market opportunity for someone. > > Do these bridges actually work properly, or do they have gotchas > > like the USB to SATA/PATA bridges? > > The prolific bridges work well enough if you don't have a ground > loop and FTDI chips are better IMHO. Thanks. From ticso at cicely7.cicely.de Sun Oct 5 10:36:07 2008 From: ticso at cicely7.cicely.de (Bernd Walter) Date: Sun Oct 5 10:36:19 2008 Subject: alpha/127248: System crashes when many (7) serial port terminals (vt320-vt510) connected to the server via com to usb adapter and 2-usb hubs. In-Reply-To: <200810042129.VAA24823@sopwith.solgatos.com> References: <20080925190022.GB93308@cicely7.cicely.de> <200810042129.VAA24823@sopwith.solgatos.com> Message-ID: <20081005103559.GI3228@cicely7.cicely.de> On Sat, Oct 04, 2008 at 02:29:08PM +0100, Dieter wrote: > > > Surely a "good" USB to RS-232 bridge (if one exists?) or a RS-232 > > > filter/isolator (assuming they exist?) would be *far* less expensive > > > than the server class alpha you suggest below. > > > > It depend on how much RS232 you need and how many slots the OP has free. > > Nevertheless a "good" RS232 bridge if needed in number are not cheap > > either - ntoe that you can get affordable PCI extenders as well. > > The PCI expanders I've seen cost almost as much as getting an entire > additional machine. For PCI you are right, but Exsys for example makes extenders with PCIe uplinks for a good price. > > Well the AS4100 I have already has 8 slots which is not that uncommon > > for alpha servers. > > I'd call an alpha with only 8 slots a workstation class machine. It > wouldn't take much to fill up 8 slots. It is not the biggest server class, but I wouldn't put it on my desk either. > > > USB to RS-232 bridge could be a good solution, if I knew which > > > make&model of bridge worked well with *BSD. Poking around on the web > > > I can't even find what chip they have inside. > > > > Really forget about USB to RS232. > > It is not the chip which is the problem it is the principal. > > You really need galvanic isolation, because USB can't handle ground > > loops, which no cheap device has. > > You can use any kind of chip with propper isolation, but then it > > is likely more expensive than any other kind of solution. > > I assume this is marketing driven. Adding a few optos can't > increase the manufacturing cost *that* much. Sounds like a > market opportunity for someone. You also need a DC-DC converter to get power behind the isolation and 8 opto channels. It wouldn't increase manufactoring costs that much if produced in numbers, but it would make these devices about two or three times bigger. Another point is the additional power requirement. There are alternatives for optos, that don't consume that much power, but they are more expensive and you still have the loss for the DC-DC. Power consumption is an important factor for mobile computing. So yes - this is marketing driven, but not only for prices. I produce 12V adapters myself, so I know the size requirements for adding DCDC converters. Guess I will add optos one day. But even those without are already too expensive for adding terminals compared to e.g. ethernet based RS232. -- B.Walter http://www.bwct.de Modbus/TCP Ethernet I/O Baugruppen, ARM basierte FreeBSD Rechner uvm. From vwe at FreeBSD.org Sun Oct 5 20:14:49 2008 From: vwe at FreeBSD.org (vwe@FreeBSD.org) Date: Sun Oct 5 20:14:55 2008 Subject: usb/126776: [umass/geom] confusing mixed output (but no panic!) after removing unmounted usb device Message-ID: <200810052014.m95KEnph025200@freefall.freebsd.org> Synopsis: [umass/geom] confusing mixed output (but no panic!) after removing unmounted usb device State-Changed-From-To: open->closed State-Changed-By: vwe State-Changed-When: Sun Oct 5 20:11:26 UTC 2008 State-Changed-Why: DUP PR This is a well known problem and in no case usb related. As it's documented at several places and discussed often. For these reasons, we're closing this. As far as I'm aware of, there's a fix for that in the making. Thank you for reporting. Responsible-Changed-From-To: freebsd-usb->vwe Responsible-Changed-By: vwe Responsible-Changed-When: Sun Oct 5 20:11:26 UTC 2008 Responsible-Changed-Why: grab http://www.freebsd.org/cgi/query-pr.cgi?pr=126776 From dlverlee at mtu.edu Mon Oct 6 01:57:53 2008 From: dlverlee at mtu.edu (Derek VerLee) Date: Mon Oct 6 01:58:00 2008 Subject: Learning how to interface with USB devs Message-ID: <20081005212848.40a10f74@Joy> Hello, I'm a little new hardware level programming, but I'm looking to learn. Here's what I am trying to do: I have a usb audio device, Turtle Beach Audio Advantage Micro, chip is C-MEDIA CM102. It has audio out analog and a digital spdif option (but only one or the other at a time). I need to use the spdif. Instead of buying something else that is already supported, i did a little digging and it doesn't appear to be very difficult to toggle the spdif on and off. Someone has already done the usb driver snooping for me: http://sandeen.net/tbaam/index.html From reading the header files and code in the source tree I have gotten as far as the attached file. My goal with this program is to see if it works and to learn to use the bus. It would also be sufficient for my needs to have a command line program to simply turn on spdif since I will not need to switch back and forth. As I get time, I will try to learn more and eventually submit a patch to make this work for others (I think it would be a mixer switch). However for now can someone give me a pointer on where to go from here? Perhaps a good example code or document I may have missed. I am in paticular not sure how to address the device properly, and whether I want to use USB_REQUEST or something else. Thanks in advance. _derek From bugmaster at FreeBSD.org Mon Oct 6 11:07:04 2008 From: bugmaster at FreeBSD.org (FreeBSD bugmaster) Date: Mon Oct 6 11:09:16 2008 Subject: Current problem reports assigned to freebsd-usb@FreeBSD.org Message-ID: <200810061107.m96B7332035650@freefall.freebsd.org> Note: to view an individual PR, use: http://www.freebsd.org/cgi/query-pr.cgi?pr=(number). The following is a listing of current problems submitted by FreeBSD users. These represent problem reports covering all versions including experimental development code and obsolete releases. S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/127549 usb Meizu MiniPlayer M6 (SL) requires some quirks o usb/127543 usb [patch] [ubsa] Support Option Globetrotter HSDPA modem f usb/127516 usb after csup src-all RELENG_7 s usb/127453 usb [request] ubsa, uark, ubser, uftdi, and friends should o usb/127423 usb [boot] BTX halted on Gigabyte GA-MA69VM-S2 / AMD Sempr o usb/127342 usb [boot] cannot enable usb keyboard and mouse support in o kern/127222 usb [ohci]: Regression in 7.0 usb storage generic driver o usb/126884 usb [patch] Bug in buffer handling in ugen.c f kern/126848 usb [usb]: USB Keyboard hangs during Installation o usb/126740 usb [ulpt] doesn't work on 7.0-RELEASE, 10 second stall be o usb/126519 usb [usb] [panic] panic when plugging in an iphone o kern/126396 usb [panic] kernel panic after unplug USB Bluetooth device o usb/125736 usb [ukbd] [hang] system hangs after AT keyboard detect if o usb/125631 usb [usb][ums] kernel panic during bootup while 'Logitech o usb/125510 usb repeated plug and unplug of USB mass storage devices l o usb/125450 usb [panic] Removing USB flash card while being accessed c o usb/125264 usb [patch] sysctl for set usb mouse rate (very useful for o usb/125238 usb Habu Mouse turns off in X o usb/125088 usb Touchpad not detected on Adesso AKB-430UG USB kbd/pad o usb/125072 usb [uplcom] [patch] add Mobile Action MA-620 Infrared Ada o usb/124980 usb [panic] kernel panic on detaching unmounted umass devi o kern/124777 usb [ucom] USB cua devices don't revert to tty devices whe o usb/124758 usb rum panics SMP kernel o usb/124708 usb [panic] Kernel panic on USB KVM reattach o usb/124604 usb Wireless Mouse doesn't work o usb/123969 usb Supermicro H8SMi-2 usb problem o usb/123714 usb Panic when hald-storage-probe runs with umass device i o usb/123691 usb usbd(8): usbd hangs o usb/123690 usb Panic on USB device insertion when usb loaded as a mod o usb/123611 usb [usb] BBB reset failed, STALLED from Imation/Mitsumi U o usb/123509 usb [umass] continuous reset Samsung SGH-G600 phone o usb/123352 usb Add Option GTMAX3.6/7.2 and Quallcomm MMC module devic o usb/123351 usb Add Reiner SCT cyberJack, Omnikey [26]020, Fujitsu Sie p usb/123211 usb [udav] if_udav driver doesn't support Davicom 9601 USB p usb/123148 usb [uscanner] [patch] Epson DX8400/50 needs uscanner to s o usb/122992 usb MotoROKR Z6 Phone not recognised by umass as USB disk. o usb/122956 usb Support for Novatel Wireless XU870 3G Card o usb/122936 usb [ucom][ubsa] Device does not receive interrupt o usb/122905 usb [ubsa] [patch] add Huawei E220 to ubsa o usb/122819 usb Patch to provide dynamic additions to the usb quirks t o usb/122813 usb [udbp] [request] udbp driver should be removed in favo o usb/122712 usb [usbdevs] [patch] Sony Vaio RF keyboard/mouse receiver o usb/122621 usb [patch] [request] New driver for Sierra Wireless 3G US p usb/122610 usb Add Verizon v740 support to ubsa(4) o usb/122547 usb [ehci] USB Printer not being recognized after reboot o usb/122539 usb [ohci] [panic] AnyDATA ADU-E1000D - kernel panic: ohci o usb/122483 usb [panic] [ulpt] Repeatable panic in 7.0-STABLE o usb/122119 usb [umass] umass device causes creation of daX but not da o usb/122025 usb [patch] uscanner does not attach to Epson RX620 printe o usb/121755 usb [ohci] [patch] Fix panic after ohci/uhub cardbus devic o usb/121734 usb [ugen] ugen HP1022 printer device not working since up o usb/121708 usb [keyboard] nforce 650i mobo w/ usb keyboard infinite k o usb/121474 usb [cam] [patch] QUIRK: SAMSUNG HM250JI in LaCie usb hard o usb/121426 usb [patch] [uscanner] add HP ScanJet 3570C o usb/121275 usb [boot] FreeBSD fails to boot with usb legacy support e o usb/121232 usb USB CardBus card removal causes reboot sometimes o usb/121184 usb [uipaq] [patch] add ids from linux ipaq driver (plus a o usb/121169 usb [umass] Issues with usb mp3 player o usb/121045 usb [uftdi] [patch] Add support for PC-OP-RS1 and KURO-RS o usb/120786 usb Kernel panic when forced umount of a dettached USB Har o usb/120729 usb [panic] fault while in kernel mode with connecting USB o usb/120572 usb [umass] [patch] quirk to support ASUS P535 as umass (a o usb/120321 usb [hang] System hangs when transferring data to WD MyBoo o usb/120283 usb [panic] Automation reboot with wireless keyboard & mou o usb/120034 usb [hang] 6.2 & 6.3 hangs on boot at usb0: OHCI with 1.5 o usb/120017 usb [ehci] [patch] CS5536 (AMD Geode) USB 2.0 quirk o usb/119981 usb [axe] [patch] add support for LOGITEC LAN-GTJ/U2 gigab o usb/119977 usb [ums] Mouse does not work in a Cherry-USB keyboard/mou o usb/119653 usb [cam] [patch] iriver s7 player sync cache error patch o usb/119633 usb [umass] umass0: BBB reset failed, IOERROR [regression] o usb/119513 usb [irq] inserting dlink dwl-g630 wireless card results i o usb/119509 usb USB flaky on Dell Optiplex 755 o usb/119481 usb [hang] FreeBSD not responding after connecting USB-Mas o usb/119389 usb [umass] Sony DSC-W1 CBI reset failed, STALLED [regress o usb/119227 usb [ubsa] [patch] ubsa buffer is too small; should be tun o usb/119201 usb [cam] [patch] Quirks for Olympus FE-210 camera, LG and o usb/119150 usb [usbdevs] [patch] new usbdevs for CDMA 1xEVDO devices o usb/118686 usb [usbdevs] [patch] teach usbdevs / ubsa(4) about Huawei o usb/118485 usb [usbdevs] [patch] Logitech Headset Workaround o usb/118480 usb [umass] Timeout in USB mass storage freezes vfs layer o usb/118353 usb [panic] [ppp] repeatable kernel panic during ppp(4) se o usb/118141 usb [ucom] usb serial and nokia phones ucomreadcb ucomread o usb/118140 usb [ucom] [patch] quick hack for ucom to get it behave wi o usb/118098 usb [umass] 6th gen iPod causes problems when disconnectin o usb/117955 usb [umass] [panic] inserting minolta dimage a2 crashes OS o usb/117946 usb [panic] D-Link DUB-E100 rev. B1 crashes FreeBSD 7.0-BE o usb/117938 usb [ums] [patch] Adding support for MS WL Natural and MS o usb/117911 usb [ums] [request] Mouse Gembird MUSWC not work o usb/117893 usb [umass] Lacie USB DVD writing failing o usb/117613 usb [uhci] [irq] uhci interrupt storm & USB leaked memory o usb/117598 usb [uaudio] [patch] Not possible to record with Plantroni o usb/117546 usb [uftdi] [patch] Add MaxStream ZigBee product ID to uft o usb/117313 usb [umass] [panic] panic on usb camera insertion o usb/117205 usb [uscanner] [patch] uscanner support for HP ScanJet 447 o usb/117200 usb [ugen] ugen0 prints strange string on attach if detach o usb/117185 usb [umodem] [patch] Add support for UNION interface descr o usb/117183 usb [panic] USB/fusefs -- panic while transferring large a o usb/117075 usb [scsi_da] [patch] quirk: USB Samsung YP-U3 MP3 o usb/116947 usb [ukbd] [patch] [regression] enable boot protocol on th o usb/116699 usb [usbhid] USB HID devices do not initialize at system b o usb/116561 usb [umodem] [panic] RELENG_6 umodem panic "trying to slee o usb/116282 usb [ulpt] Cannot print on USB HP LJ1018 or LJ1300 o usb/115935 usb [usbdevs] [patch] kernel counterproductively attaches o usb/115933 usb [uftdi] [patch] RATOC REX-USB60F (usb serial converter o usb/115400 usb [ehci] Problem with EHCI on ASUS M2N4-SLI o usb/115298 usb [ulpt] [panic] Turning off USB printer panics kernel o usb/114916 usb [umass] [patch] USB Maxtor drive (L300RO) requires qui o kern/114780 usb [uplcom] [panic] Panics while stress testing the uplco o usb/114682 usb [umass] generic USB media-card reader unusable o usb/114310 usb [libusb] [patch] [panic] USB hub attachment panics ker o usb/114068 usb [umass] [patch] Problems with connection of the umass o conf/114013 usb [patch] WITHOUT_USB allow to compil a lot of USB stuff s usb/113977 usb [request] Need a way to set mode of USB disk's write c o usb/113672 usb [ehci] [panic] Kernel panic with AEWIN CB6971 s usb/113629 usb [ukbd] Dropped USB keyboard events on Dell Latitude D6 o usb/113432 usb [ucom] WARNING: attempt to net_add_domain(netgraph) af o usb/113060 usb [usbdevs] [patch] Samsung printer not working in bidir o usb/112944 usb [ulpt] [patch] Bi-directional access to HP LaserJet 10 o usb/112640 usb [usb] [hang] Kernel freezes when writing a file to an o usb/112631 usb [panic] Problem with SONY DSC-S80 camera on umount s usb/112568 usb [umass] [request] USB mode may wrong when mounting Pla o usb/112463 usb [umass] problem with Samsung USB DVD writer, libscg an o usb/112461 usb [ehci] [request] ehci USB 2.0 doesn't work on nforce4 o usb/111753 usb [uhid] [panic] Replicable system panic involving UHID s usb/110991 usb [usbdevs] [patch] QUIRK: Super Top IDE DEVICE (depends o usb/110988 usb [umass] [patch] Handling of quirk IGNORE_RESIDUE is um o usb/110856 usb [ugen] [patch] interrupt in msgs are truncated when bu o usb/110197 usb [umass] Sony PSP umass device does not detach from EHC o usb/109397 usb [panic] on boot from USB flash o usb/109274 usb [usb] MCP55 USB Controller fails to attach in AMD64 Cu o usb/108513 usb [umass] Creative MuVo TX FM fails in 6.2-RELEASE [regr s usb/108344 usb [panic] kernel with atausb panics when unplugging USB o usb/108056 usb [ohci] Mouse gets powered off during device probe when o usb/107935 usb [uplcom] [panic] panic while accessing /dev/cuaU0 o usb/107924 usb [patch] usbd(8) does not call detach o usb/107848 usb [umass] [request] cannot access Samsung flash disk o usb/107827 usb [ohci] [panic] ohci_add_done addr not found o usb/107496 usb [uhub] USB device problem on RELENG_6_2 (SHORT_XFER) [ o usb/107446 usb [umass] umass problems (usb and fw disks) o usb/107388 usb [patch] [request] new driver: add utoppy device from N o usb/107248 usb [umass] [patch] scsi_da.c quirk for Cowon iAUDIO X5 MP o usb/107243 usb [cam] [patch] Apacer USB Flash Drive quirk o usb/106861 usb [usbdevs] [patch]: usbdevs update: Add product ACER Ze s usb/106832 usb USB HP printer is not detected by kernel when ACPI ena o usb/106648 usb [umass] [hang] USB Floppy on D1950 10 min Hang on Inse o usb/106621 usb [axe] [patch] DLINK DUB-E100 support broken o usb/106615 usb [uftdi] uftdi module does not automatically load with o usb/106041 usb [usb] [request] FreeBSD does not recognise Mustek Bear o usb/105361 usb [panic] Kernel panic during unmounting mass storage (C o usb/105186 usb [ehci] [panic] USB 2.0/ehci on FreeBSD 6.2-PRE/AMD64 c o usb/105065 usb [ata] SATA - USB Bridge o usb/104830 usb [umass] system crashes when copying data to umass devi o usb/104645 usb [umass] [request] Rave C-201 MP3 player does not commu o usb/104352 usb [ural] [patch] ural driver doesnt work o usb/104292 usb [umass] [hang] system lockup on forced umount of usb-s o usb/104290 usb [umass] [patch] quirk: TOSHIBA DVD-RAM drive (libretto o usb/103917 usb [uhub] USB driver reports "Addr 0 should never happen" o usb/103418 usb usbhidctl(1): [patch] [request] usbhidctl: add ability o usb/103289 usb [request] USB 2.0 problems on AMD LX-800 CPU and CS-55 o usb/103046 usb [ulpt] [patch] ulpt event driven I/O with select(2) an o usb/103025 usb [uhub] [panic] wrong detection of USB device for FreeB o usb/102976 usb [panic] Casio Exilim Digital Camera causes panic on in o usb/102678 usb [keyboard] Dell PowerEdge DRAC5 USB Keyboard does not f usb/102096 usb [patch] usbd(8) does not handle multiple devices in on o usb/102066 usb [ukbd] usb keyboard and multimedia keys don't work o usb/101775 usb [libusbhid] [patch] possible error in report descripto o usb/101761 usb [usb] [patch] [request] usb.h: increase maximal size o o usb/101752 usb [umass] [panic] 6.1-RELEASE kernel panic on usb device o usb/101448 usb [ohci] FBSD 6.1-STABLE/AMD64 crashes under heavy USB/O o usb/101096 usb [ural] [panic] USB WLAN occasionally causes kernel-pan o usb/100746 usb [keyboard] system does not boot due to USB keyboard pr o usb/99538 usb [keyboard] while using USB keyboard default params of o usb/99431 usb [keyboard] FreeBSD on MSI 6566E (Intel 845E motherboar o usb/98343 usb [boot] BBB reset failed errors with Creative Muvo MP3 o usb/97472 usb [cam] [patch] add support for Olympus C150,D390 s usb/97286 usb [mouse] [request] MS Wireless Intellimouse Explorer 2. o usb/97175 usb [umass] [hang] USB cardreader hangs system o usb/96457 usb [umass] [panic] fatback on umass = reboot o usb/96381 usb [cam] [patch] add a quirk table entry for a flash ram o usb/96224 usb [usb] [msdosfs] mount_msdosfs cause page fault in sync s usb/96120 usb [ums] [request] USB mouse not always detected s usb/95636 usb [umass] [boot] 5 minute delay at boot when using VT620 o usb/95562 usb [umass] Write Stress in USB Mass drive causes "vinvalb s usb/95348 usb [keyboard] USB keyboard unplug causes noise on screen o usb/95037 usb [umass] USB disk not recognized on hot-plug. o usb/94897 usb [panic] Kernel Panic when cleanly unmounting USB disk o usb/94717 usb [ulpt] Reading from /dev/ulpt can break work of a UHCI o usb/94384 usb [panic] kernel panic with usb2 hardware o usb/93872 usb [cam] [patch] SCSI quirk required for ELTA 8061 OL USB o usb/93828 usb [ohci] [panic] ohci causes panic on boot (HP Pavillion o usb/93408 usb [mouse] hw.acpi.cpu.cx_lowest=C3 on AMD Turion causes o usb/93389 usb [umass] [patch] Digital Camera Pentax S60 don't work o usb/93155 usb [ulpt] /dev/ulpt0: device busy, USB printer does not w o usb/92852 usb [ums] [patch] Vertical scroll not working properly on o usb/92171 usb [panic] panic unplugging Vodafone Mobile Connect (UMTS o usb/92142 usb [uhub] SET_ADDR_FAILED and SHORT_XFER errors from usb o usb/92083 usb [ural] [panic] panic using WPA on ural NIC in 6.0-RELE o usb/92052 usb [ulpt] usbd causes defunct process with busy file-hand o usb/91906 usb [ehci] [hang] FreeBSD hangs while booting with USB leg o usb/91896 usb camcontrol(8): Serial Number of USB Memory Sticks is n o usb/91811 usb [umass] Compact Flash in HP Photosmart 2610 return " o usb/91629 usb usbd_abort_pipe() may result in infinite loop o usb/91546 usb [umodem] [patch] Nokia 6630 mobile phone does not work o usb/91538 usb [ulpt] [patch] Unable to print to EPSON CX3500 o usb/91283 usb [boot] [regression] booting very slow with usb devices o usb/91238 usb [umass] USB tape unit fails to write a second tape fil o usb/90700 usb [umass] [panic] Kernel panic on connect/mount/use umas o usb/89954 usb [umass] [panic] USB Disk driver race condition? s usb/89003 usb [request] LaCie Firewire drive not properly supported o usb/88743 usb [hang] [regression] USB makes kernel hang at boot (reg o usb/88408 usb [axe] axe0 read PHY failed o usb/87648 usb [mouse] Logitech USB-optical mouse problem. o usb/87224 usb Cannot mount USB Zip750 o usb/86767 usb [umass] [patch] bogus "slice starts beyond end of the o usb/86298 usb [mouse] Known good USB mouse won't work with correct s s usb/85067 usb [uscanner] Cannot attach ScanJet 4300C to usb device f usb/84750 usb [hang] 6-BETA2 reboot/shutdown with root_fs on externa s usb/84336 usb [usb] [reboot] instant system reboot when unmounting a o usb/84326 usb [umass] Panic trying to connect SCSI tape drive via US o usb/83977 usb [ucom] [panic] ucom1: open bulk out error (addr 2): IN o usb/83863 usb [ugen] Communication problem between opensc/openct via o usb/83756 usb [ums] [patch] Microsoft Intellimouse Explorer 4.0A doe f usb/83677 usb [usb] [request] usb controller often not detected (Sun o usb/83563 usb [umass] [panic] Page Fault while detaching Mpman Usb d o usb/83504 usb [kernel] [patch] SpeedTouch USB stop working on recent o usb/82660 usb [ehci] [panic] EHCI: I/O stuck in state 'physrd'/panic s usb/82569 usb [umass] [panic] USB mass storage plug/unplug causes sy o usb/82520 usb [udbp] [reboot] Reboot when USL101 connected o usb/82350 usb [ucom] [panic] null pointer dereference in USB stack o usb/81621 usb [ehci] [hang] external hd hangs under load on ehci o usb/80935 usb [uvisor] [patch] uvisor.c is not work with CLIE TH55. o usb/80862 usb [patch] USB locking issues: missing some Giant calls o usb/80854 usb [patch] [request] suggestion for new iface-no-probe me o usb/80829 usb [modules] [panic] possible panic when loading USB-modu s usb/80777 usb [request] usb_rem_task() should wait for callback to c s usb/80776 usb [udav] [request] UDAV device driver shouldn't use usb_ o usb/80774 usb [patch] have "usbd_find_desc" in line with the other " o usb/80361 usb [umass] [patch] mounting of Dell usb-stick fails o usb/80040 usb [hang] Use of sound mixer causes system freeze with ua o usb/79723 usb [usb] [request] prepare for high speed isochronous tra o usb/79722 usb [ehci] wrong alignments in ehci.h a usb/79656 usb [ehci] RHSC interrupts lost o usb/79524 usb [ulpt] printing to Minolta PagePro 1[23]xxW via USB fa o usb/79287 usb [uhci] [hang] UHCI hang after interrupt transfer o usb/79269 usb [ohci] USB ohci da0 plug/unplug causes crashes and loc o usb/78984 usb [umass] [patch] Creative MUVO umass failure o usb/77294 usb [ucom] [panic] ucom + ulpcom panic o usb/77184 usb [umass] [panic] kernel panic on USB device disconnect, o usb/76732 usb Mouse problems with USB KVM Switch o usb/76653 usb [umass] [patch] Problem with Asahi Optical usb device o usb/76461 usb [umass] disklabel of umass(4)-CAM(4)-da(4) not used by o usb/76395 usb [uhci] USB printer does not work, usbdevs says "addr 0 s usb/75928 usb [umass] [request] Cytronix SmartMedia card (SMC) reade o usb/75800 usb [ucom] ucom1: init failed STALLED error in time of syn o usb/75797 usb [sound] 5.3-STABLE(2005 1/4) detect USB headset, But c o usb/75764 usb [umass] [patch] "umass0: Phase Error" - no device for o usb/75705 usb [umass] [panic] da0 attach / Optio S4 (with backtrace) o usb/74771 usb [umass] [hang] mounting write-protected umass device a a usb/74453 usb [umass] [patch] Q-lity CD-RW USB ECW-043 (ScanLogic SL o usb/74211 usb [umass] USB flash drive causes CAM status 0x4 on 4.10R o usb/73307 usb [panic] Kernel panics on USB disconnect s usb/72733 usb [ucom] [request] Kyocera 7135 Palm OS connection probl o usb/71455 usb [umass] Slow USB umass performance of 5.3 o usb/71417 usb [ugen] Cryptoflex e-gate USB token (ugen0) communicati o usb/71416 usb [ugen] Cryptoflex e-gate USB token (ugen0) detach is n o usb/71280 usb [aue] aue0 device (linksys usb100tx) doesn't work in 1 o usb/71155 usb [ulpt] misbehaving usb-printer hangs processes, causes o usb/70523 usb [umct] [patch] umct sending/receiving wrong characters o usb/69006 usb [usbdevs] [patch] Apple Cinema Display hangs USB ports o usb/68232 usb [ugen] [patch] ugen(4) isochronous handling correction o usb/67301 usb [uftdi] [panic] RTS and system panic o usb/66547 usb [ucom] Palm Tungsten T USB does not initialize correct o usb/63621 usb [umass] [panic] USB MemoryStick Reader stalls/crashes s usb/62257 usb [umass] [request] card reader UCR-61S2B is only half-s o usb/59698 usb [keyboard] [patch] Rework of ukbd HID to AT code trans o bin/57255 usb usbd(8) and multi-function devices s usb/52026 usb [usb] [request] umass driver support for InSystem ISD2 s usb/51958 usb [urio] [patch] update for urio driver o i386/46371 usb USB controller cannot be initialized on IBM Netfinity o usb/40948 usb [umass] [request] USB HP CDW8200 does not work o conf/30929 usb [usb] [patch] use usbd to initialize USB ADSL modem 281 problems total. From linimon at FreeBSD.org Tue Oct 7 12:24:54 2008 From: linimon at FreeBSD.org (linimon@FreeBSD.org) Date: Tue Oct 7 12:25:06 2008 Subject: usb/127913: [panic] kernel panic when removing usb device Message-ID: <200810071224.m97COrtg096193@freefall.freebsd.org> Old Synopsis: kernel panic New Synopsis: [panic] kernel panic when removing usb device State-Changed-From-To: open->closed State-Changed-By: linimon State-Changed-When: Tue Oct 7 12:23:10 UTC 2008 State-Changed-Why: Please see http://people.freebsd.org/~linimon/studies/prs/well_known_prs.html#Ejecting_mounted_device_causes_panic . Responsible-Changed-From-To: freebsd-bugs->freebsd-usb Responsible-Changed-By: linimon Responsible-Changed-When: Tue Oct 7 12:23:10 UTC 2008 Responsible-Changed-Why: http://www.freebsd.org/cgi/query-pr.cgi?pr=127913 From kris at pcbsd.com Tue Oct 7 15:50:02 2008 From: kris at pcbsd.com (Kris Moore) Date: Tue Oct 7 15:50:08 2008 Subject: usb/127926: USB Timeout during bootup Message-ID: <200810071547.m97FliiA008398@www.freebsd.org> >Number: 127926 >Category: usb >Synopsis: USB Timeout during bootup >Confidential: no >Severity: critical >Priority: high >Responsible: freebsd-usb >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Oct 07 15:50:01 UTC 2008 >Closed-Date: >Last-Modified: >Originator: Kris Moore >Release: 7-Stable (7.1 Prerelease) >Organization: PC-BSD Software >Environment: FreeBSD pcbsd 7.1-PRERELEASE FreeBSD 7.1-PRERELEASE #42: Thu Sep 11 09:07:25 EDT 2008 root@pcbsd:/usr/obj/usr/src/sys/PCBSD i386 >Description: On this motherboard, whenever we bootup and have any device plugged into a USB port, the usb driver hangs, and eventually ends up disabling the entire USB port. The curious thing is that if we unplug all the devices, bootup, and then plug them in, they work just fine. I've tried it with USB mice, printers and memory sticks, in all the various USB ports, the result is always the same. This error ends up being thrown: uhub3: device problem (TIMEOUT), disabling port 1 I'm attaching the dmesg from this system, let me know if more info is needed. >How-To-Repeat: Simply plug-in any USB device, and bootup. The usb driver will eventually timeout during the kernel load, and disable the entire USB port. >Fix: If you unplug all USB devices, bootup and then plug them in after the system is loaded, they work just fine. However, this is a total pain on a desktop with a USB printer / USB mouse :) Patch attached with submission follows: Copyright (c) 1992-2008 The FreeBSD Project. Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994 The Regents of the University of California. All rights reserved. FreeBSD is a registered trademark of The FreeBSD Foundation. FreeBSD 7.1-PRERELEASE #1: Tue Oct 7 09:17:14 EDT 2008 root@pcbsdx32-7:/usr/obj/pcbsd-build/cvs/7.0.1-src/sys/PCBSD Timecounter "i8254" frequency 1193182 Hz quality 0 CPU: AMD Athlon(tm) 64 X2 Dual Core Processor 5000+ (2611.91-MHz 686-class CPU) Origin = "AuthenticAMD" Id = 0x60fb2 Stepping = 2 Features=0x178bfbff Features2=0x2001 AMD Features=0xea500800 AMD Features2=0x11f Cores per package: 2 real memory = 2146304000 (2046 MB) avail memory = 2090643456 (1993 MB) ACPI APIC Table: FreeBSD/SMP: Multiprocessor System Detected: 2 CPUs cpu0 (BSP): APIC ID: 0 cpu1 (AP): APIC ID: 1 ioapic0: Changing APIC ID to 2 ioapic0 irqs 0-23 on motherboard kbd1 at kbdmux0 ath_hal: 0.10.5.6 (AR5210, AR5211, AR5212, AR5416, RF5111, RF5112, RF2413, RF5413, RF2133, RF2425, RF2417) acpi0: on motherboard acpi0: [ITHREAD] acpi0: Power Button (fixed) acpi0: reservation of 0, a0000 (3) failed acpi0: reservation of 100000, 7fde0000 (3) failed Timecounter "ACPI-fast" frequency 3579545 Hz quality 1000 acpi_timer0: <32-bit timer at 3.579545MHz> port 0x4008-0x400b on acpi0 acpi_hpet0: iomem 0xfed00000-0xfed003ff on acpi0 Timecounter "HPET" frequency 14318180 Hz quality 900 acpi_button0: on acpi0 pcib0: port 0xcf8-0xcff on acpi0 pci0: on pcib0 pcib1: at device 2.0 on pci0 pci1: on pcib1 vgapci0: port 0xdf00-0xdf7f mem 0xfa000000-0xfaffffff,0xd0000000-0xdfffffff,0xf8000000-0xf9ffffff irq 18 at device 0.0 on pci1 pcib2: at device 10.0 on pci0 pci2: on pcib2 re0: port 0xee00-0xeeff mem 0xfdfff000-0xfdffffff irq 18 at device 0.0 on pci2 re0: turning off MSI enable bit. re0: Chip rev. 0x38000000 re0: MAC rev. 0x00000000 miibus0: on re0 rgephy0: PHY 1 on miibus0 rgephy0: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, 1000baseT, 1000baseT-FDX, auto re0: Ethernet address: 00:1f:d0:32:3d:f0 re0: [FILTER] atapci0: port 0xff00-0xff07,0xfe00-0xfe03,0xfd00-0xfd07,0xfc00-0xfc03,0xfb00-0xfb0f mem 0xfe02f000-0xfe02f3ff irq 22 at device 18.0 on pci0 atapci0: [ITHREAD] atapci0: AHCI Version 01.10 controller with 4 ports detected ata2: on atapci0 ata2: [ITHREAD] ata3: on atapci0 ata3: [ITHREAD] ata4: on atapci0 ata4: [ITHREAD] ata5: on atapci0 ata5: [ITHREAD] ohci0: mem 0xfe02e000-0xfe02efff irq 16 at device 19.0 on pci0 ohci0: [GIANT-LOCKED] ohci0: [ITHREAD] usb0: OHCI version 1.0, legacy support usb0: SMM does not respond, resetting usb0: on ohci0 usb0: USB revision 1.0 uhub0: on usb0 uhub0: 2 ports with 2 removable, self powered ohci1: mem 0xfe02d000-0xfe02dfff irq 17 at device 19.1 on pci0 ohci1: [GIANT-LOCKED] ohci1: [ITHREAD] usb1: OHCI version 1.0, legacy support usb1: SMM does not respond, resetting usb1: on ohci1 usb1: USB revision 1.0 uhub1: on usb1 uhub1: 2 ports with 2 removable, self powered ohci2: mem 0xfe02c000-0xfe02cfff irq 18 at device 19.2 on pci0 ohci2: [GIANT-LOCKED] ohci2: [ITHREAD] usb2: OHCI version 1.0, legacy support usb2: SMM does not respond, resetting usb2: on ohci2 usb2: USB revision 1.0 uhub2: on usb2 uhub2: 2 ports with 2 removable, self powered ohci3: mem 0xfe02b000-0xfe02bfff irq 17 at device 19.3 on pci0 ohci3: [GIANT-LOCKED] ohci3: [ITHREAD] usb3: OHCI version 1.0, legacy support usb3: SMM does not respond, resetting usb3: on ohci3 usb3: USB revision 1.0 uhub3: on usb3 uhub3: 2 ports with 2 removable, self powered ohci4: mem 0xfe02a000-0xfe02afff irq 18 at device 19.4 on pci0 ohci4: [GIANT-LOCKED] ohci4: [ITHREAD] usb4: OHCI version 1.0, legacy support usb4: SMM does not respond, resetting usb4: on ohci4 usb4: USB revision 1.0 uhub4: on usb4 uhub4: 2 ports with 2 removable, self powered ehci0: mem 0xfe029000-0xfe0290ff irq 19 at device 19.5 on pci0 ehci0: [GIANT-LOCKED] ehci0: [ITHREAD] usb5: EHCI version 1.0 usb5: companion controllers, 2 ports each: usb0 usb1 usb2 usb3 usb4 usb5: on ehci0 usb5: USB revision 2.0 uhub5: on usb5 uhub5: 10 ports with 10 removable, self powered pci0: at device 20.0 (no driver attached) atapci1: port 0x1f0-0x1f7,0x3f6,0x170-0x177,0x376,0xf900-0xf90f at device 20.1 on pci0 ata0: on atapci1 ata0: [ITHREAD] pci0: at device 20.2 (no driver attached) isab0: at device 20.3 on pci0 isa0: on isab0 pcib3: at device 20.4 on pci0 pci3: on pcib3 fwohci0: mem 0xfddff000-0xfddff7ff,0xfddf8000-0xfddfbfff irq 22 at device 14.0 on pci3 fwohci0: [FILTER] fwohci0: OHCI version 1.10 (ROM=0) fwohci0: No. of Isochronous channels is 4. fwohci0: EUI64 00:63:e6:93:00:00:1d:7d fwohci0: Phy 1394a available S400, 3 ports. fwohci0: Link S400, max_rec 2048 bytes. firewire0: on fwohci0 fwe0: on firewire0 if_fwe0: Fake Ethernet address: 02:63:e6:00:1d:7d fwe0: Ethernet address: 02:63:e6:00:1d:7d fwip0: on firewire0 fwip0: Firewire address: 00:63:e6:93:00:00:1d:7d @ 0xfffe00000000, S400, maxrec 2048 sbp0: on firewire0 dcons_crom0: on firewire0 dcons_crom0: bus_addr 0x7d8f8000 fwohci0: Initiate bus reset fwohci0: BUS reset fwohci0: node_id=0xc800ffc0, gen=1, CYCLEMASTER mode atkbdc0: port 0x60,0x64 irq 1 on acpi0 atkbd0: irq 1 on atkbdc0 kbd0 at atkbd0 atkbd0: [GIANT-LOCKED] atkbd0: [ITHREAD] psm0: flags 0x1000 irq 12 on atkbdc0 psm0: [GIANT-LOCKED] psm0: [ITHREAD] psm0: model IntelliMouse Explorer, device ID 4 cpu0: on acpi0 powernow0: on cpu0 cpu1: on acpi0 powernow1: on cpu1 pmtimer0 on isa0 ppc0: parallel port not found. sc0: at flags 0x100 on isa0 sc0: VGA <16 virtual consoles, flags=0x300> sio0: configured irq 4 not in bitmap of probed irqs 0 sio0: port may not be enabled sio0: configured irq 4 not in bitmap of probed irqs 0 sio0: port may not be enabled sio0 at port 0x3f8-0x3ff irq 4 flags 0x10 on isa0 sio0: type 8250 or not responding sio0: [FILTER] sio1: configured irq 3 not in bitmap of probed irqs 0 sio1: port may not be enabled vga0: at port 0x3c0-0x3df iomem 0xa0000-0xbffff on isa0 uhub3: device problem (TIMEOUT), disabling port 1 Timecounters tick every 1.000 msec ipfw2 (+ipv6) initialized, divert enabled, nat loadable, rule-based forwarding firewire0: 1 nodes, maxhop <= 0, cable IRM = 0 (me) firewire0: bus manager 0 (me) disabled, default to accept, logging disabled ad0: 238474MB at ata2-master SATA300 acd0: DVDR at ata4-master SATA150 acd0: FAILURE - INQUIRY ILLEGAL REQUEST asc=0x24 ascq=0x00 acd0: FAILURE - INQUIRY ILLEGAL REQUEST asc=0x24 ascq=0x00 SMP: AP CPU #1 Launched! cd0 at ata3 bus 0 target 0 lun 0 cd0: Removable CD-ROM SCSI-0 device cd0: 3.300MB/s transfers cd0: Attempt to query device size failed: NOT READY, Medium not present - tray closed Trying to mount root from ufs:/dev/ad0s2a re0: link state changed to UP re0: link state changed to DOWN pcm0: mem 0xfe024000-0xfe027fff irq 16 at device 20.2 on pci0 pcm0: [ITHREAD] pcm0: pcm0: re0: link state changed to UP >Release-Note: >Audit-Trail: >Unformatted: From r00audio at bigpond.net.au Wed Oct 8 01:55:33 2008 From: r00audio at bigpond.net.au (roo audio) Date: Wed Oct 8 03:54:22 2008 Subject: samsung hm250ji usb Message-ID: <000001c928df$f390a210$54c6d279@ru> Hi ..i bought a Samsung drive in china while there in august 2008..has had problems from day one(using xp)..i have looked for help and you are the first hit ..i'm sorry to disturb you..is there a problem with this usb drive that a slightly above average computer user could fix or do I just toss it away(it wasn't expensive)..i saw a posting on your site with this similar question about this drive Anyway thanks for your time.. paul From uspoerlein at gmail.com Thu Oct 9 18:00:07 2008 From: uspoerlein at gmail.com (Ulrich Spörlein) Date: Thu Oct 9 18:00:13 2008 Subject: usb/127980: [QUIRK] Fix Samsung YP U2 MP3 player on 7.x and 8.x Message-ID: <200810091756.m99HuJO7001887@roadrunner.spoerlein.net> >Number: 127980 >Category: usb >Synopsis: [QUIRK] Fix Samsung YP U2 MP3 player on 7.x and 8.x >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-usb >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Thu Oct 09 18:00:06 UTC 2008 >Closed-Date: >Last-Modified: >Originator: Ulrich Spörlein >Release: FreeBSD 7.1-PRERELEASE i386 >Organization: >Environment: >Description: In the early days of RELENG_7 the quirk below was required to avoid timeouts with this MP3 player. But something changed in the USB code in the last few weeks, so that this device no longer attaches. I also tried -CURRENT from early august. It just stalls BBB transfers and I finally rebooted the box after two hours. Unplugging the device *always* leads to a panic, as it is stuck somewhere in CAM land. But I guess no one is interested in *that* backtrace ... >How-To-Repeat: >Fix: The fix is rather trivial: Remove the quirk and the device attaches successfully. (at least, if it is the only device on the bus) cf usb/114154 (which should be closed, btw) --- umass.diff begins here --- Index: sys/dev/usb/umass.c =================================================================== RCS file: /home/ncvs/src/sys/dev/usb/umass.c,v retrieving revision 1.160.2.4 diff -u -p -r1.160.2.4 umass.c --- sys/dev/usb/umass.c 28 Aug 2008 14:20:58 -0000 1.160.2.4 +++ sys/dev/usb/umass.c 8 Oct 2008 17:49:38 -0000 @@ -650,10 +650,6 @@ static struct umass_devdescr_t umass_dev UMASS_PROTO_SCSI | UMASS_PROTO_BBB, IGNORE_RESIDUE | NO_START_STOP }, - { USB_VENDOR_SAMSUNG, USB_PRODUCT_SAMSUNG_YP_U2, RID_WILDCARD, - UMASS_PROTO_SCSI | UMASS_PROTO_BBB, - SHUTTLE_INIT | NO_GETMAXLUN - }, { USB_VENDOR_SAMSUNG_TECHWIN, USB_PRODUCT_SAMSUNG_TECHWIN_DIGIMAX_410, RID_WILDCARD, UMASS_PROTO_SCSI | UMASS_PROTO_BBB, NO_INQUIRY Index: sys/dev/usb/usbdevs =================================================================== RCS file: /home/ncvs/src/sys/dev/usb/usbdevs,v retrieving revision 1.328.2.18 diff -u -p -r1.328.2.18 usbdevs --- sys/dev/usb/usbdevs 28 Aug 2008 14:20:58 -0000 1.328.2.18 +++ sys/dev/usb/usbdevs 9 Oct 2008 17:55:09 -0000 @@ -1989,7 +1989,6 @@ product SAGEM XG76NA 0x0062 XG-76NA /* Samsung products */ product SAMSUNG ML6060 0x3008 ML-6060 laser printer -product SAMSUNG YP_U2 0x5050 YP-U2 MP3 Player product SAMSUNG I500 0x6601 I500 Palm USB Phone /* Samsung Techwin products */ --- umass.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From caseyclaydon at fastmail.com.au Fri Oct 10 22:30:06 2008 From: caseyclaydon at fastmail.com.au (Casey) Date: Fri Oct 10 22:30:12 2008 Subject: usb/127926: USB Timeout during bootup Message-ID: <200810102230.m9AMU5ZX007494@freefall.freebsd.org> The following reply was made to PR usb/127926; it has been noted by GNATS. From: Casey To: bug-followup@FreeBSD.org, kris@pcbsd.com Cc: Subject: Re: usb/127926: USB Timeout during bootup Date: Sat, 11 Oct 2008 08:06:06 +1000 Mine is the same problem as Kris with PC-BSD, which it does not detect the USB Mouse. When installing PC-BSD, the USB Mouse does not get detected and you have to change it to another port for it to work to move around the install with the mouse. And when booting into PC-BSD, the same thing happens again that you have to change it to another port for it to work again. The Motherboard is a Gigabyte AM2 GA-MA69GM-S2H with a Logitech MX 510 USB Mouse. - Casey From bugmaster at FreeBSD.org Mon Oct 13 11:06:58 2008 From: bugmaster at FreeBSD.org (FreeBSD bugmaster) Date: Mon Oct 13 11:09:15 2008 Subject: Current problem reports assigned to freebsd-usb@FreeBSD.org Message-ID: <200810131106.m9DB6wdA029601@freefall.freebsd.org> Note: to view an individual PR, use: http://www.freebsd.org/cgi/query-pr.cgi?pr=(number). The following is a listing of current problems submitted by FreeBSD users. These represent problem reports covering all versions including experimental development code and obsolete releases. S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/127980 usb [QUIRK] Fix Samsung YP U2 MP3 player on 7.x and 8.x o usb/127926 usb [boot] USB Timeout during bootup o usb/127549 usb Meizu MiniPlayer M6 (SL) requires some quirks o usb/127543 usb [patch] [ubsa] Support Option Globetrotter HSDPA modem f usb/127516 usb after csup src-all RELENG_7 s usb/127453 usb [request] ubsa, uark, ubser, uftdi, and friends should o usb/127423 usb [boot] BTX halted on Gigabyte GA-MA69VM-S2 / AMD Sempr o usb/127342 usb [boot] cannot enable usb keyboard and mouse support in o kern/127222 usb [ohci]: Regression in 7.0 usb storage generic driver o usb/126884 usb [patch] Bug in buffer handling in ugen.c f kern/126848 usb [usb]: USB Keyboard hangs during Installation o usb/126740 usb [ulpt] doesn't work on 7.0-RELEASE, 10 second stall be o usb/126519 usb [usb] [panic] panic when plugging in an iphone o kern/126396 usb [panic] kernel panic after unplug USB Bluetooth device o usb/125736 usb [ukbd] [hang] system hangs after AT keyboard detect if o usb/125631 usb [usb][ums] kernel panic during bootup while 'Logitech o usb/125510 usb repeated plug and unplug of USB mass storage devices l o usb/125450 usb [panic] Removing USB flash card while being accessed c o usb/125264 usb [patch] sysctl for set usb mouse rate (very useful for o usb/125238 usb Habu Mouse turns off in X o usb/125088 usb Touchpad not detected on Adesso AKB-430UG USB kbd/pad o usb/125072 usb [uplcom] [patch] add Mobile Action MA-620 Infrared Ada o usb/124980 usb [panic] kernel panic on detaching unmounted umass devi o kern/124777 usb [ucom] USB cua devices don't revert to tty devices whe o usb/124758 usb rum panics SMP kernel o usb/124708 usb [panic] Kernel panic on USB KVM reattach o usb/124604 usb Wireless Mouse doesn't work o usb/123969 usb Supermicro H8SMi-2 usb problem o usb/123714 usb Panic when hald-storage-probe runs with umass device i o usb/123691 usb usbd(8): usbd hangs o usb/123690 usb Panic on USB device insertion when usb loaded as a mod o usb/123611 usb [usb] BBB reset failed, STALLED from Imation/Mitsumi U o usb/123509 usb [umass] continuous reset Samsung SGH-G600 phone o usb/123352 usb Add Option GTMAX3.6/7.2 and Quallcomm MMC module devic o usb/123351 usb Add Reiner SCT cyberJack, Omnikey [26]020, Fujitsu Sie p usb/123211 usb [udav] if_udav driver doesn't support Davicom 9601 USB p usb/123148 usb [uscanner] [patch] Epson DX8400/50 needs uscanner to s o usb/122992 usb MotoROKR Z6 Phone not recognised by umass as USB disk. o usb/122956 usb Support for Novatel Wireless XU870 3G Card o usb/122936 usb [ucom][ubsa] Device does not receive interrupt o usb/122905 usb [ubsa] [patch] add Huawei E220 to ubsa o usb/122819 usb Patch to provide dynamic additions to the usb quirks t o usb/122813 usb [udbp] [request] udbp driver should be removed in favo o usb/122712 usb [usbdevs] [patch] Sony Vaio RF keyboard/mouse receiver o usb/122621 usb [patch] [request] New driver for Sierra Wireless 3G US p usb/122610 usb Add Verizon v740 support to ubsa(4) o usb/122547 usb [ehci] USB Printer not being recognized after reboot o usb/122539 usb [ohci] [panic] AnyDATA ADU-E1000D - kernel panic: ohci o usb/122483 usb [panic] [ulpt] Repeatable panic in 7.0-STABLE o usb/122119 usb [umass] umass device causes creation of daX but not da o usb/122025 usb [patch] uscanner does not attach to Epson RX620 printe o usb/121755 usb [ohci] [patch] Fix panic after ohci/uhub cardbus devic o usb/121734 usb [ugen] ugen HP1022 printer device not working since up o usb/121708 usb [keyboard] nforce 650i mobo w/ usb keyboard infinite k o usb/121474 usb [cam] [patch] QUIRK: SAMSUNG HM250JI in LaCie usb hard o usb/121426 usb [patch] [uscanner] add HP ScanJet 3570C o usb/121275 usb [boot] FreeBSD fails to boot with usb legacy support e o usb/121232 usb USB CardBus card removal causes reboot sometimes o usb/121184 usb [uipaq] [patch] add ids from linux ipaq driver (plus a o usb/121169 usb [umass] Issues with usb mp3 player o usb/121045 usb [uftdi] [patch] Add support for PC-OP-RS1 and KURO-RS o usb/120786 usb Kernel panic when forced umount of a dettached USB Har o usb/120729 usb [panic] fault while in kernel mode with connecting USB o usb/120572 usb [umass] [patch] quirk to support ASUS P535 as umass (a o usb/120321 usb [hang] System hangs when transferring data to WD MyBoo o usb/120283 usb [panic] Automation reboot with wireless keyboard & mou o usb/120034 usb [hang] 6.2 & 6.3 hangs on boot at usb0: OHCI with 1.5 o usb/120017 usb [ehci] [patch] CS5536 (AMD Geode) USB 2.0 quirk o usb/119981 usb [axe] [patch] add support for LOGITEC LAN-GTJ/U2 gigab o usb/119977 usb [ums] Mouse does not work in a Cherry-USB keyboard/mou o usb/119653 usb [cam] [patch] iriver s7 player sync cache error patch o usb/119633 usb [umass] umass0: BBB reset failed, IOERROR [regression] o usb/119513 usb [irq] inserting dlink dwl-g630 wireless card results i o usb/119509 usb USB flaky on Dell Optiplex 755 o usb/119481 usb [hang] FreeBSD not responding after connecting USB-Mas o usb/119389 usb [umass] Sony DSC-W1 CBI reset failed, STALLED [regress o usb/119227 usb [ubsa] [patch] ubsa buffer is too small; should be tun o usb/119201 usb [cam] [patch] Quirks for Olympus FE-210 camera, LG and o usb/119150 usb [usbdevs] [patch] new usbdevs for CDMA 1xEVDO devices o usb/118686 usb [usbdevs] [patch] teach usbdevs / ubsa(4) about Huawei o usb/118485 usb [usbdevs] [patch] Logitech Headset Workaround o usb/118480 usb [umass] Timeout in USB mass storage freezes vfs layer o usb/118353 usb [panic] [ppp] repeatable kernel panic during ppp(4) se o usb/118141 usb [ucom] usb serial and nokia phones ucomreadcb ucomread o usb/118140 usb [ucom] [patch] quick hack for ucom to get it behave wi o usb/118098 usb [umass] 6th gen iPod causes problems when disconnectin o usb/117955 usb [umass] [panic] inserting minolta dimage a2 crashes OS o usb/117946 usb [panic] D-Link DUB-E100 rev. B1 crashes FreeBSD 7.0-BE o usb/117938 usb [ums] [patch] Adding support for MS WL Natural and MS o usb/117911 usb [ums] [request] Mouse Gembird MUSWC not work o usb/117893 usb [umass] Lacie USB DVD writing failing o usb/117613 usb [uhci] [irq] uhci interrupt storm & USB leaked memory o usb/117598 usb [uaudio] [patch] Not possible to record with Plantroni o usb/117546 usb [uftdi] [patch] Add MaxStream ZigBee product ID to uft o usb/117313 usb [umass] [panic] panic on usb camera insertion o usb/117205 usb [uscanner] [patch] uscanner support for HP ScanJet 447 o usb/117200 usb [ugen] ugen0 prints strange string on attach if detach o usb/117185 usb [umodem] [patch] Add support for UNION interface descr o usb/117183 usb [panic] USB/fusefs -- panic while transferring large a o usb/117075 usb [scsi_da] [patch] quirk: USB Samsung YP-U3 MP3 o usb/116947 usb [ukbd] [patch] [regression] enable boot protocol on th o usb/116699 usb [usbhid] USB HID devices do not initialize at system b o usb/116561 usb [umodem] [panic] RELENG_6 umodem panic "trying to slee o usb/116282 usb [ulpt] Cannot print on USB HP LJ1018 or LJ1300 o usb/115935 usb [usbdevs] [patch] kernel counterproductively attaches o usb/115933 usb [uftdi] [patch] RATOC REX-USB60F (usb serial converter o usb/115400 usb [ehci] Problem with EHCI on ASUS M2N4-SLI o usb/115298 usb [ulpt] [panic] Turning off USB printer panics kernel o usb/114916 usb [umass] [patch] USB Maxtor drive (L300RO) requires qui o kern/114780 usb [uplcom] [panic] Panics while stress testing the uplco o usb/114682 usb [umass] generic USB media-card reader unusable o usb/114310 usb [libusb] [patch] [panic] USB hub attachment panics ker o usb/114068 usb [umass] [patch] Problems with connection of the umass o conf/114013 usb [patch] WITHOUT_USB allow to compil a lot of USB stuff s usb/113977 usb [request] Need a way to set mode of USB disk's write c o usb/113672 usb [ehci] [panic] Kernel panic with AEWIN CB6971 s usb/113629 usb [ukbd] Dropped USB keyboard events on Dell Latitude D6 o usb/113432 usb [ucom] WARNING: attempt to net_add_domain(netgraph) af o usb/113060 usb [usbdevs] [patch] Samsung printer not working in bidir o usb/112944 usb [ulpt] [patch] Bi-directional access to HP LaserJet 10 o usb/112640 usb [usb] [hang] Kernel freezes when writing a file to an o usb/112631 usb [panic] Problem with SONY DSC-S80 camera on umount s usb/112568 usb [umass] [request] USB mode may wrong when mounting Pla o usb/112463 usb [umass] problem with Samsung USB DVD writer, libscg an o usb/112461 usb [ehci] [request] ehci USB 2.0 doesn't work on nforce4 o usb/111753 usb [uhid] [panic] Replicable system panic involving UHID s usb/110991 usb [usbdevs] [patch] QUIRK: Super Top IDE DEVICE (depends o usb/110988 usb [umass] [patch] Handling of quirk IGNORE_RESIDUE is um o usb/110856 usb [ugen] [patch] interrupt in msgs are truncated when bu o usb/110197 usb [umass] Sony PSP umass device does not detach from EHC o usb/109397 usb [panic] on boot from USB flash o usb/109274 usb [usb] MCP55 USB Controller fails to attach in AMD64 Cu o usb/108513 usb [umass] Creative MuVo TX FM fails in 6.2-RELEASE [regr s usb/108344 usb [panic] kernel with atausb panics when unplugging USB o usb/108056 usb [ohci] Mouse gets powered off during device probe when o usb/107935 usb [uplcom] [panic] panic while accessing /dev/cuaU0 o usb/107924 usb [patch] usbd(8) does not call detach o usb/107848 usb [umass] [request] cannot access Samsung flash disk o usb/107827 usb [ohci] [panic] ohci_add_done addr not found o usb/107496 usb [uhub] USB device problem on RELENG_6_2 (SHORT_XFER) [ o usb/107446 usb [umass] umass problems (usb and fw disks) o usb/107388 usb [patch] [request] new driver: add utoppy device from N o usb/107248 usb [umass] [patch] scsi_da.c quirk for Cowon iAUDIO X5 MP o usb/107243 usb [cam] [patch] Apacer USB Flash Drive quirk o usb/106861 usb [usbdevs] [patch]: usbdevs update: Add product ACER Ze s usb/106832 usb USB HP printer is not detected by kernel when ACPI ena o usb/106648 usb [umass] [hang] USB Floppy on D1950 10 min Hang on Inse o usb/106621 usb [axe] [patch] DLINK DUB-E100 support broken o usb/106615 usb [uftdi] uftdi module does not automatically load with o usb/106041 usb [usb] [request] FreeBSD does not recognise Mustek Bear o usb/105361 usb [panic] Kernel panic during unmounting mass storage (C o usb/105186 usb [ehci] [panic] USB 2.0/ehci on FreeBSD 6.2-PRE/AMD64 c o usb/105065 usb [ata] SATA - USB Bridge o usb/104830 usb [umass] system crashes when copying data to umass devi o usb/104645 usb [umass] [request] Rave C-201 MP3 player does not commu o usb/104352 usb [ural] [patch] ural driver doesnt work o usb/104292 usb [umass] [hang] system lockup on forced umount of usb-s o usb/104290 usb [umass] [patch] quirk: TOSHIBA DVD-RAM drive (libretto o usb/103917 usb [uhub] USB driver reports "Addr 0 should never happen" o usb/103418 usb usbhidctl(1): [patch] [request] usbhidctl: add ability o usb/103289 usb [request] USB 2.0 problems on AMD LX-800 CPU and CS-55 o usb/103046 usb [ulpt] [patch] ulpt event driven I/O with select(2) an o usb/103025 usb [uhub] [panic] wrong detection of USB device for FreeB o usb/102976 usb [panic] Casio Exilim Digital Camera causes panic on in o usb/102678 usb [keyboard] Dell PowerEdge DRAC5 USB Keyboard does not f usb/102096 usb [patch] usbd(8) does not handle multiple devices in on o usb/102066 usb [ukbd] usb keyboard and multimedia keys don't work o usb/101775 usb [libusbhid] [patch] possible error in report descripto o usb/101761 usb [usb] [patch] [request] usb.h: increase maximal size o o usb/101752 usb [umass] [panic] 6.1-RELEASE kernel panic on usb device o usb/101448 usb [ohci] FBSD 6.1-STABLE/AMD64 crashes under heavy USB/O o usb/101096 usb [ural] [panic] USB WLAN occasionally causes kernel-pan o usb/100746 usb [keyboard] system does not boot due to USB keyboard pr o usb/99538 usb [keyboard] while using USB keyboard default params of o usb/99431 usb [keyboard] FreeBSD on MSI 6566E (Intel 845E motherboar o usb/98343 usb [boot] BBB reset failed errors with Creative Muvo MP3 o usb/97472 usb [cam] [patch] add support for Olympus C150,D390 s usb/97286 usb [mouse] [request] MS Wireless Intellimouse Explorer 2. o usb/97175 usb [umass] [hang] USB cardreader hangs system o usb/96457 usb [umass] [panic] fatback on umass = reboot o usb/96381 usb [cam] [patch] add a quirk table entry for a flash ram o usb/96224 usb [usb] [msdosfs] mount_msdosfs cause page fault in sync s usb/96120 usb [ums] [request] USB mouse not always detected s usb/95636 usb [umass] [boot] 5 minute delay at boot when using VT620 o usb/95562 usb [umass] Write Stress in USB Mass drive causes "vinvalb s usb/95348 usb [keyboard] USB keyboard unplug causes noise on screen o usb/95037 usb [umass] USB disk not recognized on hot-plug. o usb/94897 usb [panic] Kernel Panic when cleanly unmounting USB disk o usb/94717 usb [ulpt] Reading from /dev/ulpt can break work of a UHCI o usb/94384 usb [panic] kernel panic with usb2 hardware o usb/93872 usb [cam] [patch] SCSI quirk required for ELTA 8061 OL USB o usb/93828 usb [ohci] [panic] ohci causes panic on boot (HP Pavillion o usb/93408 usb [mouse] hw.acpi.cpu.cx_lowest=C3 on AMD Turion causes o usb/93389 usb [umass] [patch] Digital Camera Pentax S60 don't work o usb/93155 usb [ulpt] /dev/ulpt0: device busy, USB printer does not w o usb/92852 usb [ums] [patch] Vertical scroll not working properly on o usb/92171 usb [panic] panic unplugging Vodafone Mobile Connect (UMTS o usb/92142 usb [uhub] SET_ADDR_FAILED and SHORT_XFER errors from usb o usb/92083 usb [ural] [panic] panic using WPA on ural NIC in 6.0-RELE o usb/92052 usb [ulpt] usbd causes defunct process with busy file-hand o usb/91906 usb [ehci] [hang] FreeBSD hangs while booting with USB leg o usb/91896 usb camcontrol(8): Serial Number of USB Memory Sticks is n o usb/91811 usb [umass] Compact Flash in HP Photosmart 2610 return " o usb/91629 usb usbd_abort_pipe() may result in infinite loop o usb/91546 usb [umodem] [patch] Nokia 6630 mobile phone does not work o usb/91538 usb [ulpt] [patch] Unable to print to EPSON CX3500 o usb/91283 usb [boot] [regression] booting very slow with usb devices o usb/91238 usb [umass] USB tape unit fails to write a second tape fil o usb/90700 usb [umass] [panic] Kernel panic on connect/mount/use umas o usb/89954 usb [umass] [panic] USB Disk driver race condition? s usb/89003 usb [request] LaCie Firewire drive not properly supported o usb/88743 usb [hang] [regression] USB makes kernel hang at boot (reg o usb/88408 usb [axe] axe0 read PHY failed o usb/87648 usb [mouse] Logitech USB-optical mouse problem. o usb/87224 usb Cannot mount USB Zip750 o usb/86767 usb [umass] [patch] bogus "slice starts beyond end of the o usb/86298 usb [mouse] Known good USB mouse won't work with correct s s usb/85067 usb [uscanner] Cannot attach ScanJet 4300C to usb device f usb/84750 usb [hang] 6-BETA2 reboot/shutdown with root_fs on externa s usb/84336 usb [usb] [reboot] instant system reboot when unmounting a o usb/84326 usb [umass] Panic trying to connect SCSI tape drive via US o usb/83977 usb [ucom] [panic] ucom1: open bulk out error (addr 2): IN o usb/83863 usb [ugen] Communication problem between opensc/openct via o usb/83756 usb [ums] [patch] Microsoft Intellimouse Explorer 4.0A doe f usb/83677 usb [usb] [request] usb controller often not detected (Sun o usb/83563 usb [umass] [panic] Page Fault while detaching Mpman Usb d o usb/83504 usb [kernel] [patch] SpeedTouch USB stop working on recent o usb/82660 usb [ehci] [panic] EHCI: I/O stuck in state 'physrd'/panic s usb/82569 usb [umass] [panic] USB mass storage plug/unplug causes sy o usb/82520 usb [udbp] [reboot] Reboot when USL101 connected o usb/82350 usb [ucom] [panic] null pointer dereference in USB stack o usb/81621 usb [ehci] [hang] external hd hangs under load on ehci o usb/80935 usb [uvisor] [patch] uvisor.c is not work with CLIE TH55. o usb/80862 usb [patch] USB locking issues: missing some Giant calls o usb/80854 usb [patch] [request] suggestion for new iface-no-probe me o usb/80829 usb [modules] [panic] possible panic when loading USB-modu s usb/80777 usb [request] usb_rem_task() should wait for callback to c s usb/80776 usb [udav] [request] UDAV device driver shouldn't use usb_ o usb/80774 usb [patch] have "usbd_find_desc" in line with the other " o usb/80361 usb [umass] [patch] mounting of Dell usb-stick fails o usb/80040 usb [hang] Use of sound mixer causes system freeze with ua o usb/79723 usb [usb] [request] prepare for high speed isochronous tra o usb/79722 usb [ehci] wrong alignments in ehci.h a usb/79656 usb [ehci] RHSC interrupts lost o usb/79524 usb [ulpt] printing to Minolta PagePro 1[23]xxW via USB fa o usb/79287 usb [uhci] [hang] UHCI hang after interrupt transfer o usb/79269 usb [ohci] USB ohci da0 plug/unplug causes crashes and loc o usb/78984 usb [umass] [patch] Creative MUVO umass failure o usb/77294 usb [ucom] [panic] ucom + ulpcom panic o usb/77184 usb [umass] [panic] kernel panic on USB device disconnect, o usb/76732 usb Mouse problems with USB KVM Switch o usb/76653 usb [umass] [patch] Problem with Asahi Optical usb device o usb/76461 usb [umass] disklabel of umass(4)-CAM(4)-da(4) not used by o usb/76395 usb [uhci] USB printer does not work, usbdevs says "addr 0 s usb/75928 usb [umass] [request] Cytronix SmartMedia card (SMC) reade o usb/75800 usb [ucom] ucom1: init failed STALLED error in time of syn o usb/75797 usb [sound] 5.3-STABLE(2005 1/4) detect USB headset, But c o usb/75764 usb [umass] [patch] "umass0: Phase Error" - no device for o usb/75705 usb [umass] [panic] da0 attach / Optio S4 (with backtrace) o usb/74771 usb [umass] [hang] mounting write-protected umass device a a usb/74453 usb [umass] [patch] Q-lity CD-RW USB ECW-043 (ScanLogic SL o usb/74211 usb [umass] USB flash drive causes CAM status 0x4 on 4.10R o usb/73307 usb [panic] Kernel panics on USB disconnect s usb/72733 usb [ucom] [request] Kyocera 7135 Palm OS connection probl o usb/71455 usb [umass] Slow USB umass performance of 5.3 o usb/71417 usb [ugen] Cryptoflex e-gate USB token (ugen0) communicati o usb/71416 usb [ugen] Cryptoflex e-gate USB token (ugen0) detach is n o usb/71280 usb [aue] aue0 device (linksys usb100tx) doesn't work in 1 o usb/71155 usb [ulpt] misbehaving usb-printer hangs processes, causes o usb/70523 usb [umct] [patch] umct sending/receiving wrong characters o usb/69006 usb [usbdevs] [patch] Apple Cinema Display hangs USB ports o usb/68232 usb [ugen] [patch] ugen(4) isochronous handling correction o usb/67301 usb [uftdi] [panic] RTS and system panic o usb/66547 usb [ucom] Palm Tungsten T USB does not initialize correct o usb/63621 usb [umass] [panic] USB MemoryStick Reader stalls/crashes s usb/62257 usb [umass] [request] card reader UCR-61S2B is only half-s o usb/59698 usb [keyboard] [patch] Rework of ukbd HID to AT code trans o bin/57255 usb usbd(8) and multi-function devices s usb/52026 usb [usb] [request] umass driver support for InSystem ISD2 s usb/51958 usb [urio] [patch] update for urio driver o i386/46371 usb USB controller cannot be initialized on IBM Netfinity o usb/40948 usb [umass] [request] USB HP CDW8200 does not work o conf/30929 usb [usb] [patch] use usbd to initialize USB ADSL modem 283 problems total. From eric at vangyzen.net Tue Oct 14 13:50:02 2008 From: eric at vangyzen.net (Eric van Gyzen) Date: Tue Oct 14 13:50:08 2008 Subject: usb/128093: panic in ohci_softintr: OXFER(xfer)->xfer.pipe == NULL Message-ID: <20081012195145.841E3451E7@eddie.vangyzen.net> >Number: 128093 >Category: usb >Synopsis: panic in ohci_softintr: OXFER(xfer)->xfer.pipe == NULL >Confidential: no >Severity: serious >Priority: low >Responsible: freebsd-usb >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Oct 14 13:50:01 UTC 2008 >Closed-Date: >Last-Modified: >Originator: Eric van Gyzen >Release: FreeBSD 7.0-RELEASE-p2 amd64 >Organization: >Environment: ==== dmesg ==== Copyright (c) 1992-2008 The FreeBSD Project. Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994 The Regents of the University of California. All rights reserved. FreeBSD is a registered trademark of The FreeBSD Foundation. FreeBSD 7.0-RELEASE-p2 #1: Sat Jun 21 21:05:56 CDT 2008 vangyzen@eddie.vangyzen.net:/usr/obj/usr/src/sys/EDDIE Timecounter "i8254" frequency 1193182 Hz quality 0 CPU: AMD Athlon(tm) 64 X2 Dual Core Processor 4400+ (2310.66-MHz K8-class CPU) Origin = "AuthenticAMD" Id = 0x60fb2 Stepping = 2 Features=0x178bfbff Features2=0x2001 AMD Features=0xea500800 AMD Features2=0x11f Cores per package: 2 usable memory = 2137505792 (2038 MB) avail memory = 2062901248 (1967 MB) ACPI APIC Table: FreeBSD/SMP: Multiprocessor System Detected: 2 CPUs cpu0 (BSP): APIC ID: 0 cpu1 (AP): APIC ID: 1 ioapic0: Changing APIC ID to 4 ioapic0 irqs 0-23 on motherboard kbd1 at kbdmux0 ath_hal: 0.9.20.3 (AR5210, AR5211, AR5212, RF5111, RF5112, RF2413, RF5413) acpi0: on motherboard acpi0: [ITHREAD] acpi0: Power Button (fixed) acpi0: reservation of 0, a0000 (3) failed acpi0: reservation of 100000, 7fde0000 (3) failed Timecounter "ACPI-fast" frequency 3579545 Hz quality 1000 acpi_timer0: <24-bit timer at 3.579545MHz> port 0x1008-0x100b on acpi0 acpi_hpet0: iomem 0xfefff000-0xfefff3ff on acpi0 Timecounter "HPET" frequency 25000000 Hz quality 900 cpu0: on acpi0 powernow0: on cpu0 device_attach: powernow0 attach returned 6 cpu1: on acpi0 powernow1: on cpu1 device_attach: powernow1 attach returned 6 acpi_button0: on acpi0 pcib0: port 0xcf8-0xcff on acpi0 pci0: on pcib0 pci0: at device 0.0 (no driver attached) isab0: at device 1.0 on pci0 isa0: on isab0 pci0: at device 1.1 (no driver attached) ohci0: mem 0xfe02f000-0xfe02ffff at device 2.0 on pci0 ohci0: [GIANT-LOCKED] ohci0: [ITHREAD] usb0: OHCI version 1.0, legacy support usb0: SMM does not respond, resetting usb0: on ohci0 usb0: USB revision 1.0 uhub0: on usb0 uhub0: 10 ports with 10 removable, self powered ehci0: mem 0xfe02e000-0xfe02e0ff at device 2.1 on pci0 ehci0: [GIANT-LOCKED] ehci0: [ITHREAD] usb1: EHCI version 1.0 usb1: companion controller, 10 ports each: usb0 usb1: on ehci0 usb1: USB revision 2.0 uhub1: on usb1 uhub1: 10 ports with 10 removable, self powered umass0: on uhub1 atapci0: port 0x1f0-0x1f7,0x3f6,0x170-0x177,0x376,0xf000-0xf00f at device 4.0 on pci0 ata0: on atapci0 ata0: [ITHREAD] ata1: on atapci0 ata1: [ITHREAD] atapci1: port 0x9f0-0x9f7,0xbf0-0xbf3,0x970-0x977,0xb70-0xb73,0xdc00-0xdc0f mem 0xfe02d000-0xfe02dfff irq 20 at device 5.0 on pci0 atapci1: [ITHREAD] ata2: on atapci1 ata2: [ITHREAD] ata3: on atapci1 ata3: [ITHREAD] atapci2: port 0x9e0-0x9e7,0xbe0-0xbe3,0x960-0x967,0xb60-0xb63,0xc800-0xc80f mem 0xfe02c000-0xfe02cfff irq 21 at device 5.1 on pci0 atapci2: [ITHREAD] ata4: on atapci2 ata4: [ITHREAD] ata5: on atapci2 ata5: [ITHREAD] atapci3: port 0xc400-0xc407,0xc000-0xc003,0xbc00-0xbc07,0xb800-0xb803,0xb400-0xb40f mem 0xfe02b000-0xfe02bfff irq 22 at device 5.2 on pci0 atapci3: [ITHREAD] ata6: on atapci3 ata6: [ITHREAD] ata7: on atapci3 ata7: [ITHREAD] pcib1: at device 6.0 on pci0 pci1: on pcib1 ath0: mem 0xfdef0000-0xfdefffff irq 17 at device 7.0 on pci1 ath0: [ITHREAD] ath0: using obsoleted if_watchdog interface ath0: Ethernet address: 00:11:95:91:32:f4 ath0: mac 7.9 phy 4.5 radio 5.6 pcm0: mem 0xfe024000-0xfe027fff irq 23 at device 6.1 on pci0 pcm0: [ITHREAD] nfe0: port 0xb000-0xb007 mem 0xfe02a000-0xfe02afff,0xfe029000-0xfe0290ff,0xfe028000-0xfe02800f irq 20 at device 8.0 on pci0 miibus0: on nfe0 e1000phy0: PHY 1 on miibus0 e1000phy0: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, 1000baseTX-FDX, auto nfe0: Ethernet address: 00:1e:8c:3e:20:ea nfe0: [FILTER] nfe0: [FILTER] nfe0: [FILTER] nfe0: [FILTER] nfe0: [FILTER] nfe0: [FILTER] nfe0: [FILTER] nfe0: [FILTER] pcib2: at device 15.0 on pci0 pci2: on pcib2 vgapci0: port 0xac00-0xacff mem 0xe8000000-0xefffffff,0xfddf0000-0xfddfffff irq 16 at device 0.0 on pci2 drm0: on vgapci0 info: [drm] Initialized radeon 1.25.0 20060524 vgapci1: mem 0xfdde0000-0xfddeffff at device 0.1 on pci2 acpi_tz0: on acpi0 sio0: configured irq 4 not in bitmap of probed irqs 0 sio0: port may not be enabled sio0: configured irq 4 not in bitmap of probed irqs 0 sio0: port may not be enabled sio0: <16550A-compatible COM port> port 0x3f8-0x3ff irq 4 flags 0x10 on acpi0 sio0: type 16550A sio0: [FILTER] orm0: at iomem 0xc0000-0xccfff on isa0 sc0: at flags 0x100 on isa0 sc0: VGA <16 virtual consoles, flags=0x300> vga0: at port 0x3c0-0x3df iomem 0xa0000-0xbffff on isa0 atkbdc0: at port 0x60,0x64 on isa0 atkbd0: irq 1 on atkbdc0 kbd0 at atkbd0 atkbd0: [GIANT-LOCKED] atkbd0: [ITHREAD] sio1: configured irq 3 not in bitmap of probed irqs 0 sio1: port may not be enabled ums0: on uhub0 ums0: 3 buttons and Z dir. ukbd0: on uhub0 kbd2 at ukbd0 ugen0: on uhub0 Timecounters tick every 1.000 msec acd0: DVDR at ata0-master UDMA33 ad4: 152627MB at ata2-master SATA300 pcm0: pcm0: SMP: AP CPU #1 Launched! da0 at umass-sim0 bus 0 target 0 lun 0 da0: Fixed Direct Access SCSI-4 device da0: 40.000MB/s transfers da0: 238475MB (488397168 512 byte sectors: 255H 63S/T 30401C) GEOM_LABEL: Label for provider da0s1 is ufs/backup. GEOM_LABEL: Label for provider da0s1 is ntfs/FreeAgent Drive. Trying to mount root from ufs:/dev/ad4s1a WARNING: / was not properly dismounted ath0: link state changed to UP nfe0: link state changed to UP ==== kernel config ==== GENERIC minus unused stuff. # # based on: # $FreeBSD: src/sys/amd64/conf/GENERIC,v 1.484.2.2.2.1 2008/02/06 03:24:28 scottl Exp $ # cpu HAMMER ident EDDIE makeoptions DEBUG=-g # Build kernel with gdb(1) debug symbols options SCHED_4BSD # 4BSD scheduler options PREEMPTION # Enable kernel thread preemption options INET # InterNETworking options INET6 # IPv6 communications protocols options FFS # Berkeley Fast Filesystem options SOFTUPDATES # Enable FFS soft updates support options UFS_ACL # Support for access control lists options UFS_DIRHASH # Improve performance on big directories options UFS_GJOURNAL # Enable gjournal-based UFS journaling options CD9660 # ISO 9660 Filesystem options GEOM_PART_GPT # GUID Partition Tables. options GEOM_LABEL # Provides labelization options COMPAT_43TTY # BSD 4.3 TTY compat [KEEP THIS!] options COMPAT_IA32 # Compatible with i386 binaries options COMPAT_FREEBSD4 # Compatible with FreeBSD4 options COMPAT_FREEBSD5 # Compatible with FreeBSD5 options COMPAT_FREEBSD6 # Compatible with FreeBSD6 options SCSI_DELAY=5000 # Delay (in ms) before probing SCSI options KTRACE # ktrace(1) support options SYSVSHM # SYSV-style shared memory options SYSVMSG # SYSV-style message queues options SYSVSEM # SYSV-style semaphores options _KPOSIX_PRIORITY_SCHEDULING # POSIX P1003_1B real-time extensions options KBD_INSTALL_CDEV # install a CDEV entry in /dev options ADAPTIVE_GIANT # Giant mutex is adaptive. options STOP_NMI # Stop CPUS using NMI instead of IPI options AUDIT # Security event auditing # Make an SMP-capable kernel by default options SMP # Symmetric MultiProcessor Kernel # CPU frequency control device cpufreq # Bus support. device acpi device pci # Floppy drives device fdc # ATA and ATAPI devices device ata device atadisk # ATA disk drives device ataraid # ATA RAID drives device atapicd # ATAPI CDROM drives options ATA_STATIC_ID # Static device numbering # SCSI peripherals device scbus # SCSI bus (required for SCSI) device da # Direct Access (disks) device cd # CD device pass # Passthrough device (direct SCSI access) device ses # SCSI Environmental Services (and SAF-TE) # atkbdc0 controls both the keyboard and the PS/2 mouse device atkbdc # AT keyboard controller device atkbd # AT keyboard device psm # PS/2 mouse device kbdmux # keyboard multiplexer device vga # VGA video card driver device splash # Splash screen and screen saver support # syscons is the default console driver, resembling an SCO console device sc device agp # support several AGP chipsets # Serial (COM) ports device sio # 8250, 16[45]50 based serial ports device uart # Generic UART driver # PCI Ethernet NICs that use the common MII bus controller code. # NOTE: Be sure to keep the 'device miibus' line in order to use these NICs! device miibus # MII bus support device nfe # nVidia nForce MCP on-board Ethernet # Wireless NIC cards device wlan # 802.11 support device wlan_wep # 802.11 WEP support device wlan_ccmp # 802.11 CCMP support device wlan_tkip # 802.11 TKIP support device wlan_amrr # AMRR transmit rate control algorithm device wlan_scan_ap # 802.11 AP mode scanning device wlan_scan_sta # 802.11 STA mode scanning device ath # Atheros pci/cardbus NIC's device ath_hal # Atheros HAL (Hardware Access Layer) device ath_rate_sample # SampleRate tx rate control for ath # Pseudo devices. device loop # Network loopback device random # Entropy device device ether # Ethernet support device tun # Packet tunnel. device pty # Pseudo-ttys (telnet etc) device gif # IPv6 and IPv4 tunneling device firmware # firmware assist module # The `bpf' device enables the Berkeley Packet Filter. # Be aware of the administrative consequences of enabling this! # Note that 'bpf' is required for DHCP. device bpf # Berkeley packet filter # USB support device uhci # UHCI PCI->USB interface device ohci # OHCI PCI->USB interface device ehci # EHCI PCI->USB interface (USB 2.0) device usb # USB Bus (required) #device udbp # USB Double Bulk Pipe devices device ugen # Generic device uhid # "Human Interface Devices" device ukbd # Keyboard device ulpt # Printer device umass # Disks/Mass storage - Requires scbus and da device ums # Mouse device uscanner # Scanners >Description: The system panicked on input from a USB keyboard. X was running. The system had been idle, so the monitor was off. I have a habit of hitting Ctrl to make it "wake up"; that's probably what I did this time, but I'm not certain. It didn't respond, so I hit a few more keys (Num Lock, Ctrl-Alt-F1, etc). Eventually, I hit Ctrl-Alt-Delete, and it rebooted. Most likely, the system had just finished dumping core and rebooted on its own, and the timing was just a coincidence. I've been running this setup for nine months, and this is the first instance of this panic. One might suspect it's a timing issue. #7 0xffffffff8040332e in calltrap () at /usr/src/sys/amd64/amd64/exception.S:169 #8 0xffffffff8020a4a0 in ohci_softintr (v=Variable "v" is not available.) at /usr/src/sys/dev/usb/ohci.c:1428 #9 0xffffffff8020bc30 in ohci_intr1 (sc=0xffffffff80a44000) at /usr/src/sys/dev/usb/ohci.c:1194 #10 0xffffffff8025bff0 in ithread_loop (arg=0xffffff00012356c0) at /usr/src/sys/kern/kern_intr.c:1036 (kgdb) f 8 #8 0xffffffff8020a4a0 in ohci_softintr (v=Variable "v" is not available.) at /usr/src/sys/dev/usb/ohci.c:1428 1428 usb_rem_task(OXFER(xfer)->xfer.pipe->device, (kgdb) l 1423 if ((std->flags & OHCI_CALL_DONE) == 0) 1424 continue; 1425 1426 /* Normal transfer completion */ 1427 callout_stop(&xfer->timeout_handle); 1428 usb_rem_task(OXFER(xfer)->xfer.pipe->device, 1429 &OXFER(xfer)->abort_task); 1430 for (p = xfer->hcpriv; p->xfer == xfer; p = n) { 1431 n = p->nexttd; 1432 ohci_free_std(sc, p); (kgdb) p * ((struct ohci_xfer *)(xfer)) $2 = {xfer = {pipe = 0x0, priv = 0xff00000000000000, buffer = 0xffffffff80628bdc, length = 8, actlen = 8, flags = 4, timeout = 0, status = USBD_NORMAL_COMPLETION, callback = 0xffffffff80215f80 , done = 1 '\001', request = { bmRequestType = 0 '\0', bRequest = 0 '\0', wValue = "\000", wIndex = "\000", wLength = "\000"}, frlengths = 0x0, nframes = 0, device = 0xffffff00014d9d00, dmamap = {segs = {{ds_addr = 6458332, ds_len = 8}, {ds_addr = 0, ds_len = 0} }, nsegs = 1, map = 0x0}, allocbuf = 0x0, rqflags = 16, next = { stqe_next = 0x0}, hcpriv = 0xffffff000130af50, timeout_handle = { c_links = {sle = {sle_next = 0x0}, tqe = {tqe_next = 0x0, tqe_prev = 0x0}}, c_time = 0, c_arg = 0x0, c_func = 0, c_mtx = 0xffffffff8062d7e0, c_flags = 0}}, abort_task = {next = { tqe_next = 0x0, tqe_prev = 0x0}, fun = 0xffffffff8020a080 , arg = 0xffffff0001238000, queue = -1}, ohci_xfer_flags = 0} (kgdb) p ((struct ohci_xfer *)(xfer))->xfer.pipe $3 = (struct usbd_pipe *) 0x0 (kgdb) p cpuid_to_pcpu[0]->pc_curthread->td_proc->p_comm $1 = "irq21: ohci0+\000\000\000\000\000\000" (kgdb) p cpuid_to_pcpu[1]->pc_curthread->td_proc->p_comm $2 = "audit\000r", '\0' I'm comfortable with kernel debugging, but I know nothing about the USB code. If you know where to look, I'll gladly give you all the data you need. >How-To-Repeat: Unlikely? >Fix: >Release-Note: >Audit-Trail: >Unformatted: From hselasky at c2i.net Wed Oct 15 06:53:48 2008 From: hselasky at c2i.net (Hans Petter Selasky) Date: Wed Oct 15 06:53:54 2008 Subject: Patch for correct determine & work uplcom R232-USB Profilic chips PL2303HX In-Reply-To: <48F53CAE.3010509@yandex.ru> References: <48F53CAE.3010509@yandex.ru> Message-ID: <200810150855.50141.hselasky@c2i.net> Hi Borodin, Please make a PR, attach your patch and assign it to USB so that it does not get lost. --HPS On Wednesday 15 October 2008, Borodin Oleg wrote: > Patch for correct determine & work uplcom with R232-USB Profilic > PL2303HX chips > > Borodin Oleg > Kaliningrad, Russia > > --- ./sys/dev/usb/uplcom.c.orig 2008-10-04 10:23:55.000000000 > +0300 > +++ ./sys/dev/usb/uplcom.c 2008-10-14 07:56:45.000000000 > +0300 > @@ -243,6 +243,10 > @@ > > /* ST Lab USB-SERIAL-4 > */ > > { USB_VENDOR_PROLIFIC, > USB_PRODUCT_PROLIFIC_PL2303, > > 0x300, TYPE_PL2303X > }, > > + /* TRENDnet TU-S9, Rover Computers Ltd and other PL2303HX based > USB-RS232 > */ > > + { USB_VENDOR_PROLIFIC, > USB_PRODUCT_PROLIFIC_PL2303, > > + 0x400, TYPE_PL2303X > }, > > + > > /* IOGEAR/ATEN UC-232A (also ST Lab USB-SERIAL-1) > */ > { USB_VENDOR_PROLIFIC, USB_PRODUCT_PROLIFIC_PL2303, -1, > TYPE_PL2303 }, > /* HAMLET exagerate XURS232 > */ From ziggi at inbox.ru Wed Oct 15 10:30:02 2008 From: ziggi at inbox.ru (Borodin Oleg) Date: Wed Oct 15 10:30:09 2008 Subject: usb/128115: USB-RS232 circuets on chip PL2303HX no correct detemine uplcom as PL2303 Message-ID: <200810151027.m9FARZv3063420@www.freebsd.org> >Number: 128115 >Category: usb >Synopsis: USB-RS232 circuets on chip PL2303HX no correct detemine uplcom as PL2303 >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-usb >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed Oct 15 10:30:01 UTC 2008 >Closed-Date: >Last-Modified: >Originator: Borodin Oleg >Release: 6.3; 6.4-RC1 >Organization: >Environment: FreeBSD eee.home 6.4-RC1 FreeBSD 6.4-RC1 #0: Sat Oct 11 23:12:39 EEST 2008 ziggi@eee.home:/usr/src64/sys/i386/compile/EEE01 i386 >Description: PL2303HX USB-RS232 chips (may be only some chips?) return not updated product&release information on usb, where determine uplcom as PL2303. I tested in 2 cables on this chip. >How-To-Repeat: >Fix: Patch attached. uplcom determine and work as with PL2303X. Test in speed 9600-115200bps (Cisco, Notrel circuits) - in this speed work ok. Patch attached with submission follows: --- ./sys/dev/usb/uplcom.c.orig 2008-10-04 10:23:55.000000000 +0300 +++ ./sys/dev/usb/uplcom.c 2008-10-14 07:56:45.000000000 +0300 @@ -243,6 +243,10 @@ /* ST Lab USB-SERIAL-4 */ { USB_VENDOR_PROLIFIC, USB_PRODUCT_PROLIFIC_PL2303, 0x300, TYPE_PL2303X }, + /* ST Lab USB-SERIAL-4 */ + { USB_VENDOR_PROLIFIC, USB_PRODUCT_PROLIFIC_PL2303, + 0x400, TYPE_PL2303X }, + /* IOGEAR/ATEN UC-232A (also ST Lab USB-SERIAL-1) */ { USB_VENDOR_PROLIFIC, USB_PRODUCT_PROLIFIC_PL2303, -1, TYPE_PL2303 }, /* HAMLET exagerate XURS232 */ >Release-Note: >Audit-Trail: >Unformatted: From alfred at freebsd.org Wed Oct 15 15:22:20 2008 From: alfred at freebsd.org (Alfred Perlstein) Date: Wed Oct 15 15:22:26 2008 Subject: USB4BSD - release candidate 2 - coming to FreeBSD this week. Message-ID: <20081015150631.GI77664@elvis.mu.org> Guys, I'm planning on giving integration of Han's MPSAFE and fast usb stack this coming week. Code is referenced in the below message. Please give feedback now so that I can be prepared. ----- Forwarded message from Hans Petter Selasky ----- From: Hans Petter Selasky To: Alfred Perlstein Cc: Andrew Thompson Subject: Re: USB4BSD - release candidate 2 Date: Sun, 28 Sep 2008 22:23:01 +0200 Message-Id: <200809282223.02055.hselasky@c2i.net> User-Agent: KMail/1.9.7 NOTE: The following file has been deleted: src/sys/dev/usb2/controller/uss820dci_pccard.c And the patch for the kernel config file is different. --HPS %md5 usb2_release_002.* MD5 (usb2_release_002.diff) = 0209262b6df3a1e2aecac1c4fd553c41 MD5 (usb2_release_002.tar.gz) = a8f9dd0ce9e3191d6446dc07c2151432 %sha256 usb2_release_002.* SHA256 (usb2_release_002.diff) = 5d5d0c8ea2a4cf1ea631bd45082b56da1bf12cfc85b6e613bf881dca3949111b SHA256 (usb2_release_002.tar.gz) = 6d9001f4baf56e6a85c4e147de24b6c7d00c052e3840088b93a53ef4e4c92fb9 % http://www.selasky.org/hans_petter/usb4bsd/for_review --HPS ----- End forwarded message ----- -- - Alfred Perlstein From Thomas.Sparrevohn at btinternet.com Wed Oct 15 17:16:30 2008 From: Thomas.Sparrevohn at btinternet.com (Thomas Sparrevohn) Date: Wed Oct 15 17:16:36 2008 Subject: Out of bounce buffers In-Reply-To: <000001c92d77$cbfaf6f0$63f0e4d0$@Sparrevohn@btinternet.com> References: <000001c92d77$cbfaf6f0$63f0e4d0$@Sparrevohn@btinternet.com> Message-ID: <001801c92ee6$08d62ee0$1a828ca0$@Sparrevohn@btinternet.com> I will be answering this one myself Further debugging seems fortunately to vindicate the ATA drivers - I tried to disable most other drivers - USB, if etc. And the problem goes away I now need to tie down where the problem occurs - but what seems to happen is that a DMA read sanity check fails due to the segment has been overwritten/changed/freed while the ATA driver was holding the same tag -----Original Message----- From: owner-freebsd-current@freebsd.org [mailto:owner-freebsd-current@freebsd.org] On Behalf Of Thomas Sparrevohn Sent: 13 October 2008 22:08 To: 'S?ren Schmidt'; Current@freebsd.org Subject: Out of bounce buffers Hi I have had a weird issue since the change in April where the SATA Port multipliers was introduced. The system started issuing "DATA load FAILURE" in the ata-dmaload every time that disk subsystem got loaded. Because the code prior from 10/04-2008 worked fine and Ignored the problem and simply used the code prior to the SATA Port multiplier was introduced. The reason was twofold - One I did not time to investigate and two I suspected it could be a hw error - using cheap SATA disks. Well finally I have had time to investigate and the problem occurs because the system "runs out of bounce buffers" I have tested the entire disk for errors using a Hitachi tools and there seems to no problems - down to the degree that I can get the system to work with the current ATA subsystem as long as I only use one disk ;-) Regardless of which of the 4 disks - however if I add a second disk to the subsystem it will eventually (after 17-40GB of restores) give me a "DATA load failures" - Naturally I suspected the disk drives - however as I said - I can fully restore without the error occurring as long as I only use one disk Puzzled by this I started plastering the code with printf's to see what happened - patch included just FYI - It turns out that the kernel runs out of bounce buffers - which is very surprising - Can anybody give any advice on this? From imp at bsdimp.com Wed Oct 15 18:10:28 2008 From: imp at bsdimp.com (M. Warner Losh) Date: Wed Oct 15 18:10:35 2008 Subject: USB4BSD - release candidate 2 - coming to FreeBSD this week. In-Reply-To: <20081015150631.GI77664@elvis.mu.org> References: <20081015150631.GI77664@elvis.mu.org> Message-ID: <20081015.120813.1393075599.imp@bsdimp.com> I'm worried about the sound changes folded in here. i think they should be separated out, perhaps with a note that uaudio doesn't work without them. They should come in via the normal sound driver maintainer's processes. I think they break other things. Other than that, I'm happy with these going in. That isn't to say I like everything about usb2, but it is to the point where it needs wider testing and wider comment. I suspect there's a number of contentious items lingering in the code, but they shouldn't prevent it going in. Warner From alfred at freebsd.org Wed Oct 15 18:29:19 2008 From: alfred at freebsd.org (Alfred Perlstein) Date: Wed Oct 15 18:29:26 2008 Subject: USB4BSD - release candidate 2 - coming to FreeBSD this week. In-Reply-To: <20081015.120813.1393075599.imp@bsdimp.com> References: <20081015150631.GI77664@elvis.mu.org> <20081015.120813.1393075599.imp@bsdimp.com> Message-ID: <20081015182918.GC46393@elvis.mu.org> * M. Warner Losh [081015 11:10] wrote: > I'm worried about the sound changes folded in here. i think they > should be separated out, perhaps with a note that uaudio doesn't work > without them. They should come in via the normal sound driver > maintainer's processes. I think they break other things. > > Other than that, I'm happy with these going in. That isn't to say I > like everything about usb2, but it is to the point where it needs > wider testing and wider comment. I suspect there's a number of > contentious items lingering in the code, but they shouldn't prevent it > going in. Noted, I'll axe the audio changes. -- - Alfred Perlstein From n_hibma at FreeBSD.org Thu Oct 16 10:00:09 2008 From: n_hibma at FreeBSD.org (n_hibma@FreeBSD.org) Date: Thu Oct 16 10:00:16 2008 Subject: usb/127543: [patch] [ubsa] Support Option Globetrotter HSDPA modem Message-ID: <200810161000.m9GA08UW018039@freefall.freebsd.org> Synopsis: [patch] [ubsa] Support Option Globetrotter HSDPA modem Responsible-Changed-From-To: freebsd-usb->n_hibma Responsible-Changed-By: n_hibma Responsible-Changed-When: Thu Oct 16 09:58:54 UTC 2008 Responsible-Changed-Why: Assign this bug to me. Adding the ID is one thing, considering the adding of all IDs found in the Linux another. But the real question is whether the Linux driver contains useful stuff: DTR/DSD handling. http://www.freebsd.org/cgi/query-pr.cgi?pr=127543 From imp at bsdimp.com Thu Oct 16 13:46:45 2008 From: imp at bsdimp.com (M. Warner Losh) Date: Thu Oct 16 13:46:51 2008 Subject: usb/127543: [patch] [ubsa] Support Option Globetrotter HSDPA modem In-Reply-To: <200810161000.m9GA08UW018039@freefall.freebsd.org> References: <200810161000.m9GA08UW018039@freefall.freebsd.org> Message-ID: <20081016.074407.824013811.imp@bsdimp.com> In message: <200810161000.m9GA08UW018039@freefall.freebsd.org> n_hibma@freebsd.org writes: : Synopsis: [patch] [ubsa] Support Option Globetrotter HSDPA modem : : Responsible-Changed-From-To: freebsd-usb->n_hibma : Responsible-Changed-By: n_hibma : Responsible-Changed-When: Thu Oct 16 09:58:54 UTC 2008 : Responsible-Changed-Why: : Assign this bug to me. Adding the ID is one thing, considering the : adding of all IDs found in the Linux another. But the real question is : whether the Linux driver contains useful stuff: DTR/DSD handling. I've added them to the uipaq driver... Warner From gavin at FreeBSD.org Thu Oct 16 14:08:21 2008 From: gavin at FreeBSD.org (gavin@FreeBSD.org) Date: Thu Oct 16 14:08:27 2008 Subject: usb/128115: [uplcom] [patch] USB-RS232 circuets on chip PL2303HX no correct detemine uplcom as PL2303 Message-ID: <200810161408.m9GE8Kv3039687@freefall.freebsd.org> Old Synopsis: USB-RS232 circuets on chip PL2303HX no correct detemine uplcom as PL2303 New Synopsis: [uplcom] [patch] USB-RS232 circuets on chip PL2303HX no correct detemine uplcom as PL2303 State-Changed-From-To: open->patched State-Changed-By: gavin State-Changed-When: Thu Oct 16 13:56:37 UTC 2008 State-Changed-Why: Patched in -HEAD and RELENG_7, needs an MFC of r174660 ro RELENG_6. http://www.freebsd.org/cgi/query-pr.cgi?pr=128115 From Thomas.Sparrevohn at btinternet.com Thu Oct 16 21:38:45 2008 From: Thomas.Sparrevohn at btinternet.com (Thomas Sparrevohn) Date: Thu Oct 16 21:38:54 2008 Subject: Panic with USB2 release candidate Message-ID: <200810162238.37962.Thomas.Sparrevohn@btinternet.com> I downloaded the release candidate 2 for the new USB stack and while it work very well for most things I am getting repeated panics when using heavy disk traffic - I believe the issue is related to the problems I described in the "out of bounce buffers mail" - Yet with the new stack it show up correctly in the USB UMASS dma code as a fault Anyhow its a pretty nasty panic - I have a number of core dumps if its of any use From brooks at FreeBSD.org Fri Oct 17 14:28:01 2008 From: brooks at FreeBSD.org (brooks@FreeBSD.org) Date: Fri Oct 17 14:28:07 2008 Subject: usb/122712: [usbdevs] [patch] Sony Vaio RF keyboard/mouse receiver works incorrectly Message-ID: <200810171428.m9HES1DJ010302@freefall.freebsd.org> Synopsis: [usbdevs] [patch] Sony Vaio RF keyboard/mouse receiver works incorrectly Responsible-Changed-From-To: freebsd-usb->brooks Responsible-Changed-By: brooks Responsible-Changed-When: Fri Oct 17 14:27:48 UTC 2008 Responsible-Changed-Why: Grab this PR for commit. http://www.freebsd.org/cgi/query-pr.cgi?pr=122712 From linimon at FreeBSD.org Fri Oct 17 15:22:03 2008 From: linimon at FreeBSD.org (linimon@FreeBSD.org) Date: Fri Oct 17 15:22:10 2008 Subject: usb/113060: [usbdevs] [patch] Samsung printer not working in bidirectional mode Message-ID: <200810171522.m9HFM2xw016272@freefall.freebsd.org> Synopsis: [usbdevs] [patch] Samsung printer not working in bidirectional mode State-Changed-From-To: open->analyzed State-Changed-By: linimon State-Changed-When: Fri Oct 17 15:21:41 UTC 2008 State-Changed-Why: hps@ confirms that this is ready for commit. http://www.freebsd.org/cgi/query-pr.cgi?pr=113060 From linimon at FreeBSD.org Fri Oct 17 15:33:35 2008 From: linimon at FreeBSD.org (linimon@FreeBSD.org) Date: Fri Oct 17 15:33:42 2008 Subject: usb/74453: [umass] [patch] Q-lity CD-RW USB ECW-043 (ScanLogic SL11R chipset) does not work Message-ID: <200810171533.m9HFXXlU018626@freefall.freebsd.org> Synopsis: [umass] [patch] Q-lity CD-RW USB ECW-043 (ScanLogic SL11R chipset) does not work State-Changed-From-To: analyzed->feedback State-Changed-By: linimon State-Changed-When: Fri Oct 17 15:31:07 UTC 2008 State-Changed-Why: If this PR is still relevant, can you please send us the output of usbdevs -v? Thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=74453 From vvelox at vvelox.net Sat Oct 18 12:50:10 2008 From: vvelox at vvelox.net (Zane C.B.) Date: Sat Oct 18 12:50:17 2008 Subject: disabling ulpt for a single device Message-ID: <20081018073318.4efd1e34@vixen42> Is there any way to disable ulpt for a single device? I have one device that needs to be recognized as a ugen device by hplip, but unfortunately I also desire to keep the ulpt module in place. -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 195 bytes Desc: not available Url : http://lists.freebsd.org/pipermail/freebsd-usb/attachments/20081018/1b80c8c2/signature.pgp From mwm at mired.org Sat Oct 18 17:00:54 2008 From: mwm at mired.org (Mike Meyer) Date: Sat Oct 18 17:01:07 2008 Subject: disabling ulpt for a single device In-Reply-To: <20081018073318.4efd1e34@vixen42> References: <20081018073318.4efd1e34@vixen42> Message-ID: <20081018123110.339da67c@bhuda.mired.org> On Sat, 18 Oct 2008 07:33:18 -0500 "Zane C.B." wrote: > Is there any way to disable ulpt for a single device? I have one > device that needs to be recognized as a ugen device by hplip, but > unfortunately I also desire to keep the ulpt module in place. No. Further, that's not good enough in general - I only have one USB printer, but it's got card readers, and hence gets recognized as a da device, which means no ugen even if I take ulpt out of the kernel, which means hplip won't work with it. The usb2 stack should solve all of this by providing a ugen anyway, but I haven't had time to try it out (the scanner is way down my project list). http://www.mired.org/consulting.html Independent Network/Unix/Perforce consultant, email for more information. O< ascii ribbon campaign - stop html mail - www.asciiribbon.org From vvelox at vvelox.net Sun Oct 19 00:16:43 2008 From: vvelox at vvelox.net (Zane C.B.) Date: Sun Oct 19 00:16:49 2008 Subject: disabling ulpt for a single device In-Reply-To: <20081018123110.339da67c@bhuda.mired.org> References: <20081018073318.4efd1e34@vixen42> <20081018123110.339da67c@bhuda.mired.org> Message-ID: <20081018191640.16229824@vixen42> On Sat, 18 Oct 2008 12:31:10 -0400 Mike Meyer wrote: > On Sat, 18 Oct 2008 07:33:18 -0500 > "Zane C.B." wrote: > > > Is there any way to disable ulpt for a single device? I have one > > device that needs to be recognized as a ugen device by hplip, but > > unfortunately I also desire to keep the ulpt module in place. > > No. Further, that's not good enough in general - I only have one USB > printer, but it's got card readers, and hence gets recognized as a > da device, which means no ugen even if I take ulpt out of the > kernel, which means hplip won't work with it. > > The usb2 stack should solve all of this by providing a ugen anyway, > but I haven't had time to try it out (the scanner is way down my > project list). On another note, I came across '/boot/device.hints' and it turns out it is not respected by 'ulpt'. I could not disable it by setting 'hint.ulpt.0.disabled="1"'. -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 195 bytes Desc: not available Url : http://lists.freebsd.org/pipermail/freebsd-usb/attachments/20081019/70727afa/signature.pgp From torfinn.ingolfsen at broadpark.no Sun Oct 19 01:33:21 2008 From: torfinn.ingolfsen at broadpark.no (Torfinn Ingolfsen) Date: Sun Oct 19 01:33:27 2008 Subject: disabling ulpt for a single device In-Reply-To: <20081018123110.339da67c@bhuda.mired.org> References: <20081018073318.4efd1e34@vixen42> <20081018123110.339da67c@bhuda.mired.org> Message-ID: <20081019033318.7b141054.torfinn.ingolfsen@broadpark.no> On Sat, 18 Oct 2008 12:31:10 -0400 Mike Meyer wrote: > No. Further, that's not good enough in general - I only have one USB > printer, but it's got card readers, and hence gets recognized as a da > device, which means no ugen even if I take ulpt out of the kernel, > which means hplip won't work with it. But it will get recognized if you compile umass as a module and don't load it at boot. Granted, it is a small hassle to do 'kldload umass' before using any usb storage devices. -- Torfinn From dane.harrigan at gmail.com Mon Oct 20 03:18:12 2008 From: dane.harrigan at gmail.com (Dane Harrigan) Date: Mon Oct 20 03:18:19 2008 Subject: ms natural wireless laser mouse 7000 doesn't work Message-ID: Hello, as the subject states, I am experiencing problems with my wireless mouse. I have the keyboard/mouse set (MS Natural Ergonomic Desktop 7000). Both the mouse and keyboard communicate with the single usb receiver. The keyboard works out of the box, but the mouse doesn't. Any assistance would be greatly appreciated. I've attached the results of dmesg and usbdevs. Thanks in advance everyone, -Dane -------------- next part -------------- A non-text attachment was scrubbed... Name: dmesg Type: application/octet-stream Size: 22997 bytes Desc: not available Url : http://lists.freebsd.org/pipermail/freebsd-usb/attachments/20081020/b4fb67a1/dmesg.obj -------------- next part -------------- A non-text attachment was scrubbed... Name: usbdevs Type: application/octet-stream Size: 117 bytes Desc: not available Url : http://lists.freebsd.org/pipermail/freebsd-usb/attachments/20081020/b4fb67a1/usbdevs.obj From bugmaster at FreeBSD.org Mon Oct 20 11:07:00 2008 From: bugmaster at FreeBSD.org (FreeBSD bugmaster) Date: Mon Oct 20 11:09:15 2008 Subject: Current problem reports assigned to freebsd-usb@FreeBSD.org Message-ID: <200810201107.m9KB702D082837@freefall.freebsd.org> Note: to view an individual PR, use: http://www.freebsd.org/cgi/query-pr.cgi?pr=(number). The following is a listing of current problems submitted by FreeBSD users. These represent problem reports covering all versions including experimental development code and obsolete releases. S Tracker Resp. Description -------------------------------------------------------------------------------- p usb/128115 usb [uplcom] [patch] USB-RS232 circuets on chip PL2303HX n o usb/128093 usb [ohci] panic in ohci_softintr: OXFER(xfer)->xfer.pipe o usb/127980 usb [QUIRK] Fix Samsung YP U2 MP3 player on 7.x and 8.x o usb/127926 usb [boot] USB Timeout during bootup o usb/127549 usb [umass] [patch] Meizu MiniPlayer M6 (SL) requires some f usb/127516 usb after csup src-all RELENG_7 s usb/127453 usb [request] ubsa, uark, ubser, uftdi, and friends should o usb/127423 usb [boot] BTX halted on Gigabyte GA-MA69VM-S2 / AMD Sempr o usb/127342 usb [boot] cannot enable usb keyboard and mouse support in o kern/127222 usb [ohci]: Regression in 7.0 usb storage generic driver o usb/126884 usb [patch] Bug in buffer handling in ugen.c f kern/126848 usb [usb]: USB Keyboard hangs during Installation o usb/126740 usb [ulpt] doesn't work on 7.0-RELEASE, 10 second stall be o usb/126519 usb [usb] [panic] panic when plugging in an iphone o kern/126396 usb [panic] kernel panic after unplug USB Bluetooth device o usb/125736 usb [ukbd] [hang] system hangs after AT keyboard detect if o usb/125631 usb [usb][ums] kernel panic during bootup while 'Logitech o usb/125510 usb repeated plug and unplug of USB mass storage devices l o usb/125450 usb [panic] Removing USB flash card while being accessed c o usb/125264 usb [patch] sysctl for set usb mouse rate (very useful for o usb/125238 usb Habu Mouse turns off in X o usb/125088 usb Touchpad not detected on Adesso AKB-430UG USB kbd/pad o usb/125072 usb [uplcom] [patch] add Mobile Action MA-620 Infrared Ada o usb/124980 usb [panic] kernel panic on detaching unmounted umass devi o kern/124777 usb [ucom] USB cua devices don't revert to tty devices whe o usb/124758 usb rum panics SMP kernel o usb/124708 usb [panic] Kernel panic on USB KVM reattach o usb/124604 usb Wireless Mouse doesn't work o usb/123969 usb Supermicro H8SMi-2 usb problem o usb/123714 usb Panic when hald-storage-probe runs with umass device i o usb/123691 usb usbd(8): usbd hangs o usb/123690 usb Panic on USB device insertion when usb loaded as a mod o usb/123611 usb [usb] BBB reset failed, STALLED from Imation/Mitsumi U o usb/123509 usb [umass] continuous reset Samsung SGH-G600 phone o usb/123352 usb Add Option GTMAX3.6/7.2 and Quallcomm MMC module devic o usb/123351 usb Add Reiner SCT cyberJack, Omnikey [26]020, Fujitsu Sie p usb/123211 usb [udav] if_udav driver doesn't support Davicom 9601 USB p usb/123148 usb [uscanner] [patch] Epson DX8400/50 needs uscanner to s o usb/122992 usb MotoROKR Z6 Phone not recognised by umass as USB disk. o usb/122956 usb Support for Novatel Wireless XU870 3G Card o usb/122936 usb [ucom][ubsa] Device does not receive interrupt o usb/122905 usb [ubsa] [patch] add Huawei E220 to ubsa o usb/122819 usb Patch to provide dynamic additions to the usb quirks t o usb/122813 usb [udbp] [request] udbp driver should be removed in favo o usb/122621 usb [patch] [request] New driver for Sierra Wireless 3G US p usb/122610 usb Add Verizon v740 support to ubsa(4) o usb/122547 usb [ehci] USB Printer not being recognized after reboot o usb/122539 usb [ohci] [panic] AnyDATA ADU-E1000D - kernel panic: ohci o usb/122483 usb [panic] [ulpt] Repeatable panic in 7.0-STABLE o usb/122119 usb [umass] umass device causes creation of daX but not da o usb/122025 usb [patch] uscanner does not attach to Epson RX620 printe o usb/121755 usb [ohci] [patch] Fix panic after ohci/uhub cardbus devic o usb/121734 usb [ugen] ugen HP1022 printer device not working since up o usb/121708 usb [keyboard] nforce 650i mobo w/ usb keyboard infinite k o usb/121474 usb [cam] [patch] QUIRK: SAMSUNG HM250JI in LaCie usb hard o usb/121426 usb [patch] [uscanner] add HP ScanJet 3570C o usb/121275 usb [boot] FreeBSD fails to boot with usb legacy support e o usb/121232 usb USB CardBus card removal causes reboot sometimes o usb/121184 usb [uipaq] [patch] add ids from linux ipaq driver (plus a o usb/121169 usb [umass] Issues with usb mp3 player o usb/121045 usb [uftdi] [patch] Add support for PC-OP-RS1 and KURO-RS o usb/120786 usb Kernel panic when forced umount of a dettached USB Har o usb/120729 usb [panic] fault while in kernel mode with connecting USB o usb/120572 usb [umass] [patch] quirk to support ASUS P535 as umass (a o usb/120321 usb [hang] System hangs when transferring data to WD MyBoo o usb/120283 usb [panic] Automation reboot with wireless keyboard & mou o usb/120034 usb [hang] 6.2 & 6.3 hangs on boot at usb0: OHCI with 1.5 o usb/120017 usb [ehci] [patch] CS5536 (AMD Geode) USB 2.0 quirk o usb/119981 usb [axe] [patch] add support for LOGITEC LAN-GTJ/U2 gigab o usb/119977 usb [ums] Mouse does not work in a Cherry-USB keyboard/mou o usb/119653 usb [cam] [patch] iriver s7 player sync cache error patch o usb/119633 usb [umass] umass0: BBB reset failed, IOERROR [regression] o usb/119513 usb [irq] inserting dlink dwl-g630 wireless card results i o usb/119509 usb USB flaky on Dell Optiplex 755 o usb/119481 usb [hang] FreeBSD not responding after connecting USB-Mas o usb/119389 usb [umass] Sony DSC-W1 CBI reset failed, STALLED [regress o usb/119227 usb [ubsa] [patch] ubsa buffer is too small; should be tun o usb/119201 usb [cam] [patch] Quirks for Olympus FE-210 camera, LG and o usb/119150 usb [usbdevs] [patch] new usbdevs for CDMA 1xEVDO devices o usb/118686 usb [usbdevs] [patch] teach usbdevs / ubsa(4) about Huawei o usb/118485 usb [usbdevs] [patch] Logitech Headset Workaround o usb/118480 usb [umass] Timeout in USB mass storage freezes vfs layer o usb/118353 usb [panic] [ppp] repeatable kernel panic during ppp(4) se o usb/118141 usb [ucom] usb serial and nokia phones ucomreadcb ucomread o usb/118140 usb [ucom] [patch] quick hack for ucom to get it behave wi o usb/118098 usb [umass] 6th gen iPod causes problems when disconnectin o usb/117955 usb [umass] [panic] inserting minolta dimage a2 crashes OS o usb/117946 usb [panic] D-Link DUB-E100 rev. B1 crashes FreeBSD 7.0-BE o usb/117938 usb [ums] [patch] Adding support for MS WL Natural and MS o usb/117911 usb [ums] [request] Mouse Gembird MUSWC not work o usb/117893 usb [umass] Lacie USB DVD writing failing o usb/117613 usb [uhci] [irq] uhci interrupt storm & USB leaked memory o usb/117598 usb [uaudio] [patch] Not possible to record with Plantroni o usb/117546 usb [uftdi] [patch] Add MaxStream ZigBee product ID to uft o usb/117313 usb [umass] [panic] panic on usb camera insertion o usb/117205 usb [uscanner] [patch] uscanner support for HP ScanJet 447 o usb/117200 usb [ugen] ugen0 prints strange string on attach if detach o usb/117185 usb [umodem] [patch] Add support for UNION interface descr o usb/117183 usb [panic] USB/fusefs -- panic while transferring large a o usb/117075 usb [scsi_da] [patch] quirk: USB Samsung YP-U3 MP3 o usb/116947 usb [ukbd] [patch] [regression] enable boot protocol on th o usb/116699 usb [usbhid] USB HID devices do not initialize at system b o usb/116561 usb [umodem] [panic] RELENG_6 umodem panic "trying to slee o usb/116282 usb [ulpt] Cannot print on USB HP LJ1018 or LJ1300 o usb/115935 usb [usbdevs] [patch] kernel counterproductively attaches o usb/115933 usb [uftdi] [patch] RATOC REX-USB60F (usb serial converter o usb/115400 usb [ehci] Problem with EHCI on ASUS M2N4-SLI o usb/115298 usb [ulpt] [panic] Turning off USB printer panics kernel o usb/114916 usb [umass] [patch] USB Maxtor drive (L300RO) requires qui o kern/114780 usb [uplcom] [panic] Panics while stress testing the uplco o usb/114682 usb [umass] generic USB media-card reader unusable o usb/114310 usb [libusb] [patch] [panic] USB hub attachment panics ker o usb/114068 usb [umass] [patch] Problems with connection of the umass o conf/114013 usb [patch] WITHOUT_USB allow to compil a lot of USB stuff s usb/113977 usb [request] Need a way to set mode of USB disk's write c o usb/113672 usb [ehci] [panic] Kernel panic with AEWIN CB6971 s usb/113629 usb [ukbd] Dropped USB keyboard events on Dell Latitude D6 o usb/113432 usb [ucom] WARNING: attempt to net_add_domain(netgraph) af a usb/113060 usb [usbdevs] [patch] Samsung printer not working in bidir o usb/112944 usb [ulpt] [patch] Bi-directional access to HP LaserJet 10 o usb/112640 usb [usb] [hang] Kernel freezes when writing a file to an o usb/112631 usb [panic] Problem with SONY DSC-S80 camera on umount s usb/112568 usb [umass] [request] USB mode may wrong when mounting Pla o usb/112463 usb [umass] problem with Samsung USB DVD writer, libscg an o usb/112461 usb [ehci] [request] ehci USB 2.0 doesn't work on nforce4 o usb/111753 usb [uhid] [panic] Replicable system panic involving UHID s usb/110991 usb [usbdevs] [patch] QUIRK: Super Top IDE DEVICE (depends o usb/110988 usb [umass] [patch] Handling of quirk IGNORE_RESIDUE is um o usb/110856 usb [ugen] [patch] interrupt in msgs are truncated when bu o usb/110197 usb [umass] Sony PSP umass device does not detach from EHC o usb/109397 usb [panic] on boot from USB flash o usb/109274 usb [usb] MCP55 USB Controller fails to attach in AMD64 Cu o usb/108513 usb [umass] Creative MuVo TX FM fails in 6.2-RELEASE [regr s usb/108344 usb [panic] kernel with atausb panics when unplugging USB o usb/108056 usb [ohci] Mouse gets powered off during device probe when o usb/107935 usb [uplcom] [panic] panic while accessing /dev/cuaU0 o usb/107924 usb [patch] usbd(8) does not call detach o usb/107848 usb [umass] [request] cannot access Samsung flash disk o usb/107827 usb [ohci] [panic] ohci_add_done addr not found o usb/107496 usb [uhub] USB device problem on RELENG_6_2 (SHORT_XFER) [ o usb/107446 usb [umass] umass problems (usb and fw disks) o usb/107388 usb [patch] [request] new driver: add utoppy device from N o usb/107248 usb [umass] [patch] scsi_da.c quirk for Cowon iAUDIO X5 MP o usb/107243 usb [cam] [patch] Apacer USB Flash Drive quirk o usb/106861 usb [usbdevs] [patch]: usbdevs update: Add product ACER Ze s usb/106832 usb USB HP printer is not detected by kernel when ACPI ena o usb/106648 usb [umass] [hang] USB Floppy on D1950 10 min Hang on Inse o usb/106621 usb [axe] [patch] DLINK DUB-E100 support broken o usb/106615 usb [uftdi] uftdi module does not automatically load with o usb/106041 usb [usb] [request] FreeBSD does not recognise Mustek Bear o usb/105361 usb [panic] Kernel panic during unmounting mass storage (C o usb/105186 usb [ehci] [panic] USB 2.0/ehci on FreeBSD 6.2-PRE/AMD64 c o usb/105065 usb [ata] SATA - USB Bridge o usb/104830 usb [umass] system crashes when copying data to umass devi o usb/104645 usb [umass] [request] Rave C-201 MP3 player does not commu o usb/104352 usb [ural] [patch] ural driver doesnt work o usb/104292 usb [umass] [hang] system lockup on forced umount of usb-s o usb/104290 usb [umass] [patch] quirk: TOSHIBA DVD-RAM drive (libretto o usb/103917 usb [uhub] USB driver reports "Addr 0 should never happen" o usb/103418 usb usbhidctl(1): [patch] [request] usbhidctl: add ability o usb/103289 usb [request] USB 2.0 problems on AMD LX-800 CPU and CS-55 o usb/103046 usb [ulpt] [patch] ulpt event driven I/O with select(2) an o usb/103025 usb [uhub] [panic] wrong detection of USB device for FreeB o usb/102976 usb [panic] Casio Exilim Digital Camera causes panic on in o usb/102678 usb [keyboard] Dell PowerEdge DRAC5 USB Keyboard does not f usb/102096 usb [patch] usbd(8) does not handle multiple devices in on o usb/102066 usb [ukbd] usb keyboard and multimedia keys don't work o usb/101775 usb [libusbhid] [patch] possible error in report descripto o usb/101761 usb [usb] [patch] [request] usb.h: increase maximal size o o usb/101752 usb [umass] [panic] 6.1-RELEASE kernel panic on usb device o usb/101448 usb [ohci] FBSD 6.1-STABLE/AMD64 crashes under heavy USB/O o usb/101096 usb [ural] [panic] USB WLAN occasionally causes kernel-pan o usb/100746 usb [keyboard] system does not boot due to USB keyboard pr o usb/99538 usb [keyboard] while using USB keyboard default params of o usb/99431 usb [keyboard] FreeBSD on MSI 6566E (Intel 845E motherboar o usb/98343 usb [boot] BBB reset failed errors with Creative Muvo MP3 o usb/97472 usb [cam] [patch] add support for Olympus C150,D390 s usb/97286 usb [mouse] [request] MS Wireless Intellimouse Explorer 2. o usb/97175 usb [umass] [hang] USB cardreader hangs system o usb/96457 usb [umass] [panic] fatback on umass = reboot o usb/96381 usb [cam] [patch] add a quirk table entry for a flash ram o usb/96224 usb [usb] [msdosfs] mount_msdosfs cause page fault in sync s usb/96120 usb [ums] [request] USB mouse not always detected s usb/95636 usb [umass] [boot] 5 minute delay at boot when using VT620 o usb/95562 usb [umass] Write Stress in USB Mass drive causes "vinvalb s usb/95348 usb [keyboard] USB keyboard unplug causes noise on screen o usb/95037 usb [umass] USB disk not recognized on hot-plug. o usb/94897 usb [panic] Kernel Panic when cleanly unmounting USB disk o usb/94717 usb [ulpt] Reading from /dev/ulpt can break work of a UHCI o usb/94384 usb [panic] kernel panic with usb2 hardware o usb/93872 usb [cam] [patch] SCSI quirk required for ELTA 8061 OL USB o usb/93828 usb [ohci] [panic] ohci causes panic on boot (HP Pavillion o usb/93408 usb [mouse] hw.acpi.cpu.cx_lowest=C3 on AMD Turion causes o usb/93389 usb [umass] [patch] Digital Camera Pentax S60 don't work o usb/93155 usb [ulpt] /dev/ulpt0: device busy, USB printer does not w o usb/92852 usb [ums] [patch] Vertical scroll not working properly on o usb/92171 usb [panic] panic unplugging Vodafone Mobile Connect (UMTS o usb/92142 usb [uhub] SET_ADDR_FAILED and SHORT_XFER errors from usb o usb/92083 usb [ural] [panic] panic using WPA on ural NIC in 6.0-RELE o usb/92052 usb [ulpt] usbd causes defunct process with busy file-hand o usb/91906 usb [ehci] [hang] FreeBSD hangs while booting with USB leg o usb/91896 usb camcontrol(8): Serial Number of USB Memory Sticks is n o usb/91811 usb [umass] Compact Flash in HP Photosmart 2610 return " o usb/91629 usb usbd_abort_pipe() may result in infinite loop o usb/91546 usb [umodem] [patch] Nokia 6630 mobile phone does not work o usb/91538 usb [ulpt] [patch] Unable to print to EPSON CX3500 o usb/91283 usb [boot] [regression] booting very slow with usb devices o usb/91238 usb [umass] USB tape unit fails to write a second tape fil o usb/90700 usb [umass] [panic] Kernel panic on connect/mount/use umas o usb/89954 usb [umass] [panic] USB Disk driver race condition? s usb/89003 usb [request] LaCie Firewire drive not properly supported o usb/88743 usb [hang] [regression] USB makes kernel hang at boot (reg o usb/88408 usb [axe] axe0 read PHY failed o usb/87648 usb [mouse] Logitech USB-optical mouse problem. o usb/87224 usb Cannot mount USB Zip750 o usb/86767 usb [umass] [patch] bogus "slice starts beyond end of the o usb/86298 usb [mouse] Known good USB mouse won't work with correct s s usb/85067 usb [uscanner] Cannot attach ScanJet 4300C to usb device f usb/84750 usb [hang] 6-BETA2 reboot/shutdown with root_fs on externa s usb/84336 usb [usb] [reboot] instant system reboot when unmounting a o usb/84326 usb [umass] Panic trying to connect SCSI tape drive via US o usb/83977 usb [ucom] [panic] ucom1: open bulk out error (addr 2): IN o usb/83863 usb [ugen] Communication problem between opensc/openct via o usb/83756 usb [ums] [patch] Microsoft Intellimouse Explorer 4.0A doe f usb/83677 usb [usb] [request] usb controller often not detected (Sun o usb/83563 usb [umass] [panic] Page Fault while detaching Mpman Usb d o usb/83504 usb [kernel] [patch] SpeedTouch USB stop working on recent o usb/82660 usb [ehci] [panic] EHCI: I/O stuck in state 'physrd'/panic s usb/82569 usb [umass] [panic] USB mass storage plug/unplug causes sy o usb/82520 usb [udbp] [reboot] Reboot when USL101 connected o usb/82350 usb [ucom] [panic] null pointer dereference in USB stack o usb/81621 usb [ehci] [hang] external hd hangs under load on ehci o usb/80935 usb [uvisor] [patch] uvisor.c is not work with CLIE TH55. o usb/80862 usb [patch] USB locking issues: missing some Giant calls o usb/80854 usb [patch] [request] suggestion for new iface-no-probe me o usb/80829 usb [modules] [panic] possible panic when loading USB-modu s usb/80777 usb [request] usb_rem_task() should wait for callback to c s usb/80776 usb [udav] [request] UDAV device driver shouldn't use usb_ o usb/80774 usb [patch] have "usbd_find_desc" in line with the other " o usb/80361 usb [umass] [patch] mounting of Dell usb-stick fails o usb/80040 usb [hang] Use of sound mixer causes system freeze with ua o usb/79723 usb [usb] [request] prepare for high speed isochronous tra o usb/79722 usb [ehci] wrong alignments in ehci.h a usb/79656 usb [ehci] RHSC interrupts lost o usb/79524 usb [ulpt] printing to Minolta PagePro 1[23]xxW via USB fa o usb/79287 usb [uhci] [hang] UHCI hang after interrupt transfer o usb/79269 usb [ohci] USB ohci da0 plug/unplug causes crashes and loc o usb/78984 usb [umass] [patch] Creative MUVO umass failure o usb/77294 usb [ucom] [panic] ucom + ulpcom panic o usb/77184 usb [umass] [panic] kernel panic on USB device disconnect, o usb/76732 usb Mouse problems with USB KVM Switch o usb/76653 usb [umass] [patch] Problem with Asahi Optical usb device o usb/76461 usb [umass] disklabel of umass(4)-CAM(4)-da(4) not used by o usb/76395 usb [uhci] USB printer does not work, usbdevs says "addr 0 s usb/75928 usb [umass] [request] Cytronix SmartMedia card (SMC) reade o usb/75800 usb [ucom] ucom1: init failed STALLED error in time of syn o usb/75797 usb [sound] 5.3-STABLE(2005 1/4) detect USB headset, But c o usb/75764 usb [umass] [patch] "umass0: Phase Error" - no device for o usb/75705 usb [umass] [panic] da0 attach / Optio S4 (with backtrace) o usb/74771 usb [umass] [hang] mounting write-protected umass device a f usb/74453 usb [umass] [patch] Q-lity CD-RW USB ECW-043 (ScanLogic SL o usb/74211 usb [umass] USB flash drive causes CAM status 0x4 on 4.10R o usb/73307 usb [panic] Kernel panics on USB disconnect s usb/72733 usb [ucom] [request] Kyocera 7135 Palm OS connection probl o usb/71455 usb [umass] Slow USB umass performance of 5.3 o usb/71417 usb [ugen] Cryptoflex e-gate USB token (ugen0) communicati o usb/71416 usb [ugen] Cryptoflex e-gate USB token (ugen0) detach is n o usb/71280 usb [aue] aue0 device (linksys usb100tx) doesn't work in 1 o usb/71155 usb [ulpt] misbehaving usb-printer hangs processes, causes o usb/70523 usb [umct] [patch] umct sending/receiving wrong characters o usb/69006 usb [usbdevs] [patch] Apple Cinema Display hangs USB ports o usb/68232 usb [ugen] [patch] ugen(4) isochronous handling correction o usb/67301 usb [uftdi] [panic] RTS and system panic o usb/66547 usb [ucom] Palm Tungsten T USB does not initialize correct o usb/63621 usb [umass] [panic] USB MemoryStick Reader stalls/crashes s usb/62257 usb [umass] [request] card reader UCR-61S2B is only half-s o usb/59698 usb [keyboard] [patch] Rework of ukbd HID to AT code trans o bin/57255 usb usbd(8) and multi-function devices s usb/52026 usb [usb] [request] umass driver support for InSystem ISD2 s usb/51958 usb [urio] [patch] update for urio driver o i386/46371 usb USB controller cannot be initialized on IBM Netfinity o usb/40948 usb [umass] [request] USB HP CDW8200 does not work o conf/30929 usb [usb] [patch] use usbd to initialize USB ADSL modem 283 problems total. From aragon at phat.za.net Tue Oct 21 02:44:47 2008 From: aragon at phat.za.net (Aragon Gouveia) Date: Tue Oct 21 02:44:53 2008 Subject: host controller process error Message-ID: <20081021024445.GA60421@phat.za.net> Hi there, Hans suggested that I try run with SMP disabled. I've run my system for 4 weeks with kern.smp.disabled="1" set in loader.conf, and it recently happened again even like this. Again it occured on the bus the mouse was attached to. Just wanted to report back on the outcome. It's only a minor annoyance for me so I'll hang in there until USB2 arrives. Thanks for listening and responding. Switching SMP back on! :) Thanks, Aragon On Saturday 20 September 2008, Aragon Gouveia wrote: > Hi, > > On a 3 month old 7.0-STABLE system I find myself occasionally experiencing > this: > > Sep 18 01:02:47 igor kernel: usb2: host controller process > error Sep 18 01:02:47 igor kernel: usb2: host controller halted > > My only permanently attached USB devices are my keyboard and mouse. It's > happened most frequently on the bus to which my mouse is attached. It's > been completely random so far - it'll happen for no apparent reason while > I'm using my workstation, particularly the mouse. The only workaround I've > found so far is to reboot or plug the affected device(s) into a different > USB port. > > Any ideas if this is a hardware issue or a software bug? Anyone have > suggestions to try reproduce the problem? Any point even spending time on > this with USB2 'round the corner? > From 9257523042 at mymetropcs.com Tue Oct 21 04:21:32 2008 From: 9257523042 at mymetropcs.com (9257523042@mymetropcs.com) Date: Tue Oct 21 04:34:19 2008 Subject: usb/97512: add Motorola A41x/V32x USB phone support (patch enclosed Message-ID: ) From torfinn.ingolfsen at broadpark.no Tue Oct 21 22:56:25 2008 From: torfinn.ingolfsen at broadpark.no (Torfinn Ingolfsen) Date: Tue Oct 21 22:56:31 2008 Subject: FreeBSD and Huawei E220 again - which is the best patch for RELENG_7 and RELENG_6? Message-ID: <20081022005514.0205c1b3.torfinn.ingolfsen@broadpark.no> Hello, It seems there are two PR's with patches for Huawei E220 support in FreeBSD: usb/118686[1] and usb/112905[2]. Both seems to be missing something; ie. maximum speed, monitor port functionality. Which one is best for machines running RELENG_[67]? And, when will a patch be included in thoise branches? I don't run -current, so I haven't tested anything there. I tested patch-2.diff from the first pr[1] on a machine running FreeBSD 7.0-stable: tingo@kg-work2$ uname -a FreeBSD kg-work2.kg4.no 7.0-STABLE FreeBSD 7.0-STABLE #2: Sun Oct 19 19:29:06 CEST 2008 root@kg-work2.kg4.no:/usr/obj/usr/src/sys/SX270 i386 The patch didn't apply cleanly, so I applied it manually. It works, but there are issues. Herer is some output from /var/log/messages: Oct 21 02:32:23 kg-work2 kernel: ucom0: on uhub1 Oct 21 02:32:23 kg-work2 kernel: ucom0: Could not find interrupt in Oct 21 02:32:23 kg-work2 kernel: device_attach: ucom0 attach returned 6 Oct 21 02:32:23 kg-work2 root: Unknown USB device: vendor 0x12d1 product 0x1003 bus uhub1 Oct 21 02:32:23 kg-work2 kernel: ucom0: on uhub1 Oct 21 02:32:23 kg-work2 kernel: ucom0: Could not find interrupt in Oct 21 02:32:23 kg-work2 kernel: device_attach: ucom0 attach returned 6 Oct 21 02:32:23 kg-work2 kernel: ucom0: at uhub1 port 2 (addr 2) disconnected Oct 21 02:32:25 kg-work2 kernel: ucom0: on uhub1 The "Could not find interrupt in" message means that I do have to unplug and replug the modem a few times before it attcahes. And some more messages:: Oct 21 02:32:45 kg-work2 kernel: ucom0: ubsa_request: STALLED Oct 21 02:33:25 kg-work2 last message repeated 9 times Oct 21 02:33:39 kg-work2 last message repeated 9 times And I have just tested the e220-patch-6.3 patch from the second pr[2] on a machine running RELENG_6: root@kg-omni1# uname -a FreeBSD kg-omni1.kg4.no 6.4-PRERELEASE FreeBSD 6.4-PRERELEASE #1: Mon Oct 20 19:23:26 CEST 2008 root@kg-omni1.kg4.no:/usr/obj/usr/src/sys/I81K i386 This patch also needed to be applied by hand. From /var/log/messages: Oct 22 00:32:30 kg-omni1 kernel: device_attach: ucom0 attach returned 6 Oct 22 00:32:54 kg-omni1 kernel: ucom0: at uhub0 port 2 (addr 2) disconnected Oct 22 00:33:10 kg-omni1 kernel: ucom0: HUAWEI Technologies HUAWEI Mobile, rev 1.10/0.00, addr 2 Oct 22 00:33:10 kg-omni1 kernel: ucom0: Could not find interrupt in Oct 22 00:33:10 kg-omni1 kernel: device_attach: ucom0 attach returned 6 Oct 22 00:33:10 kg-omni1 kernel: ucom0: HUAWEI Technologies HUAWEI Mobile, rev 1.10/0.00, addr 2 Oct 22 00:33:10 kg-omni1 kernel: ucom0: Could not find interrupt in Oct 22 00:33:10 kg-omni1 kernel: device_attach: ucom0 attach returned 6 Oct 22 00:33:52 kg-omni1 kernel: ucom0: at uhub0 port 1 (addr 2) disconnected Oct 22 00:34:04 kg-omni1 kernel: ucom0: HUAWEI Technologies HUAWEI Mobile, rev 1.10/0.00, addr 2 It seems I need more tries to get it to attach here. On this machine I haven't done any more testing yet. References: 1) http://www.freebsd.org/cgi/query-pr.cgi?pr=118686 2) http://www.freebsd.org/cgi/query-pr.cgi?pr=122905 -- Regards, Torfinn Ingolfsen From johannes-maria at t-online.de Wed Oct 22 15:05:10 2008 From: johannes-maria at t-online.de (Johannes-Maria Kaltenbach) Date: Wed Oct 22 15:05:21 2008 Subject: mounting an MP3 player? Message-ID: <48FF3DE8.5FED859B@t-online.de> Hello, on freebsd-questions I asked: > Hello, > > can anyone tell me how to mount an MP3 player (usb)? > I seem to be too stupid to figure it out by myself. > I thought it would be as easy as mounting a usb memory stick > which I can mount with a device file of the form /dev/da#s#, > e. g. /dev/da0s1, which is present after connecting the > memory stick, but not if connecting the player instead; in this > case I've got only /dev/da1 to /dev/da4. > I tried all these and also /dev/usb, /dev/usb1, ..., /dev/usb4, > but that doesn't work (as I expected but tried nevertheless). > > If I connect the player to the usb bus I get the following in > /var/log/messages: > > | kernel: umass1: TrekStor TrekStor, rev 2.00/1.00, addr 2 > > > and from usblist: > > | at scbus1 target 0 lun 0 (da1,pass0) > | at scbus1 target 0 lun 1 (da2,pass1) > | at scbus1 target 0 lun 2 (da3,pass2) > | at scbus1 target 0 lun 3 (da4,pass3) > > > and from usbdevs: > > | 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 addr 2: high speed, power 400 mA, config 1, TrekStor(0x2791), TrekStor(0x071b), rev 1.00 > | port 7 powered > | port 8 powered > > > Which device file should I use (or create?) to get access > to this MP3 player? > > (I'm using FreeBSD 6.0) > > > Thanks > Johannes-Maria Roland Smith wrote: [...] > > # file -s /dev/da* > > /dev/da0: writable, no read permission > > /dev/da2: writable, no read permission > > /dev/da3: writable, no read permission > > /dev/da4: writable, no read permission > > Looking into the source code for the file command, this is an indication > that the file command cannot open the files, even with the correct > permissions. the permission is 660 for all this /dev/da#-files > I guess that this device has some quirks that need to be addressed in > the driver. Maybe you can find more help on the freebsd-usb list. > > Roland Can someone on this list help me? Thanks in advance Johannes-Maria From jhs at berklix.org Wed Oct 22 23:02:23 2008 From: jhs at berklix.org (Julian Stacey) Date: Wed Oct 22 23:02:30 2008 Subject: mounting an MP3 player? In-Reply-To: Your message "Wed, 22 Oct 2008 16:51:20 +0200." <48FF3DE8.5FED859B@t-online.de> Message-ID: <200810222227.m9MMRlOF084446@fire.js.berklix.net> Hi, Reference: > From: Johannes-Maria Kaltenbach > Roland Smith wrote: > [...] > > > # file -s /dev/da* > > > /dev/da0: writable, no read permission > > > /dev/da2: writable, no read permission > > > /dev/da3: writable, no read permission > > > /dev/da4: writable, no read permission > > > > Looking into the source code for the file command, this is an indication > > that the file command cannot open the files, even with the correct > > permissions. > > the permission is 660 for all this /dev/da#-files Likely that excludes you as you are not owner or in same group. > > I guess that this device has some quirks that need to be addressed in > > the driver. Maybe you can find more help on the freebsd-usb list. BTW some mp3 players eg mine http://berklix.com/~jhs/txt/clipman/ seem to detect the power on the cable, & then turn on or off, & then devd see what the player has done, & itself removes devices or recreates (& if so with permissions that dont suit). Solutions include to move power switch of mp3 player to force on or off whatever, & on BSD end, either work as root, or hack the devd.conf so modes or ownership of device allow access to normal users. Beware if mp3 player decides to power down, that can cause DOS FS to disappear, mounts to fail, that if they were in use, might cause a crash, I reckon I've experienced that. Best experiment first on a spare BSD box, not a main server others rely on. Cheers, Julian -- Julian Stacey: BSDUnixLinux C Prog Admin SysEng Consult Munich www.berklix.com Mail plain ASCII text. HTML & Base64 text are spam. www.asciiribbon.org From johannes-maria at t-online.de Thu Oct 23 15:25:20 2008 From: johannes-maria at t-online.de (Johannes-Maria Kaltenbach) Date: Thu Oct 23 15:25:27 2008 Subject: mounting an MP3 player? References: <200810222227.m9MMRlOF084446@fire.js.berklix.net> Message-ID: <49009984.9A6D0C3D@t-online.de> Hello, thanks for your answer. Julian Stacey wrote: > > Hi, > Reference: > > From: Johannes-Maria Kaltenbach > > Roland Smith wrote: > > [...] > > > > # file -s /dev/da* > > > > /dev/da0: writable, no read permission > > > > /dev/da2: writable, no read permission > > > > /dev/da3: writable, no read permission > > > > /dev/da4: writable, no read permission > > > > > > Looking into the source code for the file command, this is an indication > > > that the file command cannot open the files, even with the correct > > > permissions. > > > > the permission is 660 for all this /dev/da#-files > > Likely that excludes you as you are not owner or in same group. I tried the mounting as root. [and I also tried chmod 666, just to be sure] > > > I guess that this device has some quirks that need to be addressed in > > > the driver. Maybe you can find more help on the freebsd-usb list. > > BTW some mp3 players eg mine > http://berklix.com/~jhs/txt/clipman/ > seem to detect the power on the cable, & then turn on or off, > & then devd see what the player has done, & itself removes devices > or recreates (& if so with permissions that dont suit). I switched the on/off on the mp3 player but it had no effect; still not mountable (at least I'm not able to do it). Independent of the on/off switch the display on the mp3 player is always lighted when connected to the PC. > Solutions include to move power switch of mp3 player to force on > or off whatever, & on BSD end, either work as root, or hack the > devd.conf so modes or ownership of device allow access to normal > users. didn't solve my problem. > Beware if mp3 player decides to power down, that can cause DOS FS > to disappear, mounts to fail, that if they were in use, might cause > a crash, I reckon I've experienced that. Best experiment first on > a spare BSD box, not a main server others rely on. thanks for the warning, never expected such a problem; luckily it didn't happen (yet?) to me. It's not a server, just my desktop PC, I'm the only user. Thanks, Johannes-Maria From torfinn.ingolfsen at broadpark.no Thu Oct 23 21:01:51 2008 From: torfinn.ingolfsen at broadpark.no (Torfinn Ingolfsen) Date: Thu Oct 23 21:01:58 2008 Subject: FreeBSD and Huawei E220 again - which is the best patch for RELENG_7 and RELENG_6? In-Reply-To: <20081022005514.0205c1b3.torfinn.ingolfsen@broadpark.no> References: <20081022005514.0205c1b3.torfinn.ingolfsen@broadpark.no> Message-ID: <20081023230149.06907187.torfinn.ingolfsen@broadpark.no> On Wed, 22 Oct 2008 00:55:14 +0200 Torfinn Ingolfsen wrote: > It seems there are two PR's with patches for Huawei E220 support in > FreeBSD: usb/118686[1] and usb/112905[2]. Both seems to be missing > something; ie. maximum speed, monitor port functionality. > > Which one is best for machines running RELENG_[67]? Ok, I found the u3g[1] driver. It compiled find under RELENG_7, and it detects my E220 without any further tricks: Oct 23 22:49:14 kg-work2 kernel: ucom0: on uhub1 Oct 23 22:49:14 kg-work2 kernel: ucom0: Could not find interrupt in Oct 23 22:49:14 kg-work2 kernel: device_attach: ucom0 attach returned 6 Oct 23 22:49:14 kg-work2 kernel: ucom0: on uhub1 Oct 23 22:49:14 kg-work2 kernel: ucom0: Could not find interrupt in Oct 23 22:49:14 kg-work2 kernel: device_attach: ucom0 attach returned 6 Oct 23 22:49:15 kg-work2 kernel: ucom0: at uhub1 port 2 (addr 2) disconnected Oct 23 22:49:15 kg-work2 root: Unknown USB device: vendor 0x12d1 product 0x1003 bus uhub1 Oct 23 22:49:16 kg-work2 kernel: ucom0: on uhub1 Nice. I will test this one on RELENG_6 if it compiles. References: 1) http://people.freebsd.org/~n_hibma/u3g.html -- Regards, Torfinn Ingolfsen From durian at shadetreesoftware.com Thu Oct 23 21:30:03 2008 From: durian at shadetreesoftware.com (Mike Durian) Date: Thu Oct 23 21:30:09 2008 Subject: usb/128324: Unrestricted baud rates on PL2303X chips Message-ID: <200810232120.m9NLKT9m002611@carwash.boogie.com> >Number: 128324 >Category: usb >Synopsis: Unrestricted baud rates on PL2303X chips >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-usb >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Thu Oct 23 21:30:02 UTC 2008 >Closed-Date: >Last-Modified: >Originator: Mike Durian >Release: FreeBSD 7.1-PRERELEASE i386 >Organization: >Environment: System: FreeBSD carwash.boogie.com 7.1-PRERELEASE FreeBSD 7.1-PRERELEASE #14: Thu Oct 23 14:37:33 MDT 2008 root@carwash.boogie.com:/usr/obj/usr/src/sys/BOOGIE i386 >Description: A comment in the list off acceptable baud rates in the uplcom driver states that the PL2303X can set any rate. If this is the case, then the check for standardized rates can be removed for this chip type. I don't know if the PL2303X can really set any baud rate, but with the patch below, I can at least set the rate to 10400, which is not one of the rates listed in uplcom_rates. >How-To-Repeat: >Fix: --- uplcom.c.orig 2008-10-23 14:25:07.000000000 -0600 +++ uplcom.c 2008-10-23 14:29:21.000000000 -0600 @@ -810,13 +810,22 @@ DPRINTF(("uplcom_param: sc = %p\n", sc)); - /* Check requested baud rate */ - for (i = 0; i < N_UPLCOM_RATES; i++) - if (uplcom_rates[i] == t->c_ospeed) - break; - if (i == N_UPLCOM_RATES) { - DPRINTF(("uplcom_param: bad baud rate (%d)\n", t->c_ospeed)); - return (EIO); + /* + * Given the comment found in the uplcom_rates definition, + * we do not need to verify the baud rate is a "common" rate + * when using 2303X chips. They support any baud rate, so + * we can just accept what we are passed. + */ + if (sc->sc_chiptype != TYPE_PL2303X) { + /* Check requested baud rate */ + for (i = 0; i < N_UPLCOM_RATES; i++) + if (uplcom_rates[i] == t->c_ospeed) + break; + if (i == N_UPLCOM_RATES) { + DPRINTF(("uplcom_param: bad baud rate (%d)\n", + t->c_ospeed)); + return (EIO); + } } USETDW(ls.dwDTERate, t->c_ospeed); >Release-Note: >Audit-Trail: >Unformatted: From antik at bsd.ee Fri Oct 24 07:05:41 2008 From: antik at bsd.ee (Andrei Kolu) Date: Fri Oct 24 07:05:48 2008 Subject: USB APC ups does not show up after boot Message-ID: <49016E62.6050208@bsd.ee> FreeBSD 7.1-PRERELEASE #0: Wed Oct 22 23:55:13 EEST 2008 Motherboard: Gigabyte X48-DS4 After boot-up I see messages /var/log/messages: ----------------------------------------------------------- Oct 24 09:27:13 testiserver apcupsd[734]: apcupsd FATAL ERROR in bsd-usb.c at line 735 Cannot find UPS device -- For a link to detailed USB trouble shooting information, please see . Oct 24 09:27:13 testiserver apcupsd[734]: apcupsd error shutdown completed ----------------------------------------------------------- When I reinsert UPS data cable then ups shows up: ----------------------------------------------------------- ugen0: on uhub1 ----------------------------------------------------------- Restart apcupsd and everything is working just fine. Is it motherboard problem with USB or something is broken in FreeBSD? From hselasky at c2i.net Fri Oct 24 14:41:30 2008 From: hselasky at c2i.net (Hans Petter Selasky) Date: Fri Oct 24 14:41:37 2008 Subject: USB APC ups does not show up after boot In-Reply-To: <49016E62.6050208@bsd.ee> References: <49016E62.6050208@bsd.ee> Message-ID: <200810241643.35259.hselasky@c2i.net> Are there any error messages in dmesg ? --HPS On Friday 24 October 2008, Andrei Kolu wrote: > FreeBSD 7.1-PRERELEASE #0: Wed Oct 22 23:55:13 EEST 2008 > Motherboard: Gigabyte X48-DS4 > > After boot-up I see messages /var/log/messages: > ----------------------------------------------------------- > Oct 24 09:27:13 testiserver apcupsd[734]: apcupsd FATAL ERROR in > bsd-usb.c at line 735 Cannot find UPS device -- For a link to detailed > USB trouble shooting information, please see > . > Oct 24 09:27:13 testiserver apcupsd[734]: apcupsd error shutdown completed > ----------------------------------------------------------- > > When I reinsert UPS data cable then ups shows up: > ----------------------------------------------------------- > ugen0: 1.10/1.06, addr 2> on uhub1 > ----------------------------------------------------------- > > Restart apcupsd and everything is working just fine. Is it motherboard > problem with USB or something is broken in FreeBSD? > _______________________________________________ > 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 mwm at mired.org Fri Oct 24 15:07:10 2008 From: mwm at mired.org (Mike Meyer) Date: Fri Oct 24 15:07:17 2008 Subject: USB APC ups does not show up after boot In-Reply-To: <49016E62.6050208@bsd.ee> References: <49016E62.6050208@bsd.ee> Message-ID: <20081024103732.623aa26d@bhuda.mired.org> On Fri, 24 Oct 2008 09:42:42 +0300 Andrei Kolu wrote: > FreeBSD 7.1-PRERELEASE #0: Wed Oct 22 23:55:13 EEST 2008 > Motherboard: Gigabyte X48-DS4 > > After boot-up I see messages /var/log/messages: > ----------------------------------------------------------- > Oct 24 09:27:13 testiserver apcupsd[734]: apcupsd FATAL ERROR in > bsd-usb.c at line 735 Cannot find UPS device -- For a link to detailed > USB trouble shooting information, please see > . > Oct 24 09:27:13 testiserver apcupsd[734]: apcupsd error shutdown completed > ----------------------------------------------------------- > > When I reinsert UPS data cable then ups shows up: > ----------------------------------------------------------- > ugen0: 1.10/1.06, addr 2> on uhub1 > ----------------------------------------------------------- > > Restart apcupsd and everything is working just fine. Is it motherboard > problem with USB or something is broken in FreeBSD? I get the exact same behavior on a Gigabyte GA-P35-DS3L, running either 7-STABLE from just post 7.0-RELEASE and yesterday. Both are amd64 kernels. Since all my other usb devices behave properly, I suspect it's a quirk in the APC USB implementation. http://www.mired.org/consulting.html Independent Network/Unix/Perforce consultant, email for more information. O< ascii ribbon campaign - stop html mail - www.asciiribbon.org From torfinn.ingolfsen at broadpark.no Fri Oct 24 15:58:03 2008 From: torfinn.ingolfsen at broadpark.no (Torfinn Ingolfsen) Date: Fri Oct 24 15:58:10 2008 Subject: FreeBSD and Huawei E220 again - which is the best patch for RELENG_7 and RELENG_6? In-Reply-To: <20081022005514.0205c1b3.torfinn.ingolfsen@broadpark.no> References: <20081022005514.0205c1b3.torfinn.ingolfsen@broadpark.no> Message-ID: <20081024172746.5d047de3.torfinn.ingolfsen@broadpark.no> On Wed, 22 Oct 2008 00:55:14 +0200 Torfinn Ingolfsen wrote: > And I have just tested the e220-patch-6.3 patch from the second pr[2] > on a machine running RELENG_6: > root@kg-omni1# uname -a > FreeBSD kg-omni1.kg4.no 6.4-PRERELEASE FreeBSD 6.4-PRERELEASE #1: Mon > Oct 20 19:23:26 CEST 2008 > root@kg-omni1.kg4.no:/usr/obj/usr/src/sys/I81K i386 > [snip] > It seems I need more tries to get it to attach here. > On this machine I haven't done any more testing yet. Update: the RELENG_6 machine is my gateway. I am now connected to the internet via the E220: root@kg-omni1# ifconfig tun0 tun0: flags=8051 mtu 1500 inet 89.8.89.95 --> 10.2.1.5 netmask 0xffffffff Opened by PID 46510 The main problem wasn't in geting the E220 working, it was with me remembering and re-learning about ppp, dns, firewall and stuff. Man, how much I have forgotten over the years! -- Regards, Torfinn Ingolfsen From v.velox at vvelox.net Fri Oct 24 23:00:01 2008 From: v.velox at vvelox.net (Zane C.B.) Date: Fri Oct 24 23:00:08 2008 Subject: usbhitctl problems Message-ID: <20081024174358.4a45b594@vixen42> I just bought a new USB keyboard. I am seeing it as showing up as both a '/dev/uhid0' and '/dev/ukbd0'. Given I am not seeing any keyboard input when testing with xev, I am assuming that the extra keys on this board are set up on '/dev/uhid0'. When I try to test with 'usbhidctl -l -f /dev/uhid0 -a -v' I don't seem to get any output. Any thoughts? If any one is curious, they keyboard in question is a MS Digital Media keyboard 3000. -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 195 bytes Desc: not available Url : http://lists.freebsd.org/pipermail/freebsd-usb/attachments/20081024/43b13b95/signature.pgp From hselasky at c2i.net Sun Oct 26 15:31:17 2008 From: hselasky at c2i.net (Hans Petter Selasky) Date: Sun Oct 26 15:31:24 2008 Subject: USB4BSD release candidate number 3 - request for review In-Reply-To: <20081025181603.GD83037@elvis.mu.org> References: <200810251925.47273.hselasky@c2i.net> <20081025181603.GD83037@elvis.mu.org> Message-ID: <200810261633.22020.hselasky@c2i.net> Hi, A new USB release is available: http://www.selasky.org/hans_petter/usb4bsd/for_review/ %md5 usb2_release_003.* MD5 (usb2_release_003.diff) = e31a032d0234bb7d72eb968c33118d84 MD5 (usb2_release_003.tar.gz) = 0a0d9dd44e93ba2ceaa849c577f6fecf %sha256 usb2_release_003.* SHA256 (usb2_release_003.diff) = 9b4359f76eeef43d9b6c0c524198e529f2debff14e6158ebac8f35d51efb211b SHA256 (usb2_release_003.tar.gz) = 3040714546fc21bc2943c2e7aec1734150845271664aad44639ff5c553e3ed31 Changes since 002 release: 1) LibUSB20 is now fully documented 2) LibUSB20 is now fully backwards compatible with LibUSB 0.1.12 from /usr/ports/devel/libusb . 3) All Makefiles have a license in them 4) "usbconfig" now supports dynamic quirks (add, remove and view) 5) All USB modules have been fragmented into smaller parts: ./Makefile ./bluetooth/Makefile ./bluetooth_fw/Makefile ./bluetooth_ng/Makefile ./controller/Makefile ./controller_at91dci/Makefile ./controller_ehci/Makefile ./controller_musb/Makefile ./controller_ohci/Makefile ./controller_uhci/Makefile ./controller_uss820dci/Makefile ./core/Makefile ./ethernet/Makefile ./ethernet_aue/Makefile ./ethernet_axe/Makefile ./ethernet_cdce/Makefile ./ethernet_cue/Makefile ./ethernet_dav/Makefile ./ethernet_kue/Makefile ./ethernet_rue/Makefile ./image/Makefile ./input/Makefile ./input_hid/Makefile ./input_kbd/Makefile ./input_ms/Makefile ./misc/Makefile ./misc_dbp/Makefile ./misc_fm/Makefile ./ndis/Makefile ./quirk/Makefile ./scanner/Makefile ./serial/Makefile ./serial_ark/Makefile ./serial_bsa/Makefile ./serial_bser/Makefile ./serial_chcom/Makefile ./serial_cycom/Makefile ./serial_foma/Makefile ./serial_ftdi/Makefile ./serial_gensa/Makefile ./serial_ipaq/Makefile ./serial_lpt/Makefile ./serial_mct/Makefile ./serial_modem/Makefile ./serial_moscom/Makefile ./serial_plcom/Makefile ./serial_visor/Makefile ./serial_vscom/Makefile ./storage/Makefile ./storage_ata/Makefile ./storage_fs/Makefile ./storage_mass/Makefile ./storage_rio/Makefile ./template/Makefile ./wlan/Makefile ./wlan_ral/Makefile ./wlan_rum/Makefile ./wlan_zyd/Makefile The following file has been deleted: src/sys/dev/usb2/controller/uss820dci_pccard.c --HPS From olivier at gid0.org Sun Oct 26 22:30:19 2008 From: olivier at gid0.org (Olivier Smedts) Date: Sun Oct 26 22:30:26 2008 Subject: USB4BSD release candidate number 3 - request for review In-Reply-To: <200810261633.22020.hselasky@c2i.net> References: <200810251925.47273.hselasky@c2i.net> <20081025181603.GD83037@elvis.mu.org> <200810261633.22020.hselasky@c2i.net> Message-ID: <20081026215723.GA20868@q.gid0.org> On Sun, Oct 26, 2008 at 04:33:20PM +0100, Hans Petter Selasky wrote: > Hi, > > A new USB release is available: > > http://www.selasky.org/hans_petter/usb4bsd/for_review/ Hello, I'm using a fresh CURRENT src tree and your patchs. I've got a little patch against usb2_release_003.diff to allow it to patch the latest sys/conf/kmod.mk. Thanks for your work ! Olivier > %md5 usb2_release_003.* > MD5 (usb2_release_003.diff) = e31a032d0234bb7d72eb968c33118d84 > MD5 (usb2_release_003.tar.gz) = 0a0d9dd44e93ba2ceaa849c577f6fecf > %sha256 usb2_release_003.* > SHA256 (usb2_release_003.diff) = > 9b4359f76eeef43d9b6c0c524198e529f2debff14e6158ebac8f35d51efb211b > SHA256 (usb2_release_003.tar.gz) = > 3040714546fc21bc2943c2e7aec1734150845271664aad44639ff5c553e3ed31 > > Changes since 002 release: > > 1) LibUSB20 is now fully documented > 2) LibUSB20 is now fully backwards compatible with LibUSB 0.1.12 > from /usr/ports/devel/libusb . > 3) All Makefiles have a license in them > 4) "usbconfig" now supports dynamic quirks (add, remove and view) > 5) All USB modules have been fragmented into smaller parts: > ./Makefile > ./bluetooth/Makefile > ./bluetooth_fw/Makefile > ./bluetooth_ng/Makefile > ./controller/Makefile > ./controller_at91dci/Makefile > ./controller_ehci/Makefile > ./controller_musb/Makefile > ./controller_ohci/Makefile > ./controller_uhci/Makefile > ./controller_uss820dci/Makefile > ./core/Makefile > ./ethernet/Makefile > ./ethernet_aue/Makefile > ./ethernet_axe/Makefile > ./ethernet_cdce/Makefile > ./ethernet_cue/Makefile > ./ethernet_dav/Makefile > ./ethernet_kue/Makefile > ./ethernet_rue/Makefile > ./image/Makefile > ./input/Makefile > ./input_hid/Makefile > ./input_kbd/Makefile > ./input_ms/Makefile > ./misc/Makefile > ./misc_dbp/Makefile > ./misc_fm/Makefile > ./ndis/Makefile > ./quirk/Makefile > ./scanner/Makefile > ./serial/Makefile > ./serial_ark/Makefile > ./serial_bsa/Makefile > ./serial_bser/Makefile > ./serial_chcom/Makefile > ./serial_cycom/Makefile > ./serial_foma/Makefile > ./serial_ftdi/Makefile > ./serial_gensa/Makefile > ./serial_ipaq/Makefile > ./serial_lpt/Makefile > ./serial_mct/Makefile > ./serial_modem/Makefile > ./serial_moscom/Makefile > ./serial_plcom/Makefile > ./serial_visor/Makefile > ./serial_vscom/Makefile > ./storage/Makefile > ./storage_ata/Makefile > ./storage_fs/Makefile > ./storage_mass/Makefile > ./storage_rio/Makefile > ./template/Makefile > ./wlan/Makefile > ./wlan_ral/Makefile > ./wlan_rum/Makefile > ./wlan_zyd/Makefile > > The following file has been deleted: > src/sys/dev/usb2/controller/uss820dci_pccard.c > > --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" -- Olivier Smedts _ ASCII ribbon campaign ( ) e-mail: olivier@gid0.org - against HTML email & vCards X www: http://www.gid0.org - against proprietary attachments / \ "Il y a seulement 10 sortes de gens dans le monde : ceux qui comprennent le binaire, et ceux qui ne le comprennent pas." -------------- next part -------------- --- usb2_release_003.diff.orig 2008-10-26 22:44:40.000000000 +0100 +++ usb2_release_003.diff 2008-10-26 22:46:28.000000000 +0100 @@ -151,9 +151,9 @@ dev/sound/midi/mpu_if.m dev/sound/midi/mpufoi_if.m \ dev/sound/midi/synth_if.m dev/usb/usb_if.m isa/isa_if.m \ + dev/usb2/core/usb2_if.m \ - kern/bus_if.m kern/cpufreq_if.m kern/device_if.m kern/serdev_if.m \ + kern/bus_if.m kern/clock_if.m \ + kern/cpufreq_if.m kern/device_if.m kern/serdev_if.m \ libkern/iconv_converter_if.m opencrypto/cryptodev_if.m \ - pc98/pc98/canbus_if.m --- //depot/vendor/freebsd/src/sys/dev/sound/pcm/channel.c 2007/12/03 14:32:07 +++ //depot/projects/usb/src/sys/dev/sound/pcm/channel.c 2008/07/10 08:43:16 @@ -570,13 +570,26 @@ From bugmaster at FreeBSD.org Mon Oct 27 11:07:24 2008 From: bugmaster at FreeBSD.org (FreeBSD bugmaster) Date: Mon Oct 27 11:09:26 2008 Subject: Current problem reports assigned to freebsd-usb@FreeBSD.org Message-ID: <200810271107.m9RB7Nfb002143@freefall.freebsd.org> Note: to view an individual PR, use: http://www.freebsd.org/cgi/query-pr.cgi?pr=(number). The following is a listing of current problems submitted by FreeBSD users. These represent problem reports covering all versions including experimental development code and obsolete releases. S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/128324 usb Unrestricted baud rates on PL2303X chips p usb/128115 usb [uplcom] [patch] USB-RS232 circuets on chip PL2303HX n o usb/128093 usb [ohci] panic in ohci_softintr: OXFER(xfer)->xfer.pipe o usb/127980 usb [QUIRK] Fix Samsung YP U2 MP3 player on 7.x and 8.x o usb/127926 usb [boot] USB Timeout during bootup o usb/127549 usb [umass] [patch] Meizu MiniPlayer M6 (SL) requires some f usb/127516 usb after csup src-all RELENG_7 s usb/127453 usb [request] ubsa, uark, ubser, uftdi, and friends should o usb/127423 usb [boot] BTX halted on Gigabyte GA-MA69VM-S2 / AMD Sempr o usb/127342 usb [boot] cannot enable usb keyboard and mouse support in o kern/127222 usb [ohci]: Regression in 7.0 usb storage generic driver o usb/126884 usb [patch] Bug in buffer handling in ugen.c f kern/126848 usb [usb]: USB Keyboard hangs during Installation o usb/126740 usb [ulpt] doesn't work on 7.0-RELEASE, 10 second stall be o usb/126519 usb [usb] [panic] panic when plugging in an iphone o kern/126396 usb [panic] kernel panic after unplug USB Bluetooth device o usb/125736 usb [ukbd] [hang] system hangs after AT keyboard detect if o usb/125631 usb [usb][ums] kernel panic during bootup while 'Logitech o usb/125510 usb repeated plug and unplug of USB mass storage devices l o usb/125450 usb [panic] Removing USB flash card while being accessed c o usb/125264 usb [patch] sysctl for set usb mouse rate (very useful for o usb/125238 usb Habu Mouse turns off in X o usb/125088 usb Touchpad not detected on Adesso AKB-430UG USB kbd/pad o usb/125072 usb [uplcom] [patch] add Mobile Action MA-620 Infrared Ada o usb/124980 usb [panic] kernel panic on detaching unmounted umass devi o kern/124777 usb [ucom] USB cua devices don't revert to tty devices whe o usb/124758 usb rum panics SMP kernel o usb/124708 usb [panic] Kernel panic on USB KVM reattach o usb/124604 usb Wireless Mouse doesn't work o usb/123969 usb Supermicro H8SMi-2 usb problem o usb/123714 usb Panic when hald-storage-probe runs with umass device i o usb/123691 usb usbd(8): usbd hangs o usb/123690 usb Panic on USB device insertion when usb loaded as a mod o usb/123611 usb [usb] BBB reset failed, STALLED from Imation/Mitsumi U o usb/123509 usb [umass] continuous reset Samsung SGH-G600 phone o usb/123352 usb Add Option GTMAX3.6/7.2 and Quallcomm MMC module devic o usb/123351 usb Add Reiner SCT cyberJack, Omnikey [26]020, Fujitsu Sie p usb/123211 usb [udav] if_udav driver doesn't support Davicom 9601 USB p usb/123148 usb [uscanner] [patch] Epson DX8400/50 needs uscanner to s o usb/122992 usb MotoROKR Z6 Phone not recognised by umass as USB disk. o usb/122956 usb Support for Novatel Wireless XU870 3G Card o usb/122936 usb [ucom][ubsa] Device does not receive interrupt o usb/122905 usb [ubsa] [patch] add Huawei E220 to ubsa o usb/122819 usb Patch to provide dynamic additions to the usb quirks t o usb/122813 usb [udbp] [request] udbp driver should be removed in favo o usb/122621 usb [patch] [request] New driver for Sierra Wireless 3G US p usb/122610 usb Add Verizon v740 support to ubsa(4) o usb/122547 usb [ehci] USB Printer not being recognized after reboot o usb/122539 usb [ohci] [panic] AnyDATA ADU-E1000D - kernel panic: ohci o usb/122483 usb [panic] [ulpt] Repeatable panic in 7.0-STABLE o usb/122119 usb [umass] umass device causes creation of daX but not da o usb/122025 usb [patch] uscanner does not attach to Epson RX620 printe o usb/121755 usb [ohci] [patch] Fix panic after ohci/uhub cardbus devic o usb/121734 usb [ugen] ugen HP1022 printer device not working since up o usb/121708 usb [keyboard] nforce 650i mobo w/ usb keyboard infinite k o usb/121474 usb [cam] [patch] QUIRK: SAMSUNG HM250JI in LaCie usb hard o usb/121426 usb [patch] [uscanner] add HP ScanJet 3570C o usb/121275 usb [boot] FreeBSD fails to boot with usb legacy support e o usb/121232 usb USB CardBus card removal causes reboot sometimes o usb/121184 usb [uipaq] [patch] add ids from linux ipaq driver (plus a o usb/121169 usb [umass] Issues with usb mp3 player o usb/121045 usb [uftdi] [patch] Add support for PC-OP-RS1 and KURO-RS o usb/120786 usb Kernel panic when forced umount of a dettached USB Har o usb/120729 usb [panic] fault while in kernel mode with connecting USB o usb/120572 usb [umass] [patch] quirk to support ASUS P535 as umass (a o usb/120321 usb [hang] System hangs when transferring data to WD MyBoo o usb/120283 usb [panic] Automation reboot with wireless keyboard & mou o usb/120034 usb [hang] 6.2 & 6.3 hangs on boot at usb0: OHCI with 1.5 o usb/120017 usb [ehci] [patch] CS5536 (AMD Geode) USB 2.0 quirk o usb/119981 usb [axe] [patch] add support for LOGITEC LAN-GTJ/U2 gigab o usb/119977 usb [ums] Mouse does not work in a Cherry-USB keyboard/mou o usb/119653 usb [cam] [patch] iriver s7 player sync cache error patch o usb/119633 usb [umass] umass0: BBB reset failed, IOERROR [regression] o usb/119513 usb [irq] inserting dlink dwl-g630 wireless card results i o usb/119509 usb USB flaky on Dell Optiplex 755 o usb/119481 usb [hang] FreeBSD not responding after connecting USB-Mas o usb/119389 usb [umass] Sony DSC-W1 CBI reset failed, STALLED [regress o usb/119227 usb [ubsa] [patch] ubsa buffer is too small; should be tun o usb/119201 usb [cam] [patch] Quirks for Olympus FE-210 camera, LG and o usb/119150 usb [usbdevs] [patch] new usbdevs for CDMA 1xEVDO devices o usb/118686 usb [usbdevs] [patch] teach usbdevs / ubsa(4) about Huawei o usb/118485 usb [usbdevs] [patch] Logitech Headset Workaround o usb/118480 usb [umass] Timeout in USB mass storage freezes vfs layer o usb/118353 usb [panic] [ppp] repeatable kernel panic during ppp(4) se o usb/118141 usb [ucom] usb serial and nokia phones ucomreadcb ucomread o usb/118140 usb [ucom] [patch] quick hack for ucom to get it behave wi o usb/118098 usb [umass] 6th gen iPod causes problems when disconnectin o usb/117955 usb [umass] [panic] inserting minolta dimage a2 crashes OS o usb/117946 usb [panic] D-Link DUB-E100 rev. B1 crashes FreeBSD 7.0-BE o usb/117938 usb [ums] [patch] Adding support for MS WL Natural and MS o usb/117911 usb [ums] [request] Mouse Gembird MUSWC not work o usb/117893 usb [umass] Lacie USB DVD writing failing o usb/117613 usb [uhci] [irq] uhci interrupt storm & USB leaked memory o usb/117598 usb [uaudio] [patch] Not possible to record with Plantroni o usb/117546 usb [uftdi] [patch] Add MaxStream ZigBee product ID to uft o usb/117313 usb [umass] [panic] panic on usb camera insertion o usb/117205 usb [uscanner] [patch] uscanner support for HP ScanJet 447 o usb/117200 usb [ugen] ugen0 prints strange string on attach if detach o usb/117185 usb [umodem] [patch] Add support for UNION interface descr o usb/117183 usb [panic] USB/fusefs -- panic while transferring large a o usb/117075 usb [scsi_da] [patch] quirk: USB Samsung YP-U3 MP3 o usb/116947 usb [ukbd] [patch] [regression] enable boot protocol on th o usb/116699 usb [usbhid] USB HID devices do not initialize at system b o usb/116561 usb [umodem] [panic] RELENG_6 umodem panic "trying to slee o usb/116282 usb [ulpt] Cannot print on USB HP LJ1018 or LJ1300 o usb/115935 usb [usbdevs] [patch] kernel counterproductively attaches o usb/115933 usb [uftdi] [patch] RATOC REX-USB60F (usb serial converter o usb/115400 usb [ehci] Problem with EHCI on ASUS M2N4-SLI o usb/115298 usb [ulpt] [panic] Turning off USB printer panics kernel o usb/114916 usb [umass] [patch] USB Maxtor drive (L300RO) requires qui o kern/114780 usb [uplcom] [panic] Panics while stress testing the uplco o usb/114682 usb [umass] generic USB media-card reader unusable o usb/114310 usb [libusb] [patch] [panic] USB hub attachment panics ker o usb/114068 usb [umass] [patch] Problems with connection of the umass o conf/114013 usb [patch] WITHOUT_USB allow to compil a lot of USB stuff s usb/113977 usb [request] Need a way to set mode of USB disk's write c o usb/113672 usb [ehci] [panic] Kernel panic with AEWIN CB6971 s usb/113629 usb [ukbd] Dropped USB keyboard events on Dell Latitude D6 o usb/113432 usb [ucom] WARNING: attempt to net_add_domain(netgraph) af a usb/113060 usb [usbdevs] [patch] Samsung printer not working in bidir o usb/112944 usb [ulpt] [patch] Bi-directional access to HP LaserJet 10 o usb/112640 usb [usb] [hang] Kernel freezes when writing a file to an o usb/112631 usb [panic] Problem with SONY DSC-S80 camera on umount s usb/112568 usb [umass] [request] USB mode may wrong when mounting Pla o usb/112463 usb [umass] problem with Samsung USB DVD writer, libscg an o usb/112461 usb [ehci] [request] ehci USB 2.0 doesn't work on nforce4 o usb/111753 usb [uhid] [panic] Replicable system panic involving UHID s usb/110991 usb [usbdevs] [patch] QUIRK: Super Top IDE DEVICE (depends o usb/110988 usb [umass] [patch] Handling of quirk IGNORE_RESIDUE is um o usb/110856 usb [ugen] [patch] interrupt in msgs are truncated when bu o usb/110197 usb [umass] Sony PSP umass device does not detach from EHC o usb/109397 usb [panic] on boot from USB flash o usb/109274 usb [usb] MCP55 USB Controller fails to attach in AMD64 Cu o usb/108513 usb [umass] Creative MuVo TX FM fails in 6.2-RELEASE [regr s usb/108344 usb [panic] kernel with atausb panics when unplugging USB o usb/108056 usb [ohci] Mouse gets powered off during device probe when o usb/107935 usb [uplcom] [panic] panic while accessing /dev/cuaU0 o usb/107924 usb [patch] usbd(8) does not call detach o usb/107848 usb [umass] [request] cannot access Samsung flash disk o usb/107827 usb [ohci] [panic] ohci_add_done addr not found o usb/107496 usb [uhub] USB device problem on RELENG_6_2 (SHORT_XFER) [ o usb/107446 usb [umass] umass problems (usb and fw disks) o usb/107388 usb [patch] [request] new driver: add utoppy device from N o usb/107248 usb [umass] [patch] scsi_da.c quirk for Cowon iAUDIO X5 MP o usb/107243 usb [cam] [patch] Apacer USB Flash Drive quirk o usb/106861 usb [usbdevs] [patch]: usbdevs update: Add product ACER Ze s usb/106832 usb USB HP printer is not detected by kernel when ACPI ena o usb/106648 usb [umass] [hang] USB Floppy on D1950 10 min Hang on Inse o usb/106621 usb [axe] [patch] DLINK DUB-E100 support broken o usb/106615 usb [uftdi] uftdi module does not automatically load with o usb/106041 usb [usb] [request] FreeBSD does not recognise Mustek Bear o usb/105361 usb [panic] Kernel panic during unmounting mass storage (C o usb/105186 usb [ehci] [panic] USB 2.0/ehci on FreeBSD 6.2-PRE/AMD64 c o usb/105065 usb [ata] SATA - USB Bridge o usb/104830 usb [umass] system crashes when copying data to umass devi o usb/104645 usb [umass] [request] Rave C-201 MP3 player does not commu o usb/104352 usb [ural] [patch] ural driver doesnt work o usb/104292 usb [umass] [hang] system lockup on forced umount of usb-s o usb/104290 usb [umass] [patch] quirk: TOSHIBA DVD-RAM drive (libretto o usb/103917 usb [uhub] USB driver reports "Addr 0 should never happen" o usb/103418 usb usbhidctl(1): [patch] [request] usbhidctl: add ability o usb/103289 usb [request] USB 2.0 problems on AMD LX-800 CPU and CS-55 o usb/103046 usb [ulpt] [patch] ulpt event driven I/O with select(2) an o usb/103025 usb [uhub] [panic] wrong detection of USB device for FreeB o usb/102976 usb [panic] Casio Exilim Digital Camera causes panic on in o usb/102678 usb [keyboard] Dell PowerEdge DRAC5 USB Keyboard does not f usb/102096 usb [patch] usbd(8) does not handle multiple devices in on o usb/102066 usb [ukbd] usb keyboard and multimedia keys don't work o usb/101775 usb [libusbhid] [patch] possible error in report descripto o usb/101761 usb [usb] [patch] [request] usb.h: increase maximal size o o usb/101752 usb [umass] [panic] 6.1-RELEASE kernel panic on usb device o usb/101448 usb [ohci] FBSD 6.1-STABLE/AMD64 crashes under heavy USB/O o usb/101096 usb [ural] [panic] USB WLAN occasionally causes kernel-pan o usb/100746 usb [keyboard] system does not boot due to USB keyboard pr o usb/99538 usb [keyboard] while using USB keyboard default params of o usb/99431 usb [keyboard] FreeBSD on MSI 6566E (Intel 845E motherboar o usb/98343 usb [boot] BBB reset failed errors with Creative Muvo MP3 o usb/97472 usb [cam] [patch] add support for Olympus C150,D390 s usb/97286 usb [mouse] [request] MS Wireless Intellimouse Explorer 2. o usb/97175 usb [umass] [hang] USB cardreader hangs system o usb/96457 usb [umass] [panic] fatback on umass = reboot o usb/96381 usb [cam] [patch] add a quirk table entry for a flash ram o usb/96224 usb [usb] [msdosfs] mount_msdosfs cause page fault in sync s usb/96120 usb [ums] [request] USB mouse not always detected s usb/95636 usb [umass] [boot] 5 minute delay at boot when using VT620 o usb/95562 usb [umass] Write Stress in USB Mass drive causes "vinvalb s usb/95348 usb [keyboard] USB keyboard unplug causes noise on screen o usb/95037 usb [umass] USB disk not recognized on hot-plug. o usb/94897 usb [panic] Kernel Panic when cleanly unmounting USB disk o usb/94717 usb [ulpt] Reading from /dev/ulpt can break work of a UHCI o usb/94384 usb [panic] kernel panic with usb2 hardware o usb/93872 usb [cam] [patch] SCSI quirk required for ELTA 8061 OL USB o usb/93828 usb [ohci] [panic] ohci causes panic on boot (HP Pavillion o usb/93408 usb [mouse] hw.acpi.cpu.cx_lowest=C3 on AMD Turion causes o usb/93389 usb [umass] [patch] Digital Camera Pentax S60 don't work o usb/93155 usb [ulpt] /dev/ulpt0: device busy, USB printer does not w o usb/92852 usb [ums] [patch] Vertical scroll not working properly on o usb/92171 usb [panic] panic unplugging Vodafone Mobile Connect (UMTS o usb/92142 usb [uhub] SET_ADDR_FAILED and SHORT_XFER errors from usb o usb/92083 usb [ural] [panic] panic using WPA on ural NIC in 6.0-RELE o usb/92052 usb [ulpt] usbd causes defunct process with busy file-hand o usb/91906 usb [ehci] [hang] FreeBSD hangs while booting with USB leg o usb/91896 usb camcontrol(8): Serial Number of USB Memory Sticks is n o usb/91811 usb [umass] Compact Flash in HP Photosmart 2610 return " o usb/91629 usb usbd_abort_pipe() may result in infinite loop o usb/91546 usb [umodem] [patch] Nokia 6630 mobile phone does not work o usb/91538 usb [ulpt] [patch] Unable to print to EPSON CX3500 o usb/91283 usb [boot] [regression] booting very slow with usb devices o usb/91238 usb [umass] USB tape unit fails to write a second tape fil o usb/90700 usb [umass] [panic] Kernel panic on connect/mount/use umas o usb/89954 usb [umass] [panic] USB Disk driver race condition? s usb/89003 usb [request] LaCie Firewire drive not properly supported o usb/88743 usb [hang] [regression] USB makes kernel hang at boot (reg o usb/88408 usb [axe] axe0 read PHY failed o usb/87648 usb [mouse] Logitech USB-optical mouse problem. o usb/87224 usb Cannot mount USB Zip750 o usb/86767 usb [umass] [patch] bogus "slice starts beyond end of the o usb/86298 usb [mouse] Known good USB mouse won't work with correct s s usb/85067 usb [uscanner] Cannot attach ScanJet 4300C to usb device f usb/84750 usb [hang] 6-BETA2 reboot/shutdown with root_fs on externa s usb/84336 usb [usb] [reboot] instant system reboot when unmounting a o usb/84326 usb [umass] Panic trying to connect SCSI tape drive via US o usb/83977 usb [ucom] [panic] ucom1: open bulk out error (addr 2): IN o usb/83863 usb [ugen] Communication problem between opensc/openct via o usb/83756 usb [ums] [patch] Microsoft Intellimouse Explorer 4.0A doe f usb/83677 usb [usb] [request] usb controller often not detected (Sun o usb/83563 usb [umass] [panic] Page Fault while detaching Mpman Usb d o usb/83504 usb [kernel] [patch] SpeedTouch USB stop working on recent o usb/82660 usb [ehci] [panic] EHCI: I/O stuck in state 'physrd'/panic s usb/82569 usb [umass] [panic] USB mass storage plug/unplug causes sy o usb/82520 usb [udbp] [reboot] Reboot when USL101 connected o usb/82350 usb [ucom] [panic] null pointer dereference in USB stack o usb/81621 usb [ehci] [hang] external hd hangs under load on ehci o usb/80935 usb [uvisor] [patch] uvisor.c is not work with CLIE TH55. o usb/80862 usb [patch] USB locking issues: missing some Giant calls o usb/80854 usb [patch] [request] suggestion for new iface-no-probe me o usb/80829 usb [modules] [panic] possible panic when loading USB-modu s usb/80777 usb [request] usb_rem_task() should wait for callback to c s usb/80776 usb [udav] [request] UDAV device driver shouldn't use usb_ o usb/80774 usb [patch] have "usbd_find_desc" in line with the other " o usb/80361 usb [umass] [patch] mounting of Dell usb-stick fails o usb/80040 usb [hang] Use of sound mixer causes system freeze with ua o usb/79723 usb [usb] [request] prepare for high speed isochronous tra o usb/79722 usb [ehci] wrong alignments in ehci.h a usb/79656 usb [ehci] RHSC interrupts lost o usb/79524 usb [ulpt] printing to Minolta PagePro 1[23]xxW via USB fa o usb/79287 usb [uhci] [hang] UHCI hang after interrupt transfer o usb/79269 usb [ohci] USB ohci da0 plug/unplug causes crashes and loc o usb/78984 usb [umass] [patch] Creative MUVO umass failure o usb/77294 usb [ucom] [panic] ucom + ulpcom panic o usb/77184 usb [umass] [panic] kernel panic on USB device disconnect, o usb/76732 usb Mouse problems with USB KVM Switch o usb/76653 usb [umass] [patch] Problem with Asahi Optical usb device o usb/76461 usb [umass] disklabel of umass(4)-CAM(4)-da(4) not used by o usb/76395 usb [uhci] USB printer does not work, usbdevs says "addr 0 s usb/75928 usb [umass] [request] Cytronix SmartMedia card (SMC) reade o usb/75800 usb [ucom] ucom1: init failed STALLED error in time of syn o usb/75797 usb [sound] 5.3-STABLE(2005 1/4) detect USB headset, But c o usb/75764 usb [umass] [patch] "umass0: Phase Error" - no device for o usb/75705 usb [umass] [panic] da0 attach / Optio S4 (with backtrace) o usb/74771 usb [umass] [hang] mounting write-protected umass device a f usb/74453 usb [umass] [patch] Q-lity CD-RW USB ECW-043 (ScanLogic SL o usb/74211 usb [umass] USB flash drive causes CAM status 0x4 on 4.10R o usb/73307 usb [panic] Kernel panics on USB disconnect s usb/72733 usb [ucom] [request] Kyocera 7135 Palm OS connection probl o usb/71455 usb [umass] Slow USB umass performance of 5.3 o usb/71417 usb [ugen] Cryptoflex e-gate USB token (ugen0) communicati o usb/71416 usb [ugen] Cryptoflex e-gate USB token (ugen0) detach is n o usb/71280 usb [aue] aue0 device (linksys usb100tx) doesn't work in 1 o usb/71155 usb [ulpt] misbehaving usb-printer hangs processes, causes o usb/70523 usb [umct] [patch] umct sending/receiving wrong characters o usb/69006 usb [usbdevs] [patch] Apple Cinema Display hangs USB ports o usb/68232 usb [ugen] [patch] ugen(4) isochronous handling correction o usb/67301 usb [uftdi] [panic] RTS and system panic o usb/66547 usb [ucom] Palm Tungsten T USB does not initialize correct o usb/63621 usb [umass] [panic] USB MemoryStick Reader stalls/crashes s usb/62257 usb [umass] [request] card reader UCR-61S2B is only half-s o usb/59698 usb [keyboard] [patch] Rework of ukbd HID to AT code trans o bin/57255 usb usbd(8) and multi-function devices s usb/52026 usb [usb] [request] umass driver support for InSystem ISD2 s usb/51958 usb [urio] [patch] update for urio driver o i386/46371 usb USB controller cannot be initialized on IBM Netfinity o usb/40948 usb [umass] [request] USB HP CDW8200 does not work o conf/30929 usb [usb] [patch] use usbd to initialize USB ADSL modem 284 problems total. From olivier at gid0.org Mon Oct 27 11:53:07 2008 From: olivier at gid0.org (Olivier Smedts) Date: Mon Oct 27 11:53:18 2008 Subject: USB4BSD release candidate number 3 - request for review In-Reply-To: <200810261633.22020.hselasky@c2i.net> References: <200810251925.47273.hselasky@c2i.net> <20081025181603.GD83037@elvis.mu.org> <200810261633.22020.hselasky@c2i.net> Message-ID: <20081026215723.GA20868@q.gid0.org> On Sun, Oct 26, 2008 at 04:33:20PM +0100, Hans Petter Selasky wrote: > Hi, > > A new USB release is available: > > http://www.selasky.org/hans_petter/usb4bsd/for_review/ Hello, I'm using a fresh CURRENT src tree and your patchs. I've got a little patch against usb2_release_003.diff to allow it to patch the latest sys/conf/kmod.mk. Thanks for your work ! Olivier > %md5 usb2_release_003.* > MD5 (usb2_release_003.diff) = e31a032d0234bb7d72eb968c33118d84 > MD5 (usb2_release_003.tar.gz) = 0a0d9dd44e93ba2ceaa849c577f6fecf > %sha256 usb2_release_003.* > SHA256 (usb2_release_003.diff) = > 9b4359f76eeef43d9b6c0c524198e529f2debff14e6158ebac8f35d51efb211b > SHA256 (usb2_release_003.tar.gz) = > 3040714546fc21bc2943c2e7aec1734150845271664aad44639ff5c553e3ed31 > > Changes since 002 release: > > 1) LibUSB20 is now fully documented > 2) LibUSB20 is now fully backwards compatible with LibUSB 0.1.12 > from /usr/ports/devel/libusb . > 3) All Makefiles have a license in them > 4) "usbconfig" now supports dynamic quirks (add, remove and view) > 5) All USB modules have been fragmented into smaller parts: > ./Makefile > ./bluetooth/Makefile > ./bluetooth_fw/Makefile > ./bluetooth_ng/Makefile > ./controller/Makefile > ./controller_at91dci/Makefile > ./controller_ehci/Makefile > ./controller_musb/Makefile > ./controller_ohci/Makefile > ./controller_uhci/Makefile > ./controller_uss820dci/Makefile > ./core/Makefile > ./ethernet/Makefile > ./ethernet_aue/Makefile > ./ethernet_axe/Makefile > ./ethernet_cdce/Makefile > ./ethernet_cue/Makefile > ./ethernet_dav/Makefile > ./ethernet_kue/Makefile > ./ethernet_rue/Makefile > ./image/Makefile > ./input/Makefile > ./input_hid/Makefile > ./input_kbd/Makefile > ./input_ms/Makefile > ./misc/Makefile > ./misc_dbp/Makefile > ./misc_fm/Makefile > ./ndis/Makefile > ./quirk/Makefile > ./scanner/Makefile > ./serial/Makefile > ./serial_ark/Makefile > ./serial_bsa/Makefile > ./serial_bser/Makefile > ./serial_chcom/Makefile > ./serial_cycom/Makefile > ./serial_foma/Makefile > ./serial_ftdi/Makefile > ./serial_gensa/Makefile > ./serial_ipaq/Makefile > ./serial_lpt/Makefile > ./serial_mct/Makefile > ./serial_modem/Makefile > ./serial_moscom/Makefile > ./serial_plcom/Makefile > ./serial_visor/Makefile > ./serial_vscom/Makefile > ./storage/Makefile > ./storage_ata/Makefile > ./storage_fs/Makefile > ./storage_mass/Makefile > ./storage_rio/Makefile > ./template/Makefile > ./wlan/Makefile > ./wlan_ral/Makefile > ./wlan_rum/Makefile > ./wlan_zyd/Makefile > > The following file has been deleted: > src/sys/dev/usb2/controller/uss820dci_pccard.c > > --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" -- Olivier Smedts _ ASCII ribbon campaign ( ) e-mail: olivier@gid0.org - against HTML email & vCards X www: http://www.gid0.org - against proprietary attachments / \ "Il y a seulement 10 sortes de gens dans le monde : ceux qui comprennent le binaire, et ceux qui ne le comprennent pas." -------------- next part -------------- --- usb2_release_003.diff.orig 2008-10-26 22:44:40.000000000 +0100 +++ usb2_release_003.diff 2008-10-26 22:46:28.000000000 +0100 @@ -151,9 +151,9 @@ dev/sound/midi/mpu_if.m dev/sound/midi/mpufoi_if.m \ dev/sound/midi/synth_if.m dev/usb/usb_if.m isa/isa_if.m \ + dev/usb2/core/usb2_if.m \ - kern/bus_if.m kern/cpufreq_if.m kern/device_if.m kern/serdev_if.m \ + kern/bus_if.m kern/clock_if.m \ + kern/cpufreq_if.m kern/device_if.m kern/serdev_if.m \ libkern/iconv_converter_if.m opencrypto/cryptodev_if.m \ - pc98/pc98/canbus_if.m --- //depot/vendor/freebsd/src/sys/dev/sound/pcm/channel.c 2007/12/03 14:32:07 +++ //depot/projects/usb/src/sys/dev/sound/pcm/channel.c 2008/07/10 08:43:16 @@ -570,13 +570,26 @@ -------------- next part -------------- _______________________________________________ freebsd-current@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-current To unsubscribe, send any mail to "freebsd-current-unsubscribe@freebsd.org" From olivier at gid0.org Mon Oct 27 11:53:10 2008 From: olivier at gid0.org (Olivier Smedts) Date: Mon Oct 27 11:53:34 2008 Subject: USB4BSD release candidate number 3 - request for review In-Reply-To: <200810261633.22020.hselasky@c2i.net> References: <200810251925.47273.hselasky@c2i.net> <20081025181603.GD83037@elvis.mu.org> <200810261633.22020.hselasky@c2i.net> Message-ID: <20081026215723.GA20868@q.gid0.org> On Sun, Oct 26, 2008 at 04:33:20PM +0100, Hans Petter Selasky wrote: > Hi, > > A new USB release is available: > > http://www.selasky.org/hans_petter/usb4bsd/for_review/ Hello, I'm using a fresh CURRENT src tree and your patchs. I've got a little patch against usb2_release_003.diff to allow it to patch the latest sys/conf/kmod.mk. Thanks for your work ! Olivier > %md5 usb2_release_003.* > MD5 (usb2_release_003.diff) = e31a032d0234bb7d72eb968c33118d84 > MD5 (usb2_release_003.tar.gz) = 0a0d9dd44e93ba2ceaa849c577f6fecf > %sha256 usb2_release_003.* > SHA256 (usb2_release_003.diff) = > 9b4359f76eeef43d9b6c0c524198e529f2debff14e6158ebac8f35d51efb211b > SHA256 (usb2_release_003.tar.gz) = > 3040714546fc21bc2943c2e7aec1734150845271664aad44639ff5c553e3ed31 > > Changes since 002 release: > > 1) LibUSB20 is now fully documented > 2) LibUSB20 is now fully backwards compatible with LibUSB 0.1.12 > from /usr/ports/devel/libusb . > 3) All Makefiles have a license in them > 4) "usbconfig" now supports dynamic quirks (add, remove and view) > 5) All USB modules have been fragmented into smaller parts: > ./Makefile > ./bluetooth/Makefile > ./bluetooth_fw/Makefile > ./bluetooth_ng/Makefile > ./controller/Makefile > ./controller_at91dci/Makefile > ./controller_ehci/Makefile > ./controller_musb/Makefile > ./controller_ohci/Makefile > ./controller_uhci/Makefile > ./controller_uss820dci/Makefile > ./core/Makefile > ./ethernet/Makefile > ./ethernet_aue/Makefile > ./ethernet_axe/Makefile > ./ethernet_cdce/Makefile > ./ethernet_cue/Makefile > ./ethernet_dav/Makefile > ./ethernet_kue/Makefile > ./ethernet_rue/Makefile > ./image/Makefile > ./input/Makefile > ./input_hid/Makefile > ./input_kbd/Makefile > ./input_ms/Makefile > ./misc/Makefile > ./misc_dbp/Makefile > ./misc_fm/Makefile > ./ndis/Makefile > ./quirk/Makefile > ./scanner/Makefile > ./serial/Makefile > ./serial_ark/Makefile > ./serial_bsa/Makefile > ./serial_bser/Makefile > ./serial_chcom/Makefile > ./serial_cycom/Makefile > ./serial_foma/Makefile > ./serial_ftdi/Makefile > ./serial_gensa/Makefile > ./serial_ipaq/Makefile > ./serial_lpt/Makefile > ./serial_mct/Makefile > ./serial_modem/Makefile > ./serial_moscom/Makefile > ./serial_plcom/Makefile > ./serial_visor/Makefile > ./serial_vscom/Makefile > ./storage/Makefile > ./storage_ata/Makefile > ./storage_fs/Makefile > ./storage_mass/Makefile > ./storage_rio/Makefile > ./template/Makefile > ./wlan/Makefile > ./wlan_ral/Makefile > ./wlan_rum/Makefile > ./wlan_zyd/Makefile > > The following file has been deleted: > src/sys/dev/usb2/controller/uss820dci_pccard.c > > --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" -- Olivier Smedts _ ASCII ribbon campaign ( ) e-mail: olivier@gid0.org - against HTML email & vCards X www: http://www.gid0.org - against proprietary attachments / \ "Il y a seulement 10 sortes de gens dans le monde : ceux qui comprennent le binaire, et ceux qui ne le comprennent pas." -------------- next part -------------- --- usb2_release_003.diff.orig 2008-10-26 22:44:40.000000000 +0100 +++ usb2_release_003.diff 2008-10-26 22:46:28.000000000 +0100 @@ -151,9 +151,9 @@ dev/sound/midi/mpu_if.m dev/sound/midi/mpufoi_if.m \ dev/sound/midi/synth_if.m dev/usb/usb_if.m isa/isa_if.m \ + dev/usb2/core/usb2_if.m \ - kern/bus_if.m kern/cpufreq_if.m kern/device_if.m kern/serdev_if.m \ + kern/bus_if.m kern/clock_if.m \ + kern/cpufreq_if.m kern/device_if.m kern/serdev_if.m \ libkern/iconv_converter_if.m opencrypto/cryptodev_if.m \ - pc98/pc98/canbus_if.m --- //depot/vendor/freebsd/src/sys/dev/sound/pcm/channel.c 2007/12/03 14:32:07 +++ //depot/projects/usb/src/sys/dev/sound/pcm/channel.c 2008/07/10 08:43:16 @@ -570,13 +570,26 @@ -------------- next part -------------- _______________________________________________ freebsd-current@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-current To unsubscribe, send any mail to "freebsd-current-unsubscribe@freebsd.org" From hselasky at c2i.net Mon Oct 27 12:38:06 2008 From: hselasky at c2i.net (Hans Petter Selasky) Date: Mon Oct 27 12:38:24 2008 Subject: USB4BSD release candidate number 3 - request for review In-Reply-To: <20081025181603.GD83037@elvis.mu.org> References: <200810251925.47273.hselasky@c2i.net> <20081025181603.GD83037@elvis.mu.org> Message-ID: <200810261633.22020.hselasky@c2i.net> Hi, A new USB release is available: http://www.selasky.org/hans_petter/usb4bsd/for_review/ %md5 usb2_release_003.* MD5 (usb2_release_003.diff) = e31a032d0234bb7d72eb968c33118d84 MD5 (usb2_release_003.tar.gz) = 0a0d9dd44e93ba2ceaa849c577f6fecf %sha256 usb2_release_003.* SHA256 (usb2_release_003.diff) = 9b4359f76eeef43d9b6c0c524198e529f2debff14e6158ebac8f35d51efb211b SHA256 (usb2_release_003.tar.gz) = 3040714546fc21bc2943c2e7aec1734150845271664aad44639ff5c553e3ed31 Changes since 002 release: 1) LibUSB20 is now fully documented 2) LibUSB20 is now fully backwards compatible with LibUSB 0.1.12 from /usr/ports/devel/libusb . 3) All Makefiles have a license in them 4) "usbconfig" now supports dynamic quirks (add, remove and view) 5) All USB modules have been fragmented into smaller parts: ./Makefile ./bluetooth/Makefile ./bluetooth_fw/Makefile ./bluetooth_ng/Makefile ./controller/Makefile ./controller_at91dci/Makefile ./controller_ehci/Makefile ./controller_musb/Makefile ./controller_ohci/Makefile ./controller_uhci/Makefile ./controller_uss820dci/Makefile ./core/Makefile ./ethernet/Makefile ./ethernet_aue/Makefile ./ethernet_axe/Makefile ./ethernet_cdce/Makefile ./ethernet_cue/Makefile ./ethernet_dav/Makefile ./ethernet_kue/Makefile ./ethernet_rue/Makefile ./image/Makefile ./input/Makefile ./input_hid/Makefile ./input_kbd/Makefile ./input_ms/Makefile ./misc/Makefile ./misc_dbp/Makefile ./misc_fm/Makefile ./ndis/Makefile ./quirk/Makefile ./scanner/Makefile ./serial/Makefile ./serial_ark/Makefile ./serial_bsa/Makefile ./serial_bser/Makefile ./serial_chcom/Makefile ./serial_cycom/Makefile ./serial_foma/Makefile ./serial_ftdi/Makefile ./serial_gensa/Makefile ./serial_ipaq/Makefile ./serial_lpt/Makefile ./serial_mct/Makefile ./serial_modem/Makefile ./serial_moscom/Makefile ./serial_plcom/Makefile ./serial_visor/Makefile ./serial_vscom/Makefile ./storage/Makefile ./storage_ata/Makefile ./storage_fs/Makefile ./storage_mass/Makefile ./storage_rio/Makefile ./template/Makefile ./wlan/Makefile ./wlan_ral/Makefile ./wlan_rum/Makefile ./wlan_zyd/Makefile The following file has been deleted: src/sys/dev/usb2/controller/uss820dci_pccard.c --HPS _______________________________________________ freebsd-current@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-current To unsubscribe, send any mail to "freebsd-current-unsubscribe@freebsd.org" From hselasky at c2i.net Mon Oct 27 12:38:06 2008 From: hselasky at c2i.net (Hans Petter Selasky) Date: Mon Oct 27 12:38:24 2008 Subject: USB4BSD release candidate number 3 - request for review In-Reply-To: <20081025181603.GD83037@elvis.mu.org> References: <200810251925.47273.hselasky@c2i.net> <20081025181603.GD83037@elvis.mu.org> Message-ID: <200810261633.22020.hselasky@c2i.net> Hi, A new USB release is available: http://www.selasky.org/hans_petter/usb4bsd/for_review/ %md5 usb2_release_003.* MD5 (usb2_release_003.diff) = e31a032d0234bb7d72eb968c33118d84 MD5 (usb2_release_003.tar.gz) = 0a0d9dd44e93ba2ceaa849c577f6fecf %sha256 usb2_release_003.* SHA256 (usb2_release_003.diff) = 9b4359f76eeef43d9b6c0c524198e529f2debff14e6158ebac8f35d51efb211b SHA256 (usb2_release_003.tar.gz) = 3040714546fc21bc2943c2e7aec1734150845271664aad44639ff5c553e3ed31 Changes since 002 release: 1) LibUSB20 is now fully documented 2) LibUSB20 is now fully backwards compatible with LibUSB 0.1.12 from /usr/ports/devel/libusb . 3) All Makefiles have a license in them 4) "usbconfig" now supports dynamic quirks (add, remove and view) 5) All USB modules have been fragmented into smaller parts: ./Makefile ./bluetooth/Makefile ./bluetooth_fw/Makefile ./bluetooth_ng/Makefile ./controller/Makefile ./controller_at91dci/Makefile ./controller_ehci/Makefile ./controller_musb/Makefile ./controller_ohci/Makefile ./controller_uhci/Makefile ./controller_uss820dci/Makefile ./core/Makefile ./ethernet/Makefile ./ethernet_aue/Makefile ./ethernet_axe/Makefile ./ethernet_cdce/Makefile ./ethernet_cue/Makefile ./ethernet_dav/Makefile ./ethernet_kue/Makefile ./ethernet_rue/Makefile ./image/Makefile ./input/Makefile ./input_hid/Makefile ./input_kbd/Makefile ./input_ms/Makefile ./misc/Makefile ./misc_dbp/Makefile ./misc_fm/Makefile ./ndis/Makefile ./quirk/Makefile ./scanner/Makefile ./serial/Makefile ./serial_ark/Makefile ./serial_bsa/Makefile ./serial_bser/Makefile ./serial_chcom/Makefile ./serial_cycom/Makefile ./serial_foma/Makefile ./serial_ftdi/Makefile ./serial_gensa/Makefile ./serial_ipaq/Makefile ./serial_lpt/Makefile ./serial_mct/Makefile ./serial_modem/Makefile ./serial_moscom/Makefile ./serial_plcom/Makefile ./serial_visor/Makefile ./serial_vscom/Makefile ./storage/Makefile ./storage_ata/Makefile ./storage_fs/Makefile ./storage_mass/Makefile ./storage_rio/Makefile ./template/Makefile ./wlan/Makefile ./wlan_ral/Makefile ./wlan_rum/Makefile ./wlan_zyd/Makefile The following file has been deleted: src/sys/dev/usb2/controller/uss820dci_pccard.c --HPS _______________________________________________ freebsd-current@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-current To unsubscribe, send any mail to "freebsd-current-unsubscribe@freebsd.org" From redchin at gmail.com Mon Oct 27 17:10:04 2008 From: redchin at gmail.com (Kevin Downey) Date: Mon Oct 27 17:10:10 2008 Subject: usb/128418: loading if_rum causes panic, looks like in usb stack Message-ID: <200810271704.m9RH46Lh078086@www.freebsd.org> >Number: 128418 >Category: usb >Synopsis: loading if_rum causes panic, looks like in usb stack >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-usb >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Oct 27 17:10:03 UTC 2008 >Closed-Date: >Last-Modified: >Originator: Kevin Downey >Release: 8.0-CURRENT >Organization: >Environment: -CURRENT as of the evening of the 26th >Description: everything runs fine until I load ehci and if_rum, kernel panics a second or so afterwards while I am in the middle of fiddling with the new wlan stuff. the panic message always says something about usbtask or ehci. the machine for some reason stops at the dumping phase and doesn't go any farther, so I have no core dump >How-To-Repeat: load if_rum and wait a few seconds >Fix: >Release-Note: >Audit-Trail: >Unformatted: From redchin at gmail.com Mon Oct 27 19:50:05 2008 From: redchin at gmail.com (Kevin Downey) Date: Mon Oct 27 19:50:11 2008 Subject: usb/128418: loading if_rum causes panic, looks like in usb stack Message-ID: <200810271950.m9RJo4u3032904@freefall.freebsd.org> The following reply was made to PR usb/128418; it has been noted by GNATS. From: "Kevin Downey" To: bug-followup@freebsd.org, redchin@gmail.com Cc: Subject: Re: usb/128418: loading if_rum causes panic, looks like in usb stack Date: Mon, 27 Oct 2008 12:09:02 -0700 actual uname: FreeBSD circe.nexus.lan 8.0-CURRENT FreeBSD 8.0-CURRENT #2: Sun Oct 26 07:45:58 PDT 2008 root@:/usr/obj/usr/src/sys/CIRCE8 i386 log output: Oct 27 09:48:36 circe kernel: rum0: could not transmit buffer: TIMEOUT Oct 27 09:48:36 circe kernel: rum0: device timeout Oct 27 09:49:59 circe syslogd: restart Oct 27 09:49:59 circe syslogd: kernel boot file is /boot/kernel/kernel Oct 27 09:49:59 circe kernel: Oct 27 09:49:59 circe kernel: Oct 27 09:49:59 circe kernel: Fatal trap 12: page fault while in kernel mode Oct 27 09:49:59 circe kernel: cpuid = 1; apic id = 01 Oct 27 09:49:59 circe kernel: fault virtual address = 0x67001c Oct 27 09:49:59 circe kernel: fault code = supervisor read, page not present Oct 27 09:49:59 circe kernel: instruction pointer = 0x20:0xc0572c20 Oct 27 09:49:59 circe kernel: stack pointer = 0x28:0xe76e9ca0 Oct 27 09:49:59 circe kernel: frame pointer = 0x28:0xe76e9cd4 Oct 27 09:49:59 circe kernel: code segment = base 0x0, limit 0xfffff, type 0x1b Oct 27 09:49:59 circe kernel: = DPL 0, pres 1, def32 1, gran 1 Oct 27 09:49:59 circe kernel: processor eflags = interrupt enabled, resume, IOPL = 0 Oct 27 09:49:59 circe kernel: current process = 1207 (usbtask-dr) Oct 27 09:49:59 circe kernel: trap number = 12 Oct 27 09:49:59 circe kernel: panic: page fault Oct 27 09:49:59 circe kernel: cpuid = 1 Oct 27 09:49:59 circe kernel: Uptime: 3m11s Oct 27 09:49:59 circe kernel: Physical memory: 1005 MB Oct 27 09:49:59 circe kernel: Dumping 160 MB: 145 129 113 97 81 65 49 33 17 1 Oct 27 09:49:59 circe kernel: Dump complete Oct 27 09:49:59 circe kernel: Automatic reboot in 15 seconds - press a key on the console to abort Oct 27 09:49:59 circe kernel: panic: bufwrite: buffer is not busy??? Oct 27 09:49:59 circe kernel: cpuid = 1 Oct 27 09:49:59 circe kernel: Rebooting... Oct 27 09:49:59 circe kernel: cpu_reset: Stopping other CPUs -- The Mafia way is that we pursue larger goals under the guise of personal relationships. Fisheye From vwe at FreeBSD.org Mon Oct 27 22:50:42 2008 From: vwe at FreeBSD.org (vwe@FreeBSD.org) Date: Mon Oct 27 22:50:48 2008 Subject: usb/128418: [panic] [rum] loading if_rum causes panic, looks like in usb stack Message-ID: <200810272250.m9RMofDr077525@freefall.freebsd.org> Old Synopsis: loading if_rum causes panic, looks like in usb stack New Synopsis: [panic] [rum] loading if_rum causes panic, looks like in usb stack State-Changed-From-To: open->feedback State-Changed-By: vwe State-Changed-When: Mon Oct 27 22:48:58 UTC 2008 State-Changed-Why: any chance we can get a backtrace? http://www.freebsd.org/cgi/query-pr.cgi?pr=128418 From gamato at users.sf.net Tue Oct 28 00:05:03 2008 From: gamato at users.sf.net (martinko) Date: Tue Oct 28 00:05:10 2008 Subject: usb/80361: [umass] [patch] mounting of Dell usb-stick fails In-Reply-To: <200808060950.m769o31j011075@freefall.freebsd.org> References: <200808060950.m769o31j011075@freefall.freebsd.org> Message-ID: Matthias Apitz wrote: > The following reply was made to PR usb/80361; it has been noted by GNATS. > > From: Matthias Apitz > To: bug-followup@FreeBSD.org, fbusse@gmx.de > Cc: > Subject: Re: usb/80361: [umass] [patch] mounting of Dell usb-stick fails > Date: Wed, 6 Aug 2008 11:30:54 +0200 > > I have the same problem in FreeBSD 7.0-REL with the following USB key: > > $ usbdevs -v > ... > port 2 addr 2: high speed, power 94 mA, config 1, Store'n'go(0x0020), Verbatim(0x08ec), rev 2.00 > > which only works (fine) when plug'ed in at boot time: > > da0 at umass-sim0 bus 0 target 0 lun 0 > da0: Removable Direct Access SCSI-0 device > da0: 40.000MB/s transfers > da0: 3812MB (7807999 512 byte sectors: 255H 63S/T 486C) > > if you plug it in later you will get: > > Aug 6 10:19:36 rebelion kernel: da0 at umass-sim0 bus 0 target 0 lun 0 > Aug 6 10:19:36 rebelion kernel: da0: Removable Direct Access SCSI-0 device > Aug 6 10:19:36 rebelion kernel: da0: 40.000MB/s transfers > Aug 6 10:19:36 rebelion kernel: da0: Attempt to query device size failed: UNIT ATTENTION, Medium not present > > and the devices /dev/da0s* does not show up; you only may access > /dev/da0 with fdisk(8) or even with dd(1); > > -- > Matthias Apitz I get that error message quite often, too. :-/ Oct 28 00:24:50 mb-aw1n-bsd kernel: da0: Removable Direct Access SCSI-0 device Oct 28 00:24:50 mb-aw1n-bsd kernel: da0: 40.000MB/s transfers Oct 28 00:24:50 mb-aw1n-bsd kernel: da0: Attempt to query device size failed: UNIT ATTENTION, Medium not present This is on standard 6-STABLE. M. From joe at zircon.seattle.wa.us Tue Oct 28 00:50:02 2008 From: joe at zircon.seattle.wa.us (Joe Kelsey) Date: Tue Oct 28 01:05:28 2008 Subject: usb/128425: Cannot Connect Maxtor Onetouch 4 USB drive Message-ID: <20081028001446.1890.qmail@zircon.seattle.wa.us> >Number: 128425 >Category: usb >Synopsis: Cannot Connect Maxtor Onetouch 4 USB drive >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-usb >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Oct 28 00:50:01 UTC 2008 >Closed-Date: >Last-Modified: >Originator: Joe Kelsey >Release: FreeBSD 7.1-PRERELEASE amd64 >Organization: Joseph M. Kelsey >Environment: System: FreeBSD zircon.zircon.seattle.wa.us 7.1-PRERELEASE FreeBSD 7.1-PRERELEASE #25: Fri Oct 24 14:11:16 PDT 2008 root@zircon.zircon.seattle.wa.us:/usr/obj/usr/src/sys/ZIRCON amd64 >Description: I just purchased a Maxtor Onetouch 4 UDB drive as an add-on to my system. I did not expect that the "onetouch" part would ever work, it was just a cheap 750G drive. When I plug it in, I get the following stuff from the dmesg log: cam_periph_alloc: attempt to re-allocate valid device cd0 rejected cdasync: Unable to attach new device due to status 0x6 cam_periph_alloc: attempt to re-allocate valid device pass1 rejected passasync: Unable to attach new device due to status 0x6: CCB request was invalid I also have a 80G USB drive (no name) and a wireless Logitech USB mouse plugged in. Here is the output of usbdevs -vd: Controller /dev/usb0: addr 1: full speed, self powered, config 1, UHCI root hub(0x0000), VIA(0x0000), rev 1.00 uhub0 port 1 addr 2: low speed, power 70 mA, config 1, USB RECEIVER(0xc50e), Logitech(0x046d), rev 25.10 ums0 port 2 powered Controller /dev/usb1: addr 1: full speed, self powered, config 1, UHCI root hub(0x0000), VIA(0x0000), rev 1.00 uhub1 port 1 powered port 2 powered Controller /dev/usb2: addr 1: full speed, self powered, config 1, UHCI root hub(0x0000), VIA(0x0000), rev 1.00 uhub2 port 1 powered port 2 powered Controller /dev/usb3: addr 1: full speed, self powered, config 1, UHCI root hub(0x0000), VIA(0x0000), rev 1.00 uhub3 port 1 powered port 2 powered Controller /dev/usb4: addr 1: high speed, self powered, config 1, EHCI root hub(0x0000), VIA(0x0000), rev 1.00 uhub4 port 1 powered port 2 powered port 3 powered port 4 powered port 5 powered port 6 addr 2: high speed, self powered, config 1, Storage(0x1240), USB(0x13fd), rev 1.04 umass0 port 7 powered port 8 powered The maxtor is attached to the same cable that the da0 uses. I had a real hard time actually getting a connection to work and I ended up using the little pigtail off the working drive connector. >How-To-Repeat: Attach Maxtor Onetouch4 USB drive to system. >Fix: >Release-Note: >Audit-Trail: >Unformatted: From federico.besnard at del.ufrj.br Tue Oct 28 18:02:48 2008 From: federico.besnard at del.ufrj.br (Federico Galvez-Durand Besnard) Date: Tue Oct 28 18:03:06 2008 Subject: usb/74453: [umass] [patch] Q-lity CD-RW USB ECW-043 (ScanLogic SL11R chipset) does not work In-Reply-To: <200810171533.m9HFXXlU018626@freefall.freebsd.org> References: <200810171533.m9HFXXlU018626@freefall.freebsd.org> Message-ID: <49074F77.80608@del.ufrj.br> linimon@FreeBSD.org wrote: > Synopsis: [umass] [patch] Q-lity CD-RW USB ECW-043 (ScanLogic SL11R chipset) does not work > > State-Changed-From-To: analyzed->feedback > State-Changed-By: linimon > State-Changed-When: Fri Oct 17 15:31:07 UTC 2008 > State-Changed-Why: > If this PR is still relevant, can you please send us the output of > usbdevs -v? Thanks. > > http://www.freebsd.org/cgi/query-pr.cgi?pr=74453 > > > This device is a USB CD-RW, not recognised as such by any FreeBSD versions since the first time I tried on 4.7. I first reported in 5.3, though. With some work, I managed to use it as Read Only umass device. :) http://lists.freebsd.org/mailman/htdig/freebsd-usb/2005-February/000660.html Pretty useless as the mission was to backup data. At that point I had some USB flash memories available and no time for playing with this device any more. As a matter of fact, it's been in a drawer for more than 2 years. The main problem seems to be related to the CSWTag returned by this device, most probably a broken firmware issue. Please, feel free to drop this PR if the contents are not relevant to anybody else but me. I am not for trying to fix every broken firmware in the hood by patching kernel. #uname -a FreeBSD trinity.local 7.0-RELEASE FreeBSD 7.0-RELEASE #0: Fri Feb 29 17:08:36 CET 2008 root@trinity.local:/usr/obj/usr/src/sys/TRINITY i386 #usbdevs -v addr 1: full speed, self powered, config 1, OHCI root hub(0x0000), nVidia(0x0000), rev 1.00 port 1 powered port 2 powered port 3 powered port 4 powered port 5 addr 2: low speed, power 100 mA, config 1, USB Optical Mouse(0x4d15), vendor 0x0461(0x0461), rev 2.00 port 6 addr 3: low speed, power 70 mA, config 1, Dell USB Keyboard(0x2003), Dell(0x413c), rev 3.01 port 7 addr 4: full speed, self powered, config 1, ScanLogic USBIDE(0x0002), ScanLogic USBIDE(0x04ce), rev 2.61 port 8 powered Controller /dev/usb1: addr 1: high speed, self powered, config 1, EHCI root hub(0x0000), nVidia(0x0000), rev 1.00 port 1 addr 2: high speed, power 500 mA, config 1, CA-200(0x0200), TEAC(0x0644), rev 4.00 port 2 powered port 3 powered port 4 powered port 5 powered port 6 powered port 7 powered port 8 powered #camcontrol devlist -v scbus0 on umass-sim0 bus 0: at scbus0 target 0 lun 0 (da0,pass0) at scbus0 target 0 lun 1 (da1,pass1) at scbus0 target 0 lun 2 (da2,pass2) at scbus0 target 0 lun 3 (da3,pass3) scbus1 on ata0 bus 0: < > at scbus1 target -1 lun -1 () scbus2 on ata1 bus 0: < > at scbus2 target -1 lun -1 () scbus3 on ata2 bus 0: < > at scbus3 target -1 lun -1 () scbus4 on ata3 bus 0: at scbus4 target 0 lun 0 (cd0,pass4) < > at scbus4 target -1 lun -1 () scbus5 on ata4 bus 0: at scbus5 target 0 lun 0 (cd1,pass5) < > at scbus5 target -1 lun -1 () scbus6 on ata5 bus 0: < > at scbus6 target -1 lun -1 () scbus7 on umass-sim1 bus 1: < > at scbus7 target 0 lun 0 (pass6) scbus-1 on xpt0 bus 0: < > at scbus-1 target -1 lun -1 (xpt0) From linimon at FreeBSD.org Wed Oct 29 15:55:11 2008 From: linimon at FreeBSD.org (linimon@FreeBSD.org) Date: Wed Oct 29 15:55:16 2008 Subject: usb/74453: [umass] [patch] Q-lity CD-RW USB ECW-043 (ScanLogic SL11R chipset) does not work Message-ID: <200810291555.m9TFtAYb011839@freefall.freebsd.org> Synopsis: [umass] [patch] Q-lity CD-RW USB ECW-043 (ScanLogic SL11R chipset) does not work State-Changed-From-To: feedback->suspended State-Changed-By: linimon State-Changed-When: Wed Oct 29 15:54:00 UTC 2008 State-Changed-Why: Feedback received; now all we need to to is to have someone analyze it. http://www.freebsd.org/cgi/query-pr.cgi?pr=74453 From linimon at lonesome.com Wed Oct 29 16:00:16 2008 From: linimon at lonesome.com (Mark Linimon) Date: Wed Oct 29 16:00:23 2008 Subject: usb/74453: [umass] [patch] Q-lity CD-RW USB ECW-043 (ScanLogic SL11R chipset) does not work Message-ID: <200810291600.m9TG0CnM012114@freefall.freebsd.org> The following reply was made to PR usb/74453; it has been noted by GNATS. From: linimon@lonesome.com (Mark Linimon) To: bug-followup@FreeBSD.org Cc: Subject: Re: usb/74453: [umass] [patch] Q-lity CD-RW USB ECW-043 (ScanLogic SL11R chipset) does not work Date: Wed, 29 Oct 2008 10:56:06 -0500 ----- Forwarded message from Federico Galvez-Durand Besnard ----- From: Federico Galvez-Durand Besnard To: linimon@FreeBSD.org CC: freebsd-usb@FreeBSD.org This device is a USB CD-RW, not recognised as such by any FreeBSD versions since the first time I tried on 4.7. I first reported in 5.3, though. With some work, I managed to use it as Read Only umass device. :) http://lists.freebsd.org/mailman/htdig/freebsd-usb/2005-February/000660.html Pretty useless as the mission was to backup data. At that point I had some USB flash memories available and no time for playing with this device any more. As a matter of fact, it's been in a drawer for more than 2 years. The main problem seems to be related to the CSWTag returned by this device, most probably a broken firmware issue. Please, feel free to drop this PR if the contents are not relevant to anybody else but me. I am not for trying to fix every broken firmware in the hood by patching kernel. #uname -a FreeBSD trinity.local 7.0-RELEASE FreeBSD 7.0-RELEASE #0: Fri Feb 29 17:08:36 CET 2008 root@trinity.local:/usr/obj/usr/src/sys/TRINITY i386 #usbdevs -v addr 1: full speed, self powered, config 1, OHCI root hub(0x0000), nVidia(0x0000), rev 1.00 port 1 powered port 2 powered port 3 powered port 4 powered port 5 addr 2: low speed, power 100 mA, config 1, USB Optical Mouse(0x4d15), vendor 0x0461(0x0461), rev 2.00 port 6 addr 3: low speed, power 70 mA, config 1, Dell USB Keyboard(0x2003), Dell(0x413c), rev 3.01 port 7 addr 4: full speed, self powered, config 1, ScanLogic USBIDE(0x0002), ScanLogic USBIDE(0x04ce), rev 2.61 port 8 powered Controller /dev/usb1: addr 1: high speed, self powered, config 1, EHCI root hub(0x0000), nVidia(0x0000), rev 1.00 port 1 addr 2: high speed, power 500 mA, config 1, CA-200(0x0200), TEAC(0x0644), rev 4.00 port 2 powered port 3 powered port 4 powered port 5 powered port 6 powered port 7 powered port 8 powered #camcontrol devlist -v scbus0 on umass-sim0 bus 0: at scbus0 target 0 lun 0 (da0,pass0) at scbus0 target 0 lun 1 (da1,pass1) at scbus0 target 0 lun 2 (da2,pass2) at scbus0 target 0 lun 3 (da3,pass3) scbus1 on ata0 bus 0: < > at scbus1 target -1 lun -1 () scbus2 on ata1 bus 0: < > at scbus2 target -1 lun -1 () scbus3 on ata2 bus 0: < > at scbus3 target -1 lun -1 () scbus4 on ata3 bus 0: at scbus4 target 0 lun 0 (cd0,pass4) < > at scbus4 target -1 lun -1 () scbus5 on ata4 bus 0: at scbus5 target 0 lun 0 (cd1,pass5) < > at scbus5 target -1 lun -1 () scbus6 on ata5 bus 0: < > at scbus6 target -1 lun -1 () scbus7 on umass-sim1 bus 1: < > at scbus7 target 0 lun 0 (pass6) scbus-1 on xpt0 bus 0: < > at scbus-1 target -1 lun -1 (xpt0) ----- End forwarded message ----- From stevefranks at ieee.org Thu Oct 30 00:17:20 2008 From: stevefranks at ieee.org (Steve Franks) Date: Thu Oct 30 00:17:27 2008 Subject: ucom panic Message-ID: <539c60b90810291648l7567b974h8e0999a66971495b@mail.gmail.com> Perhaps someone can make sense of my backtrace, this is a ucom causes a panic, but only when I open it from one specific program. If I talk to the ucom with minicom, no issues. That aside, a panic when talking to any serial port with any program would be considered a bug, right? Thanks, Steve [steve@dynstant /usr/obj/usr/src/sys/GENERIC]$ uname -a FreeBSD dynstant.franks-development.dyndns.biz 7.1-PRERELEASE FreeBSD 7.1-PRERELEASE #1: Mon Sep 29 21:12:11 MST 2008 steve@dynstant.franks-development.dyndns.biz:/usr/obj/usr/src/sys/GENERIC i386 [steve@dynstant /usr/obj/usr/src/sys/GENERIC]$ sudo kgdb kernel.debug /var/crash/vmcore.0 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: panic: uhci_abort_xfer: not in process context cpuid = 0 Uptime: 4h54m33s Physical memory: 1003 MB Dumping 135 MB: 120 104 88 72 (CTRL-C to abort) 56 (CTRL-C to abort) 40 24 8 Reading symbols from /boot/kernel/linprocfs.ko...Reading symbols from /boot/kernel/linprocfs.ko.symbols...done. done. Loaded symbols for /boot/kernel/linprocfs.ko Reading symbols from /boot/kernel/linux.ko...Reading symbols from /boot/kernel/linux.ko.symbols...done. done. Loaded symbols for /boot/kernel/linux.ko Reading symbols from /boot/kernel/snd_hda.ko...Reading symbols from /boot/kernel/snd_hda.ko.symbols...done. done. Loaded symbols for /boot/kernel/snd_hda.ko Reading symbols from /boot/kernel/sound.ko...Reading symbols from /boot/kernel/sound.ko.symbols...done. done. Loaded symbols for /boot/kernel/sound.ko Reading symbols from /boot/kernel/acpi.ko...Reading symbols from /boot/kernel/acpi.ko.symbols...done. done. Loaded symbols for /boot/kernel/acpi.ko Reading symbols from /usr/local/modules/fuse.ko...done. Loaded symbols for /usr/local/modules/fuse.ko Reading symbols from /boot/kernel/i915.ko...Reading symbols from /boot/kernel/i915.ko.symbols...done. done. Loaded symbols for /boot/kernel/i915.ko Reading symbols from /boot/kernel/drm.ko...Reading symbols from /boot/kernel/drm.ko.symbols...done. done. Loaded symbols for /boot/kernel/drm.ko Reading symbols from /boot/modules/kqemu.ko...done. Loaded symbols for /boot/modules/kqemu.ko Reading symbols from /boot/kernel/if_tap.ko...Reading symbols from /boot/kernel/if_tap.ko.symbols...done. done. Loaded symbols for /boot/kernel/if_tap.ko Reading symbols from /boot/kernel/if_bridge.ko...Reading symbols from /boot/kernel/if_bridge.ko.symbols...done. done. Loaded symbols for /boot/kernel/if_bridge.ko Reading symbols from /boot/kernel/bridgestp.ko...Reading symbols from /boot/kernel/bridgestp.ko.symbols...done. done. Loaded symbols for /boot/kernel/bridgestp.ko Reading symbols from /boot/kernel/aio.ko...Reading symbols from /boot/kernel/aio.ko.symbols...done. done. Loaded symbols for /boot/kernel/aio.ko #0 doadump () at pcpu.h:196 196 __asm __volatile("movl %%fs:0,%0" : "=r" (td)); (kgdb) backtrace #0 doadump () at pcpu.h:196 #1 0xc078fba7 in boot (howto=260) at /usr/src/sys/kern/kern_shutdown.c:418 #2 0xc078fe69 in panic (fmt=Variable "fmt" is not available. ) at /usr/src/sys/kern/kern_shutdown.c:572 #3 0xc06ef186 in uhci_abort_xfer (xfer=0xc4069e00, status=USBD_NORMAL_COMPLETION) at /usr/src/sys/dev/usb/uhci.c:2004 #4 0xc06ef300 in uhci_device_bulk_abort (xfer=0xc4069e00) at /usr/src/sys/dev/usb/uhci.c:1967 #5 0xc0700569 in usbd_abort_pipe (pipe=0xc647b580) at /usr/src/sys/dev/usb/usbdi.c:881 #6 0xc06ea6b4 in ucomstopread (sc=0x0) at /usr/src/sys/dev/usb/ucom.c:883 #7 0xc06eae40 in ucomstop (tp=0xc4254000, flag=1) at /usr/src/sys/dev/usb/ucom.c:655 #8 0xc07d5686 in ttyflush (tp=0xc4254000, rw=1) at tty.h:408 #9 0xc07d890d in ttioctl (tp=0xc4254000, cmd=2150396950, data=0xc5f61d40, flag=3) at /usr/src/sys/kern/tty.c:1058 #10 0xc07d941a in ttyioctl (dev=0xc826f100, cmd=2150396950, data=0xc5f61d40 "\001", flag=3, td=0xc4900000) at /usr/src/sys/kern/tty.c:3306 #11 0xc0756017 in giant_ioctl (dev=0xc826f100, cmd=2150396950, data=0xc5f61d40 "\001", fflag=3, td=0xc4900000) at /usr/src/sys/kern/kern_conf.c:408 #12 0xc071ef18 in devfs_ioctl_f (fp=0xc60159cc, com=2150396950, data=0xc5f61d40, cred=0xc47a4100, td=0xc4900000) at /usr/src/sys/fs/devfs/devfs_vnops.c:591 #13 0xc07c6a35 in kern_ioctl (td=0xc4900000, fd=3, com=2150396950, data=0xc5f61d40 "\001") at file.h:268 #14 0xc07c6b94 in ioctl (td=0xc4900000, uap=0xe6870cfc) at /usr/src/sys/kern/sys_generic.c:570 #15 0xc0aa1ee5 in syscall (frame=0xe6870d38) at /usr/src/sys/i386/i386/trap.c:1090 #16 0xc0a88430 in Xint0x80_syscall () at /usr/src/sys/i386/i386/exception.s:255 #17 0x00000033 in ?? () Previous frame inner to this frame (corrupt stack?) (kgdb) From imp at bsdimp.com Thu Oct 30 00:32:27 2008 From: imp at bsdimp.com (M. Warner Losh) Date: Thu Oct 30 00:32:33 2008 Subject: ucom panic In-Reply-To: <539c60b90810291648l7567b974h8e0999a66971495b@mail.gmail.com> References: <539c60b90810291648l7567b974h8e0999a66971495b@mail.gmail.com> Message-ID: <20081029.183134.1650439445.imp@bsdimp.com> In message: <539c60b90810291648l7567b974h8e0999a66971495b@mail.gmail.com> "Steve Franks" writes: : Perhaps someone can make sense of my backtrace, this is a ucom causes : a panic, but only when I open it from one specific program. If I talk : to the ucom with minicom, no issues. That aside, a panic when talking : to any serial port with any program would be considered a bug, right? Is there any way you could boot a -current kernel? I think this is a bug I fixed in -current, but maybe didn't back merge to 7... Warner From redchin at gmail.com Thu Oct 30 01:40:27 2008 From: redchin at gmail.com (Kevin Downey) Date: Thu Oct 30 01:40:48 2008 Subject: usb/128418: [panic] [rum] loading if_rum causes panic, looks like in usb stack In-Reply-To: <200810272250.m9RMofDr077525@freefall.freebsd.org> References: <200810272250.m9RMofDr077525@freefall.freebsd.org> Message-ID: <1d3ed48c0810291812x47b67ae8vec27df5c26f1b87b@mail.gmail.com> On Mon, Oct 27, 2008 at 3:50 PM, wrote: > Old Synopsis: loading if_rum causes panic, looks like in usb stack > New Synopsis: [panic] [rum] loading if_rum causes panic, looks like in usb stack > > State-Changed-From-To: open->feedback > State-Changed-By: vwe > State-Changed-When: Mon Oct 27 22:48:58 UTC 2008 > State-Changed-Why: > any chance we can get a backtrace? > > http://www.freebsd.org/cgi/query-pr.cgi?pr=128418 > Gar. I had to rebuild the kernel with all the debugging stuffs. Then loading the usb modules just locked up the laptop, no dumps, so now the usb modules are compiled into the kernel. #0 doadump () at pcpu.h:246 #1 0xc05927ae in boot (howto=260) at /usr/src/sys/kern/kern_shutdown.c:420 #2 0xc0592a82 in panic (fmt=Variable "fmt" is not available. ) at /usr/src/sys/kern/kern_shutdown.c:576 #3 0xc048a287 in db_panic (addr=Could not find the frame base for "db_panic". ) at /usr/src/sys/ddb/db_command.c:478 #4 0xc048a8b1 in db_command (last_cmdp=0xc08a8e9c, cmd_table=0x0, dopager=1) at /usr/src/sys/ddb/db_command.c:445 #5 0xc048aa0a in db_command_loop () at /usr/src/sys/ddb/db_command.c:498 #6 0xc048c86d in db_trap (type=12, code=0) at /usr/src/sys/ddb/db_main.c:229 #7 0xc05bf686 in kdb_trap (type=12, code=0, tf=0xc3bc0bbc) at /usr/src/sys/kern/subr_kdb.c:534 #8 0xc07ddd3f in trap_fatal (frame=0xc3bc0bbc, eva=56) at /usr/src/sys/i386/i386/trap.c:920 #9 0xc07ddf60 in trap_pfault (frame=0xc3bc0bbc, usermode=0, eva=56) at /usr/src/sys/i386/i386/trap.c:842 #10 0xc07de923 in trap (frame=0xc3bc0bbc) at /usr/src/sys/i386/i386/trap.c:522 #11 0xc07c334b in calltrap () at /usr/src/sys/i386/i386/exception.s:165 #12 0xc05110f4 in ehci_idone (ex=0xc3fca600) at /usr/src/sys/dev/usb/ehci.c:914 #13 0xc0511a9a in ehci_softintr (v=0xc4012000) at /usr/src/sys/dev/usb/ehci.c:802 #14 0xc052a1e2 in usb_schedsoftintr (bus=0xc4012000) at /usr/src/sys/dev/usb/usb.c:848 #15 0xc051362e in ehci_intr1 (sc=0xc4012000) at /usr/src/sys/dev/usb/ehci.c:631 #16 0xc0514105 in ehci_intr (v=0xc4012000) at /usr/src/sys/dev/usb/ehci.c:590 #17 0xc0573ee5 in intr_event_execute_handlers (p=0xc3d617d4, ie=0xc3da0b00) at /usr/src/sys/kern/kern_intr.c:1134 #18 0xc0574b5f in ithread_loop (arg=0xc4056be0) at /usr/src/sys/kern/kern_intr.c:1147 #19 0xc0571ca8 in fork_exit (callout=0xc0574ac0 , arg=0xc4056be0, frame=0xc3bc0d38) at /usr/src/sys/kern/kern_fork.c:815 #20 0xc07c33c0 in fork_trampoline () at /usr/src/sys/i386/i386/exception.s:270 -- The Mafia way is that we pursue larger goals under the guise of personal relationships. Fisheye From dron_2 at ua.fm Thu Oct 30 10:30:01 2008 From: dron_2 at ua.fm (Andrey) Date: Thu Oct 30 10:30:08 2008 Subject: usb/128485: Nokia N80 modem support Message-ID: <200810301728.m9UHSfr9012981@www.freebsd.org> >Number: 128485 >Category: usb >Synopsis: Nokia N80 modem support >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 Oct 30 17:30:00 UTC 2008 >Closed-Date: >Last-Modified: >Originator: Andrey >Release: FreeBSD 6.3-RELEASE #0 >Organization: none >Environment: FreeBSD dron-hm.dron.dp.ua 6.3-RELEASE FreeBSD 6.3-RELEASE #0: Wed Jan 16 04:45:45 UTC 2008 root@dessler.cse.buffalo.edu:/usr/obj/usr/src/sys/SMP i386 >Description: I have an Nokia N80 smartphone, but in FreeBSD there is no modem were defined, only ugen device... So I can't use this hardwae to connect to internet... >How-To-Repeat: install FreeBSD and plug an Nokia N80 :) >Fix: after some debug and using google next patch were born: --- umodem.c.orig 2008-10-22 23:02:46.000000000 +0300 +++ umodem.c.without_debug 2008-10-30 19:04:44.000000000 +0200 @@ -69,6 +69,7 @@ /* * Comm Class spec: http://www.usb.org/developers/devclass_docs/usbccs10.pdf * http://www.usb.org/developers/devclass_docs/usbcdc11.pdf + * http://www.usb.org/developers/devclass_docs/cdc_wmc10.zip */ /* @@ -127,6 +128,7 @@ { USB_VENDOR_KYOCERA, USB_PRODUCT_KYOCERA_AHK3001V, 0 }, { USB_VENDOR_SIERRA, USB_PRODUCT_SIERRA_MC5720, 0 }, { USB_VENDOR_CURITEL, USB_PRODUCT_CURITEL_PC5740, 0 }, + { 0x0421, 0x0445, 0 }, { 0, 0, 0 }, }; @@ -179,7 +181,8 @@ usb_cdc_line_state_t *state); Static void umodem_get_caps(usbd_device_handle, int *, int *); - +Static usb_cdc_union_descriptor_t * + umodem_get_union(usbd_device_handle dev, int iface_no); Static void umodem_get_status(void *, int portno, u_char *lsr, u_char *msr); Static void umodem_set(void *, int, int, int); Static void umodem_dtr(struct umodem_softc *, int); @@ -269,7 +272,6 @@ return ret; } - USB_ATTACH(umodem) { USB_ATTACH_START(umodem, sc, uaa); @@ -277,6 +279,7 @@ usb_interface_descriptor_t *id; usb_endpoint_descriptor_t *ed; usb_cdc_cm_descriptor_t *cmd; + usb_cdc_union_descriptor_t *cud; char *devinfo = NULL; const char *devname; usbd_status err; @@ -309,10 +312,13 @@ /* Get the data interface no. */ cmd = umodem_get_desc(dev, UDESC_CS_INTERFACE, UDESCSUB_CDC_CM); if (cmd == NULL) { - printf("%s: no CM descriptor\n", devname); + cud = umodem_get_union(dev, sc->sc_ctl_iface_no); + if (cud == NULL) { + printf("%s: no CM and Union descriptors\n", devname); goto bad; - } - sc->sc_data_iface_no = data_ifcno = cmd->bDataInterface; + }else data_ifcno = cud->bSlaveInterface[0]; + }else data_ifcno = cmd->bDataInterface; + sc->sc_data_iface_no = data_ifcno; printf("%s: data interface %d, has %sCM over data, has %sbreak\n", devname, data_ifcno, @@ -558,19 +564,36 @@ *cm = *acm = 0; - cmd = umodem_get_desc(dev, UDESC_CS_INTERFACE, UDESCSUB_CDC_CM); - if (cmd == NULL) { - DPRINTF(("umodem_get_desc: no CM desc\n")); - return; - } - *cm = cmd->bmCapabilities; - cad = umodem_get_desc(dev, UDESC_CS_INTERFACE, UDESCSUB_CDC_ACM); if (cad == NULL) { DPRINTF(("umodem_get_desc: no ACM desc\n")); return; } *acm = cad->bmCapabilities; + + cmd = umodem_get_desc(dev, UDESC_CS_INTERFACE, UDESCSUB_CDC_CM); + if (cmd == NULL) { + DPRINTF(("umodem_get_desc: no CM desc\n")); + *cm = USB_CDC_CM_DOES_CM | USB_CDC_CM_OVER_DATA; + }else *cm = cmd->bmCapabilities; +} + +usb_cdc_union_descriptor_t * +umodem_get_union(usbd_device_handle dev, int iface_no) +{ + usb_cdc_union_descriptor_t *desc; + usb_config_descriptor_t *cd = usbd_get_config_descriptor(dev); + uByte *p = (uByte *)cd; + uByte *end = p + UGETW(cd->wTotalLength); + while (p < end) { + desc = (usb_cdc_union_descriptor_t *)p; + if (desc->bDescriptorType == UDESC_CS_INTERFACE && + desc->bDescriptorSubtype == UDESCSUB_CDC_UNION && + desc->bMasterInterface == iface_no) + return (desc); + p += desc->bLength; + } + return (0); } void With this patch moden is appeared in a system... Patch attached with submission follows: --- umodem.c.orig 2008-10-22 23:02:46.000000000 +0300 +++ umodem.c.without_debug 2008-10-30 19:04:44.000000000 +0200 @@ -69,6 +69,7 @@ /* * Comm Class spec: http://www.usb.org/developers/devclass_docs/usbccs10.pdf * http://www.usb.org/developers/devclass_docs/usbcdc11.pdf + * http://www.usb.org/developers/devclass_docs/cdc_wmc10.zip */ /* @@ -127,6 +128,7 @@ { USB_VENDOR_KYOCERA, USB_PRODUCT_KYOCERA_AHK3001V, 0 }, { USB_VENDOR_SIERRA, USB_PRODUCT_SIERRA_MC5720, 0 }, { USB_VENDOR_CURITEL, USB_PRODUCT_CURITEL_PC5740, 0 }, + { 0x0421, 0x0445, 0 }, { 0, 0, 0 }, }; @@ -179,7 +181,8 @@ usb_cdc_line_state_t *state); Static void umodem_get_caps(usbd_device_handle, int *, int *); - +Static usb_cdc_union_descriptor_t * + umodem_get_union(usbd_device_handle dev, int iface_no); Static void umodem_get_status(void *, int portno, u_char *lsr, u_char *msr); Static void umodem_set(void *, int, int, int); Static void umodem_dtr(struct umodem_softc *, int); @@ -269,7 +272,6 @@ return ret; } - USB_ATTACH(umodem) { USB_ATTACH_START(umodem, sc, uaa); @@ -277,6 +279,7 @@ usb_interface_descriptor_t *id; usb_endpoint_descriptor_t *ed; usb_cdc_cm_descriptor_t *cmd; + usb_cdc_union_descriptor_t *cud; char *devinfo = NULL; const char *devname; usbd_status err; @@ -309,10 +312,13 @@ /* Get the data interface no. */ cmd = umodem_get_desc(dev, UDESC_CS_INTERFACE, UDESCSUB_CDC_CM); if (cmd == NULL) { - printf("%s: no CM descriptor\n", devname); + cud = umodem_get_union(dev, sc->sc_ctl_iface_no); + if (cud == NULL) { + printf("%s: no CM and Union descriptors\n", devname); goto bad; - } - sc->sc_data_iface_no = data_ifcno = cmd->bDataInterface; + }else data_ifcno = cud->bSlaveInterface[0]; + }else data_ifcno = cmd->bDataInterface; + sc->sc_data_iface_no = data_ifcno; printf("%s: data interface %d, has %sCM over data, has %sbreak\n", devname, data_ifcno, @@ -558,19 +564,36 @@ *cm = *acm = 0; - cmd = umodem_get_desc(dev, UDESC_CS_INTERFACE, UDESCSUB_CDC_CM); - if (cmd == NULL) { - DPRINTF(("umodem_get_desc: no CM desc\n")); - return; - } - *cm = cmd->bmCapabilities; - cad = umodem_get_desc(dev, UDESC_CS_INTERFACE, UDESCSUB_CDC_ACM); if (cad == NULL) { DPRINTF(("umodem_get_desc: no ACM desc\n")); return; } *acm = cad->bmCapabilities; + + cmd = umodem_get_desc(dev, UDESC_CS_INTERFACE, UDESCSUB_CDC_CM); + if (cmd == NULL) { + DPRINTF(("umodem_get_desc: no CM desc\n")); + *cm = USB_CDC_CM_DOES_CM | USB_CDC_CM_OVER_DATA; + }else *cm = cmd->bmCapabilities; +} + +usb_cdc_union_descriptor_t * +umodem_get_union(usbd_device_handle dev, int iface_no) +{ + usb_cdc_union_descriptor_t *desc; + usb_config_descriptor_t *cd = usbd_get_config_descriptor(dev); + uByte *p = (uByte *)cd; + uByte *end = p + UGETW(cd->wTotalLength); + while (p < end) { + desc = (usb_cdc_union_descriptor_t *)p; + if (desc->bDescriptorType == UDESC_CS_INTERFACE && + desc->bDescriptorSubtype == UDESCSUB_CDC_UNION && + desc->bMasterInterface == iface_no) + return (desc); + p += desc->bLength; + } + return (0); } void >Release-Note: >Audit-Trail: >Unformatted: From stevefranks at ieee.org Thu Oct 30 13:54:28 2008 From: stevefranks at ieee.org (Steve Franks) Date: Thu Oct 30 13:54:35 2008 Subject: ucom panic In-Reply-To: <20081029.183134.1650439445.imp@bsdimp.com> References: <539c60b90810291648l7567b974h8e0999a66971495b@mail.gmail.com> <20081029.183134.1650439445.imp@bsdimp.com> Message-ID: <539c60b90810301354h10c9a411tdbad75880a8448@mail.gmail.com> On Wed, Oct 29, 2008 at 5:31 PM, M. Warner Losh wrote: > In message: <539c60b90810291648l7567b974h8e0999a66971495b@mail.gmail.com> > "Steve Franks" writes: > : Perhaps someone can make sense of my backtrace, this is a ucom causes > : a panic, but only when I open it from one specific program. If I talk > : to the ucom with minicom, no issues. That aside, a panic when talking > : to any serial port with any program would be considered a bug, right? > > Is there any way you could boot a -current kernel? I think this is a > bug I fixed in -current, but maybe didn't back merge to 7... > > Warner > I have a rather older amd64 kernel that didn't do it until I rebuilt the day before yesterday (now that's bad luck), and my internal umass drive seems to panic both (amd64 & i386) pretty reliably...is there a fresbie for current? I suppose the regular snapshot CD would be sufficient as well, right? How about the stability of the rest of current? This is my work desktop, and all my files are offsite, so I'm not too concerned about weekly reliability, if I get better hw support day-to-day...do you run current on any of your workstations? Alternatively, is there a patch for 7-stable? My work is as an OEM, and all our devices get programmed over a ucom bootloader. I'm pretty much stuck until this is fixed... Steve From Thomas.Sparrevohn at btinternet.com Fri Oct 31 02:23:53 2008 From: Thomas.Sparrevohn at btinternet.com (Thomas Sparrevohn) Date: Fri Oct 31 02:24:00 2008 Subject: USB4BSD release candidate number 3 - request for review In-Reply-To: <200810261633.22020.hselasky@c2i.net> References: <200810251925.47273.hselasky@c2i.net> <20081025181603.GD83037@elvis.mu.org> <200810261633.22020.hselasky@c2i.net> Message-ID: <200810310923.49411.Thomas.Sparrevohn@btinternet.com> On Sunday 26 October 2008 15:33:20 Hans Petter Selasky wrote: What is the device naming change to? > Hi, > > A new USB release is available: > > http://www.selasky.org/hans_petter/usb4bsd/for_review/ > > %md5 usb2_release_003.* > MD5 (usb2_release_003.diff) = e31a032d0234bb7d72eb968c33118d84 > MD5 (usb2_release_003.tar.gz) = 0a0d9dd44e93ba2ceaa849c577f6fecf > %sha256 usb2_release_003.* > SHA256 (usb2_release_003.diff) = > 9b4359f76eeef43d9b6c0c524198e529f2debff14e6158ebac8f35d51efb211b > SHA256 (usb2_release_003.tar.gz) = > 3040714546fc21bc2943c2e7aec1734150845271664aad44639ff5c553e3ed31 > > Changes since 002 release: > > 1) LibUSB20 is now fully documented > 2) LibUSB20 is now fully backwards compatible with LibUSB 0.1.12 > from /usr/ports/devel/libusb . > 3) All Makefiles have a license in them > 4) "usbconfig" now supports dynamic quirks (add, remove and view) > 5) All USB modules have been fragmented into smaller parts: > ./Makefile > ./bluetooth/Makefile > ./bluetooth_fw/Makefile > ./bluetooth_ng/Makefile > ./controller/Makefile > ./controller_at91dci/Makefile > ./controller_ehci/Makefile > ./controller_musb/Makefile > ./controller_ohci/Makefile > ./controller_uhci/Makefile > ./controller_uss820dci/Makefile > ./core/Makefile > ./ethernet/Makefile > ./ethernet_aue/Makefile > ./ethernet_axe/Makefile > ./ethernet_cdce/Makefile > ./ethernet_cue/Makefile > ./ethernet_dav/Makefile > ./ethernet_kue/Makefile > ./ethernet_rue/Makefile > ./image/Makefile > ./input/Makefile > ./input_hid/Makefile > ./input_kbd/Makefile > ./input_ms/Makefile > ./misc/Makefile > ./misc_dbp/Makefile > ./misc_fm/Makefile > ./ndis/Makefile > ./quirk/Makefile > ./scanner/Makefile > ./serial/Makefile > ./serial_ark/Makefile > ./serial_bsa/Makefile > ./serial_bser/Makefile > ./serial_chcom/Makefile > ./serial_cycom/Makefile > ./serial_foma/Makefile > ./serial_ftdi/Makefile > ./serial_gensa/Makefile > ./serial_ipaq/Makefile > ./serial_lpt/Makefile > ./serial_mct/Makefile > ./serial_modem/Makefile > ./serial_moscom/Makefile > ./serial_plcom/Makefile > ./serial_visor/Makefile > ./serial_vscom/Makefile > ./storage/Makefile > ./storage_ata/Makefile > ./storage_fs/Makefile > ./storage_mass/Makefile > ./storage_rio/Makefile > ./template/Makefile > ./wlan/Makefile > ./wlan_ral/Makefile > ./wlan_rum/Makefile > ./wlan_zyd/Makefile > > The following file has been deleted: > src/sys/dev/usb2/controller/uss820dci_pccard.c > > --HPS > _______________________________________________ > freebsd-current@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-current > To unsubscribe, send any mail to "freebsd-current-unsubscribe@freebsd.org" > _______________________________________________ > 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 hselasky at c2i.net Fri Oct 31 07:12:56 2008 From: hselasky at c2i.net (Hans Petter Selasky) Date: Fri Oct 31 07:13:03 2008 Subject: USB4BSD release candidate number 3 - request for review In-Reply-To: <200810310923.49411.Thomas.Sparrevohn@btinternet.com> References: <200810251925.47273.hselasky@c2i.net> <200810261633.22020.hselasky@c2i.net> <200810310923.49411.Thomas.Sparrevohn@btinternet.com> Message-ID: <200810311515.00814.hselasky@c2i.net> On Friday 31 October 2008, Thomas Sparrevohn wrote: > On Sunday 26 October 2008 15:33:20 Hans Petter Selasky wrote: > > > What is the device naming change to? The device names under /dev are the same like before. --HPS From Thomas.Sparrevohn at btinternet.com Fri Oct 31 07:56:35 2008 From: Thomas.Sparrevohn at btinternet.com (Thomas Sparrevohn) Date: Fri Oct 31 07:56:48 2008 Subject: USB4BSD release candidate number 3 - request for review In-Reply-To: <200810311515.00814.hselasky@c2i.net> References: <200810251925.47273.hselasky@c2i.net> <200810310923.49411.Thomas.Sparrevohn@btinternet.com> <200810311515.00814.hselasky@c2i.net> Message-ID: <200810311456.30839.Thomas.Sparrevohn@btinternet.com> On Friday 31 October 2008 14:14:59 Hans Petter Selasky wrote: > On Friday 31 October 2008, Thomas Sparrevohn wrote: > > On Sunday 26 October 2008 15:33:20 Hans Petter Selasky wrote: > > > > > > What is the device naming change to? > > The device names under /dev are the same like before. > > --HPS > I was thinking about in the Kernel configuration file - I have been using and it does not seem to attach anything # # GENERIC -- Generic kernel configuration file for FreeBSD/amd64 # # For more information on this file, please read the handbook section on # Kernel Configuration Files: # # http://www.FreeBSD.org/doc/en_US.ISO8859-1/books/handbook/kernelconfig-config.html # # The handbook is also available locally in /usr/share/doc/handbook # if you've installed the doc distribution, otherwise always see the # FreeBSD World Wide Web server (http://www.FreeBSD.org/) for the # latest information. # # An exhaustive list of options and more detailed explanations of the # device lines is also present in the ../../conf/NOTES and NOTES files. # If you are in doubt as to the purpose or necessity of a line, check first # in NOTES. # # $FreeBSD: src/sys/amd64/conf/GENERIC,v 1.508 2008/10/03 10:31:31 stas Exp $ cpu HAMMER ident GENERIC # To statically compile in device wiring instead of /boot/device.hints #hints "GENERIC.hints" # Default places to look for devices. makeoptions DEBUG=-g # Build kernel with gdb(1) debug symbols options SCHED_ULE # ULE scheduler options PREEMPTION # Enable kernel thread preemption options INET # InterNETworking options INET6 # IPv6 communications protocols options SCTP # Stream Control Transmission Protocol options FFS # Berkeley Fast Filesystem options SOFTUPDATES # Enable FFS soft updates support options UFS_ACL # Support for access control lists options UFS_DIRHASH # Improve performance on big directories options UFS_GJOURNAL # Enable gjournal-based UFS journaling options MD_ROOT # MD is a potential root device options NFSCLIENT # Network Filesystem Client options NFSSERVER # Network Filesystem Server options NFSLOCKD # Network Lock Manager options NFS_ROOT # NFS usable as /, requires NFSCLIENT options NTFS # NT File System options MSDOSFS # MSDOS Filesystem options CD9660 # ISO 9660 Filesystem options PROCFS # Process filesystem (requires PSEUDOFS) options PSEUDOFS # Pseudo-filesystem framework options GEOM_PART_GPT # GUID Partition Tables. options GEOM_LABEL # Provides labelization options COMPAT_43TTY # BSD 4.3 TTY compat [KEEP THIS!] options COMPAT_IA32 # Compatible with i386 binaries options COMPAT_FREEBSD4 # Compatible with FreeBSD4 options COMPAT_FREEBSD5 # Compatible with FreeBSD5 options COMPAT_FREEBSD6 # Compatible with FreeBSD6 options COMPAT_FREEBSD7 # Compatible with FreeBSD7 options SCSI_DELAY=5000 # Delay (in ms) before probing SCSI options KTRACE # ktrace(1) support options STACK # stack(9) support options SYSVSHM # SYSV-style shared memory options SYSVMSG # SYSV-style message queues options SYSVSEM # SYSV-style semaphores options _KPOSIX_PRIORITY_SCHEDULING # POSIX P1003_1B real-time extensions options KBD_INSTALL_CDEV # install a CDEV entry in /dev options STOP_NMI # Stop CPUS using NMI instead of IPI options AUDIT # Security event auditing options HWPMC_HOOKS # Necessary kernel hooks for hwpmc(4) # Debugging for use in -current options KDB # Enable kernel debugger support. options DDB # Support DDB. options GDB # Support remote GDB. options INVARIANTS # Enable calls of extra sanity checking options INVARIANT_SUPPORT # Extra sanity checks of internal structures, required by INVARIANTS options WITNESS # Enable checks to detect deadlocks and cycles options WITNESS_SKIPSPIN # Don't run witness on spinlocks for speed # Make an SMP-capable kernel by default options SMP # Symmetric MultiProcessor Kernel # CPU frequency control device cpufreq # Bus support. device acpi device pci # Floppy drives device fdc # ATA and ATAPI devices device ata device atadisk # ATA disk drives device ataraid # ATA RAID drives device atapicd # ATAPI CDROM drives device atapifd # ATAPI floppy drives device atapist # ATAPI tape drives options ATA_STATIC_ID # Static device numbering # SCSI Controllers device ahc # AHA2940 and onboard AIC7xxx devices options AHC_REG_PRETTY_PRINT # Print register bitfields in debug # output. Adds ~128k to driver. device ahd # AHA39320/29320 and onboard AIC79xx devices options AHD_REG_PRETTY_PRINT # Print register bitfields in debug # output. Adds ~215k to driver. device amd # AMD 53C974 (Tekram DC-390(T)) device hptiop # Highpoint RocketRaid 3xxx series device isp # Qlogic family #device ispfw # Firmware for QLogic HBAs- normally a module device mpt # LSI-Logic MPT-Fusion #device ncr # NCR/Symbios Logic device sym # NCR/Symbios Logic (newer chipsets + those of `ncr') device trm # Tekram DC395U/UW/F DC315U adapters device adv # Advansys SCSI adapters device adw # Advansys wide SCSI adapters device aic # Adaptec 15[012]x SCSI adapters, AIC-6[23]60. device bt # Buslogic/Mylex MultiMaster SCSI adapters # SCSI peripherals device scbus # SCSI bus (required for SCSI) device ch # SCSI media changers device da # Direct Access (disks) device sa # Sequential Access (tape etc) device cd # CD device pass # Passthrough device (direct SCSI access) device ses # SCSI Environmental Services (and SAF-TE) # RAID controllers interfaced to the SCSI subsystem device amr # AMI MegaRAID device arcmsr # Areca SATA II RAID device ciss # Compaq Smart RAID 5* device dpt # DPT Smartcache III, IV - See NOTES for options device hptmv # Highpoint RocketRAID 182x device hptrr # Highpoint RocketRAID 17xx, 22xx, 23xx, 25xx device iir # Intel Integrated RAID device ips # IBM (Adaptec) ServeRAID device mly # Mylex AcceleRAID/eXtremeRAID device twa # 3ware 9000 series PATA/SATA RAID # RAID controllers device aac # Adaptec FSA RAID device aacp # SCSI passthrough for aac (requires CAM) device ida # Compaq Smart RAID device mfi # LSI MegaRAID SAS device mlx # Mylex DAC960 family #XXX pointer/int warnings #device pst # Promise Supertrak SX6000 device twe # 3ware ATA RAID # atkbdc0 controls both the keyboard and the PS/2 mouse device atkbdc # AT keyboard controller device atkbd # AT keyboard device psm # PS/2 mouse device kbdmux # keyboard multiplexer device vga # VGA video card driver device splash # Splash screen and screen saver support # syscons is the default console driver, resembling an SCO console device sc device agp # support several AGP chipsets # PCCARD (PCMCIA) support # PCMCIA and cardbus bridge support device cbb # cardbus (yenta) bridge device pccard # PC Card (16-bit) bus device cardbus # CardBus (32-bit) bus # Serial (COM) ports device uart # Generic UART driver # Parallel port device ppc device ppbus # Parallel port bus (required) device lpt # Printer device plip # TCP/IP over parallel device ppi # Parallel port interface device #device vpo # Requires scbus and da # If you've got a "dumb" serial or parallel PCI card that is # supported by the puc(4) glue driver, uncomment the following # line to enable it (connects to sio, uart and/or ppc drivers): #device puc # PCI Ethernet NICs. device de # DEC/Intel DC21x4x (``Tulip'') device em # Intel PRO/1000 Gigabit Ethernet Family device igb # Intel PRO/1000 PCIE Server Gigabit Family device ixgb # Intel PRO/10GbE Ethernet Card device le # AMD Am7900 LANCE and Am79C9xx PCnet device ti # Alteon Networks Tigon I/II gigabit Ethernet device txp # 3Com 3cR990 (``Typhoon'') device vx # 3Com 3c590, 3c595 (``Vortex'') # PCI Ethernet NICs that use the common MII bus controller code. # NOTE: Be sure to keep the 'device miibus' line in order to use these NICs! device miibus # MII bus support device ae # Attansic/Atheros L2 FastEthernet device age # Attansic/Atheros L1 Gigabit Ethernet device bce # Broadcom BCM5706/BCM5708 Gigabit Ethernet device bfe # Broadcom BCM440x 10/100 Ethernet device bge # Broadcom BCM570xx Gigabit Ethernet device dc # DEC/Intel 21143 and various workalikes device et # Agere ET1310 10/100/Gigabit Ethernet device fxp # Intel EtherExpress PRO/100B (82557, 82558) device jme # JMicron JMC250 Gigabit/JMC260 Fast Ethernet device lge # Level 1 LXT1001 gigabit Ethernet device msk # Marvell/SysKonnect Yukon II Gigabit Ethernet device nfe # nVidia nForce MCP on-board Ethernet device nge # NatSemi DP83820 gigabit Ethernet #device nve # nVidia nForce MCP on-board Ethernet Networking device pcn # AMD Am79C97x PCI 10/100 (precedence over 'le') device re # RealTek 8139C+/8169/8169S/8110S device rl # RealTek 8129/8139 device sf # Adaptec AIC-6915 (``Starfire'') device sis # Silicon Integrated Systems SiS 900/SiS 7016 device sk # SysKonnect SK-984x & SK-982x gigabit Ethernet device ste # Sundance ST201 (D-Link DFE-550TX) device tl # Texas Instruments ThunderLAN device tx # SMC EtherPower II (83c170 ``EPIC'') device vge # VIA VT612x gigabit Ethernet device vr # VIA Rhine, Rhine II device wb # Winbond W89C840F device xl # 3Com 3c90x (``Boomerang'', ``Cyclone'') # ISA Ethernet NICs. pccard NICs included. device cs # Crystal Semiconductor CS89x0 NIC # 'device ed' requires 'device miibus' device ed # NE[12]000, SMC Ultra, 3c503, DS8390 cards device ex # Intel EtherExpress Pro/10 and Pro/10+ device ep # Etherlink III based cards device fe # Fujitsu MB8696x based cards device sn # SMC's 9000 series of Ethernet chips device xe # Xircom pccard Ethernet # Wireless NIC cards device wlan # 802.11 support options IEEE80211_DEBUG # enable debug msgs options IEEE80211_AMPDU_AGE # age frames in AMPDU reorder q's device wlan_wep # 802.11 WEP support device wlan_ccmp # 802.11 CCMP support device wlan_tkip # 802.11 TKIP support device wlan_amrr # AMRR transmit rate control algorithm device an # Aironet 4500/4800 802.11 wireless NICs. device ath # Atheros pci/cardbus NIC's device ath_hal # Atheros HAL (Hardware Access Layer) device ath_rate_sample # SampleRate tx rate control for ath device ral # Ralink Technology RT2500 wireless NICs. device wi # WaveLAN/Intersil/Symbol 802.11 wireless NICs. # Pseudo devices. device loop # Network loopback device random # Entropy device device ether # Ethernet support device tun # Packet tunnel. device pty # BSD-style compatibility pseudo ttys device md # Memory "disks" device gif # IPv6 and IPv4 tunneling device faith # IPv6-to-IPv4 relaying (translation) device firmware # firmware assist module # The `bpf' device enables the Berkeley Packet Filter. # Be aware of the administrative consequences of enabling this! # Note that 'bpf' is required for DHCP. device bpf # Berkeley packet filter # # USB2 # device usb2_core device usb2_controller device usb2_storage device usb2_ethernet device usb2_wlan device usb2_serial device usb2_input device usb2_quirk device usb2_template device usb2_image # USB support #device uhci # UHCI PCI->USB interface #device ohci # OHCI PCI->USB interface #device ehci # EHCI PCI->USB interface (USB 2.0) #device usb # USB Bus (required) ##device udbp # USB Double Bulk Pipe devices #device ugen # Generic #device uhid # "Human Interface Devices" #device ukbd # Keyboard #device ulpt # Printer #device umass # Disks/Mass storage - Requires scbus and da #device ums # Mouse #device ural # Ralink Technology RT2500USB wireless NICs #device rum # Ralink Technology RT2501USB wireless NICs #device urio # Diamond Rio 500 MP3 player #device uscanner # Scanners # USB Serial devices #device ucom # Generic com ttys #device uark # Technologies ARK3116 based serial adapters #device ubsa # Belkin F5U103 and compatible serial adapters #device uftdi # For FTDI usb serial adapters #device uipaq # Some WinCE based devices #device uplcom # Prolific PL-2303 serial adapters #device uslcom # SI Labs CP2101/CP2102 serial adapters #device uvisor # Visor and Palm devices #device uvscom # USB serial support for DDI pocket's PHS # USB Ethernet, requires miibus #device aue # ADMtek USB Ethernet #device axe # ASIX Electronics USB Ethernet #device cdce # Generic USB over Ethernet #device cue # CATC USB Ethernet #device kue # Kawasaki LSI USB Ethernet #device rue # RealTek RTL8150 USB Ethernet #device udav # Davicom DM9601E USB # FireWire support device firewire # FireWire bus code device sbp # SCSI over FireWire (Requires scbus and da) device fwe # Ethernet over FireWire (non-standard!) device fwip # IP over FireWire (RFC 2734,3146) device dcons # Dumb console driver device dcons_crom # Configuration ROM for dcons From hselasky at c2i.net Fri Oct 31 08:27:57 2008 From: hselasky at c2i.net (Hans Petter Selasky) Date: Fri Oct 31 08:28:09 2008 Subject: USB4BSD release candidate number 3 - request for review In-Reply-To: <200810311456.30839.Thomas.Sparrevohn@btinternet.com> References: <200810251925.47273.hselasky@c2i.net> <200810311515.00814.hselasky@c2i.net> <200810311456.30839.Thomas.Sparrevohn@btinternet.com> Message-ID: <200810311630.00596.hselasky@c2i.net> Hi, You need to update your kernel config file. For example to enable AXE ethernet support you need both: device usb2_ethernet device usb2_ethernet_axe Try: kldload /boot/kernel/usb2*.ko --HPS On Friday 31 October 2008, Thomas Sparrevohn wrote: > On Friday 31 October 2008 14:14:59 Hans Petter Selasky wrote: > > On Friday 31 October 2008, Thomas Sparrevohn wrote: > > > On Sunday 26 October 2008 15:33:20 Hans Petter Selasky wrote: > > > > > > > > > What is the device naming change to? > > > > The device names under /dev are the same like before. > > > > --HPS > > I was thinking about in the Kernel configuration file - I have been using > and it does not seem to attach anything > > # > # GENERIC -- Generic kernel configuration file for FreeBSD/amd64 > # > # For more information on this file, please read the handbook section on > # Kernel Configuration Files: > # > # > http://www.FreeBSD.org/doc/en_US.ISO8859-1/books/handbook/kernelconfig-conf >ig.html # > # The handbook is also available locally in /usr/share/doc/handbook > # if you've installed the doc distribution, otherwise always see the > # FreeBSD World Wide Web server (http://www.FreeBSD.org/) for the > # latest information. > # > # An exhaustive list of options and more detailed explanations of the > # device lines is also present in the ../../conf/NOTES and NOTES files. > # If you are in doubt as to the purpose or necessity of a line, check first > # in NOTES. > # > # $FreeBSD: src/sys/amd64/conf/GENERIC,v 1.508 2008/10/03 10:31:31 stas Exp > $ > > cpu HAMMER > ident GENERIC > > # To statically compile in device wiring instead of /boot/device.hints > #hints "GENERIC.hints" # Default places to look for devices. > > makeoptions DEBUG=-g # Build kernel with gdb(1) debug symbols > > options SCHED_ULE # ULE scheduler > options PREEMPTION # Enable kernel thread preemption > options INET # InterNETworking > options INET6 # IPv6 communications protocols > options SCTP # Stream Control Transmission Protocol > options FFS # Berkeley Fast Filesystem > options SOFTUPDATES # Enable FFS soft updates support > options UFS_ACL # Support for access control lists > options UFS_DIRHASH # Improve performance on big directories > options UFS_GJOURNAL # Enable gjournal-based UFS journaling > options MD_ROOT # MD is a potential root device > options NFSCLIENT # Network Filesystem Client > options NFSSERVER # Network Filesystem Server > options NFSLOCKD # Network Lock Manager > options NFS_ROOT # NFS usable as /, requires NFSCLIENT > options NTFS # NT File System > options MSDOSFS # MSDOS Filesystem > options CD9660 # ISO 9660 Filesystem > options PROCFS # Process filesystem (requires PSEUDOFS) > options PSEUDOFS # Pseudo-filesystem framework > options GEOM_PART_GPT # GUID Partition Tables. > options GEOM_LABEL # Provides labelization > options COMPAT_43TTY # BSD 4.3 TTY compat [KEEP THIS!] > options COMPAT_IA32 # Compatible with i386 binaries > options COMPAT_FREEBSD4 # Compatible with FreeBSD4 > options COMPAT_FREEBSD5 # Compatible with FreeBSD5 > options COMPAT_FREEBSD6 # Compatible with FreeBSD6 > options COMPAT_FREEBSD7 # Compatible with FreeBSD7 > options SCSI_DELAY=5000 # Delay (in ms) before probing SCSI > options KTRACE # ktrace(1) support > options STACK # stack(9) support > options SYSVSHM # SYSV-style shared memory > options SYSVMSG # SYSV-style message queues > options SYSVSEM # SYSV-style semaphores > options _KPOSIX_PRIORITY_SCHEDULING # POSIX P1003_1B real-time extensions > options KBD_INSTALL_CDEV # install a CDEV entry in /dev > options STOP_NMI # Stop CPUS using NMI instead of IPI > options AUDIT # Security event auditing > options HWPMC_HOOKS # Necessary kernel hooks for hwpmc(4) > > # Debugging for use in -current > options KDB # Enable kernel debugger support. > options DDB # Support DDB. > options GDB # Support remote GDB. > options INVARIANTS # Enable calls of extra sanity checking > options INVARIANT_SUPPORT # Extra sanity checks of internal structures, > required by INVARIANTS options WITNESS # Enable checks to detect > deadlocks and cycles > options WITNESS_SKIPSPIN # Don't run witness on spinlocks for speed > > # Make an SMP-capable kernel by default > options SMP # Symmetric MultiProcessor Kernel > > # CPU frequency control > device cpufreq > > # Bus support. > device acpi > device pci > > # Floppy drives > device fdc > > # ATA and ATAPI devices > device ata > device atadisk # ATA disk drives > device ataraid # ATA RAID drives > device atapicd # ATAPI CDROM drives > device atapifd # ATAPI floppy drives > device atapist # ATAPI tape drives > options ATA_STATIC_ID # Static device numbering > > # SCSI Controllers > device ahc # AHA2940 and onboard AIC7xxx devices > options AHC_REG_PRETTY_PRINT # Print register bitfields in debug > # output. Adds ~128k to driver. > device ahd # AHA39320/29320 and onboard AIC79xx devices > options AHD_REG_PRETTY_PRINT # Print register bitfields in debug > # output. Adds ~215k to driver. > device amd # AMD 53C974 (Tekram DC-390(T)) > device hptiop # Highpoint RocketRaid 3xxx series > device isp # Qlogic family > #device ispfw # Firmware for QLogic HBAs- normally a module > device mpt # LSI-Logic MPT-Fusion > #device ncr # NCR/Symbios Logic > device sym # NCR/Symbios Logic (newer chipsets + those of `ncr') > device trm # Tekram DC395U/UW/F DC315U adapters > > device adv # Advansys SCSI adapters > device adw # Advansys wide SCSI adapters > device aic # Adaptec 15[012]x SCSI adapters, AIC-6[23]60. > device bt # Buslogic/Mylex MultiMaster SCSI adapters > > # SCSI peripherals > device scbus # SCSI bus (required for SCSI) > device ch # SCSI media changers > device da # Direct Access (disks) > device sa # Sequential Access (tape etc) > device cd # CD > device pass # Passthrough device (direct SCSI access) > device ses # SCSI Environmental Services (and SAF-TE) > > # RAID controllers interfaced to the SCSI subsystem > device amr # AMI MegaRAID > device arcmsr # Areca SATA II RAID > device ciss # Compaq Smart RAID 5* > device dpt # DPT Smartcache III, IV - See NOTES for options > device hptmv # Highpoint RocketRAID 182x > device hptrr # Highpoint RocketRAID 17xx, 22xx, 23xx, 25xx > device iir # Intel Integrated RAID > device ips # IBM (Adaptec) ServeRAID > device mly # Mylex AcceleRAID/eXtremeRAID > device twa # 3ware 9000 series PATA/SATA RAID > > # RAID controllers > device aac # Adaptec FSA RAID > device aacp # SCSI passthrough for aac (requires CAM) > device ida # Compaq Smart RAID > device mfi # LSI MegaRAID SAS > device mlx # Mylex DAC960 family > #XXX pointer/int warnings > #device pst # Promise Supertrak SX6000 > device twe # 3ware ATA RAID > > # atkbdc0 controls both the keyboard and the PS/2 mouse > device atkbdc # AT keyboard controller > device atkbd # AT keyboard > device psm # PS/2 mouse > > device kbdmux # keyboard multiplexer > > device vga # VGA video card driver > > device splash # Splash screen and screen saver support > > # syscons is the default console driver, resembling an SCO console > device sc > > device agp # support several AGP chipsets > > # PCCARD (PCMCIA) support > # PCMCIA and cardbus bridge support > device cbb # cardbus (yenta) bridge > device pccard # PC Card (16-bit) bus > device cardbus # CardBus (32-bit) bus > > # Serial (COM) ports > device uart # Generic UART driver > > # Parallel port > device ppc > device ppbus # Parallel port bus (required) > device lpt # Printer > device plip # TCP/IP over parallel > device ppi # Parallel port interface device > #device vpo # Requires scbus and da > > # If you've got a "dumb" serial or parallel PCI card that is > # supported by the puc(4) glue driver, uncomment the following > # line to enable it (connects to sio, uart and/or ppc drivers): > #device puc > > # PCI Ethernet NICs. > device de # DEC/Intel DC21x4x (``Tulip'') > device em # Intel PRO/1000 Gigabit Ethernet Family > device igb # Intel PRO/1000 PCIE Server Gigabit Family > device ixgb # Intel PRO/10GbE Ethernet Card > device le # AMD Am7900 LANCE and Am79C9xx PCnet > device ti # Alteon Networks Tigon I/II gigabit Ethernet > device txp # 3Com 3cR990 (``Typhoon'') > device vx # 3Com 3c590, 3c595 (``Vortex'') > > # PCI Ethernet NICs that use the common MII bus controller code. > # NOTE: Be sure to keep the 'device miibus' line in order to use these > NICs! device miibus # MII bus support > device ae # Attansic/Atheros L2 FastEthernet > device age # Attansic/Atheros L1 Gigabit Ethernet > device bce # Broadcom BCM5706/BCM5708 Gigabit Ethernet > device bfe # Broadcom BCM440x 10/100 Ethernet > device bge # Broadcom BCM570xx Gigabit Ethernet > device dc # DEC/Intel 21143 and various workalikes > device et # Agere ET1310 10/100/Gigabit Ethernet > device fxp # Intel EtherExpress PRO/100B (82557, 82558) > device jme # JMicron JMC250 Gigabit/JMC260 Fast Ethernet > device lge # Level 1 LXT1001 gigabit Ethernet > device msk # Marvell/SysKonnect Yukon II Gigabit Ethernet > device nfe # nVidia nForce MCP on-board Ethernet > device nge # NatSemi DP83820 gigabit Ethernet > #device nve # nVidia nForce MCP on-board Ethernet Networking > device pcn # AMD Am79C97x PCI 10/100 (precedence over 'le') > device re # RealTek 8139C+/8169/8169S/8110S > device rl # RealTek 8129/8139 > device sf # Adaptec AIC-6915 (``Starfire'') > device sis # Silicon Integrated Systems SiS 900/SiS 7016 > device sk # SysKonnect SK-984x & SK-982x gigabit Ethernet > device ste # Sundance ST201 (D-Link DFE-550TX) > device tl # Texas Instruments ThunderLAN > device tx # SMC EtherPower II (83c170 ``EPIC'') > device vge # VIA VT612x gigabit Ethernet > device vr # VIA Rhine, Rhine II > device wb # Winbond W89C840F > device xl # 3Com 3c90x (``Boomerang'', ``Cyclone'') > > # ISA Ethernet NICs. pccard NICs included. > device cs # Crystal Semiconductor CS89x0 NIC > # 'device ed' requires 'device miibus' > device ed # NE[12]000, SMC Ultra, 3c503, DS8390 cards > device ex # Intel EtherExpress Pro/10 and Pro/10+ > device ep # Etherlink III based cards > device fe # Fujitsu MB8696x based cards > device sn # SMC's 9000 series of Ethernet chips > device xe # Xircom pccard Ethernet > > # Wireless NIC cards > device wlan # 802.11 support > options IEEE80211_DEBUG # enable debug msgs > options IEEE80211_AMPDU_AGE # age frames in AMPDU reorder q's > device wlan_wep # 802.11 WEP support > device wlan_ccmp # 802.11 CCMP support > device wlan_tkip # 802.11 TKIP support > device wlan_amrr # AMRR transmit rate control algorithm > device an # Aironet 4500/4800 802.11 wireless NICs. > device ath # Atheros pci/cardbus NIC's > device ath_hal # Atheros HAL (Hardware Access Layer) > device ath_rate_sample # SampleRate tx rate control for ath > device ral # Ralink Technology RT2500 wireless NICs. > device wi # WaveLAN/Intersil/Symbol 802.11 wireless NICs. > > # Pseudo devices. > device loop # Network loopback > device random # Entropy device > device ether # Ethernet support > device tun # Packet tunnel. > device pty # BSD-style compatibility pseudo ttys > device md # Memory "disks" > device gif # IPv6 and IPv4 tunneling > device faith # IPv6-to-IPv4 relaying (translation) > device firmware # firmware assist module > > # The `bpf' device enables the Berkeley Packet Filter. > # Be aware of the administrative consequences of enabling this! > # Note that 'bpf' is required for DHCP. > device bpf # Berkeley packet filter > > # > # USB2 > # > device usb2_core > device usb2_controller > device usb2_storage > device usb2_ethernet > device usb2_wlan > device usb2_serial > device usb2_input > device usb2_quirk > device usb2_template > device usb2_image > > > # USB support > #device uhci # UHCI PCI->USB interface > #device ohci # OHCI PCI->USB interface > #device ehci # EHCI PCI->USB interface (USB 2.0) > #device usb # USB Bus (required) > ##device udbp # USB Double Bulk Pipe devices > #device ugen # Generic > #device uhid # "Human Interface Devices" > #device ukbd # Keyboard > #device ulpt # Printer > #device umass # Disks/Mass storage - Requires scbus and da > #device ums # Mouse > #device ural # Ralink Technology RT2500USB wireless NICs > #device rum # Ralink Technology RT2501USB wireless NICs > #device urio # Diamond Rio 500 MP3 player > #device uscanner # Scanners > # USB Serial devices > #device ucom # Generic com ttys > #device uark # Technologies ARK3116 based serial adapters > #device ubsa # Belkin F5U103 and compatible serial adapters > #device uftdi # For FTDI usb serial adapters > #device uipaq # Some WinCE based devices > #device uplcom # Prolific PL-2303 serial adapters > #device uslcom # SI Labs CP2101/CP2102 serial adapters > #device uvisor # Visor and Palm devices > #device uvscom # USB serial support for DDI pocket's PHS > # USB Ethernet, requires miibus > #device aue # ADMtek USB Ethernet > #device axe # ASIX Electronics USB Ethernet > #device cdce # Generic USB over Ethernet > #device cue # CATC USB Ethernet > #device kue # Kawasaki LSI USB Ethernet > #device rue # RealTek RTL8150 USB Ethernet > #device udav # Davicom DM9601E USB > > # FireWire support > device firewire # FireWire bus code > device sbp # SCSI over FireWire (Requires scbus and da) > device fwe # Ethernet over FireWire (non-standard!) > device fwip # IP over FireWire (RFC 2734,3146) > device dcons # Dumb console driver > device dcons_crom # Configuration ROM for dcons From hselasky at c2i.net Fri Oct 31 08:54:40 2008 From: hselasky at c2i.net (Hans Petter Selasky) Date: Fri Oct 31 08:54:51 2008 Subject: USB4BSD release candidate number 3 - request for review In-Reply-To: <367b2c980810310828q2f4f0ecfmdb8cae313c91e8c8@mail.gmail.com> References: <200810251925.47273.hselasky@c2i.net> <200810311456.30839.Thomas.Sparrevohn@btinternet.com> <367b2c980810310828q2f4f0ecfmdb8cae313c91e8c8@mail.gmail.com> Message-ID: <200810311656.44467.hselasky@c2i.net> On Friday 31 October 2008, Olivier SMEDTS wrote: > Hello, > > Each device driver has been splitted since RC3. > Look in /boot/kernel/usb2_*. You can use modules. > For example, for my usb mouse, I use usb2_input_ums. Hi, Looks like I made a small typo there. The module is named "usb2_input_ms" while the kernel option is named "usb2_input_ums". The kernel option should be named "usb2_input_ms". Alfred: Can you fix this before committing? --HPS From olivier at gid0.org Fri Oct 31 09:01:24 2008 From: olivier at gid0.org (Olivier SMEDTS) Date: Fri Oct 31 09:01:34 2008 Subject: USB4BSD release candidate number 3 - request for review In-Reply-To: <200810311456.30839.Thomas.Sparrevohn@btinternet.com> References: <200810251925.47273.hselasky@c2i.net> <200810310923.49411.Thomas.Sparrevohn@btinternet.com> <200810311515.00814.hselasky@c2i.net> <200810311456.30839.Thomas.Sparrevohn@btinternet.com> Message-ID: <367b2c980810310828q2f4f0ecfmdb8cae313c91e8c8@mail.gmail.com> Hello, 2008/10/31 Thomas Sparrevohn : > On Friday 31 October 2008 14:14:59 Hans Petter Selasky wrote: >> On Friday 31 October 2008, Thomas Sparrevohn wrote: >> > On Sunday 26 October 2008 15:33:20 Hans Petter Selasky wrote: >> > >> > >> > What is the device naming change to? >> >> The device names under /dev are the same like before. >> >> --HPS >> > > I was thinking about in the Kernel configuration file - I have been using and it does not seem to attach anything > > # > # GENERIC -- Generic kernel configuration file for FreeBSD/amd64 > # > # For more information on this file, please read the handbook section on > # Kernel Configuration Files: [snip] > # > # USB2 > # > device usb2_core > device usb2_controller > device usb2_storage > device usb2_ethernet > device usb2_wlan > device usb2_serial > device usb2_input > device usb2_quirk > device usb2_template > device usb2_image Each device driver has been splitted since RC3. Look in /boot/kernel/usb2_*. You can use modules. For example, for my usb mouse, I use usb2_input_ums. Cheers, Olivier > > > # USB support > #device uhci # UHCI PCI->USB interface > #device ohci # OHCI PCI->USB interface > #device ehci # EHCI PCI->USB interface (USB 2.0) > #device usb # USB Bus (required) > ##device udbp # USB Double Bulk Pipe devices > #device ugen # Generic > #device uhid # "Human Interface Devices" > #device ukbd # Keyboard > #device ulpt # Printer > #device umass # Disks/Mass storage - Requires scbus and da > #device ums # Mouse > #device ural # Ralink Technology RT2500USB wireless NICs > #device rum # Ralink Technology RT2501USB wireless NICs > #device urio # Diamond Rio 500 MP3 player > #device uscanner # Scanners > # USB Serial devices > #device ucom # Generic com ttys > #device uark # Technologies ARK3116 based serial adapters > #device ubsa # Belkin F5U103 and compatible serial adapters > #device uftdi # For FTDI usb serial adapters > #device uipaq # Some WinCE based devices > #device uplcom # Prolific PL-2303 serial adapters > #device uslcom # SI Labs CP2101/CP2102 serial adapters > #device uvisor # Visor and Palm devices > #device uvscom # USB serial support for DDI pocket's PHS > # USB Ethernet, requires miibus > #device aue # ADMtek USB Ethernet > #device axe # ASIX Electronics USB Ethernet > #device cdce # Generic USB over Ethernet > #device cue # CATC USB Ethernet > #device kue # Kawasaki LSI USB Ethernet > #device rue # RealTek RTL8150 USB Ethernet > #device udav # Davicom DM9601E USB > > # FireWire support > device firewire # FireWire bus code > device sbp # SCSI over FireWire (Requires scbus and da) > device fwe # Ethernet over FireWire (non-standard!) > device fwip # IP over FireWire (RFC 2734,3146) > device dcons # Dumb console driver > device dcons_crom # Configuration ROM for dcons > > _______________________________________________ > 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" > -- Olivier Smedts _ ASCII ribbon campaign ( ) e-mail: olivier@gid0.org - against HTML email & vCards X www: http://www.gid0.org - against proprietary attachments / \ "Il y a seulement 10 sortes de gens dans le monde : ceux qui comprennent le binaire, et ceux qui ne le comprennent pas." From Thomas.Sparrevohn at btinternet.com Fri Oct 31 10:06:07 2008 From: Thomas.Sparrevohn at btinternet.com (Thomas Sparrevohn) Date: Fri Oct 31 10:06:19 2008 Subject: USB4BSD release candidate number 3 - request for review In-Reply-To: <200810311630.00596.hselasky@c2i.net> References: <200810251925.47273.hselasky@c2i.net> <200810311456.30839.Thomas.Sparrevohn@btinternet.com> <200810311630.00596.hselasky@c2i.net> Message-ID: <200810311706.03850.Thomas.Sparrevohn@btinternet.com> On Friday 31 October 2008 15:29:59 Hans Petter Selasky wrote: Will do - Thanks a million I give u. feedback From Thomas.Sparrevohn at btinternet.com Fri Oct 31 10:16:13 2008 From: Thomas.Sparrevohn at btinternet.com (Thomas Sparrevohn) Date: Fri Oct 31 10:16:19 2008 Subject: USB4BSD release candidate number 3 - request for review In-Reply-To: <200810311656.44467.hselasky@c2i.net> References: <200810251925.47273.hselasky@c2i.net> <367b2c980810310828q2f4f0ecfmdb8cae313c91e8c8@mail.gmail.com> <200810311656.44467.hselasky@c2i.net> Message-ID: <200810311716.10165.Thomas.Sparrevohn@btinternet.com> On Friday 31 October 2008 15:56:42 Hans Petter Selasky wrote: > On Friday 31 October 2008, Olivier SMEDTS wrote: > > Hello, > > > > Each device driver has been splitted since RC3. > > Look in /boot/kernel/usb2_*. You can use modules. > > For example, for my usb mouse, I use usb2_input_ums. > > Hi, > > Looks like I made a small typo there. The module is named "usb2_input_ms" > while the kernel option is named "usb2_input_ums". The kernel option should > be named "usb2_input_ms". > Is this the same issue? config: Error: device "usb2_controller_uss820dci" is unknown config: Error: device "usb2_ethernet_dav" is unknown > Alfred: Can you fix this before committing? > > --HPS > _______________________________________________ > freebsd-current@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-current > To unsubscribe, send any mail to "freebsd-current-unsubscribe@freebsd.org" > From hselasky at c2i.net Fri Oct 31 13:44:26 2008 From: hselasky at c2i.net (Hans Petter Selasky) Date: Fri Oct 31 13:44:34 2008 Subject: USB4BSD release candidate number 3 - request for review In-Reply-To: <200810311716.10165.Thomas.Sparrevohn@btinternet.com> References: <200810251925.47273.hselasky@c2i.net> <200810311656.44467.hselasky@c2i.net> <200810311716.10165.Thomas.Sparrevohn@btinternet.com> Message-ID: <200810312146.32114.hselasky@c2i.net> On Friday 31 October 2008, Thomas Sparrevohn wrote: > On Friday 31 October 2008 15:56:42 Hans Petter Selasky wrote: > > On Friday 31 October 2008, Olivier SMEDTS wrote: > > Hi, > > > > Looks like I made a small typo there. The module is named "usb2_input_ms" > > while the kernel option is named "usb2_input_ums". The kernel option > > should be named "usb2_input_ms". > > Is this the same issue? > > config: Error: device "usb2_controller_uss820dci" is unknown > config: Error: device "usb2_ethernet_dav" is unknown > Yes, thanks for reporting. Should be fixed now: http://perforce.freebsd.org/chv.cgi?CH=152295 --HPS