1 /* SPDX-License-Identifier: BSD-3-Clause
2 * Copyright (c) 2018, Microsoft Corporation.
10 #include <sys/queue.h>
16 #include <rte_tailq.h>
17 #include <rte_devargs.h>
18 #include <rte_malloc.h>
19 #include <rte_errno.h>
20 #include <rte_memory.h>
21 #include <rte_bus_vmbus.h>
25 int vmbus_logtype_bus;
26 extern struct rte_vmbus_bus rte_vmbus_bus;
28 /* map a particular resource from a file */
30 vmbus_map_resource(void *requested_addr, int fd, off_t offset, size_t size,
35 /* Map the memory resource of device */
36 mapaddr = mmap(requested_addr, size, PROT_READ | PROT_WRITE,
37 MAP_SHARED | flags, fd, offset);
38 if (mapaddr == MAP_FAILED) {
40 "mmap(%d, %p, %zu, %ld) failed: %s",
41 fd, requested_addr, size, (long)offset,
47 /* unmap a particular resource */
49 vmbus_unmap_resource(void *requested_addr, size_t size)
51 if (requested_addr == NULL)
54 /* Unmap the VMBUS memory resource of device */
55 if (munmap(requested_addr, size)) {
56 VMBUS_LOG(ERR, "munmap(%p, 0x%lx) failed: %s",
57 requested_addr, (unsigned long)size,
60 VMBUS_LOG(DEBUG, " VMBUS memory unmapped at %p",
65 * Match the VMBUS driver and device using UUID table
68 * VMBUS driver from which ID table would be extracted
70 * VMBUS device to match against the driver
72 * true for successful match
73 * false for unsuccessful match
76 vmbus_match(const struct rte_vmbus_driver *dr,
77 const struct rte_vmbus_device *dev)
79 const rte_uuid_t *id_table;
81 for (id_table = dr->id_table; !rte_uuid_is_null(*id_table); ++id_table) {
82 if (rte_uuid_compare(*id_table, dev->class_id) == 0)
90 * If device ID match, call the devinit() function of the driver.
93 vmbus_probe_one_driver(struct rte_vmbus_driver *dr,
94 struct rte_vmbus_device *dev)
96 char guid[RTE_UUID_STRLEN];
99 if (!vmbus_match(dr, dev))
100 return 1; /* not supported */
102 rte_uuid_unparse(dev->device_id, guid, sizeof(guid));
103 VMBUS_LOG(INFO, "VMBUS device %s on NUMA socket %i",
104 guid, dev->device.numa_node);
106 /* TODO add blacklisted */
108 /* map resources for device */
109 ret = rte_vmbus_map_device(dev);
113 /* reference driver structure */
115 dev->device.driver = &dr->driver;
117 if (dev->device.numa_node < 0) {
118 VMBUS_LOG(WARNING, " Invalid NUMA socket, default to 0");
119 dev->device.numa_node = 0;
122 /* call the driver probe() function */
123 VMBUS_LOG(INFO, " probe driver: %s", dr->driver.name);
124 ret = dr->probe(dr, dev);
127 rte_vmbus_unmap_device(dev);
134 * IF device class GUID mathces, call the probe function of
135 * registere drivers for the vmbus device.
136 * Return -1 if initialization failed,
137 * and 1 if no driver found for this device.
140 vmbus_probe_all_drivers(struct rte_vmbus_device *dev)
142 struct rte_vmbus_driver *dr;
145 /* Check if a driver is already loaded */
146 if (dev->driver != NULL) {
147 VMBUS_LOG(DEBUG, "VMBUS driver already loaded");
151 FOREACH_DRIVER_ON_VMBUS(dr) {
152 rc = vmbus_probe_one_driver(dr, dev);
153 if (rc < 0) /* negative is an error */
156 if (rc > 0) /* positive driver doesn't support it */
165 * Scan the vmbus, and call the devinit() function for
166 * all registered drivers that have a matching entry in its id_table
167 * for discovered devices.
170 rte_vmbus_probe(void)
172 struct rte_vmbus_device *dev;
173 size_t probed = 0, failed = 0;
174 char ubuf[RTE_UUID_STRLEN];
176 FOREACH_DEVICE_ON_VMBUS(dev) {
179 rte_uuid_unparse(dev->device_id, ubuf, sizeof(ubuf));
181 /* TODO: add whitelist/blacklist */
183 if (vmbus_probe_all_drivers(dev) < 0) {
185 "Requested device %s cannot be used", ubuf);
191 return (probed && probed == failed) ? -1 : 0;
195 vmbus_parse(const char *name, void *addr)
200 ret = rte_uuid_parse(name, guid);
201 if (ret == 0 && addr)
202 memcpy(addr, &guid, sizeof(guid));
207 /* register vmbus driver */
209 rte_vmbus_register(struct rte_vmbus_driver *driver)
212 "Registered driver %s", driver->driver.name);
214 TAILQ_INSERT_TAIL(&rte_vmbus_bus.driver_list, driver, next);
215 driver->bus = &rte_vmbus_bus;
218 /* unregister vmbus driver */
220 rte_vmbus_unregister(struct rte_vmbus_driver *driver)
222 TAILQ_REMOVE(&rte_vmbus_bus.driver_list, driver, next);
226 /* Add a device to VMBUS bus */
228 vmbus_add_device(struct rte_vmbus_device *vmbus_dev)
230 TAILQ_INSERT_TAIL(&rte_vmbus_bus.device_list, vmbus_dev, next);
233 /* Insert a device into a predefined position in VMBUS bus */
235 vmbus_insert_device(struct rte_vmbus_device *exist_vmbus_dev,
236 struct rte_vmbus_device *new_vmbus_dev)
238 TAILQ_INSERT_BEFORE(exist_vmbus_dev, new_vmbus_dev, next);
241 /* Remove a device from VMBUS bus */
243 vmbus_remove_device(struct rte_vmbus_device *vmbus_dev)
245 TAILQ_REMOVE(&rte_vmbus_bus.device_list, vmbus_dev, next);
248 /* VMBUS doesn't support hotplug */
249 static struct rte_device *
250 vmbus_find_device(const struct rte_device *start, rte_dev_cmp_t cmp,
253 struct rte_vmbus_device *dev;
255 FOREACH_DEVICE_ON_VMBUS(dev) {
256 if (start && &dev->device == start) {
260 if (cmp(&dev->device, data) == 0)
268 struct rte_vmbus_bus rte_vmbus_bus = {
270 .scan = rte_vmbus_scan,
271 .probe = rte_vmbus_probe,
272 .find_device = vmbus_find_device,
273 .parse = vmbus_parse,
275 .device_list = TAILQ_HEAD_INITIALIZER(rte_vmbus_bus.device_list),
276 .driver_list = TAILQ_HEAD_INITIALIZER(rte_vmbus_bus.driver_list),
279 RTE_REGISTER_BUS(vmbus, rte_vmbus_bus.bus);
281 RTE_INIT(vmbus_init_log)
283 vmbus_logtype_bus = rte_log_register("bus.vmbus");
284 if (vmbus_logtype_bus >= 0)
285 rte_log_set_level(vmbus_logtype_bus, RTE_LOG_NOTICE);