Skip to content
Snippets Groups Projects
  1. Apr 16, 2010
  2. Apr 14, 2010
    • Stefan Roese's avatar
      ppc4xx: Add option for PPC440SPe ports without old Rev. A support · 2a72e9ed
      Stefan Roese authored
      
      The 440SPe Rev. A is quite old and newer 440SPe boards don't need support
      for this CPU revision. Since removing support for this older version
      simplifies the creation for newer U-Boot ports, this patch now enables
      440SPe > Rev. A support by creating the CONFIG_440SPE_REVA define. By
      defining this in the board config header, Rev. A will still be supported.
      Otherwise (default for newer board ports), Rev. A will not be supported.
      
      Signed-off-by: default avatarStefan Roese <sr@denx.de>
      2a72e9ed
    • Stefan Roese's avatar
      ppc4xx: alpr: Remove some not needed commands to make image fit again · 288991c9
      Stefan Roese authored
      
      The latest changes increased the size of the alpr image a bit more.
      Now it doesn't fit into the 256k reserved for it. This patch now removes
      the commands "loads" and "loadb" which are not needed in the production
      systems.
      
      Signed-off-by: default avatarStefan Roese <sr@denx.de>
      Cc: Pieter Voorthuijsen <pieter.voorthuijsen@prodrive.nl>
      288991c9
  3. Apr 13, 2010
  4. Apr 10, 2010
  5. Apr 09, 2010
  6. Apr 08, 2010
    • Kim B. Heino's avatar
      USB storage probe · fac71cc4
      Kim B. Heino authored
      
      While debugging one ill behaving USB device I found two bugs in USB
      storage probe.
      
      usb_stor_get_info() returns -1 (error), 0 (skip) or 1 (ok). First part
      of this patch fixes error case.
      
      Second part fixes usb_inquiry()'s retry counter handling. Original code
      had retry = -1 on error case, not retry = 0 as checked in the next line.
      
      Signed-off-by: default avatarKim B. Heino <Kim.Heino@bluegiga.com>
      fac71cc4
    • Kim B. Heino's avatar
      USB storage count · aaad108b
      Kim B. Heino authored
      
      Here's another USB storage patch. Currently U-Boot handles storage
      devices #0 - #4 as valid devices, even if there is none connected. This
      patch fixes usb_stor_get_dev() to check detected device count instead
      of MAX-define.
      
      This is very important for ill behaving devices. usb_dev_desc[] can be
      partially initialized if device probe fails.
      
      After fixing get_dev() it was easy to fix "usb part" etc commands.
      Previously it outputed "Unknown partition table" five times, now it's
      "no USB devices available".
      
      Signed-off-by: default avatarKim B. Heino <Kim.Heino@bluegiga.com>
      aaad108b
    • Sergei Shtylyov's avatar
      EHCI: add NEC PCI ID · d7a22a36
      Sergei Shtylyov authored
      
      Add NEC EHCI controller to the list of the supported devices.
      
      Signed-off-by: default avatarSergei Shtylyov <sshtylyov@mvista.com>
      
       drivers/usb/host/ehci-pci.c |    1 +
       1 file changed, 1 insertion(+)
      d7a22a36
    • Sergei Shtylyov's avatar
      EHCI: fix port reset reporting · c8b2d1dc
      Sergei Shtylyov authored
      
      Commit b416191a (Fix EHCI port reset.) didn't
      move the code that checked for successful clearing of the port reset bit from
      ehci_submit_root(), relying on wait_ms() call instead. The mentioned code also
      erroneously reported port reset state when the reset was already completed.
      
      Signed-off-by: default avatarSergei Shtylyov <sshtylyov@mvista.com>
      c8b2d1dc
    • Sergei Shtylyov's avatar
      EHCI: fix off-by-one error in ehci_submit_root() · e06a055b
      Sergei Shtylyov authored
      
      USB devices on the 2nd port are not detected and I get the following message:
      
      The request port(1) is not configured
      
      That's with default CONFIG_SYS_USB_EHCI_MAX_ROOT_PORTS value of 2. 'req->index'
      is 1-based, so the comparison in ehci_submit_root() can't be correct.
      
      Signed-off-by: default avatarSergei Shtylyov <sshtylyov@mvista.com>
      e06a055b
Loading