There is no reason that this gunk is in a generic header file. The wildcard defines need to stay as they are required by file2alias. Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Signed-off-by: Borislav Petkov <bp@suse.de> Reviewed-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> Link: https://lkml.kernel.org/r/20200320131508.736205164@linutronix.de
53 lines
1.3 KiB
C
53 lines
1.3 KiB
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
#ifndef _ASM_X86_CPU_DEVICE_ID
|
|
#define _ASM_X86_CPU_DEVICE_ID
|
|
|
|
/*
|
|
* Declare drivers belonging to specific x86 CPUs
|
|
* Similar in spirit to pci_device_id and related PCI functions
|
|
*/
|
|
#include <linux/mod_devicetable.h>
|
|
|
|
/*
|
|
* The wildcard initializers are in mod_devicetable.h because
|
|
* file2alias needs them. Sigh.
|
|
*/
|
|
|
|
#define X86_FEATURE_MATCH(x) { \
|
|
.vendor = X86_VENDOR_ANY, \
|
|
.family = X86_FAMILY_ANY, \
|
|
.model = X86_MODEL_ANY, \
|
|
.feature = x, \
|
|
}
|
|
|
|
/*
|
|
* Match specific microcode revisions.
|
|
*
|
|
* vendor/family/model/stepping must be all set.
|
|
*
|
|
* Only checks against the boot CPU. When mixed-stepping configs are
|
|
* valid for a CPU model, add a quirk for every valid stepping and
|
|
* do the fine-tuning in the quirk handler.
|
|
*/
|
|
|
|
struct x86_cpu_desc {
|
|
u8 x86_family;
|
|
u8 x86_vendor;
|
|
u8 x86_model;
|
|
u8 x86_stepping;
|
|
u32 x86_microcode_rev;
|
|
};
|
|
|
|
#define INTEL_CPU_DESC(model, stepping, revision) { \
|
|
.x86_family = 6, \
|
|
.x86_vendor = X86_VENDOR_INTEL, \
|
|
.x86_model = (model), \
|
|
.x86_stepping = (stepping), \
|
|
.x86_microcode_rev = (revision), \
|
|
}
|
|
|
|
extern const struct x86_cpu_id *x86_match_cpu(const struct x86_cpu_id *match);
|
|
extern bool x86_cpu_has_min_microcode_rev(const struct x86_cpu_desc *table);
|
|
|
|
#endif /* _ASM_X86_CPU_DEVICE_ID */
|