All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v3 0/5] add DM based reset driver for SiFive SoC's
@ 2020-07-10  8:38 Sagar Shrikant Kadam
  2020-07-10  8:38 ` [PATCH v3 1/5] dt-bindings: prci: add indexes for reset signals available in prci Sagar Shrikant Kadam
                   ` (4 more replies)
  0 siblings, 5 replies; 14+ messages in thread
From: Sagar Shrikant Kadam @ 2020-07-10  8:38 UTC (permalink / raw)
  To: u-boot

The FU540-C000 support in U-Boot is missing DM based reset driver,
and is handling reset's to sub-system within the prci driver itself.
The series here adds a generic DM reset driver for SiFive SoC's so as 
to leverage the U-Boot's reset framework and binds the reset driver with
prci driver.
The PRCI driver takes care of triggering the consumers reset signals
appropriately.

Patch 1: Add necessary dt indexes for device reset register.
Patch 2: Update macro's to use common dt indexes from binding header. 
Patch 3: Add reset producer and consumer entries within the device tree.
Patch 4: Add reset dm driver and bind it within prci module.
Patch 5: Add Kconfig, Makefile entries and enable the driver

This series is based on mainline U-Boot commit 2f5fbb5b39f7 ("Prepare
v2020.07")

History:
==========================
V3:
-Add reset indexes in separate dt binding header instead of
 updating the clock dt binding header which is synced from Linux

V2:
-Removed extra character in commit log of 2nd patch 

V1:
-Base version.

Sagar Shrikant Kadam (5):
  dt-bindings: prci: add indexes for reset signals available in prci
  fu540: prci: use common reset indexes defined in binding header
  fu540: dtsi: add reset producer and consumer entries
  sifive: reset: add DM based reset driver for SiFive SoC's
  configs: reset: fu540: enable dm reset framework for SiFive SoC

 arch/riscv/dts/fu540-c000-u-boot.dtsi         |  12 +++
 arch/riscv/include/asm/arch-fu540/reset.h     |  13 +++
 configs/sifive_fu540_defconfig                |   2 +
 drivers/clk/sifive/fu540-prci.c               |  90 ++++++++++++++------
 drivers/reset/Kconfig                         |   9 ++
 drivers/reset/Makefile                        |   1 +
 drivers/reset/reset-sifive.c                  | 118 ++++++++++++++++++++++++++
 include/dt-bindings/reset/sifive-fu540-prci.h |  19 +++++
 8 files changed, 239 insertions(+), 25 deletions(-)
 create mode 100644 arch/riscv/include/asm/arch-fu540/reset.h
 create mode 100644 drivers/reset/reset-sifive.c
 create mode 100644 include/dt-bindings/reset/sifive-fu540-prci.h

-- 
2.7.4

^ permalink raw reply	[flat|nested] 14+ messages in thread

end of thread, other threads:[~2020-07-23  4:17 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-07-10  8:38 [PATCH v3 0/5] add DM based reset driver for SiFive SoC's Sagar Shrikant Kadam
2020-07-10  8:38 ` [PATCH v3 1/5] dt-bindings: prci: add indexes for reset signals available in prci Sagar Shrikant Kadam
2020-07-20 10:17   ` Pragnesh Patel
2020-07-21  0:49   ` Bin Meng
2020-07-10  8:38 ` [PATCH v3 2/5] fu540: prci: use common reset indexes defined in binding header Sagar Shrikant Kadam
2020-07-20 10:16   ` Pragnesh Patel
2020-07-21  0:49   ` Bin Meng
2020-07-10  8:38 ` [PATCH v3 3/5] fu540: dtsi: add reset producer and consumer entries Sagar Shrikant Kadam
2020-07-20 10:14   ` Pragnesh Patel
2020-07-21  0:50   ` Bin Meng
2020-07-10  8:38 ` [PATCH v3 4/5] sifive: reset: add DM based reset driver for SiFive SoC's Sagar Shrikant Kadam
2020-07-10  8:38 ` [PATCH v3 5/5] configs: reset: fu540: enable dm reset framework for SiFive SoC Sagar Shrikant Kadam
     [not found]   ` <752D002CFF5D0F4FA35C0100F1D73F3FA472A068@ATCPCS16.andestech.com>
2020-07-23  2:26     ` Rick Chen
2020-07-23  4:17       ` Sagar Kadam

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.