register.h 581 B

1234567891011121314
  1. #ifndef _PCILIB_REGISTER_H
  2. #define _PCILIB_REGISTER_H
  3. #include "pcilib.h"
  4. struct pcilib_protocol_description_s {
  5. int (*read)(pcilib_t *ctx, pcilib_register_bank_description_t *bank, pcilib_register_addr_t addr, pcilib_register_value_t *value);
  6. int (*write)(pcilib_t *ctx, pcilib_register_bank_description_t *bank, pcilib_register_addr_t addr, pcilib_register_value_t value);
  7. };
  8. // we don't copy strings, they should be statically allocated
  9. int pcilib_add_registers(pcilib_t *ctx, size_t n, pcilib_register_description_t *registers);
  10. #endif /* _PCILIB_REGISTER_H */