]> Git Repo - qemu.git/commit
PPC: e500 pci host: Add support for ATMUs
authorAlexander Graf <[email protected]>
Wed, 12 Nov 2014 21:44:52 +0000 (22:44 +0100)
committerAlexander Graf <[email protected]>
Wed, 7 Jan 2015 15:16:24 +0000 (16:16 +0100)
commitcb3778a0455a2e5a48d7ef0ec8dc656313820389
tree0d10c66cb36948daeec42f89fa1344c83378e6de
parent44045ce9740945056a58ecb53d2af9ae00083632
PPC: e500 pci host: Add support for ATMUs

The e500 PCI controller has configurable windows that allow a guest OS
to selectively map parts of the PCI bus space to CPU address space and
to selectively map parts of the CPU address space for DMA requests into
PCI visible address ranges.

So far, we've simply assumed that this mapping is 1:1 and ignored it.

However, the PCICSRBAR (CCSR mapped in PCI bus space) always has to live
inside the first 32bits of address space. This means if we always treat
all mappings as 1:1, this map will collide with our RAM map from the CPU's
point of view.

So this patch adds proper ATMU support which allows us to keep the PCICSRBAR
below 32bits local to the PCI bus and have another, different window to PCI
BARs at the upper end of address space. We leverage this on e500plat though,
mpc8544ds stays virtually 1:1 like it was before, but now also goes via ATMU.

With this patch, I can run guests with lots of RAM and not coincidently access
MSI-X mappings while I really want to access RAM.

Signed-off-by: Alexander Graf <[email protected]>
hw/pci-host/ppce500.c
hw/ppc/e500.c
hw/ppc/e500.h
hw/ppc/e500plat.c
hw/ppc/mpc8544ds.c
This page took 0.025735 seconds and 4 git commands to generate.