From: Paolo Bonzini <pbonzini@redhat.com>
To: Peter Maydell <peter.maydell@linaro.org>,
Peter Crosthwaite <crosthwaitepeter@gmail.com>
Cc: "Stefan Weil" <sw@weilnetz.de>,
"QEMU Developers" <qemu-devel@nongnu.org>,
"Andrew Baumann" <Andrew.Baumann@microsoft.com>,
"Alistair Francis" <alistair.francis@xilinx.com>,
"sridhar kulkarni" <sridhar_kulk@yahoo.com>,
qemu-arm <qemu-arm@nongnu.org>,
"Piotr Król" <piotr.krol@3mdeb.com>
Subject: Re: [Qemu-arm] [PATCH v2 00/18] ARM big-endian and setend support
Date: Thu, 3 Mar 2016 16:40:23 +0100 [thread overview]
Message-ID: <56D85AE7.4060806@redhat.com> (raw)
In-Reply-To: <CAFEAcA_YGFn41uV6pykizk=28513yv1+=speOxK6u4H1PmbiEg@mail.gmail.com>
On 03/03/2016 16:25, Peter Maydell wrote:
> On 2 March 2016 at 06:56, Peter Crosthwaite <crosthwaitepeter@gmail.com> wrote:
>> Hi All,
>>
>> This patch series adds system-mode big-endian support for ARM. It also
>> implements the setend instruction, and loading of BE binaries even in
>> LE emulation mode.
>>
>> Based on Paolo's original work.
>>
>> I have tested all of LE, BE8 and BE32 in both linux-user mode (for
>> regressions) and system mode (BE8 and BE32 are new here).
>> My test application is here, the README gives some example command
>> lines you can run:
>>
>> https://github.com/pcrost/arm-be-test
>>
>> Regards,
>> Peter
>>
>> Changed since v1:
>> Addressed PMM review
>> Added doc comments to new/changed loader.h APIs
>
> Thanks for the respin. For the remaining patches:
> Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
>
> Since there were only a couple of comment typos I'm planning to
> apply this series to target-arm.next (and send a pullreq tomorrow
> I expect).
Yay, thanks Peter (both of you)!
Paolo
WARNING: multiple messages have this Message-ID (diff)
From: Paolo Bonzini <pbonzini@redhat.com>
To: Peter Maydell <peter.maydell@linaro.org>,
Peter Crosthwaite <crosthwaitepeter@gmail.com>
Cc: "Peter Crosthwaite" <crosthwaite.peter@gmail.com>,
"Stefan Weil" <sw@weilnetz.de>,
"QEMU Developers" <qemu-devel@nongnu.org>,
"Andrew Baumann" <Andrew.Baumann@microsoft.com>,
"Alistair Francis" <alistair.francis@xilinx.com>,
"sridhar kulkarni" <sridhar_kulk@yahoo.com>,
qemu-arm <qemu-arm@nongnu.org>,
"Piotr Król" <piotr.krol@3mdeb.com>
Subject: Re: [Qemu-devel] [PATCH v2 00/18] ARM big-endian and setend support
Date: Thu, 3 Mar 2016 16:40:23 +0100 [thread overview]
Message-ID: <56D85AE7.4060806@redhat.com> (raw)
In-Reply-To: <CAFEAcA_YGFn41uV6pykizk=28513yv1+=speOxK6u4H1PmbiEg@mail.gmail.com>
On 03/03/2016 16:25, Peter Maydell wrote:
> On 2 March 2016 at 06:56, Peter Crosthwaite <crosthwaitepeter@gmail.com> wrote:
>> Hi All,
>>
>> This patch series adds system-mode big-endian support for ARM. It also
>> implements the setend instruction, and loading of BE binaries even in
>> LE emulation mode.
>>
>> Based on Paolo's original work.
>>
>> I have tested all of LE, BE8 and BE32 in both linux-user mode (for
>> regressions) and system mode (BE8 and BE32 are new here).
>> My test application is here, the README gives some example command
>> lines you can run:
>>
>> https://github.com/pcrost/arm-be-test
>>
>> Regards,
>> Peter
>>
>> Changed since v1:
>> Addressed PMM review
>> Added doc comments to new/changed loader.h APIs
>
> Thanks for the respin. For the remaining patches:
> Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
>
> Since there were only a couple of comment typos I'm planning to
> apply this series to target-arm.next (and send a pullreq tomorrow
> I expect).
Yay, thanks Peter (both of you)!
Paolo
next prev parent reply other threads:[~2016-03-03 15:40 UTC|newest]
Thread overview: 36+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-03-02 6:56 [Qemu-arm] [PATCH v2 00/18] ARM big-endian and setend support Peter Crosthwaite
2016-03-02 6:56 ` [Qemu-devel] " Peter Crosthwaite
2016-03-02 6:56 ` [Qemu-arm] [PATCH v2 01/18] linux-user: arm: fix coding style for some linux-user signal functions Peter Crosthwaite
2016-03-02 6:56 ` [Qemu-devel] " Peter Crosthwaite
2016-03-02 6:56 ` [Qemu-devel] [PATCH v2 02/18] linux-user: arm: pass env to get_user_code_* Peter Crosthwaite
2016-03-02 6:56 ` [Qemu-arm] [PATCH v2 03/18] target-arm: implement SCTLR.B, drop bswap_code Peter Crosthwaite
2016-03-02 6:56 ` [Qemu-devel] " Peter Crosthwaite
2016-03-02 6:56 ` [Qemu-arm] [PATCH v2 04/18] target-arm: cpu: Move cpu_is_big_endian to header Peter Crosthwaite
2016-03-02 6:56 ` [Qemu-devel] " Peter Crosthwaite
2016-03-02 6:56 ` [Qemu-arm] [PATCH v2 05/18] arm: cpu: handle BE32 user-mode as BE Peter Crosthwaite
2016-03-02 6:56 ` [Qemu-devel] " Peter Crosthwaite
2016-03-02 6:56 ` [Qemu-devel] [PATCH v2 06/18] linux-user: arm: set CPSR.E/SCTLR.E0E correctly for BE mode Peter Crosthwaite
2016-03-02 6:56 ` [Qemu-devel] [PATCH v2 07/18] linux-user: arm: handle CPSR.E correctly in strex emulation Peter Crosthwaite
2016-03-03 15:09 ` [Qemu-arm] " Peter Maydell
2016-03-03 15:09 ` [Qemu-devel] " Peter Maydell
2016-03-02 6:56 ` [Qemu-devel] [PATCH v2 08/18] target-arm: implement SCTLR.EE Peter Crosthwaite
2016-03-02 6:56 ` [Qemu-devel] [PATCH v2 09/18] target-arm: pass DisasContext to gen_aa32_ld*/st* Peter Crosthwaite
2016-03-02 6:56 ` [Qemu-devel] [PATCH v2 10/18] target-arm: introduce disas flag for endianness Peter Crosthwaite
2016-03-02 6:56 ` [Qemu-devel] [PATCH v2 11/18] target-arm: a64: Add endianness support Peter Crosthwaite
2016-03-02 6:56 ` [Qemu-devel] [PATCH v2 12/18] target-arm: introduce tbflag for endianness Peter Crosthwaite
2016-03-02 6:56 ` [Qemu-devel] [PATCH v2 13/18] target-arm: implement setend Peter Crosthwaite
2016-03-02 6:56 ` [Qemu-devel] [PATCH v2 15/18] loader: add API to load elf header Peter Crosthwaite
2016-03-03 15:24 ` [Qemu-arm] " Peter Maydell
2016-03-03 15:24 ` [Qemu-devel] " Peter Maydell
2016-03-02 6:56 ` [Qemu-arm] [PATCH v2 16/18] loader: load_elf(): Add doc comment Peter Crosthwaite
2016-03-02 6:56 ` [Qemu-devel] " Peter Crosthwaite
2016-03-02 6:56 ` [Qemu-devel] [PATCH v2 17/18] loader: Add data swap option to load-elf Peter Crosthwaite
2016-03-02 6:56 ` [Qemu-devel] [PATCH v2 18/18] arm: boot: Support big-endian elfs Peter Crosthwaite
2016-03-03 15:23 ` [Qemu-arm] " Peter Maydell
2016-03-03 15:23 ` [Qemu-devel] " Peter Maydell
2016-03-03 15:25 ` [Qemu-arm] [PATCH v2 00/18] ARM big-endian and setend support Peter Maydell
2016-03-03 15:25 ` [Qemu-devel] " Peter Maydell
2016-03-03 15:40 ` Paolo Bonzini [this message]
2016-03-03 15:40 ` Paolo Bonzini
[not found] ` <130944d3702e4184b48ff43096aabfeb24f0bdf3.1456901522.git.crosthwaite.peter@gmail.com>
2016-03-03 15:27 ` [Qemu-arm] [PATCH v2 14/18] target-arm: implement BE32 mode in system emulation Peter Maydell
2016-03-03 15:27 ` [Qemu-devel] " Peter Maydell
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=56D85AE7.4060806@redhat.com \
--to=pbonzini@redhat.com \
--cc=Andrew.Baumann@microsoft.com \
--cc=alistair.francis@xilinx.com \
--cc=crosthwaitepeter@gmail.com \
--cc=peter.maydell@linaro.org \
--cc=piotr.krol@3mdeb.com \
--cc=qemu-arm@nongnu.org \
--cc=qemu-devel@nongnu.org \
--cc=sridhar_kulk@yahoo.com \
--cc=sw@weilnetz.de \
/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.