1. 31 Jul, 2003 5 commits
    • Alan Stern's avatar
      [PATCH] USB: More unusual_devs.h stuff · 9508eb64
      Alan Stern authored
      Here are updates to unusual_devs.h sent in by users.  They apply to both
      2.4.22 and 2.6.0.
      9508eb64
    • Alan Stern's avatar
      [PATCH] USB: Small fixes for usbtest · 73fa6d3f
      Alan Stern authored
      It fixes a few minor problems in the usbtest driver:
      
      	Unlinks are done in the expected order, preventing some
      	inappropriate error messages.
      
      	The driver would wait for an URB to complete, even if the URB
      	got an error on submission.
      
      	There was a surprising memory leak: the driver didn't kfree()
      	its private data structure.
      73fa6d3f
    • David Brownell's avatar
      [PATCH] USB: usb_gadget.h doc fix · cfe44e6e
      David Brownell authored
      The "automagic control completion" has been gone for some
      time now, except for the documentation fixed in this patch.
      It mentions the "deferred response" mode that's used when
      some context (like a gadgetfs thread) other than the IRQ
      handler is responding to control requests.
      cfe44e6e
    • Ian Abbott's avatar
      [PATCH] USB: ftdi_sio - additional pids · 2ea05a50
      Ian Abbott authored
      Wayne Wylupski sent some more PIDs (in a patch, but I've modified
      it) for the ftdi_sio driver to the ftdi-usb-sio-devel list.  These
      PIDs were for additional CrystalFontz LCD displays.
      
      An earlier patch from David Glance for the DSS-20 SyncStation was
      applied to the 2.6 tree.  This did not have a changelog entry in
      the file header comment of ftdi_sio.c, so I have retroactively
      added one in the attached patch.
      2ea05a50
    • Greg Kroah-Hartman's avatar
      [PATCH] USB: added support for TIOCM_RI and TIOCM_CD to pl2303 driver and fix stupid bug. · 2b520b9a
      Greg Kroah-Hartman authored
      Thanks to Paulo Marques <pmarques@grupopie.com> for finding this.
      2b520b9a
  2. 30 Jul, 2003 26 commits
    • Alan Stern's avatar
      [PATCH] USB: Rename usb_connect() to usb_choose_address() · 11ba7acd
      Alan Stern authored
      This revised patch includes the change that David Brownell asked for.  It
      renames usb_connect() to usb_choose_address(), no longer exports the
      function, and adds equivalent functionality to usb_register_root_hub().
      It also removes the unnecessary (and incorrect) assignment to
      bMaxPacketSize0.
      11ba7acd
    • Nemosoft Unv.'s avatar
      [PATCH] USB: PWC 8.11 · 7b680613
      Nemosoft Unv. authored
      Attached are two patches, one for 2.4.21 and 2.5.75 for the PWC driver. I
      assume the 2.5.75 patch will go into 2.6.0-test* without problems (I hope
      this driver can make it into the kernel before the 'real' 2.6.0).
      
       From the ChangeLog:
      
      * 20 dev_hints (per request)
      * Hot unplugging should be better, no more dangling pointers or memory leaks
      * Added reserved Logitech webcam IDs
      * Device now remembers size & fps between close()/open()
      * Removed palette stuff altogether
      
      I have two open issues, though: Oliver Neukem pointed out that I should
      resubmit URBs in the 2.5. kernel even in case of USB errors, which I did.
      However, I never got a patch so I'm not 100% if this is the solution that
      he had in mind.
      
      Second... I've been thinking long and hard about the problem of properly
      deregistering the video device when the cam gets unplugged while it is in
      use. Various schemes failed; immediately deregistering while in the
      disconnect routine causes crashes because the videodev layer sets some
      pointer to null but still uses it later. A deregister in close() causes
      hangs because of locked mutexes...
      
      My current implemententation is to set an errorflag in the disconnect
      routine, then wait there (using schedule()) until close() is being called
      (I assume the application will immediately close the device when it gets a
      serious error). So far it doesn't crash :-)
      7b680613
    • David T. Hollis's avatar
      [PATCH] USB: ax8817x.c - Fix flags to greatly increase rx performance · df9e735b
      David T. Hollis authored
      The attached patch fixes the flags used on the receive URBs and greatly
      increases throughput (especially on EHCI).  On EHCI before the patch,
      receives came in around 460KB/s and after I am in the 10-11MB/s range
      which is about the same speed I am able to achieve using my Intel nics.
      Now transmit is actually the bottleneck on EHCI (only getting around 6MB/s).
      df9e735b
    • David T. Hollis's avatar
      [PATCH] USB: AX8817x mii/ethtool fixes among others · 27aee7c4
      David T. Hollis authored
      This patch:
      Adds the Intellinet device IDs
      Adds msg_level support (to be utilized in the future)
      Fixes ethtool/mii support so link checking actually works
      Changed timeout on usb_fill_int_urb to support High Speed (mru@users.sf.net)
      Added devdbg/err/info defines borrowed from usbnet
      Changed strlcpy to strncpy
      
      Key issue not currently resolved (as brought up by mru@users.sf.net) is
      that the receive performance is terrible on OHCI.  I ran a set of tests
      with ttcp and transmit performance achieved 6146.16 KB/sec  but receive
      only yielded 466.26 KB/sec which really sucks (sorry for the technical
      jargon).  In porting the driver to 2.5 I had to pull the transmit
      queueing that Tivo had originally used for the driver to even function.
      My initial attempts at pulling the receive queueing met with many
      Ooopses thus I backed off.  Looks like I will need to dig in again on
      that one.
      27aee7c4
    • Judd Montgomery's avatar
      829673a9
    • David Brownell's avatar
      [PATCH] USB: ehci-hcd, TT fixup · 8ca9f3ab
      David Brownell authored
      I noticed that some cases where USB produced lots of TT messages
      were clearly wrong, since the transactions completed cleanly
      (with a stall) and the TT buffer cleanup is only supposed to
      be needed when a CSPLIT transaction fails (for control or bulk).
      
      This patch makes the TT buffer cleanup happen only in the rarer
      cases where there was an error that might really need it.
      8ca9f3ab
    • Oliver Neukum's avatar
      [PATCH] USB: fix race condition in usblp_write · fda616fe
      Oliver Neukum authored
        - fix timeout handling
      fda616fe
    • Oliver Neukum's avatar
      [PATCH] USB: cleanup of usblp (release and poll) · bb672f57
      Oliver Neukum authored
      this cleans up locking and freeing in usblp_release and
      poll.
      bb672f57
    • Greg Kroah-Hartman's avatar
      [PATCH] USB: fix memory leak in auerswald driver. · f3f7317f
      Greg Kroah-Hartman authored
      Thanks to Joilnen Leite <knl_joi@yahoo.com.br> for pointing this out.
      f3f7317f
    • David Brownell's avatar
      [PATCH] USB: usbnet: zaurus c-750, motorola · a0c3c07d
      David Brownell authored
      This patch:
      
         - Makes the cdc code handle a Motorola cable modem that stores
           CDC descriptors in the wrong place.  The workaround might be
           helpful for other hardware too.  (This was a 2.4 regression.)
      
         - Recognizes another Zaurus (PXA 255 based clamshell, not yet
           sold by Sharp in the US).
      
         - Cleaned the Zaurus stuff up a bit.  Rather than expecting
           a new driver_info struct (or re-using the right one) for
           each new pxa based product, they all use the same one.  So
           patches for new products only need new usb_device_id entries.
           (Also notes the issue that every Zaurus model will need to be
           blacklisted for CDC if the Z code isn't enabled.)
      a0c3c07d
    • Greg Kroah-Hartman's avatar
    • Daniele Bellucci's avatar
    • Greg Kroah-Hartman's avatar
      [PATCH] USB: Support sharp zaurus C-750 · e6c96591
      Greg Kroah-Hartman authored
      From pavel@ucw.cz
      
      This adds support for another handheld from sharp to 2.6.0-test1
      e6c96591
    • Daniele Bellucci's avatar
      fa0c75a5
    • Oliver Neukum's avatar
      [PATCH] USB: error return codes in usblp · b81a3c76
      Oliver Neukum authored
      an unknown ioctl shall return ENOTTY, not EINVAL.
      b81a3c76
    • Greg Kroah-Hartman's avatar
      [PATCH] USB: bluetty: remove write_urb_pool logic, fixing locking issues. · 38ab367b
      Greg Kroah-Hartman authored
      Now we just throw urbs at the device as fast as we can.
      38ab367b
    • David Brownell's avatar
      [PATCH] USB: ehci needs a readb() on IDP425 PCI (ARM) · 7b971170
      David Brownell authored
      This is a one-line "obviously correct" patch that Lutz reports
      is needed on one ARM platform.
      7b971170
    • Greg Kroah-Hartman's avatar
    • Greg Kroah-Hartman's avatar
      88897e46
    • Greg Kroah-Hartman's avatar
      Merge gregkh@kernel.bkbits.net:linux/linus-2.6 · 44a36f96
      Greg Kroah-Hartman authored
      into kroah.com:/home/greg/linux/BK/gregkh-2.6
      44a36f96
    • Greg Kroah-Hartman's avatar
      [PATCH] USB: AX8817x (USB ethernet) problem in 2.6.0-test1 · 4e4d8995
      Greg Kroah-Hartman authored
      From mru@users.sourceforge.net
      
      My Netgear FA120 USB2 ethernet adaptor isn't working properly with
      Linux 2.6.0-test1.  First off, I had to modify it slightly (patch
      below) to make it work at all with USB2.  Now I can send data at the
      full expected speed (~11 MB/s).
      4e4d8995
    • Greg Kroah-Hartman's avatar
      [PATCH] USB: Compile AX8817x driver · 0bb248a5
      Greg Kroah-Hartman authored
      From mru@users.sourceforge.net
      
      This trivial Makefile patch causes the AX8817x driver to actually be
      built.
      0bb248a5
    • Greg Kroah-Hartman's avatar
    • Alan Stern's avatar
      [PATCH] USB: Fix irq problem in hcd_endpoint_disable() · d1df71f8
      Alan Stern authored
      The recent change made to the irq handling in hcd_endpoint_disable()
      caused a problem.  The statement
      
      	local_irq_save (flags);
      
      needs to be outside the rescan loop.  Otherwise, on loop iterations after
      the first, flags is always set to indicate that interrupts are disabled.
      
      In fact, since the routine ends with might_sleep() anyway, I don't see any
      reason to save the interrupt state at all.  My patch just disables
      interrupts at the start and enables them at the end.  I'm not sure that's
      how you intended it to work, so you may want to change it a little.
      d1df71f8
    • David Brownell's avatar
      [PATCH] USB: usb audio, remove garbage warning · 04b4a7d9
      David Brownell authored
      There are two places where the audio driver checks for
      endpoint-less interfaces, but the second one doesn't
      filter out a garbage warning (without this patch).
      
      Likely it'd be better to remove these warnings from
      the driver, and maybe just place them in usbcore if
      they'd ever be useful.  But this at least gets rid
      of one class of "is this device broken" questions.
      04b4a7d9
    • Alan Stern's avatar
      [PATCH] USB: Proper I/O buffering for the shuttle_usbat subdriver · 163bbd56
      Alan Stern authored
      This patch makes the shuttle_usbat subdriver use proper DMA I/O buffering.
      Although I try to be careful with these changes, I can't test them.  So I
      urge you to read through it carefully to verify that nothing seems to be
      wrong.
      163bbd56
  3. 29 Jul, 2003 9 commits