1 1.22 mrg /* $NetBSD: pcictl.c,v 1.22 2016/09/24 23:12:54 mrg Exp $ */ 2 1.1 thorpej 3 1.1 thorpej /* 4 1.1 thorpej * Copyright 2001 Wasabi Systems, Inc. 5 1.1 thorpej * All rights reserved. 6 1.1 thorpej * 7 1.1 thorpej * Written by Jason R. Thorpe for Wasabi Systems, Inc. 8 1.1 thorpej * 9 1.1 thorpej * Redistribution and use in source and binary forms, with or without 10 1.1 thorpej * modification, are permitted provided that the following conditions 11 1.1 thorpej * are met: 12 1.1 thorpej * 1. Redistributions of source code must retain the above copyright 13 1.1 thorpej * notice, this list of conditions and the following disclaimer. 14 1.1 thorpej * 2. Redistributions in binary form must reproduce the above copyright 15 1.1 thorpej * notice, this list of conditions and the following disclaimer in the 16 1.1 thorpej * documentation and/or other materials provided with the distribution. 17 1.1 thorpej * 3. All advertising materials mentioning features or use of this software 18 1.1 thorpej * must display the following acknowledgement: 19 1.1 thorpej * This product includes software developed for the NetBSD Project by 20 1.1 thorpej * Wasabi Systems, Inc. 21 1.1 thorpej * 4. The name of Wasabi Systems, Inc. may not be used to endorse 22 1.1 thorpej * or promote products derived from this software without specific prior 23 1.1 thorpej * written permission. 24 1.1 thorpej * 25 1.1 thorpej * THIS SOFTWARE IS PROVIDED BY WASABI SYSTEMS, INC. ``AS IS'' AND 26 1.1 thorpej * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED 27 1.1 thorpej * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 28 1.1 thorpej * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL WASABI SYSTEMS, INC 29 1.1 thorpej * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 30 1.1 thorpej * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 31 1.1 thorpej * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 32 1.1 thorpej * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 33 1.1 thorpej * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 34 1.1 thorpej * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 35 1.1 thorpej * POSSIBILITY OF SUCH DAMAGE. 36 1.1 thorpej */ 37 1.1 thorpej 38 1.1 thorpej /* 39 1.1 thorpej * pcictl(8) -- a program to manipulate the PCI bus 40 1.1 thorpej */ 41 1.1 thorpej 42 1.1 thorpej #include <sys/param.h> 43 1.1 thorpej #include <sys/ioctl.h> 44 1.1 thorpej #include <err.h> 45 1.1 thorpej #include <errno.h> 46 1.1 thorpej #include <fcntl.h> 47 1.5 tron #include <paths.h> 48 1.1 thorpej #include <pci.h> 49 1.1 thorpej #include <stdio.h> 50 1.1 thorpej #include <stdlib.h> 51 1.1 thorpej #include <string.h> 52 1.1 thorpej #include <unistd.h> 53 1.1 thorpej #include <util.h> 54 1.1 thorpej 55 1.1 thorpej #include <dev/pci/pcireg.h> 56 1.1 thorpej #include <dev/pci/pcidevs.h> 57 1.1 thorpej #include <dev/pci/pciio.h> 58 1.1 thorpej 59 1.1 thorpej struct command { 60 1.1 thorpej const char *cmd_name; 61 1.1 thorpej const char *arg_names; 62 1.1 thorpej void (*cmd_func)(int, char *[]); 63 1.1 thorpej int open_flags; 64 1.1 thorpej }; 65 1.1 thorpej 66 1.18 joerg __dead static void usage(void); 67 1.1 thorpej 68 1.18 joerg static int pcifd; 69 1.1 thorpej 70 1.18 joerg static struct pciio_businfo pci_businfo; 71 1.1 thorpej 72 1.18 joerg static const char *dvname; 73 1.18 joerg static char dvname_store[MAXPATHLEN]; 74 1.18 joerg static const char *cmdname; 75 1.18 joerg static int print_numbers = 0; 76 1.19 mrg static int print_names = 0; 77 1.1 thorpej 78 1.16 cegger static void cmd_list(int, char *[]); 79 1.16 cegger static void cmd_dump(int, char *[]); 80 1.21 manu static void cmd_read(int, char *[]); 81 1.21 manu static void cmd_write(int, char *[]); 82 1.1 thorpej 83 1.18 joerg static const struct command commands[] = { 84 1.1 thorpej { "list", 85 1.20 wiz "[-Nn] [-b bus] [-d device] [-f function]", 86 1.1 thorpej cmd_list, 87 1.1 thorpej O_RDONLY }, 88 1.1 thorpej 89 1.1 thorpej { "dump", 90 1.1 thorpej "[-b bus] -d device [-f function]", 91 1.1 thorpej cmd_dump, 92 1.1 thorpej O_RDONLY }, 93 1.1 thorpej 94 1.21 manu { "read", 95 1.21 manu "[-b bus] -d device [-f function] reg", 96 1.21 manu cmd_read, 97 1.21 manu O_RDONLY }, 98 1.21 manu 99 1.21 manu { "write", 100 1.21 manu "[-b bus] -d device [-f function] reg value", 101 1.21 manu cmd_write, 102 1.21 manu O_WRONLY }, 103 1.21 manu 104 1.12 lukem { 0, 0, 0, 0 }, 105 1.1 thorpej }; 106 1.1 thorpej 107 1.16 cegger static int parse_bdf(const char *); 108 1.21 manu static u_int parse_reg(const char *); 109 1.1 thorpej 110 1.16 cegger static void scan_pci(int, int, int, void (*)(u_int, u_int, u_int)); 111 1.1 thorpej 112 1.16 cegger static void scan_pci_list(u_int, u_int, u_int); 113 1.16 cegger static void scan_pci_dump(u_int, u_int, u_int); 114 1.1 thorpej 115 1.1 thorpej int 116 1.1 thorpej main(int argc, char *argv[]) 117 1.1 thorpej { 118 1.1 thorpej int i; 119 1.1 thorpej 120 1.1 thorpej /* Must have at least: device command */ 121 1.1 thorpej if (argc < 3) 122 1.1 thorpej usage(); 123 1.1 thorpej 124 1.1 thorpej /* Skip program name, get and skip device name, get command. */ 125 1.1 thorpej dvname = argv[1]; 126 1.1 thorpej cmdname = argv[2]; 127 1.1 thorpej argv += 2; 128 1.1 thorpej argc -= 2; 129 1.1 thorpej 130 1.1 thorpej /* Look up and call the command. */ 131 1.1 thorpej for (i = 0; commands[i].cmd_name != NULL; i++) 132 1.1 thorpej if (strcmp(cmdname, commands[i].cmd_name) == 0) 133 1.1 thorpej break; 134 1.1 thorpej if (commands[i].cmd_name == NULL) 135 1.13 cegger errx(EXIT_FAILURE, "unknown command: %s", cmdname); 136 1.1 thorpej 137 1.1 thorpej /* Open the device. */ 138 1.5 tron if ((strchr(dvname, '/') == NULL) && 139 1.5 tron (snprintf(dvname_store, sizeof(dvname_store), _PATH_DEV "%s", 140 1.12 lukem dvname) < (int)sizeof(dvname_store))) 141 1.5 tron dvname = dvname_store; 142 1.5 tron pcifd = open(dvname, commands[i].open_flags); 143 1.5 tron if (pcifd < 0) 144 1.13 cegger err(EXIT_FAILURE, "%s", dvname); 145 1.1 thorpej 146 1.1 thorpej /* Make sure the device is a PCI bus. */ 147 1.1 thorpej if (ioctl(pcifd, PCI_IOC_BUSINFO, &pci_businfo) != 0) 148 1.13 cegger errx(EXIT_FAILURE, "%s: not a PCI bus device", dvname); 149 1.1 thorpej 150 1.1 thorpej (*commands[i].cmd_func)(argc, argv); 151 1.13 cegger exit(EXIT_SUCCESS); 152 1.1 thorpej } 153 1.1 thorpej 154 1.16 cegger static void 155 1.13 cegger usage(void) 156 1.1 thorpej { 157 1.1 thorpej int i; 158 1.1 thorpej 159 1.7 jmmv fprintf(stderr, "usage: %s device command [arg [...]]\n", 160 1.1 thorpej getprogname()); 161 1.1 thorpej 162 1.1 thorpej fprintf(stderr, " Available commands:\n"); 163 1.1 thorpej for (i = 0; commands[i].cmd_name != NULL; i++) 164 1.1 thorpej fprintf(stderr, "\t%s %s\n", commands[i].cmd_name, 165 1.1 thorpej commands[i].arg_names); 166 1.1 thorpej 167 1.13 cegger exit(EXIT_FAILURE); 168 1.1 thorpej } 169 1.1 thorpej 170 1.16 cegger static void 171 1.1 thorpej cmd_list(int argc, char *argv[]) 172 1.1 thorpej { 173 1.1 thorpej int bus, dev, func; 174 1.1 thorpej int ch; 175 1.1 thorpej 176 1.17 jmcneill bus = -1; 177 1.3 thorpej dev = func = -1; 178 1.1 thorpej 179 1.20 wiz while ((ch = getopt(argc, argv, "b:d:f:Nn")) != -1) { 180 1.1 thorpej switch (ch) { 181 1.1 thorpej case 'b': 182 1.1 thorpej bus = parse_bdf(optarg); 183 1.1 thorpej break; 184 1.1 thorpej case 'd': 185 1.1 thorpej dev = parse_bdf(optarg); 186 1.1 thorpej break; 187 1.1 thorpej case 'f': 188 1.1 thorpej func = parse_bdf(optarg); 189 1.1 thorpej break; 190 1.10 hubertf case 'n': 191 1.10 hubertf print_numbers = 1; 192 1.10 hubertf break; 193 1.19 mrg case 'N': 194 1.19 mrg print_names = 1; 195 1.19 mrg break; 196 1.1 thorpej default: 197 1.1 thorpej usage(); 198 1.1 thorpej } 199 1.1 thorpej } 200 1.1 thorpej argv += optind; 201 1.1 thorpej argc -= optind; 202 1.1 thorpej 203 1.1 thorpej if (argc != 0) 204 1.1 thorpej usage(); 205 1.1 thorpej 206 1.1 thorpej scan_pci(bus, dev, func, scan_pci_list); 207 1.1 thorpej } 208 1.1 thorpej 209 1.16 cegger static void 210 1.1 thorpej cmd_dump(int argc, char *argv[]) 211 1.1 thorpej { 212 1.1 thorpej int bus, dev, func; 213 1.1 thorpej int ch; 214 1.1 thorpej 215 1.1 thorpej bus = pci_businfo.busno; 216 1.1 thorpej func = 0; 217 1.1 thorpej dev = -1; 218 1.1 thorpej 219 1.2 thorpej while ((ch = getopt(argc, argv, "b:d:f:")) != -1) { 220 1.1 thorpej switch (ch) { 221 1.1 thorpej case 'b': 222 1.1 thorpej bus = parse_bdf(optarg); 223 1.1 thorpej break; 224 1.1 thorpej case 'd': 225 1.1 thorpej dev = parse_bdf(optarg); 226 1.1 thorpej break; 227 1.1 thorpej case 'f': 228 1.1 thorpej func = parse_bdf(optarg); 229 1.1 thorpej break; 230 1.1 thorpej default: 231 1.1 thorpej usage(); 232 1.1 thorpej } 233 1.1 thorpej } 234 1.1 thorpej argv += optind; 235 1.1 thorpej argc -= optind; 236 1.1 thorpej 237 1.1 thorpej if (argc != 0) 238 1.1 thorpej usage(); 239 1.1 thorpej 240 1.1 thorpej if (bus == -1) 241 1.14 cegger errx(EXIT_FAILURE, "dump: wildcard bus number not permitted"); 242 1.1 thorpej if (dev == -1) 243 1.14 cegger errx(EXIT_FAILURE, "dump: must specify a device number"); 244 1.1 thorpej if (func == -1) 245 1.14 cegger errx(EXIT_FAILURE, "dump: wildcard function number not permitted"); 246 1.1 thorpej 247 1.1 thorpej scan_pci(bus, dev, func, scan_pci_dump); 248 1.1 thorpej } 249 1.1 thorpej 250 1.21 manu static void 251 1.21 manu cmd_read(int argc, char *argv[]) 252 1.21 manu { 253 1.21 manu int bus, dev, func; 254 1.21 manu u_int reg; 255 1.21 manu pcireg_t value; 256 1.21 manu int ch; 257 1.21 manu 258 1.21 manu bus = pci_businfo.busno; 259 1.21 manu func = 0; 260 1.21 manu dev = -1; 261 1.21 manu 262 1.21 manu while ((ch = getopt(argc, argv, "b:d:f:")) != -1) { 263 1.21 manu switch (ch) { 264 1.21 manu case 'b': 265 1.21 manu bus = parse_bdf(optarg); 266 1.21 manu break; 267 1.21 manu case 'd': 268 1.21 manu dev = parse_bdf(optarg); 269 1.21 manu break; 270 1.21 manu case 'f': 271 1.21 manu func = parse_bdf(optarg); 272 1.21 manu break; 273 1.21 manu default: 274 1.21 manu usage(); 275 1.21 manu } 276 1.21 manu } 277 1.21 manu argv += optind; 278 1.21 manu argc -= optind; 279 1.21 manu 280 1.21 manu if (argc != 1) 281 1.21 manu usage(); 282 1.21 manu reg = parse_reg(argv[0]); 283 1.21 manu if (pcibus_conf_read(pcifd, bus, dev, func, reg, &value) == -1) 284 1.21 manu err(EXIT_FAILURE, "pcibus_conf_read" 285 1.21 manu "(bus %d dev %d func %d reg %u)", bus, dev, func, reg); 286 1.21 manu if (printf("%08x\n", value) < 0) 287 1.21 manu err(EXIT_FAILURE, "printf"); 288 1.21 manu } 289 1.21 manu 290 1.21 manu static void 291 1.21 manu cmd_write(int argc, char *argv[]) 292 1.21 manu { 293 1.21 manu int bus, dev, func; 294 1.21 manu u_int reg; 295 1.21 manu pcireg_t value; 296 1.21 manu int ch; 297 1.21 manu 298 1.21 manu bus = pci_businfo.busno; 299 1.21 manu func = 0; 300 1.21 manu dev = -1; 301 1.21 manu 302 1.21 manu while ((ch = getopt(argc, argv, "b:d:f:")) != -1) { 303 1.21 manu switch (ch) { 304 1.21 manu case 'b': 305 1.21 manu bus = parse_bdf(optarg); 306 1.21 manu break; 307 1.21 manu case 'd': 308 1.21 manu dev = parse_bdf(optarg); 309 1.21 manu break; 310 1.21 manu case 'f': 311 1.21 manu func = parse_bdf(optarg); 312 1.21 manu break; 313 1.21 manu default: 314 1.21 manu usage(); 315 1.21 manu } 316 1.21 manu } 317 1.21 manu argv += optind; 318 1.21 manu argc -= optind; 319 1.21 manu 320 1.21 manu if (argc != 2) 321 1.21 manu usage(); 322 1.21 manu reg = parse_reg(argv[0]); 323 1.21 manu __CTASSERT(sizeof(value) == sizeof(u_int)); 324 1.21 manu value = parse_reg(argv[1]); 325 1.21 manu if (pcibus_conf_write(pcifd, bus, dev, func, reg, value) == -1) 326 1.21 manu err(EXIT_FAILURE, "pcibus_conf_write" 327 1.21 manu "(bus %d dev %d func %d reg %u value 0x%x)", 328 1.21 manu bus, dev, func, reg, value); 329 1.21 manu } 330 1.21 manu 331 1.16 cegger static int 332 1.1 thorpej parse_bdf(const char *str) 333 1.1 thorpej { 334 1.4 joda long value; 335 1.4 joda char *end; 336 1.1 thorpej 337 1.1 thorpej if (strcmp(str, "all") == 0 || 338 1.1 thorpej strcmp(str, "any") == 0) 339 1.1 thorpej return (-1); 340 1.1 thorpej 341 1.21 manu errno = 0; 342 1.4 joda value = strtol(str, &end, 0); 343 1.21 manu if ((str[0] == '\0') || (*end != '\0')) 344 1.21 manu errx(EXIT_FAILURE, "\"%s\" is not a number", str); 345 1.21 manu if ((errno == ERANGE) && ((value == LONG_MIN) || (value == LONG_MAX))) 346 1.21 manu errx(EXIT_FAILURE, "out of range: %s", str); 347 1.21 manu if ((value < INT_MIN) || (INT_MAX < value)) 348 1.21 manu errx(EXIT_FAILURE, "out of range: %lu", value); 349 1.21 manu 350 1.21 manu return value; 351 1.21 manu } 352 1.21 manu 353 1.21 manu static u_int 354 1.21 manu parse_reg(const char *str) 355 1.21 manu { 356 1.21 manu unsigned long value; 357 1.21 manu char *end; 358 1.21 manu 359 1.21 manu errno = 0; 360 1.21 manu value = strtoul(str, &end, 0); 361 1.21 manu if (*end != '\0') 362 1.14 cegger errx(EXIT_FAILURE, "\"%s\" is not a number", str); 363 1.21 manu if ((errno == ERANGE) && (value == ULONG_MAX)) 364 1.21 manu errx(EXIT_FAILURE, "out of range: %s", str); 365 1.21 manu if (UINT_MAX < value) 366 1.21 manu errx(EXIT_FAILURE, "out of range: %lu", value); 367 1.4 joda 368 1.4 joda return value; 369 1.1 thorpej } 370 1.1 thorpej 371 1.16 cegger static void 372 1.1 thorpej scan_pci(int busarg, int devarg, int funcarg, void (*cb)(u_int, u_int, u_int)) 373 1.1 thorpej { 374 1.1 thorpej u_int busmin, busmax; 375 1.1 thorpej u_int devmin, devmax; 376 1.1 thorpej u_int funcmin, funcmax; 377 1.1 thorpej u_int bus, dev, func; 378 1.1 thorpej pcireg_t id, bhlcr; 379 1.1 thorpej 380 1.1 thorpej if (busarg == -1) { 381 1.1 thorpej busmin = 0; 382 1.1 thorpej busmax = 255; 383 1.1 thorpej } else 384 1.1 thorpej busmin = busmax = busarg; 385 1.1 thorpej 386 1.1 thorpej if (devarg == -1) { 387 1.1 thorpej devmin = 0; 388 1.9 bsh if (pci_businfo.maxdevs <= 0) 389 1.9 bsh devmax = 0; 390 1.9 bsh else 391 1.9 bsh devmax = pci_businfo.maxdevs - 1; 392 1.1 thorpej } else 393 1.1 thorpej devmin = devmax = devarg; 394 1.1 thorpej 395 1.1 thorpej for (bus = busmin; bus <= busmax; bus++) { 396 1.1 thorpej for (dev = devmin; dev <= devmax; dev++) { 397 1.1 thorpej if (pcibus_conf_read(pcifd, bus, dev, 0, 398 1.1 thorpej PCI_BHLC_REG, &bhlcr) != 0) 399 1.1 thorpej continue; 400 1.1 thorpej if (funcarg == -1) { 401 1.1 thorpej funcmin = 0; 402 1.1 thorpej if (PCI_HDRTYPE_MULTIFN(bhlcr)) 403 1.1 thorpej funcmax = 7; 404 1.1 thorpej else 405 1.1 thorpej funcmax = 0; 406 1.1 thorpej } else 407 1.1 thorpej funcmin = funcmax = funcarg; 408 1.1 thorpej for (func = funcmin; func <= funcmax; func++) { 409 1.1 thorpej if (pcibus_conf_read(pcifd, bus, dev, 410 1.1 thorpej func, PCI_ID_REG, &id) != 0) 411 1.1 thorpej continue; 412 1.1 thorpej 413 1.1 thorpej /* Invalid vendor ID value? */ 414 1.1 thorpej if (PCI_VENDOR(id) == PCI_VENDOR_INVALID) 415 1.1 thorpej continue; 416 1.1 thorpej /* 417 1.1 thorpej * XXX Not invalid, but we've done this 418 1.1 thorpej * ~forever. 419 1.1 thorpej */ 420 1.1 thorpej if (PCI_VENDOR(id) == 0) 421 1.1 thorpej continue; 422 1.1 thorpej 423 1.1 thorpej (*cb)(bus, dev, func); 424 1.1 thorpej } 425 1.1 thorpej } 426 1.1 thorpej } 427 1.1 thorpej } 428 1.1 thorpej 429 1.16 cegger static void 430 1.1 thorpej scan_pci_list(u_int bus, u_int dev, u_int func) 431 1.1 thorpej { 432 1.1 thorpej pcireg_t id, class; 433 1.1 thorpej char devinfo[256]; 434 1.1 thorpej 435 1.1 thorpej if (pcibus_conf_read(pcifd, bus, dev, func, PCI_ID_REG, &id) != 0) 436 1.1 thorpej return; 437 1.1 thorpej if (pcibus_conf_read(pcifd, bus, dev, func, PCI_CLASS_REG, &class) != 0) 438 1.1 thorpej return; 439 1.1 thorpej 440 1.10 hubertf printf("%03u:%02u:%01u: ", bus, dev, func); 441 1.10 hubertf if (print_numbers) { 442 1.19 mrg printf("0x%08x (0x%08x)", id, class); 443 1.10 hubertf } else { 444 1.10 hubertf pci_devinfo(id, class, 1, devinfo, sizeof(devinfo)); 445 1.19 mrg printf("%s", devinfo); 446 1.19 mrg } 447 1.19 mrg if (print_names) { 448 1.19 mrg char drvname[16]; 449 1.22 mrg if (pci_drvnameonbus(pcifd, bus, dev, func, drvname, 450 1.22 mrg sizeof drvname) == 0) 451 1.19 mrg printf(" [%s]", drvname); 452 1.10 hubertf } 453 1.19 mrg printf("\n"); 454 1.1 thorpej } 455 1.1 thorpej 456 1.16 cegger static void 457 1.1 thorpej scan_pci_dump(u_int bus, u_int dev, u_int func) 458 1.1 thorpej { 459 1.1 thorpej 460 1.1 thorpej pci_conf_print(pcifd, bus, dev, func); 461 1.1 thorpej } 462