ca8210.txt 934 B

12345678910111213141516171819202122232425262728
  1. * CA8210 IEEE 802.15.4 *
  2. Required properties:
  3. - compatible: Should be "cascoda,ca8210"
  4. - reg: Controlling chip select
  5. - spi-max-frequency: Maximum clock speed, should be *less than*
  6. 4000000
  7. - spi-cpol: Requires inverted clock polarity
  8. - reset-gpio: GPIO attached to reset
  9. - irq-gpio: GPIO attached to IRQ
  10. Optional properties:
  11. - extclock-enable: Include for the ca8210 to route its 16MHz clock
  12. to an output
  13. - extclock-freq: Frequency in Hz of the external clock
  14. - extclock-gpio: GPIO of the ca8210 to output the clock on
  15. Example:
  16. ca8210@0 {
  17. compatible = "cascoda,ca8210";
  18. reg = <0>;
  19. spi-max-frequency = <3000000>;
  20. spi-cpol;
  21. reset-gpio = <&gpio1 1 GPIO_ACTIVE_HIGH>;
  22. irq-gpio = <&gpio1 2 GPIO_ACTIVE_HIGH>;
  23. extclock-enable;
  24. extclock-freq = 16000000;
  25. extclock-gpio = 2;
  26. };