Blame example.c

Packit 9fb349
/*
Packit 9fb349
 *	The PCI Library -- Example of use (simplistic lister of PCI devices)
Packit 9fb349
 *
Packit 9fb349
 *	Written by Martin Mares and put to public domain. You can do
Packit 9fb349
 *	with it anything you want, but I don't give you any warranty.
Packit 9fb349
 */
Packit 9fb349
Packit 9fb349
#include <stdio.h>
Packit 9fb349
Packit 9fb349
#include "lib/pci.h"
Packit 9fb349
Packit 9fb349
int main(void)
Packit 9fb349
{
Packit 9fb349
  struct pci_access *pacc;
Packit 9fb349
  struct pci_dev *dev;
Packit 9fb349
  unsigned int c;
Packit 9fb349
  char namebuf[1024], *name;
Packit 9fb349
Packit 9fb349
  pacc = pci_alloc();		/* Get the pci_access structure */
Packit 9fb349
  /* Set all options you want -- here we stick with the defaults */
Packit 9fb349
  pci_init(pacc);		/* Initialize the PCI library */
Packit 9fb349
  pci_scan_bus(pacc);		/* We want to get the list of devices */
Packit 9fb349
  for (dev=pacc->devices; dev; dev=dev->next)	/* Iterate over all devices */
Packit 9fb349
    {
Packit 9fb349
      pci_fill_info(dev, PCI_FILL_IDENT | PCI_FILL_BASES | PCI_FILL_CLASS);	/* Fill in header info we need */
Packit 9fb349
      c = pci_read_byte(dev, PCI_INTERRUPT_PIN);				/* Read config register directly */
Packit 9fb349
      printf("%04x:%02x:%02x.%d vendor=%04x device=%04x class=%04x irq=%d (pin %d) base0=%lx",
Packit 9fb349
	     dev->domain, dev->bus, dev->dev, dev->func, dev->vendor_id, dev->device_id,
Packit 9fb349
	     dev->device_class, dev->irq, c, (long) dev->base_addr[0]);
Packit 9fb349
Packit 9fb349
      /* Look up and print the full name of the device */
Packit 9fb349
      name = pci_lookup_name(pacc, namebuf, sizeof(namebuf), PCI_LOOKUP_DEVICE, dev->vendor_id, dev->device_id);
Packit 9fb349
      printf(" (%s)\n", name);
Packit 9fb349
    }
Packit 9fb349
  pci_cleanup(pacc);		/* Close everything */
Packit 9fb349
  return 0;
Packit 9fb349
}