Searched refs:boot_cpu_data (Results 1 - 25 of 77) sorted by relevance

1234

/asus-wl-520gu-7.0.1.45/src/router/iproute2/reference/asm-i386/
H A Dbugs.h30 boot_cpu_data.hlt_works_ok = 0;
46 boot_cpu_data.hard_math = 0;
69 if (!boot_cpu_data.hard_math) {
107 : "=m" (*&boot_cpu_data.fdiv_bug)
109 if (boot_cpu_data.fdiv_bug)
116 if (!boot_cpu_data.hlt_works_ok) {
169 if (boot_cpu_data.x86 == 3)
196 if (boot_cpu_data.x86_vendor == X86_VENDOR_INTEL
197 && test_bit(X86_FEATURE_APIC, &boot_cpu_data.x86_capability)
198 && boot_cpu_data
[all...]
H A Dprocessor.h73 extern struct cpuinfo_x86 boot_cpu_data;
80 #define cpu_data (&boot_cpu_data)
81 #define current_cpu_data boot_cpu_data
84 #define cpu_has_pge (test_bit(X86_FEATURE_PGE, boot_cpu_data.x86_capability))
85 #define cpu_has_pse (test_bit(X86_FEATURE_PSE, boot_cpu_data.x86_capability))
86 #define cpu_has_pae (test_bit(X86_FEATURE_PAE, boot_cpu_data.x86_capability))
87 #define cpu_has_tsc (test_bit(X86_FEATURE_TSC, boot_cpu_data.x86_capability))
88 #define cpu_has_de (test_bit(X86_FEATURE_DE, boot_cpu_data.x86_capability))
89 #define cpu_has_vme (test_bit(X86_FEATURE_VME, boot_cpu_data.x86_capability))
90 #define cpu_has_fxsr (test_bit(X86_FEATURE_FXSR, boot_cpu_data
[all...]
H A Delf.h89 #define ELF_HWCAP (boot_cpu_data.x86_capability[0])
/asus-wl-520gu-7.0.1.45/src/linux/linux/include/asm-i386/
H A Dbugs.h30 boot_cpu_data.hlt_works_ok = 0;
46 boot_cpu_data.hard_math = 0;
69 if (!boot_cpu_data.hard_math) {
107 : "=m" (*&boot_cpu_data.fdiv_bug)
109 if (boot_cpu_data.fdiv_bug)
116 if (!boot_cpu_data.hlt_works_ok) {
169 if (boot_cpu_data.x86 == 3)
196 if (boot_cpu_data.x86_vendor == X86_VENDOR_INTEL
197 && test_bit(X86_FEATURE_APIC, &boot_cpu_data.x86_capability)
198 && boot_cpu_data
[all...]
H A Dprocessor.h73 extern struct cpuinfo_x86 boot_cpu_data;
80 #define cpu_data (&boot_cpu_data)
81 #define current_cpu_data boot_cpu_data
84 #define cpu_has_pge (test_bit(X86_FEATURE_PGE, boot_cpu_data.x86_capability))
85 #define cpu_has_pse (test_bit(X86_FEATURE_PSE, boot_cpu_data.x86_capability))
86 #define cpu_has_pae (test_bit(X86_FEATURE_PAE, boot_cpu_data.x86_capability))
87 #define cpu_has_tsc (test_bit(X86_FEATURE_TSC, boot_cpu_data.x86_capability))
88 #define cpu_has_de (test_bit(X86_FEATURE_DE, boot_cpu_data.x86_capability))
89 #define cpu_has_vme (test_bit(X86_FEATURE_VME, boot_cpu_data.x86_capability))
90 #define cpu_has_fxsr (test_bit(X86_FEATURE_FXSR, boot_cpu_data
[all...]
H A Delf.h89 #define ELF_HWCAP (boot_cpu_data.x86_capability[0])
/asus-wl-520gu-7.0.1.45/src/linux/linux/arch/parisc/kernel/
H A Dprocessor.c46 struct system_cpuinfo_parisc boot_cpu_data; variable in typeref:struct:system_cpuinfo_parisc
53 ** Monarch CPU will initialize boot_cpu_data which shouldn't
82 if (boot_cpu_data.cpu_count > 0) {
91 cpuid = boot_cpu_data.cpu_count;
132 boot_cpu_data.cpu_count--;
142 boot_cpu_data.cpu_count++;
176 * collect_boot_cpu_data - Fill the boot_cpu_data structure.
179 * in the boot_cpu_data structure.
183 memset(&boot_cpu_data, 0, sizeof(boot_cpu_data));
[all...]
H A Dsetup.c87 switch (boot_cpu_data.cpu_type) {
137 /* initialize the LCD/LED after boot_cpu_data is available ! */
197 switch (boot_cpu_data.cpu_type) {
288 boot_cpu_data.cpu_count,
289 boot_cpu_data.cpu_name,
290 boot_cpu_data.cpu_hz / 1000000,
291 boot_cpu_data.cpu_hz % 1000000 );
H A Dcache.c140 if ((boot_cpu_data.pdc.capabilities & PDC_MODEL_NVA_MASK) == PDC_MODEL_NVA_UNSUPPORTED) {
152 if (boot_cpu_data.cpu_type == pcxl2)
155 switch (boot_cpu_data.cpu_type) {
H A Dperf.c435 if (boot_cpu_data.cpu_type == pcxu ||
436 boot_cpu_data.cpu_type == pcxu_) {
438 } else if (boot_cpu_data.cpu_type == pcxw ||
439 boot_cpu_data.cpu_type == pcxw_ ||
440 boot_cpu_data.cpu_type == pcxw2) {
442 if (boot_cpu_data.cpu_type == pcxw2)
/asus-wl-520gu-7.0.1.45/src/linux/linux/arch/x86_64/kernel/
H A Dhead64.c62 cpuid(0, &boot_cpu_data.cpuid_level,
63 (int *)&boot_cpu_data.x86_vendor_id[0],
64 (int *)&boot_cpu_data.x86_vendor_id[8],
65 (int *)&boot_cpu_data.x86_vendor_id[4]);
68 cpuid(1, &eax, &dummy, &dummy, (int *) &boot_cpu_data.x86_capability);
69 boot_cpu_data.x86 = (eax >> 8) & 0xf;
70 boot_cpu_data.x86_model = (eax >> 4) & 0xf;
71 boot_cpu_data.x86_mask = eax & 0xf;
H A Dnmi.c77 switch (boot_cpu_data.x86_vendor) {
80 return boot_cpu_data.x86 >= 6;
142 switch (boot_cpu_data.x86_vendor) {
144 if (strstr(boot_cpu_data.x86_model_id, "Screwdriver"))
149 switch (boot_cpu_data.x86) {
280 switch (boot_cpu_data.x86_vendor) {
282 if (boot_cpu_data.x86 < 6)
284 if (strstr(boot_cpu_data.x86_model_id, "Screwdriver"))
289 switch (boot_cpu_data.x86) {
H A Dapic.c592 get_cpu_vendor(&boot_cpu_data);
594 switch (boot_cpu_data.x86_vendor) {
596 if (boot_cpu_data.x86 == 6 && boot_cpu_data.x86_model > 1)
600 if (boot_cpu_data.x86 == 6 ||
601 (boot_cpu_data.x86 == 15 && cpu_has_apic) ||
602 (boot_cpu_data.x86 == 5 && cpu_has_apic))
632 set_bit(X86_FEATURE_APIC, &boot_cpu_data.x86_capability);
/asus-wl-520gu-7.0.1.45/src/router/iproute2/reference/asm-parisc/
H A Ddelay.h5 #include <asm/processor.h> /* for boot_cpu_data */
38 __cr16_delay(usecs * ((unsigned long)boot_cpu_data.cpu_hz / 1000000UL));
/asus-wl-520gu-7.0.1.45/src/linux/linux/include/asm-parisc/
H A Ddelay.h5 #include <asm/processor.h> /* for boot_cpu_data */
38 __cr16_delay(usecs * ((unsigned long)boot_cpu_data.cpu_hz / 1000000UL));
/asus-wl-520gu-7.0.1.45/src/router/iproute2/reference/asm-x86_64/
H A Dbugs.h32 identify_cpu(&boot_cpu_data);
/asus-wl-520gu-7.0.1.45/src/linux/linux/include/asm-x86_64/
H A Dbugs.h32 identify_cpu(&boot_cpu_data);
/asus-wl-520gu-7.0.1.45/src/linux/linux/arch/i386/kernel/
H A Dnmi.c117 (boot_cpu_data.x86_vendor == X86_VENDOR_INTEL) &&
118 (boot_cpu_data.x86 == 6 || boot_cpu_data.x86 == 15))
121 (boot_cpu_data.x86_vendor == X86_VENDOR_AMD) &&
122 (boot_cpu_data.x86 == 6))
143 switch (boot_cpu_data.x86_vendor) {
148 switch (boot_cpu_data.x86) {
279 switch (boot_cpu_data.x86_vendor) {
281 if (boot_cpu_data.x86 != 6)
286 switch (boot_cpu_data
[all...]
H A Dapic.c590 get_cpu_vendor(&boot_cpu_data);
592 switch (boot_cpu_data.x86_vendor) {
594 if (boot_cpu_data.x86 == 6 && boot_cpu_data.x86_model > 1)
598 if (boot_cpu_data.x86 == 6 ||
599 (boot_cpu_data.x86 == 15 && cpu_has_apic) ||
600 (boot_cpu_data.x86 == 5 && cpu_has_apic))
630 set_bit(X86_FEATURE_APIC, &boot_cpu_data.x86_capability);
/asus-wl-520gu-7.0.1.45/src/router/iproute2/reference/asm-sh/
H A Dprocessor.h42 extern struct sh_cpuinfo boot_cpu_data;
44 #define cpu_data (&boot_cpu_data)
45 #define current_cpu_data boot_cpu_data
/asus-wl-520gu-7.0.1.45/src/linux/linux/include/asm-sh/
H A Dprocessor.h42 extern struct sh_cpuinfo boot_cpu_data;
44 #define cpu_data (&boot_cpu_data)
45 #define current_cpu_data boot_cpu_data
/asus-wl-520gu-7.0.1.45/src/linux/linux/drivers/char/drm/
H A Ddrm_init.h105 if (boot_cpu_data.x86 == 3) return 0; /* No cmpxchg on a 386 */
/asus-wl-520gu-7.0.1.45/src/linux/linux/drivers/char/drm-4.0/
H A Dinit.c106 if (boot_cpu_data.x86 == 3) return 0; /* No cmpxchg on a 386 */
/asus-wl-520gu-7.0.1.45/src/linux/linux/arch/ia64/kernel/
H A Dsetup.c17 * 06/24/99 W.Drummond added boot_cpu_data.
58 struct cpuinfo_ia64 *boot_cpu_data; variable in typeref:struct:cpuinfo_ia64
538 if (!boot_cpu_data) {
541 boot_cpu_data = my_cpu_data;
553 memcpy(my_cpu_data, boot_cpu_data->cpu_data[smp_processor_id()],
555 __free_pages(virt_to_page(boot_cpu_data->cpu_data[smp_processor_id()]),
558 boot_cpu_data->cpu_data[cpu]->cpu_data[smp_processor_id()] = my_cpu_data;
/asus-wl-520gu-7.0.1.45/src/linux/linux/arch/i386/mm/
H A Dpageattr.c55 if (!test_bit(X86_FEATURE_SELFSNOOP, boot_cpu_data.x86_capability)) {
57 if (boot_cpu_data.x86_model >= 4)

Completed in 235 milliseconds

1234