pcilib.h 74 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322
  1. #ifndef _PCITOOL_PCILIB_H
  2. #define _PCITOOL_PCILIB_H
  3. #include <sys/time.h>
  4. #include <stddef.h>
  5. #include <stdint.h>
  6. #include <stdarg.h>
  7. typedef struct pcilib_s pcilib_t;
  8. typedef struct pcilib_event_context_s pcilib_context_t;
  9. typedef uint32_t pcilib_version_t;
  10. typedef uint8_t pcilib_bar_t; /**< Type holding the PCI Bar number */
  11. typedef uint16_t pcilib_register_t; /**< Type holding the register position within the field listing registers in the model */
  12. typedef uint16_t pcilib_view_t; /**< Type holding the register view position within view listing in the model */
  13. typedef uint16_t pcilib_unit_t; /**< Type holding the value unit position within unit listing in the model */
  14. typedef uint32_t pcilib_register_addr_t; /**< Type holding the register address within address-space of BARs */
  15. typedef uint8_t pcilib_register_size_t; /**< Type holding the size in bits of the register */
  16. typedef uint64_t pcilib_register_value_t; /**< Type holding the register value */
  17. typedef uint8_t pcilib_dma_engine_addr_t;
  18. typedef uint8_t pcilib_dma_engine_t;
  19. typedef uint64_t pcilib_event_id_t;
  20. typedef uint32_t pcilib_event_t;
  21. typedef uint64_t pcilib_timeout_t; /**< In microseconds */
  22. typedef unsigned int pcilib_irq_hw_source_t;
  23. typedef uint32_t pcilib_irq_source_t;
  24. typedef struct _xmlNode pcilib_xml_node_t;
  25. typedef enum {
  26. PCILIB_LOG_DEBUG = 0, /**< Debug messages will be always printed as they should be filtered based on setting of corresponding environmental variable */
  27. PCILIB_LOG_INFO, /**< Informational message are suppresed by default */
  28. PCILIB_LOG_WARNING, /**< Warnings messages indicate that something unexpected happen, but application can continue */
  29. PCILIB_LOG_ERROR /**< The error which is impossible to handle on this level of library */
  30. } pcilib_log_priority_t;
  31. typedef enum {
  32. PCILIB_HOST_ENDIAN = 0, /**< The same byte ordering as on the host system running the driver */
  33. PCILIB_LITTLE_ENDIAN, /**< x86 is Little-endian, least significant bytes are at the lower addresses */
  34. PCILIB_BIG_ENDIAN /**< Old mainframes and network byte order, most significant bytes are at the lower addresses */
  35. } pcilib_endianess_t;
  36. typedef enum {
  37. PCILIB_ACCESS_R = 1, /**< getting property is allowed */
  38. PCILIB_ACCESS_W = 2, /**< setting property is allowed */
  39. PCILIB_ACCESS_RW = 3
  40. } pcilib_access_mode_t;
  41. typedef enum {
  42. PCILIB_REGISTER_R = 1, /**< reading from register is allowed */
  43. PCILIB_REGISTER_W = 2, /**< normal writting to register is allowed */
  44. PCILIB_REGISTER_RW = 3,
  45. PCILIB_REGISTER_W1C = 4, /**< writting 1 resets the bit, writting 0 keeps the value */
  46. PCILIB_REGISTER_RW1C = 5,
  47. PCILIB_REGISTER_W1I = 8, /**< writting 1 inversts the bit, writting 0 keeps the value */
  48. PCILIB_REGISTER_RW1I = 9,
  49. } pcilib_register_mode_t;
  50. typedef enum {
  51. PCILIB_TYPE_INVALID = 0, /**< uninitialized */
  52. PCILIB_TYPE_DEFAULT = 0, /**< default type */
  53. PCILIB_TYPE_STRING = 1, /**< char* */
  54. PCILIB_TYPE_DOUBLE = 2, /**< double */
  55. PCILIB_TYPE_LONG = 3
  56. } pcilib_value_type_t;
  57. typedef enum {
  58. PCILIB_DMA_IRQ = 1,
  59. PCILIB_EVENT_IRQ = 2
  60. } pcilib_irq_type_t;
  61. typedef enum { /**< 0x8000 and up are reserved for driver-specific types */
  62. PCILIB_EVENT_DATA = 0, /**< default data format */
  63. PCILIB_EVENT_RAW_DATA = 1 /**< raw data */
  64. } pcilib_event_data_type_t;
  65. typedef enum {
  66. PCILIB_DMA_TO_DEVICE = 1,
  67. PCILIB_DMA_FROM_DEVICE = 2,
  68. PCILIB_DMA_BIDIRECTIONAL = 3
  69. } pcilib_dma_direction_t;
  70. typedef enum {
  71. PCILIB_DMA_FLAGS_DEFAULT = 0,
  72. PCILIB_DMA_FLAG_EOP = 1, /**< last buffer of the packet */
  73. PCILIB_DMA_FLAG_WAIT = 2, /**< wait completion of write operation / wait for data during read operation */
  74. PCILIB_DMA_FLAG_MULTIPACKET = 4, /**< read multiple packets */
  75. PCILIB_DMA_FLAG_PERSISTENT = 8, /**< do not stop DMA engine on application termination / permanently close DMA engine on dma_stop */
  76. PCILIB_DMA_FLAG_IGNORE_ERRORS = 16, /**< do not crash on errors, but return appropriate error codes */
  77. PCILIB_DMA_FLAG_STOP = 32 /**< indicates that we actually calling pcilib_dma_start to stop persistent DMA engine */
  78. } pcilib_dma_flags_t;
  79. typedef enum {
  80. PCILIB_STREAMING_STOP = 0, /**< stop streaming */
  81. PCILIB_STREAMING_CONTINUE = 1, /**< wait DMA timeout and return gracefuly if no new data appeared */
  82. PCILIB_STREAMING_WAIT = 2, /**< wait the specified timeout and return gracefuly if no new data appeared */
  83. PCILIB_STREAMING_CHECK = 3, /**< check if more data is available without waiting, return gracefuly if no data is ready */
  84. PCILIB_STREAMING_TIMEOUT_MASK = 3, /**< mask specifying all timeout modes */
  85. PCILIB_STREAMING_FAIL = 4, /**< a flag indicating that the error should be generated if no data is available upon the timeout (whatever timeout mode is used) */
  86. PCILIB_STREAMING_REQ_FRAGMENT = 5, /**< only fragment of a packet is read, wait for next fragment and fail if no data during DMA timeout */
  87. PCILIB_STREAMING_REQ_PACKET = 6 /**< wait for next packet and fail if no data during the specified timeout */
  88. } pcilib_streaming_action_t;
  89. typedef enum {
  90. PCILIB_EVENT_FLAGS_DEFAULT = 0,
  91. PCILIB_EVENT_FLAG_RAW_DATA_ONLY = 1, /**< Do not parse data, just read raw and pass it to rawdata callback. If passed to rawdata callback, idicates the data is not identified as event (most probably just padding) */
  92. PCILIB_EVENT_FLAG_STOP_ONLY = 1, /**< Do not cleanup, just stop acquiring new frames, the cleanup should be requested afterwards */
  93. PCILIB_EVENT_FLAG_EOF = 2, /**< Indicates that it is the last part of the frame (not required) */
  94. PCILIB_EVENT_FLAG_PREPROCESS = 4 /**< Enables preprocessing of the raw data (decoding frames, etc.) */
  95. } pcilib_event_flags_t;
  96. typedef enum {
  97. PCILIB_EVENT_INFO_FLAG_BROKEN = 1 /**< Indicates broken frames (if this flag is fales, the frame still can be broken) */
  98. } pcilib_event_info_flags_t;
  99. typedef enum {
  100. PCILIB_LIST_FLAGS_DEFAULT = 0,
  101. PCILIB_LIST_FLAG_CHILDS = 1 /**< Request all sub-elements or indicated that sub-elements are available */
  102. } pcilib_list_flags_t;
  103. typedef struct {
  104. pcilib_value_type_t type; /**< Current data type */
  105. const char *unit; /**< Units (if known) */
  106. const char *format; /**< requested printf format (may enforce using output in hex form) */
  107. union {
  108. long ival; /**< The value if type = PCILIB_TYPE_LONG */
  109. double fval; /**< The value if type = PCILIB_TYPE_DOUBLE */
  110. const char *sval; /**< The value if type = PCILIB_TYPE_STRING, the pointer may point to static location or reference actual string in str or data */
  111. };
  112. // This is a private part
  113. size_t size; /**< Size of the data */
  114. void *data; /**< Arbitrary data, for instance actual string referenced by the sval */
  115. char str[16]; /**< Used for shorter strings converted from integer/float types */
  116. } pcilib_value_t;
  117. typedef struct {
  118. pcilib_register_value_t min, max; /**< Minimum and maximum allowed values */
  119. } pcilib_register_value_range_t;
  120. typedef struct {
  121. pcilib_register_value_t value; /**< This value will get assigned instead of the name */
  122. pcilib_register_value_t min, max; /**< the values in the specified range are aliased by name */
  123. const char *name; /**< corresponding string to value */
  124. const char *description; /**< longer description */
  125. } pcilib_register_value_name_t;
  126. typedef struct {
  127. pcilib_register_t id; /**< Direct register ID which can be used in API calls */
  128. const char *name; /**< The access name of the register */
  129. const char *description; /**< Brief description of the register */
  130. const char *bank; /**< The name of the bank register belongs to */
  131. pcilib_register_mode_t mode; /**< Register access (ro/wo/rw) and how writting to register works (clearing/inverting set bits) */
  132. pcilib_register_value_t defvalue; /**< Default register value */
  133. const pcilib_register_value_range_t *range; /**< Specifies default, minimum, and maximum values */
  134. const pcilib_register_value_name_t *values; /**< The list of enum names for the register value */
  135. } pcilib_register_info_t;
  136. typedef struct {
  137. const char *name; /**< Name of the property view */
  138. const char *path; /**< Full path to the property */
  139. const char *description; /**< Short description */
  140. pcilib_value_type_t type; /**< The default data type or PCILIB_TYPE_INVALID if directory */
  141. pcilib_access_mode_t mode; /**< Specifies if the view is read/write-only */
  142. pcilib_list_flags_t flags; /**< Indicates if have sub-folders, etc. */
  143. const char *unit; /**< Returned unit (if any) */
  144. } pcilib_property_info_t;
  145. typedef struct {
  146. pcilib_event_t type;
  147. uint64_t seqnum; /**< we will add seqnum_overflow if required */
  148. uint64_t offset; /**< nanoseconds */
  149. struct timeval timestamp; /**< most accurate timestamp */
  150. pcilib_event_info_flags_t flags; /**< flags */
  151. } pcilib_event_info_t;
  152. #define PCILIB_BAR_DETECT ((pcilib_bar_t)-1)
  153. #define PCILIB_BAR_INVALID ((pcilib_bar_t)-1)
  154. #define PCILIB_BAR_NOBAR ((pcilib_bar_t)-2)
  155. #define PCILIB_BAR0 0
  156. #define PCILIB_BAR1 1
  157. #define PCILIB_DMA_ENGINE_INVALID ((pcilib_dma_engine_t)-1)
  158. #define PCILIB_DMA_ENGINE_ALL ((pcilib_dma_engine_t)-1)
  159. #define PCILIB_DMA_FLAGS_DEFAULT ((pcilib_dma_flags_t)0)
  160. #define PCILIB_DMA_ENGINE_ADDR_INVALID ((pcilib_dma_engine_addr_t)-1)
  161. #define PCILIB_REGISTER_INVALID ((pcilib_register_t)-1)
  162. #define PCILIB_REGISTER_ADDRESS_INVALID ((pcilib_register_addr_t)-1)
  163. #define PCILIB_ADDRESS_INVALID ((uintptr_t)-1)
  164. #define PCILIB_EVENT0 1
  165. #define PCILIB_EVENT1 2
  166. #define PCILIB_EVENT2 4
  167. #define PCILIB_EVENT3 8
  168. #define PCILIB_EVENTS_ALL ((pcilib_event_t)-1)
  169. #define PCILIB_EVENT_INVALID ((pcilib_event_t)-1)
  170. #define PCILIB_EVENT_DATA_TYPE_INVALID ((pcilib_event_data_type_t)-1)
  171. #define PCILIB_TIMEOUT_INFINITE ((pcilib_timeout_t)-1)
  172. #define PCILIB_TIMEOUT_IMMEDIATE 0
  173. #define PCILIB_IRQ_TYPE_ALL 0
  174. #define PCILIB_IRQ_SOURCE_DEFAULT 0
  175. #define PCILIB_MODEL_DETECT NULL
  176. /**
  177. * Callback function called when pcilib wants to log a new message
  178. * @param[in,out] arg - logging context provided with pcilib_set_logger() call
  179. * @param[in] file - source file generating the message
  180. * @param[in] line - source line generating the message
  181. * @param[in] prio - the message priority (messages with priority bellow the currently set loglevel are already filtered)
  182. * @param[in] msg - message or printf-style formating string
  183. * @param[in] va - vairable parameters defined by formating string
  184. */
  185. typedef void (*pcilib_logger_t)(void *arg, const char *file, int line, pcilib_log_priority_t prio, const char *msg, va_list va);
  186. /**
  187. * Callback function called when new data is read by DMA streaming function
  188. * @param[in,out] ctx - DMA Engine context
  189. * @param[in] flags - DMA Flags
  190. * @param[in] bufsize - size of data in bytes
  191. * @param[in] buf - data
  192. * @return - #pcilib_streaming_action_t instructing how the streaming should continue or a negative error code in the case of error
  193. */
  194. typedef int (*pcilib_dma_callback_t)(void *ctx, pcilib_dma_flags_t flags, size_t bufsize, void *buf);
  195. /**
  196. * Callback function called when new event is generated by event engine
  197. * @param[in] event_id - event id
  198. * @param[in] info - event description (depending on event engine may provide additional fields on top of #pcilib_event_info_t)
  199. * @param[in,out] user - User-specific data provided in pcilib_stream() call
  200. * @return - #pcilib_streaming_action_t instructing how the streaming should continue or a negative error code in the case of error
  201. */
  202. typedef int (*pcilib_event_callback_t)(pcilib_event_id_t event_id, const pcilib_event_info_t *info, void *user);
  203. /**
  204. * Callback function called when new portion of raw data is read by event engine
  205. * @param[in] event_id - id of the event this data will be associated with if processing is successful
  206. * @param[in] info - event description (depending on event engine may provide additional fields on top of #pcilib_event_info_t)
  207. * @param[in] flags - may indicate if it is the last portion of data for current event
  208. * @param[in] size - size of data in bytes
  209. * @param[in,out] data - data (the callback may modify the data, but the size should be kept of course)
  210. * @param[in,out] user - User-specific data provided in pcilib_stream() call
  211. * @return - #pcilib_streaming_action_t instructing how the streaming should continue or a negative error code in the case of error
  212. */
  213. typedef int (*pcilib_event_rawdata_callback_t)(pcilib_event_id_t event_id, const pcilib_event_info_t *info, pcilib_event_flags_t flags, size_t size, void *data, void *user);
  214. #ifdef __cplusplus
  215. extern "C" {
  216. #endif
  217. /***********************************************************************************************************//**
  218. * \defgroup public_api_global Global Public API (logging, etc.)
  219. * Global functions which does not require existing pcilib context
  220. * @{
  221. */
  222. /**
  223. * Replaces default logging function.
  224. * @param min_prio - messages with priority below \a min_prio will be ignored
  225. * @param logger - configures a new logging function or restores the default one if NULL is passed
  226. * @param arg - logging context, this parameter will be passed through to the \a logger
  227. * @return - error code or 0 on success
  228. */
  229. int pcilib_set_logger(pcilib_log_priority_t min_prio, pcilib_logger_t logger, void *arg);
  230. /** public_api_global
  231. * @}
  232. */
  233. /***********************************************************************************************************//**
  234. * \defgroup public_api Public API
  235. * Base pcilib functions which does not belong to the specific APIs
  236. * @{
  237. */
  238. /**
  239. * Initializes pcilib context, detects model configuration, and populates model-specific registers.
  240. * Event and DMA engines will not be started automatically, but calls to pcilib_start() / pcilib_start_dma()
  241. * are provided for this purpose. In the end, the context should be cleaned using pcilib_stop().
  242. * @param[in] device - path to the device file [/dev/fpga0]
  243. * @param[in] model - specifies the model of hardware, autodetected if NULL is passed
  244. * @return - initialized context or NULL in the case of error
  245. */
  246. pcilib_t *pcilib_open(const char *device, const char *model);
  247. /**
  248. * Destroy pcilib context and all memory associated with it. The function will stop event engine if necessary,
  249. * but DMA engine stay running if it was already running before pcilib_open() was called
  250. * @param[in,out] ctx - pcilib context
  251. */
  252. void pcilib_close(pcilib_t *ctx);
  253. /**
  254. * Should reset the hardware and software in default state. It is implementation-specific, but is not actively
  255. * used in existing implementations because the hardware is initialized from bash scripts which are often
  256. * changed by Michele and his band. On the software side, it probably should reset all software registers
  257. * to default value and may be additionaly re-start and clear DMA. However, this is not implemented yet.
  258. * @param[in,out] ctx - pcilib context
  259. * @return - error code or 0 on success
  260. */
  261. int pcilib_reset(pcilib_t *ctx);
  262. /** public_api
  263. * @}
  264. */
  265. /***********************************************************************************************************//**
  266. * \defgroup public_api_pci Public PCI API (MMIO)
  267. * API for manipulation with memory-mapped PCI BAR space
  268. * @{
  269. */
  270. /**
  271. * Resolves the phisycal PCI address to a virtual address in the process address space.
  272. * The required BAR will be mapped if necessary.
  273. * @param[in,out] ctx - pcilib context
  274. * @param[in] bar - specifies the BAR address belong to, use PCILIB_BAR_DETECT for autodetection
  275. * @param[in] addr - specifies the physical address on the PCI bus or offset in the BAR if \a bar is specified
  276. * @return - the virtual address in the process address space or NULL in case of error
  277. */
  278. char *pcilib_resolve_bar_address(pcilib_t *ctx, pcilib_bar_t bar, uintptr_t addr);
  279. /**
  280. * Performs PIO read from the PCI BAR. The BAR will be automatically mapped and unmapped if necessary.
  281. * @param[in,out] ctx - pcilib context
  282. * @param[in] bar - the BAR to read, use PCILIB_BAR_DETECT to detect bar by the specified physical address
  283. * @param[in] addr - absolute physical address to read or the offset in the specified bar
  284. * @param[in] access - word size (access width in bytes)
  285. * @param[in] n - number of words to read
  286. * @param[out] buf - the read data will be placed in this buffer
  287. * @return - error code or 0 on success
  288. */
  289. int pcilib_read(pcilib_t *ctx, pcilib_bar_t bar, uintptr_t addr, uint8_t access, size_t n, void *buf);
  290. /**
  291. * Performs PIO write to the PCI BAR. The BAR will be automatically mapped and unmapped if necessary.
  292. * @param[in,out] ctx - pcilib context
  293. * @param[in] bar - the BAR to write, use PCILIB_BAR_DETECT to detect bar by the specified physical address
  294. * @param[in] addr - absolute physical address to write or the offset in the specified bar
  295. * @param[in] access - word size (access width in bytes)
  296. * @param[in] n - number of words to write
  297. * @param[out] buf - the pointer to the data to be written
  298. * @return - error code or 0 on success
  299. */
  300. int pcilib_write(pcilib_t *ctx, pcilib_bar_t bar, uintptr_t addr, uint8_t access, size_t n, void *buf);
  301. /**
  302. * Performs PIO read from the PCI BAR. The specified address is treated as FIFO and will be read
  303. * \a n times. The BAR will be automatically mapped and unmapped if necessary.
  304. * @param[in,out] ctx - pcilib context
  305. * @param[in] bar - the BAR to read, use PCILIB_BAR_DETECT to detect bar by the specified physical address
  306. * @param[in] addr - absolute physical address to read or the offset in the specified bar
  307. * @param[in] access - the size of FIFO register in bytes (i.e. if `access = 4`, the 32-bit reads from FIFO will be performed)
  308. * @param[in] n - specifies how many times the data should be read from FIFO
  309. * @param[out] buf - the data will be placed in this buffer which should be at least `n * access` bytes long
  310. * @return - error code or 0 on success
  311. */
  312. int pcilib_read_fifo(pcilib_t *ctx, pcilib_bar_t bar, uintptr_t addr, uint8_t access, size_t n, void *buf);
  313. /**
  314. * Performs PIO write to the PCI BAR. The specified address is treated as FIFO and will be written
  315. * \a n times. The BAR will be automatically mapped and unmapped if necessary.
  316. * @param[in,out] ctx - pcilib context
  317. * @param[in] bar - the BAR to write, use PCILIB_BAR_DETECT to detect bar by the specified physical address
  318. * @param[in] addr - absolute physical address to write or the offset in the specified bar
  319. * @param[in] access - the size of FIFO register in bytes (i.e. if `access = 4`, the 32-bit writes to FIFO will be performed)
  320. * @param[in] n - specifies how many times the data should be written to FIFO
  321. * @param[out] buf - buffer to write which should be at least `n * access` bytes long
  322. * @return - error code or 0 on success
  323. */
  324. int pcilib_write_fifo(pcilib_t *ctx, pcilib_bar_t bar, uintptr_t addr, uint8_t access, size_t n, void *buf);
  325. /** public_api_pci
  326. * @}
  327. */
  328. /***********************************************************************************************************//**
  329. * \defgroup public_api_register Public Register API
  330. * API for register manipulations
  331. * @{
  332. */
  333. /**
  334. * Returns the list of registers provided by the hardware model.
  335. * @param[in,out] ctx - pcilib context
  336. * @param[in] bank - if set, only register within the specified bank will be returned
  337. * @param[in] flags - currently ignored
  338. * @return - the list of the register which should be cleaned with pcilib_free_register_info() or NULL in the case of error
  339. */
  340. pcilib_register_info_t *pcilib_get_register_list(pcilib_t *ctx, const char *bank, pcilib_list_flags_t flags);
  341. /**
  342. * Returns the information about the specified register
  343. * @param[in,out] ctx - pcilib context
  344. * @param[in] bank - indicates the bank where to look for register, autodetected if NULL is passed
  345. * @param[in] reg - the name of the register
  346. * @param[in] flags - currently ignored
  347. * @return - information about the specified register which should be cleaned with pcilib_free_register_info() or NULL in the case of error
  348. */
  349. pcilib_register_info_t *pcilib_get_register_info(pcilib_t *ctx, const char *bank, const char *reg, pcilib_list_flags_t flags);
  350. /**
  351. * Cleans up the memory occupied by register list returned from the pcilib_get_register_list() and pcilib_get_register_info() calls
  352. * @param[in,out] ctx - pcilib context
  353. * @param[in,out] info - buffer to clean
  354. */
  355. void pcilib_free_register_info(pcilib_t *ctx, pcilib_register_info_t *info);
  356. /**
  357. * Finds register id corresponding to the specified bank and register names. It is faster
  358. * to access registers by id instead of names. Therefore, in long running applications it
  359. * is preferred to resolve names of all required registers during initialization and access
  360. * them using ids only.
  361. * @param[in,out] ctx - pcilib context
  362. * @param[in] bank - should specify the bank name if register with the same name may occur in multiple banks, NULL otherwise
  363. * @param[in] reg - the name of the register
  364. * @return - register id or PCILIB_REGISTER_INVALID if register is not found
  365. */
  366. pcilib_register_t pcilib_find_register(pcilib_t *ctx, const char *bank, const char *reg);
  367. /**
  368. * Extracts additional information about the specified register. The additional information
  369. * is model-specific and are provided as extra XML attributes in XML-described registers.
  370. * The available attributes are only restricted by used XSD schema.
  371. * @param[in,out] ctx - pcilib context
  372. * @param[in] reg - register id
  373. * @param[in] attr - requested attribute name
  374. * @param[in,out] val - the value of attribute is returned here (see \ref public_api_value),
  375. * pcilib_clean_value() will be executed if \a val contains data. Therefore it should be always initialized to 0 before first use
  376. * @return - error code or 0 on success
  377. */
  378. int pcilib_get_register_attr_by_id(pcilib_t *ctx, pcilib_register_t reg, const char *attr, pcilib_value_t *val);
  379. /**
  380. * Extracts additional information about the specified register.
  381. * Equivalent to the pcilib_get_register_attr_by_id(), but first resolves register id using the specified bank and name.
  382. * @param[in,out] ctx - pcilib context
  383. * @param[in] bank - should specify the bank name if register with the same name may occur in multiple banks, NULL otherwise
  384. * @param[in] regname - register name
  385. * @param[in] attr - requested attribute name
  386. * @param[in,out] val - the value of attribute is returned here (see \ref public_api_value),
  387. * pcilib_clean_value() will be executed if \a val contains data. Therefore it should be always initialized to 0 before first use
  388. * @return - error code or 0 on success
  389. */
  390. int pcilib_get_register_attr(pcilib_t *ctx, const char *bank, const char *regname, const char *attr, pcilib_value_t *val);
  391. /**
  392. * Reads one or multiple sequential registers from the specified register bank. This function may provide access
  393. * to the undefined registers in the bank. In other cases, the pcilib_read_register() / pcilib_read_register_by_id()
  394. * calls are preferred.
  395. * @param[in,out] ctx - pcilib context
  396. * @param[in] bank - the bank to read (should be specified, no autodetection)
  397. * @param[in] addr - the register address within the bank, addresses are counted in bytes not registers (i.e. it is offset in bytes from the start of register bank)
  398. * @param[in] n - number of registers to read; i.e. `n * register_size` bytes will be read, where \a register_size is defined in the bank configuration (see #pcilib_register_bank_description_t)
  399. * @param[out] buf - the buffer of `n * register_size` bytes long where the data will be stored
  400. * @return - error code or 0 on success
  401. */
  402. int pcilib_read_register_space(pcilib_t *ctx, const char *bank, pcilib_register_addr_t addr, size_t n, pcilib_register_value_t *buf);
  403. /**
  404. * Writes one or multiple sequential registers from the specified register bank. This function may provide access
  405. * to the undefined registers in the bank. In other cases, the pcilib_write_register() / pcilib_write_register_by_id()
  406. * calls are preferred.
  407. * @param[in,out] ctx - pcilib context
  408. * @param[in] bank - the bank to write (should be specified, no autodetection)
  409. * @param[in] addr - the register address within the bank, addresses are counted in bytes not registers (i.e. it is offset in bytes from the start of register bank)
  410. * @param[in] n - number of registers to write; i.e. `n * register_size` bytes will be written, where \a register_size is defined in the bank configuration (see #pcilib_register_bank_description_t)
  411. * @param[in] buf - the buffer of `n * register_size` bytes long with the data
  412. * @return - error code or 0 on success
  413. */
  414. int pcilib_write_register_space(pcilib_t *ctx, const char *bank, pcilib_register_addr_t addr, size_t n, const pcilib_register_value_t *buf);
  415. /**
  416. * Reads the specified register.
  417. * @param[in,out] ctx - pcilib context
  418. * @param[in] reg - register id
  419. * @param[out] value - the register value is returned here
  420. * @return - error code or 0 on success
  421. */
  422. int pcilib_read_register_by_id(pcilib_t *ctx, pcilib_register_t reg, pcilib_register_value_t *value);
  423. /**
  424. * Writes to the specified register.
  425. * @param[in,out] ctx - pcilib context
  426. * @param[in] reg - register id
  427. * @param[in] value - the register value to write
  428. * @return - error code or 0 on success
  429. */
  430. int pcilib_write_register_by_id(pcilib_t *ctx, pcilib_register_t reg, pcilib_register_value_t value);
  431. /**
  432. * Reads the specified register.
  433. * Equivalent to the pcilib_read_register_by_id(), but first resolves register id using the specified bank and name.
  434. * @param[in,out] ctx - pcilib context
  435. * @param[in] bank - should specify the bank name if register with the same name may occur in multiple banks, NULL otherwise
  436. * @param[in] regname - the name of the register
  437. * @param[out] value - the register value is returned here
  438. * @return - error code or 0 on success
  439. */
  440. int pcilib_read_register(pcilib_t *ctx, const char *bank, const char *regname, pcilib_register_value_t *value);
  441. /**
  442. * Writes to the specified register.
  443. * Equivalent to the pcilib_write_register_by_id(), but first resolves register id using the specified bank and name.
  444. * @param[in,out] ctx - pcilib context
  445. * @param[in] bank - should specify the bank name if register with the same name may occur in multiple banks, NULL otherwise
  446. * @param[in] regname - the name of the register
  447. * @param[in] value - the register value to write
  448. * @return - error code or 0 on success
  449. */
  450. int pcilib_write_register(pcilib_t *ctx, const char *bank, const char *regname, pcilib_register_value_t value);
  451. /**
  452. * Reads a view of the specified register. The views allow to convert values to standard units
  453. * or get self-explanatory names associated with the values (enums).
  454. * @param[in,out] ctx - pcilib context
  455. * @param[in] reg - register id
  456. * @param[in] view - specifies the name of the view associated with register or desired units
  457. * @param[out] value - the register value is returned here (see \ref public_api_value),
  458. * pcilib_clean_value() will be executed if \a val contains data. Therefore it should be always initialized to 0 before first use.
  459. * @return - error code or 0 on success
  460. */
  461. int pcilib_read_register_view_by_id(pcilib_t *ctx, pcilib_register_t reg, const char *view, pcilib_value_t *value);
  462. /**
  463. * Writes the specified register using value represented in the specified view. The views allow to convert values from standard units
  464. * or self-explanatory names associated with the values (enums).
  465. * @param[in,out] ctx - pcilib context
  466. * @param[in] reg - register id
  467. * @param[in] view - specifies the name of the view associated with register or the used units
  468. * @param[in] value - the register value in the specified view (see \ref public_api_value)
  469. * @return - error code or 0 on success
  470. */
  471. int pcilib_write_register_view_by_id(pcilib_t *ctx, pcilib_register_t reg, const char *view, const pcilib_value_t *value);
  472. /**
  473. * Reads a view of the specified register. The views allow to convert values to standard units
  474. * or get self-explanatory names associated with the values (enums).
  475. * Equivalent to the pcilib_read_register_view_by_id(), but first resolves register id using the specified bank and name.
  476. * @param[in,out] ctx - pcilib context
  477. * @param[in] bank - should specify the bank name if register with the same name may occur in multiple banks, NULL otherwise
  478. * @param[in] regname - the name of the register
  479. * @param[in] view - specifies the name of the view associated with register or desired units
  480. * @param[out] value - the register value is returned here (see \ref public_api_value),
  481. * pcilib_clean_value() will be executed if \a val contains data. Therefore it should be always initialized to 0 before first use
  482. * @return - error code or 0 on success
  483. */
  484. int pcilib_read_register_view(pcilib_t *ctx, const char *bank, const char *regname, const char *view, pcilib_value_t *value);
  485. /**
  486. * Writes the specified register using value represented in the specified view. The views allow to convert values from standard units
  487. * or self-explanatory names associated with the values (enums).
  488. * Equivalent to the pcilib_write_register_view_by_id(), but first resolves register id using the specified bank and name.
  489. * @param[in,out] ctx - pcilib context
  490. * @param[in] bank - should specify the bank name if register with the same name may occur in multiple banks, NULL otherwise
  491. * @param[in] regname - the name of the register
  492. * @param[in] view - specifies the name of the view associated with register or the used units
  493. * @param[in] value - the register value in the specified view (see \ref public_api_value)
  494. * @return - error code or 0 on success
  495. */
  496. int pcilib_write_register_view(pcilib_t *ctx, const char *bank, const char *regname, const char *view, const pcilib_value_t *value);
  497. /** public_api_register
  498. * @}
  499. */
  500. /***********************************************************************************************************//**
  501. * \defgroup public_api_property Public Property API
  502. * Properties is another abstraction on top of registers allowing arbitrary data types and computed registers
  503. * @{
  504. */
  505. /**
  506. * Returns the list of properties available under the specified path
  507. * @param[in,out] ctx - pcilib context
  508. * @param[in] branch - path or NULL to return the top-level properties
  509. * @param[in] flags - not used at the moment
  510. * @return - the list of the properties which should be cleaned with pcilib_free_property_info() or NULL in the case of error
  511. */
  512. pcilib_property_info_t *pcilib_get_property_list(pcilib_t *ctx, const char *branch, pcilib_list_flags_t flags);
  513. /**
  514. * Cleans up the memory occupied by property list returned from the pcilib_get_property_list() call
  515. * @param[in,out] ctx - pcilib context
  516. * @param[in,out] info - buffer to clean
  517. */
  518. void pcilib_free_property_info(pcilib_t *ctx, pcilib_property_info_t *info);
  519. /**
  520. * Extracts additional information about the specified register.
  521. * Equivalent to the pcilib_get_register_attr_by_id(), but first resolves register id using the specified bank and name.
  522. * @param[in,out] ctx - pcilib context
  523. * @param[in] prop - property name (full name including path)
  524. * @param[in] attr - requested attribute name
  525. * @param[in,out] val - the value of attribute is returned here (see \ref public_api_value),
  526. * pcilib_clean_value() will be executed if \a val contains data. Therefore it should be always initialized to 0 before first use
  527. * @return - error code or 0 on success
  528. */
  529. int pcilib_get_property_attr(pcilib_t *ctx, const char *prop, const char *attr, pcilib_value_t *val);
  530. /**
  531. * Reads / computes the property value.
  532. * @param[in,out] ctx - pcilib context
  533. * @param[in] prop - property name (full name including path)
  534. * @param[out] val - the register value is returned here (see \ref public_api_value),
  535. * pcilib_clean_value() will be executed if \a val contains data. Therefore it should be always initialized to 0 before first use
  536. * @return - error code or 0 on success
  537. */
  538. int pcilib_get_property(pcilib_t *ctx, const char *prop, pcilib_value_t *val);
  539. /**
  540. * Writes the property value or executes the code associated with property
  541. * @param[in,out] ctx - pcilib context
  542. * @param[in] prop - property name (full name including path)
  543. * @param[out] val - the property value (see \ref public_api_value),
  544. * @return - error code or 0 on success
  545. */
  546. int pcilib_set_property(pcilib_t *ctx, const char *prop, const pcilib_value_t *val);
  547. /** public_api_property
  548. * @}
  549. */
  550. /***********************************************************************************************************//**
  551. * \defgroup public_api_dma Public DMA API
  552. * High speed interface for reading and writting unstructured data
  553. * @{
  554. */
  555. /**
  556. * This function resolves the ID of DMA engine from its address and direction.
  557. * It is a bit confusing, but addresses should be able to represent bi-directional
  558. * DMA engines. Unfortunatelly, implementation often is limited to uni-directional
  559. * engines. In this case, two DMA engines with different IDs can be virtually
  560. * combined in a DMA engine with the uniq address. This will allow user to specify
  561. * the same engine address in all types of accesses and we will resolve the appropriate
  562. * engine ID depending on the requested direction.
  563. * @param[in,out] ctx - pcilib context
  564. * @param[in] direction - DMA direction (to/from device)
  565. * @param[in] dma - address of DMA engine
  566. * @return - ID of DMA engine or PCILIB_DMA_INVALID if the specified engine does not exist
  567. */
  568. pcilib_dma_engine_t pcilib_find_dma_by_addr(pcilib_t *ctx, pcilib_dma_direction_t direction, pcilib_dma_engine_addr_t dma);
  569. /**
  570. * Starts DMA engine. This call will allocate DMA buffers and pass their bus addresses to the hardware.
  571. * - During the call, the C2S engine may start writting data. The written buffers are marked as
  572. * ready and can be read-out using pcilib_stream_dma() and pcilib_read_dma() calls. If no empty
  573. * buffers left, the C2S DMA engine will stall until some buffers are read out.
  574. * - The S2C engine waits until the data is pushed with pcilib_push_data() call
  575. *
  576. * After pcilib_start_dma() call, the pcilib_stop_dma() function should be necessarily called. However,
  577. * it will clean up the process memory, but only in some cases actually stop the DMA engine.
  578. * This depends on \a flags passed to both pcilib_start_dma() and pcilib_stop_dma() calls.
  579. * if PCILIB_DMA_FLAG_PERSISTENT flag is passed to the pcilib_start_dma(), the DMA engine
  580. * will remain running unless the same flag is also passed to the pcilib_stop_dma() call.
  581. * The allocated DMA buffers will stay intact and the hardware may continue reading / writting
  582. * data while there is space/data left. However, the other functions of DMA API should not
  583. * be called after pcilib_stop_dma() until new pcilib_start_dma() call is issued.
  584. *
  585. * The process- and thread-safety is implementation depedent. However, currently the process-
  586. * safety is ensured while accessing the kernel memory (todo: this may get complicated if we
  587. * provide a way to perform DMA directly to the user-supplied pages).
  588. * The thread-safety is not provided by currently implemented DMA engines. The DMA functions
  589. * may be called from multiple threads, but it is user responsibility to ensure that only a
  590. * single DMA-related call is running. On other hand, the DMA and register APIs may be used
  591. * in parallel.
  592. *
  593. * @param[in,out] ctx - pcilib context
  594. * @param[in] dma - ID of DMA engine, the ID should first be resolved using pcilib_find_dma_by_addr()
  595. * @param[in] flags - PCILIB_DMA_FLAG_PERSISTENT indicates that engine should be kept running after pcilib_stop_dma() call
  596. * @return - error code or 0 on success
  597. */
  598. int pcilib_start_dma(pcilib_t *ctx, pcilib_dma_engine_t dma, pcilib_dma_flags_t flags);
  599. /**
  600. * Stops DMA engine or just cleans up the process-specific memory buffers (see
  601. * pcilib_start_dma() for details). No DMA API calls allowed after this point
  602. * until pcilib_start_dma() is called anew.
  603. *
  604. * @param[in,out] ctx - pcilib context
  605. * @param[in] dma - ID of DMA engine, the ID should first be resolved using pcilib_find_dma_by_addr()
  606. * @param[in] flags - PCILIB_DMA_FLAG_PERSISTENT indicates that engine should be actually stopped independent of the flags passed to pcilib_start_dma() call
  607. * @return - error code or 0 on success
  608. */
  609. int pcilib_stop_dma(pcilib_t *ctx, pcilib_dma_engine_t dma, pcilib_dma_flags_t flags);
  610. /**
  611. * Tries to drop all pending data in the DMA channel. It will drop not only data currently in the DMA buffers,
  612. * but will allow hardware to write more and will drop the newly written data as well. The standard DMA timeout
  613. * is allowed to receive new data. If hardware continuously writes data, after #PCILIB_DMA_SKIP_TIMEOUT
  614. * microseconds the function will exit with #PCILIB_ERROR_TIMEOUT error.
  615. *
  616. * @param[in,out] ctx - pcilib context
  617. * @param[in] dma - ID of DMA engine, the ID should first be resolved using pcilib_find_dma_by_addr()
  618. * @return - error code or 0 on success
  619. */
  620. int pcilib_skip_dma(pcilib_t *ctx, pcilib_dma_engine_t dma);
  621. /**
  622. * Reads data from DMA buffers and pass it to the specified callback function. The return code of the callback
  623. * function determines if streaming should continue and how much to wait for next data to arrive before
  624. * triggering timeout.
  625. * The function is process- and thread-safe. The PCILIB_ERROR_BUSY will be returned immediately if DMA is used
  626. * by another thread or process.
  627. *
  628. * The function waits the specified \a timeout microseconds for the first data. Afterwards, the waiting time
  629. * for next portion of data depends on the last return code \a (ret) from callback function.
  630. * If `ret & PCILIB_STREAMING_TIMEOUT_MASK` is
  631. * - PCILIB_STREAMING_STOP - the streaming stops
  632. * - PCILIB_STREAMING_CONTINUE - the standard DMA timeout will be used to wait for a new data
  633. * - PCILIB_STREAMING_WAIT - the timeout specified in the function arguments will be used to wait for a new data
  634. * - PCILIB_STREAMING_CHECK - the function will return if new data is not available immediately
  635. * The function return code depends on the return code from the callback as well. If no data received within the specified
  636. * timeout and no callback is called, the PCILIB_ERROR_TIMEOUT is returned. Otherwise, success is returned unless
  637. * PCILIB_STREAMING_FAIL flag has been set in the callback return code before the timeout was triggered.
  638. *
  639. * @param[in,out] ctx - pcilib context
  640. * @param[in] dma - ID of DMA engine, the ID should first be resolved using pcilib_find_dma_by_addr()
  641. * @param[in] addr - instructs DMA to start reading at the specified address (not supported by existing DMA engines)
  642. * @param[in] size - instructs DMA to read only \a size bytes (not supported by existing DMA engines)
  643. * @param[in] flags - not used by existing DMA engines
  644. * @param[in] timeout - specifies number of microseconds to wait before reporting timeout, special values #PCILIB_TIMEOUT_IMMEDIATE and #PCILIB_TIMEOUT_INFINITE are supported.
  645. * @param[in] cb - callback function to call
  646. * @param[in,out] cbattr - passed through as the first parameter of callback function
  647. * @return - error code or 0 on success
  648. */
  649. int pcilib_stream_dma(pcilib_t *ctx, 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);
  650. /**
  651. * Reads data from DMA until timeout is hit, a full DMA packet is read, or the specified number of bytes are read.
  652. * The function is process- and thread-safe. The #PCILIB_ERROR_BUSY will be returned immediately if DMA is used
  653. * by another thread or process.
  654. *
  655. * We can't read arbitrary number of bytes from DMA. A full DMA packet is always read. The DMA packet is not equal
  656. * to DMA buffer, but may consist of multiple buffers and the size may vary during run time. This may cause problems
  657. * if not treated properly. While the number of actually read bytes is bellow the specified size, the function may
  658. * continue to read the data. But as the new packet is started, it should fit completely in the provided buffer space
  659. * or PCILIB_ERROR_TOOBIG error will be returned. Therefore, it is a good practice to read only a single packet at
  660. * once and provide buffer capable to store the larges possible packet.
  661. *
  662. * Unless #PCILIB_DMA_FLAG_MULTIPACKET flag is specified, the function will stop after the first full packet is read.
  663. * Otherwise, the reading will continue until all `size` bytes are read or timeout is hit. The stanard DMA timeout
  664. * should be met while reading DMA buffers belonging to the same packet. Otherwise, PCILIB_ERROR_TIMEOUT is returned
  665. * and number of bytes read so far is returned in the `rdsize`.
  666. * If #PCILIB_DMA_FLAG_WAIT flag is specified, the number of microseconds specified in the `timeout` parameter are
  667. * allowed for a new packet to come. If no new data arrived in the specified timeout, the function returns successfuly
  668. * and number of read bytes is returned in the `rdsize`.
  669. *
  670. * We can't put the read data back into the DMA. Therefore, even in the case of error some data may be returned. The
  671. * number of actually read bytes is always reported in `rdsize` and the specified amount of data is always written
  672. * to the provided buffer.
  673. *
  674. * @param[in,out] ctx - pcilib context
  675. * @param[in] dma - ID of DMA engine, the ID should first be resolved using pcilib_find_dma_by_addr()
  676. * @param[in] addr - instructs DMA to start reading at the specified address (not supported by existing DMA engines)
  677. * @param[in] size - specifies how many bytes should be read
  678. * @param[in] flags - Various flags controlling the function behavior
  679. * - #PCILIB_DMA_FLAG_MULTIPACKET indicates that multiple DMA packets will be read (not recommended, use pcilib_stream_dma() in this case)
  680. * - #PCILIB_DMA_FLAG_WAIT indicates that we need to wait the specified timeout between consequitive DMA packets (default DMA timeout is used otherwise)
  681. * @param[in] timeout - specifies number of microseconds to wait before reporting timeout, special values #PCILIB_TIMEOUT_IMMEDIATE and #PCILIB_TIMEOUT_INFINITE are supported.
  682. * This parameter specifies timeout between consequtive DMA packets, the standard DMA timeout is expected between buffers belonging to the same DMA packet.
  683. * @param[out] buf - the buffer of \a size bytes long to store the data
  684. * @param[out] rdsize - number of bytes which were actually read. The correct value will be reported in both case if function has finished successfully or if error has happened.
  685. * @return - error code or 0 on success. In both cases some data may be returned in the buffer, check `rdsize`.
  686. */
  687. int pcilib_read_dma_custom(pcilib_t *ctx, pcilib_dma_engine_t dma, uintptr_t addr, size_t size, pcilib_dma_flags_t flags, pcilib_timeout_t timeout, void *buf, size_t *rdsize);
  688. /**
  689. * Reads data from DMA until timeout is hit, a full DMA packet is read, or the specified number of bytes are read.
  690. * Please, check detailed explanation when reading is stopped in the description of pcilib_read_dma_custom().
  691. * The function is process- and thread-safe. The #PCILIB_ERROR_BUSY will be returned immediately if DMA is used
  692. * by another thread or process.
  693. *
  694. * The function actually executes the pcilib_read_dma_custom() without special flags and with default DMA timeout
  695. *
  696. * @param[in,out] ctx - pcilib context
  697. * @param[in] dma - ID of DMA engine, the ID should first be resolved using pcilib_find_dma_by_addr()
  698. * @param[in] addr - instructs DMA to start reading at the specified address (not supported by existing DMA engines)
  699. * @param[in] size - specifies how many bytes should be read
  700. * @param[out] buf - the buffer of \a size bytes long to store the data
  701. * @param[out] rdsize - number of bytes which were actually read. The correct value will be reported in both case if function has finished successfully or if error has happened.
  702. * @return - error code or 0 on success. In both cases some data may be returned in the buffer, check `rdsize`.
  703. */
  704. int pcilib_read_dma(pcilib_t *ctx, pcilib_dma_engine_t dma, uintptr_t addr, size_t size, void *buf, size_t *rdsize);
  705. /**
  706. * Pushes new data to the DMA engine. The actual behavior is implementation dependent. The successful exit does not mean
  707. * what all data have reached hardware, but only guarantees that it is stored in DMA buffers and the hardware is instructed
  708. * to start reading buffers. The function may return #PCILIB_ERROR_TIMEOUT is all DMA buffers are occupied and no buffers is
  709. * read by the hardware within the specified timeout. Even if an error is returned, part of the data may be already send to
  710. * DMA and can't be revoked back. Number of actually written bytes is always returned in the `wrsize`.
  711. *
  712. * The function is process- and thread-safe. The #PCILIB_ERROR_BUSY will be returned immediately if DMA is used
  713. * by another thread or process.
  714. *
  715. * @param[in,out] ctx - pcilib context
  716. * @param[in] dma - ID of DMA engine, the ID should first be resolved using pcilib_find_dma_by_addr()
  717. * @param[in] addr - instructs DMA to start writting at the specified address (not supported by existing DMA engines)
  718. * @param[in] size - specifies how many bytes should be written
  719. * @param[in] flags - Various flags controlling the function behavior
  720. * - #PCILIB_DMA_FLAG_EOP indicates that this is the last data in the DMA packet
  721. * - #PCILIB_DMA_FLAG_WAIT requires function to block until the data actually reach hardware. #PCILIB_ERROR_TIMEOUT may be returned if it takes longer when the specified timeout.
  722. * @param[in] timeout - specifies number of microseconds to wait before reporting timeout, special values #PCILIB_TIMEOUT_IMMEDIATE and #PCILIB_TIMEOUT_INFINITE are supported.
  723. * @param[out] buf - the buffer with the data
  724. * @param[out] wrsize - number of bytes which were actually written. The correct value will be reported in both case if function has finished successfully or if error has happened.
  725. * @return - error code or 0 on success. In both cases some data may be written to the DMA, check `wrsize`.
  726. */
  727. int pcilib_push_dma(pcilib_t *ctx, pcilib_dma_engine_t dma, uintptr_t addr, size_t size, pcilib_dma_flags_t flags, pcilib_timeout_t timeout, void *buf, size_t *wrsize);
  728. /**
  729. * Pushes new data to the DMA engine and blocks until hardware gets it all. Even if an error has occured, a
  730. * part of the data may be already had send to DMA and can't be revoked back. Number of actually written bytes
  731. * is always returned in the `wrsize`.
  732. *
  733. * The function is process- and thread-safe. The #PCILIB_ERROR_BUSY will be returned immediately if DMA is used
  734. * by another thread or process.
  735. * The function actually executes the pcilib_push_dma() with #PCILIB_DMA_FLAG_EOP and #PCILIB_DMA_FLAG_WAIT flags set and
  736. * the default DMA timeout.
  737. *
  738. * @param[in,out] ctx - pcilib context
  739. * @param[in] dma - ID of DMA engine, the ID should first be resolved using pcilib_find_dma_by_addr()
  740. * @param[in] addr - instructs DMA to start writting at the specified address (not supported by existing DMA engines)
  741. * @param[in] size - specifies how many bytes should be written
  742. * @param[out] buf - the buffer with the data
  743. * @param[out] wrsize - number of bytes which were actually written. The correct value will be reported in both case if function has finished successfully or if error has happened.
  744. * @return - error code or 0 on success. In both cases some data may be written to the DMA, check `wrsize`.
  745. */
  746. int pcilib_write_dma(pcilib_t *ctx, pcilib_dma_engine_t dma, uintptr_t addr, size_t size, void *buf, size_t *wrsize);
  747. /**
  748. * Benchmarks the DMA implementation. The reported performance may be significantly affected by several environmental variables.
  749. * - PCILIB_BENCHMARK_HARDWARE - if set will not copy the data out, but immediately drop as it lended in DMA buffers. This allows to remove influence of memcpy performance.
  750. * - PCILIB_BENCHMARK_STREAMING - if set will not re-initialized the DMA on each iteration. If DMA is properly implemented this should have only marginal influence on performance
  751. *
  752. * The function is process- and thread-safe. The #PCILIB_ERROR_BUSY will be returned immediately if DMA is used
  753. * by another thread or process.
  754. *
  755. * @param[in,out] ctx - pcilib context
  756. * @param[in] dma - Address of DMA engine
  757. * @param[in] addr - Benchmark will read and write data at the specified address (ignored by existing DMA engines)
  758. * @param[in] size - specifies how many bytes should be read and written at each iteration
  759. * @param[in] iterations - number of iterations to execute
  760. * @param[in] direction - Specifies if DMA reading or writting should be benchmarked, bi-directional benchmark is possible as well
  761. * @return - bandwidth in MiB/s (Mebibytes per second)
  762. */
  763. double pcilib_benchmark_dma(pcilib_t *ctx, pcilib_dma_engine_addr_t dma, uintptr_t addr, size_t size, size_t iterations, pcilib_dma_direction_t direction);
  764. /** public_api_dma
  765. * @}
  766. */
  767. /***********************************************************************************************************//**
  768. * \defgroup public_api_irq Public IRQ API
  769. * This is actually part of DMA API. IRQ handling is currently provided by DMA engine.
  770. * However, the IRQs are barely used so far. Therefore, the API can be significantly changed when confronted with harsh reallity.
  771. * @{
  772. */
  773. int pcilib_enable_irq(pcilib_t *ctx, pcilib_irq_type_t irq_type, pcilib_dma_flags_t flags);
  774. int pcilib_disable_irq(pcilib_t *ctx, pcilib_dma_flags_t flags);
  775. int pcilib_wait_irq(pcilib_t *ctx, pcilib_irq_hw_source_t source, pcilib_timeout_t timeout, size_t *count);
  776. int pcilib_acknowledge_irq(pcilib_t *ctx, pcilib_irq_type_t irq_type, pcilib_irq_source_t irq_source);
  777. int pcilib_clear_irq(pcilib_t *ctx, pcilib_irq_hw_source_t source);
  778. /** public_api_irq
  779. * @}
  780. */
  781. /***********************************************************************************************************//**
  782. * \defgroup public_api_event Public Event API
  783. * High level API for reading the structured data from hardware
  784. * @{
  785. */
  786. /**
  787. * Provides access to the context of event engine. This may be required to call implementation-specific
  788. * functions of event engine.
  789. * @param [in,out] ctx - pcilib context
  790. * @return - context of event engine or NULL in the case of error. Depending on the implementation can be extension of pcilib_contex_t, it should be safe to type cast if you are running the correct engine.
  791. */
  792. pcilib_context_t *pcilib_get_event_engine(pcilib_t *ctx);
  793. /**
  794. * Resolves the event ID based on its name.
  795. * @param [in,out] ctx - pcilib context
  796. * @param [in] event - the event name
  797. * @return - the event ID or PCILIB_EVENT_INVALID if event is not found
  798. */
  799. pcilib_event_t pcilib_find_event(pcilib_t *ctx, const char *event);
  800. /**
  801. * Analyzes current configuration, allocates necessary buffers and spawns required data processing threads.
  802. * Depending on the implementation and the current configuration, the actual event grabbing may start already
  803. * here. In this case, the preprocessed events will be storred in the temporary buffers and may be lost if
  804. * pcilib_stop() is called before reading them out. Alternatively, the actual grabbing may only commend when
  805. * the pcilib_stream() or pcilib_get_next_event() functions are executed.
  806. * The function is non-blocking and will return immediately after allocating required memory and spawning
  807. * of the preprocessing threads. It is important to call pcilib_stop() in the end.
  808. *
  809. * The grabbing will stop automatically if conditions defined using pcilib_configure_autostop() function
  810. * are met. It also possible to stop grabbing using pcilib_stop() call at any moment.
  811. *
  812. * The process- and thread-safety is implementation depedent. However, normally the event engine will depend
  813. * on DMA and if DMA engine is process-safe it will ensure the process-safety for event engine as well.
  814. * The thread-safety is not directly ensured by currently implemented Event engines. The functions of Event
  815. * engine may be called from multiple threads, but it is the user responsibility to ensure that only a single
  816. * function of Event engine is running at each moment. On other hand, the Event and register APIs may be used
  817. * in parallel.
  818. *
  819. * @param[in,out] ctx - pcilib context
  820. * @param[in] ev_mask - specifies events to listen for, use #PCILIB_EVENTS_ALL to grab all events
  821. * @param[in] flags - various implementation-specific flags controlling operation of event engine
  822. * - #PCILIB_EVENT_FLAG_PREPROCESS - requires event preprocessing (i.e. event data is decoded before it is requested, this is often required for multi-threaded processing)
  823. * - #PCILIB_EVENT_FLAG_RAW_DATA_ONLY - disables data processing at all, only raw data will be provided in this case
  824. * @return - error code or 0 on success
  825. */
  826. int pcilib_start(pcilib_t *ctx, pcilib_event_t ev_mask, pcilib_event_flags_t flags);
  827. /**
  828. * Stops event grabbing and optionally cleans up the used memory.
  829. * This function operates in two modes. If #PCILIB_EVENT_FLAG_STOP_ONLY flag is specified, the
  830. * event grabbing is stopped, but all memory structures are kept intact. This also forces the
  831. * blocked pcilib_stream() and pcilib_get_next_event() to return after a short while.
  832. * Unlike DMA engine, the event engine is not persistent and is always completely stopped when
  833. * application is finished. Therefore, later the pcilib_stop() should be necessarily called
  834. * again without #PCILIB_EVENT_FLAG_STOP_ONLY flag to commend full clean up and release all
  835. * used memory. Such call may only be issued when no threads are using Event engine any more.
  836. * There should be no functions waiting for next event to appear and all of the obtained event
  837. * data should be already returned back to the system.
  838. *
  839. * pcilib_stop executed with #PCILIB_EVENT_FLAG_STOP_ONLY is thread safe. The full version of
  840. * the function is not and should be never called in parallel with any other action of the
  841. * event engine. Actually, it is thread safe in the case of ipecamera, but this is not
  842. * guaranteed for other event engines.
  843. *
  844. * @param[in,out] ctx - pcilib context
  845. * @param[in] flags - flags specifying operation mode
  846. * - #PCILIB_EVENT_FLAG_STOP_ONLY - instructs library to keep all the data structures intact and to onlystop the data grabbing
  847. * @return - error code or 0 on success
  848. */
  849. int pcilib_stop(pcilib_t *ctx, pcilib_event_flags_t flags);
  850. /**
  851. * Streams the incomming events to the provided callback function. If Event engine is not started
  852. * yet, it will be started and terminated upon the completion of the call. The streaming will
  853. * continue while Event engine is started and the callback function does not return an error (negative)
  854. * or #PCILIB_STREAMING_STOP.
  855. *
  856. * The callback is called only when all the data associated with the event is received from hardware.
  857. * So, the raw data is necessarily present, but availability of alternative data formats is
  858. * optional. Depending on the implementation and current configuration, the data decoding can be
  859. * performed beforehand, in parallel with callback execution, or only them the data is
  860. * requested with pcilib_get_data() or pcilib_copy_data() calls.
  861. *
  862. * The function is thread-safe. The multiple requests to pcilib_stream() and pcilib_get_next_event()
  863. * will be automatically serialized by the event engine. The pcilib_stream() is running in the
  864. * single thread and no new calls to callback are issued until currently executed callback
  865. * returns. The client application may get hold on the data from multiple events simultaneously.
  866. * However, the data could be overwritten meanwhile by the hardware. The pcilib_return_data()
  867. * will inform if it has happened by returning #PCILIB_ERROR_OVERWRITTEN.
  868. *
  869. * @param[in,out] ctx - pcilib context
  870. * @param[in] callback - callback function to call for each event, the streaming is stopped if it return #PCILIB_STREAMING_STOP or negative value indicating the error
  871. * @param[in,out] user - used data is passed through as the last parameter of callback function
  872. * @return - error code or 0 on success
  873. */
  874. int pcilib_stream(pcilib_t *ctx, pcilib_event_callback_t callback, void *user);
  875. /**
  876. * Waits until the next event is available.
  877. * The event is only returned when all the data associated with the event is received from hardware.
  878. * So, the raw data is necessarily present, but availability of alternative data formats is
  879. * optional. Depending on the implementation and current configuration, the data decoding can be
  880. * performed beforehand, in parallel, or only them the data is requested with pcilib_get_data()
  881. * or pcilib_copy_data() calls.
  882. *
  883. * The function is thread-safe. The multiple requests to pcilib_stream() and pcilib_get_next_event()
  884. * will be automatically serialized by the event engine. The client application may get hold on
  885. * the data from multiple events simultaneously. However, the data could be overwritten meanwhile
  886. * by the hardware. The pcilib_return_data() will inform if it has happened by returning
  887. * #PCILIB_ERROR_OVERWRITTEN.
  888. *
  889. * @param[in,out] ctx - pcilib context
  890. * @param[in] timeout - specifies number of microseconds to wait for next event before reporting timeout, special values #PCILIB_TIMEOUT_IMMEDIATE and #PCILIB_TIMEOUT_INFINITE are supported.
  891. * @param[out] evid - the event ID is returned in this parameter
  892. * @param[in] info_size - the size of the passed event info structure (the implementation of event engine may extend the standad #pcilib_event_info_t definition and provide extra information about the event.
  893. If big enough info buffer is provided, this additional information will be copied as well. Otherwise only standard information is provided.
  894. * @param[out] info - The information about the recorded event is written to `info`
  895. * @return - error code or 0 on success
  896. */
  897. int pcilib_get_next_event(pcilib_t *ctx, pcilib_timeout_t timeout, pcilib_event_id_t *evid, size_t info_size, pcilib_event_info_t *info);
  898. /**
  899. * Requests the streaming the rawdata from the event engine. The callback will be called
  900. * each time new DMA packet is received. It is the fastest way to acuqire data.
  901. * No memory copies performed and DMA buffers are directly passed to the specified callback.
  902. * However, to prevent data loss, no long processing is allowed is only expected to copy data
  903. * into the appropriate place and return control to the event engine.
  904. *
  905. * This function should be exectued before the grabbing is started with pcilib_start().
  906. * The performance can be boosted further by disabling any data processing within the event
  907. * engine. This is achieved by passing the #PCILIB_EVENT_FLAG_RAW_DATA_ONLY flag to pcilib_start()
  908. * function while starting the grabbing.
  909. *
  910. * @param[in,out] ctx - pcilib context
  911. * @param[in] callback - callback function to call for each event, the streaming is stopped if it return #PCILIB_STREAMING_STOP or negative value indicating the error
  912. * @param[in,out] user - used data is passed through as the last parameter of callback function
  913. * @return - error code or 0 on success
  914. */
  915. int pcilib_configure_rawdata_callback(pcilib_t *ctx, pcilib_event_rawdata_callback_t callback, void *user);
  916. /**
  917. * Configures conditions when the grabbing will be stopped automatically. The recording of new events may be
  918. * stopped after reaching max_events records or when the specified amount of time is elapsed whatever happens
  919. * first. However, the pcilib_stop() function still must be called afterwards.
  920. *
  921. * This function should be exectued before the grabbing is started with pcilib_start().
  922. * NOTE that this options might not be respected if grabbing is started with the
  923. * #PCILIB_EVENT_FLAG_RAW_DATA_ONLY flag specified.
  924. *
  925. * @param[in,out] ctx - pcilib context
  926. * @param[in] max_events - specifies number of events after which the grabbing is stopped
  927. * @param[in] duration - specifies number of microseconds to run the grabbing, special values #PCILIB_TIMEOUT_IMMEDIATE and #PCILIB_TIMEOUT_INFINITE are supported.
  928. * @return - error code or 0 on success
  929. */
  930. int pcilib_configure_autostop(pcilib_t *ctx, size_t max_events, pcilib_timeout_t duration);
  931. /**
  932. * Request the auto-triggering while grabbing. The software triggering is currently not supported (but planned).
  933. * Therefore it is fully relied on hardware support. If no hardware support is available, #PCILIB_ERROR_NOTSUPPORTED
  934. * will be returned.
  935. *
  936. * This function should be exectued before the grabbing is started with pcilib_start().
  937. *
  938. * @param[in,out] ctx - pcilib context
  939. * @param[in] interval - instructs hardware that each `interval` microseconds a new trigger should be issued
  940. * @param[in] event - specifies ID of the event which will be triggered
  941. * @param[in] trigger_size - specifies the size of `trigger` buffer
  942. * @param[in] trigger_data - this implementation-specific buffer which will be passed through to the Event engine
  943. * @return - error code or 0 on success
  944. */
  945. int pcilib_configure_autotrigger(pcilib_t *ctx, pcilib_timeout_t interval, pcilib_event_t event, size_t trigger_size, void *trigger_data);
  946. /**
  947. * Issues a single software trigger for the specified event. No hardware support is required. The function
  948. * is fully thread safe and can be called while other thread is blocked in the pcilib_stream() or pcilib_get_next_event()
  949. * calls.
  950. *
  951. * @param[in,out] ctx - pcilib context
  952. * @param[in] event - specifies ID of the event to trigger
  953. * @param[in] trigger_size - specifies the size of `trigger` buffer
  954. * @param[in] trigger_data - this implementation-specific buffer which will be passed through to the Event engine
  955. * @return - error code or 0 on success
  956. */
  957. int pcilib_trigger(pcilib_t *ctx, pcilib_event_t event, size_t trigger_size, void *trigger_data);
  958. /** public_api_event
  959. * @}
  960. */
  961. /***********************************************************************************************************//**
  962. * \defgroup public_api_event_data Public Event Data API
  963. * A part of Event API actually providing access to the data
  964. * @{
  965. */
  966. /**
  967. * Resolves the data type based on its name.
  968. * @param[in,out] ctx - pcilib context
  969. * @param[in] event - the ID of the event producing the data
  970. * @param[in] data_type - the name of data type
  971. * @return - the data type or PCILIB_EVENT_DATA_TYPE_INVALID if the specified type is not found
  972. */
  973. pcilib_event_data_type_t pcilib_find_event_data_type(pcilib_t *ctx, pcilib_event_t event, const char *data_type);
  974. /**
  975. * This is a simples way to grab the data from the event engine. The event engine is started, a software trigger
  976. * for the specified event is issued if `timeout` is equal to PCILIB_TIMEOUT_IMMEDIATE, event is grabbed and the
  977. * default data is copied into the user buffer. Then, the grabbing is stopped.
  978. * @param[in,out] ctx - pcilib context
  979. * @param[in] event - the event to trigger and/or event mask to grab
  980. * @param[in,out] size - specifies the size of the provided buffer (if user supplies the buffer), the amount of data actually written is returned in this paramter
  981. * @param[in,out] data - Either contains a pointer to user-supplied buffer where the data will be written or pointer to NULL otherwise.
  982. In the later case, the pointer to newly allocated buffer will be returned in case of success. It is responsibility of the user to free the memory in this case.
  983. In case of failure, the content of data is undefined.
  984. * @param[in] timeout - either is equal to #PCILIB_TIMEOUT_IMMEDIATE for immediate software trigger or specifies number of microseconds to wait for event triggered by hardware
  985. * @return - error code or 0 on success
  986. */
  987. int pcilib_grab(pcilib_t *ctx, pcilib_event_t event, size_t *size, void **data, pcilib_timeout_t timeout);
  988. /**
  989. * Copies the data of the specified type associated with the specified event into the provided buffer. May return #PCILIB_ERROR_OVERWRITTEN
  990. * if the data was overwritten during the call.
  991. *
  992. * @param[in,out] ctx - pcilib context
  993. * @param[in] event_id - specifies the ID of event to get data from
  994. * @param[in] data_type - specifies the desired type of data
  995. - PCILIB_EVENT_DATA will request the default data type
  996. - PCILIB_EVENT_RAW_DATA will request the raw data
  997. - The other types of data may be defined by event engine
  998. * @param[in] size - specifies the size of provided buffer in bytes
  999. * @param[out] buf - the data will be copied in this buffer if it is big enough, otherwise #PCILIB_ERROR_TOOBIG will be returned
  1000. * @param[out] retsize - the number of actually written bytes will be returned in this parameter
  1001. * @return - error code or 0 on success
  1002. */
  1003. int pcilib_copy_data(pcilib_t *ctx, pcilib_event_id_t event_id, pcilib_event_data_type_t data_type, size_t size, void *buf, size_t *retsize);
  1004. /**
  1005. * Copies the data of the specified type associated with the specified event into the provided buffer. May return #PCILIB_ERROR_OVERWRITTEN
  1006. * if the data was overwritten during the call. This is very similar to pcilib_copy_data(), but allows to specify implementation specific
  1007. * argument explaining the requested data format.
  1008. *
  1009. * @param[in,out] ctx - pcilib context
  1010. * @param[in] event_id - specifies the ID of event to get data from
  1011. * @param[in] data_type - specifies the desired type of data
  1012. - PCILIB_EVENT_DATA will request the default data type
  1013. - PCILIB_EVENT_RAW_DATA will request the raw data
  1014. - The other types of data may be defined by event engine
  1015. * @param[in] arg_size - specifies the size of `arg` in bytes
  1016. * @param[in] arg - implementation-specific argument expalining the requested data format
  1017. * @param[in] size - specifies the size of provided buffer in bytes
  1018. * @param[out] buf - the data will be copied in this buffer if it is big enough, otherwise #PCILIB_ERROR_TOOBIG will be returned
  1019. * @param[out] retsize - the number of actually written bytes will be returned in this parameter
  1020. * @return - error code or 0 on success
  1021. */
  1022. int pcilib_copy_data_with_argument(pcilib_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 *buf, size_t *retsize);
  1023. /**
  1024. * Returns pointer to the data of the specified type associated with the specified event. The data should be returned back to the
  1025. * Event engine using pcilib_return_data() call. WARNING: Current implementation may overwrite the data before the pcilib_return_data()
  1026. * call is executed. In this case the #PCILIB_ERROR_OVERWRITTEN error will be returned by pcilib_return_data() call. I guess this is
  1027. * a bad idea and have to be changed. Meanwhile, for the ipecamera implementation the image data will be never overwritten. However,
  1028. * the raw data may get overwritten and the error code of pcilib_return_data() has to be consulted.
  1029. *
  1030. * @param[in,out] ctx - pcilib context
  1031. * @param[in] event_id - specifies the ID of event to get data from
  1032. * @param[in] data_type - specifies the desired type of data
  1033. - PCILIB_EVENT_DATA will request the default data type
  1034. - PCILIB_EVENT_RAW_DATA will request the raw data
  1035. - The other types of data may be defined by event engine
  1036. * @param[out] size_or_err - contain error code if function returns NULL or number of actually written bytes otherwise
  1037. * @return - the pointer to the requested data or NULL otherwise
  1038. */
  1039. void *pcilib_get_data(pcilib_t *ctx, pcilib_event_id_t event_id, pcilib_event_data_type_t data_type, size_t *size_or_err);
  1040. /**
  1041. * Returns pointer to the data of the specified type associated with the specified event. The data should be returned back to the
  1042. * Event engine using pcilib_return_data() call. WARNING: Current implementation may overwrite the data before the pcilib_return_data()
  1043. * call is executed, @see pcilib_get_data() for details. Overall this function is very similar to pcilib_get_data(), but allows to
  1044. * specify implementation specific argument explaining the requested data format.
  1045. *
  1046. * @param[in,out] ctx - pcilib context
  1047. * @param[in] event_id - specifies the ID of event to get data from
  1048. * @param[in] data_type - specifies the desired type of data
  1049. - PCILIB_EVENT_DATA will request the default data type
  1050. - PCILIB_EVENT_RAW_DATA will request the raw data
  1051. - The other types of data may be defined by event engine
  1052. * @param[in] arg_size - specifies the size of `arg` in bytes
  1053. * @param[in] arg - implementation-specific argument expalining the requested data format
  1054. * @param[out] size_or_err - contain error code if function returns NULL or number of actually written bytes otherwise
  1055. * @return - the pointer to the requested data or NULL otherwise
  1056. */
  1057. void *pcilib_get_data_with_argument(pcilib_t *ctx, pcilib_event_id_t event_id, pcilib_event_data_type_t data_type, size_t arg_size, void *arg, size_t *size_or_err);
  1058. /*
  1059. * This function returns data obtained using pcilib_get_data() or pcilib_get_data_with_argument() calls.
  1060. * It occasionally may return #PCILIB_ERROR_OVERWRITTEN error indicating that the data was overwritten
  1061. * between pcilib_get_data() and pcilib_return_data() calls, @see pcilib_get_data() for details.
  1062. * @param[in,out] ctx - pcilib context
  1063. * @param[in] event_id - specifies the ID of event to get data from
  1064. * @param[in] data_type - specifies the data type request in the pcilib_get_data() call
  1065. * @param[in,out] data - specifies the buffer returned by pcilib_get_data() call
  1066. * @return - #PCILIB_ERROR_OVERWRITTEN or 0 if data is still valid
  1067. */
  1068. int pcilib_return_data(pcilib_t *ctx, pcilib_event_id_t event_id, pcilib_event_data_type_t data_type, void *data);
  1069. /** public_api_event_data
  1070. * @}
  1071. */
  1072. /***********************************************************************************************************//**
  1073. * \defgroup public_api_value Polymorphic values
  1074. * API for manipulation of data formats and units
  1075. * @{
  1076. */
  1077. /**
  1078. * Destroys the polymorphic value and frees any extra used memory, but does not free #pcilib_value_t itself
  1079. * @param[in] ctx - pcilib context
  1080. * @param[in,out] val - initialized polymorphic value
  1081. */
  1082. void pcilib_clean_value(pcilib_t *ctx, pcilib_value_t *val);
  1083. /**
  1084. * Copies the polymorphic value. If `dst` already contains the value, cleans it first.
  1085. * Therefore, before first usage the value should be always initialized to 0.
  1086. * @param[in] ctx - pcilib context
  1087. * @param[in,out] dst - initialized polymorphic value
  1088. * @param[in] src - initialized polymorphic value
  1089. * @return - 0 on success or memory error
  1090. */
  1091. int pcilib_copy_value(pcilib_t *ctx, pcilib_value_t *dst, const pcilib_value_t *src);
  1092. /**
  1093. * Initializes the polymorphic value from floating-point number. If `val` already contains the value, cleans it first.
  1094. * Therefore, before first usage the value should be always initialized to 0.
  1095. * @param[in] ctx - pcilib context
  1096. * @param[in,out] val - initialized polymorphic value
  1097. * @param[in] fval - initializer
  1098. * @return - 0 on success or memory error
  1099. */
  1100. int pcilib_set_value_from_float(pcilib_t *ctx, pcilib_value_t *val, double fval);
  1101. /**
  1102. * Initializes the polymorphic value from integer. If `val` already contains the value, cleans it first.
  1103. * Therefore, before first usage the value should be always initialized to 0.
  1104. * @param[in] ctx - pcilib context
  1105. * @param[in,out] val - initialized polymorphic value
  1106. * @param[in] ival - initializer
  1107. * @return - 0 on success or memory error
  1108. */
  1109. int pcilib_set_value_from_int(pcilib_t *ctx, pcilib_value_t *val, long ival);
  1110. /**
  1111. * Initializes the polymorphic value from the register value. If `val` already contains the value, cleans it first.
  1112. * Therefore, before first usage the value should be always initialized to 0.
  1113. * @param[in] ctx - pcilib context
  1114. * @param[in,out] val - initialized polymorphic value
  1115. * @param[in] regval - initializer
  1116. * @return - 0 on success or memory error
  1117. */
  1118. int pcilib_set_value_from_register_value(pcilib_t *ctx, pcilib_value_t *val, pcilib_register_value_t regval);
  1119. /**
  1120. * Initializes the polymorphic value from the static string. The string is not copied, but only referenced.
  1121. * If `val` already contains the value, cleans it first. Therefore, before first usage the value should be always initialized to 0.
  1122. * @param[in] ctx - pcilib context
  1123. * @param[in,out] val - initialized polymorphic value
  1124. * @param[in] str - initializer
  1125. * @return - 0 on success or memory error
  1126. */
  1127. int pcilib_set_value_from_static_string(pcilib_t *ctx, pcilib_value_t *val, const char *str);
  1128. /**
  1129. * Get the floating point value from the polymorphic type. May inmply impliced type conversion,
  1130. * for isntance parsing the number from the string. Will return 0. and report an error if
  1131. * conversion failed.
  1132. * @param[in] ctx - pcilib context
  1133. * @param[in] val - initialized polymorphic value of arbitrary type
  1134. * @param[out] err - error code or 0 on sccuess
  1135. * @return - the value or 0 in the case of error
  1136. */
  1137. double pcilib_get_value_as_float(pcilib_t *ctx, const pcilib_value_t *val, int *err);
  1138. /**
  1139. * Get the integer value from the polymorphic type. May inmply impliced type conversion
  1140. * resulting in precision loss if the `val` stores floating-point number. The warning
  1141. * message will be printed in this case, but no error returned.
  1142. * @param[in] ctx - pcilib context
  1143. * @param[in] val - initialized polymorphic value of arbitrary type
  1144. * @param[out] err - error code or 0 on sccuess
  1145. * @return - the value or 0 in the case of error
  1146. */
  1147. long pcilib_get_value_as_int(pcilib_t *ctx, const pcilib_value_t *val, int *err);
  1148. /**
  1149. * Get the integer value from the polymorphic type. May inmply impliced type conversion
  1150. * resulting in precision loss if the `val` stores floating-point number or complete
  1151. * data corruption if negative number is stored. The warning message will be printed
  1152. * in this case, but no error returned.
  1153. * @param[in] ctx - pcilib context
  1154. * @param[in] val - initialized polymorphic value of arbitrary type
  1155. * @param[out] err - error code or 0 on sccuess
  1156. * @return - the value or 0 in the case of error
  1157. */
  1158. pcilib_register_value_t pcilib_get_value_as_register_value(pcilib_t *ctx, const pcilib_value_t *val, int *err);
  1159. /**
  1160. * Convert the units of the supplied polymorphic value. The error will be reported if currently used units of the
  1161. * value are unknown, the requested conversion is not supported, or the value is not numeric.
  1162. * @param[in] ctx - pcilib context
  1163. * @param[in,out] val - initialized polymorphic value of any numeric type
  1164. * @param[in] unit_name - the requested units
  1165. * @return err - error code or 0 on sccuess
  1166. */
  1167. int pcilib_convert_value_unit(pcilib_t *ctx, pcilib_value_t *val, const char *unit_name);
  1168. /**
  1169. * Convert the type of the supplied polymorphic value. The error will be reported if conversion
  1170. * is not supported or failed due to non-conformant content.
  1171. * @param[in] ctx - pcilib context
  1172. * @param[in,out] val - initialized polymorphic value of any type
  1173. * @param[in] type - the requested type
  1174. * @return err - error code or 0 on sccuess
  1175. */
  1176. int pcilib_convert_value_type(pcilib_t *ctx, pcilib_value_t *val, pcilib_value_type_t type);
  1177. /** public_api_value
  1178. * @}
  1179. */
  1180. #ifdef __cplusplus
  1181. }
  1182. #endif
  1183. #endif /* _PCITOOL_PCILIB_H */