Searched refs:boot_cpu_data (Results 76 - 100 of 140) sorted by relevance

123456

/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/x86/kernel/cpu/mcheck/
H A Dmce_intel.c47 if (boot_cpu_data.x86_vendor != X86_VENDOR_INTEL)
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/x86/kernel/
H A Dtsc.c693 lpj = &boot_cpu_data.loops_per_jiffy;
874 if (boot_cpu_data.x86_vendor != X86_VENDOR_INTEL) {
967 if (cpu_has(&boot_cpu_data, X86_FEATURE_CONSTANT_TSC) &&
968 (boot_cpu_data.x86_vendor == X86_VENDOR_AMD))
H A Dsetup.c180 struct cpuinfo_x86 boot_cpu_data __read_mostly = {0, 0, 0, 0, -1, 1, 0, 0, -1};
181 EXPORT_SYMBOL(boot_cpu_data); variable
207 struct cpuinfo_x86 boot_cpu_data __read_mostly = {
210 EXPORT_SYMBOL(boot_cpu_data); variable
730 memcpy(&boot_cpu_data, &new_cpu_data, sizeof(new_cpu_data));
H A Dvmi_32.c863 clear_cpu_cap(&boot_cpu_data, X86_FEATURE_PGE);
866 clear_cpu_cap(&boot_cpu_data, X86_FEATURE_PSE);
869 clear_cpu_cap(&boot_cpu_data, X86_FEATURE_SEP);
872 clear_cpu_cap(&boot_cpu_data, X86_FEATURE_TSC);
875 clear_cpu_cap(&boot_cpu_data, X86_FEATURE_MTRR);
H A Dmpparse.c508 processor.cpufeature = (boot_cpu_data.x86 << 8) |
509 (boot_cpu_data.x86_model << 4) | boot_cpu_data.x86_mask;
510 processor.featureflag = boot_cpu_data.x86_capability[0];
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/x86/mm/
H A Dk8topology_64.c212 bits = boot_cpu_data.x86_coreid_bits;
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/x86/oprofile/
H A Dnmi_int.c596 __u8 cpu_model = boot_cpu_data.x86_model;
638 __u8 cpu_model = boot_cpu_data.x86_model;
703 __u8 vendor = boot_cpu_data.x86_vendor;
704 __u8 family = boot_cpu_data.x86;
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/lguest/x86/
H A Dcore.c664 clear_cpu_cap(&boot_cpu_data, X86_FEATURE_PGE);
675 set_cpu_cap(&boot_cpu_data, X86_FEATURE_PGE);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/parisc/kernel/
H A Dcache.c159 if ((boot_cpu_data.pdc.capabilities & PDC_MODEL_NVA_MASK) ==
170 switch (boot_cpu_data.cpu_type) {
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/x86/kernel/cpu/cpufreq/
H A Dgx-suspmod.c192 if ((boot_cpu_data.x86_vendor != X86_VENDOR_NSC) &&
193 (boot_cpu_data.x86_vendor != X86_VENDOR_CYRIX)) {
H A Dpowernow-k8.c131 if ((boot_cpu_data.x86 == 0x11) && (i >= data->numps))
646 if (boot_cpu_data.x86 == 0x10)
648 else if (boot_cpu_data.x86 == 0x11)
936 if ((boot_cpu_data.x86 == 0x10 && boot_cpu_data.x86_model < 10)
937 || boot_cpu_data.x86 == 0x11) {
1029 if (boot_cpu_data.x86 < 0x11)
1548 num_online_nodes(), boot_cpu_data.x86_model_id, supported_cpus);
H A Dspeedstep-lib.c177 struct cpuinfo_x86 *c = &boot_cpu_data;
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/x86/kernel/cpu/
H A Dcommon.c703 early_identify_cpu(&boot_cpu_data);
851 * On SMP, boot_cpu_data holds the common feature set between
854 * executed, c == &boot_cpu_data.
856 if (c != &boot_cpu_data) {
859 boot_cpu_data.x86_capability[i] &= c->x86_capability[i];
875 if (cpu_has(&boot_cpu_data, X86_FEATURE_RDTSCP))
884 identify_cpu(&boot_cpu_data);
897 BUG_ON(c == &boot_cpu_data);
H A Dintel_cacheinfo.c355 if (boot_cpu_data.x86 != 0x10)
362 if (boot_cpu_data.x86_model < 0x8)
365 if ((boot_cpu_data.x86_model == 0x8 ||
366 boot_cpu_data.x86_model == 0x9)
368 boot_cpu_data.x86_mask < 0x1)
575 if (boot_cpu_data.x86_vendor == X86_VENDOR_AMD) {
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/sh/kernel/
H A Dsignal_32.c149 if (!(boot_cpu_data.flags & CPU_HAS_FPU))
162 if (!(boot_cpu_data.flags & CPU_HAS_FPU))
203 if (boot_cpu_data.flags & CPU_HAS_FPU) {
H A Dptrace_32.c195 if ((boot_cpu_data.flags & CPU_HAS_FPU))
216 if ((boot_cpu_data.flags & CPU_HAS_FPU))
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/cpufreq/
H A Dcpufreq_ondemand.c669 if (boot_cpu_data.x86_vendor == X86_VENDOR_INTEL &&
670 boot_cpu_data.x86 == 6 &&
671 boot_cpu_data.x86_model >= 15)
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/acpi/
H A Dacpi_pad.c61 if (boot_cpu_data.cpuid_level < CPUID_MWAIT_LEAF)
81 switch (boot_cpu_data.x86_vendor) {
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/mn10300/kernel/
H A Dsetup.c37 struct mn10300_cpuinfo boot_cpu_data; variable in typeref:struct:mn10300_cpuinfo
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/parisc/math-emu/
H A Dfpudispatch.c175 if (boot_cpu_data.cpu_type == pcxs)
177 else if (boot_cpu_data.cpu_type == pcxt ||
178 boot_cpu_data.cpu_type == pcxt_)
180 else if (boot_cpu_data.cpu_type >= pcxu)
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/char/
H A Dds1302.c302 baur=(boot_cpu_data.bus_clock/(2*1000*1000));
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/sh/include/asm/
H A Delf.h125 #define ELF_HWCAP (boot_cpu_data.flags)
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/um/kernel/
H A Dum_arch.c40 struct cpuinfo_um boot_cpu_data = { variable in typeref:struct:cpuinfo_um
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/x86/include/asm/
H A Delf.h246 #define ELF_HWCAP (boot_cpu_data.x86_capability[0])
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/x86/kernel/apic/
H A Dprobe_32.c60 switch (boot_cpu_data.x86_vendor) {

Completed in 290 milliseconds

123456