mcr20a.txt 612 B

1234567891011121314151617181920212223
  1. * MCR20A IEEE 802.15.4 *
  2. Required properties:
  3. - compatible: should be "nxp,mcr20a"
  4. - spi-max-frequency: maximal bus speed, should be set to a frequency
  5. lower than 9000000 depends sync or async operation mode
  6. - reg: the chipselect index
  7. - interrupts: the interrupt generated by the device. Non high-level
  8. can occur deadlocks while handling isr.
  9. Optional properties:
  10. - rst_b-gpio: GPIO spec for the RST_B pin
  11. Example:
  12. mcr20a@0 {
  13. compatible = "nxp,mcr20a";
  14. spi-max-frequency = <9000000>;
  15. reg = <0>;
  16. interrupts = <17 2>;
  17. interrupt-parent = <&gpio>;
  18. rst_b-gpio = <&gpio 27 1>
  19. };