Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
Kernel
提交
9fafbd80
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看板
提交
9fafbd80
编写于
5月 20, 2011
作者:
D
David S. Miller
浏览文件
操作
浏览文件
下载
差异文件
Merge branch 'master' of master.kernel.org:/pub/scm/linux/kernel/git/davem/sparc-2.6
上级
d81f087f
21dccddf
变更
6
隐藏空白更改
内联
并排
Showing
6 changed file
with
32 addition
and
9 deletion
+32
-9
arch/sparc/include/asm/io.h
arch/sparc/include/asm/io.h
+13
-0
arch/sparc/kernel/apc.c
arch/sparc/kernel/apc.c
+1
-1
arch/sparc/kernel/pmc.c
arch/sparc/kernel/pmc.c
+1
-1
arch/sparc/kernel/smp_32.c
arch/sparc/kernel/smp_32.c
+7
-3
arch/sparc/kernel/time_32.c
arch/sparc/kernel/time_32.c
+1
-1
arch/sparc/lib/checksum_32.S
arch/sparc/lib/checksum_32.S
+9
-3
未找到文件。
arch/sparc/include/asm/io.h
浏览文件 @
9fafbd80
...
...
@@ -5,4 +5,17 @@
#else
#include <asm/io_32.h>
#endif
/*
* Defines used for both SPARC32 and SPARC64
*/
/* Big endian versions of memory read/write routines */
#define readb_be(__addr) __raw_readb(__addr)
#define readw_be(__addr) __raw_readw(__addr)
#define readl_be(__addr) __raw_readl(__addr)
#define writeb_be(__b, __addr) __raw_writeb(__b, __addr)
#define writel_be(__w, __addr) __raw_writel(__w, __addr)
#define writew_be(__l, __addr) __raw_writew(__l, __addr)
#endif
arch/sparc/kernel/apc.c
浏览文件 @
9fafbd80
...
...
@@ -165,7 +165,7 @@ static int __devinit apc_probe(struct platform_device *op)
return
0
;
}
static
struct
of_device_id
__initdata
apc_match
[]
=
{
static
struct
of_device_id
apc_match
[]
=
{
{
.
name
=
APC_OBPNAME
,
},
...
...
arch/sparc/kernel/pmc.c
浏览文件 @
9fafbd80
...
...
@@ -69,7 +69,7 @@ static int __devinit pmc_probe(struct platform_device *op)
return
0
;
}
static
struct
of_device_id
__initdata
pmc_match
[]
=
{
static
struct
of_device_id
pmc_match
[]
=
{
{
.
name
=
PMC_OBPNAME
,
},
...
...
arch/sparc/kernel/smp_32.c
浏览文件 @
9fafbd80
...
...
@@ -51,6 +51,7 @@ cpumask_t smp_commenced_mask = CPU_MASK_NONE;
void
__cpuinit
smp_store_cpu_info
(
int
id
)
{
int
cpu_node
;
int
mid
;
cpu_data
(
id
).
udelay_val
=
loops_per_jiffy
;
...
...
@@ -58,10 +59,13 @@ void __cpuinit smp_store_cpu_info(int id)
cpu_data
(
id
).
clock_tick
=
prom_getintdefault
(
cpu_node
,
"clock-frequency"
,
0
);
cpu_data
(
id
).
prom_node
=
cpu_node
;
cpu_data
(
id
).
mid
=
cpu_get_hwmid
(
cpu_node
);
mid
=
cpu_get_hwmid
(
cpu_node
);
if
(
cpu_data
(
id
).
mid
<
0
)
panic
(
"No MID found for CPU%d at node 0x%08d"
,
id
,
cpu_node
);
if
(
mid
<
0
)
{
printk
(
KERN_NOTICE
"No MID found for CPU%d at node 0x%08d"
,
id
,
cpu_node
);
mid
=
0
;
}
cpu_data
(
id
).
mid
=
mid
;
}
void
__init
smp_cpus_done
(
unsigned
int
max_cpus
)
...
...
arch/sparc/kernel/time_32.c
浏览文件 @
9fafbd80
...
...
@@ -168,7 +168,7 @@ static int __devinit clock_probe(struct platform_device *op)
return
0
;
}
static
struct
of_device_id
__initdata
clock_match
[]
=
{
static
struct
of_device_id
clock_match
[]
=
{
{
.
name
=
"eeprom"
,
},
...
...
arch/sparc/lib/checksum_32.S
浏览文件 @
9fafbd80
...
...
@@ -289,10 +289,16 @@ cc_end_cruft:
/
*
Also
,
handle
the
alignment
code
out
of
band
.
*/
cc_dword_align
:
cmp
%
g1
,
6
bl
,
a
ccte
cmp
%
g1
,
16
bge
1
f
srl
%
g1
,
1
,
%
o3
2
:
cmp
%
o3
,
0
be
,
a
ccte
andcc
%
g1
,
0xf
,
%
o3
andcc
%
o0
,
0x1
,
%
g0
andcc
%
o3
,
%
o0
,
%
g0
!
Check
%
o0
only
(%
o1
has
the
same
last
2
bits
)
be
,
a
2
b
srl
%
o3
,
1
,
%
o3
1
:
andcc
%
o0
,
0x1
,
%
g0
bne
ccslow
andcc
%
o0
,
0x2
,
%
g0
be
1
f
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录