Skip to content

Commit

Permalink
aspeed/scu: Add trace events for read ops
Browse files Browse the repository at this point in the history
Reviewed-by: Peter Delevoryas <pdel@fb.com>
Message-Id: <20220628154740.1117349-2-clg@kaod.org>
Signed-off-by: Cédric Le Goater <clg@kaod.org>
  • Loading branch information
legoater committed Jun 30, 2022
1 parent 346160c commit 673a6d1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
2 changes: 2 additions & 0 deletions hw/misc/aspeed_scu.c
Expand Up @@ -270,6 +270,7 @@ static uint64_t aspeed_scu_read(void *opaque, hwaddr offset, unsigned size)
break;
}

trace_aspeed_scu_read(offset, size, s->regs[reg]);
return s->regs[reg];
}

Expand Down Expand Up @@ -637,6 +638,7 @@ static uint64_t aspeed_ast2600_scu_read(void *opaque, hwaddr offset,
break;
}

trace_aspeed_scu_read(offset, size, s->regs[reg]);
return s->regs[reg];
}

Expand Down
1 change: 1 addition & 0 deletions hw/misc/trace-events
Expand Up @@ -69,6 +69,7 @@ slavio_led_mem_readw(uint32_t ret) "Read diagnostic LED 0x%04x"

# aspeed_scu.c
aspeed_scu_write(uint64_t offset, unsigned size, uint32_t data) "To 0x%" PRIx64 " of size %u: 0x%" PRIx32
aspeed_scu_read(uint64_t offset, unsigned size, uint32_t data) "To 0x%" PRIx64 " of size %u: 0x%" PRIx32

# mps2-scc.c
mps2_scc_read(uint64_t offset, uint64_t data, unsigned size) "MPS2 SCC read: offset 0x%" PRIx64 " data 0x%" PRIx64 " size %u"
Expand Down

0 comments on commit 673a6d1

Please sign in to comment.