Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1710456 > unrolled thread

[PATCH v2 1/3] reset: uniphier: add audio systems reset control

Started byKatsuhiro Suzuki <suzuki.katsuhiro@socionext.com>
First post2017-08-13 11:10 +0200
Last post2017-08-13 11:10 +0200
Articles 5 — 3 participants

Back to article view | Back to linux.kernel


Contents

  [PATCH v2 1/3] reset: uniphier: add audio systems reset control Katsuhiro Suzuki <suzuki.katsuhiro@socionext.com> - 2017-08-13 11:10 +0200
    [PATCH v2 3/3] reset: uniphier: add analog amplifiers reset control Katsuhiro Suzuki <suzuki.katsuhiro@socionext.com> - 2017-08-13 11:10 +0200
      Re: [PATCH v2 3/3] reset: uniphier: add analog amplifiers reset control Masahiro Yamada <yamada.masahiro@socionext.com> - 2017-08-13 16:30 +0200
      Re: [PATCH v2 3/3] reset: uniphier: add analog amplifiers reset  control Philipp Zabel <p.zabel@pengutronix.de> - 2017-08-14 09:40 +0200
    [PATCH v2 2/3] reset: uniphier: add video input subsystem reset control Katsuhiro Suzuki <suzuki.katsuhiro@socionext.com> - 2017-08-13 11:10 +0200

#1710456 — [PATCH v2 1/3] reset: uniphier: add audio systems reset control

FromKatsuhiro Suzuki <suzuki.katsuhiro@socionext.com>
Date2017-08-13 11:10 +0200
Subject[PATCH v2 1/3] reset: uniphier: add audio systems reset control
Message-ID<udX4d-5hn-3@gated-at.bofh.it>
Add reset lines for audio subsystem (AIO) and
SoC internal audio codec (EVEA) on UniPhier LD11/LD20 SoCs.

Signed-off-by: Katsuhiro Suzuki <suzuki.katsuhiro@socionext.com>
Acked-by: Masahiro Yamada <yamada.masahiro@socionext.com>
---
 drivers/reset/reset-uniphier.c | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/drivers/reset/reset-uniphier.c b/drivers/reset/reset-uniphier.c
index 954b2c4e6ca7..90c52a96f775 100644
--- a/drivers/reset/reset-uniphier.c
+++ b/drivers/reset/reset-uniphier.c
@@ -93,6 +93,8 @@ static const struct uniphier_reset_data uniphier_ld11_sys_reset_data[] = {
 	UNIPHIER_RESETX(2, 0x200c, 0),		/* NAND */
 	UNIPHIER_RESETX(4, 0x200c, 2),		/* eMMC */
 	UNIPHIER_RESETX(8, 0x200c, 8),		/* STDMAC (HSC, MIO) */
+	UNIPHIER_RESETX(40, 0x2008, 0),		/* AIO */
+	UNIPHIER_RESETX(41, 0x2008, 1),		/* EVEA */
 	UNIPHIER_RESET_END,
 };
 
@@ -105,6 +107,8 @@ static const struct uniphier_reset_data uniphier_ld20_sys_reset_data[] = {
 	UNIPHIER_RESETX(17, 0x200c, 13),	/* USB30-PHY1 */
 	UNIPHIER_RESETX(18, 0x200c, 14),	/* USB30-PHY2 */
 	UNIPHIER_RESETX(19, 0x200c, 15),	/* USB30-PHY3 */
+	UNIPHIER_RESETX(40, 0x2008, 0),		/* AIO */
+	UNIPHIER_RESETX(41, 0x2008, 1),		/* EVEA */
 	UNIPHIER_RESET_END,
 };
 
-- 
2.13.2

[toc] | [next] | [standalone]


#1710458 — [PATCH v2 3/3] reset: uniphier: add analog amplifiers reset control

FromKatsuhiro Suzuki <suzuki.katsuhiro@socionext.com>
Date2017-08-13 11:10 +0200
Subject[PATCH v2 3/3] reset: uniphier: add analog amplifiers reset control
Message-ID<udX4e-5hn-7@gated-at.bofh.it>
In reply to#1710456
Add a reset line for analog signal amplifier core (ADAMV) on
UniPhier LD11/LD20 SoCs.

Signed-off-by: Katsuhiro Suzuki <suzuki.katsuhiro@socionext.com>

---

Changes for v2:
  - ID changes to 0 because ADAMV reset controller independents
    from other reset controllers.
  - Add DT-binding documents.
---
 .../devicetree/bindings/reset/uniphier-reset.txt   | 25 ++++++++++++++++++++++
 drivers/reset/reset-uniphier.c                     | 15 +++++++++++++
 2 files changed, 40 insertions(+)

diff --git a/Documentation/devicetree/bindings/reset/uniphier-reset.txt b/Documentation/devicetree/bindings/reset/uniphier-reset.txt
index b80ccc03ab9f..68a6f487c409 100644
--- a/Documentation/devicetree/bindings/reset/uniphier-reset.txt
+++ b/Documentation/devicetree/bindings/reset/uniphier-reset.txt
@@ -90,3 +90,28 @@ Example:
 
 		other nodes ...
 	};
+
+
+Analog signal amplifier reset
+-----------------------------
+
+Required properties:
+- compatible: should be one of the following:
+    "socionext,uniphier-ld11-adamv-reset" - for LD11 SoC
+    "socionext,uniphier-ld20-adamv-reset" - for LD20 SoC
+- #reset-cells: should be 1.
+
+Example:
+
+	adamv@57920000 {
+		compatible = "socionext,uniphier-ld11-adamv",
+			     "simple-mfd", "syscon";
+		reg = <0x57920000 0x1000>;
+
+		adamv_rst: reset {
+			compatible = "socionext,uniphier-ld11-adamv-reset";
+			#reset-cells = <1>;
+		};
+
+		other nodes ...
+	};
diff --git a/drivers/reset/reset-uniphier.c b/drivers/reset/reset-uniphier.c
index f60c137c17cb..bda2dd196ae5 100644
--- a/drivers/reset/reset-uniphier.c
+++ b/drivers/reset/reset-uniphier.c
@@ -196,6 +196,12 @@ static const struct uniphier_reset_data uniphier_pro4_peri_reset_data[] = {
 	UNIPHIER_RESET_END,
 };
 
+/* Analog signal amplifiers reset data */
+static const struct uniphier_reset_data uniphier_ld11_adamv_reset_data[] = {
+	UNIPHIER_RESETX(0, 0x10, 6), /* EVEA */
+	UNIPHIER_RESET_END,
+};
+
 /* core implementaton */
 struct uniphier_reset_priv {
 	struct reset_controller_dev rcdev;
@@ -415,6 +421,15 @@ static const struct of_device_id uniphier_reset_match[] = {
 		.compatible = "socionext,uniphier-ld20-peri-reset",
 		.data = uniphier_pro4_peri_reset_data,
 	},
+	/* Analog signal amplifiers reset */
+	{
+		.compatible = "socionext,uniphier-ld11-adamv-reset",
+		.data = uniphier_ld11_adamv_reset_data,
+	},
+	{
+		.compatible = "socionext,uniphier-ld20-adamv-reset",
+		.data = uniphier_ld11_adamv_reset_data,
+	},
 	{ /* sentinel */ }
 };
 MODULE_DEVICE_TABLE(of, uniphier_reset_match);
-- 
2.13.2

[toc] | [prev] | [next] | [standalone]


#1710536 — Re: [PATCH v2 3/3] reset: uniphier: add analog amplifiers reset control

FromMasahiro Yamada <yamada.masahiro@socionext.com>
Date2017-08-13 16:30 +0200
SubjectRe: [PATCH v2 3/3] reset: uniphier: add analog amplifiers reset control
Message-ID<ue23T-8gD-3@gated-at.bofh.it>
In reply to#1710458
2017-08-13 18:00 GMT+09:00 Katsuhiro Suzuki <suzuki.katsuhiro@socionext.com>:
> Add a reset line for analog signal amplifier core (ADAMV) on
> UniPhier LD11/LD20 SoCs.
>
> Signed-off-by: Katsuhiro Suzuki <suzuki.katsuhiro@socionext.com>
>
> ---
>
> Changes for v2:
>   - ID changes to 0 because ADAMV reset controller independents
>     from other reset controllers.
>   - Add DT-binding documents.


Acked-by: Masahiro Yamada <yamada.masahiro@socionext.com>

Thanks!

-- 
Best Regards
Masahiro Yamada

[toc] | [prev] | [next] | [standalone]


#1710697 — Re: [PATCH v2 3/3] reset: uniphier: add analog amplifiers reset control

FromPhilipp Zabel <p.zabel@pengutronix.de>
Date2017-08-14 09:40 +0200
SubjectRe: [PATCH v2 3/3] reset: uniphier: add analog amplifiers reset control
Message-ID<uei8H-1hl-25@gated-at.bofh.it>
In reply to#1710458
On Sun, 2017-08-13 at 18:00 +0900, Katsuhiro Suzuki wrote:
> Add a reset line for analog signal amplifier core (ADAMV) on
> UniPhier LD11/LD20 SoCs.
> 
> Signed-off-by: Katsuhiro Suzuki <suzuki.katsuhiro@socionext.com>

Thank you, applied all three to the reset/next branch with Masahiro's
acks.

regards
Philipp

[toc] | [prev] | [next] | [standalone]


#1710459 — [PATCH v2 2/3] reset: uniphier: add video input subsystem reset control

FromKatsuhiro Suzuki <suzuki.katsuhiro@socionext.com>
Date2017-08-13 11:10 +0200
Subject[PATCH v2 2/3] reset: uniphier: add video input subsystem reset control
Message-ID<udX4e-5hn-11@gated-at.bofh.it>
In reply to#1710456
Add a reset line for video input subsystem (EXIV) on
UniPhier LD11/LD20 SoCs.

Signed-off-by: Katsuhiro Suzuki <suzuki.katsuhiro@socionext.com>
Acked-by: Masahiro Yamada <yamada.masahiro@socionext.com>
---
 drivers/reset/reset-uniphier.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/drivers/reset/reset-uniphier.c b/drivers/reset/reset-uniphier.c
index 90c52a96f775..f60c137c17cb 100644
--- a/drivers/reset/reset-uniphier.c
+++ b/drivers/reset/reset-uniphier.c
@@ -95,6 +95,7 @@ static const struct uniphier_reset_data uniphier_ld11_sys_reset_data[] = {
 	UNIPHIER_RESETX(8, 0x200c, 8),		/* STDMAC (HSC, MIO) */
 	UNIPHIER_RESETX(40, 0x2008, 0),		/* AIO */
 	UNIPHIER_RESETX(41, 0x2008, 1),		/* EVEA */
+	UNIPHIER_RESETX(42, 0x2010, 2),		/* EXIV */
 	UNIPHIER_RESET_END,
 };
 
@@ -109,6 +110,7 @@ static const struct uniphier_reset_data uniphier_ld20_sys_reset_data[] = {
 	UNIPHIER_RESETX(19, 0x200c, 15),	/* USB30-PHY3 */
 	UNIPHIER_RESETX(40, 0x2008, 0),		/* AIO */
 	UNIPHIER_RESETX(41, 0x2008, 1),		/* EVEA */
+	UNIPHIER_RESETX(42, 0x2010, 2),		/* EXIV */
 	UNIPHIER_RESET_END,
 };
 
-- 
2.13.2

[toc] | [prev] | [standalone]


Back to top | Article view | linux.kernel


csiph-web