drivers/gpu/host1x/context.h

Source file repositories/reference/linux-study-clean/drivers/gpu/host1x/context.h

File Facts

System
Linux kernel
Corpus path
drivers/gpu/host1x/context.h
Extension
.h
Size
762 bytes
Lines
38
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

struct host1x_memory_context_list {
	struct mutex lock;
	struct host1x_memory_context *devs;
	unsigned int len;
};

#ifdef CONFIG_IOMMU_API
int host1x_memory_context_list_init(struct host1x *host1x);
void host1x_memory_context_list_free(struct host1x_memory_context_list *cdl);
#else
static inline int host1x_memory_context_list_init(struct host1x *host1x)
{
	return 0;
}

static inline void host1x_memory_context_list_free(struct host1x_memory_context_list *cdl)
{
}
#endif

#endif

Annotation

Implementation Notes