summaryrefslogtreecommitdiffstats
path: root/tests/sdhci-test.c
diff options
context:
space:
mode:
authorThomas Huth2019-09-09 12:04:01 +0200
committerThomas Huth2020-01-12 11:42:41 +0100
commit1e8a1fae7464ef79c9e50aa0f807d2c511be3c8e (patch)
tree80d1a4f0454b9a75c09461e69f969213350540ea /tests/sdhci-test.c
parenttests/Makefile: Separate unit test dependencies from qtest dependencies (diff)
downloadqemu-1e8a1fae7464ef79c9e50aa0f807d2c511be3c8e.tar.gz
qemu-1e8a1fae7464ef79c9e50aa0f807d2c511be3c8e.tar.xz
qemu-1e8a1fae7464ef79c9e50aa0f807d2c511be3c8e.zip
test: Move qtests to a separate directory
The tests directory itself is pretty overcrowded, and it's hard to see which test belongs to which test subsystem (unit, qtest, ...). Let's move the qtests to a separate folder for more clarity. Message-Id: <20191218103059.11729-6-thuth@redhat.com> Reviewed-by: Paolo Bonzini <pbonzini@redhat.com> Signed-off-by: Thomas Huth <thuth@redhat.com>
Diffstat (limited to 'tests/sdhci-test.c')
-rw-r--r--tests/sdhci-test.c111
1 files changed, 0 insertions, 111 deletions
diff --git a/tests/sdhci-test.c b/tests/sdhci-test.c
deleted file mode 100644
index 6275e7626c..0000000000
--- a/tests/sdhci-test.c
+++ /dev/null
@@ -1,111 +0,0 @@
-/*
- * QTest testcase for SDHCI controllers
- *
- * Written by Philippe Mathieu-Daudé <f4bug@amsat.org>
- *
- * This work is licensed under the terms of the GNU GPL, version 2 or later.
- * See the COPYING file in the top-level directory.
- * SPDX-License-Identifier: GPL-2.0-or-later
- */
-
-#include "qemu/osdep.h"
-#include "hw/registerfields.h"
-#include "libqtest.h"
-#include "qemu/module.h"
-#include "libqos/pci-pc.h"
-#include "hw/pci/pci.h"
-#include "libqos/qgraph.h"
-#include "libqos/sdhci.h"
-
-#define SDHC_CAPAB 0x40
-FIELD(SDHC_CAPAB, BASECLKFREQ, 8, 8); /* since v2 */
-FIELD(SDHC_CAPAB, SDMA, 22, 1);
-FIELD(SDHC_CAPAB, SDR, 32, 3); /* since v3 */
-FIELD(SDHC_CAPAB, DRIVER, 36, 3); /* since v3 */
-#define SDHC_HCVER 0xFE
-
-static void check_specs_version(QSDHCI *s, uint8_t version)
-{
- uint32_t v;
-
- v = s->readw(s, SDHC_HCVER);
- v &= 0xff;
- v += 1;
- g_assert_cmpuint(v, ==, version);
-}
-
-static void check_capab_capareg(QSDHCI *s, uint64_t expec_capab)
-{
- uint64_t capab;
-
- capab = s->readq(s, SDHC_CAPAB);
- g_assert_cmphex(capab, ==, expec_capab);
-}
-
-static void check_capab_readonly(QSDHCI *s)
-{
- const uint64_t vrand = 0x123456789abcdef;
- uint64_t capab0, capab1;
-
- capab0 = s->readq(s, SDHC_CAPAB);
- g_assert_cmpuint(capab0, !=, vrand);
-
- s->writeq(s, SDHC_CAPAB, vrand);
- capab1 = s->readq(s, SDHC_CAPAB);
- g_assert_cmpuint(capab1, !=, vrand);
- g_assert_cmpuint(capab1, ==, capab0);
-}
-
-static void check_capab_baseclock(QSDHCI *s, uint8_t expec_freq)
-{
- uint64_t capab, capab_freq;
-
- if (!expec_freq) {
- return;
- }
- capab = s->readq(s, SDHC_CAPAB);
- capab_freq = FIELD_EX64(capab, SDHC_CAPAB, BASECLKFREQ);
- g_assert_cmpuint(capab_freq, ==, expec_freq);
-}
-
-static void check_capab_sdma(QSDHCI *s, bool supported)
-{
- uint64_t capab, capab_sdma;
-
- capab = s->readq(s, SDHC_CAPAB);
- capab_sdma = FIELD_EX64(capab, SDHC_CAPAB, SDMA);
- g_assert_cmpuint(capab_sdma, ==, supported);
-}
-
-static void check_capab_v3(QSDHCI *s, uint8_t version)
-{
- uint64_t capab, capab_v3;
-
- if (version < 3) {
- /* before v3 those fields are RESERVED */
- capab = s->readq(s, SDHC_CAPAB);
- capab_v3 = FIELD_EX64(capab, SDHC_CAPAB, SDR);
- g_assert_cmpuint(capab_v3, ==, 0);
- capab_v3 = FIELD_EX64(capab, SDHC_CAPAB, DRIVER);
- g_assert_cmpuint(capab_v3, ==, 0);
- }
-}
-
-static void test_registers(void *obj, void *data, QGuestAllocator *alloc)
-{
- QSDHCI *s = obj;
-
- check_specs_version(s, s->props.version);
- check_capab_capareg(s, s->props.capab.reg);
- check_capab_readonly(s);
- check_capab_v3(s, s->props.version);
- check_capab_sdma(s, s->props.capab.sdma);
- check_capab_baseclock(s, s->props.baseclock);
-}
-
-static void register_sdhci_test(void)
-{
- qos_add_test("registers", "sdhci", test_registers, NULL);
-}
-
-libqos_init(register_sdhci_test);