/* * Copyright 2015-2017 Advanced Micro Devices, Inc. * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), * to deal in the Software without restriction, including without limitation * the rights to use, copy, modify, merge, publish, distribute, sublicense, * and/or sell copies of the Software, and to permit persons to whom the * Software is furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR * OTHER DEALINGS IN THE SOFTWARE. * * Authors: AMD * */ /** * Bandwidth and Watermark calculations interface. * (Refer to "DCEx_mode_support.xlsm" from Perforce.) */ #ifndef __DCE_CALCS_H__ #define __DCE_CALCS_H__ #include "bw_fixed.h" struct pipe_ctx; struct dc; struct dc_state; struct dce_bw_output; enum bw_calcs_version { … }; /******************************************************************************* * There are three types of input into Calculations: * 1. per-DCE static values - these are "hardcoded" properties of the DCEIP * 2. board-level values - these are generally coming from VBIOS parser * 3. mode/configuration values - depending Mode, Scaling number of Displays etc. ******************************************************************************/ enum bw_defines { … }; struct bw_calcs_dceip { … }; struct bw_calcs_vbios { … }; /******************************************************************************* * Temporary data structure(s). ******************************************************************************/ #define maximum_number_of_surfaces … /*Units : MHz, us */ struct bw_calcs_data { … }; /** * Initialize structures with data which will NOT change at runtime. */ void bw_calcs_init( struct bw_calcs_dceip *bw_dceip, struct bw_calcs_vbios *bw_vbios, struct hw_asic_id asic_id); /** * Return: * true - Display(s) configuration supported. * In this case 'calcs_output' contains data for HW programming * false - Display(s) configuration not supported (not enough bandwidth). */ bool bw_calcs( struct dc_context *ctx, const struct bw_calcs_dceip *dceip, const struct bw_calcs_vbios *vbios, const struct pipe_ctx *pipe, int pipe_count, struct dce_bw_output *calcs_output); #endif /* __BANDWIDTH_CALCS_H__ */