linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 1/2] reset: Add API to count number of reset available with device
@ 2017-02-22  5:24 Vivek Gautam
  2017-02-22  5:24 ` [PATCH 2/2] usb; dwc3: of-simple: Add support to get resets for the device Vivek Gautam
  2017-03-10 14:40 ` [PATCH 1/2] reset: Add API to count number of reset available with device Vivek Gautam
  0 siblings, 2 replies; 10+ messages in thread
From: Vivek Gautam @ 2017-02-22  5:24 UTC (permalink / raw)
  To: balbi, p.zabel
  Cc: gregkh, linux-usb, linux-kernel, linux-arm-msm, Vivek Gautam

Count number of reset phandles available with the device node
to know the resets a given device has.

Cc: Philipp Zabel <p.zabel@pengutronix.de>
Signed-off-by: Vivek Gautam <vivek.gautam@codeaurora.org>
---

Based on torvald's master branch.

 include/linux/reset.h | 16 ++++++++++++++++
 1 file changed, 16 insertions(+)

diff --git a/include/linux/reset.h b/include/linux/reset.h
index 5daff15722d3..88f63a640153 100644
--- a/include/linux/reset.h
+++ b/include/linux/reset.h
@@ -2,6 +2,7 @@
 #define _LINUX_RESET_H_
 
 #include <linux/device.h>
+#include <linux/of.h>
 
 struct reset_control;
 
@@ -234,6 +235,21 @@ static inline struct reset_control *of_reset_control_get_shared_by_index(
 }
 
 /**
+ * of_reset_control_get_count - Count number of resets available with a device
+ * @node: device to be reset by the controller
+ */
+static inline unsigned int of_reset_control_get_count(struct device_node *node)
+{
+	int count;
+
+	count = of_count_phandle_with_args(node, "resets", "#reset-cells");
+	if (count < 0)
+		return 0;
+
+	return count;
+}
+
+/**
  * devm_reset_control_get_exclusive - resource managed
  *                                    reset_control_get_exclusive()
  * @dev: device to be reset by the controller
-- 
The Qualcomm Innovation Center, Inc. is a member of the Code Aurora Forum,
a Linux Foundation Collaborative Project

^ permalink raw reply related	[flat|nested] 10+ messages in thread

end of thread, other threads:[~2017-03-16  5:42 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-02-22  5:24 [PATCH 1/2] reset: Add API to count number of reset available with device Vivek Gautam
2017-02-22  5:24 ` [PATCH 2/2] usb; dwc3: of-simple: Add support to get resets for the device Vivek Gautam
2017-03-10 11:24   ` Felipe Balbi
2017-03-10 12:18     ` Vivek Gautam
2017-03-10 14:06       ` Felipe Balbi
2017-03-15 10:45   ` Philipp Zabel
2017-03-16  5:34     ` Vivek Gautam
2017-03-10 14:40 ` [PATCH 1/2] reset: Add API to count number of reset available with device Vivek Gautam
2017-03-15 10:40   ` Philipp Zabel
2017-03-16  3:48     ` Vivek Gautam

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).