Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
linux
Commits
9a2ab3f1
Commit
9a2ab3f1
authored
Nov 16, 2012
by
Stephen Warren
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'korg_arm-soc/devel/debug_ll_init' into for-3.8/single-zimage
parents
2658ef15
e5c5f2ad
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
37 additions
and
0 deletions
+37
-0
arch/arm/include/asm/mach/map.h
arch/arm/include/asm/mach/map.h
+7
-0
arch/arm/kernel/debug.S
arch/arm/kernel/debug.S
+14
-0
arch/arm/mm/mmu.c
arch/arm/mm/mmu.c
+16
-0
No files found.
arch/arm/include/asm/mach/map.h
View file @
9a2ab3f1
...
@@ -40,6 +40,13 @@ extern void iotable_init(struct map_desc *, int);
...
@@ -40,6 +40,13 @@ extern void iotable_init(struct map_desc *, int);
extern
void
vm_reserve_area_early
(
unsigned
long
addr
,
unsigned
long
size
,
extern
void
vm_reserve_area_early
(
unsigned
long
addr
,
unsigned
long
size
,
void
*
caller
);
void
*
caller
);
#ifdef CONFIG_DEBUG_LL
extern
void
debug_ll_addr
(
unsigned
long
*
paddr
,
unsigned
long
*
vaddr
);
extern
void
debug_ll_io_init
(
void
);
#else
static
inline
void
debug_ll_io_init
(
void
)
{}
#endif
struct
mem_type
;
struct
mem_type
;
extern
const
struct
mem_type
*
get_mem_type
(
unsigned
int
type
);
extern
const
struct
mem_type
*
get_mem_type
(
unsigned
int
type
);
/*
/*
...
...
arch/arm/kernel/debug.S
View file @
9a2ab3f1
...
@@ -100,6 +100,13 @@ ENTRY(printch)
...
@@ -100,6 +100,13 @@ ENTRY(printch)
b
1
b
b
1
b
ENDPROC
(
printch
)
ENDPROC
(
printch
)
ENTRY
(
debug_ll_addr
)
addruart
r2
,
r3
,
ip
str
r2
,
[
r0
]
str
r3
,
[
r1
]
mov
pc
,
lr
ENDPROC
(
debug_ll_addr
)
#else
#else
ENTRY
(
printascii
)
ENTRY
(
printascii
)
...
@@ -119,4 +126,11 @@ ENTRY(printch)
...
@@ -119,4 +126,11 @@ ENTRY(printch)
mov
pc
,
lr
mov
pc
,
lr
ENDPROC
(
printch
)
ENDPROC
(
printch
)
ENTRY
(
debug_ll_addr
)
mov
r2
,
#
0
str
r2
,
[
r0
]
str
r2
,
[
r1
]
mov
pc
,
lr
ENDPROC
(
debug_ll_addr
)
#endif
#endif
arch/arm/mm/mmu.c
View file @
9a2ab3f1
...
@@ -876,6 +876,22 @@ static void __init pci_reserve_io(void)
...
@@ -876,6 +876,22 @@ static void __init pci_reserve_io(void)
#define pci_reserve_io() do { } while (0)
#define pci_reserve_io() do { } while (0)
#endif
#endif
#ifdef CONFIG_DEBUG_LL
void
__init
debug_ll_io_init
(
void
)
{
struct
map_desc
map
;
debug_ll_addr
(
&
map
.
pfn
,
&
map
.
virtual
);
if
(
!
map
.
pfn
||
!
map
.
virtual
)
return
;
map
.
pfn
=
__phys_to_pfn
(
map
.
pfn
);
map
.
virtual
&=
PAGE_MASK
;
map
.
length
=
PAGE_SIZE
;
map
.
type
=
MT_DEVICE
;
create_mapping
(
&
map
);
}
#endif
static
void
*
__initdata
vmalloc_min
=
static
void
*
__initdata
vmalloc_min
=
(
void
*
)(
VMALLOC_END
-
(
240
<<
20
)
-
VMALLOC_OFFSET
);
(
void
*
)(
VMALLOC_END
-
(
240
<<
20
)
-
VMALLOC_OFFSET
);
...
...
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