Re: [RFC PATCH v3 1/5] ppc64: Add semihosting support

2022-05-10 Thread Nicholas Piggin
Excerpts from Fabiano Rosas's message of May 4, 2022 1:50 am: > Nicholas Piggin writes: > >> Excerpts from Nicholas Piggin's message of April 21, 2022 12:04 pm: >>> Excerpts from Leandro Lupori's message of April 21, 2022 4:09 am: On 4/18/22 17:22, Cédric Le Goater wrote: > On 4/18/22 21

Re: [RFC PATCH v3 1/5] ppc64: Add semihosting support

2022-05-03 Thread Fabiano Rosas
Nicholas Piggin writes: > Excerpts from Nicholas Piggin's message of April 21, 2022 12:04 pm: >> Excerpts from Leandro Lupori's message of April 21, 2022 4:09 am: >>> On 4/18/22 17:22, Cédric Le Goater wrote: On 4/18/22 21:10, Leandro Lupori wrote: > Add semihosting support for PPC64. Th

Re: [RFC PATCH v3 1/5] ppc64: Add semihosting support

2022-04-27 Thread Nicholas Piggin
Excerpts from Nicholas Piggin's message of April 21, 2022 12:04 pm: > Excerpts from Leandro Lupori's message of April 21, 2022 4:09 am: >> On 4/18/22 17:22, Cédric Le Goater wrote: >>> On 4/18/22 21:10, Leandro Lupori wrote: Add semihosting support for PPC64. This implementation is based

Re: [RFC PATCH v3 1/5] ppc64: Add semihosting support

2022-04-21 Thread Nicholas Piggin
Excerpts from Cédric Le Goater's message of April 21, 2022 4:21 pm: > On 4/21/22 04:04, Nicholas Piggin wrote: >> Excerpts from Leandro Lupori's message of April 21, 2022 4:09 am: >>> On 4/18/22 17:22, Cédric Le Goater wrote: On 4/18/22 21:10, Leandro Lupori wrote: > Add semihosting suppor

Re: [RFC PATCH v3 1/5] ppc64: Add semihosting support

2022-04-20 Thread Cédric Le Goater
On 4/21/22 04:04, Nicholas Piggin wrote: Excerpts from Leandro Lupori's message of April 21, 2022 4:09 am: On 4/18/22 17:22, Cédric Le Goater wrote: On 4/18/22 21:10, Leandro Lupori wrote: Add semihosting support for PPC64. This implementation is based on the standard for ARM semihosting versi

Re: [RFC PATCH v3 1/5] ppc64: Add semihosting support

2022-04-20 Thread Cédric Le Goater
I think the part adding POWERPC_EXCP_SEMIHOST should be proposed in a separate patch. Ok, I can move it to a separate patch. That would be all changes in target/ppc/cpu.h and target/ppc/excp_helper.c, right? yes. Thanks, C.

Re: [RFC PATCH v3 1/5] ppc64: Add semihosting support

2022-04-20 Thread Nicholas Piggin
Excerpts from Leandro Lupori's message of April 21, 2022 4:09 am: > On 4/18/22 17:22, Cédric Le Goater wrote: >> On 4/18/22 21:10, Leandro Lupori wrote: >>> Add semihosting support for PPC64. This implementation is >>> based on the standard for ARM semihosting version 2.0, as >>> implemented by QEM

Re: [RFC PATCH v3 1/5] ppc64: Add semihosting support

2022-04-20 Thread Peter Maydell
On Wed, 20 Apr 2022 at 19:20, Leandro Lupori wrote: > > On 4/19/22 06:26, Peter Maydell wrote: > > On Mon, 18 Apr 2022 at 20:15, Leandro Lupori > > wrote: > >> > >> Add semihosting support for PPC64. This implementation is > >> based on the standard for ARM semihosting version 2.0, as > >> implem

Re: [RFC PATCH v3 1/5] ppc64: Add semihosting support

2022-04-20 Thread Leandro Lupori
On 4/20/22 15:18, Richard Henderson wrote: [E-MAIL EXTERNO] Não clique em links ou abra anexos, a menos que você possa confirmar o remetente e saber que o conteúdo é seguro. Em caso de e-mail suspeito entre imediatamente em contato com o DTI. On 4/20/22 10:54, Leandro Lupori wrote: On 4/18/22

Re: [RFC PATCH v3 1/5] ppc64: Add semihosting support

2022-04-20 Thread Leandro Lupori
On 4/19/22 06:26, Peter Maydell wrote: On Mon, 18 Apr 2022 at 20:15, Leandro Lupori wrote: Add semihosting support for PPC64. This implementation is based on the standard for ARM semihosting version 2.0, as implemented by QEMU and documented in https://github.com/ARM-software/abi-aa/rele

Re: [RFC PATCH v3 1/5] ppc64: Add semihosting support

2022-04-20 Thread Richard Henderson
On 4/20/22 10:54, Leandro Lupori wrote: On 4/18/22 17:22, Cédric Le Goater wrote: diff --git a/semihosting/arm-compat-semi.c b/semihosting/arm-compat-semi.c index 7a51fd0737..e1279c316c 100644 --- a/semihosting/arm-compat-semi.c +++ b/semihosting/arm-compat-semi.c @@ -268,6 +268,31 @@ common_se

Re: [RFC PATCH v3 1/5] ppc64: Add semihosting support

2022-04-20 Thread Leandro Lupori
On 4/18/22 17:22, Cédric Le Goater wrote: On 4/18/22 21:10, Leandro Lupori wrote: Add semihosting support for PPC64. This implementation is based on the standard for ARM semihosting version 2.0, as implemented by QEMU and documented in https://github.com/ARM-software/abi-aa/releases The P

Re: [RFC PATCH v3 1/5] ppc64: Add semihosting support

2022-04-20 Thread Leandro Lupori
On 4/20/22 15:05, Peter Maydell wrote: [E-MAIL EXTERNO] Não clique em links ou abra anexos, a menos que você possa confirmar o remetente e saber que o conteúdo é seguro. Em caso de e-mail suspeito entre imediatamente em contato com o DTI. On Mon, 18 Apr 2022 at 20:15, Leandro Lupori wrote:

Re: [RFC PATCH v3 1/5] ppc64: Add semihosting support

2022-04-20 Thread Peter Maydell
On Mon, 18 Apr 2022 at 20:15, Leandro Lupori wrote: > > Add semihosting support for PPC64. This implementation is > based on the standard for ARM semihosting version 2.0, as > implemented by QEMU and documented in > > https://github.com/ARM-software/abi-aa/releases > > The PPC64 specific diffe

Re: [RFC PATCH v3 1/5] ppc64: Add semihosting support

2022-04-20 Thread Leandro Lupori
On 4/18/22 17:22, Cédric Le Goater wrote: diff --git a/semihosting/arm-compat-semi.c b/semihosting/arm-compat-semi.c index 7a51fd0737..e1279c316c 100644 --- a/semihosting/arm-compat-semi.c +++ b/semihosting/arm-compat-semi.c @@ -268,6 +268,31 @@ common_semi_sys_exit_extended(CPUState *cs, int n

Re: [RFC PATCH v3 1/5] ppc64: Add semihosting support

2022-04-19 Thread Peter Maydell
On Mon, 18 Apr 2022 at 20:15, Leandro Lupori wrote: > > Add semihosting support for PPC64. This implementation is > based on the standard for ARM semihosting version 2.0, as > implemented by QEMU and documented in > > https://github.com/ARM-software/abi-aa/releases > > The PPC64 specific diffe

Re: [RFC PATCH v3 1/5] ppc64: Add semihosting support

2022-04-18 Thread Richard Henderson
On 4/18/22 12:10, Leandro Lupori wrote: Add semihosting support for PPC64. This implementation is based on the standard for ARM semihosting version 2.0, as implemented by QEMU and documented in https://github.com/ARM-software/abi-aa/releases The PPC64 specific differences are the following

Re: [RFC PATCH v3 1/5] ppc64: Add semihosting support

2022-04-18 Thread Cédric Le Goater
On 4/18/22 21:10, Leandro Lupori wrote: Add semihosting support for PPC64. This implementation is based on the standard for ARM semihosting version 2.0, as implemented by QEMU and documented in https://github.com/ARM-software/abi-aa/releases The PPC64 specific differences are the following