blob: a4ed2efb5b73e6713a9d5df8f3049cba02911b97 [file] [log] [blame]
Tom Rini53633a82024-02-29 12:33:36 -05001* MRF24J40 IEEE 802.15.4 *
2
3Required properties:
4 - compatible: should be "microchip,mrf24j40", "microchip,mrf24j40ma",
5 or "microchip,mrf24j40mc" depends on your transceiver
6 board
7 - spi-max-frequency: maximal bus speed, should be set something under or equal
8 10000000
9 - reg: the chipselect index
10 - interrupts: the interrupt generated by the device.
11
12Example:
13
14 mrf24j40ma@0 {
15 compatible = "microchip,mrf24j40ma";
16 spi-max-frequency = <8500000>;
17 reg = <0>;
18 interrupts = <19 8>;
19 interrupt-parent = <&gpio3>;
20 };