amd-ccp.txt 567 B

12345678910111213141516171819
  1. * AMD Cryptographic Coprocessor driver (ccp)
  2. Required properties:
  3. - compatible: Should be "amd,ccp-seattle-v1a"
  4. - reg: Address and length of the register set for the device
  5. - interrupt-parent: Should be the phandle for the interrupt controller
  6. that services interrupts for this device
  7. - interrupts: Should contain the CCP interrupt
  8. Optional properties:
  9. - dma-coherent: Present if dma operations are coherent
  10. Example:
  11. ccp@e0100000 {
  12. compatible = "amd,ccp-seattle-v1a";
  13. reg = <0 0xe0100000 0 0x10000>;
  14. interrupt-parent = <&gic>;
  15. interrupts = <0 3 4>;
  16. };