Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
Kernel
提交
27a3bbaf
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看板
提交
27a3bbaf
编写于
2月 07, 2007
作者:
R
Ralf Baechle
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
[MIPS] VPE: Sprinkle device model code into code to make udev happier.
Signed-off-by:
N
Ralf Baechle
<
ralf@linux-mips.org
>
上级
66efc5a7
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
43 addition
and
1 deletion
+43
-1
arch/mips/kernel/mips-mt.c
arch/mips/kernel/mips-mt.c
+19
-0
arch/mips/kernel/vpe.c
arch/mips/kernel/vpe.c
+21
-1
include/asm-mips/mips_mt.h
include/asm-mips/mips_mt.h
+3
-0
未找到文件。
arch/mips/kernel/mips-mt.c
浏览文件 @
27a3bbaf
...
...
@@ -3,9 +3,11 @@
* Copyright (C) 2005 Mips Technologies, Inc
*/
#include <linux/device.h>
#include <linux/kernel.h>
#include <linux/sched.h>
#include <linux/cpumask.h>
#include <linux/module.h>
#include <linux/interrupt.h>
#include <linux/security.h>
...
...
@@ -453,3 +455,20 @@ void mt_cflush_release(void)
#endif
/* CONFIG_MIPS_MT_SMTC */
/* FILL IN VSMP and AP/SP VERSIONS HERE */
}
struct
class
*
mt_class
;
static
int
__init
mt_init
(
void
)
{
struct
class
*
mtc
;
mtc
=
class_create
(
THIS_MODULE
,
"mt"
);
if
(
IS_ERR
(
mtc
))
return
PTR_ERR
(
mtc
);
mt_class
=
mtc
;
return
0
;
}
subsys_initcall
(
mt_init
);
arch/mips/kernel/vpe.c
浏览文件 @
27a3bbaf
...
...
@@ -29,6 +29,7 @@
*/
#include <linux/kernel.h>
#include <linux/device.h>
#include <linux/module.h>
#include <linux/fs.h>
#include <linux/init.h>
...
...
@@ -48,6 +49,7 @@
#include <asm/cacheflush.h>
#include <asm/atomic.h>
#include <asm/cpu.h>
#include <asm/mips_mt.h>
#include <asm/processor.h>
#include <asm/system.h>
#include <asm/vpe.h>
...
...
@@ -64,6 +66,7 @@ typedef void *vpe_handle;
static
char
module_name
[]
=
"vpe"
;
static
int
major
;
static
const
int
minor
=
1
;
/* fixed for now */
#ifdef CONFIG_MIPS_APSP_KSPD
static
struct
kspd_notifications
kspd_events
;
...
...
@@ -1365,12 +1368,15 @@ static void kspd_sp_exit( int sp_id)
}
#endif
static
struct
device
*
vpe_dev
;
static
int
__init
vpe_module_init
(
void
)
{
struct
vpe
*
v
=
NULL
;
struct
device
*
dev
;
struct
tc
*
t
;
unsigned
long
val
;
int
i
;
int
i
,
err
;
if
(
!
cpu_has_mipsmt
)
{
printk
(
"VPE loader: not a MIPS MT capable processor
\n
"
);
...
...
@@ -1383,6 +1389,14 @@ static int __init vpe_module_init(void)
return
major
;
}
dev
=
device_create
(
mt_class
,
NULL
,
MKDEV
(
major
,
minor
),
"tc%d"
,
minor
);
if
(
IS_ERR
(
dev
))
{
err
=
PTR_ERR
(
dev
);
goto
out_chrdev
;
}
vpe_dev
=
dev
;
dmt
();
dvpe
();
...
...
@@ -1478,6 +1492,11 @@ static int __init vpe_module_init(void)
kspd_events
.
kspd_sp_exit
=
kspd_sp_exit
;
#endif
return
0
;
out_chrdev:
unregister_chrdev
(
major
,
module_name
);
return
err
;
}
static
void
__exit
vpe_module_exit
(
void
)
...
...
@@ -1490,6 +1509,7 @@ static void __exit vpe_module_exit(void)
}
}
device_destroy
(
mt_class
,
MKDEV
(
major
,
minor
));
unregister_chrdev
(
major
,
module_name
);
}
...
...
include/asm-mips/mips_mt.h
浏览文件 @
27a3bbaf
...
...
@@ -12,4 +12,7 @@ extern unsigned long mt_fpemul_threshold;
extern
void
mips_mt_regdump
(
unsigned
long
previous_mvpcontrol_value
);
extern
void
mips_mt_set_cpuoptions
(
void
);
struct
class
;
extern
struct
class
*
mt_class
;
#endif
/* __ASM_MIPS_MT_H */
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录