|
@@ -1759,15 +1759,23 @@ static void pc_machine_class_init(ObjectClass *oc, void *data)
|
|
|
|
|
|
object_class_property_add_bool(oc, PC_MACHINE_SMBUS,
|
|
object_class_property_add_bool(oc, PC_MACHINE_SMBUS,
|
|
pc_machine_get_smbus, pc_machine_set_smbus);
|
|
pc_machine_get_smbus, pc_machine_set_smbus);
|
|
|
|
+ object_class_property_set_description(oc, PC_MACHINE_SMBUS,
|
|
|
|
+ "Enable/disable system management bus");
|
|
|
|
|
|
object_class_property_add_bool(oc, PC_MACHINE_SATA,
|
|
object_class_property_add_bool(oc, PC_MACHINE_SATA,
|
|
pc_machine_get_sata, pc_machine_set_sata);
|
|
pc_machine_get_sata, pc_machine_set_sata);
|
|
|
|
+ object_class_property_set_description(oc, PC_MACHINE_SATA,
|
|
|
|
+ "Enable/disable Serial ATA bus");
|
|
|
|
|
|
object_class_property_add_bool(oc, PC_MACHINE_PIT,
|
|
object_class_property_add_bool(oc, PC_MACHINE_PIT,
|
|
pc_machine_get_pit, pc_machine_set_pit);
|
|
pc_machine_get_pit, pc_machine_set_pit);
|
|
|
|
+ object_class_property_set_description(oc, PC_MACHINE_PIT,
|
|
|
|
+ "Enable/disable Intel 8254 programmable interval timer emulation");
|
|
|
|
|
|
object_class_property_add_bool(oc, "hpet",
|
|
object_class_property_add_bool(oc, "hpet",
|
|
pc_machine_get_hpet, pc_machine_set_hpet);
|
|
pc_machine_get_hpet, pc_machine_set_hpet);
|
|
|
|
+ object_class_property_set_description(oc, "hpet",
|
|
|
|
+ "Enable/disable high precision event timer emulation");
|
|
|
|
|
|
object_class_property_add_bool(oc, "default-bus-bypass-iommu",
|
|
object_class_property_add_bool(oc, "default-bus-bypass-iommu",
|
|
pc_machine_get_default_bus_bypass_iommu,
|
|
pc_machine_get_default_bus_bypass_iommu,
|