drivers/gpu/drm/xe/display/xe_tdf.c

Source file repositories/reference/linux-study-clean/drivers/gpu/drm/xe/display/xe_tdf.c

File Facts

System
Linux kernel
Corpus path
drivers/gpu/drm/xe/display/xe_tdf.c
Extension
.c
Size
291 bytes
Lines
16
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

// SPDX-License-Identifier: MIT
/*
 * Copyright © 2024 Intel Corporation
 */

#include "intel_display_core.h"
#include "intel_tdf.h"
#include "xe_device.h"

void intel_td_flush(struct intel_display *display)
{
	struct xe_device *xe = to_xe_device(display->drm);

	xe_device_td_flush(xe);
}

Annotation

Implementation Notes