diff options
author | Kyösti Mälkki <kyosti.malkki@gmail.com> | 2014-04-30 01:35:29 +0300 |
---|---|---|
committer | Kyösti Mälkki <kyosti.malkki@gmail.com> | 2014-11-14 15:46:57 +0100 |
commit | eaee6e2d95d2a7520a47f07cc37f9e929ce7e1f1 (patch) | |
tree | 18f8c4414d269027c8fb9aec5b8efddfd23f556b /src/mainboard/supermicro | |
parent | abc083e06bcb8d20a58d04323d5c6da7313f987d (diff) |
AMD: Move RAMBASE and RAMTOP
There are no reasons to not load ramstage @ 0x100000.
Boards with HAVE_ACPI_RESUME enabled have performance penalty in using
excessive RAMTOP. For these boards, this change releases 11 MiB of RAM from CBMEM allocation to OS.
Change-Id: Ib71995aba5e9332d0ec1626b3eb3b4ef6a506d1c
Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com>
Reviewed-on: http://review.coreboot.org/7094
Tested-by: build bot (Jenkins)
Reviewed-by: Edward O'Callaghan <eocallaghan@alterapraxis.com>
Diffstat (limited to 'src/mainboard/supermicro')
-rw-r--r-- | src/mainboard/supermicro/h8dmr_fam10/Kconfig | 12 | ||||
-rw-r--r-- | src/mainboard/supermicro/h8qgi/Kconfig | 12 | ||||
-rw-r--r-- | src/mainboard/supermicro/h8qme_fam10/Kconfig | 12 | ||||
-rw-r--r-- | src/mainboard/supermicro/h8scm/Kconfig | 12 | ||||
-rw-r--r-- | src/mainboard/supermicro/h8scm_fam10/Kconfig | 12 |
5 files changed, 0 insertions, 60 deletions
diff --git a/src/mainboard/supermicro/h8dmr_fam10/Kconfig b/src/mainboard/supermicro/h8dmr_fam10/Kconfig index 02c46918c6..9f31542d89 100644 --- a/src/mainboard/supermicro/h8dmr_fam10/Kconfig +++ b/src/mainboard/supermicro/h8dmr_fam10/Kconfig @@ -32,18 +32,6 @@ config DCACHE_RAM_SIZE hex default 0x0c000 -config RAMBASE - hex - default 0x200000 - -config RAMTOP - hex - default 0x1000000 - -config HEAP_SIZE - hex - default 0xc0000 - config APIC_ID_OFFSET hex default 0x0 diff --git a/src/mainboard/supermicro/h8qgi/Kconfig b/src/mainboard/supermicro/h8qgi/Kconfig index ee78a2fbba..ced30cfcce 100644 --- a/src/mainboard/supermicro/h8qgi/Kconfig +++ b/src/mainboard/supermicro/h8qgi/Kconfig @@ -60,18 +60,6 @@ config IRQ_SLOT_COUNT int default 11 -config RAMTOP - hex - default 0x1000000 - -config HEAP_SIZE - hex - default 0xc0000 - -config RAMBASE - hex - default 0x200000 - config DRIVERS_PS2_KEYBOARD bool default y diff --git a/src/mainboard/supermicro/h8qme_fam10/Kconfig b/src/mainboard/supermicro/h8qme_fam10/Kconfig index 28d408e469..89798aae52 100644 --- a/src/mainboard/supermicro/h8qme_fam10/Kconfig +++ b/src/mainboard/supermicro/h8qme_fam10/Kconfig @@ -30,18 +30,6 @@ config DCACHE_RAM_SIZE hex default 0x0c000 -config RAMBASE - hex - default 0x200000 - -config RAMTOP - hex - default 0x1000000 - -config HEAP_SIZE - hex - default 0xff000 - config APIC_ID_OFFSET hex default 0x0 diff --git a/src/mainboard/supermicro/h8scm/Kconfig b/src/mainboard/supermicro/h8scm/Kconfig index a9757dfb62..793b918397 100644 --- a/src/mainboard/supermicro/h8scm/Kconfig +++ b/src/mainboard/supermicro/h8scm/Kconfig @@ -63,18 +63,6 @@ config IRQ_SLOT_COUNT int default 11 -config RAMTOP - hex - default 0x1000000 - -config HEAP_SIZE - hex - default 0xc0000 - -config RAMBASE - hex - default 0x200000 - config DRIVERS_PS2_KEYBOARD bool default y diff --git a/src/mainboard/supermicro/h8scm_fam10/Kconfig b/src/mainboard/supermicro/h8scm_fam10/Kconfig index 967b62dbac..e76ecece2c 100644 --- a/src/mainboard/supermicro/h8scm_fam10/Kconfig +++ b/src/mainboard/supermicro/h8scm_fam10/Kconfig @@ -61,16 +61,4 @@ config AMD_UCODE_PATCH_FILE string default "mc_patch_010000c4.h" -config RAMTOP - hex - default 0x2000000 - -config HEAP_SIZE - hex - default 0xc0000 - -config RAMBASE - hex - default 0x200000 - endif # BOARD_AMD_H8SCM_FAM10 |