[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <25a9ff69-47f0-fcba-e1fe-f0cc9914acba@de.ibm.com>
Date: Tue, 25 Jun 2019 22:15:34 +0200
From: Christian Borntraeger <borntraeger@...ibm.com>
To: Pierre Morel <pmorel@...ux.ibm.com>
Cc: alex.williamson@...hat.com, cohuck@...hat.com,
linux-kernel@...r.kernel.org, linux-s390@...r.kernel.org,
kvm@...r.kernel.org, frankja@...ux.ibm.com, akrowiak@...ux.ibm.com,
pasic@...ux.ibm.com, david@...hat.com, heiko.carstens@...ibm.com,
freude@...ux.ibm.com, mimu@...ux.ibm.com
Subject: Re: [PATCH v9 4/4] s390: ap: kvm: Enable PQAP/AQIC facility for the
guest
On 25.06.19 22:13, Christian Borntraeger wrote:
>
>
> On 21.05.19 17:34, Pierre Morel wrote:
>> AP Queue Interruption Control (AQIC) facility gives
>> the guest the possibility to control interruption for
>> the Cryptographic Adjunct Processor queues.
>>
>> Signed-off-by: Pierre Morel <pmorel@...ux.ibm.com>
>> Reviewed-by: Tony Krowiak <akrowiak@...ux.ibm.com>
>> ---
>> arch/s390/tools/gen_facilities.c | 1 +
>> 1 file changed, 1 insertion(+)
>>
>> diff --git a/arch/s390/tools/gen_facilities.c b/arch/s390/tools/gen_facilities.c
>> index 61ce5b5..aed14fc 100644
>> --- a/arch/s390/tools/gen_facilities.c
>> +++ b/arch/s390/tools/gen_facilities.c
>> @@ -114,6 +114,7 @@ static struct facility_def facility_defs[] = {
>> .bits = (int[]){
>> 12, /* AP Query Configuration Information */
>> 15, /* AP Facilities Test */
>> + 65, /* AP Queue Interruption Control */
>> 156, /* etoken facility */
>> -1 /* END */
>> }
>>
>
> I think we should only set stfle.65 if we have the aiv facility (Because we do not
> have a GISA otherwise)
>
> So something like this instead?
>
> diff --git a/arch/s390/kvm/kvm-s390.c b/arch/s390/kvm/kvm-s390.c
> index 28ebd64..1501cd6 100644
> --- a/arch/s390/kvm/kvm-s390.c
> +++ b/arch/s390/kvm/kvm-s390.c
> @@ -2461,6 +2461,9 @@ int kvm_arch_init_vm(struct kvm *kvm, unsigned long type)
> set_kvm_facility(kvm->arch.model.fac_list, 147);
> }
>
> + if (css_general_characteristics.aiv)
> + set_kvm_facility(kvm->arch.model.fac_mask, 65);
> +
> kvm->arch.model.cpuid = kvm_s390_get_initial_cpuid();
> kvm->arch.model.ibc = sclp.ibc & 0x0fff;
>
>
Maybe even just piggyback on gisa init (it will bail out early).
diff --git a/arch/s390/kvm/interrupt.c b/arch/s390/kvm/interrupt.c
index 9dde4d7..9182a04 100644
--- a/arch/s390/kvm/interrupt.c
+++ b/arch/s390/kvm/interrupt.c
@@ -3100,6 +3100,7 @@ void kvm_s390_gisa_init(struct kvm *kvm)
gi->timer.function = gisa_vcpu_kicker;
memset(gi->origin, 0, sizeof(struct kvm_s390_gisa));
gi->origin->next_alert = (u32)(u64)gi->origin;
+ set_kvm_facility(kvm->arch.model.fac_mask, 65);
VM_EVENT(kvm, 3, "gisa 0x%pK initialized", gi->origin);
}
Powered by blists - more mailing lists