Tom Rini | 53633a8 | 2024-02-29 12:33:36 -0500 | [diff] [blame^] | 1 | * ADF7242 IEEE 802.15.4 * |
| 2 | |
| 3 | Required 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 | |
| 10 | Example: |
| 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 | }; |