From 44f30278153ce5dc1de882117ebff3526a997d95 Mon Sep 17 00:00:00 2001 From: Valentine Barshak Date: Fri, 16 Nov 2018 00:03:36 +0300 Subject: [PATCH 193/211] arm64: dts: renesas: v3hsk: Add s25fs512s QSPI flash node Add s25fs512s QSPI flash node. This is based on the original patch by Dmitry Shifrin. Signed-off-by: Dmitry Shifrin Signed-off-by: Valentine Barshak --- arch/arm64/boot/dts/renesas/r8a77980-v3hsk.dts | 72 ++++++++++++++++++++++++++ 1 file changed, 72 insertions(+) diff --git a/arch/arm64/boot/dts/renesas/r8a77980-v3hsk.dts b/arch/arm64/boot/dts/renesas/r8a77980-v3hsk.dts index 0e0aed7..cfbfd98 100644 --- a/arch/arm64/boot/dts/renesas/r8a77980-v3hsk.dts +++ b/arch/arm64/boot/dts/renesas/r8a77980-v3hsk.dts @@ -251,6 +251,78 @@ function = "mmc"; power-source = <3300>; }; + + qspi0_pins: qspi0 { + groups = "qspi0_ctrl", "qspi0_data4"; + function = "qspi0"; + }; + + qspi1_pins: qspi1 { + groups = "qspi1_ctrl", "qspi1_data4"; + function = "qspi1"; + }; +}; + +&qspi0 { + pinctrl-0 = <&qspi0_pins &qspi1_pins>; + pinctrl-names = "default"; + + status = "okay"; + + flash@0 { + compatible = "spansion,s25fs512s", "jedec,spi-nor"; + reg = <0>; + spi-max-frequency = <50000000>; + spi-rx-bus-width = <4>; + + partitions { + compatible = "fixed-partitions"; + #address-cells = <1>; + #size-cells = <1>; + + bootparam@0 { + reg = <0x00000000 0x040000>; + read-only; + }; + cr7@00040000 { + reg = <0x00040000 0x080000>; + read-only; + }; + cert_header_sa3@000C0000 { + reg = <0x000C0000 0x080000>; + read-only; + }; + bl2@00140000 { + reg = <0x00140000 0x040000>; + read-only; + }; + cert_header_sa6@00180000 { + reg = <0x00180000 0x040000>; + read-only; + }; + bl31@001C0000 { + reg = <0x001C0000 0x480000>; + read-only; + }; + uboot@00640000 { + reg = <0x00640000 0x0C0000>; + read-only; + }; + uboot-env@00700000 { + reg = <0x00700000 0x040000>; + read-only; + }; + dtb@00740000 { + reg = <0x00740000 0x080000>; + }; + kernel@007C0000 { + reg = <0x007C0000 0x1400000>; + }; + user@01BC0000 { + reg = <0x01BC0000 0x2440000>; + }; + }; + }; }; &rwdt { -- 2.7.4