Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
Kernel
提交
ea75b9c1
K
Kernel
项目概览
openeuler
/
Kernel
大约 1 年 前同步成功
通知
5
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看板
体验新版 GitCode,发现更多精彩内容 >>
提交
ea75b9c1
编写于
1月 10, 2012
作者:
P
Paul Mundt
浏览文件
操作
浏览文件
下载
差异文件
Merge branch 'rmobile/core' into rmobile/marzen
上级
916b1f8c
1229835c
变更
4
隐藏空白更改
内联
并排
Showing
4 changed file
with
38 addition
and
2 deletion
+38
-2
arch/arm/mach-shmobile/headsmp.S
arch/arm/mach-shmobile/headsmp.S
+1
-1
arch/arm/mach-shmobile/hotplug.c
arch/arm/mach-shmobile/hotplug.c
+31
-1
arch/arm/mach-shmobile/include/mach/common.h
arch/arm/mach-shmobile/include/mach/common.h
+1
-0
arch/arm/mach-shmobile/platsmp.c
arch/arm/mach-shmobile/platsmp.c
+5
-0
未找到文件。
arch/arm/mach-shmobile/headsmp.S
浏览文件 @
ea75b9c1
...
...
@@ -14,7 +14,7 @@
#include <linux/init.h>
#include <asm/memory.h>
__INIT
__
CPU
INIT
/*
*
Reset
vector
for
secondary
CPUs
.
...
...
arch/arm/mach-shmobile/hotplug.c
浏览文件 @
ea75b9c1
...
...
@@ -12,14 +12,43 @@
#include <linux/kernel.h>
#include <linux/errno.h>
#include <linux/smp.h>
#include <linux/cpumask.h>
#include <linux/delay.h>
#include <mach/common.h>
#include <asm/cacheflush.h>
static
cpumask_t
dead_cpus
;
int
platform_cpu_kill
(
unsigned
int
cpu
)
{
return
1
;
int
k
;
/* this function is running on another CPU than the offline target,
* here we need wait for shutdown code in platform_cpu_die() to
* finish before asking SoC-specific code to power off the CPU core.
*/
for
(
k
=
0
;
k
<
1000
;
k
++
)
{
if
(
cpumask_test_cpu
(
cpu
,
&
dead_cpus
))
return
shmobile_platform_cpu_kill
(
cpu
);
mdelay
(
1
);
}
return
0
;
}
void
platform_cpu_die
(
unsigned
int
cpu
)
{
/* hardware shutdown code running on the CPU that is being offlined */
flush_cache_all
();
dsb
();
/* notify platform_cpu_kill() that hardware shutdown is finished */
cpumask_set_cpu
(
cpu
,
&
dead_cpus
);
/* wait for SoC code in platform_cpu_kill() to shut off CPU core
* power. CPU bring up starts from the reset vector.
*/
while
(
1
)
{
/*
* here's the WFI
...
...
@@ -33,6 +62,7 @@ void platform_cpu_die(unsigned int cpu)
int
platform_cpu_disable
(
unsigned
int
cpu
)
{
cpumask_clear_cpu
(
cpu
,
&
dead_cpus
);
/*
* we don't allow CPU 0 to be shutdown (it is still too special
* e.g. clock tick interrupts)
...
...
arch/arm/mach-shmobile/include/mach/common.h
浏览文件 @
ea75b9c1
...
...
@@ -4,6 +4,7 @@
extern
struct
sys_timer
shmobile_timer
;
extern
void
shmobile_setup_console
(
void
);
extern
void
shmobile_secondary_vector
(
void
);
extern
int
shmobile_platform_cpu_kill
(
unsigned
int
cpu
);
struct
clk
;
extern
int
clk_init
(
void
);
extern
void
shmobile_handle_irq_intc
(
struct
pt_regs
*
);
...
...
arch/arm/mach-shmobile/platsmp.c
浏览文件 @
ea75b9c1
...
...
@@ -37,6 +37,11 @@ static void __init shmobile_smp_prepare_cpus(void)
sh73a0_smp_prepare_cpus
();
}
int
shmobile_platform_cpu_kill
(
unsigned
int
cpu
)
{
return
1
;
}
void
__cpuinit
platform_secondary_init
(
unsigned
int
cpu
)
{
trace_hardirqs_off
();
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录