diff options
| -rw-r--r-- | Documentation/trace/events-power.txt | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/Documentation/trace/events-power.txt b/Documentation/trace/events-power.txt index e1498ff8cf94..3bd33b8dc7c4 100644 --- a/Documentation/trace/events-power.txt +++ b/Documentation/trace/events-power.txt | |||
| @@ -63,3 +63,34 @@ power_domain_target "%s state=%lu cpu_id=%lu" | |||
| 63 | The first parameter gives the power domain name (e.g. "mpu_pwrdm"). | 63 | The first parameter gives the power domain name (e.g. "mpu_pwrdm"). |
| 64 | The second parameter is the power domain target state. | 64 | The second parameter is the power domain target state. |
| 65 | 65 | ||
| 66 | 4. PM QoS events | ||
| 67 | ================ | ||
| 68 | The PM QoS events are used for QoS add/update/remove request and for | ||
| 69 | target/flags update. | ||
| 70 | |||
| 71 | pm_qos_add_request "pm_qos_class=%s value=%d" | ||
| 72 | pm_qos_update_request "pm_qos_class=%s value=%d" | ||
| 73 | pm_qos_remove_request "pm_qos_class=%s value=%d" | ||
| 74 | pm_qos_update_request_timeout "pm_qos_class=%s value=%d, timeout_us=%ld" | ||
| 75 | |||
| 76 | The first parameter gives the QoS class name (e.g. "CPU_DMA_LATENCY"). | ||
| 77 | The second parameter is value to be added/updated/removed. | ||
| 78 | The third parameter is timeout value in usec. | ||
| 79 | |||
| 80 | pm_qos_update_target "action=%s prev_value=%d curr_value=%d" | ||
| 81 | pm_qos_update_flags "action=%s prev_value=0x%x curr_value=0x%x" | ||
| 82 | |||
| 83 | The first parameter gives the QoS action name (e.g. "ADD_REQ"). | ||
| 84 | The second parameter is the previous QoS value. | ||
| 85 | The third parameter is the current QoS value to update. | ||
| 86 | |||
| 87 | And, there are also events used for device PM QoS add/update/remove request. | ||
| 88 | |||
| 89 | dev_pm_qos_add_request "device=%s type=%s new_value=%d" | ||
| 90 | dev_pm_qos_update_request "device=%s type=%s new_value=%d" | ||
| 91 | dev_pm_qos_remove_request "device=%s type=%s new_value=%d" | ||
| 92 | |||
| 93 | The first parameter gives the device name which tries to add/update/remove | ||
| 94 | QoS requests. | ||
| 95 | The second parameter gives the request type (e.g. "DEV_PM_QOS_LATENCY"). | ||
| 96 | The third parameter is value to be added/updated/removed. | ||
