Lines Matching defs:states
59 u32 *states = data->psci_states;
73 state = states[idx];
169 * of a shared state for the domain, assumes the domain states are all
170 * deeper states.
172 drv->states[state_count - 1].enter = psci_enter_domain_idle_state;
215 /* Idle states parsed correctly, store them in the per-cpu struct. */
228 * idle states must not be enabled, so bail out
284 * PSCI idle states relies on architectural WFI to be represented as
287 drv->states[0].enter = psci_enter_idle_state;
288 drv->states[0].exit_latency = 1;
289 drv->states[0].target_residency = 1;
290 drv->states[0].power_usage = UINT_MAX;
291 strcpy(drv->states[0].name, "WFI");
292 strcpy(drv->states[0].desc, "ARM WFI");
295 * If no DT idle states are detected (ret == 0) let the driver
306 * Initialize PSCI idle states.