drivers/gpu/drm/xe/display/xe_display_wa.c
Source file repositories/reference/linux-study-clean/drivers/gpu/drm/xe/display/xe_display_wa.c
File Facts
- System
- Linux kernel
- Corpus path
drivers/gpu/drm/xe/display/xe_display_wa.c- Extension
.c- Size
- 437 bytes
- Lines
- 20
- 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.
- 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.
- Defines or uses C structs; map object ownership, embedded links, reference counts, and lock ownership.
Dependency Surface
intel_display_core.hintel_display_wa.hxe_device.hxe_wa.hgenerated/xe_wa_oob.h
Detected Declarations
function intel_display_needs_wa_16023588340
Annotated Snippet
// SPDX-License-Identifier: MIT
/*
* Copyright © 2024 Intel Corporation
*/
#include "intel_display_core.h"
#include "intel_display_wa.h"
#include "xe_device.h"
#include "xe_wa.h"
#include <generated/xe_wa_oob.h>
bool intel_display_needs_wa_16023588340(struct intel_display *display)
{
struct xe_device *xe = to_xe_device(display->drm);
struct xe_gt *wa_gt = xe_root_mmio_gt(xe);
return wa_gt && XE_GT_WA(wa_gt, 16023588340);
}
Annotation
- Immediate include surface: `intel_display_core.h`, `intel_display_wa.h`, `xe_device.h`, `xe_wa.h`, `generated/xe_wa_oob.h`.
- Detected declarations: `function intel_display_needs_wa_16023588340`.
- Atlas domain: Driver Families / drivers/gpu.
- Implementation status: source implementation candidate.
Implementation Notes
- This generated page is the file-by-file coverage layer; curated subsystem chapters should link here when they synthesize a multi-file control flow.
- Core OS pages should be promoted from atlas-only to deep-reviewed when they explain data structures, invariants, locking, lifecycle, and C implementation snippets.
- Driver-family pages are intentionally pattern-oriented unless they are part of the selected PCIe/NVMe representative device path.