mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-07-31 06:13:53 -06:00

Added "key" and "key_hi" fields to "AspeedMasks" for 64-bit addresses test. Updated "aspeed_test_addresses" to validate "HACE_HASH_KEY_BUFF" and "HACE_HASH_KEY_BUFF_HI". Ensured correct masking of 64-bit addresses by checking both lower and upper 32-bit registers. Signed-off-by: Jamin Lin <jamin_lin@aspeedtech.com> Reviewed-by: Cédric Le Goater <clg@redhat.com> Acked-by: Fabiano Rosas <farosas@suse.de> Link: https://lore.kernel.org/qemu-devel/20250515081008.583578-28-jamin_lin@aspeedtech.com Signed-off-by: Cédric Le Goater <clg@redhat.com>
238 lines
6.5 KiB
C
238 lines
6.5 KiB
C
/*
|
|
* QTest testcase for the ASPEED Hash and Crypto Engine
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0-or-later
|
|
* Copyright 2021 IBM Corp.
|
|
*/
|
|
|
|
#include "qemu/osdep.h"
|
|
#include "libqtest.h"
|
|
#include "qemu/bitops.h"
|
|
#include "aspeed-hace-utils.h"
|
|
|
|
static const struct AspeedMasks ast1030_masks = {
|
|
.src = 0x7fffffff,
|
|
.dest = 0x7ffffff8,
|
|
.key = 0x7ffffff8,
|
|
.len = 0x0fffffff,
|
|
};
|
|
|
|
static const struct AspeedMasks ast2600_masks = {
|
|
.src = 0x7fffffff,
|
|
.dest = 0x7ffffff8,
|
|
.key = 0x7ffffff8,
|
|
.len = 0x0fffffff,
|
|
};
|
|
|
|
static const struct AspeedMasks ast2500_masks = {
|
|
.src = 0x3fffffff,
|
|
.dest = 0x3ffffff8,
|
|
.key = 0x3fffffc0,
|
|
.len = 0x0fffffff,
|
|
};
|
|
|
|
static const struct AspeedMasks ast2400_masks = {
|
|
.src = 0x0fffffff,
|
|
.dest = 0x0ffffff8,
|
|
.key = 0x0fffffc0,
|
|
.len = 0x0fffffff,
|
|
};
|
|
|
|
/* ast1030 */
|
|
static void test_md5_ast1030(void)
|
|
{
|
|
aspeed_test_md5("-machine ast1030-evb", 0x7e6d0000, 0x00000000);
|
|
}
|
|
|
|
static void test_sha256_ast1030(void)
|
|
{
|
|
aspeed_test_sha256("-machine ast1030-evb", 0x7e6d0000, 0x00000000);
|
|
}
|
|
|
|
static void test_sha256_sg_ast1030(void)
|
|
{
|
|
aspeed_test_sha256_sg("-machine ast1030-evb", 0x7e6d0000, 0x00000000);
|
|
}
|
|
|
|
static void test_sha384_ast1030(void)
|
|
{
|
|
aspeed_test_sha384("-machine ast1030-evb", 0x7e6d0000, 0x00000000);
|
|
}
|
|
|
|
static void test_sha384_sg_ast1030(void)
|
|
{
|
|
aspeed_test_sha384_sg("-machine ast1030-evb", 0x7e6d0000, 0x00000000);
|
|
}
|
|
|
|
static void test_sha512_ast1030(void)
|
|
{
|
|
aspeed_test_sha512("-machine ast1030-evb", 0x7e6d0000, 0x00000000);
|
|
}
|
|
|
|
static void test_sha512_sg_ast1030(void)
|
|
{
|
|
aspeed_test_sha512_sg("-machine ast1030-evb", 0x7e6d0000, 0x00000000);
|
|
}
|
|
|
|
static void test_sha256_accum_ast1030(void)
|
|
{
|
|
aspeed_test_sha256_accum("-machine ast1030-evb", 0x7e6d0000, 0x00000000);
|
|
}
|
|
|
|
static void test_sha384_accum_ast1030(void)
|
|
{
|
|
aspeed_test_sha384_accum("-machine ast1030-evb", 0x7e6d0000, 0x00000000);
|
|
}
|
|
|
|
static void test_sha512_accum_ast1030(void)
|
|
{
|
|
aspeed_test_sha512_accum("-machine ast1030-evb", 0x7e6d0000, 0x00000000);
|
|
}
|
|
|
|
static void test_addresses_ast1030(void)
|
|
{
|
|
aspeed_test_addresses("-machine ast1030-evb", 0x7e6d0000, &ast1030_masks);
|
|
}
|
|
|
|
/* ast2600 */
|
|
static void test_md5_ast2600(void)
|
|
{
|
|
aspeed_test_md5("-machine ast2600-evb", 0x1e6d0000, 0x80000000);
|
|
}
|
|
|
|
static void test_sha256_ast2600(void)
|
|
{
|
|
aspeed_test_sha256("-machine ast2600-evb", 0x1e6d0000, 0x80000000);
|
|
}
|
|
|
|
static void test_sha256_sg_ast2600(void)
|
|
{
|
|
aspeed_test_sha256_sg("-machine ast2600-evb", 0x1e6d0000, 0x80000000);
|
|
}
|
|
|
|
static void test_sha384_ast2600(void)
|
|
{
|
|
aspeed_test_sha384("-machine ast2600-evb", 0x1e6d0000, 0x80000000);
|
|
}
|
|
|
|
static void test_sha384_sg_ast2600(void)
|
|
{
|
|
aspeed_test_sha384_sg("-machine ast2600-evb", 0x1e6d0000, 0x80000000);
|
|
}
|
|
|
|
static void test_sha512_ast2600(void)
|
|
{
|
|
aspeed_test_sha512("-machine ast2600-evb", 0x1e6d0000, 0x80000000);
|
|
}
|
|
|
|
static void test_sha512_sg_ast2600(void)
|
|
{
|
|
aspeed_test_sha512_sg("-machine ast2600-evb", 0x1e6d0000, 0x80000000);
|
|
}
|
|
|
|
static void test_sha256_accum_ast2600(void)
|
|
{
|
|
aspeed_test_sha256_accum("-machine ast2600-evb", 0x1e6d0000, 0x80000000);
|
|
}
|
|
|
|
static void test_sha384_accum_ast2600(void)
|
|
{
|
|
aspeed_test_sha384_accum("-machine ast2600-evb", 0x1e6d0000, 0x80000000);
|
|
}
|
|
|
|
static void test_sha512_accum_ast2600(void)
|
|
{
|
|
aspeed_test_sha512_accum("-machine ast2600-evb", 0x1e6d0000, 0x80000000);
|
|
}
|
|
|
|
static void test_addresses_ast2600(void)
|
|
{
|
|
aspeed_test_addresses("-machine ast2600-evb", 0x1e6d0000, &ast2600_masks);
|
|
}
|
|
|
|
/* ast2500 */
|
|
static void test_md5_ast2500(void)
|
|
{
|
|
aspeed_test_md5("-machine ast2500-evb", 0x1e6e3000, 0x80000000);
|
|
}
|
|
|
|
static void test_sha256_ast2500(void)
|
|
{
|
|
aspeed_test_sha256("-machine ast2500-evb", 0x1e6e3000, 0x80000000);
|
|
}
|
|
|
|
static void test_sha512_ast2500(void)
|
|
{
|
|
aspeed_test_sha512("-machine ast2500-evb", 0x1e6e3000, 0x80000000);
|
|
}
|
|
|
|
static void test_addresses_ast2500(void)
|
|
{
|
|
aspeed_test_addresses("-machine ast2500-evb", 0x1e6e3000, &ast2500_masks);
|
|
}
|
|
|
|
/* ast2400 */
|
|
static void test_md5_ast2400(void)
|
|
{
|
|
aspeed_test_md5("-machine palmetto-bmc", 0x1e6e3000, 0x40000000);
|
|
}
|
|
|
|
static void test_sha256_ast2400(void)
|
|
{
|
|
aspeed_test_sha256("-machine palmetto-bmc", 0x1e6e3000, 0x40000000);
|
|
}
|
|
|
|
static void test_sha512_ast2400(void)
|
|
{
|
|
aspeed_test_sha512("-machine palmetto-bmc", 0x1e6e3000, 0x40000000);
|
|
}
|
|
|
|
static void test_addresses_ast2400(void)
|
|
{
|
|
aspeed_test_addresses("-machine palmetto-bmc", 0x1e6e3000, &ast2400_masks);
|
|
}
|
|
|
|
int main(int argc, char **argv)
|
|
{
|
|
g_test_init(&argc, &argv, NULL);
|
|
|
|
qtest_add_func("ast1030/hace/addresses", test_addresses_ast1030);
|
|
qtest_add_func("ast1030/hace/sha512", test_sha512_ast1030);
|
|
qtest_add_func("ast1030/hace/sha384", test_sha384_ast1030);
|
|
qtest_add_func("ast1030/hace/sha256", test_sha256_ast1030);
|
|
qtest_add_func("ast1030/hace/md5", test_md5_ast1030);
|
|
|
|
qtest_add_func("ast1030/hace/sha512_sg", test_sha512_sg_ast1030);
|
|
qtest_add_func("ast1030/hace/sha384_sg", test_sha384_sg_ast1030);
|
|
qtest_add_func("ast1030/hace/sha256_sg", test_sha256_sg_ast1030);
|
|
|
|
qtest_add_func("ast1030/hace/sha512_accum", test_sha512_accum_ast1030);
|
|
qtest_add_func("ast1030/hace/sha384_accum", test_sha384_accum_ast1030);
|
|
qtest_add_func("ast1030/hace/sha256_accum", test_sha256_accum_ast1030);
|
|
|
|
qtest_add_func("ast2600/hace/addresses", test_addresses_ast2600);
|
|
qtest_add_func("ast2600/hace/sha512", test_sha512_ast2600);
|
|
qtest_add_func("ast2600/hace/sha384", test_sha384_ast2600);
|
|
qtest_add_func("ast2600/hace/sha256", test_sha256_ast2600);
|
|
qtest_add_func("ast2600/hace/md5", test_md5_ast2600);
|
|
|
|
qtest_add_func("ast2600/hace/sha512_sg", test_sha512_sg_ast2600);
|
|
qtest_add_func("ast2600/hace/sha384_sg", test_sha384_sg_ast2600);
|
|
qtest_add_func("ast2600/hace/sha256_sg", test_sha256_sg_ast2600);
|
|
|
|
qtest_add_func("ast2600/hace/sha512_accum", test_sha512_accum_ast2600);
|
|
qtest_add_func("ast2600/hace/sha384_accum", test_sha384_accum_ast2600);
|
|
qtest_add_func("ast2600/hace/sha256_accum", test_sha256_accum_ast2600);
|
|
|
|
qtest_add_func("ast2500/hace/addresses", test_addresses_ast2500);
|
|
qtest_add_func("ast2500/hace/sha512", test_sha512_ast2500);
|
|
qtest_add_func("ast2500/hace/sha256", test_sha256_ast2500);
|
|
qtest_add_func("ast2500/hace/md5", test_md5_ast2500);
|
|
|
|
qtest_add_func("ast2400/hace/addresses", test_addresses_ast2400);
|
|
qtest_add_func("ast2400/hace/sha512", test_sha512_ast2400);
|
|
qtest_add_func("ast2400/hace/sha256", test_sha256_ast2400);
|
|
qtest_add_func("ast2400/hace/md5", test_md5_ast2400);
|
|
|
|
return g_test_run();
|
|
}
|