Martin Roth ([email protected]) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/1018
-gerrit commit f4a65f88da4e16dd878181151414a64dd1d8d696 Author: Martin Roth <[email protected]> Date: Mon May 7 16:45:29 2012 -0600 CIMx: Allow #define LEGACY_FREE overrides For legacy free AMD systems, the #define LEGACY_FREE cannot currently be overridden. This patch allows the platform_cfg.h to override that. (I know we want to get away from that, but for now...) Also allow BIOS_SIZE to be overridden on SB700 cimx based platforms. Change-Id: I570115248bcbc686062bfb66acb56208240b847a Signed-off-by: Martin L Roth <[email protected]> --- src/vendorcode/amd/cimx/sb700/OEM.h | 8 ++++++-- src/vendorcode/amd/cimx/sb800/OEM.h | 4 +++- src/vendorcode/amd/cimx/sb900/Oem.h | 4 +++- 3 files changed, 12 insertions(+), 4 deletions(-) diff --git a/src/vendorcode/amd/cimx/sb700/OEM.h b/src/vendorcode/amd/cimx/sb700/OEM.h index 74604c0..51a8296 100644 --- a/src/vendorcode/amd/cimx/sb700/OEM.h +++ b/src/vendorcode/amd/cimx/sb700/OEM.h @@ -29,8 +29,12 @@ #ifndef _AMD_SB_CIMx_OEM_H_ #define _AMD_SB_CIMx_OEM_H_ -#define BIOS_SIZE 0x04 //04 - 1MB -#define LEGACY_FREE 0x00 +#ifndef BIOS_SIZE + #define BIOS_SIZE 0x04 //04 - 1MB +#endif +#ifndef LEGACY_FREE + #define LEGACY_FREE 0x00 +#endif /** * PCIEX_BASE_ADDRESS - Define PCIE base address diff --git a/src/vendorcode/amd/cimx/sb800/OEM.h b/src/vendorcode/amd/cimx/sb800/OEM.h index b38acba..c2d8670 100644 --- a/src/vendorcode/amd/cimx/sb800/OEM.h +++ b/src/vendorcode/amd/cimx/sb800/OEM.h @@ -33,7 +33,9 @@ #ifndef BIOS_SIZE #define BIOS_SIZE 0x04 //04 - 1MB #endif -#define LEGACY_FREE 0x00 +#ifndef LEGACY_FREE + #define LEGACY_FREE 0x00 +#endif //#define ACPI_SLEEP_TRAP 0x01 //#define SPREAD_SPECTRUM_EPROM_LOAD 0x01 diff --git a/src/vendorcode/amd/cimx/sb900/Oem.h b/src/vendorcode/amd/cimx/sb900/Oem.h index 14bc530..f374b30 100755 --- a/src/vendorcode/amd/cimx/sb900/Oem.h +++ b/src/vendorcode/amd/cimx/sb900/Oem.h @@ -30,7 +30,9 @@ #ifndef BIOS_SIZE #define BIOS_SIZE 0x04 //04 - 1MB #endif -#define LEGACY_FREE 0x00 +#ifndef LEGACY_FREE + #define LEGACY_FREE 0x00 +#endif #define ACPI_SLEEP_TRAP 0x01 //#define SPREAD_SPECTRUM_EPROM_LOAD 0x01 -- coreboot mailing list: [email protected] http://www.coreboot.org/mailman/listinfo/coreboot

