pci.h 9.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256
  1. /*
  2. * The PCI Library
  3. *
  4. * Copyright (c) 1997--2016 Martin Mares <mj@ucw.cz>
  5. *
  6. * Can be freely distributed and used under the terms of the GNU GPL.
  7. */
  8. #ifndef _PCI_LIB_H
  9. #define _PCI_LIB_H
  10. #ifndef PCI_CONFIG_H
  11. #include "config.h"
  12. #endif
  13. #include "header.h"
  14. #include "types.h"
  15. #define PCI_LIB_VERSION 0x030501
  16. #ifndef PCI_ABI
  17. #define PCI_ABI
  18. #endif
  19. /*
  20. * PCI Access Structure
  21. */
  22. struct pci_methods;
  23. enum pci_access_type {
  24. /* Known access methods, remember to update access.c as well */
  25. PCI_ACCESS_AUTO, /* Autodetection */
  26. PCI_ACCESS_SYS_BUS_PCI, /* Linux /sys/bus/pci */
  27. PCI_ACCESS_PROC_BUS_PCI, /* Linux /proc/bus/pci */
  28. PCI_ACCESS_I386_TYPE1, /* i386 ports, type 1 */
  29. PCI_ACCESS_I386_TYPE2, /* i386 ports, type 2 */
  30. PCI_ACCESS_FBSD_DEVICE, /* FreeBSD /dev/pci */
  31. PCI_ACCESS_AIX_DEVICE, /* /dev/pci0, /dev/bus0, etc. */
  32. PCI_ACCESS_NBSD_LIBPCI, /* NetBSD libpci */
  33. PCI_ACCESS_OBSD_DEVICE, /* OpenBSD /dev/pci */
  34. PCI_ACCESS_DUMP, /* Dump file */
  35. PCI_ACCESS_DARWIN, /* Darwin */
  36. PCI_ACCESS_MAX
  37. };
  38. struct pci_access {
  39. /* Options you can change: */
  40. unsigned int method; /* Access method */
  41. int writeable; /* Open in read/write mode */
  42. int buscentric; /* Bus-centric view of the world */
  43. char *id_file_name; /* Name of ID list file (use pci_set_name_list_path()) */
  44. int free_id_name; /* Set if id_file_name is malloced */
  45. int numeric_ids; /* Enforce PCI_LOOKUP_NUMERIC (>1 => PCI_LOOKUP_MIXED) */
  46. unsigned int id_lookup_mode; /* pci_lookup_mode flags which are set automatically */
  47. /* Default: PCI_LOOKUP_CACHE */
  48. int debugging; /* Turn on debugging messages */
  49. /* Functions you can override: */
  50. void (*error)(char *msg, ...) PCI_PRINTF(1,2); /* Write error message and quit */
  51. void (*warning)(char *msg, ...) PCI_PRINTF(1,2); /* Write a warning message */
  52. void (*debug)(char *msg, ...) PCI_PRINTF(1,2); /* Write a debugging message */
  53. struct pci_dev *devices; /* Devices found on this bus */
  54. /* Fields used internally: */
  55. struct pci_methods *methods;
  56. struct pci_param *params;
  57. struct id_entry **id_hash; /* names.c */
  58. struct id_bucket *current_id_bucket;
  59. int id_load_failed;
  60. int id_cache_status; /* 0=not read, 1=read, 2=dirty */
  61. struct udev *id_udev; /* names-hwdb.c */
  62. struct udev_hwdb *id_udev_hwdb;
  63. int fd; /* proc/sys: fd for config space */
  64. int fd_rw; /* proc/sys: fd opened read-write */
  65. int fd_pos; /* proc/sys: current position */
  66. int fd_vpd; /* sys: fd for VPD */
  67. struct pci_dev *cached_dev; /* proc/sys: device the fds are for */
  68. };
  69. /* Initialize PCI access */
  70. struct pci_access *pci_alloc(void) PCI_ABI;
  71. void pci_init(struct pci_access *) PCI_ABI;
  72. void pci_cleanup(struct pci_access *) PCI_ABI;
  73. /* Scanning of devices */
  74. void pci_scan_bus(struct pci_access *acc) PCI_ABI;
  75. struct pci_dev *pci_get_dev(struct pci_access *acc, int domain, int bus, int dev, int func) PCI_ABI; /* Raw access to specified device */
  76. void pci_free_dev(struct pci_dev *) PCI_ABI;
  77. /* Names of access methods */
  78. int pci_lookup_method(char *name) PCI_ABI; /* Returns -1 if not found */
  79. char *pci_get_method_name(int index) PCI_ABI; /* Returns "" if unavailable, NULL if index out of range */
  80. /*
  81. * Named parameters
  82. */
  83. struct pci_param {
  84. struct pci_param *next; /* Please use pci_walk_params() for traversing the list */
  85. char *param; /* Name of the parameter */
  86. char *value; /* Value of the parameter */
  87. int value_malloced; /* used internally */
  88. char *help; /* Explanation of the parameter */
  89. };
  90. char *pci_get_param(struct pci_access *acc, char *param) PCI_ABI;
  91. int pci_set_param(struct pci_access *acc, char *param, char *value) PCI_ABI; /* 0 on success, -1 if no such parameter */
  92. /* To traverse the list, call pci_walk_params repeatedly, first with prev=NULL, and do not modify the parameters during traversal. */
  93. struct pci_param *pci_walk_params(struct pci_access *acc, struct pci_param *prev) PCI_ABI;
  94. /*
  95. * Devices
  96. */
  97. struct pci_dev {
  98. struct pci_dev *next; /* Next device in the chain */
  99. u16 domain_16; /* 16-bit version of the PCI domain for backward compatibility */
  100. /* 0xffff if the real domain doesn't fit in 16 bits */
  101. u8 bus, dev, func; /* Bus inside domain, device and function */
  102. /* These fields are set by pci_fill_info() */
  103. int known_fields; /* Set of info fields already known */
  104. u16 vendor_id, device_id; /* Identity of the device */
  105. u16 device_class; /* PCI device class */
  106. int irq; /* IRQ number */
  107. pciaddr_t base_addr[6]; /* Base addresses including flags in lower bits */
  108. pciaddr_t size[6]; /* Region sizes */
  109. pciaddr_t rom_base_addr; /* Expansion ROM base address */
  110. pciaddr_t rom_size; /* Expansion ROM size */
  111. struct pci_cap *first_cap; /* List of capabilities */
  112. char *phy_slot; /* Physical slot */
  113. char *module_alias; /* Linux kernel module alias */
  114. char *label; /* Device name as exported by BIOS */
  115. int numa_node; /* NUMA node */
  116. pciaddr_t flags[6]; /* PCI_IORESOURCE_* flags for regions */
  117. pciaddr_t rom_flags; /* PCI_IORESOURCE_* flags for expansion ROM */
  118. int domain; /* PCI domain (host bridge) */
  119. /* Fields used internally: */
  120. struct pci_access *access;
  121. struct pci_methods *methods;
  122. u8 *cache; /* Cached config registers */
  123. int cache_len;
  124. int hdrtype; /* Cached low 7 bits of header type, -1 if unknown */
  125. void *aux; /* Auxillary data */
  126. };
  127. #define PCI_ADDR_IO_MASK (~(pciaddr_t) 0x3)
  128. #define PCI_ADDR_MEM_MASK (~(pciaddr_t) 0xf)
  129. #define PCI_ADDR_FLAG_MASK 0xf
  130. u8 pci_read_byte(struct pci_dev *, int pos) PCI_ABI; /* Access to configuration space */
  131. u16 pci_read_word(struct pci_dev *, int pos) PCI_ABI;
  132. u32 pci_read_long(struct pci_dev *, int pos) PCI_ABI;
  133. int pci_read_block(struct pci_dev *, int pos, u8 *buf, int len) PCI_ABI;
  134. int pci_read_vpd(struct pci_dev *d, int pos, u8 *buf, int len) PCI_ABI;
  135. int pci_write_byte(struct pci_dev *, int pos, u8 data) PCI_ABI;
  136. int pci_write_word(struct pci_dev *, int pos, u16 data) PCI_ABI;
  137. int pci_write_long(struct pci_dev *, int pos, u32 data) PCI_ABI;
  138. int pci_write_block(struct pci_dev *, int pos, u8 *buf, int len) PCI_ABI;
  139. int pci_fill_info(struct pci_dev *, int flags) PCI_ABI; /* Fill in device information */
  140. #define PCI_FILL_IDENT 0x0001
  141. #define PCI_FILL_IRQ 0x0002
  142. #define PCI_FILL_BASES 0x0004
  143. #define PCI_FILL_ROM_BASE 0x0008
  144. #define PCI_FILL_SIZES 0x0010
  145. #define PCI_FILL_CLASS 0x0020
  146. #define PCI_FILL_CAPS 0x0040
  147. #define PCI_FILL_EXT_CAPS 0x0080
  148. #define PCI_FILL_PHYS_SLOT 0x0100
  149. #define PCI_FILL_MODULE_ALIAS 0x0200
  150. #define PCI_FILL_LABEL 0x0400
  151. #define PCI_FILL_NUMA_NODE 0x0800
  152. #define PCI_FILL_IO_FLAGS 0x1000
  153. #define PCI_FILL_RESCAN 0x00010000
  154. void pci_setup_cache(struct pci_dev *, u8 *cache, int len) PCI_ABI;
  155. /*
  156. * Capabilities
  157. */
  158. struct pci_cap {
  159. struct pci_cap *next;
  160. u16 id; /* PCI_CAP_ID_xxx */
  161. u16 type; /* PCI_CAP_xxx */
  162. unsigned int addr; /* Position in the config space */
  163. };
  164. #define PCI_CAP_NORMAL 1 /* Traditional PCI capabilities */
  165. #define PCI_CAP_EXTENDED 2 /* PCIe extended capabilities */
  166. struct pci_cap *pci_find_cap(struct pci_dev *, unsigned int id, unsigned int type) PCI_ABI;
  167. /*
  168. * Filters
  169. */
  170. struct pci_filter {
  171. int domain, bus, slot, func; /* -1 = ANY */
  172. int vendor, device, device_class;
  173. int rfu[3];
  174. };
  175. void pci_filter_init(struct pci_access *, struct pci_filter *) PCI_ABI;
  176. char *pci_filter_parse_slot(struct pci_filter *, char *) PCI_ABI;
  177. char *pci_filter_parse_id(struct pci_filter *, char *) PCI_ABI;
  178. int pci_filter_match(struct pci_filter *, struct pci_dev *) PCI_ABI;
  179. /*
  180. * Conversion of PCI ID's to names (according to the pci.ids file)
  181. *
  182. * Call pci_lookup_name() to identify different types of ID's:
  183. *
  184. * VENDOR (vendorID) -> vendor
  185. * DEVICE (vendorID, deviceID) -> device
  186. * VENDOR | DEVICE (vendorID, deviceID) -> combined vendor and device
  187. * SUBSYSTEM | VENDOR (subvendorID) -> subsystem vendor
  188. * SUBSYSTEM | DEVICE (vendorID, deviceID, subvendorID, subdevID) -> subsystem device
  189. * SUBSYSTEM | VENDOR | DEVICE (vendorID, deviceID, subvendorID, subdevID) -> combined subsystem v+d
  190. * SUBSYSTEM | ... (-1, -1, subvendorID, subdevID) -> generic subsystem
  191. * CLASS (classID) -> class
  192. * PROGIF (classID, progif) -> programming interface
  193. */
  194. char *pci_lookup_name(struct pci_access *a, char *buf, int size, int flags, ...) PCI_ABI;
  195. int pci_load_name_list(struct pci_access *a) PCI_ABI; /* Called automatically by pci_lookup_*() when needed; returns success */
  196. void pci_free_name_list(struct pci_access *a) PCI_ABI; /* Called automatically by pci_cleanup() */
  197. void pci_set_name_list_path(struct pci_access *a, char *name, int to_be_freed) PCI_ABI;
  198. void pci_id_cache_flush(struct pci_access *a) PCI_ABI;
  199. enum pci_lookup_mode {
  200. PCI_LOOKUP_VENDOR = 1, /* Vendor name (args: vendorID) */
  201. PCI_LOOKUP_DEVICE = 2, /* Device name (args: vendorID, deviceID) */
  202. PCI_LOOKUP_CLASS = 4, /* Device class (args: classID) */
  203. PCI_LOOKUP_SUBSYSTEM = 8,
  204. PCI_LOOKUP_PROGIF = 16, /* Programming interface (args: classID, prog_if) */
  205. PCI_LOOKUP_NUMERIC = 0x10000, /* Want only formatted numbers; default if access->numeric_ids is set */
  206. PCI_LOOKUP_NO_NUMBERS = 0x20000, /* Return NULL if not found in the database; default is to print numerically */
  207. PCI_LOOKUP_MIXED = 0x40000, /* Include both numbers and names */
  208. PCI_LOOKUP_NETWORK = 0x80000, /* Try to resolve unknown ID's by DNS */
  209. PCI_LOOKUP_SKIP_LOCAL = 0x100000, /* Do not consult local database */
  210. PCI_LOOKUP_CACHE = 0x200000, /* Consult the local cache before using DNS */
  211. PCI_LOOKUP_REFRESH_CACHE = 0x400000, /* Forget all previously cached entries, but still allow updating the cache */
  212. PCI_LOOKUP_NO_HWDB = 0x800000, /* Do not ask udev's hwdb */
  213. };
  214. #endif