struct irq_chip irq;
 
        struct notifier_block clk_nb;
+
+       bool core_domain_state_synced;
+       bool core_domain_registered;
 };
 
 static struct tegra_pmc *pmc = &(struct tegra_pmc) {
        return err;
 }
 
+bool tegra_pmc_core_domain_state_synced(void)
+{
+       return pmc->core_domain_state_synced;
+}
+
 static int
 tegra_pmc_core_pd_set_performance_state(struct generic_pm_domain *genpd,
                                        unsigned int level)
                goto remove_genpd;
        }
 
+       pmc->core_domain_registered = true;
+
        return 0;
 
 remove_genpd:
        { }
 };
 
+static void tegra_pmc_sync_state(struct device *dev)
+{
+       int err;
+
+       /*
+        * Older device-trees don't have core PD, and thus, there are
+        * no dependencies that will block the state syncing. We shouldn't
+        * mark the domain as synced in this case.
+        */
+       if (!pmc->core_domain_registered)
+               return;
+
+       pmc->core_domain_state_synced = true;
+
+       /* this is a no-op if core regulator isn't used */
+       mutex_lock(&pmc->powergates_lock);
+       err = dev_pm_opp_sync_regulators(dev);
+       mutex_unlock(&pmc->powergates_lock);
+
+       if (err)
+               dev_err(dev, "failed to sync regulators: %d\n", err);
+}
+
 static struct platform_driver tegra_pmc_driver = {
        .driver = {
                .name = "tegra-pmc",
 #if defined(CONFIG_PM_SLEEP) && defined(CONFIG_ARM)
                .pm = &tegra_pmc_pm_ops,
 #endif
+               .sync_state = tegra_pmc_sync_state,
        },
        .probe = tegra_pmc_probe,
 };
 
 void tegra_pmc_set_suspend_mode(enum tegra_suspend_mode mode);
 void tegra_pmc_enter_suspend_mode(enum tegra_suspend_mode mode);
 
+bool tegra_pmc_core_domain_state_synced(void);
+
 #else
 static inline int tegra_powergate_power_on(unsigned int id)
 {
 {
 }
 
+static inline bool tegra_pmc_core_domain_state_synced(void)
+{
+       return false;
+}
+
 #endif /* CONFIG_SOC_TEGRA_PMC */
 
 #if defined(CONFIG_SOC_TEGRA_PMC) && defined(CONFIG_PM_SLEEP)