]> git.proxmox.com Git - mirror_qemu.git/commitdiff
hw/sd/sdcard: Add trace event for ERASE command (CMD38)
authorPhilippe Mathieu-Daudé <f4bug@amsat.org>
Sun, 13 Sep 2020 11:18:19 +0000 (13:18 +0200)
committerPhilippe Mathieu-Daudé <f4bug@amsat.org>
Wed, 21 Oct 2020 11:19:02 +0000 (13:19 +0200)
Trace addresses provided to the ERASE command.

Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Tested-by: Alexander Bulekov <alxndr@bu.edu>
Message-Id: <20201015063824.212980-2-f4bug@amsat.org>

hw/sd/sd.c
hw/sd/trace-events

index 00128822224d586ee5551a4156d1df32d45b8eb7..2606b969e34efdf3fdb4a6aa263ecd33c25ad398 100644 (file)
@@ -749,7 +749,7 @@ static void sd_erase(SDState *sd)
     uint64_t erase_start = sd->erase_start;
     uint64_t erase_end = sd->erase_end;
 
-    trace_sdcard_erase();
+    trace_sdcard_erase(sd->erase_start, sd->erase_end);
     if (!sd->erase_start || !sd->erase_end) {
         sd->card_status |= ERASE_SEQ_ERROR;
         return;
index a87d7355fb8fbc6d16bdf818a404696ce3950c8f..96c7ea5e52fa615e7d5e247e1760aaea447a14fd 100644 (file)
@@ -46,7 +46,7 @@ sdcard_reset(void) ""
 sdcard_set_blocklen(uint16_t length) "0x%03x"
 sdcard_inserted(bool readonly) "read_only: %u"
 sdcard_ejected(void) ""
-sdcard_erase(void) ""
+sdcard_erase(uint32_t first, uint32_t last) "addr first 0x%" PRIx32" last 0x%" PRIx32
 sdcard_lock(void) ""
 sdcard_unlock(void) ""
 sdcard_read_block(uint64_t addr, uint32_t len) "addr 0x%" PRIx64 " size 0x%x"