xref: /OK3568_Linux_fs/kernel/Documentation/devicetree/bindings/net/ieee802154/mcr20a.txt (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1*4882a593Smuzhiyun* MCR20A IEEE 802.15.4 *
2*4882a593Smuzhiyun
3*4882a593SmuzhiyunRequired properties:
4*4882a593Smuzhiyun  - compatible:		should be "nxp,mcr20a"
5*4882a593Smuzhiyun  - spi-max-frequency:	maximal bus speed, should be set to a frequency
6*4882a593Smuzhiyun			lower than 9000000 depends sync or async operation mode
7*4882a593Smuzhiyun  - reg:		the chipselect index
8*4882a593Smuzhiyun  - interrupts:		the interrupt generated by the device. Non high-level
9*4882a593Smuzhiyun			can occur deadlocks while handling isr.
10*4882a593Smuzhiyun
11*4882a593SmuzhiyunOptional properties:
12*4882a593Smuzhiyun  - rst_b-gpio:		GPIO spec for the RST_B pin
13*4882a593Smuzhiyun
14*4882a593SmuzhiyunExample:
15*4882a593Smuzhiyun
16*4882a593Smuzhiyun	mcr20a@0 {
17*4882a593Smuzhiyun		compatible = "nxp,mcr20a";
18*4882a593Smuzhiyun		spi-max-frequency = <9000000>;
19*4882a593Smuzhiyun		reg = <0>;
20*4882a593Smuzhiyun		interrupts = <17 2>;
21*4882a593Smuzhiyun		interrupt-parent = <&gpio>;
22*4882a593Smuzhiyun		rst_b-gpio = <&gpio 27 1>
23*4882a593Smuzhiyun	};
24