* [PATCH v4 1/3] dt-bindings: mfd: spacemit,p1: Add individual regulator supply properties
2026-02-06 2:32 [PATCH v4 0/3] regulator: spacemit-p1: Support board power tree via DT properties Guodong Xu
@ 2026-02-06 2:32 ` Guodong Xu
2026-02-09 19:00 ` Conor Dooley
2026-03-06 13:46 ` (subset) " Lee Jones
2026-02-06 2:32 ` [PATCH v4 2/3] regulator: spacemit-p1: Update supply names Guodong Xu
` (3 subsequent siblings)
4 siblings, 2 replies; 10+ messages in thread
From: Guodong Xu @ 2026-02-06 2:32 UTC (permalink / raw)
To: Liam Girdwood, Mark Brown, Yixun Lan, Alex Elder, Lee Jones,
Rob Herring, Krzysztof Kozlowski, Conor Dooley, Troy Mitchell,
Paul Walmsley, Palmer Dabbelt, Albert Ou, Alexandre Ghiti
Cc: linux-kernel, linux-riscv, spacemit, devicetree, Guodong Xu
Add supply properties that match the P1 PMIC's actual hardware topology
where each buck converter has its own VIN pin and LDO groups share
common input pins. Supply names are defined according to the pinout
names in the P1 datasheet.
The existing "vin-supply" is dropped from the binding document as the
updated spacemit P1 driver no longer parses it. Only the per-rail names
("vin1-supply", "vin2-supply", ...) are supported.
Signed-off-by: Guodong Xu <guodong@riscstar.com>
---
v4: Drop vin-supply and update the commit message.
Intermittent dtbs_check warnings are expected while the binding and
DTS changes land through different trees, but will resolve once both
are merged.
v3: Mark vin-supply as deprecated.
v2: Remove providers from the dts example.
Pass the 'make dt_binding_check' test.
---
.../devicetree/bindings/mfd/spacemit,p1.yaml | 49 +++++++++++++++++++++-
1 file changed, 47 insertions(+), 2 deletions(-)
diff --git a/Documentation/devicetree/bindings/mfd/spacemit,p1.yaml b/Documentation/devicetree/bindings/mfd/spacemit,p1.yaml
index c6593ac6ef6adb72fc48af570dc13fc9edf77ccb..c67b1c6e4e4f9235bd3965be6b68f397734530a5 100644
--- a/Documentation/devicetree/bindings/mfd/spacemit,p1.yaml
+++ b/Documentation/devicetree/bindings/mfd/spacemit,p1.yaml
@@ -27,8 +27,41 @@ properties:
interrupts:
maxItems: 1
- vin-supply:
- description: Input supply phandle.
+ vin1-supply:
+ description:
+ Power supply for BUCK1. Required if BUCK1 is defined.
+
+ vin2-supply:
+ description:
+ Power supply for BUCK2. Required if BUCK2 is defined.
+
+ vin3-supply:
+ description:
+ Power supply for BUCK3. Required if BUCK3 is defined.
+
+ vin4-supply:
+ description:
+ Power supply for BUCK4. Required if BUCK4 is defined.
+
+ vin5-supply:
+ description:
+ Power supply for BUCK5. Required if BUCK5 is defined.
+
+ vin6-supply:
+ description:
+ Power supply for BUCK6. Required if BUCK6 is defined.
+
+ aldoin-supply:
+ description:
+ Power supply for ALDO1-4. Required if any are defined.
+
+ dldoin1-supply:
+ description:
+ Power supply for DLDO1-4. Required if any are defined.
+
+ dldoin2-supply:
+ description:
+ Power supply for DLDO5-7. Required if any are defined.
regulators:
type: object
@@ -58,6 +91,10 @@ examples:
compatible = "spacemit,p1";
reg = <0x41>;
interrupts = <64>;
+ vin1-supply = <®_vcc_5v>;
+ vin5-supply = <®_vcc_5v>;
+ aldoin-supply = <®_vcc_5v>;
+ dldoin1-supply = <&buck5>;
regulators {
buck1 {
@@ -68,6 +105,14 @@ examples:
regulator-always-on;
};
+ buck5: buck5 {
+ regulator-name = "buck5";
+ regulator-min-microvolt = <500000>;
+ regulator-max-microvolt = <3450000>;
+ regulator-ramp-delay = <5000>;
+ regulator-always-on;
+ };
+
aldo1 {
regulator-name = "aldo1";
regulator-min-microvolt = <500000>;
--
2.43.0
^ permalink raw reply related [flat|nested] 10+ messages in thread* Re: [PATCH v4 1/3] dt-bindings: mfd: spacemit,p1: Add individual regulator supply properties
2026-02-06 2:32 ` [PATCH v4 1/3] dt-bindings: mfd: spacemit,p1: Add individual regulator supply properties Guodong Xu
@ 2026-02-09 19:00 ` Conor Dooley
2026-03-06 13:46 ` (subset) " Lee Jones
1 sibling, 0 replies; 10+ messages in thread
From: Conor Dooley @ 2026-02-09 19:00 UTC (permalink / raw)
To: Guodong Xu
Cc: Liam Girdwood, Mark Brown, Yixun Lan, Alex Elder, Lee Jones,
Rob Herring, Krzysztof Kozlowski, Conor Dooley, Troy Mitchell,
Paul Walmsley, Palmer Dabbelt, Albert Ou, Alexandre Ghiti,
linux-kernel, linux-riscv, spacemit, devicetree
[-- Attachment #1: Type: text/plain, Size: 75 bytes --]
Acked-by: Conor Dooley <conor.dooley@microchip.com>
pw-bot: not-applicable
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 228 bytes --]
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: (subset) [PATCH v4 1/3] dt-bindings: mfd: spacemit,p1: Add individual regulator supply properties
2026-02-06 2:32 ` [PATCH v4 1/3] dt-bindings: mfd: spacemit,p1: Add individual regulator supply properties Guodong Xu
2026-02-09 19:00 ` Conor Dooley
@ 2026-03-06 13:46 ` Lee Jones
2026-03-06 22:39 ` Yixun Lan
1 sibling, 1 reply; 10+ messages in thread
From: Lee Jones @ 2026-03-06 13:46 UTC (permalink / raw)
To: Liam Girdwood, Mark Brown, Alex Elder, Lee Jones, Rob Herring,
Krzysztof Kozlowski, Conor Dooley, Troy Mitchell, Paul Walmsley,
Palmer Dabbelt, Albert Ou, Alexandre Ghiti, Yixun Lan, Guodong Xu
Cc: linux-kernel, linux-riscv, spacemit, devicetree
On Fri, 06 Feb 2026 10:32:02 +0800, Guodong Xu wrote:
> Add supply properties that match the P1 PMIC's actual hardware topology
> where each buck converter has its own VIN pin and LDO groups share
> common input pins. Supply names are defined according to the pinout
> names in the P1 datasheet.
>
> The existing "vin-supply" is dropped from the binding document as the
> updated spacemit P1 driver no longer parses it. Only the per-rail names
> ("vin1-supply", "vin2-supply", ...) are supported.
>
> [...]
Applied, thanks!
[1/3] dt-bindings: mfd: spacemit,p1: Add individual regulator supply properties
commit: e13ebb4cfcff4399a34c3a89c493020899a431f7
--
Lee Jones [李琼斯]
^ permalink raw reply [flat|nested] 10+ messages in thread* Re: (subset) [PATCH v4 1/3] dt-bindings: mfd: spacemit,p1: Add individual regulator supply properties
2026-03-06 13:46 ` (subset) " Lee Jones
@ 2026-03-06 22:39 ` Yixun Lan
2026-03-09 9:50 ` Lee Jones
0 siblings, 1 reply; 10+ messages in thread
From: Yixun Lan @ 2026-03-06 22:39 UTC (permalink / raw)
To: Lee Jones
Cc: Liam Girdwood, Mark Brown, Alex Elder, Rob Herring,
Krzysztof Kozlowski, Conor Dooley, Troy Mitchell, Paul Walmsley,
Palmer Dabbelt, Albert Ou, Alexandre Ghiti, Guodong Xu,
linux-kernel, linux-riscv, spacemit, devicetree
Hi Jones,
On 13:46 Fri 06 Mar , Lee Jones wrote:
> On Fri, 06 Feb 2026 10:32:02 +0800, Guodong Xu wrote:
> > Add supply properties that match the P1 PMIC's actual hardware topology
> > where each buck converter has its own VIN pin and LDO groups share
> > common input pins. Supply names are defined according to the pinout
> > names in the P1 datasheet.
> >
> > The existing "vin-supply" is dropped from the binding document as the
> > updated spacemit P1 driver no longer parses it. Only the per-rail names
> > ("vin1-supply", "vin2-supply", ...) are supported.
> >
> > [...]
>
> Applied, thanks!
>
> [1/3] dt-bindings: mfd: spacemit,p1: Add individual regulator supply properties
> commit: e13ebb4cfcff4399a34c3a89c493020899a431f7
>
Not fure if this will cause a conflict, the patch has already been merged
by Mark, see
https://lore.kernel.org/r/177204643911.168523.3724548692200647978.b4-ty@kernel.org/
> --
> Lee Jones [李琼斯]
>
--
Yixun Lan (dlan)
^ permalink raw reply [flat|nested] 10+ messages in thread* Re: (subset) [PATCH v4 1/3] dt-bindings: mfd: spacemit,p1: Add individual regulator supply properties
2026-03-06 22:39 ` Yixun Lan
@ 2026-03-09 9:50 ` Lee Jones
0 siblings, 0 replies; 10+ messages in thread
From: Lee Jones @ 2026-03-09 9:50 UTC (permalink / raw)
To: Yixun Lan
Cc: Liam Girdwood, Mark Brown, Alex Elder, Rob Herring,
Krzysztof Kozlowski, Conor Dooley, Troy Mitchell, Paul Walmsley,
Palmer Dabbelt, Albert Ou, Alexandre Ghiti, Guodong Xu,
linux-kernel, linux-riscv, spacemit, devicetree
On Sat, 07 Mar 2026, Yixun Lan wrote:
> Hi Jones,
>
> On 13:46 Fri 06 Mar , Lee Jones wrote:
> > On Fri, 06 Feb 2026 10:32:02 +0800, Guodong Xu wrote:
> > > Add supply properties that match the P1 PMIC's actual hardware topology
> > > where each buck converter has its own VIN pin and LDO groups share
> > > common input pins. Supply names are defined according to the pinout
> > > names in the P1 datasheet.
> > >
> > > The existing "vin-supply" is dropped from the binding document as the
> > > updated spacemit P1 driver no longer parses it. Only the per-rail names
> > > ("vin1-supply", "vin2-supply", ...) are supported.
> > >
> > > [...]
> >
> > Applied, thanks!
> >
> > [1/3] dt-bindings: mfd: spacemit,p1: Add individual regulator supply properties
> > commit: e13ebb4cfcff4399a34c3a89c493020899a431f7
> >
> Not fure if this will cause a conflict, the patch has already been merged
> by Mark, see
>
> https://lore.kernel.org/r/177204643911.168523.3724548692200647978.b4-ty@kernel.org/
*facepalm*
--
Lee Jones [李琼斯]
^ permalink raw reply [flat|nested] 10+ messages in thread
* [PATCH v4 2/3] regulator: spacemit-p1: Update supply names
2026-02-06 2:32 [PATCH v4 0/3] regulator: spacemit-p1: Support board power tree via DT properties Guodong Xu
2026-02-06 2:32 ` [PATCH v4 1/3] dt-bindings: mfd: spacemit,p1: Add individual regulator supply properties Guodong Xu
@ 2026-02-06 2:32 ` Guodong Xu
2026-02-06 2:32 ` [PATCH v4 3/3] riscv: dts: spacemit: Update PMIC supply properties for BPI-F3 and Jupiter Guodong Xu
` (2 subsequent siblings)
4 siblings, 0 replies; 10+ messages in thread
From: Guodong Xu @ 2026-02-06 2:32 UTC (permalink / raw)
To: Liam Girdwood, Mark Brown, Yixun Lan, Alex Elder, Lee Jones,
Rob Herring, Krzysztof Kozlowski, Conor Dooley, Troy Mitchell,
Paul Walmsley, Palmer Dabbelt, Albert Ou, Alexandre Ghiti
Cc: linux-kernel, linux-riscv, spacemit, devicetree, Guodong Xu
Update supply names to match the P1 PMIC's actual hardware pinout where
each buck has an individual VIN pin (vin1-vin6) and LDO groups have
dedicated input pins (aldoin, dldoin1, dldoin2).
This is an ABI change from the original "vin" and "buck5" supplies.
The P1/PMIC regulator has no consumers in the DTS tree yet. For the two
K1 boards in-tree (BPI-F3 and Jupiter), power settings come from
boot firmware, so a probe failure has minimal impact.
Signed-off-by: Guodong Xu <guodong@riscstar.com>
---
v4: No change.
v3: No code change.
Update the commit message to state ABI change explicitly.
v2: No change.
---
drivers/regulator/spacemit-p1.c | 25 ++++++++++++++-----------
1 file changed, 14 insertions(+), 11 deletions(-)
diff --git a/drivers/regulator/spacemit-p1.c b/drivers/regulator/spacemit-p1.c
index 2b585ba01a93d0ce163c33e14c8022a506bdce11..57e6e00a73fa416fd6e557eb5bcada7dc69df444 100644
--- a/drivers/regulator/spacemit-p1.c
+++ b/drivers/regulator/spacemit-p1.c
@@ -87,13 +87,16 @@ static const struct linear_range p1_ldo_ranges[] = {
}
#define P1_BUCK_DESC(_n) \
- P1_REG_DESC(BUCK, buck, _n, "vin", 0x47, BUCK_MASK, 255, p1_buck_ranges)
+ P1_REG_DESC(BUCK, buck, _n, "vin" #_n, 0x47, BUCK_MASK, 255, p1_buck_ranges)
#define P1_ALDO_DESC(_n) \
- P1_REG_DESC(ALDO, aldo, _n, "vin", 0x5b, LDO_MASK, 128, p1_ldo_ranges)
+ P1_REG_DESC(ALDO, aldo, _n, "aldoin", 0x5b, LDO_MASK, 128, p1_ldo_ranges)
-#define P1_DLDO_DESC(_n) \
- P1_REG_DESC(DLDO, dldo, _n, "buck5", 0x67, LDO_MASK, 128, p1_ldo_ranges)
+#define P1_DLDO1_DESC(_n) \
+ P1_REG_DESC(DLDO, dldo, _n, "dldoin1", 0x67, LDO_MASK, 128, p1_ldo_ranges)
+
+#define P1_DLDO2_DESC(_n) \
+ P1_REG_DESC(DLDO, dldo, _n, "dldoin2", 0x67, LDO_MASK, 128, p1_ldo_ranges)
static const struct regulator_desc p1_regulator_desc[] = {
P1_BUCK_DESC(1),
@@ -108,13 +111,13 @@ static const struct regulator_desc p1_regulator_desc[] = {
P1_ALDO_DESC(3),
P1_ALDO_DESC(4),
- P1_DLDO_DESC(1),
- P1_DLDO_DESC(2),
- P1_DLDO_DESC(3),
- P1_DLDO_DESC(4),
- P1_DLDO_DESC(5),
- P1_DLDO_DESC(6),
- P1_DLDO_DESC(7),
+ P1_DLDO1_DESC(1),
+ P1_DLDO1_DESC(2),
+ P1_DLDO1_DESC(3),
+ P1_DLDO1_DESC(4),
+ P1_DLDO2_DESC(5),
+ P1_DLDO2_DESC(6),
+ P1_DLDO2_DESC(7),
};
static int p1_regulator_probe(struct platform_device *pdev)
--
2.43.0
^ permalink raw reply related [flat|nested] 10+ messages in thread* [PATCH v4 3/3] riscv: dts: spacemit: Update PMIC supply properties for BPI-F3 and Jupiter
2026-02-06 2:32 [PATCH v4 0/3] regulator: spacemit-p1: Support board power tree via DT properties Guodong Xu
2026-02-06 2:32 ` [PATCH v4 1/3] dt-bindings: mfd: spacemit,p1: Add individual regulator supply properties Guodong Xu
2026-02-06 2:32 ` [PATCH v4 2/3] regulator: spacemit-p1: Update supply names Guodong Xu
@ 2026-02-06 2:32 ` Guodong Xu
2026-02-25 19:07 ` (subset) [PATCH v4 0/3] regulator: spacemit-p1: Support board power tree via DT properties Mark Brown
2026-03-02 3:11 ` Yixun Lan
4 siblings, 0 replies; 10+ messages in thread
From: Guodong Xu @ 2026-02-06 2:32 UTC (permalink / raw)
To: Liam Girdwood, Mark Brown, Yixun Lan, Alex Elder, Lee Jones,
Rob Herring, Krzysztof Kozlowski, Conor Dooley, Troy Mitchell,
Paul Walmsley, Palmer Dabbelt, Albert Ou, Alexandre Ghiti
Cc: linux-kernel, linux-riscv, spacemit, devicetree, Guodong Xu
Use per-regulator supply names in pmic "spacemit,p1" node to specify
each board's power tree topology and match the updated dt-binding.
Signed-off-by: Guodong Xu <guodong@riscstar.com>
---
v4: No change.
v3: No code change. Updated commit message to be more precise.
v2: Added the pmic supply properties for K1 Milkv Jupiter.
Updated the commit message accordingly.
---
arch/riscv/boot/dts/spacemit/k1-bananapi-f3.dts | 12 ++++++++++--
arch/riscv/boot/dts/spacemit/k1-milkv-jupiter.dts | 12 ++++++++++--
2 files changed, 20 insertions(+), 4 deletions(-)
diff --git a/arch/riscv/boot/dts/spacemit/k1-bananapi-f3.dts b/arch/riscv/boot/dts/spacemit/k1-bananapi-f3.dts
index 5971605754b3533e1cf3713a27c48448aeb4d96f..444c3b1e6f44e98b8b2fd5e29820c5c75282abe1 100644
--- a/arch/riscv/boot/dts/spacemit/k1-bananapi-f3.dts
+++ b/arch/riscv/boot/dts/spacemit/k1-bananapi-f3.dts
@@ -190,7 +190,15 @@ pmic@41 {
compatible = "spacemit,p1";
reg = <0x41>;
interrupts = <64>;
- vin-supply = <®_vcc_4v>;
+ vin1-supply = <®_vcc_4v>;
+ vin2-supply = <®_vcc_4v>;
+ vin3-supply = <®_vcc_4v>;
+ vin4-supply = <®_vcc_4v>;
+ vin5-supply = <®_vcc_4v>;
+ vin6-supply = <®_vcc_4v>;
+ aldoin-supply = <®_vcc_4v>;
+ dldoin1-supply = <&buck5>;
+ dldoin2-supply = <&buck5>;
regulators {
buck1 {
@@ -221,7 +229,7 @@ buck4 {
regulator-always-on;
};
- buck5 {
+ buck5: buck5 {
regulator-min-microvolt = <500000>;
regulator-max-microvolt = <3450000>;
regulator-ramp-delay = <5000>;
diff --git a/arch/riscv/boot/dts/spacemit/k1-milkv-jupiter.dts b/arch/riscv/boot/dts/spacemit/k1-milkv-jupiter.dts
index 800a112d5d7054508f03089f0e2adb9965879ebe..e2702a781734beffb331982907a12b20009e37db 100644
--- a/arch/riscv/boot/dts/spacemit/k1-milkv-jupiter.dts
+++ b/arch/riscv/boot/dts/spacemit/k1-milkv-jupiter.dts
@@ -100,7 +100,15 @@ pmic@41 {
compatible = "spacemit,p1";
reg = <0x41>;
interrupts = <64>;
- vin-supply = <®_vcc_4v>;
+ vin1-supply = <®_vcc_4v>;
+ vin2-supply = <®_vcc_4v>;
+ vin3-supply = <®_vcc_4v>;
+ vin4-supply = <®_vcc_4v>;
+ vin5-supply = <®_vcc_4v>;
+ vin6-supply = <®_vcc_4v>;
+ aldoin-supply = <®_vcc_4v>;
+ dldoin1-supply = <&buck5>;
+ dldoin2-supply = <&buck5>;
regulators {
buck1 {
@@ -131,7 +139,7 @@ buck4 {
regulator-always-on;
};
- buck5 {
+ buck5: buck5 {
regulator-min-microvolt = <500000>;
regulator-max-microvolt = <3450000>;
regulator-ramp-delay = <5000>;
--
2.43.0
^ permalink raw reply related [flat|nested] 10+ messages in thread* Re: (subset) [PATCH v4 0/3] regulator: spacemit-p1: Support board power tree via DT properties
2026-02-06 2:32 [PATCH v4 0/3] regulator: spacemit-p1: Support board power tree via DT properties Guodong Xu
` (2 preceding siblings ...)
2026-02-06 2:32 ` [PATCH v4 3/3] riscv: dts: spacemit: Update PMIC supply properties for BPI-F3 and Jupiter Guodong Xu
@ 2026-02-25 19:07 ` Mark Brown
2026-03-02 3:11 ` Yixun Lan
4 siblings, 0 replies; 10+ messages in thread
From: Mark Brown @ 2026-02-25 19:07 UTC (permalink / raw)
To: Liam Girdwood, Alex Elder, Lee Jones, Rob Herring,
Krzysztof Kozlowski, Conor Dooley, Troy Mitchell, Paul Walmsley,
Palmer Dabbelt, Albert Ou, Alexandre Ghiti, Yixun Lan, Guodong Xu
Cc: linux-kernel, linux-riscv, spacemit, devicetree
On Fri, 06 Feb 2026 10:32:01 +0800, Guodong Xu wrote:
> The patch (Patch 1 in v1 and v2) fixing hardware voltage constraints was
> applied to regulator.git for-next, so is no longer part of this series.
>
> Patch 1, 2 and 3 (previously 2-4) enable flexible power tree
> configurations for the SpacemiT P1 PMIC. Hardcoded supply assumptions
> are replaced with explicit devicetree properties. PMIC supply connections
> are board-design decisions. Moving this to DT allows supporting varied
> topologies without driver modifications.
>
> [...]
Applied to
https://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git for-next
Thanks!
[1/3] dt-bindings: mfd: spacemit,p1: Add individual regulator supply properties
commit: 82ffa9610ba39d3628a9bec968ddc68fe2fe6612
[2/3] regulator: spacemit-p1: Update supply names
commit: fbb4c52ccdcb4a612d2b7f800aa57090eeee16d7
All being well this means that it will be integrated into the linux-next
tree (usually sometime in the next 24 hours) and sent to Linus during
the next merge window (or sooner if it is a bug fix), however if
problems are discovered then the patch may be dropped or reverted.
You may get further e-mails resulting from automated or manual testing
and review of the tree, please engage with people reporting problems and
send followup patches addressing any issues that are reported if needed.
If any updates are required or you are submitting further changes they
should be sent as incremental updates against current git, existing
patches will not be replaced.
Please add any relevant lists and maintainers to the CCs when replying
to this mail.
Thanks,
Mark
^ permalink raw reply [flat|nested] 10+ messages in thread* Re: (subset) [PATCH v4 0/3] regulator: spacemit-p1: Support board power tree via DT properties
2026-02-06 2:32 [PATCH v4 0/3] regulator: spacemit-p1: Support board power tree via DT properties Guodong Xu
` (3 preceding siblings ...)
2026-02-25 19:07 ` (subset) [PATCH v4 0/3] regulator: spacemit-p1: Support board power tree via DT properties Mark Brown
@ 2026-03-02 3:11 ` Yixun Lan
4 siblings, 0 replies; 10+ messages in thread
From: Yixun Lan @ 2026-03-02 3:11 UTC (permalink / raw)
To: Liam Girdwood, Mark Brown, Alex Elder, Lee Jones, Rob Herring,
Krzysztof Kozlowski, Conor Dooley, Troy Mitchell, Paul Walmsley,
Palmer Dabbelt, Albert Ou, Alexandre Ghiti, Yixun Lan, Guodong Xu
Cc: linux-kernel, linux-riscv, spacemit, devicetree
On Fri, 06 Feb 2026 10:32:01 +0800, Guodong Xu wrote:
> The patch (Patch 1 in v1 and v2) fixing hardware voltage constraints was
> applied to regulator.git for-next, so is no longer part of this series.
>
> Patch 1, 2 and 3 (previously 2-4) enable flexible power tree
> configurations for the SpacemiT P1 PMIC. Hardcoded supply assumptions
> are replaced with explicit devicetree properties. PMIC supply connections
> are board-design decisions. Moving this to DT allows supporting varied
> topologies without driver modifications.
>
> [...]
Applied, thanks!
[3/3] riscv: dts: spacemit: Update PMIC supply properties for BPI-F3 and Jupiter
https://github.com/spacemit-com/linux/commit/108c77b34b929e6bdb7ac9613ed65c90da8bcb9f
Best regards,
--
Yixun Lan <dlan@kernel.org>
^ permalink raw reply [flat|nested] 10+ messages in thread