projects
/
firefly-linux-kernel-4.4.55.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
dbac993
)
mei: export hbm features to debugfs under devstate
author
Tomas Winkler
<tomas.winkler@intel.com>
Thu, 21 May 2015 10:35:48 +0000
(13:35 +0300)
committer
Greg Kroah-Hartman
<gregkh@linuxfoundation.org>
Sun, 24 May 2015 18:20:20 +0000
(11:20 -0700)
Signed-off-by: Tomas Winkler <tomas.winkler@intel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/misc/mei/debugfs.c
patch
|
blob
|
history
diff --git
a/drivers/misc/mei/debugfs.c
b/drivers/misc/mei/debugfs.c
index 88f5fd0b6dd7d542bcd8b49a70d3649689a6c15c..eb868341247fba3fc4fafb060ddb4781ffc8eb79 100644
(file)
--- a/
drivers/misc/mei/debugfs.c
+++ b/
drivers/misc/mei/debugfs.c
@@
-149,6
+149,13
@@
static ssize_t mei_dbgfs_read_devstate(struct file *fp, char __user *ubuf,
mei_dev_state_str(dev->dev_state));
pos += scnprintf(buf + pos, bufsz - pos, "hbm: %s\n",
mei_hbm_state_str(dev->hbm_state));
+
+ if (dev->hbm_state == MEI_HBM_STARTED) {
+ pos += scnprintf(buf + pos, bufsz - pos, "hbm features:\n");
+ pos += scnprintf(buf + pos, bufsz - pos, "\tPG: %01d\n",
+ dev->hbm_f_pg_supported);
+ }
+
pos += scnprintf(buf + pos, bufsz - pos, "pg: %s, %s\n",
mei_pg_is_enabled(dev) ? "ENABLED" : "DISABLED",
mei_pg_state_str(mei_pg_state(dev)));