71 lines · c
1/*2 * Copyright 2012-20 Advanced Micro Devices, Inc.3 *4 * Permission is hereby granted, free of charge, to any person obtaining a5 * copy of this software and associated documentation files (the "Software"),6 * to deal in the Software without restriction, including without limitation7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,8 * and/or sell copies of the Software, and to permit persons to whom the9 * Software is furnished to do so, subject to the following conditions:10 *11 * The above copyright notice and this permission notice shall be included in12 * all copies or substantial portions of the Software.13 *14 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR15 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,16 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL17 * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR18 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,19 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR20 * OTHER DEALINGS IN THE SOFTWARE.21 *22 * Authors: AMD23 *24 */25 26#ifndef __DC_HUBP_DCN32_H__27#define __DC_HUBP_DCN32_H__28 29#include "dcn20/dcn20_hubp.h"30#include "dcn21/dcn21_hubp.h"31#include "dcn30/dcn30_hubp.h"32#include "dcn31/dcn31_hubp.h"33 34#define HUBP_MASK_SH_LIST_DCN32(mask_sh)\35 HUBP_MASK_SH_LIST_DCN31(mask_sh),\36 HUBP_SF(HUBP0_DCHUBP_MALL_CONFIG, USE_MALL_SEL, mask_sh),\37 HUBP_SF(HUBP0_DCHUBP_MALL_CONFIG, USE_MALL_FOR_CURSOR, mask_sh),\38 HUBP_SF(HUBP0_DCHUBP_VMPG_CONFIG, VMPG_SIZE, mask_sh),\39 HUBP_SF(HUBP0_DCHUBP_VMPG_CONFIG, PTE_BUFFER_MODE, mask_sh),\40 HUBP_SF(HUBP0_DCHUBP_VMPG_CONFIG, BIGK_FRAGMENT_SIZE, mask_sh),\41 HUBP_SF(HUBP0_DCHUBP_VMPG_CONFIG, FORCE_ONE_ROW_FOR_FRAME, mask_sh),\42 HUBP_SF(HUBPREQ0_UCLK_PSTATE_FORCE, DATA_UCLK_PSTATE_FORCE_EN, mask_sh),\43 HUBP_SF(HUBPREQ0_UCLK_PSTATE_FORCE, DATA_UCLK_PSTATE_FORCE_VALUE, mask_sh),\44 HUBP_SF(HUBPREQ0_UCLK_PSTATE_FORCE, CURSOR_UCLK_PSTATE_FORCE_EN, mask_sh),\45 HUBP_SF(HUBPREQ0_UCLK_PSTATE_FORCE, CURSOR_UCLK_PSTATE_FORCE_VALUE, mask_sh)46 47void hubp32_update_force_pstate_disallow(struct hubp *hubp, bool pstate_disallow);48 49void hubp32_update_force_cursor_pstate_disallow(struct hubp *hubp, bool pstate_disallow);50 51void hubp32_update_mall_sel(struct hubp *hubp, uint32_t mall_sel, bool c_cursor);52 53void hubp32_prepare_subvp_buffering(struct hubp *hubp, bool enable);54 55void hubp32_phantom_hubp_post_enable(struct hubp *hubp);56 57void hubp32_cursor_set_attributes(struct hubp *hubp,58 const struct dc_cursor_attributes *attr);59 60void hubp32_init(struct hubp *hubp);61 62bool hubp32_construct(63 struct dcn20_hubp *hubp2,64 struct dc_context *ctx,65 uint32_t inst,66 const struct dcn_hubp2_registers *hubp_regs,67 const struct dcn_hubp2_shift *hubp_shift,68 const struct dcn_hubp2_mask *hubp_mask);69 70#endif /* __DC_HUBP_DCN32_H__ */71