Back to home page

OSCL-LXR

 
 

    


0001 /*
0002  * Copyright 2016 Advanced Micro Devices, Inc.
0003  *
0004  * Permission is hereby granted, free of charge, to any person obtaining a
0005  * copy of this software and associated documentation files (the "Software"),
0006  * to deal in the Software without restriction, including without limitation
0007  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
0008  * and/or sell copies of the Software, and to permit persons to whom the
0009  * Software is furnished to do so, subject to the following conditions:
0010  *
0011  * The above copyright notice and this permission notice shall be included in
0012  * all copies or substantial portions of the Software.
0013  *
0014  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
0015  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
0016  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
0017  * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
0018  * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
0019  * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
0020  * OTHER DEALINGS IN THE SOFTWARE.
0021  *
0022  */
0023 
0024 #ifndef VEGA10_PROCESSPPTABLES_H
0025 #define VEGA10_PROCESSPPTABLES_H
0026 
0027 #include "hwmgr.h"
0028 
0029 enum Vega10_I2CLineID {
0030     Vega10_I2CLineID_DDC1 = 0x90,
0031     Vega10_I2CLineID_DDC2 = 0x91,
0032     Vega10_I2CLineID_DDC3 = 0x92,
0033     Vega10_I2CLineID_DDC4 = 0x93,
0034     Vega10_I2CLineID_DDC5 = 0x94,
0035     Vega10_I2CLineID_DDC6 = 0x95,
0036     Vega10_I2CLineID_SCLSDA = 0x96,
0037     Vega10_I2CLineID_DDCVGA = 0x97
0038 };
0039 
0040 #define Vega10_I2C_DDC1DATA          0
0041 #define Vega10_I2C_DDC1CLK           1
0042 #define Vega10_I2C_DDC2DATA          2
0043 #define Vega10_I2C_DDC2CLK           3
0044 #define Vega10_I2C_DDC3DATA          4
0045 #define Vega10_I2C_DDC3CLK           5
0046 #define Vega10_I2C_SDA               40
0047 #define Vega10_I2C_SCL               41
0048 #define Vega10_I2C_DDC4DATA          65
0049 #define Vega10_I2C_DDC4CLK           66
0050 #define Vega10_I2C_DDC5DATA          0x48
0051 #define Vega10_I2C_DDC5CLK           0x49
0052 #define Vega10_I2C_DDC6DATA          0x4a
0053 #define Vega10_I2C_DDC6CLK           0x4b
0054 #define Vega10_I2C_DDCVGADATA        0x4c
0055 #define Vega10_I2C_DDCVGACLK         0x4d
0056 
0057 extern const struct pp_table_func vega10_pptable_funcs;
0058 extern int vega10_get_number_of_powerplay_table_entries(struct pp_hwmgr *hwmgr);
0059 extern int vega10_get_powerplay_table_entry(struct pp_hwmgr *hwmgr, uint32_t entry_index,
0060         struct pp_power_state *power_state, int (*call_back_func)(struct pp_hwmgr *, void *,
0061                 struct pp_power_state *, void *, uint32_t));
0062 extern int vega10_baco_set_cap(struct pp_hwmgr *hwmgr);
0063 #endif