Palacios Public Git Repository

To checkout Palacios execute

  git clone http://v3vee.org/palacios/palacios.web/palacios.git
This will give you the master branch. You probably want the devel branch or one of the release branches. To switch to the devel branch, simply execute
  cd palacios
  git checkout --track -b devel origin/devel
The other branches are similar.


P-State more detailed hw info from ACPI
Peter Dinda [Sun, 31 Aug 2014 22:00:07 +0000 (17:00 -0500)]
linux_module/iface-pstate-ctrl.c

index 1559679..2864ea0 100644 (file)
@@ -1686,7 +1686,7 @@ static int pstate_hw_show(struct seq_file * file, void * v)
     }
 
 
-    seq_printf(file,"\nPstate\tCtrl\tKHz\n");
+    seq_printf(file,"\nPstate\tCtrl\tKHz\tmW\tuS(X)\tuS(B)\n");
     numstates = get_cpu_var(processors)->performance->state_count;
     if (!numstates) { 
        seq_printf(file,"UNKNOWN\n");
@@ -1694,10 +1694,13 @@ static int pstate_hw_show(struct seq_file * file, void * v)
        int i;
        for (i=0;i<numstates;i++) { 
            seq_printf(file,
-                      "%u\t%llx\t%llu\n",
+                      "%u\t%llx\t%llu\t%llu\t%llu\t%llu\n",
                       i, 
                       get_cpu_var(processors)->performance->states[i].control,
-                      get_cpu_var(processors)->performance->states[i].core_frequency*1000);
+                      get_cpu_var(processors)->performance->states[i].core_frequency*1000,
+                      get_cpu_var(processors)->performance->states[i].power,
+                      get_cpu_var(processors)->performance->states[i].transition_latency,
+                      get_cpu_var(processors)->performance->states[i].bus_master_latency);
        }
     }
     put_cpu_var(processors);