Merge branch 'x86-cpu-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git...
authorLinus Torvalds <torvalds@linux-foundation.org>
Tue, 17 Sep 2019 01:47:53 +0000 (18:47 -0700)
committerLinus Torvalds <torvalds@linux-foundation.org>
Tue, 17 Sep 2019 01:47:53 +0000 (18:47 -0700)
Pull x86 cpu-feature updates from Ingo Molnar:

 - Rework the Intel model names symbols/macros, which were decades of
   ad-hoc extensions and added random noise. It's now a coherent, easy
   to follow nomenclature.

 - Add new Intel CPU model IDs:
    - "Tiger Lake" desktop and mobile models
    - "Elkhart Lake" model ID
    - and the "Lightning Mountain" variant of Airmont, plus support code

 - Add the new AVX512_VP2INTERSECT instruction to cpufeatures

 - Remove Intel MPX user-visible APIs and the self-tests, because the
   toolchain (gcc) is not supporting it going forward. This is the
   first, lowest-risk phase of MPX removal.

 - Remove X86_FEATURE_MFENCE_RDTSC

 - Various smaller cleanups and fixes

* 'x86-cpu-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip: (25 commits)
  x86/cpu: Update init data for new Airmont CPU model
  x86/cpu: Add new Airmont variant to Intel family
  x86/cpu: Add Elkhart Lake to Intel family
  x86/cpu: Add Tiger Lake to Intel family
  x86: Correct misc typos
  x86/intel: Add common OPTDIFFs
  x86/intel: Aggregate microserver naming
  x86/intel: Aggregate big core graphics naming
  x86/intel: Aggregate big core mobile naming
  x86/intel: Aggregate big core client naming
  x86/cpufeature: Explain the macro duplication
  x86/ftrace: Remove mcount() declaration
  x86/PCI: Remove superfluous returns from void functions
  x86/msr-index: Move AMD MSRs where they belong
  x86/cpu: Use constant definitions for CPU models
  lib: Remove redundant ftrace flag removal
  x86/crash: Remove unnecessary comparison
  x86/bitops: Use __builtin_constant_p() directly instead of IS_IMMEDIATE()
  x86: Remove X86_FEATURE_MFENCE_RDTSC
  x86/mpx: Remove MPX APIs
  ...

12 files changed:
1  2 
arch/x86/events/intel/core.c
arch/x86/events/intel/cstate.c
arch/x86/events/intel/pt.c
arch/x86/events/intel/rapl.c
arch/x86/events/msr.c
arch/x86/include/asm/msr-index.h
arch/x86/kernel/apic/apic.c
arch/x86/kernel/cpu/amd.c
drivers/edac/pnd2_edac.c
include/uapi/linux/prctl.h
kernel/sys.c
tools/arch/x86/include/asm/cpufeatures.h

Simple merge
Simple merge
Simple merge
Simple merge
Simple merge
index de753206b4274e35fbdd58cd50eaeaf69475447b,695881ef682c3462ccc26c1863f747de3f06fd7b..20ce682a2540f389dc62f29dbf07c0b3f32620ea
  /* Alternative perfctr range with full access. */
  #define MSR_IA32_PMC0                 0x000004c1
  
- /* AMD64 MSRs. Not complete. See the architecture manual for a more
-    complete list. */
 +/* Auto-reload via MSR instead of DS area */
 +#define MSR_RELOAD_PMC0                       0x000014c1
 +#define MSR_RELOAD_FIXED_CTR0         0x00001309
 +
+ /*
+  * AMD64 MSRs. Not complete. See the architecture manual for a more
+  * complete list.
+  */
  #define MSR_AMD64_PATCH_LEVEL         0x0000008b
  #define MSR_AMD64_TSC_RATIO           0xc0000104
  #define MSR_AMD64_NB_CFG              0xc001001f
Simple merge
Simple merge
Simple merge
Simple merge
diff --cc kernel/sys.c
Simple merge