60 lines · c
1// SPDX-License-Identifier: MIT2/*3 * Copyright (C) 2021 Advanced Micro Devices, Inc.4 *5 * Permission is hereby granted, free of charge, to any person obtaining a6 * copy of this software and associated documentation files (the "Software"),7 * to deal in the Software without restriction, including without limitation8 * the rights to use, copy, modify, merge, publish, distribute, sublicense,9 * and/or sell copies of the Software, and to permit persons to whom the10 * Software is furnished to do so, subject to the following conditions:11 *12 * The above copyright notice and this permission notice shall be included in13 * all copies or substantial portions of the Software.14 *15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL18 * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR19 * 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 OR21 * OTHER DEALINGS IN THE SOFTWARE.22 *23 * Authors: AMD24 *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##seg36#define CTX dmub37#define REGS dmub->regs38 39/* Registers. */40 41const 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_SR48 49#define DMUB_SF(reg, field) FD_MASK(reg, field),50 { DMUB_COMMON_FIELDS() },51#undef DMUB_SF52 53#define DMUB_SF(reg, field) FD_SHIFT(reg, field),54 { DMUB_COMMON_FIELDS() },55#undef DMUB_SF56};57 58/* Shared functions. */59 60