drivers/gpu/drm/amd/display/dmub/src/dmub_dcn31.h
Source file repositories/reference/linux-study-clean/drivers/gpu/drm/amd/display/dmub/src/dmub_dcn31.h
File Facts
- System
- Linux kernel
- Corpus path
drivers/gpu/drm/amd/display/dmub/src/dmub_dcn31.h- Extension
.h- Size
- 9364 bytes
- Lines
- 259
- 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
dmub_dcn20.h
Detected Declarations
struct dmub_srvstruct dmub_srv_dcn31_reg_offsetstruct dmub_srv_dcn31_reg_shiftstruct dmub_srv_dcn31_reg_maskstruct dmub_srv_dcn31_regs
Annotated Snippet
struct dmub_srv_dcn31_reg_offset {
#define DMUB_SR(reg) uint32_t reg;
DMUB_DCN31_REGS()
DMCUB_INTERNAL_REGS()
#undef DMUB_SR
};
struct dmub_srv_dcn31_reg_shift {
#define DMUB_SF(reg, field) uint8_t reg##__##field;
DMUB_DCN31_FIELDS()
#undef DMUB_SF
};
struct dmub_srv_dcn31_reg_mask {
#define DMUB_SF(reg, field) uint32_t reg##__##field;
DMUB_DCN31_FIELDS()
#undef DMUB_SF
};
struct dmub_srv_dcn31_regs {
const struct dmub_srv_dcn31_reg_offset offset;
const struct dmub_srv_dcn31_reg_mask mask;
const struct dmub_srv_dcn31_reg_shift shift;
};
extern const struct dmub_srv_dcn31_regs dmub_srv_dcn31_regs;
/* Hardware functions. */
void dmub_dcn31_init(struct dmub_srv *dmub);
void dmub_dcn31_reset(struct dmub_srv *dmub);
void dmub_dcn31_reset_release(struct dmub_srv *dmub);
void dmub_dcn31_backdoor_load(struct dmub_srv *dmub,
const struct dmub_window *cw0,
const struct dmub_window *cw1);
void dmub_dcn31_setup_windows(struct dmub_srv *dmub,
const struct dmub_window *cw2,
const struct dmub_window *cw3,
const struct dmub_window *cw4,
const struct dmub_window *cw5,
const struct dmub_window *cw6,
const struct dmub_window *region6);
void dmub_dcn31_setup_mailbox(struct dmub_srv *dmub,
const struct dmub_region *inbox1);
uint32_t dmub_dcn31_get_inbox1_wptr(struct dmub_srv *dmub);
uint32_t dmub_dcn31_get_inbox1_rptr(struct dmub_srv *dmub);
void dmub_dcn31_set_inbox1_wptr(struct dmub_srv *dmub, uint32_t wptr_offset);
void dmub_dcn31_setup_out_mailbox(struct dmub_srv *dmub,
const struct dmub_region *outbox1);
uint32_t dmub_dcn31_get_outbox1_wptr(struct dmub_srv *dmub);
void dmub_dcn31_set_outbox1_rptr(struct dmub_srv *dmub, uint32_t rptr_offset);
bool dmub_dcn31_is_hw_init(struct dmub_srv *dmub);
bool dmub_dcn31_is_supported(struct dmub_srv *dmub);
bool dmub_dcn31_is_psrsu_supported(struct dmub_srv *dmub);
void dmub_dcn31_set_gpint(struct dmub_srv *dmub,
union dmub_gpint_data_register reg);
bool dmub_dcn31_is_gpint_acked(struct dmub_srv *dmub,
union dmub_gpint_data_register reg);
uint32_t dmub_dcn31_get_gpint_response(struct dmub_srv *dmub);
uint32_t dmub_dcn31_get_gpint_dataout(struct dmub_srv *dmub);
void dmub_dcn31_enable_dmub_boot_options(struct dmub_srv *dmub, const struct dmub_srv_hw_params *params);
void dmub_dcn31_skip_dmub_panel_power_sequence(struct dmub_srv *dmub, bool skip);
union dmub_fw_boot_status dmub_dcn31_get_fw_boot_status(struct dmub_srv *dmub);
union dmub_fw_boot_options dmub_dcn31_get_fw_boot_option(struct dmub_srv *dmub);
void dmub_dcn31_setup_outbox0(struct dmub_srv *dmub,
const struct dmub_region *outbox0);
Annotation
- Immediate include surface: `dmub_dcn20.h`.
- Detected declarations: `struct dmub_srv`, `struct dmub_srv_dcn31_reg_offset`, `struct dmub_srv_dcn31_reg_shift`, `struct dmub_srv_dcn31_reg_mask`, `struct dmub_srv_dcn31_regs`.
- 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.