Path: blob/main/sys/contrib/device-tree/Bindings/crypto/qcom-qce.txt
48378 views
Qualcomm crypto engine driver12Required properties:34- compatible : should be "qcom,crypto-v5.1"5- reg : specifies base physical address and size of the registers map6- clocks : phandle to clock-controller plus clock-specifier pair7- clock-names : "iface" clocks register interface8"bus" clocks data transfer interface9"core" clocks rest of the crypto block10- dmas : DMA specifiers for tx and rx dma channels. For more see11Documentation/devicetree/bindings/dma/dma.txt12- dma-names : DMA request names should be "rx" and "tx"1314Example:15crypto@fd45a000 {16compatible = "qcom,crypto-v5.1";17reg = <0xfd45a000 0x6000>;18clocks = <&gcc GCC_CE2_AHB_CLK>,19<&gcc GCC_CE2_AXI_CLK>,20<&gcc GCC_CE2_CLK>;21clock-names = "iface", "bus", "core";22dmas = <&cryptobam 2>, <&cryptobam 3>;23dma-names = "rx", "tx";24};252627