1. 19 Feb, 2004 2 commits
    • Alan Stern's avatar
      [PATCH] USB: Repair unusual_devs.h entry · 254a79b9
      Alan Stern authored
      On Fri, 20 Feb 2004, Gustavo Guillermo wrote:
      
      > Ok, I tested the patch, The camera works, just as in the old Kernel,
      > Thanks, I'm including as an atachment the /proc/bus/usb/devices from
      > kernel 2.4.x and 2.6.x, and the kernel log for 2.4.x, but ooops, I forgot
      > to biold 2.4.x with full debug, if someone need it I will do.
      >
      > Please include this FIX in the Next Release.
      
      Greg, I now feel confident that this patch should be applied.
      254a79b9
    • Alan Stern's avatar
      [PATCH] USB: Another unusual_devs.h update · 3d11e93d
      Alan Stern authored
      On Thu, 19 Feb 2004, Agustin De Igartua wrote:
      
      > Initializing USB Mass Storage driver...
      > usb-storage: This device (04e6,0002,0100 S 06 P 50) has unneeded SubClass and Protocol entries in unusual_devs.h
      >    Please send a copy of this message to <linux-usb-devel@lists.sourceforge.net>scsi0 : SCSI emulation for USB Mass Storage devices
      
      Thank you for sending this in.  Greg, here's the patch.
      3d11e93d
  2. 18 Feb, 2004 9 commits
    • Alan Stern's avatar
      [PATCH] USB: More UHCI root hub code improvements · c00a2df2
      Alan Stern authored
      This adds some minor improvements to the UHCI root hub code.  The only
      important change is that it handles the overcurrent indicator bits on VIA
      controllers properly; they are reported using the opposite sense from
      Intel controllers.
      
      
      
      	Report the OverCurrent status bits in the /proc debugging file
      	and spontaneously change the use of whitespace.
      
      	Remove unused variable in uhci_hub_status_data().
      
      	Report OverCurrent status for VIA controllers properly (the
      	meaning of the status bit is inverted with respect to Intel
      	controllers).
      
      	Save the port status I/O address in a variable rather than
      	recalculating it many times.
      
      	Merge code for handling SetHubFeature and ClearHubFeature since
      	we don't implement either one.
      
      	Remove some unnecessary comments.
      
      	Remove redundant min_t calculation.
      c00a2df2
    • Alan Stern's avatar
      [PATCH] USB: Improve UHCI root hub code: descriptor, OC bits, etc. · 1345ad81
      Alan Stern authored
      This patch is from David Brownell.
      
      UHCI root hub updates ... minor bugfixes and cleanups, improving
      conformance with the USB hub specification.
      
       - UHCI doesn't support any kind of power switching; so modify the
         hub descriptor to stop claiming it does!  Likewise fail attempts
         to disable power on any port.
      
       - Intel defined both overcurrent status overcurrent-change bits, but
         the current code only knows about one.  Modify hub descriptor to
         report per-port overcurrent protection; and use both bits.
      
       - Modify the port status set/clear macros to know about the bits
         that must always be written as zero, and the write-to-clear bits.
         Update callers which wrote "set" instead of "clear".
      
       - Rewrote code returning port status; magic numbers are gone.
      
       - Driver can't really support 8 root hub ports; don't try.
      
      Also moves the #define DEBUG earlier so that it can kick in any of
      the various debug macros ... like pr_debug() and dev_dbg().
      1345ad81
    • David Brownell's avatar
      [PATCH] USB: ehci-hcd, scheduler handles TT collisions (3/3) · 8b290385
      David Brownell authored
      [USB] ehci-hcd detects microframe transaction scheduling collisions
      
      This detects TT schedule collisions for split periodic transactions
      on USB 2.0 hubs, handling both isochronous and interrupt transfers
      but not supporting the "wrap around to the next frame" modes for
      either transfer type.
      
      The ISO scheduler is modified to use that support for full speed
      transfers ... though nothing will yet ask it to do that.
      
      It also tracks schedule depth, to help avoid accepting ISO URBs
      which need more time than currently remains unscheduled.
      8b290385
    • David Brownell's avatar
      [PATCH] USB: ehci-hcd, fullspeed iso data structures (2/3) · 7c96943a
      David Brownell authored
      [USB] ehci, rename some iso data structures
      
      Rename some data and functions used by EHCI to manage ISO transactions,
      since they currently assume only high speed transfers.  Much of the same
      infrastructure will be used for full speed ISO, with split transactions.
      7c96943a
    • David Brownell's avatar
      [PATCH] USB: ehci-hcd, fullspeed iso data structures (1/3) · 4e5cd67f
      David Brownell authored
      [USB] start ehci split transaction support
      
      Updates split ISO transaction descriptor structure, add bitmask #defines;
      it's groundwork for full speed ISO support in EHCI.  Updates periodic
      schedule scanning, and bandwidth calculations accordingly.
      
      Fixes bandwidth calculation to behave when the periodic schedule has
      entries of multiple types ... as will be more common as ISO support
      starts to be used here.
      4e5cd67f
    • David Brownell's avatar
      [PATCH] USB: usbtest, two more protocol cases · 5a72e652
      David Brownell authored
      [USB] usbtest, two more control queueing subtests
      
       From Alan Stern.  This adds two more "short control read" test cases,
       both padding the "expected" transfer to end-of-packet.  We need both
       hosts and devices/gadgets to behave correctly here.
      5a72e652
    • David Brownell's avatar
      [PATCH] USB: usbcore, avoid RNDIS configs · 0405e99d
      David Brownell authored
      [USB] usbcore avoids RNDIS configuration.
      
      Modifies the "choose a configuration" heuristic to recognize the other
      case that 2.4 handled:  RNDIS, a MSFT protocol that's sometimes used as
      the first/default configuration (as specified by MSFT) on cable modems.
      CDC Ethernet is vendor-neutral, and preferred (except by MSFT).
      
      The initial version didn't catch RNDIS because it cloaks its ethernet
      links as a kind of CDC ACM (modem) device.
      0405e99d
    • David Brownell's avatar
      [PATCH] USB: usbcore, hub driver enables TT-per-port mode · e863e027
      David Brownell authored
      [USB] hub driver turns on multi-TT mode
      
      This turns on the multi-tt mode in hubs that support it; the Cypress
      "TetraHub" products are appearing at retail now, complete with some
      of the first Mini-B connectors I've seen shipping.
      
      This will be important for hooking up lots of full speed isochronous
      devices (audio, video, etc).
      e863e027
    • David Brownell's avatar
      [PATCH] USB: usbcore, scatterlist cleanups · 876b1343
      David Brownell authored
      [USB] minor usb_sg_wait() cleanups
      
        - count urb completions correctly when there's a non-recoverable
          fault during scatterlist submission ... prevents a hang (seen
          only with already-faulty usb-storage devices).
      
        - don't local_irq_{save,restore}() when not needed
      876b1343
  3. 17 Feb, 2004 14 commits
    • Deepak Saxena's avatar
      6bbdfe17
    • Alan Stern's avatar
      [PATCH] USB Storage: unusual_devs.h fixup · aa2716ec
      Alan Stern authored
      On 15 Feb 2004, Frank D. Cringle wrote:
      
      > Hi,
      >
      > my syslog requests that I send this message.  See below regarding
      > usb-storage: This device ... has an unneeded SubClass entry in unusual_devs.h
      
      > Feb 15 00:11:16 dagger usb-storage: This device (07cf,1001,1000 S 05 P 00) has an unneeded SubClass entry in unusual_devs.h
      > Feb 15 00:11:16 dagger Please send a copy of this message to <linux-usb-devel@lists.sourceforge.net>
      
      Thank you for sending this in.
      
      Greg, it looks like an earlier patch changed too much.  Here is the fix.
      Also included in this patch:
      
      	Moved several entries that were in the wrong positions.
      
      	Removed an entry (0x08ca, 0x2011) that could never be used
      	because the preceding entry always would take precedence.
      aa2716ec
    • Matthew Dharm's avatar
      [PATCH] USB Storage: Fix small endian-ness bug · 99e0e5d4
      Matthew Dharm authored
      This patch fixes up a small endian-ness bug from mid-January.
      99e0e5d4
    • Matthew Dharm's avatar
      [PATCH] USB Storage: Reduce unsolicited auto-sense · fac8bc14
      Matthew Dharm authored
      This patch (a regeneration of as185) reduces the amount of auto-sensing we
      do even further.  It also zeros-out the sense buffer in those cases where
      we do auto-sense and get back no error.
      fac8bc14
    • Matthew Dharm's avatar
      [PATCH] USB Storage: Save the SCSI residue value when auto-sensing · 07bfe587
      Matthew Dharm authored
      This patch (a regeneration of as173) saves the residue value of a command
      when doing an auto-sense.
      
      Not that it really matters much -- almost nobody looks at that value.  But
      it's definately incorrect the way it is, and this fixes it.
      07bfe587
    • Alan Stern's avatar
      [PATCH] USB Storage: Reduce auto-sensing for CB transport · 35f751d9
      Alan Stern authored
      This patch addresses a problem common among digital cameras that use the
      CB transport.  Namely, too much auto-sensing confuses them; particularly
      auto-sensing after INQUIRY.
      
      I've made some traces of a Windows 2000 driver to see what it does (data
      sent to Andries Brouwer for inclusion on his web site; I'll announce
      when it's ready for viewing).  Basically, it almost never sends REQUEST
      SENSE unless it received a STALL from the device.
      
      That's a pretty bogus way to operate, because it means that Windows has no
      way to tell when the device has finished executing a command if the
      command doesn't involve an IN transfer.  Even after a lengthy WRITE,
      Windows continues to transmit more commands without regard for whether or
      not they will get overwritten in the device's internal buffer (and hence
      not executed).  Indeed, exactly that happened with some of the commands in
      one of my traces.
      
      To be safe, we must follow every non-IN transfer with an auto-sense, but
      IN transfers that don't stall can be considered to have succeeded.
      That's what this patch does.  It reduces auto-sensing by a considerable
      factor, probably close to half.  It also fixes the problem with INQUIRY,
      since INQUIRY involves an IN data transfer.
      35f751d9
    • Alan Stern's avatar
      [PATCH] USB Storage: Treat STALL as failure for CB[I] · 8e2c8a8a
      Alan Stern authored
      I recall something like this had to be changed a while ago, but it looks
      like it's still not right.  A STALL during either the command or data
      phase of a CB[I] command should indicate a failure.
      8e2c8a8a
    • Alan Stern's avatar
      [PATCH] USB Storage: Handle excess 0-length data packets · 933d87fc
      Alan Stern authored
      This patch is an attempt to cope with Genesys Logic's, shall we say,
      creative approach to implementing the USB protocols.  Their high-speed
      mass storage devices sometimes add an excess 0-length packet to the end of
      a data phase transmission.  Of course we don't read that packet as part of
      the data phase; we see it as a 0-length CSW message.  The real CSW follows
      immediately after.  (Or sometimes a STALL follows immediately after, with
      the real CSW coming after that!)
      
      The patch checks the results of the first attempt to read the CSW.  If it
      sees a normal packet (not a STALL) with length 0, it retries the read.
      Reports from two users indicate that it improves the performance of their
      USB-2 DVD drives.
      933d87fc
    • Alan Stern's avatar
      [PATCH] USB: Mask "HC Halted" bit in the UHCI status register · 77d9c334
      Alan Stern authored
      Contrary to the UHCI specification document, in real controllers the "HC
      Halted" bit in the status register cannot be cleared by writing a 1.  It
      will persist for as long as the controller is halted.  Hence the bit needs
      to be masked away before checking whether or not the controller initiated
      an interrupt.
      
      Without this patch, other devices sharing the same IRQ line might not get
      serviced while the host controller is suspended, because the always-on
      status bit would cause the UHCI driver to report that it had handled the
      interrupt.
      77d9c334
    • Alan Stern's avatar
      [PATCH] USB: Simplify locking in UHCI · fec5dce2
      Alan Stern authored
      This patch is an amalgam of 9 contributions from Stephen Hemminger.  It
      begins the process of straightening out the use of semaphores and locking
      in the UHCI driver by removing unneeded irqsaves and irqrestores.  It
      also removes an unnecessary list node and makes a couple of other small
      changes.
      
      
      
      clear_next_interrupt only called in IRQ context don't need irqsave/restore
      
      Since uhci_finish_completion is only called from IRQ routine,
      the irqsave/irqrestore is redundant and unnecessary.
      
      UHCI transfer_result is only called from IRQ context
      so irqsave/restore is unnecessary here.
      
      uhci_finish_urb is always called from irq so
      no need for irqsave/irqrestore.
      
      uhci_add_complete only called from IRQ context
      
      The complete_list element in the urb private data is redundant,
      since it is only used when the urb is on the complete list.
      And given the state transitions, an urb can't be on the complete list
      and any other list (remove, or urb_list).
      Therefore just use urb_list to link the complete_list
      
      Use list_move_tail to move between remove (or urb_list) and the complete_list.
      
      Save irq state in uhci_stop so that the irqsave/irqrestore's
      in all the free_pending and remove_pending code can be eliminated.
      
      Since uhci_stop now saves IRQ state, the free/remove pending routines
      no longer need irqsave/irqrestore.
      fec5dce2
    • Alan Stern's avatar
      [PATCH] USB: ERRBUF_LEN compiling error when PAGE_SIZE=64KB on IA64 · eaf5fbc4
      Alan Stern authored
      Randy, thanks for forwarding this to me.
      
      > Johannes,
      >
      > When I compile base kernel 2.6.1 with PAGE_SIZE=64KB on an IA64
      > platform, there is an error.
      >   CC      init/version.o
      >   LD      init/built-in.o
      >   LD      .tmp_vmlinux1
      > drivers/built-in.o(.init.text+0x168a2): In function `uhci_hcd_init':
      > : undefined reference to `__you_cannot_kmalloc_that_much'
      > make: *** [.tmp_vmlinux1] Error 1
      >
      > That's because ERRBUF_LEN (equal to PAGE_SIZE*8) is too long when
      > PAGE_SIZE=64KB. Actually, there was a similar error found by Tony. See
      > http://marc.theaimsgroup.com/?l=linux-ia64&m=105604765306485&w=2.
      >
      > Could you change the definition of ERRBUF_LEN to a fixed value? For
      > example, 32*1024?
      >
      > Yanmin
      
      Yanmin, I'm the new maintainer for the UHCI driver.  Yep, that's a
      definite error.  This will fix it.
      
      Also included in this patch: change some confusing references from "high
      speed" to "full speed" and add proper hyphenation.
      eaf5fbc4
    • Alan Stern's avatar
      [PATCH] USB: Even out distribution of UHCI interrupt transfers · 4f650496
      Alan Stern authored
      This patch evens out the distribution of interrupt transfers for the UHCI
      driver.  It insures that no frame must handle interrupt queues for more
      than two different periods, thus improving the bandwidth utilization.
      
      It also simplifies the initialization code by replacing a multi-nested
      "if" statement with a simple bit-operation (thanks to Eric Piel for
      suggesting this approach).
      4f650496
    • Alan Stern's avatar
      [PATCH] USB: Remove unneeded and error-provoking variable in UHCI · a0afbda3
      Alan Stern authored
      This patch removes an unneeded "status" field from the UHCI driver's
      URB-private data structure.  The driver had been storing the status of
      completed URBs there rather than in the URBs themselves.  This not only is
      wasteful of space but is also a cause of bugs, since the USB core relies
      on urb->status for proper synchronization with the driver.
      
      The patch also takes care of a number of small things that have been
      bugging me for ages:
      
      	Close a small loophole by allowing an URB to be unlinked even
      	before the uhci_urb_enqueue() procedure has started.
      
      	Remove some fossil code from back when interrupt URBs were
      	automagically resubmitted.
      
      	Giveback unlinked URBs in the order they were unlinked.
      
      	Don't set urb->status for dequeued URBs; the core has already
      	set it for us.
      
      	Rename uhci_remove_pending_qhs to uhci_remove_pending_urbps.
      	(That has _really_ bothered me!)
      a0afbda3
    • Domen Puncer's avatar
      [PATCH] USB: some stv680 fixes · 932d19c4
      Domen Puncer authored
      - swapRGB is already initialized to 0
      - change "swapRGB_on == 1" to match in-source documentation
      - submit urb with GFP_ATOMIC (interrupt context) - this made driver
         unusable because of "might_sleep" messages.
      - group some "case"s
      - release vdev on fail
      - remove "kfree(0)" checking
      932d19c4
  4. 16 Feb, 2004 15 commits