/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 pcilib/pcilib.h

  • Committer: Suren A. Chilingaryan
  • Date: 2015-11-20 13:24:17 UTC
  • Revision ID: csa@suren.me-20151120132417-fzm9hulvh7rs47gb
Configure number of DMA buffers in IPEDMA and improve checking and reporting inconsistent kmem buffers while re-using

Show diffs side-by-side

added added

removed removed

Lines of Context:
86
86
    PCILIB_DMA_FLAG_WAIT = 2,                   /**< wait completion of write operation / wait for data during read operation */
87
87
    PCILIB_DMA_FLAG_MULTIPACKET = 4,            /**< read multiple packets */
88
88
    PCILIB_DMA_FLAG_PERSISTENT = 8,             /**< do not stop DMA engine on application termination / permanently close DMA engine on dma_stop */
89
 
    PCILIB_DMA_FLAG_IGNORE_ERRORS = 16          /**< do not crash on errors, but return appropriate error codes */
 
89
    PCILIB_DMA_FLAG_IGNORE_ERRORS = 16,         /**< do not crash on errors, but return appropriate error codes */
 
90
    PCILIB_DMA_FLAG_STOP = 32                   /**< indicates that we actually calling pcilib_dma_start to stop persistent DMA engine */
90
91
} pcilib_dma_flags_t;
91
92
 
92
93
typedef enum {