18c2ecf20Sopenharmony_ci/* SPDX-License-Identifier: GPL-2.0 */
28c2ecf20Sopenharmony_ci/*
38c2ecf20Sopenharmony_ci * sha512-ce-core.S - core SHA-384/SHA-512 transform using v8 Crypto Extensions
48c2ecf20Sopenharmony_ci *
58c2ecf20Sopenharmony_ci * Copyright (C) 2018 Linaro Ltd <ard.biesheuvel@linaro.org>
68c2ecf20Sopenharmony_ci *
78c2ecf20Sopenharmony_ci * This program is free software; you can redistribute it and/or modify
88c2ecf20Sopenharmony_ci * it under the terms of the GNU General Public License version 2 as
98c2ecf20Sopenharmony_ci * published by the Free Software Foundation.
108c2ecf20Sopenharmony_ci */
118c2ecf20Sopenharmony_ci
128c2ecf20Sopenharmony_ci#include <linux/linkage.h>
138c2ecf20Sopenharmony_ci#include <asm/assembler.h>
148c2ecf20Sopenharmony_ci
158c2ecf20Sopenharmony_ci	.irp		b,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19
168c2ecf20Sopenharmony_ci	.set		.Lq\b, \b
178c2ecf20Sopenharmony_ci	.set		.Lv\b\().2d, \b
188c2ecf20Sopenharmony_ci	.endr
198c2ecf20Sopenharmony_ci
208c2ecf20Sopenharmony_ci	.macro		sha512h, rd, rn, rm
218c2ecf20Sopenharmony_ci	.inst		0xce608000 | .L\rd | (.L\rn << 5) | (.L\rm << 16)
228c2ecf20Sopenharmony_ci	.endm
238c2ecf20Sopenharmony_ci
248c2ecf20Sopenharmony_ci	.macro		sha512h2, rd, rn, rm
258c2ecf20Sopenharmony_ci	.inst		0xce608400 | .L\rd | (.L\rn << 5) | (.L\rm << 16)
268c2ecf20Sopenharmony_ci	.endm
278c2ecf20Sopenharmony_ci
288c2ecf20Sopenharmony_ci	.macro		sha512su0, rd, rn
298c2ecf20Sopenharmony_ci	.inst		0xcec08000 | .L\rd | (.L\rn << 5)
308c2ecf20Sopenharmony_ci	.endm
318c2ecf20Sopenharmony_ci
328c2ecf20Sopenharmony_ci	.macro		sha512su1, rd, rn, rm
338c2ecf20Sopenharmony_ci	.inst		0xce608800 | .L\rd | (.L\rn << 5) | (.L\rm << 16)
348c2ecf20Sopenharmony_ci	.endm
358c2ecf20Sopenharmony_ci
368c2ecf20Sopenharmony_ci	/*
378c2ecf20Sopenharmony_ci	 * The SHA-512 round constants
388c2ecf20Sopenharmony_ci	 */
398c2ecf20Sopenharmony_ci	.section	".rodata", "a"
408c2ecf20Sopenharmony_ci	.align		4
418c2ecf20Sopenharmony_ci.Lsha512_rcon:
428c2ecf20Sopenharmony_ci	.quad		0x428a2f98d728ae22, 0x7137449123ef65cd
438c2ecf20Sopenharmony_ci	.quad		0xb5c0fbcfec4d3b2f, 0xe9b5dba58189dbbc
448c2ecf20Sopenharmony_ci	.quad		0x3956c25bf348b538, 0x59f111f1b605d019
458c2ecf20Sopenharmony_ci	.quad		0x923f82a4af194f9b, 0xab1c5ed5da6d8118
468c2ecf20Sopenharmony_ci	.quad		0xd807aa98a3030242, 0x12835b0145706fbe
478c2ecf20Sopenharmony_ci	.quad		0x243185be4ee4b28c, 0x550c7dc3d5ffb4e2
488c2ecf20Sopenharmony_ci	.quad		0x72be5d74f27b896f, 0x80deb1fe3b1696b1
498c2ecf20Sopenharmony_ci	.quad		0x9bdc06a725c71235, 0xc19bf174cf692694
508c2ecf20Sopenharmony_ci	.quad		0xe49b69c19ef14ad2, 0xefbe4786384f25e3
518c2ecf20Sopenharmony_ci	.quad		0x0fc19dc68b8cd5b5, 0x240ca1cc77ac9c65
528c2ecf20Sopenharmony_ci	.quad		0x2de92c6f592b0275, 0x4a7484aa6ea6e483
538c2ecf20Sopenharmony_ci	.quad		0x5cb0a9dcbd41fbd4, 0x76f988da831153b5
548c2ecf20Sopenharmony_ci	.quad		0x983e5152ee66dfab, 0xa831c66d2db43210
558c2ecf20Sopenharmony_ci	.quad		0xb00327c898fb213f, 0xbf597fc7beef0ee4
568c2ecf20Sopenharmony_ci	.quad		0xc6e00bf33da88fc2, 0xd5a79147930aa725
578c2ecf20Sopenharmony_ci	.quad		0x06ca6351e003826f, 0x142929670a0e6e70
588c2ecf20Sopenharmony_ci	.quad		0x27b70a8546d22ffc, 0x2e1b21385c26c926
598c2ecf20Sopenharmony_ci	.quad		0x4d2c6dfc5ac42aed, 0x53380d139d95b3df
608c2ecf20Sopenharmony_ci	.quad		0x650a73548baf63de, 0x766a0abb3c77b2a8
618c2ecf20Sopenharmony_ci	.quad		0x81c2c92e47edaee6, 0x92722c851482353b
628c2ecf20Sopenharmony_ci	.quad		0xa2bfe8a14cf10364, 0xa81a664bbc423001
638c2ecf20Sopenharmony_ci	.quad		0xc24b8b70d0f89791, 0xc76c51a30654be30
648c2ecf20Sopenharmony_ci	.quad		0xd192e819d6ef5218, 0xd69906245565a910
658c2ecf20Sopenharmony_ci	.quad		0xf40e35855771202a, 0x106aa07032bbd1b8
668c2ecf20Sopenharmony_ci	.quad		0x19a4c116b8d2d0c8, 0x1e376c085141ab53
678c2ecf20Sopenharmony_ci	.quad		0x2748774cdf8eeb99, 0x34b0bcb5e19b48a8
688c2ecf20Sopenharmony_ci	.quad		0x391c0cb3c5c95a63, 0x4ed8aa4ae3418acb
698c2ecf20Sopenharmony_ci	.quad		0x5b9cca4f7763e373, 0x682e6ff3d6b2b8a3
708c2ecf20Sopenharmony_ci	.quad		0x748f82ee5defb2fc, 0x78a5636f43172f60
718c2ecf20Sopenharmony_ci	.quad		0x84c87814a1f0ab72, 0x8cc702081a6439ec
728c2ecf20Sopenharmony_ci	.quad		0x90befffa23631e28, 0xa4506cebde82bde9
738c2ecf20Sopenharmony_ci	.quad		0xbef9a3f7b2c67915, 0xc67178f2e372532b
748c2ecf20Sopenharmony_ci	.quad		0xca273eceea26619c, 0xd186b8c721c0c207
758c2ecf20Sopenharmony_ci	.quad		0xeada7dd6cde0eb1e, 0xf57d4f7fee6ed178
768c2ecf20Sopenharmony_ci	.quad		0x06f067aa72176fba, 0x0a637dc5a2c898a6
778c2ecf20Sopenharmony_ci	.quad		0x113f9804bef90dae, 0x1b710b35131c471b
788c2ecf20Sopenharmony_ci	.quad		0x28db77f523047d84, 0x32caab7b40c72493
798c2ecf20Sopenharmony_ci	.quad		0x3c9ebe0a15c9bebc, 0x431d67c49c100d4c
808c2ecf20Sopenharmony_ci	.quad		0x4cc5d4becb3e42b6, 0x597f299cfc657e2a
818c2ecf20Sopenharmony_ci	.quad		0x5fcb6fab3ad6faec, 0x6c44198c4a475817
828c2ecf20Sopenharmony_ci
838c2ecf20Sopenharmony_ci	.macro		dround, i0, i1, i2, i3, i4, rc0, rc1, in0, in1, in2, in3, in4
848c2ecf20Sopenharmony_ci	.ifnb		\rc1
858c2ecf20Sopenharmony_ci	ld1		{v\rc1\().2d}, [x4], #16
868c2ecf20Sopenharmony_ci	.endif
878c2ecf20Sopenharmony_ci	add		v5.2d, v\rc0\().2d, v\in0\().2d
888c2ecf20Sopenharmony_ci	ext		v6.16b, v\i2\().16b, v\i3\().16b, #8
898c2ecf20Sopenharmony_ci	ext		v5.16b, v5.16b, v5.16b, #8
908c2ecf20Sopenharmony_ci	ext		v7.16b, v\i1\().16b, v\i2\().16b, #8
918c2ecf20Sopenharmony_ci	add		v\i3\().2d, v\i3\().2d, v5.2d
928c2ecf20Sopenharmony_ci	.ifnb		\in1
938c2ecf20Sopenharmony_ci	ext		v5.16b, v\in3\().16b, v\in4\().16b, #8
948c2ecf20Sopenharmony_ci	sha512su0	v\in0\().2d, v\in1\().2d
958c2ecf20Sopenharmony_ci	.endif
968c2ecf20Sopenharmony_ci	sha512h		q\i3, q6, v7.2d
978c2ecf20Sopenharmony_ci	.ifnb		\in1
988c2ecf20Sopenharmony_ci	sha512su1	v\in0\().2d, v\in2\().2d, v5.2d
998c2ecf20Sopenharmony_ci	.endif
1008c2ecf20Sopenharmony_ci	add		v\i4\().2d, v\i1\().2d, v\i3\().2d
1018c2ecf20Sopenharmony_ci	sha512h2	q\i3, q\i1, v\i0\().2d
1028c2ecf20Sopenharmony_ci	.endm
1038c2ecf20Sopenharmony_ci
1048c2ecf20Sopenharmony_ci	/*
1058c2ecf20Sopenharmony_ci	 * void sha512_ce_transform(struct sha512_state *sst, u8 const *src,
1068c2ecf20Sopenharmony_ci	 *			  int blocks)
1078c2ecf20Sopenharmony_ci	 */
1088c2ecf20Sopenharmony_ci	.text
1098c2ecf20Sopenharmony_ciSYM_FUNC_START(sha512_ce_transform)
1108c2ecf20Sopenharmony_ci	/* load state */
1118c2ecf20Sopenharmony_ci	ld1		{v8.2d-v11.2d}, [x0]
1128c2ecf20Sopenharmony_ci
1138c2ecf20Sopenharmony_ci	/* load first 4 round constants */
1148c2ecf20Sopenharmony_ci	adr_l		x3, .Lsha512_rcon
1158c2ecf20Sopenharmony_ci	ld1		{v20.2d-v23.2d}, [x3], #64
1168c2ecf20Sopenharmony_ci
1178c2ecf20Sopenharmony_ci	/* load input */
1188c2ecf20Sopenharmony_ci0:	ld1		{v12.2d-v15.2d}, [x1], #64
1198c2ecf20Sopenharmony_ci	ld1		{v16.2d-v19.2d}, [x1], #64
1208c2ecf20Sopenharmony_ci	sub		w2, w2, #1
1218c2ecf20Sopenharmony_ci
1228c2ecf20Sopenharmony_ciCPU_LE(	rev64		v12.16b, v12.16b	)
1238c2ecf20Sopenharmony_ciCPU_LE(	rev64		v13.16b, v13.16b	)
1248c2ecf20Sopenharmony_ciCPU_LE(	rev64		v14.16b, v14.16b	)
1258c2ecf20Sopenharmony_ciCPU_LE(	rev64		v15.16b, v15.16b	)
1268c2ecf20Sopenharmony_ciCPU_LE(	rev64		v16.16b, v16.16b	)
1278c2ecf20Sopenharmony_ciCPU_LE(	rev64		v17.16b, v17.16b	)
1288c2ecf20Sopenharmony_ciCPU_LE(	rev64		v18.16b, v18.16b	)
1298c2ecf20Sopenharmony_ciCPU_LE(	rev64		v19.16b, v19.16b	)
1308c2ecf20Sopenharmony_ci
1318c2ecf20Sopenharmony_ci	mov		x4, x3				// rc pointer
1328c2ecf20Sopenharmony_ci
1338c2ecf20Sopenharmony_ci	mov		v0.16b, v8.16b
1348c2ecf20Sopenharmony_ci	mov		v1.16b, v9.16b
1358c2ecf20Sopenharmony_ci	mov		v2.16b, v10.16b
1368c2ecf20Sopenharmony_ci	mov		v3.16b, v11.16b
1378c2ecf20Sopenharmony_ci
1388c2ecf20Sopenharmony_ci	// v0  ab  cd  --  ef  gh  ab
1398c2ecf20Sopenharmony_ci	// v1  cd  --  ef  gh  ab  cd
1408c2ecf20Sopenharmony_ci	// v2  ef  gh  ab  cd  --  ef
1418c2ecf20Sopenharmony_ci	// v3  gh  ab  cd  --  ef  gh
1428c2ecf20Sopenharmony_ci	// v4  --  ef  gh  ab  cd  --
1438c2ecf20Sopenharmony_ci
1448c2ecf20Sopenharmony_ci	dround		0, 1, 2, 3, 4, 20, 24, 12, 13, 19, 16, 17
1458c2ecf20Sopenharmony_ci	dround		3, 0, 4, 2, 1, 21, 25, 13, 14, 12, 17, 18
1468c2ecf20Sopenharmony_ci	dround		2, 3, 1, 4, 0, 22, 26, 14, 15, 13, 18, 19
1478c2ecf20Sopenharmony_ci	dround		4, 2, 0, 1, 3, 23, 27, 15, 16, 14, 19, 12
1488c2ecf20Sopenharmony_ci	dround		1, 4, 3, 0, 2, 24, 28, 16, 17, 15, 12, 13
1498c2ecf20Sopenharmony_ci
1508c2ecf20Sopenharmony_ci	dround		0, 1, 2, 3, 4, 25, 29, 17, 18, 16, 13, 14
1518c2ecf20Sopenharmony_ci	dround		3, 0, 4, 2, 1, 26, 30, 18, 19, 17, 14, 15
1528c2ecf20Sopenharmony_ci	dround		2, 3, 1, 4, 0, 27, 31, 19, 12, 18, 15, 16
1538c2ecf20Sopenharmony_ci	dround		4, 2, 0, 1, 3, 28, 24, 12, 13, 19, 16, 17
1548c2ecf20Sopenharmony_ci	dround		1, 4, 3, 0, 2, 29, 25, 13, 14, 12, 17, 18
1558c2ecf20Sopenharmony_ci
1568c2ecf20Sopenharmony_ci	dround		0, 1, 2, 3, 4, 30, 26, 14, 15, 13, 18, 19
1578c2ecf20Sopenharmony_ci	dround		3, 0, 4, 2, 1, 31, 27, 15, 16, 14, 19, 12
1588c2ecf20Sopenharmony_ci	dround		2, 3, 1, 4, 0, 24, 28, 16, 17, 15, 12, 13
1598c2ecf20Sopenharmony_ci	dround		4, 2, 0, 1, 3, 25, 29, 17, 18, 16, 13, 14
1608c2ecf20Sopenharmony_ci	dround		1, 4, 3, 0, 2, 26, 30, 18, 19, 17, 14, 15
1618c2ecf20Sopenharmony_ci
1628c2ecf20Sopenharmony_ci	dround		0, 1, 2, 3, 4, 27, 31, 19, 12, 18, 15, 16
1638c2ecf20Sopenharmony_ci	dround		3, 0, 4, 2, 1, 28, 24, 12, 13, 19, 16, 17
1648c2ecf20Sopenharmony_ci	dround		2, 3, 1, 4, 0, 29, 25, 13, 14, 12, 17, 18
1658c2ecf20Sopenharmony_ci	dround		4, 2, 0, 1, 3, 30, 26, 14, 15, 13, 18, 19
1668c2ecf20Sopenharmony_ci	dround		1, 4, 3, 0, 2, 31, 27, 15, 16, 14, 19, 12
1678c2ecf20Sopenharmony_ci
1688c2ecf20Sopenharmony_ci	dround		0, 1, 2, 3, 4, 24, 28, 16, 17, 15, 12, 13
1698c2ecf20Sopenharmony_ci	dround		3, 0, 4, 2, 1, 25, 29, 17, 18, 16, 13, 14
1708c2ecf20Sopenharmony_ci	dround		2, 3, 1, 4, 0, 26, 30, 18, 19, 17, 14, 15
1718c2ecf20Sopenharmony_ci	dround		4, 2, 0, 1, 3, 27, 31, 19, 12, 18, 15, 16
1728c2ecf20Sopenharmony_ci	dround		1, 4, 3, 0, 2, 28, 24, 12, 13, 19, 16, 17
1738c2ecf20Sopenharmony_ci
1748c2ecf20Sopenharmony_ci	dround		0, 1, 2, 3, 4, 29, 25, 13, 14, 12, 17, 18
1758c2ecf20Sopenharmony_ci	dround		3, 0, 4, 2, 1, 30, 26, 14, 15, 13, 18, 19
1768c2ecf20Sopenharmony_ci	dround		2, 3, 1, 4, 0, 31, 27, 15, 16, 14, 19, 12
1778c2ecf20Sopenharmony_ci	dround		4, 2, 0, 1, 3, 24, 28, 16, 17, 15, 12, 13
1788c2ecf20Sopenharmony_ci	dround		1, 4, 3, 0, 2, 25, 29, 17, 18, 16, 13, 14
1798c2ecf20Sopenharmony_ci
1808c2ecf20Sopenharmony_ci	dround		0, 1, 2, 3, 4, 26, 30, 18, 19, 17, 14, 15
1818c2ecf20Sopenharmony_ci	dround		3, 0, 4, 2, 1, 27, 31, 19, 12, 18, 15, 16
1828c2ecf20Sopenharmony_ci	dround		2, 3, 1, 4, 0, 28, 24, 12
1838c2ecf20Sopenharmony_ci	dround		4, 2, 0, 1, 3, 29, 25, 13
1848c2ecf20Sopenharmony_ci	dround		1, 4, 3, 0, 2, 30, 26, 14
1858c2ecf20Sopenharmony_ci
1868c2ecf20Sopenharmony_ci	dround		0, 1, 2, 3, 4, 31, 27, 15
1878c2ecf20Sopenharmony_ci	dround		3, 0, 4, 2, 1, 24,   , 16
1888c2ecf20Sopenharmony_ci	dround		2, 3, 1, 4, 0, 25,   , 17
1898c2ecf20Sopenharmony_ci	dround		4, 2, 0, 1, 3, 26,   , 18
1908c2ecf20Sopenharmony_ci	dround		1, 4, 3, 0, 2, 27,   , 19
1918c2ecf20Sopenharmony_ci
1928c2ecf20Sopenharmony_ci	/* update state */
1938c2ecf20Sopenharmony_ci	add		v8.2d, v8.2d, v0.2d
1948c2ecf20Sopenharmony_ci	add		v9.2d, v9.2d, v1.2d
1958c2ecf20Sopenharmony_ci	add		v10.2d, v10.2d, v2.2d
1968c2ecf20Sopenharmony_ci	add		v11.2d, v11.2d, v3.2d
1978c2ecf20Sopenharmony_ci
1988c2ecf20Sopenharmony_ci	cond_yield	3f, x4, x5
1998c2ecf20Sopenharmony_ci	/* handled all input blocks? */
2008c2ecf20Sopenharmony_ci	cbnz		w2, 0b
2018c2ecf20Sopenharmony_ci
2028c2ecf20Sopenharmony_ci	/* store new state */
2038c2ecf20Sopenharmony_ci3:	st1		{v8.2d-v11.2d}, [x0]
2048c2ecf20Sopenharmony_ci	mov		w0, w2
2058c2ecf20Sopenharmony_ci	ret
2068c2ecf20Sopenharmony_ciSYM_FUNC_END(sha512_ce_transform)
207