Lines Matching defs:state
37 * Set the expected wake time in TSC ticks for the next low-power state the
112 * a C-state where the WAKE_MASK is all 0.
177 * Set the power state for a core
179 int32_t nvg_enter_cstate(uint32_t state, uint32_t wake_time)
184 /* check for allowed power state */
185 if ((state != (uint32_t)TEGRA_NVG_CORE_C0) &&
186 (state != (uint32_t)TEGRA_NVG_CORE_C1) &&
187 (state != (uint32_t)TEGRA_NVG_CORE_C6) &&
188 (state != (uint32_t)TEGRA_NVG_CORE_C7))
190 ERROR("%s: unknown cstate (%u)\n", __func__, state);
198 write_actlr_el1(val | (uint64_t)state);