mirror of
https://github.com/torvalds/linux.git
synced 2026-05-03 14:02:43 -04:00
DMCU-B (Display Micro-Controller Unit B) is a display microcontroller used for shared display functionality with BIOS and for advanced power saving display features. Add case to support DCN3.6 as well. V2: adjust copyright license text Acked-by: Harry Wentland <harry.wentland@amd.com> Reviewed-by: Martin Leung <martin.leung@amd.com> Signed-off-by: Taimur Hassan <Syed.Hassan@amd.com> Signed-off-by: Wayne Lin <Wayne.Lin@amd.com> Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
14 lines
283 B
C
14 lines
283 B
C
/* SPDX-License-Identifier: MIT */
|
|
/* Copyright 2025 Advanced Micro Devices, Inc. */
|
|
|
|
#ifndef _DMUB_DCN36_H_
|
|
#define _DMUB_DCN36_H_
|
|
|
|
#include "dmub_dcn35.h"
|
|
|
|
struct dmub_srv;
|
|
|
|
void dmub_srv_dcn36_regs_init(struct dmub_srv *dmub, struct dc_context *ctx);
|
|
|
|
#endif /* _DMUB_DCN36_H_ */
|