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 v4 05/11] clk: add clk_disable_all()
Date: Wed, 24 May 2017 15:01:51 +0200	[thread overview]
Message-ID: <1495630917-25272-6-git-send-email-patrice.chotard@st.com> (raw)
In-Reply-To: <1495630917-25272-1-git-send-email-patrice.chotard@st.com>

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

Add clk_disable_all() method which Request/Disable/Free an
array of clocks that has been previously requested by
clk_request/get_by_*()

Signed-off-by: Patrice Chotard <patrice.chotard@st.com>
---

v4:	_ add clk_disable_all() method as suggested by Marek Vasut 
	  and Simon Glass

 drivers/clk/clk-uclass.c | 22 ++++++++++++++++++++++
 include/clk.h            | 10 ++++++++++
 2 files changed, 32 insertions(+)

diff --git a/drivers/clk/clk-uclass.c b/drivers/clk/clk-uclass.c
index 5c4dd19..44bac0d 100644
--- a/drivers/clk/clk-uclass.c
+++ b/drivers/clk/clk-uclass.c
@@ -201,6 +201,28 @@ int clk_disable(struct clk *clk)
 	return ops->disable(clk);
 }
 
+int clk_disable_all(struct clk *clk, int count)
+{
+	int i, ret;
+
+	debug("%s(clk=%p count=%d)\n", __func__, clk, count);
+
+	for (i = 0; i < count; i++) {
+		ret = clk_request(clk->dev, &clk[i]);
+		if (ret && ret != -ENOSYS)
+			return ret;
+
+		ret = clk_disable(&clk[i]);
+		if (ret && ret != -ENOSYS)
+			return ret;
+
+		ret = clk_free(&clk[i]);
+		if (ret && ret != -ENOSYS)
+			return ret;
+	}
+	return 0;
+}
+
 UCLASS_DRIVER(clk) = {
 	.id		= UCLASS_CLK,
 	.name		= "clk",
diff --git a/include/clk.h b/include/clk.h
index 801920c..25a3f32 100644
--- a/include/clk.h
+++ b/include/clk.h
@@ -186,6 +186,16 @@ int clk_enable(struct clk *clk);
  */
 int clk_disable(struct clk *clk);
 
+/**
+ * clk_disable_all() - Request/Disable (turn off)/Free clocks.
+ *
+ * @clk:	A clock struct array that was previously successfully
+ *		requested by clk_request/get_by_*().
+ * @count	Number of clock contained in the array
+ * @return zero on success, or -ve error code.
+ */
+int clk_disable_all(struct clk *clk, int count);
+
 int soc_clk_dump(void);
 
 #endif
-- 
1.9.1

  parent reply	other threads:[~2017-05-24 13:01 UTC|newest]

Thread overview: 26+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-05-24 13:01 [U-Boot] [PATCH v4 00/11] usb: Extend ehci and ohci generic drivers patrice.chotard at st.com
2017-05-24 13:01 ` [U-Boot] [PATCH v4 01/11] reset: add reset_request() patrice.chotard at st.com
2017-05-24 13:01 ` [U-Boot] [PATCH v4 02/11] reset: add reset_count() patrice.chotard at st.com
2017-06-01  3:10   ` Simon Glass
2017-06-01  7:49     ` Patrice CHOTARD
2017-05-24 13:01 ` [U-Boot] [PATCH v4 03/11] reset: add reset_assert_all() patrice.chotard at st.com
2017-06-01  3:10   ` Simon Glass
2017-05-24 13:01 ` [U-Boot] [PATCH v4 04/11] clk: add clk_count() patrice.chotard at st.com
2017-06-01  3:10   ` Simon Glass
2017-06-01  7:56     ` Patrice CHOTARD
2017-06-05  8:59       ` Patrice CHOTARD
2017-05-24 13:01 ` patrice.chotard at st.com [this message]
2017-05-24 13:01 ` [U-Boot] [PATCH v4 06/11] usb: host: ehci-generic: replace printf() by error() patrice.chotard at st.com
2017-05-24 13:01 ` [U-Boot] [PATCH v4 07/11] usb: host: ehci-generic: add error path and .remove callback patrice.chotard at st.com
2017-06-01  3:10   ` Simon Glass
2017-05-24 13:01 ` [U-Boot] [PATCH v4 08/11] usb: host: ehci-generic: add generic PHY support patrice.chotard at st.com
2017-06-01  3:10   ` Simon Glass
2017-05-24 13:01 ` [U-Boot] [PATCH v4 09/11] usb: host: ohci-generic: add CLOCK support patrice.chotard at st.com
2017-06-01  3:10   ` Simon Glass
2017-05-24 13:01 ` [U-Boot] [PATCH v4 10/11] usb: host: ohci-generic: add RESET support patrice.chotard at st.com
2017-06-01  3:11   ` Simon Glass
2017-05-24 13:01 ` [U-Boot] [PATCH v4 11/11] usb: host: ohci-generic: add generic PHY support patrice.chotard at st.com
2017-06-01  3:11   ` Simon Glass
2017-05-24 13:04 ` [U-Boot] [PATCH v4 00/11] usb: Extend ehci and ohci generic drivers Patrice CHOTARD
2017-05-24 13:07 patrice.chotard at st.com
2017-05-24 13:07 ` [U-Boot] [PATCH v4 05/11] clk: add clk_disable_all() patrice.chotard at st.com
2017-06-01  3:10   ` Simon Glass

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=1495630917-25272-6-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.