tme_hwkm_master_defs.h 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462
  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_DEFS_H_
  6. #define _TME_HWKM_MASTER_DEFS_H_
  7. #include <linux/types.h>
  8. #define UINT32_C(x) (x ## U)
  9. /**
  10. * Key ID
  11. */
  12. /* L1 Key IDs that are Key Table slot numbers */
  13. /**< CUS, 512 bits, in fuses */
  14. #define TME_KID_CHIP_UNIQUE_SEED 8
  15. /**< CRBK, 512 bits, in fuses */
  16. #define TME_KID_CHIP_RAND_BASE 9
  17. /**< L1 Key derived from L0 slot numbers 0-3 or 4-7 */
  18. #define TME_KID_CHIP_FAM_L1 10
  19. /* Transport Key ID */
  20. #define TME_KID_TP 11/**< 528 bits, retained */
  21. /**
  22. * KeyPolicy
  23. */
  24. /** Key Policy: 64-bit integer with bit encoded values */
  25. struct tme_key_policy {
  26. uint32_t low;
  27. uint32_t high;
  28. } __packed;
  29. #define TME_KPHALFBITS 32
  30. #define TME_KPCOMBINE(lo32, hi32) (((uint64_t)(lo32)) | \
  31. (((uint64_t)(hi32)) << TME_KPHALFBITS))
  32. /**
  33. * Fields in Key Policy low word
  34. */
  35. /** Key Type: Fundamental crypto algorithm groups */
  36. /**< Position of Key Type bits */
  37. #define TME_KT_Shift 0
  38. /**< Mask for Key Type bits */
  39. #define TME_KT_Mask (UINT32_C(0x07) << TME_KT_Shift)
  40. /**< Symmetric algorithms */
  41. #define TME_KT_Symmetric (UINT32_C(0x00) << TME_KT_Shift)
  42. /**< Asymmetric algorithms: ECC */
  43. #define TME_KT_Asymmetric_ECC (UINT32_C(0x01) << TME_KT_Shift)
  44. /**< Asymmetric algorithms: RSA */
  45. #define TME_KT_Asymmetric_RSA (UINT32_C(0x05) << TME_KT_Shift)
  46. /** Key Length */
  47. /**< Position of Key Length bits */
  48. #define TME_KL_Shift 3
  49. /**< Mask for Key Length bits */
  50. #define TME_KL_Mask (UINT32_C(0x0F) << TME_KL_Shift)
  51. /**< 64 bits - AES/2TDES */
  52. #define TME_KL_64 (UINT32_C(0x00) << TME_KL_Shift)
  53. /**< 128 bits - AES/2TDES */
  54. #define TME_KL_128 (UINT32_C(0x01) << TME_KL_Shift)
  55. /**< 192 bits - AES/3TDES */
  56. #define TME_KL_192 (UINT32_C(0x02) << TME_KL_Shift)
  57. /**< 224 bits - ECDSA */
  58. #define TME_KL_224 (UINT32_C(0x03) << TME_KL_Shift)
  59. /**< 256 bits - ECDSA/AES */
  60. #define TME_KL_256 (UINT32_C(0x04) << TME_KL_Shift)
  61. /**< 384 bits - ECDSA */
  62. #define TME_KL_384 (UINT32_C(0x05) << TME_KL_Shift)
  63. /**< 448 bits - ECDSA */
  64. #define TME_KL_448 (UINT32_C(0x06) << TME_KL_Shift)
  65. /**< 512 bits - ECDSA/HMAC/KDF/AES-SIV/AES-XTS */
  66. #define TME_KL_512 (UINT32_C(0x07) << TME_KL_Shift)
  67. /**< 521 bits - ECDSA/HMAC/KDF */
  68. #define TME_KL_521 (UINT32_C(0x08) << TME_KL_Shift)
  69. /**< 2048 bits - RSA */
  70. #define TME_KL_2048 (UINT32_C(0x09) << TME_KL_Shift)
  71. /**< 3072 bits - RSA */
  72. #define TME_KL_3072 (UINT32_C(0x0A) << TME_KL_Shift)
  73. /**< 4096 bits - RSA */
  74. #define TME_KL_4096 (UINT32_C(0x0B) << TME_KL_Shift)
  75. /**
  76. * Key Profile: Only applicable at present
  77. * if Key Type is #TME_KT_Symmetric
  78. */
  79. /**< Position of Key Profile bits */
  80. #define TME_KP_Shift 7
  81. /**< Mask for Key Class bits */
  82. #define TME_KP_Mask (UINT32_C(0x07) << TME_KP_Shift)
  83. /**< If Key Type is #TME_KT_Symmetric */
  84. #define TME_KP_Generic (UINT32_C(0x00) << TME_KP_Shift)
  85. /**< If Key Type is #TME_KT_Symmetric (aka KDK) */
  86. #define TME_KP_KeyDerivation (UINT32_C(0x01) << TME_KP_Shift)
  87. /**< If Key Type is #TME_KT_Symmetric (aka KWK) */
  88. #define TME_KP_KWK_STORAGE (UINT32_C(0x02) << TME_KP_Shift)
  89. /**< If Key Type is #TME_KT_Symmetric (aka KSK) */
  90. #define TME_KP_KWK_SESSION (UINT32_C(0x03) << TME_KP_Shift)
  91. /**< If Key Type is #TME_KT_Symmetric (aka TPK) */
  92. #define TME_KP_KWK_TRANSPORT (UINT32_C(0x04) << TME_KP_Shift)
  93. /**< If Key Type is #TME_KT_Symmetric */
  94. #define TME_KP_KWK_XPORT (UINT32_C(0x05) << TME_KP_Shift)
  95. /**< If Key Type is not #TME_KT_Symmetric */
  96. #define TME_KP_Unused (UINT32_C(0x00) << TME_KP_Shift)
  97. /** Key Operation: Crypto operations permitted for a key */
  98. /**< Position of Key Operation bits */
  99. #define TME_KOP_Shift 10
  100. /**< Mask for Key Operation bits */
  101. #define TME_KOP_Mask (UINT32_C(0x0F) << TME_KOP_Shift)
  102. /**< If Key Type is #TME_KT_Symmetric */
  103. #define TME_KOP_Encryption (UINT32_C(0x01) << TME_KOP_Shift)
  104. /**< If Key Type is #TME_KT_Symmetric */
  105. #define TME_KOP_Decryption (UINT32_C(0x02) << TME_KOP_Shift)
  106. /**< If Key Type is #TME_KT_Symmetric */
  107. #define TME_KOP_MAC (UINT32_C(0x04) << TME_KOP_Shift)
  108. /**< If Key Type is #TME_KT_Symmetric */
  109. #define TME_KOP_NISTDerive (UINT32_C(0x04) << TME_KOP_Shift)
  110. /**< If Key Type is #TME_KT_Symmetric */
  111. #define TME_KOP_HKDFExtract (UINT32_C(0x08) << TME_KOP_Shift)
  112. /**< If Key Type is #TME_KT_Symmetric */
  113. #define TME_KOP_HKDFExpand (UINT32_C(0x09) << TME_KOP_Shift)
  114. /**< If Key Type is #TME_KT_Asymmetric_ECC */
  115. #define TME_KOP_ECDSASign (UINT32_C(0x01) << TME_KOP_Shift)
  116. /**< If Key Type is #TME_KT_Asymmetric_ECC */
  117. #define TME_KOP_ECDSAVerify (UINT32_C(0x02) << TME_KOP_Shift)
  118. /**< If Key Type is #TME_KT_Asymmetric_ECC */
  119. #define TME_KOP_ECDHSharedSecret (UINT32_C(0x04) << TME_KOP_Shift)
  120. /**< If Key Type is #TME_KT_Asymmetric_RSA */
  121. #define TME_KOP_RSAASign (UINT32_C(0x01) << TME_KOP_Shift)
  122. /**< If Key Type is #TME_KT_Asymmetric_RSA */
  123. #define TME_KOP_RSAAVerify (UINT32_C(0x02) << TME_KOP_Shift)
  124. /**< If Key Type is #TME_KT_Asymmetric_RSA */
  125. #define TME_KOP_RSAEnc (UINT32_C(0x04) << TME_KOP_Shift)
  126. /**< If Key Type is #TME_KT_Asymmetric_RSA */
  127. #define TME_KOP_RSADec (UINT32_C(0x08) << TME_KOP_Shift)
  128. /** Key Algorithm */
  129. /**< Position of Key Algorithm bits */
  130. #define TME_KAL_Shift 14
  131. /**< Mask for Key Algorithm bits */
  132. #define TME_KAL_Mask (UINT32_C(0x3F) << TME_KAL_Shift)
  133. /**< If Key Type is #TME_KT_Symmetric */
  134. #define TME_KAL_AES128_ECB (UINT32_C(0x00) << TME_KAL_Shift)
  135. #define TME_KAL_AES256_ECB (UINT32_C(0x01) << TME_KAL_Shift)
  136. #define TME_KAL_DES_ECB (UINT32_C(0x02) << TME_KAL_Shift)
  137. #define TME_KAL_TDES_ECB (UINT32_C(0x03) << TME_KAL_Shift)
  138. #define TME_KAL_AES128_CBC (UINT32_C(0x04) << TME_KAL_Shift)
  139. #define TME_KAL_AES256_CBC (UINT32_C(0x05) << TME_KAL_Shift)
  140. #define TME_KAL_DES_CBC (UINT32_C(0x06) << TME_KAL_Shift)
  141. #define TME_KAL_TDES_CBC (UINT32_C(0x07) << TME_KAL_Shift)
  142. #define TME_KAL_AES128_CCM_TC (UINT32_C(0x08) << TME_KAL_Shift)
  143. #define TME_KAL_AES128_CCM_NTC (UINT32_C(0x09) << TME_KAL_Shift)
  144. #define TME_KAL_AES256_CCM_TC (UINT32_C(0x0A) << TME_KAL_Shift)
  145. #define TME_KAL_AES256_CCM_NTC (UINT32_C(0x0B) << TME_KAL_Shift)
  146. #define TME_KAL_AES256_SIV (UINT32_C(0x0C) << TME_KAL_Shift)
  147. #define TME_KAL_AES128_CTR (UINT32_C(0x0D) << TME_KAL_Shift)
  148. #define TME_KAL_AES256_CTR (UINT32_C(0x0E) << TME_KAL_Shift)
  149. #define TME_KAL_AES128_XTS (UINT32_C(0x0F) << TME_KAL_Shift)
  150. #define TME_KAL_AES256_XTS (UINT32_C(0x10) << TME_KAL_Shift)
  151. #define TME_KAL_SHA1_HMAC (UINT32_C(0x11) << TME_KAL_Shift)
  152. #define TME_KAL_SHA256_HMAC (UINT32_C(0x12) << TME_KAL_Shift)
  153. #define TME_KAL_AES128_CMAC (UINT32_C(0x13) << TME_KAL_Shift)
  154. #define TME_KAL_AES256_CMAC (UINT32_C(0x14) << TME_KAL_Shift)
  155. #define TME_KAL_SHA384_HMAC (UINT32_C(0x15) << TME_KAL_Shift)
  156. #define TME_KAL_SHA512_HMAC (UINT32_C(0x16) << TME_KAL_Shift)
  157. #define TME_KAL_AES128_GCM (UINT32_C(0x17) << TME_KAL_Shift)
  158. #define TME_KAL_AES256_GCM (UINT32_C(0x18) << TME_KAL_Shift)
  159. #define TME_KAL_KASUMI (UINT32_C(0x19) << TME_KAL_Shift)
  160. #define TME_KAL_SNOW3G (UINT32_C(0x1A) << TME_KAL_Shift)
  161. #define TME_KAL_ZUC (UINT32_C(0x1B) << TME_KAL_Shift)
  162. #define TME_KAL_PRINCE (UINT32_C(0x1C) << TME_KAL_Shift)
  163. #define TME_KAL_SIPHASH (UINT32_C(0x1D) << TME_KAL_Shift)
  164. #define TME_KAL_TDES_2KEY_CBC (UINT32_C(0x1E) << TME_KAL_Shift)
  165. #define TME_KAL_TDES_2KEY_ECB (UINT32_C(0x1F) << TME_KAL_Shift)
  166. #define TME_KAL_KDF_NIST (UINT32_C(0x20) << TME_KAL_Shift)
  167. #define TME_KAL_KDF_HKDF (UINT32_C(0x21) << TME_KAL_Shift)
  168. /**< If Key Type is #TME_KT_Asymmetric, Key Subtype is ECC */
  169. #define TME_KAL_ECC_ALGO_ECDSA (UINT32_C(0x00) << TME_KAL_Shift)
  170. /**< If Key Type is #TME_KT_Asymmetric, Key Subtype is ECC */
  171. #define TME_KAL_ECC_ALGO_ECDH (UINT32_C(0x01) << TME_KAL_Shift)
  172. /**< If Key Type is #TME_KT_Asymmetric, Key Subtype is ECC */
  173. #define TME_KAL_ECC_CURVE_NIST (UINT32_C(0x00) << TME_KAL_Shift)
  174. /**< If Key Type is #TME_KT_Asymmetric, Key Subtype is ECC */
  175. #define TME_KAL_ECC_CURVE_BPOOL (UINT32_C(0x08) << TME_KAL_Shift)
  176. /**< If Key Type is #TME_KT_Asymmetric, Key Subtype is RSA */
  177. #define TME_KAL_DSA (UINT32_C(0x00) << TME_KAL_Shift)
  178. /**< If Key Type is #TME_KT_Asymmetric, Key Subtype is RSA */
  179. #define TME_KAL_DH (UINT32_C(0x01) << TME_KAL_Shift)
  180. /** Key Security Level */
  181. /**< Position of Key Security Level bits */
  182. #define TME_KSL_Shift 20
  183. /**< Mask for Key Security Level bits */
  184. #define TME_KSL_Mask (UINT32_C(0x03) << TME_KSL_Shift)
  185. /**< Software Key */
  186. #define TME_KSL_SWKey (UINT32_C(0x00) << TME_KSL_Shift)
  187. /**< Hardware Managed Key */
  188. #define TME_KSL_HWManagedKey (UINT32_C(0x01) << TME_KSL_Shift)
  189. /**< Hardware Key */
  190. #define TME_KSL_HWKey (UINT32_C(0x02) << TME_KSL_Shift)
  191. /** Key Destination */
  192. /**< Position of Key Destination bits */
  193. #define TME_KD_Shift 22
  194. /**< Mask for Key Destination bits */
  195. #define TME_KD_Mask (UINT32_C(0x0F) << TME_KD_Shift)
  196. /**< Master */
  197. #define TME_KD_TME_HW (UINT32_C(0x01) << TME_KD_Shift)
  198. /**< ICE Slave */
  199. #define TME_KD_ICE (UINT32_C(0x02) << TME_KD_Shift)
  200. /**< GPCE Slave */
  201. #define TME_KD_GPCE (UINT32_C(0x04) << TME_KD_Shift)
  202. /**< Modem CE Slave */
  203. #define TME_KD_MDM_CE (UINT32_C(0x08) << TME_KD_Shift)
  204. /** Key Owner */
  205. /**< Position of Key Owner bits */
  206. #define TME_KO_Shift 26
  207. /**< Mask for Key Owner bits */
  208. #define TME_KO_Mask (UINT32_C(0x0F) << TME_KO_Shift)
  209. /**< TME Hardware */
  210. #define TME_KO_TME_HW (UINT32_C(0x00) << TME_KO_Shift)
  211. /**< TME Firmware */
  212. #define TME_KO_TME_FW (UINT32_C(0x01) << TME_KO_Shift)
  213. /**< TZ (= APPS-S) */
  214. #define TME_KO_TZ (UINT32_C(0x02) << TME_KO_Shift)
  215. /**< HLOS / HYP (= APPS-NS) */
  216. #define TME_KO_HLOS_HYP (UINT32_C(0x03) << TME_KO_Shift)
  217. /**< Modem */
  218. #define TME_KO_MDM (UINT32_C(0x04) << TME_KO_Shift)
  219. /**< SPU */
  220. #define TME_KO_SPU (UINT32_C(0x0F) << TME_KO_Shift)
  221. /** Key Lineage */
  222. /**< Position of Key Lineage bits */
  223. #define TME_KLI_Shift 30
  224. /**< Mask for Key Lineage bits */
  225. #define TME_KLI_Mask (UINT32_C(0x03) << TME_KLI_Shift)
  226. /**< Not applicable */
  227. #define TME_KLI_NA (UINT32_C(0x00) << TME_KLI_Shift)
  228. /**< Not provisioned, chip unique */
  229. #define TME_KLI_NP_CU (UINT32_C(0x01) << TME_KLI_Shift)
  230. /**< Provisioned, not chip unique */
  231. #define TME_KLI_P_NCU (UINT32_C(0x02) << TME_KLI_Shift)
  232. /**< Provisioned, chip unique */
  233. #define TME_KLI_P_CU (UINT32_C(0x03) << TME_KLI_Shift)
  234. /**
  235. * Fields in Key Policy high word *
  236. */
  237. /** Reserved Bits, Group 1 */
  238. /**< Position of Reserved bits */
  239. #define TME_KR1_Shift (32 - TME_KPHALFBITS)
  240. /**< Mask for Reserved bits */
  241. #define TME_KR1_Mask (UINT32_C(0x01) << TME_KR1_Shift)
  242. /** Key Wrapping Constraints */
  243. /**< Position of Key Attribute bits */
  244. #define TME_KWC_Shift (33 - TME_KPHALFBITS)
  245. /**< Mask for Key Attribute bits */
  246. #define TME_KWC_Mask (UINT32_C(0x0F) << TME_KWC_Shift)
  247. /**< Key is wrappable with KWK_EXPORT */
  248. #define TME_KWC_Wrappable_KXP (UINT32_C(0x01) << TME_KWC_Shift)
  249. /**< Key is wrappable with KWK_STORAGE */
  250. #define TME_KWC_Wrappable_KWK (UINT32_C(0x02) << TME_KWC_Shift)
  251. /**< Key is wrappable with KWK_TRANSPORT */
  252. #define TME_KWC_Wrappable_KTP (UINT32_C(0x04) << TME_KWC_Shift)
  253. /**< Key is wrappable with KWK_SESSION */
  254. #define TME_KWC_Wrappable_KSK (UINT32_C(0x08) << TME_KWC_Shift)
  255. /** Throttling */
  256. /**< Position of Throttling bits */
  257. #define TME_KTH_Shift (37 - TME_KPHALFBITS)
  258. /**< Mask for Throttling bits */
  259. #define TME_KTH_Mask (UINT32_C(0x01) << TME_KTH_Shift)
  260. /**< Throttling enabled */
  261. #define TME_KTH_Enabled (UINT32_C(0x01) << TME_KTH_Shift)
  262. /** Reserved Bits, Group 2 */
  263. /**< Position of Reserved bits */
  264. #define TME_KR2_Shift (38 - TME_KPHALFBITS)
  265. /**< Mask for Reserved bits */
  266. #define TME_KR2_Mask (UINT32_C(0x3F) << TME_KR2_Shift)
  267. /** Key Policy Version */
  268. /**< Position of Key Policy Version bits */
  269. #define TME_KPV_Shift (44 - TME_KPHALFBITS)
  270. /**< Mask for Key Policy Version bits */
  271. #define TME_KPV_Mask (UINT32_C(0x0F) << TME_KPV_Shift)
  272. /**< Mask for Key Policy Version bits */
  273. #define TME_KPV_Version (UINT32_C(0x03) << TME_KPV_Shift)
  274. /** Key Authorised Users */
  275. /**< Position of Authorised User bits */
  276. #define TME_KAU_Shift (48 - TME_KPHALFBITS)
  277. /**< Mask for Authorised User bits */
  278. #define TME_KAU_Mask (UINT32_C(0xFF) << TME_KAU_Shift)
  279. /**< Key usable by TME Hardware */
  280. #define TME_KAU_TME_HW (UINT32_C(0x01) << TME_KAU_Shift)
  281. /**< Key usable by TME Firmware */
  282. #define TME_KAU_TME_FW (UINT32_C(0x02) << TME_KAU_Shift)
  283. /**< Key usable by TZ (= APPS_S) */
  284. #define TME_KAU_TZ (UINT32_C(0x04) << TME_KAU_Shift)
  285. /**< Key usable by HLOS / HYP (= APPS_NS) */
  286. #define TME_KAU_HLOS_HYP (UINT32_C(0x08) << TME_KAU_Shift)
  287. /**< Key usable by Modem */
  288. #define TME_KAU_MDM (UINT32_C(0x10) << TME_KAU_Shift)
  289. /**< Key usable by SPU */
  290. #define TME_KAU_SPU (UINT32_C(0x20) << TME_KAU_Shift)
  291. /**< Key usable by all EEs */
  292. #define TME_KAU_ALL TME_KAU_Mask
  293. /**
  294. * Credentials for throttling
  295. */
  296. #define TME_CRED_SLOT_ID_NONE 0 /**< No throttling */
  297. #define TME_CRED_SLOT_ID_1 1 /**< Credential slot 1 */
  298. #define TME_CRED_SLOT_ID_2 2 /**< Credential slot 2 */
  299. /**
  300. * KDFSpec and associated structures
  301. */
  302. /** Maximum context size that can be sent to the TME, in bytes */
  303. #define TME_KDF_SW_CONTEXT_BYTES_MAX 128
  304. #define TME_KDF_SALT_LABEL_BYTES_MAX 64
  305. /**
  306. * Security info to be appended to a KDF context by the Sequencer
  307. *
  308. * These fields allow keys to be tied to specific devices, states,
  309. * OEMs, subsystems, etc.
  310. * Values are obtained by the Sequencer from hardware, such as
  311. * fuses or internal registers.
  312. */
  313. #define TME_KSC_SOCTestSignState 0x00000001 /**< (32 bits) */
  314. #define TME_KSC_SOCSecBootState 0x00000002 /**< (8 bits) */
  315. #define TME_KSC_SOCDebugState 0x00000004 /**< (8 bits) */
  316. #define TME_KSC_TMELifecycleState 0x00000008 /**< (8 bits) */
  317. #define TME_KSC_BootStageOTP 0x00000010 /**< (8 bits) */
  318. #define TME_KSC_SWContext 0x00000020 /**< (variable) */
  319. #define TME_KSC_ChildKeyPolicy 0x00000040 /**< (64 bits) */
  320. #define TME_KSC_MixingKey 0x00000080 /**< (key len) */
  321. #define TME_KSC_ChipUniqueID 0x00000100 /**< (64 bits) */
  322. #define TME_KSC_ChipDeviceNumber 0x00000200 /**< (32 bits) */
  323. #define TME_KSC_TMEPatchVer 0x00000400 /**< (512 bits) */
  324. #define TME_KSC_SOCPatchVer 0x00000800 /**< (512 bits) */
  325. #define TME_KSC_OEMID 0x00001000 /**< (16 bits) */
  326. #define TME_KSC_OEMProductID 0x00002000 /**< (16 bits) */
  327. #define TME_KSC_TMEImgSecVer 0x00004000 /**< (512 bits) */
  328. #define TME_KSC_SOCInitImgSecVer 0x00008000 /**< (512 bits) */
  329. #define TME_KSC_OEMMRCHash 0x00010000 /**< (512 bits) */
  330. #define TME_KSC_OEMProductSeed 0x00020000 /**< (128 bits) */
  331. #define TME_KSC_SeqPatchVer 0x00040000 /**< (512 bits) */
  332. #define TME_KSC_HWMeasurement1 0x00080000 /**< (512 bits) */
  333. #define TME_KSC_HWMeasurement2 0x00100000 /**< (512 bits) */
  334. #define TME_KSC_Reserved 0xFFE00000 /**< RFU */
  335. /** KDF Specification: encompasses both HKDF and NIST KDF algorithms */
  336. struct tme_kdf_spec {
  337. /* Info common to HKDF and NIST algorithms */
  338. /**< @c TME_KAL_KDF_HKDF or @c TME_KAL_KDF_NIST */
  339. uint32_t kdfalgo;
  340. /**< IKM for HKDF; IKS for NIST */
  341. uint32_t inputkey;
  342. /**< If @c TME_KSC_MixingKey set in Security Context */
  343. uint32_t mixkey;
  344. /**< If deriving a L3 key */
  345. uint32_t l2key;
  346. /**< Derived key policy */
  347. struct tme_key_policy policy;
  348. /**< Software provided context */
  349. uint8_t swcontext[TME_KDF_SW_CONTEXT_BYTES_MAX];
  350. /**< Length of @c swContext in bytes */
  351. uint32_t swcontextLength;
  352. /**< Info to be appended to @c swContext */
  353. uint32_t security_context;
  354. /**< Salt for HKDF; Label for NIST */
  355. uint8_t salt_label[TME_KDF_SALT_LABEL_BYTES_MAX];
  356. /**< Length of @c saltLabel in bytes */
  357. uint32_t salt_labelLength;
  358. /* Additional info specific to HKDF: kdfAlgo == @c KAL_KDF_HKDF */
  359. /**< PRF Digest algorithm: @c KAL_SHA256_HMAC or @c KAL_SHA512_HMAC */
  360. uint32_t prf_digest_algo;
  361. } __packed;
  362. /**
  363. * WrappedKey and associated structures
  364. */
  365. /* Maximum wrapped key context size, in bytes */
  366. /**< Cipher Text 68B, MAC 16B, KeyPolicy 8B, Nonce 8B */
  367. #define TME_WK_CONTEXT_BYTES_MAX 100
  368. struct tme_wrapped_key {
  369. /**< Wrapped key context */
  370. uint8_t key[TME_WK_CONTEXT_BYTES_MAX];
  371. /**< Length of @c key in bytes*/
  372. uint32_t length;
  373. } __packed;
  374. /**
  375. * Plain text Key and associated structures
  376. */
  377. /* Maximum plain text key size, in bytes */
  378. #define TME_PT_KEY_BYTES_MAX 68
  379. /**
  380. * Key format for intrinsically word aligned key
  381. * lengths like 128/256/384/512... bits.
  382. *
  383. * Example: 256-bit key integer representation,
  384. * Key = 0xK31 K30 K29.......K0
  385. * Byte array, key[] = {0xK31, 0xK30, 0xK29, ...., 0xK0}
  386. *
  387. *
  388. * Key format for non-word aligned key lengths like 521 bits.
  389. * The key length is rounded off to next word ie, 544 bits.
  390. *
  391. * Example: 521-bit key, Key = 0xK65 K64 K63.......K2 K1 K0
  392. * [bits 1-7 of K0 is expected to be zeros]
  393. * 544 bit integer representation, Key = 0xK65 K64 K63.......K2 K1 K0 00 00
  394. * Byte array, key[] = {0xK65, 0xK64, 0xK63, ...., 0xK2, 0xK1, 0xK0, 0x00, 0x00}
  395. *
  396. */
  397. struct tme_plaintext_key {
  398. /**< Plain text key */
  399. uint8_t key[TME_PT_KEY_BYTES_MAX];
  400. /**< Length of @c key in bytes */
  401. uint32_t length;
  402. } __packed;
  403. /**
  404. * Extended Error Information structure
  405. */
  406. struct tme_ext_err_info {
  407. /* TME FW */
  408. /**< TME FW Response status. */
  409. uint32_t tme_err_status;
  410. /* SEQ FW */
  411. /**< Contents of CSR_CMD_ERROR_STATUS */
  412. uint32_t seq_err_status;
  413. /* SEQ HW Key Policy */
  414. /**< CRYPTO_ENGINE_CRYPTO_KEY_POLICY_ERROR_STATUS0 */
  415. uint32_t seq_kp_err_status0;
  416. /**< CRYPTO_ENGINE_CRYPTO_KEY_POLICY_ERROR_STATUS1 */
  417. uint32_t seq_kp_err_status1;
  418. /**
  419. * Debug information: log/print this information
  420. * if any of the above fields is non-zero
  421. */
  422. /**< Contents of CSR_CMD_RESPONSE_STATUS */
  423. uint32_t seq_rsp_status;
  424. } __packed;
  425. #endif /* _TME_HWKM_MASTER_DEFS_H_ */