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 01/11] reset: add reset_request()
Date: Thu, 1 Jun 2017 13:36:12 +0200	[thread overview]
Message-ID: <1496316982-16572-2-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>

This is needed in error path to assert previously deasserted
reset by using a saved reset_ctl reference.

Signed-off-by: Patrice Chotard <patrice.chotard@st.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
---
v5:	_ none
v4:	_ none
v3:	_ none
v2:	_ none

 drivers/reset/reset-uclass.c | 9 +++++++++
 include/reset.h              | 9 +++++++++
 2 files changed, 18 insertions(+)

diff --git a/drivers/reset/reset-uclass.c b/drivers/reset/reset-uclass.c
index de3695f..4fd82b9 100644
--- a/drivers/reset/reset-uclass.c
+++ b/drivers/reset/reset-uclass.c
@@ -97,6 +97,15 @@ int reset_get_by_name(struct udevice *dev, const char *name,
 	return reset_get_by_index(dev, index, reset_ctl);
 }
 
+int reset_request(struct reset_ctl *reset_ctl)
+{
+	struct reset_ops *ops = reset_dev_ops(reset_ctl->dev);
+
+	debug("%s(reset_ctl=%p)\n", __func__, reset_ctl);
+
+	return ops->request(reset_ctl);
+}
+
 int reset_free(struct reset_ctl *reset_ctl)
 {
 	struct reset_ops *ops = reset_dev_ops(reset_ctl->dev);
diff --git a/include/reset.h b/include/reset.h
index f45fcf8..4f2e35f 100644
--- a/include/reset.h
+++ b/include/reset.h
@@ -100,6 +100,15 @@ int reset_get_by_name(struct udevice *dev, const char *name,
 		      struct reset_ctl *reset_ctl);
 
 /**
+ * reset_request - Request a reset signal.
+ *
+ * @reset_ctl:	A reset control struct.
+ *
+ * @return 0 if OK, or a negative error code.
+ */
+int reset_request(struct reset_ctl *reset_ctl);
+
+/**
  * reset_free - Free a previously requested reset signal.
  *
  * @reset_ctl:	A reset control struct that was previously successfully
-- 
1.9.1

  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 ` patrice.chotard at st.com [this message]
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 ` [U-Boot] [PATCH v5 03/11] reset: add reset_assert_all() patrice.chotard at st.com
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-2-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.