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