From mboxrd@z Thu Jan 1 00:00:00 1970 From: "S, Venkatraman" Subject: Re: [CFT 01/11] dmaengine: add OMAP DMA engine driver Date: Thu, 7 Jun 2012 18:15:18 +0530 Message-ID: References: <20120607110610.GB15973@n2100.arm.linux.org.uk> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: QUOTED-PRINTABLE Return-path: Received: from na3sys009aog123.obsmtp.com ([74.125.149.149]:56282 "EHLO na3sys009aog123.obsmtp.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754889Ab2FGMqo convert rfc822-to-8bit (ORCPT ); Thu, 7 Jun 2012 08:46:44 -0400 Received: by bkcjm19 with SMTP id jm19so516053bkc.28 for ; Thu, 07 Jun 2012 05:45:39 -0700 (PDT) In-Reply-To: Sender: linux-omap-owner@vger.kernel.org List-Id: linux-omap@vger.kernel.org To: Russell King Cc: linux-arm-kernel@lists.infradead.org, linux-omap@vger.kernel.org, Dan Williams , Vinod Koul On Thu, Jun 7, 2012 at 6:10 PM, S, Venkatraman wrote: > On Thu, Jun 7, 2012 at 4:36 PM, Russell King > wrote: >> Tested-by: Tony Lindgren >> Signed-off-by: Russell King >> --- >> =A0drivers/dma/Kconfig =A0 =A0 =A0| =A0 =A06 + >> =A0drivers/dma/Makefile =A0 =A0 | =A0 =A01 + >> =A0drivers/dma/omap-dma.c =A0 | =A0522 +++++++++++++++++++++++++++++= +++++++++++++++++ >> =A0include/linux/omap-dma.h | =A0 24 ++ >> =A04 files changed, 553 insertions(+), 0 deletions(-) >> =A0create mode 100644 drivers/dma/omap-dma.c >> =A0create mode 100644 include/linux/omap-dma.h >> >> diff --git a/drivers/dma/Kconfig b/drivers/dma/Kconfig >> index eb2b60e..8be3bf6 100644 >> --- a/drivers/dma/Kconfig >> +++ b/drivers/dma/Kconfig >> @@ -261,6 +261,12 @@ config DMA_SA11X0 >> =A0 =A0 =A0 =A0 =A0SA-1110 SoCs. =A0This DMA engine can only be used= with on-chip >> =A0 =A0 =A0 =A0 =A0devices. >> >> +config DMA_OMAP >> + =A0 =A0 =A0 tristate "OMAP DMA support" >> + =A0 =A0 =A0 depends on ARCH_OMAP >> + =A0 =A0 =A0 select DMA_ENGINE >> + =A0 =A0 =A0 select DMA_VIRTUAL_CHANNELS >> + >> =A0config DMA_ENGINE >> =A0 =A0 =A0 =A0bool >> >> diff --git a/drivers/dma/Makefile b/drivers/dma/Makefile >> index fc05f7d..ddc291a 100644 >> --- a/drivers/dma/Makefile >> +++ b/drivers/dma/Makefile >> @@ -29,3 +29,4 @@ obj-$(CONFIG_PCH_DMA) +=3D pch_dma.o >> =A0obj-$(CONFIG_AMBA_PL08X) +=3D amba-pl08x.o >> =A0obj-$(CONFIG_EP93XX_DMA) +=3D ep93xx_dma.o >> =A0obj-$(CONFIG_DMA_SA11X0) +=3D sa11x0-dma.o >> +obj-$(CONFIG_DMA_OMAP) +=3D omap-dma.o >> diff --git a/drivers/dma/omap-dma.c b/drivers/dma/omap-dma.c >> new file mode 100644 >> index 0000000..500bc71 >> --- /dev/null >> +++ b/drivers/dma/omap-dma.c >> @@ -0,0 +1,522 @@ >> +/* >> + * OMAP DMAengine support >> + * >> + * This program is free software; you can redistribute it and/or mo= dify >> + * it under the terms of the GNU General Public License version 2 a= s >> + * published by the Free Software Foundation. >> + */ >> +#include >> +#include >> +#include >> +#include >> +#include >> +#include >> +#include >> +#include >> +#include >> +#include >> +#include >> + >> +#include "virt-dma.h" > Russell, > =A0I applied your entire series on 3.5-rc1 and build fails as it can'= t > find virt-dma.h > Perhaps a missed "git add" ? > Ok I reread your messages again and these 11 are based on the generic dma-engine series. >> +#include >> + -- To unsubscribe from this list: send the line "unsubscribe linux-omap" i= n the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html