2 * Exynos Generic power domain support.
4 * Copyright (c) 2012 Samsung Electronics Co., Ltd.
5 * http://www.samsung.com
7 * Implementation of Exynos specific power domain control which is used in
8 * conjunction with runtime-pm. Support for both device-tree and non-device-tree
9 * based power domain support is included.
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License version 2 as
13 * published by the Free Software Foundation.
17 #include <linux/err.h>
18 #include <linux/slab.h>
19 #include <linux/pm_domain.h>
20 #include <linux/delay.h>
21 #include <linux/of_address.h>
22 #include <linux/of_platform.h>
23 #include <linux/sched.h>
25 #include <mach/regs-pmu.h>
26 #include <plat/devs.h>
29 * Exynos specific wrapper around the generic power domain
31 struct exynos_pm_domain
{
35 struct generic_pm_domain pd
;
38 static int exynos_pd_power(struct generic_pm_domain
*domain
, bool power_on
)
40 struct exynos_pm_domain
*pd
;
45 pd
= container_of(domain
, struct exynos_pm_domain
, pd
);
48 pwr
= power_on
? S5P_INT_LOCAL_PWR_EN
: 0;
49 __raw_writel(pwr
, base
);
54 while ((__raw_readl(base
+ 0x4) & S5P_INT_LOCAL_PWR_EN
) != pwr
) {
56 op
= (power_on
) ? "enable" : "disable";
57 pr_err("Power domain %s %s failed\n", domain
->name
, op
);
62 usleep_range(80, 100);
67 static int exynos_pd_power_on(struct generic_pm_domain
*domain
)
69 return exynos_pd_power(domain
, true);
72 static int exynos_pd_power_off(struct generic_pm_domain
*domain
)
74 return exynos_pd_power(domain
, false);
77 static void exynos_add_device_to_domain(struct exynos_pm_domain
*pd
,
82 dev_dbg(dev
, "adding to power domain %s\n", pd
->pd
.name
);
85 ret
= pm_genpd_add_device(&pd
->pd
, dev
);
91 pm_genpd_dev_need_restore(dev
, true);
94 static void exynos_remove_device_from_domain(struct device
*dev
)
96 struct generic_pm_domain
*genpd
= dev_to_genpd(dev
);
99 dev_dbg(dev
, "removing from power domain %s\n", genpd
->name
);
102 ret
= pm_genpd_remove_device(genpd
, dev
);
109 static void exynos_read_domain_from_dt(struct device
*dev
)
111 struct platform_device
*pd_pdev
;
112 struct exynos_pm_domain
*pd
;
113 struct device_node
*node
;
115 node
= of_parse_phandle(dev
->of_node
, "samsung,power-domain", 0);
118 pd_pdev
= of_find_device_by_node(node
);
121 pd
= platform_get_drvdata(pd_pdev
);
122 exynos_add_device_to_domain(pd
, dev
);
125 static int exynos_pm_notifier_call(struct notifier_block
*nb
,
126 unsigned long event
, void *data
)
128 struct device
*dev
= data
;
131 case BUS_NOTIFY_BIND_DRIVER
:
133 exynos_read_domain_from_dt(dev
);
137 case BUS_NOTIFY_UNBOUND_DRIVER
:
138 exynos_remove_device_from_domain(dev
);
145 static struct notifier_block platform_nb
= {
146 .notifier_call
= exynos_pm_notifier_call
,
149 static __init
int exynos4_pm_init_power_domain(void)
151 struct platform_device
*pdev
;
152 struct device_node
*np
;
154 for_each_compatible_node(np
, NULL
, "samsung,exynos4210-pd") {
155 struct exynos_pm_domain
*pd
;
158 pdev
= of_find_device_by_node(np
);
160 pd
= kzalloc(sizeof(*pd
), GFP_KERNEL
);
162 pr_err("%s: failed to allocate memory for domain\n",
167 pd
->pd
.name
= kstrdup(np
->name
, GFP_KERNEL
);
168 pd
->name
= pd
->pd
.name
;
169 pd
->base
= of_iomap(np
, 0);
170 pd
->pd
.power_off
= exynos_pd_power_off
;
171 pd
->pd
.power_on
= exynos_pd_power_on
;
174 platform_set_drvdata(pdev
, pd
);
176 on
= __raw_readl(pd
->base
+ 0x4) & S5P_INT_LOCAL_PWR_EN
;
178 pm_genpd_init(&pd
->pd
, NULL
, !on
);
181 bus_register_notifier(&platform_bus_type
, &platform_nb
);
185 arch_initcall(exynos4_pm_init_power_domain
);
187 int __init
exynos_pm_late_initcall(void)
189 pm_genpd_poweroff_unused();