linuxppc-dev.lists.ozlabs.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 1/2 v2] [OF] Add of_device_is_available function
@ 2008-03-01 14:16 Josh Boyer
  2008-03-01 14:17 ` [PATCH 2/2 v2] [POWERPC] Ignore disabled serial ports Josh Boyer
                   ` (3 more replies)
  0 siblings, 4 replies; 21+ messages in thread
From: Josh Boyer @ 2008-03-01 14:16 UTC (permalink / raw)
  To: paulus, sfr; +Cc: linuxppc-dev

IEEE 1275 defined a standard "status" property to indicate the
operational status of a device.  The property has four possible values:
okay, disabled, fail, fail-xxx.  The absence of this property means the
operational status of the device is unknown or okay.

This adds a function called of_device_is_available that checks the state
of the status property of a device.  If the property is absent or set to
either "okay" or "ok", it returns 1.  Otherwise it returns 0.

Signed-off-by: Josh Boyer <jwboyer@linux.vnet.ibm.com>

---
 drivers/of/base.c  |   26 ++++++++++++++++++++++++++
 include/linux/of.h |    1 +
 2 files changed, 27 insertions(+)

--- linux-2.6.orig/drivers/of/base.c
+++ linux-2.6/drivers/of/base.c
@@ -117,6 +117,32 @@ int of_device_is_compatible(const struct
 EXPORT_SYMBOL(of_device_is_compatible);
 
 /**
+ *  of_device_is_available - check if a device is available for use
+ *
+ *  @device: Node to check for availability
+ *
+ *  Returns 1 if the status property is absent or set to "okay" or
"ok",
+ *  0 otherwise
+ */
+int of_device_is_available(const struct device_node *device)
+{
+	const char *status;
+	int statlen;
+
+	status = of_get_property(device, "status", &statlen);
+	if (status == NULL)
+		return 1;
+
+	if (statlen > 0) {
+		if (!strncmp(status, "okay", 4) || !strncmp(status,
"ok", 2))
+			return 1;
+	}
+
+	return 0;
+}
+EXPORT_SYMBOL(of_device_is_available);
+
+/**
  *	of_get_parent - Get a node's parent if any
  *	@node:	Node to get parent
  *
--- linux-2.6.orig/include/linux/of.h
+++ linux-2.6/include/linux/of.h
@@ -62,6 +62,7 @@ extern struct property *of_find_property
 					 int *lenp);
 extern int of_device_is_compatible(const struct device_node *device,
 				   const char *);
+extern int of_device_is_available(const struct device_node *device);
 extern const void *of_get_property(const struct device_node *node,
 				const char *name,
 				int *lenp);

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

end of thread, other threads:[~2008-03-26 14:29 UTC | newest]

Thread overview: 21+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-03-01 14:16 [PATCH 1/2 v2] [OF] Add of_device_is_available function Josh Boyer
2008-03-01 14:17 ` [PATCH 2/2 v2] [POWERPC] Ignore disabled serial ports Josh Boyer
2008-03-03  3:43   ` Arnd Bergmann
2008-03-03  4:43     ` Josh Boyer
2008-03-03 19:09       ` Scott Wood
2008-03-03 19:21         ` Josh Boyer
2008-03-03 21:40           ` Nathan Lynch
2008-03-04  0:42             ` Arnd Bergmann
2008-03-01 14:41 ` [PATCH 3/2][NEWEMAC] Use status property for unused/unwired EMACs Josh Boyer
2008-03-01 21:33   ` Benjamin Herrenschmidt
2008-03-01 23:50     ` Josh Boyer
2008-03-02 19:43   ` Sean MacLennan
2008-03-02 22:23     ` Josh Boyer
2008-03-01 22:02 ` [PATCH 1/2 v2] [OF] Add of_device_is_available function Stephen Rothwell
2008-03-01 22:25   ` Josh Boyer
2008-03-01 23:48 ` [RESEND] " Josh Boyer
2008-03-24 11:39   ` Paul Mackerras
2008-03-24 11:45     ` Josh Boyer
2008-03-25  4:47     ` Sean MacLennan
2008-03-25 11:51       ` Josh Boyer
2008-03-26 14:25         ` Segher Boessenkool

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).