diff options
author | Philippe Mathieu-Daudé <philmd@linaro.org> | 2024-06-14 15:49:10 +0200 |
---|---|---|
committer | Philippe Mathieu-Daudé <philmd@linaro.org> | 2024-07-05 23:54:58 +0200 |
commit | 5241b759bcf1e9952a5a5503bc802d76409b4ac6 (patch) | |
tree | 089ccb7405578ef3d4deae58cace52e3bd7a41c6 /include/hw | |
parent | f18a78de24244986ab37c017f5a56a83d93ec779 (diff) | |
download | qemu-5241b759bcf1e9952a5a5503bc802d76409b4ac6.zip qemu-5241b759bcf1e9952a5a5503bc802d76409b4ac6.tar.gz qemu-5241b759bcf1e9952a5a5503bc802d76409b4ac6.tar.bz2 |
hw/sd/sdcard: Introduce set_csd/set_cid handlers
In preparation of introducing eMMC support which have
different CSD/CID structures, introduce a pair of handlers
in SDCardClass.
Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Reviewed-by: Cédric Le Goater <clg@redhat.com>
Tested-by: Andrew Jeffery <andrew@codeconstruct.com.au>
Tested-by: Cédric Le Goater <clg@redhat.com>
Message-Id: <20240628070216.92609-82-philmd@linaro.org>
Diffstat (limited to 'include/hw')
-rw-r--r-- | include/hw/sd/sd.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/hw/sd/sd.h b/include/hw/sd/sd.h index c1a35ab..0d6d9e4 100644 --- a/include/hw/sd/sd.h +++ b/include/hw/sd/sd.h @@ -127,6 +127,8 @@ struct SDCardClass { void (*enable)(SDState *sd, bool enable); bool (*get_inserted)(SDState *sd); bool (*get_readonly)(SDState *sd); + void (*set_cid)(SDState *sd); + void (*set_csd)(SDState *sd, uint64_t size); const struct SDProto *proto; }; |