diff options
| author | Marian Balakowicz <[email protected]> | 2008-05-07 13:10:04 +0200 |
|---|---|---|
| committer | Wolfgang Denk <[email protected]> | 2008-05-10 00:16:13 +0200 |
| commit | 1b5605ca57fbb364f4d78eeee28b974ed875e888 (patch) | |
| tree | 0a19c491ded69f7b2e1771e654e6b90807bde522 /lib_ppc | |
| parent | c59518e15949b3403df5c5b0c2c48ea0e5bea24b (diff) | |
Avoid initrd and logbuffer area overlaps
Add logbuffer to reserved LMB areas to prevent initrd allocation
from overlaping with it.
Make sure to use correct logbuffer base address.
Signed-off-by: Marian Balakowicz <[email protected]>
Diffstat (limited to 'lib_ppc')
| -rw-r--r-- | lib_ppc/board.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/lib_ppc/board.c b/lib_ppc/board.c index 4956403cce8..bc49ea1284b 100644 --- a/lib_ppc/board.c +++ b/lib_ppc/board.c @@ -398,6 +398,11 @@ ulong get_effective_memsize(void) ************************************************************************ */ +unsigned long logbuffer_base(void) +{ + return CFG_SDRAM_BASE + get_effective_memsize() - LOGBUFF_LEN; +} + void board_init_f (ulong bootflag) { bd_t *bd; |
