bank.h 10 KB

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