diff options
| author | Tom Rini <[email protected]> | 2020-02-05 07:18:12 -0500 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2020-02-05 07:18:12 -0500 |
| commit | c95215a6ca1cc7bb53cc634159e222abc06fddff (patch) | |
| tree | 885fff6c0bf5e22adb4a037873174dd70ca2ccd9 /arch | |
| parent | d4827fcd4c1b04c338e4019e412f495aa4231d24 (diff) | |
| parent | 095c6eba9d02688e7a1c3cd2093f826d05fe961f (diff) | |
Merge tag 'rpi-next-2020.04' of https://gitlab.denx.de/u-boot/custodians/u-boot-raspberrypi
- DFU support file operations lager then the default max size
- add dfu support to dwc2 for bcm2835
- enable DFU for RPi4
- Fix RPi4 memory map to include the genet device
- add driver for the genet ethernet device
- enable network support in RPi4 config
Diffstat (limited to 'arch')
| -rw-r--r-- | arch/arm/mach-bcm283x/init.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/arch/arm/mach-bcm283x/init.c b/arch/arm/mach-bcm283x/init.c index 3b5f45b431a..9966d6c8336 100644 --- a/arch/arm/mach-bcm283x/init.c +++ b/arch/arm/mach-bcm283x/init.c @@ -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 |
