1. 20 8月, 2020 1 次提交
  2. 03 8月, 2020 1 次提交
  3. 29 7月, 2020 2 次提交
  4. 26 7月, 2020 24 次提交
  5. 23 7月, 2020 3 次提交
  6. 22 7月, 2020 1 次提交
    • A
      powerpc/perf: BHRB control to disable BHRB logic when not used · 1cade527
      Athira Rajeev 提交于
      PowerISA v3.1 has few updates for the Branch History Rolling
      Buffer(BHRB).
      
      BHRB disable is controlled via Monitor Mode Control Register A (MMCRA)
      bit, namely "BHRB Recording Disable (BHRBRD)". This field controls
      whether BHRB entries are written when BHRB recording is enabled by
      other bits. This patch implements support for this BHRB disable bit.
      By setting 0b1 to this bit will disable the BHRB and by setting 0b0 to
      this bit will have BHRB enabled. This addresses backward
      compatibility (for older OS), since this bit will be cleared and
      hardware will be writing to BHRB by default.
      
      This patch addresses changes to set MMCRA (BHRBRD) at boot for
      power10 (there by the core will run faster) and enable this feature
      only on runtime ie, on explicit need from user. Also save/restore
      MMCRA in the restore path of state-loss idle state to make sure we
      keep BHRB disabled if it was not enabled on request at runtime.
      Signed-off-by: NAthira Rajeev <atrajeev@linux.vnet.ibm.com>
      Signed-off-by: NMichael Ellerman <mpe@ellerman.id.au>
      Link: https://lore.kernel.org/r/1594996707-3727-12-git-send-email-atrajeev@linux.vnet.ibm.com
      1cade527
  7. 20 7月, 2020 1 次提交
    • A
      powerpc/mm/radix: Create separate mappings for hot-plugged memory · af9d00e9
      Aneesh Kumar K.V 提交于
      To enable memory unplug without splitting kernel page table
      mapping, we force the max mapping size to the LMB size. LMB
      size is the unit in which hypervisor will do memory add/remove
      operation.
      
      Pseries systems supports max LMB size of 256MB. Hence on pseries,
      we now end up mapping memory with 2M page size instead of 1G. To improve
      that we want hypervisor to hint the kernel about the hotplug
      memory range. That was added that as part of
      
      commit b6eca183 ("powerpc/kernel: Enables memory
      hot-remove after reboot on pseries guests")
      
      But PowerVM doesn't provide that hint yet. Once we get PowerVM
      updated, we can then force the 2M mapping only to hot-pluggable
      memory region using memblock_is_hotpluggable(). Till then
      let's depend on LMB size for finding the mapping page size
      for linear range.
      
      With this change KVM guest will also be doing linear mapping with
      2M page size.
      
      The actual TLB benefit of mapping guest page table entries with
      hugepage size can only be materialized if the partition scoped
      entries are also using the same or higher page size. A guest using
      1G hugetlbfs backing guest memory can have a performance impact with
      the above change.
      Signed-off-by: NBharata B Rao <bharata@linux.ibm.com>
      Signed-off-by: NAneesh Kumar K.V <aneesh.kumar@linux.ibm.com>
      [mpe: Fold in fix from Aneesh spotted by lkp@intel.com]
      Signed-off-by: NMichael Ellerman <mpe@ellerman.id.au>
      Link: https://lore.kernel.org/r/20200709131925.922266-5-aneesh.kumar@linux.ibm.com
      af9d00e9
  8. 15 7月, 2020 3 次提交
  9. 22 6月, 2020 1 次提交
    • A
      powerpc/powernv/ioda: Return correct error if TCE level allocation failed · 5f202c1a
      Alexey Kardashevskiy 提交于
      The iommu_table_ops::xchg_no_kill() callback updates TCE. It is quite
      possible that not entire table is allocated if it is huge and multilevel
      so xchg may also allocate subtables. If failed, it returns H_HARDWARE
      for failed allocation and H_TOO_HARD if it needs it but cannot do because
      the alloc parameter is "false" (set when called with MMU=off to force
      retry with MMU=on).
      
      The problem is that having separate errors only matters in real mode
      (MMU=off) but the only caller with alloc="false" does not check the exact
      error code and simply returns H_TOO_HARD; and for every other mode
      alloc is "true". Also, the function is also called from the ioctl()
      handler of the VFIO SPAPR TCE IOMMU subdriver which does not expect
      hypervisor error codes (H_xxx) and will expose them to the userspace.
      
      This converts wrong error codes to -ENOMEM.
      Signed-off-by: NAlexey Kardashevskiy <aik@ozlabs.ru>
      Signed-off-by: NMichael Ellerman <mpe@ellerman.id.au>
      Link: https://lore.kernel.org/r/20200617003835.48831-1-aik@ozlabs.ru
      5f202c1a
  10. 11 6月, 2020 1 次提交
  11. 28 5月, 2020 2 次提交