Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
linux-davinci
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
linux
linux-davinci
Commits
a43acfbb
Commit
a43acfbb
authored
May 26, 2009
by
Michal Simek
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
microblaze_mmu_v2: Alocate TLB for early console
Signed-off-by:
Michal Simek
<
monstr@monstr.eu
>
parent
5846cc60
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
2 deletions
+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
No files found.
arch/microblaze/include/asm/setup.h
View file @
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.
*
* This file is subject to the terms and conditions of the GNU General Public
...
...
@@ -18,7 +19,6 @@
extern
unsigned
int
boot_cpuid
;
/* move to smp.h */
extern
char
cmd_line
[
COMMAND_LINE_SIZE
];
# endif
/* __KERNEL__ */
void
early_printk
(
const
char
*
fmt
,
...);
...
...
@@ -30,6 +30,11 @@ void setup_heartbeat(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
init_IRQ
(
void
);
void
machine_early_init
(
const
char
*
cmdline
,
unsigned
int
ram
,
...
...
@@ -40,5 +45,6 @@ void machine_shutdown(void);
void
machine_halt
(
void
);
void
machine_power_off
(
void
);
# endif
/* __KERNEL__ */
# endif
/* __ASSEMBLY__ */
#endif
/* _ASM_MICROBLAZE_SETUP_H */
arch/microblaze/kernel/early_printk.c
View file @
a43acfbb
...
...
@@ -87,6 +87,9 @@ int __init setup_early_printk(char *opt)
base_addr
=
early_uartlite_console
();
if
(
base_addr
)
{
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
"
,
base_addr
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment