processor.h (47f10a36003eaf493125a5e6687dd1ff775bfd8c) | processor.h (47bdf3378d62a627cfb8a54e1180c08d67078b61) |
---|---|
1#ifndef _ASM_X86_PROCESSOR_H 2#define _ASM_X86_PROCESSOR_H 3 4#include <asm/processor-flags.h> 5 6/* Forward declaration, a strange C thing */ 7struct task_struct; 8struct mm_struct; --- 175 unchanged lines hidden (view full) --- 184extern void cpu_detect(struct cpuinfo_x86 *c); 185 186extern void early_cpu_init(void); 187extern void identify_boot_cpu(void); 188extern void identify_secondary_cpu(struct cpuinfo_x86 *); 189extern void print_cpu_info(struct cpuinfo_x86 *); 190void print_cpu_msr(struct cpuinfo_x86 *); 191extern void init_scattered_cpuid_features(struct cpuinfo_x86 *c); | 1#ifndef _ASM_X86_PROCESSOR_H 2#define _ASM_X86_PROCESSOR_H 3 4#include <asm/processor-flags.h> 5 6/* Forward declaration, a strange C thing */ 7struct task_struct; 8struct mm_struct; --- 175 unchanged lines hidden (view full) --- 184extern void cpu_detect(struct cpuinfo_x86 *c); 185 186extern void early_cpu_init(void); 187extern void identify_boot_cpu(void); 188extern void identify_secondary_cpu(struct cpuinfo_x86 *); 189extern void print_cpu_info(struct cpuinfo_x86 *); 190void print_cpu_msr(struct cpuinfo_x86 *); 191extern void init_scattered_cpuid_features(struct cpuinfo_x86 *c); |
192extern u32 get_scattered_cpuid_leaf(unsigned int level, 193 unsigned int sub_leaf, 194 enum cpuid_regs_idx reg); |
|
192extern unsigned int init_intel_cacheinfo(struct cpuinfo_x86 *c); 193extern void init_amd_cacheinfo(struct cpuinfo_x86 *c); 194 195extern void detect_extended_topology(struct cpuinfo_x86 *c); 196extern void detect_ht(struct cpuinfo_x86 *c); 197 198#ifdef CONFIG_X86_32 199extern int have_cpuid_p(void); --- 671 unchanged lines hidden --- | 195extern unsigned int init_intel_cacheinfo(struct cpuinfo_x86 *c); 196extern void init_amd_cacheinfo(struct cpuinfo_x86 *c); 197 198extern void detect_extended_topology(struct cpuinfo_x86 *c); 199extern void detect_ht(struct cpuinfo_x86 *c); 200 201#ifdef CONFIG_X86_32 202extern int have_cpuid_p(void); --- 671 unchanged lines hidden --- |