diff options
author | Michael Neuling <mikey@neuling.org> | 2017-02-17 21:23:19 +1100 |
---|---|---|
committer | Stewart Smith <stewart@linux.vnet.ibm.com> | 2017-02-22 17:40:45 +1100 |
commit | 18cbb7a8d5ec19a4ad1a054c3fd861002c04eddc (patch) | |
tree | 03fc9f1e632c4f8454c59660b81bcaa04a9707f9 | |
parent | f4d5deb6a546d393a228ec72159705c7cf83f224 (diff) | |
download | talos-skiboot-18cbb7a8d5ec19a4ad1a054c3fd861002c04eddc.tar.gz talos-skiboot-18cbb7a8d5ec19a4ad1a054c3fd861002c04eddc.zip |
slw: Print enabled stop states
On boot, print the enabled stop states. Output looks like:
[ 25.045201661,5] SLW: Enabling: stop0_lite
[ 25.045205017,5] SLW: Enabling: stop0
[ 25.045206549,5] SLW: Enabling: stop1_lite
[ 25.045208320,5] SLW: Enabling: stop1
[ 25.045209738,5] SLW: Enabling: stop2_lite
[ 25.045211467,5] SLW: Enabling: stop2
Signed-off-by: Michael Neuling <mikey@neuling.org>
Signed-off-by: Stewart Smith <stewart@linux.vnet.ibm.com>
-rw-r--r-- | hw/slw.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -770,6 +770,8 @@ void add_cpu_idle_state_properties(void) continue; } + prlog(PR_NOTICE, "SLW: Enabling: %s\n", states[i].name); + /* * If a state is supported add each of its property * to its corresponding property buffer. |