Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
Kernel
提交
a43acfbb
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看板
提交
a43acfbb
编写于
5月 26, 2009
作者:
M
Michal Simek
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
microblaze_mmu_v2: Alocate TLB for early console
Signed-off-by:
N
Michal Simek
<
monstr@monstr.eu
>
上级
5846cc60
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
11 addition
and
2 deletion
+11
-2
arch/microblaze/include/asm/setup.h
arch/microblaze/include/asm/setup.h
+8
-2
arch/microblaze/kernel/early_printk.c
arch/microblaze/kernel/early_printk.c
+3
-0
未找到文件。
arch/microblaze/include/asm/setup.h
浏览文件 @
a43acfbb
/*
/*
* Copyright (C) 2007-2008 Michal Simek <monstr@monstr.eu>
* Copyright (C) 2007-2009 Michal Simek <monstr@monstr.eu>
* Copyright (C) 2007-2009 PetaLogix
* Copyright (C) 2006 Atmark Techno, Inc.
* Copyright (C) 2006 Atmark Techno, Inc.
*
*
* This file is subject to the terms and conditions of the GNU General Public
* This file is subject to the terms and conditions of the GNU General Public
...
@@ -18,7 +19,6 @@
...
@@ -18,7 +19,6 @@
extern
unsigned
int
boot_cpuid
;
/* move to smp.h */
extern
unsigned
int
boot_cpuid
;
/* move to smp.h */
extern
char
cmd_line
[
COMMAND_LINE_SIZE
];
extern
char
cmd_line
[
COMMAND_LINE_SIZE
];
# endif
/* __KERNEL__ */
void
early_printk
(
const
char
*
fmt
,
...);
void
early_printk
(
const
char
*
fmt
,
...);
...
@@ -30,6 +30,11 @@ void setup_heartbeat(void);
...
@@ -30,6 +30,11 @@ void setup_heartbeat(void);
unsigned
long
long
sched_clock
(
void
);
unsigned
long
long
sched_clock
(
void
);
# ifdef CONFIG_MMU
extern
void
mmu_reset
(
void
);
extern
void
early_console_reg_tlb_alloc
(
unsigned
int
addr
);
# endif
/* CONFIG_MMU */
void
time_init
(
void
);
void
time_init
(
void
);
void
init_IRQ
(
void
);
void
init_IRQ
(
void
);
void
machine_early_init
(
const
char
*
cmdline
,
unsigned
int
ram
,
void
machine_early_init
(
const
char
*
cmdline
,
unsigned
int
ram
,
...
@@ -40,5 +45,6 @@ void machine_shutdown(void);
...
@@ -40,5 +45,6 @@ void machine_shutdown(void);
void
machine_halt
(
void
);
void
machine_halt
(
void
);
void
machine_power_off
(
void
);
void
machine_power_off
(
void
);
# endif
/* __KERNEL__ */
# endif
/* __ASSEMBLY__ */
# endif
/* __ASSEMBLY__ */
#endif
/* _ASM_MICROBLAZE_SETUP_H */
#endif
/* _ASM_MICROBLAZE_SETUP_H */
arch/microblaze/kernel/early_printk.c
浏览文件 @
a43acfbb
...
@@ -87,6 +87,9 @@ int __init setup_early_printk(char *opt)
...
@@ -87,6 +87,9 @@ int __init setup_early_printk(char *opt)
base_addr
=
early_uartlite_console
();
base_addr
=
early_uartlite_console
();
if
(
base_addr
)
{
if
(
base_addr
)
{
early_console_initialized
=
1
;
early_console_initialized
=
1
;
#ifdef CONFIG_MMU
early_console_reg_tlb_alloc
(
base_addr
);
#endif
early_printk
(
"early_printk_console is enabled at 0x%08x
\n
"
,
early_printk
(
"early_printk_console is enabled at 0x%08x
\n
"
,
base_addr
);
base_addr
);
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录