]> git.kernelconcepts.de Git - karo-tx-uboot.git/commit
x86: Add function to get top of usable ram
authorSimon Glass <sjg@chromium.org>
Thu, 28 Feb 2013 19:26:10 +0000 (19:26 +0000)
committerSimon Glass <sjg@chromium.org>
Mon, 4 Mar 2013 23:56:46 +0000 (15:56 -0800)
commit5e98947f9baa5bdc9b819d365f9f8ef65a9b1e4d
tree3837fd16321542d20d654442752b419d84514709
parent2536850d7cd90bdb75bf3ff86838f913392b68db
x86: Add function to get top of usable ram

The memory layout calculations are done in calculate_relocation_address(),
and coreboot has its own version of this function. But in fact all we
really need is to set the top of usable RAM, and then the base version
will work as is.

So instead of allowing the whole calculate_relocation_address() function
to be replaced, create board_get_usable_ram_top() which can be used by
a board to specify the top of the area where U-Boot relocations to.

Signed-off-by: Simon Glass <sjg@chromium.org>
arch/x86/cpu/coreboot/sdram.c
arch/x86/lib/init_helpers.c