1 1.1 riastrad /* $NetBSD: atomfirmwareid.h,v 1.2 2021/12/18 23:45:08 riastradh Exp $ */ 2 1.1 riastrad 3 1.1 riastrad /****************************************************************************\ 4 1.1 riastrad * 5 1.1 riastrad * File Name atomfirmwareid.h 6 1.1 riastrad * 7 1.1 riastrad * Description ATOM BIOS command/data table ID definition header file 8 1.1 riastrad * 9 1.1 riastrad * Copyright 2016 Advanced Micro Devices, Inc. 10 1.1 riastrad * 11 1.1 riastrad * Permission is hereby granted, free of charge, to any person obtaining a copy of this software 12 1.1 riastrad * and associated documentation files (the "Software"), to deal in the Software without restriction, 13 1.1 riastrad * including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, 14 1.1 riastrad * and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, 15 1.1 riastrad * subject to the following conditions: 16 1.1 riastrad * 17 1.1 riastrad * The above copyright notice and this permission notice shall be included in all copies or substantial 18 1.1 riastrad * portions of the Software. 19 1.1 riastrad * 20 1.1 riastrad * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 21 1.1 riastrad * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 22 1.1 riastrad * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL 23 1.1 riastrad * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR 24 1.1 riastrad * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, 25 1.1 riastrad * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR 26 1.1 riastrad * OTHER DEALINGS IN THE SOFTWARE. 27 1.1 riastrad * 28 1.1 riastrad \****************************************************************************/ 29 1.1 riastrad 30 1.1 riastrad #ifndef _ATOMFIRMWAREID_H_ 31 1.1 riastrad #define _ATOMFIRMWAREID_H_ 32 1.1 riastrad 33 1.1 riastrad enum atom_master_data_table_id 34 1.1 riastrad { 35 1.1 riastrad VBIOS_DATA_TBL_ID__UTILITY_PIPELINE, 36 1.1 riastrad VBIOS_DATA_TBL_ID__MULTIMEDIA_INF, 37 1.1 riastrad VBIOS_DATA_TBL_ID__FIRMWARE_INF, 38 1.1 riastrad VBIOS_DATA_TBL_ID__LCD_INF, 39 1.1 riastrad VBIOS_DATA_TBL_ID__SMU_INF, 40 1.1 riastrad VBIOS_DATA_TBL_ID__VRAM_USAGE_BY_FIRMWARE, 41 1.1 riastrad VBIOS_DATA_TBL_ID__GPIO_PIN_LUT, 42 1.1 riastrad VBIOS_DATA_TBL_ID__GFX_INF, 43 1.1 riastrad VBIOS_DATA_TBL_ID__POWER_PLAY_INF, 44 1.1 riastrad VBIOS_DATA_TBL_ID__DISPLAY_OBJECT_INF, 45 1.1 riastrad VBIOS_DATA_TBL_ID__INDIRECT_IO_ACCESS, 46 1.1 riastrad VBIOS_DATA_TBL_ID__UMC_INF, 47 1.1 riastrad VBIOS_DATA_TBL_ID__DCE_INF, 48 1.1 riastrad VBIOS_DATA_TBL_ID__VRAM_INF, 49 1.1 riastrad VBIOS_DATA_TBL_ID__INTEGRATED_SYS_INF, 50 1.1 riastrad VBIOS_DATA_TBL_ID__ASIC_PROFILING_INF, 51 1.1 riastrad VBIOS_DATA_TBL_ID__VOLTAGE_OBJ_INF, 52 1.1 riastrad 53 1.1 riastrad VBIOS_DATA_TBL_ID__UNDEFINED, 54 1.1 riastrad }; 55 1.1 riastrad 56 1.1 riastrad enum atom_master_command_table_id 57 1.1 riastrad { 58 1.1 riastrad VBIOS_CMD_TBL_ID__ASIC_INIT, 59 1.1 riastrad VBIOS_CMD_TBL_ID__DIGX_ENCODER_CONTROL, 60 1.1 riastrad VBIOS_CMD_TBL_ID__SET_ENGINE_CLOCK, 61 1.1 riastrad VBIOS_CMD_TBL_ID__SET_MEMORY_CLOCK, 62 1.1 riastrad VBIOS_CMD_TBL_ID__SET_PIXEL_CLOCK, 63 1.1 riastrad VBIOS_CMD_TBL_ID__ENABLE_DISP_POWER_GATING, 64 1.1 riastrad VBIOS_CMD_TBL_ID__BLANK_CRTC, 65 1.1 riastrad VBIOS_CMD_TBL_ID__ENABLE_CRTC, 66 1.1 riastrad VBIOS_CMD_TBL_ID__GET_SMU_CLOCK_INFO, 67 1.1 riastrad VBIOS_CMD_TBL_ID__SELECT_CRTC_SOURCE, 68 1.1 riastrad VBIOS_CMD_TBL_ID__SET_DCE_CLOCK, 69 1.1 riastrad VBIOS_CMD_TBL_ID__GET_MEMORY_CLOCK, 70 1.1 riastrad VBIOS_CMD_TBL_ID__GET_ENGINE_CLOCK, 71 1.1 riastrad VBIOS_CMD_TBL_ID__SET_CRTC_USING_DTD_TIMING, 72 1.1 riastrad VBIOS_CMD_TBL_ID__EXTENAL_ENCODER_CONTROL, 73 1.1 riastrad VBIOS_CMD_TBL_ID__PROCESS_I2C_CHANNEL_TRANSACTION, 74 1.1 riastrad VBIOS_CMD_TBL_ID__COMPUTE_GPU_CLOCK_PARAM, 75 1.1 riastrad VBIOS_CMD_TBL_ID__DYNAMIC_MEMORY_SETTINGS, 76 1.1 riastrad VBIOS_CMD_TBL_ID__MEMORY_TRAINING, 77 1.1 riastrad VBIOS_CMD_TBL_ID__SET_VOLTAGE, 78 1.1 riastrad VBIOS_CMD_TBL_ID__DIG1_TRANSMITTER_CONTROL, 79 1.1 riastrad VBIOS_CMD_TBL_ID__PROCESS_AUX_CHANNEL_TRANSACTION, 80 1.1 riastrad VBIOS_CMD_TBL_ID__GET_VOLTAGE_INF, 81 1.1 riastrad 82 1.1 riastrad VBIOS_CMD_TBL_ID__UNDEFINED, 83 1.1 riastrad }; 84 1.1 riastrad 85 1.1 riastrad 86 1.1 riastrad 87 1.1 riastrad #endif /* _ATOMFIRMWAREID_H_ */ 88 1.1 riastrad /* ### EOF ### */ 89