Kernel KVM virtualization development
 help / color / mirror / Atom feed
From: Claudio Imbrenda <imbrenda@linux.ibm.com>
To: Janosch Frank <frankja@linux.ibm.com>
Cc: kvm@vger.kernel.org, seiden@linux.ibm.com, nrb@linux.ibm.com,
	scgl@linux.ibm.com, thuth@redhat.com
Subject: Re: [kvm-unit-tests PATCH v2 7/7] lib: s390x: sie: Properly populate SCA
Date: Thu, 20 Oct 2022 11:50:11 +0200	[thread overview]
Message-ID: <20221020115011.1952efac@p-imbrenda> (raw)
In-Reply-To: <20221020090009.2189-8-frankja@linux.ibm.com>

On Thu, 20 Oct 2022 09:00:09 +0000
Janosch Frank <frankja@linux.ibm.com> wrote:

> CPU0 is the only cpu that's being used but we should still mark it as
> online and set the SDA in the SCA.
> 
> Signed-off-by: Janosch Frank <frankja@linux.ibm.com>
> Reviewed-by: Nico Boehr <nrb@linux.ibm.com>

Reviewed-by: Claudio Imbrenda <imbrenda@linux.ibm.com>

> ---
>  lib/s390x/sie.c |  8 ++++++++
>  lib/s390x/sie.h | 35 ++++++++++++++++++++++++++++++++++-
>  2 files changed, 42 insertions(+), 1 deletion(-)
> 
> diff --git a/lib/s390x/sie.c b/lib/s390x/sie.c
> index 6efad965..a71985b6 100644
> --- a/lib/s390x/sie.c
> +++ b/lib/s390x/sie.c
> @@ -9,6 +9,7 @@
>   */
>  
>  #include <asm/barrier.h>
> +#include <bitops.h>
>  #include <libcflat.h>
>  #include <sie.h>
>  #include <asm/page.h>
> @@ -72,6 +73,13 @@ void sie_guest_sca_create(struct vm *vm)
>  	vm->sblk->scaoh = ((uint64_t)vm->sca >> 32);
>  	vm->sblk->scaol = (uint64_t)vm->sca & ~0x3fU;
>  	vm->sblk->ecb2 |= ECB2_ESCA;
> +
> +	/* Enable SIGP sense running interpretation */
> +	vm->sblk->ecb |= ECB_SRSI;
> +
> +	/* We assume that cpu 0 is always part of the vm */
> +	vm->sca->mcn[0] = BIT(63);
> +	vm->sca->cpu[0].sda = (uint64_t)vm->sblk;
>  }
>  
>  /* Initializes the struct vm members like the SIE control block. */
> diff --git a/lib/s390x/sie.h b/lib/s390x/sie.h
> index 3e3605c9..a27a8401 100644
> --- a/lib/s390x/sie.h
> +++ b/lib/s390x/sie.h
> @@ -202,6 +202,39 @@ union {
>  	uint64_t	pv_grregs[16];		/* 0x0380 */
>  } __attribute__((packed));
>  
> +union esca_sigp_ctrl {
> +	uint16_t value;
> +	struct {
> +		uint8_t c : 1;
> +		uint8_t reserved: 7;
> +		uint8_t scn;
> +	};
> +};
> +
> +struct esca_entry {
> +	union esca_sigp_ctrl sigp_ctrl;
> +	uint16_t   reserved1[3];
> +	uint64_t   sda;
> +	uint64_t   reserved2[6];
> +};
> +
> +union ipte_control {
> +	unsigned long val;
> +	struct {
> +		unsigned long k  : 1;
> +		unsigned long kh : 31;
> +		unsigned long kg : 32;
> +	};
> +};
> +
> +struct esca_block {
> +	union ipte_control ipte_control;
> +	uint64_t   reserved1[7];
> +	uint64_t   mcn[4];
> +	uint64_t   reserved2[20];
> +	struct esca_entry cpu[256];
> +};
> +
>  struct vm_uv {
>  	uint64_t vm_handle;
>  	uint64_t vcpu_handle;
> @@ -230,7 +263,7 @@ struct vm_save_area {
>  struct vm {
>  	struct kvm_s390_sie_block *sblk;
>  	struct vm_save_area save_area;
> -	void *sca;				/* System Control Area */
> +	struct esca_block *sca;			/* System Control Area */
>  	uint8_t *crycb;				/* Crypto Control Block */
>  	struct vm_uv uv;			/* PV UV information */
>  	/* Ptr to first guest page */


      reply	other threads:[~2022-10-20  9:50 UTC|newest]

Thread overview: 17+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-10-20  9:00 [kvm-unit-tests PATCH v2 0/7] s390x: PV fixups Janosch Frank
2022-10-20  9:00 ` [kvm-unit-tests PATCH v2 1/7] s390x: snippets: asm: Add a macro to write an exception PSW Janosch Frank
2022-10-20  9:14   ` Claudio Imbrenda
2022-10-20  9:00 ` [kvm-unit-tests PATCH v2 2/7] s390x: MAKEFILE: Use $< instead of pathsubst Janosch Frank
2022-10-20  9:14   ` Claudio Imbrenda
2022-10-20  9:00 ` [kvm-unit-tests PATCH v2 3/7] s390x: Add a linker script to assembly snippets Janosch Frank
2022-10-20 10:02   ` Claudio Imbrenda
2022-10-20  9:00 ` [kvm-unit-tests PATCH v2 4/7] lib: s390x: sie: Improve validity handling and make it vm specific Janosch Frank
2022-10-20  9:18   ` Claudio Imbrenda
2022-10-20  9:00 ` [kvm-unit-tests PATCH v2 5/7] lib: s390x: Use a new asce for each PV guest Janosch Frank
2022-10-20  9:25   ` Claudio Imbrenda
2022-10-20 11:27     ` Janosch Frank
2022-10-20 11:46       ` Claudio Imbrenda
2022-10-20  9:00 ` [kvm-unit-tests PATCH v2 6/7] lib: s390x: Enable reusability of VMs that were in PV mode Janosch Frank
2022-10-20  9:26   ` Claudio Imbrenda
2022-10-20  9:00 ` [kvm-unit-tests PATCH v2 7/7] lib: s390x: sie: Properly populate SCA Janosch Frank
2022-10-20  9:50   ` Claudio Imbrenda [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20221020115011.1952efac@p-imbrenda \
    --to=imbrenda@linux.ibm.com \
    --cc=frankja@linux.ibm.com \
    --cc=kvm@vger.kernel.org \
    --cc=nrb@linux.ibm.com \
    --cc=scgl@linux.ibm.com \
    --cc=seiden@linux.ibm.com \
    --cc=thuth@redhat.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox