diff options
author | Tim Newsome <tim@sifive.com> | 2019-05-21 14:40:47 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-05-21 14:40:47 -0700 |
commit | 998fed1fe7a3d178ee5153c94e349d924002776f (patch) | |
tree | c52eff7d7832ea27e63bab113f59720791fabb16 | |
parent | c7a78e9c5783d5ed03ca7ea4c2b56ed113689b90 (diff) | |
download | riscv-openocd-998fed1fe7a3d178ee5153c94e349d924002776f.zip riscv-openocd-998fed1fe7a3d178ee5153c94e349d924002776f.tar.gz riscv-openocd-998fed1fe7a3d178ee5153c94e349d924002776f.tar.bz2 |
Don't write sbcs while sbbusy is set. (#375)
* Fix small SBA bug.
We were not compliant with the spec, but I'm not sure if this was
causing problems for anybody.
Change-Id: Ia31ee400fd75ad907349c4dd995b1e03bd2116c7
* Don't write sbcs while sbbusy is set.
Probably not hurting anything, but the spec says we shouldn't.
Also propagate more errors, and fully decode sbcs in debug output.
Change-Id: I1a36646772fe794c8780702565103a309bbcc5e9
-rw-r--r-- | src/target/riscv/riscv-013.c | 33 |
1 files changed, 24 insertions, 9 deletions
diff --git a/src/target/riscv/riscv-013.c b/src/target/riscv/riscv-013.c index 0f18ce3..217bdd9 100644 --- a/src/target/riscv/riscv-013.c +++ b/src/target/riscv/riscv-013.c @@ -335,6 +335,9 @@ static void decode_dmi(char *text, unsigned address, unsigned data) { DMI_COMMAND, DMI_COMMAND_CMDTYPE, "cmdtype" }, + { DMI_SBCS, DMI_SBCS_SBVERSION, "sbversion" }, + { DMI_SBCS, DMI_SBCS_SBBUSYERROR, "sbbusyerror" }, + { DMI_SBCS, DMI_SBCS_SBBUSY, "sbbusy" }, { DMI_SBCS, DMI_SBCS_SBREADONADDR, "sbreadonaddr" }, { DMI_SBCS, DMI_SBCS_SBACCESS, "sbaccess" }, { DMI_SBCS, DMI_SBCS_SBAUTOINCREMENT, "sbautoincrement" }, @@ -2136,10 +2139,12 @@ static int read_memory_bus_v1(struct target *target, target_addr_t address, sbcs |= sb_sbaccess(size); sbcs = set_field(sbcs, DMI_SBCS_SBAUTOINCREMENT, 1); sbcs = set_field(sbcs, DMI_SBCS_SBREADONDATA, count > 1); - dmi_write(target, DMI_SBCS, sbcs); + if (dmi_write(target, DMI_SBCS, sbcs) != ERROR_OK) + return ERROR_FAIL; /* This address write will trigger the first read. */ - sb_write_address(target, next_address); + if (sb_write_address(target, next_address) != ERROR_OK) + return ERROR_FAIL; if (info->bus_master_read_delay) { jtag_add_runtest(info->bus_master_read_delay, TAP_IDLE); @@ -2150,22 +2155,31 @@ static int read_memory_bus_v1(struct target *target, target_addr_t address, } for (uint32_t i = (next_address - address) / size; i < count - 1; i++) { - read_memory_bus_word(target, address + i * size, size, - buffer + i * size); + if (read_memory_bus_word(target, address + i * size, size, + buffer + i * size) != ERROR_OK) + return ERROR_FAIL; } + /* "Writes to sbcs while sbbusy is high result in undefined behavior. + * A debugger must not write to sbcs until it reads sbbusy as 0." */ + if (read_sbcs_nonbusy(target, &sbcs) != ERROR_OK) + return ERROR_FAIL; + sbcs = set_field(sbcs, DMI_SBCS_SBREADONDATA, 0); - dmi_write(target, DMI_SBCS, sbcs); + if (dmi_write(target, DMI_SBCS, sbcs) != ERROR_OK) + return ERROR_FAIL; - read_memory_bus_word(target, address + (count - 1) * size, size, - buffer + (count - 1) * size); + if (read_memory_bus_word(target, address + (count - 1) * size, size, + buffer + (count - 1) * size) != ERROR_OK) + return ERROR_FAIL; if (read_sbcs_nonbusy(target, &sbcs) != ERROR_OK) return ERROR_FAIL; if (get_field(sbcs, DMI_SBCS_SBBUSYERROR)) { /* We read while the target was busy. Slow down and try again. */ - dmi_write(target, DMI_SBCS, DMI_SBCS_SBBUSYERROR); + if (dmi_write(target, DMI_SBCS, DMI_SBCS_SBBUSYERROR) != ERROR_OK) + return ERROR_FAIL; next_address = sb_read_address(target); info->bus_master_read_delay += info->bus_master_read_delay / 10 + 1; continue; @@ -2177,7 +2191,8 @@ static int read_memory_bus_v1(struct target *target, target_addr_t address, } else { /* Some error indicating the bus access failed, but not because of * something we did wrong. */ - dmi_write(target, DMI_SBCS, DMI_SBCS_SBERROR); + if (dmi_write(target, DMI_SBCS, DMI_SBCS_SBERROR) != ERROR_OK) + return ERROR_FAIL; return ERROR_FAIL; } } |