Skip to content
This repository has been archived by the owner on Sep 28, 2019. It is now read-only.

Commit

Permalink
Merge pull request #7 from sifive/temp_verify_blank_check
Browse files Browse the repository at this point in the history
riscv: implement skeletons for Memory Blank Check and CRC.
  • Loading branch information
timsifive authored Dec 8, 2016
2 parents c1da323 + 4a0d3fb commit e31dd22
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions src/target/riscv/riscv.c
Original file line number Diff line number Diff line change
Expand Up @@ -2748,6 +2748,33 @@ static int riscv_run_algorithm(struct target *target, int num_mem_params,
return ERROR_OK;
}

/* Should run code on the target to perform CRC of
memory. Not yet implemented.
*/

int riscv_checksum_memory(struct target *target,
uint32_t address, uint32_t count,
uint32_t* checksum) {
*checksum = 0xFFFFFFFF;
return ERROR_TARGET_RESOURCE_NOT_AVAILABLE;

}

/* Should run code on the target to check whether a memory
block holds all-ones (because this is generally called on
NOR flash which is 1 when "blank")
Not yet implemented.
*/

int riscv_blank_check_memory(struct target * target,
uint32_t address,
uint32_t count,
uint32_t * blank) {
*blank = 0;

return ERROR_TARGET_RESOURCE_NOT_AVAILABLE;
}

struct target_type riscv_target =
{
.name = "riscv",
Expand All @@ -2769,6 +2796,9 @@ struct target_type riscv_target =
.read_memory = riscv_read_memory,
.write_memory = riscv_write_memory,

.blank_check_memory = riscv_blank_check_memory,
.checksum_memory = riscv_checksum_memory,

.get_gdb_reg_list = riscv_get_gdb_reg_list,

.add_breakpoint = riscv_add_breakpoint,
Expand Down

0 comments on commit e31dd22

Please sign in to comment.