s390x: upgrade status of KVM cores to "supported"
[qemu/ar7.git] / hw / xen / xen-host-pci-device.c
blobeed8cc88e33da41dcf0780e19ef334b50a6d4664
1 /*
2 * Copyright (C) 2011 Citrix Ltd.
4 * This work is licensed under the terms of the GNU GPL, version 2. See
5 * the COPYING file in the top-level directory.
7 */
9 #include "qemu/osdep.h"
10 #include "qapi/error.h"
11 #include "qemu-common.h"
12 #include "qemu/cutils.h"
13 #include "xen-host-pci-device.h"
15 #define XEN_HOST_PCI_MAX_EXT_CAP \
16 ((PCIE_CONFIG_SPACE_SIZE - PCI_CONFIG_SPACE_SIZE) / (PCI_CAP_SIZEOF + 4))
18 #ifdef XEN_HOST_PCI_DEVICE_DEBUG
19 # define XEN_HOST_PCI_LOG(f, a...) fprintf(stderr, "%s: " f, __func__, ##a)
20 #else
21 # define XEN_HOST_PCI_LOG(f, a...) (void)0
22 #endif
25 * from linux/ioport.h
26 * IO resources have these defined flags.
28 #define IORESOURCE_BITS 0x000000ff /* Bus-specific bits */
30 #define IORESOURCE_TYPE_BITS 0x00000f00 /* Resource type */
31 #define IORESOURCE_IO 0x00000100
32 #define IORESOURCE_MEM 0x00000200
34 #define IORESOURCE_PREFETCH 0x00001000 /* No side effects */
35 #define IORESOURCE_MEM_64 0x00100000
37 static void xen_host_pci_sysfs_path(const XenHostPCIDevice *d,
38 const char *name, char *buf, ssize_t size)
40 int rc;
42 rc = snprintf(buf, size, "/sys/bus/pci/devices/%04x:%02x:%02x.%d/%s",
43 d->domain, d->bus, d->dev, d->func, name);
44 assert(rc >= 0 && rc < size);
48 /* This size should be enough to read the first 7 lines of a resource file */
49 #define XEN_HOST_PCI_RESOURCE_BUFFER_SIZE 400
50 static void xen_host_pci_get_resource(XenHostPCIDevice *d, Error **errp)
52 int i, rc, fd;
53 char path[PATH_MAX];
54 char buf[XEN_HOST_PCI_RESOURCE_BUFFER_SIZE];
55 unsigned long long start, end, flags, size;
56 char *endptr, *s;
57 uint8_t type;
59 xen_host_pci_sysfs_path(d, "resource", path, sizeof(path));
61 fd = open(path, O_RDONLY);
62 if (fd == -1) {
63 error_setg_file_open(errp, errno, path);
64 return;
67 do {
68 rc = read(fd, &buf, sizeof(buf) - 1);
69 if (rc < 0 && errno != EINTR) {
70 error_setg_errno(errp, errno, "read err");
71 goto out;
73 } while (rc < 0);
74 buf[rc] = 0;
76 s = buf;
77 for (i = 0; i < PCI_NUM_REGIONS; i++) {
78 type = 0;
80 start = strtoll(s, &endptr, 16);
81 if (*endptr != ' ' || s == endptr) {
82 break;
84 s = endptr + 1;
85 end = strtoll(s, &endptr, 16);
86 if (*endptr != ' ' || s == endptr) {
87 break;
89 s = endptr + 1;
90 flags = strtoll(s, &endptr, 16);
91 if (*endptr != '\n' || s == endptr) {
92 break;
94 s = endptr + 1;
96 if (start) {
97 size = end - start + 1;
98 } else {
99 size = 0;
102 if (flags & IORESOURCE_IO) {
103 type |= XEN_HOST_PCI_REGION_TYPE_IO;
105 if (flags & IORESOURCE_MEM) {
106 type |= XEN_HOST_PCI_REGION_TYPE_MEM;
108 if (flags & IORESOURCE_PREFETCH) {
109 type |= XEN_HOST_PCI_REGION_TYPE_PREFETCH;
111 if (flags & IORESOURCE_MEM_64) {
112 type |= XEN_HOST_PCI_REGION_TYPE_MEM_64;
115 if (i < PCI_ROM_SLOT) {
116 d->io_regions[i].base_addr = start;
117 d->io_regions[i].size = size;
118 d->io_regions[i].type = type;
119 d->io_regions[i].bus_flags = flags & IORESOURCE_BITS;
120 } else {
121 d->rom.base_addr = start;
122 d->rom.size = size;
123 d->rom.type = type;
124 d->rom.bus_flags = flags & IORESOURCE_BITS;
128 if (i != PCI_NUM_REGIONS) {
129 error_setg(errp, "Invalid format or input too short: %s", buf);
132 out:
133 close(fd);
136 /* This size should be enough to read a long from a file */
137 #define XEN_HOST_PCI_GET_VALUE_BUFFER_SIZE 22
138 static void xen_host_pci_get_value(XenHostPCIDevice *d, const char *name,
139 unsigned int *pvalue, int base, Error **errp)
141 char path[PATH_MAX];
142 char buf[XEN_HOST_PCI_GET_VALUE_BUFFER_SIZE];
143 int fd, rc;
144 unsigned long value;
145 const char *endptr;
147 xen_host_pci_sysfs_path(d, name, path, sizeof(path));
149 fd = open(path, O_RDONLY);
150 if (fd == -1) {
151 error_setg_file_open(errp, errno, path);
152 return;
155 do {
156 rc = read(fd, &buf, sizeof(buf) - 1);
157 if (rc < 0 && errno != EINTR) {
158 error_setg_errno(errp, errno, "read err");
159 goto out;
161 } while (rc < 0);
163 buf[rc] = 0;
164 rc = qemu_strtoul(buf, &endptr, base, &value);
165 if (!rc) {
166 assert(value <= UINT_MAX);
167 *pvalue = value;
168 } else {
169 error_setg_errno(errp, -rc, "failed to parse value '%s'", buf);
172 out:
173 close(fd);
176 static inline void xen_host_pci_get_hex_value(XenHostPCIDevice *d,
177 const char *name,
178 unsigned int *pvalue,
179 Error **errp)
181 xen_host_pci_get_value(d, name, pvalue, 16, errp);
184 static inline void xen_host_pci_get_dec_value(XenHostPCIDevice *d,
185 const char *name,
186 unsigned int *pvalue,
187 Error **errp)
189 xen_host_pci_get_value(d, name, pvalue, 10, errp);
192 static bool xen_host_pci_dev_is_virtfn(XenHostPCIDevice *d)
194 char path[PATH_MAX];
195 struct stat buf;
197 xen_host_pci_sysfs_path(d, "physfn", path, sizeof(path));
199 return !stat(path, &buf);
202 static void xen_host_pci_config_open(XenHostPCIDevice *d, Error **errp)
204 char path[PATH_MAX];
206 xen_host_pci_sysfs_path(d, "config", path, sizeof(path));
208 d->config_fd = open(path, O_RDWR);
209 if (d->config_fd == -1) {
210 error_setg_file_open(errp, errno, path);
214 static int xen_host_pci_config_read(XenHostPCIDevice *d,
215 int pos, void *buf, int len)
217 int rc;
219 do {
220 rc = pread(d->config_fd, buf, len, pos);
221 } while (rc < 0 && (errno == EINTR || errno == EAGAIN));
222 if (rc != len) {
223 return -errno;
225 return 0;
228 static int xen_host_pci_config_write(XenHostPCIDevice *d,
229 int pos, const void *buf, int len)
231 int rc;
233 do {
234 rc = pwrite(d->config_fd, buf, len, pos);
235 } while (rc < 0 && (errno == EINTR || errno == EAGAIN));
236 if (rc != len) {
237 return -errno;
239 return 0;
243 int xen_host_pci_get_byte(XenHostPCIDevice *d, int pos, uint8_t *p)
245 uint8_t buf;
246 int rc = xen_host_pci_config_read(d, pos, &buf, 1);
247 if (!rc) {
248 *p = buf;
250 return rc;
253 int xen_host_pci_get_word(XenHostPCIDevice *d, int pos, uint16_t *p)
255 uint16_t buf;
256 int rc = xen_host_pci_config_read(d, pos, &buf, 2);
257 if (!rc) {
258 *p = le16_to_cpu(buf);
260 return rc;
263 int xen_host_pci_get_long(XenHostPCIDevice *d, int pos, uint32_t *p)
265 uint32_t buf;
266 int rc = xen_host_pci_config_read(d, pos, &buf, 4);
267 if (!rc) {
268 *p = le32_to_cpu(buf);
270 return rc;
273 int xen_host_pci_get_block(XenHostPCIDevice *d, int pos, uint8_t *buf, int len)
275 return xen_host_pci_config_read(d, pos, buf, len);
278 int xen_host_pci_set_byte(XenHostPCIDevice *d, int pos, uint8_t data)
280 return xen_host_pci_config_write(d, pos, &data, 1);
283 int xen_host_pci_set_word(XenHostPCIDevice *d, int pos, uint16_t data)
285 data = cpu_to_le16(data);
286 return xen_host_pci_config_write(d, pos, &data, 2);
289 int xen_host_pci_set_long(XenHostPCIDevice *d, int pos, uint32_t data)
291 data = cpu_to_le32(data);
292 return xen_host_pci_config_write(d, pos, &data, 4);
295 int xen_host_pci_set_block(XenHostPCIDevice *d, int pos, uint8_t *buf, int len)
297 return xen_host_pci_config_write(d, pos, buf, len);
300 int xen_host_pci_find_ext_cap_offset(XenHostPCIDevice *d, uint32_t cap)
302 uint32_t header = 0;
303 int max_cap = XEN_HOST_PCI_MAX_EXT_CAP;
304 int pos = PCI_CONFIG_SPACE_SIZE;
306 do {
307 if (xen_host_pci_get_long(d, pos, &header)) {
308 break;
311 * If we have no capabilities, this is indicated by cap ID,
312 * cap version and next pointer all being 0.
314 if (header == 0) {
315 break;
318 if (PCI_EXT_CAP_ID(header) == cap) {
319 return pos;
322 pos = PCI_EXT_CAP_NEXT(header);
323 if (pos < PCI_CONFIG_SPACE_SIZE) {
324 break;
327 max_cap--;
328 } while (max_cap > 0);
330 return -1;
333 void xen_host_pci_device_get(XenHostPCIDevice *d, uint16_t domain,
334 uint8_t bus, uint8_t dev, uint8_t func,
335 Error **errp)
337 unsigned int v;
338 Error *err = NULL;
340 d->config_fd = -1;
341 d->domain = domain;
342 d->bus = bus;
343 d->dev = dev;
344 d->func = func;
346 xen_host_pci_config_open(d, &err);
347 if (err) {
348 goto error;
351 xen_host_pci_get_resource(d, &err);
352 if (err) {
353 goto error;
356 xen_host_pci_get_hex_value(d, "vendor", &v, &err);
357 if (err) {
358 goto error;
360 d->vendor_id = v;
362 xen_host_pci_get_hex_value(d, "device", &v, &err);
363 if (err) {
364 goto error;
366 d->device_id = v;
368 xen_host_pci_get_dec_value(d, "irq", &v, &err);
369 if (err) {
370 goto error;
372 d->irq = v;
374 xen_host_pci_get_hex_value(d, "class", &v, &err);
375 if (err) {
376 goto error;
378 d->class_code = v;
380 d->is_virtfn = xen_host_pci_dev_is_virtfn(d);
382 return;
384 error:
385 error_propagate(errp, err);
387 if (d->config_fd >= 0) {
388 close(d->config_fd);
389 d->config_fd = -1;
393 bool xen_host_pci_device_closed(XenHostPCIDevice *d)
395 return d->config_fd == -1;
398 void xen_host_pci_device_put(XenHostPCIDevice *d)
400 if (d->config_fd >= 0) {
401 close(d->config_fd);
402 d->config_fd = -1;