diff options
author | Olof Johansson <olof@lixom.net> | 2017-05-26 02:02:05 +0200 |
---|---|---|
committer | Olof Johansson <olof@lixom.net> | 2017-05-26 02:02:05 +0200 |
commit | 962ef410d933dcf92303470484e101f4661d58cc (patch) | |
tree | 7e877c85404a2f5bd063f048955d6061072f8569 /arch/arm | |
parent | arm64: defconfig: enable some core options for 64bit Rockchip socs (diff) | |
parent | Merge tag 'bcm2835-dt-fixes-2017-05-16' into devicetree/fixes (diff) | |
download | linux-962ef410d933dcf92303470484e101f4661d58cc.tar.xz linux-962ef410d933dcf92303470484e101f4661d58cc.zip |
Merge tag 'arm-soc/for-4.12/devicetree-fixes-2' of http://github.com/Broadcom/stblinux into fixes
This pull request contains Broadcom ARM-based SoCs Device Tree fixes for 4.12,
please pull the following:
- Phil provides a fix for the BCM283x (Raspberry Pi) by flagging the first
4KiB of physical memory as a reserved region in order to let the secondary
cores successfully spin until they are brought online
* tag 'arm-soc/for-4.12/devicetree-fixes-2' of http://github.com/Broadcom/stblinux:
ARM: dts: bcm283x: Reserve first page for firmware
Signed-off-by: Olof Johansson <olof@lixom.net>
Diffstat (limited to 'arch/arm')
-rw-r--r-- | arch/arm/boot/dts/bcm283x.dtsi | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/arch/arm/boot/dts/bcm283x.dtsi b/arch/arm/boot/dts/bcm283x.dtsi index 561f27d8d922..9444a9a9ba10 100644 --- a/arch/arm/boot/dts/bcm283x.dtsi +++ b/arch/arm/boot/dts/bcm283x.dtsi @@ -3,6 +3,11 @@ #include <dt-bindings/clock/bcm2835-aux.h> #include <dt-bindings/gpio/gpio.h> +/* firmware-provided startup stubs live here, where the secondary CPUs are + * spinning. + */ +/memreserve/ 0x00000000 0x00001000; + /* This include file covers the common peripherals and configuration between * bcm2835 and bcm2836 implementations, leaving the CPU configuration to * bcm2835.dtsi and bcm2836.dtsi. |