riscv-compliance: remove whitespace
This commit is contained in:
parent
debf2b040a
commit
eeac4f7fd4
|
@ -3102,9 +3102,9 @@ int riscv013_test_compliance(struct target *target)
|
||||||
|
|
||||||
/* HALTSUM -- TODO: More than 32 harts. Would need to loop over this to set hartsel */
|
/* HALTSUM -- TODO: More than 32 harts. Would need to loop over this to set hartsel */
|
||||||
/* TODO: HALTSUM2, HALTSUM3 */
|
/* TODO: HALTSUM2, HALTSUM3 */
|
||||||
/* HALTSUM0 */
|
/* HALTSUM0 */
|
||||||
uint32_t expected_haltsum0 = 0;
|
uint32_t expected_haltsum0 = 0;
|
||||||
for (int i = 0; i < MIN(riscv_count_harts(target), 32); i ++)
|
for (int i = 0; i < MIN(riscv_count_harts(target), 32); i++)
|
||||||
expected_haltsum0 |= (1 << i);
|
expected_haltsum0 |= (1 << i);
|
||||||
|
|
||||||
dmi_read(target, &testvar_read, DMI_HALTSUM0);
|
dmi_read(target, &testvar_read, DMI_HALTSUM0);
|
||||||
|
@ -3120,18 +3120,18 @@ int riscv013_test_compliance(struct target *target)
|
||||||
COMPLIANCE_TEST(testvar_read == expected_haltsum0, "HALTSUM0 should be R/O");
|
COMPLIANCE_TEST(testvar_read == expected_haltsum0, "HALTSUM0 should be R/O");
|
||||||
|
|
||||||
/* HALTSUM1 */
|
/* HALTSUM1 */
|
||||||
uint32_t expected_haltsum1 = 0;
|
uint32_t expected_haltsum1 = 0;
|
||||||
for (int i = 0; i < MIN(riscv_count_harts(target), 1024); i +=32)
|
for (int i = 0; i < MIN(riscv_count_harts(target), 1024); i += 32)
|
||||||
expected_haltsum1 |= (1 << (i/32));
|
expected_haltsum1 |= (1 << (i/32));
|
||||||
|
|
||||||
dmi_read(target, &testvar_read, DMI_HALTSUM1);
|
dmi_read(target, &testvar_read, DMI_HALTSUM1);
|
||||||
COMPLIANCE_TEST(testvar_read == expected_haltsum1,
|
COMPLIANCE_TEST(testvar_read == expected_haltsum1,
|
||||||
"HALTSUM1 should report summary of up to 1024 halted harts");
|
"HALTSUM1 should report summary of up to 1024 halted harts");
|
||||||
|
|
||||||
dmi_write(target, DMI_HALTSUM1, 0xffffffff);
|
dmi_write(target, DMI_HALTSUM1, 0xffffffff);
|
||||||
dmi_read(target, &testvar_read, DMI_HALTSUM1);
|
dmi_read(target, &testvar_read, DMI_HALTSUM1);
|
||||||
COMPLIANCE_TEST(testvar_read == expected_haltsum1, "HALTSUM1 should be R/O");
|
COMPLIANCE_TEST(testvar_read == expected_haltsum1, "HALTSUM1 should be R/O");
|
||||||
|
|
||||||
dmi_write(target, DMI_HALTSUM1, 0x0);
|
dmi_write(target, DMI_HALTSUM1, 0x0);
|
||||||
dmi_read(target, &testvar_read, DMI_HALTSUM1);
|
dmi_read(target, &testvar_read, DMI_HALTSUM1);
|
||||||
COMPLIANCE_TEST(testvar_read == expected_haltsum1, "HALTSUM1 should be R/O");
|
COMPLIANCE_TEST(testvar_read == expected_haltsum1, "HALTSUM1 should be R/O");
|
||||||
|
|
Loading…
Reference in New Issue