/* * 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 * */ #ifndef __DAL_HUBP_H__ #define __DAL_HUBP_H__ /** * DOC: overview * * Display Controller Hub (DCHUB) is the gateway between the Scalable Data Port * (SDP) and DCN. This component has multiple features, such as memory * arbitration, rotation, and cursor manipulation. * * There is one HUBP allocated per pipe, which fetches data and converts * different pixel formats (i.e. ARGB8888, NV12, etc) into linear, interleaved * and fixed-depth streams of pixel data. */ #include "mem_input.h" #include "cursor_reg_cache.h" #include "dml2/dml21/inc/dml_top_dchub_registers.h" #define OPP_ID_INVALID … #define MAX_TTU … enum cursor_pitch { … }; enum cursor_lines_per_chunk { … }; enum hubp_ind_block_size { … }; enum hubp_3dlut_fl_mode { … }; enum hubp_3dlut_fl_format { … }; enum hubp_3dlut_fl_addressing_mode { … }; enum hubp_3dlut_fl_width { … }; enum hubp_3dlut_fl_crossbar_bit_slice { … }; struct hubp { … }; struct surface_flip_registers { … }; struct hubp_funcs { … }; #endif