linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 0/2] regulator: Introduce UniPhier NX1 SoC support
@ 2021-10-18  1:30 Kunihiko Hayashi
  2021-10-18  1:30 ` [PATCH 1/2] dt-bindings: regulator: uniphier: Add binding for NX1 SoC Kunihiko Hayashi
                   ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: Kunihiko Hayashi @ 2021-10-18  1:30 UTC (permalink / raw)
  To: Liam Girdwood, Mark Brown, Rob Herring, Masami Hiramatsu
  Cc: linux-kernel, devicetree, linux-arm-kernel, Kunihiko Hayashi

This series includes the patches to add basic support for new UniPhier NX1
SoC. NX1 SoC also has the same kinds of controls as the other UniPhier
SoCs.

Kunihiko Hayashi (2):
  dt-bindings: regulator: uniphier: Add binding for NX1 SoC
  regulator: uniphier: Add USB-VBUS compatible string for NX1 SoC

 .../devicetree/bindings/regulator/socionext,uniphier-regulator.yaml   | 1 +
 drivers/regulator/uniphier-regulator.c                                | 4 ++++
 2 files changed, 5 insertions(+)

-- 
2.7.4


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

* [PATCH 1/2] dt-bindings: regulator: uniphier: Add binding for NX1 SoC
  2021-10-18  1:30 [PATCH 0/2] regulator: Introduce UniPhier NX1 SoC support Kunihiko Hayashi
@ 2021-10-18  1:30 ` Kunihiko Hayashi
  2021-10-18 12:16   ` Mark Brown
  2021-10-18  1:30 ` [PATCH 2/2] regulator: uniphier: Add USB-VBUS compatible string " Kunihiko Hayashi
  2021-10-22  0:52 ` [PATCH 0/2] regulator: Introduce UniPhier NX1 SoC support Mark Brown
  2 siblings, 1 reply; 5+ messages in thread
From: Kunihiko Hayashi @ 2021-10-18  1:30 UTC (permalink / raw)
  To: Liam Girdwood, Mark Brown, Rob Herring, Masami Hiramatsu
  Cc: linux-kernel, devicetree, linux-arm-kernel, Kunihiko Hayashi

Update USB-VBUS binding document for UniPhier NX1 SoC.

Signed-off-by: Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
---
 .../devicetree/bindings/regulator/socionext,uniphier-regulator.yaml      | 1 +
 1 file changed, 1 insertion(+)

diff --git a/Documentation/devicetree/bindings/regulator/socionext,uniphier-regulator.yaml b/Documentation/devicetree/bindings/regulator/socionext,uniphier-regulator.yaml
index 861d5f3c79e8..1218f21ba320 100644
--- a/Documentation/devicetree/bindings/regulator/socionext,uniphier-regulator.yaml
+++ b/Documentation/devicetree/bindings/regulator/socionext,uniphier-regulator.yaml
@@ -27,6 +27,7 @@ properties:
       - socionext,uniphier-pxs2-usb3-regulator
       - socionext,uniphier-ld20-usb3-regulator
       - socionext,uniphier-pxs3-usb3-regulator
+      - socionext,uniphier-nx1-usb3-regulator
 
   reg:
     maxItems: 1
-- 
2.7.4


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

* [PATCH 2/2] regulator: uniphier: Add USB-VBUS compatible string for NX1 SoC
  2021-10-18  1:30 [PATCH 0/2] regulator: Introduce UniPhier NX1 SoC support Kunihiko Hayashi
  2021-10-18  1:30 ` [PATCH 1/2] dt-bindings: regulator: uniphier: Add binding for NX1 SoC Kunihiko Hayashi
@ 2021-10-18  1:30 ` Kunihiko Hayashi
  2021-10-22  0:52 ` [PATCH 0/2] regulator: Introduce UniPhier NX1 SoC support Mark Brown
  2 siblings, 0 replies; 5+ messages in thread
From: Kunihiko Hayashi @ 2021-10-18  1:30 UTC (permalink / raw)
  To: Liam Girdwood, Mark Brown, Rob Herring, Masami Hiramatsu
  Cc: linux-kernel, devicetree, linux-arm-kernel, Kunihiko Hayashi

Add basic support for UniPhier NX1 SoC. This includes a compatible string
and the same SoC-dependent data as PXs2 SoC.

Signed-off-by: Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
---
 drivers/regulator/uniphier-regulator.c | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/drivers/regulator/uniphier-regulator.c b/drivers/regulator/uniphier-regulator.c
index e75b0973e325..39a68b01fc38 100644
--- a/drivers/regulator/uniphier-regulator.c
+++ b/drivers/regulator/uniphier-regulator.c
@@ -199,6 +199,10 @@ static const struct of_device_id uniphier_regulator_match[] = {
 		.compatible = "socionext,uniphier-pxs3-usb3-regulator",
 		.data = &uniphier_pxs2_usb3_data,
 	},
+	{
+		.compatible = "socionext,uniphier-nx1-usb3-regulator",
+		.data = &uniphier_pxs2_usb3_data,
+	},
 	{ /* Sentinel */ },
 };
 MODULE_DEVICE_TABLE(of, uniphier_regulator_match);
-- 
2.7.4


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

* Re: [PATCH 1/2] dt-bindings: regulator: uniphier: Add binding for NX1 SoC
  2021-10-18  1:30 ` [PATCH 1/2] dt-bindings: regulator: uniphier: Add binding for NX1 SoC Kunihiko Hayashi
@ 2021-10-18 12:16   ` Mark Brown
  0 siblings, 0 replies; 5+ messages in thread
From: Mark Brown @ 2021-10-18 12:16 UTC (permalink / raw)
  To: Kunihiko Hayashi
  Cc: Liam Girdwood, Rob Herring, Masami Hiramatsu, linux-kernel,
	devicetree, linux-arm-kernel

[-- Attachment #1: Type: text/plain, Size: 454 bytes --]

On Mon, Oct 18, 2021 at 10:30:04AM +0900, Kunihiko Hayashi wrote:
> Update USB-VBUS binding document for UniPhier NX1 SoC.

Please submit patches using subject lines reflecting the style for the
subsystem, this makes it easier for people to identify relevant patches.
Look at what existing commits in the area you're changing are doing and
make sure your subject lines visually resemble what they're doing.
There's no need to resubmit to fix this alone.

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 488 bytes --]

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

* Re: [PATCH 0/2] regulator: Introduce UniPhier NX1 SoC support
  2021-10-18  1:30 [PATCH 0/2] regulator: Introduce UniPhier NX1 SoC support Kunihiko Hayashi
  2021-10-18  1:30 ` [PATCH 1/2] dt-bindings: regulator: uniphier: Add binding for NX1 SoC Kunihiko Hayashi
  2021-10-18  1:30 ` [PATCH 2/2] regulator: uniphier: Add USB-VBUS compatible string " Kunihiko Hayashi
@ 2021-10-22  0:52 ` Mark Brown
  2 siblings, 0 replies; 5+ messages in thread
From: Mark Brown @ 2021-10-22  0:52 UTC (permalink / raw)
  To: Masami Hiramatsu, Liam Girdwood, Kunihiko Hayashi, Rob Herring
  Cc: Mark Brown, devicetree, linux-arm-kernel, linux-kernel

On Mon, 18 Oct 2021 10:30:03 +0900, Kunihiko Hayashi wrote:
> This series includes the patches to add basic support for new UniPhier NX1
> SoC. NX1 SoC also has the same kinds of controls as the other UniPhier
> SoCs.
> 
> Kunihiko Hayashi (2):
>   dt-bindings: regulator: uniphier: Add binding for NX1 SoC
>   regulator: uniphier: Add USB-VBUS compatible string for NX1 SoC
> 
> [...]

Applied to

   https://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git for-next

Thanks!

[1/2] dt-bindings: regulator: uniphier: Add binding for NX1 SoC
      commit: 4c1ef56bd9c7a60efdeac9f1478b5467fb47c093
[2/2] regulator: uniphier: Add USB-VBUS compatible string for NX1 SoC
      commit: 32e84faa825e8bc6431186a41b68e0fcff857b72

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] 5+ messages in thread

end of thread, other threads:[~2021-10-22  0:53 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-10-18  1:30 [PATCH 0/2] regulator: Introduce UniPhier NX1 SoC support Kunihiko Hayashi
2021-10-18  1:30 ` [PATCH 1/2] dt-bindings: regulator: uniphier: Add binding for NX1 SoC Kunihiko Hayashi
2021-10-18 12:16   ` Mark Brown
2021-10-18  1:30 ` [PATCH 2/2] regulator: uniphier: Add USB-VBUS compatible string " Kunihiko Hayashi
2021-10-22  0:52 ` [PATCH 0/2] regulator: Introduce UniPhier NX1 SoC support Mark Brown

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).