Lines Matching full:family
14 #include <asm/intel-family.h>
28 * @_family: The family number or X86_FAMILY_ANY
37 * macros of the X86_MATCH_* family. If there is no matching shorthand
45 .family = _family, \
56 * @_family: The family number or X86_FAMILY_ANY
66 #define X86_MATCH_VENDOR_FAM_MODEL_FEATURE(vendor, family, model, feature, data) \ argument
67 X86_MATCH_VENDOR_FAM_MODEL_STEPPINGS_FEATURE(vendor, family, model, \
71 * X86_MATCH_VENDOR_FAM_FEATURE - Macro for matching vendor, family and CPU feature
74 * @family: The family number or X86_FAMILY_ANY
83 #define X86_MATCH_VENDOR_FAM_FEATURE(vendor, family, feature, data) \ argument
84 X86_MATCH_VENDOR_FAM_MODEL_FEATURE(vendor, family, \
116 * X86_MATCH_VENDOR_FAM_MODEL - Match vendor, family and model
119 * @family: The family number or X86_FAMILY_ANY
128 #define X86_MATCH_VENDOR_FAM_MODEL(vendor, family, model, data) \ argument
129 X86_MATCH_VENDOR_FAM_MODEL_FEATURE(vendor, family, model, \
133 * X86_MATCH_VENDOR_FAM - Match vendor and family
136 * @family: The family number or X86_FAMILY_ANY
144 #define X86_MATCH_VENDOR_FAM(vendor, family, data) \ argument
145 X86_MATCH_VENDOR_FAM_MODEL(vendor, family, X86_MODEL_ANY, data)
148 * X86_MATCH_INTEL_FAM6_MODEL - Match vendor INTEL, family 6 and model
155 * The vendor is set to INTEL, the family to 6 and all other missing
170 * vendor/family/model/stepping must be all set.