Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
Kernel
提交
179cf194
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看板
提交
179cf194
编写于
2月 01, 2017
作者:
V
Vineet Gupta
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
ARCv2: intc: Use runtime value of irq count for setting up intc
Signed-off-by:
N
Vineet Gupta
<
vgupta@synopsys.com
>
上级
f33b8cdd
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
18 addition
and
11 deletion
+18
-11
arch/arc/include/asm/irq.h
arch/arc/include/asm/irq.h
+1
-0
arch/arc/kernel/intc-arcv2.c
arch/arc/kernel/intc-arcv2.c
+17
-11
未找到文件。
arch/arc/include/asm/irq.h
浏览文件 @
179cf194
...
...
@@ -21,6 +21,7 @@
#ifdef CONFIG_ISA_ARCV2
#define IPI_IRQ 19
#define SOFTIRQ_IRQ 21
#define FIRST_EXT_IRQ 24
#endif
#include <linux/interrupt.h>
...
...
arch/arc/kernel/intc-arcv2.c
浏览文件 @
179cf194
...
...
@@ -14,7 +14,15 @@
#include <linux/irqchip.h>
#include <asm/irq.h>
#define NR_CPU_IRQS 32
/* number of irq lines coming in */
#define NR_EXCEPTIONS 16
struct
bcr_irq_arcv2
{
#ifdef CONFIG_CPU_BIG_ENDIAN
unsigned
int
pad
:
3
,
firq
:
1
,
prio
:
4
,
exts
:
8
,
irqs
:
8
,
ver
:
8
;
#else
unsigned
int
ver
:
8
,
irqs
:
8
,
exts
:
8
,
prio
:
4
,
firq
:
1
,
pad
:
3
;
#endif
};
/*
* Early Hardware specific Interrupt setup
...
...
@@ -25,14 +33,7 @@
void
arc_init_IRQ
(
void
)
{
unsigned
int
tmp
,
irq_prio
;
struct
irq_build
{
#ifdef CONFIG_CPU_BIG_ENDIAN
unsigned
int
pad
:
3
,
firq
:
1
,
prio
:
4
,
exts
:
8
,
irqs
:
8
,
ver
:
8
;
#else
unsigned
int
ver
:
8
,
irqs
:
8
,
exts
:
8
,
prio
:
4
,
firq
:
1
,
pad
:
3
;
#endif
}
irq_bcr
;
struct
bcr_irq_arcv2
irq_bcr
;
struct
aux_irq_ctrl
{
#ifdef CONFIG_CPU_BIG_ENDIAN
...
...
@@ -117,7 +118,7 @@ static int arcv2_irq_map(struct irq_domain *d, unsigned int irq,
* core intc IRQs [16, 23]:
* Statically assigned always private-per-core (Timers, WDT, IPI, PCT)
*/
if
(
hw
<
24
)
{
if
(
hw
<
FIRST_EXT_IRQ
)
{
/*
* A subsequent request_percpu_irq() fails if percpu_devid is
* not set. That in turns sets NOAUTOEN, meaning each core needs
...
...
@@ -142,11 +143,16 @@ static int __init
init_onchip_IRQ
(
struct
device_node
*
intc
,
struct
device_node
*
parent
)
{
struct
irq_domain
*
root_domain
;
struct
bcr_irq_arcv2
irq_bcr
;
unsigned
int
nr_cpu_irqs
;
READ_BCR
(
ARC_REG_IRQ_BCR
,
irq_bcr
);
nr_cpu_irqs
=
irq_bcr
.
irqs
+
NR_EXCEPTIONS
;
if
(
parent
)
panic
(
"DeviceTree incore intc not a root irq controller
\n
"
);
root_domain
=
irq_domain_add_linear
(
intc
,
NR_CPU_IRQS
,
&
arcv2_irq_ops
,
NULL
);
root_domain
=
irq_domain_add_linear
(
intc
,
nr_cpu_irqs
,
&
arcv2_irq_ops
,
NULL
);
if
(
!
root_domain
)
panic
(
"root irq domain not avail
\n
"
);
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录