2 * QTest testcase for Q35 northbridge
4 * Copyright (c) 2015 Red Hat, Inc.
8 * This work is licensed under the terms of the GNU GPL, version 2 or later.
9 * See the COPYING file in the top-level directory.
12 #include "qemu/osdep.h"
14 #include "libqos/pci.h"
15 #include "libqos/pci-pc.h"
16 #include "hw/pci-host/q35.h"
18 static void smram_set_bit(QPCIDevice *pcidev, uint8_t mask, bool enabled)
22 smram = qpci_config_readb(pcidev, MCH_HOST_BRIDGE_SMRAM);
28 qpci_config_writeb(pcidev, MCH_HOST_BRIDGE_SMRAM, smram);
31 static bool smram_test_bit(QPCIDevice *pcidev, uint8_t mask)
35 smram = qpci_config_readb(pcidev, MCH_HOST_BRIDGE_SMRAM);
39 static void test_smram_lock(void)
45 pcibus = qpci_init_pc();
46 g_assert(pcibus != NULL);
48 pcidev = qpci_device_find(pcibus, 0);
49 g_assert(pcidev != NULL);
51 /* check open is settable */
52 smram_set_bit(pcidev, MCH_HOST_BRIDGE_SMRAM_D_OPEN, false);
53 g_assert(smram_test_bit(pcidev, MCH_HOST_BRIDGE_SMRAM_D_OPEN) == false);
54 smram_set_bit(pcidev, MCH_HOST_BRIDGE_SMRAM_D_OPEN, true);
55 g_assert(smram_test_bit(pcidev, MCH_HOST_BRIDGE_SMRAM_D_OPEN) == true);
57 /* lock, check open is cleared & not settable */
58 smram_set_bit(pcidev, MCH_HOST_BRIDGE_SMRAM_D_LCK, true);
59 g_assert(smram_test_bit(pcidev, MCH_HOST_BRIDGE_SMRAM_D_OPEN) == false);
60 smram_set_bit(pcidev, MCH_HOST_BRIDGE_SMRAM_D_OPEN, true);
61 g_assert(smram_test_bit(pcidev, MCH_HOST_BRIDGE_SMRAM_D_OPEN) == false);
64 response = qmp("{'execute': 'system_reset', 'arguments': {} }");
66 g_assert(!qdict_haskey(response, "error"));
69 /* check open is settable again */
70 smram_set_bit(pcidev, MCH_HOST_BRIDGE_SMRAM_D_OPEN, false);
71 g_assert(smram_test_bit(pcidev, MCH_HOST_BRIDGE_SMRAM_D_OPEN) == false);
72 smram_set_bit(pcidev, MCH_HOST_BRIDGE_SMRAM_D_OPEN, true);
73 g_assert(smram_test_bit(pcidev, MCH_HOST_BRIDGE_SMRAM_D_OPEN) == true);
76 int main(int argc, char **argv)
80 g_test_init(&argc, &argv, NULL);
82 qtest_add_func("/q35/smram/lock", test_smram_lock);
84 qtest_start("-M q35");