/* * 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_BIOS_PARSER_TYPES_H__ #define __DAL_BIOS_PARSER_TYPES_H__ #include "dm_services.h" #include "include/signal_types.h" #include "include/grph_object_ctrl_defs.h" #include "include/gpio_types.h" #include "include/link_service_types.h" /* TODO: include signal_types.h and remove this enum */ enum as_signal_type { … }; enum bp_result { … }; enum bp_encoder_control_action { … }; enum bp_transmitter_control_action { … }; enum bp_external_encoder_control_action { … }; enum bp_pipe_control_action { … }; enum bp_lvtma_control_action { … }; struct bp_encoder_control { … }; struct bp_external_encoder_control { … }; struct bp_crtc_source_select { … }; struct bp_transmitter_control { … }; struct bp_hw_crtc_timing_parameters { … }; struct bp_adjust_pixel_clock_parameters { … }; struct bp_pixel_clock_parameters { … }; enum bp_dce_clock_type { … }; /* DCE Clock Parameters structure for SetDceClock Exec command table */ struct bp_set_dce_clock_parameters { … }; struct spread_spectrum_flags { … }; struct bp_spread_spectrum_parameters { … }; struct bp_disp_connector_caps_info { … }; struct bp_encoder_cap_info { … }; struct bp_soc_bb_info { … }; struct bp_connector_speed_cap_info { … }; #endif /*__DAL_BIOS_PARSER_TYPES_H__ */