drivers/gpu/drm/i915/display/intel_fifo_underrun.h

Source file repositories/reference/linux-study-clean/drivers/gpu/drm/i915/display/intel_fifo_underrun.h

File Facts

System
Linux kernel
Corpus path
drivers/gpu/drm/i915/display/intel_fifo_underrun.h
Extension
.h
Size
963 bytes
Lines
30
Domain
Driver Families
Bucket
drivers/gpu
Inferred role
Driver Families: implementation source
Status
source implementation candidate

Why This File Exists

Repeatable hardware-adapter layer. Deep compatibility for every driver is out of scope; this atlas records patterns, probe lifecycles, bus glue, IRQ/DMA usage, and links back to core abstractions.

Dependency Surface

Detected Declarations

Annotated Snippet

#ifndef __INTEL_FIFO_UNDERRUN_H__
#define __INTEL_FIFO_UNDERRUN_H__

#include <linux/types.h>

enum pipe;
struct intel_crtc;
struct intel_display;

void intel_init_fifo_underrun_reporting(struct intel_display *display,
					struct intel_crtc *crtc, bool enable);
bool intel_set_cpu_fifo_underrun_reporting(struct intel_display *display,
					   enum pipe pipe, bool enable);
bool intel_set_pch_fifo_underrun_reporting(struct intel_display *display,
					   enum pipe pch_transcoder,
					   bool enable);
void intel_cpu_fifo_underrun_irq_handler(struct intel_display *display,
					 enum pipe pipe);
void intel_pch_fifo_underrun_irq_handler(struct intel_display *display,
					 enum pipe pch_transcoder);
void intel_check_cpu_fifo_underruns(struct intel_display *display);
void intel_check_pch_fifo_underruns(struct intel_display *display);

#endif /* __INTEL_FIFO_UNDERRUN_H__ */

Annotation

Implementation Notes