0001 Rockchip Electronics And Security Accelerator
0002
0003 Required properties:
0004 - compatible: Should be "rockchip,rk3288-crypto"
0005 - reg: Base physical address of the engine and length of memory mapped
0006 region
0007 - interrupts: Interrupt number
0008 - clocks: Reference to the clocks about crypto
0009 - clock-names: "aclk" used to clock data
0010 "hclk" used to clock data
0011 "sclk" used to clock crypto accelerator
0012 "apb_pclk" used to clock dma
0013 - resets: Must contain an entry for each entry in reset-names.
0014 See ../reset/reset.txt for details.
0015 - reset-names: Must include the name "crypto-rst".
0016
0017 Examples:
0018
0019 crypto: cypto-controller@ff8a0000 {
0020 compatible = "rockchip,rk3288-crypto";
0021 reg = <0xff8a0000 0x4000>;
0022 interrupts = <GIC_SPI 48 IRQ_TYPE_LEVEL_HIGH>;
0023 clocks = <&cru ACLK_CRYPTO>, <&cru HCLK_CRYPTO>,
0024 <&cru SCLK_CRYPTO>, <&cru ACLK_DMAC1>;
0025 clock-names = "aclk", "hclk", "sclk", "apb_pclk";
0026 resets = <&cru SRST_CRYPTO>;
0027 reset-names = "crypto-rst";
0028 };