b6d549a296
cpu.h was already included everywhere needed. Fixes following sparse warnings: arch/x86/kernel/cpu/amd.c:343:12: warning: symbol 'amd_init_cpu' was not declared. Should it be static? arch/x86/kernel/cpu/cyrix.c:444:12: warning: symbol 'cyrix_init_cpu' was not declared. Should it be static? arch/x86/kernel/cpu/cyrix.c:456:12: warning: symbol 'nsc_init_cpu' was not declared. Should it be static? arch/x86/kernel/cpu/centaur.c:467:12: warning: symbol 'centaur_init_cpu' was not declared. Should it be static? arch/x86/kernel/cpu/transmeta.c:112:12: warning: symbol 'transmeta_init_cpu' was not declared. Should it be static? arch/x86/kernel/cpu/intel.c:296:12: warning: symbol 'intel_cpu_init' was not declared. Should it be static? arch/x86/kernel/cpu/nexgen.c:56:12: warning: symbol 'nexgen_init_cpu' was not declared. Should it be static? arch/x86/kernel/cpu/umc.c:22:12: warning: symbol 'umc_init_cpu' was not declared. Should it be static? Signed-off-by: Harvey Harrison <harvey.harrison@gmail.com> Signed-off-by: Ingo Molnar <mingo@elte.hu> Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
38 lines
947 B
C
38 lines
947 B
C
|
|
struct cpu_model_info {
|
|
int vendor;
|
|
int family;
|
|
char *model_names[16];
|
|
};
|
|
|
|
/* attempt to consolidate cpu attributes */
|
|
struct cpu_dev {
|
|
char * c_vendor;
|
|
|
|
/* some have two possibilities for cpuid string */
|
|
char * c_ident[2];
|
|
|
|
struct cpu_model_info c_models[4];
|
|
|
|
void (*c_init)(struct cpuinfo_x86 * c);
|
|
void (*c_identify)(struct cpuinfo_x86 * c);
|
|
unsigned int (*c_size_cache)(struct cpuinfo_x86 * c, unsigned int size);
|
|
};
|
|
|
|
extern struct cpu_dev * cpu_devs [X86_VENDOR_NUM];
|
|
|
|
extern int get_model_name(struct cpuinfo_x86 *c);
|
|
extern void display_cacheinfo(struct cpuinfo_x86 *c);
|
|
|
|
extern void early_init_intel(struct cpuinfo_x86 *c);
|
|
extern void early_init_amd(struct cpuinfo_x86 *c);
|
|
|
|
/* Specific CPU type init functions */
|
|
int intel_cpu_init(void);
|
|
int amd_init_cpu(void);
|
|
int cyrix_init_cpu(void);
|
|
int nsc_init_cpu(void);
|
|
int centaur_init_cpu(void);
|
|
int transmeta_init_cpu(void);
|
|
int nexgen_init_cpu(void);
|
|
int umc_init_cpu(void);
|