/** * struct drm_crtc_crc_entry - entry describing a frame's content * @has_frame_counter: whether the source was able to provide a frame number * @frame: number of the frame this CRC is about, if @has_frame_counter is true * @crcs: array of values that characterize the frame
*/ struct drm_crtc_crc_entry { bool has_frame_counter;
uint32_t frame;
uint32_t crcs[DRM_MAX_CRC_NR];
};
#define DRM_CRC_ENTRIES_NR 128
/** * struct drm_crtc_crc - data supporting CRC capture on a given CRTC * @lock: protects the fields in this struct * @source: name of the currently configured source of CRCs * @opened: whether userspace has opened the data file for reading * @overflow: whether an overflow occured. * @entries: array of entries, with size of %DRM_CRC_ENTRIES_NR * @head: head of circular queue * @tail: tail of circular queue * @values_cnt: number of CRC values per entry, up to %DRM_MAX_CRC_NR * @wq: workqueue used to synchronize reading and writing
*/ struct drm_crtc_crc {
spinlock_t lock; constchar *source; bool opened, overflow; struct drm_crtc_crc_entry *entries; int head, tail;
size_t values_cnt;
wait_queue_head_t wq;
};
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.