summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKyösti Mälkki <kyosti.malkki@gmail.com>2021-06-26 14:11:52 +0300
committerKyösti Mälkki <kyosti.malkki@gmail.com>2022-06-29 11:55:01 +0000
commitbe03903ffb076570a7aa8473a9eaeec90925d084 (patch)
treebef111db617b56cc43cd871860af1f0ba6696f2d
parente02fd83eba7bb20956e0d1d1ef18f28f146b0340 (diff)
downloadcoreboot-be03903ffb076570a7aa8473a9eaeec90925d084.tar.gz
coreboot-be03903ffb076570a7aa8473a9eaeec90925d084.tar.bz2
coreboot-be03903ffb076570a7aa8473a9eaeec90925d084.zip
soc/cavium,ti: Do resource transition
Change-Id: I0b9bd00a5de4c2c8d91fa9d595d3ee313356048a Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/55916 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Felix Held <felix-coreboot@felixheld.de>
-rw-r--r--src/soc/cavium/cn81xx/soc.c2
-rw-r--r--src/soc/ti/am335x/soc.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/soc/cavium/cn81xx/soc.c b/src/soc/cavium/cn81xx/soc.c
index 85a9e00e0e57..ed1441ba45c7 100644
--- a/src/soc/cavium/cn81xx/soc.c
+++ b/src/soc/cavium/cn81xx/soc.c
@@ -323,7 +323,7 @@ void bootmem_platform_add_ranges(void)
static void soc_read_resources(struct device *dev)
{
// HACK: Don't advertise bootblock romstage CAR region, it's broken...
- ram_resource_kb(dev, 0, 2 * KiB, sdram_size_mb() * KiB - 2 * KiB);
+ ram_from_to(dev, 0, 2 * MiB, sdram_size_mb() * (uint64_t)MiB);
}
static void soc_init_atf(void)
diff --git a/src/soc/ti/am335x/soc.c b/src/soc/ti/am335x/soc.c
index 6f1c7940b26c..410b2d772fdb 100644
--- a/src/soc/ti/am335x/soc.c
+++ b/src/soc/ti/am335x/soc.c
@@ -6,7 +6,7 @@
static void soc_enable(struct device *dev)
{
- ram_resource_kb(dev, 0, (uintptr_t)_dram / KiB, CONFIG_DRAM_SIZE_MB * MiB / KiB);
+ ram_range(dev, 0, (uintptr_t)_dram, CONFIG_DRAM_SIZE_MB * (uint64_t)MiB);
}
struct chip_operations soc_ti_am335x_ops = {