mirror of
https://github.com/AetherDroid/android_kernel_samsung_on5xelte.git
synced 2025-10-30 07:38:52 +01:00
Fixed MTP to work with TWRP
This commit is contained in:
commit
f6dfaef42e
50820 changed files with 20846062 additions and 0 deletions
|
|
@ -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>;
|
||||
};
|
||||
29
Documentation/devicetree/bindings/net/ieee802154/cc2520.txt
Normal file
29
Documentation/devicetree/bindings/net/ieee802154/cc2520.txt
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
*CC2520 IEEE 802.15.4 Compatible Radio*
|
||||
|
||||
Required properties:
|
||||
- compatible: should be "ti,cc2520"
|
||||
- spi-max-frequency: maximal bus speed (8000000), should be set to 4000000 depends
|
||||
sync or async operation mode
|
||||
- reg: the chipselect index
|
||||
- pinctrl-0: pin control group to be used for this controller.
|
||||
- pinctrl-names: must contain a "default" entry.
|
||||
- fifo-gpio: GPIO spec for the FIFO pin
|
||||
- fifop-gpio: GPIO spec for the FIFOP pin
|
||||
- sfd-gpio: GPIO spec for the SFD pin
|
||||
- cca-gpio: GPIO spec for the CCA pin
|
||||
- vreg-gpio: GPIO spec for the VREG pin
|
||||
- reset-gpio: GPIO spec for the RESET pin
|
||||
Example:
|
||||
cc2520@0 {
|
||||
compatible = "ti,cc2520";
|
||||
reg = <0>;
|
||||
spi-max-frequency = <4000000>;
|
||||
pinctrl-names = "default";
|
||||
pinctrl-0 = <&cc2520_cape_pins>;
|
||||
fifo-gpio = <&gpio1 18 0>;
|
||||
fifop-gpio = <&gpio1 19 0>;
|
||||
sfd-gpio = <&gpio1 13 0>;
|
||||
cca-gpio = <&gpio1 16 0>;
|
||||
vreg-gpio = <&gpio0 31 0>;
|
||||
reset-gpio = <&gpio1 12 0>;
|
||||
};
|
||||
Loading…
Add table
Add a link
Reference in a new issue