drivers/gpu/drm/xe/xe_mmio_gem.h

Source file repositories/reference/linux-study-clean/drivers/gpu/drm/xe/xe_mmio_gem.h

File Facts

System
Linux kernel
Corpus path
drivers/gpu/drm/xe/xe_mmio_gem.h
Extension
.h
Size
480 bytes
Lines
21
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 _XE_MMIO_GEM_H_
#define _XE_MMIO_GEM_H_

#include <linux/types.h>

struct drm_file;
struct xe_device;
struct xe_mmio_gem;

struct xe_mmio_gem *xe_mmio_gem_create(struct xe_device *xe, struct drm_file *file,
				       phys_addr_t phys_addr, size_t size);
u64 xe_mmio_gem_mmap_offset(struct xe_mmio_gem *gem);
void xe_mmio_gem_destroy(struct xe_mmio_gem *gem);

#endif /* _XE_MMIO_GEM_H_ */

Annotation

Implementation Notes