1 * Rockchip SPI Controller
3 The Rockchip SPI controller is used to interface with various devices such as flash
4 and display controllers using the SPI communication interface.
8 - compatible: should be one of the following.
9 "rockchip,rk3066-spi" for rk3066.
10 "rockchip,rk3188-spi", "rockchip,rk3066-spi" for rk3188.
11 "rockchip,rk3288-spi", "rockchip,rk3066-spi" for rk3288.
12 - reg: physical base address of the controller and length of memory mapped
14 - interrupts: The interrupt number to the cpu. The interrupt specifier format
15 depends on the interrupt controller.
16 - clocks: Must contain an entry for each entry in clock-names.
17 - clock-names: Shall be "spiclk" for the transfer-clock, and "apb_pclk" for
19 - #address-cells: should be 1.
20 - #size-cells: should be 0.
24 - dmas: DMA specifiers for tx and rx dma. See the DMA client binding,
25 Documentation/devicetree/bindings/dma/dma.txt
26 - dma-names: DMA request names should include "tx" and "rx" if present.
27 - rx-sample-delay-ns: nanoseconds to delay after the SCLK edge before sampling
28 Rx data (may need to be fine tuned for high capacitance lines).
29 No delay (0) by default.
35 compatible = "rockchip,rk3066-spi";
36 reg = <0xff110000 0x1000>;
37 dmas = <&pdma1 11>, <&pdma1 12>;
38 dma-names = "tx", "rx";
39 rx-sample-delay-ns = <10>;
42 interrupts = <GIC_SPI 44 IRQ_TYPE_LEVEL_HIGH>;
43 clocks = <&cru SCLK_SPI0>, <&cru PCLK_SPI0>;
44 clock-names = "spiclk", "apb_pclk";