1. 11 1月, 2013 1 次提交
  2. 07 12月, 2012 1 次提交
  3. 20 11月, 2012 1 次提交
  4. 16 11月, 2012 1 次提交
  5. 06 11月, 2012 9 次提交
  6. 20 10月, 2012 1 次提交
  7. 18 9月, 2012 1 次提交
  8. 14 9月, 2012 1 次提交
  9. 12 9月, 2012 1 次提交
  10. 31 7月, 2012 1 次提交
  11. 11 7月, 2012 1 次提交
  12. 02 7月, 2012 8 次提交
  13. 15 5月, 2012 2 次提交
  14. 29 4月, 2012 1 次提交
  15. 28 4月, 2012 1 次提交
  16. 17 4月, 2012 4 次提交
  17. 16 4月, 2012 1 次提交
  18. 06 4月, 2012 1 次提交
    • R
      ARM: fix __io macro for PCMCIA · 1ac02d79
      Rob Herring 提交于
      With commit c334bc15 (ARM: make mach/io.h include optional), PCMCIA was
      broken. PCMCIA depends on __io() returning a valid i/o address, and most
      ARM platforms require IO_SPACE_LIMIT be set to 0xffffffff for PCMCIA. This
      needs a better fix with a fixed i/o address mapping, but for now we just
      restore things to the previous behavior.
      
      This fixes at91, omap1, pxa and sa11xx. pxa needs io.h if PCI is enabled,
      but PCMCIA is not. sa11xx already has IO_SPACE_LIMIT set to 0xffffffff,
      so it doesn't need an io.h.
      Signed-off-by: NRob Herring <rob.herring@calxeda.com>
      Cc: Joachim Eastwood <joachim.eastwood@jotron.com>
      Cc: Russell King <linux@arm.linux.org.uk>
      Cc: Andrew Victor <linux@maxim.org.za>
      Cc: Nicolas Ferre <nicolas.ferre@atmel.com>
      Cc: Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
      Tested-by: Paul Parsons <lost.distance@yahoo.com> (pxa270)
      Acked-by: NTony Lindgren <tony@atomide.com>
      Signed-off-by: NOlof Johansson <olof@lixom.net>
      1ac02d79
  19. 05 4月, 2012 1 次提交
  20. 29 3月, 2012 1 次提交
  21. 21 3月, 2012 1 次提交
    • N
      dmaengine: at_hdmac: add slave config operation · beeaa103
      Nicolas Ferre 提交于
      This patch introduces DMA_SLAVE_CONFIG to at_hdmac Atmel DMA driver.
      
      It is needed to fix a regression in the use of atmel-mci.c driver on Atmel
      AT91 platforms brouth by e2b35f3d:
      "dmaengine/dw_dmac: Fix dw_dmac user drivers to adapt to slave_config changes"
      
      We remove some parts of the private structure "at_dma_slave" and use the
      information provided by "struct dma_slave_config": source/destination
      peripheral registers and access width.
      
      AT_DMA_SLAVE_WIDTH_* values used previously are not needed anymore as we
      now use the standard ones. Although some conversion functions are needed to
      match register expected values.
      
      Some AT91 sub-architecture specific files are slightly touched by this patch
      but it cannot be split because it can break compilation.
      Signed-off-by: NNicolas Ferre <nicolas.ferre@atmel.com>
      Signed-off-by: NVinod Koul <vinod.koul@linux.intel.com>
      beeaa103