Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
kernel_linux
提交
a3761780
K
kernel_linux
项目概览
OpenHarmony
/
kernel_linux
上一次同步 3 年多
通知
13
Star
8
Fork
2
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
K
kernel_linux
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
a3761780
编写于
7月 18, 2007
作者:
D
David S. Miller
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
[SPARC64]: Use orderly_poweroff().
Signed-off-by:
N
David S. Miller
<
davem@davemloft.net
>
上级
9a79b227
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
4 addition
and
69 deletion
+4
-69
arch/sparc64/kernel/ds.c
arch/sparc64/kernel/ds.c
+2
-4
arch/sparc64/kernel/power.c
arch/sparc64/kernel/power.c
+2
-58
include/asm-sparc64/power.h
include/asm-sparc64/power.h
+0
-7
未找到文件。
arch/sparc64/kernel/ds.c
浏览文件 @
a3761780
...
...
@@ -13,11 +13,11 @@
#include <linux/delay.h>
#include <linux/mutex.h>
#include <linux/kthread.h>
#include <linux/reboot.h>
#include <linux/cpu.h>
#include <asm/ldc.h>
#include <asm/vio.h>
#include <asm/power.h>
#include <asm/mdesc.h>
#include <asm/head.h>
#include <asm/irq.h>
...
...
@@ -328,7 +328,7 @@ static void domain_shutdown_data(struct ldc_channel *lp,
ds_send
(
lp
,
&
pkt
,
sizeof
(
pkt
));
wake_up_powerd
(
);
orderly_poweroff
(
true
);
}
struct
ds_panic_req
{
...
...
@@ -1133,8 +1133,6 @@ static int __devinit ds_probe(struct vio_dev *vdev,
ds_info
=
dp
;
start_powerd
();
return
err
;
out_free_ldc:
...
...
arch/sparc64/kernel/power.c
浏览文件 @
a3761780
...
...
@@ -12,13 +12,13 @@
#include <linux/interrupt.h>
#include <linux/pm.h>
#include <linux/syscalls.h>
#include <linux/reboot.h>
#include <asm/system.h>
#include <asm/auxio.h>
#include <asm/prom.h>
#include <asm/of_device.h>
#include <asm/io.h>
#include <asm/power.h>
#include <asm/sstate.h>
#include <linux/unistd.h>
...
...
@@ -31,20 +31,9 @@ int scons_pwroff = 1;
static
void
__iomem
*
power_reg
;
static
DECLARE_WAIT_QUEUE_HEAD
(
powerd_wait
);
static
int
button_pressed
;
void
wake_up_powerd
(
void
)
{
if
(
button_pressed
==
0
)
{
button_pressed
=
1
;
wake_up
(
&
powerd_wait
);
}
}
static
irqreturn_t
power_handler
(
int
irq
,
void
*
dev_id
)
{
wake_up_powerd
(
);
orderly_poweroff
(
true
);
/* FIXME: Check registers for status... */
return
IRQ_HANDLED
;
...
...
@@ -77,48 +66,6 @@ void machine_power_off(void)
void
(
*
pm_power_off
)(
void
)
=
machine_power_off
;
EXPORT_SYMBOL
(
pm_power_off
);
static
int
powerd
(
void
*
__unused
)
{
static
char
*
envp
[]
=
{
"HOME=/"
,
"TERM=linux"
,
"PATH=/sbin:/usr/sbin:/bin:/usr/bin"
,
NULL
};
char
*
argv
[]
=
{
"/sbin/shutdown"
,
"-h"
,
"now"
,
NULL
};
DECLARE_WAITQUEUE
(
wait
,
current
);
daemonize
(
"powerd"
);
add_wait_queue
(
&
powerd_wait
,
&
wait
);
for
(;;)
{
set_task_state
(
current
,
TASK_INTERRUPTIBLE
);
if
(
button_pressed
)
break
;
flush_signals
(
current
);
schedule
();
}
__set_current_state
(
TASK_RUNNING
);
remove_wait_queue
(
&
powerd_wait
,
&
wait
);
/* Ok, down we go... */
button_pressed
=
0
;
if
(
kernel_execve
(
"/sbin/shutdown"
,
argv
,
envp
)
<
0
)
{
printk
(
KERN_ERR
"powerd: shutdown execution failed
\n
"
);
machine_power_off
();
}
return
0
;
}
int
start_powerd
(
void
)
{
int
err
;
err
=
kernel_thread
(
powerd
,
NULL
,
CLONE_FS
);
if
(
err
<
0
)
printk
(
KERN_ERR
"power: Failed to start power daemon.
\n
"
);
else
printk
(
KERN_INFO
"power: powerd running.
\n
"
);
return
err
;
}
static
int
__init
has_button_interrupt
(
unsigned
int
irq
,
struct
device_node
*
dp
)
{
if
(
irq
==
0xffffffff
)
...
...
@@ -142,9 +89,6 @@ static int __devinit power_probe(struct of_device *op, const struct of_device_id
poweroff_method
=
machine_halt
;
/* able to use the standard halt */
if
(
has_button_interrupt
(
irq
,
op
->
node
))
{
if
(
start_powerd
()
<
0
)
return
0
;
if
(
request_irq
(
irq
,
power_handler
,
0
,
"power"
,
NULL
)
<
0
)
printk
(
KERN_ERR
"power: Cannot setup IRQ handler.
\n
"
);
...
...
include/asm-sparc64/power.h
已删除
100644 → 0
浏览文件 @
9a79b227
#ifndef _SPARC64_POWER_H
#define _SPARC64_POWER_H
extern
void
wake_up_powerd
(
void
);
extern
int
start_powerd
(
void
);
#endif
/* !(_SPARC64_POWER_H) */
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录