Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
kernel_linux
提交
f4266ab4
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看板
提交
f4266ab4
编写于
2月 13, 2006
作者:
D
David S. Miller
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
[SPARC64] sunhv: Use virtual-devices layer to get interrupt.
Signed-off-by:
N
David S. Miller
<
davem@davemloft.net
>
上级
e77227eb
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
67 addition
and
6 deletion
+67
-6
drivers/serial/sunhv.c
drivers/serial/sunhv.c
+67
-6
未找到文件。
drivers/serial/sunhv.c
浏览文件 @
f4266ab4
...
...
@@ -20,6 +20,8 @@
#include <asm/hypervisor.h>
#include <asm/spitfire.h>
#include <asm/vdev.h>
#include <asm/irq.h>
#if defined(CONFIG_MAGIC_SYSRQ)
#define SUPPORT_SYSRQ
...
...
@@ -407,6 +409,60 @@ static void __init sunhv_console_init(void)
register_console
(
&
sunhv_console
);
}
static
int
__init
hv_console_compatible
(
char
*
buf
,
int
len
)
{
while
(
len
)
{
int
this_len
;
if
(
!
strcmp
(
buf
,
"qcn"
))
return
1
;
this_len
=
strlen
(
buf
)
+
1
;
buf
+=
this_len
;
len
-=
this_len
;
}
return
0
;
}
static
unsigned
int
__init
get_interrupt
(
void
)
{
const
char
*
cons_str
=
"console"
;
const
char
*
compat_str
=
"compatible"
;
int
node
=
prom_getchild
(
sun4v_vdev_root
);
unsigned
int
irq
;
char
buf
[
64
];
int
err
,
len
;
node
=
prom_searchsiblings
(
node
,
cons_str
);
if
(
!
node
)
return
0
;
len
=
prom_getproplen
(
node
,
compat_str
);
if
(
len
==
0
||
len
==
-
1
)
return
0
;
err
=
prom_getproperty
(
node
,
compat_str
,
buf
,
64
);
if
(
err
==
-
1
)
return
0
;
if
(
!
hv_console_compatible
(
buf
,
len
))
return
0
;
/* Ok, the this is the OBP node for the sun4v hypervisor
* console device. Decode the interrupt.
*/
err
=
prom_getproperty
(
node
,
"interrupts"
,
(
char
*
)
&
irq
,
sizeof
(
irq
));
if
(
err
==
-
1
)
return
0
;
return
sun4v_build_irq
(
sun4v_vdev_devhandle
,
irq
,
4
,
0
);
}
static
u32
sunhv_irq
;
static
int
__init
sunhv_init
(
void
)
{
struct
uart_port
*
port
;
...
...
@@ -415,6 +471,10 @@ static int __init sunhv_init(void)
if
(
tlb_type
!=
hypervisor
)
return
-
ENODEV
;
sunhv_irq
=
get_interrupt
();
if
(
!
sunhv_irq
)
return
-
ENODEV
;
port
=
kmalloc
(
sizeof
(
struct
uart_port
),
GFP_KERNEL
);
if
(
unlikely
(
!
port
))
return
-
ENOMEM
;
...
...
@@ -424,22 +484,23 @@ static int __init sunhv_init(void)
port
->
type
=
PORT_SUNHV
;
port
->
uartclk
=
(
29491200
/
16
);
/* arbitrary */
/* XXX Get interrupt. XXX */
if
(
request_irq
(
0
/* XXX */
,
sunhv_interrupt
,
if
(
request_irq
(
sunhv_irq
,
sunhv_interrupt
,
SA_SHIRQ
,
"serial(sunhv)"
,
port
))
{
printk
(
"sunhv: Cannot get IRQ %x
\n
"
,
0
/* XXX */
);
printk
(
"sunhv: Cannot get IRQ %x
\n
"
,
sunhv_irq
);
kfree
(
port
);
return
-
ENODEV
;
}
printk
(
"SUNHV: SUN4V virtual console, IRQ[%08x]
\n
"
,
sunhv_irq
);
sunhv_reg
.
minor
=
sunserial_current_minor
;
sunhv_reg
.
nr
=
1
;
sunhv_reg
.
cons
=
&
sunhv_console
;
ret
=
uart_register_driver
(
&
sunhv_reg
);
if
(
ret
<
0
)
{
free_irq
(
0
/* XXX */
,
up
);
free_irq
(
sunhv_irq
,
up
);
kfree
(
port
);
return
ret
;
...
...
@@ -463,7 +524,7 @@ static void __exit sunhv_exit(void)
BUG_ON
(
!
port
);
uart_remove_one_port
(
&
sunhv_reg
,
port
);
free_irq
(
0
/* XXX */
,
port
);
free_irq
(
sunhv_irq
,
port
);
sunserial_current_minor
-=
1
;
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录