[PATCH v1 17/22] test/qtest/hace: Add tests for AST1030

Jamin Lin via posted 22 patches 10 months, 3 weeks ago
There is a newer version of this series
[PATCH v1 17/22] test/qtest/hace: Add tests for AST1030
Posted by Jamin Lin via 10 months, 3 weeks ago
The HACE model in AST2600 and AST1030 is identical. Referencing the AST2600
test cases, new tests have been created for AST1030.

Implemented test functions for SHA-256, SHA-384, SHA-512, and MD5.
Added scatter-gather and accumulation test variants.
For AST1030, the HACE controller base address starts at "0x7e6d0000", and the
SDRAM start address is "0x0".

Signed-off-by: Jamin Lin <jamin_lin@aspeedtech.com>
---
 tests/qtest/aspeed_hace-test.c | 76 ++++++++++++++++++++++++++++++++++
 1 file changed, 76 insertions(+)

diff --git a/tests/qtest/aspeed_hace-test.c b/tests/qtest/aspeed_hace-test.c
index ab0c98330e..31890d574e 100644
--- a/tests/qtest/aspeed_hace-test.c
+++ b/tests/qtest/aspeed_hace-test.c
@@ -10,6 +10,12 @@
 #include "qemu/bitops.h"
 #include "aspeed-hace-utils.h"
 
+static const struct AspeedMasks ast1030_masks = {
+    .src  = 0x7fffffff,
+    .dest = 0x7ffffff8,
+    .len  = 0x0fffffff,
+};
+
 static const struct AspeedMasks ast2600_masks = {
     .src  = 0x7fffffff,
     .dest = 0x7ffffff8,
@@ -28,6 +34,62 @@ static const struct AspeedMasks ast2400_masks = {
     .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)
 {
@@ -130,6 +192,20 @@ 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);
-- 
2.43.0
Re: [PATCH v1 17/22] test/qtest/hace: Add tests for AST1030
Posted by Cédric Le Goater 10 months, 1 week ago
On 3/21/25 10:26, Jamin Lin wrote:
> The HACE model in AST2600 and AST1030 is identical. Referencing the AST2600
> test cases, new tests have been created for AST1030.
> 
> Implemented test functions for SHA-256, SHA-384, SHA-512, and MD5.
> Added scatter-gather and accumulation test variants.
> For AST1030, the HACE controller base address starts at "0x7e6d0000", and the
> SDRAM start address is "0x0".
> 
> Signed-off-by: Jamin Lin <jamin_lin@aspeedtech.com>


Reviewed-by: Cédric Le Goater <clg@redhat.com>

Thanks,

C.


> ---
>   tests/qtest/aspeed_hace-test.c | 76 ++++++++++++++++++++++++++++++++++
>   1 file changed, 76 insertions(+)
> 
> diff --git a/tests/qtest/aspeed_hace-test.c b/tests/qtest/aspeed_hace-test.c
> index ab0c98330e..31890d574e 100644
> --- a/tests/qtest/aspeed_hace-test.c
> +++ b/tests/qtest/aspeed_hace-test.c
> @@ -10,6 +10,12 @@
>   #include "qemu/bitops.h"
>   #include "aspeed-hace-utils.h"
>   
> +static const struct AspeedMasks ast1030_masks = {
> +    .src  = 0x7fffffff,
> +    .dest = 0x7ffffff8,
> +    .len  = 0x0fffffff,
> +};
> +
>   static const struct AspeedMasks ast2600_masks = {
>       .src  = 0x7fffffff,
>       .dest = 0x7ffffff8,
> @@ -28,6 +34,62 @@ static const struct AspeedMasks ast2400_masks = {
>       .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)
>   {
> @@ -130,6 +192,20 @@ 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);