2 * The PCI Library -- Hurd access via RPCs
4 * Copyright (c) 2017 Joan Lledó <jlledom@member.fsf.org>
6 * Can be freely distributed and used under the terms of the GNU GPL.
15 #include <sys/types.h>
23 #include <hurd/paths.h>
26 #define _SERVERS_BUS_PCI _SERVERS_BUS "/pci"
29 #define FILE_CONFIG_NAME "config"
30 #define FILE_ROM_NAME "rom"
32 /* Level in the fs tree */
42 /* Check whether there's a pci server */
44 hurd_detect(struct pci_access *a)
49 err = stat(_SERVERS_BUS_PCI, &st);
52 a->error("Could not open file `%s'", _SERVERS_BUS_PCI);
56 /* The node must be a directory and a translator */
57 return S_ISDIR(st.st_mode) && ((st.st_mode & S_ITRANS) == S_IROOT);
60 /* Empty callbacks, we don't need any special init or cleanup */
62 hurd_init(struct pci_access *a UNUSED)
67 hurd_cleanup(struct pci_access *a UNUSED)
71 /* Each device has its own server path. Allocate space for the port. */
73 hurd_init_dev(struct pci_dev *d)
75 d->aux = pci_malloc(d->access, sizeof(mach_port_t));
76 *((mach_port_t *) d->aux) = MACH_PORT_NULL;
79 /* Deallocate the port and free its space */
81 hurd_cleanup_dev(struct pci_dev *d)
83 mach_port_t device_port;
85 device_port = *((mach_port_t *) d->aux);
86 mach_port_deallocate(mach_task_self(), device_port);
92 device_port_lookup(struct pci_dev *d)
94 char server[NAME_MAX];
95 mach_port_t device_port = *((mach_port_t *) d->aux);
97 if (device_port != MACH_PORT_NULL)
100 snprintf(server, NAME_MAX, "%s/%04x/%02x/%02x/%01u/%s",
101 _SERVERS_BUS_PCI, d->domain, d->bus, d->dev, d->func,
103 device_port = file_name_lookup(server, 0, 0);
105 if (device_port == MACH_PORT_NULL)
106 d->access->error("Cannot find the PCI arbiter");
108 *((mach_port_t *) d->aux) = device_port;
112 /* Walk through the FS tree to see what is allowed for us */
114 enum_devices(const char *parent, struct pci_access *a, int domain, int bus,
115 int dev, int func, tree_level lev)
119 struct dirent *entry;
123 dir = opendir(parent);
126 if (errno == EPERM || errno == EACCES)
127 /* The client lacks the permissions to access this function, skip */
130 a->error("Cannot open directory: %s (%s)", parent, strerror(errno));
133 while ((entry = readdir(dir)) != 0)
135 snprintf(path, NAME_MAX, "%s/%s", parent, entry->d_name);
136 if (entry->d_type == DT_DIR)
138 if (!strncmp(entry->d_name, ".", NAME_MAX)
139 || !strncmp(entry->d_name, "..", NAME_MAX))
143 ret = strtol(entry->d_name, 0, 16);
146 if (closedir(dir) < 0)
147 a->warning("Cannot close directory: %s (%s)", parent,
149 a->error("Wrong directory name: %s (number expected) probably "
150 "not connected to an arbiter", entry->d_name);
154 * We found a valid directory.
155 * Update the address and switch to the next level.
172 if (closedir(dir) < 0)
173 a->warning("Cannot close directory: %s (%s)", parent,
175 a->error("Wrong directory tree, probably not connected to an arbiter");
178 enum_devices(path, a, domain, bus, dev, func, lev + 1);
182 if (strncmp(entry->d_name, FILE_CONFIG_NAME, NAME_MAX))
183 /* We are looking for the config file */
186 /* We found an available virtual device, add it to our list */
187 d = pci_alloc_dev(a);
196 if (closedir(dir) < 0)
197 a->error("Cannot close directory: %s (%s)", parent, strerror(errno));
200 /* Enumerate devices */
202 hurd_scan(struct pci_access *a)
204 enum_devices(_SERVERS_BUS_PCI, a, -1, -1, -1, -1, LEVEL_DOMAIN);
208 * Read `len' bytes to `buf'.
210 * Returns error when the number of read bytes does not match `len'.
213 hurd_read(struct pci_dev *d, int pos, byte * buf, int len)
218 mach_port_t device_port = device_port_lookup(d);
221 return pci_generic_block_read(d, pos, buf, len);
224 err = pci_conf_read(device_port, pos, &data, &nread, len);
226 if (data != (char *) buf)
228 if (nread > (size_t) len) /* Sanity check for bogus server. */
230 vm_deallocate(mach_task_self(), (vm_address_t) data, nread);
234 memcpy(buf, data, nread);
235 vm_deallocate(mach_task_self(), (vm_address_t) data, nread);
238 return !err && nread == (size_t) len;
242 * Write `len' bytes from `buf'.
244 * Returns error when the number of written bytes does not match `len'.
247 hurd_write(struct pci_dev *d, int pos, byte * buf, int len)
251 mach_port_t device_port = device_port_lookup(d);
254 return pci_generic_block_write(d, pos, buf, len);
256 err = pci_conf_write(device_port, pos, (char *) buf, len, &nwrote);
258 return !err && nwrote == (size_t) len;
261 /* Get requested info from the server */
264 hurd_fill_regions(struct pci_dev *d)
266 mach_port_t device_port = device_port_lookup(d);
267 struct pci_bar regions[6];
268 char *buf = (char *) ®ions;
269 size_t size = sizeof(regions);
271 int err = pci_get_dev_regions(device_port, &buf, &size);
275 if ((char *) ®ions != buf)
277 /* Sanity check for bogus server. */
278 if (size > sizeof(regions))
280 vm_deallocate(mach_task_self(), (vm_address_t) buf, size);
284 memcpy(®ions, buf, size);
285 vm_deallocate(mach_task_self(), (vm_address_t) buf, size);
288 for (int i = 0; i < 6; i++)
290 if (regions[i].size == 0)
293 d->base_addr[i] = regions[i].base_addr;
294 d->base_addr[i] |= regions[i].is_IO;
295 d->base_addr[i] |= regions[i].is_64 << 2;
296 d->base_addr[i] |= regions[i].is_prefetchable << 3;
298 d->size[i] = regions[i].size;
305 hurd_fill_rom(struct pci_dev *d)
307 struct pci_xrom_bar rom;
308 mach_port_t device_port = device_port_lookup(d);
309 char *buf = (char *) &rom;
310 size_t size = sizeof(rom);
312 int err = pci_get_dev_rom(device_port, &buf, &size);
316 if ((char *) &rom != buf)
318 /* Sanity check for bogus server. */
319 if (size > sizeof(rom))
321 vm_deallocate(mach_task_self(), (vm_address_t) buf, size);
325 memcpy(&rom, buf, size);
326 vm_deallocate(mach_task_self(), (vm_address_t) buf, size);
329 d->rom_base_addr = rom.base_addr;
330 d->rom_size = rom.size;
336 hurd_fill_info(struct pci_dev *d, unsigned int flags)
338 if (!d->access->buscentric)
340 if (want_fill(d, flags, PCI_FILL_BASES | PCI_FILL_SIZES))
342 if (hurd_fill_regions(d))
343 clear_fill(d, PCI_FILL_BASES | PCI_FILL_SIZES);
345 if (want_fill(d, flags, PCI_FILL_ROM_BASE))
347 if (hurd_fill_rom(d))
348 clear_fill(d, PCI_FILL_ROM_BASE);
352 pci_generic_fill_info(d, flags);
355 struct pci_methods pm_hurd = {
357 "Hurd access using RPCs",