Lines Matching defs:proc
232 * pm_get_proc() - returns pointer to the proc structure.
233 * @cpuid: id of the cpu whose proc struct pointer should be returned.
235 * Return: pointer to a proc structure if proc is found, otherwise NULL.
248 * pm_get_proc_by_node() - returns pointer to the proc structure.
251 * Return: pointer to a proc structure if proc is found, otherwise NULL.
285 * @proc: processor which need to suspend.
293 void pm_client_suspend(const struct pm_proc *proc, uint32_t state)
302 mmio_write_32(APU_PWRCTL, mmio_read_32(APU_PWRCTL) | proc->pwrdn_mask);
331 * @proc: Processor which need to wakeup.
337 void pm_client_wakeup(const struct pm_proc *proc)
339 uint32_t cpuid = pm_get_cpuid(proc->node_id);
349 val &= ~(proc->pwrdn_mask);