bank.h 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174
  1. #ifndef _PCILIB_BANK_H
  2. #define _PCILIB_BANK_H
  3. #include <pcilib.h>
  4. #define PCILIB_REGISTER_BANK_INVALID ((pcilib_register_bank_t)-1)
  5. #define PCILIB_REGISTER_BANK0 0 /**< First BANK to be used in the event engine */
  6. #define PCILIB_REGISTER_BANK1 1
  7. #define PCILIB_REGISTER_BANK2 2
  8. #define PCILIB_REGISTER_BANK3 3
  9. #define PCILIB_REGISTER_BANK_CONF 64 /**< Configuration registers */
  10. #define PCILIB_REGISTER_BANK_PROPERTY 65 /**< Registers abstracting properties and other computed registers */
  11. #define PCILIB_REGISTER_BANK_DMACONF 96 /**< DMA configuration in the software registers */
  12. #define PCILIB_REGISTER_BANK_DMA 97 /**< First BANK address to be used by DMA engines */
  13. #define PCILIB_REGISTER_BANK_DYNAMIC 128 /**< First BANK address to map dynamic XML configuration */
  14. #define PCILIB_REGISTER_PROTOCOL_INVALID ((pcilib_register_protocol_t)-1)
  15. #define PCILIB_REGISTER_PROTOCOL0 0 /**< First PROTOCOL address to be used in the event engine */
  16. #define PCILIB_REGISTER_PROTOCOL_DEFAULT 64 /**< Default memmap based protocol */
  17. #define PCILIB_REGISTER_PROTOCOL_SOFTWARE 65 /**< Software registers */
  18. #define PCILIB_REGISTER_PROTOCOL_PROPERTY 66 /**< Protocol to access registers interfacing properties */
  19. #define PCILIB_REGISTER_PROTOCOL_DMA 96 /**< First PROTOCOL address to be used by DMA engines */
  20. #define PCILIB_REGISTER_PROTOCOL_DYNAMIC 128 /**< First PROTOCOL address to be used by plugins */
  21. typedef uint8_t pcilib_register_bank_t; /**< Type holding the bank position within the field listing register banks in the model */
  22. typedef uint8_t pcilib_register_bank_addr_t; /**< Type holding the bank address number */
  23. typedef uint8_t pcilib_register_protocol_t; /**< Type holding the protocol position within the field listing register protocols in the model */
  24. typedef uint8_t pcilib_register_protocol_addr_t; /**< Type holding the protocol address */
  25. typedef struct pcilib_register_bank_context_s pcilib_register_bank_context_t;
  26. typedef enum {
  27. PCILIB_MODEL_MODIFICATON_FLAGS_DEFAULT = 0,
  28. PCILIB_MODEL_MODIFICATION_FLAG_OVERRIDE = 1, /**< Instructs to override the existing registers/banks/etc... */
  29. PCILIB_MODEL_MODIFICATION_FLAG_SKIP_EXISTING = 2 /**< If flag is set, pcilib will just skip existing registers/banks/etc instead of reporting a error */
  30. } pcilib_model_modification_flags_t;
  31. typedef struct {
  32. pcilib_version_t version;
  33. pcilib_register_bank_context_t *(*init)(pcilib_t *ctx, pcilib_register_bank_t bank, const char *model, const void *args); /**< Optional API call to initialize bank context */
  34. void (*free)(pcilib_t *pcilib, pcilib_register_bank_context_t *ctx); /**< Optional API call to cleanup bank context */
  35. int (*read)(pcilib_t *pcilib, pcilib_register_bank_context_t *ctx, pcilib_register_addr_t addr, pcilib_register_value_t *value); /**< Read from register, mandatory for RO/RW registers */
  36. int (*write)(pcilib_t *pcilib, pcilib_register_bank_context_t *ctx, pcilib_register_addr_t addr, pcilib_register_value_t value); /**< Write to register, mandatory for WO/RW registers */
  37. } pcilib_register_protocol_api_description_t;
  38. typedef struct {
  39. pcilib_register_protocol_addr_t addr; /**< Protocol address used in model for addressing the described protocol */
  40. const pcilib_register_protocol_api_description_t *api; /**< Defines all API functions for protocol */
  41. const char *model; /**< If NULL, the actually used model is used instead */
  42. const void *args; /**< Custom protocol-specific arguments. The actual structure may depend on the specified model */
  43. const char *name; /**< Short protocol name */
  44. const char *description; /**< A bit longer protocol description */
  45. } pcilib_register_protocol_description_t;
  46. typedef struct {
  47. pcilib_register_bank_addr_t addr; /**< Bank address used in model for addressing the described register bank */
  48. pcilib_register_protocol_addr_t protocol; /**< Defines a protocol to access registers */
  49. pcilib_bar_t bar; /**< Specifies the PCI BAR through which an access to the registers is provided (autodetcted if PCILIB_BAR_DETECT is specified) */
  50. uintptr_t read_addr; /**< protocol specific (normally offset in the BAR of the first address used to read registers) */
  51. uintptr_t write_addr; /**< protocol specific (normally offset in the BAR of the first address used to write registers) */
  52. uint8_t access; /**< Default register size in bits (or word-size in plain addressing mode) */
  53. size_t size; /**< The size of the bank in bytes (i.e. number of registers in plain addressing mode multiplied by access; this does not limit number of register names since indefinite number of names can be provided if bit-fields/views are used) */
  54. pcilib_endianess_t raw_endianess; /**< Specifies endianess in the plain-addressing mode, PCILIB_HOST_ENDIAN have to be specified if no conversion desired.
  55. Conversion applied after protocol. This value does not get into the account in register-access mode */
  56. pcilib_endianess_t endianess; /**< Specifies endianess in the register-access mode, this may differ from raw_endianess if multi-word registers are used.
  57. This is fully independent from raw_endianess. No double conversion is either performed */
  58. const char *format; /**< printf format for the registers, either %lu for decimal output or 0x%lx for hexdecimal */
  59. const char *name; /**< short bank name */
  60. const char *description; /**< longer bank description */
  61. } pcilib_register_bank_description_t;
  62. /**
  63. * Default mappings: defines virtual address to register mappings, i.e. how 0x9000 in the following command
  64. * will be mapped to the actual register. By comparing with start and end-addresses, we find to which range
  65. * 0x9000 belongs to and detect actual bank and offset in it.
  66. * Simple example: pci -r 0x9000
  67. * if we specify range { 0x9000, 0x9100, 10, -0x9000}, the example command we print the value of the first
  68. * register in the bank 10.
  69. */
  70. typedef struct {
  71. uintptr_t start; /**< The first virtual address of the register range */
  72. uintptr_t end; /**< The last virtual address of the register range */
  73. pcilib_register_bank_addr_t bank; /**< The bank mapped to the specified range */
  74. long addr_shift; /**< Address shift, i.e. how much we should add/substract to the virtual address to get address in the register bank */
  75. } pcilib_register_range_t;
  76. struct pcilib_register_bank_context_s {
  77. const pcilib_register_bank_description_t *bank; /**< Corresponding bank description */
  78. const pcilib_register_protocol_api_description_t *api; /**< API functions */
  79. pcilib_xml_node_t *xml; /**< Additional XML properties */
  80. };
  81. #ifdef __cplusplus
  82. extern "C" {
  83. #endif
  84. /**
  85. * Initalizes context of register banks. This is an internal function and will
  86. * be called automatically when new register banks are added. On error no new
  87. * banks are initalized
  88. * @param[in,out] ctx - pcilib context
  89. * @return - error or 0 on success
  90. */
  91. int pcilib_init_register_banks(pcilib_t *ctx);
  92. /**
  93. * Destroys contexts of register banks. This is an internal function and will
  94. * be called during clean-up.
  95. * @param[in,out] ctx - pcilib context
  96. * @param[in] start - specifies first bank to clean (used to clean only part of the banks to keep the defined state if pcilib_init_register_banks has failed)
  97. */
  98. void pcilib_free_register_banks(pcilib_t *ctx, pcilib_register_bank_t start);
  99. /**
  100. * Use this function to add new register banks into the model or override configuration
  101. * of the existing banks. The function will copy the context of banks structure, but name,
  102. * description, and other strings in the structure are considered to have static duration
  103. * and will not be copied. On error no new banks are initalized.
  104. * @param[in,out] ctx - pcilib context
  105. * @param[in] flags - instructs if existing banks should be reported as error (default), overriden or ignored
  106. * @param[in] n - number of banks to initialize. It is OK to pass 0 if banks variable is NULL terminated (last member of banks array have all members set to 0)
  107. * @param[in] banks - bank descriptions
  108. * @param[out] ids - if specified will contain the ids of the newly registered and overriden banks
  109. * @return - error or 0 on success
  110. */
  111. int pcilib_add_register_banks(pcilib_t *ctx, pcilib_model_modification_flags_t flags, size_t n, const pcilib_register_bank_description_t *banks, pcilib_register_bank_t *ids);
  112. /**
  113. * Use this function to add new register protocols into the model. It is error to re-register
  114. * already registered protocols. The function will copy the context of banks structure, but name,
  115. * description, and other strings in the structure are considered to have static duration
  116. * and will not be copied. On error no new protocols are initalized.
  117. * @param[in,out] ctx - pcilib context
  118. * @param[in] flags - not used
  119. * @param[in] n - number of protocols to initialize. It is OK to pass 0 if protocols variable is NULL terminated (last member of protocols array have all members set to 0)
  120. * @param[in] protocols - protocol descriptions
  121. * @param[out] ids - if specified will contain the ids of the newly registered protocols
  122. * @return - error or 0 on success
  123. */
  124. int pcilib_add_register_protocols(pcilib_t *ctx, pcilib_model_modification_flags_t flags, size_t n, const pcilib_register_protocol_description_t *protocols, pcilib_register_protocol_t *ids);
  125. /**
  126. * Use this function to add new register ranges into the model. It is error register
  127. * overlapping registered ranges. On error no new ranges are initalized.
  128. * @param[in,out] ctx - pcilib context
  129. * @param[in] flags - not used
  130. * @param[in] n - number of protocols to initialize. It is OK to pass 0 if protocols variable is NULL terminated.
  131. * @param[in] ranges - range descriptions
  132. * @return - error or 0 on success
  133. */
  134. int pcilib_add_register_ranges(pcilib_t *ctx, pcilib_model_modification_flags_t flags, size_t n, const pcilib_register_range_t *ranges);
  135. pcilib_register_bank_t pcilib_find_register_bank_by_addr(pcilib_t *ctx, pcilib_register_bank_addr_t bank);
  136. pcilib_register_bank_t pcilib_find_register_bank_by_name(pcilib_t *ctx, const char *bankname);
  137. pcilib_register_bank_t pcilib_find_register_bank(pcilib_t *ctx, const char *bank);
  138. pcilib_register_protocol_t pcilib_find_register_protocol_by_addr(pcilib_t *ctx, pcilib_register_protocol_addr_t protocol);
  139. pcilib_register_protocol_t pcilib_find_register_protocol_by_name(pcilib_t *ctx, const char *name);
  140. pcilib_register_protocol_t pcilib_find_register_protocol(pcilib_t *ctx, const char *name);
  141. int pcilib_get_register_bank_attr_by_id(pcilib_t *ctx, pcilib_register_bank_t bank, const char *attr, pcilib_value_t *val);
  142. int pcilib_get_register_bank_attr(pcilib_t *ctx, const char *bankname, const char *attr, pcilib_value_t *val);
  143. #ifdef __cplusplus
  144. }
  145. #endif
  146. #endif /* _PCILIB_BANK_H */