/* * Copyright 2018 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. * */ #include "smumgr.h" #include "vega20_inc.h" #include "soc15_common.h" #include "vega20_smumgr.h" #include "vega20_ppsmc.h" #include "smu11_driver_if.h" #include "ppatomctrl.h" #include "pp_debug.h" #include "smu_ucode_xfer_vi.h" #include "smu7_smumgr.h" #include "vega20_hwmgr.h" #include "smu_v11_0_i2c.h" /* MP Apertures */ #define MP0_Public … #define MP0_SRAM … #define MP1_Public … #define MP1_SRAM … /* address block */ #define smnMP1_FIRMWARE_FLAGS … #define smnMP0_FW_INTF … #define smnMP1_PUB_CTRL … bool vega20_is_smc_ram_running(struct pp_hwmgr *hwmgr) { … } /* * Check if SMC has responded to previous message. * * @param smumgr the address of the powerplay hardware manager. * @return TRUE SMC has responded, FALSE otherwise. */ static uint32_t vega20_wait_for_response(struct pp_hwmgr *hwmgr) { … } /* * Send a message to the SMC, and do not wait for its response. * @param smumgr the address of the powerplay hardware manager. * @param msg the message to send. * @return Always return 0. */ static int vega20_send_msg_to_smc_without_waiting(struct pp_hwmgr *hwmgr, uint16_t msg) { … } /* * Send a message to the SMC, and wait for its response. * @param hwmgr the address of the powerplay hardware manager. * @param msg the message to send. * @return Always return 0. */ static int vega20_send_msg_to_smc(struct pp_hwmgr *hwmgr, uint16_t msg) { … } /* * Send a message to the SMC with parameter * @param hwmgr: the address of the powerplay hardware manager. * @param msg: the message to send. * @param parameter: the parameter to send * @return Always return 0. */ static int vega20_send_msg_to_smc_with_parameter(struct pp_hwmgr *hwmgr, uint16_t msg, uint32_t parameter) { … } static uint32_t vega20_get_argument(struct pp_hwmgr *hwmgr) { … } /* * Copy table from SMC into driver FB * @param hwmgr the address of the HW manager * @param table_id the driver's table ID to copy from */ static int vega20_copy_table_from_smc(struct pp_hwmgr *hwmgr, uint8_t *table, int16_t table_id) { … } /* * Copy table from Driver FB into SMC * @param hwmgr the address of the HW manager * @param table_id the table to copy from */ static int vega20_copy_table_to_smc(struct pp_hwmgr *hwmgr, uint8_t *table, int16_t table_id) { … } int vega20_set_activity_monitor_coeff(struct pp_hwmgr *hwmgr, uint8_t *table, uint16_t workload_type) { … } int vega20_get_activity_monitor_coeff(struct pp_hwmgr *hwmgr, uint8_t *table, uint16_t workload_type) { … } int vega20_enable_smc_features(struct pp_hwmgr *hwmgr, bool enable, uint64_t feature_mask) { … } int vega20_get_enabled_smc_features(struct pp_hwmgr *hwmgr, uint64_t *features_enabled) { … } static int vega20_set_tools_address(struct pp_hwmgr *hwmgr) { … } int vega20_set_pptable_driver_address(struct pp_hwmgr *hwmgr) { … } static int vega20_smu_init(struct pp_hwmgr *hwmgr) { … } static int vega20_smu_fini(struct pp_hwmgr *hwmgr) { … } static int vega20_start_smu(struct pp_hwmgr *hwmgr) { … } static bool vega20_is_dpm_running(struct pp_hwmgr *hwmgr) { … } static int vega20_smc_table_manager(struct pp_hwmgr *hwmgr, uint8_t *table, uint16_t table_id, bool rw) { … } const struct pp_smumgr_func vega20_smu_funcs = …;