1. 17 3月, 2009 1 次提交
  2. 03 3月, 2009 2 次提交
  3. 28 2月, 2009 1 次提交
    • D
      usb: musb: make Davinci *work* in mainline · 34f32c97
      David Brownell 提交于
      Now that the musb build fixes for DaVinci got merged (RC3?), kick in
      the other bits needed to get it finally *working* in mainline:
      
       - Use clk_enable()/clk_disable() ... the "always enable USB clocks"
         code this originally relied on has since been removed.
      
       - Initialize the USB device only after the relevant I2C GPIOs are
         available, so the host side can properly enable VBUS.
      
       - Tweak init sequencing to cope with mainline's relatively late init
         of the I2C system bus for power switches, transceivers, and so on.
      
      Sanity tested on DM6664 EVM for host and peripheral modes; that system
      won't boot with CONFIG_PM enabled, so OTG can't yet be tested.  Also
      verified on OMAP3.
      
      (Unrelated:  correct the MODULE_PARM_DESC spelling of musb_debug.)
      Signed-off-by: NDavid Brownell <dbrownell@users.sourceforge.net>
      Cc: Felipe Balbi <me@felipebalbi.com>
      Signed-off-by: NGreg Kroah-Hartman <gregkh@suse.de>
      34f32c97
  4. 25 2月, 2009 2 次提交
  5. 23 2月, 2009 1 次提交
  6. 20 2月, 2009 1 次提交
  7. 19 2月, 2009 3 次提交
  8. 18 2月, 2009 1 次提交
    • N
      [ARM] 5401/1: Orion: fix edge triggered GPIO interrupt support · fd4b9b36
      Nicolas Pitre 提交于
      The GPIO interrupts can be configured as either level triggered or edge
      triggered, with a default of level triggered.  When an edge triggered
      interrupt is requested, the gpio_irq_set_type method is called which
      currently switches the given IRQ descriptor between two struct irq_chip
      instances: orion_gpio_irq_level_chip and orion_gpio_irq_edge_chip. This
      happens via __setup_irq() which also calls irq_chip_set_defaults() to
      assign default methods to uninitialized ones.  The problem is that
      irq_chip_set_defaults() is called before the irq_chip reference is
      switched, leaving the new irq_chip (orion_gpio_irq_edge_chip in this
      case) with uninitialized methods such as chip->startup() causing a kernel
      oops.
      
      Many solutions are possible, such as making irq_chip_set_defaults() global
      and calling it from gpio_irq_set_type(), or calling __irq_set_trigger()
      before irq_chip_set_defaults() in __setup_irq().  But those require
      modifications to the generic IRQ code which might have adverse effect on
      other architectures, and that would still be a fragile arrangement.
      Manually copying the missing methods from within gpio_irq_set_type()
      would be really ugly and it would break again the day new methods with
      automatic defaults are added.
      
      A better solution is to have a single irq_chip instance which can deal
      with both edge and level triggered interrupts.  It is also a good idea
      to switch the IRQ handler instead, as the edge IRQ handler allows for
      one edge IRQ event to be queued as the IRQ is actually masked only when
      that second IRQ is received, at which point the hardware can queue an
      additional IRQ event, making edge triggered interrupts a bit more
      reliable.
      Tested-by: NMartin Michlmayr <tbm@cyrius.com>
      Signed-off-by: NNicolas Pitre <nico@marvell.com>
      Signed-off-by: NRussell King <rmk+kernel@arm.linux.org.uk>
      fd4b9b36
  9. 17 2月, 2009 1 次提交
  10. 15 2月, 2009 2 次提交
  11. 14 2月, 2009 2 次提交
  12. 10 2月, 2009 1 次提交
  13. 03 2月, 2009 1 次提交
  14. 31 1月, 2009 3 次提交
  15. 30 1月, 2009 8 次提交
  16. 29 1月, 2009 1 次提交
    • N
      [ARM] 5366/1: fix shared memory coherency with VIVT L1 + L2 caches · 08e445bd
      Nicolas Pitre 提交于
      When there are multiple L1-aliasing userland mappings of the same physical
      page, we currently remap each of them uncached, to prevent VIVT cache
      aliasing issues. (E.g. writes to one of the mappings not being immediately
      visible via another mapping.)  However, when we do this remapping, there
      could still be stale data in the L2 cache, and an uncached mapping might
      bypass L2 and go straight to RAM.  This would cause reads from such
      mappings to see old data (until the dirty L2 line is eventually evicted.)
      
      This issue is solved by forcing a L2 cache flush whenever the shared page
      is made L1 uncacheable.
      
      Ideally, we would make L1 uncacheable and L2 cacheable as L2 is PIPT. But
      Feroceon does not support that combination, and the TEX=5 C=0 B=0 encoding
      for XSc3 doesn't appear to work in practice.
      Signed-off-by: NNicolas Pitre <nico@marvell.com>
      Signed-off-by: NRussell King <rmk+kernel@arm.linux.org.uk>
      08e445bd
  17. 28 1月, 2009 3 次提交
  18. 27 1月, 2009 1 次提交
  19. 26 1月, 2009 2 次提交
  20. 25 1月, 2009 1 次提交
  21. 24 1月, 2009 2 次提交
    • R
      [ARM] clkdev: fix clock matching · 409dc360
      Russell King 提交于
      The old matching algorithm was too fuzzy, causing false positives.
      For example, when asked for device D connection C1 and we only find
      device D connection C2, we return that as a valid match despite the
      connection names being different.
      
      Change the algorithm such that:
        An entry with a NULL ID is assumed to be a wildcard.
        If an entry has a device ID, it must match
        If an entry has a connection ID, it must match
      
      However, we maintain the order of precidence while still only doing
      a single pass over all entries: dev+con > dev only > con only.
      Signed-off-by: NRussell King <rmk+kernel@arm.linux.org.uk>
      409dc360
    • D
      [ARM] 5368/1: arch/arm/mach-davinci/usb.c buildfix · d0e58ae7
      David Brownell 提交于
      From: David Brownell <dbrownell@users.sourceforge.net>
      Subject: ARM/mach-davinci/usb.c buildfix
      
        CC      arch/arm/mach-davinci/usb.o
      arch/arm/mach-davinci/usb.c:60: error: 'IRQ_USBINT' undeclared here (not in a function)
      make[1]: *** [arch/arm/mach-davinci/usb.o] Error 1
      Signed-off-by: NDavid Brownell <dbrownell@users.sourceforge.net>
      Signed-off-by: NRussell King <rmk+kernel@arm.linux.org.uk>
      d0e58ae7