/Linux-v5.4/arch/x86/kernel/cpu/ |
D | amd.c | 108 if (c->x86_model == 9 || c->x86_model == 10) { in init_amd_k5() 121 if (c->x86_model < 6) { in init_amd_k6() 123 if (c->x86_model == 0) { in init_amd_k6() 130 if (c->x86_model == 6 && c->x86_stepping == 1) { in init_amd_k6() 159 if (c->x86_model < 8 || in init_amd_k6() 160 (c->x86_model == 8 && c->x86_stepping < 8)) { in init_amd_k6() 179 if ((c->x86_model == 8 && c->x86_stepping > 7) || in init_amd_k6() 180 c->x86_model == 9 || c->x86_model == 13) { in init_amd_k6() 201 if (c->x86_model == 10) { in init_amd_k6() 219 if (c->x86_model >= 6 && c->x86_model <= 10) { in init_amd_k7() [all …]
|
D | intel.c | 78 switch (c->x86_model) { in check_memory_type_self_snoop_errata() 112 switch (c->x86_model) { in probe_xeon_phi_r3mwait() 183 if (c->x86_model == spectre_bad_microcodes[i].model && in bad_spectre_microcode() 195 if (c->x86 > 6 || (c->x86 == 6 && c->x86_model >= 0xd)) { in early_init_intel() 203 if ((c->x86 == 0xf && c->x86_model >= 0x03) || in early_init_intel() 204 (c->x86 == 0x6 && c->x86_model >= 0x0e)) in early_init_intel() 234 if (c->x86 == 6 && c->x86_model == 0x1c && c->x86_stepping <= 2 && in early_init_intel() 249 if (c->x86 == 0xF && c->x86_model == 0x3 in early_init_intel() 267 switch (c->x86_model) { in early_init_intel() 289 if (c->x86 == 6 && c->x86_model < 15) in early_init_intel() [all …]
|
D | centaur.c | 59 if (c->x86_model >= 6 && c->x86_model <= 13) { in init_c3() 67 if (c->x86_model >= 6 && c->x86_model < 9) in init_c3() 70 if (c->x86 == 0x6 && c->x86_model >= 0xf) { in init_c3() 109 if (c->x86_model >= 0xf) in early_init_centaur() 184 switch (c->x86_model) { in init_centaur() 233 if (c->x86_model >= 8) in init_centaur() 262 if ((c->x86 == 6) && ((c->x86_model == 7) || (c->x86_model == 8))) in centaur_size_cache() 270 if ((c->x86 == 6) && (c->x86_model == 9) && in centaur_size_cache()
|
D | match.c | 42 if (m->model != X86_MODEL_ANY && c->x86_model != m->model) in x86_match_cpu() 58 for (m = match; m->x86_family | m->x86_model; m++) { in x86_match_cpu_with_stepping() 63 if (c->x86_model != m->x86_model) in x86_match_cpu_with_stepping()
|
D | cyrix.c | 217 c->x86_model = (dir1 >> 4) + 1; in init_cyrix() 249 (c->x86_model)++; in init_cyrix() 314 c->x86_model = (dir1 & 0x20) ? 1 : 2; in init_cyrix() 331 (c->x86_model)++; in init_cyrix() 380 if (c->x86 == 5 && c->x86_model == 5) in init_nsc()
|
/Linux-v5.4/drivers/hwmon/ |
D | fam15h_power.c | 71 return boot_cpu_data.x86 == 0x15 && boot_cpu_data.x86_model >= 0x60; in is_carrizo_or_later() 301 (c->x86_model <= 0xf || in fam15h_power_init_attrs() 302 (c->x86_model >= 0x60 && c->x86_model <= 0x7f))) in fam15h_power_init_attrs() 319 (c->x86_model <= 0xf || in fam15h_power_init_attrs() 320 (c->x86_model >= 0x60 && c->x86_model <= 0x7f))) in fam15h_power_init_attrs()
|
D | coretemp.c | 258 if (c->x86_model == tm->model && in adjust_tjmax() 265 if (c->x86_model == 0xf && c->x86_stepping < 4) in adjust_tjmax() 268 if (c->x86_model > 0xe && usemsr_ee) { in adjust_tjmax() 282 } else if (c->x86_model < 0x17 && !(eax & 0x10000000)) { in adjust_tjmax() 297 if (c->x86_model == 0x17 && in adjust_tjmax() 331 u8 model = c->x86_model; in cpu_has_tjmax() 416 if (c->x86_model == 0xe && c->x86_stepping < 0xc && c->microcode < 0x39) { in chk_ucode_version() 487 if (c->x86_model > 0xe && c->x86_model != 0x1c) { in create_core_data()
|
D | k10temp.c | 280 return boot_cpu_data.x86_model < 4 || in has_erratum_319() 281 (boot_cpu_data.x86_model == 4 && boot_cpu_data.x86_stepping <= 2); in has_erratum_319() 310 ((boot_cpu_data.x86_model & 0xf0) == 0x60 || in k10temp_probe() 311 (boot_cpu_data.x86_model & 0xf0) == 0x70)) { in k10temp_probe()
|
/Linux-v5.4/arch/x86/include/asm/ |
D | geode.h | 18 (boot_cpu_data.x86_model == 5)); in is_geode_gx() 25 (boot_cpu_data.x86_model == 10)); in is_geode_lx()
|
D | cpu_device_id.h | 25 u8 x86_model; member 33 .x86_model = (model), \
|
D | cpu.h | 41 unsigned int x86_model(unsigned int sig);
|
/Linux-v5.4/arch/x86/lib/ |
D | cpu.c | 19 unsigned int x86_model(unsigned int sig) in x86_model() function 32 EXPORT_SYMBOL_GPL(x86_model);
|
/Linux-v5.4/drivers/char/hw_random/ |
D | via-rng.c | 138 if (((c->x86 == 6) && (c->x86_model >= 0x0f)) || (c->x86 > 6)){ in via_rng_init() 165 if ((c->x86_model == 9) && (c->x86_stepping > 7)) in via_rng_init() 169 if (c->x86_model >= 10) in via_rng_init()
|
/Linux-v5.4/drivers/cpufreq/ |
D | speedstep-lib.c | 186 if (c->x86_model < 2) in pentium4_get_frequency() 259 pr_debug("x86: %x, model: %x\n", c->x86, c->x86_model); in speedstep_detect_processor() 268 if (c->x86_model != 2) in speedstep_detect_processor() 324 switch (c->x86_model) { in speedstep_detect_processor()
|
D | p4-clockmod.c | 123 switch (c->x86_model) { in cpufreq_p4_get_frequency() 166 cpuid = (c->x86 << 8) | (c->x86_model << 4) | c->x86_stepping; in cpufreq_p4_cpu_init() 177 c->x86_model < 2) { in cpufreq_p4_cpu_init()
|
D | speedstep-centrino.c | 40 __u8 x86_model; /* model */ member 280 (c->x86_model == x->x86_model) && in centrino_verify_cpu_id()
|
D | sc520_freq.c | 77 c->x86 != 4 || c->x86_model != 9) in sc520_freq_cpu_init()
|
/Linux-v5.4/arch/x86/platform/intel-mid/ |
D | intel-mid.c | 109 boot_cpu_data.x86, boot_cpu_data.x86_model); in intel_mid_arch_setup() 114 switch (boot_cpu_data.x86_model) { in intel_mid_arch_setup()
|
/Linux-v5.4/arch/x86/crypto/ |
D | twofish_glue_3way.c | 218 (boot_cpu_data.x86_model == 0x1c || in is_blacklisted_cpu() 219 boot_cpu_data.x86_model == 0x26 || in is_blacklisted_cpu() 220 boot_cpu_data.x86_model == 0x36)) { in is_blacklisted_cpu()
|
/Linux-v5.4/arch/x86/kernel/cpu/microcode/ |
D | intel.c | 122 model = x86_model(sig); in microcode_matches() 125 model_ucode = x86_model(mc_header->sig); in microcode_matches() 140 model_ucode = x86_model(ext_sig->sig); in microcode_matches() 403 model = x86_model(eax); in collect_cpu_info_early() 510 x86_family(eax), x86_model(eax), x86_stepping(eax)); in load_builtin_intel_microcode() 772 if ((c->x86_model >= 5) || (c->x86 > 6)) { in collect_cpu_info() 956 c->x86_model == INTEL_FAM6_BROADWELL_X && in is_blacklisted() 982 c->x86, c->x86_model, c->x86_stepping); in request_microcode_fw()
|
/Linux-v5.4/arch/x86/kernel/acpi/ |
D | cstate.c | 53 (c->x86 > 0xf || (c->x86 == 6 && c->x86_model >= 0x0f))) in acpi_processor_power_init_bm_check() 63 if (c->x86 > 6 || (c->x86 == 6 && c->x86_model == 0x0f && in acpi_processor_power_init_bm_check()
|
/Linux-v5.4/arch/x86/events/intel/ |
D | p6.c | 251 switch (boot_cpu_data.x86_model) { in p6_pmu_init() 272 pr_cont("unsupported p6 CPU model %d ", boot_cpu_data.x86_model); in p6_pmu_init()
|
/Linux-v5.4/arch/x86/oprofile/ |
D | op_model_ppro.c | 88 __this_cpu_read(cpu_info.x86_model) == 15)) { in ppro_setup_ctrs() 216 boot_cpu_data.x86_model == 15) { in arch_perfmon_setup_counters()
|
/Linux-v5.4/arch/x86/kernel/ |
D | alternative.c | 212 boot_cpu_data.x86_model >= 0x0f && in arch_init_ideal_nops() 213 boot_cpu_data.x86_model != 0x1c && in arch_init_ideal_nops() 214 boot_cpu_data.x86_model != 0x26 && in arch_init_ideal_nops() 215 boot_cpu_data.x86_model != 0x27 && in arch_init_ideal_nops() 216 boot_cpu_data.x86_model < 0x30) { in arch_init_ideal_nops()
|
/Linux-v5.4/drivers/mtd/nand/raw/ |
D | cs553x_nand.c | 253 boot_cpu_data.x86_model == 10) in is_geode() 259 boot_cpu_data.x86_model == 5) in is_geode()
|