sh-hspi.txt 888 B

1234567891011121314151617181920212223242526272829
  1. Renesas HSPI.
  2. Required properties:
  3. - compatible : "renesas,hspi-<soctype>", "renesas,hspi" as fallback.
  4. Examples with soctypes are:
  5. - "renesas,hspi-r8a7778" (R-Car M1)
  6. - "renesas,hspi-r8a7779" (R-Car H1)
  7. - reg : Offset and length of the register set for the device
  8. - interrupt-parent : The phandle for the interrupt controller that
  9. services interrupts for this device
  10. - interrupts : Interrupt specifier
  11. - #address-cells : Must be <1>
  12. - #size-cells : Must be <0>
  13. Pinctrl properties might be needed, too. See
  14. Documentation/devicetree/bindings/pinctrl/renesas,*.
  15. Example:
  16. hspi0: spi@fffc7000 {
  17. compatible = "renesas,hspi-r8a7778", "renesas,hspi";
  18. reg = <0xfffc7000 0x18>;
  19. interrupt-parent = <&gic>;
  20. interrupts = <0 63 IRQ_TYPE_LEVEL_HIGH>;
  21. #address-cells = <1>;
  22. #size-cells = <0>;
  23. status = "disabled";
  24. };