2019-05-19 12:08:20 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-only
|
2007-10-22 01:03:36 +00:00
|
|
|
#include <linux/virtio.h>
|
|
|
|
#include <linux/spinlock.h>
|
|
|
|
#include <linux/virtio_config.h>
|
2011-07-03 20:20:30 +00:00
|
|
|
#include <linux/module.h>
|
2012-05-03 02:20:51 +00:00
|
|
|
#include <linux/idr.h>
|
2014-12-04 16:49:58 +00:00
|
|
|
#include <uapi/linux/virtio_ids.h>
|
2007-10-22 01:03:36 +00:00
|
|
|
|
2008-05-30 20:09:42 +00:00
|
|
|
/* Unique numbering for virtio devices. */
|
2012-05-03 02:20:51 +00:00
|
|
|
static DEFINE_IDA(virtio_index_ida);
|
2008-05-30 20:09:42 +00:00
|
|
|
|
2007-10-22 01:03:36 +00:00
|
|
|
static ssize_t device_show(struct device *_d,
|
|
|
|
struct device_attribute *attr, char *buf)
|
|
|
|
{
|
2012-12-11 00:34:50 +00:00
|
|
|
struct virtio_device *dev = dev_to_virtio(_d);
|
2010-11-10 06:20:29 +00:00
|
|
|
return sprintf(buf, "0x%04x\n", dev->id.device);
|
2007-10-22 01:03:36 +00:00
|
|
|
}
|
2013-10-08 01:27:39 +00:00
|
|
|
static DEVICE_ATTR_RO(device);
|
|
|
|
|
2007-10-22 01:03:36 +00:00
|
|
|
static ssize_t vendor_show(struct device *_d,
|
|
|
|
struct device_attribute *attr, char *buf)
|
|
|
|
{
|
2012-12-11 00:34:50 +00:00
|
|
|
struct virtio_device *dev = dev_to_virtio(_d);
|
2010-11-10 06:20:29 +00:00
|
|
|
return sprintf(buf, "0x%04x\n", dev->id.vendor);
|
2007-10-22 01:03:36 +00:00
|
|
|
}
|
2013-10-08 01:27:39 +00:00
|
|
|
static DEVICE_ATTR_RO(vendor);
|
|
|
|
|
2007-10-22 01:03:36 +00:00
|
|
|
static ssize_t status_show(struct device *_d,
|
|
|
|
struct device_attribute *attr, char *buf)
|
|
|
|
{
|
2012-12-11 00:34:50 +00:00
|
|
|
struct virtio_device *dev = dev_to_virtio(_d);
|
2010-11-10 06:20:29 +00:00
|
|
|
return sprintf(buf, "0x%08x\n", dev->config->get_status(dev));
|
2007-10-22 01:03:36 +00:00
|
|
|
}
|
2013-10-08 01:27:39 +00:00
|
|
|
static DEVICE_ATTR_RO(status);
|
|
|
|
|
2007-10-22 01:03:39 +00:00
|
|
|
static ssize_t modalias_show(struct device *_d,
|
|
|
|
struct device_attribute *attr, char *buf)
|
|
|
|
{
|
2012-12-11 00:34:50 +00:00
|
|
|
struct virtio_device *dev = dev_to_virtio(_d);
|
2007-10-22 01:03:39 +00:00
|
|
|
return sprintf(buf, "virtio:d%08Xv%08X\n",
|
|
|
|
dev->id.device, dev->id.vendor);
|
|
|
|
}
|
2013-10-08 01:27:39 +00:00
|
|
|
static DEVICE_ATTR_RO(modalias);
|
|
|
|
|
2009-06-13 04:16:37 +00:00
|
|
|
static ssize_t features_show(struct device *_d,
|
|
|
|
struct device_attribute *attr, char *buf)
|
|
|
|
{
|
2012-12-11 00:34:50 +00:00
|
|
|
struct virtio_device *dev = dev_to_virtio(_d);
|
2009-06-13 04:16:37 +00:00
|
|
|
unsigned int i;
|
|
|
|
ssize_t len = 0;
|
|
|
|
|
|
|
|
/* We actually represent this as a bitstring, as it could be
|
|
|
|
* arbitrary length in future. */
|
2014-10-07 14:39:42 +00:00
|
|
|
for (i = 0; i < sizeof(dev->features)*8; i++)
|
2009-06-13 04:16:37 +00:00
|
|
|
len += sprintf(buf+len, "%c",
|
2014-10-07 14:39:42 +00:00
|
|
|
__virtio_test_bit(dev, i) ? '1' : '0');
|
2009-06-13 04:16:37 +00:00
|
|
|
len += sprintf(buf+len, "\n");
|
|
|
|
return len;
|
|
|
|
}
|
2013-10-08 01:27:39 +00:00
|
|
|
static DEVICE_ATTR_RO(features);
|
|
|
|
|
|
|
|
static struct attribute *virtio_dev_attrs[] = {
|
|
|
|
&dev_attr_device.attr,
|
|
|
|
&dev_attr_vendor.attr,
|
|
|
|
&dev_attr_status.attr,
|
|
|
|
&dev_attr_modalias.attr,
|
|
|
|
&dev_attr_features.attr,
|
|
|
|
NULL,
|
2007-10-22 01:03:36 +00:00
|
|
|
};
|
2013-10-08 01:27:39 +00:00
|
|
|
ATTRIBUTE_GROUPS(virtio_dev);
|
2007-10-22 01:03:36 +00:00
|
|
|
|
|
|
|
static inline int virtio_id_match(const struct virtio_device *dev,
|
|
|
|
const struct virtio_device_id *id)
|
|
|
|
{
|
2009-05-26 13:46:10 +00:00
|
|
|
if (id->device != dev->id.device && id->device != VIRTIO_DEV_ANY_ID)
|
2007-10-22 01:03:36 +00:00
|
|
|
return 0;
|
|
|
|
|
2009-05-26 13:46:09 +00:00
|
|
|
return id->vendor == VIRTIO_DEV_ANY_ID || id->vendor == dev->id.vendor;
|
2007-10-22 01:03:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* This looks through all the IDs a driver claims to support. If any of them
|
|
|
|
* match, we return 1 and the kernel will call virtio_dev_probe(). */
|
|
|
|
static int virtio_dev_match(struct device *_dv, struct device_driver *_dr)
|
|
|
|
{
|
|
|
|
unsigned int i;
|
2012-12-11 00:34:50 +00:00
|
|
|
struct virtio_device *dev = dev_to_virtio(_dv);
|
2007-10-22 01:03:36 +00:00
|
|
|
const struct virtio_device_id *ids;
|
|
|
|
|
2012-12-10 08:38:33 +00:00
|
|
|
ids = drv_to_virtio(_dr)->id_table;
|
2007-10-22 01:03:36 +00:00
|
|
|
for (i = 0; ids[i].device; i++)
|
|
|
|
if (virtio_id_match(dev, &ids[i]))
|
|
|
|
return 1;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2007-10-22 01:03:39 +00:00
|
|
|
static int virtio_uevent(struct device *_dv, struct kobj_uevent_env *env)
|
|
|
|
{
|
2012-12-11 00:34:50 +00:00
|
|
|
struct virtio_device *dev = dev_to_virtio(_dv);
|
2007-10-22 01:03:39 +00:00
|
|
|
|
|
|
|
return add_uevent_var(env, "MODALIAS=virtio:d%08Xv%08X",
|
|
|
|
dev->id.device, dev->id.vendor);
|
|
|
|
}
|
|
|
|
|
2008-05-03 02:50:50 +00:00
|
|
|
void virtio_check_driver_offered_feature(const struct virtio_device *vdev,
|
|
|
|
unsigned int fbit)
|
|
|
|
{
|
|
|
|
unsigned int i;
|
2012-12-10 08:38:33 +00:00
|
|
|
struct virtio_driver *drv = drv_to_virtio(vdev->dev.driver);
|
2008-05-03 02:50:50 +00:00
|
|
|
|
|
|
|
for (i = 0; i < drv->feature_table_size; i++)
|
|
|
|
if (drv->feature_table[i] == fbit)
|
|
|
|
return;
|
2014-10-23 15:07:47 +00:00
|
|
|
|
|
|
|
if (drv->feature_table_legacy) {
|
|
|
|
for (i = 0; i < drv->feature_table_size_legacy; i++)
|
|
|
|
if (drv->feature_table_legacy[i] == fbit)
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2008-05-03 02:50:50 +00:00
|
|
|
BUG();
|
|
|
|
}
|
|
|
|
EXPORT_SYMBOL_GPL(virtio_check_driver_offered_feature);
|
|
|
|
|
2014-10-14 23:51:55 +00:00
|
|
|
static void __virtio_config_changed(struct virtio_device *dev)
|
|
|
|
{
|
|
|
|
struct virtio_driver *drv = drv_to_virtio(dev->dev.driver);
|
|
|
|
|
|
|
|
if (!dev->config_enabled)
|
|
|
|
dev->config_change_pending = true;
|
|
|
|
else if (drv && drv->config_changed)
|
|
|
|
drv->config_changed(dev);
|
|
|
|
}
|
|
|
|
|
|
|
|
void virtio_config_changed(struct virtio_device *dev)
|
|
|
|
{
|
|
|
|
unsigned long flags;
|
|
|
|
|
|
|
|
spin_lock_irqsave(&dev->config_lock, flags);
|
|
|
|
__virtio_config_changed(dev);
|
|
|
|
spin_unlock_irqrestore(&dev->config_lock, flags);
|
|
|
|
}
|
|
|
|
EXPORT_SYMBOL_GPL(virtio_config_changed);
|
|
|
|
|
2017-02-03 03:16:01 +00:00
|
|
|
void virtio_config_disable(struct virtio_device *dev)
|
2014-10-14 23:51:55 +00:00
|
|
|
{
|
|
|
|
spin_lock_irq(&dev->config_lock);
|
|
|
|
dev->config_enabled = false;
|
|
|
|
spin_unlock_irq(&dev->config_lock);
|
|
|
|
}
|
2017-02-03 03:16:01 +00:00
|
|
|
EXPORT_SYMBOL_GPL(virtio_config_disable);
|
2014-10-14 23:51:55 +00:00
|
|
|
|
2017-02-03 03:16:01 +00:00
|
|
|
void virtio_config_enable(struct virtio_device *dev)
|
2014-10-14 23:51:55 +00:00
|
|
|
{
|
|
|
|
spin_lock_irq(&dev->config_lock);
|
|
|
|
dev->config_enabled = true;
|
|
|
|
if (dev->config_change_pending)
|
|
|
|
__virtio_config_changed(dev);
|
|
|
|
dev->config_change_pending = false;
|
|
|
|
spin_unlock_irq(&dev->config_lock);
|
|
|
|
}
|
2017-02-03 03:16:01 +00:00
|
|
|
EXPORT_SYMBOL_GPL(virtio_config_enable);
|
|
|
|
|
|
|
|
void virtio_add_status(struct virtio_device *dev, unsigned int status)
|
|
|
|
{
|
2019-01-31 12:53:14 +00:00
|
|
|
might_sleep();
|
2017-02-03 03:16:01 +00:00
|
|
|
dev->config->set_status(dev, dev->config->get_status(dev) | status);
|
|
|
|
}
|
|
|
|
EXPORT_SYMBOL_GPL(virtio_add_status);
|
2014-10-14 23:51:55 +00:00
|
|
|
|
2017-02-03 03:16:01 +00:00
|
|
|
int virtio_finalize_features(struct virtio_device *dev)
|
2014-12-11 11:37:13 +00:00
|
|
|
{
|
|
|
|
int ret = dev->config->finalize_features(dev);
|
|
|
|
unsigned status;
|
|
|
|
|
2019-01-31 12:53:14 +00:00
|
|
|
might_sleep();
|
2014-12-11 11:37:13 +00:00
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
|
2020-09-10 08:53:49 +00:00
|
|
|
ret = arch_has_restricted_virtio_memory_access();
|
|
|
|
if (ret) {
|
|
|
|
if (!virtio_has_feature(dev, VIRTIO_F_VERSION_1)) {
|
|
|
|
dev_warn(&dev->dev,
|
|
|
|
"device must provide VIRTIO_F_VERSION_1\n");
|
|
|
|
return -ENODEV;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!virtio_has_feature(dev, VIRTIO_F_ACCESS_PLATFORM)) {
|
|
|
|
dev_warn(&dev->dev,
|
|
|
|
"device must provide VIRTIO_F_ACCESS_PLATFORM\n");
|
|
|
|
return -ENODEV;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-12-11 11:37:13 +00:00
|
|
|
if (!virtio_has_feature(dev, VIRTIO_F_VERSION_1))
|
|
|
|
return 0;
|
|
|
|
|
2017-02-03 03:16:01 +00:00
|
|
|
virtio_add_status(dev, VIRTIO_CONFIG_S_FEATURES_OK);
|
2014-12-11 11:37:13 +00:00
|
|
|
status = dev->config->get_status(dev);
|
|
|
|
if (!(status & VIRTIO_CONFIG_S_FEATURES_OK)) {
|
|
|
|
dev_err(&dev->dev, "virtio: device refuses features: %x\n",
|
|
|
|
status);
|
|
|
|
return -ENODEV;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
2017-02-03 03:16:01 +00:00
|
|
|
EXPORT_SYMBOL_GPL(virtio_finalize_features);
|
2014-12-11 11:37:13 +00:00
|
|
|
|
2007-10-22 01:03:36 +00:00
|
|
|
static int virtio_dev_probe(struct device *_d)
|
|
|
|
{
|
2008-05-03 02:50:50 +00:00
|
|
|
int err, i;
|
2012-12-11 00:34:50 +00:00
|
|
|
struct virtio_device *dev = dev_to_virtio(_d);
|
2012-12-10 08:38:33 +00:00
|
|
|
struct virtio_driver *drv = drv_to_virtio(dev->dev.driver);
|
2014-10-07 14:39:43 +00:00
|
|
|
u64 device_features;
|
2014-10-23 14:57:30 +00:00
|
|
|
u64 driver_features;
|
2014-10-23 15:07:47 +00:00
|
|
|
u64 driver_features_legacy;
|
2007-10-22 01:03:36 +00:00
|
|
|
|
2008-05-03 02:50:50 +00:00
|
|
|
/* We have a driver! */
|
2017-02-03 03:16:01 +00:00
|
|
|
virtio_add_status(dev, VIRTIO_CONFIG_S_DRIVER);
|
2008-05-03 02:50:50 +00:00
|
|
|
|
|
|
|
/* Figure out what features the device supports. */
|
|
|
|
device_features = dev->config->get_features(dev);
|
|
|
|
|
2014-10-23 14:57:30 +00:00
|
|
|
/* Figure out what features the driver supports. */
|
|
|
|
driver_features = 0;
|
2008-05-03 02:50:50 +00:00
|
|
|
for (i = 0; i < drv->feature_table_size; i++) {
|
|
|
|
unsigned int f = drv->feature_table[i];
|
2014-10-07 14:39:43 +00:00
|
|
|
BUG_ON(f >= 64);
|
2014-10-23 14:57:30 +00:00
|
|
|
driver_features |= (1ULL << f);
|
2008-05-03 02:50:50 +00:00
|
|
|
}
|
|
|
|
|
2014-10-23 15:07:47 +00:00
|
|
|
/* Some drivers have a separate feature table for virtio v1.0 */
|
|
|
|
if (drv->feature_table_legacy) {
|
|
|
|
driver_features_legacy = 0;
|
|
|
|
for (i = 0; i < drv->feature_table_size_legacy; i++) {
|
|
|
|
unsigned int f = drv->feature_table_legacy[i];
|
|
|
|
BUG_ON(f >= 64);
|
|
|
|
driver_features_legacy |= (1ULL << f);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
driver_features_legacy = driver_features;
|
|
|
|
}
|
|
|
|
|
2014-12-01 13:52:40 +00:00
|
|
|
if (device_features & (1ULL << VIRTIO_F_VERSION_1))
|
2014-10-23 15:07:47 +00:00
|
|
|
dev->features = driver_features & device_features;
|
|
|
|
else
|
|
|
|
dev->features = driver_features_legacy & device_features;
|
2014-10-23 14:57:30 +00:00
|
|
|
|
2008-07-25 17:06:07 +00:00
|
|
|
/* Transport features always preserved to pass to finalize_features. */
|
2008-07-25 17:06:07 +00:00
|
|
|
for (i = VIRTIO_TRANSPORT_F_START; i < VIRTIO_TRANSPORT_F_END; i++)
|
2014-10-07 14:39:43 +00:00
|
|
|
if (device_features & (1ULL << i))
|
2014-10-07 14:39:42 +00:00
|
|
|
__virtio_set_bit(dev, i);
|
2008-07-25 17:06:07 +00:00
|
|
|
|
2017-03-29 16:06:20 +00:00
|
|
|
if (drv->validate) {
|
|
|
|
err = drv->validate(dev);
|
|
|
|
if (err)
|
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
|
2014-12-11 11:37:13 +00:00
|
|
|
err = virtio_finalize_features(dev);
|
2014-12-04 18:20:27 +00:00
|
|
|
if (err)
|
|
|
|
goto err;
|
2009-06-13 04:16:35 +00:00
|
|
|
|
2007-10-22 01:03:36 +00:00
|
|
|
err = drv->probe(dev);
|
|
|
|
if (err)
|
2014-10-22 14:41:38 +00:00
|
|
|
goto err;
|
2014-10-14 23:51:55 +00:00
|
|
|
|
2015-02-17 05:42:44 +00:00
|
|
|
/* If probe didn't do it, mark device DRIVER_OK ourselves. */
|
|
|
|
if (!(dev->config->get_status(dev) & VIRTIO_CONFIG_S_DRIVER_OK))
|
|
|
|
virtio_device_ready(dev);
|
|
|
|
|
2014-10-22 14:41:38 +00:00
|
|
|
if (drv->scan)
|
|
|
|
drv->scan(dev);
|
2009-06-13 04:16:35 +00:00
|
|
|
|
2014-10-22 14:41:38 +00:00
|
|
|
virtio_config_enable(dev);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
err:
|
2017-02-03 03:16:01 +00:00
|
|
|
virtio_add_status(dev, VIRTIO_CONFIG_S_FAILED);
|
2007-10-22 01:03:36 +00:00
|
|
|
return err;
|
2014-10-22 14:41:38 +00:00
|
|
|
|
2007-10-22 01:03:36 +00:00
|
|
|
}
|
|
|
|
|
2007-11-19 16:20:42 +00:00
|
|
|
static int virtio_dev_remove(struct device *_d)
|
|
|
|
{
|
2012-12-11 00:34:50 +00:00
|
|
|
struct virtio_device *dev = dev_to_virtio(_d);
|
2012-12-10 08:38:33 +00:00
|
|
|
struct virtio_driver *drv = drv_to_virtio(dev->dev.driver);
|
2007-11-19 16:20:42 +00:00
|
|
|
|
2014-10-14 23:51:55 +00:00
|
|
|
virtio_config_disable(dev);
|
|
|
|
|
2007-11-19 16:20:42 +00:00
|
|
|
drv->remove(dev);
|
2008-02-05 04:50:03 +00:00
|
|
|
|
|
|
|
/* Driver should have reset device. */
|
2012-09-28 05:35:16 +00:00
|
|
|
WARN_ON_ONCE(dev->config->get_status(dev));
|
2008-02-05 04:50:03 +00:00
|
|
|
|
|
|
|
/* Acknowledge the device's existence again. */
|
2017-02-03 03:16:01 +00:00
|
|
|
virtio_add_status(dev, VIRTIO_CONFIG_S_ACKNOWLEDGE);
|
2007-11-19 16:20:42 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2008-06-13 12:46:40 +00:00
|
|
|
static struct bus_type virtio_bus = {
|
|
|
|
.name = "virtio",
|
|
|
|
.match = virtio_dev_match,
|
2013-10-08 01:27:39 +00:00
|
|
|
.dev_groups = virtio_dev_groups,
|
2008-06-13 12:46:40 +00:00
|
|
|
.uevent = virtio_uevent,
|
|
|
|
.probe = virtio_dev_probe,
|
|
|
|
.remove = virtio_dev_remove,
|
|
|
|
};
|
|
|
|
|
2007-10-22 01:03:36 +00:00
|
|
|
int register_virtio_driver(struct virtio_driver *driver)
|
|
|
|
{
|
2008-05-03 02:50:50 +00:00
|
|
|
/* Catch this early. */
|
|
|
|
BUG_ON(driver->feature_table_size && !driver->feature_table);
|
2007-10-22 01:03:36 +00:00
|
|
|
driver->driver.bus = &virtio_bus;
|
|
|
|
return driver_register(&driver->driver);
|
|
|
|
}
|
|
|
|
EXPORT_SYMBOL_GPL(register_virtio_driver);
|
|
|
|
|
|
|
|
void unregister_virtio_driver(struct virtio_driver *driver)
|
|
|
|
{
|
|
|
|
driver_unregister(&driver->driver);
|
|
|
|
}
|
|
|
|
EXPORT_SYMBOL_GPL(unregister_virtio_driver);
|
|
|
|
|
2017-12-21 12:39:50 +00:00
|
|
|
/**
|
|
|
|
* register_virtio_device - register virtio device
|
|
|
|
* @dev : virtio device to be registered
|
|
|
|
*
|
|
|
|
* On error, the caller must call put_device on &@dev->dev (and not kfree),
|
|
|
|
* as another code path may have obtained a reference to @dev.
|
|
|
|
*
|
|
|
|
* Returns: 0 on suceess, -error on failure
|
|
|
|
*/
|
2007-10-22 01:03:36 +00:00
|
|
|
int register_virtio_device(struct virtio_device *dev)
|
|
|
|
{
|
|
|
|
int err;
|
|
|
|
|
|
|
|
dev->dev.bus = &virtio_bus;
|
2017-12-21 12:39:50 +00:00
|
|
|
device_initialize(&dev->dev);
|
2008-05-30 20:09:42 +00:00
|
|
|
|
|
|
|
/* Assign a unique device index and hence name. */
|
2012-05-03 02:20:51 +00:00
|
|
|
err = ida_simple_get(&virtio_index_ida, 0, 0, GFP_KERNEL);
|
|
|
|
if (err < 0)
|
|
|
|
goto out;
|
|
|
|
|
|
|
|
dev->index = err;
|
virtio: struct device - replace bus_id with dev_name(), dev_set_name()
This patch is part of a larger patch series which will remove
the "char bus_id[20]" name string from struct device. The device
name is managed in the kobject anyway, and without any size
limitation, and just needlessly copied into "struct device".
To set and read the device name dev_name(dev) and dev_set_name(dev)
must be used. If your code uses static kobjects, which it shouldn't
do, "const char *init_name" can be used to statically provide the
name the registered device should have. At registration time, the
init_name field is cleared, to enforce the use of dev_name(dev) to
access the device name at a later time.
We need to get rid of all occurrences of bus_id in the entire tree
to be able to enable the new interface. Please apply this patch,
and possibly convert any remaining remaining occurrences of bus_id.
We want to submit a patch to -next, which will remove bus_id from
"struct device", to find the remaining pieces to convert, and finally
switch over to the new api, which will remove the 20 bytes array
and does no longer have a size limitation.
Acked-by: Greg Kroah-Hartman <gregkh@suse.de>
Signed-off-by: Kay Sievers <kay.sievers@vrfy.org>
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
2008-12-30 15:25:56 +00:00
|
|
|
dev_set_name(&dev->dev, "virtio%u", dev->index);
|
2007-10-22 01:03:36 +00:00
|
|
|
|
2014-10-14 23:51:55 +00:00
|
|
|
spin_lock_init(&dev->config_lock);
|
|
|
|
dev->config_enabled = false;
|
|
|
|
dev->config_change_pending = false;
|
|
|
|
|
2008-02-05 04:50:03 +00:00
|
|
|
/* We always start by resetting the device, in case a previous
|
|
|
|
* driver messed it up. This also tests that code path a little. */
|
|
|
|
dev->config->reset(dev);
|
|
|
|
|
2007-10-22 01:03:36 +00:00
|
|
|
/* Acknowledge that we've seen the device. */
|
2017-02-03 03:16:01 +00:00
|
|
|
virtio_add_status(dev, VIRTIO_CONFIG_S_ACKNOWLEDGE);
|
2007-10-22 01:03:36 +00:00
|
|
|
|
2009-06-13 04:16:35 +00:00
|
|
|
INIT_LIST_HEAD(&dev->vqs);
|
|
|
|
|
2017-12-21 12:39:50 +00:00
|
|
|
/*
|
|
|
|
* device_add() causes the bus infrastructure to look for a matching
|
|
|
|
* driver.
|
|
|
|
*/
|
|
|
|
err = device_add(&dev->dev);
|
2017-11-29 01:23:01 +00:00
|
|
|
if (err)
|
|
|
|
ida_simple_remove(&virtio_index_ida, dev->index);
|
2012-05-03 02:20:51 +00:00
|
|
|
out:
|
2007-10-22 01:03:36 +00:00
|
|
|
if (err)
|
2017-02-03 03:16:01 +00:00
|
|
|
virtio_add_status(dev, VIRTIO_CONFIG_S_FAILED);
|
2007-10-22 01:03:36 +00:00
|
|
|
return err;
|
|
|
|
}
|
|
|
|
EXPORT_SYMBOL_GPL(register_virtio_device);
|
|
|
|
|
2020-08-18 07:13:41 +00:00
|
|
|
bool is_virtio_device(struct device *dev)
|
|
|
|
{
|
|
|
|
return dev->bus == &virtio_bus;
|
|
|
|
}
|
|
|
|
EXPORT_SYMBOL_GPL(is_virtio_device);
|
|
|
|
|
2007-10-22 01:03:36 +00:00
|
|
|
void unregister_virtio_device(struct virtio_device *dev)
|
|
|
|
{
|
2012-11-09 04:24:12 +00:00
|
|
|
int index = dev->index; /* save for after device release */
|
|
|
|
|
2007-10-22 01:03:36 +00:00
|
|
|
device_unregister(&dev->dev);
|
2012-11-09 04:24:12 +00:00
|
|
|
ida_simple_remove(&virtio_index_ida, index);
|
2007-10-22 01:03:36 +00:00
|
|
|
}
|
|
|
|
EXPORT_SYMBOL_GPL(unregister_virtio_device);
|
|
|
|
|
2014-10-14 00:10:35 +00:00
|
|
|
#ifdef CONFIG_PM_SLEEP
|
|
|
|
int virtio_device_freeze(struct virtio_device *dev)
|
|
|
|
{
|
|
|
|
struct virtio_driver *drv = drv_to_virtio(dev->dev.driver);
|
|
|
|
|
2014-10-14 23:51:55 +00:00
|
|
|
virtio_config_disable(dev);
|
|
|
|
|
2014-10-14 00:10:35 +00:00
|
|
|
dev->failed = dev->config->get_status(dev) & VIRTIO_CONFIG_S_FAILED;
|
|
|
|
|
|
|
|
if (drv && drv->freeze)
|
|
|
|
return drv->freeze(dev);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
EXPORT_SYMBOL_GPL(virtio_device_freeze);
|
|
|
|
|
|
|
|
int virtio_device_restore(struct virtio_device *dev)
|
|
|
|
{
|
|
|
|
struct virtio_driver *drv = drv_to_virtio(dev->dev.driver);
|
2014-12-04 18:20:27 +00:00
|
|
|
int ret;
|
2014-10-14 00:10:35 +00:00
|
|
|
|
|
|
|
/* We always start by resetting the device, in case a previous
|
|
|
|
* driver messed it up. */
|
|
|
|
dev->config->reset(dev);
|
|
|
|
|
|
|
|
/* Acknowledge that we've seen the device. */
|
2017-02-03 03:16:01 +00:00
|
|
|
virtio_add_status(dev, VIRTIO_CONFIG_S_ACKNOWLEDGE);
|
2014-10-14 00:10:35 +00:00
|
|
|
|
|
|
|
/* Maybe driver failed before freeze.
|
|
|
|
* Restore the failed status, for debugging. */
|
|
|
|
if (dev->failed)
|
2017-02-03 03:16:01 +00:00
|
|
|
virtio_add_status(dev, VIRTIO_CONFIG_S_FAILED);
|
2014-10-14 00:10:35 +00:00
|
|
|
|
|
|
|
if (!drv)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
/* We have a driver! */
|
2017-02-03 03:16:01 +00:00
|
|
|
virtio_add_status(dev, VIRTIO_CONFIG_S_DRIVER);
|
2014-10-14 00:10:35 +00:00
|
|
|
|
2014-12-11 11:37:13 +00:00
|
|
|
ret = virtio_finalize_features(dev);
|
2014-12-04 18:20:27 +00:00
|
|
|
if (ret)
|
|
|
|
goto err;
|
2014-10-14 00:10:35 +00:00
|
|
|
|
|
|
|
if (drv->restore) {
|
2014-12-04 18:20:27 +00:00
|
|
|
ret = drv->restore(dev);
|
|
|
|
if (ret)
|
|
|
|
goto err;
|
2014-10-14 00:10:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Finally, tell the device we're all set */
|
2017-02-03 03:16:01 +00:00
|
|
|
virtio_add_status(dev, VIRTIO_CONFIG_S_DRIVER_OK);
|
2014-10-14 00:10:35 +00:00
|
|
|
|
2014-10-14 23:51:55 +00:00
|
|
|
virtio_config_enable(dev);
|
|
|
|
|
2014-10-14 00:10:35 +00:00
|
|
|
return 0;
|
2014-12-04 18:20:27 +00:00
|
|
|
|
|
|
|
err:
|
2017-02-03 03:16:01 +00:00
|
|
|
virtio_add_status(dev, VIRTIO_CONFIG_S_FAILED);
|
2014-12-04 18:20:27 +00:00
|
|
|
return ret;
|
2014-10-14 00:10:35 +00:00
|
|
|
}
|
|
|
|
EXPORT_SYMBOL_GPL(virtio_device_restore);
|
|
|
|
#endif
|
|
|
|
|
2007-10-22 01:03:36 +00:00
|
|
|
static int virtio_init(void)
|
|
|
|
{
|
|
|
|
if (bus_register(&virtio_bus) != 0)
|
|
|
|
panic("virtio bus registration failed");
|
|
|
|
return 0;
|
|
|
|
}
|
2008-02-05 04:50:05 +00:00
|
|
|
|
|
|
|
static void __exit virtio_exit(void)
|
|
|
|
{
|
|
|
|
bus_unregister(&virtio_bus);
|
2015-09-17 00:29:17 +00:00
|
|
|
ida_destroy(&virtio_index_ida);
|
2008-02-05 04:50:05 +00:00
|
|
|
}
|
2007-10-22 01:03:36 +00:00
|
|
|
core_initcall(virtio_init);
|
2008-02-05 04:50:05 +00:00
|
|
|
module_exit(virtio_exit);
|
|
|
|
|
|
|
|
MODULE_LICENSE("GPL");
|