Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
Kernel
提交
781c74b1
K
Kernel
项目概览
openeuler
/
Kernel
1 年多 前同步成功
通知
8
Star
0
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
K
Kernel
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
781c74b1
编写于
7月 03, 2008
作者:
P
Paul Mackerras
浏览文件
操作
浏览文件
下载
差异文件
Merge branch 'for-2.6.26' of
git://git.secretlab.ca/git/linux-2.6-mpc52xx
into merge
上级
1e6d1f26
18d76ac9
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
13 addition
and
1 deletion
+13
-1
arch/powerpc/platforms/52xx/lite5200_pm.c
arch/powerpc/platforms/52xx/lite5200_pm.c
+13
-1
未找到文件。
arch/powerpc/platforms/52xx/lite5200_pm.c
浏览文件 @
781c74b1
...
...
@@ -14,6 +14,7 @@ static struct mpc52xx_sdma __iomem *bes;
static
struct
mpc52xx_xlb
__iomem
*
xlb
;
static
struct
mpc52xx_gpio
__iomem
*
gps
;
static
struct
mpc52xx_gpio_wkup
__iomem
*
gpw
;
static
void
__iomem
*
pci
;
static
void
__iomem
*
sram
;
static
const
int
sram_size
=
0x4000
;
/* 16 kBytes */
static
void
__iomem
*
mbar
;
...
...
@@ -50,6 +51,8 @@ static int lite5200_pm_prepare(void)
{
.
type
=
"builtin"
,
.
compatible
=
"mpc5200"
,
},
/* efika */
{}
};
u64
regaddr64
=
0
;
const
u32
*
regaddr_p
;
/* deep sleep? let mpc52xx code handle that */
if
(
lite5200_pm_target_state
==
PM_SUSPEND_STANDBY
)
...
...
@@ -60,8 +63,12 @@ static int lite5200_pm_prepare(void)
/* map registers */
np
=
of_find_matching_node
(
NULL
,
immr_ids
);
mbar
=
of_iomap
(
np
,
0
);
regaddr_p
=
of_get_address
(
np
,
0
,
NULL
,
NULL
);
if
(
regaddr_p
)
regaddr64
=
of_translate_address
(
np
,
regaddr_p
);
of_node_put
(
np
);
mbar
=
ioremap
((
u32
)
regaddr64
,
0xC000
);
if
(
!
mbar
)
{
printk
(
KERN_ERR
"%s:%i Error mapping registers
\n
"
,
__func__
,
__LINE__
);
return
-
ENOSYS
;
...
...
@@ -71,6 +78,7 @@ static int lite5200_pm_prepare(void)
pic
=
mbar
+
0x500
;
gps
=
mbar
+
0xb00
;
gpw
=
mbar
+
0xc00
;
pci
=
mbar
+
0xd00
;
bes
=
mbar
+
0x1200
;
xlb
=
mbar
+
0x1f00
;
sram
=
mbar
+
0x8000
;
...
...
@@ -85,6 +93,7 @@ static struct mpc52xx_sdma sbes;
static
struct
mpc52xx_xlb
sxlb
;
static
struct
mpc52xx_gpio
sgps
;
static
struct
mpc52xx_gpio_wkup
sgpw
;
static
char
spci
[
0x200
];
static
void
lite5200_save_regs
(
void
)
{
...
...
@@ -94,6 +103,7 @@ static void lite5200_save_regs(void)
_memcpy_fromio
(
&
sxlb
,
xlb
,
sizeof
(
*
xlb
));
_memcpy_fromio
(
&
sgps
,
gps
,
sizeof
(
*
gps
));
_memcpy_fromio
(
&
sgpw
,
gpw
,
sizeof
(
*
gpw
));
_memcpy_fromio
(
spci
,
pci
,
0x200
);
_memcpy_fromio
(
saved_sram
,
sram
,
sram_size
);
}
...
...
@@ -103,6 +113,8 @@ static void lite5200_restore_regs(void)
int
i
;
_memcpy_toio
(
sram
,
saved_sram
,
sram_size
);
/* PCI Configuration */
_memcpy_toio
(
pci
,
spci
,
0x200
);
/*
* GPIOs. Interrupt Master Enable has higher address then other
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录