From: Vinod Koul <vkoul@kernel.org>
To: Linus Torvalds <torvalds@linux-foundation.org>
Cc: LKML <linux-kernel@vger.kernel.org>
Subject: [GIT PULL]: dmaengine updates for v6.5-rc1
Date: Thu, 6 Jul 2023 11:50:41 +0530 [thread overview]
Message-ID: <ZKZdOWi8I0vxpdzL@matsya> (raw)
[-- Attachment #1: Type: text/plain, Size: 5397 bytes --]
Hi Linus,
Please pull to receive updates for dmaengine. A new device support in TI
driver, native HDMI support for designware edma driver, ste dma40
updates for SRAM handling and bunch of drivers removal of dma device
chancnt setting along with odd updates to bunch of drivers
The following changes since commit ac9a78681b921877518763ba0e89202254349d1b:
Linux 6.4-rc1 (2023-05-07 13:34:35 -0700)
are available in the Git repository at:
git://git.kernel.org/pub/scm/linux/kernel/git/vkoul/dmaengine.git tags/dmaengine-6.5-rc1
for you to fetch changes up to 907514a7dc4c574136e8fb576b014be05d25813a:
dmaengine: sprd: Don't set chancnt (2023-05-24 12:24:32 +0530)
----------------------------------------------------------------
dmaengine updates for v6.5
New support:
- TI J721S2 CSI BCDMA support
Updates:
- Native HDMI support for dw edma driver
- ste dma40 updates for supporting proper SRAM handle in DT
- removal of dma device chancnt setting in drivers
----------------------------------------------------------------
Arnd Bergmann (1):
dmaengine: ste_dma40: use proper format string for resource_size_t
Baoquan He (1):
dmaengine: make QCOM_HIDMA depend on HAS_IOMEM
Cai Huoqing (4):
dmaengine: dw-edma: Rename dw_edma_core_ops structure to dw_edma_plat_ops
dmaengine: dw-edma: Create a new dw_edma_core_ops structure to abstract controller operation
dmaengine: dw-edma: Add support for native HDMA
dmaengine: dw-edma: Add HDMA DebugFS support
Jisheng Zhang (5):
dmaengine: dw-axi-dmac: Don't set chancnt
dmaengine: axi-dmac: Don't set chancnt
dmaengine: plx_dma: Don't set chancnt
dmaengine: hidma: Don't set chancnt
dmaengine: sprd: Don't set chancnt
Kishon Vijay Abraham I (1):
dmaengine: ti: k3-psil-j721s2: Add PSI-L thread map for main CPSW2G
Linus Walleij (7):
dt-bindings: dma: dma40: Prefer to pass sram through phandle
dmaengine: ste_dma40: Get LCPA SRAM from SRAM node
dmaengine: ste_dma40: Add dev helper variable
dmaengine: ste_dma40: Remove platform data
dmaengine: ste_dma40: Pass dev to OF function
dmaengine: ste_dma40: Use managed resources
dmaengine: ste_dma40: Return error codes properly
Michal Simek (1):
dt-bindings: dma: xilinx: Add power-domains to xlnx,zynqmp-dpdma
Serge Semin (3):
MAINTAINERS: Demote Gustavo Pimentel to DW EDMA driver reviewer
MAINTAINERS: Add Manivannan to DW eDMA driver maintainers list
MAINTAINERS: Add myself as the DW eDMA driver reviewer
Stephan Gerhold (1):
dmaengine: qcom: bam_dma: allow omitting num-{channels,ees}
Vaishnav Achath (2):
dt-bindings: dma: ti: Add J721S2 BCDMA
dmaengine: ti: k3-udma: Add support for J721S2 CSI BCDMA instance
Vinod Koul (2):
dmaengine: ste_dma40: use correct print specfier for resource_size_t
dmaengine: ste_dma40: fix typo in enum documentation
.../devicetree/bindings/dma/stericsson,dma40.yaml | 36 ++-
.../devicetree/bindings/dma/ti/k3-bcdma.yaml | 30 +-
.../bindings/dma/xilinx/xlnx,zynqmp-dpdma.yaml | 6 +
MAINTAINERS | 4 +-
drivers/dma/Kconfig | 1 +
drivers/dma/dma-axi-dmac.c | 1 -
drivers/dma/dw-axi-dmac/dw-axi-dmac-platform.c | 1 -
drivers/dma/dw-edma/Makefile | 8 +-
drivers/dma/dw-edma/dw-edma-core.c | 88 ++----
drivers/dma/dw-edma/dw-edma-core.h | 58 ++++
drivers/dma/dw-edma/dw-edma-pcie.c | 4 +-
drivers/dma/dw-edma/dw-edma-v0-core.c | 85 +++++-
drivers/dma/dw-edma/dw-edma-v0-core.h | 14 +-
drivers/dma/dw-edma/dw-hdma-v0-core.c | 296 ++++++++++++++++++
drivers/dma/dw-edma/dw-hdma-v0-core.h | 17 ++
drivers/dma/dw-edma/dw-hdma-v0-debugfs.c | 170 +++++++++++
drivers/dma/dw-edma/dw-hdma-v0-debugfs.h | 22 ++
drivers/dma/dw-edma/dw-hdma-v0-regs.h | 129 ++++++++
drivers/dma/plx_dma.c | 1 -
drivers/dma/qcom/Kconfig | 1 +
drivers/dma/qcom/bam_dma.c | 18 +-
drivers/dma/qcom/hidma.c | 1 -
drivers/dma/sprd-dma.c | 1 -
drivers/dma/ste_dma40.c | 334 +++++++++------------
.../dma-ste-dma40.h => drivers/dma/ste_dma40.h | 101 +------
drivers/dma/ste_dma40_ll.c | 3 +-
drivers/dma/ti/k3-psil-j721s2.c | 11 +
drivers/dma/ti/k3-udma.c | 25 ++
drivers/pci/controller/dwc/pcie-designware.c | 2 +-
include/linux/dma/edma.h | 7 +-
30 files changed, 1074 insertions(+), 401 deletions(-)
create mode 100644 drivers/dma/dw-edma/dw-hdma-v0-core.c
create mode 100644 drivers/dma/dw-edma/dw-hdma-v0-core.h
create mode 100644 drivers/dma/dw-edma/dw-hdma-v0-debugfs.c
create mode 100644 drivers/dma/dw-edma/dw-hdma-v0-debugfs.h
create mode 100644 drivers/dma/dw-edma/dw-hdma-v0-regs.h
rename include/linux/platform_data/dma-ste-dma40.h => drivers/dma/ste_dma40.h (51%)
--
~Vinod
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]
next reply other threads:[~2023-07-06 6:21 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-07-06 6:20 Vinod Koul [this message]
2023-07-06 17:29 ` [GIT PULL]: dmaengine updates for v6.5-rc1 pr-tracker-bot
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=ZKZdOWi8I0vxpdzL@matsya \
--to=vkoul@kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=torvalds@linux-foundation.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.