bank.h 6.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  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_DYNAMIC 128 /**< First BANK address to map dynamic XML configuration */
  11. #define PCILIB_REGISTER_PROTOCOL_INVALID ((pcilib_register_protocol_t)-1)
  12. #define PCILIB_REGISTER_PROTOCOL0 0 /**< First PROTOCOL address to be used in the event engine */
  13. #define PCILIB_REGISTER_PROTOCOL_DEFAULT 64 /**< Default memmap based protocol */
  14. #define PCILIB_REGISTER_PROTOCOL_DMA 96 /**< First PROTOCOL address to be used by DMA engines */
  15. #define PCILIB_REGISTER_PROTOCOL_DYNAMIC 128 /**< First PROTOCOL address to be used by plugins */
  16. typedef uint8_t pcilib_register_bank_t; /**< Type holding the bank position within the field listing register banks in the model */
  17. typedef uint8_t pcilib_register_bank_addr_t; /**< Type holding the bank address number */
  18. typedef uint8_t pcilib_register_protocol_t; /**< Type holding the protocol position within the field listing register protocols in the model */
  19. typedef uint8_t pcilib_register_protocol_addr_t; /**< Type holding the protocol address */
  20. typedef struct pcilib_register_bank_context_s pcilib_register_bank_context_t;
  21. typedef struct {
  22. pcilib_version_t version;
  23. 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 */
  24. void (*free)(pcilib_register_bank_context_t *ctx); /**< Optional API call to cleanup bank context */
  25. 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 */
  26. 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 */
  27. } pcilib_register_protocol_api_description_t;
  28. typedef struct {
  29. pcilib_register_protocol_addr_t addr; /**< Protocol address used in model for addressing the described protocol */
  30. const pcilib_register_protocol_api_description_t *api; /**< Defines all API functions for protocol */
  31. const char *model; /**< If NULL, the actually used model is used instead */
  32. const void *args; /**< Custom protocol-specific arguments. The actual structure may depend on the specified model */
  33. const char *name; /**< Short protocol name */
  34. const char *description; /**< A bit longer protocol description */
  35. } pcilib_register_protocol_description_t;
  36. typedef struct {
  37. pcilib_register_bank_addr_t addr; /**< Bank address used in model for addressing the described register bank */
  38. pcilib_register_protocol_addr_t protocol; /**< Defines a protocol to access registers */
  39. pcilib_bar_t bar; /**< Specifies the PCI BAR through which an access to the registers is provided (autodetcted if PCILIB_BAR_DETECT is specified) */
  40. uintptr_t read_addr; /**< protocol specific (normally offset in the BAR of the first address used to read registers) */
  41. uintptr_t write_addr; /**< protocol specific (normally offset in the BAR of the first address used to write registers) */
  42. uint8_t access; /**< Default register size in bits (or word-size in plain addressing mode) */
  43. size_t size; /**< Number of register addresses (plain addressing) in the bank (more register names can be defined if bit-fields/views are used) */
  44. pcilib_endianess_t raw_endianess; /**< Specifies endianess in the plain-addressing mode, PCILIB_HOST_ENDIAN have to be specified if no conversion desired.
  45. Conversion applied after protocol. This value does not get into the account in register-access mode */
  46. pcilib_endianess_t endianess; /**< Specifies endianess in the register-access mode, this may differ from raw_endianess if multi-word registers are used.
  47. This is fully independent from raw_endianess. No double conversion is either performed */
  48. const char *format; /**< printf format for the registers, either %lu for decimal output or 0x%lx for hexdecimal */
  49. const char *name; /**< short bank name */
  50. const char *description; /**< longer bank description */
  51. } pcilib_register_bank_description_t;
  52. /**
  53. * Default mappings: defines virtual address to register mappings, i.e. how 0x9000 in the following command
  54. * will be mapped to the actual register. By comparing with start and end-addresses, we find to which range
  55. * 0x9000 belongs to and detect actual bank and offset in it.
  56. * Simple example: pci -r 0x9000
  57. * if we specify range { 0x9000, 0x9100, 10, -0x9000}, the example command we print the value of the first
  58. * register in the bank 10.
  59. */
  60. typedef struct {
  61. uintptr_t start; /**< The first virtual address of the register range */
  62. uintptr_t end; /**< The last virtual address of the register range */
  63. pcilib_register_bank_addr_t bank; /**< The bank mapped to the specified range */
  64. long addr_shift; /**< Address shift, i.e. how much we should add/substract to the virtual address to get address in the register bank */
  65. } pcilib_register_range_t;
  66. struct pcilib_register_bank_context_s {
  67. const pcilib_register_bank_description_t *bank; /**< Corresponding bank description */
  68. const pcilib_register_protocol_api_description_t *api; /**< API functions */
  69. };
  70. // we don't copy strings, they should be statically allocated
  71. int pcilib_init_register_banks(pcilib_t *ctx);
  72. void pcilib_free_register_banks(pcilib_t *ctx);
  73. int pcilib_add_register_banks(pcilib_t *ctx, size_t n, const pcilib_register_bank_description_t *banks);
  74. int pcilib_add_register_protocols(pcilib_t *ctx, size_t n, const pcilib_register_protocol_description_t *protocols);
  75. int pcilib_add_register_ranges(pcilib_t *ctx, size_t n, const pcilib_register_range_t *ranges);
  76. pcilib_register_bank_t pcilib_find_register_bank_by_addr(pcilib_t *ctx, pcilib_register_bank_addr_t bank);
  77. pcilib_register_bank_t pcilib_find_register_bank_by_name(pcilib_t *ctx, const char *bankname);
  78. pcilib_register_bank_t pcilib_find_register_bank(pcilib_t *ctx, const char *bank);
  79. pcilib_register_protocol_t pcilib_find_register_protocol_by_addr(pcilib_t *ctx, pcilib_register_protocol_addr_t protocol);
  80. pcilib_register_protocol_t pcilib_find_register_protocol_by_name(pcilib_t *ctx, const char *name);
  81. pcilib_register_protocol_t pcilib_find_register_protocol(pcilib_t *ctx, const char *name);
  82. #endif /* _PCILIB_BANK_H */