]> CyberLeo.Net >> Repos - FreeBSD/stable/10.git/blob - usr.sbin/pciconf/pciconf.c
MFC: r287522
[FreeBSD/stable/10.git] / usr.sbin / pciconf / pciconf.c
1 /*
2  * Copyright 1996 Massachusetts Institute of Technology
3  *
4  * Permission to use, copy, modify, and distribute this software and
5  * its documentation for any purpose and without fee is hereby
6  * granted, provided that both the above copyright notice and this
7  * permission notice appear in all copies, that both the above
8  * copyright notice and this permission notice appear in all
9  * supporting documentation, and that the name of M.I.T. not be used
10  * in advertising or publicity pertaining to distribution of the
11  * software without specific, written prior permission.  M.I.T. makes
12  * no representations about the suitability of this software for any
13  * purpose.  It is provided "as is" without express or implied
14  * warranty.
15  *
16  * THIS SOFTWARE IS PROVIDED BY M.I.T. ``AS IS''.  M.I.T. DISCLAIMS
17  * ALL EXPRESS OR IMPLIED WARRANTIES WITH REGARD TO THIS SOFTWARE,
18  * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
19  * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT
20  * SHALL M.I.T. BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
23  * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
24  * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
25  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
26  * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27  * SUCH DAMAGE.
28  */
29
30 #ifndef lint
31 static const char rcsid[] =
32   "$FreeBSD$";
33 #endif /* not lint */
34
35 #include <sys/types.h>
36 #include <sys/fcntl.h>
37
38 #include <assert.h>
39 #include <ctype.h>
40 #include <err.h>
41 #include <inttypes.h>
42 #include <stdlib.h>
43 #include <stdio.h>
44 #include <string.h>
45 #include <unistd.h>
46 #include <sys/pciio.h>
47 #include <sys/queue.h>
48
49 #include <dev/pci/pcireg.h>
50
51 #include "pathnames.h"
52 #include "pciconf.h"
53
54 struct pci_device_info
55 {
56     TAILQ_ENTRY(pci_device_info)        link;
57     int                                 id;
58     char                                *desc;
59 };
60
61 struct pci_vendor_info
62 {
63     TAILQ_ENTRY(pci_vendor_info)        link;
64     TAILQ_HEAD(,pci_device_info)        devs;
65     int                                 id;
66     char                                *desc;
67 };
68
69 TAILQ_HEAD(,pci_vendor_info)    pci_vendors;
70
71 static struct pcisel getsel(const char *str);
72 static void list_bars(int fd, struct pci_conf *p);
73 static void list_devs(const char *name, int verbose, int bars, int caps,
74     int errors, int vpd);
75 static void list_verbose(struct pci_conf *p);
76 static void list_vpd(int fd, struct pci_conf *p);
77 static const char *guess_class(struct pci_conf *p);
78 static const char *guess_subclass(struct pci_conf *p);
79 static int load_vendors(void);
80 static void readit(const char *, const char *, int);
81 static void writeit(const char *, const char *, const char *, int);
82 static void chkattached(const char *);
83
84 static int exitstatus = 0;
85
86 static void
87 usage(void)
88 {
89         fprintf(stderr, "%s\n%s\n%s\n%s\n",
90                 "usage: pciconf -l [-bcevV] [device]",
91                 "       pciconf -a device",
92                 "       pciconf -r [-b | -h] device addr[:addr2]",
93                 "       pciconf -w [-b | -h] device addr value");
94         exit (1);
95 }
96
97 int
98 main(int argc, char **argv)
99 {
100         int c;
101         int listmode, readmode, writemode, attachedmode;
102         int bars, caps, errors, verbose, vpd;
103         int byte, isshort;
104
105         listmode = readmode = writemode = attachedmode = 0;
106         bars = caps = errors = verbose = vpd = byte = isshort = 0;
107
108         while ((c = getopt(argc, argv, "abcehlrwvV")) != -1) {
109                 switch(c) {
110                 case 'a':
111                         attachedmode = 1;
112                         break;
113
114                 case 'b':
115                         bars = 1;
116                         byte = 1;
117                         break;
118
119                 case 'c':
120                         caps = 1;
121                         break;
122
123                 case 'e':
124                         errors = 1;
125                         break;
126
127                 case 'h':
128                         isshort = 1;
129                         break;
130
131                 case 'l':
132                         listmode = 1;
133                         break;
134
135                 case 'r':
136                         readmode = 1;
137                         break;
138
139                 case 'w':
140                         writemode = 1;
141                         break;
142
143                 case 'v':
144                         verbose = 1;
145                         break;
146
147                 case 'V':
148                         vpd = 1;
149                         break;
150
151                 default:
152                         usage();
153                 }
154         }
155
156         if ((listmode && optind >= argc + 1)
157             || (writemode && optind + 3 != argc)
158             || (readmode && optind + 2 != argc)
159             || (attachedmode && optind + 1 != argc))
160                 usage();
161
162         if (listmode) {
163                 list_devs(optind + 1 == argc ? argv[optind] : NULL, verbose,
164                     bars, caps, errors, vpd);
165         } else if (attachedmode) {
166                 chkattached(argv[optind]);
167         } else if (readmode) {
168                 readit(argv[optind], argv[optind + 1],
169                     byte ? 1 : isshort ? 2 : 4);
170         } else if (writemode) {
171                 writeit(argv[optind], argv[optind + 1], argv[optind + 2],
172                     byte ? 1 : isshort ? 2 : 4);
173         } else {
174                 usage();
175         }
176
177         return exitstatus;
178 }
179
180 static void
181 list_devs(const char *name, int verbose, int bars, int caps, int errors,
182     int vpd)
183 {
184         int fd;
185         struct pci_conf_io pc;
186         struct pci_conf conf[255], *p;
187         struct pci_match_conf patterns[1];
188         int none_count = 0;
189
190         if (verbose)
191                 load_vendors();
192
193         fd = open(_PATH_DEVPCI, (caps || errors) ? O_RDWR : O_RDONLY, 0);
194         if (fd < 0)
195                 err(1, "%s", _PATH_DEVPCI);
196
197         bzero(&pc, sizeof(struct pci_conf_io));
198         pc.match_buf_len = sizeof(conf);
199         pc.matches = conf;
200         if (name != NULL) {
201                 bzero(&patterns, sizeof(patterns));
202                 patterns[0].pc_sel = getsel(name);
203                 patterns[0].flags = PCI_GETCONF_MATCH_DOMAIN |
204                     PCI_GETCONF_MATCH_BUS | PCI_GETCONF_MATCH_DEV |
205                     PCI_GETCONF_MATCH_FUNC;
206                 pc.num_patterns = 1;
207                 pc.pat_buf_len = sizeof(patterns);
208                 pc.patterns = patterns;
209         }
210
211         do {
212                 if (ioctl(fd, PCIOCGETCONF, &pc) == -1)
213                         err(1, "ioctl(PCIOCGETCONF)");
214
215                 /*
216                  * 255 entries should be more than enough for most people,
217                  * but if someone has more devices, and then changes things
218                  * around between ioctls, we'll do the cheesy thing and
219                  * just bail.  The alternative would be to go back to the
220                  * beginning of the list, and print things twice, which may
221                  * not be desirable.
222                  */
223                 if (pc.status == PCI_GETCONF_LIST_CHANGED) {
224                         warnx("PCI device list changed, please try again");
225                         exitstatus = 1;
226                         close(fd);
227                         return;
228                 } else if (pc.status ==  PCI_GETCONF_ERROR) {
229                         warnx("error returned from PCIOCGETCONF ioctl");
230                         exitstatus = 1;
231                         close(fd);
232                         return;
233                 }
234                 for (p = conf; p < &conf[pc.num_matches]; p++) {
235                         printf("%s%d@pci%d:%d:%d:%d:\tclass=0x%06x card=0x%08x "
236                             "chip=0x%08x rev=0x%02x hdr=0x%02x\n",
237                             (p->pd_name && *p->pd_name) ? p->pd_name :
238                             "none",
239                             (p->pd_name && *p->pd_name) ? (int)p->pd_unit :
240                             none_count++, p->pc_sel.pc_domain,
241                             p->pc_sel.pc_bus, p->pc_sel.pc_dev,
242                             p->pc_sel.pc_func, (p->pc_class << 16) |
243                             (p->pc_subclass << 8) | p->pc_progif,
244                             (p->pc_subdevice << 16) | p->pc_subvendor,
245                             (p->pc_device << 16) | p->pc_vendor,
246                             p->pc_revid, p->pc_hdr);
247                         if (verbose)
248                                 list_verbose(p);
249                         if (bars)
250                                 list_bars(fd, p);
251                         if (caps)
252                                 list_caps(fd, p);
253                         if (errors)
254                                 list_errors(fd, p);
255                         if (vpd)
256                                 list_vpd(fd, p);
257                 }
258         } while (pc.status == PCI_GETCONF_MORE_DEVS);
259
260         close(fd);
261 }
262
263 static void
264 list_bars(int fd, struct pci_conf *p)
265 {
266         struct pci_bar_io bar;
267         uint64_t base;
268         const char *type;
269         int i, range, max;
270
271         switch (p->pc_hdr & PCIM_HDRTYPE) {
272         case PCIM_HDRTYPE_NORMAL:
273                 max = PCIR_MAX_BAR_0;
274                 break;
275         case PCIM_HDRTYPE_BRIDGE:
276                 max = PCIR_MAX_BAR_1;
277                 break;
278         case PCIM_HDRTYPE_CARDBUS:
279                 max = PCIR_MAX_BAR_2;
280                 break;
281         default:
282                 return;
283         }
284
285         for (i = 0; i <= max; i++) {
286                 bar.pbi_sel = p->pc_sel;
287                 bar.pbi_reg = PCIR_BAR(i);
288                 if (ioctl(fd, PCIOCGETBAR, &bar) < 0)
289                         continue;
290                 if (PCI_BAR_IO(bar.pbi_base)) {
291                         type = "I/O Port";
292                         range = 32;
293                         base = bar.pbi_base & PCIM_BAR_IO_BASE;
294                 } else {
295                         if (bar.pbi_base & PCIM_BAR_MEM_PREFETCH)
296                                 type = "Prefetchable Memory";
297                         else
298                                 type = "Memory";
299                         switch (bar.pbi_base & PCIM_BAR_MEM_TYPE) {
300                         case PCIM_BAR_MEM_32:
301                                 range = 32;
302                                 break;
303                         case PCIM_BAR_MEM_1MB:
304                                 range = 20;
305                                 break;
306                         case PCIM_BAR_MEM_64:
307                                 range = 64;
308                                 break;
309                         default:
310                                 range = -1;
311                         }
312                         base = bar.pbi_base & ~((uint64_t)0xf);
313                 }
314                 printf("    bar   [%02x] = type %s, range %2d, base %#jx, ",
315                     PCIR_BAR(i), type, range, (uintmax_t)base);
316                 printf("size %ju, %s\n", (uintmax_t)bar.pbi_length,
317                     bar.pbi_enabled ? "enabled" : "disabled");
318         }
319 }
320
321 static void
322 list_verbose(struct pci_conf *p)
323 {
324         struct pci_vendor_info  *vi;
325         struct pci_device_info  *di;
326         const char *dp;
327
328         TAILQ_FOREACH(vi, &pci_vendors, link) {
329                 if (vi->id == p->pc_vendor) {
330                         printf("    vendor     = '%s'\n", vi->desc);
331                         break;
332                 }
333         }
334         if (vi == NULL) {
335                 di = NULL;
336         } else {
337                 TAILQ_FOREACH(di, &vi->devs, link) {
338                         if (di->id == p->pc_device) {
339                                 printf("    device     = '%s'\n", di->desc);
340                                 break;
341                         }
342                 }
343         }
344         if ((dp = guess_class(p)) != NULL)
345                 printf("    class      = %s\n", dp);
346         if ((dp = guess_subclass(p)) != NULL)
347                 printf("    subclass   = %s\n", dp);
348 }
349
350 static void
351 list_vpd(int fd, struct pci_conf *p)
352 {
353         struct pci_list_vpd_io list;
354         struct pci_vpd_element *vpd, *end;
355
356         list.plvi_sel = p->pc_sel;
357         list.plvi_len = 0;
358         list.plvi_data = NULL;
359         if (ioctl(fd, PCIOCLISTVPD, &list) < 0 || list.plvi_len == 0)
360                 return;
361
362         list.plvi_data = malloc(list.plvi_len);
363         if (ioctl(fd, PCIOCLISTVPD, &list) < 0) {
364                 free(list.plvi_data);
365                 return;
366         }
367
368         vpd = list.plvi_data;
369         end = (struct pci_vpd_element *)((char *)vpd + list.plvi_len);
370         for (; vpd < end; vpd = PVE_NEXT(vpd)) {
371                 if (vpd->pve_flags == PVE_FLAG_IDENT) {
372                         printf("    VPD ident  = '%.*s'\n",
373                             (int)vpd->pve_datalen, vpd->pve_data);
374                         continue;
375                 }
376
377                 /* Ignore the checksum keyword. */
378                 if (!(vpd->pve_flags & PVE_FLAG_RW) &&
379                     memcmp(vpd->pve_keyword, "RV", 2) == 0)
380                         continue;
381
382                 /* Ignore remaining read-write space. */
383                 if (vpd->pve_flags & PVE_FLAG_RW &&
384                     memcmp(vpd->pve_keyword, "RW", 2) == 0)
385                         continue;
386
387                 /* Handle extended capability keyword. */
388                 if (!(vpd->pve_flags & PVE_FLAG_RW) &&
389                     memcmp(vpd->pve_keyword, "CP", 2) == 0) {
390                         printf("    VPD ro CP  = ID %02x in map 0x%x[0x%x]\n",
391                             (unsigned int)vpd->pve_data[0],
392                             PCIR_BAR((unsigned int)vpd->pve_data[1]),
393                             (unsigned int)vpd->pve_data[3] << 8 |
394                             (unsigned int)vpd->pve_data[2]);
395                         continue;
396                 }
397
398                 /* Remaining keywords should all have ASCII values. */
399                 printf("    VPD %s %c%c  = '%.*s'\n",
400                     vpd->pve_flags & PVE_FLAG_RW ? "rw" : "ro",
401                     vpd->pve_keyword[0], vpd->pve_keyword[1],
402                     (int)vpd->pve_datalen, vpd->pve_data);
403         }
404         free(list.plvi_data);
405 }
406
407 /*
408  * This is a direct cut-and-paste from the table in sys/dev/pci/pci.c.
409  */
410 static struct
411 {
412         int     class;
413         int     subclass;
414         const char *desc;
415 } pci_nomatch_tab[] = {
416         {PCIC_OLD,              -1,                     "old"},
417         {PCIC_OLD,              PCIS_OLD_NONVGA,        "non-VGA display device"},
418         {PCIC_OLD,              PCIS_OLD_VGA,           "VGA-compatible display device"},
419         {PCIC_STORAGE,          -1,                     "mass storage"},
420         {PCIC_STORAGE,          PCIS_STORAGE_SCSI,      "SCSI"},
421         {PCIC_STORAGE,          PCIS_STORAGE_IDE,       "ATA"},
422         {PCIC_STORAGE,          PCIS_STORAGE_FLOPPY,    "floppy disk"},
423         {PCIC_STORAGE,          PCIS_STORAGE_IPI,       "IPI"},
424         {PCIC_STORAGE,          PCIS_STORAGE_RAID,      "RAID"},
425         {PCIC_STORAGE,          PCIS_STORAGE_ATA_ADMA,  "ATA (ADMA)"},
426         {PCIC_STORAGE,          PCIS_STORAGE_SATA,      "SATA"},
427         {PCIC_STORAGE,          PCIS_STORAGE_SAS,       "SAS"},
428         {PCIC_STORAGE,          PCIS_STORAGE_NVM,       "NVM"},
429         {PCIC_NETWORK,          -1,                     "network"},
430         {PCIC_NETWORK,          PCIS_NETWORK_ETHERNET,  "ethernet"},
431         {PCIC_NETWORK,          PCIS_NETWORK_TOKENRING, "token ring"},
432         {PCIC_NETWORK,          PCIS_NETWORK_FDDI,      "fddi"},
433         {PCIC_NETWORK,          PCIS_NETWORK_ATM,       "ATM"},
434         {PCIC_NETWORK,          PCIS_NETWORK_ISDN,      "ISDN"},
435         {PCIC_DISPLAY,          -1,                     "display"},
436         {PCIC_DISPLAY,          PCIS_DISPLAY_VGA,       "VGA"},
437         {PCIC_DISPLAY,          PCIS_DISPLAY_XGA,       "XGA"},
438         {PCIC_DISPLAY,          PCIS_DISPLAY_3D,        "3D"},
439         {PCIC_MULTIMEDIA,       -1,                     "multimedia"},
440         {PCIC_MULTIMEDIA,       PCIS_MULTIMEDIA_VIDEO,  "video"},
441         {PCIC_MULTIMEDIA,       PCIS_MULTIMEDIA_AUDIO,  "audio"},
442         {PCIC_MULTIMEDIA,       PCIS_MULTIMEDIA_TELE,   "telephony"},
443         {PCIC_MULTIMEDIA,       PCIS_MULTIMEDIA_HDA,    "HDA"},
444         {PCIC_MEMORY,           -1,                     "memory"},
445         {PCIC_MEMORY,           PCIS_MEMORY_RAM,        "RAM"},
446         {PCIC_MEMORY,           PCIS_MEMORY_FLASH,      "flash"},
447         {PCIC_BRIDGE,           -1,                     "bridge"},
448         {PCIC_BRIDGE,           PCIS_BRIDGE_HOST,       "HOST-PCI"},
449         {PCIC_BRIDGE,           PCIS_BRIDGE_ISA,        "PCI-ISA"},
450         {PCIC_BRIDGE,           PCIS_BRIDGE_EISA,       "PCI-EISA"},
451         {PCIC_BRIDGE,           PCIS_BRIDGE_MCA,        "PCI-MCA"},
452         {PCIC_BRIDGE,           PCIS_BRIDGE_PCI,        "PCI-PCI"},
453         {PCIC_BRIDGE,           PCIS_BRIDGE_PCMCIA,     "PCI-PCMCIA"},
454         {PCIC_BRIDGE,           PCIS_BRIDGE_NUBUS,      "PCI-NuBus"},
455         {PCIC_BRIDGE,           PCIS_BRIDGE_CARDBUS,    "PCI-CardBus"},
456         {PCIC_BRIDGE,           PCIS_BRIDGE_RACEWAY,    "PCI-RACEway"},
457         {PCIC_SIMPLECOMM,       -1,                     "simple comms"},
458         {PCIC_SIMPLECOMM,       PCIS_SIMPLECOMM_UART,   "UART"},        /* could detect 16550 */
459         {PCIC_SIMPLECOMM,       PCIS_SIMPLECOMM_PAR,    "parallel port"},
460         {PCIC_SIMPLECOMM,       PCIS_SIMPLECOMM_MULSER, "multiport serial"},
461         {PCIC_SIMPLECOMM,       PCIS_SIMPLECOMM_MODEM,  "generic modem"},
462         {PCIC_BASEPERIPH,       -1,                     "base peripheral"},
463         {PCIC_BASEPERIPH,       PCIS_BASEPERIPH_PIC,    "interrupt controller"},
464         {PCIC_BASEPERIPH,       PCIS_BASEPERIPH_DMA,    "DMA controller"},
465         {PCIC_BASEPERIPH,       PCIS_BASEPERIPH_TIMER,  "timer"},
466         {PCIC_BASEPERIPH,       PCIS_BASEPERIPH_RTC,    "realtime clock"},
467         {PCIC_BASEPERIPH,       PCIS_BASEPERIPH_PCIHOT, "PCI hot-plug controller"},
468         {PCIC_BASEPERIPH,       PCIS_BASEPERIPH_SDHC,   "SD host controller"},
469         {PCIC_BASEPERIPH,       PCIS_BASEPERIPH_IOMMU,  "IOMMU"},
470         {PCIC_INPUTDEV,         -1,                     "input device"},
471         {PCIC_INPUTDEV,         PCIS_INPUTDEV_KEYBOARD, "keyboard"},
472         {PCIC_INPUTDEV,         PCIS_INPUTDEV_DIGITIZER,"digitizer"},
473         {PCIC_INPUTDEV,         PCIS_INPUTDEV_MOUSE,    "mouse"},
474         {PCIC_INPUTDEV,         PCIS_INPUTDEV_SCANNER,  "scanner"},
475         {PCIC_INPUTDEV,         PCIS_INPUTDEV_GAMEPORT, "gameport"},
476         {PCIC_DOCKING,          -1,                     "docking station"},
477         {PCIC_PROCESSOR,        -1,                     "processor"},
478         {PCIC_SERIALBUS,        -1,                     "serial bus"},
479         {PCIC_SERIALBUS,        PCIS_SERIALBUS_FW,      "FireWire"},
480         {PCIC_SERIALBUS,        PCIS_SERIALBUS_ACCESS,  "AccessBus"},
481         {PCIC_SERIALBUS,        PCIS_SERIALBUS_SSA,     "SSA"},
482         {PCIC_SERIALBUS,        PCIS_SERIALBUS_USB,     "USB"},
483         {PCIC_SERIALBUS,        PCIS_SERIALBUS_FC,      "Fibre Channel"},
484         {PCIC_SERIALBUS,        PCIS_SERIALBUS_SMBUS,   "SMBus"},
485         {PCIC_WIRELESS,         -1,                     "wireless controller"},
486         {PCIC_WIRELESS,         PCIS_WIRELESS_IRDA,     "iRDA"},
487         {PCIC_WIRELESS,         PCIS_WIRELESS_IR,       "IR"},
488         {PCIC_WIRELESS,         PCIS_WIRELESS_RF,       "RF"},
489         {PCIC_INTELLIIO,        -1,                     "intelligent I/O controller"},
490         {PCIC_INTELLIIO,        PCIS_INTELLIIO_I2O,     "I2O"},
491         {PCIC_SATCOM,           -1,                     "satellite communication"},
492         {PCIC_SATCOM,           PCIS_SATCOM_TV,         "sat TV"},
493         {PCIC_SATCOM,           PCIS_SATCOM_AUDIO,      "sat audio"},
494         {PCIC_SATCOM,           PCIS_SATCOM_VOICE,      "sat voice"},
495         {PCIC_SATCOM,           PCIS_SATCOM_DATA,       "sat data"},
496         {PCIC_CRYPTO,           -1,                     "encrypt/decrypt"},
497         {PCIC_CRYPTO,           PCIS_CRYPTO_NETCOMP,    "network/computer crypto"},
498         {PCIC_CRYPTO,           PCIS_CRYPTO_NETCOMP,    "entertainment crypto"},
499         {PCIC_DASP,             -1,                     "dasp"},
500         {PCIC_DASP,             PCIS_DASP_DPIO,         "DPIO module"},
501         {0, 0,          NULL}
502 };
503
504 static const char *
505 guess_class(struct pci_conf *p)
506 {
507         int     i;
508
509         for (i = 0; pci_nomatch_tab[i].desc != NULL; i++) {
510                 if (pci_nomatch_tab[i].class == p->pc_class)
511                         return(pci_nomatch_tab[i].desc);
512         }
513         return(NULL);
514 }
515
516 static const char *
517 guess_subclass(struct pci_conf *p)
518 {
519         int     i;
520
521         for (i = 0; pci_nomatch_tab[i].desc != NULL; i++) {
522                 if ((pci_nomatch_tab[i].class == p->pc_class) &&
523                     (pci_nomatch_tab[i].subclass == p->pc_subclass))
524                         return(pci_nomatch_tab[i].desc);
525         }
526         return(NULL);
527 }
528
529 static int
530 load_vendors(void)
531 {
532         const char *dbf;
533         FILE *db;
534         struct pci_vendor_info *cv;
535         struct pci_device_info *cd;
536         char buf[1024], str[1024];
537         char *ch;
538         int id, error;
539
540         /*
541          * Locate the database and initialise.
542          */
543         TAILQ_INIT(&pci_vendors);
544         if ((dbf = getenv("PCICONF_VENDOR_DATABASE")) == NULL)
545                 dbf = _PATH_LPCIVDB;
546         if ((db = fopen(dbf, "r")) == NULL) {
547                 dbf = _PATH_PCIVDB;
548                 if ((db = fopen(dbf, "r")) == NULL)
549                         return(1);
550         }
551         cv = NULL;
552         cd = NULL;
553         error = 0;
554
555         /*
556          * Scan input lines from the database
557          */
558         for (;;) {
559                 if (fgets(buf, sizeof(buf), db) == NULL)
560                         break;
561
562                 if ((ch = strchr(buf, '#')) != NULL)
563                         *ch = '\0';
564                 ch = strchr(buf, '\0') - 1;
565                 while (ch > buf && isspace(*ch))
566                         *ch-- = '\0';
567                 if (ch <= buf)
568                         continue;
569
570                 /* Can't handle subvendor / subdevice entries yet */
571                 if (buf[0] == '\t' && buf[1] == '\t')
572                         continue;
573
574                 /* Check for vendor entry */
575                 if (buf[0] != '\t' && sscanf(buf, "%04x %[^\n]", &id, str) == 2) {
576                         if ((id == 0) || (strlen(str) < 1))
577                                 continue;
578                         if ((cv = malloc(sizeof(struct pci_vendor_info))) == NULL) {
579                                 warn("allocating vendor entry");
580                                 error = 1;
581                                 break;
582                         }
583                         if ((cv->desc = strdup(str)) == NULL) {
584                                 free(cv);
585                                 warn("allocating vendor description");
586                                 error = 1;
587                                 break;
588                         }
589                         cv->id = id;
590                         TAILQ_INIT(&cv->devs);
591                         TAILQ_INSERT_TAIL(&pci_vendors, cv, link);
592                         continue;
593                 }
594
595                 /* Check for device entry */
596                 if (buf[0] == '\t' && sscanf(buf + 1, "%04x %[^\n]", &id, str) == 2) {
597                         if ((id == 0) || (strlen(str) < 1))
598                                 continue;
599                         if (cv == NULL) {
600                                 warnx("device entry with no vendor!");
601                                 continue;
602                         }
603                         if ((cd = malloc(sizeof(struct pci_device_info))) == NULL) {
604                                 warn("allocating device entry");
605                                 error = 1;
606                                 break;
607                         }
608                         if ((cd->desc = strdup(str)) == NULL) {
609                                 free(cd);
610                                 warn("allocating device description");
611                                 error = 1;
612                                 break;
613                         }
614                         cd->id = id;
615                         TAILQ_INSERT_TAIL(&cv->devs, cd, link);
616                         continue;
617                 }
618
619                 /* It's a comment or junk, ignore it */
620         }
621         if (ferror(db))
622                 error = 1;
623         fclose(db);
624
625         return(error);
626 }
627
628 uint32_t
629 read_config(int fd, struct pcisel *sel, long reg, int width)
630 {
631         struct pci_io pi;
632
633         pi.pi_sel = *sel;
634         pi.pi_reg = reg;
635         pi.pi_width = width;
636
637         if (ioctl(fd, PCIOCREAD, &pi) < 0)
638                 err(1, "ioctl(PCIOCREAD)");
639
640         return (pi.pi_data);
641 }
642
643 static struct pcisel
644 getdevice(const char *name)
645 {
646         struct pci_conf_io pc;
647         struct pci_conf conf[1];
648         struct pci_match_conf patterns[1];
649         char *cp;
650         int fd; 
651
652         fd = open(_PATH_DEVPCI, O_RDONLY, 0);
653         if (fd < 0)
654                 err(1, "%s", _PATH_DEVPCI);
655
656         bzero(&pc, sizeof(struct pci_conf_io));
657         pc.match_buf_len = sizeof(conf);
658         pc.matches = conf;
659
660         bzero(&patterns, sizeof(patterns));
661
662         /*
663          * The pattern structure requires the unit to be split out from
664          * the driver name.  Walk backwards from the end of the name to
665          * find the start of the unit.
666          */
667         if (name[0] == '\0')
668                 errx(1, "Empty device name");
669         cp = strchr(name, '\0');
670         assert(cp != NULL && cp != name);
671         cp--;
672         while (cp != name && isdigit(cp[-1]))
673                 cp--;
674         if (cp == name || !isdigit(*cp))
675                 errx(1, "Invalid device name");
676         if ((size_t)(cp - name) + 1 > sizeof(patterns[0].pd_name))
677                 errx(1, "Device name is too long");
678         memcpy(patterns[0].pd_name, name, cp - name);
679         patterns[0].pd_unit = strtol(cp, &cp, 10);
680         assert(*cp == '\0');
681         patterns[0].flags = PCI_GETCONF_MATCH_NAME | PCI_GETCONF_MATCH_UNIT;
682         pc.num_patterns = 1;
683         pc.pat_buf_len = sizeof(patterns);
684         pc.patterns = patterns;
685
686         if (ioctl(fd, PCIOCGETCONF, &pc) == -1)
687                 err(1, "ioctl(PCIOCGETCONF)");
688         if (pc.status != PCI_GETCONF_LAST_DEVICE &&
689             pc.status != PCI_GETCONF_MORE_DEVS)
690                 errx(1, "error returned from PCIOCGETCONF ioctl");
691         close(fd);
692         if (pc.num_matches == 0)
693                 errx(1, "Device not found");
694         return (conf[0].pc_sel);
695 }
696
697 static struct pcisel
698 parsesel(const char *str)
699 {
700         char *ep = strchr(str, '@');
701         char *epbase;
702         struct pcisel sel;
703         unsigned long selarr[4];
704         int i;
705
706         if (ep == NULL)
707                 ep = (char *)str;
708         else
709                 ep++;
710
711         epbase = ep;
712
713         if (strncmp(ep, "pci", 3) == 0) {
714                 ep += 3;
715                 i = 0;
716                 do {
717                         selarr[i++] = strtoul(ep, &ep, 10);
718                 } while ((*ep == ':' || *ep == '.') && *++ep != '\0' && i < 4);
719
720                 if (i > 2)
721                         sel.pc_func = selarr[--i];
722                 else
723                         sel.pc_func = 0;
724                 sel.pc_dev = selarr[--i];
725                 sel.pc_bus = selarr[--i];
726                 if (i > 0)
727                         sel.pc_domain = selarr[--i];
728                 else
729                         sel.pc_domain = 0;
730         }
731         if (*ep != '\x0' || ep == epbase)
732                 errx(1, "cannot parse selector %s", str);
733         return sel;
734 }
735
736 static struct pcisel
737 getsel(const char *str)
738 {
739
740         /*
741          * No device names contain colons and selectors always contain
742          * at least one colon.
743          */
744         if (strchr(str, ':') == NULL)
745                 return (getdevice(str));
746         else
747                 return (parsesel(str));
748 }
749
750 static void
751 readone(int fd, struct pcisel *sel, long reg, int width)
752 {
753
754         printf("%0*x", width*2, read_config(fd, sel, reg, width));
755 }
756
757 static void
758 readit(const char *name, const char *reg, int width)
759 {
760         long rstart;
761         long rend;
762         long r;
763         char *end;
764         int i;
765         int fd;
766         struct pcisel sel;
767
768         fd = open(_PATH_DEVPCI, O_RDWR, 0);
769         if (fd < 0)
770                 err(1, "%s", _PATH_DEVPCI);
771
772         rend = rstart = strtol(reg, &end, 0);
773         if (end && *end == ':') {
774                 end++;
775                 rend = strtol(end, (char **) 0, 0);
776         }
777         sel = getsel(name);
778         for (i = 1, r = rstart; r <= rend; i++, r += width) {
779                 readone(fd, &sel, r, width);
780                 if (i && !(i % 8))
781                         putchar(' ');
782                 putchar(i % (16/width) ? ' ' : '\n');
783         }
784         if (i % (16/width) != 1)
785                 putchar('\n');
786         close(fd);
787 }
788
789 static void
790 writeit(const char *name, const char *reg, const char *data, int width)
791 {
792         int fd;
793         struct pci_io pi;
794
795         pi.pi_sel = getsel(name);
796         pi.pi_reg = strtoul(reg, (char **)0, 0); /* XXX error check */
797         pi.pi_width = width;
798         pi.pi_data = strtoul(data, (char **)0, 0); /* XXX error check */
799
800         fd = open(_PATH_DEVPCI, O_RDWR, 0);
801         if (fd < 0)
802                 err(1, "%s", _PATH_DEVPCI);
803
804         if (ioctl(fd, PCIOCWRITE, &pi) < 0)
805                 err(1, "ioctl(PCIOCWRITE)");
806 }
807
808 static void
809 chkattached(const char *name)
810 {
811         int fd;
812         struct pci_io pi;
813
814         pi.pi_sel = getsel(name);
815
816         fd = open(_PATH_DEVPCI, O_RDWR, 0);
817         if (fd < 0)
818                 err(1, "%s", _PATH_DEVPCI);
819
820         if (ioctl(fd, PCIOCATTACHED, &pi) < 0)
821                 err(1, "ioctl(PCIOCATTACHED)");
822
823         exitstatus = pi.pi_data ? 0 : 2; /* exit(2), if NOT attached */
824         printf("%s: %s%s\n", name, pi.pi_data == 0 ? "not " : "", "attached");
825 }