mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-06-05 06:08:22 +00:00
drm/amd/powerplay: add data structure of bootup values
This patch adds data structures for bootup values. Signed-off-by: Huang Rui <ray.huang@amd.com> Reviewed-by: Kevin Wang <Kevin1.Wang@amd.com> Acked-by: Alex Deucher <alexander.deucher@amd.com> Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
This commit is contained in:
parent
daddacf9f1
commit
e98499b444
1 changed files with 16 additions and 0 deletions
|
@ -38,13 +38,29 @@ struct smu_table {
|
|||
uint64_t mc_address;
|
||||
void *cpu_addr;
|
||||
struct amdgpu_bo *bo;
|
||||
};
|
||||
|
||||
struct smu_bios_boot_up_values
|
||||
{
|
||||
uint32_t revision;
|
||||
uint32_t gfxclk;
|
||||
uint32_t uclk;
|
||||
uint32_t socclk;
|
||||
uint32_t dcefclk;
|
||||
uint16_t vddc;
|
||||
uint16_t vddci;
|
||||
uint16_t mvddc;
|
||||
uint16_t vdd_gfx;
|
||||
uint8_t cooling_id;
|
||||
uint32_t pp_table_id;
|
||||
};
|
||||
|
||||
struct smu_table_context
|
||||
{
|
||||
void *power_play_table;
|
||||
uint32_t power_play_table_size;
|
||||
|
||||
struct smu_bios_boot_up_values boot_values;
|
||||
struct smu_table *tables;
|
||||
uint32_t table_count;
|
||||
};
|
||||
|
|
Loading…
Add table
Reference in a new issue