drivers/gpu/drm/drm_eld.c
Source file repositories/reference/linux-study-clean/drivers/gpu/drm/drm_eld.c
File Facts
- System
- Linux kernel
- Corpus path
drivers/gpu/drm/drm_eld.c- Extension
.c- Size
- 1176 bytes
- Lines
- 58
- Domain
- Driver Families
- Bucket
- drivers/gpu
- Inferred role
- Driver Families: exported/initcall integration point
- Status
- integration 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.
- Exports symbols or registers init work; inspect boot/module ordering and who consumes the exported contract.
- Defines or uses C structs; map object ownership, embedded links, reference counts, and lock ownership.
Dependency Surface
linux/export.hdrm/drm_edid.hdrm/drm_eld.hdrm_crtc_internal.h
Detected Declarations
function drm_eld_sad_getfunction drm_eld_sad_setexport drm_eld_sad_getexport drm_eld_sad_set
Annotated Snippet
// SPDX-License-Identifier: MIT
/*
* Copyright © 2023 Intel Corporation
*/
#include <linux/export.h>
#include <drm/drm_edid.h>
#include <drm/drm_eld.h>
#include "drm_crtc_internal.h"
/**
* drm_eld_sad_get - get SAD from ELD to struct cea_sad
* @eld: ELD buffer
* @sad_index: SAD index
* @cta_sad: destination struct cea_sad
*
* @return: 0 on success, or negative on errors
*/
int drm_eld_sad_get(const u8 *eld, int sad_index, struct cea_sad *cta_sad)
{
const u8 *sad;
if (sad_index >= drm_eld_sad_count(eld))
return -EINVAL;
sad = eld + DRM_ELD_CEA_SAD(drm_eld_mnl(eld), sad_index);
drm_edid_cta_sad_set(cta_sad, sad);
return 0;
}
EXPORT_SYMBOL(drm_eld_sad_get);
/**
* drm_eld_sad_set - set SAD to ELD from struct cea_sad
* @eld: ELD buffer
* @sad_index: SAD index
* @cta_sad: source struct cea_sad
*
* @return: 0 on success, or negative on errors
*/
int drm_eld_sad_set(u8 *eld, int sad_index, const struct cea_sad *cta_sad)
{
u8 *sad;
if (sad_index >= drm_eld_sad_count(eld))
return -EINVAL;
sad = eld + DRM_ELD_CEA_SAD(drm_eld_mnl(eld), sad_index);
drm_edid_cta_sad_get(cta_sad, sad);
return 0;
}
EXPORT_SYMBOL(drm_eld_sad_set);
Annotation
- Immediate include surface: `linux/export.h`, `drm/drm_edid.h`, `drm/drm_eld.h`, `drm_crtc_internal.h`.
- Detected declarations: `function drm_eld_sad_get`, `function drm_eld_sad_set`, `export drm_eld_sad_get`, `export drm_eld_sad_set`.
- Atlas domain: Driver Families / drivers/gpu.
- Implementation status: integration 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.