drivers/media/pci/cobalt/cobalt-omnitek.h

Source file repositories/reference/linux-study-clean/drivers/media/pci/cobalt/cobalt-omnitek.h

File Facts

System
Linux kernel
Corpus path
drivers/media/pci/cobalt/cobalt-omnitek.h
Extension
.h
Size
1372 bytes
Lines
51
Domain
Driver Families
Bucket
drivers/media
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

struct sg_dma_descriptor {
	u32 pci_l;
	u32 pci_h;

	u32 local;
	u32 reserved0;

	u32 next_l;
	u32 next_h;

	u32 bytes;
	u32 reserved1;
};

int omni_sg_dma_init(struct cobalt *cobalt);
void omni_sg_dma_abort_channel(struct cobalt_stream *s);
void omni_sg_dma_start(struct cobalt_stream *s, struct sg_dma_desc_info *desc);
bool is_dma_done(struct cobalt_stream *s);

int descriptor_list_create(struct cobalt *cobalt,
	struct scatterlist *scatter_list, bool to_pci, unsigned sglen,
	unsigned size, unsigned width, unsigned stride,
	struct sg_dma_desc_info *desc);

void descriptor_list_chain(struct sg_dma_desc_info *this,
			   struct sg_dma_desc_info *next);
void descriptor_list_loopback(struct sg_dma_desc_info *desc);
void descriptor_list_end_of_chain(struct sg_dma_desc_info *desc);

void *descriptor_list_allocate(struct sg_dma_desc_info *desc, size_t bytes);
void descriptor_list_free(struct sg_dma_desc_info *desc);

void descriptor_list_interrupt_enable(struct sg_dma_desc_info *desc);
void descriptor_list_interrupt_disable(struct sg_dma_desc_info *desc);

#endif

Annotation

Implementation Notes