···11+Cadence SPI controller Device Tree Bindings22+-------------------------------------------33+44+Required properties:55+- compatible : Should be "cdns,spi-r1p6" or "xlnx,zynq-spi-r1p6".66+- reg : Physical base address and size of SPI registers map.77+- interrupts : Property with a value describing the interrupt88+ number.99+- interrupt-parent : Must be core interrupt controller1010+- clock-names : List of input clock names - "ref_clk", "pclk"1111+ (See clock bindings for details).1212+- clocks : Clock phandles (see clock bindings for details).1313+1414+Optional properties:1515+- num-cs : Number of chip selects used.1616+ If a decoder is used, this will be the number of1717+ chip selects after the decoder.1818+- is-decoded-cs : Flag to indicate whether decoder is used or not.1919+2020+Example:2121+2222+ spi@e0007000 {2323+ compatible = "xlnx,zynq-spi-r1p6";2424+ clock-names = "ref_clk", "pclk";2525+ clocks = <&clkc 26>, <&clkc 35>;2626+ interrupt-parent = <&intc>;2727+ interrupts = <0 49 4>;2828+ num-cs = <4>;2929+ is-decoded-cs = <0>;3030+ reg = <0xe0007000 0x1000>;3131+ } ;