tme_hwkm_master_intf.h 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  1. /* SPDX-License-Identifier: GPL-2.0-only */
  2. /*
  3. * Copyright (c) 2021, The Linux Foundation. All rights reserved.
  4. */
  5. #ifndef _TME_HWKM_MASTER_INTERFACE_H_
  6. #define _TME_HWKM_MASTER_INTERFACE_H_
  7. #include <linux/tme_hwkm_master_defs.h>
  8. /**
  9. * HWKM Master command IDs
  10. */
  11. enum tme_hwkm_cmd {
  12. TME_HWKM_CMD_CLEAR_KEY = 0, /**< Clear Key */
  13. TME_HWKM_CMD_GENERATE_KEY = 1, /**< Generate Key */
  14. TME_HWKM_CMD_DERIVE_KEY = 2, /**< Derive Key, NIST or HKDF */
  15. TME_HWKM_CMD_WRAP_KEY = 3, /**< Wrap Key */
  16. TME_HWKM_CMD_UNWRAP_KEY = 4, /**< Unwrap Key */
  17. TME_HWKM_CMD_IMPORT_KEY = 5, /**< Import Key */
  18. TME_HWKM_CMD_BROADCAST_TP_KEY = 6, /**< Broadcast Transport Key */
  19. TMW_HWKM_CMD_INVALID = 7, /**< Invalid cmd */
  20. };
  21. /**
  22. * Opcode and response structures
  23. */
  24. /* Values as per TME_HWKM_CMD_* */
  25. struct tme_hwkm_master_cmd {
  26. uint32_t code;
  27. } __packed;
  28. struct tme_response_sts {
  29. /* TME FW */
  30. uint32_t tme_err_status; /**< TME FW Response status. */
  31. /* SEQ FW */
  32. uint32_t seq_err_status; /**< Contents of CSR_CMD_ERROR_STATUS */
  33. /* SEQ HW Key Policy */
  34. uint32_t seq_kp_err_status0; /**< CRYPTO_ENGINE_CRYPTO_KEY_POLICY_ERROR_STATUS0 */
  35. uint32_t seq_kp_err_status1; /**< CRYPTO_ENGINE_CRYPTO_KEY_POLICY_ERROR_STATUS1 */
  36. /* Debug information: log/print this information if any of the above fields is non-zero */
  37. uint32_t seq_rsp_status; /**< Contents of CSR_CMD_RESPONSE_STATUS */
  38. } __packed;
  39. /**
  40. * Clear Key ID structures
  41. */
  42. struct clear_key_req {
  43. uint32_t cbor_header; /**< CBOR encoded tag */
  44. struct tme_hwkm_master_cmd cmd; /**< @c TME_HWKM_CMD_CLEAR_KEY */
  45. uint32_t key_id; /**< The ID of the key to clear.*/
  46. } __packed;
  47. /**
  48. * Generate Key ID structures
  49. */
  50. struct gen_key_req {
  51. uint32_t cbor_header; /**< CBOR encoded tag */
  52. struct tme_hwkm_master_cmd cmd; /**< @c TME_HWKM_CMD_GENERATE_KEY */
  53. uint32_t key_id; /**< The ID of the key to be generated. */
  54. struct tme_key_policy key_policy;/**< The policy specifying the key to be generated. */
  55. uint32_t cred_slot; /**< Credential slot to which this key will be bound. */
  56. } __packed;
  57. /**
  58. * Derive Key ID structures
  59. */
  60. struct derive_key_req {
  61. uint32_t cbor_header; /**< CBOR encoded tag */
  62. struct tme_hwkm_master_cmd cmd; /**< @c TME_HWKM_CMD_DERIVE_KEY */
  63. uint32_t key_id; /**< The ID of the key to be derived. */
  64. struct tme_kdf_spec kdf_info; /**< Specifies how the key is to be derived. */
  65. uint32_t cred_slot; /**< Credential slot to which this key will be bound. */
  66. } __packed;
  67. /**
  68. * Wrap Key ID structures
  69. */
  70. struct wrap_key_req {
  71. uint32_t cbor_header; /**< CBOR encoded tag */
  72. struct tme_hwkm_master_cmd cmd;/**< @c TME_HWKM_CMD_WRAP_KEY */
  73. uint32_t key_id; /**< The ID of the key to secure the target key. */
  74. uint32_t target_key_id; /**< Denotes the key to be wrapped. */
  75. uint32_t cred_slot; /**< Credential slot to which this key is bound. */
  76. } __packed;
  77. struct wrap_key_resp {
  78. struct tme_response_sts status; /**< Response status. */
  79. struct tme_wrapped_key wrapped_key; /**< The wrapped key. */
  80. } __packed;
  81. /**
  82. * Unwrap Key ID structures
  83. */
  84. struct unwrap_key_req {
  85. uint32_t cbor_header; /**< CBOR encoded tag */
  86. struct tme_hwkm_master_cmd cmd;/**< @c TME_HWKM_CMD_UNWRAP_KEY */
  87. uint32_t key_id; /**< The ID of the key to be unwrapped. */
  88. uint32_t kw_key_id; /**< The ID of the key to be used to unwrap the key. */
  89. struct tme_wrapped_key wrapped; /**< The key to be unwrapped. */
  90. uint32_t cred_slot; /**< Credential slot to which this key will be bound. */
  91. } __packed;
  92. /**
  93. * Import Key ID structures
  94. */
  95. struct import_key_req {
  96. uint32_t cbor_header; /**< CBOR encoded tag */
  97. struct tme_hwkm_master_cmd cmd; /**< @c TME_HWKM_CMD_IMPORT_KEY */
  98. uint32_t key_id; /**< The ID of the key to be imported. */
  99. struct tme_key_policy key_policy;/**< The Key Policy to be associated with the key. */
  100. struct tme_plaintext_key key_material;/**< The plain-text key material. */
  101. uint32_t cred_slot; /**< Credential slot to which this key will be bound. */
  102. } __packed;
  103. /**
  104. * Broadcast Transport Key structures
  105. */
  106. struct broadcast_tpkey_req {
  107. uint32_t cbor_header; /**< CBOR encoded tag */
  108. struct tme_hwkm_master_cmd cmd;/**< @c TME_HWKM_CMD_BROADCAST_TP_KEY */
  109. } __packed;
  110. #endif /* _TME_HWKM_MASTER_INTERFACE_H_ */