Lines Matching defs:proc
179 * @proc: processor which need to suspend.
187 void pm_client_suspend(const struct pm_proc *proc, uint32_t state)
192 pm_client_set_wakeup_sources((uint32_t)proc->node_id);
197 (uint32_t)proc->pwrdn_mask);
242 * @proc: Processor which need to wakeup.
248 void pm_client_wakeup(const struct pm_proc *proc)
250 uint32_t cpuid = pm_get_cpuid(proc->node_id);
260 val &= ~(proc->pwrdn_mask);
267 * pm_get_proc() - returns pointer to the proc structure.
268 * @cpuid: id of the cpu whose proc struct pointer should be returned.
270 * Return: pointer to a proc structure if proc is found, otherwise NULL.