Lines Matching refs:model

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
1833 bclk = discover_bclk(family, model); in probe_nhm_msrs()
1835 switch (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
1888 switch (model) { in has_nhm_turbo_ratio_limit()
1897 int has_ivt_turbo_ratio_limit(unsigned int family, unsigned int model) in has_ivt_turbo_ratio_limit() argument
1905 switch (model) { 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
1921 switch (model) { 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
1937 switch (model) { in has_knl_turbo_ratio_limit()
1944 int has_config_tdp(unsigned int family, unsigned int model) in has_config_tdp() argument
1952 switch (model) { 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()
2145 double get_tdp(model) in get_tdp() argument
2153 switch (model) { in get_tdp()
2167 rapl_dram_energy_units_probe(int model, double rapl_energy_units) in rapl_dram_energy_units_probe() argument
2171 switch (model) { in rapl_dram_energy_units_probe()
2188 void rapl_probe(unsigned int family, unsigned int model) in rapl_probe() argument
2200 switch (model) { in rapl_probe()
2237 if (model == 0x37) in rapl_probe()
2242 rapl_dram_energy_units = rapl_dram_energy_units_probe(model, rapl_energy_units); in rapl_probe()
2250 tdp = get_tdp(model); in rapl_probe()
2259 void perf_limit_reasons_probe(family, model) in perf_limit_reasons_probe() argument
2267 switch (model) { in perf_limit_reasons_probe()
2476 int has_snb_msrs(unsigned int family, unsigned int model) in has_snb_msrs() argument
2481 switch (model) { in has_snb_msrs()
2508 int has_hsw_msrs(unsigned int family, unsigned int model) in has_hsw_msrs() argument
2513 switch (model) { in has_hsw_msrs()
2531 int has_skl_msrs(unsigned int family, unsigned int model) in has_skl_msrs() argument
2536 switch (model) { in has_skl_msrs()
2546 int is_slm(unsigned int family, unsigned int model) in is_slm() argument
2550 switch (model) { in is_slm()
2558 int is_knl(unsigned int family, unsigned int model) in is_knl() argument
2562 switch (model) { in is_knl()
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
2694 model = (fms >> 4) & 0xf; in process_cpuid()
2697 model += ((fms >> 16) & 0xf) << 4; in process_cpuid()
2701 max_level, family, model, stepping, family, model, stepping); in process_cpuid()
2759 switch(model) { 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()