From: "Philippe Mathieu-Daudé" <philmd@redhat.com>
To: Tony Nguyen <tony.nguyen@bt.com>, qemu-devel@nongnu.org
Subject: Re: [Qemu-devel] [PATCH 00/19] Declare device little or big endian
Date: Wed, 2 Oct 2019 13:42:51 +0200 [thread overview]
Message-ID: <caa8aec8-de38-8207-a180-65acb1930a53@redhat.com> (raw)
In-Reply-To: <cover.1566829168.git.tony.nguyen@bt.com>
On 8/26/19 4:21 PM, Tony Nguyen wrote:
> This series is an attempt to re-declare devices with DEVICE_NATIVE_ENDIAN as
> DEVICE_LITTLE_ENDIAN or DEVICE_BIG_ENDIAN.
>
> This clean up was split out from an earlier series which collapsed byte swaps
> along the I/O path.
>
> On Wed, 7 Aug 2019 at 12:42, Paolo Bonzini wrote:
>> On 07/08/19 10:31, tony.nguyen@bt wrote:
>>>
>>> Device realizing code with MemorRegionOps endianness as
>>> DEVICE_NATIVE_ENDIAN is not common code.
>>>
>>> Corrected devices were identified by making the declaration of
>>> DEVICE_NATIVE_ENDIAN conditional upon NEED_CPU_H and then listing
>>> what failed to compile.
>>
>> The general approach makes sense. However, most of these should not be
>> DEVICE_NATIVE_ENDIAN. I can help with some of them.
>
> On Fri, 16 Aug 2019 at 13:02, Peter Maydell wrote:
>> OTOH it's worth noting that it's quite likely that most of
>> the implementations of these DEVICE_NATIVE_ENDIAN devices
>> picked it in an equally naive way, by just copying some other
>> device's code...
>
> Approach this in two steps.
>
> 1. Naively. For each device declared with DEVICE_NATIVE_ENDIAN, find the set of
> targets from the set of target/hw/*/device.o.
>
> If the set of targets are all little or all big endian, re-declare
> as DEVICE_LITTLE_ENDIAN or DEVICE_BIG_ENDIAN respectively.
>
> 2. Manually. Inspect with heuristics (thanks Paolo):
> - if not used, re-declare as DEVICE_HOST_ENDIAN.
> - if max/min size=1, re-declare as DEVICE_HOST_ENDIAN.
> - if just a bit bucket, re-declare as DEVICE_HOST_ENDIAN
> - if PCI, re-declare as DEVICE_LITTLE_ENDIAN.
> - if for {ARM|unicore32} only, re-declare as DEVICE_LITTLE_ENDIAN.
> - if for SPARC only, re-declare as DEVICE_BIG_ENDIAN.
Maybe this list is better to split your patches.
Which are the 'not used' ones?
TYPE_TPCI200 (from IndustryPack) can go with PCI.
You can put all the PrimeCell devices together (eventually with the
other ARM devices):
hw/audio/pl041.c
hw/char/pl011.c
hw/display/pl110.c
hw/dma/pl080.c
hw/dma/pl330.c
hw/gpio/pl061.c
hw/input/pl050.c
hw/intc/pl190.c
hw/sd/pl181.c
hw/ssi/pl022.c
hw/timer/pl031.c
prev parent reply other threads:[~2019-10-02 11:44 UTC|newest]
Thread overview: 25+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-08-26 14:21 [Qemu-devel] [PATCH 00/19] Declare device little or big endian Tony Nguyen
2019-08-26 14:21 ` [Qemu-devel] [PATCH 01/19] hw/audio: " Tony Nguyen
2019-08-26 14:21 ` [Qemu-devel] [PATCH 02/19] hw/block: " Tony Nguyen
2019-08-26 14:21 ` [Qemu-devel] [PATCH 03/19] hw/char: " Tony Nguyen
2019-08-26 14:21 ` [Qemu-devel] [PATCH 04/19] hw/core: " Tony Nguyen
2019-10-02 11:34 ` Philippe Mathieu-Daudé
2019-08-26 14:21 ` [Qemu-devel] [PATCH 05/19] hw/display: " Tony Nguyen
2019-08-26 14:21 ` [Qemu-devel] [PATCH 06/19] hw/dma: " Tony Nguyen
2019-08-26 14:21 ` [Qemu-devel] [PATCH 07/19] hw/gpio: " Tony Nguyen
2019-08-26 14:21 ` [Qemu-devel] [PATCH 08/19] hw/i2c: " Tony Nguyen
2019-08-26 14:21 ` [Qemu-devel] [PATCH 09/19] hw/input: " Tony Nguyen
2019-08-26 14:21 ` [Qemu-devel] [PATCH 10/19] hw/intc: " Tony Nguyen
2019-08-26 14:21 ` [Qemu-devel] [PATCH 11/19] hw/ipack: " Tony Nguyen
2019-10-01 13:14 ` Alberto Garcia
2019-08-26 14:21 ` [Qemu-devel] [PATCH 12/19] hw/isa: " Tony Nguyen
2019-10-02 11:31 ` Philippe Mathieu-Daudé
2019-08-26 14:21 ` [Qemu-devel] [PATCH 13/19] hw/misc: " Tony Nguyen
2019-08-26 14:21 ` [Qemu-devel] [PATCH 14/19] hw/net: " Tony Nguyen
2019-08-26 14:21 ` [Qemu-devel] [PATCH 15/19] hw/pci-host: " Tony Nguyen
2019-08-26 14:21 ` [Qemu-devel] [PATCH 16/19] hw/sd: " Tony Nguyen
2019-08-26 14:21 ` [Qemu-devel] [PATCH 17/19] hw/ssi: " Tony Nguyen
2019-08-26 14:21 ` [Qemu-devel] [PATCH 18/19] hw/timer: " Tony Nguyen
2019-10-02 11:17 ` Philippe Mathieu-Daudé
2019-08-26 14:21 ` [Qemu-devel] [PATCH 19/19] build: Correct non-common common-obj-* to obj-* Tony Nguyen
2019-10-02 11:42 ` Philippe Mathieu-Daudé [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=caa8aec8-de38-8207-a180-65acb1930a53@redhat.com \
--to=philmd@redhat.com \
--cc=qemu-devel@nongnu.org \
--cc=tony.nguyen@bt.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;
as well as URLs for NNTP newsgroup(s).