summaryrefslogtreecommitdiffstats
path: root/arch/arm64
Commit message (Expand)AuthorAgeFilesLines
...
| | * arm64: KVM: Move BP hardening vectors into .hyp.text sectionMarc Zyngier2018-03-194-6/+11
| | * arm64: KVM: Move stashing of x0/x1 into the vector code itselfMarc Zyngier2018-03-191-24/+32
| | * arm64: KVM: Move vector offsetting from hyp-init.S to kvm_get_hyp_vectorMarc Zyngier2018-03-192-2/+2
| | * arm64: KVM: Introduce EL2 VA randomisationMarc Zyngier2018-03-192-7/+81
| | * arm64: KVM: Dynamically compute the HYP VA maskMarc Zyngier2018-03-191-11/+6
| | * arm64: insn: Allow ADD/SUB (immediate) with LSL #12Marc Zyngier2018-03-191-2/+16
| | * arm64; insn: Add encoder for the EXTR instructionMarc Zyngier2018-03-192-0/+38
| | * KVM: arm/arm64: Keep GICv2 HYP VAs in kvm_vgic_global_stateMarc Zyngier2018-03-192-2/+3
| | * KVM: arm/arm64: Move ioremap calls to create_hyp_io_mappingsMarc Zyngier2018-03-191-1/+2
| | * KVM: arm/arm64: Do not use kern_hyp_va() with kvm_vgic_global_stateMarc Zyngier2018-03-192-1/+21
| | * arm64: cpufeatures: Drop the ARM64_HYP_OFFSET_LOW feature flagMarc Zyngier2018-03-192-20/+1
| | * arm64: KVM: Dynamically patch the kernel/hyp VA maskMarc Zyngier2018-03-193-34/+105
| | * arm64: insn: Add encoder for bitwise operations using literalsMarc Zyngier2018-03-192-0/+145
| | * arm64: insn: Add N immediate encodingMarc Zyngier2018-03-192-0/+5
| | * arm64: alternatives: Add dynamic patching featureMarc Zyngier2018-03-192-15/+69
| | * KVM: arm/arm64: Avoid VGICv3 save/restore on VHE with no IRQsChristoffer Dall2018-03-192-2/+8
| | * KVM: arm/arm64: Move VGIC APR save/restore to vgic put/loadChristoffer Dall2018-03-191-0/+2
| | * KVM: arm/arm64: Handle VGICv3 save/restore from the main VGIC code on VHEChristoffer Dall2018-03-191-7/+6
| | * KVM: arm/arm64: Move arm64-only vgic-v2-sr.c file to arm64Christoffer Dall2018-03-192-1/+79
| | * KVM: arm/arm64: Handle VGICv2 save/restore from the main VGIC codeChristoffer Dall2018-03-192-6/+0
| | * KVM: arm64: Cleanup __activate_traps and __deactive_traps for VHE and non-VHEChristoffer Dall2018-03-191-12/+10
| | * KVM: arm64: Configure c15, PMU, and debug register traps on cpu load/put for VHEChristoffer Dall2018-03-193-9/+29
| | * KVM: arm64: Directly call VHE and non-VHE FPSIMD enabled functionsChristoffer Dall2018-03-191-12/+3
| | * KVM: arm64: Move common VHE/non-VHE trap config in separate functionsChristoffer Dall2018-03-191-31/+46
| | * KVM: arm64: Defer saving/restoring 32-bit sysregs to vcpu load/putChristoffer Dall2018-03-193-11/+27
| | * KVM: arm64: Prepare to handle deferred save/restore of 32-bit registersChristoffer Dall2018-03-192-40/+59
| | * KVM: arm64: Defer saving/restoring 64-bit sysregs to vcpu load/put on VHEChristoffer Dall2018-03-192-8/+80
| | * KVM: arm64: Prepare to handle deferred save/restore of ELR_EL1Christoffer Dall2018-03-192-3/+19
| | * KVM: arm/arm64: Prepare to handle deferred save/restore of SPSR_EL1Christoffer Dall2018-03-192-7/+38
| | * KVM: arm64: Introduce framework for accessing deferred sysregsChristoffer Dall2018-03-192-2/+39
| | * KVM: arm64: Rewrite system register accessors to read/write functionsChristoffer Dall2018-03-198-58/+83
| | * KVM: arm64: Change 32-bit handling of VM system registersChristoffer Dall2018-03-192-13/+15
| | * KVM: arm64: Don't save the host ELR_EL2 and SPSR_EL2 on VHE systemsChristoffer Dall2018-03-191-0/+13
| | * KVM: arm64: Unify non-VHE host/guest sysreg save and restore functionsChristoffer Dall2018-03-193-25/+9
| | * KVM: arm/arm64: Remove leftover comment from kvm_vcpu_run_vheChristoffer Dall2018-03-191-4/+0
| | * KVM: arm64: Introduce separate VHE/non-VHE sysreg save/restore functionsChristoffer Dall2018-03-193-22/+50
| | * KVM: arm64: Rewrite sysreg alternatives to static keysChristoffer Dall2018-03-191-13/+4
| | * KVM: arm64: Move userspace system registers into separate functionChristoffer Dall2018-03-191-13/+35
| | * KVM: arm64: Remove noop calls to timer save/restore from VHE switchChristoffer Dall2018-03-191-2/+0
| | * KVM: arm64: Don't deactivate VM on VHE systemsChristoffer Dall2018-03-191-5/+3
| | * KVM: arm64: Remove kern_hyp_va() use in VHE switch functionChristoffer Dall2018-03-191-3/+1
| | * KVM: arm64: Introduce VHE-specific kvm_vcpu_runChristoffer Dall2018-03-193-2/+75
| | * KVM: arm64: Factor out fault info population and gic workaroundsChristoffer Dall2018-03-191-47/+57
| | * KVM: arm64: Improve debug register save/restore flowChristoffer Dall2018-03-193-30/+42
| | * KVM: arm64: Slightly improve debug save/restore functionsChristoffer Dall2018-03-191-14/+12
| | * KVM: arm64: Move debug dirty flag calculation out of world switchChristoffer Dall2018-03-192-6/+5
| | * KVM: arm/arm64: Introduce vcpu_el1_is_32bitChristoffer Dall2018-03-194-12/+17
| | * KVM: arm/arm64: Add kvm_vcpu_load_sysregs and kvm_vcpu_put_sysregsChristoffer Dall2018-03-192-0/+33
| | * KVM: arm/arm64: Get rid of vcpu->arch.irq_linesChristoffer Dall2018-03-194-17/+3
| | * KVM: arm64: Move HCR_INT_OVERRIDE to default HCR_EL2 guest flagShih-Wei Li2018-03-192-5/+2