0f2fa73ba0
virtio feature negotiation rework Signed-off-by: Michael S. Tsirkin <mst@redhat.com> -----BEGIN PGP SIGNATURE----- Version: GnuPG v1 iQEcBAABAgAGBQJX3D/+AAoJECgfDbjSjVRpAh0H/0OprEm1SrXWFMTlMwdtnl/0 b22PEyIzkaXu4eRLotxvAbN9KArc4cVUxx/sZ0t24OjLR9IxzD6Ffukndr0TSAia KZM8QAACD4nMVd7ITw0qyv6twO8juTPgB76BddBLJN16kKWkEQr7Ouh++Kl2xguY YKSzTT+DQRQxKQzojZVHCinReX75F2KfUgnUlL9SXZfSs8lSSFQpasLELc59iDG0 lSWyWWJYSfC9DEkivYeigsnrAYVwA9SvbBwGJUlemKafOPwO12gLGezb9JTAvQtQ 3Lctp0FGPnoc38P+T6B4uuDjqCvRGj1CU2yBeLHZ6nsFnoFAGb0PzfAA6ejmJCY= =/97N -----END PGP SIGNATURE----- Merge remote-tracking branch 'remotes/mst/tags/for_upstream' into staging virtio: fixes virtio feature negotiation rework Signed-off-by: Michael S. Tsirkin <mst@redhat.com> # gpg: Signature made Fri 16 Sep 2016 19:54:54 BST # gpg: using RSA key 0x281F0DB8D28D5469 # gpg: Good signature from "Michael S. Tsirkin <mst@kernel.org>" # gpg: aka "Michael S. Tsirkin <mst@redhat.com>" # Primary key fingerprint: 0270 606B 6F3C DF3D 0B17 0970 C350 3912 AFBE 8E67 # Subkey fingerprint: 5D09 FD08 71C8 F85B 94CA 8A0D 281F 0DB8 D28D 5469 * remotes/mst/tags/for_upstream: MAINTAINERS: add virtio-* tests virtio-bus: Plug devices after features are negotiated Signed-off-by: Peter Maydell <peter.maydell@linaro.org> # Conflicts: # MAINTAINERS
141 lines
5.3 KiB
C
141 lines
5.3 KiB
C
/*
|
|
* VirtioBus
|
|
*
|
|
* Copyright (C) 2012 : GreenSocs Ltd
|
|
* http://www.greensocs.com/ , email: info@greensocs.com
|
|
*
|
|
* Developed by :
|
|
* Frederic Konrad <fred.konrad@greensocs.com>
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 2 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License along
|
|
* with this program; if not, see <http://www.gnu.org/licenses/>.
|
|
*
|
|
*/
|
|
|
|
#ifndef VIRTIO_BUS_H
|
|
#define VIRTIO_BUS_H
|
|
|
|
#include "hw/qdev.h"
|
|
#include "sysemu/sysemu.h"
|
|
#include "hw/virtio/virtio.h"
|
|
|
|
#define TYPE_VIRTIO_BUS "virtio-bus"
|
|
#define VIRTIO_BUS_GET_CLASS(obj) \
|
|
OBJECT_GET_CLASS(VirtioBusClass, obj, TYPE_VIRTIO_BUS)
|
|
#define VIRTIO_BUS_CLASS(klass) \
|
|
OBJECT_CLASS_CHECK(VirtioBusClass, klass, TYPE_VIRTIO_BUS)
|
|
#define VIRTIO_BUS(obj) OBJECT_CHECK(VirtioBusState, (obj), TYPE_VIRTIO_BUS)
|
|
|
|
typedef struct VirtioBusState VirtioBusState;
|
|
|
|
typedef struct VirtioBusClass {
|
|
/* This is what a VirtioBus must implement */
|
|
BusClass parent;
|
|
void (*notify)(DeviceState *d, uint16_t vector);
|
|
void (*save_config)(DeviceState *d, QEMUFile *f);
|
|
void (*save_queue)(DeviceState *d, int n, QEMUFile *f);
|
|
void (*save_extra_state)(DeviceState *d, QEMUFile *f);
|
|
int (*load_config)(DeviceState *d, QEMUFile *f);
|
|
int (*load_queue)(DeviceState *d, int n, QEMUFile *f);
|
|
int (*load_done)(DeviceState *d, QEMUFile *f);
|
|
int (*load_extra_state)(DeviceState *d, QEMUFile *f);
|
|
bool (*has_extra_state)(DeviceState *d);
|
|
bool (*query_guest_notifiers)(DeviceState *d);
|
|
int (*set_guest_notifiers)(DeviceState *d, int nvqs, bool assign);
|
|
void (*vmstate_change)(DeviceState *d, bool running);
|
|
/*
|
|
* Expose the features the transport layer supports before
|
|
* the negotiation takes place.
|
|
*/
|
|
void (*pre_plugged)(DeviceState *d, Error **errp);
|
|
/*
|
|
* transport independent init function.
|
|
* This is called by virtio-bus just after the device is plugged.
|
|
*/
|
|
void (*device_plugged)(DeviceState *d, Error **errp);
|
|
/*
|
|
* transport independent exit function.
|
|
* This is called by virtio-bus just before the device is unplugged.
|
|
*/
|
|
void (*device_unplugged)(DeviceState *d);
|
|
int (*query_nvectors)(DeviceState *d);
|
|
/*
|
|
* ioeventfd handling: if the transport implements ioeventfd_started,
|
|
* it must implement the other ioeventfd callbacks as well
|
|
*/
|
|
/* Returns true if the ioeventfd has been started for the device. */
|
|
bool (*ioeventfd_started)(DeviceState *d);
|
|
/*
|
|
* Sets the 'ioeventfd started' state after the ioeventfd has been
|
|
* started/stopped for the device. err signifies whether an error
|
|
* had occurred.
|
|
*/
|
|
void (*ioeventfd_set_started)(DeviceState *d, bool started, bool err);
|
|
/* Returns true if the ioeventfd has been disabled for the device. */
|
|
bool (*ioeventfd_disabled)(DeviceState *d);
|
|
/* Sets the 'ioeventfd disabled' state for the device. */
|
|
void (*ioeventfd_set_disabled)(DeviceState *d, bool disabled);
|
|
/*
|
|
* Assigns/deassigns the ioeventfd backing for the transport on
|
|
* the device for queue number n. Returns an error value on
|
|
* failure.
|
|
*/
|
|
int (*ioeventfd_assign)(DeviceState *d, EventNotifier *notifier,
|
|
int n, bool assign);
|
|
/*
|
|
* Does the transport have variable vring alignment?
|
|
* (ie can it ever call virtio_queue_set_align()?)
|
|
* Note that changing this will break migration for this transport.
|
|
*/
|
|
bool has_variable_vring_alignment;
|
|
} VirtioBusClass;
|
|
|
|
struct VirtioBusState {
|
|
BusState parent_obj;
|
|
};
|
|
|
|
void virtio_bus_device_plugged(VirtIODevice *vdev, Error **errp);
|
|
void virtio_bus_reset(VirtioBusState *bus);
|
|
void virtio_bus_device_unplugged(VirtIODevice *bus);
|
|
/* Get the device id of the plugged device. */
|
|
uint16_t virtio_bus_get_vdev_id(VirtioBusState *bus);
|
|
/* Get the config_len field of the plugged device. */
|
|
size_t virtio_bus_get_vdev_config_len(VirtioBusState *bus);
|
|
/* Get bad features of the plugged device. */
|
|
uint32_t virtio_bus_get_vdev_bad_features(VirtioBusState *bus);
|
|
/* Get config of the plugged device. */
|
|
void virtio_bus_get_vdev_config(VirtioBusState *bus, uint8_t *config);
|
|
/* Set config of the plugged device. */
|
|
void virtio_bus_set_vdev_config(VirtioBusState *bus, uint8_t *config);
|
|
|
|
static inline VirtIODevice *virtio_bus_get_device(VirtioBusState *bus)
|
|
{
|
|
BusState *qbus = &bus->parent_obj;
|
|
BusChild *kid = QTAILQ_FIRST(&qbus->children);
|
|
DeviceState *qdev = kid ? kid->child : NULL;
|
|
|
|
/* This is used on the data path, the cast is guaranteed
|
|
* to succeed by the qdev machinery.
|
|
*/
|
|
return (VirtIODevice *)qdev;
|
|
}
|
|
|
|
/* Start the ioeventfd. */
|
|
void virtio_bus_start_ioeventfd(VirtioBusState *bus);
|
|
/* Stop the ioeventfd. */
|
|
void virtio_bus_stop_ioeventfd(VirtioBusState *bus);
|
|
/* Switch from/to the generic ioeventfd handler */
|
|
int virtio_bus_set_host_notifier(VirtioBusState *bus, int n, bool assign);
|
|
|
|
#endif /* VIRTIO_BUS_H */
|