pcilib.h 74 KB

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