mirror of
https://github.com/Fishwaldo/u-boot.git
synced 2025-03-15 19:51:37 +00:00
arm64: mvebu: extend the mmio region
Some of the setups including cn9130 opens mmio window starting from 0xc0000000, reflect it in the u-boot code. Signed-off-by: Grzegorz Jaszczyk <jaz@semihalf.com> Signed-off-by: Kostya Porotchkin <kostap@marvell.com> Signed-off-by: Stefan Roese <sr@denx.de>
This commit is contained in:
parent
32a1a5b374
commit
7d8e1651da
2 changed files with 4 additions and 2 deletions
|
@ -46,8 +46,8 @@ static struct mm_region mvebu_mem_map[] = {
|
|||
},
|
||||
{
|
||||
/* MMIO regions */
|
||||
.phys = SOC_REGS_PHY_BASE,
|
||||
.virt = SOC_REGS_PHY_BASE,
|
||||
.phys = MMIO_REGS_PHY_BASE,
|
||||
.virt = MMIO_REGS_PHY_BASE,
|
||||
.size = SZ_1G,
|
||||
|
||||
.attrs = PTE_BLOCK_MEMTYPE(MT_DEVICE_NGNRNE) |
|
||||
|
|
|
@ -13,4 +13,6 @@
|
|||
/* Firmware related definition used for SMC calls */
|
||||
#define MV_SIP_DRAM_SIZE 0x82000010
|
||||
|
||||
#define MMIO_REGS_PHY_BASE 0xc0000000
|
||||
|
||||
#endif /* _FW_INFO_H_ */
|
||||
|
|
Loading…
Add table
Reference in a new issue