From: Jingoo Han <jg1.han@samsung.com>
To: 'Sachin Kamat' <sachin.kamat@linaro.org>
Cc: 'Kukjin Kim' <kgene.kim@samsung.com>,
'Bjorn Helgaas' <bhelgaas@google.com>,
linux-samsung-soc@vger.kernel.org, linux-pci@vger.kernel.org,
devicetree-discuss@lists.ozlabs.org,
linux-arm-kernel@lists.infradead.org,
linux-kernel@vger.kernel.org,
'Grant Likely' <grant.likely@secretlab.ca>,
'Andrew Murray' <andrew.murray@arm.com>,
'Thomas Petazzoni' <thomas.petazzoni@free-electrons.com>,
'Thierry Reding' <thierry.reding@avionic-design.de>,
'Jason Gunthorpe' <jgunthorpe@obsidianresearch.com>,
'Arnd Bergmann' <arnd@arndb.de>,
'Surendranath Gurivireddy Balla' <suren.reddy@samsung.com>,
'Siva Reddy Kallam' <siva.kallam@samsung.com>,
'Thomas Abraham' <thomas.abraham@linaro.org>,
'Tomasz Figa' <t.figa@samsung.com>,
'Pratyush Anand' <pratyush.anand@st.com>,
'Mohit KUMAR' <Mohit.KUMAR@st.com>,
Jingoo Han <jg1.han@samsung.com>
Subject: Re: [PATCH V9 1/4] pci: Add PCIe driver for Samsung Exynos
Date: Fri, 21 Jun 2013 13:22:10 +0900 [thread overview]
Message-ID: <002f01ce6e36$e61cf5b0$b256e110$@samsung.com> (raw)
In-Reply-To: <CAK9yfHxCy0JcvsFHo8gERefdiZhxi1J8MNALe5-g6ooTGR-QjA@mail.gmail.com>
On Friday, June 21, 2013 1:11 PM, Sachin Kamat wrote:
>
> Hi Jingoo,
>
> Some small corrections inline.
>
> On 21 June 2013 08:51, Jingoo Han <jg1.han@samsung.com> wrote:
> > Exynos5440 has a PCIe controller which can be used as Root Complex.
> > This driver supports a PCIe controller as Root Complex mode.
> >
> > Signed-off-by: Surendranath Gurivireddy Balla <suren.reddy@samsung.com>
> > Signed-off-by: Siva Reddy Kallam <siva.kallam@samsung.com>
> > Signed-off-by: Jingoo Han <jg1.han@samsung.com>
> > Acked-by: Arnd Bergmann <arnd@arndb.de>
> > ---
> > .../devicetree/bindings/pci/designware-pcie.txt | 73 ++
> > drivers/pci/host/Kconfig | 9 +
> > drivers/pci/host/Makefile | 1 +
> > drivers/pci/host/pci-designware.c | 1057 ++++++++++++++++++++
> > 4 files changed, 1140 insertions(+)
> > create mode 100644 Documentation/devicetree/bindings/pci/designware-pcie.txt
> > create mode 100644 drivers/pci/host/pci-designware.c
> >
> > diff --git a/Documentation/devicetree/bindings/pci/designware-pcie.txt
> b/Documentation/devicetree/bindings/pci/designware-pcie.txt
> > new file mode 100644
> > index 0000000..e4681e6
> > --- /dev/null
> > +++ b/Documentation/devicetree/bindings/pci/designware-pcie.txt
> > @@ -0,0 +1,73 @@
> > +* Synopsis Designware PCIe interface
> > +
> > +Required properties:
> > +-compatible: should contain "snps,dw-pcie" to identify the
> > + core, plus an identifier for the specific instance, such
> > + as "samsung,exynos5440-pcie".
> > +-reg: base addresses and lengths of the pcie conteroller,
>
> s/conteroller/controller
OK, I will fix it.
>
> > + the phy controller, additional register for the phy controller.
> > +- interrupts: interrupt values for level interrupt,
> > + pulse interrupt, special interrupt.
> > +- clocks: from common clock binding: handle to pci clock.
> > +- clock-names: from common clock binding: Shall be "pcie", "pcie_bus".
>
> s/Shall be .../should be "pcie" and "pcie_bus".
OK, I will fix it.
>
> [snip]
>
> > +
> > +MODULE_AUTHOR("Jingoo Han <jg1.han@samsung.com>");
> > +MODULE_DESCRIPTION("Samsung PCIe host controller driver");
> > +MODULE_LICENSE("GPLv2");
>
> I think this should be "GPL v2" (with a space between GPL and v2).
OK, I will fix it.
Thank you for your caring and comment. :)
I will fix the typo and send PATCH v10 soon.
Best regards,
Jingoo Han
>
>
> --
> With warm regards,
> Sachin
WARNING: multiple messages have this Message-ID (diff)
From: jg1.han@samsung.com (Jingoo Han)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH V9 1/4] pci: Add PCIe driver for Samsung Exynos
Date: Fri, 21 Jun 2013 13:22:10 +0900 [thread overview]
Message-ID: <002f01ce6e36$e61cf5b0$b256e110$@samsung.com> (raw)
In-Reply-To: <CAK9yfHxCy0JcvsFHo8gERefdiZhxi1J8MNALe5-g6ooTGR-QjA@mail.gmail.com>
On Friday, June 21, 2013 1:11 PM, Sachin Kamat wrote:
>
> Hi Jingoo,
>
> Some small corrections inline.
>
> On 21 June 2013 08:51, Jingoo Han <jg1.han@samsung.com> wrote:
> > Exynos5440 has a PCIe controller which can be used as Root Complex.
> > This driver supports a PCIe controller as Root Complex mode.
> >
> > Signed-off-by: Surendranath Gurivireddy Balla <suren.reddy@samsung.com>
> > Signed-off-by: Siva Reddy Kallam <siva.kallam@samsung.com>
> > Signed-off-by: Jingoo Han <jg1.han@samsung.com>
> > Acked-by: Arnd Bergmann <arnd@arndb.de>
> > ---
> > .../devicetree/bindings/pci/designware-pcie.txt | 73 ++
> > drivers/pci/host/Kconfig | 9 +
> > drivers/pci/host/Makefile | 1 +
> > drivers/pci/host/pci-designware.c | 1057 ++++++++++++++++++++
> > 4 files changed, 1140 insertions(+)
> > create mode 100644 Documentation/devicetree/bindings/pci/designware-pcie.txt
> > create mode 100644 drivers/pci/host/pci-designware.c
> >
> > diff --git a/Documentation/devicetree/bindings/pci/designware-pcie.txt
> b/Documentation/devicetree/bindings/pci/designware-pcie.txt
> > new file mode 100644
> > index 0000000..e4681e6
> > --- /dev/null
> > +++ b/Documentation/devicetree/bindings/pci/designware-pcie.txt
> > @@ -0,0 +1,73 @@
> > +* Synopsis Designware PCIe interface
> > +
> > +Required properties:
> > +-compatible: should contain "snps,dw-pcie" to identify the
> > + core, plus an identifier for the specific instance, such
> > + as "samsung,exynos5440-pcie".
> > +-reg: base addresses and lengths of the pcie conteroller,
>
> s/conteroller/controller
OK, I will fix it.
>
> > + the phy controller, additional register for the phy controller.
> > +- interrupts: interrupt values for level interrupt,
> > + pulse interrupt, special interrupt.
> > +- clocks: from common clock binding: handle to pci clock.
> > +- clock-names: from common clock binding: Shall be "pcie", "pcie_bus".
>
> s/Shall be .../should be "pcie" and "pcie_bus".
OK, I will fix it.
>
> [snip]
>
> > +
> > +MODULE_AUTHOR("Jingoo Han <jg1.han@samsung.com>");
> > +MODULE_DESCRIPTION("Samsung PCIe host controller driver");
> > +MODULE_LICENSE("GPLv2");
>
> I think this should be "GPL v2" (with a space between GPL and v2).
OK, I will fix it.
Thank you for your caring and comment. :)
I will fix the typo and send PATCH v10 soon.
Best regards,
Jingoo Han
>
>
> --
> With warm regards,
> Sachin
next prev parent reply other threads:[~2013-06-21 4:22 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-06-21 3:21 [PATCH V9 1/4] pci: Add PCIe driver for Samsung Exynos Jingoo Han
2013-06-21 3:21 ` Jingoo Han
2013-06-21 4:10 ` Sachin Kamat
2013-06-21 4:10 ` Sachin Kamat
2013-06-21 4:10 ` Sachin Kamat
2013-06-21 4:22 ` Jingoo Han [this message]
2013-06-21 4:22 ` Jingoo Han
2013-06-21 4:22 ` Pratyush Anand
2013-06-21 4:22 ` Pratyush Anand
2013-06-21 4:22 ` Pratyush Anand
2013-06-21 4:38 ` Jingoo Han
2013-06-21 4:38 ` Jingoo Han
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='002f01ce6e36$e61cf5b0$b256e110$@samsung.com' \
--to=jg1.han@samsung.com \
--cc=Mohit.KUMAR@st.com \
--cc=andrew.murray@arm.com \
--cc=arnd@arndb.de \
--cc=bhelgaas@google.com \
--cc=devicetree-discuss@lists.ozlabs.org \
--cc=grant.likely@secretlab.ca \
--cc=jgunthorpe@obsidianresearch.com \
--cc=kgene.kim@samsung.com \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-pci@vger.kernel.org \
--cc=linux-samsung-soc@vger.kernel.org \
--cc=pratyush.anand@st.com \
--cc=sachin.kamat@linaro.org \
--cc=siva.kallam@samsung.com \
--cc=suren.reddy@samsung.com \
--cc=t.figa@samsung.com \
--cc=thierry.reding@avionic-design.de \
--cc=thomas.abraham@linaro.org \
--cc=thomas.petazzoni@free-electrons.com \
/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.