drivers/gpu/drm/xe/xe_sriov_pf_service.h

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

File Facts

System
Linux kernel
Corpus path
drivers/gpu/drm/xe/xe_sriov_pf_service.h
Extension
.h
Size
678 bytes
Lines
24
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_SRIOV_PF_SERVICE_H_
#define _XE_SRIOV_PF_SERVICE_H_

#include <linux/types.h>

struct drm_printer;
struct xe_device;

void xe_sriov_pf_service_init(struct xe_device *xe);
void xe_sriov_pf_service_print_versions(struct xe_device *xe, struct drm_printer *p);

int xe_sriov_pf_service_handshake_vf(struct xe_device *xe, u32 vfid,
				     u32 wanted_major, u32 wanted_minor,
				     u32 *major, u32 *minor);
bool xe_sriov_pf_service_is_negotiated(struct xe_device *xe, u32 vfid, u32 major, u32 minor);
void xe_sriov_pf_service_reset_vf(struct xe_device *xe, unsigned int vfid);

#endif

Annotation

Implementation Notes