1. 18 2月, 2011 1 次提交
  2. 20 3月, 2010 1 次提交
    • R
      ARM: Fix IXP23xx build error in mach/memory.h · 0372c380
      Russell King 提交于
      One to many close parens.
      
      In file included from arch/arm/include/asm/page.h:202,
                       from include/linux/mm_types.h:15,
                       from include/linux/sched.h:63,
                       from arch/arm/kernel/asm-offsets.c:13:
      arch/arm/include/asm/memory.h: In function 'virt_to_bus':
      arch/arm/include/asm/memory.h:214: error: expected ';' before ')' token
      arch/arm/include/asm/memory.h:214: error: expected statement before ')' token
      arch/arm/include/asm/memory.h: In function 'bus_to_virt':
      arch/arm/include/asm/memory.h:219: error: expected ';' before ')' token
      arch/arm/include/asm/memory.h:219: error: expected statement before ')' token
      Signed-off-by: NRussell King <rmk+kernel@arm.linux.org.uk>
      0372c380
  3. 14 12月, 2009 1 次提交
  4. 28 11月, 2008 1 次提交
    • N
      [ARM] remove a common set of __virt_to_bus definitions · b5ee9002
      Nicolas Pitre 提交于
      Let's provide an overridable default instead of having every machine
      class define __virt_to_bus and __bus_to_virt to the same thing.  What
      most platforms are using is bus_addr == phys_addr so such is the default.
      
      One exception is ebsa110 which has no DMA what so ever, so the actual
      definition is not important except only for proper compilation.  Also
      added a comment about the special footbridge bus translation.
      
      Let's also remove comments alluding to set_dma_addr which is not
      (and should not) be commonly used.
      Signed-off-by: NNicolas Pitre <nico@marvell.com>
      Signed-off-by: NRussell King <rmk+kernel@arm.linux.org.uk>
      b5ee9002
  5. 07 8月, 2008 3 次提交
  6. 18 12月, 2006 1 次提交
  7. 03 6月, 2006 1 次提交
  8. 02 4月, 2006 1 次提交
    • L
      [ARM] 3439/2: xsc3: add I/O coherency support · 23759dc6
      Lennert Buytenhek 提交于
      Patch from Lennert Buytenhek
      
      This patch adds support for the I/O coherent cache available on the
      xsc3.  The approach is to provide a simple API to determine whether the
      chipset supports coherency by calling arch_is_coherent() and then
      setting the appropriate system memory PTE and PMD bits.  In addition,
      we call this API on dma_alloc_coherent() and dma_map_single() calls.
      A generic version exists that will compile out all the coherency-related
      code that is not needed on the majority of ARM systems.
      
      Note that we do not check for coherency in the dma_alloc_writecombine()
      function as that still requires a special PTE setting.  We also don't
      touch dma_mmap_coherent() as that is a special ARM-only API that is by
      definition only used on non-coherent system.
      Signed-off-by: NDeepak Saxena <dsaxena@plexity.net>
      Signed-off-by: NLennert Buytenhek <buytenh@wantstofly.org>
      Signed-off-by: NRussell King <rmk+kernel@arm.linux.org.uk>
      23759dc6
  9. 29 3月, 2006 1 次提交