From: Cristian Ciocaltea <cristian.ciocaltea@gmail.com>
To: Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
Cc: "Rob Herring" <robh+dt@kernel.org>,
"Andreas Färber" <afaerber@suse.de>,
"Vinod Koul" <vkoul@kernel.org>, "Wolfram Sang" <wsa@kernel.org>,
"Ulf Hansson" <ulf.hansson@linaro.org>,
"Dan Williams" <dan.j.williams@intel.com>,
devicetree@vger.kernel.org, linux-arm-kernel@lists.infradead.org,
linux-actions@lists.infradead.org, linux-kernel@vger.kernel.org,
dmaengine@vger.kernel.org, linux-i2c@vger.kernel.org,
linux-mmc@vger.kernel.org
Subject: Re: [PATCH v2 00/18] Add CMU/RMU/DMA/MMC/I2C support for Actions Semi S500 SoCs
Date: Sat, 5 Dec 2020 18:29:33 +0200 [thread overview]
Message-ID: <20201205162933.GA187065@ubuntu2004> (raw)
In-Reply-To: <20201205061115.GB4068@thinkpad>
Hi Mani,
On Sat, Dec 05, 2020 at 11:41:15AM +0530, Manivannan Sadhasivam wrote:
> Hi Cristi,
>
> On Fri, Nov 20, 2020 at 01:55:54AM +0200, Cristian Ciocaltea wrote:
> > Hi,
> >
> > This patchset brings a series of improvements for the Actions Semi S500
> > SoCs family, by adding support for Clock & Reset Management Units, DMA,
> > MMC, I2C & SIRQ controllers.
> >
> > Please note the patches consist mostly of DTS and bindings/compatibles
> > changes, since all the work they depend on has been already merged,
> > i.e. clock fixes/additions, pinctrl driver, sirq driver.
> >
> > For the moment, I have only enabled the features I could test on
> > RoseapplePi SBC.
> >
>
> I was hoping to apply this series for v5.11 but we ran out of time. So expect
> this series to be in v5.12.
No problem, thanks a lot for taking care of this!
Kind regards,
Cristi
> Thanks,
> Mani
>
> > Thanks,
> > Cristi
> >
> > Changes in v2:
> > - Added new bindings/compatibles for S500 DMA, MMC & I2C controllers
> > - Added support for the SIRQ controller
> > - Added new entries in MAINTAINERS
> > - Updated naming of some patches in v1
> >
> > Cristian Ciocaltea (18):
> > arm: dts: owl-s500: Add Clock Management Unit
> > arm: dts: owl-s500: Set CMU clocks for UARTs
> > arm: dts: owl-s500: Add Reset controller
> > dt-bindings: dma: owl: Add compatible string for Actions Semi S500 SoC
> > dmaengine: owl: Add compatible for the Actions Semi S500 DMA
> > controller
> > arm: dts: owl-s500: Add DMA controller
> > arm: dts: owl-s500: Add pinctrl & GPIO support
> > dt-bindings: mmc: owl: Add compatible string for Actions Semi S500 SoC
> > arm: dts: owl-s500: Add MMC support
> > dt-bindings: i2c: owl: Convert Actions Semi Owl binding to a schema
> > MAINTAINERS: Update entry for Actions Semi Owl I2C binding
> > i2c: owl: Add compatible for the Actions Semi S500 I2C controller
> > arm: dts: owl-s500: Add I2C support
> > arm: dts: owl-s500: Add SIRQ controller
> > arm: dts: owl-s500-roseapplepi: Use UART clock from CMU
> > arm: dts: owl-s500-roseapplepi: Add uSD support
> > arm: dts: owl-s500-roseapplepi: Add I2C pinctrl configuration
> > MAINTAINERS: Add linux-actions ML for Actions Semi Arch
> >
> > .../devicetree/bindings/dma/owl-dma.yaml | 5 +-
> > .../devicetree/bindings/i2c/i2c-owl.txt | 29 ----
> > .../devicetree/bindings/i2c/i2c-owl.yaml | 62 ++++++++
> > .../devicetree/bindings/mmc/owl-mmc.yaml | 4 +-
> > MAINTAINERS | 3 +-
> > arch/arm/boot/dts/owl-s500-roseapplepi.dts | 97 +++++++++++-
> > arch/arm/boot/dts/owl-s500.dtsi | 140 ++++++++++++++++++
> > drivers/dma/owl-dma.c | 1 +
> > drivers/i2c/busses/i2c-owl.c | 1 +
> > 9 files changed, 304 insertions(+), 38 deletions(-)
> > delete mode 100644 Documentation/devicetree/bindings/i2c/i2c-owl.txt
> > create mode 100644 Documentation/devicetree/bindings/i2c/i2c-owl.yaml
> >
> > --
> > 2.29.2
> >
prev parent reply other threads:[~2020-12-05 18:38 UTC|newest]
Thread overview: 17+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-11-19 23:55 [PATCH v2 00/18] Add CMU/RMU/DMA/MMC/I2C support for Actions Semi S500 SoCs Cristian Ciocaltea
2020-11-19 23:56 ` [PATCH v2 10/18] dt-bindings: i2c: owl: Convert Actions Semi Owl binding to a schema Cristian Ciocaltea
2020-12-07 22:12 ` Rob Herring
2020-12-07 22:58 ` Cristian Ciocaltea
2020-12-09 20:22 ` Wolfram Sang
2020-11-19 23:56 ` [PATCH v2 11/18] MAINTAINERS: Update entry for Actions Semi Owl I2C binding Cristian Ciocaltea
2020-12-09 20:22 ` Wolfram Sang
2020-11-19 23:56 ` [PATCH v2 12/18] i2c: owl: Add compatible for the Actions Semi S500 I2C controller Cristian Ciocaltea
2020-11-28 7:19 ` Manivannan Sadhasivam
2020-11-28 7:34 ` Manivannan Sadhasivam
2020-12-09 20:23 ` Wolfram Sang
2020-11-19 23:56 ` [PATCH v2 13/18] arm: dts: owl-s500: Add I2C support Cristian Ciocaltea
2020-11-28 7:35 ` Manivannan Sadhasivam
2020-12-09 20:25 ` Wolfram Sang
2020-12-10 3:33 ` Manivannan Sadhasivam
2020-12-05 6:11 ` [PATCH v2 00/18] Add CMU/RMU/DMA/MMC/I2C support for Actions Semi S500 SoCs Manivannan Sadhasivam
2020-12-05 16:29 ` Cristian Ciocaltea [this message]
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=20201205162933.GA187065@ubuntu2004 \
--to=cristian.ciocaltea@gmail.com \
--cc=afaerber@suse.de \
--cc=dan.j.williams@intel.com \
--cc=devicetree@vger.kernel.org \
--cc=dmaengine@vger.kernel.org \
--cc=linux-actions@lists.infradead.org \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-i2c@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mmc@vger.kernel.org \
--cc=manivannan.sadhasivam@linaro.org \
--cc=robh+dt@kernel.org \
--cc=ulf.hansson@linaro.org \
--cc=vkoul@kernel.org \
--cc=wsa@kernel.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).