pcidump.c
上传用户:wudi5211
上传日期:2010-01-21
资源大小:607k
文件大小:7k
源码类别:

嵌入式Linux

开发平台:

C/C++

  1. /*
  2.  * pcidump.c --  a tool to decode /proc/pcidata
  3.  *
  4.  * Tested with 2.0 on the x86
  5.  * Tested with 2.1.43 in the x86
  6.  *
  7.  */
  8. #include <stdio.h>
  9. #include <stdlib.h>
  10. #include <unistd.h>
  11. #include <fcntl.h>
  12. #include <errno.h>
  13. #include <sys/types.h>
  14. #include <sys/stat.h>
  15. #include <linux/pci.h>
  16. #include <asm/page.h>
  17. #include <linux/version.h>
  18. /*
  19.  * Refuse to compile under versions older than 1.99.4
  20.  */
  21. #define VERSION_CODE(vers,rel,seq) ( ((vers)<<16) | ((rel)<<8) | (seq) )
  22. #if LINUX_VERSION_CODE < VERSION_CODE(1,99,4)
  23. #  error "This module needs Linux 1.99.4 or newer"
  24. #else
  25. /* A structure to declare how data is decoded */
  26. struct pcidump_info {
  27.     int offset; /* the data item to retrieve */
  28.     unsigned long bitmask;
  29.     int bool; /* true or false */
  30.     char *string;
  31. };
  32. #define ONEBYTE 0xFF
  33. #define TWOBYTES 0xFFFF
  34. #define FOURBYTES 0xFFFFFFFF
  35. struct pcidump_info dumpinfo[] = {
  36.     {0,                    0,                       0, "tCompulsory registers:n"},
  37.     {PCI_VENDOR_ID,        TWOBYTES,                0, "Vendor id: %04xn"},
  38.     {PCI_DEVICE_ID,        TWOBYTES,                0, "Device id: %04xn"},
  39.     {PCI_COMMAND,          PCI_COMMAND_IO,          1, "I/O space enabled: %cn"},
  40.     {PCI_COMMAND,          PCI_COMMAND_MEMORY,      1, "Memory enabled: %cn"},
  41.     {PCI_COMMAND,          PCI_COMMAND_MASTER,      1, "Master enabled: %cn"},
  42.     {PCI_COMMAND,          PCI_COMMAND_SPECIAL,     1, "Special command enabled: %cn"},
  43.     {PCI_COMMAND,          PCI_COMMAND_INVALIDATE,  1, "Write-invalidate enabled: %cn"},
  44.     {PCI_COMMAND,          PCI_COMMAND_VGA_PALETTE, 1, "Palette-snoop enabled: %cn"},
  45.     {PCI_COMMAND,          PCI_COMMAND_PARITY,      1, "Parity enabled: %cn"},
  46.     {PCI_COMMAND,          PCI_COMMAND_WAIT,        1, "Wait-cycle enabled: %cn"},
  47.     {PCI_COMMAND,          PCI_COMMAND_SERR,        1, "System-error enabled: %cn"},
  48.     {PCI_COMMAND,          PCI_COMMAND_FAST_BACK,   1, "Fast-back-to-back enabled: %cn"},
  49.     {PCI_STATUS,           PCI_STATUS_66MHZ,        1, "Can do 66MHz: %cn"},
  50.     {PCI_STATUS,           PCI_STATUS_UDF,          1, "Supports User Defined Features: %cn"},
  51.     {PCI_STATUS,           PCI_STATUS_FAST_BACK,    1, "Fast-back-to-back capable: %cn"},
  52.     {PCI_STATUS,           PCI_STATUS_PARITY,        1, "Data Parity Reported: %cn"},
  53.     {PCI_STATUS,           PCI_STATUS_DEVSEL_MASK,    0, "Device Select Timing bits are %xn"},
  54.     {PCI_STATUS,           PCI_STATUS_SIG_TARGET_ABORT,1, "Signalled abort as target: %cn"},
  55.     {PCI_STATUS,           PCI_STATUS_REC_TARGET_ABORT, 1, "Received abort from target: %cn"},
  56.     {PCI_STATUS,           PCI_STATUS_REC_MASTER_ABORT, 1, "Aborted transaction as master: %cn"},
  57.     {PCI_STATUS,           PCI_STATUS_SIG_SYSTEM_ERROR, 1, "Did send a system error: %cn"},
  58.     {PCI_STATUS,           PCI_STATUS_DETECTED_PARITY, 1, "Detected a parity error: %cn"},
  59.     {PCI_REVISION_ID,      ONEBYTE,                   0, "Revision id (decimal): %in"},
  60.     {PCI_CLASS_PROG,       ONEBYTE,                  0, "Programmer Interface: %02xn"},
  61.     {PCI_CLASS_DEVICE,     TWOBYTES,                0, "Class of device: %04xn"},
  62.     {PCI_HEADER_TYPE,      0x7f,                    0, "Header type: %02xn"},
  63.     {PCI_HEADER_TYPE,      0x80,                    1, "Multi function device: %cn"},
  64.     {0,                    0,                       0, "tOptional registers:n"},
  65.     {PCI_CACHE_LINE_SIZE,  ONEBYTE,                 0, "Cache line size (decimal): %in"},
  66.     {PCI_LATENCY_TIMER,    ONEBYTE,                 0, "Latency timer (decimal): %in"},
  67.     {PCI_BIST,             PCI_BIST_CAPABLE,        1, "Is Built-In-Self-Test available: %cn"},
  68.     {PCI_BIST,             PCI_BIST_CODE_MASK,      1, "Did Built-In-Self-Test fail: %cn"},
  69.     {PCI_BASE_ADDRESS_0, PCI_BASE_ADDRESS_MEM_MASK,  0, "Base Address 0: %08xn"},
  70.     {PCI_BASE_ADDRESS_0, PCI_BASE_ADDRESS_SPACE,      1, "Base Address 0 Is I/O: %cn"},
  71.     {PCI_BASE_ADDRESS_0, PCI_BASE_ADDRESS_MEM_TYPE_64, 1, "Base Address 0 is 64-bits: %cn"},
  72.     {PCI_BASE_ADDRESS_0, PCI_BASE_ADDRESS_MEM_TYPE_1M,  1, "Base Address 0 is below-1M: %cn"},
  73.     {PCI_BASE_ADDRESS_0, PCI_BASE_ADDRESS_MEM_PREFETCH, 1, "Base Address 0 is prefetchable: %cn"},
  74.     {PCI_BASE_ADDRESS_1, PCI_BASE_ADDRESS_MEM_MASK,     0, "Base Address 1: %08xn"},
  75.     {PCI_BASE_ADDRESS_1, PCI_BASE_ADDRESS_SPACE,        1, "Base Address 1 Is I/O: %cn"},
  76.     {PCI_BASE_ADDRESS_1, PCI_BASE_ADDRESS_MEM_TYPE_64,  1, "Base Address 1 is 64-bits: %cn"},
  77.     {PCI_BASE_ADDRESS_1, PCI_BASE_ADDRESS_MEM_TYPE_1M,  1, "Base Address 1 is below-1M: %cn"},
  78.     {PCI_BASE_ADDRESS_1, PCI_BASE_ADDRESS_MEM_PREFETCH, 1, "Base Address 1 is prefetchable: %cn"},
  79. #if 0
  80. #define PCI_BASE_ADDRESS_2      0x18    /* 32 bits */
  81. #define PCI_BASE_ADDRESS_3      0x1c    /* 32 bits */
  82. #define PCI_BASE_ADDRESS_4      0x20    /* 32 bits */
  83. #define PCI_BASE_ADDRESS_5      0x24    /* 32 bits */
  84. #define PCI_CARDBUS_CIS         0x28
  85. #endif
  86.     {PCI_SUBSYSTEM_ID,        TWOBYTES,                0, "Subsystem id: %04xn"},
  87.     {PCI_SUBSYSTEM_VENDOR_ID, TWOBYTES,                0, "Subsystem vendor: %04xn"},
  88.     {PCI_ROM_ADDRESS,         ~0x7FF,                  0, "Rom address: %08xn"},
  89.     {PCI_ROM_ADDRESS,         PCI_ROM_ADDRESS_ENABLE,  1, "Rom is enabled: %cn"},
  90.     {PCI_INTERRUPT_PIN,       ONEBYTE,                 1, "Does generate interrupts: %cn"},
  91.     {PCI_INTERRUPT_LINE,      ONEBYTE,                 0, "Interrupt line (decimal): %in"},
  92.     {PCI_INTERRUPT_PIN,       ONEBYTE,                 0, "Interrupt pin (decimal): %in"},
  93.     {PCI_MIN_GNT,             ONEBYTE,                 0, "Min bus grant time (decimal): %in"},
  94.     {PCI_MAX_LAT,             ONEBYTE,                 0, "Max bus latency acceptable (decimal): %in"},
  95.     {0x00,                 0,                       0, NULL}
  96. };
  97. unsigned char buffer[PAGE_SIZE];
  98. int main(int argc, char **argv)
  99. {
  100.     int fd=0, len;
  101.     char *fname="/proc/pcidata";
  102.     
  103.     unsigned char *curr, *end;
  104.     if (argc>2) {
  105.         fprintf(stderr,"%s: Usage: "%s <filename>"n"
  106.                 "tfilename should embed binary pci configuration datan"
  107.                 "tif filename is missing, stdin is usedn",
  108.                 argv[0],argv[0]);
  109.         exit(1);
  110.     }
  111.     if (argc>1) {
  112.         fd=open(argv[1],O_RDONLY);
  113.         if (fd<0) {
  114.             fprintf(stderr,"%s: %s: %sn",argv[0],argv[1],strerror(errno));
  115.             exit(1);
  116.         }
  117.     }
  118.     switch (len=read(fd,buffer,PAGE_SIZE)) {
  119.       case 0:
  120.         fprintf(stderr,"%s: /proc/pcidata: no datan",argv[0]);
  121.         exit(1);
  122.       case -1:
  123.         fprintf(stderr,"%s: /proc/pcidata: %sn",argv[0],strerror(errno));
  124.         exit(1);
  125.       default: break;
  126.     }
  127.     if (len < 256) {
  128.         buffer[len]='';
  129.         fprintf(stderr," %s: /dev/pcidata: %sn",argv[0],buffer);
  130.         exit(1);
  131.     }
  132.     if (len % 256) {
  133.         fprintf(stderr," %s: /dev/pcidata: incorrect data size: %in",argv[0],len);
  134.         exit(1);
  135.     }
  136.     for (end=buffer+len, curr=buffer; curr<end; curr+=256) {
  137.         struct pcidump_info *ptr;
  138.         unsigned int datum;
  139.         for (ptr = dumpinfo; ptr->string; ptr++) {
  140.             /*
  141.              * Perform a little-endian read of the item
  142.              */
  143.             datum = curr[ptr->offset]
  144.                 | (curr[ptr->offset+1]<<8)
  145.                     | (curr[ptr->offset+2]<<16)
  146.                         | (curr[ptr->offset+3]<<24);
  147.             datum &= ptr->bitmask;
  148.             printf(ptr->string, ptr->bool ? (datum ? 'y' : 'n') : datum);
  149.         }
  150.         printf("n");
  151.     }
  152.     return 0;
  153. }
  154. #endif /* version 1.99.4 or newer */