/* * 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 * */ #include "dcn31_optc.h" #include "dcn30/dcn30_optc.h" #include "reg_helper.h" #include "dc.h" #include "dcn_calc_math.h" #define REG(reg) … #define CTX … #undef FN #define FN(reg_name, field_name) … static void optc31_set_odm_combine(struct timing_generator *optc, int *opp_id, int opp_cnt, int segment_width, int last_segment_width) { … } /* * Enable CRTC - call ASIC Control Object to enable Timing generator. */ static bool optc31_enable_crtc(struct timing_generator *optc) { … } /* disable_crtc - call ASIC Control Object to disable Timing generator. */ static bool optc31_disable_crtc(struct timing_generator *optc) { … } bool optc31_immediate_disable_crtc(struct timing_generator *optc) { … } void optc31_set_drr( struct timing_generator *optc, const struct drr_params *params) { … } void optc3_init_odm(struct timing_generator *optc) { … } static struct timing_generator_funcs dcn31_tg_funcs = …; void dcn31_timing_generator_init(struct optc *optc1) { … }