diff options
author | Suren A. Chilingaryan <csa@suren.me> | 2014-12-19 00:14:21 +0100 |
---|---|---|
committer | Suren A. Chilingaryan <csa@suren.me> | 2014-12-19 00:14:21 +0100 |
commit | a640c40c6bcf4bad0b78e0ea6ea04f2a5f3f877f (patch) | |
tree | 7a6b899c130510e3cca87c23b26a5a1ffc033f20 /kapture/kapture.c | |
parent | 0e16eeef08ed9b27f0fbc7f02a562a81e10c4119 (diff) | |
download | pcitool-a640c40c6bcf4bad0b78e0ea6ea04f2a5f3f877f.tar.gz pcitool-a640c40c6bcf4bad0b78e0ea6ea04f2a5f3f877f.tar.bz2 pcitool-a640c40c6bcf4bad0b78e0ea6ea04f2a5f3f877f.tar.xz pcitool-a640c40c6bcf4bad0b78e0ea6ea04f2a5f3f877f.zip |
Initial implementation of IPEDMA, dummy driver for KAPTURE, start of API changes
Diffstat (limited to 'kapture/kapture.c')
-rw-r--r-- | kapture/kapture.c | 62 |
1 files changed, 62 insertions, 0 deletions
diff --git a/kapture/kapture.c b/kapture/kapture.c new file mode 100644 index 0000000..4384592 --- /dev/null +++ b/kapture/kapture.c @@ -0,0 +1,62 @@ +#define _KAPTURE_C +#include <stdio.h> +#include <stdlib.h> +#include <unistd.h> +#include <string.h> +#include <sys/time.h> +#include <pthread.h> +#include <assert.h> + +#include "../tools.h" +#include "../error.h" +#include "../event.h" + +#include "pcilib.h" +#include "model.h" +#include "kapture.h" +#include "private.h" + + +pcilib_context_t *kapture_init(pcilib_t *vctx) { + kapture_t *ctx = malloc(sizeof(kapture_t)); + + if (ctx) { + memset(ctx, 0, sizeof(kapture_t)); + } + + return ctx; +} + +void kapture_free(pcilib_context_t *vctx) { + if (vctx) { + kapture_t *ctx = (kapture_t*)vctx; + kapture_stop(vctx, PCILIB_EVENT_FLAGS_DEFAULT); + free(ctx); + } +} + +int kapture_reset(pcilib_context_t *ctx) { +} + +int kapture_start(pcilib_context_t *ctx, pcilib_event_t event_mask, pcilib_event_flags_t flags) { +} + +int kapture_stop(pcilib_context_t *ctx, pcilib_event_flags_t flags) { +} + +int kapture_trigger(pcilib_context_t *ctx, pcilib_event_t event, size_t trigger_size, void *trigger_data) { +} + +int kapture_stream(pcilib_context_t *ctx, pcilib_event_callback_t callback, void *user) { +} + +int kapture_next_event(pcilib_context_t *ctx, pcilib_timeout_t timeout, pcilib_event_id_t *evid, size_t info_size, pcilib_event_info_t *info) { +} + +int kapture_get(pcilib_context_t *ctx, pcilib_event_id_t event_id, pcilib_event_data_type_t data_type, size_t arg_size, void *arg, size_t *size, void **data) { +} + +int kapture_return(pcilib_context_t *ctx, pcilib_event_id_t event_id, pcilib_event_data_type_t data_type, void *data) { +} + + |