/* * Copyright 2012-15 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 * */ /** * DOC: overview * * Multiple Pipe/Plane Combiner (MPC) is a component in the hardware pipeline * that performs blending of multiple planes, using global and per-pixel alpha. * It also performs post-blending color correction operations according to the * hardware capabilities, such as color transformation matrix and gamma 1D and * 3D LUT. * * MPC receives output from all DPP pipes and combines them to multiple outputs * supporting "M MPC inputs -> N MPC outputs" flexible composition * architecture. It features: * * - Programmable blending structure to allow software controlled blending and * cascading; * - Programmable window location of each DPP in active region of display; * - Combining multiple DPP pipes in one active region when a single DPP pipe * cannot process very large surface; * - Combining multiple DPP from different SLS with blending; * - Stereo formats from single DPP in top-bottom or side-by-side modes; * - Stereo formats from 2 DPPs; * - Alpha blending of multiple layers from different DPP pipes; * - Programmable background color; */ #ifndef __DC_MPCC_H__ #define __DC_MPCC_H__ #include "dc_hw_types.h" #include "hw_shared.h" #include "transform.h" #define MAX_MPCC … #define MAX_OPP … #define MAX_DWB … enum mpc_output_csc_mode { … }; enum mpcc_blend_mode { … }; /** * enum mpcc_alpha_blend_mode - define the alpha blend mode regarding pixel * alpha and plane alpha values */ enum mpcc_alpha_blend_mode { … }; enum mpcc_movable_cm_location { … }; enum MCM_LUT_XABLE { … }; enum MCM_LUT_ID { … }; mcm_lut_params; /** * struct mpcc_blnd_cfg - MPCC blending configuration */ struct mpcc_blnd_cfg { … }; struct mpc_grph_gamut_adjustment { … }; struct mpcc_sm_cfg { … }; struct mpc_denorm_clamp { … }; struct mpc_dwb_flow_control { … }; /** * struct mpcc - MPCC connection and blending configuration for a single MPCC instance. * * This struct is used as a node in an MPC tree. */ struct mpcc { … }; /** * struct mpc_tree - MPC tree represents all MPCC connections for a pipe. * * */ struct mpc_tree { … }; struct mpc { … }; struct mpcc_state { … }; /** * struct mpc_funcs - funcs */ struct mpc_funcs { … }; #endif