This patch adds an SPI master device node for Armada XP-GP board. This master node is an SPI flash controller 'n25q128a13'.
Since there is no 'partitions' node declared, one full sized partition named as the device will be created. Cc: Thomas Petazzoni <[email protected]> Cc: Lior Amsalem <[email protected]> Tested-by: Gregory Clement <[email protected]> Signed-off-by: Ezequiel Garcia <[email protected]> --- Depends on Gregory's patch for Armada XP GP board: "arm: mvebu: support for the new Armada XP development board(DB-MV784MP-GP)" arch/arm/boot/dts/armada-xp-gp.dts | 12 ++++++++++++ 1 files changed, 12 insertions(+), 0 deletions(-) diff --git a/arch/arm/boot/dts/armada-xp-gp.dts b/arch/arm/boot/dts/armada-xp-gp.dts index 872ed04..b1aa952 100644 --- a/arch/arm/boot/dts/armada-xp-gp.dts +++ b/arch/arm/boot/dts/armada-xp-gp.dts @@ -97,5 +97,17 @@ phy = <&phy3>; phy-mode = "rgmii-id"; }; + + spi0: spi@d0010600 { + status = "okay"; + + spi-flash@0 { + #address-cells = <1>; + #size-cells = <1>; + compatible = "n25q128a13"; + reg = <0>; /* Chip select 0 */ + spi-max-frequency = <108000000>; + }; + }; }; }; -- 1.7.8.6 _______________________________________________ devicetree-discuss mailing list [email protected] https://lists.ozlabs.org/listinfo/devicetree-discuss
