qcom-qce.txt 887 B

12345678910111213141516171819202122232425
  1. Qualcomm crypto engine driver
  2. Required properties:
  3. - compatible : should be "qcom,crypto-v5.1"
  4. - reg : specifies base physical address and size of the registers map
  5. - clocks : phandle to clock-controller plus clock-specifier pair
  6. - clock-names : "iface" clocks register interface
  7. "bus" clocks data transfer interface
  8. "core" clocks rest of the crypto block
  9. - dmas : DMA specifiers for tx and rx dma channels. For more see
  10. Documentation/devicetree/bindings/dma/dma.txt
  11. - dma-names : DMA request names should be "rx" and "tx"
  12. Example:
  13. crypto@fd45a000 {
  14. compatible = "qcom,crypto-v5.1";
  15. reg = <0xfd45a000 0x6000>;
  16. clocks = <&gcc GCC_CE2_AHB_CLK>,
  17. <&gcc GCC_CE2_AXI_CLK>,
  18. <&gcc GCC_CE2_CLK>;
  19. clock-names = "iface", "bus", "core";
  20. dmas = <&cryptobam 2>, <&cryptobam 3>;
  21. dma-names = "rx", "tx";
  22. };