mbox series

[v3,0/4] Add reset controller support for BM1880 SoC

Message ID 20190510184525.13568-1-manivannan.sadhasivam@linaro.org
Headers show
Series Add reset controller support for BM1880 SoC | expand

Message

Manivannan Sadhasivam May 10, 2019, 6:45 p.m. UTC
Hello,

This patchset adds reset controller support for Bitmain BM1880 SoC.
BM1880 SoC has only one reset controller and the reset-simple driver
has been reused here.

This patchset has been tested on 96Boards Sophon Edge board.

Thanks,
Mani

Changes in v3:

* Removed the clk-rst part as it turned out be the clock gating register set.

Changes in v2:

As per review from Philipp:

* Reused reset_simple_active_low struct instead of a new one for bm1880
* Splitted the SPDX license change to a separate commit
* Added Reviewed-by tags from Rob and Philipp

Manivannan Sadhasivam (4):
  dt-bindings: reset: Add devicetree binding for BM1880 reset controller
  arm64: dts: bitmain: Add reset controller support for BM1880 SoC
  reset: Add reset controller support for BM1880 SoC
  reset: Switch to SPDX license identifier for reset-simple

 .../bindings/reset/bitmain,bm1880-reset.txt   | 18 +++++++
 arch/arm64/boot/dts/bitmain/bm1880.dtsi       | 11 ++++
 drivers/reset/Kconfig                         |  3 +-
 drivers/reset/reset-simple.c                  |  8 ++-
 .../dt-bindings/reset/bitmain,bm1880-reset.h  | 51 +++++++++++++++++++
 5 files changed, 85 insertions(+), 6 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/reset/bitmain,bm1880-reset.txt
 create mode 100644 include/dt-bindings/reset/bitmain,bm1880-reset.h

-- 
2.17.1

Comments

Philipp Zabel May 13, 2019, 11:06 a.m. UTC | #1
Hi,

On Sat, 2019-05-11 at 00:15 +0530, Manivannan Sadhasivam wrote:
> Hello,

> 

> This patchset adds reset controller support for Bitmain BM1880 SoC.

> BM1880 SoC has only one reset controller and the reset-simple driver

> has been reused here.

> 

> This patchset has been tested on 96Boards Sophon Edge board.

> 

> Thanks,

> Mani

> 

> Changes in v3:

> 

> * Removed the clk-rst part as it turned out be the clock gating register set.


Thank you, I'd like to pick up patches 1, 3, and 4.

Since patch 2 depends on patch 1, you could either temporarily replace
the constants with their numerical value, until patch 1 is merged, or I
could provide a stable branch that contains patch 1 after v5.2-rc1.

regards
Philipp
Philipp Zabel May 13, 2019, 2:46 p.m. UTC | #2
On Mon, 2019-05-13 at 19:36 +0530, Manivannan Sadhasivam wrote:
> Hi Philipp,

> 

> On Mon, May 13, 2019 at 01:06:29PM +0200, Philipp Zabel wrote:

> > Hi,

> > 

> > On Sat, 2019-05-11 at 00:15 +0530, Manivannan Sadhasivam wrote:

> > > Hello,

> > > 

> > > This patchset adds reset controller support for Bitmain BM1880 SoC.

> > > BM1880 SoC has only one reset controller and the reset-simple driver

> > > has been reused here.

> > > 

> > > This patchset has been tested on 96Boards Sophon Edge board.

> > > 

> > > Thanks,

> > > Mani

> > > 

> > > Changes in v3:

> > > 

> > > * Removed the clk-rst part as it turned out be the clock gating register set.

> > 

> > Thank you, I'd like to pick up patches 1, 3, and 4.

> > 

> > Since patch 2 depends on patch 1, you could either temporarily replace

> > the constants with their numerical value, until patch 1 is merged, or I

> > could provide a stable branch that contains patch 1 after v5.2-rc1.

> > 

> 

> I can use the numerical value in meantime, please pick those patches and I'll

> take the dts through arm-soc tree.


Done.

regards
Philipp