st33zp24-spi.txt 1.0 KB

1234567891011121314151617181920212223242526272829303132333435
  1. * STMicroelectronics SAS. ST33ZP24 TPM SoC
  2. Required properties:
  3. - compatible: Should be "st,st33zp24-spi".
  4. - spi-max-frequency: Maximum SPI frequency (<= 10000000).
  5. Optional ST33ZP24 Properties:
  6. - interrupt-parent: phandle for the interrupt gpio controller
  7. - interrupts: GPIO interrupt to which the chip is connected
  8. - lpcpd-gpios: Output GPIO pin used for ST33ZP24 power management D1/D2 state.
  9. If set, power must be present when the platform is going into sleep/hibernate mode.
  10. Optional SoC Specific Properties:
  11. - pinctrl-names: Contains only one value - "default".
  12. - pintctrl-0: Specifies the pin control groups used for this controller.
  13. Example (for ARM-based BeagleBoard xM with ST33ZP24 on SPI4):
  14. &mcspi4 {
  15. status = "okay";
  16. st33zp24@0 {
  17. compatible = "st,st33zp24-spi";
  18. spi-max-frequency = <10000000>;
  19. interrupt-parent = <&gpio5>;
  20. interrupts = <7 IRQ_TYPE_LEVEL_HIGH>;
  21. lpcpd-gpios = <&gpio5 15 GPIO_ACTIVE_HIGH>;
  22. };
  23. };