drivers/gpu/drm/i915/display/intel_display_conversion.c

Source file repositories/reference/linux-study-clean/drivers/gpu/drm/i915/display/intel_display_conversion.c

File Facts

System
Linux kernel
Corpus path
drivers/gpu/drm/i915/display/intel_display_conversion.c
Extension
.c
Size
622 bytes
Lines
22
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 <drm/intel/display_member.h>

#include "intel_display_conversion.h"

struct intel_display *__drm_to_display(struct drm_device *drm)
{
	/*
	 * Note: This relies on both struct drm_i915_private and struct
	 * xe_device having the struct drm_device and struct intel_display *
	 * members at the same relative offsets, as defined by struct
	 * __intel_generic_device.
	 *
	 * See also INTEL_DISPLAY_MEMBER_STATIC_ASSERT().
	 */
	struct __intel_generic_device *d = container_of(drm, struct __intel_generic_device, drm);

	return d->display;
}

Annotation

Implementation Notes