1 // SPDX-License-Identifier: GPL-2.0+
3 * Advanced Crypto Engine - SHA Firmware
4 * Copyright (c) 2012 Samsung Electronics
11 #include <linux/string.h>
13 #ifdef CONFIG_SHA_HW_ACCEL
14 #include <u-boot/sha256.h>
15 #include <u-boot/sha1.h>
16 #include <linux/errno.h>
18 /* SHA1 value for the message of zero length */
19 static const unsigned char sha1_digest_emptymsg[SHA1_SUM_LEN] = {
20 0xDA, 0x39, 0xA3, 0xEE, 0x5E, 0x6B, 0x4B, 0x0D,
21 0x32, 0x55, 0xBF, 0xFF, 0x95, 0x60, 0x18, 0x90,
22 0xAF, 0xD8, 0x07, 0x09};
24 /* SHA256 value for the message of zero length */
25 static const unsigned char sha256_digest_emptymsg[SHA256_SUM_LEN] = {
26 0xE3, 0xB0, 0xC4, 0x42, 0x98, 0xFC, 0x1C, 0x14,
27 0x9A, 0xFB, 0xF4, 0xC8, 0x99, 0x6F, 0xB9, 0x24,
28 0x27, 0xAE, 0x41, 0xE4, 0x64, 0x9B, 0x93, 0x4C,
29 0xA4, 0x95, 0x99, 0x1B, 0x78, 0x52, 0xB8, 0x55};
31 int ace_sha_hash_digest(const unsigned char *pbuf, unsigned int buf_len,
32 unsigned char *pout, unsigned int hash_type)
34 unsigned int i, reg, len;
35 unsigned int *pdigest;
36 struct exynos_ace_sfr *ace_sha_reg =
37 (struct exynos_ace_sfr *)samsung_get_base_ace_sfr();
40 /* ACE H/W cannot compute hash value for empty string */
41 if (hash_type == ACE_SHA_TYPE_SHA1)
42 memcpy(pout, sha1_digest_emptymsg, SHA1_SUM_LEN);
44 memcpy(pout, sha256_digest_emptymsg, SHA256_SUM_LEN);
49 writel(ACE_FC_HRDMACFLUSH_ON, &ace_sha_reg->fc_hrdmac);
50 writel(ACE_FC_HRDMACFLUSH_OFF, &ace_sha_reg->fc_hrdmac);
52 /* Set byte swap of data in */
53 writel(ACE_HASH_SWAPDI_ON | ACE_HASH_SWAPDO_ON | ACE_HASH_SWAPIV_ON,
54 &ace_sha_reg->hash_byteswap);
56 /* Select Hash input mux as external source */
57 reg = readl(&ace_sha_reg->fc_fifoctrl);
58 reg = (reg & ~ACE_FC_SELHASH_MASK) | ACE_FC_SELHASH_EXOUT;
59 writel(reg, &ace_sha_reg->fc_fifoctrl);
61 /* Set Hash as SHA1 or SHA256 and start Hash engine */
62 reg = (hash_type == ACE_SHA_TYPE_SHA1) ?
63 ACE_HASH_ENGSEL_SHA1HASH : ACE_HASH_ENGSEL_SHA256HASH;
64 reg |= ACE_HASH_STARTBIT_ON;
65 writel(reg, &ace_sha_reg->hash_control);
67 /* Enable FIFO mode */
68 writel(ACE_HASH_FIFO_ON, &ace_sha_reg->hash_fifo_mode);
70 /* Set message length */
71 writel(buf_len, &ace_sha_reg->hash_msgsize_low);
72 writel(0, &ace_sha_reg->hash_msgsize_high);
75 writel((unsigned int)pbuf, &ace_sha_reg->fc_hrdmas);
76 writel(buf_len, &ace_sha_reg->fc_hrdmal);
78 while ((readl(&ace_sha_reg->hash_status) & ACE_HASH_MSGDONE_MASK) ==
79 ACE_HASH_MSGDONE_OFF) {
81 * PRNG error bit goes HIGH if a PRNG request occurs without
82 * a complete seed setup. We are using this bit to check h/w
83 * fault because proper setup is not expected in that case.
85 if ((readl(&ace_sha_reg->hash_status)
86 & ACE_HASH_PRNGERROR_MASK) == ACE_HASH_PRNGERROR_ON)
90 /* Clear MSG_DONE bit */
91 writel(ACE_HASH_MSGDONE_ON, &ace_sha_reg->hash_status);
93 /* Read hash result */
94 pdigest = (unsigned int *)pout;
95 len = (hash_type == ACE_SHA_TYPE_SHA1) ? SHA1_SUM_LEN : SHA256_SUM_LEN;
97 for (i = 0; i < len / 4; i++)
98 pdigest[i] = readl(&ace_sha_reg->hash_result[i]);
100 /* Clear HRDMA pending bit */
101 writel(ACE_FC_HRDMA, &ace_sha_reg->fc_intpend);
106 void hw_sha256(const unsigned char *pbuf, unsigned int buf_len,
107 unsigned char *pout, unsigned int chunk_size)
109 if (ace_sha_hash_digest(pbuf, buf_len, pout, ACE_SHA_TYPE_SHA256))
110 debug("ACE was not setup properly or it is faulty\n");
113 void hw_sha1(const unsigned char *pbuf, unsigned int buf_len,
114 unsigned char *pout, unsigned int chunk_size)
116 if (ace_sha_hash_digest(pbuf, buf_len, pout, ACE_SHA_TYPE_SHA1))
117 debug("ACE was not setup properly or it is faulty\n");
119 #endif /* CONFIG_SHA_HW_ACCEL */
121 #ifdef CONFIG_LIB_HW_RAND
122 static unsigned int seed_done;
124 void srand(unsigned int seed)
126 struct exynos_ace_sfr *reg =
127 (struct exynos_ace_sfr *)samsung_get_base_ace_sfr();
131 for (i = 0; i < ACE_HASH_PRNG_REG_NUM; i++)
132 writel(seed << i, ®->hash_seed[i]);
134 /* Wait for seed setup done */
136 status = readl(®->hash_status);
137 if ((status & ACE_HASH_SEEDSETTING_MASK) ||
138 (status & ACE_HASH_PRNGERROR_MASK))
145 unsigned int rand(void)
147 struct exynos_ace_sfr *reg =
148 (struct exynos_ace_sfr *)samsung_get_base_ace_sfr();
150 unsigned int seed = (unsigned int)&status;
151 unsigned int ret = 0;
157 writel(ACE_HASH_ENGSEL_PRNG | ACE_HASH_STARTBIT_ON, ®->hash_control);
159 /* Wait for PRNG done */
161 status = readl(®->hash_status);
162 if (status & ACE_HASH_PRNGDONE_MASK)
164 if (status & ACE_HASH_PRNGERROR_MASK) {
171 writel(ACE_HASH_PRNGDONE_MASK, ®->hash_status);
173 /* Read a PRNG result */
174 for (i = 0; i < ACE_HASH_PRNG_REG_NUM; i++)
175 ret += readl(®->hash_prng[i]);
181 unsigned int rand_r(unsigned int *seedp)
187 #endif /* CONFIG_LIB_HW_RAND */