Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 77406
b: refs/heads/master
c: ee7883b
h: refs/heads/master
v: v3
  • Loading branch information
Yi Li authored and Bryan Wu committed Jan 27, 2008
1 parent ad13210 commit 20ea3f3
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 7 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: de8c43f2fca9bb06f3ee87b38a61d5d9966ce221
refs/heads/master: ee7883b7466e721a72edacbcba2fe9cf449d82b2
1 change: 1 addition & 0 deletions trunk/arch/blackfin/kernel/setup.c
Original file line number Diff line number Diff line change
Expand Up @@ -238,6 +238,7 @@ void __init setup_arch(char **cmdline_p)
memory_end = _ramend - DMA_UNCACHED_REGION;

_ramstart = (unsigned long)__bss_stop;
_rambase = (unsigned long)_stext;
#ifdef CONFIG_MPU
/* Round up to multiple of 4MB. */
memory_start = (_ramstart + 0x3fffff) & ~0x3fffff;
Expand Down
29 changes: 23 additions & 6 deletions trunk/arch/blackfin/mm/init.c
Original file line number Diff line number Diff line change
Expand Up @@ -128,8 +128,8 @@ void __init paging_init(void)
void __init mem_init(void)
{
unsigned int codek = 0, datak = 0, initk = 0;
unsigned int reservedpages = 0, freepages = 0;
unsigned long tmp;
unsigned int len = _ramend - _rambase;
unsigned long start_mem = memory_start;
unsigned long end_mem = memory_end;

Expand All @@ -138,19 +138,36 @@ void __init mem_init(void)

start_mem = PAGE_ALIGN(start_mem);
max_mapnr = num_physpages = MAP_NR(high_memory);
printk(KERN_INFO "Physical pages: %lx\n", num_physpages);
printk(KERN_INFO "Kernel managed physical pages: %lu\n",
num_physpages);

/* This will put all memory onto the freelists. */
totalram_pages = free_all_bootmem();

reservedpages = 0;
for (tmp = 0; tmp < max_mapnr; tmp++)
if (PageReserved(pfn_to_page(tmp)))
reservedpages++;
freepages = max_mapnr - reservedpages;

/* do not count in kernel image between _rambase and _ramstart */
reservedpages -= (_ramstart - _rambase) >> PAGE_SHIFT;
#if (defined(CONFIG_BFIN_ICACHE) && ANOMALY_05000263)
reservedpages += (_ramend - memory_end - DMA_UNCACHED_REGION) >>
PAGE_SHIFT;
#endif

codek = (_etext - _stext) >> 10;
datak = (__bss_stop - __bss_start) >> 10;
initk = (__init_end - __init_begin) >> 10;
datak = ((_ramstart - _rambase) >> 10) - codek - initk;

tmp = nr_free_pages() << PAGE_SHIFT;
printk(KERN_INFO
"Memory available: %luk/%uk RAM, (%uk init code, %uk kernel code, %uk data, %uk dma)\n",
tmp >> 10, len >> 10, initk, codek, datak, DMA_UNCACHED_REGION >> 10);
"Memory available: %luk/%luk RAM, "
"(%uk init code, %uk kernel code, "
"%uk data, %uk dma, %uk reserved)\n",
(unsigned long) freepages << (PAGE_SHIFT-10), _ramend >> 10,
initk, codek, datak, DMA_UNCACHED_REGION >> 10,
(reservedpages << (PAGE_SHIFT-10)));

/* Initialize the blackfin L1 Memory. */
l1sram_init();
Expand Down

0 comments on commit 20ea3f3

Please sign in to comment.