mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-29 08:01:08 +00:00
rpi4: Update memory map to accommodate scb devices
Some of the devices(for instance, pcie and gnet controller) sitting on SCB bus falls behind/below the memory range that we currenty have. This patch updates the memory range to map those devices correctly. Signed-off-by: Amit Singh Tomar <amittomer25@gmail.com> Reviewed-by: Andre Przywara <andre.przywara@arm.com> Signed-off-by: Andre Przywara <andre.przywara@arm.com> Tested-by: Corentin Labbe <clabbe@baylibre.com> Signed-off-by: Matthias Brugger <mbrugger@suse.com>
This commit is contained in:
parent
d53e3fa385
commit
fff5d5499d
1 changed files with 3 additions and 3 deletions
|
@ -42,9 +42,9 @@ static struct mm_region bcm2711_mem_map[] = {
|
|||
.attrs = PTE_BLOCK_MEMTYPE(MT_NORMAL) |
|
||||
PTE_BLOCK_INNER_SHARE
|
||||
}, {
|
||||
.virt = 0xfe000000UL,
|
||||
.phys = 0xfe000000UL,
|
||||
.size = 0x01800000UL,
|
||||
.virt = 0xfc000000UL,
|
||||
.phys = 0xfc000000UL,
|
||||
.size = 0x03800000UL,
|
||||
.attrs = PTE_BLOCK_MEMTYPE(MT_DEVICE_NGNRNE) |
|
||||
PTE_BLOCK_NON_SHARE |
|
||||
PTE_BLOCK_PXN | PTE_BLOCK_UXN
|
||||
|
|
Loading…
Reference in a new issue