mirror of
https://gitee.com/bianbu-linux/linux-6.6
synced 2025-07-24 01:54:03 -04:00
PPC: * correct assumption about ASDR on POWER9 * fix MMIO emulation on POWER9 x86: * add a simple test for ioperm * cleanup TSS (going through KVM tree as the whole undertaking was caused by VMX's use of TSS) * fix nVMX interrupt delivery * fix some performance counters in the guest And two cleanup patches. -----BEGIN PGP SIGNATURE----- iQEcBAABCAAGBQJYuu5qAAoJEED/6hsPKofoRAUH/jkx/KFDcw3FggixysWVgRai iLSbbAZemnSLFSOkOU/t7Bz0fXCUgB0tAcMJd9ow01Dg1zObiTpuUIo6qEPaYHdX gqtUzlHuyECZEcgK0RXS9kDYLrvw7EFocxnDWQfV91qCZSS6nBSSLF3ST1rNV69W mUvcZG+MciDcZUe1lTexoswVTh1m7avvozEnQ5OHnZR9yicoXiadBQjzL6yqWoqf Ml/29zRk5+MvloTudxjkAKm3mh7psW88jNMh37TXbAA7i+Xwl9cU6GLR9mFWstoP 7Ot7ecq9mNAUO3lTIQh7lqvB60LMFznS4IlYK7MbplC3kvJLkfzhTWaN1aGvh90= =cqHo -----END PGP SIGNATURE----- Merge tag 'kvm-4.11-2' of git://git.kernel.org/pub/scm/virt/kvm/kvm Pull more KVM updates from Radim Krčmář: "Second batch of KVM changes for the 4.11 merge window: PPC: - correct assumption about ASDR on POWER9 - fix MMIO emulation on POWER9 x86: - add a simple test for ioperm - cleanup TSS (going through KVM tree as the whole undertaking was caused by VMX's use of TSS) - fix nVMX interrupt delivery - fix some performance counters in the guest ... and two cleanup patches" * tag 'kvm-4.11-2' of git://git.kernel.org/pub/scm/virt/kvm/kvm: KVM: nVMX: Fix pending events injection x86/kvm/vmx: remove unused variable in segment_base() selftests/x86: Add a basic selftest for ioperm x86/asm: Tidy up TSS limit code kvm: convert kvm.users_count from atomic_t to refcount_t KVM: x86: never specify a sample period for virtualized in_tx_cp counters KVM: PPC: Book3S HV: Don't use ASDR for real-mode HPT faults on POWER9 KVM: PPC: Book3S HV: Fix software walk of guest process page tables
159 lines
4.5 KiB
C
159 lines
4.5 KiB
C
#ifndef _ASM_POWERPC_BOOK3S_64_MMU_H_
|
|
#define _ASM_POWERPC_BOOK3S_64_MMU_H_
|
|
|
|
#ifndef __ASSEMBLY__
|
|
/*
|
|
* Page size definition
|
|
*
|
|
* shift : is the "PAGE_SHIFT" value for that page size
|
|
* sllp : is a bit mask with the value of SLB L || LP to be or'ed
|
|
* directly to a slbmte "vsid" value
|
|
* penc : is the HPTE encoding mask for the "LP" field:
|
|
*
|
|
*/
|
|
struct mmu_psize_def {
|
|
unsigned int shift; /* number of bits */
|
|
int penc[MMU_PAGE_COUNT]; /* HPTE encoding */
|
|
unsigned int tlbiel; /* tlbiel supported for that page size */
|
|
unsigned long avpnm; /* bits to mask out in AVPN in the HPTE */
|
|
union {
|
|
unsigned long sllp; /* SLB L||LP (exact mask to use in slbmte) */
|
|
unsigned long ap; /* Ap encoding used by PowerISA 3.0 */
|
|
};
|
|
};
|
|
extern struct mmu_psize_def mmu_psize_defs[MMU_PAGE_COUNT];
|
|
|
|
#endif /* __ASSEMBLY__ */
|
|
|
|
/* 64-bit classic hash table MMU */
|
|
#include <asm/book3s/64/mmu-hash.h>
|
|
|
|
#ifndef __ASSEMBLY__
|
|
/*
|
|
* ISA 3.0 partition and process table entry format
|
|
*/
|
|
struct prtb_entry {
|
|
__be64 prtb0;
|
|
__be64 prtb1;
|
|
};
|
|
extern struct prtb_entry *process_tb;
|
|
|
|
struct patb_entry {
|
|
__be64 patb0;
|
|
__be64 patb1;
|
|
};
|
|
extern struct patb_entry *partition_tb;
|
|
|
|
/* Bits in patb0 field */
|
|
#define PATB_HR (1UL << 63)
|
|
#define RPDB_MASK 0x0fffffffffffff00UL
|
|
#define RPDB_SHIFT (1UL << 8)
|
|
#define RTS1_SHIFT 61 /* top 2 bits of radix tree size */
|
|
#define RTS1_MASK (3UL << RTS1_SHIFT)
|
|
#define RTS2_SHIFT 5 /* bottom 3 bits of radix tree size */
|
|
#define RTS2_MASK (7UL << RTS2_SHIFT)
|
|
#define RPDS_MASK 0x1f /* root page dir. size field */
|
|
|
|
/* Bits in patb1 field */
|
|
#define PATB_GR (1UL << 63) /* guest uses radix; must match HR */
|
|
#define PRTS_MASK 0x1f /* process table size field */
|
|
#define PRTB_MASK 0x0ffffffffffff000UL
|
|
|
|
/*
|
|
* Limit process table to PAGE_SIZE table. This
|
|
* also limit the max pid we can support.
|
|
* MAX_USER_CONTEXT * 16 bytes of space.
|
|
*/
|
|
#define PRTB_SIZE_SHIFT (CONTEXT_BITS + 4)
|
|
/*
|
|
* Power9 currently only support 64K partition table size.
|
|
*/
|
|
#define PATB_SIZE_SHIFT 16
|
|
|
|
typedef unsigned long mm_context_id_t;
|
|
struct spinlock;
|
|
|
|
typedef struct {
|
|
mm_context_id_t id;
|
|
u16 user_psize; /* page size index */
|
|
|
|
#ifdef CONFIG_PPC_MM_SLICES
|
|
u64 low_slices_psize; /* SLB page size encodings */
|
|
unsigned char high_slices_psize[SLICE_ARRAY_SIZE];
|
|
#else
|
|
u16 sllp; /* SLB page size encoding */
|
|
#endif
|
|
unsigned long vdso_base;
|
|
#ifdef CONFIG_PPC_SUBPAGE_PROT
|
|
struct subpage_prot_table spt;
|
|
#endif /* CONFIG_PPC_SUBPAGE_PROT */
|
|
#ifdef CONFIG_PPC_ICSWX
|
|
struct spinlock *cop_lockp; /* guard acop and cop_pid */
|
|
unsigned long acop; /* mask of enabled coprocessor types */
|
|
unsigned int cop_pid; /* pid value used with coprocessors */
|
|
#endif /* CONFIG_PPC_ICSWX */
|
|
#ifdef CONFIG_PPC_64K_PAGES
|
|
/* for 4K PTE fragment support */
|
|
void *pte_frag;
|
|
#endif
|
|
#ifdef CONFIG_SPAPR_TCE_IOMMU
|
|
struct list_head iommu_group_mem_list;
|
|
#endif
|
|
} mm_context_t;
|
|
|
|
/*
|
|
* The current system page and segment sizes
|
|
*/
|
|
extern int mmu_linear_psize;
|
|
extern int mmu_virtual_psize;
|
|
extern int mmu_vmalloc_psize;
|
|
extern int mmu_vmemmap_psize;
|
|
extern int mmu_io_psize;
|
|
|
|
/* MMU initialization */
|
|
void mmu_early_init_devtree(void);
|
|
void hash__early_init_devtree(void);
|
|
void radix__early_init_devtree(void);
|
|
extern void radix_init_native(void);
|
|
extern void hash__early_init_mmu(void);
|
|
extern void radix__early_init_mmu(void);
|
|
static inline void early_init_mmu(void)
|
|
{
|
|
if (radix_enabled())
|
|
return radix__early_init_mmu();
|
|
return hash__early_init_mmu();
|
|
}
|
|
extern void hash__early_init_mmu_secondary(void);
|
|
extern void radix__early_init_mmu_secondary(void);
|
|
static inline void early_init_mmu_secondary(void)
|
|
{
|
|
if (radix_enabled())
|
|
return radix__early_init_mmu_secondary();
|
|
return hash__early_init_mmu_secondary();
|
|
}
|
|
|
|
extern void hash__setup_initial_memory_limit(phys_addr_t first_memblock_base,
|
|
phys_addr_t first_memblock_size);
|
|
extern void radix__setup_initial_memory_limit(phys_addr_t first_memblock_base,
|
|
phys_addr_t first_memblock_size);
|
|
static inline void setup_initial_memory_limit(phys_addr_t first_memblock_base,
|
|
phys_addr_t first_memblock_size)
|
|
{
|
|
if (early_radix_enabled())
|
|
return radix__setup_initial_memory_limit(first_memblock_base,
|
|
first_memblock_size);
|
|
return hash__setup_initial_memory_limit(first_memblock_base,
|
|
first_memblock_size);
|
|
}
|
|
|
|
extern int (*register_process_table)(unsigned long base, unsigned long page_size,
|
|
unsigned long tbl_size);
|
|
|
|
#ifdef CONFIG_PPC_PSERIES
|
|
extern void radix_init_pseries(void);
|
|
#else
|
|
static inline void radix_init_pseries(void) { };
|
|
#endif
|
|
|
|
#endif /* __ASSEMBLY__ */
|
|
#endif /* _ASM_POWERPC_BOOK3S_64_MMU_H_ */
|