1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
|
/* linux/arch/arm/mach-exynos/dev-pd.c
*
* Copyright (c) 2010-2011 Samsung Electronics Co., Ltd.
* http://www.samsung.com
*
* EXYNOS4 - Power Domain support
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 as
* published by the Free Software Foundation.
*/
#include <linux/io.h>
#include <linux/kernel.h>
#include <linux/platform_device.h>
#include <linux/delay.h>
#include <mach/regs-pmu.h>
#include <mach/regs-pmu5.h>
#include <mach/regs-clock.h>
#include <plat/cpu.h>
#include <plat/pd.h>
int exynos_pd_init(struct device *dev)
{
struct samsung_pd_info *pdata = dev->platform_data;
struct exynos_pd_data *data = (struct exynos_pd_data *) pdata->data;
if (soc_is_exynos4210() && data->read_phy_addr) {
data->read_base = ioremap(data->read_phy_addr, SZ_4K);
if (!data->read_base)
return -ENOMEM;
}
return 0;
}
int exynos_pd_enable(struct device *dev)
{
struct samsung_pd_info *pdata = dev->platform_data;
struct exynos_pd_data *data = (struct exynos_pd_data *) pdata->data;
u32 timeout;
u32 tmp = 0;
/* save IP clock gating register */
if (data->clk_base) {
tmp = __raw_readl(data->clk_base);
/* enable all the clocks of IPs in the power domain */
__raw_writel(0xffffffff, data->clk_base);
}
__raw_writel(S5P_INT_LOCAL_PWR_EN, pdata->base);
/* Wait max 1ms */
timeout = 1000;
while ((__raw_readl(pdata->base + 0x4) & S5P_INT_LOCAL_PWR_EN)
!= S5P_INT_LOCAL_PWR_EN) {
if (timeout == 0) {
printk(KERN_ERR "Power domain %s enable failed.\n",
dev_name(dev));
return -ETIMEDOUT;
}
timeout--;
udelay(1);
}
if (data->read_base)
/* dummy read to check the completion of power-on sequence */
__raw_readl(data->read_base);
/* restore IP clock gating register */
if (data->clk_base)
__raw_writel(tmp, data->clk_base);
return 0;
}
int exynos_pd_disable(struct device *dev)
{
struct samsung_pd_info *pdata = dev->platform_data;
struct exynos_pd_data *data = (struct exynos_pd_data *) pdata->data;
u32 timeout;
u32 tmp = 0;
/* save clock source register */
if (data->clksrc_base)
tmp = __raw_readl(data->clksrc_base);
/*
* To ISP power domain off,
* first, ISP_ARM power domain be off.
*/
if (soc_is_exynos5250() &&
(pdata->base == EXYNOS5_ISP_CONFIGURATION)) {
if (!(__raw_readl(EXYNOS5_ISP_ARM_STATUS) & 0x1)) {
/* Disable ISP_ARM */
timeout = __raw_readl(EXYNOS5_ISP_ARM_OPTION);
timeout &= ~EXYNOS5_ISP_ARM_ENABLE;
__raw_writel(timeout, EXYNOS5_ISP_ARM_OPTION);
/* ISP_ARM power off */
__raw_writel(0x0, EXYNOS5_ISP_ARM_CONFIGURATION);
timeout = 1000;
while (__raw_readl(EXYNOS5_ISP_ARM_STATUS) & 0x1) {
if (timeout == 0) {
printk(KERN_ERR "ISP_ARM power domain can not off\n");
return -ETIMEDOUT;
}
timeout--;
udelay(1);
}
/* CMU_RESET_ISP_ARM off */
__raw_writel(0x0, EXYNOS5_CMU_RESET_ISP_SYS_PWR_REG);
}
}
__raw_writel(0, pdata->base);
/* Wait max 1ms */
timeout = 1000;
while (__raw_readl(pdata->base + 0x4) & S5P_INT_LOCAL_PWR_EN) {
if (timeout == 0) {
printk(KERN_ERR "Power domain %s disable failed.\n",
dev_name(dev));
return -ETIMEDOUT;
}
timeout--;
udelay(1);
}
/* restore clock source register */
if (data->clksrc_base)
__raw_writel(tmp, data->clksrc_base);
return 0;
}
|