To subscribe or unsubscribe via the World Wide Web, visit
http://lists.freebsd.org/mailman/listinfo/freebsd-usb
or, via email, send a message with subject or body 'help' to
freebsd-u...@freebsd.org
You can reach the person managing the list at
freebsd-...@freebsd.org
When replying, please edit your Subject line so it is more specific
than "Re: Contents of freebsd-usb digest..."
Today's Topics:
1. Re: FT4232H on ehci problem (was Re: usb/143832: [uftdi]
Request support for FTDI FT4232H.) (Hans Petter Selasky)
2. Re: FT4232H on ehci problem (was Re: usb/143832: [uftdi]
Request support for FTDI FT4232H.) (Hans Petter Selasky)
3. Re: FT4232H on ehci problem (was Re: usb/143832: [uftdi]
Request support for FTDI FT4232H.) (UEMURA Tetsuya)
4. using USB based micro and speaker with FreeBSD / Skype
(Matthias Apitz)
5. Re: using USB based micro and speaker with FreeBSD / Skype
(Matthias Apitz)
6. Re: usb/143620: the module if_cdce doesn't support my
Openmoko Neo FreeRunner anymore (Christian Neugum)
7. Re: usb/143620: the module if_cdce doesn't support my
Openmoko Neo FreeRunner anymore (Christian Neugum)
8. Re: usb/143620: the module if_cdce doesn't support my
Openmoko Neo FreeRunner anymore (Hans Petter Selasky)
9. Re: usb/143620: the module if_cdce doesn't support my
Openmoko Neo FreeRunner anymore (Hans Petter Selasky)
10. Re: usb/144043: [umass] USB DLT tape drive throws random
errors (lin...@FreeBSD.org)
11. Regression with ukbd/ums (Alexander Leidinger)
12. Adding AlphaSmart Dana Support to uvisor issues (Stephen Hurd)
13. Re: Regression with ukbd/ums (Hans Petter Selasky)
14. Re: Regression with ukbd/ums (Alexander Leidinger)
15. Re: Regression with ukbd/ums (Hans Petter Selasky)
16. Re: Regression with ukbd/ums (Alexander Leidinger)
17. Re: Regression with ukbd/ums (Hans Petter Selasky)
18. Re: using USB based micro and speaker with FreeBSD / Skype
(Matthias Apitz)
19. Re: using USB based micro and speaker with FreeBSD / Skype
(Hans Petter Selasky)
20. Re: using USB based micro and speaker with FreeBSD / Skype
(Matthias Apitz)
21. Re: using USB based micro and speaker with FreeBSD / Skype
(Hans Petter Selasky)
22. Re: using USB based micro and speaker with FreeBSD / Skype
(Matthias Apitz)
23. Re: using USB based micro and speaker with FreeBSD / Skype
(Hans Petter Selasky)
24. Using a USB keyboard at the root mount prompt (Bruce Cran)
25. Re: Using a USB keyboard at the root mount prompt
(Hans Petter Selasky)
26. usb/144199: uvisor(4) - AlphaSmart Dana incorrect stall
clearing (Stephen Hurd)
27. Re: usb/144199: uvisor(4) - AlphaSmart Dana incorrect stall
clearing (Hans Petter Selasky)
28. Re: usb/144199: uvisor(4) - AlphaSmart Dana incorrect stall
clearing (Hans Petter Selasky)
29. usb/144201: AlphaSmart Dana usbdevs and uvisor update
(Stephen Hurd)
30. Current problem reports assigned to freeb...@FreeBSD.org
(FreeBSD bugmaster)
----------------------------------------------------------------------
Message: 1
Date: Mon, 15 Feb 2010 15:00:56 +0100
From: Hans Petter Selasky <hsel...@c2i.net>
Subject: Re: FT4232H on ehci problem (was Re: usb/143832: [uftdi]
Request support for FTDI FT4232H.)
To: freeb...@freebsd.org
Cc: UEMURA Tetsuya <t_ue...@macome.co.jp>
Message-ID: <201002151500....@c2i.net>
Content-Type: Text/Plain; charset="iso-8859-15"
On Monday 15 February 2010 14:37:10 UEMURA Tetsuya wrote:
> > Now I have a problem with the device. When it is attached on ehci, it
> > always stalls when I do a bit heavy communication over it. This doesn't
> > happen with uhci (kldunload ehci or whatever).
>
> I did further investigation myself and found that wMaxPacketSize is
> 0x0200 when the device was on ehci (0x0040 on uhci), and the device
> seemed to work (at least not stall) on ehci if I changed
> UFTDI_[IO]BUFSIZE to 512.
>
> The device however stopped working on uhci with such a modification.
>
> By the way, the official FTDI Linux driver found at
> http://www.ftdichip.com/Drivers/VCP/Linux/ftdi_sio.tar.gz
> also seemed to specify 512 as its buffer sizes.
>
> Can anyone help me?
>
> Regards.
>
What platform are you running?
--HPS
------------------------------
Message: 2
Date: Mon, 15 Feb 2010 15:06:14 +0100
From: Hans Petter Selasky <hsel...@c2i.net>
Subject: Re: FT4232H on ehci problem (was Re: usb/143832: [uftdi]
Request support for FTDI FT4232H.)
To: freeb...@freebsd.org
Cc: UEMURA Tetsuya <t_ue...@macome.co.jp>
Message-ID: <201002151506....@c2i.net>
Content-Type: Text/Plain; charset="iso-8859-15"
On Monday 15 February 2010 15:00:56 Hans Petter Selasky wrote:
> On Monday 15 February 2010 14:37:10 UEMURA Tetsuya wrote:
> > > Now I have a problem with the device. When it is attached on ehci, it
> > > always stalls when I do a bit heavy communication over it. This doesn't
> > > happen with uhci (kldunload ehci or whatever).
> >
> > I did further investigation myself and found that wMaxPacketSize is
> > 0x0200 when the device was on ehci (0x0040 on uhci), and the device
> > seemed to work (at least not stall) on ehci if I changed
> > UFTDI_[IO]BUFSIZE to 512.
> >
> > The device however stopped working on uhci with such a modification.
> >
> > By the way, the official FTDI Linux driver found at
> > http://www.ftdichip.com/Drivers/VCP/Linux/ftdi_sio.tar.gz
> > also seemed to specify 512 as its buffer sizes.
> >
> > Can anyone help me?
> >
> > Regards.
>
> What platform are you running?
>
> --HPS
>
There is a special feature in the new USB stack. Try to define:
#define UFTDI_IBUFSIZE 0 /* use wMaxPacketSize */
--HPS
------------------------------
Message: 3
Date: Mon, 15 Feb 2010 23:32:41 +0900 (JST)
From: UEMURA Tetsuya <t_ue...@macome.co.jp>
Subject: Re: FT4232H on ehci problem (was Re: usb/143832: [uftdi]
Request support for FTDI FT4232H.)
To: Hans Petter Selasky <hsel...@c2i.net>, freeb...@freebsd.org
Message-ID: <201002151432...@towerrecords.dyndns.org>
Content-Type: text/plain; charset="US-ASCII"
Posted on Mon, 15 Feb 2010 15:06:14 +0100
by author Hans Petter Selasky <hsel...@c2i.net>
> On Monday 15 February 2010 15:00:56 Hans Petter Selasky wrote:
> > On Monday 15 February 2010 14:37:10 UEMURA Tetsuya wrote:
> > > > Now I have a problem with the device. When it is attached on ehci, it
> > > > always stalls when I do a bit heavy communication over it. This doesn't
> > > > happen with uhci (kldunload ehci or whatever).
> > >
> > > I did further investigation myself and found that wMaxPacketSize is
> > > 0x0200 when the device was on ehci (0x0040 on uhci), and the device
> > > seemed to work (at least not stall) on ehci if I changed
> > > UFTDI_[IO]BUFSIZE to 512.
> > >
> > > The device however stopped working on uhci with such a modification.
> > >
> > > By the way, the official FTDI Linux driver found at
> > > http://www.ftdichip.com/Drivers/VCP/Linux/ftdi_sio.tar.gz
> > > also seemed to specify 512 as its buffer sizes.
> > >
> > > Can anyone help me?
> > >
> > > Regards.
> >
> > What platform are you running?
Hi Hans.
It's a recent 8-STABLE. Full dmesg output and level 5 (or maybe level
10) usb log can be found at the following location.
http://lists.freebsd.org/pipermail/freebsd-usb/2010-February/008293.html
> There is a special feature in the new USB stack. Try to define:
>
> #define UFTDI_IBUFSIZE 0 /* use wMaxPacketSize */
Thanks. I'll test it tomorrow.
Regards.
--
UEMURA Tetsuya <t_ue...@macome.co.jp>
------------------------------
Message: 4
Date: Wed, 17 Feb 2010 11:55:17 +0100
From: Matthias Apitz <gu...@unixarea.de>
Subject: using USB based micro and speaker with FreeBSD / Skype
To: freebsd...@freebsd.org, freeb...@freebsd.org
Message-ID: <2010021710...@current.Sisis.de>
Content-Type: text/plain; charset=us-ascii
Hello,
I'm running a 8-CURRENT on a Dell M4400 laptop, which has an internal
micro and loudspeaker which work fine with Skype. For meetings I'd like
to have better sound on my side, i.e. would like to use external
loudspeaker and microphone. I've got from our support these two USB
devices:
microphone:
Feb 17 11:47:46 current root: Unknown USB device: vendor 0x0556 product 0x0001 bus uhub0
Feb 17 11:47:46 current kernel: ugen5.2: <Asahi Kasei Microsystems> at usbus5
loudspeaker:
Feb 17 11:48:36 current kernel: ugen5.2: <Logitech> at usbus5
Feb 17 11:48:36 current kernel: uhid0: <Logitech Logitech Speaker, class 0/0, rev 1.10/1.00, addr 2> on usbus5
Feb 17 11:48:36 current root: Unknown USB device: vendor 0x046d product 0x0a10 bus uhub0
Is there any way to map them to the audio system of my FreeBSD or should
I aim for devices with normal audio jacks?
Thx
matthias
--
Matthias Apitz
t +49-89-61308 351 - f +49-89-61308 399 - m +49-170-4527211
e <gu...@unixarea.de> - w http://www.unixarea.de/
Vote NO to EU The Lisbon Treaty: http://www.no-means-no.eu
------------------------------
Message: 5
Date: Wed, 17 Feb 2010 14:19:22 +0100
From: Matthias Apitz <gu...@unixarea.de>
Subject: Re: using USB based micro and speaker with FreeBSD / Skype
To: freebsd...@freebsd.org, freeb...@freebsd.org
Message-ID: <2010021713...@current.Sisis.de>
Content-Type: text/plain; charset=iso-8859-1
El d�a Wednesday, February 17, 2010 a las 11:55:17AM +0100, Matthias Apitz escribi�:
>
> Hello,
>
> I'm running a 8-CURRENT on a Dell M4400 laptop, which has an internal
> micro and loudspeaker which work fine with Skype. For meetings I'd like
> to have better sound on my side, i.e. would like to use external
> loudspeaker and microphone. I've got from our support these two USB
> devices:
>
> microphone:
> Feb 17 11:47:46 current root: Unknown USB device: vendor 0x0556 product 0x0001 bus uhub0
> Feb 17 11:47:46 current kernel: ugen5.2: <Asahi Kasei Microsystems> at usbus5
>
> loudspeaker:
> Feb 17 11:48:36 current kernel: ugen5.2: <Logitech> at usbus5
> Feb 17 11:48:36 current kernel: uhid0: <Logitech Logitech Speaker, class 0/0, rev 1.10/1.00, addr 2> on usbus5
> Feb 17 11:48:36 current root: Unknown USB device: vendor 0x046d product 0x0a10 bus uhub0
>
> Is there any way to map them to the audio system of my FreeBSD or should
> I aim for devices with normal audio jacks?
Follow-up: the microphone problem perhaps is related to this bug report:
http://www.freebsd.org/cgi/query-pr.cgi?pr=141664
matthias
--
Matthias Apitz
t +49-89-61308 351 - f +49-89-61308 399 - m +49-170-4527211
e <gu...@unixarea.de> - w http://www.unixarea.de/
Vote NO to EU The Lisbon Treaty: http://www.no-means-no.eu
------------------------------
Message: 6
Date: Wed, 17 Feb 2010 20:10:03 +0100
From: Christian Neugum <b...@digitalc.de>
Subject: Re: usb/143620: the module if_cdce doesn't support my
Openmoko Neo FreeRunner anymore
To: Hans Petter Selasky <hsel...@c2i.net>, freeb...@freebsd.org,
freebsd-gn...@freebsd.org
Message-ID: <4B7C3F0B...@digitalc.de>
Content-Type: text/plain; charset=ISO-8859-15
On 02/07/10 09:13, Hans Petter Selasky wrote:
> On Sunday 07 February 2010 00:38:31 Christian Neugum wrote:
>>> Number: 143620
>>> Category: usb
>>> Synopsis: the module if_cdce doesn't support my Openmoko Neo
>>> FreeRunner anymore 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: Sat Feb 06 23:40:01 UTC 2010
>>> Closed-Date:
>>> Last-Modified:
>>> Originator: Christian Neugum
>>> Release: 8.0-stable
>>> Organization:
>>
>> private person
>>
>>> Environment:
>>
>> FreeBSD Chris 8.0-STABLE FreeBSD 8.0-STABLE #1: Sun Jan 10 21:27:41 CET
>> 2010 root@Chris:/usr/obj/usr/src/sys/WORKSTATION i386
>>
>>> Description:
>>
>> I've installed FreeBSD 8.0 on my computer and I cannot get my Openmoko Neo
>> FreeRunner working with if_cdce. With FreeBSD 7.2 it worked well. After
>> loading the if_cdce kernel module I plugged in my FreeRunner but no cdce*
>> device is shown in /dev. I've tried different usb ports and loaded the
>> module at boottime but the result is the same.
>>
>>> How-To-Repeat:
>>
>> $ kldstat
>> Id Refs Address Size Name
>> 1 18 0xc0400000 612ca4 kernel
>> 2 1 0xc0a13000 14f10 snd_emu10kx.ko
>> 3 3 0xc0a28000 55730 sound.ko
>> 4 1 0xc0a7e000 7551b4 nvidia.ko
>> 5 2 0xc11d4000 2c8d4 linux.ko
>> $ sudo kldload if_cdce
>> $ kldstat
>> Id Refs Address Size Name
>> 1 26 0xc0400000 612ca4 kernel
>> 2 1 0xc0a13000 14f10 snd_emu10kx.ko
>> 3 3 0xc0a28000 55730 sound.ko
>> 4 1 0xc0a7e000 7551b4 nvidia.ko
>> 5 2 0xc11d4000 2c8d4 linux.ko
>> 6 1 0xc8b9b000 6000 if_cdce.ko
>> 7 1 0xc7108000 3000 uether.ko
>> <<<--- plugged in my FreeRuner
>> $ dmesg
>> [...]
>> ugen1.2: <Linux 2.6.29-GTA02_qtmoko-v14-mokodev with s3c241> at usbus1
>> $ ls /dev | grep c
>> acd0
>> acd1
>> acpi
>> console
>> consolectl
>> ctty
>> devctl
>> geom.ctl
>> mdctl
>> nfslock
>> nvidiactl
>> pci
>> ttyvc
>> usbctl
>>
>>> Fix:
>
> You need to execute, due to the way the Linux guys designed it. Alternativly
> you can add a quirk to the quirks table to do this automatically.
>
> usbconfig -u 1 a 2 set_config 1
>
> --HPS
Hi,
it seems that my reply got lost in the www.
The workaround fixed my problem, but can you show me how to add a quirk
to the quirks table or provide me with a website? I haven't found
anything in Google.
Thanks!
Christian
------------------------------
Message: 7
Date: Wed, 17 Feb 2010 19:10:06 GMT
From: Christian Neugum <b...@digitalc.de>
Subject: Re: usb/143620: the module if_cdce doesn't support my
Openmoko Neo FreeRunner anymore
To: freeb...@FreeBSD.org
Message-ID: <201002171910....@freefall.freebsd.org>
The following reply was made to PR usb/143620; it has been noted by GNATS.
From: Christian Neugum <b...@digitalc.de>
To: Hans Petter Selasky <hsel...@c2i.net>, freeb...@freebsd.org,
freebsd-gn...@freebsd.org
Cc:
Subject: Re: usb/143620: the module if_cdce doesn't support my Openmoko Neo
FreeRunner anymore
Date: Wed, 17 Feb 2010 20:10:03 +0100
On 02/07/10 09:13, Hans Petter Selasky wrote:
> On Sunday 07 February 2010 00:38:31 Christian Neugum wrote:
>>> Number: 143620
>>> Category: usb
>>> Synopsis: the module if_cdce doesn't support my Openmoko Neo
>>> FreeRunner anymore 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: Sat Feb 06 23:40:01 UTC 2010
>>> Closed-Date:
>>> Last-Modified:
>>> Originator: Christian Neugum
>>> Release: 8.0-stable
>>> Organization:
>>
>> private person
>>
>>> Environment:
>>
>> FreeBSD Chris 8.0-STABLE FreeBSD 8.0-STABLE #1: Sun Jan 10 21:27:41 CET
>> 2010 root@Chris:/usr/obj/usr/src/sys/WORKSTATION i386
>>
>>> Description:
>>
>> I've installed FreeBSD 8.0 on my computer and I cannot get my Openmoko Neo
>> FreeRunner working with if_cdce. With FreeBSD 7.2 it worked well. After
>> loading the if_cdce kernel module I plugged in my FreeRunner but no cdce*
>> device is shown in /dev. I've tried different usb ports and loaded the
>> module at boottime but the result is the same.
>>
>>> How-To-Repeat:
>>
>> $ kldstat
>> Id Refs Address Size Name
>> 1 18 0xc0400000 612ca4 kernel
>> 2 1 0xc0a13000 14f10 snd_emu10kx.ko
>> 3 3 0xc0a28000 55730 sound.ko
>> 4 1 0xc0a7e000 7551b4 nvidia.ko
>> 5 2 0xc11d4000 2c8d4 linux.ko
>> $ sudo kldload if_cdce
>> $ kldstat
>> Id Refs Address Size Name
>> 1 26 0xc0400000 612ca4 kernel
>> 2 1 0xc0a13000 14f10 snd_emu10kx.ko
>> 3 3 0xc0a28000 55730 sound.ko
>> 4 1 0xc0a7e000 7551b4 nvidia.ko
>> 5 2 0xc11d4000 2c8d4 linux.ko
>> 6 1 0xc8b9b000 6000 if_cdce.ko
>> 7 1 0xc7108000 3000 uether.ko
>> <<<--- plugged in my FreeRuner
>> $ dmesg
>> [...]
>> ugen1.2: <Linux 2.6.29-GTA02_qtmoko-v14-mokodev with s3c241> at usbus1
>> $ ls /dev | grep c
>> acd0
>> acd1
>> acpi
>> console
>> consolectl
>> ctty
>> devctl
>> geom.ctl
>> mdctl
>> nfslock
>> nvidiactl
>> pci
>> ttyvc
>> usbctl
>>
>>> Fix:
>
> You need to execute, due to the way the Linux guys designed it. Alternativly
> you can add a quirk to the quirks table to do this automatically.
>
> usbconfig -u 1 a 2 set_config 1
>
> --HPS
Hi,
it seems that my reply got lost in the www.
The workaround fixed my problem, but can you show me how to add a quirk
to the quirks table or provide me with a website? I haven't found
anything in Google.
Thanks!
Christian
------------------------------
Message: 8
Date: Wed, 17 Feb 2010 21:30:03 +0100
From: Hans Petter Selasky <hsel...@c2i.net>
Subject: Re: usb/143620: the module if_cdce doesn't support my
Openmoko Neo FreeRunner anymore
To: Christian Neugum <b...@digitalc.de>
Cc: freebsd-gn...@freebsd.org, freeb...@freebsd.org
Message-ID: <201002172130....@c2i.net>
Content-Type: Text/Plain; charset="iso-8859-15"
On Wednesday 17 February 2010 20:10:03 Christian Neugum wrote:
> On 02/07/10 09:13, Hans Petter Selasky wrote:
> > On Sunday 07 February 2010 00:38:31 Christian Neugum wrote:
> >>> Number: 143620
> >>> Category: usb
> >>> Synopsis: the module if_cdce doesn't support my Openmoko Neo
> >>> FreeRunner anymore 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: Sat Feb 06 23:40:01 UTC 2010
> >>> Closed-Date:
> >>> Last-Modified:
> >>> Originator: Christian Neugum
> >>> Release: 8.0-stable
> >>> Organization:
> >>
> >> private person
> >>
> >>> Environment:
> >>
> >> FreeBSD Chris 8.0-STABLE FreeBSD 8.0-STABLE #1: Sun Jan 10 21:27:41 CET
> >> 2010 root@Chris:/usr/obj/usr/src/sys/WORKSTATION i386
> >>
> >>> Description:
> >>
> >> I've installed FreeBSD 8.0 on my computer and I cannot get my Openmoko
> >> Neo FreeRunner working with if_cdce. With FreeBSD 7.2 it worked well.
> >> After loading the if_cdce kernel module I plugged in my FreeRunner but
> >> no cdce* device is shown in /dev. I've tried different usb ports and
> >> loaded the module at boottime but the result is the same.
> >>
> >>> How-To-Repeat:
> >>
> >> $ kldstat
> >> Id Refs Address Size Name
> >> 1 18 0xc0400000 612ca4 kernel
> >> 2 1 0xc0a13000 14f10 snd_emu10kx.ko
> >> 3 3 0xc0a28000 55730 sound.ko
> >> 4 1 0xc0a7e000 7551b4 nvidia.ko
> >> 5 2 0xc11d4000 2c8d4 linux.ko
> >> $ sudo kldload if_cdce
> >> $ kldstat
> >> Id Refs Address Size Name
> >> 1 26 0xc0400000 612ca4 kernel
> >> 2 1 0xc0a13000 14f10 snd_emu10kx.ko
> >> 3 3 0xc0a28000 55730 sound.ko
> >> 4 1 0xc0a7e000 7551b4 nvidia.ko
> >> 5 2 0xc11d4000 2c8d4 linux.ko
> >> 6 1 0xc8b9b000 6000 if_cdce.ko
> >> 7 1 0xc7108000 3000 uether.ko
> >> <<<--- plugged in my FreeRuner
> >> $ dmesg
> >> [...]
> >> ugen1.2: <Linux 2.6.29-GTA02_qtmoko-v14-mokodev with s3c241> at usbus1
> >> $ ls /dev | grep c
> >> acd0
> >> acd1
> >> acpi
> >> console
> >> consolectl
> >> ctty
> >> devctl
> >> geom.ctl
> >> mdctl
> >> nfslock
> >> nvidiactl
> >> pci
> >> ttyvc
> >> usbctl
> >>
> >>> Fix:
> >
> > You need to execute, due to the way the Linux guys designed it.
> > Alternativly you can add a quirk to the quirks table to do this
> > automatically.
> >
> > usbconfig -u 1 a 2 set_config 1
> >
> > --HPS
>
> Hi,
>
> it seems that my reply got lost in the www.
> The workaround fixed my problem, but can you show me how to add a quirk
> to the quirks table or provide me with a website? I haven't found
> anything in Google.
>
See: /usr/src/sys/dev/usb/quirk/usb_quirk.c
And:
USB_QUIRK(ELSA, MODEM1, 0x0000, 0xffff, UQ_CFG_INDEX_1),
Please make a patch.
--HPS
------------------------------
Message: 9
Date: Wed, 17 Feb 2010 20:40:06 GMT
From: Hans Petter Selasky <hsel...@c2i.net>
Subject: Re: usb/143620: the module if_cdce doesn't support my
Openmoko Neo FreeRunner anymore
To: freeb...@FreeBSD.org
Message-ID: <201002172040....@freefall.freebsd.org>
The following reply was made to PR usb/143620; it has been noted by GNATS.
From: Hans Petter Selasky <hsel...@c2i.net>
To: Christian Neugum <b...@digitalc.de>
Cc: freeb...@freebsd.org,
freebsd-gn...@freebsd.org
Subject: Re: usb/143620: the module if_cdce doesn't support my Openmoko Neo FreeRunner anymore
Date: Wed, 17 Feb 2010 21:30:03 +0100
On Wednesday 17 February 2010 20:10:03 Christian Neugum wrote:
> On 02/07/10 09:13, Hans Petter Selasky wrote:
> > On Sunday 07 February 2010 00:38:31 Christian Neugum wrote:
> >>> Number: 143620
> >>> Category: usb
> >>> Synopsis: the module if_cdce doesn't support my Openmoko Neo
> >>> FreeRunner anymore 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: Sat Feb 06 23:40:01 UTC 2010
> >>> Closed-Date:
> >>> Last-Modified:
> >>> Originator: Christian Neugum
> >>> Release: 8.0-stable
> >>> Organization:
> >>
> >> private person
> >>
> >>> Environment:
> >>
> >> FreeBSD Chris 8.0-STABLE FreeBSD 8.0-STABLE #1: Sun Jan 10 21:27:41 CET
> >> 2010 root@Chris:/usr/obj/usr/src/sys/WORKSTATION i386
> >>
> >>> Description:
> >>
> >> I've installed FreeBSD 8.0 on my computer and I cannot get my Openmoko
> >> Neo FreeRunner working with if_cdce. With FreeBSD 7.2 it worked well.
> >> After loading the if_cdce kernel module I plugged in my FreeRunner but
> >> no cdce* device is shown in /dev. I've tried different usb ports and
> >> loaded the module at boottime but the result is the same.
> >>
> >>> How-To-Repeat:
> >>
> >> $ kldstat
> >> Id Refs Address Size Name
> >> 1 18 0xc0400000 612ca4 kernel
> >> 2 1 0xc0a13000 14f10 snd_emu10kx.ko
> >> 3 3 0xc0a28000 55730 sound.ko
> >> 4 1 0xc0a7e000 7551b4 nvidia.ko
> >> 5 2 0xc11d4000 2c8d4 linux.ko
> >> $ sudo kldload if_cdce
> >> $ kldstat
> >> Id Refs Address Size Name
> >> 1 26 0xc0400000 612ca4 kernel
> >> 2 1 0xc0a13000 14f10 snd_emu10kx.ko
> >> 3 3 0xc0a28000 55730 sound.ko
> >> 4 1 0xc0a7e000 7551b4 nvidia.ko
> >> 5 2 0xc11d4000 2c8d4 linux.ko
> >> 6 1 0xc8b9b000 6000 if_cdce.ko
> >> 7 1 0xc7108000 3000 uether.ko
> >> <<<--- plugged in my FreeRuner
> >> $ dmesg
> >> [...]
> >> ugen1.2: <Linux 2.6.29-GTA02_qtmoko-v14-mokodev with s3c241> at usbus1
> >> $ ls /dev | grep c
> >> acd0
> >> acd1
> >> acpi
> >> console
> >> consolectl
> >> ctty
> >> devctl
> >> geom.ctl
> >> mdctl
> >> nfslock
> >> nvidiactl
> >> pci
> >> ttyvc
> >> usbctl
> >>
> >>> Fix:
> >
> > You need to execute, due to the way the Linux guys designed it.
> > Alternativly you can add a quirk to the quirks table to do this
> > automatically.
> >
> > usbconfig -u 1 a 2 set_config 1
> >
> > --HPS
>
> Hi,
>
> it seems that my reply got lost in the www.
> The workaround fixed my problem, but can you show me how to add a quirk
> to the quirks table or provide me with a website? I haven't found
> anything in Google.
>
See: /usr/src/sys/dev/usb/quirk/usb_quirk.c
And:
USB_QUIRK(ELSA, MODEM1, 0x0000, 0xffff, UQ_CFG_INDEX_1),
Please make a patch.
--HPS
------------------------------
Message: 10
Date: Thu, 18 Feb 2010 14:52:14 GMT
From: lin...@FreeBSD.org
Subject: Re: usb/144043: [umass] USB DLT tape drive throws random
errors
To: lin...@FreeBSD.org, freebs...@FreeBSD.org,
freeb...@FreeBSD.org
Message-ID: <201002181452....@freefall.freebsd.org>
Old Synopsis: USB DLT tape drive throws random errors
New Synopsis: [umass] USB DLT tape drive throws random errors
Responsible-Changed-From-To: freebsd-bugs->freebsd-usb
Responsible-Changed-By: linimon
Responsible-Changed-When: Thu Feb 18 14:51:38 UTC 2010
Responsible-Changed-Why:
reclassify.
http://www.freebsd.org/cgi/query-pr.cgi?pr=144043
------------------------------
Message: 11
Date: Thu, 18 Feb 2010 16:09:39 +0100
From: Alexander Leidinger <Alex...@Leidinger.net>
Subject: Regression with ukbd/ums
To: freeb...@FreeBSD.org
Message-ID: <20100218160939.00000bbf@unknown>
Content-Type: text/plain; charset=US-ASCII
Hi,
I have the following ukbd/ums hardware (ugen2.*) which was working fine
with 9-current before, but fails to work now with r203813.
It is a Logitec diNovo kbd with integrated mousepad. Previously this
was workinf fine, but now no mouse movement and no kkey press is
registered. When I reboot into the console, I can press any key I want,
but no reaction is visible on the screen, when I start X remotely, no
mouse movement and no key press can be noticed. It looks like no kbd
and no mouse is attached.
USB info:
---snip---
ugen0.1: <UHCI root HUB Intel> at usbus0, cfg=0 md=HOST spd=FULL
(12Mbps) pwr=ON
ugen1.1: <UHCI root HUB Intel> at usbus1, cfg=0 md=HOST spd=FULL
(12Mbps) pwr=ON
ugen2.1: <UHCI root HUB Intel> at usbus2, cfg=0 md=HOST spd=FULL
(12Mbps) pwr=ON
ugen3.1: <UHCI root HUB Intel> at usbus3, cfg=0 md=HOST spd=FULL
(12Mbps) pwr=ON
ugen4.1: <EHCI root HUB Intel> at usbus4, cfg=0 md=HOST spd=HIGH
(480Mbps) pwr=ON
ugen4.2: <Flash Disk CBM> at usbus4, cfg=0 md=HOST spd=HIGH (480Mbps)
pwr=ON
ugen2.2: <Logitech BT Mini-Receiver Logitech> at usbus2, cfg=0 md=HOST
spd=FULL (12Mbps) pwr=SAVE
ugen1.2: <product 0x0100 vendor 0x04f9> at usbus1, cfg=0 md=HOST
spd=FULL (12Mbps) pwr=ON
ugen2.3: 0x04f9> <Logitech BT Mini-Receiver Logitech> at usbus2, cfg=0
md=HOST 0x04f9> spd=FULL (12Mbps) pwr=ON
ugen2.4: <Logitech BT Mini-Receiver Logitech> at usbus2, cfg=0
md=HOST spd=FULL (12Mbps) pwr=ON
# usbconfig dump_all_config_desc
ugen0.1: <UHCI root HUB Intel> at usbus0, cfg=0 md=HOST spd=FULL
(12Mbps) pwr=ON
Configuration index 0
bLength = 0x0009
bDescriptorType = 0x0002
wTotalLength = 0x0019
bNumInterfaces = 0x0001
bConfigurationValue = 0x0001
iConfiguration = 0x0000 <no string>
bmAttributes = 0x0040
bMaxPower = 0x0000
Interface 0
bLength = 0x0009
bDescriptorType = 0x0004
bInterfaceNumber = 0x0000
bAlternateSetting = 0x0000
bNumEndpoints = 0x0001
bInterfaceClass = 0x0009
bInterfaceSubClass = 0x0000
bInterfaceProtocol = 0x0000
iInterface = 0x0000 <no string>
Endpoint 0
bLength = 0x0007
bDescriptorType = 0x0005
bEndpointAddress = 0x0081 <IN>
bmAttributes = 0x0003 <INTERRUPT>
wMaxPacketSize = 0x0008
bInterval = 0x00ff
bRefresh = 0x0000
bSynchAddress = 0x0000
ugen1.1: <UHCI root HUB Intel> at usbus1, cfg=0 md=HOST spd=FULL
(12Mbps) pwr=ON
Configuration index 0
bLength = 0x0009
bDescriptorType = 0x0002
wTotalLength = 0x0019
bNumInterfaces = 0x0001
bConfigurationValue = 0x0001
iConfiguration = 0x0000 <no string>
bmAttributes = 0x0040
bMaxPower = 0x0000
Interface 0
bLength = 0x0009
bDescriptorType = 0x0004
bInterfaceNumber = 0x0000
bAlternateSetting = 0x0000
bNumEndpoints = 0x0001
bInterfaceClass = 0x0009
bInterfaceSubClass = 0x0000
bInterfaceProtocol = 0x0000
iInterface = 0x0000 <no string>
Endpoint 0
bLength = 0x0007
bDescriptorType = 0x0005
bEndpointAddress = 0x0081 <IN>
bmAttributes = 0x0003 <INTERRUPT>
wMaxPacketSize = 0x0008
bInterval = 0x00ff
bRefresh = 0x0000
bSynchAddress = 0x0000
ugen2.1: <UHCI root HUB Intel> at usbus2, cfg=0 md=HOST spd=FULL
(12Mbps) pwr=ON
Configuration index 0
bLength = 0x0009
bDescriptorType = 0x0002
wTotalLength = 0x0019
bNumInterfaces = 0x0001
bConfigurationValue = 0x0001
iConfiguration = 0x0000 <no string>
bmAttributes = 0x0040
bMaxPower = 0x0000
Interface 0
bLength = 0x0009
bDescriptorType = 0x0004
bInterfaceNumber = 0x0000
bAlternateSetting = 0x0000
bNumEndpoints = 0x0001
bInterfaceClass = 0x0009
bInterfaceSubClass = 0x0000
bInterfaceProtocol = 0x0000
iInterface = 0x0000 <no string>
Endpoint 0
bLength = 0x0007
bDescriptorType = 0x0005
bEndpointAddress = 0x0081 <IN>
bmAttributes = 0x0003 <INTERRUPT>
wMaxPacketSize = 0x0008
bInterval = 0x00ff
bRefresh = 0x0000
bSynchAddress = 0x0000
ugen3.1: <UHCI root HUB Intel> at usbus3, cfg=0 md=HOST spd=FULL
(12Mbps) pwr=ON
Configuration index 0
bLength = 0x0009
bDescriptorType = 0x0002
wTotalLength = 0x0019
bNumInterfaces = 0x0001
bConfigurationValue = 0x0001
iConfiguration = 0x0000 <no string>
bmAttributes = 0x0040
bMaxPower = 0x0000
Interface 0
bLength = 0x0009
bDescriptorType = 0x0004
bInterfaceNumber = 0x0000
bAlternateSetting = 0x0000
bNumEndpoints = 0x0001
bInterfaceClass = 0x0009
bInterfaceSubClass = 0x0000
bInterfaceProtocol = 0x0000
iInterface = 0x0000 <no string>
Endpoint 0
bLength = 0x0007
bDescriptorType = 0x0005
bEndpointAddress = 0x0081 <IN>
bmAttributes = 0x0003 <INTERRUPT>
wMaxPacketSize = 0x0008
bInterval = 0x00ff
bRefresh = 0x0000
bSynchAddress = 0x0000
ugen4.1: <EHCI root HUB Intel> at usbus4, cfg=0 md=HOST spd=HIGH
(480Mbps) pwr=ON
Configuration index 0
bLength = 0x0009
bDescriptorType = 0x0002
wTotalLength = 0x0019
bNumInterfaces = 0x0001
bConfigurationValue = 0x0001
iConfiguration = 0x0000 <no string>
bmAttributes = 0x0040
bMaxPower = 0x0000
Interface 0
bLength = 0x0009
bDescriptorType = 0x0004
bInterfaceNumber = 0x0000
bAlternateSetting = 0x0000
bNumEndpoints = 0x0001
bInterfaceClass = 0x0009
bInterfaceSubClass = 0x0000
bInterfaceProtocol = 0x0000
iInterface = 0x0000 <no string>
Endpoint 0
bLength = 0x0007
bDescriptorType = 0x0005
bEndpointAddress = 0x0081 <IN>
bmAttributes = 0x0003 <INTERRUPT>
wMaxPacketSize = 0x0008
bInterval = 0x00ff
bRefresh = 0x0000
bSynchAddress = 0x0000
ugen4.2: <Flash Disk CBM> at usbus4, cfg=0 md=HOST spd=HIGH (480Mbps)
pwr=ON
Configuration index 0
bLength = 0x0009
bDescriptorType = 0x0002
wTotalLength = 0x0020
bNumInterfaces = 0x0001
bConfigurationValue = 0x0001
iConfiguration = 0x0000 <no string>
bmAttributes = 0x0080
bMaxPower = 0x0032
Interface 0
bLength = 0x0009
bDescriptorType = 0x0004
bInterfaceNumber = 0x0000
bAlternateSetting = 0x0000
bNumEndpoints = 0x0002
bInterfaceClass = 0x0008
bInterfaceSubClass = 0x0006
bInterfaceProtocol = 0x0050
iInterface = 0x0000 <no string>
Endpoint 0
bLength = 0x0007
bDescriptorType = 0x0005
bEndpointAddress = 0x0001 <OUT>
bmAttributes = 0x0002 <BULK>
wMaxPacketSize = 0x0200
bInterval = 0x0000
bRefresh = 0x0000
bSynchAddress = 0x0000
Endpoint 1
bLength = 0x0007
bDescriptorType = 0x0005
bEndpointAddress = 0x0081 <IN>
bmAttributes = 0x0002 <BULK>
wMaxPacketSize = 0x0200
bInterval = 0x0000
bRefresh = 0x0000
bSynchAddress = 0x0000
ugen2.2: <Logitech BT Mini-Receiver Logitech> at usbus2, cfg=0 md=HOST
spd=FULL (12Mbps) pwr=SAVE
Configuration index 0
bLength = 0x0009
bDescriptorType = 0x0002
wTotalLength = 0x0019
bNumInterfaces = 0x0001
bConfigurationValue = 0x0001
iConfiguration = 0x0000 <no string>
bmAttributes = 0x00a0
bMaxPower = 0x0032
Interface 0
bLength = 0x0009
bDescriptorType = 0x0004
bInterfaceNumber = 0x0000
bAlternateSetting = 0x0000
bNumEndpoints = 0x0001
bInterfaceClass = 0x0009
bInterfaceSubClass = 0x0000
bInterfaceProtocol = 0x0000
iInterface = 0x0000 <no string>
Endpoint 0
bLength = 0x0007
bDescriptorType = 0x0005
bEndpointAddress = 0x0081 <IN>
bmAttributes = 0x0003 <INTERRUPT>
wMaxPacketSize = 0x0001
bInterval = 0x00ff
bRefresh = 0x0000
bSynchAddress = 0x0000
ugen1.2: <product 0x0100 vendor 0x04f9> at usbus1, cfg=0 md=HOST
spd=FULL (12Mbps) pwr=ON
Configuration index 0
bLength = 0x0009
bDescriptorType = 0x0002
wTotalLength = 0x004e
bNumInterfaces = 0x0003
bConfigurationValue = 0x0001
iConfiguration = 0x0000 <no string>
bmAttributes = 0x0040
bMaxPower = 0x0000
Interface 0
bLength = 0x0009
bDescriptorType = 0x0004
bInterfaceNumber = 0x0000
bAlternateSetting = 0x0000
bNumEndpoints = 0x0002
bInterfaceClass = 0x0007
bInterfaceSubClass = 0x0001
bInterfaceProtocol = 0x0002
iInterface = 0x0000 <no string>
Endpoint 0
bLength = 0x0007
bDescriptorType = 0x0005
bEndpointAddress = 0x0001 <OUT>
bmAttributes = 0x0002 <BULK>
wMaxPacketSize = 0x0040
bInterval = 0x0000
bRefresh = 0x0000
bSynchAddress = 0x0000
Endpoint 1
bLength = 0x0007
bDescriptorType = 0x0005
bEndpointAddress = 0x0082 <IN>
bmAttributes = 0x0002 <BULK>
wMaxPacketSize = 0x0010
bInterval = 0x0000
bRefresh = 0x0000
bSynchAddress = 0x0000
Interface 1
bLength = 0x0009
bDescriptorType = 0x0004
bInterfaceNumber = 0x0001
bAlternateSetting = 0x0000
bNumEndpoints = 0x0002
bInterfaceClass = 0x00ff
bInterfaceSubClass = 0x00ff
bInterfaceProtocol = 0x00ff
iInterface = 0x0000 <no string>
Endpoint 0
bLength = 0x0007
bDescriptorType = 0x0005
bEndpointAddress = 0x0003 <OUT>
bmAttributes = 0x0002 <BULK>
wMaxPacketSize = 0x0010
bInterval = 0x0000
bRefresh = 0x0000
bSynchAddress = 0x0000
Endpoint 1
bLength = 0x0007
bDescriptorType = 0x0005
bEndpointAddress = 0x0084 <IN>
bmAttributes = 0x0002 <BULK>
wMaxPacketSize = 0x0040
bInterval = 0x0000
bRefresh = 0x0000
bSynchAddress = 0x0000
Interface 2
bLength = 0x0009
bDescriptorType = 0x0004
bInterfaceNumber = 0x0002
bAlternateSetting = 0x0000
bNumEndpoints = 0x0002
bInterfaceClass = 0x00ff
bInterfaceSubClass = 0x00ff
bInterfaceProtocol = 0x00ff
iInterface = 0x0000 <no string>
Endpoint 0
bLength = 0x0007
bDescriptorType = 0x0005
bEndpointAddress = 0x0005 <OUT>
bmAttributes = 0x0002 <BULK>
wMaxPacketSize = 0x0010
bInterval = 0x0000
bRefresh = 0x0000
bSynchAddress = 0x0000
Endpoint 1
bLength = 0x0007
bDescriptorType = 0x0005
bEndpointAddress = 0x0086 <IN>
bmAttributes = 0x0002 <BULK>
wMaxPacketSize = 0x0010
bInterval = 0x0000
bRefresh = 0x0000
bSynchAddress = 0x0000
ugen2.3: <Logitech BT Mini-Receiver Logitech> at usbus2, cfg=0 md=HOST
spd=FULL (12Mbps) pwr=ON
Configuration index 0
bLength = 0x0009
bDescriptorType = 0x0002
wTotalLength = 0x0022
bNumInterfaces = 0x0001
bConfigurationValue = 0x0001
iConfiguration = 0x0004 <RR49.00_B0057>
bmAttributes = 0x00a0
bMaxPower = 0x0031
Interface 0
bLength = 0x0009
bDescriptorType = 0x0004
bInterfaceNumber = 0x0000
bAlternateSetting = 0x0000
bNumEndpoints = 0x0001
bInterfaceClass = 0x0003
bInterfaceSubClass = 0x0001
bInterfaceProtocol = 0x0001
iInterface = 0x0000 <no string>
Additional Descriptor
bLength = 0x09
bDescriptorType = 0x21
bDescriptorSubType = 0x11
RAW dump:
0x00 | 0x09, 0x21, 0x11, 0x01, 0x00, 0x01, 0x22, 0x3b,
0x08 | 0x00
Endpoint 0
bLength = 0x0007
bDescriptorType = 0x0005
bEndpointAddress = 0x0081 <IN>
bmAttributes = 0x0003 <INTERRUPT>
wMaxPacketSize = 0x0008
bInterval = 0x000a
bRefresh = 0x0000
bSynchAddress = 0x0000
ugen2.4: <Logitech BT Mini-Receiver Logitech> at usbus2, cfg=0 md=HOST
spd=FULL (12Mbps) pwr=ON
Configuration index 0
bLength = 0x0009
bDescriptorType = 0x0002
wTotalLength = 0x0022
bNumInterfaces = 0x0001
bConfigurationValue = 0x0001
iConfiguration = 0x0004 <RR49.00_B0057>
bmAttributes = 0x00a0
bMaxPower = 0x0031
Interface 0
bLength = 0x0009
bDescriptorType = 0x0004
bInterfaceNumber = 0x0000
bAlternateSetting = 0x0000
bNumEndpoints = 0x0001
bInterfaceClass = 0x0003
bInterfaceSubClass = 0x0001
bInterfaceProtocol = 0x0002
iInterface = 0x0000 <no string>
Additional Descriptor
bLength = 0x09
bDescriptorType = 0x21
bDescriptorSubType = 0x11
RAW dump:
0x00 | 0x09, 0x21, 0x11, 0x01, 0x00, 0x01, 0x22, 0x2d,
0x08 | 0x01
Endpoint 0
bLength = 0x0007
bDescriptorType = 0x0005
bEndpointAddress = 0x0081 <IN>
bmAttributes = 0x0003 <INTERRUPT>
wMaxPacketSize = 0x0008
bInterval = 0x0002
bRefresh = 0x0000
bSynchAddress = 0x0000
---snip---
Any ideas how to fix the problem?
Bye,
Alexander.
------------------------------
Message: 12
Date: Thu, 18 Feb 2010 07:43:32 -0800
From: Stephen Hurd <sh...@sasktel.net>
Subject: Adding AlphaSmart Dana Support to uvisor issues
To: freeb...@freebsd.org
Message-ID: <4B7D602...@sasktel.net>
Content-Type: text/plain; charset=ISO-8859-1; format=flowed
I've got a pair of AlphaSmart Dana Palm systems which sync via USB in
Windows and want to sync with my 8-STABLE system...
I've added the following lines to sys/dev/usb/usbdevs:
vendor ALPHASMART 0x081e AlphaSmart, Inc.
/* AlphaSmart, Inc. products */
product ALPHASMART DANA_KB 0xdbac AlphaSmart Dana Keyboard
product ALPHASMART DANA_SYNC 0xdf00 AlphaSmart Dana HotSync
And the following to sys/dev/usb/serial/uvisor.c:
UVISOR_DEV(ALPHASMART, DANA_SYNC, UVISOR_FLAG_PALM4),
uvisor will now attach, but using pilot-xfer fails to start the sync (no
input recieved from cuaU0). A trace of a Win32 sync is available at
http://nix.synchro.net/DanaSyncCapture.txt. It looks like the initial
negotiation is the same as what uvisor does, but the read callback is
not called after the initial setup...
Here's the output with hw.usb.[ucom|uvisor].debug=1 when I select sync
(yes, the device is a USB keyboard when it's not syncing) and run
pilot-xfer -p /dev/cuaU0 -l (at 22:38:10):
Feb 17 22:37:46 ace kernel: ugen0.2: <AlphaSmart, Inc.> at usbus0
(disconnected)
Feb 17 22:37:46 ace kernel: ukbd0: at uhub0, port 1, addr 2 (disconnected)
Feb 17 22:37:48 ace kernel: ugen0.2: <AlphaSmart, Inc.> at usbus0
Feb 17 22:37:48 ace kernel: uvisor_attach: sc=0xc6651e00
Feb 17 22:37:48 ace kernel: uvisor0: <AlphaSmart, Inc. Palm Handheld,
class 0/0, rev 1.00/1.00, addr 2> on usbus0
Feb 17 22:37:48 ace kernel: uvisor_init: done
Feb 17 22:37:48 ace kernel: ucom_attach_tty: tp = 0xc6650c00, unit = 0
Feb 17 22:37:48 ace kernel: ucom_attach_tty: ttycreate: U0
Feb 17 22:38:10 ace kernel: ucom_open: tp = 0xc6650c00
Feb 17 22:38:10 ace kernel: ucom_dtr: onoff = 1
Feb 17 22:38:10 ace kernel: ucom_line_state: on=0x01, off=0x00
Feb 17 22:38:10 ace kernel: ucom_rts: onoff = 1
Feb 17 22:38:10 ace kernel: ucom_line_state: on=0x02, off=0x00
Feb 17 22:38:10 ace kernel: ucom_ring: onoff = 0
Feb 17 22:38:10 ace kernel: ucom_line_state: on=0x00, off=0x08
Feb 17 22:38:10 ace kernel: ucom_break: onoff = 0
Feb 17 22:38:10 ace kernel: ucom_line_state: on=0x00, off=0x04
Feb 17 22:38:10 ace kernel: ucom_status_change:
Feb 17 22:38:10 ace kernel: ucom_param: sc = 0xc6651e30
Feb 17 22:38:10 ace kernel: ucom_dtr: onoff = 1
Feb 17 22:38:10 ace kernel: ucom_line_state: on=0x01, off=0x00
Feb 17 22:38:10 ace kernel: ucom_rts: onoff = 1
Feb 17 22:38:10 ace kernel: ucom_line_state: on=0x02, off=0x00
Feb 17 22:38:10 ace kernel: ucom_cfg_open:
Feb 17 22:38:10 ace kernel: ucom_ioctl: cmd = 0x402c7413
Feb 17 22:38:10 ace kernel: ucom_ioctl: cmd = 0x402c7413
Feb 17 22:38:10 ace kernel: ucom_ioctl: cmd = 0x802c7414
Feb 17 22:38:10 ace kernel: ucom_param: sc = 0xc6651e30
Feb 17 22:38:10 ace kernel: ucom_ioctl: cmd = 0x8004667e
Feb 17 22:38:10 ace kernel: ucom_ioctl: cmd = 0x8004667d
Feb 17 22:38:10 ace kernel: ucom_ioctl: cmd = 0x402c7413
Feb 17 22:38:10 ace kernel: ucom_ioctl: cmd = 0x802c7415
Feb 17 22:38:10 ace kernel: ucom_get_data: cnt=0
Feb 17 22:38:58 ace kernel: ugen0.2: <AlphaSmart, Inc.> at usbus0
(disconnected)
Feb 17 22:38:58 ace kernel: uvisor0: at uhub0, port 1, addr 2 (disconnected)
Feb 17 22:38:58 ace kernel: uvisor_detach: sc=0xc6651e00
Feb 17 22:38:58 ace kernel: ucom_detach_tty: sc = 0xc6651e30, tp =
0xc6650c00
Feb 17 22:38:58 ace kernel: ucom_close: tp=0xc6650c00
Feb 17 22:38:58 ace kernel: ucom_close: tp=0xc6650c00 already closed
Feb 17 22:39:05 ace kernel: ugen0.2: <AlphaSmart, Inc.> at usbus0
Feb 17 22:39:05 ace kernel: ukbd0: <AlphaSmart, Inc. Palm Handheld,
class 0/0, rev 1.00/1.00, addr 2> on usbus0
Feb 17 22:39:05 ace kernel: kbd2 at ukbd0
How can I get a USB trace to compare with the one from Windows and/or
what should be my next step?
------------------------------
Message: 13
Date: Thu, 18 Feb 2010 17:01:04 +0100
From: Hans Petter Selasky <hsel...@c2i.net>
Subject: Re: Regression with ukbd/ums
To: freeb...@freebsd.org
Message-ID: <201002181701....@c2i.net>
Content-Type: Text/Plain; charset="iso-8859-1"
On Thursday 18 February 2010 16:09:39 Alexander Leidinger wrote:
> Hi,
>
> I have the following ukbd/ums hardware (ugen2.*) which was working fine
> with 9-current before, but fails to work now with r203813.
>
> It is a Logitec diNovo kbd with integrated mousepad. Previously this
> was workinf fine, but now no mouse movement and no kkey press is
> registered. When I reboot into the console, I can press any key I want,
> but no reaction is visible on the screen, when I start X remotely, no
> mouse movement and no key press can be noticed. It looks like no kbd
> and no mouse is attached.
>
Try:
sysctl hw.usb.ums.debug=15
sysctl hw.usb.ukbd.debug=15
Do you see anything when using kbd/mouse?
--HPS
------------------------------
Message: 14
Date: Thu, 18 Feb 2010 17:54:23 +0100
From: Alexander Leidinger <Alex...@Leidinger.net>
Subject: Re: Regression with ukbd/ums
To: Hans Petter Selasky <hsel...@c2i.net>
Cc: freeb...@freebsd.org
Message-ID: <20100218175423.00001ac2@unknown>
Content-Type: text/plain; charset=US-ASCII
On Thu, 18 Feb 2010 17:01:04 +0100 Hans Petter Selasky
<hsel...@c2i.net> wrote:
> On Thursday 18 February 2010 16:09:39 Alexander Leidinger wrote:
> > Hi,
> >
> > I have the following ukbd/ums hardware (ugen2.*) which was working
> > fine with 9-current before, but fails to work now with r203813.
> >
> > It is a Logitec diNovo kbd with integrated mousepad. Previously this
> > was workinf fine, but now no mouse movement and no kkey press is
> > registered. When I reboot into the console, I can press any key I
> > want, but no reaction is visible on the screen, when I start X
> > remotely, no mouse movement and no key press can be noticed. It
> > looks like no kbd and no mouse is attached.
> >
>
> Try:
>
> sysctl hw.usb.ums.debug=15
> sysctl hw.usb.ukbd.debug=15
>
> Do you see anything when using kbd/mouse?
Nothing at all.
Bye,
Alexander.
------------------------------
Message: 15
Date: Thu, 18 Feb 2010 18:09:05 +0100
From: Hans Petter Selasky <hsel...@c2i.net>
Subject: Re: Regression with ukbd/ums
To: Alexander Leidinger <Alex...@leidinger.net>
Cc: freeb...@freebsd.org
Message-ID: <201002181809....@c2i.net>
Content-Type: Text/Plain; charset="iso-8859-1"
On Thursday 18 February 2010 17:54:23 Alexander Leidinger wrote:
> On Thu, 18 Feb 2010 17:01:04 +0100 Hans Petter Selasky
>
> <hsel...@c2i.net> wrote:
> > On Thursday 18 February 2010 16:09:39 Alexander Leidinger wrote:
> > > Hi,
> > >
> > > I have the following ukbd/ums hardware (ugen2.*) which was working
> > > fine with 9-current before, but fails to work now with r203813.
> > >
> > > It is a Logitec diNovo kbd with integrated mousepad. Previously this
> > > was workinf fine, but now no mouse movement and no kkey press is
> > > registered. When I reboot into the console, I can press any key I
> > > want, but no reaction is visible on the screen, when I start X
> > > remotely, no mouse movement and no key press can be noticed. It
> > > looks like no kbd and no mouse is attached.
> >
> > Try:
> >
> > sysctl hw.usb.ums.debug=15
> > sysctl hw.usb.ukbd.debug=15
> >
> > Do you see anything when using kbd/mouse?
>
usbconfig show_ifdrv
What is the output?
--HPS
------------------------------
Message: 16
Date: Fri, 19 Feb 2010 09:04:09 +0100
From: Alexander Leidinger <Alex...@Leidinger.net>
Subject: Re: Regression with ukbd/ums
To: Hans Petter Selasky <hsel...@c2i.net>, freeb...@freebsd.org
Message-ID: <20100219090409.00003702@unknown>
Content-Type: text/plain; charset=US-ASCII
On Thu, 18 Feb 2010 20:55:53 +0100 Hans Petter Selasky
<hsel...@c2i.net> wrote:
> Have you checked battery, etc.
Hmpf... before charging the battery, I checked if the fancy lights
(e.g. led display of the volume control which this kbd provides but
FreeBSD does not have native support for) go on, and they did. Despite
the fact that there was still enough power for this, it seems the kbd
lost the association with the USB dongle. After pushing the connect
buttons everything was working again.
As there is a switch to power-off the kbd, and because it is working
fine when having it switched off for a while, I expected that the
association stuff is stored in some non-volatile storage. It seems this
is not the case.
Sorry for the noise I created,
Alexander.
------------------------------
Message: 17
Date: Fri, 19 Feb 2010 09:35:43 +0100
From: Hans Petter Selasky <hsel...@c2i.net>
Subject: Re: Regression with ukbd/ums
To: Alexander Leidinger <Alex...@leidinger.net>
Cc: freeb...@freebsd.org
Message-ID: <201002190935....@c2i.net>
Content-Type: Text/Plain; charset="iso-8859-1"
Great!
--HPS
------------------------------
Message: 18
Date: Sat, 20 Feb 2010 09:44:54 +0100
From: Matthias Apitz <gu...@unixarea.de>
Subject: Re: using USB based micro and speaker with FreeBSD / Skype
To: freeb...@freebsd.org
Message-ID: <2010022008...@current.Sisis.de>
Content-Type: text/plain; charset=us-ascii
Hello,
follow-up (and only to freebsd-usb):
With the helping hand of Henry Hu (thanks a lot again) I got a bit
further with the USB microphone.
After loading the snd_uaudio module a plug-in of first the USB video cam and
then the USB micro gives in /var/log/messages:
first the video cam is pluged in:
Feb 19 16:31:11 current kernel: ugen4.2: <Philips> at usbus4
Feb 19 16:31:11 current kernel: pwc0: <Philips product 0x0329, class 0/0, rev 1.10/0.03, addr 2> on usbus4
Feb 19 16:31:11 current root: Unknown USB device: vendor 0x0471 product 0x0329 bus uhub7
Feb 19 16:31:11 current kernel: pwc0: This camera is equipped with a Sony CCD sensor + TDA8787 (32)
Feb 19 16:31:11 current kernel: uaudio0: <Philips product 0x0329, class 0/0, rev 1.10/0.03, addr 2> on usbus4
Feb 19 16:31:11 current kernel: uaudio0: No playback!
Feb 19 16:31:11 current kernel: uaudio0: Record: 8000 Hz, 1 ch, 16-bit S-LE PCM format
Feb 19 16:31:11 current kernel: uaudio0: No midi sequencer
Feb 19 16:31:11 current kernel: pcm3: <USB audio> on uaudio0
(btw: before loading snd_uaudio I wasn't even aware that this cam has a
build in micro too)
now comes the micro in USB:
Feb 19 16:31:27 current root: Unknown USB device: vendor 0x0556 product 0x0001 bus uhub7
Feb 19 16:31:27 current kernel: ugen4.3: <Asahi Kasei Microsystems> at usbus4
Feb 19 16:31:27 current kernel: uaudio1: <Asahi Kasei Microsystems product 0x0001, class 0/0, rev 1.10/0.01, addr 3> on usbus4
Feb 19 16:31:27 current kernel: uaudio1: No playback!
Feb 19 16:31:27 current kernel: uaudio1: No recording!
Feb 19 16:31:27 current kernel: uaudio1: No midi sequencer
Feb 19 16:31:27 current kernel: pcm4: <USB audio> on uaudio1
Feb 19 16:31:27 current root: Unknown USB device: vendor 0x0556 product 0x0001 bus uhub7
btw: why it says uaudio1: No recording! ????
/dev/sndstats shows:
# cat /dev/sndstat
FreeBSD Audio Driver (newpcm: 32bit 2007061600/i386)
Installed devices:
pcm0: <HDA IDT 92HD71B7 PCM #0 Analog> at cad 0 nid 1 on hdac0 kld snd_hda [MPSAFE] (1p:2v/1r:1v channels duplex default)
pcm1: <HDA IDT 92HD71B7 PCM #1 Analog> at cad 0 nid 1 on hdac0 kld snd_hda [MPSAFE] (1p:1v/1r:2v channels duplex)
pcm2: <HDA IDT 92HD71B7 PCM #2 Digital> at cad 0 nid 1 on hdac0 kld snd_hda [MPSAFE] (1p:1v/0r:0v channels)
pcm3: <USB audio> at ? kld snd_uaudio [GIANT] (0p:0v/1r:1v channels)
pcm4: <USB audio> at ? kld snd_uaudio [GIANT] (mixer only)
and devices are there as:
# ls -l /dev/dsp*
crw-rw-rw- 1 root wheel 0, 146 18 feb 16:20 /dev/dsp0.0
crw-rw-rw- 1 root wheel 0, 150 18 feb 10:23 /dev/dsp1.0
crw-rw-rw- 1 root wheel 0, 151 18 feb 10:23 /dev/dsp2.0
crw-rw-rw- 1 root wheel 0, 157 18 feb 16:20 /dev/dsp3.0
and I'm able to record sound with 'mplayer' from /dev/dsp1.0 (the laptop
build-in micro) and /dev/dsp3.0 (the micro of the Philips cam):
$ mplayer -demuxer rawaudio -rawaudio bitrate=48000:rate=8000:samplesize=1:channels=1 /dev/dsp3.0
but I can't manage to record from the USB micro, which perhaps should be
/dev/dsp4.0. Any ideas what goes wrong?
Thanks in advance
matthias
--
Matthias Apitz
t +49-89-61308 351 - f +49-89-61308 399 - m +49-170-4527211
e <gu...@unixarea.de> - w http://www.unixarea.de/
Vote NO to EU The Lisbon Treaty: http://www.no-means-no.eu
------------------------------
Message: 19
Date: Sat, 20 Feb 2010 11:36:23 +0100
From: Hans Petter Selasky <hsel...@c2i.net>
Subject: Re: using USB based micro and speaker with FreeBSD / Skype
To: freeb...@freebsd.org, Matthias Apitz <gu...@unixarea.de>
Message-ID: <201002201136....@c2i.net>
Content-Type: Text/Plain; charset="iso-8859-1"
On Saturday 20 February 2010 09:44:54 Matthias Apitz wrote:
> btw: why it says uaudio1: No recording! ????
>
This issue should be fixed in 9-current.
--HPS
------------------------------
Message: 20
Date: Sat, 20 Feb 2010 11:44:16 +0100
From: Matthias Apitz <gu...@unixarea.de>
Subject: Re: using USB based micro and speaker with FreeBSD / Skype
To: Hans Petter Selasky <hsel...@c2i.net>
Cc: freeb...@freebsd.org
Message-ID: <2010022010...@current.Sisis.de>
Content-Type: text/plain; charset=iso-8859-1
El d�a Saturday, February 20, 2010 a las 11:36:23AM +0100, Hans Petter Selasky escribi�:
> On Saturday 20 February 2010 09:44:54 Matthias Apitz wrote:
> > btw: why it says uaudio1: No recording! ????
> >
>
> This issue should be fixed in 9-current.
>
> --HPS
Hans,
Is there a way to down port this fix to my 8-CURRENT? I can't update my
business laptop now (and even more, only to get an external micro
working with Skype when me and my group are calling other colleagues).
Thanks for a pointer
matthias
--
Matthias Apitz
t +49-89-61308 351 - f +49-89-61308 399 - m +49-170-4527211
e <gu...@unixarea.de> - w http://www.unixarea.de/
Vote NO to EU The Lisbon Treaty: http://www.no-means-no.eu
------------------------------
Message: 21
Date: Sat, 20 Feb 2010 13:05:50 +0100
From: Hans Petter Selasky <hsel...@c2i.net>
Subject: Re: using USB based micro and speaker with FreeBSD / Skype
To: Matthias Apitz <gu...@unixarea.de>
Cc: freeb...@freebsd.org
Message-ID: <201002201305....@c2i.net>
Content-Type: Text/Plain; charset="iso-8859-1"
On Saturday 20 February 2010 11:44:16 Matthias Apitz wrote:
> El d�a Saturday, February 20, 2010 a las 11:36:23AM +0100, Hans Petter
Selasky escribi�:
> > On Saturday 20 February 2010 09:44:54 Matthias Apitz wrote:
> > > btw: why it says uaudio1: No recording! ????
> >
> > This issue should be fixed in 9-current.
> >
> > --HPS
>
> Hans,
>
> Is there a way to down port this fix to my 8-CURRENT? I can't update my
> business laptop now (and even more, only to get an external micro
> working with Skype when me and my group are calling other colleagues).
> Thanks for a pointer
>
> matthias
>
Try to fetch uaudio*[ch] from 9-current. /usr/src/sys/dev/sound/usb .
--HPS
------------------------------
Message: 22
Date: Sun, 21 Feb 2010 09:37:04 +0100
From: Matthias Apitz <gu...@unixarea.de>
Subject: Re: using USB based micro and speaker with FreeBSD / Skype
To: Hans Petter Selasky <hsel...@c2i.net>
Cc: freeb...@freebsd.org
Message-ID: <20100221083...@current.Sisis.de>
Content-Type: text/plain; charset=iso-8859-1
El d�a Saturday, February 20, 2010 a las 01:05:50PM +0100, Hans Petter Selasky escribi�:
> > Hans,
> >
> > Is there a way to down port this fix to my 8-CURRENT? I can't update my
> > business laptop now (and even more, only to get an external micro
> > working with Skype when me and my group are calling other colleagues).
> > Thanks for a pointer
> >
> > matthias
> >
>
> Try to fetch uaudio*[ch] from 9-current. /usr/src/sys/dev/sound/usb .
I did and I have had to fetch 2 header files more:
sys/dev/usb/usbdi_util.h
sys/dev/usb/usbdi.h
but a buildkernel complains about:
# make buildkernel KERNCONF=GENERIC
...
mkdep -f .depend -a -nostdinc -D_KERNEL -DKLD_MODULE
-DHAVE_KERNEL_OPTION_HEADERS -I. -I@ -I@/contrib/altq
-I/usr/obj/usr/src/sys/GENERIC
/usr/src/sys/modules/sound/driver/uaudio/../../../../dev/sound/usb/uaudio.c
/usr/src/sys/modules/sound/driver/uaudio/../../../../dev/sound/usb/uaudio_pcm.c
/usr/src/sys/modules/sound/driver/uaudio/../../../../dev/sound/usb/uaudio.c:81:21:
error: opt_snd.h: No such file or directory
/usr/src/sys/modules/sound/driver/uaudio/../../../../dev/sound/usb/uaudio_pcm.c:31:21:
error: opt_snd.h: No such file or directory
mkdep: compile failed
*** Error code 1
Stop in /usr/src/sys/modules/sound/driver/uaudio.
*** Error code 1
and opt_snd.h is not at all in SVN of head... I'm puzzled a bit
The reference is in both C sources like this
#ifdef HAVE_KERNEL_OPTION_HEADERS
#include "opt_snd.h"
#endif
but the file is not in head
at the end, it does not compile for conflicst like
dev/sound/usb/uaudio.c:3628: error: too many arguments to function
'usbd_copy_in'
I have to wait until update all to 9-CURRENT;
Thx
matthias
--
Matthias Apitz
t +49-89-61308 351 - f +49-89-61308 399 - m +49-170-4527211
e <gu...@unixarea.de> - w http://www.unixarea.de/
Vote NO to EU The Lisbon Treaty: http://www.no-means-no.eu
------------------------------
Message: 23
Date: Sun, 21 Feb 2010 09:57:11 +0100
From: Hans Petter Selasky <hsel...@c2i.net>
Subject: Re: using USB based micro and speaker with FreeBSD / Skype
To: Matthias Apitz <gu...@unixarea.de>
Cc: freeb...@freebsd.org
Message-ID: <201002210957....@c2i.net>
Content-Type: Text/Plain; charset="iso-8859-1"
On Sunday 21 February 2010 09:37:04 Matthias Apitz wrote:
> El d�a Saturday, February 20, 2010 a las 01:05:50PM +0100, Hans Petter
Selasky escribi�:
> > > Hans,
> > >
> > > Is there a way to down port this fix to my 8-CURRENT? I can't update my
> > > business laptop now (and even more, only to get an external micro
> > > working with Skype when me and my group are calling other colleagues).
> > > Thanks for a pointer
> > >
> > > matthias
> >
> > Try to fetch uaudio*[ch] from 9-current. /usr/src/sys/dev/sound/usb .
>
> I did and I have had to fetch 2 header files more:
>
> sys/dev/usb/usbdi_util.h
> sys/dev/usb/usbdi.h
>
> but a buildkernel complains about:
>
> # make buildkernel KERNCONF=GENERIC
> ...
> mkdep -f .depend -a -nostdinc -D_KERNEL -DKLD_MODULE
> -DHAVE_KERNEL_OPTION_HEADERS -I. -I@ -I@/contrib/altq
> -I/usr/obj/usr/src/sys/GENERIC
> /usr/src/sys/modules/sound/driver/uaudio/../../../../dev/sound/usb/uaudio.c
> /usr/src/sys/modules/sound/driver/uaudio/../../../../dev/sound/usb/uaudio_p
> cm.c
> /usr/src/sys/modules/sound/driver/uaudio/../../../../dev/sound/usb/uaudio.
> c:81:21: error: opt_snd.h: No such file or directory
> /usr/src/sys/modules/sound/driver/uaudio/../../../../dev/sound/usb/uaudio_p
> cm.c:31:21: error: opt_snd.h: No such file or directory
> mkdep: compile failed
> *** Error code 1
>
> Stop in /usr/src/sys/modules/sound/driver/uaudio.
> *** Error code 1
>
> and opt_snd.h is not at all in SVN of head... I'm puzzled a bit
> The reference is in both C sources like this
>
> #ifdef HAVE_KERNEL_OPTION_HEADERS
> #include "opt_snd.h"
> #endif
>
> but the file is not in head
>
> at the end, it does not compile for conflicst like
> dev/sound/usb/uaudio.c:3628: error: too many arguments to function
> 'usbd_copy_in'
>
> I have to wait until update all to 9-CURRENT;
>
> Thx
>
> matthias
>
You could maybe build the 9-current kernel and boot it, then revert to the 8-
stable kernel after testing.
--HPS
------------------------------
Message: 24
Date: Sun, 21 Feb 2010 21:30:58 +0000
From: Bruce Cran <br...@cran.org.uk>
Subject: Using a USB keyboard at the root mount prompt
To: freeb...@FreeBSD.org
Message-ID: <20100221213...@muon.cran.org.uk>
Content-Type: text/plain; charset=us-ascii
Hi,
I just updated to the latest -CURRENT and installed the GENERIC kernel;
I forgot to add support for the ahci driver and thus got dropped to the
root mount prompt when I rebooted. Despite ukbd0 having been detected
just before, the keyboard didn't work so I had to reboot and use
kernel.old instead. Should USB keyboards work at that stage of the boot
process?
--
Bruce Cran
------------------------------
Message: 25
Date: Sun, 21 Feb 2010 22:44:28 +0100
From: Hans Petter Selasky <hsel...@c2i.net>
Subject: Re: Using a USB keyboard at the root mount prompt
To: freeb...@freebsd.org
Message-ID: <201002212244....@c2i.net>
Content-Type: Text/Plain; charset="iso-8859-1"
On Sunday 21 February 2010 22:30:58 Bruce Cran wrote:
> Hi,
>
> I just updated to the latest -CURRENT and installed the GENERIC kernel;
> I forgot to add support for the ahci driver and thus got dropped to the
> root mount prompt when I rebooted. Despite ukbd0 having been detected
> just before, the keyboard didn't work so I had to reboot and use
> kernel.old instead. Should USB keyboards work at that stage of the boot
> process?
>
Yes, USB keyboards should work at this stage. I'm not sure if the keyboard
patch I made recently was committed or not yet.
--HPS
http://p4web.freebsd.org/chv.cgi?CH=173914
http://perforce.freebsd.org/chv.cgi?CH=173914
And more on the same file.
------------------------------
Message: 26
Date: Mon, 22 Feb 2010 07:25:34 GMT
From: Stephen Hurd <sh...@sasktel.net>
Subject: usb/144199: uvisor(4) - AlphaSmart Dana incorrect stall
clearing
To: freebsd-gn...@FreeBSD.org
Message-ID: <201002220725....@www.freebsd.org>
>Number: 144199
>Category: usb
>Synopsis: uvisor(4) - AlphaSmart Dana incorrect stall clearing
>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: Mon Feb 22 07:30:01 UTC 2010
>Closed-Date:
>Last-Modified:
>Originator: Stephen Hurd
>Release: 8-STABLE
>Organization:
>Environment:
FreeBSD ace.hurd.local 8.0-STABLE FreeBSD 8.0-STABLE #0: Tue Feb 16 01:20:04 PST 2010 ro...@ace.hurd.local:/tmp/obj/usr/src/sys/ACE i386
>Description:
With the AlphaSmart Dana (VID=0x081e, PID=0xdf00) the uvisor driver does not function (no I/O) unless the two stall clears after the "clear stall at first run" comment are removed.
>How-To-Repeat:
1) Connect an AlphaSmart Dana via USB
2) Select HotSync on the Dana
3) After uvisor attaches, run ``pilot-xfer -p /dev/cuaU0 -l''
4) pilot-xfer will hang, Dana will timeout, and the device will detach
>Fix:
Remove or make conditional the initial stall clears. It's not obvious to me why this code is there, so I don't know which is more appropriate.
>Release-Note:
>Audit-Trail:
>Unformatted:
------------------------------
Message: 27
Date: Mon, 22 Feb 2010 09:47:55 +0100
From: Hans Petter Selasky <hsel...@c2i.net>
Subject: Re: usb/144199: uvisor(4) - AlphaSmart Dana incorrect stall
clearing
To: freeb...@freebsd.org
Cc: freebsd-gn...@freebsd.org
Message-ID: <201002220947....@c2i.net>
Content-Type: Text/Plain; charset="iso-8859-15"
On Monday 22 February 2010 08:25:34 Stephen Hurd wrote:
> usb/144199
>
USB serial:
- bugfix for uvisor driver
- it appears that some UVISOR devices do not
handle when the clear stall command is issued at
the beginning of the initial IN/OUT data transfers.
Reason unknown, probably firmware fault. After patch
stall is only cleared on data transfer errors.
Committed to USB P4, ID=174962 .
--HPS
------------------------------
Message: 28
Date: Mon, 22 Feb 2010 08:50:02 GMT
From: Hans Petter Selasky <hsel...@c2i.net>
Subject: Re: usb/144199: uvisor(4) - AlphaSmart Dana incorrect stall
clearing
To: freeb...@FreeBSD.org
Message-ID: <201002220850....@freefall.freebsd.org>
The following reply was made to PR usb/144199; it has been noted by GNATS.
From: Hans Petter Selasky <hsel...@c2i.net>
To: freeb...@freebsd.org
Cc: Stephen Hurd <sh...@sasktel.net>,
freebsd-gn...@freebsd.org
Subject: Re: usb/144199: uvisor(4) - AlphaSmart Dana incorrect stall clearing
Date: Mon, 22 Feb 2010 09:47:55 +0100
On Monday 22 February 2010 08:25:34 Stephen Hurd wrote:
> usb/144199
>
USB serial:
- bugfix for uvisor driver
- it appears that some UVISOR devices do not
handle when the clear stall command is issued at
the beginning of the initial IN/OUT data transfers.
Reason unknown, probably firmware fault. After patch
stall is only cleared on data transfer errors.
Committed to USB P4, ID=174962 .
--HPS
------------------------------
Message: 29
Date: Mon, 22 Feb 2010 09:11:46 GMT
From: Stephen Hurd <sh...@sasktel.net>
Subject: usb/144201: AlphaSmart Dana usbdevs and uvisor update
To: freebsd-gn...@FreeBSD.org
Message-ID: <201002220911....@www.freebsd.org>
>Number: 144201
>Category: usb
>Synopsis: AlphaSmart Dana usbdevs and uvisor update
>Confidential: no
>Severity: non-critical
>Priority: low
>Responsible: freebsd-usb
>State: open
>Quarter:
>Keywords:
>Date-Required:
>Class: update
>Submitter-Id: current-users
>Arrival-Date: Mon Feb 22 09:20:01 UTC 2010
>Closed-Date:
>Last-Modified:
>Originator: Stephen Hurd
>Release: 8-Stable
>Organization:
>Environment:
FreeBSD ace.hurd.local 8.0-STABLE FreeBSD 8.0-STABLE #0: Tue Feb 16 01:20:04 PST 2010 ro...@ace.hurd.local:/tmp/obj/usr/src/sys/ACE i386
>Description:
The AlphaSmart Dana works with uvisor(4) pending PR:usb/144199 but needs an entry in usbdevs and src/sys/dev/usb/serial/uvisor.c:uvisor_devs[]
>How-To-Repeat:
>Fix:
Add the line:
UVISOR_DEV(ALPHASMART, DANA_SYNC, UVISOR_FLAG_PALM4),
to uvisor_devs[] (isn't *quite* in alphabetical order, so correct insertion point is non-obvious) and apply the attached patch to src/sys/dev/usb/usbdevs
Patch attached with submission follows:
*** sys/dev/usb/usbdevs.orig Mon Feb 15 23:54:43 2010
--- sys/dev/usb/usbdevs Mon Feb 15 23:56:20 2010
***************
*** 407,412 ****
--- 407,413 ----
vendor CENTURY 0x07f7 Century Corp
vendor ZOOM 0x0803 Zoom Telephonics
vendor PCS 0x0810 Personal Communication Systems
+ vendor ALPHASMART 0x081e AlphaSmart, Inc.
vendor BROADLOGIC 0x0827 BroadLogic
vendor HANDSPRING 0x082d Handspring
vendor PALM 0x0830 Palm Computing
***************
*** 860,865 ****
--- 861,870 ----
/* Allied Telesyn International products */
product ALLIEDTELESYN ATUSB100 0xb100 AT-USB100
+ /* AlphaSmart, Inc. products */
+ product ALPHASMART DANA_KB 0xdbac AlphaSmart Dana Keyboard
+ product ALPHASMART DANA_SYNC 0xdf00 AlphaSmart Dana HotSync
+
/* Amoi products */
product AMOI H01 0x0800 H01 3G modem
product AMOI H01A 0x7002 H01A 3G modem
>Release-Note:
>Audit-Trail:
>Unformatted:
------------------------------
Message: 30
Date: Mon, 22 Feb 2010 11:07:08 GMT
From: FreeBSD bugmaster <bugm...@FreeBSD.org>
Subject: Current problem reports assigned to freeb...@FreeBSD.org
To: freeb...@FreeBSD.org
Message-ID: <201002221107....@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/144201 usb AlphaSmart Dana usbdevs and uvisor update
o usb/144199 usb uvisor(4) - AlphaSmart Dana incorrect stall clearing
o usb/144043 usb [umass] USB DLT tape drive throws random errors
o usb/143790 usb [boot] can not boot from usb hdd
f usb/143634 usb [umass] [usb8] Jetflash USB flash stick fails to mount
f usb/143620 usb [cdce] [usb8] the module if_cdce doesn't support my Op
o usb/143448 usb [usbdevs] [usb8] [patch] QUIRK: JMicron JM20336 USB/SA
f usb/143294 usb [usb8] copying process stops at some time (10 - 50 sec
o usb/143286 usb [ukbd] [usb8] [boot] boot failures on RELENG_8 system
f usb/143186 usb [usbdevs] [usb8] [patch] add USB device IDs for Google
a usb/143139 usb [umass] [usb8] [patch] Quirk for Century EX35SW4_SB4 J
o usb/143045 usb [umass] [usb8] [patch] mounting Fujitsu 2600Z camera d
o usb/142991 usb [uftdi] [usb67] [patch] Patch to add Crystalfontz 533
f usb/142989 usb [usb8] canon eos 50D attaches but detaches after few s
f usb/142957 usb [umass] [usb8] [patch] patch for USB disk SYNCHRONIZE
o usb/142719 usb [urtw] [usb8] AirLive WL-1600USB (RTL8187L chipset) fa
o usb/142713 usb [usb67] [panic] Kernel Panik when connecting an IPhone
f usb/142276 usb [umass] [usb8] Cache Synchronization Error with Olympu
o usb/142229 usb [ums] [usb8] [hang] connecting a USB mouse to a Dell P
o usb/141680 usb [uath] [usb8] Netgear WG111T not working with uath dri
o usb/141664 usb [pcm] [usb8] Logitech USB microphone failure [regressi
o usb/141474 usb [boot] [usb8] FreeBSD 8.0 can not install from USB CDR
a usb/141467 usb [uftdi] [patch] RATOC REX-USB60F (usb serial converter
o usb/141327 usb [ukbd] [usb67] USB kbd not working with 7.1+PAE on IBM
o usb/141313 usb [usb8] nvidia USB 2.0 controller - stops copying on US
o usb/141212 usb [ukbd] [usb8] ukbd_set_leds_callback:700: error=USB_ER
o kern/141011 usb [usb] Encrypted root, geli password at boot; enter key
o usb/140928 usb [u3g] [usb8] [patch] ZTE CDMA2000 1X EV-DO (MG478/AC87
o usb/140920 usb [install] [usb8] USB based install fails on 8.0-RELEAS
o usb/140893 usb [urtw] [usb8] WPA2 not working on rtl8187b
f usb/140883 usb [axe] [usb8] USB gigabit ethernet hangs after short pe
o kern/140849 usb [ums] [usb8] USB mouse doesn't work under FreeBSD 8.0-
a usb/140810 usb [uftdi] [usb8] 8.X copy and paste problem / tty overfl
o kern/140614 usb [uplcom] [patch] adding support for Radio Shack Gigwar
o usb/140590 usb [bluetooth] [usb8] ng_ubt(4) ng_l2cap_process_cmd_rej
o usb/140477 usb [umass] [usb8] [patch] allow boot-time attachment of d
o usb/140259 usb [libusb] [patch] [usb8] libusb-1.0 portability/compati
o usb/140236 usb [msdosfs] [usb8] Labels wiped on external Journaled US
o usb/140160 usb [usb8] [acpi] USB ports are no longer "active" after A
s usb/139990 usb [panic] [patch] [usb67] Kernel frequently panics after
a usb/139598 usb [umass] [usb8] CAM reports "xptioctl: put "device pass
o usb/139243 usb [uhci] [usb67] unplug prolific USB serial -> uhci_abor
o usb/138915 usb [patch] [usb8] [usb67] add support for SheevaPlug seri
a usb/138904 usb [rum] [panic] [usb67] unpluging USB wifi card panics s
f usb/138882 usb [ohci] [panic] [usb67] Can't install FreeBSD 7.2 due t
a usb/138879 usb [uftdi] [patch] Patch to add support for CTI USB-Mini
o usb/138798 usb [boot] [usb8] 8.0-BETA4 can't boot from USB flash driv
o usb/138659 usb [usb8][uftdi] driver broken in RELENG_8/CURRENT
o usb/138570 usb [usb] [panic] USB mass device panics current 7.2-STABL
o usb/138175 usb [usb67] [boot] System cannot boot, when USB reader wit
o usb/138172 usb [u3g] [patch] [usb67] Additional dev id for u3g (Optio
o usb/138138 usb [u3g] [patch] [usb67] Novatel U760 for u3g (Verizon an
o usb/138124 usb [snd_uaudio] [usb8] Axed uaudio functionality in the u
o usb/138119 usb [usb67] [usb8] MultiBay CDROM (probably on USB bus) is
o usb/137872 usb [usb67] [boot] slow booting on usb flash drive
o usb/137806 usb [ukbd] [usb67] USB keyboard doesn't work until it's un
o usb/137763 usb [usb67][ukbd] Logitech wireless keyboard media keys no
o usb/137616 usb [usb67][usb8][usbdevs] [patch]: usbdevs update: Please
o usb/137377 usb [usb8] request support for Huawei E180
o usb/137341 usb [usb8][rum] driver if_rum doesn't work at all and thro
f usb/137190 usb [usb8][patch] inhibit spurious button releases for som
o usb/137189 usb [usb8][patch] create and use sysctl nodes for HID repo
p usb/137188 usb [usb8][patch] correctly handle USB report descriptors
f bin/137180 usb [build] [patch] building world for 8.0-BETA2 fails on
o usb/137129 usb [ums] [usb8] SteelSeries Ikari USB laser mouse not att
p usb/136761 usb [usbdevs][usb67][patch] Teach usbdevs / u3g(4) about H
o usb/135938 usb [aue] [usb67] aue driver only passes traffic in promis
o usb/135575 usb [usbdevs] [patch] [usb67] Add HTC Wizard phone vid/pid
o usb/135542 usb [keyboard] boot loader does not work with a usb keyboa
o usb/135348 usb [umass] [patch] USB Drive Hangs with ZFS (JMicron USB2
o usb/135206 usb machine reboots when inserted USB device
o usb/135200 usb SAMSUNG i740 usb mass: Synchronize cache failed, statu
o usb/135182 usb UMASS quirk - Olympus FE20 camera
o usb/134950 usb Lowering DTR for USB-modem via ubsa is not possible
o usb/134633 usb Add support for WILLCOM03(SHARP smart phone)
o usb/134631 usb [usbdevs] [patch] WiSPY DBx support requires usb tweak
o usb/134299 usb Kernel Panic plugging in MF626 USB UMTS Stick u3g
o usb/134193 usb System freeze on usb MP3 player insertion
o usb/134117 usb [Patch] Add support for 'Option GlobeTrotter HSDPA Mod
o usb/134085 usb [umass] Adding usb quirk for Sony USB flash drive
o usb/133989 usb [usb8] [ukbd] USB keyboard dead at mountroot> prompt
o usb/133712 usb [ural] [patch] RE: Fixed an issue with ural(4) that wa
o usb/133390 usb umass crashes system in 7.1 when Olympus D-540 attache
o usb/133296 usb [rum] driver not working properly in hostap mode
p usb/132799 usb [usb][patch]GENESYS USB2IDE requires NO_SYNCHRONIZE_CA
o usb/132785 usb [usb] [patch] Gemtech remote powersocket is classed as
o usb/132594 usb USB subsystem causes page fault and crashes
o usb/132312 usb [hang] Xorg 7.4 halts USB controller
o usb/132080 usb [patch] [usb] [rum] Kernel panic after NOMEM caused by
o usb/132066 usb [ukbd] Keyboard failure USB keyboard DELL 760
o usb/132036 usb [panic] page fault when connecting Olympus C740 camera
o usb/131912 usb [uslcom] [patch] New devices using Silicon Labs chips
o usb/131900 usb [usbdevs] [patch] Additional product identification co
o usb/131583 usb [umass] Failure when detaching umass Device
o usb/131576 usb [aue] ADMtek USB To LAN Converter can't send data
o usb/131521 usb Registering Belkin UPS to usb_quirks.c
o usb/131123 usb [patch] re-add UQ_ASSUME_CM_OVER_DATA USB quirk
o usb/131074 usb no run-time detection of usb devices plugged into exte
o usb/130736 usb Page fault unplugging USB stick
o usb/130230 usb Samsung Electronics YP-U3 does not attach in 7.1-RELEA
o usb/130208 usb Boot process severely hampered by umass0 error
o usb/130122 usb [usb8] DVD drive detects as 'da' device
o usb/129945 usb [usbdevs] [patch] add u3g support for Longcheer WM66 U
o usb/129766 usb [usb] plugging in usb modem HUAWEI E226 panics system
o usb/129758 usb [uftdi] [patch] add Pyramid LCD usb support
o usb/129673 usb [uhci] uhci (uhub) confused on replugging USB 1.1 scan
o usb/129522 usb [ubsa] [patch] add support for ZTE AC8700 modem
o usb/129500 usb [umass] [panic] FreeBSD Crashes when connecting SanDis
o usb/129311 usb [usb] [panic] Instant crash with an USB card reader
o usb/129251 usb [usbdevs] [patch] Liebert UPS being assigned uhid and
o usb/129173 usb [uplcom] [patch] Add support for Corega CG-USBRS232R a
s usb/128990 usb [usb] u3g does not handle RTS/CTS available on for exa
o usb/128977 usb [usb] [patch] uaudio is not full duplex
o usb/128803 usb [usbdevs] [patch] Quirk for I-Tuner Networks USBLCD4X2
o usb/128485 usb [umodem] [patch] Nokia N80 modem support
o usb/128425 usb [umass] Cannot Connect Maxtor Onetouch 4 USB drive
o usb/128418 usb [panic] [rum] loading if_rum causes panic, looks like
o usb/128324 usb [uplcom] [patch] remove baud rate restriction for PL23
o usb/127980 usb [umass] [patch] Fix Samsung YP U2 MP3 player on 7.x an
o usb/127926 usb [boot] USB Timeout during bootup
p usb/127549 usb [umass] [usb67] [patch] Meizu MiniPlayer M6 (SL) requi
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] [panic] enabling usb keyboard and mouse support
o usb/127248 usb [ucom] panic while uplcom devices attaach and detach
o usb/127222 usb [ohci] Regression in 7.0 usb storage generic driver
o usb/126884 usb [ugen] [patch] Bug in buffer handling in ugen.c
o usb/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 [ums] [panic] kernel panic during bootup while 'Logite
o usb/125510 usb [panic] repeated plug and unplug of USB mass storage d
o usb/125450 usb [panic] Removing USB flash card while being accessed c
o usb/125238 usb [ums] Habu Mouse turns off in X
o usb/125088 usb [keyboard] Touchpad not detected on Adesso AKB-430UG U
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] [panic] rum panics SMP kernel
o usb/124708 usb [panic] Kernel panic on USB KVM reattach
o usb/124604 usb [ums] Microsoft combo wireless mouse doesn't work
o kern/124130 usb [usb] gmirror fails to start usb devices that were pre
o usb/123969 usb [usb] Supermicro H8SMi-2 usb problem: port reset faile
o usb/123714 usb [usb] [panic] Panic when hald-storage-probe runs with
o usb/123691 usb usbd(8): usbd hangs
o usb/123690 usb [usb] [panic] Panic on USB device insertion when usb l
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 [usbdevs] [patch] Add Option GTMAX3.6/7.2 and Quallcom
o usb/123351 usb [usbdevs] [patch] Add Reiner SCT cyberJack, Omnikey [2
o usb/122992 usb [umass] [patch] MotoROKR Z6 Phone not recognised by um
o usb/122956 usb [ubsa] [patch] add support for Novatel Wireless XU870
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 [usb] [patch] Patch to provide dynamic additions to th
o usb/122813 usb [udbp] [request] udbp driver should be removed in favo
o usb/122621 usb [new driver] [patch] New driver for Sierra Wireless 3G
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 [uscanner] [patch] uscanner does not attach to Epson R
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] [panic] FreeBSD fails to boot with usb legacy s
o usb/121232 usb [usb] [panic] USB CardBus card removal causes reboot s
p 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 [usb] [panic] Kernel panic when forced umount of a det
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/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] 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/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 [snd_uaudio] [patch] Not possible to record with Plant
o usb/117313 usb [umass] [panic] panic on usb camera insertion
o usb/117200 usb [ugen] ugen0 prints strange string on attach if detach
o usb/117183 usb [panic] USB/fusefs -- panic while transferring large a
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 [usb67] [usb8] [umass] [patch] Problem with connection
o conf/114013 usb [patch] WITHOUT_USB allow to compil a lot of USB stuff
o usb/113060 usb [usb67] [ulpt] [patch] Samsung printer not working in
o usb/110856 usb [usb67] [ugen] [patch] interrupt in msgs are truncated
s usb/108344 usb [usb67] [atausb] [panic] kernel with atausb panics whe
o usb/107827 usb [usb67] [ohci] [panic] ohci_add_done addr not found
o usb/107388 usb [usb67] [usb8] [new driver] [patch] add utoppy device
o usb/107243 usb [usb67] [cam] [quirk] [patch] Apacer USB Flash Drive q
o usb/106041 usb [usb67] [usb8] [request] FreeBSD does not recognise Mu
o usb/105361 usb [usb67] [panic] Kernel panic during unmounting mass st
s usb/103917 usb [usb67] [uhub] USB driver reports "Addr 0 should never
o usb/103418 usb [usb67] [usb8] [patch] [request] usbhidctl(8) add abil
o usb/103046 usb [usb67] [ulpt] [patch] ulpt event driven I/O with sele
o usb/101775 usb [usb67] [usb8] [libusbhid] [patch] possible error in r
o usb/101761 usb [usb67] [patch] [request] usb.h: increase maximal size
o usb/100746 usb [usb67] [ukbd] system does not boot due to USB keyboar
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 kern/99200 usb [bluetooth] SMP-Kernel crashes reliably when Bluetooth
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/93389 usb [umass] [patch] Digital Camera Pentax S60 don't work
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 [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 [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/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
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 [sound] [hang] Use of sound mixer causes system freeze
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 [ums] 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] [regression] 5.3-STABLE(2005 1/4) detect USB h
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
s 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
s bin/57255 usb [patch] 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 usb/30929 usb [usb] [patch] use usbd to initialize USB ADSL modem
340 problems total.
------------------------------
End of freebsd-usb Digest, Vol 277, Issue 1
*******************************************