Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
cloud-kernel
提交
07d17f09
cloud-kernel
项目概览
openanolis
/
cloud-kernel
大约 1 年 前同步成功
通知
158
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看板
体验新版 GitCode,发现更多精彩内容 >>
提交
07d17f09
编写于
1月 24, 2016
作者:
R
Ralf Baechle
浏览文件
操作
浏览文件
下载
差异文件
Merge branch '4.4-fixes' into mips-for-linux-next
上级
dbb98314
2549cc96
变更
7
隐藏空白更改
内联
并排
Showing
7 changed file
with
14 addition
and
4 deletion
+14
-4
arch/mips/include/asm/io.h
arch/mips/include/asm/io.h
+1
-0
arch/mips/include/asm/mips-cm.h
arch/mips/include/asm/mips-cm.h
+4
-0
arch/mips/include/asm/page.h
arch/mips/include/asm/page.h
+1
-1
arch/mips/kernel/setup.c
arch/mips/kernel/setup.c
+1
-1
arch/mips/kernel/smp-cps.c
arch/mips/kernel/smp-cps.c
+3
-0
arch/mips/vdso/Makefile
arch/mips/vdso/Makefile
+1
-1
scripts/ld-version.sh
scripts/ld-version.sh
+3
-1
未找到文件。
arch/mips/include/asm/io.h
浏览文件 @
07d17f09
...
...
@@ -275,6 +275,7 @@ static inline void __iomem * __ioremap_mode(phys_addr_t offset, unsigned long si
*/
#define ioremap_cachable(offset, size) \
__ioremap_mode((offset), (size), _page_cachable_default)
#define ioremap_cache ioremap_cachable
/*
* These two are MIPS specific ioremap variant. ioremap_cacheable_cow
...
...
arch/mips/include/asm/mips-cm.h
浏览文件 @
07d17f09
...
...
@@ -243,6 +243,10 @@ BUILD_CM_Cx_R_(tcid_8_priority, 0x80)
#define CM_GCR_BASE_CMDEFTGT_IOCU0 2
#define CM_GCR_BASE_CMDEFTGT_IOCU1 3
/* GCR_RESET_EXT_BASE register fields */
#define CM_GCR_RESET_EXT_BASE_EVARESET BIT(31)
#define CM_GCR_RESET_EXT_BASE_UEB BIT(30)
/* GCR_ACCESS register fields */
#define CM_GCR_ACCESS_ACCESSEN_SHF 0
#define CM_GCR_ACCESS_ACCESSEN_MSK (_ULCAST_(0xff) << 0)
...
...
arch/mips/include/asm/page.h
浏览文件 @
07d17f09
...
...
@@ -33,7 +33,7 @@
#define PAGE_SHIFT 16
#endif
#define PAGE_SIZE (_AC(1,UL) << PAGE_SHIFT)
#define PAGE_MASK (~(
PAGE_SIZE
- 1))
#define PAGE_MASK (~(
(1 << PAGE_SHIFT)
- 1))
/*
* This is used for calculating the real page sizes
...
...
arch/mips/kernel/setup.c
浏览文件 @
07d17f09
...
...
@@ -623,7 +623,7 @@ static void __init request_crashkernel(struct resource *res)
#define USE_PROM_CMDLINE IS_ENABLED(CONFIG_MIPS_CMDLINE_FROM_BOOTLOADER)
#define USE_DTB_CMDLINE IS_ENABLED(CONFIG_MIPS_CMDLINE_FROM_DTB)
#define EXTEND_WITH_PROM IS_ENABLED(CONFIG_MIPS_CMDLINE_EXTEND)
#define EXTEND_WITH_PROM IS_ENABLED(CONFIG_MIPS_CMDLINE_
DTB_
EXTEND)
static
void
__init
arch_mem_init
(
char
**
cmdline_p
)
{
...
...
arch/mips/kernel/smp-cps.c
浏览文件 @
07d17f09
...
...
@@ -202,6 +202,9 @@ static void boot_core(unsigned core)
/* Ensure its coherency is disabled */
write_gcr_co_coherence
(
0
);
/* Start it with the legacy memory map and exception base */
write_gcr_co_reset_ext_base
(
CM_GCR_RESET_EXT_BASE_UEB
);
/* Ensure the core can access the GCRs */
access
=
read_gcr_access
();
access
|=
1
<<
(
CM_GCR_ACCESS_ACCESSEN_SHF
+
core
);
...
...
arch/mips/vdso/Makefile
浏览文件 @
07d17f09
...
...
@@ -26,7 +26,7 @@ aflags-vdso := $(ccflags-vdso) \
# the comments on that file.
#
ifndef
CONFIG_CPU_MIPSR6
ifeq
($(call ld-ifversion, -lt, 22500000, y),y)
ifeq
($(call ld-ifversion, -lt, 22500000
0
, y),y)
$(warning
MIPS
VDSO
requires
binutils
>=
2.25)
obj-vdso-y
:=
$(
filter-out
gettimeofday.o,
$
(
obj-vdso-y
))
ccflags-vdso
+=
-DDISABLE_MIPS_VDSO
...
...
scripts/ld-version.sh
浏览文件 @
07d17f09
...
...
@@ -2,7 +2,9 @@
# extract linker version number from stdin and turn into single number
{
gsub
(
".*)"
,
""
)
;
gsub
(
".*version "
,
""
)
;
gsub
(
"-.*"
,
""
)
;
split
(
$1
,a,
"."
)
;
print a[1]
*
10000000
+ a[2]
*
1
00000 + a[3]
*
10000 + a[4]
*
100 + a[5]
;
print a[1]
*
10000000
0 + a[2]
*
10
00000 + a[3]
*
10000 + a[4]
*
100 + a[5]
;
exit
}
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录