Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 91559
b: refs/heads/master
c: 09b5e63
h: refs/heads/master
i:
  91557: 59aea00
  91555: 9b98552
  91551: 20bc48b
v: v3
  • Loading branch information
Kumar Gala authored and Paul Mackerras committed Apr 16, 2008
1 parent 892c383 commit d919d1e
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 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: edc164d18f6b86b6de134d432de286e6c440c66d
refs/heads/master: 09b5e63f827016732d956abb7a4c74a312d20521
2 changes: 1 addition & 1 deletion trunk/arch/powerpc/mm/fsl_booke_mmu.c
Original file line number Diff line number Diff line change
Expand Up @@ -227,5 +227,5 @@ adjust_total_lowmem(void)
__cam0 >> 20, __cam1 >> 20, __cam2 >> 20,
(total_lowmem - __cam0 - __cam1 - __cam2) >> 20);
__max_low_memory = __cam0 + __cam1 + __cam2;
__initial_memory_limit = memstart_addr + __max_low_memory;
__initial_memory_limit_addr = memstart_addr + __max_low_memory;
}
10 changes: 5 additions & 5 deletions trunk/arch/powerpc/mm/init_32.c
Original file line number Diff line number Diff line change
Expand Up @@ -95,10 +95,10 @@ int __map_without_ltlbs;
unsigned long __max_low_memory = MAX_LOW_MEM;

/*
* limit of what is accessible with initial MMU setup -
* address of the limit of what is accessible with initial MMU setup -
* 256MB usually, but only 16MB on 601.
*/
unsigned long __initial_memory_limit = 0x10000000;
phys_addr_t __initial_memory_limit_addr = (phys_addr_t)0x10000000;

/*
* Check for command-line options that affect what MMU_init will do.
Expand Down Expand Up @@ -131,10 +131,10 @@ void __init MMU_init(void)

/* 601 can only access 16MB at the moment */
if (PVR_VER(mfspr(SPRN_PVR)) == 1)
__initial_memory_limit = 0x01000000;
__initial_memory_limit_addr = 0x01000000;
/* 8xx can only access 8MB at the moment */
if (PVR_VER(mfspr(SPRN_PVR)) == 0x50)
__initial_memory_limit = 0x00800000;
__initial_memory_limit_addr = 0x00800000;

/* parse args from command line */
MMU_setup();
Expand Down Expand Up @@ -209,7 +209,7 @@ void __init *early_get_page(void)
p = alloc_bootmem_pages(PAGE_SIZE);
} else {
p = __va(lmb_alloc_base(PAGE_SIZE, PAGE_SIZE,
__initial_memory_limit));
__initial_memory_limit_addr));
}
return p;
}
Expand Down
2 changes: 1 addition & 1 deletion trunk/arch/powerpc/mm/mmu_decl.h
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ extern unsigned int num_tlbcam_entries;

extern unsigned long ioremap_bot;
extern unsigned long __max_low_memory;
extern unsigned long __initial_memory_limit;
extern phys_addr_t __initial_memory_limit_addr;
extern unsigned long total_memory;
extern unsigned long total_lowmem;
extern phys_addr_t memstart_addr;
Expand Down
2 changes: 1 addition & 1 deletion trunk/arch/powerpc/mm/ppc_mmu_32.c
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@ void __init MMU_init_hw(void)
*/
if ( ppc_md.progress ) ppc_md.progress("hash:find piece", 0x322);
Hash = __va(lmb_alloc_base(Hash_size, Hash_size,
__initial_memory_limit));
__initial_memory_limit_addr));
cacheable_memzero(Hash, Hash_size);
_SDR1 = __pa(Hash) | SDR1_LOW_BITS;

Expand Down

0 comments on commit d919d1e

Please sign in to comment.