drivers/gpu/drm/amd/display/dc/inc/soc_and_ip_translator.h
Source file repositories/reference/linux-study-clean/drivers/gpu/drm/amd/display/dc/inc/soc_and_ip_translator.h
File Facts
- System
- Linux kernel
- Corpus path
drivers/gpu/drm/amd/display/dc/inc/soc_and_ip_translator.h- Extension
.h- Size
- 1343 bytes
- Lines
- 42
- 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.hdml_top_soc_parameter_types.h
Detected Declarations
struct utm_qos_modelstruct utm_qos_model_dchub_v2struct soc_and_ip_translator_funcsstruct soc_and_ip_translator
Annotated Snippet
struct soc_and_ip_translator_funcs {
void (*get_soc_bb)(
struct dml2_soc_bb *soc_bb,
const struct dc *dc,
const struct dml2_configuration_options *config);
void (*get_ip_caps)(struct dml2_ip_capabilities *dml_ip_caps);
/**
* get_utm_qos_model - Return the static UTM QoS model for this DCN
* generation. Caller provides storage for @qos_model and @dchub.
* @qos_model: output — populated with SoC bounding box and SOP table
* @dchub: output — populated with DCHUB client extension data
*/
void (*get_utm_qos_model)(
struct utm_qos_model *qos_model,
struct utm_qos_model_dchub_v2 *dchub);
};
struct soc_and_ip_translator {
const struct soc_and_ip_translator_funcs *translator_funcs;
};
struct soc_and_ip_translator *dc_create_soc_and_ip_translator(enum dce_version dc_version);
void dc_destroy_soc_and_ip_translator(struct soc_and_ip_translator **soc_and_ip_translator);
#endif // __SOC_AND_IP_TRANSLATOR_H__
Annotation
- Immediate include surface: `dc.h`, `dml_top_soc_parameter_types.h`.
- Detected declarations: `struct utm_qos_model`, `struct utm_qos_model_dchub_v2`, `struct soc_and_ip_translator_funcs`, `struct soc_and_ip_translator`.
- 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.