diff options
author | Geert Uytterhoeven <geert+renesas@glider.be> | 2019-03-20 20:45:22 +0100 |
---|---|---|
committer | Simon Horman <horms+renesas@verge.net.au> | 2019-03-22 11:14:07 +0100 |
commit | 53239664e5ae353f60f37a566dbd32415a906ee8 (patch) | |
tree | 6d770af0356cc75b37ceda4b0e1ecff81a1c23b2 /arch/arm/boot/dts/r8a73a4-ape6evm.dts | |
parent | a8d5fc0be537d49562f3d4b63390584e304ec8dc (diff) | |
download | lwn-53239664e5ae353f60f37a566dbd32415a906ee8.tar.gz lwn-53239664e5ae353f60f37a566dbd32415a906ee8.zip |
ARM: dts: ape6evm: Add NOR FLASH
Describe the 128 MiB CFI NOR FLASH, which contains the boot loader and
its environment.
Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
Tested-by: Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
Signed-off-by: Simon Horman <horms+renesas@verge.net.au>
Diffstat (limited to 'arch/arm/boot/dts/r8a73a4-ape6evm.dts')
-rw-r--r-- | arch/arm/boot/dts/r8a73a4-ape6evm.dts | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/arch/arm/boot/dts/r8a73a4-ape6evm.dts b/arch/arm/boot/dts/r8a73a4-ape6evm.dts index d530f451467e..b1e0d556be0a 100644 --- a/arch/arm/boot/dts/r8a73a4-ape6evm.dts +++ b/arch/arm/boot/dts/r8a73a4-ape6evm.dts @@ -166,6 +166,33 @@ }; &bsc { + flash@0 { + compatible = "cfi-flash", "mtd-rom"; + reg = <0x0 0x08000000>; + bank-width = <2>; + + partitions { + compatible = "fixed-partitions"; + #address-cells = <1>; + #size-cells = <1>; + + partition@0 { + label = "uboot"; + reg = <0x00000000 0x00040000>; + read-only; + }; + partition@40000 { + label = "uboot-env"; + reg = <0x00040000 0x00040000>; + read-only; + }; + partition@80000 { + label = "flash"; + reg = <0x00080000 0x07f80000>; + }; + }; + }; + ethernet@8000000 { compatible = "smsc,lan9220", "smsc,lan9115"; reg = <0x08000000 0x1000>; |