tcg,tpm-tis-mmio.yaml 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
  2. %YAML 1.2
  3. ---
  4. $id: http://devicetree.org/schemas/tpm/tcg,tpm-tis-mmio.yaml#
  5. $schema: http://devicetree.org/meta-schemas/core.yaml#
  6. title: MMIO-accessed Trusted Platform Module conforming to TCG TIS specification
  7. maintainers:
  8. - Lukas Wunner <lukas@wunner.de>
  9. description: |
  10. The Trusted Computing Group (TCG) has defined a multi-vendor standard
  11. for accessing a TPM chip. It can be transported over various buses,
  12. one of them being LPC (via MMIO). The standard is named:
  13. TCG PC Client Specific TPM Interface Specification (TIS)
  14. https://trustedcomputinggroup.org/resource/pc-client-work-group-pc-client-specific-tpm-interface-specification-tis/
  15. properties:
  16. compatible:
  17. items:
  18. - enum:
  19. - at97sc3201
  20. - atmel,at97sc3204
  21. - socionext,synquacer-tpm-mmio
  22. - const: tcg,tpm-tis-mmio
  23. reg:
  24. description:
  25. location and length of the MMIO registers, length should be
  26. at least 0x5000 bytes
  27. allOf:
  28. - $ref: tpm-common.yaml#
  29. required:
  30. - compatible
  31. - reg
  32. unevaluatedProperties: false
  33. examples:
  34. - |
  35. tpm@90000 {
  36. compatible = "atmel,at97sc3204", "tcg,tpm-tis-mmio";
  37. reg = <0x90000 0x5000>;
  38. interrupt-parent = <&EIC0>;
  39. interrupts = <1 2>;
  40. };