Kyösti Mälkki has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/34700 )
Change subject: southbridge/amd: Rename ramtop.c to memmap.c ......................................................................
southbridge/amd: Rename ramtop.c to memmap.c
Use a name consistent with the more recent soc/intel.
Change-Id: Ia5076ed1a59acc5a77c1a6cf5510b11e9d0a925f Signed-off-by: Kyösti Mälkki kyosti.malkki@gmail.com --- M src/northbridge/amd/pi/Makefile.inc R src/northbridge/amd/pi/memmap.c M src/southbridge/amd/agesa/hudson/Makefile.inc R src/southbridge/amd/agesa/hudson/memmap.c M src/southbridge/amd/cimx/sb800/Makefile.inc R src/southbridge/amd/cimx/sb800/memmap.c M src/southbridge/amd/cimx/sb900/Makefile.inc R src/southbridge/amd/cimx/sb900/memmap.c M src/southbridge/amd/sb700/Makefile.inc R src/southbridge/amd/sb700/memmap.c M src/southbridge/amd/sb800/Makefile.inc R src/southbridge/amd/sb800/memmap.c 12 files changed, 16 insertions(+), 16 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/00/34700/1
diff --git a/src/northbridge/amd/pi/Makefile.inc b/src/northbridge/amd/pi/Makefile.inc index c2c8d88..3380b63 100644 --- a/src/northbridge/amd/pi/Makefile.inc +++ b/src/northbridge/amd/pi/Makefile.inc @@ -24,7 +24,7 @@ ramstage-y += agesawrapper.c endif
-romstage-y += ramtop.c -postcar-y += ramtop.c -ramstage-y += ramtop.c +romstage-y += memmap.c +postcar-y += memmap.c +ramstage-y += memmap.c endif diff --git a/src/northbridge/amd/pi/ramtop.c b/src/northbridge/amd/pi/memmap.c similarity index 100% rename from src/northbridge/amd/pi/ramtop.c rename to src/northbridge/amd/pi/memmap.c diff --git a/src/southbridge/amd/agesa/hudson/Makefile.inc b/src/southbridge/amd/agesa/hudson/Makefile.inc index cd0a1d5..042d34d 100644 --- a/src/southbridge/amd/agesa/hudson/Makefile.inc +++ b/src/southbridge/amd/agesa/hudson/Makefile.inc @@ -23,10 +23,10 @@ romstage-y += early_setup.c
ramstage-$(CONFIG_SPI_FLASH) += spi.c -ramstage-y += resume.c ramtop.c +ramstage-y += resume.c memmap.c
-romstage-y += ramtop.c -postcar-y += ramtop.c +romstage-y += memmap.c +postcar-y += memmap.c
romstage-y += imc.c ramstage-y += imc.c diff --git a/src/southbridge/amd/agesa/hudson/ramtop.c b/src/southbridge/amd/agesa/hudson/memmap.c similarity index 100% rename from src/southbridge/amd/agesa/hudson/ramtop.c rename to src/southbridge/amd/agesa/hudson/memmap.c diff --git a/src/southbridge/amd/cimx/sb800/Makefile.inc b/src/southbridge/amd/cimx/sb800/Makefile.inc index 418110b..10c682a 100644 --- a/src/southbridge/amd/cimx/sb800/Makefile.inc +++ b/src/southbridge/amd/cimx/sb800/Makefile.inc @@ -30,9 +30,9 @@ ramstage-$(CONFIG_SPI_FLASH) += spi.c ramstage-$(CONFIG_HAVE_ACPI_TABLES) += fadt.c
-postcar-y += ramtop.c -romstage-y += ramtop.c -ramstage-y += ramtop.c +postcar-y += memmap.c +romstage-y += memmap.c +ramstage-y += memmap.c
bootblock-$(CONFIG_USBDEBUG) += ../../sb800/enable_usbdebug.c romstage-$(CONFIG_USBDEBUG) += ../../sb800/enable_usbdebug.c diff --git a/src/southbridge/amd/cimx/sb800/ramtop.c b/src/southbridge/amd/cimx/sb800/memmap.c similarity index 100% rename from src/southbridge/amd/cimx/sb800/ramtop.c rename to src/southbridge/amd/cimx/sb800/memmap.c diff --git a/src/southbridge/amd/cimx/sb900/Makefile.inc b/src/southbridge/amd/cimx/sb900/Makefile.inc index ff9ada6..4125d5f 100644 --- a/src/southbridge/amd/cimx/sb900/Makefile.inc +++ b/src/southbridge/amd/cimx/sb900/Makefile.inc @@ -20,15 +20,15 @@ romstage-y += early.c romstage-y += smbus.c smbus_spd.c romstage-y += reset.c -romstage-y += ramtop.c +romstage-y += memmap.c
-postcar-y += ramtop.c +postcar-y += memmap.c
ramstage-y += cfg.c ramstage-y += early.c ramstage-y += late.c ramstage-y += reset.c -ramstage-y += ramtop.c +ramstage-y += memmap.c
ramstage-y += smbus.c ramstage-y += lpc.c diff --git a/src/southbridge/amd/cimx/sb900/ramtop.c b/src/southbridge/amd/cimx/sb900/memmap.c similarity index 100% rename from src/southbridge/amd/cimx/sb900/ramtop.c rename to src/southbridge/amd/cimx/sb900/memmap.c diff --git a/src/southbridge/amd/sb700/Makefile.inc b/src/southbridge/amd/sb700/Makefile.inc index 17d0a3a..f11092f 100644 --- a/src/southbridge/amd/sb700/Makefile.inc +++ b/src/southbridge/amd/sb700/Makefile.inc @@ -21,7 +21,7 @@ romstage-y += early_setup.c romstage-y += smbus.c
-romstage-y += ramtop.c -ramstage-y += ramtop.c +romstage-y += memmap.c +ramstage-y += memmap.c
endif diff --git a/src/southbridge/amd/sb700/ramtop.c b/src/southbridge/amd/sb700/memmap.c similarity index 100% rename from src/southbridge/amd/sb700/ramtop.c rename to src/southbridge/amd/sb700/memmap.c diff --git a/src/southbridge/amd/sb800/Makefile.inc b/src/southbridge/amd/sb800/Makefile.inc index fd2577c..9dc2eaa 100644 --- a/src/southbridge/amd/sb800/Makefile.inc +++ b/src/southbridge/amd/sb800/Makefile.inc @@ -16,7 +16,7 @@ romstage-$(CONFIG_USBDEBUG) += enable_usbdebug.c ramstage-$(CONFIG_USBDEBUG) += enable_usbdebug.c
-romstage-y += ramtop.c -ramstage-y += ramtop.c +romstage-y += memmap.c +ramstage-y += memmap.c
endif diff --git a/src/southbridge/amd/sb800/ramtop.c b/src/southbridge/amd/sb800/memmap.c similarity index 100% rename from src/southbridge/amd/sb800/ramtop.c rename to src/southbridge/amd/sb800/memmap.c