1. 08 Nov, 2019 3 commits
  2. 06 Nov, 2019 8 commits
  3. 05 Nov, 2019 3 commits
  4. 02 Nov, 2019 2 commits
  5. 23 Oct, 2019 1 commit
    • Peng Ma's avatar
      dmaengine: fsl-dpaa2-qdma: export the symbols · 53596dfa
      Peng Ma authored
      The symbols were not exported leading to error:
      
      WARNING: modpost: missing MODULE_LICENSE() in drivers/dma/fsl-dpaa2-qdma/dpdmai.o
      see include/linux/module.h for more information
      GZIP    arch/arm64/boot/Image.gz
      ERROR: "dpdmai_enable" [drivers/dma/fsl-dpaa2-qdma/dpaa2-qdma.ko] undefined!
      ERROR: "dpdmai_set_rx_queue" [drivers/dma/fsl-dpaa2-qdma/dpaa2-qdma.ko] undefined!
      ERROR: "dpdmai_get_tx_queue" [drivers/dma/fsl-dpaa2-qdma/dpaa2-qdma.ko] undefined!
      ERROR: "dpdmai_get_rx_queue" [drivers/dma/fsl-dpaa2-qdma/dpaa2-qdma.ko] undefined!
      ERROR: "dpdmai_get_attributes" [drivers/dma/fsl-dpaa2-qdma/dpaa2-qdma.ko] undefined!
      ERROR: "dpdmai_open" [drivers/dma/fsl-dpaa2-qdma/dpaa2-qdma.ko] undefined!
      ERROR: "dpdmai_close" [drivers/dma/fsl-dpaa2-qdma/dpaa2-qdma.ko] undefined!
      ERROR: "dpdmai_disable" [drivers/dma/fsl-dpaa2-qdma/dpaa2-qdma.ko] undefined!
      ERROR: "dpdmai_reset" [drivers/dma/fsl-dpaa2-qdma/dpaa2-qdma.ko] undefined!
      WARNING: "HYPERVISOR_platform_op" [vmlinux] is a static EXPORT_SYMBOL_GPL
      make[2]: *** [__modpost] Error 1
      make[1]: *** [modules] Error 2
      make[1]: *** Waiting for unfinished jobs....
      make: *** [sub-make] Error 2
      
      So export it.
      Signed-off-by: default avatarPeng Ma <peng.ma@nxp.com>
      Reported-by: default avatarAnders Roxell <anders.roxell@linaro.org>
      Link: https://lore.kernel.org/r/20191023045617.22764-1-peng.ma@nxp.comSigned-off-by: default avatarVinod Koul <vkoul@kernel.org>
      53596dfa
  6. 20 Oct, 2019 7 commits
  7. 18 Oct, 2019 4 commits
  8. 17 Oct, 2019 2 commits
    • Peng Ma's avatar
      dmaengine: fsl-dpaa2-qdma: Add NXP dpaa2 qDMA controller driver for Layerscape SoCs · 7fdf9b05
      Peng Ma authored
      DPPA2(Data Path Acceleration Architecture 2) qDMA supports
      virtualized channel by allowing DMA jobs to be enqueued into
      different work queues. Core can initiate a DMA transaction by
      preparing a frame descriptor(FD) for each DMA job and enqueuing
      this job through a hardware portal. DPAA2 components can also
      prepare a FD and enqueue a DMA job through a hardware portal.
      The qDMA prefetches DMA jobs through DPAA2 hardware portal. It
      then schedules and dispatches to internal DMA hardware engines,
      which generate read and write requests. Both qDMA source data and
      destination data can be either contiguous or non-contiguous using
      one or more scatter/gather tables.
      The qDMA supports global bandwidth flow control where all DMA
      transactions are stalled if the bandwidth threshold has been reached.
      Also supported are transaction based read throttling.
      
      Add NXP dppa2 qDMA to support some of Layerscape SoCs.
      such as: LS1088A, LS208xA, LX2, etc.
      Signed-off-by: default avatarPeng Ma <peng.ma@nxp.com>
      Link: https://lore.kernel.org/r/20190930020440.7754-2-peng.ma@nxp.comSigned-off-by: default avatarVinod Koul <vkoul@kernel.org>
      7fdf9b05
    • Peng Ma's avatar
      dmaengine: fsl-dpaa2-qdma: Add the DPDMAI(Data Path DMA Interface) support · f2835adf
      Peng Ma authored
      The MC(Management Complex) exports the DPDMAI(Data Path DMA Interface)
      object as an interface to operate the DPAA2(Data Path Acceleration
      Architecture 2) qDMA Engine. The DPDMAI enables sending frame-based
      requests to qDMA and receiving back confirmation response on transaction
      completion, utilizing the DPAA2 QBMan(Queue Manager and Buffer Manager
      hardware) infrastructure. DPDMAI object provides up to two priorities for
      processing qDMA requests.
      The following list summarizes the DPDMAI main features and capabilities:
      	1. Supports up to two scheduling priorities for processing
      	service requests.
      	- Each DPDMAI transmit queue is mapped to one of two service
      	priorities, allowing further prioritization in hardware between
      	requests from different DPDMAI objects.
      	2. Supports up to two receive queues for incoming transaction
      	completion confirmations.
      	- Each DPDMAI receive queue is mapped to one of two receive
      	priorities, allowing further prioritization between other
      	interfaces when associating the DPDMAI receive queues to DPIO
      	or DPCON(Data Path Concentrator) objects.
      	3. Supports different scheduling options for processing received
      	packets:
      	- Queues can be configured either in 'parked' mode (default),
      	or attached to a DPIO object, or attached to DPCON object.
      	4. Allows interaction with one or more DPIO objects for
      	dequeueing/enqueueing frame descriptors(FD) and for
      	acquiring/releasing buffers.
      	5. Supports enable, disable, and reset operations.
      
      Add dpdmai to support some platforms with dpaa2 qdma engine.
      Signed-off-by: default avatarPeng Ma <peng.ma@nxp.com>
      Link: https://lore.kernel.org/r/20190930020440.7754-1-peng.ma@nxp.comSigned-off-by: default avatarVinod Koul <vkoul@kernel.org>
      f2835adf
  9. 15 Oct, 2019 4 commits
  10. 14 Oct, 2019 6 commits