1. 05 3月, 2009 3 次提交
  2. 20 1月, 2009 2 次提交
    • G
      i.MX31: Image Processing Unit DMA and IRQ drivers · 5296b56d
      Guennadi Liakhovetski 提交于
      i.MX3x SoCs contain an Image Processing Unit, consisting of a Control
      Module (CM), Display Interface (DI), Synchronous Display Controller (SDC),
      Asynchronous Display Controller (ADC), Image Converter (IC), Post-Filter
      (PF), Camera Sensor Interface (CSI), and an Image DMA Controller (IDMAC).
      CM contains, among other blocks, an Interrupt Generator (IG) and a Clock
      and Reset Control Unit (CRCU). This driver serves IDMAC and IG. They are
      supported over dmaengine and irq-chip APIs respectively.
      
      IDMAC is a specialised DMA controller, its DMA channels cannot be used for
      general-purpose operations, even though it might be possible to configure
      a memory-to-memory channel for memcpy operation. This driver will not work
      with generic dmaengine clients, clients, wishing to use it must use
      respective wrapper structures, they also must specify which channels they
      require, as channels are hard-wired to specific IPU functions.
      Acked-by: NSascha Hauer <s.hauer@pengutronix.de>
      Signed-off-by: NGuennadi Liakhovetski <lg@denx.de>
      Signed-off-by: NDan Williams <dan.j.williams@intel.com>
      5296b56d
    • D
      dmaengine: kill some dubious WARN_ONCEs · 83436a05
      Dan Williams 提交于
      dma_find_channel and dma_issue_pending_all are good places to warn about
      improper api usage.  However, warning correctly means synchronizing with
      dma_list_mutex, i.e. too much overhead for these fast-path calls.
      Reported-by: NIngo Molnar <mingo@elte.hu>
      Signed-off-by: NDan Williams <dan.j.williams@intel.com>
      83436a05
  3. 16 1月, 2009 1 次提交
  4. 15 1月, 2009 1 次提交
  5. 14 1月, 2009 1 次提交
  6. 13 1月, 2009 2 次提交
    • D
      fsldma: use a valid 'device' for dma_pool_create · 6527de6d
      Dan Williams 提交于
      The dmaengine sysfs implementation was fixed to support proper
      lifetime rules which means that the current:
      
      new_fsl_chan->dev = &new_fsl_chan->common.dev->device;
      
      ...retrieves a NULL pointer because new_fsl_chan->common.dev has not
      been allocated at this point.  So, set new_fsl_chan->dev to a valid
      device.
      
      Cc: Li Yang <leoli@freescale.com>
      Cc: Zhang Wei <zw@zh-kernel.org>
      Reported-by: NIra Snyder <iws@ovro.caltech.edu>
      Tested-by: NIra Snyder <iws@ovro.caltech.edu>
      Signed-off-by: NDan Williams <dan.j.williams@intel.com>
      6527de6d
    • Y
      dmaengine: fix dependency chaining · dd59b853
      Yuri Tikhonov 提交于
      In dmaengine we track the dependencies between the descriptors
      using the 'next' pointers of the structure. These pointers are
      set to NULL as soon as the corresponding descriptor has been
      submitted to the channel (in dma_run_dependencies()).
      
      But, the first 'next' in chain is still remaining set, regardless
      the fact, that tx->next has been already submitted. This may lead to
      multiple submissions of the same descriptor. This patch fixes this.
      
      Actually, some previous implementation of the xxx_run_dependencies()
      function already had this fix in place. The fdb..0eaf3 commit, beside the
      correct things, broke this.
      
      Cc: <stable@kernel.org>
      Signed-off-by: NYuri Tikhonov <yur@emcraft.com>
      Signed-off-by: NDan Williams <dan.j.williams@intel.com>
      dd59b853
  7. 07 1月, 2009 19 次提交
  8. 06 1月, 2009 1 次提交
  9. 09 12月, 2008 1 次提交
    • D
      async_xor: dma_map destination DMA_BIDIRECTIONAL · a06d568f
      Dan Williams 提交于
      Mapping the destination multiple times is a misuse of the dma-api.
      Since the destination may be reused as a source, ensure that it is only
      mapped once and that it is mapped bidirectionally.  This appears to add
      ugliness on the unmap side in that it always reads back the destination
      address from the descriptor, but gcc can determine that dma_unmap is a
      nop and not emit the code that calculates its arguments.
      
      Cc: <stable@kernel.org>
      Cc: Saeed Bishara <saeed@marvell.com>
      Acked-by: NYuri Tikhonov <yur@emcraft.com>
      Signed-off-by: NDan Williams <dan.j.williams@intel.com>
      a06d568f
  10. 04 12月, 2008 2 次提交
  11. 12 11月, 2008 3 次提交
  12. 11 11月, 2008 3 次提交
  13. 25 10月, 2008 1 次提交