All of lore.kernel.org
 help / color / mirror / Atom feed
From: BALATON Zoltan <balaton@eik.bme.hu>
To: luigi burdo <intermediadc@hotmail.com>
Cc: "qemu-ppc@nongnu.org" <qemu-ppc@nongnu.org>,
	"qemu-devel@nongnu.org" <qemu-devel@nongnu.org>
Subject: Re: R: R: [PULL 0/3] ppc-for-6.1 queue 20210713
Date: Tue, 20 Jul 2021 16:02:43 +0200 (CEST)	[thread overview]
Message-ID: <36811435-c01f-ab84-9525-2a4cfa282ace@eik.bme.hu> (raw)
In-Reply-To: <AM7PR03MB6579113A5DB8C252A57CEB00C8E19@AM7PR03MB6579.eurprd03.prod.outlook.com>

Hello,

On Tue, 20 Jul 2021, luigi burdo wrote:
> i was able to build on my quad qemu, a ram bank was die and make me the issue with gcc..
> this is what happening if i run pegasos 2 with --enable-kvm.

OK. Can you also show the full command so we know what options you used?

> via_superio_cfg: unimplemented register 0xf2
> via_superio_cfg: unimplemented register 0xf4
> via_superio_cfg: unimplemented register 0xf6
> via_superio_cfg: unimplemented register 0xf7
> via_superio_cfg: unimplemented register 0xf4
> via_superio_cfg: unimplemented register 0xf2
> PegasosII Boot Strap (c) 2002-2003 bplan GmbH
> Running on CPU PVR:000C0209
> Enable L1 ICache...                                                    Done.
> mv64361_write: Unimplemented register write 0x108 = 0
> Reading W83194 :                                                       FAILED.
> Setting Front Side Bus to 133MHz...                                    FAILED.
> Invalid access at addr 0xFE000E43, size 1, region '(null)', reason: rejected

So this shows that what I've seen on emulated KVM (running QEMU in a PPC 
Linux guest running on qemu-system-ppc64 -M mac99) does not match what 
real hardware does so that could be a bug in emulated KVM. As shown at the 
end of this message:

https://lists.nongnu.org/archive/html/qemu-ppc/2021-06/msg00146.html

I did not get the Invalid access warning but instead got endless kvm exits 
with the NIP not incrementing past the instruction doing this invalid 
access so probably there's a problem with handling invalid access with 
emulated KVM PR but I don't know where to look for that problem or how to 
fix it. It could also be a bug in guest kernel or QEMU, I'm not sure. Hope 
somebody with more knowledge about PPC KVM could give some hints. 
Aparently this is not a problem on real machine where it works as expected 
(the Invalid address is because we don't emulate this device but it's not 
needed and it boots without it and we get the same warnings with TCG).

> Invalid access at addr 0xFE000E44, size 1, region '(null)', reason: rejected
> Invalid access at addr 0xFE000E41, size 1, region '(null)', reason: rejected
> Invalid access at addr 0xFE000E42, size 1, region '(null)', reason: rejected
> Invalid access at addr 0xFE000E40, size 1, region '(null)', reason: rejected
> Configuring DDR...mv64361_write: Unimplemented register write 0x1494 = 291
[...]
> Releasing IDE reset ...                                                Done.
> Configuring Legacy Devices
> Initializing KBD...Invalid access at addr 0xFE0003F0, size 1, region '(null)', reason: rejected
>                                                    Done.
> via_superio_cfg: unimplemented register 0xf6
> via_superio_cfg: unimplemented register 0xf7
> via_superio_cfg: unimplemented register 0xf2
> Invalid access at addr 0xFE000084, size 1, region '(null)', reason: rejected
> Invalid access at addr 0xFE000085, size 1, region '(null)', reason: rejected
> Invalid access at addr 0xFE000086, size 1, region '(null)', reason: rejected
> Invalid access at addr 0xFE000088, size 1, region '(null)', reason: rejected
> Invalid access at addr 0xFE00008C, size 1, region '(null)', reason: rejected
> Invalid access at addr 0xFE00008D, size 1, region '(null)', reason: rejected
> Invalid access at addr 0xFE00008E, size 1, region '(null)', reason: rejected
> Testing 10000000 Bytes, Pass: 00000000 Failed: 00000000

So does it stop here or do you get to the firmware ok prompt?

> In dmesg i had many of this.
>
> [ 3634.418495] kvmppc_exit_pr_progint: emulation at 700 failed (00000700)
> [ 3634.418525] Couldn't emulate instruction 0x00000700 (op 0 xop 896)
> [ 3634.418551] Couldn't emulate instruction 0x00000700 (op 0 xop 896)
> [ 3634.418577] Couldn't emulate instruction 0x00000700 (op 0 xop 896)
> [ 3634.418603] Couldn't emulate instr...

This looks like we're getting Program Exceptions that's raised for invalid 
instructions so either it's going off track and tries to execute something 
it should not or could be that since we're running G4 code on a G5 there 
may be some differences so an instruction valid on G4 could be invalid on 
G5? KVM should handle these but not sure it does for all such cases or it 
works correctly as this was probably not tested for a while. We would need 
to know where it got the exception but the above logs don't show that. Was 
there anything before these? Maybe there's a kvm trace you can enable or 
adding -d int would show the exception but that would generate a lot of 
logs so you may need to filter out some unneeded ones to find the relevant 
logs. We'd need the address where it got the exception that make it go to 
0x700 and the opcode at that address. The logs above only show that it got 
to 0x700 and got endless exceptions where as a handler for Program 
Exception should be at 0x700 but probably the firmware did not install one 
as it should not get such exceptions when working normally on a G4. Which 
firmware version are you using? The 1.1 from up050404 should work but the 
1.2 from MorphOS storage is known to have a cmpd instruction that's 
invalid on G4 yet it works but may raise an exception or do something else 
on G5. With TCG that's fixed by this patch:

https://lists.nongnu.org/archive/html/qemu-ppc/2021-07/msg00207.html

that's not in master yet but if using that firmware version this may also 
cause problem in KVM if it does not do the same on G5 than on G4. I don't 
know if that's the case but it's a possibility. Once we find out what 
opcode is causing the program exception we can look up in the G5 and G4 
manuals to see why it gets the exception and what can we do about it.

> i will build  latest linux kernel and do new test.

Apart from that you could also try what happens with the sc 1 calls that 
is used but VOF when you use -kernel boot.img instead of -bios 
pegasos2.rom. I got the host QEMU crash with that when trying on emulated 
KVM but if it works on real hardware that could also be fixed in emulation 
so I can at least reproduce the problems you find on real hardware.

Regards,
BALATON Zoltan


  reply	other threads:[~2021-07-20 14:04 UTC|newest]

Thread overview: 12+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-07-13  2:07 [PULL 0/3] ppc-for-6.1 queue 20210713 David Gibson
2021-07-13  2:07 ` [PULL 1/3] ppc/pegasos2: Allow setprop in VOF David Gibson
2021-07-13  2:07 ` [PULL 2/3] pseries: Update SLOF firmware image David Gibson
2021-07-13  2:07 ` [PULL 3/3] mv64361: Remove extra break from a switch case David Gibson
2021-07-13 20:37 ` [PULL 0/3] ppc-for-6.1 queue 20210713 Peter Maydell
2021-07-17 18:25 ` R: " luigi burdo
2021-07-17 19:55   ` BALATON Zoltan
2021-07-17 22:23     ` R: " luigi burdo
2021-07-20  3:10     ` luigi burdo
2021-07-20 14:02       ` BALATON Zoltan [this message]
2021-07-20 14:30         ` R: " luigi burdo
2021-07-20 18:59           ` BALATON Zoltan

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=36811435-c01f-ab84-9525-2a4cfa282ace@eik.bme.hu \
    --to=balaton@eik.bme.hu \
    --cc=intermediadc@hotmail.com \
    --cc=qemu-devel@nongnu.org \
    --cc=qemu-ppc@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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.