soc/nvidia/tegra124: Do resource transition
Change-Id: I422ece7b64bf81bcc75a414fd27f15ec330d40be Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/55919 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Felix Held <felix-coreboot@felixheld.de>
This commit is contained in:
parent
dcbdedd827
commit
a08f509cc5
|
@ -19,16 +19,11 @@ static void soc_read_resources(struct device *dev)
|
||||||
u32 lcdbase = fb_base_mb();
|
u32 lcdbase = fb_base_mb();
|
||||||
unsigned long fb_size = FB_SIZE_MB;
|
unsigned long fb_size = FB_SIZE_MB;
|
||||||
|
|
||||||
ram_resource_kb(dev, 0, (uintptr_t)_dram/KiB,
|
ram_from_to(dev, 0, (uintptr_t)_dram, (sdram_max_addressable_mb() - fb_size) * MiB);
|
||||||
(sdram_max_addressable_mb() - fb_size)*KiB -
|
mmio_range(dev, 1, lcdbase * MiB, fb_size * MiB);
|
||||||
(uintptr_t)_dram/KiB);
|
|
||||||
mmio_resource_kb(dev, 1, lcdbase*KiB, fb_size*KiB);
|
|
||||||
|
|
||||||
u32 sdram_end_mb = sdram_size_mb() + (uintptr_t)_dram/MiB;
|
ram_from_to(dev, 2, sdram_max_addressable_mb() * MiB,
|
||||||
|
(uintptr_t)_dram + sdram_size_mb() * (uint64_t)MiB);
|
||||||
if (sdram_end_mb > sdram_max_addressable_mb())
|
|
||||||
ram_resource_kb(dev, 2, sdram_max_addressable_mb()*KiB,
|
|
||||||
(sdram_end_mb - sdram_max_addressable_mb())*KiB);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static void soc_init(struct device *dev)
|
static void soc_init(struct device *dev)
|
||||||
|
|
Loading…
Reference in New Issue