Merge tag 'powerpc-4.17-1' of git://git.kernel.org/pub/scm/linux/kernel/git/powerpc...
authorLinus Torvalds <torvalds@linux-foundation.org>
Sat, 7 Apr 2018 19:08:19 +0000 (12:08 -0700)
committerLinus Torvalds <torvalds@linux-foundation.org>
Sat, 7 Apr 2018 19:08:19 +0000 (12:08 -0700)
Pull powerpc updates from Michael Ellerman:
 "Notable changes:

   - Support for 4PB user address space on 64-bit, opt-in via mmap().

   - Removal of POWER4 support, which was accidentally broken in 2016
     and no one noticed, and blocked use of some modern instructions.

   - Workarounds so that the hypervisor can enable Transactional Memory
     on Power9.

   - A series to disable the DAWR (Data Address Watchpoint Register) on
     Power9.

   - More information displayed in the meltdown/spectre_v1/v2 sysfs
     files.

   - A vpermxor (Power8 Altivec) implementation for the raid6 Q
     Syndrome.

   - A big series to make the allocation of our pacas (per cpu area),
     kernel page tables, and per-cpu stacks NUMA aware when using the
     Radix MMU on Power9.

  And as usual many fixes, reworks and cleanups.

  Thanks to: Aaro Koskinen, Alexandre Belloni, Alexey Kardashevskiy,
  Alistair Popple, Andy Shevchenko, Aneesh Kumar K.V, Anshuman Khandual,
  Balbir Singh, Benjamin Herrenschmidt, Christophe Leroy, Christophe
  Lombard, Cyril Bur, Daniel Axtens, Dave Young, Finn Thain, Frederic
  Barrat, Gustavo Romero, Horia Geantă, Jonathan Neuschäfer, Kees Cook,
  Larry Finger, Laurent Dufour, Laurent Vivier, Logan Gunthorpe,
  Madhavan Srinivasan, Mark Greer, Mark Hairgrove, Markus Elfring,
  Mathieu Malaterre, Matt Brown, Matt Evans, Mauricio Faria de Oliveira,
  Michael Neuling, Naveen N. Rao, Nicholas Piggin, Paul Mackerras,
  Philippe Bergheaud, Ram Pai, Rob Herring, Sam Bobroff, Segher
  Boessenkool, Simon Guo, Simon Horman, Stewart Smith, Sukadev
  Bhattiprolu, Suraj Jitindar Singh, Thiago Jung Bauermann, Vaibhav
  Jain, Vaidyanathan Srinivasan, Vasant Hegde, Wei Yongjun"

* tag 'powerpc-4.17-1' of git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux: (207 commits)
  powerpc/64s/idle: Fix restore of AMOR on POWER9 after deep sleep
  powerpc/64s: Fix POWER9 DD2.2 and above in cputable features
  powerpc/64s: Fix pkey support in dt_cpu_ftrs, add CPU_FTR_PKEY bit
  powerpc/64s: Fix dt_cpu_ftrs to have restore_cpu clear unwanted LPCR bits
  Revert "powerpc/64s/idle: POWER9 ESL=0 stop avoid save/restore overhead"
  powerpc: iomap.c: introduce io{read|write}64_{lo_hi|hi_lo}
  powerpc: io.h: move iomap.h include so that it can use readq/writeq defs
  cxl: Fix possible deadlock when processing page faults from cxllib
  powerpc/hw_breakpoint: Only disable hw breakpoint if cpu supports it
  powerpc/mm/radix: Update command line parsing for disable_radix
  powerpc/mm/radix: Parse disable_radix commandline correctly.
  powerpc/mm/hugetlb: initialize the pagetable cache correctly for hugetlb
  powerpc/mm/radix: Update pte fragment count from 16 to 256 on radix
  powerpc/mm/keys: Update documentation and remove unnecessary check
  powerpc/64s/idle: POWER9 ESL=0 stop avoid save/restore overhead
  powerpc/64s/idle: Consolidate power9_offline_stop()/power9_idle_stop()
  powerpc/powernv: Always stop secondaries before reboot/shutdown
  powerpc: hard disable irqs in smp_send_stop loop
  powerpc: use NMI IPI for smp_send_stop
  powerpc/powernv: Fix SMT4 forcing idle code
  ...

13 files changed:
1  2 
arch/powerpc/include/asm/hugetlb.h
arch/powerpc/kernel/Makefile
arch/powerpc/kvm/book3s_hv.c
arch/powerpc/kvm/book3s_hv_rmhandlers.S
arch/powerpc/mm/hugetlbpage.c
arch/powerpc/perf/core-book3s.c
drivers/macintosh/via-pmu68k.c
include/linux/memblock.h
include/linux/raid/pq.h
lib/raid6/Makefile
lib/raid6/algos.c
lib/raid6/test/Makefile
mm/memblock.c

Simple merge
Simple merge
Simple merge
index 3a08d211d2ee0d4d214a2fafaaf77739f73ad5a9,99cf860969701779c8a9d06017a9b8cf88c66cf6..f1153f8254e3d79fe34b970df96a54de7088e225
@@@ -563,12 -562,17 +562,14 @@@ unsigned long hugetlb_get_unmapped_area
  unsigned long vma_mmu_pagesize(struct vm_area_struct *vma)
  {
  #ifdef CONFIG_PPC_MM_SLICES
-       unsigned int psize = get_slice_psize(vma->vm_mm, vma->vm_start);
        /* With radix we don't use slice, so derive it from vma*/
-       if (!radix_enabled())
+       if (!radix_enabled()) {
+               unsigned int psize = get_slice_psize(vma->vm_mm, vma->vm_start);
                return 1UL << mmu_psize_to_shift(psize);
+       }
  #endif
 -      if (!is_vm_hugetlb_page(vma))
 -              return PAGE_SIZE;
 -
 -      return huge_page_size(hstate_vma(vma));
 +      return vma_kernel_pagesize(vma);
  }
  
  static inline bool is_power_of_4(unsigned long x)
Simple merge
Simple merge
Simple merge
index a366cc3144795b66bfb1bec4911eb3eb6f162a05,fd2e02461e4100440e2b1937df1b8073a5f61737..ea8505204fdfc6dd17cab030f9ead1af419455ef
@@@ -105,7 -105,12 +105,11 @@@ extern const struct raid6_calls raid6_a
  extern const struct raid6_calls raid6_avx512x1;
  extern const struct raid6_calls raid6_avx512x2;
  extern const struct raid6_calls raid6_avx512x4;
 -extern const struct raid6_calls raid6_tilegx8;
  extern const struct raid6_calls raid6_s390vx8;
+ extern const struct raid6_calls raid6_vpermxor1;
+ extern const struct raid6_calls raid6_vpermxor2;
+ extern const struct raid6_calls raid6_vpermxor4;
+ extern const struct raid6_calls raid6_vpermxor8;
  
  struct raid6_recov_calls {
        void (*data2)(int, size_t, int, int, void **);
index 44d6b46df051be9d56faaf72a48803d9e2bd9136,21f59443e99e41860f53ab23b747cbbf4bc41713..2f8b61dfd9b0e0fec458cc1bdb9ce1852b58cf1d
@@@ -5,8 -5,10 +5,9 @@@ raid6_pq-y      += algos.o recov.o tables.o 
                   int8.o int16.o int32.o
  
  raid6_pq-$(CONFIG_X86) += recov_ssse3.o recov_avx2.o mmx.o sse1.o sse2.o avx2.o avx512.o recov_avx512.o
- raid6_pq-$(CONFIG_ALTIVEC) += altivec1.o altivec2.o altivec4.o altivec8.o
+ raid6_pq-$(CONFIG_ALTIVEC) += altivec1.o altivec2.o altivec4.o altivec8.o \
+                               vpermxor1.o vpermxor2.o vpermxor4.o vpermxor8.o
  raid6_pq-$(CONFIG_KERNEL_MODE_NEON) += neon.o neon1.o neon2.o neon4.o neon8.o recov_neon.o recov_neon_inner.o
 -raid6_pq-$(CONFIG_TILEGX) += tilegx8.o
  raid6_pq-$(CONFIG_S390) += s390vx8.o recov_s390xc.o
  
  hostprogs-y   += mktables
index c65aa80d67ed475ba8a07123d8083ef6df91a662,b2e681018145528096038a7f4adea9b29955d334..5065b1e7e32759535942fed1e149079e61c1dcda
@@@ -74,7 -74,14 +74,11 @@@ const struct raid6_calls * const raid6_
        &raid6_altivec2,
        &raid6_altivec4,
        &raid6_altivec8,
+       &raid6_vpermxor1,
+       &raid6_vpermxor2,
+       &raid6_vpermxor4,
+       &raid6_vpermxor8,
  #endif
 -#if defined(CONFIG_TILEGX)
 -      &raid6_tilegx8,
 -#endif
  #if defined(CONFIG_S390)
        &raid6_s390vx8,
  #endif
index fabc477b1417083bee06d90c8df234dd0e219abe,5050e270c06b38811efc19354cbc80019d8e0d06..5d73f5cb4d8a78f0887cc6cfbf10a29ec5d5f51c
@@@ -45,12 -45,17 +45,14 @@@ else ifeq ($(HAS_NEON),yes
          CFLAGS += -DCONFIG_KERNEL_MODE_NEON=1
  else
          HAS_ALTIVEC := $(shell printf '\#include <altivec.h>\nvector int a;\n' |\
-                          gcc -c -x c - >&/dev/null && \
-                          rm ./-.o && echo yes)
+                          gcc -c -x c - >/dev/null && rm ./-.o && echo yes)
          ifeq ($(HAS_ALTIVEC),yes)
-                 OBJS += altivec1.o altivec2.o altivec4.o altivec8.o
+                 CFLAGS += -I../../../arch/powerpc/include
+                 CFLAGS += -DCONFIG_ALTIVEC
+                 OBJS += altivec1.o altivec2.o altivec4.o altivec8.o \
+                         vpermxor1.o vpermxor2.o vpermxor4.o vpermxor8.o
          endif
  endif
 -ifeq ($(ARCH),tilegx)
 -OBJS += tilegx8.o
 -endif
  
  .c.o:
        $(CC) $(CFLAGS) -c -o $@ $<
@@@ -117,7 -137,8 +131,7 @@@ tables.c: mktable
        ./mktables > tables.c
  
  clean:
-       rm -f *.o *.a mktables mktables.c *.uc int*.c altivec*.c neon*.c tables.c raid6test
+       rm -f *.o *.a mktables mktables.c *.uc int*.c altivec*.c vpermxor*.c neon*.c tables.c raid6test
 -      rm -f tilegx*.c
  
  spotless: clean
        rm -f *~
diff --cc mm/memblock.c
Simple merge