2 * Driver for EIP97 cryptographic accelerator.
4 * Copyright (c) 2016 Ryder Lee <ryder.lee@mediatek.com>
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
12 #ifndef __MTK_PLATFORM_H_
13 #define __MTK_PLATFORM_H_
15 #include <crypto/algapi.h>
16 #include <crypto/internal/aead.h>
17 #include <crypto/internal/hash.h>
18 #include <crypto/scatterwalk.h>
19 #include <crypto/skcipher.h>
20 #include <linux/crypto.h>
21 #include <linux/dma-mapping.h>
22 #include <linux/interrupt.h>
23 #include <linux/scatterlist.h>
26 #define MTK_RDR_PROC_THRESH BIT(0)
27 #define MTK_RDR_PROC_MODE BIT(23)
28 #define MTK_CNT_RST BIT(31)
29 #define MTK_IRQ_RDR0 BIT(1)
30 #define MTK_IRQ_RDR1 BIT(3)
31 #define MTK_IRQ_RDR2 BIT(5)
32 #define MTK_IRQ_RDR3 BIT(7)
34 #define SIZE_IN_WORDS(x) ((x) >> 2)
37 * Ring 0/1 are used by AES encrypt and decrypt.
38 * Ring 2/3 are used by SHA.
48 #define MTK_REC_NUM (MTK_RING_MAX / 2)
52 * struct mtk_desc - DMA descriptor
53 * @hdr: the descriptor control header
54 * @buf: DMA address of input buffer segment
55 * @ct: DMA address of command token that control operation flow
56 * @ct_hdr: the command token control header
57 * @tag: the user-defined field
58 * @tfm: DMA address of transform state
59 * @bound: align descriptors offset boundary
61 * Structure passed to the crypto engine to describe where source
62 * data needs to be fetched and how it needs to be processed.
74 #define MTK_DESC_NUM 512
75 #define MTK_DESC_OFF SIZE_IN_WORDS(sizeof(struct mtk_desc))
76 #define MTK_DESC_SZ (MTK_DESC_OFF - 2)
77 #define MTK_DESC_RING_SZ ((sizeof(struct mtk_desc) * MTK_DESC_NUM))
78 #define MTK_DESC_CNT(x) ((MTK_DESC_OFF * (x)) << 2)
79 #define MTK_DESC_LAST cpu_to_le32(BIT(22))
80 #define MTK_DESC_FIRST cpu_to_le32(BIT(23))
81 #define MTK_DESC_BUF_LEN(x) cpu_to_le32(x)
82 #define MTK_DESC_CT_LEN(x) cpu_to_le32((x) << 24)
85 * struct mtk_ring - Descriptor ring
86 * @cmd_base: pointer to command descriptor ring base
87 * @cmd_next: pointer to the next command descriptor
88 * @cmd_dma: DMA address of command descriptor ring
89 * @res_base: pointer to result descriptor ring base
90 * @res_next: pointer to the next result descriptor
91 * @res_prev: pointer to the previous result descriptor
92 * @res_dma: DMA address of result descriptor ring
94 * A descriptor ring is a circular buffer that is used to manage
95 * one or more descriptors. There are two type of descriptor rings;
96 * the command descriptor ring and result descriptor ring.
99 struct mtk_desc
*cmd_base
;
100 struct mtk_desc
*cmd_next
;
102 struct mtk_desc
*res_base
;
103 struct mtk_desc
*res_next
;
104 struct mtk_desc
*res_prev
;
109 * struct mtk_aes_dma - Structure that holds sg list info
110 * @sg: pointer to scatter-gather list
111 * @nents: number of entries in the sg list
112 * @remainder: remainder of sg list
113 * @sg_len: number of entries in the sg mapped list
116 struct scatterlist
*sg
;
122 struct mtk_aes_base_ctx
;
126 typedef int (*mtk_aes_fn
)(struct mtk_cryp
*cryp
, struct mtk_aes_rec
*aes
);
129 * struct mtk_aes_rec - AES operation record
130 * @cryp: pointer to Cryptographic device
131 * @queue: crypto request queue
132 * @areq: pointer to async request
133 * @done_task: the tasklet is use in AES interrupt
134 * @queue_task: the tasklet is used to dequeue request
135 * @ctx: pointer to current context
136 * @src: the structure that holds source sg list info
137 * @dst: the structure that holds destination sg list info
138 * @aligned_sg: the scatter list is use to alignment
139 * @real_dst: pointer to the destination sg list
140 * @resume: pointer to resume function
141 * @total: request buffer length
142 * @buf: pointer to page buffer
143 * @id: the current use of ring
144 * @flags: it's describing AES operation state
145 * @lock: the async queue lock
147 * Structure used to record AES execution state.
150 struct mtk_cryp
*cryp
;
151 struct crypto_queue queue
;
152 struct crypto_async_request
*areq
;
153 struct tasklet_struct done_task
;
154 struct tasklet_struct queue_task
;
155 struct mtk_aes_base_ctx
*ctx
;
156 struct mtk_aes_dma src
;
157 struct mtk_aes_dma dst
;
159 struct scatterlist aligned_sg
;
160 struct scatterlist
*real_dst
;
174 * struct mtk_sha_rec - SHA operation record
175 * @cryp: pointer to Cryptographic device
176 * @queue: crypto request queue
177 * @req: pointer to ahash request
178 * @done_task: the tasklet is use in SHA interrupt
179 * @queue_task: the tasklet is used to dequeue request
180 * @id: the current use of ring
181 * @flags: it's describing SHA operation state
182 * @lock: the async queue lock
184 * Structure used to record SHA execution state.
187 struct mtk_cryp
*cryp
;
188 struct crypto_queue queue
;
189 struct ahash_request
*req
;
190 struct tasklet_struct done_task
;
191 struct tasklet_struct queue_task
;
200 * struct mtk_cryp - Cryptographic device
201 * @base: pointer to mapped register I/O base
202 * @dev: pointer to device
203 * @clk_cryp: pointer to crypto clock
204 * @irq: global system and rings IRQ
205 * @ring: pointer to descriptor rings
206 * @aes: pointer to operation record of AES
207 * @sha: pointer to operation record of SHA
208 * @aes_list: device list of AES
209 * @sha_list: device list of SHA
210 * @rec: it's used to select SHA record for tfm
212 * Structure storing cryptographic device information.
217 struct clk
*clk_cryp
;
218 int irq
[MTK_IRQ_NUM
];
220 struct mtk_ring
*ring
[MTK_RING_MAX
];
221 struct mtk_aes_rec
*aes
[MTK_REC_NUM
];
222 struct mtk_sha_rec
*sha
[MTK_REC_NUM
];
224 struct list_head aes_list
;
225 struct list_head sha_list
;
230 int mtk_cipher_alg_register(struct mtk_cryp
*cryp
);
231 void mtk_cipher_alg_release(struct mtk_cryp
*cryp
);
232 int mtk_hash_alg_register(struct mtk_cryp
*cryp
);
233 void mtk_hash_alg_release(struct mtk_cryp
*cryp
);
235 #endif /* __MTK_PLATFORM_H_ */