Lines Matching refs:family

100 double discover_bclk(unsigned int family, unsigned int model);
1821 int probe_nhm_msrs(unsigned int family, unsigned int model) in probe_nhm_msrs() argument
1830 if (family != 6) in probe_nhm_msrs()
1833 bclk = discover_bclk(family, model); in probe_nhm_msrs()
1886 int has_nhm_turbo_ratio_limit(unsigned int family, unsigned int model) in has_nhm_turbo_ratio_limit() argument
1897 int has_ivt_turbo_ratio_limit(unsigned int family, unsigned int model) in has_ivt_turbo_ratio_limit() argument
1902 if (family != 6) in has_ivt_turbo_ratio_limit()
1913 int has_hsw_turbo_ratio_limit(unsigned int family, unsigned int model) in has_hsw_turbo_ratio_limit() argument
1918 if (family != 6) in has_hsw_turbo_ratio_limit()
1929 int has_knl_turbo_ratio_limit(unsigned int family, unsigned int model) in has_knl_turbo_ratio_limit() argument
1934 if (family != 6) in has_knl_turbo_ratio_limit()
1944 int has_config_tdp(unsigned int family, unsigned int model) in has_config_tdp() argument
1949 if (family != 6) in has_config_tdp()
1973 dump_cstate_pstate_config_info(family, model) in dump_cstate_pstate_config_info() argument
1980 if (has_hsw_turbo_ratio_limit(family, model)) in dump_cstate_pstate_config_info()
1983 if (has_ivt_turbo_ratio_limit(family, model)) in dump_cstate_pstate_config_info()
1986 if (has_nhm_turbo_ratio_limit(family, model)) in dump_cstate_pstate_config_info()
1989 if (has_knl_turbo_ratio_limit(family, model)) in dump_cstate_pstate_config_info()
1992 if (has_config_tdp(family, model)) in dump_cstate_pstate_config_info()
2188 void rapl_probe(unsigned int family, unsigned int model) in rapl_probe() argument
2197 if (family != 6) in rapl_probe()
2259 void perf_limit_reasons_probe(family, model) in perf_limit_reasons_probe() argument
2264 if (family != 6) in perf_limit_reasons_probe()
2476 int has_snb_msrs(unsigned int family, unsigned int model) in has_snb_msrs() argument
2508 int has_hsw_msrs(unsigned int family, unsigned int model) in has_hsw_msrs() argument
2531 int has_skl_msrs(unsigned int family, unsigned int model) in has_skl_msrs() argument
2546 int is_slm(unsigned int family, unsigned int model) in is_slm() argument
2558 int is_knl(unsigned int family, unsigned int model) in is_knl() argument
2569 unsigned int get_aperf_mperf_multiplier(unsigned int family, unsigned int model) in get_aperf_mperf_multiplier() argument
2571 if (is_knl(family, model)) in get_aperf_mperf_multiplier()
2600 double discover_bclk(unsigned int family, unsigned int model) in discover_bclk() argument
2602 if (has_snb_msrs(family, model)) in discover_bclk()
2604 else if (is_slm(family, model)) in discover_bclk()
2679 unsigned int fms, family, model, stepping; in process_cpuid() local
2693 family = (fms >> 8) & 0xf; in process_cpuid()
2696 if (family == 6 || family == 0xf) in process_cpuid()
2701 max_level, family, model, stepping, family, model, stepping); in process_cpuid()
2778 aperf_mperf_multiplier = get_aperf_mperf_multiplier(family, model); in process_cpuid()
2780 do_nhm_platform_info = do_nhm_cstates = do_smi = probe_nhm_msrs(family, model); in process_cpuid()
2781 do_snb_cstates = has_snb_msrs(family, model); in process_cpuid()
2786 do_c8_c9_c10 = has_hsw_msrs(family, model); in process_cpuid()
2787 do_skl_residency = has_skl_msrs(family, model); in process_cpuid()
2788 do_slm_cstates = is_slm(family, model); in process_cpuid()
2789 do_knl_cstates = is_knl(family, model); in process_cpuid()
2791 rapl_probe(family, model); in process_cpuid()
2792 perf_limit_reasons_probe(family, model); in process_cpuid()
2797 if (has_skl_msrs(family, model)) in process_cpuid()