spi-rockchip.txt 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  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,rk3066-spi" for rk3066.
  7. "rockchip,rk3188-spi", "rockchip,rk3066-spi" for rk3188.
  8. "rockchip,rk3288-spi", "rockchip,rk3066-spi" for rk3288.
  9. - reg: physical base address of the controller and length of memory mapped
  10. region.
  11. - interrupts: The interrupt number to the cpu. The interrupt specifier format
  12. depends on the interrupt controller.
  13. - clocks: Must contain an entry for each entry in clock-names.
  14. - clock-names: Shall be "spiclk" for the transfer-clock, and "apb_pclk" for
  15. the peripheral clock.
  16. - #address-cells: should be 1.
  17. - #size-cells: should be 0.
  18. Optional Properties:
  19. - dmas: DMA specifiers for tx and rx dma. See the DMA client binding,
  20. Documentation/devicetree/bindings/dma/dma.txt
  21. - dma-names: DMA request names should include "tx" and "rx" if present.
  22. Example:
  23. spi0: spi@ff110000 {
  24. compatible = "rockchip,rk3066-spi";
  25. reg = <0xff110000 0x1000>;
  26. dmas = <&pdma1 11>, <&pdma1 12>;
  27. dma-names = "tx", "rx";
  28. #address-cells = <1>;
  29. #size-cells = <0>;
  30. interrupts = <GIC_SPI 44 IRQ_TYPE_LEVEL_HIGH>;
  31. clocks = <&cru SCLK_SPI0>, <&cru PCLK_SPI0>;
  32. clock-names = "spiclk", "apb_pclk";
  33. };