Lines Matching defs:domain
3 // Exynos Generic power domain support.
8 // Implementation of Exynos specific power domain control which is used in
10 // based power domain support is included.
22 /* Value for LOCAL_PWR_CFG and STATUS fields for each domain */
27 * Exynos specific wrapper around the generic power domain
36 static int exynos_pd_power(struct generic_pm_domain *domain, bool power_on)
43 pd = container_of(domain, struct exynos_pm_domain, pd);
55 pr_err("Power domain %s %s failed\n", domain->name, op);
66 static int exynos_pd_power_on(struct generic_pm_domain *domain)
68 return exynos_pd_power(domain, true);
71 static int exynos_pd_power_off(struct generic_pm_domain *domain)
73 return exynos_pd_power(domain, false);
154 "#power-domain-cells", 0,