hash_alg.h 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395
  1. /*
  2. * Copyright (C) ST-Ericsson SA 2010
  3. * Author: Shujuan Chen (shujuan.chen@stericsson.com)
  4. * Author: Joakim Bech (joakim.xx.bech@stericsson.com)
  5. * Author: Berne Hebark (berne.hebark@stericsson.com))
  6. * License terms: GNU General Public License (GPL) version 2
  7. */
  8. #ifndef _HASH_ALG_H
  9. #define _HASH_ALG_H
  10. #include <linux/bitops.h>
  11. #define HASH_BLOCK_SIZE 64
  12. #define HASH_DMA_ALIGN_SIZE 4
  13. #define HASH_DMA_PERFORMANCE_MIN_SIZE 1024
  14. #define HASH_BYTES_PER_WORD 4
  15. /* Maximum value of the length's high word */
  16. #define HASH_HIGH_WORD_MAX_VAL 0xFFFFFFFFUL
  17. /* Power on Reset values HASH registers */
  18. #define HASH_RESET_CR_VALUE 0x0
  19. #define HASH_RESET_STR_VALUE 0x0
  20. /* Number of context swap registers */
  21. #define HASH_CSR_COUNT 52
  22. #define HASH_RESET_CSRX_REG_VALUE 0x0
  23. #define HASH_RESET_CSFULL_REG_VALUE 0x0
  24. #define HASH_RESET_CSDATAIN_REG_VALUE 0x0
  25. #define HASH_RESET_INDEX_VAL 0x0
  26. #define HASH_RESET_BIT_INDEX_VAL 0x0
  27. #define HASH_RESET_BUFFER_VAL 0x0
  28. #define HASH_RESET_LEN_HIGH_VAL 0x0
  29. #define HASH_RESET_LEN_LOW_VAL 0x0
  30. /* Control register bitfields */
  31. #define HASH_CR_RESUME_MASK 0x11FCF
  32. #define HASH_CR_SWITCHON_POS 31
  33. #define HASH_CR_SWITCHON_MASK BIT(31)
  34. #define HASH_CR_EMPTYMSG_POS 20
  35. #define HASH_CR_EMPTYMSG_MASK BIT(20)
  36. #define HASH_CR_DINF_POS 12
  37. #define HASH_CR_DINF_MASK BIT(12)
  38. #define HASH_CR_NBW_POS 8
  39. #define HASH_CR_NBW_MASK 0x00000F00UL
  40. #define HASH_CR_LKEY_POS 16
  41. #define HASH_CR_LKEY_MASK BIT(16)
  42. #define HASH_CR_ALGO_POS 7
  43. #define HASH_CR_ALGO_MASK BIT(7)
  44. #define HASH_CR_MODE_POS 6
  45. #define HASH_CR_MODE_MASK BIT(6)
  46. #define HASH_CR_DATAFORM_POS 4
  47. #define HASH_CR_DATAFORM_MASK (BIT(4) | BIT(5))
  48. #define HASH_CR_DMAE_POS 3
  49. #define HASH_CR_DMAE_MASK BIT(3)
  50. #define HASH_CR_INIT_POS 2
  51. #define HASH_CR_INIT_MASK BIT(2)
  52. #define HASH_CR_PRIVN_POS 1
  53. #define HASH_CR_PRIVN_MASK BIT(1)
  54. #define HASH_CR_SECN_POS 0
  55. #define HASH_CR_SECN_MASK BIT(0)
  56. /* Start register bitfields */
  57. #define HASH_STR_DCAL_POS 8
  58. #define HASH_STR_DCAL_MASK BIT(8)
  59. #define HASH_STR_DEFAULT 0x0
  60. #define HASH_STR_NBLW_POS 0
  61. #define HASH_STR_NBLW_MASK 0x0000001FUL
  62. #define HASH_NBLW_MAX_VAL 0x1F
  63. /* PrimeCell IDs */
  64. #define HASH_P_ID0 0xE0
  65. #define HASH_P_ID1 0x05
  66. #define HASH_P_ID2 0x38
  67. #define HASH_P_ID3 0x00
  68. #define HASH_CELL_ID0 0x0D
  69. #define HASH_CELL_ID1 0xF0
  70. #define HASH_CELL_ID2 0x05
  71. #define HASH_CELL_ID3 0xB1
  72. #define HASH_SET_BITS(reg_name, mask) \
  73. writel_relaxed((readl_relaxed(reg_name) | mask), reg_name)
  74. #define HASH_CLEAR_BITS(reg_name, mask) \
  75. writel_relaxed((readl_relaxed(reg_name) & ~mask), reg_name)
  76. #define HASH_PUT_BITS(reg, val, shift, mask) \
  77. writel_relaxed(((readl(reg) & ~(mask)) | \
  78. (((u32)val << shift) & (mask))), reg)
  79. #define HASH_SET_DIN(val, len) writesl(&device_data->base->din, (val), (len))
  80. #define HASH_INITIALIZE \
  81. HASH_PUT_BITS( \
  82. &device_data->base->cr, \
  83. 0x01, HASH_CR_INIT_POS, \
  84. HASH_CR_INIT_MASK)
  85. #define HASH_SET_DATA_FORMAT(data_format) \
  86. HASH_PUT_BITS( \
  87. &device_data->base->cr, \
  88. (u32) (data_format), HASH_CR_DATAFORM_POS, \
  89. HASH_CR_DATAFORM_MASK)
  90. #define HASH_SET_NBLW(val) \
  91. HASH_PUT_BITS( \
  92. &device_data->base->str, \
  93. (u32) (val), HASH_STR_NBLW_POS, \
  94. HASH_STR_NBLW_MASK)
  95. #define HASH_SET_DCAL \
  96. HASH_PUT_BITS( \
  97. &device_data->base->str, \
  98. 0x01, HASH_STR_DCAL_POS, \
  99. HASH_STR_DCAL_MASK)
  100. /* Hardware access method */
  101. enum hash_mode {
  102. HASH_MODE_CPU,
  103. HASH_MODE_DMA
  104. };
  105. /**
  106. * struct uint64 - Structure to handle 64 bits integers.
  107. * @high_word: Most significant bits.
  108. * @low_word: Least significant bits.
  109. *
  110. * Used to handle 64 bits integers.
  111. */
  112. struct uint64 {
  113. u32 high_word;
  114. u32 low_word;
  115. };
  116. /**
  117. * struct hash_register - Contains all registers in ux500 hash hardware.
  118. * @cr: HASH control register (0x000).
  119. * @din: HASH data input register (0x004).
  120. * @str: HASH start register (0x008).
  121. * @hx: HASH digest register 0..7 (0x00c-0x01C).
  122. * @padding0: Reserved (0x02C).
  123. * @itcr: Integration test control register (0x080).
  124. * @itip: Integration test input register (0x084).
  125. * @itop: Integration test output register (0x088).
  126. * @padding1: Reserved (0x08C).
  127. * @csfull: HASH context full register (0x0F8).
  128. * @csdatain: HASH context swap data input register (0x0FC).
  129. * @csrx: HASH context swap register 0..51 (0x100-0x1CC).
  130. * @padding2: Reserved (0x1D0).
  131. * @periphid0: HASH peripheral identification register 0 (0xFE0).
  132. * @periphid1: HASH peripheral identification register 1 (0xFE4).
  133. * @periphid2: HASH peripheral identification register 2 (0xFE8).
  134. * @periphid3: HASH peripheral identification register 3 (0xFEC).
  135. * @cellid0: HASH PCell identification register 0 (0xFF0).
  136. * @cellid1: HASH PCell identification register 1 (0xFF4).
  137. * @cellid2: HASH PCell identification register 2 (0xFF8).
  138. * @cellid3: HASH PCell identification register 3 (0xFFC).
  139. *
  140. * The device communicates to the HASH via 32-bit-wide control registers
  141. * accessible via the 32-bit width AMBA rev. 2.0 AHB Bus. Below is a structure
  142. * with the registers used.
  143. */
  144. struct hash_register {
  145. u32 cr;
  146. u32 din;
  147. u32 str;
  148. u32 hx[8];
  149. u32 padding0[(0x080 - 0x02C) / sizeof(u32)];
  150. u32 itcr;
  151. u32 itip;
  152. u32 itop;
  153. u32 padding1[(0x0F8 - 0x08C) / sizeof(u32)];
  154. u32 csfull;
  155. u32 csdatain;
  156. u32 csrx[HASH_CSR_COUNT];
  157. u32 padding2[(0xFE0 - 0x1D0) / sizeof(u32)];
  158. u32 periphid0;
  159. u32 periphid1;
  160. u32 periphid2;
  161. u32 periphid3;
  162. u32 cellid0;
  163. u32 cellid1;
  164. u32 cellid2;
  165. u32 cellid3;
  166. };
  167. /**
  168. * struct hash_state - Hash context state.
  169. * @temp_cr: Temporary HASH Control Register.
  170. * @str_reg: HASH Start Register.
  171. * @din_reg: HASH Data Input Register.
  172. * @csr[52]: HASH Context Swap Registers 0-39.
  173. * @csfull: HASH Context Swap Registers 40 ie Status flags.
  174. * @csdatain: HASH Context Swap Registers 41 ie Input data.
  175. * @buffer: Working buffer for messages going to the hardware.
  176. * @length: Length of the part of message hashed so far (floor(N/64) * 64).
  177. * @index: Valid number of bytes in buffer (N % 64).
  178. * @bit_index: Valid number of bits in buffer (N % 8).
  179. *
  180. * This structure is used between context switches, i.e. when ongoing jobs are
  181. * interupted with new jobs. When this happens we need to store intermediate
  182. * results in software.
  183. *
  184. * WARNING: "index" is the member of the structure, to be sure that "buffer"
  185. * is aligned on a 4-bytes boundary. This is highly implementation dependent
  186. * and MUST be checked whenever this code is ported on new platforms.
  187. */
  188. struct hash_state {
  189. u32 temp_cr;
  190. u32 str_reg;
  191. u32 din_reg;
  192. u32 csr[52];
  193. u32 csfull;
  194. u32 csdatain;
  195. u32 buffer[HASH_BLOCK_SIZE / sizeof(u32)];
  196. struct uint64 length;
  197. u8 index;
  198. u8 bit_index;
  199. };
  200. /**
  201. * enum hash_device_id - HASH device ID.
  202. * @HASH_DEVICE_ID_0: Hash hardware with ID 0
  203. * @HASH_DEVICE_ID_1: Hash hardware with ID 1
  204. */
  205. enum hash_device_id {
  206. HASH_DEVICE_ID_0 = 0,
  207. HASH_DEVICE_ID_1 = 1
  208. };
  209. /**
  210. * enum hash_data_format - HASH data format.
  211. * @HASH_DATA_32_BITS: 32 bits data format
  212. * @HASH_DATA_16_BITS: 16 bits data format
  213. * @HASH_DATA_8_BITS: 8 bits data format.
  214. * @HASH_DATA_1_BITS: 1 bit data format.
  215. */
  216. enum hash_data_format {
  217. HASH_DATA_32_BITS = 0x0,
  218. HASH_DATA_16_BITS = 0x1,
  219. HASH_DATA_8_BITS = 0x2,
  220. HASH_DATA_1_BIT = 0x3
  221. };
  222. /**
  223. * enum hash_algo - Enumeration for selecting between SHA1 or SHA2 algorithm.
  224. * @HASH_ALGO_SHA1: Indicates that SHA1 is used.
  225. * @HASH_ALGO_SHA2: Indicates that SHA2 (SHA256) is used.
  226. */
  227. enum hash_algo {
  228. HASH_ALGO_SHA1 = 0x0,
  229. HASH_ALGO_SHA256 = 0x1
  230. };
  231. /**
  232. * enum hash_op - Enumeration for selecting between HASH or HMAC mode.
  233. * @HASH_OPER_MODE_HASH: Indicates usage of normal HASH mode.
  234. * @HASH_OPER_MODE_HMAC: Indicates usage of HMAC.
  235. */
  236. enum hash_op {
  237. HASH_OPER_MODE_HASH = 0x0,
  238. HASH_OPER_MODE_HMAC = 0x1
  239. };
  240. /**
  241. * struct hash_config - Configuration data for the hardware.
  242. * @data_format: Format of data entered into the hash data in register.
  243. * @algorithm: Algorithm selection bit.
  244. * @oper_mode: Operating mode selection bit.
  245. */
  246. struct hash_config {
  247. int data_format;
  248. int algorithm;
  249. int oper_mode;
  250. };
  251. /**
  252. * struct hash_dma - Structure used for dma.
  253. * @mask: DMA capabilities bitmap mask.
  254. * @complete: Used to maintain state for a "completion".
  255. * @chan_mem2hash: DMA channel.
  256. * @cfg_mem2hash: DMA channel configuration.
  257. * @sg_len: Scatterlist length.
  258. * @sg: Scatterlist.
  259. * @nents: Number of sg entries.
  260. */
  261. struct hash_dma {
  262. dma_cap_mask_t mask;
  263. struct completion complete;
  264. struct dma_chan *chan_mem2hash;
  265. void *cfg_mem2hash;
  266. int sg_len;
  267. struct scatterlist *sg;
  268. int nents;
  269. };
  270. /**
  271. * struct hash_ctx - The context used for hash calculations.
  272. * @key: The key used in the operation.
  273. * @keylen: The length of the key.
  274. * @state: The state of the current calculations.
  275. * @config: The current configuration.
  276. * @digestsize: The size of current digest.
  277. * @device: Pointer to the device structure.
  278. */
  279. struct hash_ctx {
  280. u8 *key;
  281. u32 keylen;
  282. struct hash_config config;
  283. int digestsize;
  284. struct hash_device_data *device;
  285. };
  286. /**
  287. * struct hash_ctx - The request context used for hash calculations.
  288. * @state: The state of the current calculations.
  289. * @dma_mode: Used in special cases (workaround), e.g. need to change to
  290. * cpu mode, if not supported/working in dma mode.
  291. * @updated: Indicates if hardware is initialized for new operations.
  292. */
  293. struct hash_req_ctx {
  294. struct hash_state state;
  295. bool dma_mode;
  296. u8 updated;
  297. };
  298. /**
  299. * struct hash_device_data - structure for a hash device.
  300. * @base: Pointer to the hardware base address.
  301. * @list_node: For inclusion in klist.
  302. * @dev: Pointer to the device dev structure.
  303. * @ctx_lock: Spinlock for current_ctx.
  304. * @current_ctx: Pointer to the currently allocated context.
  305. * @power_state: TRUE = power state on, FALSE = power state off.
  306. * @power_state_lock: Spinlock for power_state.
  307. * @regulator: Pointer to the device's power control.
  308. * @clk: Pointer to the device's clock control.
  309. * @restore_dev_state: TRUE = saved state, FALSE = no saved state.
  310. * @dma: Structure used for dma.
  311. */
  312. struct hash_device_data {
  313. struct hash_register __iomem *base;
  314. struct klist_node list_node;
  315. struct device *dev;
  316. struct spinlock ctx_lock;
  317. struct hash_ctx *current_ctx;
  318. bool power_state;
  319. struct spinlock power_state_lock;
  320. struct regulator *regulator;
  321. struct clk *clk;
  322. bool restore_dev_state;
  323. struct hash_state state; /* Used for saving and resuming state */
  324. struct hash_dma dma;
  325. };
  326. int hash_check_hw(struct hash_device_data *device_data);
  327. int hash_setconfiguration(struct hash_device_data *device_data,
  328. struct hash_config *config);
  329. void hash_begin(struct hash_device_data *device_data, struct hash_ctx *ctx);
  330. void hash_get_digest(struct hash_device_data *device_data,
  331. u8 *digest, int algorithm);
  332. int hash_hw_update(struct ahash_request *req);
  333. int hash_save_state(struct hash_device_data *device_data,
  334. struct hash_state *state);
  335. int hash_resume_state(struct hash_device_data *device_data,
  336. const struct hash_state *state);
  337. #endif