spi-rockchip.txt 1.7 KB

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