Lines Matching refs:od_table

1243 	OverDriveTable_t *od_table = &(data->smc_state_table.overdrive_table);
1253 ret = smum_smc_table_manager(hwmgr, (uint8_t *)od_table, TABLE_OVERDRIVE, true);
1260 od_table->GfxclkFmin;
1262 od_table->GfxclkFmax;
1271 od_table->GfxclkFreq1 = od_table->GfxclkFmin;
1273 od_table->GfxclkFreq1;
1275 od_table->GfxclkFreq3 = od_table->GfxclkFmax;
1277 od_table->GfxclkFreq3;
1279 od_table->GfxclkFreq2 = (od_table->GfxclkFreq1 + od_table->GfxclkFreq3) / 2;
1281 od_table->GfxclkFreq2;
1285 od_table->GfxclkFreq1),
1288 od_table->GfxclkVolt1 = od8_settings->od8_settings_array[OD8_SETTING_GFXCLK_VOLTAGE1].default_value
1293 od_table->GfxclkFreq2),
1296 od_table->GfxclkVolt2 = od8_settings->od8_settings_array[OD8_SETTING_GFXCLK_VOLTAGE2].default_value
1301 od_table->GfxclkFreq3),
1304 od_table->GfxclkVolt3 = od8_settings->od8_settings_array[OD8_SETTING_GFXCLK_VOLTAGE3].default_value
1323 od_table->UclkFmax;
1330 od_table->OverDrivePct;
1337 od_table->FanMaximumRpm;
1344 od_table->FanMinimumPwm * data->smc_state_table.pp_table.FanMaximumRpm / 100;
1351 od_table->FanTargetTemperature;
1358 od_table->MaxOpTemp;
1381 ret = smum_smc_table_manager(hwmgr, (uint8_t *)od_table, TABLE_OVERDRIVE, false);
1394 OverDriveTable_t od_table;
1400 ret = smum_smc_table_manager(hwmgr, (uint8_t *)(&od_table), TABLE_OVERDRIVE, true);
1407 od_table.GfxclkFmin = (uint16_t)value;
1414 od_table.GfxclkFmax = (uint16_t)value;
1417 od_table.GfxclkFreq1 = (uint16_t)value;
1420 od_table.GfxclkVolt1 = (uint16_t)value;
1423 od_table.GfxclkFreq2 = (uint16_t)value;
1426 od_table.GfxclkVolt2 = (uint16_t)value;
1429 od_table.GfxclkFreq3 = (uint16_t)value;
1432 od_table.GfxclkVolt3 = (uint16_t)value;
1438 od_table.UclkFmax = (uint16_t)value;
1441 od_table.OverDrivePct = (int16_t)value;
1444 od_table.FanMaximumRpm = (uint16_t)value;
1447 od_table.FanMinimumPwm = (uint16_t)value;
1450 od_table.FanTargetTemperature = (uint16_t)value;
1453 od_table.MaxOpTemp = (uint16_t)value;
1457 ret = smum_smc_table_manager(hwmgr, (uint8_t *)(&od_table), TABLE_OVERDRIVE, false);
2963 OverDriveTable_t *od_table =
3006 if ((input_index == 0 && od_table->GfxclkFmin != input_clk) ||
3007 (input_index == 1 && od_table->GfxclkFmax != input_clk))
3011 od_table->GfxclkFmin = input_clk;
3013 od_table->GfxclkFmax = input_clk;
3049 if (input_index == 1 && od_table->UclkFmax != input_clk)
3052 od_table->UclkFmax = input_clk;
3108 od_table->GfxclkFreq1 = input_clk;
3109 od_table->GfxclkVolt1 = input_vol * VOLTAGE_SCALE;
3112 od_table->GfxclkFreq2 = input_clk;
3113 od_table->GfxclkVolt2 = input_vol * VOLTAGE_SCALE;
3116 od_table->GfxclkFreq3 = input_clk;
3117 od_table->GfxclkVolt3 = input_vol * VOLTAGE_SCALE;
3128 (uint8_t *)od_table,
3137 (uint8_t *)od_table,
3361 OverDriveTable_t *od_table =
3488 od_table->GfxclkFmin);
3490 od_table->GfxclkFmax);
3498 od_table->UclkFmax);
3512 od_table->GfxclkFreq1,
3513 od_table->GfxclkVolt1 / VOLTAGE_SCALE);
3515 od_table->GfxclkFreq2,
3516 od_table->GfxclkVolt2 / VOLTAGE_SCALE);
3518 od_table->GfxclkFreq3,
3519 od_table->GfxclkVolt3 / VOLTAGE_SCALE);