/alps/pcitool

To get this branch, use:
bzr branch http://suren.me/webbzr/alps/pcitool

« back to all changes in this revision

Viewing changes to dma/ipe.h

  • Committer: Suren A. Chilingaryan
  • Date: 2015-04-26 23:54:44 UTC
  • Revision ID: csa@suren.me-20150426235444-l9kvuvvfb2ovg8h1
Further adjustments to get ready for independent event plugins

Show diffs side-by-side

added added

removed removed

Lines of Context:
17
17
int dma_ipe_stream_read(pcilib_dma_context_t *vctx, pcilib_dma_engine_t dma, uintptr_t addr, size_t size, pcilib_dma_flags_t flags, pcilib_timeout_t timeout, pcilib_dma_callback_t cb, void *cbattr);
18
18
double dma_ipe_benchmark(pcilib_dma_context_t *vctx, pcilib_dma_engine_addr_t dma, uintptr_t addr, size_t size, size_t iterations, pcilib_dma_direction_t direction);
19
19
 
20
 
#ifdef _PCILIB_CONFIG_C
 
20
#ifdef _PCILIB_EXPORT_C
21
21
static const pcilib_dma_api_description_t ipe_dma_api = {
22
22
    dma_ipe_init,
23
23
    dma_ipe_free,
79
79
    {0x0060,    0,      32,     0,      0x00000000,     PCILIB_REGISTER_RW  , PCILIB_REGISTER_STANDARD, PCILIB_REGISTER_BANK_DMA, "update_thresh",              "Update threshold of progress register"},
80
80
    {0,         0,      0,      0,      0x00000000,     0,                                           0,                        0, NULL,                         NULL}
81
81
};
82
 
#endif /* _PCILIB_CONFIG_C */
 
82
#endif /* _PCILIB_EXPORT_C */
83
83
 
84
84
 
85
85
#endif /* _PCILIB_DMA_IPE_H */