talitos.h 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447
  1. /*
  2. * Freescale SEC (talitos) device register and descriptor header defines
  3. *
  4. * Copyright (c) 2006-2011 Freescale Semiconductor, Inc.
  5. *
  6. * Redistribution and use in source and binary forms, with or without
  7. * modification, are permitted provided that the following conditions
  8. * are met:
  9. *
  10. * 1. Redistributions of source code must retain the above copyright
  11. * notice, this list of conditions and the following disclaimer.
  12. * 2. Redistributions in binary form must reproduce the above copyright
  13. * notice, this list of conditions and the following disclaimer in the
  14. * documentation and/or other materials provided with the distribution.
  15. * 3. The name of the author may not be used to endorse or promote products
  16. * derived from this software without specific prior written permission.
  17. *
  18. * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
  19. * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
  20. * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
  21. * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
  22. * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
  23. * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  24. * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  25. * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  26. * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
  27. * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  28. *
  29. */
  30. #define TALITOS_TIMEOUT 100000
  31. #define TALITOS1_MAX_DATA_LEN 32768
  32. #define TALITOS2_MAX_DATA_LEN 65535
  33. #define DESC_TYPE(desc_hdr) ((be32_to_cpu(desc_hdr) >> 3) & 0x1f)
  34. #define PRIMARY_EU(desc_hdr) ((be32_to_cpu(desc_hdr) >> 28) & 0xf)
  35. #define SECONDARY_EU(desc_hdr) ((be32_to_cpu(desc_hdr) >> 16) & 0xf)
  36. /* descriptor pointer entry */
  37. struct talitos_ptr {
  38. union {
  39. struct { /* SEC2 format */
  40. __be16 len; /* length */
  41. u8 j_extent; /* jump to sg link table and/or extent*/
  42. u8 eptr; /* extended address */
  43. };
  44. struct { /* SEC1 format */
  45. __be16 res;
  46. __be16 len1; /* length */
  47. };
  48. };
  49. __be32 ptr; /* address */
  50. };
  51. /* descriptor */
  52. struct talitos_desc {
  53. __be32 hdr; /* header high bits */
  54. union {
  55. __be32 hdr_lo; /* header low bits */
  56. __be32 hdr1; /* header for SEC1 */
  57. };
  58. struct talitos_ptr ptr[7]; /* ptr/len pair array */
  59. __be32 next_desc; /* next descriptor (SEC1) */
  60. };
  61. #define TALITOS_DESC_SIZE (sizeof(struct talitos_desc) - sizeof(__be32))
  62. /*
  63. * talitos_edesc - s/w-extended descriptor
  64. * @src_nents: number of segments in input scatterlist
  65. * @dst_nents: number of segments in output scatterlist
  66. * @icv_ool: whether ICV is out-of-line
  67. * @iv_dma: dma address of iv for checking continuity and link table
  68. * @dma_len: length of dma mapped link_tbl space
  69. * @dma_link_tbl: bus physical address of link_tbl/buf
  70. * @desc: h/w descriptor
  71. * @link_tbl: input and output h/w link tables (if {src,dst}_nents > 1) (SEC2)
  72. * @buf: input and output buffeur (if {src,dst}_nents > 1) (SEC1)
  73. *
  74. * if decrypting (with authcheck), or either one of src_nents or dst_nents
  75. * is greater than 1, an integrity check value is concatenated to the end
  76. * of link_tbl data
  77. */
  78. struct talitos_edesc {
  79. int src_nents;
  80. int dst_nents;
  81. bool icv_ool;
  82. dma_addr_t iv_dma;
  83. int dma_len;
  84. dma_addr_t dma_link_tbl;
  85. struct talitos_desc desc;
  86. union {
  87. struct talitos_ptr link_tbl[0];
  88. u8 buf[0];
  89. };
  90. };
  91. /**
  92. * talitos_request - descriptor submission request
  93. * @desc: descriptor pointer (kernel virtual)
  94. * @dma_desc: descriptor's physical bus address
  95. * @callback: whom to call when descriptor processing is done
  96. * @context: caller context (optional)
  97. */
  98. struct talitos_request {
  99. struct talitos_desc *desc;
  100. dma_addr_t dma_desc;
  101. void (*callback) (struct device *dev, struct talitos_desc *desc,
  102. void *context, int error);
  103. void *context;
  104. };
  105. /* per-channel fifo management */
  106. struct talitos_channel {
  107. void __iomem *reg;
  108. /* request fifo */
  109. struct talitos_request *fifo;
  110. /* number of requests pending in channel h/w fifo */
  111. atomic_t submit_count ____cacheline_aligned;
  112. /* request submission (head) lock */
  113. spinlock_t head_lock ____cacheline_aligned;
  114. /* index to next free descriptor request */
  115. int head;
  116. /* request release (tail) lock */
  117. spinlock_t tail_lock ____cacheline_aligned;
  118. /* index to next in-progress/done descriptor request */
  119. int tail;
  120. };
  121. struct talitos_private {
  122. struct device *dev;
  123. struct platform_device *ofdev;
  124. void __iomem *reg;
  125. void __iomem *reg_deu;
  126. void __iomem *reg_aesu;
  127. void __iomem *reg_mdeu;
  128. void __iomem *reg_afeu;
  129. void __iomem *reg_rngu;
  130. void __iomem *reg_pkeu;
  131. void __iomem *reg_keu;
  132. void __iomem *reg_crcu;
  133. int irq[2];
  134. /* SEC global registers lock */
  135. spinlock_t reg_lock ____cacheline_aligned;
  136. /* SEC version geometry (from device tree node) */
  137. unsigned int num_channels;
  138. unsigned int chfifo_len;
  139. unsigned int exec_units;
  140. unsigned int desc_types;
  141. /* SEC Compatibility info */
  142. unsigned long features;
  143. /*
  144. * length of the request fifo
  145. * fifo_len is chfifo_len rounded up to next power of 2
  146. * so we can use bitwise ops to wrap
  147. */
  148. unsigned int fifo_len;
  149. struct talitos_channel *chan;
  150. /* next channel to be assigned next incoming descriptor */
  151. atomic_t last_chan ____cacheline_aligned;
  152. /* request callback tasklet */
  153. struct tasklet_struct done_task[2];
  154. /* list of registered algorithms */
  155. struct list_head alg_list;
  156. /* hwrng device */
  157. struct hwrng rng;
  158. bool rng_registered;
  159. };
  160. extern int talitos_submit(struct device *dev, int ch, struct talitos_desc *desc,
  161. void (*callback)(struct device *dev,
  162. struct talitos_desc *desc,
  163. void *context, int error),
  164. void *context);
  165. /* .features flag */
  166. #define TALITOS_FTR_SRC_LINK_TBL_LEN_INCLUDES_EXTENT 0x00000001
  167. #define TALITOS_FTR_HW_AUTH_CHECK 0x00000002
  168. #define TALITOS_FTR_SHA224_HWINIT 0x00000004
  169. #define TALITOS_FTR_HMAC_OK 0x00000008
  170. #define TALITOS_FTR_SEC1 0x00000010
  171. /*
  172. * If both CONFIG_CRYPTO_DEV_TALITOS1 and CONFIG_CRYPTO_DEV_TALITOS2 are
  173. * defined, we check the features which are set according to the device tree.
  174. * Otherwise, we answer true or false directly
  175. */
  176. static inline bool has_ftr_sec1(struct talitos_private *priv)
  177. {
  178. #if defined(CONFIG_CRYPTO_DEV_TALITOS1) && defined(CONFIG_CRYPTO_DEV_TALITOS2)
  179. return priv->features & TALITOS_FTR_SEC1 ? true : false;
  180. #elif defined(CONFIG_CRYPTO_DEV_TALITOS1)
  181. return true;
  182. #else
  183. return false;
  184. #endif
  185. }
  186. /*
  187. * TALITOS_xxx_LO addresses point to the low data bits (32-63) of the register
  188. */
  189. #define ISR1_FORMAT(x) (((x) << 28) | ((x) << 16))
  190. #define ISR2_FORMAT(x) (((x) << 4) | (x))
  191. /* global register offset addresses */
  192. #define TALITOS_MCR 0x1030 /* master control register */
  193. #define TALITOS_MCR_RCA0 (1 << 15) /* remap channel 0 */
  194. #define TALITOS_MCR_RCA1 (1 << 14) /* remap channel 1 */
  195. #define TALITOS_MCR_RCA2 (1 << 13) /* remap channel 2 */
  196. #define TALITOS_MCR_RCA3 (1 << 12) /* remap channel 3 */
  197. #define TALITOS1_MCR_SWR 0x1000000 /* s/w reset */
  198. #define TALITOS2_MCR_SWR 0x1 /* s/w reset */
  199. #define TALITOS_MCR_LO 0x1034
  200. #define TALITOS_IMR 0x1008 /* interrupt mask register */
  201. /* enable channel IRQs */
  202. #define TALITOS1_IMR_INIT ISR1_FORMAT(0xf)
  203. #define TALITOS1_IMR_DONE ISR1_FORMAT(0x5) /* done IRQs */
  204. /* enable channel IRQs */
  205. #define TALITOS2_IMR_INIT (ISR2_FORMAT(0xf) | 0x10000)
  206. #define TALITOS2_IMR_DONE ISR1_FORMAT(0x5) /* done IRQs */
  207. #define TALITOS_IMR_LO 0x100C
  208. #define TALITOS1_IMR_LO_INIT 0x2000000 /* allow RNGU error IRQs */
  209. #define TALITOS2_IMR_LO_INIT 0x20000 /* allow RNGU error IRQs */
  210. #define TALITOS_ISR 0x1010 /* interrupt status register */
  211. #define TALITOS1_ISR_4CHERR ISR1_FORMAT(0xa) /* 4 ch errors mask */
  212. #define TALITOS1_ISR_4CHDONE ISR1_FORMAT(0x5) /* 4 ch done mask */
  213. #define TALITOS1_ISR_CH_0_ERR (2 << 28) /* ch 0 errors mask */
  214. #define TALITOS1_ISR_CH_0_DONE (1 << 28) /* ch 0 done mask */
  215. #define TALITOS1_ISR_TEA_ERR 0x00000040
  216. #define TALITOS2_ISR_4CHERR ISR2_FORMAT(0xa) /* 4 ch errors mask */
  217. #define TALITOS2_ISR_4CHDONE ISR2_FORMAT(0x5) /* 4 ch done mask */
  218. #define TALITOS2_ISR_CH_0_ERR 2 /* ch 0 errors mask */
  219. #define TALITOS2_ISR_CH_0_DONE 1 /* ch 0 done mask */
  220. #define TALITOS2_ISR_CH_0_2_ERR ISR2_FORMAT(0x2) /* ch 0, 2 err mask */
  221. #define TALITOS2_ISR_CH_0_2_DONE ISR2_FORMAT(0x1) /* ch 0, 2 done mask */
  222. #define TALITOS2_ISR_CH_1_3_ERR ISR2_FORMAT(0x8) /* ch 1, 3 err mask */
  223. #define TALITOS2_ISR_CH_1_3_DONE ISR2_FORMAT(0x4) /* ch 1, 3 done mask */
  224. #define TALITOS_ISR_LO 0x1014
  225. #define TALITOS_ICR 0x1018 /* interrupt clear register */
  226. #define TALITOS_ICR_LO 0x101C
  227. /* channel register address stride */
  228. #define TALITOS_CH_BASE_OFFSET 0x1000 /* default channel map base */
  229. #define TALITOS1_CH_STRIDE 0x1000
  230. #define TALITOS2_CH_STRIDE 0x100
  231. /* channel configuration register */
  232. #define TALITOS_CCCR 0x8
  233. #define TALITOS2_CCCR_CONT 0x2 /* channel continue on SEC2 */
  234. #define TALITOS2_CCCR_RESET 0x1 /* channel reset on SEC2 */
  235. #define TALITOS_CCCR_LO 0xc
  236. #define TALITOS_CCCR_LO_IWSE 0x80 /* chan. ICCR writeback enab. */
  237. #define TALITOS_CCCR_LO_EAE 0x20 /* extended address enable */
  238. #define TALITOS_CCCR_LO_CDWE 0x10 /* chan. done writeback enab. */
  239. #define TALITOS_CCCR_LO_NE 0x8 /* fetch next descriptor enab. */
  240. #define TALITOS_CCCR_LO_NT 0x4 /* notification type */
  241. #define TALITOS_CCCR_LO_CDIE 0x2 /* channel done IRQ enable */
  242. #define TALITOS1_CCCR_LO_RESET 0x1 /* channel reset on SEC1 */
  243. /* CCPSR: channel pointer status register */
  244. #define TALITOS_CCPSR 0x10
  245. #define TALITOS_CCPSR_LO 0x14
  246. #define TALITOS_CCPSR_LO_DOF 0x8000 /* double FF write oflow error */
  247. #define TALITOS_CCPSR_LO_SOF 0x4000 /* single FF write oflow error */
  248. #define TALITOS_CCPSR_LO_MDTE 0x2000 /* master data transfer error */
  249. #define TALITOS_CCPSR_LO_SGDLZ 0x1000 /* s/g data len zero error */
  250. #define TALITOS_CCPSR_LO_FPZ 0x0800 /* fetch ptr zero error */
  251. #define TALITOS_CCPSR_LO_IDH 0x0400 /* illegal desc hdr error */
  252. #define TALITOS_CCPSR_LO_IEU 0x0200 /* invalid EU error */
  253. #define TALITOS_CCPSR_LO_EU 0x0100 /* EU error detected */
  254. #define TALITOS_CCPSR_LO_GB 0x0080 /* gather boundary error */
  255. #define TALITOS_CCPSR_LO_GRL 0x0040 /* gather return/length error */
  256. #define TALITOS_CCPSR_LO_SB 0x0020 /* scatter boundary error */
  257. #define TALITOS_CCPSR_LO_SRL 0x0010 /* scatter return/length error */
  258. /* channel fetch fifo register */
  259. #define TALITOS_FF 0x48
  260. #define TALITOS_FF_LO 0x4c
  261. /* current descriptor pointer register */
  262. #define TALITOS_CDPR 0x40
  263. #define TALITOS_CDPR_LO 0x44
  264. /* descriptor buffer register */
  265. #define TALITOS_DESCBUF 0x80
  266. #define TALITOS_DESCBUF_LO 0x84
  267. /* gather link table */
  268. #define TALITOS_GATHER 0xc0
  269. #define TALITOS_GATHER_LO 0xc4
  270. /* scatter link table */
  271. #define TALITOS_SCATTER 0xe0
  272. #define TALITOS_SCATTER_LO 0xe4
  273. /* execution unit registers base */
  274. #define TALITOS2_DEU 0x2000
  275. #define TALITOS2_AESU 0x4000
  276. #define TALITOS2_MDEU 0x6000
  277. #define TALITOS2_AFEU 0x8000
  278. #define TALITOS2_RNGU 0xa000
  279. #define TALITOS2_PKEU 0xc000
  280. #define TALITOS2_KEU 0xe000
  281. #define TALITOS2_CRCU 0xf000
  282. #define TALITOS12_AESU 0x4000
  283. #define TALITOS12_DEU 0x5000
  284. #define TALITOS12_MDEU 0x6000
  285. #define TALITOS10_AFEU 0x8000
  286. #define TALITOS10_DEU 0xa000
  287. #define TALITOS10_MDEU 0xc000
  288. #define TALITOS10_RNGU 0xe000
  289. #define TALITOS10_PKEU 0x10000
  290. #define TALITOS10_AESU 0x12000
  291. /* execution unit interrupt status registers */
  292. #define TALITOS_EUDSR 0x10 /* data size */
  293. #define TALITOS_EUDSR_LO 0x14
  294. #define TALITOS_EURCR 0x18 /* reset control*/
  295. #define TALITOS_EURCR_LO 0x1c
  296. #define TALITOS_EUSR 0x28 /* rng status */
  297. #define TALITOS_EUSR_LO 0x2c
  298. #define TALITOS_EUISR 0x30
  299. #define TALITOS_EUISR_LO 0x34
  300. #define TALITOS_EUICR 0x38 /* int. control */
  301. #define TALITOS_EUICR_LO 0x3c
  302. #define TALITOS_EU_FIFO 0x800 /* output FIFO */
  303. #define TALITOS_EU_FIFO_LO 0x804 /* output FIFO */
  304. /* DES unit */
  305. #define TALITOS1_DEUICR_KPE 0x00200000 /* Key Parity Error */
  306. /* message digest unit */
  307. #define TALITOS_MDEUICR_LO_ICE 0x4000 /* integrity check IRQ enable */
  308. /* random number unit */
  309. #define TALITOS_RNGUSR_LO_RD 0x1 /* reset done */
  310. #define TALITOS_RNGUSR_LO_OFL 0xff0000/* output FIFO length */
  311. #define TALITOS_RNGURCR_LO_SR 0x1 /* software reset */
  312. #define TALITOS_MDEU_CONTEXT_SIZE_MD5_SHA1_SHA256 0x28
  313. #define TALITOS_MDEU_CONTEXT_SIZE_SHA384_SHA512 0x48
  314. /*
  315. * talitos descriptor header (hdr) bits
  316. */
  317. /* written back when done */
  318. #define DESC_HDR_DONE cpu_to_be32(0xff000000)
  319. #define DESC_HDR_LO_ICCR1_MASK cpu_to_be32(0x00180000)
  320. #define DESC_HDR_LO_ICCR1_PASS cpu_to_be32(0x00080000)
  321. #define DESC_HDR_LO_ICCR1_FAIL cpu_to_be32(0x00100000)
  322. /* primary execution unit select */
  323. #define DESC_HDR_SEL0_MASK cpu_to_be32(0xf0000000)
  324. #define DESC_HDR_SEL0_AFEU cpu_to_be32(0x10000000)
  325. #define DESC_HDR_SEL0_DEU cpu_to_be32(0x20000000)
  326. #define DESC_HDR_SEL0_MDEUA cpu_to_be32(0x30000000)
  327. #define DESC_HDR_SEL0_MDEUB cpu_to_be32(0xb0000000)
  328. #define DESC_HDR_SEL0_RNG cpu_to_be32(0x40000000)
  329. #define DESC_HDR_SEL0_PKEU cpu_to_be32(0x50000000)
  330. #define DESC_HDR_SEL0_AESU cpu_to_be32(0x60000000)
  331. #define DESC_HDR_SEL0_KEU cpu_to_be32(0x70000000)
  332. #define DESC_HDR_SEL0_CRCU cpu_to_be32(0x80000000)
  333. /* primary execution unit mode (MODE0) and derivatives */
  334. #define DESC_HDR_MODE0_ENCRYPT cpu_to_be32(0x00100000)
  335. #define DESC_HDR_MODE0_AESU_CBC cpu_to_be32(0x00200000)
  336. #define DESC_HDR_MODE0_AESU_CTR cpu_to_be32(0x00600000)
  337. #define DESC_HDR_MODE0_DEU_CBC cpu_to_be32(0x00400000)
  338. #define DESC_HDR_MODE0_DEU_3DES cpu_to_be32(0x00200000)
  339. #define DESC_HDR_MODE0_MDEU_CONT cpu_to_be32(0x08000000)
  340. #define DESC_HDR_MODE0_MDEU_INIT cpu_to_be32(0x01000000)
  341. #define DESC_HDR_MODE0_MDEU_HMAC cpu_to_be32(0x00800000)
  342. #define DESC_HDR_MODE0_MDEU_PAD cpu_to_be32(0x00400000)
  343. #define DESC_HDR_MODE0_MDEU_SHA224 cpu_to_be32(0x00300000)
  344. #define DESC_HDR_MODE0_MDEU_MD5 cpu_to_be32(0x00200000)
  345. #define DESC_HDR_MODE0_MDEU_SHA256 cpu_to_be32(0x00100000)
  346. #define DESC_HDR_MODE0_MDEU_SHA1 cpu_to_be32(0x00000000)
  347. #define DESC_HDR_MODE0_MDEUB_SHA384 cpu_to_be32(0x00000000)
  348. #define DESC_HDR_MODE0_MDEUB_SHA512 cpu_to_be32(0x00200000)
  349. #define DESC_HDR_MODE0_MDEU_MD5_HMAC (DESC_HDR_MODE0_MDEU_MD5 | \
  350. DESC_HDR_MODE0_MDEU_HMAC)
  351. #define DESC_HDR_MODE0_MDEU_SHA256_HMAC (DESC_HDR_MODE0_MDEU_SHA256 | \
  352. DESC_HDR_MODE0_MDEU_HMAC)
  353. #define DESC_HDR_MODE0_MDEU_SHA1_HMAC (DESC_HDR_MODE0_MDEU_SHA1 | \
  354. DESC_HDR_MODE0_MDEU_HMAC)
  355. /* secondary execution unit select (SEL1) */
  356. #define DESC_HDR_SEL1_MASK cpu_to_be32(0x000f0000)
  357. #define DESC_HDR_SEL1_MDEUA cpu_to_be32(0x00030000)
  358. #define DESC_HDR_SEL1_MDEUB cpu_to_be32(0x000b0000)
  359. #define DESC_HDR_SEL1_CRCU cpu_to_be32(0x00080000)
  360. /* secondary execution unit mode (MODE1) and derivatives */
  361. #define DESC_HDR_MODE1_MDEU_CICV cpu_to_be32(0x00004000)
  362. #define DESC_HDR_MODE1_MDEU_INIT cpu_to_be32(0x00001000)
  363. #define DESC_HDR_MODE1_MDEU_HMAC cpu_to_be32(0x00000800)
  364. #define DESC_HDR_MODE1_MDEU_PAD cpu_to_be32(0x00000400)
  365. #define DESC_HDR_MODE1_MDEU_SHA224 cpu_to_be32(0x00000300)
  366. #define DESC_HDR_MODE1_MDEU_MD5 cpu_to_be32(0x00000200)
  367. #define DESC_HDR_MODE1_MDEU_SHA256 cpu_to_be32(0x00000100)
  368. #define DESC_HDR_MODE1_MDEU_SHA1 cpu_to_be32(0x00000000)
  369. #define DESC_HDR_MODE1_MDEUB_SHA384 cpu_to_be32(0x00000000)
  370. #define DESC_HDR_MODE1_MDEUB_SHA512 cpu_to_be32(0x00000200)
  371. #define DESC_HDR_MODE1_MDEU_MD5_HMAC (DESC_HDR_MODE1_MDEU_MD5 | \
  372. DESC_HDR_MODE1_MDEU_HMAC)
  373. #define DESC_HDR_MODE1_MDEU_SHA256_HMAC (DESC_HDR_MODE1_MDEU_SHA256 | \
  374. DESC_HDR_MODE1_MDEU_HMAC)
  375. #define DESC_HDR_MODE1_MDEU_SHA1_HMAC (DESC_HDR_MODE1_MDEU_SHA1 | \
  376. DESC_HDR_MODE1_MDEU_HMAC)
  377. #define DESC_HDR_MODE1_MDEU_SHA224_HMAC (DESC_HDR_MODE1_MDEU_SHA224 | \
  378. DESC_HDR_MODE1_MDEU_HMAC)
  379. #define DESC_HDR_MODE1_MDEUB_SHA384_HMAC (DESC_HDR_MODE1_MDEUB_SHA384 | \
  380. DESC_HDR_MODE1_MDEU_HMAC)
  381. #define DESC_HDR_MODE1_MDEUB_SHA512_HMAC (DESC_HDR_MODE1_MDEUB_SHA512 | \
  382. DESC_HDR_MODE1_MDEU_HMAC)
  383. /* direction of overall data flow (DIR) */
  384. #define DESC_HDR_DIR_INBOUND cpu_to_be32(0x00000002)
  385. /* request done notification (DN) */
  386. #define DESC_HDR_DONE_NOTIFY cpu_to_be32(0x00000001)
  387. /* descriptor types */
  388. #define DESC_HDR_TYPE_AESU_CTR_NONSNOOP cpu_to_be32(0 << 3)
  389. #define DESC_HDR_TYPE_IPSEC_ESP cpu_to_be32(1 << 3)
  390. #define DESC_HDR_TYPE_COMMON_NONSNOOP_NO_AFEU cpu_to_be32(2 << 3)
  391. #define DESC_HDR_TYPE_HMAC_SNOOP_NO_AFEU cpu_to_be32(4 << 3)
  392. /* link table extent field bits */
  393. #define DESC_PTR_LNKTBL_JUMP 0x80
  394. #define DESC_PTR_LNKTBL_RET 0x02
  395. #define DESC_PTR_LNKTBL_NEXT 0x01