HomeSort by: relevance | last modified time | path
    Searched defs:activity_percent (Results 1 - 3 of 3) sorted by relevancy

  /src/sys/external/bsd/drm2/dist/drm/amd/powerplay/hwmgr/
amdgpu_smu8_hwmgr.c 1697 uint32_t sclk, vclk, dclk, ecclk, tmp, activity_percent; local in function:smu8_read_sensor
1765 activity_percent = cgs_read_register(hwmgr->device, mmSMU_MP1_SRBM2P_ARG_0);
1766 activity_percent = activity_percent > 100 ? 100 : activity_percent;
1768 activity_percent = 50;
1770 *((uint32_t *)value) = activity_percent;
amdgpu_vega10_hwmgr.c 3824 uint32_t sclk_mhz, mclk_idx, activity_percent = 0; local in function:vega10_read_sensor
3848 activity_percent = smum_get_argument(hwmgr);
3849 *((uint32_t *)value) = activity_percent > 100 ? 100 : activity_percent;
amdgpu_smu7_hwmgr.c 3535 uint32_t sclk, mclk, activity_percent; local in function:smu7_read_sensor
3564 activity_percent = cgs_read_ind_register(hwmgr->device, CGS_IND_REG__SMC, offset);
3565 activity_percent += 0x80;
3566 activity_percent >>= 8;
3567 *((uint32_t *)value) = activity_percent > 100 ? 100 : activity_percent;

Completed in 96 milliseconds