drivers/gpu/drm/amd/display/dc/core/dc_stat.c
Source file repositories/reference/linux-study-clean/drivers/gpu/drm/amd/display/dc/core/dc_stat.c
File Facts
- System
- Linux kernel
- Corpus path
drivers/gpu/drm/amd/display/dc/core/dc_stat.c- Extension
.c- Size
- 2946 bytes
- Lines
- 91
- 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
dc/dc_stat.hdmub/dmub_srv_stat.hdc_dmub_srv.h
Detected Declarations
function filesfunction dc_stat_get_dmub_dataout
Annotated Snippet
#include "dc/dc_stat.h"
#include "dmub/dmub_srv_stat.h"
#include "dc_dmub_srv.h"
/**
* DOC: DC STAT Interface
*
* These interfaces are called without acquiring DAL and DC locks.
* Hence, there is limitations on whese interfaces can access. Only
* variables exclusively defined for these interfaces can be modified.
*/
/**
* dc_stat_get_dmub_notification
*
* Calls dmub layer to retrieve dmub notification
*
* @dc: dc structure
* @notify: dmub notification structure
*
* Returns
* None
*/
void dc_stat_get_dmub_notification(const struct dc *dc, struct dmub_notification *notify)
{
/**
* This function is called without dal and dc locks, so
* we shall not modify any dc, dc_dmub_srv or dmub variables
* except variables exclusively accessed by this function
*/
struct dmub_srv *dmub = dc->ctx->dmub_srv->dmub;
enum dmub_status status;
status = dmub_srv_stat_get_notification(dmub, notify);
ASSERT(status == DMUB_STATUS_OK);
/* For HPD/HPD RX, convert dpia port index into link index */
if (notify->type == DMUB_NOTIFICATION_HPD ||
notify->type == DMUB_NOTIFICATION_HPD_IRQ ||
notify->type == DMUB_NOTIFICATION_AUX_REPLY ||
notify->type == DMUB_NOTIFICATION_DPIA_NOTIFICATION ||
notify->type == DMUB_NOTIFICATION_SET_CONFIG_REPLY) {
notify->link_index =
get_link_index_from_dpia_port_index(dc, notify->instance);
}
}
/**
* dc_stat_get_dmub_dataout
*
* Calls dmub layer to retrieve dmub gpint dataout
*
* @dc: dc structure
* @dataout: dmub gpint dataout
*
* Returns
* None
*/
void dc_stat_get_dmub_dataout(const struct dc *dc, uint32_t *dataout)
{
struct dmub_srv *dmub = dc->ctx->dmub_srv->dmub;
enum dmub_status status;
status = dmub_srv_get_gpint_dataout(dmub, dataout);
ASSERT(status == DMUB_STATUS_OK);
}
Annotation
- Immediate include surface: `dc/dc_stat.h`, `dmub/dmub_srv_stat.h`, `dc_dmub_srv.h`.
- Detected declarations: `function files`, `function dc_stat_get_dmub_dataout`.
- 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.