Commit 856783b3 authored by Yi Li's avatar Yi Li Committed by Bryan Wu

[Blackfin] arch: add "memmap=nn[KMG]@ss[KMG]" and "memmap=nn[KMG]$ss[KMG]"...

[Blackfin] arch: add "memmap=nn[KMG]@ss[KMG]" and "memmap=nn[KMG]$ss[KMG]" options to blackfin, based on arch/i386/kernel/e820.c
Signed-off-by: default avatarYi Li <yi.li@analog.com>
Signed-off-by: default avatarBryan Wu <bryan.wu@analog.com>
parent c605999b
This diff is collapsed.
...@@ -138,8 +138,7 @@ void __init mem_init(void) ...@@ -138,8 +138,7 @@ void __init mem_init(void)
start_mem = PAGE_ALIGN(start_mem); start_mem = PAGE_ALIGN(start_mem);
max_mapnr = num_physpages = MAP_NR(high_memory); max_mapnr = num_physpages = MAP_NR(high_memory);
printk(KERN_INFO "Kernel managed physical pages: %lu\n", printk(KERN_DEBUG "Kernel managed physical pages: %lu\n", num_physpages);
num_physpages);
/* This will put all memory onto the freelists. */ /* This will put all memory onto the freelists. */
totalram_pages = free_all_bootmem(); totalram_pages = free_all_bootmem();
...@@ -153,8 +152,7 @@ void __init mem_init(void) ...@@ -153,8 +152,7 @@ void __init mem_init(void)
/* do not count in kernel image between _rambase and _ramstart */ /* do not count in kernel image between _rambase and _ramstart */
reservedpages -= (_ramstart - _rambase) >> PAGE_SHIFT; reservedpages -= (_ramstart - _rambase) >> PAGE_SHIFT;
#if (defined(CONFIG_BFIN_ICACHE) && ANOMALY_05000263) #if (defined(CONFIG_BFIN_ICACHE) && ANOMALY_05000263)
reservedpages += (_ramend - memory_end - DMA_UNCACHED_REGION) >> reservedpages += (_ramend - memory_end - DMA_UNCACHED_REGION) >> PAGE_SHIFT;
PAGE_SHIFT;
#endif #endif
codek = (_etext - _stext) >> 10; codek = (_etext - _stext) >> 10;
...@@ -163,11 +161,9 @@ void __init mem_init(void) ...@@ -163,11 +161,9 @@ void __init mem_init(void)
printk(KERN_INFO printk(KERN_INFO
"Memory available: %luk/%luk RAM, " "Memory available: %luk/%luk RAM, "
"(%uk init code, %uk kernel code, " "(%uk init code, %uk kernel code, %uk data, %uk dma, %uk reserved)\n",
"%uk data, %uk dma, %uk reserved)\n",
(unsigned long) freepages << (PAGE_SHIFT-10), _ramend >> 10, (unsigned long) freepages << (PAGE_SHIFT-10), _ramend >> 10,
initk, codek, datak, DMA_UNCACHED_REGION >> 10, initk, codek, datak, DMA_UNCACHED_REGION >> 10, (reservedpages << (PAGE_SHIFT-10)));
(reservedpages << (PAGE_SHIFT-10)));
/* Initialize the blackfin L1 Memory. */ /* Initialize the blackfin L1 Memory. */
l1sram_init(); l1sram_init();
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment