All of lore.kernel.org
 help / color / mirror / Atom feed
From: patrice.chotard at st.com <patrice.chotard@st.com>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH v5 03/11] reset: add reset_assert_all()
Date: Thu, 1 Jun 2017 13:36:14 +0200	[thread overview]
Message-ID: <1496316982-16572-4-git-send-email-patrice.chotard@st.com> (raw)
In-Reply-To: <1496316982-16572-1-git-send-email-patrice.chotard@st.com>

From: Patrice Chotard <patrice.chotard@st.com>

Add reset_assert_all() method which Request/Assert/Free an
array of resets signal that has been previously successfully
requested by reset_get_by_*()

Signed-off-by: Patrice Chotard <patrice.chotard@st.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
---

v5: 	_ none
v4:     _ add reset_assert_all() method as suggested by Marek Vasut
          and Simon Glass

 drivers/reset/reset-uclass.c | 22 ++++++++++++++++++++++
 include/reset.h              | 17 +++++++++++++++++
 2 files changed, 39 insertions(+)

diff --git a/drivers/reset/reset-uclass.c b/drivers/reset/reset-uclass.c
index 4b17d4c..7cafda7 100644
--- a/drivers/reset/reset-uclass.c
+++ b/drivers/reset/reset-uclass.c
@@ -146,6 +146,28 @@ int reset_deassert(struct reset_ctl *reset_ctl)
 	return ops->rst_deassert(reset_ctl);
 }
 
+int reset_assert_all(struct reset_ctl *reset_ctl, int count)
+{
+	int i, ret;
+
+	for (i = 0; i < count; i++) {
+		debug("%s(reset_ctl[%d]=%p)\n", __func__, i, &reset_ctl[i]);
+
+		ret = reset_request(&reset_ctl[i]);
+		if (ret)
+			return ret;
+
+		ret = reset_assert(&reset_ctl[i]);
+		if (ret)
+			return ret;
+
+		ret = reset_free(&reset_ctl[i]);
+		if (ret)
+			return ret;
+	}
+	return 0;
+}
+
 UCLASS_DRIVER(reset) = {
 	.id		= UCLASS_RESET,
 	.name		= "reset",
diff --git a/include/reset.h b/include/reset.h
index e8e68b6..fa3b4a4 100644
--- a/include/reset.h
+++ b/include/reset.h
@@ -155,6 +155,17 @@ int reset_assert(struct reset_ctl *reset_ctl);
  */
 int reset_deassert(struct reset_ctl *reset_ctl);
 
+/**
+ * reset_assert_all - Request/Assert/Free resets.
+ *
+ * This function will request, assert and free array of clocks,
+ *
+ * @reset_ctl:	A reset struct array that was previously successfully
+ *		requested by reset_get_by_*().
+ * @count	Number of reset contained in the array
+ * @return 0 if OK, or a negative error code.
+ */
+int reset_assert_all(struct reset_ctl *reset_ctl, int count);
 #else
 static inline int reset_get_by_index(struct udevice *dev, int index,
 				     struct reset_ctl *reset_ctl)
@@ -182,6 +193,12 @@ static inline int reset_deassert(struct reset_ctl *reset_ctl)
 {
 	return 0;
 }
+
+static inline int reset_assert_all(struct reset_ctl *reset_ctl, int count)
+{
+	return 0;
+}
+
 #endif
 
 #endif
-- 
1.9.1

  parent reply	other threads:[~2017-06-01 11:36 UTC|newest]

Thread overview: 23+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-06-01 11:36 [U-Boot] [PATCH v5 00/11] usb: Extend ehci and ohci generic drivers patrice.chotard at st.com
2017-06-01 11:36 ` [U-Boot] [PATCH v5 01/11] reset: add reset_request() patrice.chotard at st.com
2017-06-01 11:36 ` [U-Boot] [PATCH v5 02/11] reset: add reset_count() patrice.chotard at st.com
2017-06-02  2:56   ` Simon Glass
2017-06-03  6:02   ` Marek Vasut
2017-06-05  9:34     ` Patrice CHOTARD
2017-06-05 11:18       ` Marek Vasut
2017-06-06 21:08         ` Simon Glass
2017-06-12  7:27           ` Patrice CHOTARD
2017-06-12  7:51             ` Patrice CHOTARD
2017-06-12 23:51               ` Simon Glass
2017-06-12  7:52             ` Patrice CHOTARD
2017-06-01 11:36 ` patrice.chotard at st.com [this message]
2017-06-01 11:36 ` [U-Boot] [PATCH v5 04/11] clk: add clk_count() patrice.chotard at st.com
2017-06-02  2:56   ` Simon Glass
2017-06-01 11:36 ` [U-Boot] [PATCH v5 05/11] clk: add clk_disable_all() patrice.chotard at st.com
2017-06-02  2:56   ` Simon Glass
2017-06-01 11:36 ` [U-Boot] [PATCH v5 06/11] usb: host: ehci-generic: replace printf() by error() patrice.chotard at st.com
2017-06-01 11:36 ` [U-Boot] [PATCH v5 07/11] usb: host: ehci-generic: add error path and .remove callback patrice.chotard at st.com
2017-06-01 11:36 ` [U-Boot] [PATCH v5 08/11] usb: host: ehci-generic: add generic PHY support patrice.chotard at st.com
2017-06-01 11:36 ` [U-Boot] [PATCH v5 09/11] usb: host: ohci-generic: add CLOCK support patrice.chotard at st.com
2017-06-01 11:36 ` [U-Boot] [PATCH v5 10/11] usb: host: ohci-generic: add RESET support patrice.chotard at st.com
2017-06-01 11:36 ` [U-Boot] [PATCH v5 11/11] usb: host: ohci-generic: add generic PHY support patrice.chotard at st.com

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=1496316982-16572-4-git-send-email-patrice.chotard@st.com \
    --to=patrice.chotard@st.com \
    --cc=u-boot@lists.denx.de \
    /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.