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

嵌入式Linux

开发平台:

C/C++

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