Lines Matching refs:perfmode
10446 static int convert_profile_to_dytc(enum platform_profile_option profile, int *perfmode) in convert_profile_to_dytc() argument
10451 *perfmode = DYTC_MODE_MMC_LOWPOWER; in convert_profile_to_dytc()
10453 *perfmode = platform_psc_profile_lowpower; in convert_profile_to_dytc()
10457 *perfmode = DYTC_MODE_MMC_BALANCE; in convert_profile_to_dytc()
10459 *perfmode = platform_psc_profile_balanced; in convert_profile_to_dytc()
10463 *perfmode = DYTC_MODE_MMC_PERFORM; in convert_profile_to_dytc()
10465 *perfmode = platform_psc_profile_performance; in convert_profile_to_dytc()
10555 int perfmode; in dytc_profile_set() local
10563 err = convert_profile_to_dytc(profile, &perfmode); in dytc_profile_set()
10580 err = dytc_cql_command(DYTC_SET_COMMAND(DYTC_FUNCTION_MMC, perfmode, 1), in dytc_profile_set()
10586 err = dytc_command(DYTC_SET_COMMAND(DYTC_FUNCTION_PSC, perfmode, 1), &output); in dytc_profile_set()
10620 int perfmode, funcmode = 0; in dytc_profile_refresh() local
10640 perfmode = (output >> DYTC_GET_MODE_BIT) & 0xF; in dytc_profile_refresh()
10641 err = convert_dytc_to_profile(funcmode, perfmode, &profile); in dytc_profile_refresh()