blob: d24172cc6d32106e1ed7d02736694dcc75de886f [file] [log] [blame]
Tom Rini53633a82024-02-29 12:33:36 -05001* ADF7242 IEEE 802.15.4 *
2
3Required properties:
4 - compatible: should be "adi,adf7242", "adi,adf7241"
5 - spi-max-frequency: maximal bus speed (12.5 MHz)
6 - reg: the chipselect index
7 - interrupts: the interrupt generated by the device via pin IRQ1.
8 IRQ_TYPE_LEVEL_HIGH (4) or IRQ_TYPE_EDGE_FALLING (1)
9
10Example:
11
12 adf7242@0 {
13 compatible = "adi,adf7242";
14 spi-max-frequency = <10000000>;
15 reg = <0>;
16 interrupts = <98 IRQ_TYPE_LEVEL_HIGH>;
17 interrupt-parent = <&gpio3>;
18 };