arm64: dts: qcom: sdm845: Add qspi (quad SPI) node
authorDouglas Anderson <dianders@chromium.org>
Mon, 8 Oct 2018 20:17:11 +0000 (13:17 -0700)
committerAndy Gross <andy.gross@linaro.org>
Fri, 25 Jan 2019 04:16:29 +0000 (22:16 -0600)
This adds the Quad SPI controller to the main sdm845 device tree file.
Boards will be expected to assign the proper pinctrl depending on how
many chip selects they have hooked up and how many data lines.

This depends on commit 48735597f7bd ("clk: qcom: Add qspi (Quad SPI)
clock defines for sdm845 to header") to add the needed defines.  It
also shouldn't land until the patch ("dt-bindings: spi: Qualcomm Quad
SPI(QSPI) documentation") [1] lands.

[1] https://lkml.kernel.org/r/20181002214709.162330-1-ryandcase@chromium.org

Reviewed-by: Stephen Boyd <swboyd@chromium.org>
Signed-off-by: Douglas Anderson <dianders@chromium.org>
Signed-off-by: Bjorn Andersson <bjorn.andersson@linaro.org>
Signed-off-by: Andy Gross <andy.gross@linaro.org>
arch/arm64/boot/dts/qcom/sdm845.dtsi

index f19353414eda1cb0c74a7dd0117b4ded3089e82c..f6af1d02c8e3f15e6905d23af1ef431c4b681c5c 100644 (file)
                        interrupt-controller;
                        #interrupt-cells = <2>;
 
+                       qspi_clk: qspi-clk {
+                               pinmux {
+                                       pins = "gpio95";
+                                       function = "qspi_clk";
+                               };
+                       };
+
+                       qspi_cs0: qspi-cs0 {
+                               pinmux {
+                                       pins = "gpio90";
+                                       function = "qspi_cs";
+                               };
+                       };
+
+                       qspi_cs1: qspi-cs1 {
+                               pinmux {
+                                       pins = "gpio89";
+                                       function = "qspi_cs";
+                               };
+                       };
+
+                       qspi_data01: qspi-data01 {
+                               pinmux-data {
+                                       pins = "gpio91", "gpio92";
+                                       function = "qspi_data";
+                               };
+                       };
+
+                       qspi_data12: qspi-data12 {
+                               pinmux-data {
+                                       pins = "gpio93", "gpio94";
+                                       function = "qspi_data";
+                               };
+                       };
+
                        qup_i2c0_default: qup-i2c0-default {
                                pinmux {
                                        pins = "gpio0", "gpio1";
                        status = "disabled";
                };
 
+               qspi: spi@88df000 {
+                       compatible = "qcom,sdm845-qspi", "qcom,qspi-v1";
+                       reg = <0x88df000 0x600>;
+                       #address-cells = <1>;
+                       #size-cells = <0>;
+                       interrupts = <GIC_SPI 82 IRQ_TYPE_LEVEL_HIGH>;
+                       clocks = <&gcc GCC_QSPI_CNOC_PERIPH_AHB_CLK>,
+                                <&gcc GCC_QSPI_CORE_CLK>;
+                       clock-names = "iface", "core";
+                       status = "disabled";
+               };
+
                usb_1_hsphy: phy@88e2000 {
                        compatible = "qcom,sdm845-qusb2-phy";
                        reg = <0x88e2000 0x400>;