aboutsummaryrefslogtreecommitdiff
path: root/lib/libdevinfo/devinfo.h
diff options
context:
space:
mode:
authorWarner Losh <imp@FreeBSD.org>2002-09-20 02:16:33 +0000
committerWarner Losh <imp@FreeBSD.org>2002-09-20 02:16:33 +0000
commit43832002d3321106a32a78fe06fda22f2c34213d (patch)
treebbf4b3adcfce72b29e0bb46bc3df318d2f30042b /lib/libdevinfo/devinfo.h
parentdfade0043c728d4943e57f68035be42b5ca2a814 (diff)
Expose the new kernel data structures to libdevinfo:
o Added dd_pnpinfo, dd_location, dd_devflags, dd_flags and dd_state o Copy/initialize these as necessary. o Document the changes to the interface in devinfo.3.
Notes
Notes: svn path=/head/; revision=103662
Diffstat (limited to 'lib/libdevinfo/devinfo.h')
-rw-r--r--lib/libdevinfo/devinfo.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/lib/libdevinfo/devinfo.h b/lib/libdevinfo/devinfo.h
index 63188aa8e787..f31058a2353b 100644
--- a/lib/libdevinfo/devinfo.h
+++ b/lib/libdevinfo/devinfo.h
@@ -33,6 +33,17 @@
typedef __uintptr_t devinfo_handle_t;
#define DEVINFO_ROOT_DEVICE ((devinfo_handle_t)0)
+/*
+ * State of the device.
+ */
+/* XXX not sure if I want a copy here, or expose sys/bus.h */
+typedef enum devinfo_state {
+ DIS_NOTPRESENT, /* not probed or probe failed */
+ DIS_ALIVE, /* probe succeeded */
+ DIS_ATTACHED, /* attach method called */
+ DIS_BUSY /* device is open */
+} devinfo_state_t;
+
struct devinfo_dev {
devinfo_handle_t dd_handle; /* device handle */
devinfo_handle_t dd_parent; /* parent handle */
@@ -40,6 +51,11 @@ struct devinfo_dev {
char *dd_name; /* name of device */
char *dd_desc; /* device description */
char *dd_drivername; /* name of attached driver*/
+ char *dd_pnpinfo; /* pnp info from parent bus */
+ char *dd_location; /* Where bus thinks dev at */
+ uint32_t dd_devflags; /* API flags */
+ uint16_t dd_flags; /* internal dev flags */
+ devinfo_state_t dd_state; /* attacement state of dev */
};
struct devinfo_rman {