diff options
Diffstat (limited to 'kernel')
| -rw-r--r-- | kernel/pm_qos_params.c | 214 |
1 files changed, 103 insertions, 111 deletions
diff --git a/kernel/pm_qos_params.c b/kernel/pm_qos_params.c index 3db49b9ca374..a1aea040eb57 100644 --- a/kernel/pm_qos_params.c +++ b/kernel/pm_qos_params.c | |||
| @@ -2,7 +2,7 @@ | |||
| 2 | * This module exposes the interface to kernel space for specifying | 2 | * This module exposes the interface to kernel space for specifying |
| 3 | * QoS dependencies. It provides infrastructure for registration of: | 3 | * QoS dependencies. It provides infrastructure for registration of: |
| 4 | * | 4 | * |
| 5 | * Dependents on a QoS value : register requirements | 5 | * Dependents on a QoS value : register requests |
| 6 | * Watchers of QoS value : get notified when target QoS value changes | 6 | * Watchers of QoS value : get notified when target QoS value changes |
| 7 | * | 7 | * |
| 8 | * This QoS design is best effort based. Dependents register their QoS needs. | 8 | * This QoS design is best effort based. Dependents register their QoS needs. |
| @@ -14,19 +14,21 @@ | |||
| 14 | * timeout: usec <-- currently not used. | 14 | * timeout: usec <-- currently not used. |
| 15 | * throughput: kbs (kilo byte / sec) | 15 | * throughput: kbs (kilo byte / sec) |
| 16 | * | 16 | * |
| 17 | * There are lists of pm_qos_objects each one wrapping requirements, notifiers | 17 | * There are lists of pm_qos_objects each one wrapping requests, notifiers |
| 18 | * | 18 | * |
| 19 | * User mode requirements on a QOS parameter register themselves to the | 19 | * User mode requests on a QOS parameter register themselves to the |
| 20 | * subsystem by opening the device node /dev/... and writing there request to | 20 | * subsystem by opening the device node /dev/... and writing there request to |
| 21 | * the node. As long as the process holds a file handle open to the node the | 21 | * the node. As long as the process holds a file handle open to the node the |
| 22 | * client continues to be accounted for. Upon file release the usermode | 22 | * client continues to be accounted for. Upon file release the usermode |
| 23 | * requirement is removed and a new qos target is computed. This way when the | 23 | * request is removed and a new qos target is computed. This way when the |
| 24 | * requirement that the application has is cleaned up when closes the file | 24 | * request that the application has is cleaned up when closes the file |
| 25 | * pointer or exits the pm_qos_object will get an opportunity to clean up. | 25 | * pointer or exits the pm_qos_object will get an opportunity to clean up. |
| 26 | * | 26 | * |
| 27 | * Mark Gross <mgross@linux.intel.com> | 27 | * Mark Gross <mgross@linux.intel.com> |
| 28 | */ | 28 | */ |
| 29 | 29 | ||
| 30 | /*#define DEBUG*/ | ||
| 31 | |||
| 30 | #include <linux/pm_qos_params.h> | 32 | #include <linux/pm_qos_params.h> |
| 31 | #include <linux/sched.h> | 33 | #include <linux/sched.h> |
| 32 | #include <linux/spinlock.h> | 34 | #include <linux/spinlock.h> |
| @@ -42,25 +44,25 @@ | |||
| 42 | #include <linux/uaccess.h> | 44 | #include <linux/uaccess.h> |
| 43 | 45 | ||
| 44 | /* | 46 | /* |
| 45 | * locking rule: all changes to requirements or notifiers lists | 47 | * locking rule: all changes to requests or notifiers lists |
| 46 | * or pm_qos_object list and pm_qos_objects need to happen with pm_qos_lock | 48 | * or pm_qos_object list and pm_qos_objects need to happen with pm_qos_lock |
| 47 | * held, taken with _irqsave. One lock to rule them all | 49 | * held, taken with _irqsave. One lock to rule them all |
| 48 | */ | 50 | */ |
| 49 | struct requirement_list { | 51 | struct pm_qos_request_list { |
| 50 | struct list_head list; | 52 | struct list_head list; |
| 51 | union { | 53 | union { |
| 52 | s32 value; | 54 | s32 value; |
| 53 | s32 usec; | 55 | s32 usec; |
| 54 | s32 kbps; | 56 | s32 kbps; |
| 55 | }; | 57 | }; |
| 56 | char *name; | 58 | int pm_qos_class; |
| 57 | }; | 59 | }; |
| 58 | 60 | ||
| 59 | static s32 max_compare(s32 v1, s32 v2); | 61 | static s32 max_compare(s32 v1, s32 v2); |
| 60 | static s32 min_compare(s32 v1, s32 v2); | 62 | static s32 min_compare(s32 v1, s32 v2); |
| 61 | 63 | ||
| 62 | struct pm_qos_object { | 64 | struct pm_qos_object { |
| 63 | struct requirement_list requirements; | 65 | struct pm_qos_request_list requests; |
| 64 | struct blocking_notifier_head *notifiers; | 66 | struct blocking_notifier_head *notifiers; |
| 65 | struct miscdevice pm_qos_power_miscdev; | 67 | struct miscdevice pm_qos_power_miscdev; |
| 66 | char *name; | 68 | char *name; |
| @@ -72,7 +74,7 @@ struct pm_qos_object { | |||
| 72 | static struct pm_qos_object null_pm_qos; | 74 | static struct pm_qos_object null_pm_qos; |
| 73 | static BLOCKING_NOTIFIER_HEAD(cpu_dma_lat_notifier); | 75 | static BLOCKING_NOTIFIER_HEAD(cpu_dma_lat_notifier); |
| 74 | static struct pm_qos_object cpu_dma_pm_qos = { | 76 | static struct pm_qos_object cpu_dma_pm_qos = { |
| 75 | .requirements = {LIST_HEAD_INIT(cpu_dma_pm_qos.requirements.list)}, | 77 | .requests = {LIST_HEAD_INIT(cpu_dma_pm_qos.requests.list)}, |
| 76 | .notifiers = &cpu_dma_lat_notifier, | 78 | .notifiers = &cpu_dma_lat_notifier, |
| 77 | .name = "cpu_dma_latency", | 79 | .name = "cpu_dma_latency", |
| 78 | .default_value = 2000 * USEC_PER_SEC, | 80 | .default_value = 2000 * USEC_PER_SEC, |
| @@ -82,7 +84,7 @@ static struct pm_qos_object cpu_dma_pm_qos = { | |||
| 82 | 84 | ||
| 83 | static BLOCKING_NOTIFIER_HEAD(network_lat_notifier); | 85 | static BLOCKING_NOTIFIER_HEAD(network_lat_notifier); |
| 84 | static struct pm_qos_object network_lat_pm_qos = { | 86 | static struct pm_qos_object network_lat_pm_qos = { |
| 85 | .requirements = {LIST_HEAD_INIT(network_lat_pm_qos.requirements.list)}, | 87 | .requests = {LIST_HEAD_INIT(network_lat_pm_qos.requests.list)}, |
| 86 | .notifiers = &network_lat_notifier, | 88 | .notifiers = &network_lat_notifier, |
| 87 | .name = "network_latency", | 89 | .name = "network_latency", |
| 88 | .default_value = 2000 * USEC_PER_SEC, | 90 | .default_value = 2000 * USEC_PER_SEC, |
| @@ -93,8 +95,7 @@ static struct pm_qos_object network_lat_pm_qos = { | |||
| 93 | 95 | ||
| 94 | static BLOCKING_NOTIFIER_HEAD(network_throughput_notifier); | 96 | static BLOCKING_NOTIFIER_HEAD(network_throughput_notifier); |
| 95 | static struct pm_qos_object network_throughput_pm_qos = { | 97 | static struct pm_qos_object network_throughput_pm_qos = { |
| 96 | .requirements = | 98 | .requests = {LIST_HEAD_INIT(network_throughput_pm_qos.requests.list)}, |
| 97 | {LIST_HEAD_INIT(network_throughput_pm_qos.requirements.list)}, | ||
| 98 | .notifiers = &network_throughput_notifier, | 99 | .notifiers = &network_throughput_notifier, |
| 99 | .name = "network_throughput", | 100 | .name = "network_throughput", |
| 100 | .default_value = 0, | 101 | .default_value = 0, |
| @@ -135,31 +136,34 @@ static s32 min_compare(s32 v1, s32 v2) | |||
| 135 | } | 136 | } |
| 136 | 137 | ||
| 137 | 138 | ||
| 138 | static void update_target(int target) | 139 | static void update_target(int pm_qos_class) |
| 139 | { | 140 | { |
| 140 | s32 extreme_value; | 141 | s32 extreme_value; |
| 141 | struct requirement_list *node; | 142 | struct pm_qos_request_list *node; |
| 142 | unsigned long flags; | 143 | unsigned long flags; |
| 143 | int call_notifier = 0; | 144 | int call_notifier = 0; |
| 144 | 145 | ||
| 145 | spin_lock_irqsave(&pm_qos_lock, flags); | 146 | spin_lock_irqsave(&pm_qos_lock, flags); |
| 146 | extreme_value = pm_qos_array[target]->default_value; | 147 | extreme_value = pm_qos_array[pm_qos_class]->default_value; |
| 147 | list_for_each_entry(node, | 148 | list_for_each_entry(node, |
| 148 | &pm_qos_array[target]->requirements.list, list) { | 149 | &pm_qos_array[pm_qos_class]->requests.list, list) { |
| 149 | extreme_value = pm_qos_array[target]->comparitor( | 150 | extreme_value = pm_qos_array[pm_qos_class]->comparitor( |
| 150 | extreme_value, node->value); | 151 | extreme_value, node->value); |
| 151 | } | 152 | } |
| 152 | if (atomic_read(&pm_qos_array[target]->target_value) != extreme_value) { | 153 | if (atomic_read(&pm_qos_array[pm_qos_class]->target_value) != |
| 154 | extreme_value) { | ||
| 153 | call_notifier = 1; | 155 | call_notifier = 1; |
| 154 | atomic_set(&pm_qos_array[target]->target_value, extreme_value); | 156 | atomic_set(&pm_qos_array[pm_qos_class]->target_value, |
| 155 | pr_debug(KERN_ERR "new target for qos %d is %d\n", target, | 157 | extreme_value); |
| 156 | atomic_read(&pm_qos_array[target]->target_value)); | 158 | pr_debug(KERN_ERR "new target for qos %d is %d\n", pm_qos_class, |
| 159 | atomic_read(&pm_qos_array[pm_qos_class]->target_value)); | ||
| 157 | } | 160 | } |
| 158 | spin_unlock_irqrestore(&pm_qos_lock, flags); | 161 | spin_unlock_irqrestore(&pm_qos_lock, flags); |
| 159 | 162 | ||
| 160 | if (call_notifier) | 163 | if (call_notifier) |
| 161 | blocking_notifier_call_chain(pm_qos_array[target]->notifiers, | 164 | blocking_notifier_call_chain( |
| 162 | (unsigned long) extreme_value, NULL); | 165 | pm_qos_array[pm_qos_class]->notifiers, |
| 166 | (unsigned long) extreme_value, NULL); | ||
| 163 | } | 167 | } |
| 164 | 168 | ||
| 165 | static int register_pm_qos_misc(struct pm_qos_object *qos) | 169 | static int register_pm_qos_misc(struct pm_qos_object *qos) |
| @@ -185,125 +189,110 @@ static int find_pm_qos_object_by_minor(int minor) | |||
| 185 | } | 189 | } |
| 186 | 190 | ||
| 187 | /** | 191 | /** |
| 188 | * pm_qos_requirement - returns current system wide qos expectation | 192 | * pm_qos_request - returns current system wide qos expectation |
| 189 | * @pm_qos_class: identification of which qos value is requested | 193 | * @pm_qos_class: identification of which qos value is requested |
| 190 | * | 194 | * |
| 191 | * This function returns the current target value in an atomic manner. | 195 | * This function returns the current target value in an atomic manner. |
| 192 | */ | 196 | */ |
| 193 | int pm_qos_requirement(int pm_qos_class) | 197 | int pm_qos_request(int pm_qos_class) |
| 194 | { | 198 | { |
| 195 | return atomic_read(&pm_qos_array[pm_qos_class]->target_value); | 199 | return atomic_read(&pm_qos_array[pm_qos_class]->target_value); |
| 196 | } | 200 | } |
| 197 | EXPORT_SYMBOL_GPL(pm_qos_requirement); | 201 | EXPORT_SYMBOL_GPL(pm_qos_request); |
| 198 | 202 | ||
| 199 | /** | 203 | /** |
| 200 | * pm_qos_add_requirement - inserts new qos request into the list | 204 | * pm_qos_add_request - inserts new qos request into the list |
| 201 | * @pm_qos_class: identifies which list of qos request to us | 205 | * @pm_qos_class: identifies which list of qos request to us |
| 202 | * @name: identifies the request | ||
| 203 | * @value: defines the qos request | 206 | * @value: defines the qos request |
| 204 | * | 207 | * |
| 205 | * This function inserts a new entry in the pm_qos_class list of requested qos | 208 | * This function inserts a new entry in the pm_qos_class list of requested qos |
| 206 | * performance characteristics. It recomputes the aggregate QoS expectations | 209 | * performance characteristics. It recomputes the aggregate QoS expectations |
| 207 | * for the pm_qos_class of parameters. | 210 | * for the pm_qos_class of parameters, and returns the pm_qos_request list |
| 211 | * element as a handle for use in updating and removal. Call needs to save | ||
| 212 | * this handle for later use. | ||
| 208 | */ | 213 | */ |
| 209 | int pm_qos_add_requirement(int pm_qos_class, char *name, s32 value) | 214 | struct pm_qos_request_list *pm_qos_add_request(int pm_qos_class, s32 value) |
| 210 | { | 215 | { |
| 211 | struct requirement_list *dep; | 216 | struct pm_qos_request_list *dep; |
| 212 | unsigned long flags; | 217 | unsigned long flags; |
| 213 | 218 | ||
| 214 | dep = kzalloc(sizeof(struct requirement_list), GFP_KERNEL); | 219 | dep = kzalloc(sizeof(struct pm_qos_request_list), GFP_KERNEL); |
| 215 | if (dep) { | 220 | if (dep) { |
| 216 | if (value == PM_QOS_DEFAULT_VALUE) | 221 | if (value == PM_QOS_DEFAULT_VALUE) |
| 217 | dep->value = pm_qos_array[pm_qos_class]->default_value; | 222 | dep->value = pm_qos_array[pm_qos_class]->default_value; |
| 218 | else | 223 | else |
| 219 | dep->value = value; | 224 | dep->value = value; |
| 220 | dep->name = kstrdup(name, GFP_KERNEL); | 225 | dep->pm_qos_class = pm_qos_class; |
| 221 | if (!dep->name) | ||
| 222 | goto cleanup; | ||
| 223 | 226 | ||
| 224 | spin_lock_irqsave(&pm_qos_lock, flags); | 227 | spin_lock_irqsave(&pm_qos_lock, flags); |
| 225 | list_add(&dep->list, | 228 | list_add(&dep->list, |
| 226 | &pm_qos_array[pm_qos_class]->requirements.list); | 229 | &pm_qos_array[pm_qos_class]->requests.list); |
| 227 | spin_unlock_irqrestore(&pm_qos_lock, flags); | 230 | spin_unlock_irqrestore(&pm_qos_lock, flags); |
| 228 | update_target(pm_qos_class); | 231 | update_target(pm_qos_class); |
| 229 | |||
| 230 | return 0; | ||
| 231 | } | 232 | } |
| 232 | 233 | ||
| 233 | cleanup: | 234 | return dep; |
| 234 | kfree(dep); | ||
| 235 | return -ENOMEM; | ||
| 236 | } | 235 | } |
| 237 | EXPORT_SYMBOL_GPL(pm_qos_add_requirement); | 236 | EXPORT_SYMBOL_GPL(pm_qos_add_request); |
| 238 | 237 | ||
| 239 | /** | 238 | /** |
| 240 | * pm_qos_update_requirement - modifies an existing qos request | 239 | * pm_qos_update_request - modifies an existing qos request |
| 241 | * @pm_qos_class: identifies which list of qos request to us | 240 | * @pm_qos_req : handle to list element holding a pm_qos request to use |
| 242 | * @name: identifies the request | ||
| 243 | * @value: defines the qos request | 241 | * @value: defines the qos request |
| 244 | * | 242 | * |
| 245 | * Updates an existing qos requirement for the pm_qos_class of parameters along | 243 | * Updates an existing qos request for the pm_qos_class of parameters along |
| 246 | * with updating the target pm_qos_class value. | 244 | * with updating the target pm_qos_class value. |
| 247 | * | 245 | * |
| 248 | * If the named request isn't in the list then no change is made. | 246 | * Attempts are made to make this code callable on hot code paths. |
| 249 | */ | 247 | */ |
| 250 | int pm_qos_update_requirement(int pm_qos_class, char *name, s32 new_value) | 248 | void pm_qos_update_request(struct pm_qos_request_list *pm_qos_req, |
| 249 | s32 new_value) | ||
| 251 | { | 250 | { |
| 252 | unsigned long flags; | 251 | unsigned long flags; |
| 253 | struct requirement_list *node; | ||
| 254 | int pending_update = 0; | 252 | int pending_update = 0; |
| 253 | s32 temp; | ||
| 255 | 254 | ||
| 256 | spin_lock_irqsave(&pm_qos_lock, flags); | 255 | spin_lock_irqsave(&pm_qos_lock, flags); |
| 257 | list_for_each_entry(node, | 256 | if (new_value == PM_QOS_DEFAULT_VALUE) |
| 258 | &pm_qos_array[pm_qos_class]->requirements.list, list) { | 257 | temp = pm_qos_array[pm_qos_req->pm_qos_class]->default_value; |
| 259 | if (strcmp(node->name, name) == 0) { | 258 | else |
| 260 | if (new_value == PM_QOS_DEFAULT_VALUE) | 259 | temp = new_value; |
| 261 | node->value = | 260 | |
| 262 | pm_qos_array[pm_qos_class]->default_value; | 261 | if (temp != pm_qos_req->value) { |
| 263 | else | 262 | pending_update = 1; |
| 264 | node->value = new_value; | 263 | pm_qos_req->value = temp; |
| 265 | pending_update = 1; | ||
| 266 | break; | ||
| 267 | } | ||
| 268 | } | 264 | } |
| 269 | spin_unlock_irqrestore(&pm_qos_lock, flags); | 265 | spin_unlock_irqrestore(&pm_qos_lock, flags); |
| 270 | if (pending_update) | 266 | if (pending_update) |
| 271 | update_target(pm_qos_class); | 267 | update_target(pm_qos_req->pm_qos_class); |
| 272 | |||
| 273 | return 0; | ||
| 274 | } | 268 | } |
| 275 | EXPORT_SYMBOL_GPL(pm_qos_update_requirement); | 269 | EXPORT_SYMBOL_GPL(pm_qos_update_request); |
| 276 | 270 | ||
| 277 | /** | 271 | /** |
| 278 | * pm_qos_remove_requirement - modifies an existing qos request | 272 | * pm_qos_remove_request - modifies an existing qos request |
| 279 | * @pm_qos_class: identifies which list of qos request to us | 273 | * @pm_qos_req: handle to request list element |
| 280 | * @name: identifies the request | ||
| 281 | * | 274 | * |
| 282 | * Will remove named qos request from pm_qos_class list of parameters and | 275 | * Will remove pm qos request from the list of requests and |
| 283 | * recompute the current target value for the pm_qos_class. | 276 | * recompute the current target value for the pm_qos_class. Call this |
| 277 | * on slow code paths. | ||
| 284 | */ | 278 | */ |
| 285 | void pm_qos_remove_requirement(int pm_qos_class, char *name) | 279 | void pm_qos_remove_request(struct pm_qos_request_list *pm_qos_req) |
| 286 | { | 280 | { |
| 287 | unsigned long flags; | 281 | unsigned long flags; |
| 288 | struct requirement_list *node; | 282 | int qos_class; |
| 289 | int pending_update = 0; | 283 | |
| 284 | if (pm_qos_req == NULL) | ||
| 285 | return; | ||
| 286 | /* silent return to keep pcm code cleaner */ | ||
| 290 | 287 | ||
| 288 | qos_class = pm_qos_req->pm_qos_class; | ||
| 291 | spin_lock_irqsave(&pm_qos_lock, flags); | 289 | spin_lock_irqsave(&pm_qos_lock, flags); |
| 292 | list_for_each_entry(node, | 290 | list_del(&pm_qos_req->list); |
| 293 | &pm_qos_array[pm_qos_class]->requirements.list, list) { | 291 | kfree(pm_qos_req); |
| 294 | if (strcmp(node->name, name) == 0) { | ||
| 295 | kfree(node->name); | ||
| 296 | list_del(&node->list); | ||
| 297 | kfree(node); | ||
| 298 | pending_update = 1; | ||
| 299 | break; | ||
| 300 | } | ||
| 301 | } | ||
| 302 | spin_unlock_irqrestore(&pm_qos_lock, flags); | 292 | spin_unlock_irqrestore(&pm_qos_lock, flags); |
| 303 | if (pending_update) | 293 | update_target(qos_class); |
| 304 | update_target(pm_qos_class); | ||
| 305 | } | 294 | } |
| 306 | EXPORT_SYMBOL_GPL(pm_qos_remove_requirement); | 295 | EXPORT_SYMBOL_GPL(pm_qos_remove_request); |
| 307 | 296 | ||
| 308 | /** | 297 | /** |
| 309 | * pm_qos_add_notifier - sets notification entry for changes to target value | 298 | * pm_qos_add_notifier - sets notification entry for changes to target value |
| @@ -313,7 +302,7 @@ EXPORT_SYMBOL_GPL(pm_qos_remove_requirement); | |||
| 313 | * will register the notifier into a notification chain that gets called | 302 | * will register the notifier into a notification chain that gets called |
| 314 | * upon changes to the pm_qos_class target value. | 303 | * upon changes to the pm_qos_class target value. |
| 315 | */ | 304 | */ |
| 316 | int pm_qos_add_notifier(int pm_qos_class, struct notifier_block *notifier) | 305 | int pm_qos_add_notifier(int pm_qos_class, struct notifier_block *notifier) |
| 317 | { | 306 | { |
| 318 | int retval; | 307 | int retval; |
| 319 | 308 | ||
| @@ -343,21 +332,16 @@ int pm_qos_remove_notifier(int pm_qos_class, struct notifier_block *notifier) | |||
| 343 | } | 332 | } |
| 344 | EXPORT_SYMBOL_GPL(pm_qos_remove_notifier); | 333 | EXPORT_SYMBOL_GPL(pm_qos_remove_notifier); |
| 345 | 334 | ||
| 346 | #define PID_NAME_LEN 32 | ||
| 347 | |||
| 348 | static int pm_qos_power_open(struct inode *inode, struct file *filp) | 335 | static int pm_qos_power_open(struct inode *inode, struct file *filp) |
| 349 | { | 336 | { |
| 350 | int ret; | ||
| 351 | long pm_qos_class; | 337 | long pm_qos_class; |
| 352 | char name[PID_NAME_LEN]; | ||
| 353 | 338 | ||
| 354 | pm_qos_class = find_pm_qos_object_by_minor(iminor(inode)); | 339 | pm_qos_class = find_pm_qos_object_by_minor(iminor(inode)); |
| 355 | if (pm_qos_class >= 0) { | 340 | if (pm_qos_class >= 0) { |
| 356 | filp->private_data = (void *)pm_qos_class; | 341 | filp->private_data = (void *) pm_qos_add_request(pm_qos_class, |
| 357 | snprintf(name, PID_NAME_LEN, "process_%d", current->pid); | 342 | PM_QOS_DEFAULT_VALUE); |
| 358 | ret = pm_qos_add_requirement(pm_qos_class, name, | 343 | |
| 359 | PM_QOS_DEFAULT_VALUE); | 344 | if (filp->private_data) |
| 360 | if (ret >= 0) | ||
| 361 | return 0; | 345 | return 0; |
| 362 | } | 346 | } |
| 363 | return -EPERM; | 347 | return -EPERM; |
| @@ -365,32 +349,40 @@ static int pm_qos_power_open(struct inode *inode, struct file *filp) | |||
| 365 | 349 | ||
| 366 | static int pm_qos_power_release(struct inode *inode, struct file *filp) | 350 | static int pm_qos_power_release(struct inode *inode, struct file *filp) |
| 367 | { | 351 | { |
| 368 | int pm_qos_class; | 352 | struct pm_qos_request_list *req; |
| 369 | char name[PID_NAME_LEN]; | ||
| 370 | 353 | ||
| 371 | pm_qos_class = (long)filp->private_data; | 354 | req = (struct pm_qos_request_list *)filp->private_data; |
| 372 | snprintf(name, PID_NAME_LEN, "process_%d", current->pid); | 355 | pm_qos_remove_request(req); |
| 373 | pm_qos_remove_requirement(pm_qos_class, name); | ||
| 374 | 356 | ||
| 375 | return 0; | 357 | return 0; |
| 376 | } | 358 | } |
| 377 | 359 | ||
| 360 | |||
| 378 | static ssize_t pm_qos_power_write(struct file *filp, const char __user *buf, | 361 | static ssize_t pm_qos_power_write(struct file *filp, const char __user *buf, |
| 379 | size_t count, loff_t *f_pos) | 362 | size_t count, loff_t *f_pos) |
| 380 | { | 363 | { |
| 381 | s32 value; | 364 | s32 value; |
| 382 | int pm_qos_class; | 365 | int x; |
| 383 | char name[PID_NAME_LEN]; | 366 | char ascii_value[11]; |
| 384 | 367 | struct pm_qos_request_list *pm_qos_req; | |
| 385 | pm_qos_class = (long)filp->private_data; | 368 | |
| 386 | if (count != sizeof(s32)) | 369 | if (count == sizeof(s32)) { |
| 370 | if (copy_from_user(&value, buf, sizeof(s32))) | ||
| 371 | return -EFAULT; | ||
| 372 | } else if (count == 11) { /* len('0x12345678/0') */ | ||
| 373 | if (copy_from_user(ascii_value, buf, 11)) | ||
| 374 | return -EFAULT; | ||
| 375 | x = sscanf(ascii_value, "%x", &value); | ||
| 376 | if (x != 1) | ||
| 377 | return -EINVAL; | ||
| 378 | pr_debug(KERN_ERR "%s, %d, 0x%x\n", ascii_value, x, value); | ||
| 379 | } else | ||
| 387 | return -EINVAL; | 380 | return -EINVAL; |
| 388 | if (copy_from_user(&value, buf, sizeof(s32))) | ||
| 389 | return -EFAULT; | ||
| 390 | snprintf(name, PID_NAME_LEN, "process_%d", current->pid); | ||
| 391 | pm_qos_update_requirement(pm_qos_class, name, value); | ||
| 392 | 381 | ||
| 393 | return sizeof(s32); | 382 | pm_qos_req = (struct pm_qos_request_list *)filp->private_data; |
| 383 | pm_qos_update_request(pm_qos_req, value); | ||
| 384 | |||
| 385 | return count; | ||
| 394 | } | 386 | } |
| 395 | 387 | ||
| 396 | 388 | ||
