xref: /linux/drivers/gpu/drm/amd/display/dmub/src/dmub_dcn303.c (revision 0ea5c948cb64bab5bc7a5516774eb8536f05aa0d)
1 // SPDX-License-Identifier: MIT
2 /*
3  * Copyright (C) 2021 Advanced Micro Devices, Inc.
4  *
5  * Permission is hereby granted, free of charge, to any person obtaining a
6  * copy of this software and associated documentation files (the "Software"),
7  * to deal in the Software without restriction, including without limitation
8  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
9  * and/or sell copies of the Software, and to permit persons to whom the
10  * Software is furnished to do so, subject to the following conditions:
11  *
12  * The above copyright notice and this permission notice shall be included in
13  * all copies or substantial portions of the Software.
14  *
15  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
18  * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
19  * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
20  * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
21  * OTHER DEALINGS IN THE SOFTWARE.
22  *
23  * Authors: AMD
24  *
25  */
26 
27 #include "../dmub_srv.h"
28 #include "dmub_reg.h"
29 #include "dmub_dcn303.h"
30 
31 #include "sienna_cichlid_ip_offset.h"
32 #include "dcn/dcn_3_0_3_offset.h"
33 #include "dcn/dcn_3_0_3_sh_mask.h"
34 
35 #define BASE_INNER(seg) DCN_BASE__INST0_SEG##seg
36 #define CTX dmub
37 #define REGS dmub->regs
38 
39 /* Registers. */
40 
41 const struct dmub_srv_common_regs dmub_srv_dcn303_regs = {
42 #define DMUB_SR(reg) REG_OFFSET(reg),
43 	{
44 		DMUB_COMMON_REGS()
45 		DMCUB_INTERNAL_REGS()
46 	},
47 #undef DMUB_SR
48 
49 #define DMUB_SF(reg, field) FD_MASK(reg, field),
50 	{ DMUB_COMMON_FIELDS() },
51 #undef DMUB_SF
52 
53 #define DMUB_SF(reg, field) FD_SHIFT(reg, field),
54 	{ DMUB_COMMON_FIELDS() },
55 #undef DMUB_SF
56 };
57 
58 /* Shared functions. */
59 
60