summaryrefslogtreecommitdiffstats
path: root/hw/misc/aspeed_sdmc.c
diff options
context:
space:
mode:
authorPeter Maydell2022-02-28 17:46:45 +0100
committerPeter Maydell2022-02-28 17:46:45 +0100
commita8d39f5b5ae899b1c872f128f82959158cfce048 (patch)
tree68674c0b7a4bc94311d4e76311105bb80f8e134a /hw/misc/aspeed_sdmc.c
parentMerge remote-tracking branch 'remotes/shorne/tags/or1k-pull-request' into sta... (diff)
parentaspeed/sdmc: Add trace events (diff)
downloadqemu-a8d39f5b5ae899b1c872f128f82959158cfce048.tar.gz
qemu-a8d39f5b5ae899b1c872f128f82959158cfce048.tar.xz
qemu-a8d39f5b5ae899b1c872f128f82959158cfce048.zip
Merge remote-tracking branch 'remotes/legoater/tags/pull-aspeed-20220227' into staging
aspeed queue: * Removal of the swift-bmc machine * New Secure Boot Controller model * Improvements on the rainier machine * Various small cleanups # gpg: Signature made Sun 27 Feb 2022 08:45:45 GMT # gpg: using RSA key A0F66548F04895EBFE6B0B6051A343C7CFFBECA1 # gpg: Good signature from "Cédric Le Goater <clg@kaod.org>" [undefined] # gpg: WARNING: This key is not certified with a trusted signature! # gpg: There is no indication that the signature belongs to the owner. # Primary key fingerprint: A0F6 6548 F048 95EB FE6B 0B60 51A3 43C7 CFFB ECA1 * remotes/legoater/tags/pull-aspeed-20220227: aspeed/sdmc: Add trace events aspeed/smc: Add an address mask on segment registers aspeed: Introduce a create_pca9552() helper aspeed: rainier: Add strap values taken from hardware aspeed: rainier: Add i2c LED devices ast2600: Add Secure Boot Controller model arm: Remove swift-bmc machine Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Diffstat (limited to 'hw/misc/aspeed_sdmc.c')
-rw-r--r--hw/misc/aspeed_sdmc.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/hw/misc/aspeed_sdmc.c b/hw/misc/aspeed_sdmc.c
index 08f856cbda..d2a3931033 100644
--- a/hw/misc/aspeed_sdmc.c
+++ b/hw/misc/aspeed_sdmc.c
@@ -130,6 +130,7 @@ static uint64_t aspeed_sdmc_read(void *opaque, hwaddr addr, unsigned size)
return 0;
}
+ trace_aspeed_sdmc_read(addr, s->regs[addr]);
return s->regs[addr];
}
@@ -148,6 +149,7 @@ static void aspeed_sdmc_write(void *opaque, hwaddr addr, uint64_t data,
return;
}
+ trace_aspeed_sdmc_write(addr, data);
asc->write(s, addr, data);
}