mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-21 03:40:25 +07:00
48c926cd34
Improve the binding example by removing all the leading zeros to fix the following dtc warnings: Warning (unit_address_format): Node /XXX unit name should not have leading 0s Converted using the following command: perl -p -i -e 's/\@0+([0-9a-f])/\@$1/g' `find ./Documentation/devicetree/bindings "*.txt"` Some unnecessary changes were manually fixed. Signed-off-by: Marco Franchi <marco.franchi@nxp.com> Signed-off-by: Rob Herring <robh@kernel.org>
24 lines
781 B
Plaintext
24 lines
781 B
Plaintext
* Allwinner Security System found on A20 SoC
|
|
|
|
Required properties:
|
|
- compatible : Should be "allwinner,sun4i-a10-crypto".
|
|
- reg: Should contain the Security System register location and length.
|
|
- interrupts: Should contain the IRQ line for the Security System.
|
|
- clocks : List of clock specifiers, corresponding to ahb and ss.
|
|
- clock-names : Name of the functional clock, should be
|
|
* "ahb" : AHB gating clock
|
|
* "mod" : SS controller clock
|
|
|
|
Optional properties:
|
|
- resets : phandle + reset specifier pair
|
|
- reset-names : must contain "ahb"
|
|
|
|
Example:
|
|
crypto: crypto-engine@1c15000 {
|
|
compatible = "allwinner,sun4i-a10-crypto";
|
|
reg = <0x01c15000 0x1000>;
|
|
interrupts = <GIC_SPI 86 IRQ_TYPE_LEVEL_HIGH>;
|
|
clocks = <&ahb_gates 5>, <&ss_clk>;
|
|
clock-names = "ahb", "mod";
|
|
};
|