]> git.ipfire.org Git - thirdparty/pciutils.git/blob - setpci.c
setpci: Pluralize 'capability' in error if needed
[thirdparty/pciutils.git] / setpci.c
1 /*
2 * The PCI Utilities -- Manipulate PCI Configuration Registers
3 *
4 * Copyright (c) 1998--2008 Martin Mares <mj@ucw.cz>
5 *
6 * Can be freely distributed and used under the terms of the GNU GPL.
7 */
8
9 #include <stdio.h>
10 #include <string.h>
11 #include <stdlib.h>
12 #include <stdarg.h>
13 #include <errno.h>
14
15 #define PCIUTILS_SETPCI
16 #include "pciutils.h"
17
18 static int force; /* Don't complain if no devices match */
19 static int verbose; /* Verbosity level */
20 static int demo_mode; /* Only show */
21
22 const char program_name[] = "setpci";
23
24 static struct pci_access *pacc;
25
26 struct value {
27 unsigned int value;
28 unsigned int mask;
29 };
30
31 struct op {
32 struct op *next;
33 struct pci_dev **dev_vector;
34 u16 cap_type; /* PCI_CAP_xxx or 0 */
35 u16 cap_id;
36 unsigned int addr;
37 unsigned int width; /* Byte width of the access */
38 unsigned int num_values; /* Number of values to write; 0=read */
39 unsigned int number; /* The n-th capability of that id */
40 struct value values[0];
41 };
42
43 static struct op *first_op, **last_op = &first_op;
44 static unsigned int max_values[] = { 0, 0xff, 0xffff, 0, 0xffffffff };
45
46 static struct pci_dev **
47 select_devices(struct pci_filter *filt)
48 {
49 struct pci_dev *z, **a, **b;
50 int cnt = 1;
51
52 for (z=pacc->devices; z; z=z->next)
53 if (pci_filter_match(filt, z))
54 cnt++;
55 a = b = xmalloc(sizeof(struct device *) * cnt);
56 for (z=pacc->devices; z; z=z->next)
57 if (pci_filter_match(filt, z))
58 *a++ = z;
59 *a = NULL;
60 return b;
61 }
62
63 static void PCI_PRINTF(1,2)
64 trace(const char *fmt, ...)
65 {
66 va_list args;
67 va_start(args, fmt);
68 if (verbose)
69 vprintf(fmt, args);
70 va_end(args);
71 }
72
73 static void
74 exec_op(struct op *op, struct pci_dev *dev)
75 {
76 const char * const formats[] = { NULL, " %02x", " %04x", NULL, " %08x" };
77 const char * const mask_formats[] = { NULL, " %02x->(%02x:%02x)->%02x", " %04x->(%04x:%04x)->%04x", NULL, " %08x->(%08x:%08x)->%08x" };
78 unsigned int i, x, y;
79 int addr = 0;
80 int width = op->width;
81 char slot[16];
82
83 sprintf(slot, "%04x:%02x:%02x.%x", dev->domain, dev->bus, dev->dev, dev->func);
84 trace("%s ", slot);
85 if (op->cap_type)
86 {
87 struct pci_cap *cap;
88 unsigned int cap_nr = op->number;
89 cap = pci_find_cap_nr(dev, op->cap_id, op->cap_type, &cap_nr);
90 if (cap)
91 addr = cap->addr;
92 else if (cap_nr == 0)
93 die("%s: Instance #%d of %s %04x not found - there are no capabilities with that id.", slot,
94 op->number, ((op->cap_type == PCI_CAP_NORMAL) ? "Capability" : "Extended capability"),
95 op->cap_id);
96 else
97 die("%s: Instance #%d of %s %04x not found - there %s only %d %s with that id.", slot,
98 op->number, ((op->cap_type == PCI_CAP_NORMAL) ? "Capability" : "Extended capability"),
99 op->cap_id, ((cap_nr == 1) ? "is" : "are"), cap_nr,
100 ((cap_nr == 1) ? "capability" : "capabilities"));
101
102 trace(((op->cap_type == PCI_CAP_NORMAL) ? "(cap %02x @%02x) " : "(ecap %04x @%03x) "), op->cap_id, addr);
103 }
104 addr += op->addr;
105 trace("@%02x", addr);
106
107 /* We have already checked it when parsing, but addressing relative to capabilities can change the address. */
108 if (addr & (width-1))
109 die("%s: Unaligned access of width %d to register %04x", slot, width, addr);
110 if (addr + width > 0x1000)
111 die("%s: Access of width %d to register %04x out of range", slot, width, addr);
112
113 if (op->num_values)
114 {
115 for (i=0; i<op->num_values; i++)
116 {
117 if ((op->values[i].mask & max_values[width]) == max_values[width])
118 {
119 x = op->values[i].value;
120 trace(formats[width], op->values[i].value);
121 }
122 else
123 {
124 switch (width)
125 {
126 case 1:
127 y = pci_read_byte(dev, addr);
128 break;
129 case 2:
130 y = pci_read_word(dev, addr);
131 break;
132 default:
133 y = pci_read_long(dev, addr);
134 break;
135 }
136 x = (y & ~op->values[i].mask) | op->values[i].value;
137 trace(mask_formats[width], y, op->values[i].value, op->values[i].mask, x);
138 }
139 if (!demo_mode)
140 {
141 switch (width)
142 {
143 case 1:
144 pci_write_byte(dev, addr, x);
145 break;
146 case 2:
147 pci_write_word(dev, addr, x);
148 break;
149 default:
150 pci_write_long(dev, addr, x);
151 break;
152 }
153 }
154 addr += width;
155 }
156 trace("\n");
157 }
158 else
159 {
160 trace(" = ");
161 switch (width)
162 {
163 case 1:
164 x = pci_read_byte(dev, addr);
165 break;
166 case 2:
167 x = pci_read_word(dev, addr);
168 break;
169 default:
170 x = pci_read_long(dev, addr);
171 break;
172 }
173 printf(formats[width]+1, x);
174 putchar('\n');
175 }
176 }
177
178 static void
179 execute(struct op *op)
180 {
181 struct pci_dev **vec = NULL;
182 struct pci_dev **pdev, *dev;
183 struct op *oops;
184
185 while (op)
186 {
187 pdev = vec = op->dev_vector;
188 while (dev = *pdev++)
189 for (oops=op; oops && oops->dev_vector == vec; oops=oops->next)
190 exec_op(oops, dev);
191 while (op && op->dev_vector == vec)
192 op = op->next;
193 }
194 }
195
196 static void
197 scan_ops(struct op *op)
198 {
199 if (demo_mode)
200 return;
201 while (op)
202 {
203 if (op->num_values)
204 pacc->writeable = 1;
205 op = op->next;
206 }
207 }
208
209 struct reg_name {
210 unsigned int cap;
211 unsigned int offset;
212 unsigned int width;
213 const char *name;
214 };
215
216 static const struct reg_name pci_reg_names[] = {
217 { 0, 0x00, 2, "VENDOR_ID" },
218 { 0, 0x02, 2, "DEVICE_ID" },
219 { 0, 0x04, 2, "COMMAND" },
220 { 0, 0x06, 2, "STATUS" },
221 { 0, 0x08, 1, "REVISION" },
222 { 0, 0x09, 1, "CLASS_PROG" },
223 { 0, 0x0a, 2, "CLASS_DEVICE" },
224 { 0, 0x0c, 1, "CACHE_LINE_SIZE" },
225 { 0, 0x0d, 1, "LATENCY_TIMER" },
226 { 0, 0x0e, 1, "HEADER_TYPE" },
227 { 0, 0x0f, 1, "BIST" },
228 { 0, 0x10, 4, "BASE_ADDRESS_0" },
229 { 0, 0x14, 4, "BASE_ADDRESS_1" },
230 { 0, 0x18, 4, "BASE_ADDRESS_2" },
231 { 0, 0x1c, 4, "BASE_ADDRESS_3" },
232 { 0, 0x20, 4, "BASE_ADDRESS_4" },
233 { 0, 0x24, 4, "BASE_ADDRESS_5" },
234 { 0, 0x28, 4, "CARDBUS_CIS" },
235 { 0, 0x2c, 2, "SUBSYSTEM_VENDOR_ID" },
236 { 0, 0x2e, 2, "SUBSYSTEM_ID" },
237 { 0, 0x30, 4, "ROM_ADDRESS" },
238 { 0, 0x3c, 1, "INTERRUPT_LINE" },
239 { 0, 0x3d, 1, "INTERRUPT_PIN" },
240 { 0, 0x3e, 1, "MIN_GNT" },
241 { 0, 0x3f, 1, "MAX_LAT" },
242 { 0, 0x18, 1, "PRIMARY_BUS" },
243 { 0, 0x19, 1, "SECONDARY_BUS" },
244 { 0, 0x1a, 1, "SUBORDINATE_BUS" },
245 { 0, 0x1b, 1, "SEC_LATENCY_TIMER" },
246 { 0, 0x1c, 1, "IO_BASE" },
247 { 0, 0x1d, 1, "IO_LIMIT" },
248 { 0, 0x1e, 2, "SEC_STATUS" },
249 { 0, 0x20, 2, "MEMORY_BASE" },
250 { 0, 0x22, 2, "MEMORY_LIMIT" },
251 { 0, 0x24, 2, "PREF_MEMORY_BASE" },
252 { 0, 0x26, 2, "PREF_MEMORY_LIMIT" },
253 { 0, 0x28, 4, "PREF_BASE_UPPER32" },
254 { 0, 0x2c, 4, "PREF_LIMIT_UPPER32" },
255 { 0, 0x30, 2, "IO_BASE_UPPER16" },
256 { 0, 0x32, 2, "IO_LIMIT_UPPER16" },
257 { 0, 0x38, 4, "BRIDGE_ROM_ADDRESS" },
258 { 0, 0x3e, 2, "BRIDGE_CONTROL" },
259 { 0, 0x10, 4, "CB_CARDBUS_BASE" },
260 { 0, 0x14, 2, "CB_CAPABILITIES" },
261 { 0, 0x16, 2, "CB_SEC_STATUS" },
262 { 0, 0x18, 1, "CB_BUS_NUMBER" },
263 { 0, 0x19, 1, "CB_CARDBUS_NUMBER" },
264 { 0, 0x1a, 1, "CB_SUBORDINATE_BUS" },
265 { 0, 0x1b, 1, "CB_CARDBUS_LATENCY" },
266 { 0, 0x1c, 4, "CB_MEMORY_BASE_0" },
267 { 0, 0x20, 4, "CB_MEMORY_LIMIT_0" },
268 { 0, 0x24, 4, "CB_MEMORY_BASE_1" },
269 { 0, 0x28, 4, "CB_MEMORY_LIMIT_1" },
270 { 0, 0x2c, 2, "CB_IO_BASE_0" },
271 { 0, 0x2e, 2, "CB_IO_BASE_0_HI" },
272 { 0, 0x30, 2, "CB_IO_LIMIT_0" },
273 { 0, 0x32, 2, "CB_IO_LIMIT_0_HI" },
274 { 0, 0x34, 2, "CB_IO_BASE_1" },
275 { 0, 0x36, 2, "CB_IO_BASE_1_HI" },
276 { 0, 0x38, 2, "CB_IO_LIMIT_1" },
277 { 0, 0x3a, 2, "CB_IO_LIMIT_1_HI" },
278 { 0, 0x40, 2, "CB_SUBSYSTEM_VENDOR_ID" },
279 { 0, 0x42, 2, "CB_SUBSYSTEM_ID" },
280 { 0, 0x44, 4, "CB_LEGACY_MODE_BASE" },
281 { 0x10001, 0, 0, "CAP_PM" },
282 { 0x10002, 0, 0, "CAP_AGP" },
283 { 0x10003, 0, 0, "CAP_VPD" },
284 { 0x10004, 0, 0, "CAP_SLOTID" },
285 { 0x10005, 0, 0, "CAP_MSI" },
286 { 0x10006, 0, 0, "CAP_CHSWP" },
287 { 0x10007, 0, 0, "CAP_PCIX" },
288 { 0x10008, 0, 0, "CAP_HT" },
289 { 0x10009, 0, 0, "CAP_VNDR" },
290 { 0x1000a, 0, 0, "CAP_DBG" },
291 { 0x1000b, 0, 0, "CAP_CCRC" },
292 { 0x1000c, 0, 0, "CAP_HOTPLUG" },
293 { 0x1000d, 0, 0, "CAP_SSVID" },
294 { 0x1000e, 0, 0, "CAP_AGP3" },
295 { 0x1000f, 0, 0, "CAP_SECURE" },
296 { 0x10010, 0, 0, "CAP_EXP" },
297 { 0x10011, 0, 0, "CAP_MSIX" },
298 { 0x10012, 0, 0, "CAP_SATA" },
299 { 0x10013, 0, 0, "CAP_AF" },
300 { 0x20001, 0, 0, "ECAP_AER" },
301 { 0x20002, 0, 0, "ECAP_VC" },
302 { 0x20003, 0, 0, "ECAP_DSN" },
303 { 0x20004, 0, 0, "ECAP_PB" },
304 { 0x20005, 0, 0, "ECAP_RCLINK" },
305 { 0x20006, 0, 0, "ECAP_RCILINK" },
306 { 0x20007, 0, 0, "ECAP_RCECOLL" },
307 { 0x20008, 0, 0, "ECAP_MFVC" },
308 { 0x2000a, 0, 0, "ECAP_RBCB" },
309 { 0x2000b, 0, 0, "ECAP_VNDR" },
310 { 0x2000d, 0, 0, "ECAP_ACS" },
311 { 0x2000e, 0, 0, "ECAP_ARI" },
312 { 0x2000f, 0, 0, "ECAP_ATS" },
313 { 0x20010, 0, 0, "ECAP_SRIOV" },
314 { 0x2001d, 0, 0, "ECAP_DPC" },
315 { 0, 0, 0, NULL }
316 };
317
318 static void
319 dump_registers(void)
320 {
321 const struct reg_name *r;
322
323 printf("cap pos w name\n");
324 for (r = pci_reg_names; r->name; r++)
325 {
326 if (r->cap >= 0x20000)
327 printf("%04x", r->cap - 0x20000);
328 else if (r->cap)
329 printf(" %02x", r->cap - 0x10000);
330 else
331 printf(" ");
332 printf(" %02x %c %s\n", r->offset, "-BW?L"[r->width], r->name);
333 }
334 }
335
336 static void NONRET
337 usage(void)
338 {
339 fprintf(stderr,
340 "Usage: setpci [<options>] (<device>+ <reg>[=<values>]*)*\n"
341 "\n"
342 "General options:\n"
343 "-f\t\tDon't complain if there's nothing to do\n"
344 "-v\t\tBe verbose\n"
345 "-D\t\tList changes, don't commit them\n"
346 "--dumpregs\tDump all known register names and exit\n"
347 "\n"
348 "PCI access options:\n"
349 GENERIC_HELP
350 "\n"
351 "Setting commands:\n"
352 "<device>:\t-s [[[<domain>]:][<bus>]:][<slot>][.[<func>]]\n"
353 "\t\t-d [<vendor>]:[<device>]\n"
354 "<reg>:\t\t<base>[+<offset>][.(B|W|L)][@<number>]\n"
355 "<base>:\t\t<address>\n"
356 "\t\t<named-register>\n"
357 "\t\t[E]CAP_<capability-name>\n"
358 "\t\t[E]CAP<capability-number>\n"
359 "<values>:\t<value>[,<value>...]\n"
360 "<value>:\t<hex>\n"
361 "\t\t<hex>:<mask>\n");
362 exit(0);
363 }
364
365 static void NONRET PCI_PRINTF(1,2)
366 parse_err(const char *msg, ...)
367 {
368 va_list args;
369 va_start(args, msg);
370 fprintf(stderr, "setpci: ");
371 vfprintf(stderr, msg, args);
372 fprintf(stderr, ".\nTry `setpci --help' for more information.\n");
373 exit(1);
374 }
375
376 static int
377 parse_options(int argc, char **argv)
378 {
379 const char opts[] = GENERIC_OPTIONS;
380 int i=1;
381
382 if (argc == 2)
383 {
384 if (!strcmp(argv[1], "--help"))
385 usage();
386 if (!strcmp(argv[1], "--version"))
387 {
388 puts("setpci version " PCIUTILS_VERSION);
389 exit(0);
390 }
391 if (!strcmp(argv[1], "--dumpregs"))
392 {
393 dump_registers();
394 exit(0);
395 }
396 }
397
398 while (i < argc && argv[i][0] == '-')
399 {
400 char *c = argv[i++] + 1;
401 char *d = c;
402 char *e;
403 while (*c)
404 switch (*c)
405 {
406 case 0:
407 break;
408 case 'v':
409 verbose++;
410 c++;
411 break;
412 case 'f':
413 force++;
414 c++;
415 break;
416 case 'D':
417 demo_mode++;
418 c++;
419 break;
420 default:
421 if (e = strchr(opts, *c))
422 {
423 char *arg;
424 c++;
425 if (e[1] == ':')
426 {
427 if (*c)
428 arg = c;
429 else if (i < argc)
430 arg = argv[i++];
431 else
432 parse_err("Option -%c requires an argument", *e);
433 c = "";
434 }
435 else
436 arg = NULL;
437 if (!parse_generic_option(*e, pacc, arg))
438 parse_err("Unable to parse option -%c", *e);
439 }
440 else
441 {
442 if (c != d)
443 parse_err("Invalid or misplaced option -%c", *c);
444 return i-1;
445 }
446 }
447 }
448
449 return i;
450 }
451
452 static int parse_filter(int argc, char **argv, int i, struct pci_filter *filter)
453 {
454 char *c = argv[i++];
455 char *d;
456
457 if (!c[1] || !strchr("sd", c[1]))
458 parse_err("Invalid option -%c", c[1]);
459 if (c[2])
460 d = (c[2] == '=') ? c+3 : c+2;
461 else if (i < argc)
462 d = argv[i++];
463 else
464 parse_err("Option -%c requires an argument", c[1]);
465 switch (c[1])
466 {
467 case 's':
468 if (d = pci_filter_parse_slot(filter, d))
469 parse_err("Unable to parse filter -s %s", d);
470 break;
471 case 'd':
472 if (d = pci_filter_parse_id(filter, d))
473 parse_err("Unable to parse filter -d %s", d);
474 break;
475 default:
476 parse_err("Unknown filter option -%c", c[1]);
477 }
478
479 return i;
480 }
481
482 static const struct reg_name *parse_reg_name(char *name)
483 {
484 const struct reg_name *r;
485
486 for (r = pci_reg_names; r->name; r++)
487 if (!strcasecmp(r->name, name))
488 return r;
489 return NULL;
490 }
491
492 static int parse_x32(char *c, char **stopp, unsigned int *resp)
493 {
494 char *stop;
495 unsigned long int l;
496
497 if (!*c)
498 return -1;
499 errno = 0;
500 l = strtoul(c, &stop, 16);
501 if (errno)
502 return -1;
503 if ((l & ~0U) != l)
504 return -1;
505 *resp = l;
506 if (*stop)
507 {
508 if (stopp)
509 *stopp = stop;
510 return 0;
511 }
512 else
513 {
514 if (stopp)
515 *stopp = NULL;
516 return 1;
517 }
518 }
519
520 static void parse_register(struct op *op, char *base)
521 {
522 const struct reg_name *r;
523 unsigned int cap;
524
525 op->cap_type = op->cap_id = 0;
526 if (parse_x32(base, NULL, &op->addr) > 0)
527 return;
528 else if (r = parse_reg_name(base))
529 {
530 switch (r->cap & 0xff0000)
531 {
532 case 0x10000:
533 op->cap_type = PCI_CAP_NORMAL;
534 break;
535 case 0x20000:
536 op->cap_type = PCI_CAP_EXTENDED;
537 break;
538 }
539 op->cap_id = r->cap & 0xffff;
540 op->addr = r->offset;
541 if (r->width && !op->width)
542 op->width = r->width;
543 return;
544 }
545 else if (!strncasecmp(base, "CAP", 3))
546 {
547 if (parse_x32(base+3, NULL, &cap) > 0 && cap < 0x100)
548 {
549 op->cap_type = PCI_CAP_NORMAL;
550 op->cap_id = cap;
551 op->addr = 0;
552 return;
553 }
554 }
555 else if (!strncasecmp(base, "ECAP", 4))
556 {
557 if (parse_x32(base+4, NULL, &cap) > 0 && cap < 0x1000)
558 {
559 op->cap_type = PCI_CAP_EXTENDED;
560 op->cap_id = cap;
561 op->addr = 0;
562 return;
563 }
564 }
565 parse_err("Unknown register \"%s\"", base);
566 }
567
568 static void parse_op(char *c, struct pci_dev **selected_devices)
569 {
570 char *base, *offset, *width, *value, *number;
571 char *e, *f;
572 int n, j;
573 struct op *op;
574
575 /* Split the argument */
576 base = xstrdup(c);
577 if (value = strchr(base, '='))
578 *value++ = 0;
579 if (number = strchr(base, '@'))
580 *number++ = 0;
581 if (width = strchr(base, '.'))
582 *width++ = 0;
583 if (offset = strchr(base, '+'))
584 *offset++ = 0;
585
586 /* Look for setting of values and count how many */
587 n = 0;
588 if (value)
589 {
590 if (!*value)
591 parse_err("Missing value");
592 n++;
593 for (e=value; *e; e++)
594 if (*e == ',')
595 n++;
596 }
597
598 /* Allocate the operation */
599 op = xmalloc(sizeof(struct op) + n*sizeof(struct value));
600 op->dev_vector = selected_devices;
601 op->num_values = n;
602
603 /* What is the width suffix? */
604 if (width)
605 {
606 if (width[1])
607 parse_err("Invalid width \"%s\"", width);
608 switch (*width & 0xdf)
609 {
610 case 'B':
611 op->width = 1; break;
612 case 'W':
613 op->width = 2; break;
614 case 'L':
615 op->width = 4; break;
616 default:
617 parse_err("Invalid width \"%c\"", *width);
618 }
619 }
620 else
621 op->width = 0;
622
623 /* Check which n-th capability of the same id we want */
624 if (number)
625 {
626 unsigned int num;
627 if (parse_x32(number, NULL, &num) <= 0 || (int) num < 0)
628 parse_err("Invalid number \"%s\"", number);
629 op->number = num;
630
631 }
632 else
633 op->number = 0;
634
635 /* Find the register */
636 parse_register(op, base);
637 if (!op->width)
638 parse_err("Missing width");
639
640 /* Add offset */
641 if (offset)
642 {
643 unsigned int off;
644 if (parse_x32(offset, NULL, &off) <= 0 || off >= 0x1000)
645 parse_err("Invalid offset \"%s\"", offset);
646 op->addr += off;
647 }
648
649 /* Check range */
650 if (op->addr >= 0x1000 || op->addr + op->width*(n ? n : 1) > 0x1000)
651 parse_err("Register number %02x out of range", op->addr);
652 if (op->addr & (op->width - 1))
653 parse_err("Unaligned register address %02x", op->addr);
654
655 /* Parse the values */
656 for (j=0; j<n; j++)
657 {
658 unsigned int ll, lim;
659 e = strchr(value, ',');
660 if (e)
661 *e++ = 0;
662 if (parse_x32(value, &f, &ll) < 0 || f && *f != ':')
663 parse_err("Invalid value \"%s\"", value);
664 lim = max_values[op->width];
665 if (ll > lim && ll < ~0U - lim)
666 parse_err("Value \"%s\" is out of range", value);
667 op->values[j].value = ll;
668 if (f && *f == ':')
669 {
670 if (parse_x32(f+1, NULL, &ll) <= 0)
671 parse_err("Invalid mask \"%s\"", f+1);
672 if (ll > lim && ll < ~0U - lim)
673 parse_err("Mask \"%s\" is out of range", f+1);
674 op->values[j].mask = ll;
675 op->values[j].value &= ll;
676 }
677 else
678 op->values[j].mask = ~0U;
679 value = e;
680 }
681
682 *last_op = op;
683 last_op = &op->next;
684 op->next = NULL;
685 }
686
687 static void parse_ops(int argc, char **argv, int i)
688 {
689 enum { STATE_INIT, STATE_GOT_FILTER, STATE_GOT_OP } state = STATE_INIT;
690 struct pci_filter filter;
691 struct pci_dev **selected_devices = NULL;
692
693 while (i < argc)
694 {
695 char *c = argv[i++];
696
697 if (*c == '-')
698 {
699 if (state != STATE_GOT_FILTER)
700 pci_filter_init(pacc, &filter);
701 i = parse_filter(argc, argv, i-1, &filter);
702 state = STATE_GOT_FILTER;
703 }
704 else
705 {
706 if (state == STATE_INIT)
707 parse_err("Filter specification expected");
708 if (state == STATE_GOT_FILTER)
709 selected_devices = select_devices(&filter);
710 if (!selected_devices[0] && !force)
711 fprintf(stderr, "setpci: Warning: No devices selected for \"%s\".\n", c);
712 parse_op(c, selected_devices);
713 state = STATE_GOT_OP;
714 }
715 }
716 if (state == STATE_INIT)
717 parse_err("No operation specified");
718 }
719
720 int
721 main(int argc, char **argv)
722 {
723 int i;
724
725 pacc = pci_alloc();
726 pacc->error = die;
727 i = parse_options(argc, argv);
728
729 pci_init(pacc);
730 pci_scan_bus(pacc);
731
732 parse_ops(argc, argv, i);
733 scan_ops(first_op);
734 execute(first_op);
735
736 return 0;
737 }