All of lore.kernel.org
 help / color / mirror / Atom feed
From: Claudiu Beznea <claudiu.beznea@microchip.com>
To: <nicolas.ferre@microchip.com>, <alexandre.belloni@bootlin.com>,
	<p.zabel@pengutronix.de>, <sre@kernel.org>, <robh+dt@kernel.org>,
	<krzysztof.kozlowski+dt@linaro.org>
Cc: <linux-arm-kernel@lists.infradead.org>,
	<linux-pm@vger.kernel.org>, <devicetree@vger.kernel.org>,
	<linux-kernel@vger.kernel.org>,
	Claudiu Beznea <claudiu.beznea@microchip.com>
Subject: [PATCH v4 8/9] power: reset: at91-reset: add support for SAMA7G5
Date: Wed, 8 Jun 2022 11:39:41 +0300	[thread overview]
Message-ID: <20220608083942.1584087-9-claudiu.beznea@microchip.com> (raw)
In-Reply-To: <20220608083942.1584087-1-claudiu.beznea@microchip.com>

Add support for SAMA7G5 including reset_controller_dev support for 3 lines
(which are USB PHYs).

Signed-off-by: Claudiu Beznea <claudiu.beznea@microchip.com>
---
 drivers/power/reset/at91-reset.c | 9 +++++++++
 1 file changed, 9 insertions(+)

diff --git a/drivers/power/reset/at91-reset.c b/drivers/power/reset/at91-reset.c
index e25d8d38a2f8..80bf0c023c17 100644
--- a/drivers/power/reset/at91-reset.c
+++ b/drivers/power/reset/at91-reset.c
@@ -202,6 +202,11 @@ static const struct at91_reset_data samx7 = {
 	.reset_args = AT91_RSTC_KEY | AT91_RSTC_PROCRST,
 };
 
+static const struct at91_reset_data sama7g5 = {
+	.reset_args = AT91_RSTC_KEY | AT91_RSTC_PROCRST,
+	.n_device_reset = 3,
+};
+
 static const struct of_device_id at91_reset_of_match[] = {
 	{
 		.compatible = "atmel,at91sam9260-rstc",
@@ -223,6 +228,10 @@ static const struct of_device_id at91_reset_of_match[] = {
 		.compatible = "microchip,sam9x60-rstc",
 		.data = &samx7,
 	},
+	{
+		.compatible = "microchip,sama7g5-rstc",
+		.data = &sama7g5,
+	},
 	{ /* sentinel */ }
 };
 MODULE_DEVICE_TABLE(of, at91_reset_of_match);
-- 
2.33.0


_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

WARNING: multiple messages have this Message-ID (diff)
From: Claudiu Beznea <claudiu.beznea@microchip.com>
To: <nicolas.ferre@microchip.com>, <alexandre.belloni@bootlin.com>,
	<p.zabel@pengutronix.de>, <sre@kernel.org>, <robh+dt@kernel.org>,
	<krzysztof.kozlowski+dt@linaro.org>
Cc: <linux-arm-kernel@lists.infradead.org>,
	<linux-pm@vger.kernel.org>, <devicetree@vger.kernel.org>,
	<linux-kernel@vger.kernel.org>,
	Claudiu Beznea <claudiu.beznea@microchip.com>
Subject: [PATCH v4 8/9] power: reset: at91-reset: add support for SAMA7G5
Date: Wed, 8 Jun 2022 11:39:41 +0300	[thread overview]
Message-ID: <20220608083942.1584087-9-claudiu.beznea@microchip.com> (raw)
In-Reply-To: <20220608083942.1584087-1-claudiu.beznea@microchip.com>

Add support for SAMA7G5 including reset_controller_dev support for 3 lines
(which are USB PHYs).

Signed-off-by: Claudiu Beznea <claudiu.beznea@microchip.com>
---
 drivers/power/reset/at91-reset.c | 9 +++++++++
 1 file changed, 9 insertions(+)

diff --git a/drivers/power/reset/at91-reset.c b/drivers/power/reset/at91-reset.c
index e25d8d38a2f8..80bf0c023c17 100644
--- a/drivers/power/reset/at91-reset.c
+++ b/drivers/power/reset/at91-reset.c
@@ -202,6 +202,11 @@ static const struct at91_reset_data samx7 = {
 	.reset_args = AT91_RSTC_KEY | AT91_RSTC_PROCRST,
 };
 
+static const struct at91_reset_data sama7g5 = {
+	.reset_args = AT91_RSTC_KEY | AT91_RSTC_PROCRST,
+	.n_device_reset = 3,
+};
+
 static const struct of_device_id at91_reset_of_match[] = {
 	{
 		.compatible = "atmel,at91sam9260-rstc",
@@ -223,6 +228,10 @@ static const struct of_device_id at91_reset_of_match[] = {
 		.compatible = "microchip,sam9x60-rstc",
 		.data = &samx7,
 	},
+	{
+		.compatible = "microchip,sama7g5-rstc",
+		.data = &sama7g5,
+	},
 	{ /* sentinel */ }
 };
 MODULE_DEVICE_TABLE(of, at91_reset_of_match);
-- 
2.33.0


  parent reply	other threads:[~2022-06-08  8:47 UTC|newest]

Thread overview: 26+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-06-08  8:39 [PATCH v4 0/9] power: reset: at91-reset: add support for sama7g5 Claudiu Beznea
2022-06-08  8:39 ` Claudiu Beznea
2022-06-08  8:39 ` [PATCH v4 1/9] ARM: dts: at91: use generic name for reset controller Claudiu Beznea
2022-06-08  8:39   ` Claudiu Beznea
2022-06-08  8:41   ` Krzysztof Kozlowski
2022-06-08  8:41     ` Krzysztof Kozlowski
2022-06-08  8:39 ` [PATCH v4 2/9] dt-bindings: reset: convert Atmel/Microchip reset controller to YAML Claudiu Beznea
2022-06-08  8:39   ` Claudiu Beznea
2022-06-08  8:39 ` [PATCH v4 3/9] dt-bindings: reset: atmel,at91sam9260-reset: add sama7g5 bindings Claudiu Beznea
2022-06-08  8:39   ` Claudiu Beznea
2022-06-08  8:39 ` [PATCH v4 4/9] dt-bindings: reset: add sama7g5 definitions Claudiu Beznea
2022-06-08  8:39   ` Claudiu Beznea
2022-06-08  8:39 ` [PATCH v4 5/9] power: reset: at91-reset: document structures and enums Claudiu Beznea
2022-06-08  8:39   ` Claudiu Beznea
2022-06-08  8:39 ` [PATCH v4 6/9] power: reset: at91-reset: add at91_reset_data Claudiu Beznea
2022-06-08  8:39   ` Claudiu Beznea
2022-06-09 20:33   ` Sebastian Reichel
2022-06-09 20:33     ` Sebastian Reichel
2022-06-08  8:39 ` [PATCH v4 7/9] power: reset: at91-reset: add reset_controller_dev support Claudiu Beznea
2022-06-08  8:39   ` Claudiu Beznea
2022-06-09 20:47   ` Sebastian Reichel
2022-06-09 20:47     ` Sebastian Reichel
2022-06-08  8:39 ` Claudiu Beznea [this message]
2022-06-08  8:39   ` [PATCH v4 8/9] power: reset: at91-reset: add support for SAMA7G5 Claudiu Beznea
2022-06-08  8:39 ` [PATCH v4 9/9] ARM: dts: at91: sama7g5: add reset-controller node Claudiu Beznea
2022-06-08  8:39   ` Claudiu Beznea

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20220608083942.1584087-9-claudiu.beznea@microchip.com \
    --to=claudiu.beznea@microchip.com \
    --cc=alexandre.belloni@bootlin.com \
    --cc=devicetree@vger.kernel.org \
    --cc=krzysztof.kozlowski+dt@linaro.org \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-pm@vger.kernel.org \
    --cc=nicolas.ferre@microchip.com \
    --cc=p.zabel@pengutronix.de \
    --cc=robh+dt@kernel.org \
    --cc=sre@kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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.