-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Alexander Aring says: ==================== at86rf230 cleanup this is the first patch series to cleanup the at86rf230 driver. Later I want to implement regmap and a asynchron spi handling for transmit and receiving frames. ==================== Signed-off-by: David S. Miller <davem@davemloft.net>
- Loading branch information
Showing
3 changed files
with
65 additions
and
105 deletions.
There are no files selected for viewing
23 changes: 23 additions & 0 deletions
23
Documentation/devicetree/bindings/net/ieee802154/at86rf230.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
* AT86RF230 IEEE 802.15.4 * | ||
|
||
Required properties: | ||
- compatible: should be "atmel,at86rf230", "atmel,at86rf231", | ||
"atmel,at86rf233" or "atmel,at86rf212" | ||
- spi-max-frequency: maximal bus speed, should be set to 7500000 depends | ||
sync or async operation mode | ||
- reg: the chipselect index | ||
- interrupts: the interrupt generated by the device | ||
|
||
Optional properties: | ||
- reset-gpio: GPIO spec for the rstn pin | ||
- sleep-gpio: GPIO spec for the slp_tr pin | ||
|
||
Example: | ||
|
||
at86rf231@0 { | ||
compatible = "atmel,at86rf231"; | ||
spi-max-frequency = <7500000>; | ||
reg = <0>; | ||
interrupts = <19 1>; | ||
interrupt-parent = <&gpio3>; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters