Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
kernel_linux
提交
a778bf35
K
kernel_linux
项目概览
OpenHarmony
/
kernel_linux
上一次同步 4 年多
通知
15
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看板
You need to sign in or sign up before continuing.
提交
a778bf35
编写于
10月 02, 2014
作者:
J
Jason Cooper
浏览文件
操作
浏览文件
下载
差异文件
Merge branch 'irqchip/atmel' into irqchip/core
上级
468a903c
20afdeb8
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
12 addition
and
2 deletion
+12
-2
Documentation/devicetree/bindings/interrupt-controller/atmel,aic.txt
...on/devicetree/bindings/interrupt-controller/atmel,aic.txt
+1
-1
drivers/irqchip/irq-atmel-aic5.c
drivers/irqchip/irq-atmel-aic5.c
+11
-1
未找到文件。
Documentation/devicetree/bindings/interrupt-controller/atmel,aic.txt
浏览文件 @
a778bf35
...
...
@@ -2,7 +2,7 @@
Required properties:
- compatible: Should be "atmel,<chip>-aic"
<chip> can be "at91rm9200"
or "sama5d3
"
<chip> can be "at91rm9200"
, "sama5d3" or "sama5d4
"
- interrupt-controller: Identifies the node as an interrupt controller.
- interrupt-parent: For single AIC system, it is an empty property.
- #interrupt-cells: The number of cells to define the interrupts. It should be 3.
...
...
drivers/irqchip/irq-atmel-aic5.c
浏览文件 @
a778bf35
...
...
@@ -295,6 +295,7 @@ static void __init sama5d3_aic_irq_fixup(struct device_node *root)
static
const
struct
of_device_id
__initdata
aic5_irq_fixups
[]
=
{
{
.
compatible
=
"atmel,sama5d3"
,
.
data
=
sama5d3_aic_irq_fixup
},
{
.
compatible
=
"atmel,sama5d4"
,
.
data
=
sama5d3_aic_irq_fixup
},
{
/* sentinel */
},
};
...
...
@@ -341,7 +342,7 @@ static int __init aic5_of_init(struct device_node *node,
return
0
;
}
#define NR_SAMA5D3_IRQS
50
#define NR_SAMA5D3_IRQS
48
static
int
__init
sama5d3_aic5_of_init
(
struct
device_node
*
node
,
struct
device_node
*
parent
)
...
...
@@ -349,3 +350,12 @@ static int __init sama5d3_aic5_of_init(struct device_node *node,
return
aic5_of_init
(
node
,
parent
,
NR_SAMA5D3_IRQS
);
}
IRQCHIP_DECLARE
(
sama5d3_aic5
,
"atmel,sama5d3-aic"
,
sama5d3_aic5_of_init
);
#define NR_SAMA5D4_IRQS 68
static
int
__init
sama5d4_aic5_of_init
(
struct
device_node
*
node
,
struct
device_node
*
parent
)
{
return
aic5_of_init
(
node
,
parent
,
NR_SAMA5D4_IRQS
);
}
IRQCHIP_DECLARE
(
sama5d4_aic5
,
"atmel,sama5d4-aic"
,
sama5d4_aic5_of_init
);
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录