1 /****************************************************************************\ 2 * 3 * File Name atomfirmware.h 4 * Project This is an interface header file between atombios and OS GPU drivers for SoC15 products 5 * 6 * Description header file of general definitions for OS nd pre-OS video drivers 7 * 8 * Copyright 2014 Advanced Micro Devices, Inc. 9 * 10 * Permission is hereby granted, free of charge, to any person obtaining a copy of this software 11 * and associated documentation files (the "Software"), to deal in the Software without restriction, 12 * including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, 13 * and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, 14 * subject to the following conditions: 15 * 16 * The above copyright notice and this permission notice shall be included in all copies or substantial 17 * portions of the Software. 18 * 19 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 20 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 21 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL 22 * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR 23 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, 24 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR 25 * OTHER DEALINGS IN THE SOFTWARE. 26 * 27 \****************************************************************************/ 28 29 /*IMPORTANT NOTES 30 * If a change in VBIOS/Driver/Tool's interface is only needed for SoC15 and forward products, then the change is only needed in this atomfirmware.h header file. 31 * If a change in VBIOS/Driver/Tool's interface is only needed for pre-SoC15 products, then the change is only needed in atombios.h header file. 32 * If a change is needed for both pre and post SoC15 products, then the change has to be made separately and might be differently in both atomfirmware.h and atombios.h. 33 */ 34 35 #ifndef _ATOMFIRMWARE_H_ 36 #define _ATOMFIRMWARE_H_ 37 38 enum atom_bios_header_version_def{ 39 ATOM_MAJOR_VERSION =0x0003, 40 ATOM_MINOR_VERSION =0x0003, 41 }; 42 43 #ifdef _H2INC 44 #ifndef uint32_t 45 typedef unsigned long uint32_t; 46 #endif 47 48 #ifndef uint16_t 49 typedef unsigned short uint16_t; 50 #endif 51 52 #ifndef uint8_t 53 typedef unsigned char uint8_t; 54 #endif 55 #endif 56 57 enum atom_crtc_def{ 58 ATOM_CRTC1 =0, 59 ATOM_CRTC2 =1, 60 ATOM_CRTC3 =2, 61 ATOM_CRTC4 =3, 62 ATOM_CRTC5 =4, 63 ATOM_CRTC6 =5, 64 ATOM_CRTC_INVALID =0xff, 65 }; 66 67 enum atom_ppll_def{ 68 ATOM_PPLL0 =2, 69 ATOM_GCK_DFS =8, 70 ATOM_FCH_CLK =9, 71 ATOM_DP_DTO =11, 72 ATOM_COMBOPHY_PLL0 =20, 73 ATOM_COMBOPHY_PLL1 =21, 74 ATOM_COMBOPHY_PLL2 =22, 75 ATOM_COMBOPHY_PLL3 =23, 76 ATOM_COMBOPHY_PLL4 =24, 77 ATOM_COMBOPHY_PLL5 =25, 78 ATOM_PPLL_INVALID =0xff, 79 }; 80 81 // define ASIC internal encoder id ( bit vector ), used for CRTC_SourceSel 82 enum atom_dig_def{ 83 ASIC_INT_DIG1_ENCODER_ID =0x03, 84 ASIC_INT_DIG2_ENCODER_ID =0x09, 85 ASIC_INT_DIG3_ENCODER_ID =0x0a, 86 ASIC_INT_DIG4_ENCODER_ID =0x0b, 87 ASIC_INT_DIG5_ENCODER_ID =0x0c, 88 ASIC_INT_DIG6_ENCODER_ID =0x0d, 89 ASIC_INT_DIG7_ENCODER_ID =0x0e, 90 }; 91 92 //ucEncoderMode 93 enum atom_encode_mode_def 94 { 95 ATOM_ENCODER_MODE_DP =0, 96 ATOM_ENCODER_MODE_DP_SST =0, 97 ATOM_ENCODER_MODE_LVDS =1, 98 ATOM_ENCODER_MODE_DVI =2, 99 ATOM_ENCODER_MODE_HDMI =3, 100 ATOM_ENCODER_MODE_DP_AUDIO =5, 101 ATOM_ENCODER_MODE_DP_MST =5, 102 ATOM_ENCODER_MODE_CRT =15, 103 ATOM_ENCODER_MODE_DVO =16, 104 }; 105 106 enum atom_encoder_refclk_src_def{ 107 ENCODER_REFCLK_SRC_P1PLL =0, 108 ENCODER_REFCLK_SRC_P2PLL =1, 109 ENCODER_REFCLK_SRC_P3PLL =2, 110 ENCODER_REFCLK_SRC_EXTCLK =3, 111 ENCODER_REFCLK_SRC_INVALID =0xff, 112 }; 113 114 enum atom_scaler_def{ 115 ATOM_SCALER_DISABLE =0, /*scaler bypass mode, auto-center & no replication*/ 116 ATOM_SCALER_CENTER =1, //For Fudo, it's bypass and auto-center & auto replication 117 ATOM_SCALER_EXPANSION =2, /*scaler expansion by 2 tap alpha blending mode*/ 118 }; 119 120 enum atom_operation_def{ 121 ATOM_DISABLE = 0, 122 ATOM_ENABLE = 1, 123 ATOM_INIT = 7, 124 ATOM_GET_STATUS = 8, 125 }; 126 127 enum atom_embedded_display_op_def{ 128 ATOM_LCD_BL_OFF = 2, 129 ATOM_LCD_BL_OM = 3, 130 ATOM_LCD_BL_BRIGHTNESS_CONTROL = 4, 131 ATOM_LCD_SELFTEST_START = 5, 132 ATOM_LCD_SELFTEST_STOP = 6, 133 }; 134 135 enum atom_spread_spectrum_mode{ 136 ATOM_SS_CENTER_OR_DOWN_MODE_MASK = 0x01, 137 ATOM_SS_DOWN_SPREAD_MODE = 0x00, 138 ATOM_SS_CENTRE_SPREAD_MODE = 0x01, 139 ATOM_INT_OR_EXT_SS_MASK = 0x02, 140 ATOM_INTERNAL_SS_MASK = 0x00, 141 ATOM_EXTERNAL_SS_MASK = 0x02, 142 }; 143 144 /* define panel bit per color */ 145 enum atom_panel_bit_per_color{ 146 PANEL_BPC_UNDEFINE =0x00, 147 PANEL_6BIT_PER_COLOR =0x01, 148 PANEL_8BIT_PER_COLOR =0x02, 149 PANEL_10BIT_PER_COLOR =0x03, 150 PANEL_12BIT_PER_COLOR =0x04, 151 PANEL_16BIT_PER_COLOR =0x05, 152 }; 153 154 //ucVoltageType 155 enum atom_voltage_type 156 { 157 VOLTAGE_TYPE_VDDC = 1, 158 VOLTAGE_TYPE_MVDDC = 2, 159 VOLTAGE_TYPE_MVDDQ = 3, 160 VOLTAGE_TYPE_VDDCI = 4, 161 VOLTAGE_TYPE_VDDGFX = 5, 162 VOLTAGE_TYPE_PCC = 6, 163 VOLTAGE_TYPE_MVPP = 7, 164 VOLTAGE_TYPE_LEDDPM = 8, 165 VOLTAGE_TYPE_PCC_MVDD = 9, 166 VOLTAGE_TYPE_PCIE_VDDC = 10, 167 VOLTAGE_TYPE_PCIE_VDDR = 11, 168 VOLTAGE_TYPE_GENERIC_I2C_1 = 0x11, 169 VOLTAGE_TYPE_GENERIC_I2C_2 = 0x12, 170 VOLTAGE_TYPE_GENERIC_I2C_3 = 0x13, 171 VOLTAGE_TYPE_GENERIC_I2C_4 = 0x14, 172 VOLTAGE_TYPE_GENERIC_I2C_5 = 0x15, 173 VOLTAGE_TYPE_GENERIC_I2C_6 = 0x16, 174 VOLTAGE_TYPE_GENERIC_I2C_7 = 0x17, 175 VOLTAGE_TYPE_GENERIC_I2C_8 = 0x18, 176 VOLTAGE_TYPE_GENERIC_I2C_9 = 0x19, 177 VOLTAGE_TYPE_GENERIC_I2C_10 = 0x1A, 178 }; 179 180 enum atom_dgpu_vram_type { 181 ATOM_DGPU_VRAM_TYPE_GDDR5 = 0x50, 182 ATOM_DGPU_VRAM_TYPE_HBM2 = 0x60, 183 ATOM_DGPU_VRAM_TYPE_HBM2E = 0x61, 184 ATOM_DGPU_VRAM_TYPE_GDDR6 = 0x70, 185 }; 186 187 enum atom_dp_vs_preemph_def{ 188 DP_VS_LEVEL0_PREEMPH_LEVEL0 = 0x00, 189 DP_VS_LEVEL1_PREEMPH_LEVEL0 = 0x01, 190 DP_VS_LEVEL2_PREEMPH_LEVEL0 = 0x02, 191 DP_VS_LEVEL3_PREEMPH_LEVEL0 = 0x03, 192 DP_VS_LEVEL0_PREEMPH_LEVEL1 = 0x08, 193 DP_VS_LEVEL1_PREEMPH_LEVEL1 = 0x09, 194 DP_VS_LEVEL2_PREEMPH_LEVEL1 = 0x0a, 195 DP_VS_LEVEL0_PREEMPH_LEVEL2 = 0x10, 196 DP_VS_LEVEL1_PREEMPH_LEVEL2 = 0x11, 197 DP_VS_LEVEL0_PREEMPH_LEVEL3 = 0x18, 198 }; 199 200 201 /* 202 enum atom_string_def{ 203 asic_bus_type_pcie_string = "PCI_EXPRESS", 204 atom_fire_gl_string = "FGL", 205 atom_bios_string = "ATOM" 206 }; 207 */ 208 209 #pragma pack(1) /* BIOS data must use byte aligment*/ 210 211 enum atombios_image_offset{ 212 OFFSET_TO_ATOM_ROM_HEADER_POINTER =0x00000048, 213 OFFSET_TO_ATOM_ROM_IMAGE_SIZE =0x00000002, 214 OFFSET_TO_ATOMBIOS_ASIC_BUS_MEM_TYPE =0x94, 215 MAXSIZE_OF_ATOMBIOS_ASIC_BUS_MEM_TYPE =20, /*including the terminator 0x0!*/ 216 OFFSET_TO_GET_ATOMBIOS_NUMBER_OF_STRINGS =0x2f, 217 OFFSET_TO_GET_ATOMBIOS_STRING_START =0x6e, 218 }; 219 220 /**************************************************************************** 221 * Common header for all tables (Data table, Command function). 222 * Every table pointed in _ATOM_MASTER_DATA_TABLE has this common header. 223 * And the pointer actually points to this header. 224 ****************************************************************************/ 225 226 struct atom_common_table_header 227 { 228 uint16_t structuresize; 229 uint8_t format_revision; //mainly used for a hw function, when the parser is not backward compatible 230 uint8_t content_revision; //change it when a data table has a structure change, or a hw function has a input/output parameter change 231 }; 232 233 /**************************************************************************** 234 * Structure stores the ROM header. 235 ****************************************************************************/ 236 struct atom_rom_header_v2_2 237 { 238 struct atom_common_table_header table_header; 239 uint8_t atom_bios_string[4]; //enum atom_string_def atom_bios_string; //Signature to distinguish between Atombios and non-atombios, 240 uint16_t bios_segment_address; 241 uint16_t protectedmodeoffset; 242 uint16_t configfilenameoffset; 243 uint16_t crc_block_offset; 244 uint16_t vbios_bootupmessageoffset; 245 uint16_t int10_offset; 246 uint16_t pcibusdevinitcode; 247 uint16_t iobaseaddress; 248 uint16_t subsystem_vendor_id; 249 uint16_t subsystem_id; 250 uint16_t pci_info_offset; 251 uint16_t masterhwfunction_offset; //Offest for SW to get all command function offsets, Don't change the position 252 uint16_t masterdatatable_offset; //Offest for SW to get all data table offsets, Don't change the position 253 uint16_t reserved; 254 uint32_t pspdirtableoffset; 255 }; 256 257 /*==============================hw function portion======================================================================*/ 258 259 260 /**************************************************************************** 261 * Structures used in Command.mtb, each function name is not given here since those function could change from time to time 262 * The real functionality of each function is associated with the parameter structure version when defined 263 * For all internal cmd function definitions, please reference to atomstruct.h 264 ****************************************************************************/ 265 struct atom_master_list_of_command_functions_v2_1{ 266 uint16_t asic_init; //Function 267 uint16_t cmd_function1; //used as an internal one 268 uint16_t cmd_function2; //used as an internal one 269 uint16_t cmd_function3; //used as an internal one 270 uint16_t digxencodercontrol; //Function 271 uint16_t cmd_function5; //used as an internal one 272 uint16_t cmd_function6; //used as an internal one 273 uint16_t cmd_function7; //used as an internal one 274 uint16_t cmd_function8; //used as an internal one 275 uint16_t cmd_function9; //used as an internal one 276 uint16_t setengineclock; //Function 277 uint16_t setmemoryclock; //Function 278 uint16_t setpixelclock; //Function 279 uint16_t enabledisppowergating; //Function 280 uint16_t cmd_function14; //used as an internal one 281 uint16_t cmd_function15; //used as an internal one 282 uint16_t cmd_function16; //used as an internal one 283 uint16_t cmd_function17; //used as an internal one 284 uint16_t cmd_function18; //used as an internal one 285 uint16_t cmd_function19; //used as an internal one 286 uint16_t cmd_function20; //used as an internal one 287 uint16_t cmd_function21; //used as an internal one 288 uint16_t cmd_function22; //used as an internal one 289 uint16_t cmd_function23; //used as an internal one 290 uint16_t cmd_function24; //used as an internal one 291 uint16_t cmd_function25; //used as an internal one 292 uint16_t cmd_function26; //used as an internal one 293 uint16_t cmd_function27; //used as an internal one 294 uint16_t cmd_function28; //used as an internal one 295 uint16_t cmd_function29; //used as an internal one 296 uint16_t cmd_function30; //used as an internal one 297 uint16_t cmd_function31; //used as an internal one 298 uint16_t cmd_function32; //used as an internal one 299 uint16_t cmd_function33; //used as an internal one 300 uint16_t blankcrtc; //Function 301 uint16_t enablecrtc; //Function 302 uint16_t cmd_function36; //used as an internal one 303 uint16_t cmd_function37; //used as an internal one 304 uint16_t cmd_function38; //used as an internal one 305 uint16_t cmd_function39; //used as an internal one 306 uint16_t cmd_function40; //used as an internal one 307 uint16_t getsmuclockinfo; //Function 308 uint16_t selectcrtc_source; //Function 309 uint16_t cmd_function43; //used as an internal one 310 uint16_t cmd_function44; //used as an internal one 311 uint16_t cmd_function45; //used as an internal one 312 uint16_t setdceclock; //Function 313 uint16_t getmemoryclock; //Function 314 uint16_t getengineclock; //Function 315 uint16_t setcrtc_usingdtdtiming; //Function 316 uint16_t externalencodercontrol; //Function 317 uint16_t cmd_function51; //used as an internal one 318 uint16_t cmd_function52; //used as an internal one 319 uint16_t cmd_function53; //used as an internal one 320 uint16_t processi2cchanneltransaction;//Function 321 uint16_t cmd_function55; //used as an internal one 322 uint16_t cmd_function56; //used as an internal one 323 uint16_t cmd_function57; //used as an internal one 324 uint16_t cmd_function58; //used as an internal one 325 uint16_t cmd_function59; //used as an internal one 326 uint16_t computegpuclockparam; //Function 327 uint16_t cmd_function61; //used as an internal one 328 uint16_t cmd_function62; //used as an internal one 329 uint16_t dynamicmemorysettings; //Function function 330 uint16_t memorytraining; //Function function 331 uint16_t cmd_function65; //used as an internal one 332 uint16_t cmd_function66; //used as an internal one 333 uint16_t setvoltage; //Function 334 uint16_t cmd_function68; //used as an internal one 335 uint16_t readefusevalue; //Function 336 uint16_t cmd_function70; //used as an internal one 337 uint16_t cmd_function71; //used as an internal one 338 uint16_t cmd_function72; //used as an internal one 339 uint16_t cmd_function73; //used as an internal one 340 uint16_t cmd_function74; //used as an internal one 341 uint16_t cmd_function75; //used as an internal one 342 uint16_t dig1transmittercontrol; //Function 343 uint16_t cmd_function77; //used as an internal one 344 uint16_t processauxchanneltransaction;//Function 345 uint16_t cmd_function79; //used as an internal one 346 uint16_t getvoltageinfo; //Function 347 }; 348 349 struct atom_master_command_function_v2_1 350 { 351 struct atom_common_table_header table_header; 352 struct atom_master_list_of_command_functions_v2_1 listofcmdfunctions; 353 }; 354 355 /**************************************************************************** 356 * Structures used in every command function 357 ****************************************************************************/ 358 struct atom_function_attribute 359 { 360 uint16_t ws_in_bytes:8; //[7:0]=Size of workspace in Bytes (in multiple of a dword), 361 uint16_t ps_in_bytes:7; //[14:8]=Size of parameter space in Bytes (multiple of a dword), 362 uint16_t updated_by_util:1; //[15]=flag to indicate the function is updated by util 363 }; 364 365 366 /**************************************************************************** 367 * Common header for all hw functions. 368 * Every function pointed by _master_list_of_hw_function has this common header. 369 * And the pointer actually points to this header. 370 ****************************************************************************/ 371 struct atom_rom_hw_function_header 372 { 373 struct atom_common_table_header func_header; 374 struct atom_function_attribute func_attrib; 375 }; 376 377 378 /*==============================sw data table portion======================================================================*/ 379 /**************************************************************************** 380 * Structures used in data.mtb, each data table name is not given here since those data table could change from time to time 381 * The real name of each table is given when its data structure version is defined 382 ****************************************************************************/ 383 struct atom_master_list_of_data_tables_v2_1{ 384 uint16_t utilitypipeline; /* Offest for the utility to get parser info,Don't change this position!*/ 385 uint16_t multimedia_info; 386 uint16_t smc_dpm_info; 387 uint16_t sw_datatable3; 388 uint16_t firmwareinfo; /* Shared by various SW components */ 389 uint16_t sw_datatable5; 390 uint16_t lcd_info; /* Shared by various SW components */ 391 uint16_t sw_datatable7; 392 uint16_t smu_info; 393 uint16_t sw_datatable9; 394 uint16_t sw_datatable10; 395 uint16_t vram_usagebyfirmware; /* Shared by various SW components */ 396 uint16_t gpio_pin_lut; /* Shared by various SW components */ 397 uint16_t sw_datatable13; 398 uint16_t gfx_info; 399 uint16_t powerplayinfo; /* Shared by various SW components */ 400 uint16_t sw_datatable16; 401 uint16_t sw_datatable17; 402 uint16_t sw_datatable18; 403 uint16_t sw_datatable19; 404 uint16_t sw_datatable20; 405 uint16_t sw_datatable21; 406 uint16_t displayobjectinfo; /* Shared by various SW components */ 407 uint16_t indirectioaccess; /* used as an internal one */ 408 uint16_t umc_info; /* Shared by various SW components */ 409 uint16_t sw_datatable25; 410 uint16_t sw_datatable26; 411 uint16_t dce_info; /* Shared by various SW components */ 412 uint16_t vram_info; /* Shared by various SW components */ 413 uint16_t sw_datatable29; 414 uint16_t integratedsysteminfo; /* Shared by various SW components */ 415 uint16_t asic_profiling_info; /* Shared by various SW components */ 416 uint16_t voltageobject_info; /* shared by various SW components */ 417 uint16_t sw_datatable33; 418 uint16_t sw_datatable34; 419 }; 420 421 422 struct atom_master_data_table_v2_1 423 { 424 struct atom_common_table_header table_header; 425 struct atom_master_list_of_data_tables_v2_1 listOfdatatables; 426 }; 427 428 429 struct atom_dtd_format 430 { 431 uint16_t pixclk; 432 uint16_t h_active; 433 uint16_t h_blanking_time; 434 uint16_t v_active; 435 uint16_t v_blanking_time; 436 uint16_t h_sync_offset; 437 uint16_t h_sync_width; 438 uint16_t v_sync_offset; 439 uint16_t v_syncwidth; 440 uint16_t reserved; 441 uint16_t reserved0; 442 uint8_t h_border; 443 uint8_t v_border; 444 uint16_t miscinfo; 445 uint8_t atom_mode_id; 446 uint8_t refreshrate; 447 }; 448 449 /* atom_dtd_format.modemiscinfo defintion */ 450 enum atom_dtd_format_modemiscinfo{ 451 ATOM_HSYNC_POLARITY = 0x0002, 452 ATOM_VSYNC_POLARITY = 0x0004, 453 ATOM_H_REPLICATIONBY2 = 0x0010, 454 ATOM_V_REPLICATIONBY2 = 0x0020, 455 ATOM_INTERLACE = 0x0080, 456 ATOM_COMPOSITESYNC = 0x0040, 457 }; 458 459 460 /* utilitypipeline 461 * when format_revision==1 && content_revision==1, then this an info table for atomworks to use during debug session, no structure is associated with it. 462 * the location of it can't change 463 */ 464 465 466 /* 467 *************************************************************************** 468 Data Table firmwareinfo structure 469 *************************************************************************** 470 */ 471 472 struct atom_firmware_info_v3_1 473 { 474 struct atom_common_table_header table_header; 475 uint32_t firmware_revision; 476 uint32_t bootup_sclk_in10khz; 477 uint32_t bootup_mclk_in10khz; 478 uint32_t firmware_capability; // enum atombios_firmware_capability 479 uint32_t main_call_parser_entry; /* direct address of main parser call in VBIOS binary. */ 480 uint32_t bios_scratch_reg_startaddr; // 1st bios scratch register dword address 481 uint16_t bootup_vddc_mv; 482 uint16_t bootup_vddci_mv; 483 uint16_t bootup_mvddc_mv; 484 uint16_t bootup_vddgfx_mv; 485 uint8_t mem_module_id; 486 uint8_t coolingsolution_id; /*0: Air cooling; 1: Liquid cooling ... */ 487 uint8_t reserved1[2]; 488 uint32_t mc_baseaddr_high; 489 uint32_t mc_baseaddr_low; 490 uint32_t reserved2[6]; 491 }; 492 493 /* Total 32bit cap indication */ 494 enum atombios_firmware_capability 495 { 496 ATOM_FIRMWARE_CAP_FIRMWARE_POSTED = 0x00000001, 497 ATOM_FIRMWARE_CAP_GPU_VIRTUALIZATION = 0x00000002, 498 ATOM_FIRMWARE_CAP_WMI_SUPPORT = 0x00000040, 499 ATOM_FIRMWARE_CAP_HWEMU_ENABLE = 0x00000080, 500 ATOM_FIRMWARE_CAP_HWEMU_UMC_CFG = 0x00000100, 501 ATOM_FIRMWARE_CAP_SRAM_ECC = 0x00000200, 502 ATOM_FIRMWARE_CAP_ENABLE_2STAGE_BIST_TRAINING = 0x00000400, 503 ATOM_FIRMWARE_CAP_ENABLE_2ND_USB20PORT = 0x0008000, 504 }; 505 506 enum atom_cooling_solution_id{ 507 AIR_COOLING = 0x00, 508 LIQUID_COOLING = 0x01 509 }; 510 511 struct atom_firmware_info_v3_2 { 512 struct atom_common_table_header table_header; 513 uint32_t firmware_revision; 514 uint32_t bootup_sclk_in10khz; 515 uint32_t bootup_mclk_in10khz; 516 uint32_t firmware_capability; // enum atombios_firmware_capability 517 uint32_t main_call_parser_entry; /* direct address of main parser call in VBIOS binary. */ 518 uint32_t bios_scratch_reg_startaddr; // 1st bios scratch register dword address 519 uint16_t bootup_vddc_mv; 520 uint16_t bootup_vddci_mv; 521 uint16_t bootup_mvddc_mv; 522 uint16_t bootup_vddgfx_mv; 523 uint8_t mem_module_id; 524 uint8_t coolingsolution_id; /*0: Air cooling; 1: Liquid cooling ... */ 525 uint8_t reserved1[2]; 526 uint32_t mc_baseaddr_high; 527 uint32_t mc_baseaddr_low; 528 uint8_t board_i2c_feature_id; // enum of atom_board_i2c_feature_id_def 529 uint8_t board_i2c_feature_gpio_id; // i2c id find in gpio_lut data table gpio_id 530 uint8_t board_i2c_feature_slave_addr; 531 uint8_t reserved3; 532 uint16_t bootup_mvddq_mv; 533 uint16_t bootup_mvpp_mv; 534 uint32_t zfbstartaddrin16mb; 535 uint32_t reserved2[3]; 536 }; 537 538 struct atom_firmware_info_v3_3 539 { 540 struct atom_common_table_header table_header; 541 uint32_t firmware_revision; 542 uint32_t bootup_sclk_in10khz; 543 uint32_t bootup_mclk_in10khz; 544 uint32_t firmware_capability; // enum atombios_firmware_capability 545 uint32_t main_call_parser_entry; /* direct address of main parser call in VBIOS binary. */ 546 uint32_t bios_scratch_reg_startaddr; // 1st bios scratch register dword address 547 uint16_t bootup_vddc_mv; 548 uint16_t bootup_vddci_mv; 549 uint16_t bootup_mvddc_mv; 550 uint16_t bootup_vddgfx_mv; 551 uint8_t mem_module_id; 552 uint8_t coolingsolution_id; /*0: Air cooling; 1: Liquid cooling ... */ 553 uint8_t reserved1[2]; 554 uint32_t mc_baseaddr_high; 555 uint32_t mc_baseaddr_low; 556 uint8_t board_i2c_feature_id; // enum of atom_board_i2c_feature_id_def 557 uint8_t board_i2c_feature_gpio_id; // i2c id find in gpio_lut data table gpio_id 558 uint8_t board_i2c_feature_slave_addr; 559 uint8_t reserved3; 560 uint16_t bootup_mvddq_mv; 561 uint16_t bootup_mvpp_mv; 562 uint32_t zfbstartaddrin16mb; 563 uint32_t pplib_pptable_id; // if pplib_pptable_id!=0, pplib get powerplay table inside driver instead of from VBIOS 564 uint32_t reserved2[2]; 565 }; 566 567 struct atom_firmware_info_v3_4 { 568 struct atom_common_table_header table_header; 569 uint32_t firmware_revision; 570 uint32_t bootup_sclk_in10khz; 571 uint32_t bootup_mclk_in10khz; 572 uint32_t firmware_capability; // enum atombios_firmware_capability 573 uint32_t main_call_parser_entry; /* direct address of main parser call in VBIOS binary. */ 574 uint32_t bios_scratch_reg_startaddr; // 1st bios scratch register dword address 575 uint16_t bootup_vddc_mv; 576 uint16_t bootup_vddci_mv; 577 uint16_t bootup_mvddc_mv; 578 uint16_t bootup_vddgfx_mv; 579 uint8_t mem_module_id; 580 uint8_t coolingsolution_id; /*0: Air cooling; 1: Liquid cooling ... */ 581 uint8_t reserved1[2]; 582 uint32_t mc_baseaddr_high; 583 uint32_t mc_baseaddr_low; 584 uint8_t board_i2c_feature_id; // enum of atom_board_i2c_feature_id_def 585 uint8_t board_i2c_feature_gpio_id; // i2c id find in gpio_lut data table gpio_id 586 uint8_t board_i2c_feature_slave_addr; 587 uint8_t reserved3; 588 uint16_t bootup_mvddq_mv; 589 uint16_t bootup_mvpp_mv; 590 uint32_t zfbstartaddrin16mb; 591 uint32_t pplib_pptable_id; // if pplib_pptable_id!=0, pplib get powerplay table inside driver instead of from VBIOS 592 uint32_t mvdd_ratio; // mvdd_raio = (real mvdd in power rail)*1000/(mvdd_output_from_svi2) 593 uint16_t hw_bootup_vddgfx_mv; // hw default vddgfx voltage level decide by board strap 594 uint16_t hw_bootup_vddc_mv; // hw default vddc voltage level decide by board strap 595 uint16_t hw_bootup_mvddc_mv; // hw default mvddc voltage level decide by board strap 596 uint16_t hw_bootup_vddci_mv; // hw default vddci voltage level decide by board strap 597 uint32_t maco_pwrlimit_mw; // bomaco mode power limit in unit of m-watt 598 uint32_t usb_pwrlimit_mw; // power limit when USB is enable in unit of m-watt 599 uint32_t fw_reserved_size_in_kb; // VBIOS reserved extra fw size in unit of kb. 600 uint32_t pspbl_init_done_reg_addr; 601 uint32_t pspbl_init_done_value; 602 uint32_t pspbl_init_done_check_timeout; // time out in unit of us when polling pspbl init done 603 uint32_t reserved[2]; 604 }; 605 606 /* 607 *************************************************************************** 608 Data Table lcd_info structure 609 *************************************************************************** 610 */ 611 612 struct lcd_info_v2_1 613 { 614 struct atom_common_table_header table_header; 615 struct atom_dtd_format lcd_timing; 616 uint16_t backlight_pwm; 617 uint16_t special_handle_cap; 618 uint16_t panel_misc; 619 uint16_t lvds_max_slink_pclk; 620 uint16_t lvds_ss_percentage; 621 uint16_t lvds_ss_rate_10hz; 622 uint8_t pwr_on_digon_to_de; /*all pwr sequence numbers below are in uint of 4ms*/ 623 uint8_t pwr_on_de_to_vary_bl; 624 uint8_t pwr_down_vary_bloff_to_de; 625 uint8_t pwr_down_de_to_digoff; 626 uint8_t pwr_off_delay; 627 uint8_t pwr_on_vary_bl_to_blon; 628 uint8_t pwr_down_bloff_to_vary_bloff; 629 uint8_t panel_bpc; 630 uint8_t dpcd_edp_config_cap; 631 uint8_t dpcd_max_link_rate; 632 uint8_t dpcd_max_lane_count; 633 uint8_t dpcd_max_downspread; 634 uint8_t min_allowed_bl_level; 635 uint8_t max_allowed_bl_level; 636 uint8_t bootup_bl_level; 637 uint8_t dplvdsrxid; 638 uint32_t reserved1[8]; 639 }; 640 641 /* lcd_info_v2_1.panel_misc defintion */ 642 enum atom_lcd_info_panel_misc{ 643 ATOM_PANEL_MISC_FPDI =0x0002, 644 }; 645 646 //uceDPToLVDSRxId 647 enum atom_lcd_info_dptolvds_rx_id 648 { 649 eDP_TO_LVDS_RX_DISABLE = 0x00, // no eDP->LVDS translator chip 650 eDP_TO_LVDS_COMMON_ID = 0x01, // common eDP->LVDS translator chip without AMD SW init 651 eDP_TO_LVDS_REALTEK_ID = 0x02, // Realtek tansaltor which require AMD SW init 652 }; 653 654 655 /* 656 *************************************************************************** 657 Data Table gpio_pin_lut structure 658 *************************************************************************** 659 */ 660 661 struct atom_gpio_pin_assignment 662 { 663 uint32_t data_a_reg_index; 664 uint8_t gpio_bitshift; 665 uint8_t gpio_mask_bitshift; 666 uint8_t gpio_id; 667 uint8_t reserved; 668 }; 669 670 /* atom_gpio_pin_assignment.gpio_id definition */ 671 enum atom_gpio_pin_assignment_gpio_id { 672 I2C_HW_LANE_MUX =0x0f, /* only valid when bit7=1 */ 673 I2C_HW_ENGINE_ID_MASK =0x70, /* only valid when bit7=1 */ 674 I2C_HW_CAP =0x80, /*only when the I2C_HW_CAP is set, the pin ID is assigned to an I2C pin pair, otherwise, it's an generic GPIO pin */ 675 676 /* gpio_id pre-define id for multiple usage */ 677 /* GPIO use to control PCIE_VDDC in certain SLT board */ 678 PCIE_VDDC_CONTROL_GPIO_PINID = 56, 679 /* if PP_AC_DC_SWITCH_GPIO_PINID in Gpio_Pin_LutTable, AC/DC swithing feature is enable */ 680 PP_AC_DC_SWITCH_GPIO_PINID = 60, 681 /* VDDC_REGULATOR_VRHOT_GPIO_PINID in Gpio_Pin_LutTable, VRHot feature is enable */ 682 VDDC_VRHOT_GPIO_PINID = 61, 683 /*if VDDC_PCC_GPIO_PINID in GPIO_LUTable, Peak Current Control feature is enabled */ 684 VDDC_PCC_GPIO_PINID = 62, 685 /* Only used on certain SLT/PA board to allow utility to cut Efuse. */ 686 EFUSE_CUT_ENABLE_GPIO_PINID = 63, 687 /* ucGPIO=DRAM_SELF_REFRESH_GPIO_PIND uses for memory self refresh (ucGPIO=0, DRAM self-refresh; ucGPIO= */ 688 DRAM_SELF_REFRESH_GPIO_PINID = 64, 689 /* Thermal interrupt output->system thermal chip GPIO pin */ 690 THERMAL_INT_OUTPUT_GPIO_PINID =65, 691 }; 692 693 694 struct atom_gpio_pin_lut_v2_1 695 { 696 struct atom_common_table_header table_header; 697 /*the real number of this included in the structure is calcualted by using the (whole structure size - the header size)/size of atom_gpio_pin_lut */ 698 struct atom_gpio_pin_assignment gpio_pin[8]; 699 }; 700 701 702 /* 703 *************************************************************************** 704 Data Table vram_usagebyfirmware structure 705 *************************************************************************** 706 */ 707 708 struct vram_usagebyfirmware_v2_1 709 { 710 struct atom_common_table_header table_header; 711 uint32_t start_address_in_kb; 712 uint16_t used_by_firmware_in_kb; 713 uint16_t used_by_driver_in_kb; 714 }; 715 716 717 /* 718 *************************************************************************** 719 Data Table displayobjectinfo structure 720 *************************************************************************** 721 */ 722 723 enum atom_object_record_type_id 724 { 725 ATOM_I2C_RECORD_TYPE =1, 726 ATOM_HPD_INT_RECORD_TYPE =2, 727 ATOM_OBJECT_GPIO_CNTL_RECORD_TYPE =9, 728 ATOM_CONNECTOR_HPDPIN_LUT_RECORD_TYPE =16, 729 ATOM_CONNECTOR_AUXDDC_LUT_RECORD_TYPE =17, 730 ATOM_ENCODER_CAP_RECORD_TYPE=20, 731 ATOM_BRACKET_LAYOUT_RECORD_TYPE=21, 732 ATOM_CONNECTOR_FORCED_TMDS_CAP_RECORD_TYPE=22, 733 ATOM_DISP_CONNECTOR_CAPS_RECORD_TYPE=23, 734 ATOM_RECORD_END_TYPE =0xFF, 735 }; 736 737 struct atom_common_record_header 738 { 739 uint8_t record_type; //An emun to indicate the record type 740 uint8_t record_size; //The size of the whole record in byte 741 }; 742 743 struct atom_i2c_record 744 { 745 struct atom_common_record_header record_header; //record_type = ATOM_I2C_RECORD_TYPE 746 uint8_t i2c_id; 747 uint8_t i2c_slave_addr; //The slave address, it's 0 when the record is attached to connector for DDC 748 }; 749 750 struct atom_hpd_int_record 751 { 752 struct atom_common_record_header record_header; //record_type = ATOM_HPD_INT_RECORD_TYPE 753 uint8_t pin_id; //Corresponding block in GPIO_PIN_INFO table gives the pin info 754 uint8_t plugin_pin_state; 755 }; 756 757 // Bit maps for ATOM_ENCODER_CAP_RECORD.usEncoderCap 758 enum atom_encoder_caps_def 759 { 760 ATOM_ENCODER_CAP_RECORD_HBR2 =0x01, // DP1.2 HBR2 is supported by HW encoder, it is retired in NI. the real meaning from SI is MST_EN 761 ATOM_ENCODER_CAP_RECORD_MST_EN =0x01, // from SI, this bit means DP MST is enable or not. 762 ATOM_ENCODER_CAP_RECORD_HBR2_EN =0x02, // DP1.2 HBR2 setting is qualified and HBR2 can be enabled 763 ATOM_ENCODER_CAP_RECORD_HDMI6Gbps_EN =0x04, // HDMI2.0 6Gbps enable or not. 764 ATOM_ENCODER_CAP_RECORD_HBR3_EN =0x08, // DP1.3 HBR3 is supported by board. 765 ATOM_ENCODER_CAP_RECORD_USB_C_TYPE =0x100, // the DP connector is a USB-C type. 766 }; 767 768 struct atom_encoder_caps_record 769 { 770 struct atom_common_record_header record_header; //record_type = ATOM_ENCODER_CAP_RECORD_TYPE 771 uint32_t encodercaps; 772 }; 773 774 enum atom_connector_caps_def 775 { 776 ATOM_CONNECTOR_CAP_INTERNAL_DISPLAY = 0x01, //a cap bit to indicate that this non-embedded display connector is an internal display 777 ATOM_CONNECTOR_CAP_INTERNAL_DISPLAY_BL = 0x02, //a cap bit to indicate that this internal display requires BL control from GPU, refers to lcd_info for BL PWM freq 778 }; 779 780 struct atom_disp_connector_caps_record 781 { 782 struct atom_common_record_header record_header; 783 uint32_t connectcaps; 784 }; 785 786 //The following generic object gpio pin control record type will replace JTAG_RECORD/FPGA_CONTROL_RECORD/DVI_EXT_INPUT_RECORD above gradually 787 struct atom_gpio_pin_control_pair 788 { 789 uint8_t gpio_id; // GPIO_ID, find the corresponding ID in GPIO_LUT table 790 uint8_t gpio_pinstate; // Pin state showing how to set-up the pin 791 }; 792 793 struct atom_object_gpio_cntl_record 794 { 795 struct atom_common_record_header record_header; 796 uint8_t flag; // Future expnadibility 797 uint8_t number_of_pins; // Number of GPIO pins used to control the object 798 struct atom_gpio_pin_control_pair gpio[1]; // the real gpio pin pair determined by number of pins ucNumberOfPins 799 }; 800 801 //Definitions for GPIO pin state 802 enum atom_gpio_pin_control_pinstate_def 803 { 804 GPIO_PIN_TYPE_INPUT = 0x00, 805 GPIO_PIN_TYPE_OUTPUT = 0x10, 806 GPIO_PIN_TYPE_HW_CONTROL = 0x20, 807 808 //For GPIO_PIN_TYPE_OUTPUT the following is defined 809 GPIO_PIN_OUTPUT_STATE_MASK = 0x01, 810 GPIO_PIN_OUTPUT_STATE_SHIFT = 0, 811 GPIO_PIN_STATE_ACTIVE_LOW = 0x0, 812 GPIO_PIN_STATE_ACTIVE_HIGH = 0x1, 813 }; 814 815 // Indexes to GPIO array in GLSync record 816 // GLSync record is for Frame Lock/Gen Lock feature. 817 enum atom_glsync_record_gpio_index_def 818 { 819 ATOM_GPIO_INDEX_GLSYNC_REFCLK = 0, 820 ATOM_GPIO_INDEX_GLSYNC_HSYNC = 1, 821 ATOM_GPIO_INDEX_GLSYNC_VSYNC = 2, 822 ATOM_GPIO_INDEX_GLSYNC_SWAP_REQ = 3, 823 ATOM_GPIO_INDEX_GLSYNC_SWAP_GNT = 4, 824 ATOM_GPIO_INDEX_GLSYNC_INTERRUPT = 5, 825 ATOM_GPIO_INDEX_GLSYNC_V_RESET = 6, 826 ATOM_GPIO_INDEX_GLSYNC_SWAP_CNTL = 7, 827 ATOM_GPIO_INDEX_GLSYNC_SWAP_SEL = 8, 828 ATOM_GPIO_INDEX_GLSYNC_MAX = 9, 829 }; 830 831 832 struct atom_connector_hpdpin_lut_record //record for ATOM_CONNECTOR_HPDPIN_LUT_RECORD_TYPE 833 { 834 struct atom_common_record_header record_header; 835 uint8_t hpd_pin_map[8]; 836 }; 837 838 struct atom_connector_auxddc_lut_record //record for ATOM_CONNECTOR_AUXDDC_LUT_RECORD_TYPE 839 { 840 struct atom_common_record_header record_header; 841 uint8_t aux_ddc_map[8]; 842 }; 843 844 struct atom_connector_forced_tmds_cap_record 845 { 846 struct atom_common_record_header record_header; 847 // override TMDS capability on this connector when it operate in TMDS mode. usMaxTmdsClkRate = max TMDS Clock in Mhz/2.5 848 uint8_t maxtmdsclkrate_in2_5mhz; 849 uint8_t reserved; 850 }; 851 852 struct atom_connector_layout_info 853 { 854 uint16_t connectorobjid; 855 uint8_t connector_type; 856 uint8_t position; 857 }; 858 859 // define ATOM_CONNECTOR_LAYOUT_INFO.ucConnectorType to describe the display connector size 860 enum atom_connector_layout_info_connector_type_def 861 { 862 CONNECTOR_TYPE_DVI_D = 1, 863 864 CONNECTOR_TYPE_HDMI = 4, 865 CONNECTOR_TYPE_DISPLAY_PORT = 5, 866 CONNECTOR_TYPE_MINI_DISPLAY_PORT = 6, 867 }; 868 869 struct atom_bracket_layout_record 870 { 871 struct atom_common_record_header record_header; 872 uint8_t bracketlen; 873 uint8_t bracketwidth; 874 uint8_t conn_num; 875 uint8_t reserved; 876 struct atom_connector_layout_info conn_info[1]; 877 }; 878 879 enum atom_display_device_tag_def{ 880 ATOM_DISPLAY_LCD1_SUPPORT = 0x0002, //an embedded display is either an LVDS or eDP signal type of display 881 ATOM_DISPLAY_DFP1_SUPPORT = 0x0008, 882 ATOM_DISPLAY_DFP2_SUPPORT = 0x0080, 883 ATOM_DISPLAY_DFP3_SUPPORT = 0x0200, 884 ATOM_DISPLAY_DFP4_SUPPORT = 0x0400, 885 ATOM_DISPLAY_DFP5_SUPPORT = 0x0800, 886 ATOM_DISPLAY_DFP6_SUPPORT = 0x0040, 887 ATOM_DISPLAY_DFPx_SUPPORT = 0x0ec8, 888 }; 889 890 struct atom_display_object_path_v2 891 { 892 uint16_t display_objid; //Connector Object ID or Misc Object ID 893 uint16_t disp_recordoffset; 894 uint16_t encoderobjid; //first encoder closer to the connector, could be either an external or intenal encoder 895 uint16_t extencoderobjid; //2nd encoder after the first encoder, from the connector point of view; 896 uint16_t encoder_recordoffset; 897 uint16_t extencoder_recordoffset; 898 uint16_t device_tag; //a supported device vector, each display path starts with this.the paths are enumerated in the way of priority, a path appears first 899 uint8_t priority_id; 900 uint8_t reserved; 901 }; 902 903 struct display_object_info_table_v1_4 904 { 905 struct atom_common_table_header table_header; 906 uint16_t supporteddevices; 907 uint8_t number_of_path; 908 uint8_t reserved; 909 struct atom_display_object_path_v2 display_path[8]; //the real number of this included in the structure is calculated by using the (whole structure size - the header size- number_of_path)/size of atom_display_object_path 910 }; 911 912 913 /* 914 *************************************************************************** 915 Data Table dce_info structure 916 *************************************************************************** 917 */ 918 struct atom_display_controller_info_v4_1 919 { 920 struct atom_common_table_header table_header; 921 uint32_t display_caps; 922 uint32_t bootup_dispclk_10khz; 923 uint16_t dce_refclk_10khz; 924 uint16_t i2c_engine_refclk_10khz; 925 uint16_t dvi_ss_percentage; // in unit of 0.001% 926 uint16_t dvi_ss_rate_10hz; 927 uint16_t hdmi_ss_percentage; // in unit of 0.001% 928 uint16_t hdmi_ss_rate_10hz; 929 uint16_t dp_ss_percentage; // in unit of 0.001% 930 uint16_t dp_ss_rate_10hz; 931 uint8_t dvi_ss_mode; // enum of atom_spread_spectrum_mode 932 uint8_t hdmi_ss_mode; // enum of atom_spread_spectrum_mode 933 uint8_t dp_ss_mode; // enum of atom_spread_spectrum_mode 934 uint8_t ss_reserved; 935 uint8_t hardcode_mode_num; // a hardcode mode number defined in StandardVESA_TimingTable when a CRT or DFP EDID is not available 936 uint8_t reserved1[3]; 937 uint16_t dpphy_refclk_10khz; 938 uint16_t reserved2; 939 uint8_t dceip_min_ver; 940 uint8_t dceip_max_ver; 941 uint8_t max_disp_pipe_num; 942 uint8_t max_vbios_active_disp_pipe_num; 943 uint8_t max_ppll_num; 944 uint8_t max_disp_phy_num; 945 uint8_t max_aux_pairs; 946 uint8_t remotedisplayconfig; 947 uint8_t reserved3[8]; 948 }; 949 950 struct atom_display_controller_info_v4_2 951 { 952 struct atom_common_table_header table_header; 953 uint32_t display_caps; 954 uint32_t bootup_dispclk_10khz; 955 uint16_t dce_refclk_10khz; 956 uint16_t i2c_engine_refclk_10khz; 957 uint16_t dvi_ss_percentage; // in unit of 0.001% 958 uint16_t dvi_ss_rate_10hz; 959 uint16_t hdmi_ss_percentage; // in unit of 0.001% 960 uint16_t hdmi_ss_rate_10hz; 961 uint16_t dp_ss_percentage; // in unit of 0.001% 962 uint16_t dp_ss_rate_10hz; 963 uint8_t dvi_ss_mode; // enum of atom_spread_spectrum_mode 964 uint8_t hdmi_ss_mode; // enum of atom_spread_spectrum_mode 965 uint8_t dp_ss_mode; // enum of atom_spread_spectrum_mode 966 uint8_t ss_reserved; 967 uint8_t dfp_hardcode_mode_num; // DFP hardcode mode number defined in StandardVESA_TimingTable when EDID is not available 968 uint8_t dfp_hardcode_refreshrate;// DFP hardcode mode refreshrate defined in StandardVESA_TimingTable when EDID is not available 969 uint8_t vga_hardcode_mode_num; // VGA hardcode mode number defined in StandardVESA_TimingTable when EDID is not avablable 970 uint8_t vga_hardcode_refreshrate;// VGA hardcode mode number defined in StandardVESA_TimingTable when EDID is not avablable 971 uint16_t dpphy_refclk_10khz; 972 uint16_t reserved2; 973 uint8_t dcnip_min_ver; 974 uint8_t dcnip_max_ver; 975 uint8_t max_disp_pipe_num; 976 uint8_t max_vbios_active_disp_pipe_num; 977 uint8_t max_ppll_num; 978 uint8_t max_disp_phy_num; 979 uint8_t max_aux_pairs; 980 uint8_t remotedisplayconfig; 981 uint8_t reserved3[8]; 982 }; 983 984 struct atom_display_controller_info_v4_3 985 { 986 struct atom_common_table_header table_header; 987 uint32_t display_caps; 988 uint32_t bootup_dispclk_10khz; 989 uint16_t dce_refclk_10khz; 990 uint16_t i2c_engine_refclk_10khz; 991 uint16_t dvi_ss_percentage; // in unit of 0.001% 992 uint16_t dvi_ss_rate_10hz; 993 uint16_t hdmi_ss_percentage; // in unit of 0.001% 994 uint16_t hdmi_ss_rate_10hz; 995 uint16_t dp_ss_percentage; // in unit of 0.001% 996 uint16_t dp_ss_rate_10hz; 997 uint8_t dvi_ss_mode; // enum of atom_spread_spectrum_mode 998 uint8_t hdmi_ss_mode; // enum of atom_spread_spectrum_mode 999 uint8_t dp_ss_mode; // enum of atom_spread_spectrum_mode 1000 uint8_t ss_reserved; 1001 uint8_t dfp_hardcode_mode_num; // DFP hardcode mode number defined in StandardVESA_TimingTable when EDID is not available 1002 uint8_t dfp_hardcode_refreshrate;// DFP hardcode mode refreshrate defined in StandardVESA_TimingTable when EDID is not available 1003 uint8_t vga_hardcode_mode_num; // VGA hardcode mode number defined in StandardVESA_TimingTable when EDID is not avablable 1004 uint8_t vga_hardcode_refreshrate;// VGA hardcode mode number defined in StandardVESA_TimingTable when EDID is not avablable 1005 uint16_t dpphy_refclk_10khz; 1006 uint16_t reserved2; 1007 uint8_t dcnip_min_ver; 1008 uint8_t dcnip_max_ver; 1009 uint8_t max_disp_pipe_num; 1010 uint8_t max_vbios_active_disp_pipe_num; 1011 uint8_t max_ppll_num; 1012 uint8_t max_disp_phy_num; 1013 uint8_t max_aux_pairs; 1014 uint8_t remotedisplayconfig; 1015 uint8_t reserved3[8]; 1016 }; 1017 1018 struct atom_display_controller_info_v4_4 { 1019 struct atom_common_table_header table_header; 1020 uint32_t display_caps; 1021 uint32_t bootup_dispclk_10khz; 1022 uint16_t dce_refclk_10khz; 1023 uint16_t i2c_engine_refclk_10khz; 1024 uint16_t dvi_ss_percentage; // in unit of 0.001% 1025 uint16_t dvi_ss_rate_10hz; 1026 uint16_t hdmi_ss_percentage; // in unit of 0.001% 1027 uint16_t hdmi_ss_rate_10hz; 1028 uint16_t dp_ss_percentage; // in unit of 0.001% 1029 uint16_t dp_ss_rate_10hz; 1030 uint8_t dvi_ss_mode; // enum of atom_spread_spectrum_mode 1031 uint8_t hdmi_ss_mode; // enum of atom_spread_spectrum_mode 1032 uint8_t dp_ss_mode; // enum of atom_spread_spectrum_mode 1033 uint8_t ss_reserved; 1034 uint8_t dfp_hardcode_mode_num; // DFP hardcode mode number defined in StandardVESA_TimingTable when EDID is not available 1035 uint8_t dfp_hardcode_refreshrate;// DFP hardcode mode refreshrate defined in StandardVESA_TimingTable when EDID is not available 1036 uint8_t vga_hardcode_mode_num; // VGA hardcode mode number defined in StandardVESA_TimingTable when EDID is not avablable 1037 uint8_t vga_hardcode_refreshrate;// VGA hardcode mode number defined in StandardVESA_TimingTable when EDID is not avablable 1038 uint16_t dpphy_refclk_10khz; 1039 uint16_t hw_chip_id; 1040 uint8_t dcnip_min_ver; 1041 uint8_t dcnip_max_ver; 1042 uint8_t max_disp_pipe_num; 1043 uint8_t max_vbios_active_disp_pipum; 1044 uint8_t max_ppll_num; 1045 uint8_t max_disp_phy_num; 1046 uint8_t max_aux_pairs; 1047 uint8_t remotedisplayconfig; 1048 uint32_t dispclk_pll_vco_freq; 1049 uint32_t dp_ref_clk_freq; 1050 uint32_t max_mclk_chg_lat; // Worst case blackout duration for a memory clock frequency (p-state) change, units of 100s of ns (0.1 us) 1051 uint32_t max_sr_exit_lat; // Worst case memory self refresh exit time, units of 100ns of ns (0.1us) 1052 uint32_t max_sr_enter_exit_lat; // Worst case memory self refresh entry followed by immediate exit time, units of 100ns of ns (0.1us) 1053 uint16_t dc_golden_table_offset; // point of struct of atom_dc_golden_table_vxx 1054 uint16_t dc_golden_table_ver; 1055 uint32_t reserved3[3]; 1056 }; 1057 1058 struct atom_dc_golden_table_v1 1059 { 1060 uint32_t aux_dphy_rx_control0_val; 1061 uint32_t aux_dphy_tx_control_val; 1062 uint32_t aux_dphy_rx_control1_val; 1063 uint32_t dc_gpio_aux_ctrl_0_val; 1064 uint32_t dc_gpio_aux_ctrl_1_val; 1065 uint32_t dc_gpio_aux_ctrl_2_val; 1066 uint32_t dc_gpio_aux_ctrl_3_val; 1067 uint32_t dc_gpio_aux_ctrl_4_val; 1068 uint32_t dc_gpio_aux_ctrl_5_val; 1069 uint32_t reserved[23]; 1070 }; 1071 1072 enum dce_info_caps_def 1073 { 1074 // only for VBIOS 1075 DCE_INFO_CAPS_FORCE_DISPDEV_CONNECTED =0x02, 1076 // only for VBIOS 1077 DCE_INFO_CAPS_DISABLE_DFP_DP_HBR2 =0x04, 1078 // only for VBIOS 1079 DCE_INFO_CAPS_ENABLE_INTERLAC_TIMING =0x08, 1080 // only for VBIOS 1081 DCE_INFO_CAPS_LTTPR_SUPPORT_ENABLE =0x20, 1082 }; 1083 1084 /* 1085 *************************************************************************** 1086 Data Table ATOM_EXTERNAL_DISPLAY_CONNECTION_INFO structure 1087 *************************************************************************** 1088 */ 1089 struct atom_ext_display_path 1090 { 1091 uint16_t device_tag; //A bit vector to show what devices are supported 1092 uint16_t device_acpi_enum; //16bit device ACPI id. 1093 uint16_t connectorobjid; //A physical connector for displays to plug in, using object connector definitions 1094 uint8_t auxddclut_index; //An index into external AUX/DDC channel LUT 1095 uint8_t hpdlut_index; //An index into external HPD pin LUT 1096 uint16_t ext_encoder_objid; //external encoder object id 1097 uint8_t channelmapping; // if ucChannelMapping=0, using default one to one mapping 1098 uint8_t chpninvert; // bit vector for up to 8 lanes, =0: P and N is not invert, =1 P and N is inverted 1099 uint16_t caps; 1100 uint16_t reserved; 1101 }; 1102 1103 //usCaps 1104 enum ext_display_path_cap_def { 1105 EXT_DISPLAY_PATH_CAPS__HBR2_DISABLE = 0x0001, 1106 EXT_DISPLAY_PATH_CAPS__DP_FIXED_VS_EN = 0x0002, 1107 EXT_DISPLAY_PATH_CAPS__EXT_CHIP_MASK = 0x007C, 1108 EXT_DISPLAY_PATH_CAPS__HDMI20_PI3EQX1204 = (0x01 << 2), //PI redriver chip 1109 EXT_DISPLAY_PATH_CAPS__HDMI20_TISN65DP159RSBT = (0x02 << 2), //TI retimer chip 1110 EXT_DISPLAY_PATH_CAPS__HDMI20_PARADE_PS175 = (0x03 << 2) //Parade DP->HDMI recoverter chip 1111 }; 1112 1113 struct atom_external_display_connection_info 1114 { 1115 struct atom_common_table_header table_header; 1116 uint8_t guid[16]; // a GUID is a 16 byte long string 1117 struct atom_ext_display_path path[7]; // total of fixed 7 entries. 1118 uint8_t checksum; // a simple Checksum of the sum of whole structure equal to 0x0. 1119 uint8_t stereopinid; // use for eDP panel 1120 uint8_t remotedisplayconfig; 1121 uint8_t edptolvdsrxid; 1122 uint8_t fixdpvoltageswing; // usCaps[1]=1, this indicate DP_LANE_SET value 1123 uint8_t reserved[3]; // for potential expansion 1124 }; 1125 1126 /* 1127 *************************************************************************** 1128 Data Table integratedsysteminfo structure 1129 *************************************************************************** 1130 */ 1131 1132 struct atom_camera_dphy_timing_param 1133 { 1134 uint8_t profile_id; // SENSOR_PROFILES 1135 uint32_t param; 1136 }; 1137 1138 struct atom_camera_dphy_elec_param 1139 { 1140 uint16_t param[3]; 1141 }; 1142 1143 struct atom_camera_module_info 1144 { 1145 uint8_t module_id; // 0: Rear, 1: Front right of user, 2: Front left of user 1146 uint8_t module_name[8]; 1147 struct atom_camera_dphy_timing_param timingparam[6]; // Exact number is under estimation and confirmation from sensor vendor 1148 }; 1149 1150 struct atom_camera_flashlight_info 1151 { 1152 uint8_t flashlight_id; // 0: Rear, 1: Front 1153 uint8_t name[8]; 1154 }; 1155 1156 struct atom_camera_data 1157 { 1158 uint32_t versionCode; 1159 struct atom_camera_module_info cameraInfo[3]; // Assuming 3 camera sensors max 1160 struct atom_camera_flashlight_info flashInfo; // Assuming 1 flashlight max 1161 struct atom_camera_dphy_elec_param dphy_param; 1162 uint32_t crc_val; // CRC 1163 }; 1164 1165 1166 struct atom_14nm_dpphy_dvihdmi_tuningset 1167 { 1168 uint32_t max_symclk_in10khz; 1169 uint8_t encoder_mode; //atom_encode_mode_def, =2: DVI, =3: HDMI mode 1170 uint8_t phy_sel; //bit vector of phy, bit0= phya, bit1=phyb, ....bit5 = phyf 1171 uint16_t margindeemph; //COMMON_MAR_DEEMPH_NOM[7:0]tx_margin_nom [15:8]deemph_gen1_nom 1172 uint8_t deemph_6db_4; //COMMON_SELDEEMPH60[31:24]deemph_6db_4 1173 uint8_t boostadj; //CMD_BUS_GLOBAL_FOR_TX_LANE0 [19:16]tx_boost_adj [20]tx_boost_en [23:22]tx_binary_ron_code_offset 1174 uint8_t tx_driver_fifty_ohms; //COMMON_ZCALCODE_CTRL[21].tx_driver_fifty_ohms 1175 uint8_t deemph_sel; //MARGIN_DEEMPH_LANE0.DEEMPH_SEL 1176 }; 1177 1178 struct atom_14nm_dpphy_dp_setting{ 1179 uint8_t dp_vs_pemph_level; //enum of atom_dp_vs_preemph_def 1180 uint16_t margindeemph; //COMMON_MAR_DEEMPH_NOM[7:0]tx_margin_nom [15:8]deemph_gen1_nom 1181 uint8_t deemph_6db_4; //COMMON_SELDEEMPH60[31:24]deemph_6db_4 1182 uint8_t boostadj; //CMD_BUS_GLOBAL_FOR_TX_LANE0 [19:16]tx_boost_adj [20]tx_boost_en [23:22]tx_binary_ron_code_offset 1183 }; 1184 1185 struct atom_14nm_dpphy_dp_tuningset{ 1186 uint8_t phy_sel; // bit vector of phy, bit0= phya, bit1=phyb, ....bit5 = phyf 1187 uint8_t version; 1188 uint16_t table_size; // size of atom_14nm_dpphy_dp_tuningset 1189 uint16_t reserved; 1190 struct atom_14nm_dpphy_dp_setting dptuning[10]; 1191 }; 1192 1193 struct atom_14nm_dig_transmitter_info_header_v4_0{ 1194 struct atom_common_table_header table_header; 1195 uint16_t pcie_phy_tmds_hdmi_macro_settings_offset; // offset of PCIEPhyTMDSHDMIMacroSettingsTbl 1196 uint16_t uniphy_vs_emph_lookup_table_offset; // offset of UniphyVSEmphLookUpTbl 1197 uint16_t uniphy_xbar_settings_table_offset; // offset of UniphyXbarSettingsTbl 1198 }; 1199 1200 struct atom_14nm_combphy_tmds_vs_set 1201 { 1202 uint8_t sym_clk; 1203 uint8_t dig_mode; 1204 uint8_t phy_sel; 1205 uint16_t common_mar_deemph_nom__margin_deemph_val; 1206 uint8_t common_seldeemph60__deemph_6db_4_val; 1207 uint8_t cmd_bus_global_for_tx_lane0__boostadj_val ; 1208 uint8_t common_zcalcode_ctrl__tx_driver_fifty_ohms_val; 1209 uint8_t margin_deemph_lane0__deemph_sel_val; 1210 }; 1211 1212 struct atom_DCN_dpphy_dvihdmi_tuningset 1213 { 1214 uint32_t max_symclk_in10khz; 1215 uint8_t encoder_mode; //atom_encode_mode_def, =2: DVI, =3: HDMI mode 1216 uint8_t phy_sel; //bit vector of phy, bit0= phya, bit1=phyb, ....bit5 = phyf 1217 uint8_t tx_eq_main; // map to RDPCSTX_PHY_FUSE0/1/2/3[5:0](EQ_MAIN) 1218 uint8_t tx_eq_pre; // map to RDPCSTX_PHY_FUSE0/1/2/3[11:6](EQ_PRE) 1219 uint8_t tx_eq_post; // map to RDPCSTX_PHY_FUSE0/1/2/3[17:12](EQ_POST) 1220 uint8_t reserved1; 1221 uint8_t tx_vboost_lvl; // tx_vboost_lvl, map to RDPCSTX_PHY_CNTL0.RDPCS_PHY_TX_VBOOST_LVL 1222 uint8_t reserved2; 1223 }; 1224 1225 struct atom_DCN_dpphy_dp_setting{ 1226 uint8_t dp_vs_pemph_level; //enum of atom_dp_vs_preemph_def 1227 uint8_t tx_eq_main; // map to RDPCSTX_PHY_FUSE0/1/2/3[5:0](EQ_MAIN) 1228 uint8_t tx_eq_pre; // map to RDPCSTX_PHY_FUSE0/1/2/3[11:6](EQ_PRE) 1229 uint8_t tx_eq_post; // map to RDPCSTX_PHY_FUSE0/1/2/3[17:12](EQ_POST) 1230 uint8_t tx_vboost_lvl; // tx_vboost_lvl, map to RDPCSTX_PHY_CNTL0.RDPCS_PHY_TX_VBOOST_LVL 1231 }; 1232 1233 struct atom_DCN_dpphy_dp_tuningset{ 1234 uint8_t phy_sel; // bit vector of phy, bit0= phya, bit1=phyb, ....bit5 = phyf 1235 uint8_t version; 1236 uint16_t table_size; // size of atom_14nm_dpphy_dp_setting 1237 uint16_t reserved; 1238 struct atom_DCN_dpphy_dp_setting dptunings[10]; 1239 }; 1240 1241 struct atom_i2c_reg_info { 1242 uint8_t ucI2cRegIndex; 1243 uint8_t ucI2cRegVal; 1244 }; 1245 1246 struct atom_hdmi_retimer_redriver_set { 1247 uint8_t HdmiSlvAddr; 1248 uint8_t HdmiRegNum; 1249 uint8_t Hdmi6GRegNum; 1250 struct atom_i2c_reg_info HdmiRegSetting[9]; //For non 6G Hz use 1251 struct atom_i2c_reg_info Hdmi6GhzRegSetting[3]; //For 6G Hz use. 1252 }; 1253 1254 struct atom_integrated_system_info_v1_11 1255 { 1256 struct atom_common_table_header table_header; 1257 uint32_t vbios_misc; //enum of atom_system_vbiosmisc_def 1258 uint32_t gpucapinfo; //enum of atom_system_gpucapinf_def 1259 uint32_t system_config; 1260 uint32_t cpucapinfo; 1261 uint16_t gpuclk_ss_percentage; //unit of 0.001%, 1000 mean 1% 1262 uint16_t gpuclk_ss_type; 1263 uint16_t lvds_ss_percentage; //unit of 0.001%, 1000 mean 1% 1264 uint16_t lvds_ss_rate_10hz; 1265 uint16_t hdmi_ss_percentage; //unit of 0.001%, 1000 mean 1% 1266 uint16_t hdmi_ss_rate_10hz; 1267 uint16_t dvi_ss_percentage; //unit of 0.001%, 1000 mean 1% 1268 uint16_t dvi_ss_rate_10hz; 1269 uint16_t dpphy_override; // bit vector, enum of atom_sysinfo_dpphy_override_def 1270 uint16_t lvds_misc; // enum of atom_sys_info_lvds_misc_def 1271 uint16_t backlight_pwm_hz; // pwm frequency in hz 1272 uint8_t memorytype; // enum of atom_dmi_t17_mem_type_def, APU memory type indication. 1273 uint8_t umachannelnumber; // number of memory channels 1274 uint8_t pwr_on_digon_to_de; /* all pwr sequence numbers below are in uint of 4ms */ 1275 uint8_t pwr_on_de_to_vary_bl; 1276 uint8_t pwr_down_vary_bloff_to_de; 1277 uint8_t pwr_down_de_to_digoff; 1278 uint8_t pwr_off_delay; 1279 uint8_t pwr_on_vary_bl_to_blon; 1280 uint8_t pwr_down_bloff_to_vary_bloff; 1281 uint8_t min_allowed_bl_level; 1282 uint8_t htc_hyst_limit; 1283 uint8_t htc_tmp_limit; 1284 uint8_t reserved1; 1285 uint8_t reserved2; 1286 struct atom_external_display_connection_info extdispconninfo; 1287 struct atom_14nm_dpphy_dvihdmi_tuningset dvi_tuningset; 1288 struct atom_14nm_dpphy_dvihdmi_tuningset hdmi_tuningset; 1289 struct atom_14nm_dpphy_dvihdmi_tuningset hdmi6g_tuningset; 1290 struct atom_14nm_dpphy_dp_tuningset dp_tuningset; // rbr 1.62G dp tuning set 1291 struct atom_14nm_dpphy_dp_tuningset dp_hbr3_tuningset; // HBR3 dp tuning set 1292 struct atom_camera_data camera_info; 1293 struct atom_hdmi_retimer_redriver_set dp0_retimer_set; //for DP0 1294 struct atom_hdmi_retimer_redriver_set dp1_retimer_set; //for DP1 1295 struct atom_hdmi_retimer_redriver_set dp2_retimer_set; //for DP2 1296 struct atom_hdmi_retimer_redriver_set dp3_retimer_set; //for DP3 1297 struct atom_14nm_dpphy_dp_tuningset dp_hbr_tuningset; //hbr 2.7G dp tuning set 1298 struct atom_14nm_dpphy_dp_tuningset dp_hbr2_tuningset; //hbr2 5.4G dp turnig set 1299 struct atom_14nm_dpphy_dp_tuningset edp_tuningset; //edp tuning set 1300 uint32_t reserved[66]; 1301 }; 1302 1303 struct atom_integrated_system_info_v1_12 1304 { 1305 struct atom_common_table_header table_header; 1306 uint32_t vbios_misc; //enum of atom_system_vbiosmisc_def 1307 uint32_t gpucapinfo; //enum of atom_system_gpucapinf_def 1308 uint32_t system_config; 1309 uint32_t cpucapinfo; 1310 uint16_t gpuclk_ss_percentage; //unit of 0.001%, 1000 mean 1% 1311 uint16_t gpuclk_ss_type; 1312 uint16_t lvds_ss_percentage; //unit of 0.001%, 1000 mean 1% 1313 uint16_t lvds_ss_rate_10hz; 1314 uint16_t hdmi_ss_percentage; //unit of 0.001%, 1000 mean 1% 1315 uint16_t hdmi_ss_rate_10hz; 1316 uint16_t dvi_ss_percentage; //unit of 0.001%, 1000 mean 1% 1317 uint16_t dvi_ss_rate_10hz; 1318 uint16_t dpphy_override; // bit vector, enum of atom_sysinfo_dpphy_override_def 1319 uint16_t lvds_misc; // enum of atom_sys_info_lvds_misc_def 1320 uint16_t backlight_pwm_hz; // pwm frequency in hz 1321 uint8_t memorytype; // enum of atom_dmi_t17_mem_type_def, APU memory type indication. 1322 uint8_t umachannelnumber; // number of memory channels 1323 uint8_t pwr_on_digon_to_de; // all pwr sequence numbers below are in uint of 4ms // 1324 uint8_t pwr_on_de_to_vary_bl; 1325 uint8_t pwr_down_vary_bloff_to_de; 1326 uint8_t pwr_down_de_to_digoff; 1327 uint8_t pwr_off_delay; 1328 uint8_t pwr_on_vary_bl_to_blon; 1329 uint8_t pwr_down_bloff_to_vary_bloff; 1330 uint8_t min_allowed_bl_level; 1331 uint8_t htc_hyst_limit; 1332 uint8_t htc_tmp_limit; 1333 uint8_t reserved1; 1334 uint8_t reserved2; 1335 struct atom_external_display_connection_info extdispconninfo; 1336 struct atom_DCN_dpphy_dvihdmi_tuningset TMDS_tuningset; 1337 struct atom_DCN_dpphy_dvihdmi_tuningset hdmiCLK5_tuningset; 1338 struct atom_DCN_dpphy_dvihdmi_tuningset hdmiCLK8_tuningset; 1339 struct atom_DCN_dpphy_dp_tuningset rbr_tuningset; // rbr 1.62G dp tuning set 1340 struct atom_DCN_dpphy_dp_tuningset hbr3_tuningset; // HBR3 dp tuning set 1341 struct atom_camera_data camera_info; 1342 struct atom_hdmi_retimer_redriver_set dp0_retimer_set; //for DP0 1343 struct atom_hdmi_retimer_redriver_set dp1_retimer_set; //for DP1 1344 struct atom_hdmi_retimer_redriver_set dp2_retimer_set; //for DP2 1345 struct atom_hdmi_retimer_redriver_set dp3_retimer_set; //for DP3 1346 struct atom_DCN_dpphy_dp_tuningset hbr_tuningset; //hbr 2.7G dp tuning set 1347 struct atom_DCN_dpphy_dp_tuningset hbr2_tuningset; //hbr2 5.4G dp turnig set 1348 struct atom_DCN_dpphy_dp_tuningset edp_tunings; //edp tuning set 1349 struct atom_DCN_dpphy_dvihdmi_tuningset hdmiCLK6_tuningset; 1350 uint32_t reserved[63]; 1351 }; 1352 1353 struct edp_info_table 1354 { 1355 uint16_t edp_backlight_pwm_hz; 1356 uint16_t edp_ss_percentage; 1357 uint16_t edp_ss_rate_10hz; 1358 uint16_t reserved1; 1359 uint32_t reserved2; 1360 uint8_t edp_pwr_on_off_delay; 1361 uint8_t edp_pwr_on_vary_bl_to_blon; 1362 uint8_t edp_pwr_down_bloff_to_vary_bloff; 1363 uint8_t edp_panel_bpc; 1364 uint8_t edp_bootup_bl_level; 1365 uint8_t reserved3[3]; 1366 uint32_t reserved4[3]; 1367 }; 1368 1369 struct atom_integrated_system_info_v2_1 1370 { 1371 struct atom_common_table_header table_header; 1372 uint32_t vbios_misc; //enum of atom_system_vbiosmisc_def 1373 uint32_t gpucapinfo; //enum of atom_system_gpucapinf_def 1374 uint32_t system_config; 1375 uint32_t cpucapinfo; 1376 uint16_t gpuclk_ss_percentage; //unit of 0.001%, 1000 mean 1% 1377 uint16_t gpuclk_ss_type; 1378 uint16_t dpphy_override; // bit vector, enum of atom_sysinfo_dpphy_override_def 1379 uint8_t memorytype; // enum of atom_dmi_t17_mem_type_def, APU memory type indication. 1380 uint8_t umachannelnumber; // number of memory channels 1381 uint8_t htc_hyst_limit; 1382 uint8_t htc_tmp_limit; 1383 uint8_t reserved1; 1384 uint8_t reserved2; 1385 struct edp_info_table edp1_info; 1386 struct edp_info_table edp2_info; 1387 uint32_t reserved3[8]; 1388 struct atom_external_display_connection_info extdispconninfo; 1389 struct atom_DCN_dpphy_dvihdmi_tuningset TMDS_tuningset; 1390 struct atom_DCN_dpphy_dvihdmi_tuningset hdmiCLK5_tuningset; //add clk6 1391 struct atom_DCN_dpphy_dvihdmi_tuningset hdmiCLK6_tuningset; 1392 struct atom_DCN_dpphy_dvihdmi_tuningset hdmiCLK8_tuningset; 1393 uint32_t reserved4[6];//reserve 2*sizeof(atom_DCN_dpphy_dvihdmi_tuningset) 1394 struct atom_DCN_dpphy_dp_tuningset rbr_tuningset; // rbr 1.62G dp tuning set 1395 struct atom_DCN_dpphy_dp_tuningset hbr_tuningset; //hbr 2.7G dp tuning set 1396 struct atom_DCN_dpphy_dp_tuningset hbr2_tuningset; //hbr2 5.4G dp turnig set 1397 struct atom_DCN_dpphy_dp_tuningset hbr3_tuningset; // HBR3 dp tuning set 1398 struct atom_DCN_dpphy_dp_tuningset edp_tunings; //edp tuning set 1399 uint32_t reserved5[28];//reserve 2*sizeof(atom_DCN_dpphy_dp_tuningset) 1400 struct atom_hdmi_retimer_redriver_set dp0_retimer_set; //for DP0 1401 struct atom_hdmi_retimer_redriver_set dp1_retimer_set; //for DP1 1402 struct atom_hdmi_retimer_redriver_set dp2_retimer_set; //for DP2 1403 struct atom_hdmi_retimer_redriver_set dp3_retimer_set; //for DP3 1404 uint32_t reserved6[30];// reserve size of(atom_camera_data) for camera_info 1405 uint32_t reserved7[32]; 1406 1407 }; 1408 1409 // system_config 1410 enum atom_system_vbiosmisc_def{ 1411 INTEGRATED_SYSTEM_INFO__GET_EDID_CALLBACK_FUNC_SUPPORT = 0x01, 1412 }; 1413 1414 1415 // gpucapinfo 1416 enum atom_system_gpucapinf_def{ 1417 SYS_INFO_GPUCAPS__ENABEL_DFS_BYPASS = 0x10, 1418 }; 1419 1420 //dpphy_override 1421 enum atom_sysinfo_dpphy_override_def{ 1422 ATOM_ENABLE_DVI_TUNINGSET = 0x01, 1423 ATOM_ENABLE_HDMI_TUNINGSET = 0x02, 1424 ATOM_ENABLE_HDMI6G_TUNINGSET = 0x04, 1425 ATOM_ENABLE_DP_TUNINGSET = 0x08, 1426 ATOM_ENABLE_DP_HBR3_TUNINGSET = 0x10, 1427 }; 1428 1429 //lvds_misc 1430 enum atom_sys_info_lvds_misc_def 1431 { 1432 SYS_INFO_LVDS_MISC_888_FPDI_MODE =0x01, 1433 SYS_INFO_LVDS_MISC_888_BPC_MODE =0x04, 1434 SYS_INFO_LVDS_MISC_OVERRIDE_EN =0x08, 1435 }; 1436 1437 1438 //memorytype DMI Type 17 offset 12h - Memory Type 1439 enum atom_dmi_t17_mem_type_def{ 1440 OtherMemType = 0x01, ///< Assign 01 to Other 1441 UnknownMemType, ///< Assign 02 to Unknown 1442 DramMemType, ///< Assign 03 to DRAM 1443 EdramMemType, ///< Assign 04 to EDRAM 1444 VramMemType, ///< Assign 05 to VRAM 1445 SramMemType, ///< Assign 06 to SRAM 1446 RamMemType, ///< Assign 07 to RAM 1447 RomMemType, ///< Assign 08 to ROM 1448 FlashMemType, ///< Assign 09 to Flash 1449 EepromMemType, ///< Assign 10 to EEPROM 1450 FepromMemType, ///< Assign 11 to FEPROM 1451 EpromMemType, ///< Assign 12 to EPROM 1452 CdramMemType, ///< Assign 13 to CDRAM 1453 ThreeDramMemType, ///< Assign 14 to 3DRAM 1454 SdramMemType, ///< Assign 15 to SDRAM 1455 SgramMemType, ///< Assign 16 to SGRAM 1456 RdramMemType, ///< Assign 17 to RDRAM 1457 DdrMemType, ///< Assign 18 to DDR 1458 Ddr2MemType, ///< Assign 19 to DDR2 1459 Ddr2FbdimmMemType, ///< Assign 20 to DDR2 FB-DIMM 1460 Ddr3MemType = 0x18, ///< Assign 24 to DDR3 1461 Fbd2MemType, ///< Assign 25 to FBD2 1462 Ddr4MemType, ///< Assign 26 to DDR4 1463 LpDdrMemType, ///< Assign 27 to LPDDR 1464 LpDdr2MemType, ///< Assign 28 to LPDDR2 1465 LpDdr3MemType, ///< Assign 29 to LPDDR3 1466 LpDdr4MemType, ///< Assign 30 to LPDDR4 1467 GDdr6MemType, ///< Assign 31 to GDDR6 1468 HbmMemType, ///< Assign 32 to HBM 1469 Hbm2MemType, ///< Assign 33 to HBM2 1470 Ddr5MemType, ///< Assign 34 to DDR5 1471 LpDdr5MemType, ///< Assign 35 to LPDDR5 1472 }; 1473 1474 1475 // this Table is used starting from NL/AM, used by SBIOS and pass the IntegratedSystemInfoTable/PowerPlayInfoTable/SystemCameraInfoTable 1476 struct atom_fusion_system_info_v4 1477 { 1478 struct atom_integrated_system_info_v1_11 sysinfo; // refer to ATOM_INTEGRATED_SYSTEM_INFO_V1_8 definition 1479 uint32_t powerplayinfo[256]; // Reserve 1024 bytes space for PowerPlayInfoTable 1480 }; 1481 1482 1483 /* 1484 *************************************************************************** 1485 Data Table gfx_info structure 1486 *************************************************************************** 1487 */ 1488 1489 struct atom_gfx_info_v2_2 1490 { 1491 struct atom_common_table_header table_header; 1492 uint8_t gfxip_min_ver; 1493 uint8_t gfxip_max_ver; 1494 uint8_t max_shader_engines; 1495 uint8_t max_tile_pipes; 1496 uint8_t max_cu_per_sh; 1497 uint8_t max_sh_per_se; 1498 uint8_t max_backends_per_se; 1499 uint8_t max_texture_channel_caches; 1500 uint32_t regaddr_cp_dma_src_addr; 1501 uint32_t regaddr_cp_dma_src_addr_hi; 1502 uint32_t regaddr_cp_dma_dst_addr; 1503 uint32_t regaddr_cp_dma_dst_addr_hi; 1504 uint32_t regaddr_cp_dma_command; 1505 uint32_t regaddr_cp_status; 1506 uint32_t regaddr_rlc_gpu_clock_32; 1507 uint32_t rlc_gpu_timer_refclk; 1508 }; 1509 1510 struct atom_gfx_info_v2_3 { 1511 struct atom_common_table_header table_header; 1512 uint8_t gfxip_min_ver; 1513 uint8_t gfxip_max_ver; 1514 uint8_t max_shader_engines; 1515 uint8_t max_tile_pipes; 1516 uint8_t max_cu_per_sh; 1517 uint8_t max_sh_per_se; 1518 uint8_t max_backends_per_se; 1519 uint8_t max_texture_channel_caches; 1520 uint32_t regaddr_cp_dma_src_addr; 1521 uint32_t regaddr_cp_dma_src_addr_hi; 1522 uint32_t regaddr_cp_dma_dst_addr; 1523 uint32_t regaddr_cp_dma_dst_addr_hi; 1524 uint32_t regaddr_cp_dma_command; 1525 uint32_t regaddr_cp_status; 1526 uint32_t regaddr_rlc_gpu_clock_32; 1527 uint32_t rlc_gpu_timer_refclk; 1528 uint8_t active_cu_per_sh; 1529 uint8_t active_rb_per_se; 1530 uint16_t gcgoldenoffset; 1531 uint32_t rm21_sram_vmin_value; 1532 }; 1533 1534 struct atom_gfx_info_v2_4 1535 { 1536 struct atom_common_table_header table_header; 1537 uint8_t gfxip_min_ver; 1538 uint8_t gfxip_max_ver; 1539 uint8_t max_shader_engines; 1540 uint8_t reserved; 1541 uint8_t max_cu_per_sh; 1542 uint8_t max_sh_per_se; 1543 uint8_t max_backends_per_se; 1544 uint8_t max_texture_channel_caches; 1545 uint32_t regaddr_cp_dma_src_addr; 1546 uint32_t regaddr_cp_dma_src_addr_hi; 1547 uint32_t regaddr_cp_dma_dst_addr; 1548 uint32_t regaddr_cp_dma_dst_addr_hi; 1549 uint32_t regaddr_cp_dma_command; 1550 uint32_t regaddr_cp_status; 1551 uint32_t regaddr_rlc_gpu_clock_32; 1552 uint32_t rlc_gpu_timer_refclk; 1553 uint8_t active_cu_per_sh; 1554 uint8_t active_rb_per_se; 1555 uint16_t gcgoldenoffset; 1556 uint16_t gc_num_gprs; 1557 uint16_t gc_gsprim_buff_depth; 1558 uint16_t gc_parameter_cache_depth; 1559 uint16_t gc_wave_size; 1560 uint16_t gc_max_waves_per_simd; 1561 uint16_t gc_lds_size; 1562 uint8_t gc_num_max_gs_thds; 1563 uint8_t gc_gs_table_depth; 1564 uint8_t gc_double_offchip_lds_buffer; 1565 uint8_t gc_max_scratch_slots_per_cu; 1566 uint32_t sram_rm_fuses_val; 1567 uint32_t sram_custom_rm_fuses_val; 1568 }; 1569 1570 struct atom_gfx_info_v2_7 { 1571 struct atom_common_table_header table_header; 1572 uint8_t gfxip_min_ver; 1573 uint8_t gfxip_max_ver; 1574 uint8_t max_shader_engines; 1575 uint8_t reserved; 1576 uint8_t max_cu_per_sh; 1577 uint8_t max_sh_per_se; 1578 uint8_t max_backends_per_se; 1579 uint8_t max_texture_channel_caches; 1580 uint32_t regaddr_cp_dma_src_addr; 1581 uint32_t regaddr_cp_dma_src_addr_hi; 1582 uint32_t regaddr_cp_dma_dst_addr; 1583 uint32_t regaddr_cp_dma_dst_addr_hi; 1584 uint32_t regaddr_cp_dma_command; 1585 uint32_t regaddr_cp_status; 1586 uint32_t regaddr_rlc_gpu_clock_32; 1587 uint32_t rlc_gpu_timer_refclk; 1588 uint8_t active_cu_per_sh; 1589 uint8_t active_rb_per_se; 1590 uint16_t gcgoldenoffset; 1591 uint16_t gc_num_gprs; 1592 uint16_t gc_gsprim_buff_depth; 1593 uint16_t gc_parameter_cache_depth; 1594 uint16_t gc_wave_size; 1595 uint16_t gc_max_waves_per_simd; 1596 uint16_t gc_lds_size; 1597 uint8_t gc_num_max_gs_thds; 1598 uint8_t gc_gs_table_depth; 1599 uint8_t gc_double_offchip_lds_buffer; 1600 uint8_t gc_max_scratch_slots_per_cu; 1601 uint32_t sram_rm_fuses_val; 1602 uint32_t sram_custom_rm_fuses_val; 1603 uint8_t cut_cu; 1604 uint8_t active_cu_total; 1605 uint8_t cu_reserved[2]; 1606 uint32_t gc_config; 1607 uint8_t inactive_cu_per_se[8]; 1608 uint32_t reserved2[6]; 1609 }; 1610 1611 /* 1612 *************************************************************************** 1613 Data Table smu_info structure 1614 *************************************************************************** 1615 */ 1616 struct atom_smu_info_v3_1 1617 { 1618 struct atom_common_table_header table_header; 1619 uint8_t smuip_min_ver; 1620 uint8_t smuip_max_ver; 1621 uint8_t smu_rsd1; 1622 uint8_t gpuclk_ss_mode; // enum of atom_spread_spectrum_mode 1623 uint16_t sclk_ss_percentage; 1624 uint16_t sclk_ss_rate_10hz; 1625 uint16_t gpuclk_ss_percentage; // in unit of 0.001% 1626 uint16_t gpuclk_ss_rate_10hz; 1627 uint32_t core_refclk_10khz; 1628 uint8_t ac_dc_gpio_bit; // GPIO bit shift in SMU_GPIOPAD_A configured for AC/DC switching, =0xff means invalid 1629 uint8_t ac_dc_polarity; // GPIO polarity for AC/DC switching 1630 uint8_t vr0hot_gpio_bit; // GPIO bit shift in SMU_GPIOPAD_A configured for VR0 HOT event, =0xff means invalid 1631 uint8_t vr0hot_polarity; // GPIO polarity for VR0 HOT event 1632 uint8_t vr1hot_gpio_bit; // GPIO bit shift in SMU_GPIOPAD_A configured for VR1 HOT event , =0xff means invalid 1633 uint8_t vr1hot_polarity; // GPIO polarity for VR1 HOT event 1634 uint8_t fw_ctf_gpio_bit; // GPIO bit shift in SMU_GPIOPAD_A configured for CTF, =0xff means invalid 1635 uint8_t fw_ctf_polarity; // GPIO polarity for CTF 1636 }; 1637 1638 struct atom_smu_info_v3_2 { 1639 struct atom_common_table_header table_header; 1640 uint8_t smuip_min_ver; 1641 uint8_t smuip_max_ver; 1642 uint8_t smu_rsd1; 1643 uint8_t gpuclk_ss_mode; 1644 uint16_t sclk_ss_percentage; 1645 uint16_t sclk_ss_rate_10hz; 1646 uint16_t gpuclk_ss_percentage; // in unit of 0.001% 1647 uint16_t gpuclk_ss_rate_10hz; 1648 uint32_t core_refclk_10khz; 1649 uint8_t ac_dc_gpio_bit; // GPIO bit shift in SMU_GPIOPAD_A configured for AC/DC switching, =0xff means invalid 1650 uint8_t ac_dc_polarity; // GPIO polarity for AC/DC switching 1651 uint8_t vr0hot_gpio_bit; // GPIO bit shift in SMU_GPIOPAD_A configured for VR0 HOT event, =0xff means invalid 1652 uint8_t vr0hot_polarity; // GPIO polarity for VR0 HOT event 1653 uint8_t vr1hot_gpio_bit; // GPIO bit shift in SMU_GPIOPAD_A configured for VR1 HOT event , =0xff means invalid 1654 uint8_t vr1hot_polarity; // GPIO polarity for VR1 HOT event 1655 uint8_t fw_ctf_gpio_bit; // GPIO bit shift in SMU_GPIOPAD_A configured for CTF, =0xff means invalid 1656 uint8_t fw_ctf_polarity; // GPIO polarity for CTF 1657 uint8_t pcc_gpio_bit; // GPIO bit shift in SMU_GPIOPAD_A configured for PCC, =0xff means invalid 1658 uint8_t pcc_gpio_polarity; // GPIO polarity for CTF 1659 uint16_t smugoldenoffset; 1660 uint32_t gpupll_vco_freq_10khz; 1661 uint32_t bootup_smnclk_10khz; 1662 uint32_t bootup_socclk_10khz; 1663 uint32_t bootup_mp0clk_10khz; 1664 uint32_t bootup_mp1clk_10khz; 1665 uint32_t bootup_lclk_10khz; 1666 uint32_t bootup_dcefclk_10khz; 1667 uint32_t ctf_threshold_override_value; 1668 uint32_t reserved[5]; 1669 }; 1670 1671 struct atom_smu_info_v3_3 { 1672 struct atom_common_table_header table_header; 1673 uint8_t smuip_min_ver; 1674 uint8_t smuip_max_ver; 1675 uint8_t waflclk_ss_mode; 1676 uint8_t gpuclk_ss_mode; 1677 uint16_t sclk_ss_percentage; 1678 uint16_t sclk_ss_rate_10hz; 1679 uint16_t gpuclk_ss_percentage; // in unit of 0.001% 1680 uint16_t gpuclk_ss_rate_10hz; 1681 uint32_t core_refclk_10khz; 1682 uint8_t ac_dc_gpio_bit; // GPIO bit shift in SMU_GPIOPAD_A configured for AC/DC switching, =0xff means invalid 1683 uint8_t ac_dc_polarity; // GPIO polarity for AC/DC switching 1684 uint8_t vr0hot_gpio_bit; // GPIO bit shift in SMU_GPIOPAD_A configured for VR0 HOT event, =0xff means invalid 1685 uint8_t vr0hot_polarity; // GPIO polarity for VR0 HOT event 1686 uint8_t vr1hot_gpio_bit; // GPIO bit shift in SMU_GPIOPAD_A configured for VR1 HOT event , =0xff means invalid 1687 uint8_t vr1hot_polarity; // GPIO polarity for VR1 HOT event 1688 uint8_t fw_ctf_gpio_bit; // GPIO bit shift in SMU_GPIOPAD_A configured for CTF, =0xff means invalid 1689 uint8_t fw_ctf_polarity; // GPIO polarity for CTF 1690 uint8_t pcc_gpio_bit; // GPIO bit shift in SMU_GPIOPAD_A configured for PCC, =0xff means invalid 1691 uint8_t pcc_gpio_polarity; // GPIO polarity for CTF 1692 uint16_t smugoldenoffset; 1693 uint32_t gpupll_vco_freq_10khz; 1694 uint32_t bootup_smnclk_10khz; 1695 uint32_t bootup_socclk_10khz; 1696 uint32_t bootup_mp0clk_10khz; 1697 uint32_t bootup_mp1clk_10khz; 1698 uint32_t bootup_lclk_10khz; 1699 uint32_t bootup_dcefclk_10khz; 1700 uint32_t ctf_threshold_override_value; 1701 uint32_t syspll3_0_vco_freq_10khz; 1702 uint32_t syspll3_1_vco_freq_10khz; 1703 uint32_t bootup_fclk_10khz; 1704 uint32_t bootup_waflclk_10khz; 1705 uint32_t smu_info_caps; 1706 uint16_t waflclk_ss_percentage; // in unit of 0.001% 1707 uint16_t smuinitoffset; 1708 uint32_t reserved; 1709 }; 1710 1711 /* 1712 *************************************************************************** 1713 Data Table smc_dpm_info structure 1714 *************************************************************************** 1715 */ 1716 struct atom_smc_dpm_info_v4_1 1717 { 1718 struct atom_common_table_header table_header; 1719 uint8_t liquid1_i2c_address; 1720 uint8_t liquid2_i2c_address; 1721 uint8_t vr_i2c_address; 1722 uint8_t plx_i2c_address; 1723 1724 uint8_t liquid_i2c_linescl; 1725 uint8_t liquid_i2c_linesda; 1726 uint8_t vr_i2c_linescl; 1727 uint8_t vr_i2c_linesda; 1728 1729 uint8_t plx_i2c_linescl; 1730 uint8_t plx_i2c_linesda; 1731 uint8_t vrsensorpresent; 1732 uint8_t liquidsensorpresent; 1733 1734 uint16_t maxvoltagestepgfx; 1735 uint16_t maxvoltagestepsoc; 1736 1737 uint8_t vddgfxvrmapping; 1738 uint8_t vddsocvrmapping; 1739 uint8_t vddmem0vrmapping; 1740 uint8_t vddmem1vrmapping; 1741 1742 uint8_t gfxulvphasesheddingmask; 1743 uint8_t soculvphasesheddingmask; 1744 uint8_t padding8_v[2]; 1745 1746 uint16_t gfxmaxcurrent; 1747 uint8_t gfxoffset; 1748 uint8_t padding_telemetrygfx; 1749 1750 uint16_t socmaxcurrent; 1751 uint8_t socoffset; 1752 uint8_t padding_telemetrysoc; 1753 1754 uint16_t mem0maxcurrent; 1755 uint8_t mem0offset; 1756 uint8_t padding_telemetrymem0; 1757 1758 uint16_t mem1maxcurrent; 1759 uint8_t mem1offset; 1760 uint8_t padding_telemetrymem1; 1761 1762 uint8_t acdcgpio; 1763 uint8_t acdcpolarity; 1764 uint8_t vr0hotgpio; 1765 uint8_t vr0hotpolarity; 1766 1767 uint8_t vr1hotgpio; 1768 uint8_t vr1hotpolarity; 1769 uint8_t padding1; 1770 uint8_t padding2; 1771 1772 uint8_t ledpin0; 1773 uint8_t ledpin1; 1774 uint8_t ledpin2; 1775 uint8_t padding8_4; 1776 1777 uint8_t pllgfxclkspreadenabled; 1778 uint8_t pllgfxclkspreadpercent; 1779 uint16_t pllgfxclkspreadfreq; 1780 1781 uint8_t uclkspreadenabled; 1782 uint8_t uclkspreadpercent; 1783 uint16_t uclkspreadfreq; 1784 1785 uint8_t socclkspreadenabled; 1786 uint8_t socclkspreadpercent; 1787 uint16_t socclkspreadfreq; 1788 1789 uint8_t acggfxclkspreadenabled; 1790 uint8_t acggfxclkspreadpercent; 1791 uint16_t acggfxclkspreadfreq; 1792 1793 uint8_t Vr2_I2C_address; 1794 uint8_t padding_vr2[3]; 1795 1796 uint32_t boardreserved[9]; 1797 }; 1798 1799 /* 1800 *************************************************************************** 1801 Data Table smc_dpm_info structure 1802 *************************************************************************** 1803 */ 1804 struct atom_smc_dpm_info_v4_3 1805 { 1806 struct atom_common_table_header table_header; 1807 uint8_t liquid1_i2c_address; 1808 uint8_t liquid2_i2c_address; 1809 uint8_t vr_i2c_address; 1810 uint8_t plx_i2c_address; 1811 1812 uint8_t liquid_i2c_linescl; 1813 uint8_t liquid_i2c_linesda; 1814 uint8_t vr_i2c_linescl; 1815 uint8_t vr_i2c_linesda; 1816 1817 uint8_t plx_i2c_linescl; 1818 uint8_t plx_i2c_linesda; 1819 uint8_t vrsensorpresent; 1820 uint8_t liquidsensorpresent; 1821 1822 uint16_t maxvoltagestepgfx; 1823 uint16_t maxvoltagestepsoc; 1824 1825 uint8_t vddgfxvrmapping; 1826 uint8_t vddsocvrmapping; 1827 uint8_t vddmem0vrmapping; 1828 uint8_t vddmem1vrmapping; 1829 1830 uint8_t gfxulvphasesheddingmask; 1831 uint8_t soculvphasesheddingmask; 1832 uint8_t externalsensorpresent; 1833 uint8_t padding8_v; 1834 1835 uint16_t gfxmaxcurrent; 1836 uint8_t gfxoffset; 1837 uint8_t padding_telemetrygfx; 1838 1839 uint16_t socmaxcurrent; 1840 uint8_t socoffset; 1841 uint8_t padding_telemetrysoc; 1842 1843 uint16_t mem0maxcurrent; 1844 uint8_t mem0offset; 1845 uint8_t padding_telemetrymem0; 1846 1847 uint16_t mem1maxcurrent; 1848 uint8_t mem1offset; 1849 uint8_t padding_telemetrymem1; 1850 1851 uint8_t acdcgpio; 1852 uint8_t acdcpolarity; 1853 uint8_t vr0hotgpio; 1854 uint8_t vr0hotpolarity; 1855 1856 uint8_t vr1hotgpio; 1857 uint8_t vr1hotpolarity; 1858 uint8_t padding1; 1859 uint8_t padding2; 1860 1861 uint8_t ledpin0; 1862 uint8_t ledpin1; 1863 uint8_t ledpin2; 1864 uint8_t padding8_4; 1865 1866 uint8_t pllgfxclkspreadenabled; 1867 uint8_t pllgfxclkspreadpercent; 1868 uint16_t pllgfxclkspreadfreq; 1869 1870 uint8_t uclkspreadenabled; 1871 uint8_t uclkspreadpercent; 1872 uint16_t uclkspreadfreq; 1873 1874 uint8_t fclkspreadenabled; 1875 uint8_t fclkspreadpercent; 1876 uint16_t fclkspreadfreq; 1877 1878 uint8_t fllgfxclkspreadenabled; 1879 uint8_t fllgfxclkspreadpercent; 1880 uint16_t fllgfxclkspreadfreq; 1881 1882 uint32_t boardreserved[10]; 1883 }; 1884 1885 struct smudpm_i2ccontrollerconfig_t { 1886 uint32_t enabled; 1887 uint32_t slaveaddress; 1888 uint32_t controllerport; 1889 uint32_t controllername; 1890 uint32_t thermalthrottler; 1891 uint32_t i2cprotocol; 1892 uint32_t i2cspeed; 1893 }; 1894 1895 struct atom_smc_dpm_info_v4_4 1896 { 1897 struct atom_common_table_header table_header; 1898 uint32_t i2c_padding[3]; 1899 1900 uint16_t maxvoltagestepgfx; 1901 uint16_t maxvoltagestepsoc; 1902 1903 uint8_t vddgfxvrmapping; 1904 uint8_t vddsocvrmapping; 1905 uint8_t vddmem0vrmapping; 1906 uint8_t vddmem1vrmapping; 1907 1908 uint8_t gfxulvphasesheddingmask; 1909 uint8_t soculvphasesheddingmask; 1910 uint8_t externalsensorpresent; 1911 uint8_t padding8_v; 1912 1913 uint16_t gfxmaxcurrent; 1914 uint8_t gfxoffset; 1915 uint8_t padding_telemetrygfx; 1916 1917 uint16_t socmaxcurrent; 1918 uint8_t socoffset; 1919 uint8_t padding_telemetrysoc; 1920 1921 uint16_t mem0maxcurrent; 1922 uint8_t mem0offset; 1923 uint8_t padding_telemetrymem0; 1924 1925 uint16_t mem1maxcurrent; 1926 uint8_t mem1offset; 1927 uint8_t padding_telemetrymem1; 1928 1929 1930 uint8_t acdcgpio; 1931 uint8_t acdcpolarity; 1932 uint8_t vr0hotgpio; 1933 uint8_t vr0hotpolarity; 1934 1935 uint8_t vr1hotgpio; 1936 uint8_t vr1hotpolarity; 1937 uint8_t padding1; 1938 uint8_t padding2; 1939 1940 1941 uint8_t ledpin0; 1942 uint8_t ledpin1; 1943 uint8_t ledpin2; 1944 uint8_t padding8_4; 1945 1946 1947 uint8_t pllgfxclkspreadenabled; 1948 uint8_t pllgfxclkspreadpercent; 1949 uint16_t pllgfxclkspreadfreq; 1950 1951 1952 uint8_t uclkspreadenabled; 1953 uint8_t uclkspreadpercent; 1954 uint16_t uclkspreadfreq; 1955 1956 1957 uint8_t fclkspreadenabled; 1958 uint8_t fclkspreadpercent; 1959 uint16_t fclkspreadfreq; 1960 1961 1962 uint8_t fllgfxclkspreadenabled; 1963 uint8_t fllgfxclkspreadpercent; 1964 uint16_t fllgfxclkspreadfreq; 1965 1966 1967 struct smudpm_i2ccontrollerconfig_t i2ccontrollers[7]; 1968 1969 1970 uint32_t boardreserved[10]; 1971 }; 1972 1973 enum smudpm_v4_5_i2ccontrollername_e{ 1974 SMC_V4_5_I2C_CONTROLLER_NAME_VR_GFX = 0, 1975 SMC_V4_5_I2C_CONTROLLER_NAME_VR_SOC, 1976 SMC_V4_5_I2C_CONTROLLER_NAME_VR_VDDCI, 1977 SMC_V4_5_I2C_CONTROLLER_NAME_VR_MVDD, 1978 SMC_V4_5_I2C_CONTROLLER_NAME_LIQUID0, 1979 SMC_V4_5_I2C_CONTROLLER_NAME_LIQUID1, 1980 SMC_V4_5_I2C_CONTROLLER_NAME_PLX, 1981 SMC_V4_5_I2C_CONTROLLER_NAME_SPARE, 1982 SMC_V4_5_I2C_CONTROLLER_NAME_COUNT, 1983 }; 1984 1985 enum smudpm_v4_5_i2ccontrollerthrottler_e{ 1986 SMC_V4_5_I2C_CONTROLLER_THROTTLER_TYPE_NONE = 0, 1987 SMC_V4_5_I2C_CONTROLLER_THROTTLER_VR_GFX, 1988 SMC_V4_5_I2C_CONTROLLER_THROTTLER_VR_SOC, 1989 SMC_V4_5_I2C_CONTROLLER_THROTTLER_VR_VDDCI, 1990 SMC_V4_5_I2C_CONTROLLER_THROTTLER_VR_MVDD, 1991 SMC_V4_5_I2C_CONTROLLER_THROTTLER_LIQUID0, 1992 SMC_V4_5_I2C_CONTROLLER_THROTTLER_LIQUID1, 1993 SMC_V4_5_I2C_CONTROLLER_THROTTLER_PLX, 1994 SMC_V4_5_I2C_CONTROLLER_THROTTLER_COUNT, 1995 }; 1996 1997 enum smudpm_v4_5_i2ccontrollerprotocol_e{ 1998 SMC_V4_5_I2C_CONTROLLER_PROTOCOL_VR_0, 1999 SMC_V4_5_I2C_CONTROLLER_PROTOCOL_VR_1, 2000 SMC_V4_5_I2C_CONTROLLER_PROTOCOL_TMP_0, 2001 SMC_V4_5_I2C_CONTROLLER_PROTOCOL_TMP_1, 2002 SMC_V4_5_I2C_CONTROLLER_PROTOCOL_SPARE_0, 2003 SMC_V4_5_I2C_CONTROLLER_PROTOCOL_SPARE_1, 2004 SMC_V4_5_I2C_CONTROLLER_PROTOCOL_COUNT, 2005 }; 2006 2007 struct smudpm_i2c_controller_config_v2 2008 { 2009 uint8_t Enabled; 2010 uint8_t Speed; 2011 uint8_t Padding[2]; 2012 uint32_t SlaveAddress; 2013 uint8_t ControllerPort; 2014 uint8_t ControllerName; 2015 uint8_t ThermalThrotter; 2016 uint8_t I2cProtocol; 2017 }; 2018 2019 struct atom_smc_dpm_info_v4_5 2020 { 2021 struct atom_common_table_header table_header; 2022 // SECTION: BOARD PARAMETERS 2023 // I2C Control 2024 struct smudpm_i2c_controller_config_v2 I2cControllers[8]; 2025 2026 // SVI2 Board Parameters 2027 uint16_t MaxVoltageStepGfx; // In mV(Q2) Max voltage step that SMU will request. Multiple steps are taken if voltage change exceeds this value. 2028 uint16_t MaxVoltageStepSoc; // In mV(Q2) Max voltage step that SMU will request. Multiple steps are taken if voltage change exceeds this value. 2029 2030 uint8_t VddGfxVrMapping; // Use VR_MAPPING* bitfields 2031 uint8_t VddSocVrMapping; // Use VR_MAPPING* bitfields 2032 uint8_t VddMem0VrMapping; // Use VR_MAPPING* bitfields 2033 uint8_t VddMem1VrMapping; // Use VR_MAPPING* bitfields 2034 2035 uint8_t GfxUlvPhaseSheddingMask; // set this to 1 to set PSI0/1 to 1 in ULV mode 2036 uint8_t SocUlvPhaseSheddingMask; // set this to 1 to set PSI0/1 to 1 in ULV mode 2037 uint8_t ExternalSensorPresent; // External RDI connected to TMON (aka TEMP IN) 2038 uint8_t Padding8_V; 2039 2040 // Telemetry Settings 2041 uint16_t GfxMaxCurrent; // in Amps 2042 uint8_t GfxOffset; // in Amps 2043 uint8_t Padding_TelemetryGfx; 2044 uint16_t SocMaxCurrent; // in Amps 2045 uint8_t SocOffset; // in Amps 2046 uint8_t Padding_TelemetrySoc; 2047 2048 uint16_t Mem0MaxCurrent; // in Amps 2049 uint8_t Mem0Offset; // in Amps 2050 uint8_t Padding_TelemetryMem0; 2051 2052 uint16_t Mem1MaxCurrent; // in Amps 2053 uint8_t Mem1Offset; // in Amps 2054 uint8_t Padding_TelemetryMem1; 2055 2056 // GPIO Settings 2057 uint8_t AcDcGpio; // GPIO pin configured for AC/DC switching 2058 uint8_t AcDcPolarity; // GPIO polarity for AC/DC switching 2059 uint8_t VR0HotGpio; // GPIO pin configured for VR0 HOT event 2060 uint8_t VR0HotPolarity; // GPIO polarity for VR0 HOT event 2061 2062 uint8_t VR1HotGpio; // GPIO pin configured for VR1 HOT event 2063 uint8_t VR1HotPolarity; // GPIO polarity for VR1 HOT event 2064 uint8_t GthrGpio; // GPIO pin configured for GTHR Event 2065 uint8_t GthrPolarity; // replace GPIO polarity for GTHR 2066 2067 // LED Display Settings 2068 uint8_t LedPin0; // GPIO number for LedPin[0] 2069 uint8_t LedPin1; // GPIO number for LedPin[1] 2070 uint8_t LedPin2; // GPIO number for LedPin[2] 2071 uint8_t padding8_4; 2072 2073 // GFXCLK PLL Spread Spectrum 2074 uint8_t PllGfxclkSpreadEnabled; // on or off 2075 uint8_t PllGfxclkSpreadPercent; // Q4.4 2076 uint16_t PllGfxclkSpreadFreq; // kHz 2077 2078 // GFXCLK DFLL Spread Spectrum 2079 uint8_t DfllGfxclkSpreadEnabled; // on or off 2080 uint8_t DfllGfxclkSpreadPercent; // Q4.4 2081 uint16_t DfllGfxclkSpreadFreq; // kHz 2082 2083 // UCLK Spread Spectrum 2084 uint8_t UclkSpreadEnabled; // on or off 2085 uint8_t UclkSpreadPercent; // Q4.4 2086 uint16_t UclkSpreadFreq; // kHz 2087 2088 // SOCCLK Spread Spectrum 2089 uint8_t SoclkSpreadEnabled; // on or off 2090 uint8_t SocclkSpreadPercent; // Q4.4 2091 uint16_t SocclkSpreadFreq; // kHz 2092 2093 // Total board power 2094 uint16_t TotalBoardPower; //Only needed for TCP Estimated case, where TCP = TGP+Total Board Power 2095 uint16_t BoardPadding; 2096 2097 // Mvdd Svi2 Div Ratio Setting 2098 uint32_t MvddRatio; // This is used for MVDD Vid workaround. It has 16 fractional bits (Q16.16) 2099 2100 uint32_t BoardReserved[9]; 2101 2102 }; 2103 2104 struct atom_smc_dpm_info_v4_6 2105 { 2106 struct atom_common_table_header table_header; 2107 // section: board parameters 2108 uint32_t i2c_padding[3]; // old i2c control are moved to new area 2109 2110 uint16_t maxvoltagestepgfx; // in mv(q2) max voltage step that smu will request. multiple steps are taken if voltage change exceeds this value. 2111 uint16_t maxvoltagestepsoc; // in mv(q2) max voltage step that smu will request. multiple steps are taken if voltage change exceeds this value. 2112 2113 uint8_t vddgfxvrmapping; // use vr_mapping* bitfields 2114 uint8_t vddsocvrmapping; // use vr_mapping* bitfields 2115 uint8_t vddmemvrmapping; // use vr_mapping* bitfields 2116 uint8_t boardvrmapping; // use vr_mapping* bitfields 2117 2118 uint8_t gfxulvphasesheddingmask; // set this to 1 to set psi0/1 to 1 in ulv mode 2119 uint8_t externalsensorpresent; // external rdi connected to tmon (aka temp in) 2120 uint8_t padding8_v[2]; 2121 2122 // telemetry settings 2123 uint16_t gfxmaxcurrent; // in amps 2124 uint8_t gfxoffset; // in amps 2125 uint8_t padding_telemetrygfx; 2126 2127 uint16_t socmaxcurrent; // in amps 2128 uint8_t socoffset; // in amps 2129 uint8_t padding_telemetrysoc; 2130 2131 uint16_t memmaxcurrent; // in amps 2132 uint8_t memoffset; // in amps 2133 uint8_t padding_telemetrymem; 2134 2135 uint16_t boardmaxcurrent; // in amps 2136 uint8_t boardoffset; // in amps 2137 uint8_t padding_telemetryboardinput; 2138 2139 // gpio settings 2140 uint8_t vr0hotgpio; // gpio pin configured for vr0 hot event 2141 uint8_t vr0hotpolarity; // gpio polarity for vr0 hot event 2142 uint8_t vr1hotgpio; // gpio pin configured for vr1 hot event 2143 uint8_t vr1hotpolarity; // gpio polarity for vr1 hot event 2144 2145 // gfxclk pll spread spectrum 2146 uint8_t pllgfxclkspreadenabled; // on or off 2147 uint8_t pllgfxclkspreadpercent; // q4.4 2148 uint16_t pllgfxclkspreadfreq; // khz 2149 2150 // uclk spread spectrum 2151 uint8_t uclkspreadenabled; // on or off 2152 uint8_t uclkspreadpercent; // q4.4 2153 uint16_t uclkspreadfreq; // khz 2154 2155 // fclk spread spectrum 2156 uint8_t fclkspreadenabled; // on or off 2157 uint8_t fclkspreadpercent; // q4.4 2158 uint16_t fclkspreadfreq; // khz 2159 2160 2161 // gfxclk fll spread spectrum 2162 uint8_t fllgfxclkspreadenabled; // on or off 2163 uint8_t fllgfxclkspreadpercent; // q4.4 2164 uint16_t fllgfxclkspreadfreq; // khz 2165 2166 // i2c controller structure 2167 struct smudpm_i2c_controller_config_v2 i2ccontrollers[8]; 2168 2169 // memory section 2170 uint32_t memorychannelenabled; // for dram use only, max 32 channels enabled bit mask. 2171 2172 uint8_t drambitwidth; // for dram use only. see dram bit width type defines 2173 uint8_t paddingmem[3]; 2174 2175 // total board power 2176 uint16_t totalboardpower; //only needed for tcp estimated case, where tcp = tgp+total board power 2177 uint16_t boardpadding; 2178 2179 // section: xgmi training 2180 uint8_t xgmilinkspeed[4]; 2181 uint8_t xgmilinkwidth[4]; 2182 2183 uint16_t xgmifclkfreq[4]; 2184 uint16_t xgmisocvoltage[4]; 2185 2186 // reserved 2187 uint32_t boardreserved[10]; 2188 }; 2189 2190 struct atom_smc_dpm_info_v4_7 2191 { 2192 struct atom_common_table_header table_header; 2193 // SECTION: BOARD PARAMETERS 2194 // I2C Control 2195 struct smudpm_i2c_controller_config_v2 I2cControllers[8]; 2196 2197 // SVI2 Board Parameters 2198 uint16_t MaxVoltageStepGfx; // In mV(Q2) Max voltage step that SMU will request. Multiple steps are taken if voltage change exceeds this value. 2199 uint16_t MaxVoltageStepSoc; // In mV(Q2) Max voltage step that SMU will request. Multiple steps are taken if voltage change exceeds this value. 2200 2201 uint8_t VddGfxVrMapping; // Use VR_MAPPING* bitfields 2202 uint8_t VddSocVrMapping; // Use VR_MAPPING* bitfields 2203 uint8_t VddMem0VrMapping; // Use VR_MAPPING* bitfields 2204 uint8_t VddMem1VrMapping; // Use VR_MAPPING* bitfields 2205 2206 uint8_t GfxUlvPhaseSheddingMask; // set this to 1 to set PSI0/1 to 1 in ULV mode 2207 uint8_t SocUlvPhaseSheddingMask; // set this to 1 to set PSI0/1 to 1 in ULV mode 2208 uint8_t ExternalSensorPresent; // External RDI connected to TMON (aka TEMP IN) 2209 uint8_t Padding8_V; 2210 2211 // Telemetry Settings 2212 uint16_t GfxMaxCurrent; // in Amps 2213 uint8_t GfxOffset; // in Amps 2214 uint8_t Padding_TelemetryGfx; 2215 uint16_t SocMaxCurrent; // in Amps 2216 uint8_t SocOffset; // in Amps 2217 uint8_t Padding_TelemetrySoc; 2218 2219 uint16_t Mem0MaxCurrent; // in Amps 2220 uint8_t Mem0Offset; // in Amps 2221 uint8_t Padding_TelemetryMem0; 2222 2223 uint16_t Mem1MaxCurrent; // in Amps 2224 uint8_t Mem1Offset; // in Amps 2225 uint8_t Padding_TelemetryMem1; 2226 2227 // GPIO Settings 2228 uint8_t AcDcGpio; // GPIO pin configured for AC/DC switching 2229 uint8_t AcDcPolarity; // GPIO polarity for AC/DC switching 2230 uint8_t VR0HotGpio; // GPIO pin configured for VR0 HOT event 2231 uint8_t VR0HotPolarity; // GPIO polarity for VR0 HOT event 2232 2233 uint8_t VR1HotGpio; // GPIO pin configured for VR1 HOT event 2234 uint8_t VR1HotPolarity; // GPIO polarity for VR1 HOT event 2235 uint8_t GthrGpio; // GPIO pin configured for GTHR Event 2236 uint8_t GthrPolarity; // replace GPIO polarity for GTHR 2237 2238 // LED Display Settings 2239 uint8_t LedPin0; // GPIO number for LedPin[0] 2240 uint8_t LedPin1; // GPIO number for LedPin[1] 2241 uint8_t LedPin2; // GPIO number for LedPin[2] 2242 uint8_t padding8_4; 2243 2244 // GFXCLK PLL Spread Spectrum 2245 uint8_t PllGfxclkSpreadEnabled; // on or off 2246 uint8_t PllGfxclkSpreadPercent; // Q4.4 2247 uint16_t PllGfxclkSpreadFreq; // kHz 2248 2249 // GFXCLK DFLL Spread Spectrum 2250 uint8_t DfllGfxclkSpreadEnabled; // on or off 2251 uint8_t DfllGfxclkSpreadPercent; // Q4.4 2252 uint16_t DfllGfxclkSpreadFreq; // kHz 2253 2254 // UCLK Spread Spectrum 2255 uint8_t UclkSpreadEnabled; // on or off 2256 uint8_t UclkSpreadPercent; // Q4.4 2257 uint16_t UclkSpreadFreq; // kHz 2258 2259 // SOCCLK Spread Spectrum 2260 uint8_t SoclkSpreadEnabled; // on or off 2261 uint8_t SocclkSpreadPercent; // Q4.4 2262 uint16_t SocclkSpreadFreq; // kHz 2263 2264 // Total board power 2265 uint16_t TotalBoardPower; //Only needed for TCP Estimated case, where TCP = TGP+Total Board Power 2266 uint16_t BoardPadding; 2267 2268 // Mvdd Svi2 Div Ratio Setting 2269 uint32_t MvddRatio; // This is used for MVDD Vid workaround. It has 16 fractional bits (Q16.16) 2270 2271 // GPIO pins for I2C communications with 2nd controller for Input Telemetry Sequence 2272 uint8_t GpioI2cScl; // Serial Clock 2273 uint8_t GpioI2cSda; // Serial Data 2274 uint16_t GpioPadding; 2275 2276 // Additional LED Display Settings 2277 uint8_t LedPin3; // GPIO number for LedPin[3] - PCIE GEN Speed 2278 uint8_t LedPin4; // GPIO number for LedPin[4] - PMFW Error Status 2279 uint16_t LedEnableMask; 2280 2281 // Power Limit Scalars 2282 uint8_t PowerLimitScalar[4]; //[PPT_THROTTLER_COUNT] 2283 2284 uint8_t MvddUlvPhaseSheddingMask; 2285 uint8_t VddciUlvPhaseSheddingMask; 2286 uint8_t Padding8_Psi1; 2287 uint8_t Padding8_Psi2; 2288 2289 uint32_t BoardReserved[5]; 2290 }; 2291 2292 struct smudpm_i2c_controller_config_v3 2293 { 2294 uint8_t Enabled; 2295 uint8_t Speed; 2296 uint8_t SlaveAddress; 2297 uint8_t ControllerPort; 2298 uint8_t ControllerName; 2299 uint8_t ThermalThrotter; 2300 uint8_t I2cProtocol; 2301 uint8_t PaddingConfig; 2302 }; 2303 2304 struct atom_smc_dpm_info_v4_9 2305 { 2306 struct atom_common_table_header table_header; 2307 2308 //SECTION: Gaming Clocks 2309 //uint32_t GamingClk[6]; 2310 2311 // SECTION: I2C Control 2312 struct smudpm_i2c_controller_config_v3 I2cControllers[16]; 2313 2314 uint8_t GpioScl; // GPIO Number for SCL Line, used only for CKSVII2C1 2315 uint8_t GpioSda; // GPIO Number for SDA Line, used only for CKSVII2C1 2316 uint8_t FchUsbPdSlaveAddr; //For requesting USB PD controller S-states via FCH I2C when entering PME turn off 2317 uint8_t I2cSpare; 2318 2319 // SECTION: SVI2 Board Parameters 2320 uint8_t VddGfxVrMapping; // Use VR_MAPPING* bitfields 2321 uint8_t VddSocVrMapping; // Use VR_MAPPING* bitfields 2322 uint8_t VddMem0VrMapping; // Use VR_MAPPING* bitfields 2323 uint8_t VddMem1VrMapping; // Use VR_MAPPING* bitfields 2324 2325 uint8_t GfxUlvPhaseSheddingMask; // set this to 1 to set PSI0/1 to 1 in ULV mode 2326 uint8_t SocUlvPhaseSheddingMask; // set this to 1 to set PSI0/1 to 1 in ULV mode 2327 uint8_t VddciUlvPhaseSheddingMask; // set this to 1 to set PSI0/1 to 1 in ULV mode 2328 uint8_t MvddUlvPhaseSheddingMask; // set this to 1 to set PSI0/1 to 1 in ULV mode 2329 2330 // SECTION: Telemetry Settings 2331 uint16_t GfxMaxCurrent; // in Amps 2332 uint8_t GfxOffset; // in Amps 2333 uint8_t Padding_TelemetryGfx; 2334 2335 uint16_t SocMaxCurrent; // in Amps 2336 uint8_t SocOffset; // in Amps 2337 uint8_t Padding_TelemetrySoc; 2338 2339 uint16_t Mem0MaxCurrent; // in Amps 2340 uint8_t Mem0Offset; // in Amps 2341 uint8_t Padding_TelemetryMem0; 2342 2343 uint16_t Mem1MaxCurrent; // in Amps 2344 uint8_t Mem1Offset; // in Amps 2345 uint8_t Padding_TelemetryMem1; 2346 2347 uint32_t MvddRatio; // This is used for MVDD Svi2 Div Ratio workaround. It has 16 fractional bits (Q16.16) 2348 2349 // SECTION: GPIO Settings 2350 uint8_t AcDcGpio; // GPIO pin configured for AC/DC switching 2351 uint8_t AcDcPolarity; // GPIO polarity for AC/DC switching 2352 uint8_t VR0HotGpio; // GPIO pin configured for VR0 HOT event 2353 uint8_t VR0HotPolarity; // GPIO polarity for VR0 HOT event 2354 2355 uint8_t VR1HotGpio; // GPIO pin configured for VR1 HOT event 2356 uint8_t VR1HotPolarity; // GPIO polarity for VR1 HOT event 2357 uint8_t GthrGpio; // GPIO pin configured for GTHR Event 2358 uint8_t GthrPolarity; // replace GPIO polarity for GTHR 2359 2360 // LED Display Settings 2361 uint8_t LedPin0; // GPIO number for LedPin[0] 2362 uint8_t LedPin1; // GPIO number for LedPin[1] 2363 uint8_t LedPin2; // GPIO number for LedPin[2] 2364 uint8_t LedEnableMask; 2365 2366 uint8_t LedPcie; // GPIO number for PCIE results 2367 uint8_t LedError; // GPIO number for Error Cases 2368 uint8_t LedSpare1[2]; 2369 2370 // SECTION: Clock Spread Spectrum 2371 2372 // GFXCLK PLL Spread Spectrum 2373 uint8_t PllGfxclkSpreadEnabled; // on or off 2374 uint8_t PllGfxclkSpreadPercent; // Q4.4 2375 uint16_t PllGfxclkSpreadFreq; // kHz 2376 2377 // GFXCLK DFLL Spread Spectrum 2378 uint8_t DfllGfxclkSpreadEnabled; // on or off 2379 uint8_t DfllGfxclkSpreadPercent; // Q4.4 2380 uint16_t DfllGfxclkSpreadFreq; // kHz 2381 2382 // UCLK Spread Spectrum 2383 uint8_t UclkSpreadEnabled; // on or off 2384 uint8_t UclkSpreadPercent; // Q4.4 2385 uint16_t UclkSpreadFreq; // kHz 2386 2387 // FCLK Spread Spectrum 2388 uint8_t FclkSpreadEnabled; // on or off 2389 uint8_t FclkSpreadPercent; // Q4.4 2390 uint16_t FclkSpreadFreq; // kHz 2391 2392 // Section: Memory Config 2393 uint32_t MemoryChannelEnabled; // For DRAM use only, Max 32 channels enabled bit mask. 2394 2395 uint8_t DramBitWidth; // For DRAM use only. See Dram Bit width type defines 2396 uint8_t PaddingMem1[3]; 2397 2398 // Section: Total Board Power 2399 uint16_t TotalBoardPower; //Only needed for TCP Estimated case, where TCP = TGP+Total Board Power 2400 uint16_t BoardPowerPadding; 2401 2402 // SECTION: XGMI Training 2403 uint8_t XgmiLinkSpeed [4]; 2404 uint8_t XgmiLinkWidth [4]; 2405 2406 uint16_t XgmiFclkFreq [4]; 2407 uint16_t XgmiSocVoltage [4]; 2408 2409 // SECTION: Board Reserved 2410 2411 uint32_t BoardReserved[16]; 2412 2413 }; 2414 2415 struct atom_smc_dpm_info_v4_10 2416 { 2417 struct atom_common_table_header table_header; 2418 2419 // SECTION: BOARD PARAMETERS 2420 // Telemetry Settings 2421 uint16_t GfxMaxCurrent; // in Amps 2422 uint8_t GfxOffset; // in Amps 2423 uint8_t Padding_TelemetryGfx; 2424 2425 uint16_t SocMaxCurrent; // in Amps 2426 uint8_t SocOffset; // in Amps 2427 uint8_t Padding_TelemetrySoc; 2428 2429 uint16_t MemMaxCurrent; // in Amps 2430 uint8_t MemOffset; // in Amps 2431 uint8_t Padding_TelemetryMem; 2432 2433 uint16_t BoardMaxCurrent; // in Amps 2434 uint8_t BoardOffset; // in Amps 2435 uint8_t Padding_TelemetryBoardInput; 2436 2437 // Platform input telemetry voltage coefficient 2438 uint32_t BoardVoltageCoeffA; // decode by /1000 2439 uint32_t BoardVoltageCoeffB; // decode by /1000 2440 2441 // GPIO Settings 2442 uint8_t VR0HotGpio; // GPIO pin configured for VR0 HOT event 2443 uint8_t VR0HotPolarity; // GPIO polarity for VR0 HOT event 2444 uint8_t VR1HotGpio; // GPIO pin configured for VR1 HOT event 2445 uint8_t VR1HotPolarity; // GPIO polarity for VR1 HOT event 2446 2447 // UCLK Spread Spectrum 2448 uint8_t UclkSpreadEnabled; // on or off 2449 uint8_t UclkSpreadPercent; // Q4.4 2450 uint16_t UclkSpreadFreq; // kHz 2451 2452 // FCLK Spread Spectrum 2453 uint8_t FclkSpreadEnabled; // on or off 2454 uint8_t FclkSpreadPercent; // Q4.4 2455 uint16_t FclkSpreadFreq; // kHz 2456 2457 // I2C Controller Structure 2458 struct smudpm_i2c_controller_config_v3 I2cControllers[8]; 2459 2460 // GPIO pins for I2C communications with 2nd controller for Input Telemetry Sequence 2461 uint8_t GpioI2cScl; // Serial Clock 2462 uint8_t GpioI2cSda; // Serial Data 2463 uint16_t spare5; 2464 2465 uint32_t reserved[16]; 2466 }; 2467 2468 /* 2469 *************************************************************************** 2470 Data Table asic_profiling_info structure 2471 *************************************************************************** 2472 */ 2473 struct atom_asic_profiling_info_v4_1 2474 { 2475 struct atom_common_table_header table_header; 2476 uint32_t maxvddc; 2477 uint32_t minvddc; 2478 uint32_t avfs_meannsigma_acontant0; 2479 uint32_t avfs_meannsigma_acontant1; 2480 uint32_t avfs_meannsigma_acontant2; 2481 uint16_t avfs_meannsigma_dc_tol_sigma; 2482 uint16_t avfs_meannsigma_platform_mean; 2483 uint16_t avfs_meannsigma_platform_sigma; 2484 uint32_t gb_vdroop_table_cksoff_a0; 2485 uint32_t gb_vdroop_table_cksoff_a1; 2486 uint32_t gb_vdroop_table_cksoff_a2; 2487 uint32_t gb_vdroop_table_ckson_a0; 2488 uint32_t gb_vdroop_table_ckson_a1; 2489 uint32_t gb_vdroop_table_ckson_a2; 2490 uint32_t avfsgb_fuse_table_cksoff_m1; 2491 uint32_t avfsgb_fuse_table_cksoff_m2; 2492 uint32_t avfsgb_fuse_table_cksoff_b; 2493 uint32_t avfsgb_fuse_table_ckson_m1; 2494 uint32_t avfsgb_fuse_table_ckson_m2; 2495 uint32_t avfsgb_fuse_table_ckson_b; 2496 uint16_t max_voltage_0_25mv; 2497 uint8_t enable_gb_vdroop_table_cksoff; 2498 uint8_t enable_gb_vdroop_table_ckson; 2499 uint8_t enable_gb_fuse_table_cksoff; 2500 uint8_t enable_gb_fuse_table_ckson; 2501 uint16_t psm_age_comfactor; 2502 uint8_t enable_apply_avfs_cksoff_voltage; 2503 uint8_t reserved; 2504 uint32_t dispclk2gfxclk_a; 2505 uint32_t dispclk2gfxclk_b; 2506 uint32_t dispclk2gfxclk_c; 2507 uint32_t pixclk2gfxclk_a; 2508 uint32_t pixclk2gfxclk_b; 2509 uint32_t pixclk2gfxclk_c; 2510 uint32_t dcefclk2gfxclk_a; 2511 uint32_t dcefclk2gfxclk_b; 2512 uint32_t dcefclk2gfxclk_c; 2513 uint32_t phyclk2gfxclk_a; 2514 uint32_t phyclk2gfxclk_b; 2515 uint32_t phyclk2gfxclk_c; 2516 }; 2517 2518 struct atom_asic_profiling_info_v4_2 { 2519 struct atom_common_table_header table_header; 2520 uint32_t maxvddc; 2521 uint32_t minvddc; 2522 uint32_t avfs_meannsigma_acontant0; 2523 uint32_t avfs_meannsigma_acontant1; 2524 uint32_t avfs_meannsigma_acontant2; 2525 uint16_t avfs_meannsigma_dc_tol_sigma; 2526 uint16_t avfs_meannsigma_platform_mean; 2527 uint16_t avfs_meannsigma_platform_sigma; 2528 uint32_t gb_vdroop_table_cksoff_a0; 2529 uint32_t gb_vdroop_table_cksoff_a1; 2530 uint32_t gb_vdroop_table_cksoff_a2; 2531 uint32_t gb_vdroop_table_ckson_a0; 2532 uint32_t gb_vdroop_table_ckson_a1; 2533 uint32_t gb_vdroop_table_ckson_a2; 2534 uint32_t avfsgb_fuse_table_cksoff_m1; 2535 uint32_t avfsgb_fuse_table_cksoff_m2; 2536 uint32_t avfsgb_fuse_table_cksoff_b; 2537 uint32_t avfsgb_fuse_table_ckson_m1; 2538 uint32_t avfsgb_fuse_table_ckson_m2; 2539 uint32_t avfsgb_fuse_table_ckson_b; 2540 uint16_t max_voltage_0_25mv; 2541 uint8_t enable_gb_vdroop_table_cksoff; 2542 uint8_t enable_gb_vdroop_table_ckson; 2543 uint8_t enable_gb_fuse_table_cksoff; 2544 uint8_t enable_gb_fuse_table_ckson; 2545 uint16_t psm_age_comfactor; 2546 uint8_t enable_apply_avfs_cksoff_voltage; 2547 uint8_t reserved; 2548 uint32_t dispclk2gfxclk_a; 2549 uint32_t dispclk2gfxclk_b; 2550 uint32_t dispclk2gfxclk_c; 2551 uint32_t pixclk2gfxclk_a; 2552 uint32_t pixclk2gfxclk_b; 2553 uint32_t pixclk2gfxclk_c; 2554 uint32_t dcefclk2gfxclk_a; 2555 uint32_t dcefclk2gfxclk_b; 2556 uint32_t dcefclk2gfxclk_c; 2557 uint32_t phyclk2gfxclk_a; 2558 uint32_t phyclk2gfxclk_b; 2559 uint32_t phyclk2gfxclk_c; 2560 uint32_t acg_gb_vdroop_table_a0; 2561 uint32_t acg_gb_vdroop_table_a1; 2562 uint32_t acg_gb_vdroop_table_a2; 2563 uint32_t acg_avfsgb_fuse_table_m1; 2564 uint32_t acg_avfsgb_fuse_table_m2; 2565 uint32_t acg_avfsgb_fuse_table_b; 2566 uint8_t enable_acg_gb_vdroop_table; 2567 uint8_t enable_acg_gb_fuse_table; 2568 uint32_t acg_dispclk2gfxclk_a; 2569 uint32_t acg_dispclk2gfxclk_b; 2570 uint32_t acg_dispclk2gfxclk_c; 2571 uint32_t acg_pixclk2gfxclk_a; 2572 uint32_t acg_pixclk2gfxclk_b; 2573 uint32_t acg_pixclk2gfxclk_c; 2574 uint32_t acg_dcefclk2gfxclk_a; 2575 uint32_t acg_dcefclk2gfxclk_b; 2576 uint32_t acg_dcefclk2gfxclk_c; 2577 uint32_t acg_phyclk2gfxclk_a; 2578 uint32_t acg_phyclk2gfxclk_b; 2579 uint32_t acg_phyclk2gfxclk_c; 2580 }; 2581 2582 /* 2583 *************************************************************************** 2584 Data Table multimedia_info structure 2585 *************************************************************************** 2586 */ 2587 struct atom_multimedia_info_v2_1 2588 { 2589 struct atom_common_table_header table_header; 2590 uint8_t uvdip_min_ver; 2591 uint8_t uvdip_max_ver; 2592 uint8_t vceip_min_ver; 2593 uint8_t vceip_max_ver; 2594 uint16_t uvd_enc_max_input_width_pixels; 2595 uint16_t uvd_enc_max_input_height_pixels; 2596 uint16_t vce_enc_max_input_width_pixels; 2597 uint16_t vce_enc_max_input_height_pixels; 2598 uint32_t uvd_enc_max_bandwidth; // 16x16 pixels/sec, codec independent 2599 uint32_t vce_enc_max_bandwidth; // 16x16 pixels/sec, codec independent 2600 }; 2601 2602 2603 /* 2604 *************************************************************************** 2605 Data Table umc_info structure 2606 *************************************************************************** 2607 */ 2608 struct atom_umc_info_v3_1 2609 { 2610 struct atom_common_table_header table_header; 2611 uint32_t ucode_version; 2612 uint32_t ucode_rom_startaddr; 2613 uint32_t ucode_length; 2614 uint16_t umc_reg_init_offset; 2615 uint16_t customer_ucode_name_offset; 2616 uint16_t mclk_ss_percentage; 2617 uint16_t mclk_ss_rate_10hz; 2618 uint8_t umcip_min_ver; 2619 uint8_t umcip_max_ver; 2620 uint8_t vram_type; //enum of atom_dgpu_vram_type 2621 uint8_t umc_config; 2622 uint32_t mem_refclk_10khz; 2623 }; 2624 2625 // umc_info.umc_config 2626 enum atom_umc_config_def { 2627 UMC_CONFIG__ENABLE_1KB_INTERLEAVE_MODE = 0x00000001, 2628 UMC_CONFIG__DEFAULT_MEM_ECC_ENABLE = 0x00000002, 2629 UMC_CONFIG__ENABLE_HBM_LANE_REPAIR = 0x00000004, 2630 UMC_CONFIG__ENABLE_BANK_HARVESTING = 0x00000008, 2631 UMC_CONFIG__ENABLE_PHY_REINIT = 0x00000010, 2632 UMC_CONFIG__DISABLE_UCODE_CHKSTATUS = 0x00000020, 2633 }; 2634 2635 struct atom_umc_info_v3_2 2636 { 2637 struct atom_common_table_header table_header; 2638 uint32_t ucode_version; 2639 uint32_t ucode_rom_startaddr; 2640 uint32_t ucode_length; 2641 uint16_t umc_reg_init_offset; 2642 uint16_t customer_ucode_name_offset; 2643 uint16_t mclk_ss_percentage; 2644 uint16_t mclk_ss_rate_10hz; 2645 uint8_t umcip_min_ver; 2646 uint8_t umcip_max_ver; 2647 uint8_t vram_type; //enum of atom_dgpu_vram_type 2648 uint8_t umc_config; 2649 uint32_t mem_refclk_10khz; 2650 uint32_t pstate_uclk_10khz[4]; 2651 uint16_t umcgoldenoffset; 2652 uint16_t densitygoldenoffset; 2653 }; 2654 2655 struct atom_umc_info_v3_3 2656 { 2657 struct atom_common_table_header table_header; 2658 uint32_t ucode_reserved; 2659 uint32_t ucode_rom_startaddr; 2660 uint32_t ucode_length; 2661 uint16_t umc_reg_init_offset; 2662 uint16_t customer_ucode_name_offset; 2663 uint16_t mclk_ss_percentage; 2664 uint16_t mclk_ss_rate_10hz; 2665 uint8_t umcip_min_ver; 2666 uint8_t umcip_max_ver; 2667 uint8_t vram_type; //enum of atom_dgpu_vram_type 2668 uint8_t umc_config; 2669 uint32_t mem_refclk_10khz; 2670 uint32_t pstate_uclk_10khz[4]; 2671 uint16_t umcgoldenoffset; 2672 uint16_t densitygoldenoffset; 2673 uint32_t umc_config1; 2674 uint32_t bist_data_startaddr; 2675 uint32_t reserved[2]; 2676 }; 2677 2678 enum atom_umc_config1_def { 2679 UMC_CONFIG1__ENABLE_PSTATE_PHASE_STORE_TRAIN = 0x00000001, 2680 UMC_CONFIG1__ENABLE_AUTO_FRAMING = 0x00000002, 2681 UMC_CONFIG1__ENABLE_RESTORE_BIST_DATA = 0x00000004, 2682 UMC_CONFIG1__DISABLE_STROBE_MODE = 0x00000008, 2683 UMC_CONFIG1__DEBUG_DATA_PARITY_EN = 0x00000010, 2684 UMC_CONFIG1__ENABLE_ECC_CAPABLE = 0x00010000, 2685 }; 2686 2687 /* 2688 *************************************************************************** 2689 Data Table vram_info structure 2690 *************************************************************************** 2691 */ 2692 struct atom_vram_module_v9 { 2693 // Design Specific Values 2694 uint32_t memory_size; // Total memory size in unit of MB for CONFIG_MEMSIZE zeros 2695 uint32_t channel_enable; // bit vector, each bit indicate specific channel enable or not 2696 uint32_t max_mem_clk; // max memory clock of this memory in unit of 10kHz, =0 means it is not defined 2697 uint16_t reserved[3]; 2698 uint16_t mem_voltage; // mem_voltage 2699 uint16_t vram_module_size; // Size of atom_vram_module_v9 2700 uint8_t ext_memory_id; // Current memory module ID 2701 uint8_t memory_type; // enum of atom_dgpu_vram_type 2702 uint8_t channel_num; // Number of mem. channels supported in this module 2703 uint8_t channel_width; // CHANNEL_16BIT/CHANNEL_32BIT/CHANNEL_64BIT 2704 uint8_t density; // _8Mx32, _16Mx32, _16Mx16, _32Mx16 2705 uint8_t tunningset_id; // MC phy registers set per. 2706 uint8_t vender_rev_id; // [7:4] Revision, [3:0] Vendor code 2707 uint8_t refreshrate; // [1:0]=RefreshFactor (00=8ms, 01=16ms, 10=32ms,11=64ms) 2708 uint8_t hbm_ven_rev_id; // hbm_ven_rev_id 2709 uint8_t vram_rsd2; // reserved 2710 char dram_pnstring[20]; // part number end with '0'. 2711 }; 2712 2713 struct atom_vram_info_header_v2_3 { 2714 struct atom_common_table_header table_header; 2715 uint16_t mem_adjust_tbloffset; // offset of atom_umc_init_reg_block structure for memory vendor specific UMC adjust setting 2716 uint16_t mem_clk_patch_tbloffset; // offset of atom_umc_init_reg_block structure for memory clock specific UMC setting 2717 uint16_t mc_adjust_pertile_tbloffset; // offset of atom_umc_init_reg_block structure for Per Byte Offset Preset Settings 2718 uint16_t mc_phyinit_tbloffset; // offset of atom_umc_init_reg_block structure for MC phy init set 2719 uint16_t dram_data_remap_tbloffset; // reserved for now 2720 uint16_t tmrs_seq_offset; // offset of HBM tmrs 2721 uint16_t post_ucode_init_offset; // offset of atom_umc_init_reg_block structure for MC phy init after MC uCode complete umc init 2722 uint16_t vram_rsd2; 2723 uint8_t vram_module_num; // indicate number of VRAM module 2724 uint8_t umcip_min_ver; 2725 uint8_t umcip_max_ver; 2726 uint8_t mc_phy_tile_num; // indicate the MCD tile number which use in DramDataRemapTbl and usMcAdjustPerTileTblOffset 2727 struct atom_vram_module_v9 vram_module[16]; // just for allocation, real number of blocks is in ucNumOfVRAMModule; 2728 }; 2729 2730 struct atom_umc_register_addr_info{ 2731 uint32_t umc_register_addr:24; 2732 uint32_t umc_reg_type_ind:1; 2733 uint32_t umc_reg_rsvd:7; 2734 }; 2735 2736 //atom_umc_register_addr_info. 2737 enum atom_umc_register_addr_info_flag{ 2738 b3ATOM_UMC_REG_ADD_INFO_INDIRECT_ACCESS =0x01, 2739 }; 2740 2741 union atom_umc_register_addr_info_access 2742 { 2743 struct atom_umc_register_addr_info umc_reg_addr; 2744 uint32_t u32umc_reg_addr; 2745 }; 2746 2747 struct atom_umc_reg_setting_id_config{ 2748 uint32_t memclockrange:24; 2749 uint32_t mem_blk_id:8; 2750 }; 2751 2752 union atom_umc_reg_setting_id_config_access 2753 { 2754 struct atom_umc_reg_setting_id_config umc_id_access; 2755 uint32_t u32umc_id_access; 2756 }; 2757 2758 struct atom_umc_reg_setting_data_block{ 2759 union atom_umc_reg_setting_id_config_access block_id; 2760 uint32_t u32umc_reg_data[1]; 2761 }; 2762 2763 struct atom_umc_init_reg_block{ 2764 uint16_t umc_reg_num; 2765 uint16_t reserved; 2766 union atom_umc_register_addr_info_access umc_reg_list[1]; //for allocation purpose, the real number come from umc_reg_num; 2767 struct atom_umc_reg_setting_data_block umc_reg_setting_list[1]; 2768 }; 2769 2770 struct atom_vram_module_v10 { 2771 // Design Specific Values 2772 uint32_t memory_size; // Total memory size in unit of MB for CONFIG_MEMSIZE zeros 2773 uint32_t channel_enable; // bit vector, each bit indicate specific channel enable or not 2774 uint32_t max_mem_clk; // max memory clock of this memory in unit of 10kHz, =0 means it is not defined 2775 uint16_t reserved[3]; 2776 uint16_t mem_voltage; // mem_voltage 2777 uint16_t vram_module_size; // Size of atom_vram_module_v9 2778 uint8_t ext_memory_id; // Current memory module ID 2779 uint8_t memory_type; // enum of atom_dgpu_vram_type 2780 uint8_t channel_num; // Number of mem. channels supported in this module 2781 uint8_t channel_width; // CHANNEL_16BIT/CHANNEL_32BIT/CHANNEL_64BIT 2782 uint8_t density; // _8Mx32, _16Mx32, _16Mx16, _32Mx16 2783 uint8_t tunningset_id; // MC phy registers set per 2784 uint8_t vender_rev_id; // [7:4] Revision, [3:0] Vendor code 2785 uint8_t refreshrate; // [1:0]=RefreshFactor (00=8ms, 01=16ms, 10=32ms,11=64ms) 2786 uint8_t vram_flags; // bit0= bankgroup enable 2787 uint8_t vram_rsd2; // reserved 2788 uint16_t gddr6_mr10; // gddr6 mode register10 value 2789 uint16_t gddr6_mr1; // gddr6 mode register1 value 2790 uint16_t gddr6_mr2; // gddr6 mode register2 value 2791 uint16_t gddr6_mr7; // gddr6 mode register7 value 2792 char dram_pnstring[20]; // part number end with '0' 2793 }; 2794 2795 struct atom_vram_info_header_v2_4 { 2796 struct atom_common_table_header table_header; 2797 uint16_t mem_adjust_tbloffset; // offset of atom_umc_init_reg_block structure for memory vendor specific UMC adjust setting 2798 uint16_t mem_clk_patch_tbloffset; // offset of atom_umc_init_reg_block structure for memory clock specific UMC setting 2799 uint16_t mc_adjust_pertile_tbloffset; // offset of atom_umc_init_reg_block structure for Per Byte Offset Preset Settings 2800 uint16_t mc_phyinit_tbloffset; // offset of atom_umc_init_reg_block structure for MC phy init set 2801 uint16_t dram_data_remap_tbloffset; // reserved for now 2802 uint16_t reserved; // offset of reserved 2803 uint16_t post_ucode_init_offset; // offset of atom_umc_init_reg_block structure for MC phy init after MC uCode complete umc init 2804 uint16_t vram_rsd2; 2805 uint8_t vram_module_num; // indicate number of VRAM module 2806 uint8_t umcip_min_ver; 2807 uint8_t umcip_max_ver; 2808 uint8_t mc_phy_tile_num; // indicate the MCD tile number which use in DramDataRemapTbl and usMcAdjustPerTileTblOffset 2809 struct atom_vram_module_v10 vram_module[16]; // just for allocation, real number of blocks is in ucNumOfVRAMModule; 2810 }; 2811 2812 struct atom_vram_module_v11 { 2813 // Design Specific Values 2814 uint32_t memory_size; // Total memory size in unit of MB for CONFIG_MEMSIZE zeros 2815 uint32_t channel_enable; // bit vector, each bit indicate specific channel enable or not 2816 uint16_t mem_voltage; // mem_voltage 2817 uint16_t vram_module_size; // Size of atom_vram_module_v9 2818 uint8_t ext_memory_id; // Current memory module ID 2819 uint8_t memory_type; // enum of atom_dgpu_vram_type 2820 uint8_t channel_num; // Number of mem. channels supported in this module 2821 uint8_t channel_width; // CHANNEL_16BIT/CHANNEL_32BIT/CHANNEL_64BIT 2822 uint8_t density; // _8Mx32, _16Mx32, _16Mx16, _32Mx16 2823 uint8_t tunningset_id; // MC phy registers set per. 2824 uint16_t reserved[4]; // reserved 2825 uint8_t vender_rev_id; // [7:4] Revision, [3:0] Vendor code 2826 uint8_t refreshrate; // [1:0]=RefreshFactor (00=8ms, 01=16ms, 10=32ms,11=64ms) 2827 uint8_t vram_flags; // bit0= bankgroup enable 2828 uint8_t vram_rsd2; // reserved 2829 uint16_t gddr6_mr10; // gddr6 mode register10 value 2830 uint16_t gddr6_mr0; // gddr6 mode register0 value 2831 uint16_t gddr6_mr1; // gddr6 mode register1 value 2832 uint16_t gddr6_mr2; // gddr6 mode register2 value 2833 uint16_t gddr6_mr4; // gddr6 mode register4 value 2834 uint16_t gddr6_mr7; // gddr6 mode register7 value 2835 uint16_t gddr6_mr8; // gddr6 mode register8 value 2836 char dram_pnstring[40]; // part number end with '0'. 2837 }; 2838 2839 struct atom_gddr6_ac_timing_v2_5 { 2840 uint32_t u32umc_id_access; 2841 uint8_t RL; 2842 uint8_t WL; 2843 uint8_t tRAS; 2844 uint8_t tRC; 2845 2846 uint16_t tREFI; 2847 uint8_t tRFC; 2848 uint8_t tRFCpb; 2849 2850 uint8_t tRREFD; 2851 uint8_t tRCDRD; 2852 uint8_t tRCDWR; 2853 uint8_t tRP; 2854 2855 uint8_t tRRDS; 2856 uint8_t tRRDL; 2857 uint8_t tWR; 2858 uint8_t tWTRS; 2859 2860 uint8_t tWTRL; 2861 uint8_t tFAW; 2862 uint8_t tCCDS; 2863 uint8_t tCCDL; 2864 2865 uint8_t tCRCRL; 2866 uint8_t tCRCWL; 2867 uint8_t tCKE; 2868 uint8_t tCKSRE; 2869 2870 uint8_t tCKSRX; 2871 uint8_t tRTPS; 2872 uint8_t tRTPL; 2873 uint8_t tMRD; 2874 2875 uint8_t tMOD; 2876 uint8_t tXS; 2877 uint8_t tXHP; 2878 uint8_t tXSMRS; 2879 2880 uint32_t tXSH; 2881 2882 uint8_t tPD; 2883 uint8_t tXP; 2884 uint8_t tCPDED; 2885 uint8_t tACTPDE; 2886 2887 uint8_t tPREPDE; 2888 uint8_t tREFPDE; 2889 uint8_t tMRSPDEN; 2890 uint8_t tRDSRE; 2891 2892 uint8_t tWRSRE; 2893 uint8_t tPPD; 2894 uint8_t tCCDMW; 2895 uint8_t tWTRTR; 2896 2897 uint8_t tLTLTR; 2898 uint8_t tREFTR; 2899 uint8_t VNDR; 2900 uint8_t reserved[9]; 2901 }; 2902 2903 struct atom_gddr6_bit_byte_remap { 2904 uint32_t dphy_byteremap; //mmUMC_DPHY_ByteRemap 2905 uint32_t dphy_bitremap0; //mmUMC_DPHY_BitRemap0 2906 uint32_t dphy_bitremap1; //mmUMC_DPHY_BitRemap1 2907 uint32_t dphy_bitremap2; //mmUMC_DPHY_BitRemap2 2908 uint32_t aphy_bitremap0; //mmUMC_APHY_BitRemap0 2909 uint32_t aphy_bitremap1; //mmUMC_APHY_BitRemap1 2910 uint32_t phy_dram; //mmUMC_PHY_DRAM 2911 }; 2912 2913 struct atom_gddr6_dram_data_remap { 2914 uint32_t table_size; 2915 uint8_t phyintf_ck_inverted[8]; //UMC_PHY_PHYINTF_CNTL.INV_CK 2916 struct atom_gddr6_bit_byte_remap bit_byte_remap[16]; 2917 }; 2918 2919 struct atom_vram_info_header_v2_5 { 2920 struct atom_common_table_header table_header; 2921 uint16_t mem_adjust_tbloffset; // offset of atom_umc_init_reg_block structure for memory vendor specific UMC adjust settings 2922 uint16_t gddr6_ac_timing_offset; // offset of atom_gddr6_ac_timing_v2_5 structure for memory clock specific UMC settings 2923 uint16_t mc_adjust_pertile_tbloffset; // offset of atom_umc_init_reg_block structure for Per Byte Offset Preset Settings 2924 uint16_t mc_phyinit_tbloffset; // offset of atom_umc_init_reg_block structure for MC phy init set 2925 uint16_t dram_data_remap_tbloffset; // offset of atom_gddr6_dram_data_remap array to indicate DRAM data lane to GPU mapping 2926 uint16_t reserved; // offset of reserved 2927 uint16_t post_ucode_init_offset; // offset of atom_umc_init_reg_block structure for MC phy init after MC uCode complete umc init 2928 uint16_t strobe_mode_patch_tbloffset; // offset of atom_umc_init_reg_block structure for Strobe Mode memory clock specific UMC settings 2929 uint8_t vram_module_num; // indicate number of VRAM module 2930 uint8_t umcip_min_ver; 2931 uint8_t umcip_max_ver; 2932 uint8_t mc_phy_tile_num; // indicate the MCD tile number which use in DramDataRemapTbl and usMcAdjustPerTileTblOffset 2933 struct atom_vram_module_v11 vram_module[16]; // just for allocation, real number of blocks is in ucNumOfVRAMModule; 2934 }; 2935 2936 struct atom_vram_info_header_v2_6 { 2937 struct atom_common_table_header table_header; 2938 uint16_t mem_adjust_tbloffset; 2939 uint16_t mem_clk_patch_tbloffset; 2940 uint16_t mc_adjust_pertile_tbloffset; 2941 uint16_t mc_phyinit_tbloffset; 2942 uint16_t dram_data_remap_tbloffset; 2943 uint16_t tmrs_seq_offset; 2944 uint16_t post_ucode_init_offset; 2945 uint16_t vram_rsd2; 2946 uint8_t vram_module_num; 2947 uint8_t umcip_min_ver; 2948 uint8_t umcip_max_ver; 2949 uint8_t mc_phy_tile_num; 2950 struct atom_vram_module_v9 vram_module[16]; 2951 }; 2952 /* 2953 *************************************************************************** 2954 Data Table voltageobject_info structure 2955 *************************************************************************** 2956 */ 2957 struct atom_i2c_data_entry 2958 { 2959 uint16_t i2c_reg_index; // i2c register address, can be up to 16bit 2960 uint16_t i2c_reg_data; // i2c register data, can be up to 16bit 2961 }; 2962 2963 struct atom_voltage_object_header_v4{ 2964 uint8_t voltage_type; //enum atom_voltage_type 2965 uint8_t voltage_mode; //enum atom_voltage_object_mode 2966 uint16_t object_size; //Size of Object 2967 }; 2968 2969 // atom_voltage_object_header_v4.voltage_mode 2970 enum atom_voltage_object_mode 2971 { 2972 VOLTAGE_OBJ_GPIO_LUT = 0, //VOLTAGE and GPIO Lookup table ->atom_gpio_voltage_object_v4 2973 VOLTAGE_OBJ_VR_I2C_INIT_SEQ = 3, //VOLTAGE REGULATOR INIT sequece through I2C -> atom_i2c_voltage_object_v4 2974 VOLTAGE_OBJ_PHASE_LUT = 4, //Set Vregulator Phase lookup table ->atom_gpio_voltage_object_v4 2975 VOLTAGE_OBJ_SVID2 = 7, //Indicate voltage control by SVID2 ->atom_svid2_voltage_object_v4 2976 VOLTAGE_OBJ_EVV = 8, 2977 VOLTAGE_OBJ_MERGED_POWER = 9, 2978 }; 2979 2980 struct atom_i2c_voltage_object_v4 2981 { 2982 struct atom_voltage_object_header_v4 header; // voltage mode = VOLTAGE_OBJ_VR_I2C_INIT_SEQ 2983 uint8_t regulator_id; //Indicate Voltage Regulator Id 2984 uint8_t i2c_id; 2985 uint8_t i2c_slave_addr; 2986 uint8_t i2c_control_offset; 2987 uint8_t i2c_flag; // Bit0: 0 - One byte data; 1 - Two byte data 2988 uint8_t i2c_speed; // =0, use default i2c speed, otherwise use it in unit of kHz. 2989 uint8_t reserved[2]; 2990 struct atom_i2c_data_entry i2cdatalut[1]; // end with 0xff 2991 }; 2992 2993 // ATOM_I2C_VOLTAGE_OBJECT_V3.ucVoltageControlFlag 2994 enum atom_i2c_voltage_control_flag 2995 { 2996 VOLTAGE_DATA_ONE_BYTE = 0, 2997 VOLTAGE_DATA_TWO_BYTE = 1, 2998 }; 2999 3000 3001 struct atom_voltage_gpio_map_lut 3002 { 3003 uint32_t voltage_gpio_reg_val; // The Voltage ID which is used to program GPIO register 3004 uint16_t voltage_level_mv; // The corresponding Voltage Value, in mV 3005 }; 3006 3007 struct atom_gpio_voltage_object_v4 3008 { 3009 struct atom_voltage_object_header_v4 header; // voltage mode = VOLTAGE_OBJ_GPIO_LUT or VOLTAGE_OBJ_PHASE_LUT 3010 uint8_t gpio_control_id; // default is 0 which indicate control through CG VID mode 3011 uint8_t gpio_entry_num; // indiate the entry numbers of Votlage/Gpio value Look up table 3012 uint8_t phase_delay_us; // phase delay in unit of micro second 3013 uint8_t reserved; 3014 uint32_t gpio_mask_val; // GPIO Mask value 3015 struct atom_voltage_gpio_map_lut voltage_gpio_lut[1]; 3016 }; 3017 3018 struct atom_svid2_voltage_object_v4 3019 { 3020 struct atom_voltage_object_header_v4 header; // voltage mode = VOLTAGE_OBJ_SVID2 3021 uint8_t loadline_psi1; // bit4:0= loadline setting ( Core Loadline trim and offset trim ), bit5=0:PSI1_L disable =1: PSI1_L enable 3022 uint8_t psi0_l_vid_thresd; // VR PSI0_L VID threshold 3023 uint8_t psi0_enable; // 3024 uint8_t maxvstep; 3025 uint8_t telemetry_offset; 3026 uint8_t telemetry_gain; 3027 uint16_t reserved1; 3028 }; 3029 3030 struct atom_merged_voltage_object_v4 3031 { 3032 struct atom_voltage_object_header_v4 header; // voltage mode = VOLTAGE_OBJ_MERGED_POWER 3033 uint8_t merged_powerrail_type; //enum atom_voltage_type 3034 uint8_t reserved[3]; 3035 }; 3036 3037 union atom_voltage_object_v4{ 3038 struct atom_gpio_voltage_object_v4 gpio_voltage_obj; 3039 struct atom_i2c_voltage_object_v4 i2c_voltage_obj; 3040 struct atom_svid2_voltage_object_v4 svid2_voltage_obj; 3041 struct atom_merged_voltage_object_v4 merged_voltage_obj; 3042 }; 3043 3044 struct atom_voltage_objects_info_v4_1 3045 { 3046 struct atom_common_table_header table_header; 3047 union atom_voltage_object_v4 voltage_object[1]; //Info for Voltage control 3048 }; 3049 3050 3051 /* 3052 *************************************************************************** 3053 All Command Function structure definition 3054 *************************************************************************** 3055 */ 3056 3057 /* 3058 *************************************************************************** 3059 Structures used by asic_init 3060 *************************************************************************** 3061 */ 3062 3063 struct asic_init_engine_parameters 3064 { 3065 uint32_t sclkfreqin10khz:24; 3066 uint32_t engineflag:8; /* enum atom_asic_init_engine_flag */ 3067 }; 3068 3069 struct asic_init_mem_parameters 3070 { 3071 uint32_t mclkfreqin10khz:24; 3072 uint32_t memflag:8; /* enum atom_asic_init_mem_flag */ 3073 }; 3074 3075 struct asic_init_parameters_v2_1 3076 { 3077 struct asic_init_engine_parameters engineparam; 3078 struct asic_init_mem_parameters memparam; 3079 }; 3080 3081 struct asic_init_ps_allocation_v2_1 3082 { 3083 struct asic_init_parameters_v2_1 param; 3084 uint32_t reserved[16]; 3085 }; 3086 3087 3088 enum atom_asic_init_engine_flag 3089 { 3090 b3NORMAL_ENGINE_INIT = 0, 3091 b3SRIOV_SKIP_ASIC_INIT = 0x02, 3092 b3SRIOV_LOAD_UCODE = 0x40, 3093 }; 3094 3095 enum atom_asic_init_mem_flag 3096 { 3097 b3NORMAL_MEM_INIT = 0, 3098 b3DRAM_SELF_REFRESH_EXIT =0x20, 3099 }; 3100 3101 /* 3102 *************************************************************************** 3103 Structures used by setengineclock 3104 *************************************************************************** 3105 */ 3106 3107 struct set_engine_clock_parameters_v2_1 3108 { 3109 uint32_t sclkfreqin10khz:24; 3110 uint32_t sclkflag:8; /* enum atom_set_engine_mem_clock_flag, */ 3111 uint32_t reserved[10]; 3112 }; 3113 3114 struct set_engine_clock_ps_allocation_v2_1 3115 { 3116 struct set_engine_clock_parameters_v2_1 clockinfo; 3117 uint32_t reserved[10]; 3118 }; 3119 3120 3121 enum atom_set_engine_mem_clock_flag 3122 { 3123 b3NORMAL_CHANGE_CLOCK = 0, 3124 b3FIRST_TIME_CHANGE_CLOCK = 0x08, 3125 b3STORE_DPM_TRAINGING = 0x40, //Applicable to memory clock change,when set, it store specific DPM mode training result 3126 }; 3127 3128 /* 3129 *************************************************************************** 3130 Structures used by getengineclock 3131 *************************************************************************** 3132 */ 3133 struct get_engine_clock_parameter 3134 { 3135 uint32_t sclk_10khz; // current engine speed in 10KHz unit 3136 uint32_t reserved; 3137 }; 3138 3139 /* 3140 *************************************************************************** 3141 Structures used by setmemoryclock 3142 *************************************************************************** 3143 */ 3144 struct set_memory_clock_parameters_v2_1 3145 { 3146 uint32_t mclkfreqin10khz:24; 3147 uint32_t mclkflag:8; /* enum atom_set_engine_mem_clock_flag, */ 3148 uint32_t reserved[10]; 3149 }; 3150 3151 struct set_memory_clock_ps_allocation_v2_1 3152 { 3153 struct set_memory_clock_parameters_v2_1 clockinfo; 3154 uint32_t reserved[10]; 3155 }; 3156 3157 3158 /* 3159 *************************************************************************** 3160 Structures used by getmemoryclock 3161 *************************************************************************** 3162 */ 3163 struct get_memory_clock_parameter 3164 { 3165 uint32_t mclk_10khz; // current engine speed in 10KHz unit 3166 uint32_t reserved; 3167 }; 3168 3169 3170 3171 /* 3172 *************************************************************************** 3173 Structures used by setvoltage 3174 *************************************************************************** 3175 */ 3176 3177 struct set_voltage_parameters_v1_4 3178 { 3179 uint8_t voltagetype; /* enum atom_voltage_type */ 3180 uint8_t command; /* Indicate action: Set voltage level, enum atom_set_voltage_command */ 3181 uint16_t vlevel_mv; /* real voltage level in unit of mv or Voltage Phase (0, 1, 2, .. ) */ 3182 }; 3183 3184 //set_voltage_parameters_v2_1.voltagemode 3185 enum atom_set_voltage_command{ 3186 ATOM_SET_VOLTAGE = 0, 3187 ATOM_INIT_VOLTAGE_REGULATOR = 3, 3188 ATOM_SET_VOLTAGE_PHASE = 4, 3189 ATOM_GET_LEAKAGE_ID = 8, 3190 }; 3191 3192 struct set_voltage_ps_allocation_v1_4 3193 { 3194 struct set_voltage_parameters_v1_4 setvoltageparam; 3195 uint32_t reserved[10]; 3196 }; 3197 3198 3199 /* 3200 *************************************************************************** 3201 Structures used by computegpuclockparam 3202 *************************************************************************** 3203 */ 3204 3205 //ATOM_COMPUTE_CLOCK_FREQ.ulComputeClockFlag 3206 enum atom_gpu_clock_type 3207 { 3208 COMPUTE_GPUCLK_INPUT_FLAG_DEFAULT_GPUCLK =0x00, 3209 COMPUTE_GPUCLK_INPUT_FLAG_GFXCLK =0x01, 3210 COMPUTE_GPUCLK_INPUT_FLAG_UCLK =0x02, 3211 }; 3212 3213 struct compute_gpu_clock_input_parameter_v1_8 3214 { 3215 uint32_t gpuclock_10khz:24; //Input= target clock, output = actual clock 3216 uint32_t gpu_clock_type:8; //Input indicate clock type: enum atom_gpu_clock_type 3217 uint32_t reserved[5]; 3218 }; 3219 3220 3221 struct compute_gpu_clock_output_parameter_v1_8 3222 { 3223 uint32_t gpuclock_10khz:24; //Input= target clock, output = actual clock 3224 uint32_t dfs_did:8; //return parameter: DFS divider which is used to program to register directly 3225 uint32_t pll_fb_mult; //Feedback Multiplier, bit 8:0 int, bit 15:12 post_div, bit 31:16 frac 3226 uint32_t pll_ss_fbsmult; // Spread FB Mult: bit 8:0 int, bit 31:16 frac 3227 uint16_t pll_ss_slew_frac; 3228 uint8_t pll_ss_enable; 3229 uint8_t reserved; 3230 uint32_t reserved1[2]; 3231 }; 3232 3233 3234 3235 /* 3236 *************************************************************************** 3237 Structures used by ReadEfuseValue 3238 *************************************************************************** 3239 */ 3240 3241 struct read_efuse_input_parameters_v3_1 3242 { 3243 uint16_t efuse_start_index; 3244 uint8_t reserved; 3245 uint8_t bitslen; 3246 }; 3247 3248 // ReadEfuseValue input/output parameter 3249 union read_efuse_value_parameters_v3_1 3250 { 3251 struct read_efuse_input_parameters_v3_1 efuse_info; 3252 uint32_t efusevalue; 3253 }; 3254 3255 3256 /* 3257 *************************************************************************** 3258 Structures used by getsmuclockinfo 3259 *************************************************************************** 3260 */ 3261 struct atom_get_smu_clock_info_parameters_v3_1 3262 { 3263 uint8_t syspll_id; // 0= syspll0, 1=syspll1, 2=syspll2 3264 uint8_t clk_id; // atom_smu9_syspll0_clock_id (only valid when command == GET_SMU_CLOCK_INFO_V3_1_GET_CLOCK_FREQ ) 3265 uint8_t command; // enum of atom_get_smu_clock_info_command 3266 uint8_t dfsdid; // =0: get DFS DID from register, >0, give DFS divider, (only valid when command == GET_SMU_CLOCK_INFO_V3_1_GET_CLOCK_FREQ ) 3267 }; 3268 3269 enum atom_get_smu_clock_info_command 3270 { 3271 GET_SMU_CLOCK_INFO_V3_1_GET_CLOCK_FREQ = 0, 3272 GET_SMU_CLOCK_INFO_V3_1_GET_PLLVCO_FREQ = 1, 3273 GET_SMU_CLOCK_INFO_V3_1_GET_PLLREFCLK_FREQ = 2, 3274 }; 3275 3276 enum atom_smu9_syspll0_clock_id 3277 { 3278 SMU9_SYSPLL0_SMNCLK_ID = 0, // SMNCLK 3279 SMU9_SYSPLL0_SOCCLK_ID = 1, // SOCCLK (FCLK) 3280 SMU9_SYSPLL0_MP0CLK_ID = 2, // MP0CLK 3281 SMU9_SYSPLL0_MP1CLK_ID = 3, // MP1CLK 3282 SMU9_SYSPLL0_LCLK_ID = 4, // LCLK 3283 SMU9_SYSPLL0_DCLK_ID = 5, // DCLK 3284 SMU9_SYSPLL0_VCLK_ID = 6, // VCLK 3285 SMU9_SYSPLL0_ECLK_ID = 7, // ECLK 3286 SMU9_SYSPLL0_DCEFCLK_ID = 8, // DCEFCLK 3287 SMU9_SYSPLL0_DPREFCLK_ID = 10, // DPREFCLK 3288 SMU9_SYSPLL0_DISPCLK_ID = 11, // DISPCLK 3289 }; 3290 3291 enum atom_smu11_syspll_id { 3292 SMU11_SYSPLL0_ID = 0, 3293 SMU11_SYSPLL1_0_ID = 1, 3294 SMU11_SYSPLL1_1_ID = 2, 3295 SMU11_SYSPLL1_2_ID = 3, 3296 SMU11_SYSPLL2_ID = 4, 3297 SMU11_SYSPLL3_0_ID = 5, 3298 SMU11_SYSPLL3_1_ID = 6, 3299 }; 3300 3301 enum atom_smu11_syspll0_clock_id { 3302 SMU11_SYSPLL0_ECLK_ID = 0, // ECLK 3303 SMU11_SYSPLL0_SOCCLK_ID = 1, // SOCCLK 3304 SMU11_SYSPLL0_MP0CLK_ID = 2, // MP0CLK 3305 SMU11_SYSPLL0_DCLK_ID = 3, // DCLK 3306 SMU11_SYSPLL0_VCLK_ID = 4, // VCLK 3307 SMU11_SYSPLL0_DCEFCLK_ID = 5, // DCEFCLK 3308 }; 3309 3310 enum atom_smu11_syspll1_0_clock_id { 3311 SMU11_SYSPLL1_0_UCLKA_ID = 0, // UCLK_a 3312 }; 3313 3314 enum atom_smu11_syspll1_1_clock_id { 3315 SMU11_SYSPLL1_0_UCLKB_ID = 0, // UCLK_b 3316 }; 3317 3318 enum atom_smu11_syspll1_2_clock_id { 3319 SMU11_SYSPLL1_0_FCLK_ID = 0, // FCLK 3320 }; 3321 3322 enum atom_smu11_syspll2_clock_id { 3323 SMU11_SYSPLL2_GFXCLK_ID = 0, // GFXCLK 3324 }; 3325 3326 enum atom_smu11_syspll3_0_clock_id { 3327 SMU11_SYSPLL3_0_WAFCLK_ID = 0, // WAFCLK 3328 SMU11_SYSPLL3_0_DISPCLK_ID = 1, // DISPCLK 3329 SMU11_SYSPLL3_0_DPREFCLK_ID = 2, // DPREFCLK 3330 }; 3331 3332 enum atom_smu11_syspll3_1_clock_id { 3333 SMU11_SYSPLL3_1_MP1CLK_ID = 0, // MP1CLK 3334 SMU11_SYSPLL3_1_SMNCLK_ID = 1, // SMNCLK 3335 SMU11_SYSPLL3_1_LCLK_ID = 2, // LCLK 3336 }; 3337 3338 struct atom_get_smu_clock_info_output_parameters_v3_1 3339 { 3340 union { 3341 uint32_t smu_clock_freq_hz; 3342 uint32_t syspllvcofreq_10khz; 3343 uint32_t sysspllrefclk_10khz; 3344 }atom_smu_outputclkfreq; 3345 }; 3346 3347 3348 3349 /* 3350 *************************************************************************** 3351 Structures used by dynamicmemorysettings 3352 *************************************************************************** 3353 */ 3354 3355 enum atom_dynamic_memory_setting_command 3356 { 3357 COMPUTE_MEMORY_PLL_PARAM = 1, 3358 COMPUTE_ENGINE_PLL_PARAM = 2, 3359 ADJUST_MC_SETTING_PARAM = 3, 3360 }; 3361 3362 /* when command = COMPUTE_MEMORY_PLL_PARAM or ADJUST_MC_SETTING_PARAM */ 3363 struct dynamic_mclk_settings_parameters_v2_1 3364 { 3365 uint32_t mclk_10khz:24; //Input= target mclk 3366 uint32_t command:8; //command enum of atom_dynamic_memory_setting_command 3367 uint32_t reserved; 3368 }; 3369 3370 /* when command = COMPUTE_ENGINE_PLL_PARAM */ 3371 struct dynamic_sclk_settings_parameters_v2_1 3372 { 3373 uint32_t sclk_10khz:24; //Input= target mclk 3374 uint32_t command:8; //command enum of atom_dynamic_memory_setting_command 3375 uint32_t mclk_10khz; 3376 uint32_t reserved; 3377 }; 3378 3379 union dynamic_memory_settings_parameters_v2_1 3380 { 3381 struct dynamic_mclk_settings_parameters_v2_1 mclk_setting; 3382 struct dynamic_sclk_settings_parameters_v2_1 sclk_setting; 3383 }; 3384 3385 3386 3387 /* 3388 *************************************************************************** 3389 Structures used by memorytraining 3390 *************************************************************************** 3391 */ 3392 3393 enum atom_umc6_0_ucode_function_call_enum_id 3394 { 3395 UMC60_UCODE_FUNC_ID_REINIT = 0, 3396 UMC60_UCODE_FUNC_ID_ENTER_SELFREFRESH = 1, 3397 UMC60_UCODE_FUNC_ID_EXIT_SELFREFRESH = 2, 3398 }; 3399 3400 3401 struct memory_training_parameters_v2_1 3402 { 3403 uint8_t ucode_func_id; 3404 uint8_t ucode_reserved[3]; 3405 uint32_t reserved[5]; 3406 }; 3407 3408 3409 /* 3410 *************************************************************************** 3411 Structures used by setpixelclock 3412 *************************************************************************** 3413 */ 3414 3415 struct set_pixel_clock_parameter_v1_7 3416 { 3417 uint32_t pixclk_100hz; // target the pixel clock to drive the CRTC timing in unit of 100Hz. 3418 3419 uint8_t pll_id; // ATOM_PHY_PLL0/ATOM_PHY_PLL1/ATOM_PPLL0 3420 uint8_t encoderobjid; // ASIC encoder id defined in objectId.h, 3421 // indicate which graphic encoder will be used. 3422 uint8_t encoder_mode; // Encoder mode: 3423 uint8_t miscinfo; // enum atom_set_pixel_clock_v1_7_misc_info 3424 uint8_t crtc_id; // enum of atom_crtc_def 3425 uint8_t deep_color_ratio; // HDMI panel bit depth: enum atom_set_pixel_clock_v1_7_deepcolor_ratio 3426 uint8_t reserved1[2]; 3427 uint32_t reserved2; 3428 }; 3429 3430 //ucMiscInfo 3431 enum atom_set_pixel_clock_v1_7_misc_info 3432 { 3433 PIXEL_CLOCK_V7_MISC_FORCE_PROG_PPLL = 0x01, 3434 PIXEL_CLOCK_V7_MISC_PROG_PHYPLL = 0x02, 3435 PIXEL_CLOCK_V7_MISC_YUV420_MODE = 0x04, 3436 PIXEL_CLOCK_V7_MISC_DVI_DUALLINK_EN = 0x08, 3437 PIXEL_CLOCK_V7_MISC_REF_DIV_SRC = 0x30, 3438 PIXEL_CLOCK_V7_MISC_REF_DIV_SRC_XTALIN = 0x00, 3439 PIXEL_CLOCK_V7_MISC_REF_DIV_SRC_PCIE = 0x10, 3440 PIXEL_CLOCK_V7_MISC_REF_DIV_SRC_GENLK = 0x20, 3441 PIXEL_CLOCK_V7_MISC_REF_DIV_SRC_REFPAD = 0x30, 3442 PIXEL_CLOCK_V7_MISC_ATOMIC_UPDATE = 0x40, 3443 PIXEL_CLOCK_V7_MISC_FORCE_SS_DIS = 0x80, 3444 }; 3445 3446 /* deep_color_ratio */ 3447 enum atom_set_pixel_clock_v1_7_deepcolor_ratio 3448 { 3449 PIXEL_CLOCK_V7_DEEPCOLOR_RATIO_DIS = 0x00, //00 - DCCG_DEEP_COLOR_DTO_DISABLE: Disable Deep Color DTO 3450 PIXEL_CLOCK_V7_DEEPCOLOR_RATIO_5_4 = 0x01, //01 - DCCG_DEEP_COLOR_DTO_5_4_RATIO: Set Deep Color DTO to 5:4 3451 PIXEL_CLOCK_V7_DEEPCOLOR_RATIO_3_2 = 0x02, //02 - DCCG_DEEP_COLOR_DTO_3_2_RATIO: Set Deep Color DTO to 3:2 3452 PIXEL_CLOCK_V7_DEEPCOLOR_RATIO_2_1 = 0x03, //03 - DCCG_DEEP_COLOR_DTO_2_1_RATIO: Set Deep Color DTO to 2:1 3453 }; 3454 3455 /* 3456 *************************************************************************** 3457 Structures used by setdceclock 3458 *************************************************************************** 3459 */ 3460 3461 // SetDCEClock input parameter for DCE11.2( ELM and BF ) and above 3462 struct set_dce_clock_parameters_v2_1 3463 { 3464 uint32_t dceclk_10khz; // target DCE frequency in unit of 10KHZ, return real DISPCLK/DPREFCLK frequency. 3465 uint8_t dceclktype; // =0: DISPCLK =1: DPREFCLK =2: PIXCLK 3466 uint8_t dceclksrc; // ATOM_PLL0 or ATOM_GCK_DFS or ATOM_FCH_CLK or ATOM_COMBOPHY_PLLx 3467 uint8_t dceclkflag; // Bit [1:0] = PPLL ref clock source ( when ucDCEClkSrc= ATOM_PPLL0 ) 3468 uint8_t crtc_id; // ucDisp Pipe Id, ATOM_CRTC0/1/2/..., use only when ucDCEClkType = PIXCLK 3469 }; 3470 3471 //ucDCEClkType 3472 enum atom_set_dce_clock_clock_type 3473 { 3474 DCE_CLOCK_TYPE_DISPCLK = 0, 3475 DCE_CLOCK_TYPE_DPREFCLK = 1, 3476 DCE_CLOCK_TYPE_PIXELCLK = 2, // used by VBIOS internally, called by SetPixelClock 3477 }; 3478 3479 //ucDCEClkFlag when ucDCEClkType == DPREFCLK 3480 enum atom_set_dce_clock_dprefclk_flag 3481 { 3482 DCE_CLOCK_FLAG_PLL_REFCLK_SRC_MASK = 0x03, 3483 DCE_CLOCK_FLAG_PLL_REFCLK_SRC_GENERICA = 0x00, 3484 DCE_CLOCK_FLAG_PLL_REFCLK_SRC_GENLK = 0x01, 3485 DCE_CLOCK_FLAG_PLL_REFCLK_SRC_PCIE = 0x02, 3486 DCE_CLOCK_FLAG_PLL_REFCLK_SRC_XTALIN = 0x03, 3487 }; 3488 3489 //ucDCEClkFlag when ucDCEClkType == PIXCLK 3490 enum atom_set_dce_clock_pixclk_flag 3491 { 3492 DCE_CLOCK_FLAG_PCLK_DEEPCOLOR_RATIO_MASK = 0x03, 3493 DCE_CLOCK_FLAG_PCLK_DEEPCOLOR_RATIO_DIS = 0x00, //00 - DCCG_DEEP_COLOR_DTO_DISABLE: Disable Deep Color DTO 3494 DCE_CLOCK_FLAG_PCLK_DEEPCOLOR_RATIO_5_4 = 0x01, //01 - DCCG_DEEP_COLOR_DTO_5_4_RATIO: Set Deep Color DTO to 5:4 3495 DCE_CLOCK_FLAG_PCLK_DEEPCOLOR_RATIO_3_2 = 0x02, //02 - DCCG_DEEP_COLOR_DTO_3_2_RATIO: Set Deep Color DTO to 3:2 3496 DCE_CLOCK_FLAG_PCLK_DEEPCOLOR_RATIO_2_1 = 0x03, //03 - DCCG_DEEP_COLOR_DTO_2_1_RATIO: Set Deep Color DTO to 2:1 3497 DCE_CLOCK_FLAG_PIXCLK_YUV420_MODE = 0x04, 3498 }; 3499 3500 struct set_dce_clock_ps_allocation_v2_1 3501 { 3502 struct set_dce_clock_parameters_v2_1 param; 3503 uint32_t ulReserved[2]; 3504 }; 3505 3506 3507 /****************************************************************************/ 3508 // Structures used by BlankCRTC 3509 /****************************************************************************/ 3510 struct blank_crtc_parameters 3511 { 3512 uint8_t crtc_id; // enum atom_crtc_def 3513 uint8_t blanking; // enum atom_blank_crtc_command 3514 uint16_t reserved; 3515 uint32_t reserved1; 3516 }; 3517 3518 enum atom_blank_crtc_command 3519 { 3520 ATOM_BLANKING = 1, 3521 ATOM_BLANKING_OFF = 0, 3522 }; 3523 3524 /****************************************************************************/ 3525 // Structures used by enablecrtc 3526 /****************************************************************************/ 3527 struct enable_crtc_parameters 3528 { 3529 uint8_t crtc_id; // enum atom_crtc_def 3530 uint8_t enable; // ATOM_ENABLE or ATOM_DISABLE 3531 uint8_t padding[2]; 3532 }; 3533 3534 3535 /****************************************************************************/ 3536 // Structure used by EnableDispPowerGating 3537 /****************************************************************************/ 3538 struct enable_disp_power_gating_parameters_v2_1 3539 { 3540 uint8_t disp_pipe_id; // ATOM_CRTC1, ATOM_CRTC2, ... 3541 uint8_t enable; // ATOM_ENABLE or ATOM_DISABLE 3542 uint8_t padding[2]; 3543 }; 3544 3545 struct enable_disp_power_gating_ps_allocation 3546 { 3547 struct enable_disp_power_gating_parameters_v2_1 param; 3548 uint32_t ulReserved[4]; 3549 }; 3550 3551 /****************************************************************************/ 3552 // Structure used in setcrtc_usingdtdtiming 3553 /****************************************************************************/ 3554 struct set_crtc_using_dtd_timing_parameters 3555 { 3556 uint16_t h_size; 3557 uint16_t h_blanking_time; 3558 uint16_t v_size; 3559 uint16_t v_blanking_time; 3560 uint16_t h_syncoffset; 3561 uint16_t h_syncwidth; 3562 uint16_t v_syncoffset; 3563 uint16_t v_syncwidth; 3564 uint16_t modemiscinfo; 3565 uint8_t h_border; 3566 uint8_t v_border; 3567 uint8_t crtc_id; // enum atom_crtc_def 3568 uint8_t encoder_mode; // atom_encode_mode_def 3569 uint8_t padding[2]; 3570 }; 3571 3572 3573 /****************************************************************************/ 3574 // Structures used by processi2cchanneltransaction 3575 /****************************************************************************/ 3576 struct process_i2c_channel_transaction_parameters 3577 { 3578 uint8_t i2cspeed_khz; 3579 union { 3580 uint8_t regindex; 3581 uint8_t status; /* enum atom_process_i2c_flag */ 3582 } regind_status; 3583 uint16_t i2c_data_out; 3584 uint8_t flag; /* enum atom_process_i2c_status */ 3585 uint8_t trans_bytes; 3586 uint8_t slave_addr; 3587 uint8_t i2c_id; 3588 }; 3589 3590 //ucFlag 3591 enum atom_process_i2c_flag 3592 { 3593 HW_I2C_WRITE = 1, 3594 HW_I2C_READ = 0, 3595 I2C_2BYTE_ADDR = 0x02, 3596 HW_I2C_SMBUS_BYTE_WR = 0x04, 3597 }; 3598 3599 //status 3600 enum atom_process_i2c_status 3601 { 3602 HW_ASSISTED_I2C_STATUS_FAILURE =2, 3603 HW_ASSISTED_I2C_STATUS_SUCCESS =1, 3604 }; 3605 3606 3607 /****************************************************************************/ 3608 // Structures used by processauxchanneltransaction 3609 /****************************************************************************/ 3610 3611 struct process_aux_channel_transaction_parameters_v1_2 3612 { 3613 uint16_t aux_request; 3614 uint16_t dataout; 3615 uint8_t channelid; 3616 union { 3617 uint8_t reply_status; 3618 uint8_t aux_delay; 3619 } aux_status_delay; 3620 uint8_t dataout_len; 3621 uint8_t hpd_id; //=0: HPD1, =1: HPD2, =2: HPD3, =3: HPD4, =4: HPD5, =5: HPD6 3622 }; 3623 3624 3625 /****************************************************************************/ 3626 // Structures used by selectcrtc_source 3627 /****************************************************************************/ 3628 3629 struct select_crtc_source_parameters_v2_3 3630 { 3631 uint8_t crtc_id; // enum atom_crtc_def 3632 uint8_t encoder_id; // enum atom_dig_def 3633 uint8_t encode_mode; // enum atom_encode_mode_def 3634 uint8_t dst_bpc; // enum atom_panel_bit_per_color 3635 }; 3636 3637 3638 /****************************************************************************/ 3639 // Structures used by digxencodercontrol 3640 /****************************************************************************/ 3641 3642 // ucAction: 3643 enum atom_dig_encoder_control_action 3644 { 3645 ATOM_ENCODER_CMD_DISABLE_DIG = 0, 3646 ATOM_ENCODER_CMD_ENABLE_DIG = 1, 3647 ATOM_ENCODER_CMD_DP_LINK_TRAINING_START = 0x08, 3648 ATOM_ENCODER_CMD_DP_LINK_TRAINING_PATTERN1 = 0x09, 3649 ATOM_ENCODER_CMD_DP_LINK_TRAINING_PATTERN2 = 0x0a, 3650 ATOM_ENCODER_CMD_DP_LINK_TRAINING_PATTERN3 = 0x13, 3651 ATOM_ENCODER_CMD_DP_LINK_TRAINING_COMPLETE = 0x0b, 3652 ATOM_ENCODER_CMD_DP_VIDEO_OFF = 0x0c, 3653 ATOM_ENCODER_CMD_DP_VIDEO_ON = 0x0d, 3654 ATOM_ENCODER_CMD_SETUP_PANEL_MODE = 0x10, 3655 ATOM_ENCODER_CMD_DP_LINK_TRAINING_PATTERN4 = 0x14, 3656 ATOM_ENCODER_CMD_STREAM_SETUP = 0x0F, 3657 ATOM_ENCODER_CMD_LINK_SETUP = 0x11, 3658 ATOM_ENCODER_CMD_ENCODER_BLANK = 0x12, 3659 }; 3660 3661 //define ucPanelMode 3662 enum atom_dig_encoder_control_panelmode 3663 { 3664 DP_PANEL_MODE_DISABLE = 0x00, 3665 DP_PANEL_MODE_ENABLE_eDP_MODE = 0x01, 3666 DP_PANEL_MODE_ENABLE_LVLINK_MODE = 0x11, 3667 }; 3668 3669 //ucDigId 3670 enum atom_dig_encoder_control_v5_digid 3671 { 3672 ATOM_ENCODER_CONFIG_V5_DIG0_ENCODER = 0x00, 3673 ATOM_ENCODER_CONFIG_V5_DIG1_ENCODER = 0x01, 3674 ATOM_ENCODER_CONFIG_V5_DIG2_ENCODER = 0x02, 3675 ATOM_ENCODER_CONFIG_V5_DIG3_ENCODER = 0x03, 3676 ATOM_ENCODER_CONFIG_V5_DIG4_ENCODER = 0x04, 3677 ATOM_ENCODER_CONFIG_V5_DIG5_ENCODER = 0x05, 3678 ATOM_ENCODER_CONFIG_V5_DIG6_ENCODER = 0x06, 3679 ATOM_ENCODER_CONFIG_V5_DIG7_ENCODER = 0x07, 3680 }; 3681 3682 struct dig_encoder_stream_setup_parameters_v1_5 3683 { 3684 uint8_t digid; // 0~6 map to DIG0~DIG6 enum atom_dig_encoder_control_v5_digid 3685 uint8_t action; // = ATOM_ENOCODER_CMD_STREAM_SETUP 3686 uint8_t digmode; // ATOM_ENCODER_MODE_DP/ATOM_ENCODER_MODE_DVI/ATOM_ENCODER_MODE_HDMI 3687 uint8_t lanenum; // Lane number 3688 uint32_t pclk_10khz; // Pixel Clock in 10Khz 3689 uint8_t bitpercolor; 3690 uint8_t dplinkrate_270mhz;//= DP link rate/270Mhz, =6: 1.62G = 10: 2.7G, =20: 5.4Ghz, =30: 8.1Ghz etc 3691 uint8_t reserved[2]; 3692 }; 3693 3694 struct dig_encoder_link_setup_parameters_v1_5 3695 { 3696 uint8_t digid; // 0~6 map to DIG0~DIG6 enum atom_dig_encoder_control_v5_digid 3697 uint8_t action; // = ATOM_ENOCODER_CMD_LINK_SETUP 3698 uint8_t digmode; // ATOM_ENCODER_MODE_DP/ATOM_ENCODER_MODE_DVI/ATOM_ENCODER_MODE_HDMI 3699 uint8_t lanenum; // Lane number 3700 uint8_t symclk_10khz; // Symbol Clock in 10Khz 3701 uint8_t hpd_sel; 3702 uint8_t digfe_sel; // DIG stream( front-end ) selection, bit0 means DIG0 FE is enable, 3703 uint8_t reserved[2]; 3704 }; 3705 3706 struct dp_panel_mode_set_parameters_v1_5 3707 { 3708 uint8_t digid; // 0~6 map to DIG0~DIG6 enum atom_dig_encoder_control_v5_digid 3709 uint8_t action; // = ATOM_ENCODER_CMD_DPLINK_SETUP 3710 uint8_t panelmode; // enum atom_dig_encoder_control_panelmode 3711 uint8_t reserved1; 3712 uint32_t reserved2[2]; 3713 }; 3714 3715 struct dig_encoder_generic_cmd_parameters_v1_5 3716 { 3717 uint8_t digid; // 0~6 map to DIG0~DIG6 enum atom_dig_encoder_control_v5_digid 3718 uint8_t action; // = rest of generic encoder command which does not carry any parameters 3719 uint8_t reserved1[2]; 3720 uint32_t reserved2[2]; 3721 }; 3722 3723 union dig_encoder_control_parameters_v1_5 3724 { 3725 struct dig_encoder_generic_cmd_parameters_v1_5 cmd_param; 3726 struct dig_encoder_stream_setup_parameters_v1_5 stream_param; 3727 struct dig_encoder_link_setup_parameters_v1_5 link_param; 3728 struct dp_panel_mode_set_parameters_v1_5 dppanel_param; 3729 }; 3730 3731 /* 3732 *************************************************************************** 3733 Structures used by dig1transmittercontrol 3734 *************************************************************************** 3735 */ 3736 struct dig_transmitter_control_parameters_v1_6 3737 { 3738 uint8_t phyid; // 0=UNIPHYA, 1=UNIPHYB, 2=UNIPHYC, 3=UNIPHYD, 4= UNIPHYE 5=UNIPHYF 3739 uint8_t action; // define as ATOM_TRANSMITER_ACTION_xxx 3740 union { 3741 uint8_t digmode; // enum atom_encode_mode_def 3742 uint8_t dplaneset; // DP voltage swing and pre-emphasis value defined in DPCD DP_LANE_SET, "DP_LANE_SET__xDB_y_zV" 3743 } mode_laneset; 3744 uint8_t lanenum; // Lane number 1, 2, 4, 8 3745 uint32_t symclk_10khz; // Symbol Clock in 10Khz 3746 uint8_t hpdsel; // =1: HPD1, =2: HPD2, .... =6: HPD6, =0: HPD is not assigned 3747 uint8_t digfe_sel; // DIG stream( front-end ) selection, bit0 means DIG0 FE is enable, 3748 uint8_t connobj_id; // Connector Object Id defined in ObjectId.h 3749 uint8_t reserved; 3750 uint32_t reserved1; 3751 }; 3752 3753 struct dig_transmitter_control_ps_allocation_v1_6 3754 { 3755 struct dig_transmitter_control_parameters_v1_6 param; 3756 uint32_t reserved[4]; 3757 }; 3758 3759 //ucAction 3760 enum atom_dig_transmitter_control_action 3761 { 3762 ATOM_TRANSMITTER_ACTION_DISABLE = 0, 3763 ATOM_TRANSMITTER_ACTION_ENABLE = 1, 3764 ATOM_TRANSMITTER_ACTION_LCD_BLOFF = 2, 3765 ATOM_TRANSMITTER_ACTION_LCD_BLON = 3, 3766 ATOM_TRANSMITTER_ACTION_BL_BRIGHTNESS_CONTROL = 4, 3767 ATOM_TRANSMITTER_ACTION_LCD_SELFTEST_START = 5, 3768 ATOM_TRANSMITTER_ACTION_LCD_SELFTEST_STOP = 6, 3769 ATOM_TRANSMITTER_ACTION_INIT = 7, 3770 ATOM_TRANSMITTER_ACTION_DISABLE_OUTPUT = 8, 3771 ATOM_TRANSMITTER_ACTION_ENABLE_OUTPUT = 9, 3772 ATOM_TRANSMITTER_ACTION_SETUP = 10, 3773 ATOM_TRANSMITTER_ACTION_SETUP_VSEMPH = 11, 3774 ATOM_TRANSMITTER_ACTION_POWER_ON = 12, 3775 ATOM_TRANSMITTER_ACTION_POWER_OFF = 13, 3776 }; 3777 3778 // digfe_sel 3779 enum atom_dig_transmitter_control_digfe_sel 3780 { 3781 ATOM_TRANMSITTER_V6__DIGA_SEL = 0x01, 3782 ATOM_TRANMSITTER_V6__DIGB_SEL = 0x02, 3783 ATOM_TRANMSITTER_V6__DIGC_SEL = 0x04, 3784 ATOM_TRANMSITTER_V6__DIGD_SEL = 0x08, 3785 ATOM_TRANMSITTER_V6__DIGE_SEL = 0x10, 3786 ATOM_TRANMSITTER_V6__DIGF_SEL = 0x20, 3787 ATOM_TRANMSITTER_V6__DIGG_SEL = 0x40, 3788 }; 3789 3790 3791 //ucHPDSel 3792 enum atom_dig_transmitter_control_hpd_sel 3793 { 3794 ATOM_TRANSMITTER_V6_NO_HPD_SEL = 0x00, 3795 ATOM_TRANSMITTER_V6_HPD1_SEL = 0x01, 3796 ATOM_TRANSMITTER_V6_HPD2_SEL = 0x02, 3797 ATOM_TRANSMITTER_V6_HPD3_SEL = 0x03, 3798 ATOM_TRANSMITTER_V6_HPD4_SEL = 0x04, 3799 ATOM_TRANSMITTER_V6_HPD5_SEL = 0x05, 3800 ATOM_TRANSMITTER_V6_HPD6_SEL = 0x06, 3801 }; 3802 3803 // ucDPLaneSet 3804 enum atom_dig_transmitter_control_dplaneset 3805 { 3806 DP_LANE_SET__0DB_0_4V = 0x00, 3807 DP_LANE_SET__0DB_0_6V = 0x01, 3808 DP_LANE_SET__0DB_0_8V = 0x02, 3809 DP_LANE_SET__0DB_1_2V = 0x03, 3810 DP_LANE_SET__3_5DB_0_4V = 0x08, 3811 DP_LANE_SET__3_5DB_0_6V = 0x09, 3812 DP_LANE_SET__3_5DB_0_8V = 0x0a, 3813 DP_LANE_SET__6DB_0_4V = 0x10, 3814 DP_LANE_SET__6DB_0_6V = 0x11, 3815 DP_LANE_SET__9_5DB_0_4V = 0x18, 3816 }; 3817 3818 3819 3820 /****************************************************************************/ 3821 // Structures used by ExternalEncoderControl V2.4 3822 /****************************************************************************/ 3823 3824 struct external_encoder_control_parameters_v2_4 3825 { 3826 uint16_t pixelclock_10khz; // pixel clock in 10Khz, valid when ucAction=SETUP/ENABLE_OUTPUT 3827 uint8_t config; // indicate which encoder, and DP link rate when ucAction = SETUP/ENABLE_OUTPUT 3828 uint8_t action; // 3829 uint8_t encodermode; // encoder mode, only used when ucAction = SETUP/ENABLE_OUTPUT 3830 uint8_t lanenum; // lane number, only used when ucAction = SETUP/ENABLE_OUTPUT 3831 uint8_t bitpercolor; // output bit per color, only valid when ucAction = SETUP/ENABLE_OUTPUT and ucEncodeMode= DP 3832 uint8_t hpd_id; 3833 }; 3834 3835 3836 // ucAction 3837 enum external_encoder_control_action_def 3838 { 3839 EXTERNAL_ENCODER_ACTION_V3_DISABLE_OUTPUT = 0x00, 3840 EXTERNAL_ENCODER_ACTION_V3_ENABLE_OUTPUT = 0x01, 3841 EXTERNAL_ENCODER_ACTION_V3_ENCODER_INIT = 0x07, 3842 EXTERNAL_ENCODER_ACTION_V3_ENCODER_SETUP = 0x0f, 3843 EXTERNAL_ENCODER_ACTION_V3_ENCODER_BLANKING_OFF = 0x10, 3844 EXTERNAL_ENCODER_ACTION_V3_ENCODER_BLANKING = 0x11, 3845 EXTERNAL_ENCODER_ACTION_V3_DACLOAD_DETECTION = 0x12, 3846 EXTERNAL_ENCODER_ACTION_V3_DDC_SETUP = 0x14, 3847 }; 3848 3849 // ucConfig 3850 enum external_encoder_control_v2_4_config_def 3851 { 3852 EXTERNAL_ENCODER_CONFIG_V3_DPLINKRATE_MASK = 0x03, 3853 EXTERNAL_ENCODER_CONFIG_V3_DPLINKRATE_1_62GHZ = 0x00, 3854 EXTERNAL_ENCODER_CONFIG_V3_DPLINKRATE_2_70GHZ = 0x01, 3855 EXTERNAL_ENCODER_CONFIG_V3_DPLINKRATE_5_40GHZ = 0x02, 3856 EXTERNAL_ENCODER_CONFIG_V3_DPLINKRATE_3_24GHZ = 0x03, 3857 EXTERNAL_ENCODER_CONFIG_V3_ENCODER_SEL_MAKS = 0x70, 3858 EXTERNAL_ENCODER_CONFIG_V3_ENCODER1 = 0x00, 3859 EXTERNAL_ENCODER_CONFIG_V3_ENCODER2 = 0x10, 3860 EXTERNAL_ENCODER_CONFIG_V3_ENCODER3 = 0x20, 3861 }; 3862 3863 struct external_encoder_control_ps_allocation_v2_4 3864 { 3865 struct external_encoder_control_parameters_v2_4 sExtEncoder; 3866 uint32_t reserved[2]; 3867 }; 3868 3869 3870 /* 3871 *************************************************************************** 3872 AMD ACPI Table 3873 3874 *************************************************************************** 3875 */ 3876 3877 struct amd_acpi_description_header{ 3878 uint32_t signature; 3879 uint32_t tableLength; //Length 3880 uint8_t revision; 3881 uint8_t checksum; 3882 uint8_t oemId[6]; 3883 uint8_t oemTableId[8]; //UINT64 OemTableId; 3884 uint32_t oemRevision; 3885 uint32_t creatorId; 3886 uint32_t creatorRevision; 3887 }; 3888 3889 struct uefi_acpi_vfct{ 3890 struct amd_acpi_description_header sheader; 3891 uint8_t tableUUID[16]; //0x24 3892 uint32_t vbiosimageoffset; //0x34. Offset to the first GOP_VBIOS_CONTENT block from the beginning of the stucture. 3893 uint32_t lib1Imageoffset; //0x38. Offset to the first GOP_LIB1_CONTENT block from the beginning of the stucture. 3894 uint32_t reserved[4]; //0x3C 3895 }; 3896 3897 struct vfct_image_header{ 3898 uint32_t pcibus; //0x4C 3899 uint32_t pcidevice; //0x50 3900 uint32_t pcifunction; //0x54 3901 uint16_t vendorid; //0x58 3902 uint16_t deviceid; //0x5A 3903 uint16_t ssvid; //0x5C 3904 uint16_t ssid; //0x5E 3905 uint32_t revision; //0x60 3906 uint32_t imagelength; //0x64 3907 }; 3908 3909 3910 struct gop_vbios_content { 3911 struct vfct_image_header vbiosheader; 3912 uint8_t vbioscontent[1]; 3913 }; 3914 3915 struct gop_lib1_content { 3916 struct vfct_image_header lib1header; 3917 uint8_t lib1content[1]; 3918 }; 3919 3920 3921 3922 /* 3923 *************************************************************************** 3924 Scratch Register definitions 3925 Each number below indicates which scratch regiser request, Active and 3926 Connect all share the same definitions as display_device_tag defines 3927 *************************************************************************** 3928 */ 3929 3930 enum scratch_register_def{ 3931 ATOM_DEVICE_CONNECT_INFO_DEF = 0, 3932 ATOM_BL_BRI_LEVEL_INFO_DEF = 2, 3933 ATOM_ACTIVE_INFO_DEF = 3, 3934 ATOM_LCD_INFO_DEF = 4, 3935 ATOM_DEVICE_REQ_INFO_DEF = 5, 3936 ATOM_ACC_CHANGE_INFO_DEF = 6, 3937 ATOM_PRE_OS_MODE_INFO_DEF = 7, 3938 ATOM_PRE_OS_ASSERTION_DEF = 8, //For GOP to record a 32bit assertion code, this is enabled by default in prodution GOP drivers. 3939 ATOM_INTERNAL_TIMER_INFO_DEF = 10, 3940 }; 3941 3942 enum scratch_device_connect_info_bit_def{ 3943 ATOM_DISPLAY_LCD1_CONNECT =0x0002, 3944 ATOM_DISPLAY_DFP1_CONNECT =0x0008, 3945 ATOM_DISPLAY_DFP2_CONNECT =0x0080, 3946 ATOM_DISPLAY_DFP3_CONNECT =0x0200, 3947 ATOM_DISPLAY_DFP4_CONNECT =0x0400, 3948 ATOM_DISPLAY_DFP5_CONNECT =0x0800, 3949 ATOM_DISPLAY_DFP6_CONNECT =0x0040, 3950 ATOM_DISPLAY_DFPx_CONNECT =0x0ec8, 3951 ATOM_CONNECT_INFO_DEVICE_MASK =0x0fff, 3952 }; 3953 3954 enum scratch_bl_bri_level_info_bit_def{ 3955 ATOM_CURRENT_BL_LEVEL_SHIFT =0x8, 3956 #ifndef _H2INC 3957 ATOM_CURRENT_BL_LEVEL_MASK =0x0000ff00, 3958 ATOM_DEVICE_DPMS_STATE =0x00010000, 3959 #endif 3960 }; 3961 3962 enum scratch_active_info_bits_def{ 3963 ATOM_DISPLAY_LCD1_ACTIVE =0x0002, 3964 ATOM_DISPLAY_DFP1_ACTIVE =0x0008, 3965 ATOM_DISPLAY_DFP2_ACTIVE =0x0080, 3966 ATOM_DISPLAY_DFP3_ACTIVE =0x0200, 3967 ATOM_DISPLAY_DFP4_ACTIVE =0x0400, 3968 ATOM_DISPLAY_DFP5_ACTIVE =0x0800, 3969 ATOM_DISPLAY_DFP6_ACTIVE =0x0040, 3970 ATOM_ACTIVE_INFO_DEVICE_MASK =0x0fff, 3971 }; 3972 3973 enum scratch_device_req_info_bits_def{ 3974 ATOM_DISPLAY_LCD1_REQ =0x0002, 3975 ATOM_DISPLAY_DFP1_REQ =0x0008, 3976 ATOM_DISPLAY_DFP2_REQ =0x0080, 3977 ATOM_DISPLAY_DFP3_REQ =0x0200, 3978 ATOM_DISPLAY_DFP4_REQ =0x0400, 3979 ATOM_DISPLAY_DFP5_REQ =0x0800, 3980 ATOM_DISPLAY_DFP6_REQ =0x0040, 3981 ATOM_REQ_INFO_DEVICE_MASK =0x0fff, 3982 }; 3983 3984 enum scratch_acc_change_info_bitshift_def{ 3985 ATOM_ACC_CHANGE_ACC_MODE_SHIFT =4, 3986 ATOM_ACC_CHANGE_LID_STATUS_SHIFT =6, 3987 }; 3988 3989 enum scratch_acc_change_info_bits_def{ 3990 ATOM_ACC_CHANGE_ACC_MODE =0x00000010, 3991 ATOM_ACC_CHANGE_LID_STATUS =0x00000040, 3992 }; 3993 3994 enum scratch_pre_os_mode_info_bits_def{ 3995 ATOM_PRE_OS_MODE_MASK =0x00000003, 3996 ATOM_PRE_OS_MODE_VGA =0x00000000, 3997 ATOM_PRE_OS_MODE_VESA =0x00000001, 3998 ATOM_PRE_OS_MODE_GOP =0x00000002, 3999 ATOM_PRE_OS_MODE_PIXEL_DEPTH =0x0000000C, 4000 ATOM_PRE_OS_MODE_PIXEL_FORMAT_MASK=0x000000F0, 4001 ATOM_PRE_OS_MODE_8BIT_PAL_EN =0x00000100, 4002 ATOM_ASIC_INIT_COMPLETE =0x00000200, 4003 #ifndef _H2INC 4004 ATOM_PRE_OS_MODE_NUMBER_MASK =0xFFFF0000, 4005 #endif 4006 }; 4007 4008 4009 4010 /* 4011 *************************************************************************** 4012 ATOM firmware ID header file 4013 !! Please keep it at end of the atomfirmware.h !! 4014 *************************************************************************** 4015 */ 4016 #include "atomfirmwareid.h" 4017 #pragma pack() 4018 4019 #endif 4020 4021