| Rusty Russell | ec3d41c | 2007-10-22 11:03:36 +1000 | [diff] [blame] | 1 | #include <linux/virtio.h> | 
 | 2 | #include <linux/spinlock.h> | 
 | 3 | #include <linux/virtio_config.h> | 
 | 4 |  | 
| Rusty Russell | b769f57 | 2008-05-30 15:09:42 -0500 | [diff] [blame] | 5 | /* Unique numbering for virtio devices. */ | 
 | 6 | static unsigned int dev_index; | 
 | 7 |  | 
| Rusty Russell | ec3d41c | 2007-10-22 11:03:36 +1000 | [diff] [blame] | 8 | static ssize_t device_show(struct device *_d, | 
 | 9 | 			   struct device_attribute *attr, char *buf) | 
 | 10 | { | 
 | 11 | 	struct virtio_device *dev = container_of(_d,struct virtio_device,dev); | 
 | 12 | 	return sprintf(buf, "%hu", dev->id.device); | 
 | 13 | } | 
 | 14 | static ssize_t vendor_show(struct device *_d, | 
 | 15 | 			   struct device_attribute *attr, char *buf) | 
 | 16 | { | 
 | 17 | 	struct virtio_device *dev = container_of(_d,struct virtio_device,dev); | 
 | 18 | 	return sprintf(buf, "%hu", dev->id.vendor); | 
 | 19 | } | 
 | 20 | static ssize_t status_show(struct device *_d, | 
 | 21 | 			   struct device_attribute *attr, char *buf) | 
 | 22 | { | 
 | 23 | 	struct virtio_device *dev = container_of(_d,struct virtio_device,dev); | 
 | 24 | 	return sprintf(buf, "0x%08x", dev->config->get_status(dev)); | 
 | 25 | } | 
| Rusty Russell | b01d9f2 | 2007-10-22 11:03:39 +1000 | [diff] [blame] | 26 | static ssize_t modalias_show(struct device *_d, | 
 | 27 | 			     struct device_attribute *attr, char *buf) | 
 | 28 | { | 
 | 29 | 	struct virtio_device *dev = container_of(_d,struct virtio_device,dev); | 
 | 30 |  | 
 | 31 | 	return sprintf(buf, "virtio:d%08Xv%08X\n", | 
 | 32 | 		       dev->id.device, dev->id.vendor); | 
 | 33 | } | 
| Rusty Russell | ec3d41c | 2007-10-22 11:03:36 +1000 | [diff] [blame] | 34 | static struct device_attribute virtio_dev_attrs[] = { | 
 | 35 | 	__ATTR_RO(device), | 
 | 36 | 	__ATTR_RO(vendor), | 
 | 37 | 	__ATTR_RO(status), | 
| Rusty Russell | b01d9f2 | 2007-10-22 11:03:39 +1000 | [diff] [blame] | 38 | 	__ATTR_RO(modalias), | 
| Rusty Russell | ec3d41c | 2007-10-22 11:03:36 +1000 | [diff] [blame] | 39 | 	__ATTR_NULL | 
 | 40 | }; | 
 | 41 |  | 
 | 42 | static inline int virtio_id_match(const struct virtio_device *dev, | 
 | 43 | 				  const struct virtio_device_id *id) | 
 | 44 | { | 
 | 45 | 	if (id->device != dev->id.device) | 
 | 46 | 		return 0; | 
 | 47 |  | 
 | 48 | 	return id->vendor == VIRTIO_DEV_ANY_ID || id->vendor != dev->id.vendor; | 
 | 49 | } | 
 | 50 |  | 
 | 51 | /* This looks through all the IDs a driver claims to support.  If any of them | 
 | 52 |  * match, we return 1 and the kernel will call virtio_dev_probe(). */ | 
 | 53 | static int virtio_dev_match(struct device *_dv, struct device_driver *_dr) | 
 | 54 | { | 
 | 55 | 	unsigned int i; | 
 | 56 | 	struct virtio_device *dev = container_of(_dv,struct virtio_device,dev); | 
 | 57 | 	const struct virtio_device_id *ids; | 
 | 58 |  | 
 | 59 | 	ids = container_of(_dr, struct virtio_driver, driver)->id_table; | 
 | 60 | 	for (i = 0; ids[i].device; i++) | 
 | 61 | 		if (virtio_id_match(dev, &ids[i])) | 
 | 62 | 			return 1; | 
 | 63 | 	return 0; | 
 | 64 | } | 
 | 65 |  | 
| Rusty Russell | b01d9f2 | 2007-10-22 11:03:39 +1000 | [diff] [blame] | 66 | static int virtio_uevent(struct device *_dv, struct kobj_uevent_env *env) | 
 | 67 | { | 
 | 68 | 	struct virtio_device *dev = container_of(_dv,struct virtio_device,dev); | 
 | 69 |  | 
 | 70 | 	return add_uevent_var(env, "MODALIAS=virtio:d%08Xv%08X", | 
 | 71 | 			      dev->id.device, dev->id.vendor); | 
 | 72 | } | 
 | 73 |  | 
| Rusty Russell | ec3d41c | 2007-10-22 11:03:36 +1000 | [diff] [blame] | 74 | static void add_status(struct virtio_device *dev, unsigned status) | 
 | 75 | { | 
 | 76 | 	dev->config->set_status(dev, dev->config->get_status(dev) | status); | 
 | 77 | } | 
 | 78 |  | 
| Rusty Russell | c45a681 | 2008-05-02 21:50:50 -0500 | [diff] [blame] | 79 | void virtio_check_driver_offered_feature(const struct virtio_device *vdev, | 
 | 80 | 					 unsigned int fbit) | 
 | 81 | { | 
 | 82 | 	unsigned int i; | 
 | 83 | 	struct virtio_driver *drv = container_of(vdev->dev.driver, | 
 | 84 | 						 struct virtio_driver, driver); | 
 | 85 |  | 
 | 86 | 	for (i = 0; i < drv->feature_table_size; i++) | 
 | 87 | 		if (drv->feature_table[i] == fbit) | 
 | 88 | 			return; | 
 | 89 | 	BUG(); | 
 | 90 | } | 
 | 91 | EXPORT_SYMBOL_GPL(virtio_check_driver_offered_feature); | 
 | 92 |  | 
| Rusty Russell | ec3d41c | 2007-10-22 11:03:36 +1000 | [diff] [blame] | 93 | static int virtio_dev_probe(struct device *_d) | 
 | 94 | { | 
| Rusty Russell | c45a681 | 2008-05-02 21:50:50 -0500 | [diff] [blame] | 95 | 	int err, i; | 
| Rusty Russell | ec3d41c | 2007-10-22 11:03:36 +1000 | [diff] [blame] | 96 | 	struct virtio_device *dev = container_of(_d,struct virtio_device,dev); | 
 | 97 | 	struct virtio_driver *drv = container_of(dev->dev.driver, | 
 | 98 | 						 struct virtio_driver, driver); | 
| Rusty Russell | c45a681 | 2008-05-02 21:50:50 -0500 | [diff] [blame] | 99 | 	u32 device_features; | 
| Rusty Russell | ec3d41c | 2007-10-22 11:03:36 +1000 | [diff] [blame] | 100 |  | 
| Rusty Russell | c45a681 | 2008-05-02 21:50:50 -0500 | [diff] [blame] | 101 | 	/* We have a driver! */ | 
| Rusty Russell | ec3d41c | 2007-10-22 11:03:36 +1000 | [diff] [blame] | 102 | 	add_status(dev, VIRTIO_CONFIG_S_DRIVER); | 
| Rusty Russell | c45a681 | 2008-05-02 21:50:50 -0500 | [diff] [blame] | 103 |  | 
 | 104 | 	/* Figure out what features the device supports. */ | 
 | 105 | 	device_features = dev->config->get_features(dev); | 
 | 106 |  | 
 | 107 | 	/* Features supported by both device and driver into dev->features. */ | 
 | 108 | 	memset(dev->features, 0, sizeof(dev->features)); | 
 | 109 | 	for (i = 0; i < drv->feature_table_size; i++) { | 
 | 110 | 		unsigned int f = drv->feature_table[i]; | 
 | 111 | 		BUG_ON(f >= 32); | 
 | 112 | 		if (device_features & (1 << f)) | 
 | 113 | 			set_bit(f, dev->features); | 
 | 114 | 	} | 
 | 115 |  | 
| Rusty Russell | c624896 | 2008-07-25 12:06:07 -0500 | [diff] [blame] | 116 | 	/* Transport features always preserved to pass to finalize_features. */ | 
| Rusty Russell | dd7c7bc | 2008-07-25 12:06:07 -0500 | [diff] [blame] | 117 | 	for (i = VIRTIO_TRANSPORT_F_START; i < VIRTIO_TRANSPORT_F_END; i++) | 
 | 118 | 		if (device_features & (1 << i)) | 
 | 119 | 			set_bit(i, dev->features); | 
 | 120 |  | 
| Rusty Russell | ec3d41c | 2007-10-22 11:03:36 +1000 | [diff] [blame] | 121 | 	err = drv->probe(dev); | 
 | 122 | 	if (err) | 
 | 123 | 		add_status(dev, VIRTIO_CONFIG_S_FAILED); | 
| Rusty Russell | c45a681 | 2008-05-02 21:50:50 -0500 | [diff] [blame] | 124 | 	else { | 
| Rusty Russell | c624896 | 2008-07-25 12:06:07 -0500 | [diff] [blame] | 125 | 		dev->config->finalize_features(dev); | 
| Mark McLoughlin | b92dea6 | 2008-06-15 23:20:50 +1000 | [diff] [blame] | 126 | 		add_status(dev, VIRTIO_CONFIG_S_DRIVER_OK); | 
| Rusty Russell | c45a681 | 2008-05-02 21:50:50 -0500 | [diff] [blame] | 127 | 	} | 
| Rusty Russell | ec3d41c | 2007-10-22 11:03:36 +1000 | [diff] [blame] | 128 | 	return err; | 
 | 129 | } | 
 | 130 |  | 
| Rusty Russell | 74b2553 | 2007-11-19 11:20:42 -0500 | [diff] [blame] | 131 | static int virtio_dev_remove(struct device *_d) | 
 | 132 | { | 
 | 133 | 	struct virtio_device *dev = container_of(_d,struct virtio_device,dev); | 
 | 134 | 	struct virtio_driver *drv = container_of(dev->dev.driver, | 
 | 135 | 						 struct virtio_driver, driver); | 
 | 136 |  | 
| Rusty Russell | 74b2553 | 2007-11-19 11:20:42 -0500 | [diff] [blame] | 137 | 	drv->remove(dev); | 
| Rusty Russell | 6e5aa7e | 2008-02-04 23:50:03 -0500 | [diff] [blame] | 138 |  | 
 | 139 | 	/* Driver should have reset device. */ | 
 | 140 | 	BUG_ON(dev->config->get_status(dev)); | 
 | 141 |  | 
 | 142 | 	/* Acknowledge the device's existence again. */ | 
 | 143 | 	add_status(dev, VIRTIO_CONFIG_S_ACKNOWLEDGE); | 
| Rusty Russell | 74b2553 | 2007-11-19 11:20:42 -0500 | [diff] [blame] | 144 | 	return 0; | 
 | 145 | } | 
 | 146 |  | 
| Mark McLoughlin | e962fa6 | 2008-06-13 13:46:40 +0100 | [diff] [blame] | 147 | static struct bus_type virtio_bus = { | 
 | 148 | 	.name  = "virtio", | 
 | 149 | 	.match = virtio_dev_match, | 
 | 150 | 	.dev_attrs = virtio_dev_attrs, | 
 | 151 | 	.uevent = virtio_uevent, | 
 | 152 | 	.probe = virtio_dev_probe, | 
 | 153 | 	.remove = virtio_dev_remove, | 
 | 154 | }; | 
 | 155 |  | 
| Rusty Russell | ec3d41c | 2007-10-22 11:03:36 +1000 | [diff] [blame] | 156 | int register_virtio_driver(struct virtio_driver *driver) | 
 | 157 | { | 
| Rusty Russell | c45a681 | 2008-05-02 21:50:50 -0500 | [diff] [blame] | 158 | 	/* Catch this early. */ | 
 | 159 | 	BUG_ON(driver->feature_table_size && !driver->feature_table); | 
| Rusty Russell | ec3d41c | 2007-10-22 11:03:36 +1000 | [diff] [blame] | 160 | 	driver->driver.bus = &virtio_bus; | 
| Rusty Russell | ec3d41c | 2007-10-22 11:03:36 +1000 | [diff] [blame] | 161 | 	return driver_register(&driver->driver); | 
 | 162 | } | 
 | 163 | EXPORT_SYMBOL_GPL(register_virtio_driver); | 
 | 164 |  | 
 | 165 | void unregister_virtio_driver(struct virtio_driver *driver) | 
 | 166 | { | 
 | 167 | 	driver_unregister(&driver->driver); | 
 | 168 | } | 
 | 169 | EXPORT_SYMBOL_GPL(unregister_virtio_driver); | 
 | 170 |  | 
 | 171 | int register_virtio_device(struct virtio_device *dev) | 
 | 172 | { | 
 | 173 | 	int err; | 
 | 174 |  | 
 | 175 | 	dev->dev.bus = &virtio_bus; | 
| Rusty Russell | b769f57 | 2008-05-30 15:09:42 -0500 | [diff] [blame] | 176 |  | 
 | 177 | 	/* Assign a unique device index and hence name. */ | 
 | 178 | 	dev->index = dev_index++; | 
| Rusty Russell | 2ad3cfb | 2008-05-30 15:09:41 -0500 | [diff] [blame] | 179 | 	sprintf(dev->dev.bus_id, "virtio%u", dev->index); | 
| Rusty Russell | ec3d41c | 2007-10-22 11:03:36 +1000 | [diff] [blame] | 180 |  | 
| Rusty Russell | 6e5aa7e | 2008-02-04 23:50:03 -0500 | [diff] [blame] | 181 | 	/* We always start by resetting the device, in case a previous | 
 | 182 | 	 * driver messed it up.  This also tests that code path a little. */ | 
 | 183 | 	dev->config->reset(dev); | 
 | 184 |  | 
| Rusty Russell | ec3d41c | 2007-10-22 11:03:36 +1000 | [diff] [blame] | 185 | 	/* Acknowledge that we've seen the device. */ | 
 | 186 | 	add_status(dev, VIRTIO_CONFIG_S_ACKNOWLEDGE); | 
 | 187 |  | 
 | 188 | 	/* device_register() causes the bus infrastructure to look for a | 
 | 189 | 	 * matching driver. */ | 
 | 190 | 	err = device_register(&dev->dev); | 
 | 191 | 	if (err) | 
 | 192 | 		add_status(dev, VIRTIO_CONFIG_S_FAILED); | 
 | 193 | 	return err; | 
 | 194 | } | 
 | 195 | EXPORT_SYMBOL_GPL(register_virtio_device); | 
 | 196 |  | 
 | 197 | void unregister_virtio_device(struct virtio_device *dev) | 
 | 198 | { | 
 | 199 | 	device_unregister(&dev->dev); | 
 | 200 | } | 
 | 201 | EXPORT_SYMBOL_GPL(unregister_virtio_device); | 
 | 202 |  | 
| Rusty Russell | ec3d41c | 2007-10-22 11:03:36 +1000 | [diff] [blame] | 203 | static int virtio_init(void) | 
 | 204 | { | 
 | 205 | 	if (bus_register(&virtio_bus) != 0) | 
 | 206 | 		panic("virtio bus registration failed"); | 
 | 207 | 	return 0; | 
 | 208 | } | 
| Rusty Russell | c6fd470 | 2008-02-04 23:50:05 -0500 | [diff] [blame] | 209 |  | 
 | 210 | static void __exit virtio_exit(void) | 
 | 211 | { | 
 | 212 | 	bus_unregister(&virtio_bus); | 
 | 213 | } | 
| Rusty Russell | ec3d41c | 2007-10-22 11:03:36 +1000 | [diff] [blame] | 214 | core_initcall(virtio_init); | 
| Rusty Russell | c6fd470 | 2008-02-04 23:50:05 -0500 | [diff] [blame] | 215 | module_exit(virtio_exit); | 
 | 216 |  | 
 | 217 | MODULE_LICENSE("GPL"); |