diff options
author | Kyösti Mälkki <kyosti.malkki@gmail.com> | 2021-06-26 14:12:54 +0300 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2022-06-30 16:27:34 +0000 |
commit | f35c074ad4dc1916496b13524f6b453ef5cf2635 (patch) | |
tree | d89003d9441ab173d1d3de7c8db87a729f866623 /src/soc/qualcomm/sc7180/soc.c | |
parent | b20a714bfab30a530b7e96aea19042caac4e6645 (diff) |
soc/qualcomm: Do resource transition
For ipq806x this fixes two resources getting declared
with same index. The latter previously overwrote former.
Change-Id: Ifee321d930d5433c824e2e977f1bb455766582f0
Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/55914
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Felix Held <felix-coreboot@felixheld.de>
Diffstat (limited to 'src/soc/qualcomm/sc7180/soc.c')
-rw-r--r-- | src/soc/qualcomm/sc7180/soc.c | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/src/soc/qualcomm/sc7180/soc.c b/src/soc/qualcomm/sc7180/soc.c index 93e36e2a6a..d8df98ace7 100644 --- a/src/soc/qualcomm/sc7180/soc.c +++ b/src/soc/qualcomm/sc7180/soc.c @@ -12,14 +12,11 @@ static void soc_read_resources(struct device *dev) void *start = NULL; void *end = NULL; - ram_resource_kb(dev, 0, (uintptr_t)ddr_region->offset / KiB, - ddr_region->size / KiB); - reserved_ram_resource_kb(dev, 1, (uintptr_t)_dram_aop / KiB, - REGION_SIZE(dram_aop) / KiB); - reserved_ram_resource_kb(dev, 2, (uintptr_t)_dram_soc / KiB, - REGION_SIZE(dram_soc) / KiB); + ram_range(dev, 0, (uintptr_t)ddr_region->offset, ddr_region->size); + reserved_ram_range(dev, 1, (uintptr_t)_dram_aop, REGION_SIZE(dram_aop)); + reserved_ram_range(dev, 2, (uintptr_t)_dram_soc, REGION_SIZE(dram_soc)); if (soc_modem_carve_out(&start, &end)) - reserved_ram_resource_kb(dev, 3, (uintptr_t)start / KiB, (end - start) / KiB); + reserved_ram_range(dev, 3, (uintptr_t)start, end - start); } static void soc_init(struct device *dev) |