Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 201474
b: refs/heads/master
c: 07d2a5c
h: refs/heads/master
v: v3
  • Loading branch information
Linus Walleij authored and Russell King committed Jul 18, 2010
1 parent fc8c40e commit 07edb26
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 1 deletion.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 598509779e5b8037d371df764d7438744a24b61f
refs/heads/master: 07d2a5c721c6aa2bd69812a74c8b3b116abf3e56
16 changes: 16 additions & 0 deletions trunk/arch/arm/mm/init.c
Original file line number Diff line number Diff line change
Expand Up @@ -611,6 +611,14 @@ void __init mem_init(void)

printk(KERN_NOTICE "Virtual kernel memory layout:\n"
" vector : 0x%08lx - 0x%08lx (%4ld kB)\n"
#ifdef CONFIG_HAVE_TCM
#ifdef DTCM_OFFSET
" DTCM : 0x%08lx - 0x%08lx (%4ld kB)\n"
#endif
#ifdef ITCM_OFFSET
" ITCM : 0x%08lx - 0x%08lx (%4ld kB)\n"
#endif
#endif
" fixmap : 0x%08lx - 0x%08lx (%4ld kB)\n"
#ifdef CONFIG_MMU
" DMA : 0x%08lx - 0x%08lx (%4ld MB)\n"
Expand All @@ -627,6 +635,14 @@ void __init mem_init(void)

MLK(UL(CONFIG_VECTORS_BASE), UL(CONFIG_VECTORS_BASE) +
(PAGE_SIZE)),
#ifdef CONFIG_HAVE_TCM
#ifdef DTCM_OFFSET
MLK(UL(DTCM_OFFSET), UL(DTCM_END + 1)),
#endif
#ifdef ITCM_OFFSET
MLK(UL(ITCM_OFFSET), UL(ITCM_END + 1)),
#endif
#endif
MLK(FIXADDR_START, FIXADDR_TOP),
#ifdef CONFIG_MMU
MLM(CONSISTENT_BASE, CONSISTENT_END),
Expand Down

0 comments on commit 07edb26

Please sign in to comment.