private.h 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149
  1. #ifndef _IPECAMERA_PRIVATE_H
  2. #define _IPECAMERA_PRIVATE_H
  3. #include "ipecamera.h"
  4. #define IPECAMERA_BUG_EXTRA_DATA
  5. #define IPECAMERA_BUG_MULTIFRAME_PACKETS
  6. //#define IPECAMERA_BUG_INCOMPLETE_PACKETS
  7. //#define IPECAMERA_BUG_POSTPONED_READ
  8. //#define IPECAMERA_DEBUG_RAW_PACKETS "/mnt/fast/frames"
  9. //#define IPECAMERA_ANNOUNCE_READY //**< announce new event only after the reconstruction is done */
  10. #define IPECAMERA_DEFAULT_BUFFER_SIZE 64 //**< should be power of 2 */
  11. #define IPECAMERA_RESERVE_BUFFERS 2 //**< Return Frame is Lost error, if requested frame will be overwritten after specified number of frames
  12. #define IPECAMERA_SLEEP_TIME 250000 //**< Michele thinks 250 should be enough, but reset failing in this case */
  13. #define IPECAMERA_NEXT_FRAME_DELAY 1000 //**< Michele requires 30000 to sync between End Of Readout and next Frame Req */
  14. #define IPECAMERA_WAIT_FRAME_RCVD_TIME 0 //**< by Uros ,wait 6 ms */
  15. #define IPECAMERA_NOFRAME_SLEEP 100
  16. #define IPECAMERA_NOFRAME_PREPROC_SLEEP 100
  17. //#define IPECAMERA_MAX_LINES 1088
  18. #define IPECAMERA_MAX_LINES 2048
  19. #define IPECAMERA_EXPECTED_STATUS_4 0x08409FFFF
  20. #define IPECAMERA_EXPECTED_STATUS 0x08449FFFF
  21. #define IPECAMERA_END_OF_SEQUENCE 0x1F001001
  22. #define IPECAMERA_MAX_CHANNELS 16
  23. #define IPECAMERA_PIXELS_PER_CHANNEL 128
  24. #define IPECAMERA_WIDTH (IPECAMERA_MAX_CHANNELS * IPECAMERA_PIXELS_PER_CHANNEL)
  25. #define IPECAMERA_FRAME_REQUEST 0x1E9
  26. #define IPECAMERA_READOUT_FLAG 0x200
  27. #define IPECAMERA_READOUT 0x3E1
  28. #define IPECAMERA_IDLE 0x1E1
  29. #define IPECAMERA_START_INTERNAL_STIMULI 0x1F1
  30. #define IPECAMERA_MODE_16_CHAN_IO 0
  31. #define IPECAMERA_MODE_4_CHAN_IO 2
  32. #define IPECAMERA_MODE_12_BIT_ADC 2
  33. #define IPECAMERA_MODE_11_BIT_ADC 1
  34. #define IPECAMERA_MODE_10_BIT_ADC 0
  35. typedef uint32_t ipecamera_payload_t;
  36. typedef struct {
  37. pcilib_event_id_t evid;
  38. struct timeval timestamp;
  39. } ipecamera_autostop_t;
  40. typedef struct {
  41. size_t i;
  42. pthread_t thread;
  43. ipecamera_t *ipecamera;
  44. int started; /**< flag indicating that join & cleanup is required */
  45. } ipecamera_preprocessor_t;
  46. typedef struct {
  47. ipecamera_event_info_t event; /**< this structure is overwritten by the reader thread, we need a copy */
  48. pthread_rwlock_t mutex; /**< this mutex protects reconstructed buffers only, the raw data, event_info, etc. will be overwritten by reader thread anyway */
  49. } ipecamera_frame_t;
  50. struct ipecamera_s {
  51. pcilib_context_t event;
  52. UfoDecoder *ipedec;
  53. char *data;
  54. ipecamera_pixel_t *image;
  55. size_t size;
  56. pcilib_event_callback_t cb;
  57. void *cb_user;
  58. volatile pcilib_event_id_t event_id;
  59. volatile pcilib_event_id_t preproc_id;
  60. pcilib_event_id_t reported_id;
  61. pcilib_dma_engine_t rdma, wdma;
  62. pcilib_register_t packet_len_reg;
  63. pcilib_register_t control_reg, status_reg;
  64. pcilib_register_t status3_reg;
  65. pcilib_register_t n_lines_reg;
  66. uint16_t line_reg;
  67. pcilib_register_t exposure_reg;
  68. pcilib_register_t flip_reg;
  69. pcilib_register_t firmware_version_reg;
  70. pcilib_register_t adc_resolution_reg;
  71. pcilib_register_t output_mode_reg;
  72. pcilib_register_t max_frames_reg;
  73. pcilib_register_t num_frames_reg;
  74. int started; /**< Camera is in grabbing mode (start function is called) */
  75. int streaming; /**< Camera is in streaming mode (we are within stream call) */
  76. int parse_data; /**< Indicates if some processing of the data is required, otherwise only rawdata_callback will be called */
  77. volatile int run_reader; /**< Instructs the reader thread to stop processing */
  78. volatile int run_streamer; /**< Indicates request to stop streaming events and can be set by reader_thread upon exit or by user request */
  79. volatile int run_preprocessors; /**< Instructs preprocessors to exit */
  80. ipecamera_autostop_t autostop;
  81. struct timeval autostop_time;
  82. struct timeval next_trigger; /**< The minimal delay between trigger signals is mandatory, this indicates time when next trigger is possible */
  83. size_t buffer_size; /**< How many images to store */
  84. size_t buffer_pos; /**< Current image offset in the buffer, due to synchronization reasons should not be used outside of reader_thread */
  85. size_t cur_size; /**< Already written part of data in bytes */
  86. size_t raw_size; /**< Size of raw data in bytes */
  87. size_t full_size; /**< Size of raw data including the padding */
  88. size_t padded_size; /**< Size of buffer for raw data, including the padding for performance */
  89. size_t cur_raw_size; /**< Size of raw data in bytes */
  90. size_t cur_full_size; /**< Size of raw data including the padding */
  91. size_t cur_padded_size; /**< Size of buffer for raw data, including the padding for performance */
  92. size_t image_size; /**< Size of a single image in bytes */
  93. size_t max_frames; /**< Maximal number of frames what may be buffered in camera DDR memory */
  94. int firmware; /**< Firmware version */
  95. int fr_mode; /**< Fast Reject mode */
  96. int cmosis_outputs; /**< Number of active cmosis outputs: 4 or 16 */
  97. int width, height;
  98. // void *raw_buffer;
  99. void *buffer;
  100. ipecamera_change_mask_t *cmask;
  101. ipecamera_frame_t *frame;
  102. ipecamera_image_dimensions_t dim;
  103. pthread_t rthread;
  104. size_t n_preproc;
  105. ipecamera_preprocessor_t *preproc;
  106. pthread_mutex_t preproc_mutex;
  107. int preproc_mutex_destroy;
  108. int frame_mutex_destroy;
  109. };
  110. #endif /* _IPECAMERA_PRIVATE_H */