[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <20251013-album-bovine-faf9f5ebc5d4@spud>
Date: Mon, 13 Oct 2025 18:45:32 +0100
From: Conor Dooley <conor@...nel.org>
To: claudiu.beznea@...on.dev
Cc: conor@...nel.org,
Conor Dooley <conor.dooley@...rochip.com>,
Daire McNamara <daire.mcnamara@...rochip.com>,
pierre-henry.moussay@...rochip.com,
valentina.fernandezalanis@...rochip.com,
Michael Turquette <mturquette@...libre.com>,
Stephen Boyd <sboyd@...nel.org>,
Rob Herring <robh@...nel.org>,
Krzysztof Kozlowski <krzk+dt@...nel.org>,
Philipp Zabel <p.zabel@...gutronix.de>,
linux-riscv@...ts.infradead.org,
linux-clk@...r.kernel.org,
devicetree@...r.kernel.org,
linux-kernel@...r.kernel.org
Subject: [PATCH v5 0/9] Redo PolarFire SoC's mailbox/clock devicestrees and related code
From: Conor Dooley <conor.dooley@...rochip.com>
In v5 the only real change is that I removed the attempt at a common
implementation of regmap-based divider/gate clocks. The series hasn't
managed to receive feedback on my approach in 2025, despite sending
several revisions and bumps, and it is blocking support for both new
drivers (gpio interrupt support, pinctrl and hwmon off the top of my
head) and a new platform so I have decided to strip out the attempt at
making something common in exchange for something that can be merged
through the clk-microchip tree without relying on feedback from the
clock maintainers.
Currently the driver uses the common gate and divider clocks, but the
driver used to use its own custom clock types. Reprising this version of
the code allows me to use regmap accessors in the driver without any
wider impact, or attempting to create something that works for any other
user. It has the advantage that it has already been tested in that prior
for, and all that is done to the clock implementations is replacing
readl()s and writel()s with their regmap equivalents.
Hopefully this change has made it possible to merge the series,
Conor.
v5:
- drop mfd patch applied by Lee
- remove attempt at common regmap divider/gate clocks, and replace it
with a return to how the code used to look, before it started using
the non-regmap versions of the common divider/gate, with the
readl()/writel()s replaced by their regmap equivalents.
v4:
- unify both regmap clk implementations under one option
- change map_offset to a u32, after Gabriel pointed out that u8 was
too restrictive.
- remove locking from regmap portion of reset driver, relying on
inherent regmap lock
v3 changes:
- drop simple-mfd (for now) from syscon node
v2 cover letter:
Here's something that I've been mulling over for a while, since I
started to understand how devicetree stuff was "meant" to be done.
There'd been little reason to actually press forward with it, because it
is fairly disruptive. I've finally opted to do it, because a user has
come along with a hwmon driver that needs to access the same register
region as the mailbox and the author is not keen on using the aux bus,
and because I do not want the new pic64gx SoC that's based on PolarFire
SoC to use bindings etc that I know to be incorrect.
Given backwards compatibility needs to be maintained, this patch series
isn't the prettiest thing I have ever written. The reset driver needs to
retain support for the auxiliary bus, which looks a bit mess, but not
much can be done there. The mailbox and clock drivers both have to have
an "old probe" function to handle the old layout. Thankfully in the
clock driver, regmap support can be used to identically
handle both old and new devicetree formats - but using a regmap in the
mailbox driver was only really possible for the new format, so the code
there is unfortunately a bit of an if/else mess that I'm both not proud
of, nor really sure is worth "improving".
The series should be pretty splitable per subsystem, only the dts change
has some sort of dependency, but I'll not be applying that till
everything else is in Linus' tree, so that's not a big deal.
I don't really want this stuff in stable, hence a lack of cc: stable
anywhere here, since what's currently in the tree works fine for the
currently supported hardware.
AFAIK, the only other project affected here is U-Boot, which I have
already modified to support the new format.
I previously submitted this as an RFC, only to Lee and the dt list, in
order to get some feedback on the syscon/mfd bindings:
https://lore.kernel.org/all/20240815-shindig-bunny-fd42792d638a@spud/
I'm not really going to bother with a proper changelog, since that was
submitted with lots of WIP code to get answers to some questions. The
main change was "removing" some of the child nodes of the syscons.
And as a "real" series where discussion lead to me dropping use of the
amlogic clk-regmap support:
https://lore.kernel.org/linux-clk/20241002-private-unequal-33cfa6101338@spud/
As a result of that, I've implemented what I think Stephen was asking
for - but I'm not at all sure that it is..
CC: Conor Dooley <conor.dooley@...rochip.com>
CC: Daire McNamara <daire.mcnamara@...rochip.com>
CC: pierre-henry.moussay@...rochip.com
CC: valentina.fernandezalanis@...rochip.com
CC: Michael Turquette <mturquette@...libre.com>
CC: Stephen Boyd <sboyd@...nel.org>
CC: Rob Herring <robh@...nel.org>
CC: Krzysztof Kozlowski <krzk+dt@...nel.org>
CC: Philipp Zabel <p.zabel@...gutronix.de>
CC: linux-riscv@...ts.infradead.org
CC: linux-clk@...r.kernel.org
CC: devicetree@...r.kernel.org
CC: linux-kernel@...r.kernel.org
Conor Dooley (9):
dt-bindings: soc: microchip: document the simple-mfd syscon on
PolarFire SoC
soc: microchip: add mfd drivers for two syscon regions on PolarFire
SoC
reset: mpfs: add non-auxiliary bus probing
dt-bindings: clk: microchip: mpfs: remove first reg region
clk: microchip: mpfs: use regmap for clocks
riscv: dts: microchip: fix mailbox description
riscv: dts: microchip: convert clock and reset to use syscon
MAINTAINERS: add new soc drivers to Microchip RISC-V entry
MAINTAINERS: rename Microchip RISC-V entry
.../bindings/clock/microchip,mpfs-clkcfg.yaml | 36 ++-
.../microchip,mpfs-mss-top-sysreg.yaml | 47 ++++
MAINTAINERS | 4 +-
arch/riscv/boot/dts/microchip/mpfs.dtsi | 34 ++-
drivers/clk/microchip/Kconfig | 2 +
drivers/clk/microchip/clk-mpfs.c | 250 +++++++++++++++---
drivers/reset/reset-mpfs.c | 83 ++++--
drivers/soc/microchip/Kconfig | 13 +
drivers/soc/microchip/Makefile | 1 +
drivers/soc/microchip/mpfs-control-scb.c | 45 ++++
drivers/soc/microchip/mpfs-mss-top-sysreg.c | 48 ++++
11 files changed, 480 insertions(+), 83 deletions(-)
create mode 100644 Documentation/devicetree/bindings/soc/microchip/microchip,mpfs-mss-top-sysreg.yaml
create mode 100644 drivers/soc/microchip/mpfs-control-scb.c
create mode 100644 drivers/soc/microchip/mpfs-mss-top-sysreg.c
--
2.51.0
Powered by blists - more mailing lists