sdhci-test.c (981c9b88e674408a1579ca3aa8d42770e3b689de) sdhci-test.c (a2ce7dbd917a18408cf4bfd132578b46c2752a72)
1/*
2 * QTest testcase for SDHCI controllers
3 *
4 * Written by Philippe Mathieu-Daudé <f4bug@amsat.org>
5 *
6 * This work is licensed under the terms of the GNU GPL, version 2 or later.
7 * See the COPYING file in the top-level directory.
8 * SPDX-License-Identifier: GPL-2.0-or-later
9 */
10
11#include "qemu/osdep.h"
12#include "hw/registerfields.h"
1/*
2 * QTest testcase for SDHCI controllers
3 *
4 * Written by Philippe Mathieu-Daudé <f4bug@amsat.org>
5 *
6 * This work is licensed under the terms of the GNU GPL, version 2 or later.
7 * See the COPYING file in the top-level directory.
8 * SPDX-License-Identifier: GPL-2.0-or-later
9 */
10
11#include "qemu/osdep.h"
12#include "hw/registerfields.h"
13#include "libqtest.h"
13#include "libqos/libqtest.h"
14#include "qemu/module.h"
15#include "libqos/pci-pc.h"
16#include "hw/pci/pci.h"
17#include "libqos/qgraph.h"
18#include "libqos/sdhci.h"
19
20#define SDHC_CAPAB 0x40
21FIELD(SDHC_CAPAB, BASECLKFREQ, 8, 8); /* since v2 */

--- 90 unchanged lines hidden ---
14#include "qemu/module.h"
15#include "libqos/pci-pc.h"
16#include "hw/pci/pci.h"
17#include "libqos/qgraph.h"
18#include "libqos/sdhci.h"
19
20#define SDHC_CAPAB 0x40
21FIELD(SDHC_CAPAB, BASECLKFREQ, 8, 8); /* since v2 */

--- 90 unchanged lines hidden ---