Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753406AbbDBP4i (ORCPT ); Thu, 2 Apr 2015 11:56:38 -0400 Received: from resqmta-ch2-09v.sys.comcast.net ([69.252.207.41]:42175 "EHLO resqmta-ch2-09v.sys.comcast.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752505AbbDBP4g (ORCPT ); Thu, 2 Apr 2015 11:56:36 -0400 X-Greylist: delayed 491 seconds by postgrey-1.27 at vger.kernel.org; Thu, 02 Apr 2015 11:56:36 EDT Message-ID: <551D64C5.7040607@mindchasers.com> Date: Thu, 02 Apr 2015 11:48:21 -0400 From: Bob Cochran User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Thunderbird/31.5.0 MIME-Version: 1.0 To: "Igal.Liberman" , linuxppc-dev@lists.ozlabs.org, netdev@vger.kernel.org, linux-kernel@vger.kernel.org CC: scottwood@freescale.com, madalin.bucur@freescale.com Subject: Re: [RFC,v2,02/12] soc/fman: Add the FMan FLIB References: <1427888168-24145-1-git-send-email-igal.liberman@freescale.com> In-Reply-To: <1427888168-24145-1-git-send-email-igal.liberman@freescale.com> Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 3230 Lines: 99 On 04/01/2015 07:36 AM, Igal.Liberman wrote: > From: Igal Liberman > > The FMan FLib provides the basic API used by the FMan drivers to > configure and control the FMan hardware. > > Signed-off-by: Igal Liberman > --- > drivers/soc/fsl/Kconfig | 2 + > drivers/soc/fsl/Makefile | 2 + > drivers/soc/fsl/fman/Kconfig | 7 + > drivers/soc/fsl/fman/Makefile | 5 + > drivers/soc/fsl/fman/fman.c | 978 +++++++++++++++++++++++++++++++++++++++++ > 5 files changed, 994 insertions(+) > create mode 100644 drivers/soc/fsl/fman/Kconfig > create mode 100644 drivers/soc/fsl/fman/Makefile > create mode 100644 drivers/soc/fsl/fman/fman.c > > diff --git a/drivers/soc/fsl/Kconfig b/drivers/soc/fsl/Kconfig > index 291123a..2981306 100644 > --- a/drivers/soc/fsl/Kconfig > +++ b/drivers/soc/fsl/Kconfig I need some help putting together the DPAA patches. On 3/11, there was a patch with the subject "[v2,02/11] soc/fman: Add the FMan FLIB", which is basically the same subject as this one. In the 3/11 patch, you create /drivers/soc/fsl/Kconfig and Makefile. In this patch, Kconfig and Makefile already exist. So, please tell me the patch that should be applied before this one to pick up both Kconfig and Makefile. Should this patch have been called v3? There was a v1 on 3/5 and a v2 on 3/11 that had the subject "soc/fman Add the FMan FLIB". Excluding device tree patches, I think there are currently three non-superseded patch sets submitted for the DPAA: 1) 4/1/15: [PATCH RFC 00/10] introduce DPAA Ethernet driver, madalin.bucur@freescale.com [SHOULD HAVE BEEN TITLED V2?] 2) 4/1/15: [RFC,v2,00/12] Freescale DPAA FMan, igal.liberman@freescale.com [SHOULD HAVE BEEN TITLED V3?] 3) 3/9/15: [RFC v3 00/10] Freescale DPAA B/QMan drivers, Emilian.Medve@Freescale.com I'm looking forward to putting together all the patches and trying to build it and eventually test it. Thank you, Bob > @@ -189,4 +189,6 @@ config FSL_QMAN_INIT_TIMEOUT > > endif # FSL_QMAN > > +source "drivers/soc/fsl/fman/Kconfig" > + > endif # FSL_DPA > diff --git a/drivers/soc/fsl/Makefile b/drivers/soc/fsl/Makefile > index cce1f70..b2f76e9 100644 > --- a/drivers/soc/fsl/Makefile > +++ b/drivers/soc/fsl/Makefile > @@ -18,3 +18,5 @@ qman-test-y = qman_test.o > qman-test-$(CONFIG_FSL_QMAN_TEST_API) += qman_test_api.o > qman-test-$(CONFIG_FSL_QMAN_TEST_STASH) += qman_test_stash.o > obj-$(CONFIG_FSL_QMAN_DEBUGFS) += qman-debugfs.o > + > +obj-$(CONFIG_FSL_FMAN) += fman/ > diff --git a/drivers/soc/fsl/fman/Kconfig b/drivers/soc/fsl/fman/Kconfig > new file mode 100644 > index 0000000..8aeae29 > --- /dev/null > +++ b/drivers/soc/fsl/fman/Kconfig > @@ -0,0 +1,7 @@ > +config FSL_FMAN > + bool "FMan support" > + depends on FSL_SOC || COMPILE_TEST > + default n > + help > + Freescale Data-Path Acceleration Architecture Frame Manager > + (FMan) support > [snip] -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/