diff options
| author | Philippe Mathieu-Daudé <philmd@linaro.org> | 2024-06-27 09:03:33 +0200 |
|---|---|---|
| committer | Philippe Mathieu-Daudé <philmd@linaro.org> | 2024-07-05 23:53:07 +0200 |
| commit | 1ca19583e7a043b1414b9ecf5663384103d57a44 (patch) | |
| tree | 48207ecbbbbc86458e1dbecf0fce633bf7eb1bd7 /hw/core/machine.c | |
| parent | a5487ddba583ea68f50cd871c0a8fcdff18aaf4e (diff) | |
| download | focaccia-qemu-1ca19583e7a043b1414b9ecf5663384103d57a44.tar.gz focaccia-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/core/machine.c')
| -rw-r--r-- | hw/core/machine.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/hw/core/machine.c b/hw/core/machine.c index f4cba6496c..bc38cad7f2 100644 --- a/hw/core/machine.c +++ b/hw/core/machine.c @@ -39,6 +39,7 @@ GlobalProperty hw_compat_9_0[] = { {"scsi-disk-base", "migrate-emulated-scsi-request", "false" }, {"vfio-pci", "skip-vsc-check", "false" }, { "virtio-pci", "x-pcie-pm-no-soft-reset", "off" }, + {"sd-card", "spec_version", "2" }, }; const size_t hw_compat_9_0_len = G_N_ELEMENTS(hw_compat_9_0); |