* [kvm-unit-tests PATCH 1/4] riscv: sbi: dbcn: Output return values
2024-08-12 14:13 [kvm-unit-tests PATCH 0/4] riscv: sbi: More DBCN tests Andrew Jones
@ 2024-08-12 14:13 ` Andrew Jones
2024-08-12 14:13 ` [kvm-unit-tests PATCH 2/4] riscv: sbi: Use strtoul to avoid overflow Andrew Jones
` (3 subsequent siblings)
4 siblings, 0 replies; 6+ messages in thread
From: Andrew Jones @ 2024-08-12 14:13 UTC (permalink / raw)
To: kvm, kvm-riscv; +Cc: atishp, cade.richard, jamestiotio
When a test fails its nice to be able to see exactly what error code
it failed with in order to immediately start debug.
Signed-off-by: Andrew Jones <andrew.jones@linux.dev>
---
riscv/sbi.c | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/riscv/sbi.c b/riscv/sbi.c
index 93a79d8095f5..2393929b965d 100644
--- a/riscv/sbi.c
+++ b/riscv/sbi.c
@@ -299,7 +299,7 @@ static void check_dbcn(void)
num_calls++;
} while (num_bytes != 0 && ret.error == SBI_SUCCESS);
- report(ret.error == SBI_SUCCESS, "write success");
+ report(ret.error == SBI_SUCCESS, "write success (error=%ld)", ret.error);
report_info("%d sbi calls made", num_calls);
/* Bytes are read from memory and written to the console */
@@ -307,7 +307,7 @@ static void check_dbcn(void)
paddr = strtoull(getenv("INVALID_ADDR"), NULL, 0);
split_phys_addr(paddr, &base_addr_hi, &base_addr_lo);
ret = __dbcn_sbi_ecall(SBI_EXT_DBCN_CONSOLE_WRITE, 1, base_addr_lo, base_addr_hi);
- report(ret.error == SBI_ERR_INVALID_PARAM, "invalid parameter: address");
+ report(ret.error == SBI_ERR_INVALID_PARAM, "invalid parameter: address (error=%ld)", ret.error);
}
report_prefix_pop();
@@ -317,8 +317,8 @@ static void check_dbcn(void)
puts("DBCN_WRITE TEST CHAR: ");
ret = __dbcn_sbi_ecall(SBI_EXT_DBCN_CONSOLE_WRITE_BYTE, (u8)DBCN_WRITE_BYTE_TEST_BYTE, 0, 0);
puts("\n");
- report(ret.error == SBI_SUCCESS, "write success");
- report(ret.value == 0, "expected ret.value");
+ report(ret.error == SBI_SUCCESS, "write success (error=%ld)", ret.error);
+ report(ret.value == 0, "expected ret.value (%ld)", ret.value);
report_prefix_pop();
}
--
2.45.2
^ permalink raw reply related [flat|nested] 6+ messages in thread* [kvm-unit-tests PATCH 2/4] riscv: sbi: Use strtoul to avoid overflow
2024-08-12 14:13 [kvm-unit-tests PATCH 0/4] riscv: sbi: More DBCN tests Andrew Jones
2024-08-12 14:13 ` [kvm-unit-tests PATCH 1/4] riscv: sbi: dbcn: Output return values Andrew Jones
@ 2024-08-12 14:13 ` Andrew Jones
2024-08-12 14:13 ` [kvm-unit-tests PATCH 3/4] riscv: sbi: Prefix several environment variables with SBI Andrew Jones
` (2 subsequent siblings)
4 siblings, 0 replies; 6+ messages in thread
From: Andrew Jones @ 2024-08-12 14:13 UTC (permalink / raw)
To: kvm, kvm-riscv; +Cc: atishp, cade.richard, jamestiotio
We want to compare the expected values provided by environment
variables with signed long results, but we should parse those
values as unsigned as they may actually represent unsigned
numbers with the MSB set, and, if that's the case, then strtol
will assert when detecting the signed value overflow.
Signed-off-by: Andrew Jones <andrew.jones@linux.dev>
---
riscv/sbi.c | 15 ++++++++-------
1 file changed, 8 insertions(+), 7 deletions(-)
diff --git a/riscv/sbi.c b/riscv/sbi.c
index 2393929b965d..7b63a97deda6 100644
--- a/riscv/sbi.c
+++ b/riscv/sbi.c
@@ -85,14 +85,14 @@ static void check_base(void)
report_prefix_push("spec_version");
if (env_or_skip("SPEC_VERSION")) {
- expected = strtol(getenv("SPEC_VERSION"), NULL, 0);
+ expected = (long)strtoul(getenv("SPEC_VERSION"), NULL, 0);
gen_report(&ret, 0, expected);
}
report_prefix_pop();
report_prefix_push("impl_id");
if (env_or_skip("IMPL_ID")) {
- expected = strtol(getenv("IMPL_ID"), NULL, 0);
+ expected = (long)strtoul(getenv("IMPL_ID"), NULL, 0);
ret = __base_sbi_ecall(SBI_EXT_BASE_GET_IMP_ID, 0);
gen_report(&ret, 0, expected);
}
@@ -100,14 +100,14 @@ static void check_base(void)
report_prefix_push("impl_version");
if (env_or_skip("IMPL_VERSION")) {
- expected = strtol(getenv("IMPL_VERSION"), NULL, 0);
+ expected = (long)strtoul(getenv("IMPL_VERSION"), NULL, 0);
ret = __base_sbi_ecall(SBI_EXT_BASE_GET_IMP_VERSION, 0);
gen_report(&ret, 0, expected);
}
report_prefix_pop();
report_prefix_push("probe_ext");
- expected = getenv("PROBE_EXT") ? strtol(getenv("PROBE_EXT"), NULL, 0) : 1;
+ expected = getenv("PROBE_EXT") ? (long)strtoul(getenv("PROBE_EXT"), NULL, 0) : 1;
ret = __base_sbi_ecall(SBI_EXT_BASE_PROBE_EXT, SBI_EXT_BASE);
gen_report(&ret, 0, expected);
report_prefix_push("unavailable");
@@ -118,7 +118,8 @@ static void check_base(void)
report_prefix_push("mvendorid");
if (env_or_skip("MVENDORID")) {
- expected = strtol(getenv("MVENDORID"), NULL, 0);
+ expected = (long)strtoul(getenv("MVENDORID"), NULL, 0);
+ assert(__riscv_xlen == 32 || !(expected >> 32));
ret = __base_sbi_ecall(SBI_EXT_BASE_GET_MVENDORID, 0);
gen_report(&ret, 0, expected);
}
@@ -126,7 +127,7 @@ static void check_base(void)
report_prefix_push("marchid");
if (env_or_skip("MARCHID")) {
- expected = strtol(getenv("MARCHID"), NULL, 0);
+ expected = (long)strtoul(getenv("MARCHID"), NULL, 0);
ret = __base_sbi_ecall(SBI_EXT_BASE_GET_MARCHID, 0);
gen_report(&ret, 0, expected);
}
@@ -134,7 +135,7 @@ static void check_base(void)
report_prefix_push("mimpid");
if (env_or_skip("MIMPID")) {
- expected = strtol(getenv("MIMPID"), NULL, 0);
+ expected = (long)strtoul(getenv("MIMPID"), NULL, 0);
ret = __base_sbi_ecall(SBI_EXT_BASE_GET_MIMPID, 0);
gen_report(&ret, 0, expected);
}
--
2.45.2
^ permalink raw reply related [flat|nested] 6+ messages in thread* [kvm-unit-tests PATCH 3/4] riscv: sbi: Prefix several environment variables with SBI
2024-08-12 14:13 [kvm-unit-tests PATCH 0/4] riscv: sbi: More DBCN tests Andrew Jones
2024-08-12 14:13 ` [kvm-unit-tests PATCH 1/4] riscv: sbi: dbcn: Output return values Andrew Jones
2024-08-12 14:13 ` [kvm-unit-tests PATCH 2/4] riscv: sbi: Use strtoul to avoid overflow Andrew Jones
@ 2024-08-12 14:13 ` Andrew Jones
2024-08-12 14:13 ` [kvm-unit-tests PATCH 4/4] riscv: sbi: dbcn: Add high address tests Andrew Jones
2024-08-12 14:18 ` [kvm-unit-tests PATCH 0/4] riscv: sbi: More DBCN tests Andrew Jones
4 siblings, 0 replies; 6+ messages in thread
From: Andrew Jones @ 2024-08-12 14:13 UTC (permalink / raw)
To: kvm, kvm-riscv; +Cc: atishp, cade.richard, jamestiotio
Unit tests will likely share the environ so prefix variables that
are specific to specific tests to avoid polluting the name space.
We don't prefix generic stuff since they could be used by any test.
Signed-off-by: Andrew Jones <andrew.jones@linux.dev>
---
riscv/sbi.c | 18 +++++++++---------
1 file changed, 9 insertions(+), 9 deletions(-)
diff --git a/riscv/sbi.c b/riscv/sbi.c
index 7b63a97deda6..3f7ca6a78cfc 100644
--- a/riscv/sbi.c
+++ b/riscv/sbi.c
@@ -84,30 +84,30 @@ static void check_base(void)
}
report_prefix_push("spec_version");
- if (env_or_skip("SPEC_VERSION")) {
- expected = (long)strtoul(getenv("SPEC_VERSION"), NULL, 0);
+ if (env_or_skip("SBI_SPEC_VERSION")) {
+ expected = (long)strtoul(getenv("SBI_SPEC_VERSION"), NULL, 0);
gen_report(&ret, 0, expected);
}
report_prefix_pop();
report_prefix_push("impl_id");
- if (env_or_skip("IMPL_ID")) {
- expected = (long)strtoul(getenv("IMPL_ID"), NULL, 0);
+ if (env_or_skip("SBI_IMPL_ID")) {
+ expected = (long)strtoul(getenv("SBI_IMPL_ID"), NULL, 0);
ret = __base_sbi_ecall(SBI_EXT_BASE_GET_IMP_ID, 0);
gen_report(&ret, 0, expected);
}
report_prefix_pop();
report_prefix_push("impl_version");
- if (env_or_skip("IMPL_VERSION")) {
- expected = (long)strtoul(getenv("IMPL_VERSION"), NULL, 0);
+ if (env_or_skip("SBI_IMPL_VERSION")) {
+ expected = (long)strtoul(getenv("SBI_IMPL_VERSION"), NULL, 0);
ret = __base_sbi_ecall(SBI_EXT_BASE_GET_IMP_VERSION, 0);
gen_report(&ret, 0, expected);
}
report_prefix_pop();
report_prefix_push("probe_ext");
- expected = getenv("PROBE_EXT") ? (long)strtoul(getenv("PROBE_EXT"), NULL, 0) : 1;
+ expected = getenv("SBI_PROBE_EXT") ? (long)strtoul(getenv("SBI_PROBE_EXT"), NULL, 0) : 1;
ret = __base_sbi_ecall(SBI_EXT_BASE_PROBE_EXT, SBI_EXT_BASE);
gen_report(&ret, 0, expected);
report_prefix_push("unavailable");
@@ -183,8 +183,8 @@ static void timer_check_set_timer(bool mask_timer_irq)
struct sbiret ret;
unsigned long begin, end, duration;
const char *mask_test_str = mask_timer_irq ? " for mask irq test" : "";
- unsigned long d = getenv("TIMER_DELAY") ? strtol(getenv("TIMER_DELAY"), NULL, 0) : 200000;
- unsigned long margin = getenv("TIMER_MARGIN") ? strtol(getenv("TIMER_MARGIN"), NULL, 0) : 200000;
+ unsigned long d = getenv("SBI_TIMER_DELAY") ? strtol(getenv("SBI_TIMER_DELAY"), NULL, 0) : 200000;
+ unsigned long margin = getenv("SBI_TIMER_MARGIN") ? strtol(getenv("SBI_TIMER_MARGIN"), NULL, 0) : 200000;
d = usec_to_cycles(d);
margin = usec_to_cycles(margin);
--
2.45.2
^ permalink raw reply related [flat|nested] 6+ messages in thread* [kvm-unit-tests PATCH 4/4] riscv: sbi: dbcn: Add high address tests
2024-08-12 14:13 [kvm-unit-tests PATCH 0/4] riscv: sbi: More DBCN tests Andrew Jones
` (2 preceding siblings ...)
2024-08-12 14:13 ` [kvm-unit-tests PATCH 3/4] riscv: sbi: Prefix several environment variables with SBI Andrew Jones
@ 2024-08-12 14:13 ` Andrew Jones
2024-08-12 14:18 ` [kvm-unit-tests PATCH 0/4] riscv: sbi: More DBCN tests Andrew Jones
4 siblings, 0 replies; 6+ messages in thread
From: Andrew Jones @ 2024-08-12 14:13 UTC (permalink / raw)
To: kvm, kvm-riscv; +Cc: atishp, cade.richard, jamestiotio
On platforms where we have high memory (above 4G) such as on the QEMU
virt machine model with over 2G of RAM configured, then we can test
DBCN with addresses above 4G on 32-bit and on both 32-bit and 64-bit
we can try crossing page boundaries both below 4G and from below 4G
into 4G. Add those tests along with a bit of refactoring and the
introduction of a couple helpers to find and check high addresses.
Signed-off-by: Andrew Jones <andrew.jones@linux.dev>
---
riscv/sbi.c | 134 +++++++++++++++++++++++++++++++++++++++++++++-------
1 file changed, 116 insertions(+), 18 deletions(-)
diff --git a/riscv/sbi.c b/riscv/sbi.c
index 3f7ca6a78cfc..4f1e65dd3be6 100644
--- a/riscv/sbi.c
+++ b/riscv/sbi.c
@@ -5,18 +5,25 @@
* Copyright (C) 2023, Ventana Micro Systems Inc., Andrew Jones <ajones@ventanamicro.com>
*/
#include <libcflat.h>
+#include <alloc_page.h>
#include <stdlib.h>
+#include <string.h>
#include <limits.h>
+#include <vmalloc.h>
+#include <memregions.h>
#include <asm/barrier.h>
#include <asm/csr.h>
#include <asm/delay.h>
#include <asm/io.h>
#include <asm/isa.h>
+#include <asm/mmu.h>
#include <asm/processor.h>
#include <asm/sbi.h>
#include <asm/smp.h>
#include <asm/timer.h>
+#define HIGH_ADDR_BOUNDARY ((phys_addr_t)1 << 32)
+
static void help(void)
{
puts("Test SBI\n");
@@ -46,6 +53,25 @@ static void split_phys_addr(phys_addr_t paddr, unsigned long *hi, unsigned long
*hi = (unsigned long)(paddr >> 32);
}
+static bool check_addr(phys_addr_t start, phys_addr_t size)
+{
+ struct mem_region *r = memregions_find(start);
+ return r && r->end - start >= size && r->flags == MR_F_UNUSED;
+}
+
+static phys_addr_t get_highest_addr(void)
+{
+ phys_addr_t highest_end = 0;
+ struct mem_region *r;
+
+ for (r = mem_regions; r->end; ++r) {
+ if (r->end > highest_end)
+ highest_end = r->end;
+ }
+
+ return highest_end - 1;
+}
+
static bool env_or_skip(const char *env)
{
if (!getenv(env)) {
@@ -266,16 +292,60 @@ static void check_time(void)
#define DBCN_WRITE_TEST_STRING "DBCN_WRITE_TEST_STRING\n"
#define DBCN_WRITE_BYTE_TEST_BYTE (u8)'a'
+static void dbcn_write_test(const char *s, unsigned long num_bytes)
+{
+ unsigned long base_addr_lo, base_addr_hi;
+ phys_addr_t paddr = virt_to_phys((void *)s);
+ int num_calls = 0;
+ struct sbiret ret;
+
+ split_phys_addr(paddr, &base_addr_hi, &base_addr_lo);
+
+ do {
+ ret = __dbcn_sbi_ecall(SBI_EXT_DBCN_CONSOLE_WRITE, num_bytes, base_addr_lo, base_addr_hi);
+ num_bytes -= ret.value;
+ paddr += ret.value;
+ split_phys_addr(paddr, &base_addr_hi, &base_addr_lo);
+ num_calls++;
+ } while (num_bytes != 0 && ret.error == SBI_SUCCESS);
+
+ report(ret.error == SBI_SUCCESS, "write success (error=%ld)", ret.error);
+ report_info("%d sbi calls made", num_calls);
+}
+
+static void dbcn_high_write_test(const char *s, unsigned long num_bytes,
+ phys_addr_t page_addr, size_t page_offset)
+{
+ int nr_pages = page_offset ? 2 : 1;
+ void *vaddr;
+
+ if (page_addr != PAGE_ALIGN(page_addr) || page_addr + PAGE_SIZE < HIGH_ADDR_BOUNDARY ||
+ !check_addr(page_addr, nr_pages * PAGE_SIZE)) {
+ report_skip("Memory above 4G required");
+ return;
+ }
+
+ vaddr = alloc_vpages(nr_pages);
+
+ for (int i = 0; i < nr_pages; ++i)
+ install_page(current_pgtable(), page_addr + i * PAGE_SIZE, vaddr + i * PAGE_SIZE);
+ memcpy(vaddr + page_offset, DBCN_WRITE_TEST_STRING, num_bytes);
+ dbcn_write_test(vaddr + page_offset, num_bytes);
+}
+
/*
* Only the write functionality is tested here. There's no easy way to
* non-interactively test the read functionality.
*/
static void check_dbcn(void)
{
- unsigned long num_bytes, base_addr_lo, base_addr_hi;
+ unsigned long num_bytes = strlen(DBCN_WRITE_TEST_STRING);
+ unsigned long base_addr_lo, base_addr_hi;
+ bool do_invalid_addr = false;
phys_addr_t paddr;
- int num_calls = 0;
struct sbiret ret;
+ const char *tmp;
+ char *buf;
report_prefix_push("dbcn");
@@ -286,33 +356,61 @@ static void check_dbcn(void)
return;
}
- num_bytes = strlen(DBCN_WRITE_TEST_STRING);
- paddr = virt_to_phys((void *)&DBCN_WRITE_TEST_STRING);
- split_phys_addr(paddr, &base_addr_hi, &base_addr_lo);
-
report_prefix_push("write");
- do {
- ret = __dbcn_sbi_ecall(SBI_EXT_DBCN_CONSOLE_WRITE, num_bytes, base_addr_lo, base_addr_hi);
- num_bytes -= ret.value;
- paddr += ret.value;
- split_phys_addr(paddr, &base_addr_hi, &base_addr_lo);
- num_calls++;
- } while (num_bytes != 0 && ret.error == SBI_SUCCESS);
+ dbcn_write_test(DBCN_WRITE_TEST_STRING, num_bytes);
- report(ret.error == SBI_SUCCESS, "write success (error=%ld)", ret.error);
- report_info("%d sbi calls made", num_calls);
+ assert(num_bytes < PAGE_SIZE);
+
+ report_prefix_push("page boundary");
+ buf = alloc_pages(1);
+ memcpy(&buf[PAGE_SIZE - num_bytes / 2], DBCN_WRITE_TEST_STRING, num_bytes);
+ dbcn_write_test(&buf[PAGE_SIZE - num_bytes / 2], num_bytes);
+ report_prefix_pop();
+
+ report_prefix_push("high boundary");
+ tmp = getenv("SBI_DBCN_SKIP_HIGH_BOUNDARY");
+ if (!tmp || atol(tmp) == 0)
+ dbcn_high_write_test(DBCN_WRITE_TEST_STRING, num_bytes,
+ HIGH_ADDR_BOUNDARY - PAGE_SIZE, PAGE_SIZE - num_bytes / 2);
+ else
+ report_skip("user disabled");
+ report_prefix_pop();
+
+ if (__riscv_xlen == 32) {
+ report_prefix_push("high page");
+ tmp = getenv("SBI_DBCN_SKIP_HIGH_PAGE");
+ if (!tmp || atol(tmp) == 0) {
+ paddr = HIGH_ADDR_BOUNDARY;
+ tmp = getenv("HIGH_PAGE");
+ if (tmp)
+ paddr = strtoull(tmp, NULL, 0);
+ dbcn_high_write_test(DBCN_WRITE_TEST_STRING, num_bytes, paddr, 0);
+ } else {
+ report_skip("user disabled");
+ }
+ report_prefix_pop();
+ }
/* Bytes are read from memory and written to the console */
- if (env_or_skip("INVALID_ADDR")) {
+ report_prefix_push("invalid parameter");
+ tmp = getenv("INVALID_ADDR_AUTO");
+ if (tmp && atol(tmp) == 1) {
+ paddr = get_highest_addr() + 1;
+ do_invalid_addr = true;
+ } else if (env_or_skip("INVALID_ADDR")) {
paddr = strtoull(getenv("INVALID_ADDR"), NULL, 0);
+ do_invalid_addr = true;
+ }
+
+ if (do_invalid_addr) {
split_phys_addr(paddr, &base_addr_hi, &base_addr_lo);
ret = __dbcn_sbi_ecall(SBI_EXT_DBCN_CONSOLE_WRITE, 1, base_addr_lo, base_addr_hi);
- report(ret.error == SBI_ERR_INVALID_PARAM, "invalid parameter: address (error=%ld)", ret.error);
+ report(ret.error == SBI_ERR_INVALID_PARAM, "address (error=%ld)", ret.error);
}
-
report_prefix_pop();
+ report_prefix_pop();
report_prefix_push("write_byte");
puts("DBCN_WRITE TEST CHAR: ");
--
2.45.2
^ permalink raw reply related [flat|nested] 6+ messages in thread* Re: [kvm-unit-tests PATCH 0/4] riscv: sbi: More DBCN tests
2024-08-12 14:13 [kvm-unit-tests PATCH 0/4] riscv: sbi: More DBCN tests Andrew Jones
` (3 preceding siblings ...)
2024-08-12 14:13 ` [kvm-unit-tests PATCH 4/4] riscv: sbi: dbcn: Add high address tests Andrew Jones
@ 2024-08-12 14:18 ` Andrew Jones
4 siblings, 0 replies; 6+ messages in thread
From: Andrew Jones @ 2024-08-12 14:18 UTC (permalink / raw)
To: kvm, kvm-riscv; +Cc: atishp, cade.richard, jamestiotio
On Mon, Aug 12, 2024 at 04:13:55PM GMT, Andrew Jones wrote:
> The current DBCN tests found a several bugs and with high address
> support for rv32 we were able to find even more. Add the new tests
> which checks high use page boundary crossing. The first three patches
> a various improvements to the SBI tests.
>
> Based on riscv/queue, https://gitlab.com/jones-drew/kvm-unit-tests/-/commits/riscv%2Fqueue
>
> Andrew Jones (4):
> riscv: sbi: dbcn: Output return values
> riscv: sbi: Use strtoul to avoid overflow
> riscv: sbi: Prefix several environment variables with SBI
> riscv: sbi: dbcn: Add high address tests
>
> riscv/sbi.c | 163 +++++++++++++++++++++++++++++++++++++++++-----------
> 1 file changed, 131 insertions(+), 32 deletions(-)
>
> --
> 2.45.2
>
Queued on riscv/sbi, https://gitlab.com/jones-drew/kvm-unit-tests/-/commits/riscv%2Fsbi
^ permalink raw reply [flat|nested] 6+ messages in thread