[PATCH 0/8] x86-32 CPU configuration cleanups

Arnd Bergmann posted 8 patches 2 days, 5 hours ago
.../ABI/testing/sysfs-platform-ts5500         |  54 ---
Documentation/virt/kvm/x86/timekeeping.rst    |   1 -
MAINTAINERS                                   |   5 -
arch/um/include/asm/asm-prototypes.h          |   4 -
arch/x86/Kconfig                              |  10 -
arch/x86/Kconfig.cpu                          |  41 +--
arch/x86/Kconfig.cpufeatures                  |  15 +-
arch/x86/Makefile_32.cpu                      |  16 +-
arch/x86/events/msr.c                         |   5 -
arch/x86/include/asm/asm-prototypes.h         |   4 -
arch/x86/include/asm/atomic64_32.h            |  15 -
arch/x86/include/asm/bitops.h                 |   4 +-
arch/x86/include/asm/cmpxchg_32.h             |  76 +---
arch/x86/include/asm/debugreg.h               |  10 +-
arch/x86/include/asm/percpu.h                 |  14 +-
arch/x86/include/asm/ptrace.h                 |   6 +-
arch/x86/include/asm/timex.h                  |   3 -
arch/x86/include/asm/trace_clock.h            |   8 -
arch/x86/include/asm/tsc.h                    |  13 -
arch/x86/include/asm/vermagic.h               |  36 +-
arch/x86/kernel/Makefile                      |   4 +-
arch/x86/kernel/apic/apic.c                   |  23 +-
arch/x86/kernel/apic/io_apic.c                |  22 +-
arch/x86/kernel/cpu/amd.c                     |  20 -
arch/x86/kernel/cpu/centaur.c                 |   2 -
arch/x86/kernel/cpu/common.c                  |   4 +-
arch/x86/kernel/cpu/proc.c                    |  15 +-
arch/x86/kernel/i8253.c                       |   3 -
arch/x86/kernel/tsc.c                         |  30 +-
arch/x86/lib/Makefile                         |   4 -
arch/x86/lib/atomic64_386_32.S                | 195 ----------
arch/x86/lib/cmpxchg8b_emu.S                  |  97 -----
arch/x86/lib/kaslr.c                          |  20 +-
arch/x86/platform/Makefile                    |   1 -
arch/x86/platform/ts5500/Makefile             |   2 -
arch/x86/platform/ts5500/ts5500.c             | 341 ------------------
arch/x86/um/Kconfig                           |   2 +-
arch/x86/um/Makefile                          |   3 +-
arch/x86/xen/Kconfig                          |   3 +-
arch/x86/xen/time.c                           |   2 -
drivers/misc/mei/Kconfig                      |   2 +-
drivers/net/ethernet/intel/igc/igc_ptp.c      |   4 +-
drivers/ptp/Kconfig                           |   2 +-
lib/atomic64_test.c                           |   7 +-
tools/power/cpupower/debug/kernel/Makefile    |   5 +-
45 files changed, 75 insertions(+), 1078 deletions(-)
delete mode 100644 Documentation/ABI/testing/sysfs-platform-ts5500
delete mode 100644 arch/x86/lib/atomic64_386_32.S
delete mode 100644 arch/x86/lib/cmpxchg8b_emu.S
delete mode 100644 arch/x86/platform/ts5500/Makefile
delete mode 100644 arch/x86/platform/ts5500/ts5500.c
[PATCH 0/8] x86-32 CPU configuration cleanups
Posted by Arnd Bergmann 2 days, 5 hours ago
From: Arnd Bergmann <arnd@arndb.de>

Hi Ingo,

Here are some follow-ups to your x86-32 CPU level changes based on
patches I did last year but rebased onto current linux-next.

The first four just drop code that is no longer relevant now that Élan
is gone and all CPUs support both TSC and CX8.

The other four patches change the CPU configuration to be more like
x86-64 and other architectures where all kernels are expected to be
generic by default.  I did keep the distinction between i586 and i686
class, but everything else is now just an optimization, building e.g. for
CONFIG_MATOM will still run on all other i686 class CPUs, and picking
any i586-class option will work on everything.

      Arnd

Arnd Bergmann (8):
  x86: remove ts5500 platforms support
  x86: remove AMD Élan remnants
  x86: make TSC usage unconditional
  x86: make CX8 usage unconditional
  x86: remove dependencies on CONFIG_M... CPU options
  x86: require minimum 64 byte cache lines
  x86: remove dependencies on per-CPU options
  x86: simplify 32-bit instruction set selection

 .../ABI/testing/sysfs-platform-ts5500         |  54 ---
 Documentation/virt/kvm/x86/timekeeping.rst    |   1 -
 MAINTAINERS                                   |   5 -
 arch/um/include/asm/asm-prototypes.h          |   4 -
 arch/x86/Kconfig                              |  10 -
 arch/x86/Kconfig.cpu                          |  41 +--
 arch/x86/Kconfig.cpufeatures                  |  15 +-
 arch/x86/Makefile_32.cpu                      |  16 +-
 arch/x86/events/msr.c                         |   5 -
 arch/x86/include/asm/asm-prototypes.h         |   4 -
 arch/x86/include/asm/atomic64_32.h            |  15 -
 arch/x86/include/asm/bitops.h                 |   4 +-
 arch/x86/include/asm/cmpxchg_32.h             |  76 +---
 arch/x86/include/asm/debugreg.h               |  10 +-
 arch/x86/include/asm/percpu.h                 |  14 +-
 arch/x86/include/asm/ptrace.h                 |   6 +-
 arch/x86/include/asm/timex.h                  |   3 -
 arch/x86/include/asm/trace_clock.h            |   8 -
 arch/x86/include/asm/tsc.h                    |  13 -
 arch/x86/include/asm/vermagic.h               |  36 +-
 arch/x86/kernel/Makefile                      |   4 +-
 arch/x86/kernel/apic/apic.c                   |  23 +-
 arch/x86/kernel/apic/io_apic.c                |  22 +-
 arch/x86/kernel/cpu/amd.c                     |  20 -
 arch/x86/kernel/cpu/centaur.c                 |   2 -
 arch/x86/kernel/cpu/common.c                  |   4 +-
 arch/x86/kernel/cpu/proc.c                    |  15 +-
 arch/x86/kernel/i8253.c                       |   3 -
 arch/x86/kernel/tsc.c                         |  30 +-
 arch/x86/lib/Makefile                         |   4 -
 arch/x86/lib/atomic64_386_32.S                | 195 ----------
 arch/x86/lib/cmpxchg8b_emu.S                  |  97 -----
 arch/x86/lib/kaslr.c                          |  20 +-
 arch/x86/platform/Makefile                    |   1 -
 arch/x86/platform/ts5500/Makefile             |   2 -
 arch/x86/platform/ts5500/ts5500.c             | 341 ------------------
 arch/x86/um/Kconfig                           |   2 +-
 arch/x86/um/Makefile                          |   3 +-
 arch/x86/xen/Kconfig                          |   3 +-
 arch/x86/xen/time.c                           |   2 -
 drivers/misc/mei/Kconfig                      |   2 +-
 drivers/net/ethernet/intel/igc/igc_ptp.c      |   4 +-
 drivers/ptp/Kconfig                           |   2 +-
 lib/atomic64_test.c                           |   7 +-
 tools/power/cpupower/debug/kernel/Makefile    |   5 +-
 45 files changed, 75 insertions(+), 1078 deletions(-)
 delete mode 100644 Documentation/ABI/testing/sysfs-platform-ts5500
 delete mode 100644 arch/x86/lib/atomic64_386_32.S
 delete mode 100644 arch/x86/lib/cmpxchg8b_emu.S
 delete mode 100644 arch/x86/platform/ts5500/Makefile
 delete mode 100644 arch/x86/platform/ts5500/ts5500.c

-- 
2.39.5

Cc: Richard Weinberger <richard@nod.at>
Cc: Anton Ivanov <anton.ivanov@cambridgegreys.com>
Cc: Johannes Berg <johannes@sipsolutions.net>
Cc: Thomas Gleixner <tglx@kernel.org>
Cc: Ingo Molnar <mingo@redhat.com>
Cc: Borislav Petkov <bp@alien8.de>
Cc: Dave Hansen <dave.hansen@linux.intel.com>
Cc: "H. Peter Anvin" <hpa@zytor.com>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Will Deacon <will@kernel.org>
Cc: Boqun Feng <boqun@kernel.org>
Cc: Gary Guo <gary@garyguo.net>
Cc: Yury Norov <yury.norov@gmail.com>
Cc: Rasmus Villemoes <linux@rasmusvillemoes.dk>
Cc: Boris Ostrovsky <boris.ostrovsky@oracle.com>
Cc: Alexander Usyskin <alexander.usyskin@intel.com>
Cc: Tony Nguyen <anthony.l.nguyen@intel.com>
Cc: Przemek Kitszel <przemyslaw.kitszel@intel.com>
Cc: x86@kernel.org
Cc: linux-kernel@vger.kernel.org
Cc: linux-um@lists.infradead.org