drivers/gpu/drm/i915/i915_display_pc8.c

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

File Facts

System
Linux kernel
Corpus path
drivers/gpu/drm/i915/i915_display_pc8.c
Extension
.c
Size
776 bytes
Lines
32
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 2025, Intel Corporation.
 */

#include <drm/drm_print.h>
#include <drm/intel/display_parent_interface.h>

#include "i915_display_pc8.h"
#include "i915_drv.h"
#include "intel_uncore.h"

static void i915_display_pc8_block(struct drm_device *drm)
{
	struct intel_uncore *uncore = &to_i915(drm)->uncore;

	/* to prevent PC8 state, just enable force_wake */
	intel_uncore_forcewake_get(uncore, FORCEWAKE_ALL);
}

static void i915_display_pc8_unblock(struct drm_device *drm)
{
	struct intel_uncore *uncore = &to_i915(drm)->uncore;

	intel_uncore_forcewake_put(uncore, FORCEWAKE_ALL);
}

const struct intel_display_pc8_interface i915_display_pc8_interface = {
	.block = i915_display_pc8_block,
	.unblock = i915_display_pc8_unblock,
};

Annotation

Implementation Notes