From: Thomas Huth <thuth@redhat.com>
To: Janosch Frank <frankja@linux.ibm.com>, qemu-devel@nongnu.org
Cc: borntraeger@de.ibm.com, cohuck@redhat.com, david@redhat.com
Subject: Re: [PATCH v3 4/5] pc-bios: s390x: Save io and external new PSWs before overwriting them
Date: Wed, 2 Sep 2020 18:55:48 +0200 [thread overview]
Message-ID: <df99495f-9a30-025d-d761-083f47127bf2@redhat.com> (raw)
In-Reply-To: <c35adf44-864f-e74f-4f62-b715f7fee5ef@linux.ibm.com>
On 02/09/2020 12.30, Janosch Frank wrote:
> On 9/1/20 7:22 PM, Thomas Huth wrote:
>> On 31/08/2020 17.09, Janosch Frank wrote:
>>> Currently we always overwrite the mentioned exception new PSWs before
>>> loading the enabled wait PSW. Let's save the PSW before overwriting
>>> and restore it right before starting the loaded kernel.
>>>
>>> Signed-off-by: Janosch Frank <frankja@linux.ibm.com>
>>> ---
>>> pc-bios/s390-ccw/jump2ipl.c | 4 +++
>>> pc-bios/s390-ccw/netmain.c | 3 ++
>>> pc-bios/s390-ccw/start.S | 62 +++++++++++++++++++++++++++----------
>>> 3 files changed, 52 insertions(+), 17 deletions(-)
>>
>> Patch looks basically fine to me, I just got some questions for my
>> understanding below...
>>
>>> diff --git a/pc-bios/s390-ccw/jump2ipl.c b/pc-bios/s390-ccw/jump2ipl.c
>>> index 5b8352d257..bb94ba7550 100644
>>> --- a/pc-bios/s390-ccw/jump2ipl.c
>>> +++ b/pc-bios/s390-ccw/jump2ipl.c
>>> @@ -14,6 +14,7 @@
>>> #define RESET_PSW_MASK (PSW_MASK_SHORTPSW | PSW_MASK_64)
>>> #define RESET_PSW ((uint64_t)&jump_to_IPL_addr | RESET_PSW_MASK)
>>>
>>> +extern uint64_t psw_save_io[], psw_save_ext[];
>>> static uint64_t *reset_psw = 0, save_psw, ipl_continue;
>>>
>>> void write_reset_psw(uint64_t psw)
>>> @@ -59,6 +60,9 @@ void jump_to_IPL_code(uint64_t address)
>>> /* Ensure the guest output starts fresh */
>>> sclp_print("\n");
>>>
>>> + memcpy(&lowcore->io_new_psw, psw_save_io, 16);
>>> + memcpy(&lowcore->external_new_psw, psw_save_ext, 16);
>>> +
>>> /*
>>> * HACK ALERT.
>>> * We use the load normal reset to keep r15 unchanged. jump_to_IPL_2
>>> diff --git a/pc-bios/s390-ccw/netmain.c b/pc-bios/s390-ccw/netmain.c
>>> index 056e93a818..74ef28fbc6 100644
>>> --- a/pc-bios/s390-ccw/netmain.c
>>> +++ b/pc-bios/s390-ccw/netmain.c
>>> @@ -32,6 +32,7 @@
>>> #include <time.h>
>>> #include <pxelinux.h>
>>>
>>> +#include "s390-arch.h"
>>> #include "s390-ccw.h"
>>> #include "cio.h"
>>> #include "virtio.h"
>>> @@ -43,6 +44,8 @@
>>> extern char _start[];
>>> void write_iplb_location(void) {}
>>>
>>> +LowCore *lowcore; /* Yes, this *is* a pointer to address 0 */
>>> +
>>> #define KERNEL_ADDR ((void *)0L)
>>> #define KERNEL_MAX_SIZE ((long)_start)
>>> #define ARCH_COMMAND_LINE_SIZE 896 /* Taken from Linux kernel */
>>> diff --git a/pc-bios/s390-ccw/start.S b/pc-bios/s390-ccw/start.S
>>> index ce519300a1..939aac3a7c 100644
>>> --- a/pc-bios/s390-ccw/start.S
>>> +++ b/pc-bios/s390-ccw/start.S
>>> @@ -34,7 +34,17 @@ remainder:
>>> larl %r2,memsetxc
>>> ex %r3,0(%r2)
>>> done:
>>> - j main /* And call C */
>>> + /* prepare i/o call handler */
>>> + larl %r1, io_new_code
>>> + larl %r2, io_new_psw
>>> + stg %r1, 8(%r2)
>>> + mvc 0x1f0(16),0(%r2)
>>> + /* prepare external call handler */
>>> + larl %r1, external_new_code
>>> + larl %r2, external_new_psw
>>> + stg %r1, 8(%r2)
>>
>> Can't you specify the external_new_code and io_new_code in the
>> external_new_psw / io_new_psw directly? Or is our relocation code not
>> good enough for this?
>
> Initially I had some problems with this. I just had another try and it
> seems to work well, but as the testing infrastructure doesn't really
> work, I can't vouch for that.
You could maybe dump the memory in both cases to see whether
external_new_psw and io_new_psw contain the same values before and after
the change?
>> In case you respin, could you maybe add some local #defines for 0x1f0
>> and 0x1b0 ?
>
> At the top of this file?
Yes, please.
Thomas
next prev parent reply other threads:[~2020-09-02 16:56 UTC|newest]
Thread overview: 15+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-08-31 15:09 [PATCH v3 0/5] pc-bios: s390x: Cleanup part 2 Janosch Frank
2020-08-31 15:09 ` [PATCH v3 1/5] pc-bios: s390x: Fix bootmap.c zipl component entry data handling Janosch Frank
2020-08-31 15:09 ` [PATCH v3 2/5] pc-bios: s390x: Save PSW rework Janosch Frank
2020-08-31 15:27 ` Thomas Huth
2020-08-31 15:09 ` [PATCH v3 3/5] pc-bios: s390x: Use reset PSW if avaliable Janosch Frank
2020-09-01 16:59 ` Thomas Huth
2020-09-02 8:46 ` Janosch Frank
2020-09-02 9:50 ` Thomas Huth
2020-08-31 15:09 ` [PATCH v3 4/5] pc-bios: s390x: Save io and external new PSWs before overwriting them Janosch Frank
2020-09-01 17:22 ` Thomas Huth
2020-09-02 10:30 ` Janosch Frank
2020-09-02 16:55 ` Thomas Huth [this message]
2020-08-31 15:09 ` [PATCH v3 5/5] pc-bios: s390x: Go into disabled wait when encountering a PGM exception Janosch Frank
2020-09-01 17:24 ` Thomas Huth
2020-08-31 18:31 ` [PATCH v3 0/5] pc-bios: s390x: Cleanup part 2 no-reply
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=df99495f-9a30-025d-d761-083f47127bf2@redhat.com \
--to=thuth@redhat.com \
--cc=borntraeger@de.ibm.com \
--cc=cohuck@redhat.com \
--cc=david@redhat.com \
--cc=frankja@linux.ibm.com \
--cc=qemu-devel@nongnu.org \
/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;
as well as URLs for NNTP newsgroup(s).