brintos

brintos / linux-shallow public Read only

0
0
Text · 489 B · d24172c Raw
19 lines · plain
1* 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 index7  - 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	};19