Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
Kernel
提交
0cb7b2af
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看板
提交
0cb7b2af
编写于
10月 29, 2005
作者:
P
Paul Mackerras
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
powerpc: Merge maple support code to arch/powerpc/platforms/maple
Signed-off-by:
N
Paul Mackerras
<
paulus@samba.org
>
上级
d3f67fbb
变更
7
隐藏空白更改
内联
并排
Showing
7 changed file
with
22 addition
and
10 deletion
+22
-10
arch/powerpc/platforms/Makefile
arch/powerpc/platforms/Makefile
+1
-0
arch/powerpc/platforms/maple/Makefile
arch/powerpc/platforms/maple/Makefile
+1
-0
arch/powerpc/platforms/maple/maple.h
arch/powerpc/platforms/maple/maple.h
+12
-0
arch/powerpc/platforms/maple/pci.c
arch/powerpc/platforms/maple/pci.c
+2
-0
arch/powerpc/platforms/maple/setup.c
arch/powerpc/platforms/maple/setup.c
+3
-8
arch/powerpc/platforms/maple/time.c
arch/powerpc/platforms/maple/time.c
+2
-0
arch/ppc64/kernel/Makefile
arch/ppc64/kernel/Makefile
+1
-2
未找到文件。
arch/powerpc/platforms/Makefile
浏览文件 @
0cb7b2af
...
...
@@ -10,3 +10,4 @@ obj-$(CONFIG_4xx) += 4xx/
obj-$(CONFIG_85xx)
+=
85xx/
obj-$(CONFIG_PPC_PSERIES)
+=
pseries/
obj-$(CONFIG_PPC_ISERIES)
+=
iseries/
obj-$(CONFIG_PPC_MAPLE)
+=
maple/
arch/powerpc/platforms/maple/Makefile
0 → 100644
浏览文件 @
0cb7b2af
obj-y
+=
setup.o pci.o time.o
arch/powerpc/platforms/maple/maple.h
0 → 100644
浏览文件 @
0cb7b2af
/*
* Declarations for maple-specific code.
*
* Maple is the name of a PPC970 evaluation board.
*/
extern
int
maple_set_rtc_time
(
struct
rtc_time
*
tm
);
extern
void
maple_get_rtc_time
(
struct
rtc_time
*
tm
);
extern
unsigned
long
maple_get_boot_time
(
void
);
extern
void
maple_calibrate_decr
(
void
);
extern
void
maple_pci_init
(
void
);
extern
void
maple_pcibios_fixup
(
void
);
extern
int
maple_pci_get_legacy_ide_irq
(
struct
pci_dev
*
dev
,
int
channel
);
arch/p
pc64/kernel/maple_
pci.c
→
arch/p
owerpc/platforms/maple/
pci.c
浏览文件 @
0cb7b2af
...
...
@@ -25,6 +25,8 @@
#include <asm/iommu.h>
#include <asm/ppc-pci.h>
#include "maple.h"
#ifdef DEBUG
#define DBG(x...) printk(x)
#else
...
...
arch/p
pc64/kernel/maple_
setup.c
→
arch/p
owerpc/platforms/maple/
setup.c
浏览文件 @
0cb7b2af
/*
*
arch/ppc64/kernel/maple_setup.c
*
Maple (970 eval board) setup code
*
* (c) Copyright 2004 Benjamin Herrenschmidt (benh@kernel.crashing.org),
* IBM Corp.
...
...
@@ -62,19 +62,14 @@
#include <asm/mpic.h>
#include <asm/udbg.h>
#include "maple.h"
#ifdef DEBUG
#define DBG(fmt...) udbg_printf(fmt)
#else
#define DBG(fmt...)
#endif
extern
int
maple_set_rtc_time
(
struct
rtc_time
*
tm
);
extern
void
maple_get_rtc_time
(
struct
rtc_time
*
tm
);
extern
unsigned
long
maple_get_boot_time
(
void
);
extern
void
maple_calibrate_decr
(
void
);
extern
void
maple_pci_init
(
void
);
extern
void
maple_pcibios_fixup
(
void
);
extern
int
maple_pci_get_legacy_ide_irq
(
struct
pci_dev
*
dev
,
int
channel
);
extern
void
generic_find_legacy_serial_ports
(
u64
*
physport
,
unsigned
int
*
default_speed
);
...
...
arch/p
pc64/kernel/maple_
time.c
→
arch/p
owerpc/platforms/maple/
time.c
浏览文件 @
0cb7b2af
...
...
@@ -36,6 +36,8 @@
#include <asm/machdep.h>
#include <asm/time.h>
#include "maple.h"
#ifdef DEBUG
#define DBG(x...) printk(x)
#else
...
...
arch/ppc64/kernel/Makefile
浏览文件 @
0cb7b2af
...
...
@@ -55,8 +55,7 @@ obj-$(CONFIG_HVCS) += hvcserver.o
obj-$(CONFIG_PPC_PMAC)
+=
udbg_scc.o
obj-$(CONFIG_PPC_MAPLE)
+=
maple_setup.o maple_pci.o maple_time.o
\
udbg_16550.o
obj-$(CONFIG_PPC_MAPLE)
+=
udbg_16550.o
ifdef
CONFIG_SMP
obj-$(CONFIG_PPC_PMAC)
+=
smp-tbsync.o
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录