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.
- 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
drm/drm_print.hdrm/intel/display_parent_interface.hi915_display_pc8.hi915_drv.hintel_uncore.h
Detected Declarations
function i915_display_pc8_blockfunction i915_display_pc8_unblock
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
- Immediate include surface: `drm/drm_print.h`, `drm/intel/display_parent_interface.h`, `i915_display_pc8.h`, `i915_drv.h`, `intel_uncore.h`.
- Detected declarations: `function i915_display_pc8_block`, `function i915_display_pc8_unblock`.
- 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.