static void sbi_cpuidle_domain_sync_state(struct device *dev)
{
+ struct sbi_pd_provider *pd_provider;
+
/*
* All devices have now been attached/probed to the PM domain
* topology, hence it's fine to allow domain states to be picked.
*/
sbi_cpuidle_pd_allow_domain_state = true;
+
+ list_for_each_entry(pd_provider, &sbi_pd_providers, link)
+ of_genpd_sync_state(pd_provider->node);
}
#ifdef CONFIG_DT_IDLE_GENPD
if (!pd_provider)
goto free_pd;
- pd->flags |= GENPD_FLAG_IRQ_SAFE | GENPD_FLAG_CPU_DOMAIN;
+ pd->flags |= GENPD_FLAG_IRQ_SAFE | GENPD_FLAG_CPU_DOMAIN |
+ GENPD_FLAG_NO_SYNC_STATE;
/* Allow power off when OSI is available. */
if (sbi_cpuidle_use_osi)