Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
cloud-kernel
提交
a5ccfe5c
cloud-kernel
项目概览
openanolis
/
cloud-kernel
1 年多 前同步成功
通知
160
Star
36
Fork
7
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
10
列表
看板
标记
里程碑
合并请求
2
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
cloud-kernel
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
10
Issue
10
列表
看板
标记
里程碑
合并请求
2
合并请求
2
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
a5ccfe5c
编写于
10月 14, 2007
作者:
R
Ralf Baechle
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
[MIPS] Lasat: Fix build by conversion to irq_cpu.c.
Signed-off-by:
N
Ralf Baechle
<
ralf@linux-mips.org
>
上级
951e4714
变更
4
隐藏空白更改
内联
并排
Showing
4 changed file
with
20 addition
and
13 deletion
+20
-13
arch/mips/Kconfig
arch/mips/Kconfig
+1
-0
arch/mips/lasat/interrupt.c
arch/mips/lasat/interrupt.c
+5
-3
arch/mips/pci/pci-lasat.c
arch/mips/pci/pci-lasat.c
+10
-9
include/asm-mips/lasat/lasatint.h
include/asm-mips/lasat/lasatint.h
+4
-1
未找到文件。
arch/mips/Kconfig
浏览文件 @
a5ccfe5c
...
...
@@ -133,6 +133,7 @@ config LASAT
select DMA_NONCOHERENT
select SYS_HAS_EARLY_PRINTK
select HW_HAS_PCI
select IRQ_CPU
select PCI_GT64XXX_PCI0
select MIPS_NILE4
select R5000_CPU_SCACHE
...
...
arch/mips/lasat/interrupt.c
浏览文件 @
a5ccfe5c
...
...
@@ -26,6 +26,7 @@
#include <linux/kernel_stat.h>
#include <asm/bootinfo.h>
#include <asm/irq_cpu.h>
#include <asm/lasat/lasatint.h>
#include <asm/time.h>
#include <asm/gdb-stub.h>
...
...
@@ -88,7 +89,7 @@ asmlinkage void plat_irq_dispatch(void)
int
irq
;
if
(
cause
&
CAUSEF_IP7
)
{
/* R4000 count / compare IRQ */
ll_timer_interrupt
(
7
);
do_IRQ
(
7
);
return
;
}
...
...
@@ -96,7 +97,7 @@ asmlinkage void plat_irq_dispatch(void)
/* if int_status == 0, then the interrupt has already been cleared */
if
(
int_status
)
{
irq
=
ls1bit32
(
int_status
);
irq
=
LASATINT_BASE
+
ls1bit32
(
int_status
);
do_IRQ
(
irq
);
}
...
...
@@ -125,6 +126,7 @@ void __init arch_init_irq(void)
panic
(
"arch_init_irq: mips_machtype incorrect"
);
}
for
(
i
=
0
;
i
<=
LASATINT_END
;
i
++
)
mips_cpu_irq_init
();
for
(
i
=
LASATINT_BASE
;
i
<=
LASATINT_END
;
i
++
)
set_irq_chip_and_handler
(
i
,
&
lasat_irq_type
,
handle_level_irq
);
}
arch/mips/pci/pci-lasat.c
浏览文件 @
a5ccfe5c
...
...
@@ -10,6 +10,7 @@
#include <linux/pci.h>
#include <linux/types.h>
#include <asm/bootinfo.h>
#include <asm/lasat/lasatint.h>
extern
struct
pci_ops
nile4_pci_ops
;
extern
struct
pci_ops
gt64xxx_pci0_ops
;
...
...
@@ -54,15 +55,15 @@ static int __init lasat_pci_setup(void)
arch_initcall
(
lasat_pci_setup
);
#define LASATINT_ETH1
0
#define LASATINT_ETH0
1
#define LASATINT_HDC
2
#define LASATINT_COMP
3
#define LASATINT_HDLC
4
#define LASATINT_PCIA
5
#define LASATINT_PCIB
6
#define LASATINT_PCIC
7
#define LASATINT_PCID
8
#define LASATINT_ETH1
(LASATINT_BASE + 0)
#define LASATINT_ETH0
(LASATINT_BASE + 1)
#define LASATINT_HDC
(LASATINT_BASE + 2)
#define LASATINT_COMP
(LASATINT_BASE + 3)
#define LASATINT_HDLC
(LASATINT_BASE + 4)
#define LASATINT_PCIA
(LASATINT_BASE + 5)
#define LASATINT_PCIB
(LASATINT_BASE + 6)
#define LASATINT_PCIC
(LASATINT_BASE + 7)
#define LASATINT_PCID
(LASATINT_BASE + 8)
int
__init
pcibios_map_irq
(
const
struct
pci_dev
*
dev
,
u8
slot
,
u8
pin
)
{
...
...
include/asm-mips/lasat/lasatint.h
浏览文件 @
a5ccfe5c
#ifndef __ASM_LASAT_LASATINT_H
#define __ASM_LASAT_LASATINT_H
#define LASATINT_END 16
#include <linux/irq.h>
#define LASATINT_BASE MIPS_CPU_IRQ_BASE
#define LASATINT_END (LASATINT_BASE + 16)
/* lasat 100 */
#define LASAT_INT_STATUS_REG_100 (KSEG1ADDR(0x1c880000))
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录