diff options
author | 2024-06-27 09:03:33 +0200 | |
---|---|---|
committer | 2024-07-05 23:53:07 +0200 | |
commit | 1ca19583e7a043b1414b9ecf5663384103d57a44 (patch) | |
tree | 48207ecbbbbc86458e1dbecf0fce633bf7eb1bd7 /hw/sd/sd.c | |
parent | hw/sd/sdcard: Remove leftover comment about removed 'spi' Property (diff) | |
download | qemu-1ca19583e7a043b1414b9ecf5663384103d57a44.tar.xz qemu-1ca19583e7a043b1414b9ecf5663384103d57a44.zip |
hw/sd/sdcard: Use spec v3.01 by default
Recent SDHCI expect cards to support the v3.01 spec
to negociate lower I/O voltage. Select it by default.
Versioned machine types with a version of 9.0 or
earlier retain the old default (spec v2.00).
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: <20240703134356.85972-2-philmd@linaro.org>
Diffstat (limited to 'hw/sd/sd.c')
-rw-r--r-- | hw/sd/sd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/sd/sd.c b/hw/sd/sd.c index 53767beaf8..a08a452d81 100644 --- a/hw/sd/sd.c +++ b/hw/sd/sd.c @@ -2471,7 +2471,7 @@ static void sd_realize(DeviceState *dev, Error **errp) static Property sd_properties[] = { DEFINE_PROP_UINT8("spec_version", SDState, - spec_version, SD_PHY_SPECv2_00_VERS), + spec_version, SD_PHY_SPECv3_01_VERS), DEFINE_PROP_DRIVE("drive", SDState, blk), DEFINE_PROP_END_OF_LIST() }; |