From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753000AbcFJJM7 (ORCPT ); Fri, 10 Jun 2016 05:12:59 -0400 Received: from mail-sn1nam02on0081.outbound.protection.outlook.com ([104.47.36.81]:56541 "EHLO NAM02-SN1-obe.outbound.protection.outlook.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1751698AbcFJJMu (ORCPT ); Fri, 10 Jun 2016 05:12:50 -0400 Authentication-Results: spf=pass (sender IP is 149.199.60.100) smtp.mailfrom=xilinx.com; vger.kernel.org; dkim=none (message not signed) header.d=none;vger.kernel.org; dmarc=bestguesspass action=none header.from=xilinx.com; From: Kedareswara rao Appana To: , , , , , , , , , , , , CC: , , , Subject: [PATCH 0/4] dmaengine: vdma: AXI DMAS Enhancments Date: Fri, 10 Jun 2016 14:42:30 +0530 Message-ID: <1465549954-30220-1-git-send-email-appanad@xilinx.com> X-Mailer: git-send-email 2.1.1 X-RCIS-Action: ALLOW X-TM-AS-Product-Ver: IMSS-7.1.0.1224-8.0.0.1202-22382.005 X-TM-AS-User-Approved-Sender: Yes;Yes X-EOPAttributedMessage: 0 X-Forefront-Antispam-Report: CIP:149.199.60.100;IPV:NLI;CTRY:US;EFV:NLI;SFV:NSPM;SFS:(10009020)(6009001)(2980300002)(438002)(189002)(199003)(33646002)(106466001)(6806005)(50466002)(46386002)(36756003)(87936001)(103686003)(229853001)(586003)(4326007)(90966002)(47776003)(2906002)(5008740100001)(2201001)(189998001)(45336002)(52956003)(81156014)(81166006)(19580395003)(8676002)(11100500001)(5001770100001)(48376002)(63266004)(5003940100001)(8936002)(50226002)(42186005)(86362001)(50986999)(36386004)(92566002)(921003)(107986001)(5001870100001)(83996005)(1121003)(2101003)(217873001);DIR:OUT;SFP:1101;SCL:1;SRVR:CY1NAM02HT095;H:xsj-pvapsmtpgw02;FPR:;SPF:Pass;PTR:xapps1.xilinx.com,unknown-60-100.xilinx.com;MX:1;A:1;LANG:en; MIME-Version: 1.0 Content-Type: text/plain X-MS-Office365-Filtering-Correlation-Id: 4b6f189f-25c6-4f11-f7a4-08d3910f6406 X-Microsoft-Antispam: UriScan:;BCL:0;PCL:0;RULEID:(8251501002);SRVR:CY1NAM02HT095; X-Microsoft-Antispam-PRVS: X-Exchange-Antispam-Report-Test: UriScan:; X-Exchange-Antispam-Report-CFA-Test: BCL:0;PCL:0;RULEID:(601004)(2401047)(13017025)(13024025)(5005006)(13015025)(13023025)(8121501046)(13018025)(3002001)(10201501046)(6055026);SRVR:CY1NAM02HT095;BCL:0;PCL:0;RULEID:;SRVR:CY1NAM02HT095; X-Forefront-PRVS: 096943F07A X-OriginatorOrg: xilinx.com X-MS-Exchange-CrossTenant-OriginalArrivalTime: 10 Jun 2016 09:12:47.0118 (UTC) X-MS-Exchange-CrossTenant-Id: 657af505-d5df-48d0-8300-c31994686c5c X-MS-Exchange-CrossTenant-OriginalAttributedTenantConnectingIp: TenantId=657af505-d5df-48d0-8300-c31994686c5c;Ip=[149.199.60.100];Helo=[xsj-pvapsmtpgw02] X-MS-Exchange-CrossTenant-FromEntityHeader: HybridOnPrem X-MS-Exchange-Transport-CrossTenantHeadersStamped: CY1NAM02HT095 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org This patch series does the following thing. ---> Add support for AXI DMA Multi-channel DMA mode. ---> Delete AXI DMA binding doc. ---> Rename the driver and update config options. This patch series is created on top of the patch series "dmaengine: Add Xilinx zynqmp dma engine driver support". Kedareswara rao Appana (4): Documentation: DT: vdma: Update binding doc for multi-channel dma mode dmaengine: vdma: Add support for mulit-channel dma mode Documentation: DT: dma: Delete binding doc for AXI DMA dmaengine: dma: Rename driver and config .../devicetree/bindings/dma/xilinx/xilinx_dma.txt | 92 ++++++-- .../devicetree/bindings/dma/xilinx/xilinx_vdma.txt | 107 --------- drivers/dma/Kconfig | 13 +- drivers/dma/xilinx/Makefile | 2 +- drivers/dma/xilinx/{xilinx_vdma.c => xilinx_dma.c} | 242 ++++++++++++++++++-- include/linux/dma/xilinx_dma.h | 18 ++ 6 files changed, 316 insertions(+), 158 deletions(-) delete mode 100644 Documentation/devicetree/bindings/dma/xilinx/xilinx_vdma.txt rename drivers/dma/xilinx/{xilinx_vdma.c => xilinx_dma.c} (91%)