Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
cloud-kernel
提交
f113fe4e
cloud-kernel
项目概览
openanolis
/
cloud-kernel
大约 1 年 前同步成功
通知
158
Star
36
Fork
7
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
10
列表
看板
标记
里程碑
合并请求
2
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
cloud-kernel
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
10
Issue
10
列表
看板
标记
里程碑
合并请求
2
合并请求
2
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
体验新版 GitCode,发现更多精彩内容 >>
提交
f113fe4e
编写于
11月 23, 2010
作者:
E
Eric Miao
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
ARM: pxa: introduce pxa2xx_clock_sysclass for clock suspend/resume
Signed-off-by:
N
Eric Miao
<
eric.y.miao@gmail.com
>
上级
2a125dd5
变更
4
隐藏空白更改
内联
并排
Showing
4 changed file
with
35 addition
and
8 deletion
+35
-8
arch/arm/mach-pxa/clock-pxa2xx.c
arch/arm/mach-pxa/clock-pxa2xx.c
+26
-0
arch/arm/mach-pxa/clock.h
arch/arm/mach-pxa/clock.h
+3
-0
arch/arm/mach-pxa/pxa25x.c
arch/arm/mach-pxa/pxa25x.c
+3
-4
arch/arm/mach-pxa/pxa27x.c
arch/arm/mach-pxa/pxa27x.c
+3
-4
未找到文件。
arch/arm/mach-pxa/clock-pxa2xx.c
浏览文件 @
f113fe4e
...
...
@@ -9,6 +9,7 @@
#include <linux/module.h>
#include <linux/kernel.h>
#include <linux/init.h>
#include <linux/sysdev.h>
#include <mach/pxa2xx-regs.h>
...
...
@@ -28,3 +29,28 @@ const struct clkops clk_pxa2xx_cken_ops = {
.
enable
=
clk_pxa2xx_cken_enable
,
.
disable
=
clk_pxa2xx_cken_disable
,
};
#ifdef CONFIG_PM
static
uint32_t
saved_cken
;
static
int
pxa2xx_clock_suspend
(
struct
sys_device
*
d
,
pm_message_t
state
)
{
saved_cken
=
CKEN
;
return
0
;
}
static
int
pxa2xx_clock_resume
(
struct
sys_device
*
d
)
{
CKEN
=
saved_cken
;
return
0
;
}
#else
#define pxa2xx_clock_suspend NULL
#define pxa2xx_clock_resume NULL
#endif
struct
sysdev_class
pxa2xx_clock_sysclass
=
{
.
name
=
"pxa2xx-clock"
,
.
suspend
=
pxa2xx_clock_suspend
,
.
resume
=
pxa2xx_clock_resume
,
};
arch/arm/mach-pxa/clock.h
浏览文件 @
f113fe4e
#include <linux/sysdev.h>
#include <asm/clkdev.h>
struct
clkops
{
...
...
@@ -53,6 +54,8 @@ extern const struct clkops clk_pxa2xx_cken_ops;
void
clk_pxa2xx_cken_enable
(
struct
clk
*
clk
);
void
clk_pxa2xx_cken_disable
(
struct
clk
*
clk
);
extern
struct
sysdev_class
pxa2xx_clock_sysclass
;
#ifdef CONFIG_PXA3xx
#define DEFINE_PXA3_CKEN(_name, _cken, _rate, _delay) \
struct clk clk_##_name = { \
...
...
arch/arm/mach-pxa/pxa25x.c
浏览文件 @
f113fe4e
...
...
@@ -222,20 +222,17 @@ static struct clk_lookup pxa25x_hwuart_clkreg =
*/
enum
{
SLEEP_SAVE_PSTR
,
SLEEP_SAVE_CKEN
,
SLEEP_SAVE_COUNT
};
static
void
pxa25x_cpu_pm_save
(
unsigned
long
*
sleep_save
)
{
SAVE
(
CKEN
);
SAVE
(
PSTR
);
}
static
void
pxa25x_cpu_pm_restore
(
unsigned
long
*
sleep_save
)
{
RESTORE
(
CKEN
);
RESTORE
(
PSTR
);
}
...
...
@@ -358,7 +355,9 @@ static struct sys_device pxa25x_sysdev[] = {
.
cls
=
&
pxa2xx_mfp_sysclass
,
},
{
.
cls
=
&
pxa_gpio_sysclass
,
},
},
{
.
cls
=
&
pxa2xx_clock_sysclass
,
}
};
static
int
__init
pxa25x_init
(
void
)
...
...
arch/arm/mach-pxa/pxa27x.c
浏览文件 @
f113fe4e
...
...
@@ -258,7 +258,6 @@ int __init pxa27x_set_pwrmode(unsigned int mode)
*/
enum
{
SLEEP_SAVE_PSTR
,
SLEEP_SAVE_CKEN
,
SLEEP_SAVE_MDREFR
,
SLEEP_SAVE_PCFR
,
SLEEP_SAVE_COUNT
...
...
@@ -269,7 +268,6 @@ void pxa27x_cpu_pm_save(unsigned long *sleep_save)
sleep_save
[
SLEEP_SAVE_MDREFR
]
=
__raw_readl
(
MDREFR
);
SAVE
(
PCFR
);
SAVE
(
CKEN
);
SAVE
(
PSTR
);
}
...
...
@@ -280,7 +278,6 @@ void pxa27x_cpu_pm_restore(unsigned long *sleep_save)
PSSR
=
PSSR_RDH
|
PSSR_PH
;
RESTORE
(
CKEN
);
RESTORE
(
PSTR
);
}
...
...
@@ -438,7 +435,9 @@ static struct sys_device pxa27x_sysdev[] = {
.
cls
=
&
pxa2xx_mfp_sysclass
,
},
{
.
cls
=
&
pxa_gpio_sysclass
,
},
},
{
.
cls
=
&
pxa2xx_clock_sysclass
,
}
};
static
int
__init
pxa27x_init
(
void
)
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录