/alps/pcitool

To get this branch, use:
bzr branch http://suren.me/webbzr/alps/pcitool
7.1.1 by Suren A. Chilingaryan
Initial support of IPECamera protocol
1
#ifndef _PCILIB_ERROR_H
2
#define _PCILIB_ERROR_H
3
 
4
enum {
5
    PCILIB_ERROR_SUCCESS = 0,
7.1.5 by Suren A. Chilingaryan
Support for FPGA registers
6
    PCILIB_ERROR_MEMORY,
17 by Suren A. Chilingaryan
Allow access to implementation context and provide call to set size of internal buffer for IPECamera
7
    PCILIB_ERROR_INVALID_REQUEST,
7.1.1 by Suren A. Chilingaryan
Initial support of IPECamera protocol
8
    PCILIB_ERROR_INVALID_ADDRESS,
7.1.2 by Suren A. Chilingaryan
Better handling of register banks
9
    PCILIB_ERROR_INVALID_BANK,
16 by Suren A. Chilingaryan
Prototype of IPECamera image protocol
10
    PCILIB_ERROR_INVALID_DATA,
73 by Suren A. Chilingaryan
Implement DMA access synchronization in the driver
11
    PCILIB_ERROR_INVALID_STATE,
7.1.1 by Suren A. Chilingaryan
Initial support of IPECamera protocol
12
    PCILIB_ERROR_TIMEOUT,
13
    PCILIB_ERROR_FAILED,
14
    PCILIB_ERROR_VERIFY,
15
    PCILIB_ERROR_NOTSUPPORTED,
16
    PCILIB_ERROR_NOTFOUND,
7.1.2 by Suren A. Chilingaryan
Better handling of register banks
17
    PCILIB_ERROR_OUTOFRANGE,
16 by Suren A. Chilingaryan
Prototype of IPECamera image protocol
18
    PCILIB_ERROR_NOTAVAILABLE,
109 by Suren A. Chilingaryan
Improvements of DMA engine
19
    PCILIB_ERROR_NOTINITIALIZED,
117 by Suren A. Chilingaryan
new event architecture, first trial
20
    PCILIB_ERROR_TOOBIG,
21
    PCILIB_ERROR_THREAD
7.1.1 by Suren A. Chilingaryan
Initial support of IPECamera protocol
22
} pcilib_errot_t;
23
24
25
#endif /* _PCILIB_ERROR_H */