#ifndef _PCIDEV_CMOSIS_H #define _PCIDEV_CMOSIS_H #include #include "version.h" enum ipecamera_protocol_s { PCIDEV_PROTOCOL_DEFAULT = PCILIB_REGISTER_PROTOCOL0, }; pcilib_register_bank_context_t* pcidev_regfile_open(pcilib_t *ctx, pcilib_register_bank_t bank, const char* model, const void *args); void pcidev_regfile_close(pcilib_t *ctx, pcilib_register_bank_context_t *reg_bank_ctx); int pcidev_register_read(pcilib_t *ctx, pcilib_register_bank_context_t *bank, pcilib_register_addr_t addr, pcilib_register_value_t *value); int pcidev_register_write(pcilib_t *ctx, pcilib_register_bank_context_t *bank, pcilib_register_addr_t addr, pcilib_register_value_t value); # ifdef _PCIDEV_MODEL_C static const pcilib_register_protocol_api_description_t pcidev_protocol_api = { PCIDEV_VERSION, pcidev_regfile_open, pcidev_regfile_close, NULL, pcidev_register_read, pcidev_register_write }; static const pcilib_register_protocol_description_t pcidev_protocols[] = { {PCIDEV_PROTOCOL_DEFAULT, &pcidev_protocol_api, NULL, NULL, "pcidev", "Dummy register protocol sample"}, { 0 } }; static const pcilib_register_bank_description_t pcidev_banks[] = { { 0, 0, 0, 0, 0, 0, 0, 0, 0, NULL, NULL, NULL } }; static const pcilib_register_range_t pcidev_ranges[] = { {0, 0, 0, 0} }; # endif /* _PCIDEV_MODEL_C */ #endif /* _PCIDEV_CMOSIS_H */