From: Gleb Natapov <gleb@redhat.com>
To: Gerd Hoffmann <kraxel@redhat.com>
Cc: Blue Swirl <blauwirbel@gmail.com>,
Paul Brook <paul@codesourcery.com>,
Alexander Graf <agraf@suse.de>,
QEMU-devel Developers <qemu-devel@nongnu.org>
Subject: Re: [Qemu-devel] [PATCH 00/15] [RFC] MMIO endianness cleanup
Date: Thu, 25 Nov 2010 12:42:33 +0200 [thread overview]
Message-ID: <20101125104233.GB6897@redhat.com> (raw)
In-Reply-To: <4CEE37F2.8040000@redhat.com>
On Thu, Nov 25, 2010 at 11:18:26AM +0100, Gerd Hoffmann wrote:
> On 11/25/10 08:35, Alexander Graf wrote:
> >The way mmio endianness is currently implemented is horrifying.
> >
> >In the real world, CPUs have an endianness and write out data
> >to the memory bus. Instead of RAM, a receiving side here can be
> >a device. This device gets a byte stream again and needs to
> >make sense of it.
> >
> >Since big endian systems write big endian numbers into memory
> >while little endian systems write little endian numbers there,
> >the device and software on the CPU need to be aware of this.
> >
> >In practice, most devices these days (ISA, PCI) assume that
> >the data is little endian. So to communicate with such a device
> >from the CPU's side, the OS byte swaps all MMIO.
> >
> >In qemu however, we simply pass the register value we find on
> >to the device. So any byte mangling the guest does to compensate
> >for the transfer screw us up by exposing byte swapped MMIO
> >on the device's side.
> >
> >The way this has been fixed historically is by constructs like
> >this one:
> >
> >#ifdef TARGET_WORDS_BIGENDIAN
> > val = bswap32(val);
> >#endif
> >
> >With the move to get device code only compiled once, this has
> >become harder and harder to justify though, since we don't know
> >the target endianness during compile time.
> >
> >It's especially bad since it doesn't make any sense at all to
> >clutter all the device code with endianness workarounds, aside
> >from the fact that about 80% of the device code currently does
> >the wrong thing :).
> >
> >So my solution to the issue is to make every device define if
> >it's a little, big or native (target) endianness device. This
> >basically tells the layers below what endianness the device
> >expects mmio to occur in. Little endian devices on little endian
> >hosts don't swap. On big endian hosts they do. Same the other
> >way around.
> >
> >The only reason I added "native" endianness is that we have some
> >PV devices like the fw_cfg that expect qemu's broken behavior.
> >These devices are the minority though. In the long run I'd expect
> >to see most code be committed with either of the two endianness
> >choices.
> >
> >The patch set also includes a bunch of conversions for devices
> >that were already aware of endianness.
> >
> >This is an RFC, so please comment as much as you can :).
>
> Seen http://git.qemu.org/qemu.git/commit/?id=acd1c812b5548c8426e093075362b6d4119db6ac
> ?
>
> I think it make sense to either extend it so it works for mmio too
> (and add the endian awareness along the way) or create something
> simliar for mmio.
>
FWTW when I asked why addr and data in IORange are 64bit I was told that it
is intended for use with MMIO too.
--
Gleb.
next prev parent reply other threads:[~2010-11-25 10:42 UTC|newest]
Thread overview: 34+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-11-25 7:35 [Qemu-devel] [PATCH 00/15] [RFC] MMIO endianness cleanup Alexander Graf
2010-11-25 7:35 ` [Qemu-devel] [PATCH 01/15] exec: introduce endianness swapped mmio Alexander Graf
2010-11-26 23:00 ` Andreas Färber
2010-11-26 23:06 ` Alexander Graf
2010-11-26 23:18 ` Peter Maydell
2010-11-26 23:47 ` Paul Brook
2010-11-27 10:05 ` Blue Swirl
2010-11-27 10:24 ` Paul Brook
2010-11-28 8:12 ` Gleb Natapov
2010-11-28 11:05 ` Alexander Graf
2010-11-25 7:35 ` [Qemu-devel] [PATCH 02/15] Add endianness as io mem parameter Alexander Graf
2010-11-25 7:35 ` [Qemu-devel] [PATCH 03/15] Make simple io mem handler endian aware Alexander Graf
2010-11-25 7:35 ` [Qemu-devel] [PATCH 04/15] dbdma: Make little endian Alexander Graf
2010-11-25 7:35 ` [Qemu-devel] [PATCH 05/15] pci-host: Delegate bswap to mmio layer Alexander Graf
2010-11-25 7:35 ` [Qemu-devel] [PATCH 06/15] uninorth: Get rid of bswap Alexander Graf
2010-11-25 7:35 ` [Qemu-devel] [PATCH 07/15] e1000: Make little endian Alexander Graf
2010-11-25 7:35 ` [Qemu-devel] [PATCH 08/15] prep: Declare as " Alexander Graf
2010-11-26 21:58 ` Andreas Färber
2010-11-26 22:06 ` Alexander Graf
2010-11-27 0:08 ` Benjamin Herrenschmidt
2010-11-25 7:35 ` [Qemu-devel] [PATCH 09/15] versatile_pci: " Alexander Graf
2010-11-25 7:35 ` [Qemu-devel] [PATCH 10/15] ppc4xx_pci: " Alexander Graf
2010-11-25 7:35 ` [Qemu-devel] [PATCH 11/15] openpic: Replace explicit byte swap with endian hints Alexander Graf
2010-11-25 7:35 ` [Qemu-devel] [PATCH 12/15] rtl8139: Declare as little endian Alexander Graf
2010-11-25 7:35 ` [Qemu-devel] [PATCH 13/15] heathrow_pic: " Alexander Graf
2010-11-25 7:35 ` [Qemu-devel] [PATCH 14/15] isa_mmio: Always use " Alexander Graf
2010-11-25 7:35 ` [Qemu-devel] [PATCH 15/15] usb_ohci: " Alexander Graf
2010-11-25 10:18 ` [Qemu-devel] [PATCH 00/15] [RFC] MMIO endianness cleanup Gerd Hoffmann
2010-11-25 10:23 ` Alexander Graf
2010-11-25 10:42 ` Gleb Natapov [this message]
2010-11-25 12:14 ` [Qemu-devel] " Paul Brook
2010-11-26 18:44 ` Blue Swirl
2010-11-26 18:49 ` Alexander Graf
2010-11-27 10:09 ` Avi Kivity
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=20101125104233.GB6897@redhat.com \
--to=gleb@redhat.com \
--cc=agraf@suse.de \
--cc=blauwirbel@gmail.com \
--cc=kraxel@redhat.com \
--cc=paul@codesourcery.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 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.