1. 05 3月, 2009 1 次提交
  2. 30 10月, 2008 8 次提交
  3. 08 10月, 2008 2 次提交
  4. 17 8月, 2008 1 次提交
  5. 12 8月, 2008 1 次提交
  6. 09 8月, 2008 2 次提交
  7. 07 8月, 2008 3 次提交
  8. 05 8月, 2008 2 次提交
  9. 03 8月, 2008 2 次提交
  10. 29 7月, 2008 1 次提交
  11. 28 7月, 2008 1 次提交
    • B
      i2c: S3C2410: Pass the I2C bus number via drivers platform data · 399dee23
      Ben Dooks 提交于
      Allow the platform data to specify the bus bumber that the
      new I2C bus will be given. This is to allow the use of the
      board registration mechanism to specify the new style of
      I2C device registration which allows boards to provide a
      list of attached devices.
      
      Note, as discussed on the mailing list, we have dropped
      backwards compatibility of adding an dynamic bus number
      as it should not affect most boards to have the bus pinned
      to 0 if they have either not specified platform data for
      driver. Any board supplying platform data will automatically
      have the bus_num field set to 0, and anyone who needs the
      driver on a different bus number can supply platform data
      to set bus_num.
      Signed-off-by: NBen Dooks <ben-linux@fluff.org>
      399dee23
  12. 27 7月, 2008 6 次提交
    • R
      [ARM] fix VIPT/VIVT macro optimisations, add comments · daf93dd5
      Russell King 提交于
      cacheflush.h was doing:
      
      ... VIVT only stuff
      ... VIPT only stuff
      ... VIVT or VIPT stuff
      
      which is clearly bogus - we would only ever use the "VIVT or VIPT" case
      when both VIVT and VIPT are not selected.  Fix this.
      
      Add comments to each case, including noting the impossibility of
      correctly detecting the cache type of ARM926 and ARMv6 cores from
      the cache type register in the "VIVT or VIPT" case.
      Signed-off-by: NRussell King <rmk+kernel@arm.linux.org.uk>
      daf93dd5
    • D
      [ARM] 5179/1: Replace obsolete IRQT_* and __IRQT_* values with IRQ_TYPE_* · 6cab4860
      Dmitry Baryshkov 提交于
      IRQT_* and __IRQT_* were obsoleted long ago by patch [3692/1].
      Remove them completely. Sed script for the reference:
      
      s/__IRQT_RISEDGE/IRQ_TYPE_EDGE_RISING/g
      s/__IRQT_FALEDGE/IRQ_TYPE_EDGE_FALLING/g
      s/__IRQT_LOWLVL/IRQ_TYPE_LEVEL_LOW/g
      s/__IRQT_HIGHLVL/IRQ_TYPE_LEVEL_HIGH/g
      s/IRQT_RISING/IRQ_TYPE_EDGE_RISING/g
      s/IRQT_FALLING/IRQ_TYPE_EDGE_FALLING/g
      s/IRQT_BOTHEDGE/IRQ_TYPE_EDGE_BOTH/g
      s/IRQT_LOW/IRQ_TYPE_LEVEL_LOW/g
      s/IRQT_HIGH/IRQ_TYPE_LEVEL_HIGH/g
      s/IRQT_PROBE/IRQ_TYPE_PROBE/g
      s/IRQT_NOEDGE/IRQ_TYPE_NONE/g
      Signed-off-by: NDmitry Baryshkov <dbaryshkov@gmail.com>
      Signed-off-by: NRussell King <rmk+kernel@arm.linux.org.uk>
      6cab4860
    • A
      [PATCH] kill altroot · 7f2da1e7
      Al Viro 提交于
      long overdue...
      Signed-off-by: NAl Viro <viro@zeniv.linux.org.uk>
      7f2da1e7
    • I
      [ARM] pxa: PXA25x UDC - Fix warning during build · aafe0ad8
      Ian Molton 提交于
      Fixes an unterminated ' warning building PXA25X UDC.
      Signed-off-by: NIan Molton <spyro@f2s.com>
      aafe0ad8
    • N
      mm: spinlock tree_lock · 19fd6231
      Nick Piggin 提交于
      mapping->tree_lock has no read lockers.  convert the lock from an rwlock
      to a spinlock.
      Signed-off-by: NNick Piggin <npiggin@suse.de>
      Cc: Benjamin Herrenschmidt <benh@kernel.crashing.org>
      Cc: Paul Mackerras <paulus@samba.org>
      Cc: Hugh Dickins <hugh@veritas.com>
      Cc: "Paul E. McKenney" <paulmck@us.ibm.com>
      Reviewed-by: NPeter Zijlstra <a.p.zijlstra@chello.nl>
      Signed-off-by: NAndrew Morton <akpm@linux-foundation.org>
      Signed-off-by: NLinus Torvalds <torvalds@linux-foundation.org>
      19fd6231
    • F
      dma-mapping: add the device argument to dma_mapping_error() · 8d8bb39b
      FUJITA Tomonori 提交于
      Add per-device dma_mapping_ops support for CONFIG_X86_64 as POWER
      architecture does:
      
      This enables us to cleanly fix the Calgary IOMMU issue that some devices
      are not behind the IOMMU (http://lkml.org/lkml/2008/5/8/423).
      
      I think that per-device dma_mapping_ops support would be also helpful for
      KVM people to support PCI passthrough but Andi thinks that this makes it
      difficult to support the PCI passthrough (see the above thread).  So I
      CC'ed this to KVM camp.  Comments are appreciated.
      
      A pointer to dma_mapping_ops to struct dev_archdata is added.  If the
      pointer is non NULL, DMA operations in asm/dma-mapping.h use it.  If it's
      NULL, the system-wide dma_ops pointer is used as before.
      
      If it's useful for KVM people, I plan to implement a mechanism to register
      a hook called when a new pci (or dma capable) device is created (it works
      with hot plugging).  It enables IOMMUs to set up an appropriate
      dma_mapping_ops per device.
      
      The major obstacle is that dma_mapping_error doesn't take a pointer to the
      device unlike other DMA operations.  So x86 can't have dma_mapping_ops per
      device.  Note all the POWER IOMMUs use the same dma_mapping_error function
      so this is not a problem for POWER but x86 IOMMUs use different
      dma_mapping_error functions.
      
      The first patch adds the device argument to dma_mapping_error.  The patch
      is trivial but large since it touches lots of drivers and dma-mapping.h in
      all the architecture.
      
      This patch:
      
      dma_mapping_error() doesn't take a pointer to the device unlike other DMA
      operations.  So we can't have dma_mapping_ops per device.
      
      Note that POWER already has dma_mapping_ops per device but all the POWER
      IOMMUs use the same dma_mapping_error function.  x86 IOMMUs use device
      argument.
      
      [akpm@linux-foundation.org: fix sge]
      [akpm@linux-foundation.org: fix svc_rdma]
      [akpm@linux-foundation.org: build fix]
      [akpm@linux-foundation.org: fix bnx2x]
      [akpm@linux-foundation.org: fix s2io]
      [akpm@linux-foundation.org: fix pasemi_mac]
      [akpm@linux-foundation.org: fix sdhci]
      [akpm@linux-foundation.org: build fix]
      [akpm@linux-foundation.org: fix sparc]
      [akpm@linux-foundation.org: fix ibmvscsi]
      Signed-off-by: NFUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
      Cc: Muli Ben-Yehuda <muli@il.ibm.com>
      Cc: Andi Kleen <andi@firstfloor.org>
      Cc: Thomas Gleixner <tglx@linutronix.de>
      Cc: Ingo Molnar <mingo@elte.hu>
      Cc: Avi Kivity <avi@qumranet.com>
      Signed-off-by: NAndrew Morton <akpm@linux-foundation.org>
      Signed-off-by: NLinus Torvalds <torvalds@linux-foundation.org>
      8d8bb39b
  13. 26 7月, 2008 5 次提交
  14. 25 7月, 2008 3 次提交
  15. 24 7月, 2008 2 次提交
    • M
      Remove asm/semaphore.h · 2351ec53
      Matthew Wilcox 提交于
      All users have now been converted to linux/semaphore.h and we don't need
      to keep these files around any longer.
      Signed-off-by: NMatthew Wilcox <willy@linux.intel.com>
      2351ec53
    • J
      kgdb: support for ARCH=arm · 5cbad0eb
      Jason Wessel 提交于
      This patch adds the ARCH=arm specific a kgdb backend, originally
      written by Deepak Saxena <dsaxena@plexity.net> and George Davis
      <gdavis@mvista.com>.  Geoff Levand <geoffrey.levand@am.sony.com>,
      Nicolas Pitre, Manish Lachwani, and Jason Wessel have contributed
      various fixups here as well.
      
      The KGDB patch makes one change to the core ARM architecture such that
      the traps are initialized early for use with the debugger or other
      subsystems.
      
      [ mingo@elte.hu: small cleanups. ]
      [ ben-linux@fluff.org: fixed early_trap_init ]
      Signed-off-by: NJason Wessel <jason.wessel@windriver.com>
      Acked-by: NDeepak Saxena <dsaxena@plexity.net>
      5cbad0eb